/*! ***************************************************************************** Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR NON-INFRINGEMENT. See the Apache Version 2.0 License for specific language governing permissions and limitations under the License. ***************************************************************************** */ "use strict"; var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) { if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) { if (ar || !(i in from)) { if (!ar) ar = Array.prototype.slice.call(from, 0, i); ar[i] = from[i]; } } return to.concat(ar || Array.prototype.slice.call(from)); }; var __assign = (this && this.__assign) || function () { __assign = Object.assign || function(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; return __assign.apply(this, arguments); }; var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) { if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; } return cooked; }; var __generator = (this && this.__generator) || function (thisArg, body) { var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; function verb(n) { return function (v) { return step([n, v]); }; } function step(op) { if (f) throw new TypeError("Generator is already executing."); while (_) try { if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; if (y = 0, t) op = [op[0] & 2, t.value]; switch (op[0]) { case 0: case 1: t = op; break; case 4: _.label++; return { value: op[1], done: false }; case 5: _.label++; y = op[1]; op = [0]; continue; case 7: op = _.ops.pop(); _.trys.pop(); continue; default: if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } if (t[2]) _.ops.pop(); _.trys.pop(); continue; } op = body.call(thisArg, _); } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; } }; var __rest = (this && this.__rest) || function (s, e) { var t = {}; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p]; if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]]; } return t; }; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; return extendStatics(d, b); }; return function (d, b) { if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); var ts; (function (ts) { // WARNING: The script `configurePrerelease.ts` uses a regexp to parse out these values. // If changing the text in this section, be sure to test `configurePrerelease` too. ts.versionMajorMinor = "4.7"; // The following is baselined as a literal template type without intervention /** The version of the TypeScript compiler release */ // eslint-disable-next-line @typescript-eslint/no-inferrable-types ts.version = "4.7.4"; /* @internal */ var Comparison; (function (Comparison) { Comparison[Comparison["LessThan"] = -1] = "LessThan"; Comparison[Comparison["EqualTo"] = 0] = "EqualTo"; Comparison[Comparison["GreaterThan"] = 1] = "GreaterThan"; })(Comparison = ts.Comparison || (ts.Comparison = {})); /* @internal */ var NativeCollections; (function (NativeCollections) { var globals = typeof globalThis !== "undefined" ? globalThis : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : undefined; /** * Returns the native Map implementation if it is available and compatible (i.e. supports iteration). */ function tryGetNativeMap() { // Internet Explorer's Map doesn't support iteration, so don't use it. var gMap = globals === null || globals === void 0 ? void 0 : globals.Map; // eslint-disable-next-line no-in-operator return typeof gMap !== "undefined" && "entries" in gMap.prototype && new gMap([[0, 0]]).size === 1 ? gMap : undefined; } NativeCollections.tryGetNativeMap = tryGetNativeMap; /** * Returns the native Set implementation if it is available and compatible (i.e. supports iteration). */ function tryGetNativeSet() { // Internet Explorer's Set doesn't support iteration, so don't use it. var gSet = globals === null || globals === void 0 ? void 0 : globals.Set; // eslint-disable-next-line no-in-operator return typeof gSet !== "undefined" && "entries" in gSet.prototype && new gSet([0]).size === 1 ? gSet : undefined; } NativeCollections.tryGetNativeSet = tryGetNativeSet; })(NativeCollections || (NativeCollections = {})); /* @internal */ ts.Map = getCollectionImplementation("Map", "tryGetNativeMap", "createMapShim"); /* @internal */ ts.Set = getCollectionImplementation("Set", "tryGetNativeSet", "createSetShim"); /* @internal */ function getCollectionImplementation(name, nativeFactory, shimFactory) { var _a; // NOTE: ts.ShimCollections will be defined for typescriptServices.js but not for tsc.js, so we must test for it. var constructor = (_a = NativeCollections[nativeFactory]()) !== null && _a !== void 0 ? _a : ts.ShimCollections === null || ts.ShimCollections === void 0 ? void 0 : ts.ShimCollections[shimFactory](ts.getIterator); if (constructor) return constructor; throw new Error("TypeScript requires an environment that provides a compatible native ".concat(name, " implementation.")); } })(ts || (ts = {})); /* @internal */ var ts; (function (ts) { function getIterator(iterable) { if (iterable) { if (isArray(iterable)) return arrayIterator(iterable); if (iterable instanceof ts.Map) return iterable.entries(); if (iterable instanceof ts.Set) return iterable.values(); throw new Error("Iteration not supported."); } } ts.getIterator = getIterator; ts.emptyArray = []; ts.emptyMap = new ts.Map(); ts.emptySet = new ts.Set(); function length(array) { return array ? array.length : 0; } ts.length = length; /** * Iterates through 'array' by index and performs the callback on each element of array until the callback * returns a truthy value, then returns that value. * If no such value is found, the callback is applied to each element of array and undefined is returned. */ function forEach(array, callback) { if (array) { for (var i = 0; i < array.length; i++) { var result = callback(array[i], i); if (result) { return result; } } } return undefined; } ts.forEach = forEach; /** * Like `forEach`, but iterates in reverse order. */ function forEachRight(array, callback) { if (array) { for (var i = array.length - 1; i >= 0; i--) { var result = callback(array[i], i); if (result) { return result; } } } return undefined; } ts.forEachRight = forEachRight; /** Like `forEach`, but suitable for use with numbers and strings (which may be falsy). */ function firstDefined(array, callback) { if (array === undefined) { return undefined; } for (var i = 0; i < array.length; i++) { var result = callback(array[i], i); if (result !== undefined) { return result; } } return undefined; } ts.firstDefined = firstDefined; function firstDefinedIterator(iter, callback) { while (true) { var iterResult = iter.next(); if (iterResult.done) { return undefined; } var result = callback(iterResult.value); if (result !== undefined) { return result; } } } ts.firstDefinedIterator = firstDefinedIterator; function reduceLeftIterator(iterator, f, initial) { var result = initial; if (iterator) { for (var step = iterator.next(), pos = 0; !step.done; step = iterator.next(), pos++) { result = f(result, step.value, pos); } } return result; } ts.reduceLeftIterator = reduceLeftIterator; function zipWith(arrayA, arrayB, callback) { var result = []; ts.Debug.assertEqual(arrayA.length, arrayB.length); for (var i = 0; i < arrayA.length; i++) { result.push(callback(arrayA[i], arrayB[i], i)); } return result; } ts.zipWith = zipWith; function zipToIterator(arrayA, arrayB) { ts.Debug.assertEqual(arrayA.length, arrayB.length); var i = 0; return { next: function () { if (i === arrayA.length) { return { value: undefined, done: true }; } i++; return { value: [arrayA[i - 1], arrayB[i - 1]], done: false }; } }; } ts.zipToIterator = zipToIterator; function zipToMap(keys, values) { ts.Debug.assert(keys.length === values.length); var map = new ts.Map(); for (var i = 0; i < keys.length; ++i) { map.set(keys[i], values[i]); } return map; } ts.zipToMap = zipToMap; /** * Creates a new array with `element` interspersed in between each element of `input` * if there is more than 1 value in `input`. Otherwise, returns the existing array. */ function intersperse(input, element) { if (input.length <= 1) { return input; } var result = []; for (var i = 0, n = input.length; i < n; i++) { if (i) result.push(element); result.push(input[i]); } return result; } ts.intersperse = intersperse; /** * Iterates through `array` by index and performs the callback on each element of array until the callback * returns a falsey value, then returns false. * If no such value is found, the callback is applied to each element of array and `true` is returned. */ function every(array, callback) { if (array) { for (var i = 0; i < array.length; i++) { if (!callback(array[i], i)) { return false; } } } return true; } ts.every = every; function find(array, predicate) { for (var i = 0; i < array.length; i++) { var value = array[i]; if (predicate(value, i)) { return value; } } return undefined; } ts.find = find; function findLast(array, predicate) { for (var i = array.length - 1; i >= 0; i--) { var value = array[i]; if (predicate(value, i)) { return value; } } return undefined; } ts.findLast = findLast; /** Works like Array.prototype.findIndex, returning `-1` if no element satisfying the predicate is found. */ function findIndex(array, predicate, startIndex) { for (var i = startIndex || 0; i < array.length; i++) { if (predicate(array[i], i)) { return i; } } return -1; } ts.findIndex = findIndex; function findLastIndex(array, predicate, startIndex) { for (var i = startIndex === undefined ? array.length - 1 : startIndex; i >= 0; i--) { if (predicate(array[i], i)) { return i; } } return -1; } ts.findLastIndex = findLastIndex; /** * Returns the first truthy result of `callback`, or else fails. * This is like `forEach`, but never returns undefined. */ function findMap(array, callback) { for (var i = 0; i < array.length; i++) { var result = callback(array[i], i); if (result) { return result; } } return ts.Debug.fail(); } ts.findMap = findMap; function contains(array, value, equalityComparer) { if (equalityComparer === void 0) { equalityComparer = equateValues; } if (array) { for (var _i = 0, array_1 = array; _i < array_1.length; _i++) { var v = array_1[_i]; if (equalityComparer(v, value)) { return true; } } } return false; } ts.contains = contains; function arraysEqual(a, b, equalityComparer) { if (equalityComparer === void 0) { equalityComparer = equateValues; } return a.length === b.length && a.every(function (x, i) { return equalityComparer(x, b[i]); }); } ts.arraysEqual = arraysEqual; function indexOfAnyCharCode(text, charCodes, start) { for (var i = start || 0; i < text.length; i++) { if (contains(charCodes, text.charCodeAt(i))) { return i; } } return -1; } ts.indexOfAnyCharCode = indexOfAnyCharCode; function countWhere(array, predicate) { var count = 0; if (array) { for (var i = 0; i < array.length; i++) { var v = array[i]; if (predicate(v, i)) { count++; } } } return count; } ts.countWhere = countWhere; function filter(array, f) { if (array) { var len = array.length; var i = 0; while (i < len && f(array[i])) i++; if (i < len) { var result = array.slice(0, i); i++; while (i < len) { var item = array[i]; if (f(item)) { result.push(item); } i++; } return result; } } return array; } ts.filter = filter; function filterMutate(array, f) { var outIndex = 0; for (var i = 0; i < array.length; i++) { if (f(array[i], i, array)) { array[outIndex] = array[i]; outIndex++; } } array.length = outIndex; } ts.filterMutate = filterMutate; function clear(array) { array.length = 0; } ts.clear = clear; function map(array, f) { var result; if (array) { result = []; for (var i = 0; i < array.length; i++) { result.push(f(array[i], i)); } } return result; } ts.map = map; function mapIterator(iter, mapFn) { return { next: function () { var iterRes = iter.next(); return iterRes.done ? iterRes : { value: mapFn(iterRes.value), done: false }; } }; } ts.mapIterator = mapIterator; function sameMap(array, f) { if (array) { for (var i = 0; i < array.length; i++) { var item = array[i]; var mapped = f(item, i); if (item !== mapped) { var result = array.slice(0, i); result.push(mapped); for (i++; i < array.length; i++) { result.push(f(array[i], i)); } return result; } } } return array; } ts.sameMap = sameMap; /** * Flattens an array containing a mix of array or non-array elements. * * @param array The array to flatten. */ function flatten(array) { var result = []; for (var _i = 0, array_2 = array; _i < array_2.length; _i++) { var v = array_2[_i]; if (v) { if (isArray(v)) { addRange(result, v); } else { result.push(v); } } } return result; } ts.flatten = flatten; /** * Maps an array. If the mapped value is an array, it is spread into the result. * * @param array The array to map. * @param mapfn The callback used to map the result into one or more values. */ function flatMap(array, mapfn) { var result; if (array) { for (var i = 0; i < array.length; i++) { var v = mapfn(array[i], i); if (v) { if (isArray(v)) { result = addRange(result, v); } else { result = append(result, v); } } } } return result || ts.emptyArray; } ts.flatMap = flatMap; function flatMapToMutable(array, mapfn) { var result = []; if (array) { for (var i = 0; i < array.length; i++) { var v = mapfn(array[i], i); if (v) { if (isArray(v)) { addRange(result, v); } else { result.push(v); } } } } return result; } ts.flatMapToMutable = flatMapToMutable; function flatMapIterator(iter, mapfn) { var first = iter.next(); if (first.done) { return ts.emptyIterator; } var currentIter = getIterator(first.value); return { next: function () { while (true) { var currentRes = currentIter.next(); if (!currentRes.done) { return currentRes; } var iterRes = iter.next(); if (iterRes.done) { return iterRes; } currentIter = getIterator(iterRes.value); } }, }; function getIterator(x) { var res = mapfn(x); return res === undefined ? ts.emptyIterator : isArray(res) ? arrayIterator(res) : res; } } ts.flatMapIterator = flatMapIterator; function sameFlatMap(array, mapfn) { var result; if (array) { for (var i = 0; i < array.length; i++) { var item = array[i]; var mapped = mapfn(item, i); if (result || item !== mapped || isArray(mapped)) { if (!result) { result = array.slice(0, i); } if (isArray(mapped)) { addRange(result, mapped); } else { result.push(mapped); } } } } return result || array; } ts.sameFlatMap = sameFlatMap; function mapAllOrFail(array, mapFn) { var result = []; for (var i = 0; i < array.length; i++) { var mapped = mapFn(array[i], i); if (mapped === undefined) { return undefined; } result.push(mapped); } return result; } ts.mapAllOrFail = mapAllOrFail; function mapDefined(array, mapFn) { var result = []; if (array) { for (var i = 0; i < array.length; i++) { var mapped = mapFn(array[i], i); if (mapped !== undefined) { result.push(mapped); } } } return result; } ts.mapDefined = mapDefined; function mapDefinedIterator(iter, mapFn) { return { next: function () { while (true) { var res = iter.next(); if (res.done) { return res; } var value = mapFn(res.value); if (value !== undefined) { return { value: value, done: false }; } } } }; } ts.mapDefinedIterator = mapDefinedIterator; function mapDefinedEntries(map, f) { if (!map) { return undefined; } var result = new ts.Map(); map.forEach(function (value, key) { var entry = f(key, value); if (entry !== undefined) { var newKey = entry[0], newValue = entry[1]; if (newKey !== undefined && newValue !== undefined) { result.set(newKey, newValue); } } }); return result; } ts.mapDefinedEntries = mapDefinedEntries; function mapDefinedValues(set, f) { if (set) { var result_1 = new ts.Set(); set.forEach(function (value) { var newValue = f(value); if (newValue !== undefined) { result_1.add(newValue); } }); return result_1; } } ts.mapDefinedValues = mapDefinedValues; function getOrUpdate(map, key, callback) { if (map.has(key)) { return map.get(key); } var value = callback(); map.set(key, value); return value; } ts.getOrUpdate = getOrUpdate; function tryAddToSet(set, value) { if (!set.has(value)) { set.add(value); return true; } return false; } ts.tryAddToSet = tryAddToSet; ts.emptyIterator = { next: function () { return ({ value: undefined, done: true }); } }; function singleIterator(value) { var done = false; return { next: function () { var wasDone = done; done = true; return wasDone ? { value: undefined, done: true } : { value: value, done: false }; } }; } ts.singleIterator = singleIterator; function spanMap(array, keyfn, mapfn) { var result; if (array) { result = []; var len = array.length; var previousKey = void 0; var key = void 0; var start = 0; var pos = 0; while (start < len) { while (pos < len) { var value = array[pos]; key = keyfn(value, pos); if (pos === 0) { previousKey = key; } else if (key !== previousKey) { break; } pos++; } if (start < pos) { var v = mapfn(array.slice(start, pos), previousKey, start, pos); if (v) { result.push(v); } start = pos; } previousKey = key; pos++; } } return result; } ts.spanMap = spanMap; function mapEntries(map, f) { if (!map) { return undefined; } var result = new ts.Map(); map.forEach(function (value, key) { var _a = f(key, value), newKey = _a[0], newValue = _a[1]; result.set(newKey, newValue); }); return result; } ts.mapEntries = mapEntries; function some(array, predicate) { if (array) { if (predicate) { for (var _i = 0, array_3 = array; _i < array_3.length; _i++) { var v = array_3[_i]; if (predicate(v)) { return true; } } } else { return array.length > 0; } } return false; } ts.some = some; /** Calls the callback with (start, afterEnd) index pairs for each range where 'pred' is true. */ function getRangesWhere(arr, pred, cb) { var start; for (var i = 0; i < arr.length; i++) { if (pred(arr[i])) { start = start === undefined ? i : start; } else { if (start !== undefined) { cb(start, i); start = undefined; } } } if (start !== undefined) cb(start, arr.length); } ts.getRangesWhere = getRangesWhere; function concatenate(array1, array2) { if (!some(array2)) return array1; if (!some(array1)) return array2; return __spreadArray(__spreadArray([], array1, true), array2, true); } ts.concatenate = concatenate; function selectIndex(_, i) { return i; } function indicesOf(array) { return array.map(selectIndex); } ts.indicesOf = indicesOf; function deduplicateRelational(array, equalityComparer, comparer) { // Perform a stable sort of the array. This ensures the first entry in a list of // duplicates remains the first entry in the result. var indices = indicesOf(array); stableSortIndices(array, indices, comparer); var last = array[indices[0]]; var deduplicated = [indices[0]]; for (var i = 1; i < indices.length; i++) { var index = indices[i]; var item = array[index]; if (!equalityComparer(last, item)) { deduplicated.push(index); last = item; } } // restore original order deduplicated.sort(); return deduplicated.map(function (i) { return array[i]; }); } function deduplicateEquality(array, equalityComparer) { var result = []; for (var _i = 0, array_4 = array; _i < array_4.length; _i++) { var item = array_4[_i]; pushIfUnique(result, item, equalityComparer); } return result; } /** * Deduplicates an unsorted array. * @param equalityComparer An `EqualityComparer` used to determine if two values are duplicates. * @param comparer An optional `Comparer` used to sort entries before comparison, though the * result will remain in the original order in `array`. */ function deduplicate(array, equalityComparer, comparer) { return array.length === 0 ? [] : array.length === 1 ? array.slice() : comparer ? deduplicateRelational(array, equalityComparer, comparer) : deduplicateEquality(array, equalityComparer); } ts.deduplicate = deduplicate; /** * Deduplicates an array that has already been sorted. */ function deduplicateSorted(array, comparer) { if (array.length === 0) return ts.emptyArray; var last = array[0]; var deduplicated = [last]; for (var i = 1; i < array.length; i++) { var next = array[i]; switch (comparer(next, last)) { // equality comparison case true: // relational comparison // falls through case 0 /* Comparison.EqualTo */: continue; case -1 /* Comparison.LessThan */: // If `array` is sorted, `next` should **never** be less than `last`. return ts.Debug.fail("Array is unsorted."); } deduplicated.push(last = next); } return deduplicated; } function createSortedArray() { return []; // TODO: GH#19873 } ts.createSortedArray = createSortedArray; function insertSorted(array, insert, compare, allowDuplicates) { if (array.length === 0) { array.push(insert); return; } var insertIndex = binarySearch(array, insert, identity, compare); if (insertIndex < 0) { array.splice(~insertIndex, 0, insert); } else if (allowDuplicates) { array.splice(insertIndex, 0, insert); } } ts.insertSorted = insertSorted; function sortAndDeduplicate(array, comparer, equalityComparer) { return deduplicateSorted(sort(array, comparer), equalityComparer || comparer || compareStringsCaseSensitive); } ts.sortAndDeduplicate = sortAndDeduplicate; function arrayIsSorted(array, comparer) { if (array.length < 2) return true; var prevElement = array[0]; for (var _i = 0, _a = array.slice(1); _i < _a.length; _i++) { var element = _a[_i]; if (comparer(prevElement, element) === 1 /* Comparison.GreaterThan */) { return false; } prevElement = element; } return true; } ts.arrayIsSorted = arrayIsSorted; function arrayIsEqualTo(array1, array2, equalityComparer) { if (equalityComparer === void 0) { equalityComparer = equateValues; } if (!array1 || !array2) { return array1 === array2; } if (array1.length !== array2.length) { return false; } for (var i = 0; i < array1.length; i++) { if (!equalityComparer(array1[i], array2[i], i)) { return false; } } return true; } ts.arrayIsEqualTo = arrayIsEqualTo; function compact(array) { var result; if (array) { for (var i = 0; i < array.length; i++) { var v = array[i]; if (result || !v) { if (!result) { result = array.slice(0, i); } if (v) { result.push(v); } } } } return result || array; } ts.compact = compact; /** * Gets the relative complement of `arrayA` with respect to `arrayB`, returning the elements that * are not present in `arrayA` but are present in `arrayB`. Assumes both arrays are sorted * based on the provided comparer. */ function relativeComplement(arrayA, arrayB, comparer) { if (!arrayB || !arrayA || arrayB.length === 0 || arrayA.length === 0) return arrayB; var result = []; loopB: for (var offsetA = 0, offsetB = 0; offsetB < arrayB.length; offsetB++) { if (offsetB > 0) { // Ensure `arrayB` is properly sorted. ts.Debug.assertGreaterThanOrEqual(comparer(arrayB[offsetB], arrayB[offsetB - 1]), 0 /* Comparison.EqualTo */); } loopA: for (var startA = offsetA; offsetA < arrayA.length; offsetA++) { if (offsetA > startA) { // Ensure `arrayA` is properly sorted. We only need to perform this check if // `offsetA` has changed since we entered the loop. ts.Debug.assertGreaterThanOrEqual(comparer(arrayA[offsetA], arrayA[offsetA - 1]), 0 /* Comparison.EqualTo */); } switch (comparer(arrayB[offsetB], arrayA[offsetA])) { case -1 /* Comparison.LessThan */: // If B is less than A, B does not exist in arrayA. Add B to the result and // move to the next element in arrayB without changing the current position // in arrayA. result.push(arrayB[offsetB]); continue loopB; case 0 /* Comparison.EqualTo */: // If B is equal to A, B exists in arrayA. Move to the next element in // arrayB without adding B to the result or changing the current position // in arrayA. continue loopB; case 1 /* Comparison.GreaterThan */: // If B is greater than A, we need to keep looking for B in arrayA. Move to // the next element in arrayA and recheck. continue loopA; } } } return result; } ts.relativeComplement = relativeComplement; function sum(array, prop) { var result = 0; for (var _i = 0, array_5 = array; _i < array_5.length; _i++) { var v = array_5[_i]; result += v[prop]; } return result; } ts.sum = sum; function append(to, value) { if (value === undefined) return to; if (to === undefined) return [value]; to.push(value); return to; } ts.append = append; function combine(xs, ys) { if (xs === undefined) return ys; if (ys === undefined) return xs; if (isArray(xs)) return isArray(ys) ? concatenate(xs, ys) : append(xs, ys); if (isArray(ys)) return append(ys, xs); return [xs, ys]; } ts.combine = combine; /** * Gets the actual offset into an array for a relative offset. Negative offsets indicate a * position offset from the end of the array. */ function toOffset(array, offset) { return offset < 0 ? array.length + offset : offset; } function addRange(to, from, start, end) { if (from === undefined || from.length === 0) return to; if (to === undefined) return from.slice(start, end); start = start === undefined ? 0 : toOffset(from, start); end = end === undefined ? from.length : toOffset(from, end); for (var i = start; i < end && i < from.length; i++) { if (from[i] !== undefined) { to.push(from[i]); } } return to; } ts.addRange = addRange; /** * @return Whether the value was added. */ function pushIfUnique(array, toAdd, equalityComparer) { if (contains(array, toAdd, equalityComparer)) { return false; } else { array.push(toAdd); return true; } } ts.pushIfUnique = pushIfUnique; /** * Unlike `pushIfUnique`, this can take `undefined` as an input, and returns a new array. */ function appendIfUnique(array, toAdd, equalityComparer) { if (array) { pushIfUnique(array, toAdd, equalityComparer); return array; } else { return [toAdd]; } } ts.appendIfUnique = appendIfUnique; function stableSortIndices(array, indices, comparer) { // sort indices by value then position indices.sort(function (x, y) { return comparer(array[x], array[y]) || compareValues(x, y); }); } /** * Returns a new sorted array. */ function sort(array, comparer) { return (array.length === 0 ? array : array.slice().sort(comparer)); } ts.sort = sort; function arrayIterator(array) { var i = 0; return { next: function () { if (i === array.length) { return { value: undefined, done: true }; } else { i++; return { value: array[i - 1], done: false }; } } }; } ts.arrayIterator = arrayIterator; function arrayReverseIterator(array) { var i = array.length; return { next: function () { if (i === 0) { return { value: undefined, done: true }; } else { i--; return { value: array[i], done: false }; } } }; } ts.arrayReverseIterator = arrayReverseIterator; /** * Stable sort of an array. Elements equal to each other maintain their relative position in the array. */ function stableSort(array, comparer) { var indices = indicesOf(array); stableSortIndices(array, indices, comparer); return indices.map(function (i) { return array[i]; }); } ts.stableSort = stableSort; function rangeEquals(array1, array2, pos, end) { while (pos < end) { if (array1[pos] !== array2[pos]) { return false; } pos++; } return true; } ts.rangeEquals = rangeEquals; /** * Returns the element at a specific offset in an array if non-empty, `undefined` otherwise. * A negative offset indicates the element should be retrieved from the end of the array. */ function elementAt(array, offset) { if (array) { offset = toOffset(array, offset); if (offset < array.length) { return array[offset]; } } return undefined; } ts.elementAt = elementAt; /** * Returns the first element of an array if non-empty, `undefined` otherwise. */ function firstOrUndefined(array) { return array.length === 0 ? undefined : array[0]; } ts.firstOrUndefined = firstOrUndefined; function first(array) { ts.Debug.assert(array.length !== 0); return array[0]; } ts.first = first; /** * Returns the last element of an array if non-empty, `undefined` otherwise. */ function lastOrUndefined(array) { return array.length === 0 ? undefined : array[array.length - 1]; } ts.lastOrUndefined = lastOrUndefined; function last(array) { ts.Debug.assert(array.length !== 0); return array[array.length - 1]; } ts.last = last; /** * Returns the only element of an array if it contains only one element, `undefined` otherwise. */ function singleOrUndefined(array) { return array && array.length === 1 ? array[0] : undefined; } ts.singleOrUndefined = singleOrUndefined; function singleOrMany(array) { return array && array.length === 1 ? array[0] : array; } ts.singleOrMany = singleOrMany; function replaceElement(array, index, value) { var result = array.slice(0); result[index] = value; return result; } ts.replaceElement = replaceElement; /** * Performs a binary search, finding the index at which `value` occurs in `array`. * If no such index is found, returns the 2's-complement of first index at which * `array[index]` exceeds `value`. * @param array A sorted array whose first element must be no larger than number * @param value The value to be searched for in the array. * @param keySelector A callback used to select the search key from `value` and each element of * `array`. * @param keyComparer A callback used to compare two keys in a sorted array. * @param offset An offset into `array` at which to start the search. */ function binarySearch(array, value, keySelector, keyComparer, offset) { return binarySearchKey(array, keySelector(value), keySelector, keyComparer, offset); } ts.binarySearch = binarySearch; /** * Performs a binary search, finding the index at which an object with `key` occurs in `array`. * If no such index is found, returns the 2's-complement of first index at which * `array[index]` exceeds `key`. * @param array A sorted array whose first element must be no larger than number * @param key The key to be searched for in the array. * @param keySelector A callback used to select the search key from each element of `array`. * @param keyComparer A callback used to compare two keys in a sorted array. * @param offset An offset into `array` at which to start the search. */ function binarySearchKey(array, key, keySelector, keyComparer, offset) { if (!some(array)) { return -1; } var low = offset || 0; var high = array.length - 1; while (low <= high) { var middle = low + ((high - low) >> 1); var midKey = keySelector(array[middle], middle); switch (keyComparer(midKey, key)) { case -1 /* Comparison.LessThan */: low = middle + 1; break; case 0 /* Comparison.EqualTo */: return middle; case 1 /* Comparison.GreaterThan */: high = middle - 1; break; } } return ~low; } ts.binarySearchKey = binarySearchKey; function reduceLeft(array, f, initial, start, count) { if (array && array.length > 0) { var size = array.length; if (size > 0) { var pos = start === undefined || start < 0 ? 0 : start; var end = count === undefined || pos + count > size - 1 ? size - 1 : pos + count; var result = void 0; if (arguments.length <= 2) { result = array[pos]; pos++; } else { result = initial; } while (pos <= end) { result = f(result, array[pos], pos); pos++; } return result; } } return initial; } ts.reduceLeft = reduceLeft; var hasOwnProperty = Object.prototype.hasOwnProperty; /** * Indicates whether a map-like contains an own property with the specified key. * * @param map A map-like. * @param key A property key. */ function hasProperty(map, key) { return hasOwnProperty.call(map, key); } ts.hasProperty = hasProperty; /** * Gets the value of an owned property in a map-like. * * @param map A map-like. * @param key A property key. */ function getProperty(map, key) { return hasOwnProperty.call(map, key) ? map[key] : undefined; } ts.getProperty = getProperty; /** * Gets the owned, enumerable property keys of a map-like. */ function getOwnKeys(map) { var keys = []; for (var key in map) { if (hasOwnProperty.call(map, key)) { keys.push(key); } } return keys; } ts.getOwnKeys = getOwnKeys; function getAllKeys(obj) { var result = []; do { var names = Object.getOwnPropertyNames(obj); for (var _i = 0, names_1 = names; _i < names_1.length; _i++) { var name = names_1[_i]; pushIfUnique(result, name); } } while (obj = Object.getPrototypeOf(obj)); return result; } ts.getAllKeys = getAllKeys; function getOwnValues(collection) { var values = []; for (var key in collection) { if (hasOwnProperty.call(collection, key)) { values.push(collection[key]); } } return values; } ts.getOwnValues = getOwnValues; var _entries = Object.entries || (function (obj) { var keys = getOwnKeys(obj); var result = Array(keys.length); for (var i = 0; i < keys.length; i++) { result[i] = [keys[i], obj[keys[i]]]; } return result; }); function getEntries(obj) { return obj ? _entries(obj) : []; } ts.getEntries = getEntries; function arrayOf(count, f) { var result = new Array(count); for (var i = 0; i < count; i++) { result[i] = f(i); } return result; } ts.arrayOf = arrayOf; function arrayFrom(iterator, map) { var result = []; for (var iterResult = iterator.next(); !iterResult.done; iterResult = iterator.next()) { result.push(map ? map(iterResult.value) : iterResult.value); } return result; } ts.arrayFrom = arrayFrom; function assign(t) { var args = []; for (var _i = 1; _i < arguments.length; _i++) { args[_i - 1] = arguments[_i]; } for (var _a = 0, args_1 = args; _a < args_1.length; _a++) { var arg = args_1[_a]; if (arg === undefined) continue; for (var p in arg) { if (hasProperty(arg, p)) { t[p] = arg[p]; } } } return t; } ts.assign = assign; /** * Performs a shallow equality comparison of the contents of two map-likes. * * @param left A map-like whose properties should be compared. * @param right A map-like whose properties should be compared. */ function equalOwnProperties(left, right, equalityComparer) { if (equalityComparer === void 0) { equalityComparer = equateValues; } if (left === right) return true; if (!left || !right) return false; for (var key in left) { if (hasOwnProperty.call(left, key)) { if (!hasOwnProperty.call(right, key)) return false; if (!equalityComparer(left[key], right[key])) return false; } } for (var key in right) { if (hasOwnProperty.call(right, key)) { if (!hasOwnProperty.call(left, key)) return false; } } return true; } ts.equalOwnProperties = equalOwnProperties; function arrayToMap(array, makeKey, makeValue) { if (makeValue === void 0) { makeValue = identity; } var result = new ts.Map(); for (var _i = 0, array_6 = array; _i < array_6.length; _i++) { var value = array_6[_i]; var key = makeKey(value); if (key !== undefined) result.set(key, makeValue(value)); } return result; } ts.arrayToMap = arrayToMap; function arrayToNumericMap(array, makeKey, makeValue) { if (makeValue === void 0) { makeValue = identity; } var result = []; for (var _i = 0, array_7 = array; _i < array_7.length; _i++) { var value = array_7[_i]; result[makeKey(value)] = makeValue(value); } return result; } ts.arrayToNumericMap = arrayToNumericMap; function arrayToMultiMap(values, makeKey, makeValue) { if (makeValue === void 0) { makeValue = identity; } var result = createMultiMap(); for (var _i = 0, values_1 = values; _i < values_1.length; _i++) { var value = values_1[_i]; result.add(makeKey(value), makeValue(value)); } return result; } ts.arrayToMultiMap = arrayToMultiMap; function group(values, getGroupId, resultSelector) { if (resultSelector === void 0) { resultSelector = identity; } return arrayFrom(arrayToMultiMap(values, getGroupId).values(), resultSelector); } ts.group = group; function clone(object) { var result = {}; for (var id in object) { if (hasOwnProperty.call(object, id)) { result[id] = object[id]; } } return result; } ts.clone = clone; /** * Creates a new object by adding the own properties of `second`, then the own properties of `first`. * * NOTE: This means that if a property exists in both `first` and `second`, the property in `first` will be chosen. */ function extend(first, second) { var result = {}; for (var id in second) { if (hasOwnProperty.call(second, id)) { result[id] = second[id]; } } for (var id in first) { if (hasOwnProperty.call(first, id)) { result[id] = first[id]; } } return result; } ts.extend = extend; function copyProperties(first, second) { for (var id in second) { if (hasOwnProperty.call(second, id)) { first[id] = second[id]; } } } ts.copyProperties = copyProperties; function maybeBind(obj, fn) { return fn ? fn.bind(obj) : undefined; } ts.maybeBind = maybeBind; function createMultiMap() { var map = new ts.Map(); map.add = multiMapAdd; map.remove = multiMapRemove; return map; } ts.createMultiMap = createMultiMap; function multiMapAdd(key, value) { var values = this.get(key); if (values) { values.push(value); } else { this.set(key, values = [value]); } return values; } function multiMapRemove(key, value) { var values = this.get(key); if (values) { unorderedRemoveItem(values, value); if (!values.length) { this.delete(key); } } } function createUnderscoreEscapedMultiMap() { return createMultiMap(); } ts.createUnderscoreEscapedMultiMap = createUnderscoreEscapedMultiMap; /** * Creates a Set with custom equality and hash code functionality. This is useful when you * want to use something looser than object identity - e.g. "has the same span". * * If `equals(a, b)`, it must be the case that `getHashCode(a) === getHashCode(b)`. * The converse is not required. * * To facilitate a perf optimization (lazy allocation of bucket arrays), `TElement` is * assumed not to be an array type. */ function createSet(getHashCode, equals) { var multiMap = new ts.Map(); var size = 0; function getElementIterator() { var valueIt = multiMap.values(); var arrayIt; return { next: function () { while (true) { if (arrayIt) { var n = arrayIt.next(); if (!n.done) { return { value: n.value }; } arrayIt = undefined; } else { var n = valueIt.next(); if (n.done) { return { value: undefined, done: true }; } if (!isArray(n.value)) { return { value: n.value }; } arrayIt = arrayIterator(n.value); } } } }; } var set = { has: function (element) { var hash = getHashCode(element); if (!multiMap.has(hash)) return false; var candidates = multiMap.get(hash); if (!isArray(candidates)) return equals(candidates, element); for (var _i = 0, candidates_1 = candidates; _i < candidates_1.length; _i++) { var candidate = candidates_1[_i]; if (equals(candidate, element)) { return true; } } return false; }, add: function (element) { var hash = getHashCode(element); if (multiMap.has(hash)) { var values = multiMap.get(hash); if (isArray(values)) { if (!contains(values, element, equals)) { values.push(element); size++; } } else { var value = values; if (!equals(value, element)) { multiMap.set(hash, [value, element]); size++; } } } else { multiMap.set(hash, element); size++; } return this; }, delete: function (element) { var hash = getHashCode(element); if (!multiMap.has(hash)) return false; var candidates = multiMap.get(hash); if (isArray(candidates)) { for (var i = 0; i < candidates.length; i++) { if (equals(candidates[i], element)) { if (candidates.length === 1) { multiMap.delete(hash); } else if (candidates.length === 2) { multiMap.set(hash, candidates[1 - i]); } else { unorderedRemoveItemAt(candidates, i); } size--; return true; } } } else { var candidate = candidates; if (equals(candidate, element)) { multiMap.delete(hash); size--; return true; } } return false; }, clear: function () { multiMap.clear(); size = 0; }, get size() { return size; }, forEach: function (action) { for (var _i = 0, _a = arrayFrom(multiMap.values()); _i < _a.length; _i++) { var elements = _a[_i]; if (isArray(elements)) { for (var _b = 0, elements_1 = elements; _b < elements_1.length; _b++) { var element = elements_1[_b]; action(element, element); } } else { var element = elements; action(element, element); } } }, keys: function () { return getElementIterator(); }, values: function () { return getElementIterator(); }, entries: function () { var it = getElementIterator(); return { next: function () { var n = it.next(); return n.done ? n : { value: [n.value, n.value] }; } }; }, }; return set; } ts.createSet = createSet; /** * Tests whether a value is an array. */ function isArray(value) { return Array.isArray ? Array.isArray(value) : value instanceof Array; } ts.isArray = isArray; function toArray(value) { return isArray(value) ? value : [value]; } ts.toArray = toArray; /** * Tests whether a value is string */ function isString(text) { return typeof text === "string"; } ts.isString = isString; function isNumber(x) { return typeof x === "number"; } ts.isNumber = isNumber; function tryCast(value, test) { return value !== undefined && test(value) ? value : undefined; } ts.tryCast = tryCast; function cast(value, test) { if (value !== undefined && test(value)) return value; return ts.Debug.fail("Invalid cast. The supplied value ".concat(value, " did not pass the test '").concat(ts.Debug.getFunctionName(test), "'.")); } ts.cast = cast; /** Does nothing. */ function noop(_) { } ts.noop = noop; /** Do nothing and return false */ function returnFalse() { return false; } ts.returnFalse = returnFalse; /** Do nothing and return true */ function returnTrue() { return true; } ts.returnTrue = returnTrue; /** Do nothing and return undefined */ function returnUndefined() { return undefined; } ts.returnUndefined = returnUndefined; /** Returns its argument. */ function identity(x) { return x; } ts.identity = identity; /** Returns lower case string */ function toLowerCase(x) { return x.toLowerCase(); } ts.toLowerCase = toLowerCase; // We convert the file names to lower case as key for file name on case insensitive file system // While doing so we need to handle special characters (eg \u0130) to ensure that we dont convert // it to lower case, fileName with its lowercase form can exist along side it. // Handle special characters and make those case sensitive instead // // |-#--|-Unicode--|-Char code-|-Desc-------------------------------------------------------------------| // | 1. | i | 105 | Ascii i | // | 2. | I | 73 | Ascii I | // |-------- Special characters ------------------------------------------------------------------------| // | 3. | \u0130 | 304 | Upper case I with dot above | // | 4. | i,\u0307 | 105,775 | i, followed by 775: Lower case of (3rd item) | // | 5. | I,\u0307 | 73,775 | I, followed by 775: Upper case of (4th item), lower case is (4th item) | // | 6. | \u0131 | 305 | Lower case i without dot, upper case is I (2nd item) | // | 7. | \u00DF | 223 | Lower case sharp s | // // Because item 3 is special where in its lowercase character has its own // upper case form we cant convert its case. // Rest special characters are either already in lower case format or // they have corresponding upper case character so they dont need special handling // // But to avoid having to do string building for most common cases, also ignore // a-z, 0-9, \u0131, \u00DF, \, /, ., : and space var fileNameLowerCaseRegExp = /[^\u0130\u0131\u00DFa-z0-9\\/:\-_\. ]+/g; /** * Case insensitive file systems have descripencies in how they handle some characters (eg. turkish Upper case I with dot on top - \u0130) * This function is used in places where we want to make file name as a key on these systems * It is possible on mac to be able to refer to file name with I with dot on top as a fileName with its lower case form * But on windows we cannot. Windows can have fileName with I with dot on top next to its lower case and they can not each be referred with the lowercase forms * Technically we would want this function to be platform sepcific as well but * our api has till now only taken caseSensitive as the only input and just for some characters we dont want to update API and ensure all customers use those api * We could use upper case and we would still need to deal with the descripencies but * we want to continue using lower case since in most cases filenames are lowercasewe and wont need any case changes and avoid having to store another string for the key * So for this function purpose, we go ahead and assume character I with dot on top it as case sensitive since its very unlikely to use lower case form of that special character */ function toFileNameLowerCase(x) { return fileNameLowerCaseRegExp.test(x) ? x.replace(fileNameLowerCaseRegExp, toLowerCase) : x; } ts.toFileNameLowerCase = toFileNameLowerCase; /** Throws an error because a function is not implemented. */ function notImplemented() { throw new Error("Not implemented"); } ts.notImplemented = notImplemented; function memoize(callback) { var value; return function () { if (callback) { value = callback(); callback = undefined; } return value; }; } ts.memoize = memoize; /** A version of `memoize` that supports a single primitive argument */ function memoizeOne(callback) { var map = new ts.Map(); return function (arg) { var key = "".concat(typeof arg, ":").concat(arg); var value = map.get(key); if (value === undefined && !map.has(key)) { value = callback(arg); map.set(key, value); } return value; }; } ts.memoizeOne = memoizeOne; function compose(a, b, c, d, e) { if (!!e) { var args_2 = []; for (var i = 0; i < arguments.length; i++) { args_2[i] = arguments[i]; } return function (t) { return reduceLeft(args_2, function (u, f) { return f(u); }, t); }; } else if (d) { return function (t) { return d(c(b(a(t)))); }; } else if (c) { return function (t) { return c(b(a(t))); }; } else if (b) { return function (t) { return b(a(t)); }; } else if (a) { return function (t) { return a(t); }; } else { return function (t) { return t; }; } } ts.compose = compose; var AssertionLevel; (function (AssertionLevel) { AssertionLevel[AssertionLevel["None"] = 0] = "None"; AssertionLevel[AssertionLevel["Normal"] = 1] = "Normal"; AssertionLevel[AssertionLevel["Aggressive"] = 2] = "Aggressive"; AssertionLevel[AssertionLevel["VeryAggressive"] = 3] = "VeryAggressive"; })(AssertionLevel = ts.AssertionLevel || (ts.AssertionLevel = {})); function equateValues(a, b) { return a === b; } ts.equateValues = equateValues; /** * Compare the equality of two strings using a case-sensitive ordinal comparison. * * Case-sensitive comparisons compare both strings one code-point at a time using the integer * value of each code-point after applying `toUpperCase` to each string. We always map both * strings to their upper-case form as some unicode characters do not properly round-trip to * lowercase (such as `ẞ` (German sharp capital s)). */ function equateStringsCaseInsensitive(a, b) { return a === b || a !== undefined && b !== undefined && a.toUpperCase() === b.toUpperCase(); } ts.equateStringsCaseInsensitive = equateStringsCaseInsensitive; /** * Compare the equality of two strings using a case-sensitive ordinal comparison. * * Case-sensitive comparisons compare both strings one code-point at a time using the * integer value of each code-point. */ function equateStringsCaseSensitive(a, b) { return equateValues(a, b); } ts.equateStringsCaseSensitive = equateStringsCaseSensitive; function compareComparableValues(a, b) { return a === b ? 0 /* Comparison.EqualTo */ : a === undefined ? -1 /* Comparison.LessThan */ : b === undefined ? 1 /* Comparison.GreaterThan */ : a < b ? -1 /* Comparison.LessThan */ : 1 /* Comparison.GreaterThan */; } /** * Compare two numeric values for their order relative to each other. * To compare strings, use any of the `compareStrings` functions. */ function compareValues(a, b) { return compareComparableValues(a, b); } ts.compareValues = compareValues; /** * Compare two TextSpans, first by `start`, then by `length`. */ function compareTextSpans(a, b) { return compareValues(a === null || a === void 0 ? void 0 : a.start, b === null || b === void 0 ? void 0 : b.start) || compareValues(a === null || a === void 0 ? void 0 : a.length, b === null || b === void 0 ? void 0 : b.length); } ts.compareTextSpans = compareTextSpans; function min(a, b, compare) { return compare(a, b) === -1 /* Comparison.LessThan */ ? a : b; } ts.min = min; /** * Compare two strings using a case-insensitive ordinal comparison. * * Ordinal comparisons are based on the difference between the unicode code points of both * strings. Characters with multiple unicode representations are considered unequal. Ordinal * comparisons provide predictable ordering, but place "a" after "B". * * Case-insensitive comparisons compare both strings one code-point at a time using the integer * value of each code-point after applying `toUpperCase` to each string. We always map both * strings to their upper-case form as some unicode characters do not properly round-trip to * lowercase (such as `ẞ` (German sharp capital s)). */ function compareStringsCaseInsensitive(a, b) { if (a === b) return 0 /* Comparison.EqualTo */; if (a === undefined) return -1 /* Comparison.LessThan */; if (b === undefined) return 1 /* Comparison.GreaterThan */; a = a.toUpperCase(); b = b.toUpperCase(); return a < b ? -1 /* Comparison.LessThan */ : a > b ? 1 /* Comparison.GreaterThan */ : 0 /* Comparison.EqualTo */; } ts.compareStringsCaseInsensitive = compareStringsCaseInsensitive; /** * Compare two strings using a case-sensitive ordinal comparison. * * Ordinal comparisons are based on the difference between the unicode code points of both * strings. Characters with multiple unicode representations are considered unequal. Ordinal * comparisons provide predictable ordering, but place "a" after "B". * * Case-sensitive comparisons compare both strings one code-point at a time using the integer * value of each code-point. */ function compareStringsCaseSensitive(a, b) { return compareComparableValues(a, b); } ts.compareStringsCaseSensitive = compareStringsCaseSensitive; function getStringComparer(ignoreCase) { return ignoreCase ? compareStringsCaseInsensitive : compareStringsCaseSensitive; } ts.getStringComparer = getStringComparer; /** * Creates a string comparer for use with string collation in the UI. */ var createUIStringComparer = (function () { var defaultComparer; var enUSComparer; var stringComparerFactory = getStringComparerFactory(); return createStringComparer; function compareWithCallback(a, b, comparer) { if (a === b) return 0 /* Comparison.EqualTo */; if (a === undefined) return -1 /* Comparison.LessThan */; if (b === undefined) return 1 /* Comparison.GreaterThan */; var value = comparer(a, b); return value < 0 ? -1 /* Comparison.LessThan */ : value > 0 ? 1 /* Comparison.GreaterThan */ : 0 /* Comparison.EqualTo */; } function createIntlCollatorStringComparer(locale) { // Intl.Collator.prototype.compare is bound to the collator. See NOTE in // http://www.ecma-international.org/ecma-402/2.0/#sec-Intl.Collator.prototype.compare var comparer = new Intl.Collator(locale, { usage: "sort", sensitivity: "variant" }).compare; return function (a, b) { return compareWithCallback(a, b, comparer); }; } function createLocaleCompareStringComparer(locale) { // if the locale is not the default locale (`undefined`), use the fallback comparer. if (locale !== undefined) return createFallbackStringComparer(); return function (a, b) { return compareWithCallback(a, b, compareStrings); }; function compareStrings(a, b) { return a.localeCompare(b); } } function createFallbackStringComparer() { // An ordinal comparison puts "A" after "b", but for the UI we want "A" before "b". // We first sort case insensitively. So "Aaa" will come before "baa". // Then we sort case sensitively, so "aaa" will come before "Aaa". // // For case insensitive comparisons we always map both strings to their // upper-case form as some unicode characters do not properly round-trip to // lowercase (such as `ẞ` (German sharp capital s)). return function (a, b) { return compareWithCallback(a, b, compareDictionaryOrder); }; function compareDictionaryOrder(a, b) { return compareStrings(a.toUpperCase(), b.toUpperCase()) || compareStrings(a, b); } function compareStrings(a, b) { return a < b ? -1 /* Comparison.LessThan */ : a > b ? 1 /* Comparison.GreaterThan */ : 0 /* Comparison.EqualTo */; } } function getStringComparerFactory() { // If the host supports Intl, we use it for comparisons using the default locale. if (typeof Intl === "object" && typeof Intl.Collator === "function") { return createIntlCollatorStringComparer; } // If the host does not support Intl, we fall back to localeCompare. // localeCompare in Node v0.10 is just an ordinal comparison, so don't use it. if (typeof String.prototype.localeCompare === "function" && typeof String.prototype.toLocaleUpperCase === "function" && "a".localeCompare("B") < 0) { return createLocaleCompareStringComparer; } // Otherwise, fall back to ordinal comparison: return createFallbackStringComparer; } function createStringComparer(locale) { // Hold onto common string comparers. This avoids constantly reallocating comparers during // tests. if (locale === undefined) { return defaultComparer || (defaultComparer = stringComparerFactory(locale)); } else if (locale === "en-US") { return enUSComparer || (enUSComparer = stringComparerFactory(locale)); } else { return stringComparerFactory(locale); } } })(); var uiComparerCaseSensitive; var uiLocale; function getUILocale() { return uiLocale; } ts.getUILocale = getUILocale; function setUILocale(value) { if (uiLocale !== value) { uiLocale = value; uiComparerCaseSensitive = undefined; } } ts.setUILocale = setUILocale; /** * Compare two strings in a using the case-sensitive sort behavior of the UI locale. * * Ordering is not predictable between different host locales, but is best for displaying * ordered data for UI presentation. Characters with multiple unicode representations may * be considered equal. * * Case-sensitive comparisons compare strings that differ in base characters, or * accents/diacritic marks, or case as unequal. */ function compareStringsCaseSensitiveUI(a, b) { var comparer = uiComparerCaseSensitive || (uiComparerCaseSensitive = createUIStringComparer(uiLocale)); return comparer(a, b); } ts.compareStringsCaseSensitiveUI = compareStringsCaseSensitiveUI; function compareProperties(a, b, key, comparer) { return a === b ? 0 /* Comparison.EqualTo */ : a === undefined ? -1 /* Comparison.LessThan */ : b === undefined ? 1 /* Comparison.GreaterThan */ : comparer(a[key], b[key]); } ts.compareProperties = compareProperties; /** True is greater than false. */ function compareBooleans(a, b) { return compareValues(a ? 1 : 0, b ? 1 : 0); } ts.compareBooleans = compareBooleans; /** * Given a name and a list of names that are *not* equal to the name, return a spelling suggestion if there is one that is close enough. * Names less than length 3 only check for case-insensitive equality. * * find the candidate with the smallest Levenshtein distance, * except for candidates: * * With no name * * Whose length differs from the target name by more than 0.34 of the length of the name. * * Whose levenshtein distance is more than 0.4 of the length of the name * (0.4 allows 1 substitution/transposition for every 5 characters, * and 1 insertion/deletion at 3 characters) */ function getSpellingSuggestion(name, candidates, getName) { var maximumLengthDifference = Math.min(2, Math.floor(name.length * 0.34)); var bestDistance = Math.floor(name.length * 0.4) + 1; // If the best result is worse than this, don't bother. var bestCandidate; for (var _i = 0, candidates_2 = candidates; _i < candidates_2.length; _i++) { var candidate = candidates_2[_i]; var candidateName = getName(candidate); if (candidateName !== undefined && Math.abs(candidateName.length - name.length) <= maximumLengthDifference) { if (candidateName === name) { continue; } // Only consider candidates less than 3 characters long when they differ by case. // Otherwise, don't bother, since a user would usually notice differences of a 2-character name. if (candidateName.length < 3 && candidateName.toLowerCase() !== name.toLowerCase()) { continue; } var distance = levenshteinWithMax(name, candidateName, bestDistance - 0.1); if (distance === undefined) { continue; } ts.Debug.assert(distance < bestDistance); // Else `levenshteinWithMax` should return undefined bestDistance = distance; bestCandidate = candidate; } } return bestCandidate; } ts.getSpellingSuggestion = getSpellingSuggestion; function levenshteinWithMax(s1, s2, max) { var previous = new Array(s2.length + 1); var current = new Array(s2.length + 1); /** Represents any value > max. We don't care about the particular value. */ var big = max + 0.01; for (var i = 0; i <= s2.length; i++) { previous[i] = i; } for (var i = 1; i <= s1.length; i++) { var c1 = s1.charCodeAt(i - 1); var minJ = Math.ceil(i > max ? i - max : 1); var maxJ = Math.floor(s2.length > max + i ? max + i : s2.length); current[0] = i; /** Smallest value of the matrix in the ith column. */ var colMin = i; for (var j = 1; j < minJ; j++) { current[j] = big; } for (var j = minJ; j <= maxJ; j++) { // case difference should be significantly cheaper than other differences var substitutionDistance = s1[i - 1].toLowerCase() === s2[j - 1].toLowerCase() ? (previous[j - 1] + 0.1) : (previous[j - 1] + 2); var dist = c1 === s2.charCodeAt(j - 1) ? previous[j - 1] : Math.min(/*delete*/ previous[j] + 1, /*insert*/ current[j - 1] + 1, /*substitute*/ substitutionDistance); current[j] = dist; colMin = Math.min(colMin, dist); } for (var j = maxJ + 1; j <= s2.length; j++) { current[j] = big; } if (colMin > max) { // Give up -- everything in this column is > max and it can't get better in future columns. return undefined; } var temp = previous; previous = current; current = temp; } var res = previous[s2.length]; return res > max ? undefined : res; } function endsWith(str, suffix) { var expectedPos = str.length - suffix.length; return expectedPos >= 0 && str.indexOf(suffix, expectedPos) === expectedPos; } ts.endsWith = endsWith; function removeSuffix(str, suffix) { return endsWith(str, suffix) ? str.slice(0, str.length - suffix.length) : str; } ts.removeSuffix = removeSuffix; function tryRemoveSuffix(str, suffix) { return endsWith(str, suffix) ? str.slice(0, str.length - suffix.length) : undefined; } ts.tryRemoveSuffix = tryRemoveSuffix; function stringContains(str, substring) { return str.indexOf(substring) !== -1; } ts.stringContains = stringContains; /** * Takes a string like "jquery-min.4.2.3" and returns "jquery" */ function removeMinAndVersionNumbers(fileName) { // We used to use the regex /[.-]((min)|(\d+(\.\d+)*))$/ and would just .replace it twice. // Unfortunately, that regex has O(n^2) performance because v8 doesn't match from the end of the string. // Instead, we now essentially scan the filename (backwards) ourselves. var end = fileName.length; for (var pos = end - 1; pos > 0; pos--) { var ch = fileName.charCodeAt(pos); if (ch >= 48 /* CharacterCodes._0 */ && ch <= 57 /* CharacterCodes._9 */) { // Match a \d+ segment do { --pos; ch = fileName.charCodeAt(pos); } while (pos > 0 && ch >= 48 /* CharacterCodes._0 */ && ch <= 57 /* CharacterCodes._9 */); } else if (pos > 4 && (ch === 110 /* CharacterCodes.n */ || ch === 78 /* CharacterCodes.N */)) { // Looking for "min" or "min" // Already matched the 'n' --pos; ch = fileName.charCodeAt(pos); if (ch !== 105 /* CharacterCodes.i */ && ch !== 73 /* CharacterCodes.I */) { break; } --pos; ch = fileName.charCodeAt(pos); if (ch !== 109 /* CharacterCodes.m */ && ch !== 77 /* CharacterCodes.M */) { break; } --pos; ch = fileName.charCodeAt(pos); } else { // This character is not part of either suffix pattern break; } if (ch !== 45 /* CharacterCodes.minus */ && ch !== 46 /* CharacterCodes.dot */) { break; } end = pos; } // end might be fileName.length, in which case this should internally no-op return end === fileName.length ? fileName : fileName.slice(0, end); } ts.removeMinAndVersionNumbers = removeMinAndVersionNumbers; /** Remove an item from an array, moving everything to its right one space left. */ function orderedRemoveItem(array, item) { for (var i = 0; i < array.length; i++) { if (array[i] === item) { orderedRemoveItemAt(array, i); return true; } } return false; } ts.orderedRemoveItem = orderedRemoveItem; /** Remove an item by index from an array, moving everything to its right one space left. */ function orderedRemoveItemAt(array, index) { // This seems to be faster than either `array.splice(i, 1)` or `array.copyWithin(i, i+ 1)`. for (var i = index; i < array.length - 1; i++) { array[i] = array[i + 1]; } array.pop(); } ts.orderedRemoveItemAt = orderedRemoveItemAt; function unorderedRemoveItemAt(array, index) { // Fill in the "hole" left at `index`. array[index] = array[array.length - 1]; array.pop(); } ts.unorderedRemoveItemAt = unorderedRemoveItemAt; /** Remove the *first* occurrence of `item` from the array. */ function unorderedRemoveItem(array, item) { return unorderedRemoveFirstItemWhere(array, function (element) { return element === item; }); } ts.unorderedRemoveItem = unorderedRemoveItem; /** Remove the *first* element satisfying `predicate`. */ function unorderedRemoveFirstItemWhere(array, predicate) { for (var i = 0; i < array.length; i++) { if (predicate(array[i])) { unorderedRemoveItemAt(array, i); return true; } } return false; } function createGetCanonicalFileName(useCaseSensitiveFileNames) { return useCaseSensitiveFileNames ? identity : toFileNameLowerCase; } ts.createGetCanonicalFileName = createGetCanonicalFileName; function patternText(_a) { var prefix = _a.prefix, suffix = _a.suffix; return "".concat(prefix, "*").concat(suffix); } ts.patternText = patternText; /** * Given that candidate matches pattern, returns the text matching the '*'. * E.g.: matchedText(tryParsePattern("foo*baz"), "foobarbaz") === "bar" */ function matchedText(pattern, candidate) { ts.Debug.assert(isPatternMatch(pattern, candidate)); return candidate.substring(pattern.prefix.length, candidate.length - pattern.suffix.length); } ts.matchedText = matchedText; /** Return the object corresponding to the best pattern to match `candidate`. */ function findBestPatternMatch(values, getPattern, candidate) { var matchedValue; // use length of prefix as betterness criteria var longestMatchPrefixLength = -1; for (var _i = 0, values_2 = values; _i < values_2.length; _i++) { var v = values_2[_i]; var pattern = getPattern(v); if (isPatternMatch(pattern, candidate) && pattern.prefix.length > longestMatchPrefixLength) { longestMatchPrefixLength = pattern.prefix.length; matchedValue = v; } } return matchedValue; } ts.findBestPatternMatch = findBestPatternMatch; function startsWith(str, prefix) { return str.lastIndexOf(prefix, 0) === 0; } ts.startsWith = startsWith; function removePrefix(str, prefix) { return startsWith(str, prefix) ? str.substr(prefix.length) : str; } ts.removePrefix = removePrefix; function tryRemovePrefix(str, prefix, getCanonicalFileName) { if (getCanonicalFileName === void 0) { getCanonicalFileName = identity; } return startsWith(getCanonicalFileName(str), getCanonicalFileName(prefix)) ? str.substring(prefix.length) : undefined; } ts.tryRemovePrefix = tryRemovePrefix; function isPatternMatch(_a, candidate) { var prefix = _a.prefix, suffix = _a.suffix; return candidate.length >= prefix.length + suffix.length && startsWith(candidate, prefix) && endsWith(candidate, suffix); } function and(f, g) { return function (arg) { return f(arg) && g(arg); }; } ts.and = and; function or() { var fs = []; for (var _i = 0; _i < arguments.length; _i++) { fs[_i] = arguments[_i]; } return function () { var args = []; for (var _i = 0; _i < arguments.length; _i++) { args[_i] = arguments[_i]; } var lastResult; for (var _a = 0, fs_1 = fs; _a < fs_1.length; _a++) { var f = fs_1[_a]; lastResult = f.apply(void 0, args); if (lastResult) { return lastResult; } } return lastResult; }; } ts.or = or; function not(fn) { return function () { var args = []; for (var _i = 0; _i < arguments.length; _i++) { args[_i] = arguments[_i]; } return !fn.apply(void 0, args); }; } ts.not = not; function assertType(_) { } ts.assertType = assertType; function singleElementArray(t) { return t === undefined ? undefined : [t]; } ts.singleElementArray = singleElementArray; function enumerateInsertsAndDeletes(newItems, oldItems, comparer, inserted, deleted, unchanged) { unchanged = unchanged || noop; var newIndex = 0; var oldIndex = 0; var newLen = newItems.length; var oldLen = oldItems.length; var hasChanges = false; while (newIndex < newLen && oldIndex < oldLen) { var newItem = newItems[newIndex]; var oldItem = oldItems[oldIndex]; var compareResult = comparer(newItem, oldItem); if (compareResult === -1 /* Comparison.LessThan */) { inserted(newItem); newIndex++; hasChanges = true; } else if (compareResult === 1 /* Comparison.GreaterThan */) { deleted(oldItem); oldIndex++; hasChanges = true; } else { unchanged(oldItem, newItem); newIndex++; oldIndex++; } } while (newIndex < newLen) { inserted(newItems[newIndex++]); hasChanges = true; } while (oldIndex < oldLen) { deleted(oldItems[oldIndex++]); hasChanges = true; } return hasChanges; } ts.enumerateInsertsAndDeletes = enumerateInsertsAndDeletes; function fill(length, cb) { var result = Array(length); for (var i = 0; i < length; i++) { result[i] = cb(i); } return result; } ts.fill = fill; function cartesianProduct(arrays) { var result = []; cartesianProductWorker(arrays, result, /*outer*/ undefined, 0); return result; } ts.cartesianProduct = cartesianProduct; function cartesianProductWorker(arrays, result, outer, index) { for (var _i = 0, _a = arrays[index]; _i < _a.length; _i++) { var element = _a[_i]; var inner = void 0; if (outer) { inner = outer.slice(); inner.push(element); } else { inner = [element]; } if (index === arrays.length - 1) { result.push(inner); } else { cartesianProductWorker(arrays, result, inner, index + 1); } } } /** * Returns string left-padded with spaces or zeros until it reaches the given length. * * @param s String to pad. * @param length Final padded length. If less than or equal to 's.length', returns 's' unchanged. * @param padString Character to use as padding (default " "). */ function padLeft(s, length, padString) { if (padString === void 0) { padString = " "; } return length <= s.length ? s : padString.repeat(length - s.length) + s; } ts.padLeft = padLeft; /** * Returns string right-padded with spaces until it reaches the given length. * * @param s String to pad. * @param length Final padded length. If less than or equal to 's.length', returns 's' unchanged. * @param padString Character to use as padding (default " "). */ function padRight(s, length, padString) { if (padString === void 0) { padString = " "; } return length <= s.length ? s : s + padString.repeat(length - s.length); } ts.padRight = padRight; function takeWhile(array, predicate) { var len = array.length; var index = 0; while (index < len && predicate(array[index])) { index++; } return array.slice(0, index); } ts.takeWhile = takeWhile; /** * Removes the leading and trailing white space and line terminator characters from a string. */ ts.trimString = !!String.prototype.trim ? (function (s) { return s.trim(); }) : function (s) { return ts.trimStringEnd(ts.trimStringStart(s)); }; /** * Returns a copy with trailing whitespace removed. */ ts.trimStringEnd = !!String.prototype.trimEnd ? (function (s) { return s.trimEnd(); }) : trimEndImpl; /** * Returns a copy with leading whitespace removed. */ ts.trimStringStart = !!String.prototype.trimStart ? (function (s) { return s.trimStart(); }) : function (s) { return s.replace(/^\s+/g, ""); }; /** * https://jsbench.me/gjkoxld4au/1 * The simple regex for this, /\s+$/g is O(n^2) in v8. * The native .trimEnd method is by far best, but since that's technically ES2019, * we provide a (still much faster than the simple regex) fallback. */ function trimEndImpl(s) { var end = s.length - 1; while (end >= 0) { if (!ts.isWhiteSpaceLike(s.charCodeAt(end))) break; end--; } return s.slice(0, end + 1); } })(ts || (ts = {})); /* @internal */ var ts; (function (ts) { var LogLevel; (function (LogLevel) { LogLevel[LogLevel["Off"] = 0] = "Off"; LogLevel[LogLevel["Error"] = 1] = "Error"; LogLevel[LogLevel["Warning"] = 2] = "Warning"; LogLevel[LogLevel["Info"] = 3] = "Info"; LogLevel[LogLevel["Verbose"] = 4] = "Verbose"; })(LogLevel = ts.LogLevel || (ts.LogLevel = {})); var Debug; (function (Debug) { var typeScriptVersion; /* eslint-disable prefer-const */ var currentAssertionLevel = 0 /* AssertionLevel.None */; Debug.currentLogLevel = LogLevel.Warning; Debug.isDebugging = false; function getTypeScriptVersion() { return typeScriptVersion !== null && typeScriptVersion !== void 0 ? typeScriptVersion : (typeScriptVersion = new ts.Version(ts.version)); } Debug.getTypeScriptVersion = getTypeScriptVersion; function shouldLog(level) { return Debug.currentLogLevel <= level; } Debug.shouldLog = shouldLog; function logMessage(level, s) { if (Debug.loggingHost && shouldLog(level)) { Debug.loggingHost.log(level, s); } } function log(s) { logMessage(LogLevel.Info, s); } Debug.log = log; (function (log_1) { function error(s) { logMessage(LogLevel.Error, s); } log_1.error = error; function warn(s) { logMessage(LogLevel.Warning, s); } log_1.warn = warn; function log(s) { logMessage(LogLevel.Info, s); } log_1.log = log; function trace(s) { logMessage(LogLevel.Verbose, s); } log_1.trace = trace; })(log = Debug.log || (Debug.log = {})); var assertionCache = {}; function getAssertionLevel() { return currentAssertionLevel; } Debug.getAssertionLevel = getAssertionLevel; function setAssertionLevel(level) { var prevAssertionLevel = currentAssertionLevel; currentAssertionLevel = level; if (level > prevAssertionLevel) { // restore assertion functions for the current assertion level (see `shouldAssertFunction`). for (var _i = 0, _a = ts.getOwnKeys(assertionCache); _i < _a.length; _i++) { var key = _a[_i]; var cachedFunc = assertionCache[key]; if (cachedFunc !== undefined && Debug[key] !== cachedFunc.assertion && level >= cachedFunc.level) { Debug[key] = cachedFunc; assertionCache[key] = undefined; } } } } Debug.setAssertionLevel = setAssertionLevel; function shouldAssert(level) { return currentAssertionLevel >= level; } Debug.shouldAssert = shouldAssert; /** * Tests whether an assertion function should be executed. If it shouldn't, it is cached and replaced with `ts.noop`. * Replaced assertion functions are restored when `Debug.setAssertionLevel` is set to a high enough level. * @param level The minimum assertion level required. * @param name The name of the current assertion function. */ function shouldAssertFunction(level, name) { if (!shouldAssert(level)) { assertionCache[name] = { level: level, assertion: Debug[name] }; Debug[name] = ts.noop; return false; } return true; } function fail(message, stackCrawlMark) { debugger; var e = new Error(message ? "Debug Failure. ".concat(message) : "Debug Failure."); if (Error.captureStackTrace) { Error.captureStackTrace(e, stackCrawlMark || fail); } throw e; } Debug.fail = fail; function failBadSyntaxKind(node, message, stackCrawlMark) { return fail("".concat(message || "Unexpected node.", "\r\nNode ").concat(formatSyntaxKind(node.kind), " was unexpected."), stackCrawlMark || failBadSyntaxKind); } Debug.failBadSyntaxKind = failBadSyntaxKind; function assert(expression, message, verboseDebugInfo, stackCrawlMark) { if (!expression) { message = message ? "False expression: ".concat(message) : "False expression."; if (verboseDebugInfo) { message += "\r\nVerbose Debug Information: " + (typeof verboseDebugInfo === "string" ? verboseDebugInfo : verboseDebugInfo()); } fail(message, stackCrawlMark || assert); } } Debug.assert = assert; function assertEqual(a, b, msg, msg2, stackCrawlMark) { if (a !== b) { var message = msg ? msg2 ? "".concat(msg, " ").concat(msg2) : msg : ""; fail("Expected ".concat(a, " === ").concat(b, ". ").concat(message), stackCrawlMark || assertEqual); } } Debug.assertEqual = assertEqual; function assertLessThan(a, b, msg, stackCrawlMark) { if (a >= b) { fail("Expected ".concat(a, " < ").concat(b, ". ").concat(msg || ""), stackCrawlMark || assertLessThan); } } Debug.assertLessThan = assertLessThan; function assertLessThanOrEqual(a, b, stackCrawlMark) { if (a > b) { fail("Expected ".concat(a, " <= ").concat(b), stackCrawlMark || assertLessThanOrEqual); } } Debug.assertLessThanOrEqual = assertLessThanOrEqual; function assertGreaterThanOrEqual(a, b, stackCrawlMark) { if (a < b) { fail("Expected ".concat(a, " >= ").concat(b), stackCrawlMark || assertGreaterThanOrEqual); } } Debug.assertGreaterThanOrEqual = assertGreaterThanOrEqual; function assertIsDefined(value, message, stackCrawlMark) { // eslint-disable-next-line no-null/no-null if (value === undefined || value === null) { fail(message, stackCrawlMark || assertIsDefined); } } Debug.assertIsDefined = assertIsDefined; function checkDefined(value, message, stackCrawlMark) { assertIsDefined(value, message, stackCrawlMark || checkDefined); return value; } Debug.checkDefined = checkDefined; function assertEachIsDefined(value, message, stackCrawlMark) { for (var _i = 0, value_1 = value; _i < value_1.length; _i++) { var v = value_1[_i]; assertIsDefined(v, message, stackCrawlMark || assertEachIsDefined); } } Debug.assertEachIsDefined = assertEachIsDefined; function checkEachDefined(value, message, stackCrawlMark) { assertEachIsDefined(value, message, stackCrawlMark || checkEachDefined); return value; } Debug.checkEachDefined = checkEachDefined; function assertNever(member, message, stackCrawlMark) { if (message === void 0) { message = "Illegal value:"; } var detail = typeof member === "object" && ts.hasProperty(member, "kind") && ts.hasProperty(member, "pos") ? "SyntaxKind: " + formatSyntaxKind(member.kind) : JSON.stringify(member); return fail("".concat(message, " ").concat(detail), stackCrawlMark || assertNever); } Debug.assertNever = assertNever; function assertEachNode(nodes, test, message, stackCrawlMark) { if (shouldAssertFunction(1 /* AssertionLevel.Normal */, "assertEachNode")) { assert(test === undefined || ts.every(nodes, test), message || "Unexpected node.", function () { return "Node array did not pass test '".concat(getFunctionName(test), "'."); }, stackCrawlMark || assertEachNode); } } Debug.assertEachNode = assertEachNode; function assertNode(node, test, message, stackCrawlMark) { if (shouldAssertFunction(1 /* AssertionLevel.Normal */, "assertNode")) { assert(node !== undefined && (test === undefined || test(node)), message || "Unexpected node.", function () { return "Node ".concat(formatSyntaxKind(node === null || node === void 0 ? void 0 : node.kind), " did not pass test '").concat(getFunctionName(test), "'."); }, stackCrawlMark || assertNode); } } Debug.assertNode = assertNode; function assertNotNode(node, test, message, stackCrawlMark) { if (shouldAssertFunction(1 /* AssertionLevel.Normal */, "assertNotNode")) { assert(node === undefined || test === undefined || !test(node), message || "Unexpected node.", function () { return "Node ".concat(formatSyntaxKind(node.kind), " should not have passed test '").concat(getFunctionName(test), "'."); }, stackCrawlMark || assertNotNode); } } Debug.assertNotNode = assertNotNode; function assertOptionalNode(node, test, message, stackCrawlMark) { if (shouldAssertFunction(1 /* AssertionLevel.Normal */, "assertOptionalNode")) { assert(test === undefined || node === undefined || test(node), message || "Unexpected node.", function () { return "Node ".concat(formatSyntaxKind(node === null || node === void 0 ? void 0 : node.kind), " did not pass test '").concat(getFunctionName(test), "'."); }, stackCrawlMark || assertOptionalNode); } } Debug.assertOptionalNode = assertOptionalNode; function assertOptionalToken(node, kind, message, stackCrawlMark) { if (shouldAssertFunction(1 /* AssertionLevel.Normal */, "assertOptionalToken")) { assert(kind === undefined || node === undefined || node.kind === kind, message || "Unexpected node.", function () { return "Node ".concat(formatSyntaxKind(node === null || node === void 0 ? void 0 : node.kind), " was not a '").concat(formatSyntaxKind(kind), "' token."); }, stackCrawlMark || assertOptionalToken); } } Debug.assertOptionalToken = assertOptionalToken; function assertMissingNode(node, message, stackCrawlMark) { if (shouldAssertFunction(1 /* AssertionLevel.Normal */, "assertMissingNode")) { assert(node === undefined, message || "Unexpected node.", function () { return "Node ".concat(formatSyntaxKind(node.kind), " was unexpected'."); }, stackCrawlMark || assertMissingNode); } } Debug.assertMissingNode = assertMissingNode; function type(_value) { } Debug.type = type; function getFunctionName(func) { if (typeof func !== "function") { return ""; } else if (func.hasOwnProperty("name")) { return func.name; } else { var text = Function.prototype.toString.call(func); var match = /^function\s+([\w\$]+)\s*\(/.exec(text); return match ? match[1] : ""; } } Debug.getFunctionName = getFunctionName; function formatSymbol(symbol) { return "{ name: ".concat(ts.unescapeLeadingUnderscores(symbol.escapedName), "; flags: ").concat(formatSymbolFlags(symbol.flags), "; declarations: ").concat(ts.map(symbol.declarations, function (node) { return formatSyntaxKind(node.kind); }), " }"); } Debug.formatSymbol = formatSymbol; /** * Formats an enum value as a string for debugging and debug assertions. */ function formatEnum(value, enumObject, isFlags) { if (value === void 0) { value = 0; } var members = getEnumMembers(enumObject); if (value === 0) { return members.length > 0 && members[0][0] === 0 ? members[0][1] : "0"; } if (isFlags) { var result = ""; var remainingFlags = value; for (var _i = 0, members_1 = members; _i < members_1.length; _i++) { var _a = members_1[_i], enumValue = _a[0], enumName = _a[1]; if (enumValue > value) { break; } if (enumValue !== 0 && enumValue & value) { result = "".concat(result).concat(result ? "|" : "").concat(enumName); remainingFlags &= ~enumValue; } } if (remainingFlags === 0) { return result; } } else { for (var _b = 0, members_2 = members; _b < members_2.length; _b++) { var _c = members_2[_b], enumValue = _c[0], enumName = _c[1]; if (enumValue === value) { return enumName; } } } return value.toString(); } Debug.formatEnum = formatEnum; function getEnumMembers(enumObject) { var result = []; for (var name in enumObject) { var value = enumObject[name]; if (typeof value === "number") { result.push([value, name]); } } return ts.stableSort(result, function (x, y) { return ts.compareValues(x[0], y[0]); }); } function formatSyntaxKind(kind) { return formatEnum(kind, ts.SyntaxKind, /*isFlags*/ false); } Debug.formatSyntaxKind = formatSyntaxKind; function formatSnippetKind(kind) { return formatEnum(kind, ts.SnippetKind, /*isFlags*/ false); } Debug.formatSnippetKind = formatSnippetKind; function formatNodeFlags(flags) { return formatEnum(flags, ts.NodeFlags, /*isFlags*/ true); } Debug.formatNodeFlags = formatNodeFlags; function formatModifierFlags(flags) { return formatEnum(flags, ts.ModifierFlags, /*isFlags*/ true); } Debug.formatModifierFlags = formatModifierFlags; function formatTransformFlags(flags) { return formatEnum(flags, ts.TransformFlags, /*isFlags*/ true); } Debug.formatTransformFlags = formatTransformFlags; function formatEmitFlags(flags) { return formatEnum(flags, ts.EmitFlags, /*isFlags*/ true); } Debug.formatEmitFlags = formatEmitFlags; function formatSymbolFlags(flags) { return formatEnum(flags, ts.SymbolFlags, /*isFlags*/ true); } Debug.formatSymbolFlags = formatSymbolFlags; function formatTypeFlags(flags) { return formatEnum(flags, ts.TypeFlags, /*isFlags*/ true); } Debug.formatTypeFlags = formatTypeFlags; function formatSignatureFlags(flags) { return formatEnum(flags, ts.SignatureFlags, /*isFlags*/ true); } Debug.formatSignatureFlags = formatSignatureFlags; function formatObjectFlags(flags) { return formatEnum(flags, ts.ObjectFlags, /*isFlags*/ true); } Debug.formatObjectFlags = formatObjectFlags; function formatFlowFlags(flags) { return formatEnum(flags, ts.FlowFlags, /*isFlags*/ true); } Debug.formatFlowFlags = formatFlowFlags; var isDebugInfoEnabled = false; var extendedDebugModule; function extendedDebug() { enableDebugInfo(); if (!extendedDebugModule) { throw new Error("Debugging helpers could not be loaded."); } return extendedDebugModule; } function printControlFlowGraph(flowNode) { return console.log(formatControlFlowGraph(flowNode)); } Debug.printControlFlowGraph = printControlFlowGraph; function formatControlFlowGraph(flowNode) { return extendedDebug().formatControlFlowGraph(flowNode); } Debug.formatControlFlowGraph = formatControlFlowGraph; var flowNodeProto; function attachFlowNodeDebugInfoWorker(flowNode) { if (!("__debugFlowFlags" in flowNode)) { // eslint-disable-line no-in-operator Object.defineProperties(flowNode, { // for use with vscode-js-debug's new customDescriptionGenerator in launch.json __tsDebuggerDisplay: { value: function () { var flowHeader = this.flags & 2 /* FlowFlags.Start */ ? "FlowStart" : this.flags & 4 /* FlowFlags.BranchLabel */ ? "FlowBranchLabel" : this.flags & 8 /* FlowFlags.LoopLabel */ ? "FlowLoopLabel" : this.flags & 16 /* FlowFlags.Assignment */ ? "FlowAssignment" : this.flags & 32 /* FlowFlags.TrueCondition */ ? "FlowTrueCondition" : this.flags & 64 /* FlowFlags.FalseCondition */ ? "FlowFalseCondition" : this.flags & 128 /* FlowFlags.SwitchClause */ ? "FlowSwitchClause" : this.flags & 256 /* FlowFlags.ArrayMutation */ ? "FlowArrayMutation" : this.flags & 512 /* FlowFlags.Call */ ? "FlowCall" : this.flags & 1024 /* FlowFlags.ReduceLabel */ ? "FlowReduceLabel" : this.flags & 1 /* FlowFlags.Unreachable */ ? "FlowUnreachable" : "UnknownFlow"; var remainingFlags = this.flags & ~(2048 /* FlowFlags.Referenced */ - 1); return "".concat(flowHeader).concat(remainingFlags ? " (".concat(formatFlowFlags(remainingFlags), ")") : ""); } }, __debugFlowFlags: { get: function () { return formatEnum(this.flags, ts.FlowFlags, /*isFlags*/ true); } }, __debugToString: { value: function () { return formatControlFlowGraph(this); } } }); } } function attachFlowNodeDebugInfo(flowNode) { if (isDebugInfoEnabled) { if (typeof Object.setPrototypeOf === "function") { // if we're in es2015, attach the method to a shared prototype for `FlowNode` // so the method doesn't show up in the watch window. if (!flowNodeProto) { flowNodeProto = Object.create(Object.prototype); attachFlowNodeDebugInfoWorker(flowNodeProto); } Object.setPrototypeOf(flowNode, flowNodeProto); } else { // not running in an es2015 environment, attach the method directly. attachFlowNodeDebugInfoWorker(flowNode); } } } Debug.attachFlowNodeDebugInfo = attachFlowNodeDebugInfo; var nodeArrayProto; function attachNodeArrayDebugInfoWorker(array) { if (!("__tsDebuggerDisplay" in array)) { // eslint-disable-line no-in-operator Object.defineProperties(array, { __tsDebuggerDisplay: { value: function (defaultValue) { // An `Array` with extra properties is rendered as `[A, B, prop1: 1, prop2: 2]`. Most of // these aren't immediately useful so we trim off the `prop1: ..., prop2: ...` part from the // formatted string. // This regex can trigger slow backtracking because of overlapping potential captures. // We don't care, this is debug code that's only enabled with a debugger attached - // we're just taking note of it for anyone checking regex performance in the future. defaultValue = String(defaultValue).replace(/(?:,[\s\w\d_]+:[^,]+)+\]$/, "]"); return "NodeArray ".concat(defaultValue); } } }); } } function attachNodeArrayDebugInfo(array) { if (isDebugInfoEnabled) { if (typeof Object.setPrototypeOf === "function") { // if we're in es2015, attach the method to a shared prototype for `NodeArray` // so the method doesn't show up in the watch window. if (!nodeArrayProto) { nodeArrayProto = Object.create(Array.prototype); attachNodeArrayDebugInfoWorker(nodeArrayProto); } Object.setPrototypeOf(array, nodeArrayProto); } else { // not running in an es2015 environment, attach the method directly. attachNodeArrayDebugInfoWorker(array); } } } Debug.attachNodeArrayDebugInfo = attachNodeArrayDebugInfo; /** * Injects debug information into frequently used types. */ function enableDebugInfo() { if (isDebugInfoEnabled) return; // avoid recomputing var weakTypeTextMap; var weakNodeTextMap; function getWeakTypeTextMap() { if (weakTypeTextMap === undefined) { if (typeof WeakMap === "function") weakTypeTextMap = new WeakMap(); } return weakTypeTextMap; } function getWeakNodeTextMap() { if (weakNodeTextMap === undefined) { if (typeof WeakMap === "function") weakNodeTextMap = new WeakMap(); } return weakNodeTextMap; } // Add additional properties in debug mode to assist with debugging. Object.defineProperties(ts.objectAllocator.getSymbolConstructor().prototype, { // for use with vscode-js-debug's new customDescriptionGenerator in launch.json __tsDebuggerDisplay: { value: function () { var symbolHeader = this.flags & 33554432 /* SymbolFlags.Transient */ ? "TransientSymbol" : "Symbol"; var remainingSymbolFlags = this.flags & ~33554432 /* SymbolFlags.Transient */; return "".concat(symbolHeader, " '").concat(ts.symbolName(this), "'").concat(remainingSymbolFlags ? " (".concat(formatSymbolFlags(remainingSymbolFlags), ")") : ""); } }, __debugFlags: { get: function () { return formatSymbolFlags(this.flags); } } }); Object.defineProperties(ts.objectAllocator.getTypeConstructor().prototype, { // for use with vscode-js-debug's new customDescriptionGenerator in launch.json __tsDebuggerDisplay: { value: function () { var typeHeader = this.flags & 98304 /* TypeFlags.Nullable */ ? "NullableType" : this.flags & 384 /* TypeFlags.StringOrNumberLiteral */ ? "LiteralType ".concat(JSON.stringify(this.value)) : this.flags & 2048 /* TypeFlags.BigIntLiteral */ ? "LiteralType ".concat(this.value.negative ? "-" : "").concat(this.value.base10Value, "n") : this.flags & 8192 /* TypeFlags.UniqueESSymbol */ ? "UniqueESSymbolType" : this.flags & 32 /* TypeFlags.Enum */ ? "EnumType" : this.flags & 67359327 /* TypeFlags.Intrinsic */ ? "IntrinsicType ".concat(this.intrinsicName) : this.flags & 1048576 /* TypeFlags.Union */ ? "UnionType" : this.flags & 2097152 /* TypeFlags.Intersection */ ? "IntersectionType" : this.flags & 4194304 /* TypeFlags.Index */ ? "IndexType" : this.flags & 8388608 /* TypeFlags.IndexedAccess */ ? "IndexedAccessType" : this.flags & 16777216 /* TypeFlags.Conditional */ ? "ConditionalType" : this.flags & 33554432 /* TypeFlags.Substitution */ ? "SubstitutionType" : this.flags & 262144 /* TypeFlags.TypeParameter */ ? "TypeParameter" : this.flags & 524288 /* TypeFlags.Object */ ? this.objectFlags & 3 /* ObjectFlags.ClassOrInterface */ ? "InterfaceType" : this.objectFlags & 4 /* ObjectFlags.Reference */ ? "TypeReference" : this.objectFlags & 8 /* ObjectFlags.Tuple */ ? "TupleType" : this.objectFlags & 16 /* ObjectFlags.Anonymous */ ? "AnonymousType" : this.objectFlags & 32 /* ObjectFlags.Mapped */ ? "MappedType" : this.objectFlags & 1024 /* ObjectFlags.ReverseMapped */ ? "ReverseMappedType" : this.objectFlags & 256 /* ObjectFlags.EvolvingArray */ ? "EvolvingArrayType" : "ObjectType" : "Type"; var remainingObjectFlags = this.flags & 524288 /* TypeFlags.Object */ ? this.objectFlags & ~1343 /* ObjectFlags.ObjectTypeKindMask */ : 0; return "".concat(typeHeader).concat(this.symbol ? " '".concat(ts.symbolName(this.symbol), "'") : "").concat(remainingObjectFlags ? " (".concat(formatObjectFlags(remainingObjectFlags), ")") : ""); } }, __debugFlags: { get: function () { return formatTypeFlags(this.flags); } }, __debugObjectFlags: { get: function () { return this.flags & 524288 /* TypeFlags.Object */ ? formatObjectFlags(this.objectFlags) : ""; } }, __debugTypeToString: { value: function () { // avoid recomputing var map = getWeakTypeTextMap(); var text = map === null || map === void 0 ? void 0 : map.get(this); if (text === undefined) { text = this.checker.typeToString(this); map === null || map === void 0 ? void 0 : map.set(this, text); } return text; } }, }); Object.defineProperties(ts.objectAllocator.getSignatureConstructor().prototype, { __debugFlags: { get: function () { return formatSignatureFlags(this.flags); } }, __debugSignatureToString: { value: function () { var _a; return (_a = this.checker) === null || _a === void 0 ? void 0 : _a.signatureToString(this); } } }); var nodeConstructors = [ ts.objectAllocator.getNodeConstructor(), ts.objectAllocator.getIdentifierConstructor(), ts.objectAllocator.getTokenConstructor(), ts.objectAllocator.getSourceFileConstructor() ]; for (var _i = 0, nodeConstructors_1 = nodeConstructors; _i < nodeConstructors_1.length; _i++) { var ctor = nodeConstructors_1[_i]; if (!ctor.prototype.hasOwnProperty("__debugKind")) { Object.defineProperties(ctor.prototype, { // for use with vscode-js-debug's new customDescriptionGenerator in launch.json __tsDebuggerDisplay: { value: function () { var nodeHeader = ts.isGeneratedIdentifier(this) ? "GeneratedIdentifier" : ts.isIdentifier(this) ? "Identifier '".concat(ts.idText(this), "'") : ts.isPrivateIdentifier(this) ? "PrivateIdentifier '".concat(ts.idText(this), "'") : ts.isStringLiteral(this) ? "StringLiteral ".concat(JSON.stringify(this.text.length < 10 ? this.text : this.text.slice(10) + "...")) : ts.isNumericLiteral(this) ? "NumericLiteral ".concat(this.text) : ts.isBigIntLiteral(this) ? "BigIntLiteral ".concat(this.text, "n") : ts.isTypeParameterDeclaration(this) ? "TypeParameterDeclaration" : ts.isParameter(this) ? "ParameterDeclaration" : ts.isConstructorDeclaration(this) ? "ConstructorDeclaration" : ts.isGetAccessorDeclaration(this) ? "GetAccessorDeclaration" : ts.isSetAccessorDeclaration(this) ? "SetAccessorDeclaration" : ts.isCallSignatureDeclaration(this) ? "CallSignatureDeclaration" : ts.isConstructSignatureDeclaration(this) ? "ConstructSignatureDeclaration" : ts.isIndexSignatureDeclaration(this) ? "IndexSignatureDeclaration" : ts.isTypePredicateNode(this) ? "TypePredicateNode" : ts.isTypeReferenceNode(this) ? "TypeReferenceNode" : ts.isFunctionTypeNode(this) ? "FunctionTypeNode" : ts.isConstructorTypeNode(this) ? "ConstructorTypeNode" : ts.isTypeQueryNode(this) ? "TypeQueryNode" : ts.isTypeLiteralNode(this) ? "TypeLiteralNode" : ts.isArrayTypeNode(this) ? "ArrayTypeNode" : ts.isTupleTypeNode(this) ? "TupleTypeNode" : ts.isOptionalTypeNode(this) ? "OptionalTypeNode" : ts.isRestTypeNode(this) ? "RestTypeNode" : ts.isUnionTypeNode(this) ? "UnionTypeNode" : ts.isIntersectionTypeNode(this) ? "IntersectionTypeNode" : ts.isConditionalTypeNode(this) ? "ConditionalTypeNode" : ts.isInferTypeNode(this) ? "InferTypeNode" : ts.isParenthesizedTypeNode(this) ? "ParenthesizedTypeNode" : ts.isThisTypeNode(this) ? "ThisTypeNode" : ts.isTypeOperatorNode(this) ? "TypeOperatorNode" : ts.isIndexedAccessTypeNode(this) ? "IndexedAccessTypeNode" : ts.isMappedTypeNode(this) ? "MappedTypeNode" : ts.isLiteralTypeNode(this) ? "LiteralTypeNode" : ts.isNamedTupleMember(this) ? "NamedTupleMember" : ts.isImportTypeNode(this) ? "ImportTypeNode" : formatSyntaxKind(this.kind); return "".concat(nodeHeader).concat(this.flags ? " (".concat(formatNodeFlags(this.flags), ")") : ""); } }, __debugKind: { get: function () { return formatSyntaxKind(this.kind); } }, __debugNodeFlags: { get: function () { return formatNodeFlags(this.flags); } }, __debugModifierFlags: { get: function () { return formatModifierFlags(ts.getEffectiveModifierFlagsNoCache(this)); } }, __debugTransformFlags: { get: function () { return formatTransformFlags(this.transformFlags); } }, __debugIsParseTreeNode: { get: function () { return ts.isParseTreeNode(this); } }, __debugEmitFlags: { get: function () { return formatEmitFlags(ts.getEmitFlags(this)); } }, __debugGetText: { value: function (includeTrivia) { if (ts.nodeIsSynthesized(this)) return ""; // avoid recomputing var map = getWeakNodeTextMap(); var text = map === null || map === void 0 ? void 0 : map.get(this); if (text === undefined) { var parseNode = ts.getParseTreeNode(this); var sourceFile = parseNode && ts.getSourceFileOfNode(parseNode); text = sourceFile ? ts.getSourceTextOfNodeFromSourceFile(sourceFile, parseNode, includeTrivia) : ""; map === null || map === void 0 ? void 0 : map.set(this, text); } return text; } } }); } } // attempt to load extended debugging information try { if (ts.sys && ts.sys.require) { var basePath = ts.getDirectoryPath(ts.resolvePath(ts.sys.getExecutingFilePath())); var result = ts.sys.require(basePath, "./compiler-debug"); if (!result.error) { result.module.init(ts); extendedDebugModule = result.module; } } } catch (_a) { // do nothing } isDebugInfoEnabled = true; } Debug.enableDebugInfo = enableDebugInfo; function formatDeprecationMessage(name, error, errorAfter, since, message) { var deprecationMessage = error ? "DeprecationError: " : "DeprecationWarning: "; deprecationMessage += "'".concat(name, "' "); deprecationMessage += since ? "has been deprecated since v".concat(since) : "is deprecated"; deprecationMessage += error ? " and can no longer be used." : errorAfter ? " and will no longer be usable after v".concat(errorAfter, ".") : "."; deprecationMessage += message ? " ".concat(ts.formatStringFromArgs(message, [name], 0)) : ""; return deprecationMessage; } function createErrorDeprecation(name, errorAfter, since, message) { var deprecationMessage = formatDeprecationMessage(name, /*error*/ true, errorAfter, since, message); return function () { throw new TypeError(deprecationMessage); }; } function createWarningDeprecation(name, errorAfter, since, message) { var hasWrittenDeprecation = false; return function () { if (!hasWrittenDeprecation) { log.warn(formatDeprecationMessage(name, /*error*/ false, errorAfter, since, message)); hasWrittenDeprecation = true; } }; } function createDeprecation(name, options) { var _a, _b; if (options === void 0) { options = {}; } var version = typeof options.typeScriptVersion === "string" ? new ts.Version(options.typeScriptVersion) : (_a = options.typeScriptVersion) !== null && _a !== void 0 ? _a : getTypeScriptVersion(); var errorAfter = typeof options.errorAfter === "string" ? new ts.Version(options.errorAfter) : options.errorAfter; var warnAfter = typeof options.warnAfter === "string" ? new ts.Version(options.warnAfter) : options.warnAfter; var since = typeof options.since === "string" ? new ts.Version(options.since) : (_b = options.since) !== null && _b !== void 0 ? _b : warnAfter; var error = options.error || errorAfter && version.compareTo(errorAfter) <= 0; var warn = !warnAfter || version.compareTo(warnAfter) >= 0; return error ? createErrorDeprecation(name, errorAfter, since, options.message) : warn ? createWarningDeprecation(name, errorAfter, since, options.message) : ts.noop; } function wrapFunction(deprecation, func) { return function () { deprecation(); return func.apply(this, arguments); }; } function deprecate(func, options) { var deprecation = createDeprecation(getFunctionName(func), options); return wrapFunction(deprecation, func); } Debug.deprecate = deprecate; })(Debug = ts.Debug || (ts.Debug = {})); })(ts || (ts = {})); /* @internal */ var ts; (function (ts) { // https://semver.org/#spec-item-2 // > A normal version number MUST take the form X.Y.Z where X, Y, and Z are non-negative // > integers, and MUST NOT contain leading zeroes. X is the major version, Y is the minor // > version, and Z is the patch version. Each element MUST increase numerically. // // NOTE: We differ here in that we allow X and X.Y, with missing parts having the default // value of `0`. var versionRegExp = /^(0|[1-9]\d*)(?:\.(0|[1-9]\d*)(?:\.(0|[1-9]\d*)(?:\-([a-z0-9-.]+))?(?:\+([a-z0-9-.]+))?)?)?$/i; // https://semver.org/#spec-item-9 // > A pre-release version MAY be denoted by appending a hyphen and a series of dot separated // > identifiers immediately following the patch version. Identifiers MUST comprise only ASCII // > alphanumerics and hyphen [0-9A-Za-z-]. Identifiers MUST NOT be empty. Numeric identifiers // > MUST NOT include leading zeroes. var prereleaseRegExp = /^(?:0|[1-9]\d*|[a-z-][a-z0-9-]*)(?:\.(?:0|[1-9]\d*|[a-z-][a-z0-9-]*))*$/i; // https://semver.org/#spec-item-10 // > Build metadata MAY be denoted by appending a plus sign and a series of dot separated // > identifiers immediately following the patch or pre-release version. Identifiers MUST // > comprise only ASCII alphanumerics and hyphen [0-9A-Za-z-]. Identifiers MUST NOT be empty. var buildRegExp = /^[a-z0-9-]+(?:\.[a-z0-9-]+)*$/i; // https://semver.org/#spec-item-9 // > Numeric identifiers MUST NOT include leading zeroes. var numericIdentifierRegExp = /^(0|[1-9]\d*)$/; /** * Describes a precise semantic version number, https://semver.org */ var Version = /** @class */ (function () { function Version(major, minor, patch, prerelease, build) { if (minor === void 0) { minor = 0; } if (patch === void 0) { patch = 0; } if (prerelease === void 0) { prerelease = ""; } if (build === void 0) { build = ""; } if (typeof major === "string") { var result = ts.Debug.checkDefined(tryParseComponents(major), "Invalid version"); (major = result.major, minor = result.minor, patch = result.patch, prerelease = result.prerelease, build = result.build); } ts.Debug.assert(major >= 0, "Invalid argument: major"); ts.Debug.assert(minor >= 0, "Invalid argument: minor"); ts.Debug.assert(patch >= 0, "Invalid argument: patch"); ts.Debug.assert(!prerelease || prereleaseRegExp.test(prerelease), "Invalid argument: prerelease"); ts.Debug.assert(!build || buildRegExp.test(build), "Invalid argument: build"); this.major = major; this.minor = minor; this.patch = patch; this.prerelease = prerelease ? prerelease.split(".") : ts.emptyArray; this.build = build ? build.split(".") : ts.emptyArray; } Version.tryParse = function (text) { var result = tryParseComponents(text); if (!result) return undefined; var major = result.major, minor = result.minor, patch = result.patch, prerelease = result.prerelease, build = result.build; return new Version(major, minor, patch, prerelease, build); }; Version.prototype.compareTo = function (other) { // https://semver.org/#spec-item-11 // > Precedence is determined by the first difference when comparing each of these // > identifiers from left to right as follows: Major, minor, and patch versions are // > always compared numerically. // // https://semver.org/#spec-item-11 // > Precedence for two pre-release versions with the same major, minor, and patch version // > MUST be determined by comparing each dot separated identifier from left to right until // > a difference is found [...] // // https://semver.org/#spec-item-11 // > Build metadata does not figure into precedence if (this === other) return 0 /* Comparison.EqualTo */; if (other === undefined) return 1 /* Comparison.GreaterThan */; return ts.compareValues(this.major, other.major) || ts.compareValues(this.minor, other.minor) || ts.compareValues(this.patch, other.patch) || comparePrereleaseIdentifiers(this.prerelease, other.prerelease); }; Version.prototype.increment = function (field) { switch (field) { case "major": return new Version(this.major + 1, 0, 0); case "minor": return new Version(this.major, this.minor + 1, 0); case "patch": return new Version(this.major, this.minor, this.patch + 1); default: return ts.Debug.assertNever(field); } }; Version.prototype.toString = function () { var result = "".concat(this.major, ".").concat(this.minor, ".").concat(this.patch); if (ts.some(this.prerelease)) result += "-".concat(this.prerelease.join(".")); if (ts.some(this.build)) result += "+".concat(this.build.join(".")); return result; }; Version.zero = new Version(0, 0, 0); return Version; }()); ts.Version = Version; function tryParseComponents(text) { var match = versionRegExp.exec(text); if (!match) return undefined; var major = match[1], _a = match[2], minor = _a === void 0 ? "0" : _a, _b = match[3], patch = _b === void 0 ? "0" : _b, _c = match[4], prerelease = _c === void 0 ? "" : _c, _d = match[5], build = _d === void 0 ? "" : _d; if (prerelease && !prereleaseRegExp.test(prerelease)) return undefined; if (build && !buildRegExp.test(build)) return undefined; return { major: parseInt(major, 10), minor: parseInt(minor, 10), patch: parseInt(patch, 10), prerelease: prerelease, build: build }; } function comparePrereleaseIdentifiers(left, right) { // https://semver.org/#spec-item-11 // > When major, minor, and patch are equal, a pre-release version has lower precedence // > than a normal version. if (left === right) return 0 /* Comparison.EqualTo */; if (left.length === 0) return right.length === 0 ? 0 /* Comparison.EqualTo */ : 1 /* Comparison.GreaterThan */; if (right.length === 0) return -1 /* Comparison.LessThan */; // https://semver.org/#spec-item-11 // > Precedence for two pre-release versions with the same major, minor, and patch version // > MUST be determined by comparing each dot separated identifier from left to right until // > a difference is found [...] var length = Math.min(left.length, right.length); for (var i = 0; i < length; i++) { var leftIdentifier = left[i]; var rightIdentifier = right[i]; if (leftIdentifier === rightIdentifier) continue; var leftIsNumeric = numericIdentifierRegExp.test(leftIdentifier); var rightIsNumeric = numericIdentifierRegExp.test(rightIdentifier); if (leftIsNumeric || rightIsNumeric) { // https://semver.org/#spec-item-11 // > Numeric identifiers always have lower precedence than non-numeric identifiers. if (leftIsNumeric !== rightIsNumeric) return leftIsNumeric ? -1 /* Comparison.LessThan */ : 1 /* Comparison.GreaterThan */; // https://semver.org/#spec-item-11 // > identifiers consisting of only digits are compared numerically var result = ts.compareValues(+leftIdentifier, +rightIdentifier); if (result) return result; } else { // https://semver.org/#spec-item-11 // > identifiers with letters or hyphens are compared lexically in ASCII sort order. var result = ts.compareStringsCaseSensitive(leftIdentifier, rightIdentifier); if (result) return result; } } // https://semver.org/#spec-item-11 // > A larger set of pre-release fields has a higher precedence than a smaller set, if all // > of the preceding identifiers are equal. return ts.compareValues(left.length, right.length); } /** * Describes a semantic version range, per https://github.com/npm/node-semver#ranges */ var VersionRange = /** @class */ (function () { function VersionRange(spec) { this._alternatives = spec ? ts.Debug.checkDefined(parseRange(spec), "Invalid range spec.") : ts.emptyArray; } VersionRange.tryParse = function (text) { var sets = parseRange(text); if (sets) { var range = new VersionRange(""); range._alternatives = sets; return range; } return undefined; }; VersionRange.prototype.test = function (version) { if (typeof version === "string") version = new Version(version); return testDisjunction(version, this._alternatives); }; VersionRange.prototype.toString = function () { return formatDisjunction(this._alternatives); }; return VersionRange; }()); ts.VersionRange = VersionRange; // https://github.com/npm/node-semver#range-grammar // // range-set ::= range ( logical-or range ) * // range ::= hyphen | simple ( ' ' simple ) * | '' // logical-or ::= ( ' ' ) * '||' ( ' ' ) * var logicalOrRegExp = /\|\|/g; var whitespaceRegExp = /\s+/g; // https://github.com/npm/node-semver#range-grammar // // partial ::= xr ( '.' xr ( '.' xr qualifier ? )? )? // xr ::= 'x' | 'X' | '*' | nr // nr ::= '0' | ['1'-'9'] ( ['0'-'9'] ) * // qualifier ::= ( '-' pre )? ( '+' build )? // pre ::= parts // build ::= parts // parts ::= part ( '.' part ) * // part ::= nr | [-0-9A-Za-z]+ var partialRegExp = /^([xX*0]|[1-9]\d*)(?:\.([xX*0]|[1-9]\d*)(?:\.([xX*0]|[1-9]\d*)(?:-([a-z0-9-.]+))?(?:\+([a-z0-9-.]+))?)?)?$/i; // https://github.com/npm/node-semver#range-grammar // // hyphen ::= partial ' - ' partial var hyphenRegExp = /^\s*([a-z0-9-+.*]+)\s+-\s+([a-z0-9-+.*]+)\s*$/i; // https://github.com/npm/node-semver#range-grammar // // simple ::= primitive | partial | tilde | caret // primitive ::= ( '<' | '>' | '>=' | '<=' | '=' ) partial // tilde ::= '~' partial // caret ::= '^' partial var rangeRegExp = /^(~|\^|<|<=|>|>=|=)?\s*([a-z0-9-+.*]+)$/i; function parseRange(text) { var alternatives = []; for (var _i = 0, _a = ts.trimString(text).split(logicalOrRegExp); _i < _a.length; _i++) { var range = _a[_i]; if (!range) continue; var comparators = []; range = ts.trimString(range); var match = hyphenRegExp.exec(range); if (match) { if (!parseHyphen(match[1], match[2], comparators)) return undefined; } else { for (var _b = 0, _c = range.split(whitespaceRegExp); _b < _c.length; _b++) { var simple = _c[_b]; var match_1 = rangeRegExp.exec(ts.trimString(simple)); if (!match_1 || !parseComparator(match_1[1], match_1[2], comparators)) return undefined; } } alternatives.push(comparators); } return alternatives; } function parsePartial(text) { var match = partialRegExp.exec(text); if (!match) return undefined; var major = match[1], _a = match[2], minor = _a === void 0 ? "*" : _a, _b = match[3], patch = _b === void 0 ? "*" : _b, prerelease = match[4], build = match[5]; var version = new Version(isWildcard(major) ? 0 : parseInt(major, 10), isWildcard(major) || isWildcard(minor) ? 0 : parseInt(minor, 10), isWildcard(major) || isWildcard(minor) || isWildcard(patch) ? 0 : parseInt(patch, 10), prerelease, build); return { version: version, major: major, minor: minor, patch: patch }; } function parseHyphen(left, right, comparators) { var leftResult = parsePartial(left); if (!leftResult) return false; var rightResult = parsePartial(right); if (!rightResult) return false; if (!isWildcard(leftResult.major)) { comparators.push(createComparator(">=", leftResult.version)); } if (!isWildcard(rightResult.major)) { comparators.push(isWildcard(rightResult.minor) ? createComparator("<", rightResult.version.increment("major")) : isWildcard(rightResult.patch) ? createComparator("<", rightResult.version.increment("minor")) : createComparator("<=", rightResult.version)); } return true; } function parseComparator(operator, text, comparators) { var result = parsePartial(text); if (!result) return false; var version = result.version, major = result.major, minor = result.minor, patch = result.patch; if (!isWildcard(major)) { switch (operator) { case "~": comparators.push(createComparator(">=", version)); comparators.push(createComparator("<", version.increment(isWildcard(minor) ? "major" : "minor"))); break; case "^": comparators.push(createComparator(">=", version)); comparators.push(createComparator("<", version.increment(version.major > 0 || isWildcard(minor) ? "major" : version.minor > 0 || isWildcard(patch) ? "minor" : "patch"))); break; case "<": case ">=": comparators.push(createComparator(operator, version)); break; case "<=": case ">": comparators.push(isWildcard(minor) ? createComparator(operator === "<=" ? "<" : ">=", version.increment("major")) : isWildcard(patch) ? createComparator(operator === "<=" ? "<" : ">=", version.increment("minor")) : createComparator(operator, version)); break; case "=": case undefined: if (isWildcard(minor) || isWildcard(patch)) { comparators.push(createComparator(">=", version)); comparators.push(createComparator("<", version.increment(isWildcard(minor) ? "major" : "minor"))); } else { comparators.push(createComparator("=", version)); } break; default: // unrecognized return false; } } else if (operator === "<" || operator === ">") { comparators.push(createComparator("<", Version.zero)); } return true; } function isWildcard(part) { return part === "*" || part === "x" || part === "X"; } function createComparator(operator, operand) { return { operator: operator, operand: operand }; } function testDisjunction(version, alternatives) { // an empty disjunction is treated as "*" (all versions) if (alternatives.length === 0) return true; for (var _i = 0, alternatives_1 = alternatives; _i < alternatives_1.length; _i++) { var alternative = alternatives_1[_i]; if (testAlternative(version, alternative)) return true; } return false; } function testAlternative(version, comparators) { for (var _i = 0, comparators_1 = comparators; _i < comparators_1.length; _i++) { var comparator = comparators_1[_i]; if (!testComparator(version, comparator.operator, comparator.operand)) return false; } return true; } function testComparator(version, operator, operand) { var cmp = version.compareTo(operand); switch (operator) { case "<": return cmp < 0; case "<=": return cmp <= 0; case ">": return cmp > 0; case ">=": return cmp >= 0; case "=": return cmp === 0; default: return ts.Debug.assertNever(operator); } } function formatDisjunction(alternatives) { return ts.map(alternatives, formatAlternative).join(" || ") || "*"; } function formatAlternative(comparators) { return ts.map(comparators, formatComparator).join(" "); } function formatComparator(comparator) { return "".concat(comparator.operator).concat(comparator.operand); } })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { // The following definitions provide the minimum compatible support for the Web Performance User Timings API // between browsers and NodeJS: // eslint-disable-next-line @typescript-eslint/naming-convention function hasRequiredAPI(performance, PerformanceObserver) { return typeof performance === "object" && typeof performance.timeOrigin === "number" && typeof performance.mark === "function" && typeof performance.measure === "function" && typeof performance.now === "function" && typeof PerformanceObserver === "function"; } function tryGetWebPerformanceHooks() { if (typeof performance === "object" && typeof PerformanceObserver === "function" && hasRequiredAPI(performance, PerformanceObserver)) { return { // For now we always write native performance events when running in the browser. We may // make this conditional in the future if we find that native web performance hooks // in the browser also slow down compilation. shouldWriteNativeEvents: true, performance: performance, PerformanceObserver: PerformanceObserver }; } } function tryGetNodePerformanceHooks() { if (typeof process !== "undefined" && process.nextTick && !process.browser && typeof module === "object" && typeof require === "function") { try { var performance_1; var _a = require("perf_hooks"), nodePerformance_1 = _a.performance, PerformanceObserver_1 = _a.PerformanceObserver; if (hasRequiredAPI(nodePerformance_1, PerformanceObserver_1)) { performance_1 = nodePerformance_1; // There is a bug in Node's performance.measure prior to 12.16.3/13.13.0 that does not // match the Web Performance API specification. Node's implementation did not allow // optional `start` and `end` arguments for `performance.measure`. // See https://github.com/nodejs/node/pull/32651 for more information. var version_1 = new ts.Version(process.versions.node); var range = new ts.VersionRange("<12.16.3 || 13 <13.13"); if (range.test(version_1)) { performance_1 = { get timeOrigin() { return nodePerformance_1.timeOrigin; }, now: function () { return nodePerformance_1.now(); }, mark: function (name) { return nodePerformance_1.mark(name); }, measure: function (name, start, end) { if (start === void 0) { start = "nodeStart"; } if (end === undefined) { end = "__performance.measure-fix__"; nodePerformance_1.mark(end); } nodePerformance_1.measure(name, start, end); if (end === "__performance.measure-fix__") { nodePerformance_1.clearMarks("__performance.measure-fix__"); } } }; } return { // By default, only write native events when generating a cpu profile or using the v8 profiler. shouldWriteNativeEvents: false, performance: performance_1, PerformanceObserver: PerformanceObserver_1 }; } } catch (_b) { // ignore errors } } } // Unlike with the native Map/Set 'tryGet' functions in corePublic.ts, we eagerly evaluate these // since we will need them for `timestamp`, below. var nativePerformanceHooks = tryGetWebPerformanceHooks() || tryGetNodePerformanceHooks(); var nativePerformance = nativePerformanceHooks === null || nativePerformanceHooks === void 0 ? void 0 : nativePerformanceHooks.performance; function tryGetNativePerformanceHooks() { return nativePerformanceHooks; } ts.tryGetNativePerformanceHooks = tryGetNativePerformanceHooks; /** Gets a timestamp with (at least) ms resolution */ ts.timestamp = nativePerformance ? function () { return nativePerformance.now(); } : Date.now ? Date.now : function () { return +(new Date()); }; })(ts || (ts = {})); /*@internal*/ /** Performance measurements for the compiler. */ var ts; (function (ts) { var performance; (function (performance) { var perfHooks; // when set, indicates the implementation of `Performance` to use for user timing. // when unset, indicates user timing is unavailable or disabled. var performanceImpl; function createTimerIf(condition, measureName, startMarkName, endMarkName) { return condition ? createTimer(measureName, startMarkName, endMarkName) : performance.nullTimer; } performance.createTimerIf = createTimerIf; function createTimer(measureName, startMarkName, endMarkName) { var enterCount = 0; return { enter: enter, exit: exit }; function enter() { if (++enterCount === 1) { mark(startMarkName); } } function exit() { if (--enterCount === 0) { mark(endMarkName); measure(measureName, startMarkName, endMarkName); } else if (enterCount < 0) { ts.Debug.fail("enter/exit count does not match."); } } } performance.createTimer = createTimer; performance.nullTimer = { enter: ts.noop, exit: ts.noop }; var enabled = false; var timeorigin = ts.timestamp(); var marks = new ts.Map(); var counts = new ts.Map(); var durations = new ts.Map(); /** * Marks a performance event. * * @param markName The name of the mark. */ function mark(markName) { var _a; if (enabled) { var count = (_a = counts.get(markName)) !== null && _a !== void 0 ? _a : 0; counts.set(markName, count + 1); marks.set(markName, ts.timestamp()); performanceImpl === null || performanceImpl === void 0 ? void 0 : performanceImpl.mark(markName); } } performance.mark = mark; /** * Adds a performance measurement with the specified name. * * @param measureName The name of the performance measurement. * @param startMarkName The name of the starting mark. If not supplied, the point at which the * profiler was enabled is used. * @param endMarkName The name of the ending mark. If not supplied, the current timestamp is * used. */ function measure(measureName, startMarkName, endMarkName) { var _a, _b; if (enabled) { var end = (_a = (endMarkName !== undefined ? marks.get(endMarkName) : undefined)) !== null && _a !== void 0 ? _a : ts.timestamp(); var start = (_b = (startMarkName !== undefined ? marks.get(startMarkName) : undefined)) !== null && _b !== void 0 ? _b : timeorigin; var previousDuration = durations.get(measureName) || 0; durations.set(measureName, previousDuration + (end - start)); performanceImpl === null || performanceImpl === void 0 ? void 0 : performanceImpl.measure(measureName, startMarkName, endMarkName); } } performance.measure = measure; /** * Gets the number of times a marker was encountered. * * @param markName The name of the mark. */ function getCount(markName) { return counts.get(markName) || 0; } performance.getCount = getCount; /** * Gets the total duration of all measurements with the supplied name. * * @param measureName The name of the measure whose durations should be accumulated. */ function getDuration(measureName) { return durations.get(measureName) || 0; } performance.getDuration = getDuration; /** * Iterate over each measure, performing some action * * @param cb The action to perform for each measure */ function forEachMeasure(cb) { durations.forEach(function (duration, measureName) { return cb(measureName, duration); }); } performance.forEachMeasure = forEachMeasure; /** * Indicates whether the performance API is enabled. */ function isEnabled() { return enabled; } performance.isEnabled = isEnabled; /** Enables (and resets) performance measurements for the compiler. */ function enable(system) { var _a; if (system === void 0) { system = ts.sys; } if (!enabled) { enabled = true; perfHooks || (perfHooks = ts.tryGetNativePerformanceHooks()); if (perfHooks) { timeorigin = perfHooks.performance.timeOrigin; // NodeJS's Web Performance API is currently slower than expected, but we'd still like // to be able to leverage native trace events when node is run with either `--cpu-prof` // or `--prof`, if we're running with our own `--generateCpuProfile` flag, or when // running in debug mode (since its possible to generate a cpu profile while debugging). if (perfHooks.shouldWriteNativeEvents || ((_a = system === null || system === void 0 ? void 0 : system.cpuProfilingEnabled) === null || _a === void 0 ? void 0 : _a.call(system)) || (system === null || system === void 0 ? void 0 : system.debugMode)) { performanceImpl = perfHooks.performance; } } } return true; } performance.enable = enable; /** Disables performance measurements for the compiler. */ function disable() { if (enabled) { marks.clear(); counts.clear(); durations.clear(); performanceImpl = undefined; enabled = false; } } performance.disable = disable; })(performance = ts.performance || (ts.performance = {})); })(ts || (ts = {})); /* @internal */ var ts; (function (ts) { var _a; var nullLogger = { logEvent: ts.noop, logErrEvent: ts.noop, logPerfEvent: ts.noop, logInfoEvent: ts.noop, logStartCommand: ts.noop, logStopCommand: ts.noop, logStartUpdateProgram: ts.noop, logStopUpdateProgram: ts.noop, logStartUpdateGraph: ts.noop, logStopUpdateGraph: ts.noop, logStartResolveModule: ts.noop, logStopResolveModule: ts.noop, logStartParseSourceFile: ts.noop, logStopParseSourceFile: ts.noop, logStartReadFile: ts.noop, logStopReadFile: ts.noop, logStartBindFile: ts.noop, logStopBindFile: ts.noop, logStartScheduledOperation: ts.noop, logStopScheduledOperation: ts.noop, }; // Load optional module to enable Event Tracing for Windows // See https://github.com/microsoft/typescript-etw for more information var etwModule; try { var etwModulePath = (_a = process.env.TS_ETW_MODULE_PATH) !== null && _a !== void 0 ? _a : "./node_modules/@microsoft/typescript-etw"; // require() will throw an exception if the module is not found // It may also return undefined if not installed properly etwModule = require(etwModulePath); } catch (e) { etwModule = undefined; } /** Performance logger that will generate ETW events if possible - check for `logEvent` member, as `etwModule` will be `{}` when browserified */ ts.perfLogger = etwModule && etwModule.logEvent ? etwModule : nullLogger; })(ts || (ts = {})); /* Tracing events for the compiler. */ /*@internal*/ var ts; (function (ts) { // enable the above using startTracing() // `tracingEnabled` should never be used directly, only through the above var tracingEnabled; (function (tracingEnabled) { var fs; var traceCount = 0; var traceFd = 0; var mode; var typeCatalog = []; // NB: id is index + 1 var legendPath; var legend = []; ; /** Starts tracing for the given project. */ function startTracing(tracingMode, traceDir, configFilePath) { ts.Debug.assert(!ts.tracing, "Tracing already started"); if (fs === undefined) { try { fs = require("fs"); } catch (e) { throw new Error("tracing requires having fs\n(original error: ".concat(e.message || e, ")")); } } mode = tracingMode; typeCatalog.length = 0; if (legendPath === undefined) { legendPath = ts.combinePaths(traceDir, "legend.json"); } // Note that writing will fail later on if it exists and is not a directory if (!fs.existsSync(traceDir)) { fs.mkdirSync(traceDir, { recursive: true }); } var countPart = mode === "build" ? ".".concat(process.pid, "-").concat(++traceCount) : mode === "server" ? ".".concat(process.pid) : ""; var tracePath = ts.combinePaths(traceDir, "trace".concat(countPart, ".json")); var typesPath = ts.combinePaths(traceDir, "types".concat(countPart, ".json")); legend.push({ configFilePath: configFilePath, tracePath: tracePath, typesPath: typesPath, }); traceFd = fs.openSync(tracePath, "w"); ts.tracing = tracingEnabled; // only when traceFd is properly set // Start with a prefix that contains some metadata that the devtools profiler expects (also avoids a warning on import) var meta = { cat: "__metadata", ph: "M", ts: 1000 * ts.timestamp(), pid: 1, tid: 1 }; fs.writeSync(traceFd, "[\n" + [__assign({ name: "process_name", args: { name: "tsc" } }, meta), __assign({ name: "thread_name", args: { name: "Main" } }, meta), __assign(__assign({ name: "TracingStartedInBrowser" }, meta), { cat: "disabled-by-default-devtools.timeline" })] .map(function (v) { return JSON.stringify(v); }).join(",\n")); } tracingEnabled.startTracing = startTracing; /** Stops tracing for the in-progress project and dumps the type catalog. */ function stopTracing() { ts.Debug.assert(ts.tracing, "Tracing is not in progress"); ts.Debug.assert(!!typeCatalog.length === (mode !== "server")); // Have a type catalog iff not in server mode fs.writeSync(traceFd, "\n]\n"); fs.closeSync(traceFd); ts.tracing = undefined; if (typeCatalog.length) { dumpTypes(typeCatalog); } else { // We pre-computed this path for convenience, but clear it // now that the file won't be created. legend[legend.length - 1].typesPath = undefined; } } tracingEnabled.stopTracing = stopTracing; function recordType(type) { if (mode !== "server") { typeCatalog.push(type); } } tracingEnabled.recordType = recordType; var Phase; (function (Phase) { Phase["Parse"] = "parse"; Phase["Program"] = "program"; Phase["Bind"] = "bind"; Phase["Check"] = "check"; Phase["CheckTypes"] = "checkTypes"; Phase["Emit"] = "emit"; Phase["Session"] = "session"; })(Phase = tracingEnabled.Phase || (tracingEnabled.Phase = {})); function instant(phase, name, args) { writeEvent("I", phase, name, args, "\"s\":\"g\""); } tracingEnabled.instant = instant; var eventStack = []; /** * @param separateBeginAndEnd - used for special cases where we need the trace point even if the event * never terminates (typically for reducing a scenario too big to trace to one that can be completed). * In the future we might implement an exit handler to dump unfinished events which would deprecate * these operations. */ function push(phase, name, args, separateBeginAndEnd) { if (separateBeginAndEnd === void 0) { separateBeginAndEnd = false; } if (separateBeginAndEnd) { writeEvent("B", phase, name, args); } eventStack.push({ phase: phase, name: name, args: args, time: 1000 * ts.timestamp(), separateBeginAndEnd: separateBeginAndEnd }); } tracingEnabled.push = push; function pop() { ts.Debug.assert(eventStack.length > 0); writeStackEvent(eventStack.length - 1, 1000 * ts.timestamp()); eventStack.length--; } tracingEnabled.pop = pop; function popAll() { var endTime = 1000 * ts.timestamp(); for (var i = eventStack.length - 1; i >= 0; i--) { writeStackEvent(i, endTime); } eventStack.length = 0; } tracingEnabled.popAll = popAll; // sample every 10ms var sampleInterval = 1000 * 10; function writeStackEvent(index, endTime) { var _a = eventStack[index], phase = _a.phase, name = _a.name, args = _a.args, time = _a.time, separateBeginAndEnd = _a.separateBeginAndEnd; if (separateBeginAndEnd) { writeEvent("E", phase, name, args, /*extras*/ undefined, endTime); } // test if [time,endTime) straddles a sampling point else if (sampleInterval - (time % sampleInterval) <= endTime - time) { writeEvent("X", phase, name, args, "\"dur\":".concat(endTime - time), time); } } function writeEvent(eventType, phase, name, args, extras, time) { if (time === void 0) { time = 1000 * ts.timestamp(); } // In server mode, there's no easy way to dump type information, so we drop events that would require it. if (mode === "server" && phase === "checkTypes" /* Phase.CheckTypes */) return; ts.performance.mark("beginTracing"); fs.writeSync(traceFd, ",\n{\"pid\":1,\"tid\":1,\"ph\":\"".concat(eventType, "\",\"cat\":\"").concat(phase, "\",\"ts\":").concat(time, ",\"name\":\"").concat(name, "\"")); if (extras) fs.writeSync(traceFd, ",".concat(extras)); if (args) fs.writeSync(traceFd, ",\"args\":".concat(JSON.stringify(args))); fs.writeSync(traceFd, "}"); ts.performance.mark("endTracing"); ts.performance.measure("Tracing", "beginTracing", "endTracing"); } function getLocation(node) { var file = ts.getSourceFileOfNode(node); return !file ? undefined : { path: file.path, start: indexFromOne(ts.getLineAndCharacterOfPosition(file, node.pos)), end: indexFromOne(ts.getLineAndCharacterOfPosition(file, node.end)), }; function indexFromOne(lc) { return { line: lc.line + 1, character: lc.character + 1, }; } } function dumpTypes(types) { var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x; ts.performance.mark("beginDumpTypes"); var typesPath = legend[legend.length - 1].typesPath; var typesFd = fs.openSync(typesPath, "w"); var recursionIdentityMap = new ts.Map(); // Cleverness: no line break here so that the type ID will match the line number fs.writeSync(typesFd, "["); var numTypes = types.length; for (var i = 0; i < numTypes; i++) { var type = types[i]; var objectFlags = type.objectFlags; var symbol = (_a = type.aliasSymbol) !== null && _a !== void 0 ? _a : type.symbol; // It's slow to compute the display text, so skip it unless it's really valuable (or cheap) var display = void 0; if ((objectFlags & 16 /* ObjectFlags.Anonymous */) | (type.flags & 2944 /* TypeFlags.Literal */)) { try { display = (_b = type.checker) === null || _b === void 0 ? void 0 : _b.typeToString(type); } catch (_y) { display = undefined; } } var indexedAccessProperties = {}; if (type.flags & 8388608 /* TypeFlags.IndexedAccess */) { var indexedAccessType = type; indexedAccessProperties = { indexedAccessObjectType: (_c = indexedAccessType.objectType) === null || _c === void 0 ? void 0 : _c.id, indexedAccessIndexType: (_d = indexedAccessType.indexType) === null || _d === void 0 ? void 0 : _d.id, }; } var referenceProperties = {}; if (objectFlags & 4 /* ObjectFlags.Reference */) { var referenceType = type; referenceProperties = { instantiatedType: (_e = referenceType.target) === null || _e === void 0 ? void 0 : _e.id, typeArguments: (_f = referenceType.resolvedTypeArguments) === null || _f === void 0 ? void 0 : _f.map(function (t) { return t.id; }), referenceLocation: getLocation(referenceType.node), }; } var conditionalProperties = {}; if (type.flags & 16777216 /* TypeFlags.Conditional */) { var conditionalType = type; conditionalProperties = { conditionalCheckType: (_g = conditionalType.checkType) === null || _g === void 0 ? void 0 : _g.id, conditionalExtendsType: (_h = conditionalType.extendsType) === null || _h === void 0 ? void 0 : _h.id, conditionalTrueType: (_k = (_j = conditionalType.resolvedTrueType) === null || _j === void 0 ? void 0 : _j.id) !== null && _k !== void 0 ? _k : -1, conditionalFalseType: (_m = (_l = conditionalType.resolvedFalseType) === null || _l === void 0 ? void 0 : _l.id) !== null && _m !== void 0 ? _m : -1, }; } var substitutionProperties = {}; if (type.flags & 33554432 /* TypeFlags.Substitution */) { var substitutionType = type; substitutionProperties = { substitutionBaseType: (_o = substitutionType.baseType) === null || _o === void 0 ? void 0 : _o.id, substituteType: (_p = substitutionType.substitute) === null || _p === void 0 ? void 0 : _p.id, }; } var reverseMappedProperties = {}; if (objectFlags & 1024 /* ObjectFlags.ReverseMapped */) { var reverseMappedType = type; reverseMappedProperties = { reverseMappedSourceType: (_q = reverseMappedType.source) === null || _q === void 0 ? void 0 : _q.id, reverseMappedMappedType: (_r = reverseMappedType.mappedType) === null || _r === void 0 ? void 0 : _r.id, reverseMappedConstraintType: (_s = reverseMappedType.constraintType) === null || _s === void 0 ? void 0 : _s.id, }; } var evolvingArrayProperties = {}; if (objectFlags & 256 /* ObjectFlags.EvolvingArray */) { var evolvingArrayType = type; evolvingArrayProperties = { evolvingArrayElementType: evolvingArrayType.elementType.id, evolvingArrayFinalType: (_t = evolvingArrayType.finalArrayType) === null || _t === void 0 ? void 0 : _t.id, }; } // We can't print out an arbitrary object, so just assign each one a unique number. // Don't call it an "id" so people don't treat it as a type id. var recursionToken = void 0; var recursionIdentity = type.checker.getRecursionIdentity(type); if (recursionIdentity) { recursionToken = recursionIdentityMap.get(recursionIdentity); if (!recursionToken) { recursionToken = recursionIdentityMap.size; recursionIdentityMap.set(recursionIdentity, recursionToken); } } var descriptor = __assign(__assign(__assign(__assign(__assign(__assign(__assign({ id: type.id, intrinsicName: type.intrinsicName, symbolName: (symbol === null || symbol === void 0 ? void 0 : symbol.escapedName) && ts.unescapeLeadingUnderscores(symbol.escapedName), recursionId: recursionToken, isTuple: objectFlags & 8 /* ObjectFlags.Tuple */ ? true : undefined, unionTypes: (type.flags & 1048576 /* TypeFlags.Union */) ? (_u = type.types) === null || _u === void 0 ? void 0 : _u.map(function (t) { return t.id; }) : undefined, intersectionTypes: (type.flags & 2097152 /* TypeFlags.Intersection */) ? type.types.map(function (t) { return t.id; }) : undefined, aliasTypeArguments: (_v = type.aliasTypeArguments) === null || _v === void 0 ? void 0 : _v.map(function (t) { return t.id; }), keyofType: (type.flags & 4194304 /* TypeFlags.Index */) ? (_w = type.type) === null || _w === void 0 ? void 0 : _w.id : undefined }, indexedAccessProperties), referenceProperties), conditionalProperties), substitutionProperties), reverseMappedProperties), evolvingArrayProperties), { destructuringPattern: getLocation(type.pattern), firstDeclaration: getLocation((_x = symbol === null || symbol === void 0 ? void 0 : symbol.declarations) === null || _x === void 0 ? void 0 : _x[0]), flags: ts.Debug.formatTypeFlags(type.flags).split("|"), display: display }); fs.writeSync(typesFd, JSON.stringify(descriptor)); if (i < numTypes - 1) { fs.writeSync(typesFd, ",\n"); } } fs.writeSync(typesFd, "]\n"); fs.closeSync(typesFd); ts.performance.mark("endDumpTypes"); ts.performance.measure("Dump types", "beginDumpTypes", "endDumpTypes"); } function dumpLegend() { if (!legendPath) { return; } fs.writeFileSync(legendPath, JSON.stringify(legend)); } tracingEnabled.dumpLegend = dumpLegend; })(tracingEnabled || (tracingEnabled = {})); // define after tracingEnabled is initialized ts.startTracing = tracingEnabled.startTracing; ts.dumpTracingLegend = tracingEnabled.dumpLegend; })(ts || (ts = {})); var ts; (function (ts) { // token > SyntaxKind.Identifier => token is a keyword // Also, If you add a new SyntaxKind be sure to keep the `Markers` section at the bottom in sync var SyntaxKind; (function (SyntaxKind) { SyntaxKind[SyntaxKind["Unknown"] = 0] = "Unknown"; SyntaxKind[SyntaxKind["EndOfFileToken"] = 1] = "EndOfFileToken"; SyntaxKind[SyntaxKind["SingleLineCommentTrivia"] = 2] = "SingleLineCommentTrivia"; SyntaxKind[SyntaxKind["MultiLineCommentTrivia"] = 3] = "MultiLineCommentTrivia"; SyntaxKind[SyntaxKind["NewLineTrivia"] = 4] = "NewLineTrivia"; SyntaxKind[SyntaxKind["WhitespaceTrivia"] = 5] = "WhitespaceTrivia"; // We detect and preserve #! on the first line SyntaxKind[SyntaxKind["ShebangTrivia"] = 6] = "ShebangTrivia"; // We detect and provide better error recovery when we encounter a git merge marker. This // allows us to edit files with git-conflict markers in them in a much more pleasant manner. SyntaxKind[SyntaxKind["ConflictMarkerTrivia"] = 7] = "ConflictMarkerTrivia"; // Literals SyntaxKind[SyntaxKind["NumericLiteral"] = 8] = "NumericLiteral"; SyntaxKind[SyntaxKind["BigIntLiteral"] = 9] = "BigIntLiteral"; SyntaxKind[SyntaxKind["StringLiteral"] = 10] = "StringLiteral"; SyntaxKind[SyntaxKind["JsxText"] = 11] = "JsxText"; SyntaxKind[SyntaxKind["JsxTextAllWhiteSpaces"] = 12] = "JsxTextAllWhiteSpaces"; SyntaxKind[SyntaxKind["RegularExpressionLiteral"] = 13] = "RegularExpressionLiteral"; SyntaxKind[SyntaxKind["NoSubstitutionTemplateLiteral"] = 14] = "NoSubstitutionTemplateLiteral"; // Pseudo-literals SyntaxKind[SyntaxKind["TemplateHead"] = 15] = "TemplateHead"; SyntaxKind[SyntaxKind["TemplateMiddle"] = 16] = "TemplateMiddle"; SyntaxKind[SyntaxKind["TemplateTail"] = 17] = "TemplateTail"; // Punctuation SyntaxKind[SyntaxKind["OpenBraceToken"] = 18] = "OpenBraceToken"; SyntaxKind[SyntaxKind["CloseBraceToken"] = 19] = "CloseBraceToken"; SyntaxKind[SyntaxKind["OpenParenToken"] = 20] = "OpenParenToken"; SyntaxKind[SyntaxKind["CloseParenToken"] = 21] = "CloseParenToken"; SyntaxKind[SyntaxKind["OpenBracketToken"] = 22] = "OpenBracketToken"; SyntaxKind[SyntaxKind["CloseBracketToken"] = 23] = "CloseBracketToken"; SyntaxKind[SyntaxKind["DotToken"] = 24] = "DotToken"; SyntaxKind[SyntaxKind["DotDotDotToken"] = 25] = "DotDotDotToken"; SyntaxKind[SyntaxKind["SemicolonToken"] = 26] = "SemicolonToken"; SyntaxKind[SyntaxKind["CommaToken"] = 27] = "CommaToken"; SyntaxKind[SyntaxKind["QuestionDotToken"] = 28] = "QuestionDotToken"; SyntaxKind[SyntaxKind["LessThanToken"] = 29] = "LessThanToken"; SyntaxKind[SyntaxKind["LessThanSlashToken"] = 30] = "LessThanSlashToken"; SyntaxKind[SyntaxKind["GreaterThanToken"] = 31] = "GreaterThanToken"; SyntaxKind[SyntaxKind["LessThanEqualsToken"] = 32] = "LessThanEqualsToken"; SyntaxKind[SyntaxKind["GreaterThanEqualsToken"] = 33] = "GreaterThanEqualsToken"; SyntaxKind[SyntaxKind["EqualsEqualsToken"] = 34] = "EqualsEqualsToken"; SyntaxKind[SyntaxKind["ExclamationEqualsToken"] = 35] = "ExclamationEqualsToken"; SyntaxKind[SyntaxKind["EqualsEqualsEqualsToken"] = 36] = "EqualsEqualsEqualsToken"; SyntaxKind[SyntaxKind["ExclamationEqualsEqualsToken"] = 37] = "ExclamationEqualsEqualsToken"; SyntaxKind[SyntaxKind["EqualsGreaterThanToken"] = 38] = "EqualsGreaterThanToken"; SyntaxKind[SyntaxKind["PlusToken"] = 39] = "PlusToken"; SyntaxKind[SyntaxKind["MinusToken"] = 40] = "MinusToken"; SyntaxKind[SyntaxKind["AsteriskToken"] = 41] = "AsteriskToken"; SyntaxKind[SyntaxKind["AsteriskAsteriskToken"] = 42] = "AsteriskAsteriskToken"; SyntaxKind[SyntaxKind["SlashToken"] = 43] = "SlashToken"; SyntaxKind[SyntaxKind["PercentToken"] = 44] = "PercentToken"; SyntaxKind[SyntaxKind["PlusPlusToken"] = 45] = "PlusPlusToken"; SyntaxKind[SyntaxKind["MinusMinusToken"] = 46] = "MinusMinusToken"; SyntaxKind[SyntaxKind["LessThanLessThanToken"] = 47] = "LessThanLessThanToken"; SyntaxKind[SyntaxKind["GreaterThanGreaterThanToken"] = 48] = "GreaterThanGreaterThanToken"; SyntaxKind[SyntaxKind["GreaterThanGreaterThanGreaterThanToken"] = 49] = "GreaterThanGreaterThanGreaterThanToken"; SyntaxKind[SyntaxKind["AmpersandToken"] = 50] = "AmpersandToken"; SyntaxKind[SyntaxKind["BarToken"] = 51] = "BarToken"; SyntaxKind[SyntaxKind["CaretToken"] = 52] = "CaretToken"; SyntaxKind[SyntaxKind["ExclamationToken"] = 53] = "ExclamationToken"; SyntaxKind[SyntaxKind["TildeToken"] = 54] = "TildeToken"; SyntaxKind[SyntaxKind["AmpersandAmpersandToken"] = 55] = "AmpersandAmpersandToken"; SyntaxKind[SyntaxKind["BarBarToken"] = 56] = "BarBarToken"; SyntaxKind[SyntaxKind["QuestionToken"] = 57] = "QuestionToken"; SyntaxKind[SyntaxKind["ColonToken"] = 58] = "ColonToken"; SyntaxKind[SyntaxKind["AtToken"] = 59] = "AtToken"; SyntaxKind[SyntaxKind["QuestionQuestionToken"] = 60] = "QuestionQuestionToken"; /** Only the JSDoc scanner produces BacktickToken. The normal scanner produces NoSubstitutionTemplateLiteral and related kinds. */ SyntaxKind[SyntaxKind["BacktickToken"] = 61] = "BacktickToken"; /** Only the JSDoc scanner produces HashToken. The normal scanner produces PrivateIdentifier. */ SyntaxKind[SyntaxKind["HashToken"] = 62] = "HashToken"; // Assignments SyntaxKind[SyntaxKind["EqualsToken"] = 63] = "EqualsToken"; SyntaxKind[SyntaxKind["PlusEqualsToken"] = 64] = "PlusEqualsToken"; SyntaxKind[SyntaxKind["MinusEqualsToken"] = 65] = "MinusEqualsToken"; SyntaxKind[SyntaxKind["AsteriskEqualsToken"] = 66] = "AsteriskEqualsToken"; SyntaxKind[SyntaxKind["AsteriskAsteriskEqualsToken"] = 67] = "AsteriskAsteriskEqualsToken"; SyntaxKind[SyntaxKind["SlashEqualsToken"] = 68] = "SlashEqualsToken"; SyntaxKind[SyntaxKind["PercentEqualsToken"] = 69] = "PercentEqualsToken"; SyntaxKind[SyntaxKind["LessThanLessThanEqualsToken"] = 70] = "LessThanLessThanEqualsToken"; SyntaxKind[SyntaxKind["GreaterThanGreaterThanEqualsToken"] = 71] = "GreaterThanGreaterThanEqualsToken"; SyntaxKind[SyntaxKind["GreaterThanGreaterThanGreaterThanEqualsToken"] = 72] = "GreaterThanGreaterThanGreaterThanEqualsToken"; SyntaxKind[SyntaxKind["AmpersandEqualsToken"] = 73] = "AmpersandEqualsToken"; SyntaxKind[SyntaxKind["BarEqualsToken"] = 74] = "BarEqualsToken"; SyntaxKind[SyntaxKind["BarBarEqualsToken"] = 75] = "BarBarEqualsToken"; SyntaxKind[SyntaxKind["AmpersandAmpersandEqualsToken"] = 76] = "AmpersandAmpersandEqualsToken"; SyntaxKind[SyntaxKind["QuestionQuestionEqualsToken"] = 77] = "QuestionQuestionEqualsToken"; SyntaxKind[SyntaxKind["CaretEqualsToken"] = 78] = "CaretEqualsToken"; // Identifiers and PrivateIdentifiers SyntaxKind[SyntaxKind["Identifier"] = 79] = "Identifier"; SyntaxKind[SyntaxKind["PrivateIdentifier"] = 80] = "PrivateIdentifier"; // Reserved words SyntaxKind[SyntaxKind["BreakKeyword"] = 81] = "BreakKeyword"; SyntaxKind[SyntaxKind["CaseKeyword"] = 82] = "CaseKeyword"; SyntaxKind[SyntaxKind["CatchKeyword"] = 83] = "CatchKeyword"; SyntaxKind[SyntaxKind["ClassKeyword"] = 84] = "ClassKeyword"; SyntaxKind[SyntaxKind["ConstKeyword"] = 85] = "ConstKeyword"; SyntaxKind[SyntaxKind["ContinueKeyword"] = 86] = "ContinueKeyword"; SyntaxKind[SyntaxKind["DebuggerKeyword"] = 87] = "DebuggerKeyword"; SyntaxKind[SyntaxKind["DefaultKeyword"] = 88] = "DefaultKeyword"; SyntaxKind[SyntaxKind["DeleteKeyword"] = 89] = "DeleteKeyword"; SyntaxKind[SyntaxKind["DoKeyword"] = 90] = "DoKeyword"; SyntaxKind[SyntaxKind["ElseKeyword"] = 91] = "ElseKeyword"; SyntaxKind[SyntaxKind["EnumKeyword"] = 92] = "EnumKeyword"; SyntaxKind[SyntaxKind["ExportKeyword"] = 93] = "ExportKeyword"; SyntaxKind[SyntaxKind["ExtendsKeyword"] = 94] = "ExtendsKeyword"; SyntaxKind[SyntaxKind["FalseKeyword"] = 95] = "FalseKeyword"; SyntaxKind[SyntaxKind["FinallyKeyword"] = 96] = "FinallyKeyword"; SyntaxKind[SyntaxKind["ForKeyword"] = 97] = "ForKeyword"; SyntaxKind[SyntaxKind["FunctionKeyword"] = 98] = "FunctionKeyword"; SyntaxKind[SyntaxKind["IfKeyword"] = 99] = "IfKeyword"; SyntaxKind[SyntaxKind["ImportKeyword"] = 100] = "ImportKeyword"; SyntaxKind[SyntaxKind["InKeyword"] = 101] = "InKeyword"; SyntaxKind[SyntaxKind["InstanceOfKeyword"] = 102] = "InstanceOfKeyword"; SyntaxKind[SyntaxKind["NewKeyword"] = 103] = "NewKeyword"; SyntaxKind[SyntaxKind["NullKeyword"] = 104] = "NullKeyword"; SyntaxKind[SyntaxKind["ReturnKeyword"] = 105] = "ReturnKeyword"; SyntaxKind[SyntaxKind["SuperKeyword"] = 106] = "SuperKeyword"; SyntaxKind[SyntaxKind["SwitchKeyword"] = 107] = "SwitchKeyword"; SyntaxKind[SyntaxKind["ThisKeyword"] = 108] = "ThisKeyword"; SyntaxKind[SyntaxKind["ThrowKeyword"] = 109] = "ThrowKeyword"; SyntaxKind[SyntaxKind["TrueKeyword"] = 110] = "TrueKeyword"; SyntaxKind[SyntaxKind["TryKeyword"] = 111] = "TryKeyword"; SyntaxKind[SyntaxKind["TypeOfKeyword"] = 112] = "TypeOfKeyword"; SyntaxKind[SyntaxKind["VarKeyword"] = 113] = "VarKeyword"; SyntaxKind[SyntaxKind["VoidKeyword"] = 114] = "VoidKeyword"; SyntaxKind[SyntaxKind["WhileKeyword"] = 115] = "WhileKeyword"; SyntaxKind[SyntaxKind["WithKeyword"] = 116] = "WithKeyword"; // Strict mode reserved words SyntaxKind[SyntaxKind["ImplementsKeyword"] = 117] = "ImplementsKeyword"; SyntaxKind[SyntaxKind["InterfaceKeyword"] = 118] = "InterfaceKeyword"; SyntaxKind[SyntaxKind["LetKeyword"] = 119] = "LetKeyword"; SyntaxKind[SyntaxKind["PackageKeyword"] = 120] = "PackageKeyword"; SyntaxKind[SyntaxKind["PrivateKeyword"] = 121] = "PrivateKeyword"; SyntaxKind[SyntaxKind["ProtectedKeyword"] = 122] = "ProtectedKeyword"; SyntaxKind[SyntaxKind["PublicKeyword"] = 123] = "PublicKeyword"; SyntaxKind[SyntaxKind["StaticKeyword"] = 124] = "StaticKeyword"; SyntaxKind[SyntaxKind["YieldKeyword"] = 125] = "YieldKeyword"; // Contextual keywords SyntaxKind[SyntaxKind["AbstractKeyword"] = 126] = "AbstractKeyword"; SyntaxKind[SyntaxKind["AsKeyword"] = 127] = "AsKeyword"; SyntaxKind[SyntaxKind["AssertsKeyword"] = 128] = "AssertsKeyword"; SyntaxKind[SyntaxKind["AssertKeyword"] = 129] = "AssertKeyword"; SyntaxKind[SyntaxKind["AnyKeyword"] = 130] = "AnyKeyword"; SyntaxKind[SyntaxKind["AsyncKeyword"] = 131] = "AsyncKeyword"; SyntaxKind[SyntaxKind["AwaitKeyword"] = 132] = "AwaitKeyword"; SyntaxKind[SyntaxKind["BooleanKeyword"] = 133] = "BooleanKeyword"; SyntaxKind[SyntaxKind["ConstructorKeyword"] = 134] = "ConstructorKeyword"; SyntaxKind[SyntaxKind["DeclareKeyword"] = 135] = "DeclareKeyword"; SyntaxKind[SyntaxKind["GetKeyword"] = 136] = "GetKeyword"; SyntaxKind[SyntaxKind["InferKeyword"] = 137] = "InferKeyword"; SyntaxKind[SyntaxKind["IntrinsicKeyword"] = 138] = "IntrinsicKeyword"; SyntaxKind[SyntaxKind["IsKeyword"] = 139] = "IsKeyword"; SyntaxKind[SyntaxKind["KeyOfKeyword"] = 140] = "KeyOfKeyword"; SyntaxKind[SyntaxKind["ModuleKeyword"] = 141] = "ModuleKeyword"; SyntaxKind[SyntaxKind["NamespaceKeyword"] = 142] = "NamespaceKeyword"; SyntaxKind[SyntaxKind["NeverKeyword"] = 143] = "NeverKeyword"; SyntaxKind[SyntaxKind["OutKeyword"] = 144] = "OutKeyword"; SyntaxKind[SyntaxKind["ReadonlyKeyword"] = 145] = "ReadonlyKeyword"; SyntaxKind[SyntaxKind["RequireKeyword"] = 146] = "RequireKeyword"; SyntaxKind[SyntaxKind["NumberKeyword"] = 147] = "NumberKeyword"; SyntaxKind[SyntaxKind["ObjectKeyword"] = 148] = "ObjectKeyword"; SyntaxKind[SyntaxKind["SetKeyword"] = 149] = "SetKeyword"; SyntaxKind[SyntaxKind["StringKeyword"] = 150] = "StringKeyword"; SyntaxKind[SyntaxKind["SymbolKeyword"] = 151] = "SymbolKeyword"; SyntaxKind[SyntaxKind["TypeKeyword"] = 152] = "TypeKeyword"; SyntaxKind[SyntaxKind["UndefinedKeyword"] = 153] = "UndefinedKeyword"; SyntaxKind[SyntaxKind["UniqueKeyword"] = 154] = "UniqueKeyword"; SyntaxKind[SyntaxKind["UnknownKeyword"] = 155] = "UnknownKeyword"; SyntaxKind[SyntaxKind["FromKeyword"] = 156] = "FromKeyword"; SyntaxKind[SyntaxKind["GlobalKeyword"] = 157] = "GlobalKeyword"; SyntaxKind[SyntaxKind["BigIntKeyword"] = 158] = "BigIntKeyword"; SyntaxKind[SyntaxKind["OverrideKeyword"] = 159] = "OverrideKeyword"; SyntaxKind[SyntaxKind["OfKeyword"] = 160] = "OfKeyword"; // Parse tree nodes // Names SyntaxKind[SyntaxKind["QualifiedName"] = 161] = "QualifiedName"; SyntaxKind[SyntaxKind["ComputedPropertyName"] = 162] = "ComputedPropertyName"; // Signature elements SyntaxKind[SyntaxKind["TypeParameter"] = 163] = "TypeParameter"; SyntaxKind[SyntaxKind["Parameter"] = 164] = "Parameter"; SyntaxKind[SyntaxKind["Decorator"] = 165] = "Decorator"; // TypeMember SyntaxKind[SyntaxKind["PropertySignature"] = 166] = "PropertySignature"; SyntaxKind[SyntaxKind["PropertyDeclaration"] = 167] = "PropertyDeclaration"; SyntaxKind[SyntaxKind["MethodSignature"] = 168] = "MethodSignature"; SyntaxKind[SyntaxKind["MethodDeclaration"] = 169] = "MethodDeclaration"; SyntaxKind[SyntaxKind["ClassStaticBlockDeclaration"] = 170] = "ClassStaticBlockDeclaration"; SyntaxKind[SyntaxKind["Constructor"] = 171] = "Constructor"; SyntaxKind[SyntaxKind["GetAccessor"] = 172] = "GetAccessor"; SyntaxKind[SyntaxKind["SetAccessor"] = 173] = "SetAccessor"; SyntaxKind[SyntaxKind["CallSignature"] = 174] = "CallSignature"; SyntaxKind[SyntaxKind["ConstructSignature"] = 175] = "ConstructSignature"; SyntaxKind[SyntaxKind["IndexSignature"] = 176] = "IndexSignature"; // Type SyntaxKind[SyntaxKind["TypePredicate"] = 177] = "TypePredicate"; SyntaxKind[SyntaxKind["TypeReference"] = 178] = "TypeReference"; SyntaxKind[SyntaxKind["FunctionType"] = 179] = "FunctionType"; SyntaxKind[SyntaxKind["ConstructorType"] = 180] = "ConstructorType"; SyntaxKind[SyntaxKind["TypeQuery"] = 181] = "TypeQuery"; SyntaxKind[SyntaxKind["TypeLiteral"] = 182] = "TypeLiteral"; SyntaxKind[SyntaxKind["ArrayType"] = 183] = "ArrayType"; SyntaxKind[SyntaxKind["TupleType"] = 184] = "TupleType"; SyntaxKind[SyntaxKind["OptionalType"] = 185] = "OptionalType"; SyntaxKind[SyntaxKind["RestType"] = 186] = "RestType"; SyntaxKind[SyntaxKind["UnionType"] = 187] = "UnionType"; SyntaxKind[SyntaxKind["IntersectionType"] = 188] = "IntersectionType"; SyntaxKind[SyntaxKind["ConditionalType"] = 189] = "ConditionalType"; SyntaxKind[SyntaxKind["InferType"] = 190] = "InferType"; SyntaxKind[SyntaxKind["ParenthesizedType"] = 191] = "ParenthesizedType"; SyntaxKind[SyntaxKind["ThisType"] = 192] = "ThisType"; SyntaxKind[SyntaxKind["TypeOperator"] = 193] = "TypeOperator"; SyntaxKind[SyntaxKind["IndexedAccessType"] = 194] = "IndexedAccessType"; SyntaxKind[SyntaxKind["MappedType"] = 195] = "MappedType"; SyntaxKind[SyntaxKind["LiteralType"] = 196] = "LiteralType"; SyntaxKind[SyntaxKind["NamedTupleMember"] = 197] = "NamedTupleMember"; SyntaxKind[SyntaxKind["TemplateLiteralType"] = 198] = "TemplateLiteralType"; SyntaxKind[SyntaxKind["TemplateLiteralTypeSpan"] = 199] = "TemplateLiteralTypeSpan"; SyntaxKind[SyntaxKind["ImportType"] = 200] = "ImportType"; // Binding patterns SyntaxKind[SyntaxKind["ObjectBindingPattern"] = 201] = "ObjectBindingPattern"; SyntaxKind[SyntaxKind["ArrayBindingPattern"] = 202] = "ArrayBindingPattern"; SyntaxKind[SyntaxKind["BindingElement"] = 203] = "BindingElement"; // Expression SyntaxKind[SyntaxKind["ArrayLiteralExpression"] = 204] = "ArrayLiteralExpression"; SyntaxKind[SyntaxKind["ObjectLiteralExpression"] = 205] = "ObjectLiteralExpression"; SyntaxKind[SyntaxKind["PropertyAccessExpression"] = 206] = "PropertyAccessExpression"; SyntaxKind[SyntaxKind["ElementAccessExpression"] = 207] = "ElementAccessExpression"; SyntaxKind[SyntaxKind["CallExpression"] = 208] = "CallExpression"; SyntaxKind[SyntaxKind["NewExpression"] = 209] = "NewExpression"; SyntaxKind[SyntaxKind["TaggedTemplateExpression"] = 210] = "TaggedTemplateExpression"; SyntaxKind[SyntaxKind["TypeAssertionExpression"] = 211] = "TypeAssertionExpression"; SyntaxKind[SyntaxKind["ParenthesizedExpression"] = 212] = "ParenthesizedExpression"; SyntaxKind[SyntaxKind["FunctionExpression"] = 213] = "FunctionExpression"; SyntaxKind[SyntaxKind["ArrowFunction"] = 214] = "ArrowFunction"; SyntaxKind[SyntaxKind["DeleteExpression"] = 215] = "DeleteExpression"; SyntaxKind[SyntaxKind["TypeOfExpression"] = 216] = "TypeOfExpression"; SyntaxKind[SyntaxKind["VoidExpression"] = 217] = "VoidExpression"; SyntaxKind[SyntaxKind["AwaitExpression"] = 218] = "AwaitExpression"; SyntaxKind[SyntaxKind["PrefixUnaryExpression"] = 219] = "PrefixUnaryExpression"; SyntaxKind[SyntaxKind["PostfixUnaryExpression"] = 220] = "PostfixUnaryExpression"; SyntaxKind[SyntaxKind["BinaryExpression"] = 221] = "BinaryExpression"; SyntaxKind[SyntaxKind["ConditionalExpression"] = 222] = "ConditionalExpression"; SyntaxKind[SyntaxKind["TemplateExpression"] = 223] = "TemplateExpression"; SyntaxKind[SyntaxKind["YieldExpression"] = 224] = "YieldExpression"; SyntaxKind[SyntaxKind["SpreadElement"] = 225] = "SpreadElement"; SyntaxKind[SyntaxKind["ClassExpression"] = 226] = "ClassExpression"; SyntaxKind[SyntaxKind["OmittedExpression"] = 227] = "OmittedExpression"; SyntaxKind[SyntaxKind["ExpressionWithTypeArguments"] = 228] = "ExpressionWithTypeArguments"; SyntaxKind[SyntaxKind["AsExpression"] = 229] = "AsExpression"; SyntaxKind[SyntaxKind["NonNullExpression"] = 230] = "NonNullExpression"; SyntaxKind[SyntaxKind["MetaProperty"] = 231] = "MetaProperty"; SyntaxKind[SyntaxKind["SyntheticExpression"] = 232] = "SyntheticExpression"; // Misc SyntaxKind[SyntaxKind["TemplateSpan"] = 233] = "TemplateSpan"; SyntaxKind[SyntaxKind["SemicolonClassElement"] = 234] = "SemicolonClassElement"; // Element SyntaxKind[SyntaxKind["Block"] = 235] = "Block"; SyntaxKind[SyntaxKind["EmptyStatement"] = 236] = "EmptyStatement"; SyntaxKind[SyntaxKind["VariableStatement"] = 237] = "VariableStatement"; SyntaxKind[SyntaxKind["ExpressionStatement"] = 238] = "ExpressionStatement"; SyntaxKind[SyntaxKind["IfStatement"] = 239] = "IfStatement"; SyntaxKind[SyntaxKind["DoStatement"] = 240] = "DoStatement"; SyntaxKind[SyntaxKind["WhileStatement"] = 241] = "WhileStatement"; SyntaxKind[SyntaxKind["ForStatement"] = 242] = "ForStatement"; SyntaxKind[SyntaxKind["ForInStatement"] = 243] = "ForInStatement"; SyntaxKind[SyntaxKind["ForOfStatement"] = 244] = "ForOfStatement"; SyntaxKind[SyntaxKind["ContinueStatement"] = 245] = "ContinueStatement"; SyntaxKind[SyntaxKind["BreakStatement"] = 246] = "BreakStatement"; SyntaxKind[SyntaxKind["ReturnStatement"] = 247] = "ReturnStatement"; SyntaxKind[SyntaxKind["WithStatement"] = 248] = "WithStatement"; SyntaxKind[SyntaxKind["SwitchStatement"] = 249] = "SwitchStatement"; SyntaxKind[SyntaxKind["LabeledStatement"] = 250] = "LabeledStatement"; SyntaxKind[SyntaxKind["ThrowStatement"] = 251] = "ThrowStatement"; SyntaxKind[SyntaxKind["TryStatement"] = 252] = "TryStatement"; SyntaxKind[SyntaxKind["DebuggerStatement"] = 253] = "DebuggerStatement"; SyntaxKind[SyntaxKind["VariableDeclaration"] = 254] = "VariableDeclaration"; SyntaxKind[SyntaxKind["VariableDeclarationList"] = 255] = "VariableDeclarationList"; SyntaxKind[SyntaxKind["FunctionDeclaration"] = 256] = "FunctionDeclaration"; SyntaxKind[SyntaxKind["ClassDeclaration"] = 257] = "ClassDeclaration"; SyntaxKind[SyntaxKind["InterfaceDeclaration"] = 258] = "InterfaceDeclaration"; SyntaxKind[SyntaxKind["TypeAliasDeclaration"] = 259] = "TypeAliasDeclaration"; SyntaxKind[SyntaxKind["EnumDeclaration"] = 260] = "EnumDeclaration"; SyntaxKind[SyntaxKind["ModuleDeclaration"] = 261] = "ModuleDeclaration"; SyntaxKind[SyntaxKind["ModuleBlock"] = 262] = "ModuleBlock"; SyntaxKind[SyntaxKind["CaseBlock"] = 263] = "CaseBlock"; SyntaxKind[SyntaxKind["NamespaceExportDeclaration"] = 264] = "NamespaceExportDeclaration"; SyntaxKind[SyntaxKind["ImportEqualsDeclaration"] = 265] = "ImportEqualsDeclaration"; SyntaxKind[SyntaxKind["ImportDeclaration"] = 266] = "ImportDeclaration"; SyntaxKind[SyntaxKind["ImportClause"] = 267] = "ImportClause"; SyntaxKind[SyntaxKind["NamespaceImport"] = 268] = "NamespaceImport"; SyntaxKind[SyntaxKind["NamedImports"] = 269] = "NamedImports"; SyntaxKind[SyntaxKind["ImportSpecifier"] = 270] = "ImportSpecifier"; SyntaxKind[SyntaxKind["ExportAssignment"] = 271] = "ExportAssignment"; SyntaxKind[SyntaxKind["ExportDeclaration"] = 272] = "ExportDeclaration"; SyntaxKind[SyntaxKind["NamedExports"] = 273] = "NamedExports"; SyntaxKind[SyntaxKind["NamespaceExport"] = 274] = "NamespaceExport"; SyntaxKind[SyntaxKind["ExportSpecifier"] = 275] = "ExportSpecifier"; SyntaxKind[SyntaxKind["MissingDeclaration"] = 276] = "MissingDeclaration"; // Module references SyntaxKind[SyntaxKind["ExternalModuleReference"] = 277] = "ExternalModuleReference"; // JSX SyntaxKind[SyntaxKind["JsxElement"] = 278] = "JsxElement"; SyntaxKind[SyntaxKind["JsxSelfClosingElement"] = 279] = "JsxSelfClosingElement"; SyntaxKind[SyntaxKind["JsxOpeningElement"] = 280] = "JsxOpeningElement"; SyntaxKind[SyntaxKind["JsxClosingElement"] = 281] = "JsxClosingElement"; SyntaxKind[SyntaxKind["JsxFragment"] = 282] = "JsxFragment"; SyntaxKind[SyntaxKind["JsxOpeningFragment"] = 283] = "JsxOpeningFragment"; SyntaxKind[SyntaxKind["JsxClosingFragment"] = 284] = "JsxClosingFragment"; SyntaxKind[SyntaxKind["JsxAttribute"] = 285] = "JsxAttribute"; SyntaxKind[SyntaxKind["JsxAttributes"] = 286] = "JsxAttributes"; SyntaxKind[SyntaxKind["JsxSpreadAttribute"] = 287] = "JsxSpreadAttribute"; SyntaxKind[SyntaxKind["JsxExpression"] = 288] = "JsxExpression"; // Clauses SyntaxKind[SyntaxKind["CaseClause"] = 289] = "CaseClause"; SyntaxKind[SyntaxKind["DefaultClause"] = 290] = "DefaultClause"; SyntaxKind[SyntaxKind["HeritageClause"] = 291] = "HeritageClause"; SyntaxKind[SyntaxKind["CatchClause"] = 292] = "CatchClause"; SyntaxKind[SyntaxKind["AssertClause"] = 293] = "AssertClause"; SyntaxKind[SyntaxKind["AssertEntry"] = 294] = "AssertEntry"; SyntaxKind[SyntaxKind["ImportTypeAssertionContainer"] = 295] = "ImportTypeAssertionContainer"; // Property assignments SyntaxKind[SyntaxKind["PropertyAssignment"] = 296] = "PropertyAssignment"; SyntaxKind[SyntaxKind["ShorthandPropertyAssignment"] = 297] = "ShorthandPropertyAssignment"; SyntaxKind[SyntaxKind["SpreadAssignment"] = 298] = "SpreadAssignment"; // Enum SyntaxKind[SyntaxKind["EnumMember"] = 299] = "EnumMember"; // Unparsed SyntaxKind[SyntaxKind["UnparsedPrologue"] = 300] = "UnparsedPrologue"; SyntaxKind[SyntaxKind["UnparsedPrepend"] = 301] = "UnparsedPrepend"; SyntaxKind[SyntaxKind["UnparsedText"] = 302] = "UnparsedText"; SyntaxKind[SyntaxKind["UnparsedInternalText"] = 303] = "UnparsedInternalText"; SyntaxKind[SyntaxKind["UnparsedSyntheticReference"] = 304] = "UnparsedSyntheticReference"; // Top-level nodes SyntaxKind[SyntaxKind["SourceFile"] = 305] = "SourceFile"; SyntaxKind[SyntaxKind["Bundle"] = 306] = "Bundle"; SyntaxKind[SyntaxKind["UnparsedSource"] = 307] = "UnparsedSource"; SyntaxKind[SyntaxKind["InputFiles"] = 308] = "InputFiles"; // JSDoc nodes SyntaxKind[SyntaxKind["JSDocTypeExpression"] = 309] = "JSDocTypeExpression"; SyntaxKind[SyntaxKind["JSDocNameReference"] = 310] = "JSDocNameReference"; SyntaxKind[SyntaxKind["JSDocMemberName"] = 311] = "JSDocMemberName"; SyntaxKind[SyntaxKind["JSDocAllType"] = 312] = "JSDocAllType"; SyntaxKind[SyntaxKind["JSDocUnknownType"] = 313] = "JSDocUnknownType"; SyntaxKind[SyntaxKind["JSDocNullableType"] = 314] = "JSDocNullableType"; SyntaxKind[SyntaxKind["JSDocNonNullableType"] = 315] = "JSDocNonNullableType"; SyntaxKind[SyntaxKind["JSDocOptionalType"] = 316] = "JSDocOptionalType"; SyntaxKind[SyntaxKind["JSDocFunctionType"] = 317] = "JSDocFunctionType"; SyntaxKind[SyntaxKind["JSDocVariadicType"] = 318] = "JSDocVariadicType"; SyntaxKind[SyntaxKind["JSDocNamepathType"] = 319] = "JSDocNamepathType"; /** @deprecated Use SyntaxKind.JSDoc */ SyntaxKind[SyntaxKind["JSDocComment"] = 320] = "JSDocComment"; SyntaxKind[SyntaxKind["JSDocText"] = 321] = "JSDocText"; SyntaxKind[SyntaxKind["JSDocTypeLiteral"] = 322] = "JSDocTypeLiteral"; SyntaxKind[SyntaxKind["JSDocSignature"] = 323] = "JSDocSignature"; SyntaxKind[SyntaxKind["JSDocLink"] = 324] = "JSDocLink"; SyntaxKind[SyntaxKind["JSDocLinkCode"] = 325] = "JSDocLinkCode"; SyntaxKind[SyntaxKind["JSDocLinkPlain"] = 326] = "JSDocLinkPlain"; SyntaxKind[SyntaxKind["JSDocTag"] = 327] = "JSDocTag"; SyntaxKind[SyntaxKind["JSDocAugmentsTag"] = 328] = "JSDocAugmentsTag"; SyntaxKind[SyntaxKind["JSDocImplementsTag"] = 329] = "JSDocImplementsTag"; SyntaxKind[SyntaxKind["JSDocAuthorTag"] = 330] = "JSDocAuthorTag"; SyntaxKind[SyntaxKind["JSDocDeprecatedTag"] = 331] = "JSDocDeprecatedTag"; SyntaxKind[SyntaxKind["JSDocClassTag"] = 332] = "JSDocClassTag"; SyntaxKind[SyntaxKind["JSDocPublicTag"] = 333] = "JSDocPublicTag"; SyntaxKind[SyntaxKind["JSDocPrivateTag"] = 334] = "JSDocPrivateTag"; SyntaxKind[SyntaxKind["JSDocProtectedTag"] = 335] = "JSDocProtectedTag"; SyntaxKind[SyntaxKind["JSDocReadonlyTag"] = 336] = "JSDocReadonlyTag"; SyntaxKind[SyntaxKind["JSDocOverrideTag"] = 337] = "JSDocOverrideTag"; SyntaxKind[SyntaxKind["JSDocCallbackTag"] = 338] = "JSDocCallbackTag"; SyntaxKind[SyntaxKind["JSDocEnumTag"] = 339] = "JSDocEnumTag"; SyntaxKind[SyntaxKind["JSDocParameterTag"] = 340] = "JSDocParameterTag"; SyntaxKind[SyntaxKind["JSDocReturnTag"] = 341] = "JSDocReturnTag"; SyntaxKind[SyntaxKind["JSDocThisTag"] = 342] = "JSDocThisTag"; SyntaxKind[SyntaxKind["JSDocTypeTag"] = 343] = "JSDocTypeTag"; SyntaxKind[SyntaxKind["JSDocTemplateTag"] = 344] = "JSDocTemplateTag"; SyntaxKind[SyntaxKind["JSDocTypedefTag"] = 345] = "JSDocTypedefTag"; SyntaxKind[SyntaxKind["JSDocSeeTag"] = 346] = "JSDocSeeTag"; SyntaxKind[SyntaxKind["JSDocPropertyTag"] = 347] = "JSDocPropertyTag"; // Synthesized list SyntaxKind[SyntaxKind["SyntaxList"] = 348] = "SyntaxList"; // Transformation nodes SyntaxKind[SyntaxKind["NotEmittedStatement"] = 349] = "NotEmittedStatement"; SyntaxKind[SyntaxKind["PartiallyEmittedExpression"] = 350] = "PartiallyEmittedExpression"; SyntaxKind[SyntaxKind["CommaListExpression"] = 351] = "CommaListExpression"; SyntaxKind[SyntaxKind["MergeDeclarationMarker"] = 352] = "MergeDeclarationMarker"; SyntaxKind[SyntaxKind["EndOfDeclarationMarker"] = 353] = "EndOfDeclarationMarker"; SyntaxKind[SyntaxKind["SyntheticReferenceExpression"] = 354] = "SyntheticReferenceExpression"; // Enum value count SyntaxKind[SyntaxKind["Count"] = 355] = "Count"; // Markers SyntaxKind[SyntaxKind["FirstAssignment"] = 63] = "FirstAssignment"; SyntaxKind[SyntaxKind["LastAssignment"] = 78] = "LastAssignment"; SyntaxKind[SyntaxKind["FirstCompoundAssignment"] = 64] = "FirstCompoundAssignment"; SyntaxKind[SyntaxKind["LastCompoundAssignment"] = 78] = "LastCompoundAssignment"; SyntaxKind[SyntaxKind["FirstReservedWord"] = 81] = "FirstReservedWord"; SyntaxKind[SyntaxKind["LastReservedWord"] = 116] = "LastReservedWord"; SyntaxKind[SyntaxKind["FirstKeyword"] = 81] = "FirstKeyword"; SyntaxKind[SyntaxKind["LastKeyword"] = 160] = "LastKeyword"; SyntaxKind[SyntaxKind["FirstFutureReservedWord"] = 117] = "FirstFutureReservedWord"; SyntaxKind[SyntaxKind["LastFutureReservedWord"] = 125] = "LastFutureReservedWord"; SyntaxKind[SyntaxKind["FirstTypeNode"] = 177] = "FirstTypeNode"; SyntaxKind[SyntaxKind["LastTypeNode"] = 200] = "LastTypeNode"; SyntaxKind[SyntaxKind["FirstPunctuation"] = 18] = "FirstPunctuation"; SyntaxKind[SyntaxKind["LastPunctuation"] = 78] = "LastPunctuation"; SyntaxKind[SyntaxKind["FirstToken"] = 0] = "FirstToken"; SyntaxKind[SyntaxKind["LastToken"] = 160] = "LastToken"; SyntaxKind[SyntaxKind["FirstTriviaToken"] = 2] = "FirstTriviaToken"; SyntaxKind[SyntaxKind["LastTriviaToken"] = 7] = "LastTriviaToken"; SyntaxKind[SyntaxKind["FirstLiteralToken"] = 8] = "FirstLiteralToken"; SyntaxKind[SyntaxKind["LastLiteralToken"] = 14] = "LastLiteralToken"; SyntaxKind[SyntaxKind["FirstTemplateToken"] = 14] = "FirstTemplateToken"; SyntaxKind[SyntaxKind["LastTemplateToken"] = 17] = "LastTemplateToken"; SyntaxKind[SyntaxKind["FirstBinaryOperator"] = 29] = "FirstBinaryOperator"; SyntaxKind[SyntaxKind["LastBinaryOperator"] = 78] = "LastBinaryOperator"; SyntaxKind[SyntaxKind["FirstStatement"] = 237] = "FirstStatement"; SyntaxKind[SyntaxKind["LastStatement"] = 253] = "LastStatement"; SyntaxKind[SyntaxKind["FirstNode"] = 161] = "FirstNode"; SyntaxKind[SyntaxKind["FirstJSDocNode"] = 309] = "FirstJSDocNode"; SyntaxKind[SyntaxKind["LastJSDocNode"] = 347] = "LastJSDocNode"; SyntaxKind[SyntaxKind["FirstJSDocTagNode"] = 327] = "FirstJSDocTagNode"; SyntaxKind[SyntaxKind["LastJSDocTagNode"] = 347] = "LastJSDocTagNode"; /* @internal */ SyntaxKind[SyntaxKind["FirstContextualKeyword"] = 126] = "FirstContextualKeyword"; /* @internal */ SyntaxKind[SyntaxKind["LastContextualKeyword"] = 160] = "LastContextualKeyword"; SyntaxKind[SyntaxKind["JSDoc"] = 320] = "JSDoc"; })(SyntaxKind = ts.SyntaxKind || (ts.SyntaxKind = {})); var NodeFlags; (function (NodeFlags) { NodeFlags[NodeFlags["None"] = 0] = "None"; NodeFlags[NodeFlags["Let"] = 1] = "Let"; NodeFlags[NodeFlags["Const"] = 2] = "Const"; NodeFlags[NodeFlags["NestedNamespace"] = 4] = "NestedNamespace"; NodeFlags[NodeFlags["Synthesized"] = 8] = "Synthesized"; NodeFlags[NodeFlags["Namespace"] = 16] = "Namespace"; NodeFlags[NodeFlags["OptionalChain"] = 32] = "OptionalChain"; NodeFlags[NodeFlags["ExportContext"] = 64] = "ExportContext"; NodeFlags[NodeFlags["ContainsThis"] = 128] = "ContainsThis"; NodeFlags[NodeFlags["HasImplicitReturn"] = 256] = "HasImplicitReturn"; NodeFlags[NodeFlags["HasExplicitReturn"] = 512] = "HasExplicitReturn"; NodeFlags[NodeFlags["GlobalAugmentation"] = 1024] = "GlobalAugmentation"; NodeFlags[NodeFlags["HasAsyncFunctions"] = 2048] = "HasAsyncFunctions"; NodeFlags[NodeFlags["DisallowInContext"] = 4096] = "DisallowInContext"; NodeFlags[NodeFlags["YieldContext"] = 8192] = "YieldContext"; NodeFlags[NodeFlags["DecoratorContext"] = 16384] = "DecoratorContext"; NodeFlags[NodeFlags["AwaitContext"] = 32768] = "AwaitContext"; NodeFlags[NodeFlags["DisallowConditionalTypesContext"] = 65536] = "DisallowConditionalTypesContext"; NodeFlags[NodeFlags["ThisNodeHasError"] = 131072] = "ThisNodeHasError"; NodeFlags[NodeFlags["JavaScriptFile"] = 262144] = "JavaScriptFile"; NodeFlags[NodeFlags["ThisNodeOrAnySubNodesHasError"] = 524288] = "ThisNodeOrAnySubNodesHasError"; NodeFlags[NodeFlags["HasAggregatedChildData"] = 1048576] = "HasAggregatedChildData"; // These flags will be set when the parser encounters a dynamic import expression or 'import.meta' to avoid // walking the tree if the flags are not set. However, these flags are just a approximation // (hence why it's named "PossiblyContainsDynamicImport") because once set, the flags never get cleared. // During editing, if a dynamic import is removed, incremental parsing will *NOT* clear this flag. // This means that the tree will always be traversed during module resolution, or when looking for external module indicators. // However, the removal operation should not occur often and in the case of the // removal, it is likely that users will add the import anyway. // The advantage of this approach is its simplicity. For the case of batch compilation, // we guarantee that users won't have to pay the price of walking the tree if a dynamic import isn't used. /* @internal */ NodeFlags[NodeFlags["PossiblyContainsDynamicImport"] = 2097152] = "PossiblyContainsDynamicImport"; /* @internal */ NodeFlags[NodeFlags["PossiblyContainsImportMeta"] = 4194304] = "PossiblyContainsImportMeta"; NodeFlags[NodeFlags["JSDoc"] = 8388608] = "JSDoc"; /* @internal */ NodeFlags[NodeFlags["Ambient"] = 16777216] = "Ambient"; /* @internal */ NodeFlags[NodeFlags["InWithStatement"] = 33554432] = "InWithStatement"; NodeFlags[NodeFlags["JsonFile"] = 67108864] = "JsonFile"; /* @internal */ NodeFlags[NodeFlags["TypeCached"] = 134217728] = "TypeCached"; /* @internal */ NodeFlags[NodeFlags["Deprecated"] = 268435456] = "Deprecated"; NodeFlags[NodeFlags["BlockScoped"] = 3] = "BlockScoped"; NodeFlags[NodeFlags["ReachabilityCheckFlags"] = 768] = "ReachabilityCheckFlags"; NodeFlags[NodeFlags["ReachabilityAndEmitFlags"] = 2816] = "ReachabilityAndEmitFlags"; // Parsing context flags NodeFlags[NodeFlags["ContextFlags"] = 50720768] = "ContextFlags"; // Exclude these flags when parsing a Type NodeFlags[NodeFlags["TypeExcludesFlags"] = 40960] = "TypeExcludesFlags"; // Represents all flags that are potentially set once and // never cleared on SourceFiles which get re-used in between incremental parses. // See the comment above on `PossiblyContainsDynamicImport` and `PossiblyContainsImportMeta`. /* @internal */ NodeFlags[NodeFlags["PermanentlySetIncrementalFlags"] = 6291456] = "PermanentlySetIncrementalFlags"; })(NodeFlags = ts.NodeFlags || (ts.NodeFlags = {})); var ModifierFlags; (function (ModifierFlags) { ModifierFlags[ModifierFlags["None"] = 0] = "None"; ModifierFlags[ModifierFlags["Export"] = 1] = "Export"; ModifierFlags[ModifierFlags["Ambient"] = 2] = "Ambient"; ModifierFlags[ModifierFlags["Public"] = 4] = "Public"; ModifierFlags[ModifierFlags["Private"] = 8] = "Private"; ModifierFlags[ModifierFlags["Protected"] = 16] = "Protected"; ModifierFlags[ModifierFlags["Static"] = 32] = "Static"; ModifierFlags[ModifierFlags["Readonly"] = 64] = "Readonly"; ModifierFlags[ModifierFlags["Abstract"] = 128] = "Abstract"; ModifierFlags[ModifierFlags["Async"] = 256] = "Async"; ModifierFlags[ModifierFlags["Default"] = 512] = "Default"; ModifierFlags[ModifierFlags["Const"] = 2048] = "Const"; ModifierFlags[ModifierFlags["HasComputedJSDocModifiers"] = 4096] = "HasComputedJSDocModifiers"; ModifierFlags[ModifierFlags["Deprecated"] = 8192] = "Deprecated"; ModifierFlags[ModifierFlags["Override"] = 16384] = "Override"; ModifierFlags[ModifierFlags["In"] = 32768] = "In"; ModifierFlags[ModifierFlags["Out"] = 65536] = "Out"; ModifierFlags[ModifierFlags["HasComputedFlags"] = 536870912] = "HasComputedFlags"; ModifierFlags[ModifierFlags["AccessibilityModifier"] = 28] = "AccessibilityModifier"; // Accessibility modifiers and 'readonly' can be attached to a parameter in a constructor to make it a property. ModifierFlags[ModifierFlags["ParameterPropertyModifier"] = 16476] = "ParameterPropertyModifier"; ModifierFlags[ModifierFlags["NonPublicAccessibilityModifier"] = 24] = "NonPublicAccessibilityModifier"; ModifierFlags[ModifierFlags["TypeScriptModifier"] = 116958] = "TypeScriptModifier"; ModifierFlags[ModifierFlags["ExportDefault"] = 513] = "ExportDefault"; ModifierFlags[ModifierFlags["All"] = 125951] = "All"; })(ModifierFlags = ts.ModifierFlags || (ts.ModifierFlags = {})); var JsxFlags; (function (JsxFlags) { JsxFlags[JsxFlags["None"] = 0] = "None"; /** An element from a named property of the JSX.IntrinsicElements interface */ JsxFlags[JsxFlags["IntrinsicNamedElement"] = 1] = "IntrinsicNamedElement"; /** An element inferred from the string index signature of the JSX.IntrinsicElements interface */ JsxFlags[JsxFlags["IntrinsicIndexedElement"] = 2] = "IntrinsicIndexedElement"; JsxFlags[JsxFlags["IntrinsicElement"] = 3] = "IntrinsicElement"; })(JsxFlags = ts.JsxFlags || (ts.JsxFlags = {})); /* @internal */ var RelationComparisonResult; (function (RelationComparisonResult) { RelationComparisonResult[RelationComparisonResult["Succeeded"] = 1] = "Succeeded"; RelationComparisonResult[RelationComparisonResult["Failed"] = 2] = "Failed"; RelationComparisonResult[RelationComparisonResult["Reported"] = 4] = "Reported"; RelationComparisonResult[RelationComparisonResult["ReportsUnmeasurable"] = 8] = "ReportsUnmeasurable"; RelationComparisonResult[RelationComparisonResult["ReportsUnreliable"] = 16] = "ReportsUnreliable"; RelationComparisonResult[RelationComparisonResult["ReportsMask"] = 24] = "ReportsMask"; })(RelationComparisonResult = ts.RelationComparisonResult || (ts.RelationComparisonResult = {})); var GeneratedIdentifierFlags; (function (GeneratedIdentifierFlags) { // Kinds GeneratedIdentifierFlags[GeneratedIdentifierFlags["None"] = 0] = "None"; /*@internal*/ GeneratedIdentifierFlags[GeneratedIdentifierFlags["Auto"] = 1] = "Auto"; /*@internal*/ GeneratedIdentifierFlags[GeneratedIdentifierFlags["Loop"] = 2] = "Loop"; /*@internal*/ GeneratedIdentifierFlags[GeneratedIdentifierFlags["Unique"] = 3] = "Unique"; /*@internal*/ GeneratedIdentifierFlags[GeneratedIdentifierFlags["Node"] = 4] = "Node"; /*@internal*/ GeneratedIdentifierFlags[GeneratedIdentifierFlags["KindMask"] = 7] = "KindMask"; // Flags GeneratedIdentifierFlags[GeneratedIdentifierFlags["ReservedInNestedScopes"] = 8] = "ReservedInNestedScopes"; GeneratedIdentifierFlags[GeneratedIdentifierFlags["Optimistic"] = 16] = "Optimistic"; GeneratedIdentifierFlags[GeneratedIdentifierFlags["FileLevel"] = 32] = "FileLevel"; GeneratedIdentifierFlags[GeneratedIdentifierFlags["AllowNameSubstitution"] = 64] = "AllowNameSubstitution"; })(GeneratedIdentifierFlags = ts.GeneratedIdentifierFlags || (ts.GeneratedIdentifierFlags = {})); var TokenFlags; (function (TokenFlags) { TokenFlags[TokenFlags["None"] = 0] = "None"; /* @internal */ TokenFlags[TokenFlags["PrecedingLineBreak"] = 1] = "PrecedingLineBreak"; /* @internal */ TokenFlags[TokenFlags["PrecedingJSDocComment"] = 2] = "PrecedingJSDocComment"; /* @internal */ TokenFlags[TokenFlags["Unterminated"] = 4] = "Unterminated"; /* @internal */ TokenFlags[TokenFlags["ExtendedUnicodeEscape"] = 8] = "ExtendedUnicodeEscape"; TokenFlags[TokenFlags["Scientific"] = 16] = "Scientific"; TokenFlags[TokenFlags["Octal"] = 32] = "Octal"; TokenFlags[TokenFlags["HexSpecifier"] = 64] = "HexSpecifier"; TokenFlags[TokenFlags["BinarySpecifier"] = 128] = "BinarySpecifier"; TokenFlags[TokenFlags["OctalSpecifier"] = 256] = "OctalSpecifier"; /* @internal */ TokenFlags[TokenFlags["ContainsSeparator"] = 512] = "ContainsSeparator"; /* @internal */ TokenFlags[TokenFlags["UnicodeEscape"] = 1024] = "UnicodeEscape"; /* @internal */ TokenFlags[TokenFlags["ContainsInvalidEscape"] = 2048] = "ContainsInvalidEscape"; /* @internal */ TokenFlags[TokenFlags["BinaryOrOctalSpecifier"] = 384] = "BinaryOrOctalSpecifier"; /* @internal */ TokenFlags[TokenFlags["NumericLiteralFlags"] = 1008] = "NumericLiteralFlags"; /* @internal */ TokenFlags[TokenFlags["TemplateLiteralLikeFlags"] = 2048] = "TemplateLiteralLikeFlags"; })(TokenFlags = ts.TokenFlags || (ts.TokenFlags = {})); // NOTE: Ensure this is up-to-date with src/debug/debug.ts var FlowFlags; (function (FlowFlags) { FlowFlags[FlowFlags["Unreachable"] = 1] = "Unreachable"; FlowFlags[FlowFlags["Start"] = 2] = "Start"; FlowFlags[FlowFlags["BranchLabel"] = 4] = "BranchLabel"; FlowFlags[FlowFlags["LoopLabel"] = 8] = "LoopLabel"; FlowFlags[FlowFlags["Assignment"] = 16] = "Assignment"; FlowFlags[FlowFlags["TrueCondition"] = 32] = "TrueCondition"; FlowFlags[FlowFlags["FalseCondition"] = 64] = "FalseCondition"; FlowFlags[FlowFlags["SwitchClause"] = 128] = "SwitchClause"; FlowFlags[FlowFlags["ArrayMutation"] = 256] = "ArrayMutation"; FlowFlags[FlowFlags["Call"] = 512] = "Call"; FlowFlags[FlowFlags["ReduceLabel"] = 1024] = "ReduceLabel"; FlowFlags[FlowFlags["Referenced"] = 2048] = "Referenced"; FlowFlags[FlowFlags["Shared"] = 4096] = "Shared"; FlowFlags[FlowFlags["Label"] = 12] = "Label"; FlowFlags[FlowFlags["Condition"] = 96] = "Condition"; })(FlowFlags = ts.FlowFlags || (ts.FlowFlags = {})); /* @internal */ var CommentDirectiveType; (function (CommentDirectiveType) { CommentDirectiveType[CommentDirectiveType["ExpectError"] = 0] = "ExpectError"; CommentDirectiveType[CommentDirectiveType["Ignore"] = 1] = "Ignore"; })(CommentDirectiveType = ts.CommentDirectiveType || (ts.CommentDirectiveType = {})); var OperationCanceledException = /** @class */ (function () { function OperationCanceledException() { } return OperationCanceledException; }()); ts.OperationCanceledException = OperationCanceledException; /*@internal*/ var FileIncludeKind; (function (FileIncludeKind) { FileIncludeKind[FileIncludeKind["RootFile"] = 0] = "RootFile"; FileIncludeKind[FileIncludeKind["SourceFromProjectReference"] = 1] = "SourceFromProjectReference"; FileIncludeKind[FileIncludeKind["OutputFromProjectReference"] = 2] = "OutputFromProjectReference"; FileIncludeKind[FileIncludeKind["Import"] = 3] = "Import"; FileIncludeKind[FileIncludeKind["ReferenceFile"] = 4] = "ReferenceFile"; FileIncludeKind[FileIncludeKind["TypeReferenceDirective"] = 5] = "TypeReferenceDirective"; FileIncludeKind[FileIncludeKind["LibFile"] = 6] = "LibFile"; FileIncludeKind[FileIncludeKind["LibReferenceDirective"] = 7] = "LibReferenceDirective"; FileIncludeKind[FileIncludeKind["AutomaticTypeDirectiveFile"] = 8] = "AutomaticTypeDirectiveFile"; })(FileIncludeKind = ts.FileIncludeKind || (ts.FileIncludeKind = {})); /*@internal*/ var FilePreprocessingDiagnosticsKind; (function (FilePreprocessingDiagnosticsKind) { FilePreprocessingDiagnosticsKind[FilePreprocessingDiagnosticsKind["FilePreprocessingReferencedDiagnostic"] = 0] = "FilePreprocessingReferencedDiagnostic"; FilePreprocessingDiagnosticsKind[FilePreprocessingDiagnosticsKind["FilePreprocessingFileExplainingDiagnostic"] = 1] = "FilePreprocessingFileExplainingDiagnostic"; })(FilePreprocessingDiagnosticsKind = ts.FilePreprocessingDiagnosticsKind || (ts.FilePreprocessingDiagnosticsKind = {})); /* @internal */ var StructureIsReused; (function (StructureIsReused) { StructureIsReused[StructureIsReused["Not"] = 0] = "Not"; StructureIsReused[StructureIsReused["SafeModules"] = 1] = "SafeModules"; StructureIsReused[StructureIsReused["Completely"] = 2] = "Completely"; })(StructureIsReused = ts.StructureIsReused || (ts.StructureIsReused = {})); /** Return code used by getEmitOutput function to indicate status of the function */ var ExitStatus; (function (ExitStatus) { // Compiler ran successfully. Either this was a simple do-nothing compilation (for example, // when -version or -help was provided, or this was a normal compilation, no diagnostics // were produced, and all outputs were generated successfully. ExitStatus[ExitStatus["Success"] = 0] = "Success"; // Diagnostics were produced and because of them no code was generated. ExitStatus[ExitStatus["DiagnosticsPresent_OutputsSkipped"] = 1] = "DiagnosticsPresent_OutputsSkipped"; // Diagnostics were produced and outputs were generated in spite of them. ExitStatus[ExitStatus["DiagnosticsPresent_OutputsGenerated"] = 2] = "DiagnosticsPresent_OutputsGenerated"; // When build skipped because passed in project is invalid ExitStatus[ExitStatus["InvalidProject_OutputsSkipped"] = 3] = "InvalidProject_OutputsSkipped"; // When build is skipped because project references form cycle ExitStatus[ExitStatus["ProjectReferenceCycle_OutputsSkipped"] = 4] = "ProjectReferenceCycle_OutputsSkipped"; /** @deprecated Use ProjectReferenceCycle_OutputsSkipped instead. */ ExitStatus[ExitStatus["ProjectReferenceCycle_OutputsSkupped"] = 4] = "ProjectReferenceCycle_OutputsSkupped"; })(ExitStatus = ts.ExitStatus || (ts.ExitStatus = {})); /* @internal */ var MemberOverrideStatus; (function (MemberOverrideStatus) { MemberOverrideStatus[MemberOverrideStatus["Ok"] = 0] = "Ok"; MemberOverrideStatus[MemberOverrideStatus["NeedsOverride"] = 1] = "NeedsOverride"; MemberOverrideStatus[MemberOverrideStatus["HasInvalidOverride"] = 2] = "HasInvalidOverride"; })(MemberOverrideStatus = ts.MemberOverrideStatus || (ts.MemberOverrideStatus = {})); /* @internal */ var UnionReduction; (function (UnionReduction) { UnionReduction[UnionReduction["None"] = 0] = "None"; UnionReduction[UnionReduction["Literal"] = 1] = "Literal"; UnionReduction[UnionReduction["Subtype"] = 2] = "Subtype"; })(UnionReduction = ts.UnionReduction || (ts.UnionReduction = {})); /* @internal */ var ContextFlags; (function (ContextFlags) { ContextFlags[ContextFlags["None"] = 0] = "None"; ContextFlags[ContextFlags["Signature"] = 1] = "Signature"; ContextFlags[ContextFlags["NoConstraints"] = 2] = "NoConstraints"; ContextFlags[ContextFlags["Completions"] = 4] = "Completions"; ContextFlags[ContextFlags["SkipBindingPatterns"] = 8] = "SkipBindingPatterns"; })(ContextFlags = ts.ContextFlags || (ts.ContextFlags = {})); // NOTE: If modifying this enum, must modify `TypeFormatFlags` too! var NodeBuilderFlags; (function (NodeBuilderFlags) { NodeBuilderFlags[NodeBuilderFlags["None"] = 0] = "None"; // Options NodeBuilderFlags[NodeBuilderFlags["NoTruncation"] = 1] = "NoTruncation"; NodeBuilderFlags[NodeBuilderFlags["WriteArrayAsGenericType"] = 2] = "WriteArrayAsGenericType"; NodeBuilderFlags[NodeBuilderFlags["GenerateNamesForShadowedTypeParams"] = 4] = "GenerateNamesForShadowedTypeParams"; NodeBuilderFlags[NodeBuilderFlags["UseStructuralFallback"] = 8] = "UseStructuralFallback"; NodeBuilderFlags[NodeBuilderFlags["ForbidIndexedAccessSymbolReferences"] = 16] = "ForbidIndexedAccessSymbolReferences"; NodeBuilderFlags[NodeBuilderFlags["WriteTypeArgumentsOfSignature"] = 32] = "WriteTypeArgumentsOfSignature"; NodeBuilderFlags[NodeBuilderFlags["UseFullyQualifiedType"] = 64] = "UseFullyQualifiedType"; NodeBuilderFlags[NodeBuilderFlags["UseOnlyExternalAliasing"] = 128] = "UseOnlyExternalAliasing"; NodeBuilderFlags[NodeBuilderFlags["SuppressAnyReturnType"] = 256] = "SuppressAnyReturnType"; NodeBuilderFlags[NodeBuilderFlags["WriteTypeParametersInQualifiedName"] = 512] = "WriteTypeParametersInQualifiedName"; NodeBuilderFlags[NodeBuilderFlags["MultilineObjectLiterals"] = 1024] = "MultilineObjectLiterals"; NodeBuilderFlags[NodeBuilderFlags["WriteClassExpressionAsTypeLiteral"] = 2048] = "WriteClassExpressionAsTypeLiteral"; NodeBuilderFlags[NodeBuilderFlags["UseTypeOfFunction"] = 4096] = "UseTypeOfFunction"; NodeBuilderFlags[NodeBuilderFlags["OmitParameterModifiers"] = 8192] = "OmitParameterModifiers"; NodeBuilderFlags[NodeBuilderFlags["UseAliasDefinedOutsideCurrentScope"] = 16384] = "UseAliasDefinedOutsideCurrentScope"; NodeBuilderFlags[NodeBuilderFlags["UseSingleQuotesForStringLiteralType"] = 268435456] = "UseSingleQuotesForStringLiteralType"; NodeBuilderFlags[NodeBuilderFlags["NoTypeReduction"] = 536870912] = "NoTypeReduction"; // Error handling NodeBuilderFlags[NodeBuilderFlags["AllowThisInObjectLiteral"] = 32768] = "AllowThisInObjectLiteral"; NodeBuilderFlags[NodeBuilderFlags["AllowQualifiedNameInPlaceOfIdentifier"] = 65536] = "AllowQualifiedNameInPlaceOfIdentifier"; /** @deprecated AllowQualifedNameInPlaceOfIdentifier. Use AllowQualifiedNameInPlaceOfIdentifier instead. */ NodeBuilderFlags[NodeBuilderFlags["AllowQualifedNameInPlaceOfIdentifier"] = 65536] = "AllowQualifedNameInPlaceOfIdentifier"; NodeBuilderFlags[NodeBuilderFlags["AllowAnonymousIdentifier"] = 131072] = "AllowAnonymousIdentifier"; NodeBuilderFlags[NodeBuilderFlags["AllowEmptyUnionOrIntersection"] = 262144] = "AllowEmptyUnionOrIntersection"; NodeBuilderFlags[NodeBuilderFlags["AllowEmptyTuple"] = 524288] = "AllowEmptyTuple"; NodeBuilderFlags[NodeBuilderFlags["AllowUniqueESSymbolType"] = 1048576] = "AllowUniqueESSymbolType"; NodeBuilderFlags[NodeBuilderFlags["AllowEmptyIndexInfoType"] = 2097152] = "AllowEmptyIndexInfoType"; // Errors (cont.) NodeBuilderFlags[NodeBuilderFlags["AllowNodeModulesRelativePaths"] = 67108864] = "AllowNodeModulesRelativePaths"; /* @internal */ NodeBuilderFlags[NodeBuilderFlags["DoNotIncludeSymbolChain"] = 134217728] = "DoNotIncludeSymbolChain"; NodeBuilderFlags[NodeBuilderFlags["IgnoreErrors"] = 70221824] = "IgnoreErrors"; // State NodeBuilderFlags[NodeBuilderFlags["InObjectTypeLiteral"] = 4194304] = "InObjectTypeLiteral"; NodeBuilderFlags[NodeBuilderFlags["InTypeAlias"] = 8388608] = "InTypeAlias"; NodeBuilderFlags[NodeBuilderFlags["InInitialEntityName"] = 16777216] = "InInitialEntityName"; })(NodeBuilderFlags = ts.NodeBuilderFlags || (ts.NodeBuilderFlags = {})); // Ensure the shared flags between this and `NodeBuilderFlags` stay in alignment var TypeFormatFlags; (function (TypeFormatFlags) { TypeFormatFlags[TypeFormatFlags["None"] = 0] = "None"; TypeFormatFlags[TypeFormatFlags["NoTruncation"] = 1] = "NoTruncation"; TypeFormatFlags[TypeFormatFlags["WriteArrayAsGenericType"] = 2] = "WriteArrayAsGenericType"; // hole because there's a hole in node builder flags TypeFormatFlags[TypeFormatFlags["UseStructuralFallback"] = 8] = "UseStructuralFallback"; // hole because there's a hole in node builder flags TypeFormatFlags[TypeFormatFlags["WriteTypeArgumentsOfSignature"] = 32] = "WriteTypeArgumentsOfSignature"; TypeFormatFlags[TypeFormatFlags["UseFullyQualifiedType"] = 64] = "UseFullyQualifiedType"; // hole because `UseOnlyExternalAliasing` is here in node builder flags, but functions which take old flags use `SymbolFormatFlags` instead TypeFormatFlags[TypeFormatFlags["SuppressAnyReturnType"] = 256] = "SuppressAnyReturnType"; // hole because `WriteTypeParametersInQualifiedName` is here in node builder flags, but functions which take old flags use `SymbolFormatFlags` for this instead TypeFormatFlags[TypeFormatFlags["MultilineObjectLiterals"] = 1024] = "MultilineObjectLiterals"; TypeFormatFlags[TypeFormatFlags["WriteClassExpressionAsTypeLiteral"] = 2048] = "WriteClassExpressionAsTypeLiteral"; TypeFormatFlags[TypeFormatFlags["UseTypeOfFunction"] = 4096] = "UseTypeOfFunction"; TypeFormatFlags[TypeFormatFlags["OmitParameterModifiers"] = 8192] = "OmitParameterModifiers"; TypeFormatFlags[TypeFormatFlags["UseAliasDefinedOutsideCurrentScope"] = 16384] = "UseAliasDefinedOutsideCurrentScope"; TypeFormatFlags[TypeFormatFlags["UseSingleQuotesForStringLiteralType"] = 268435456] = "UseSingleQuotesForStringLiteralType"; TypeFormatFlags[TypeFormatFlags["NoTypeReduction"] = 536870912] = "NoTypeReduction"; // Error Handling TypeFormatFlags[TypeFormatFlags["AllowUniqueESSymbolType"] = 1048576] = "AllowUniqueESSymbolType"; // TypeFormatFlags exclusive TypeFormatFlags[TypeFormatFlags["AddUndefined"] = 131072] = "AddUndefined"; TypeFormatFlags[TypeFormatFlags["WriteArrowStyleSignature"] = 262144] = "WriteArrowStyleSignature"; // State TypeFormatFlags[TypeFormatFlags["InArrayType"] = 524288] = "InArrayType"; TypeFormatFlags[TypeFormatFlags["InElementType"] = 2097152] = "InElementType"; TypeFormatFlags[TypeFormatFlags["InFirstTypeArgument"] = 4194304] = "InFirstTypeArgument"; TypeFormatFlags[TypeFormatFlags["InTypeAlias"] = 8388608] = "InTypeAlias"; /** @deprecated */ TypeFormatFlags[TypeFormatFlags["WriteOwnNameForAnyLike"] = 0] = "WriteOwnNameForAnyLike"; TypeFormatFlags[TypeFormatFlags["NodeBuilderFlagsMask"] = 814775659] = "NodeBuilderFlagsMask"; })(TypeFormatFlags = ts.TypeFormatFlags || (ts.TypeFormatFlags = {})); var SymbolFormatFlags; (function (SymbolFormatFlags) { SymbolFormatFlags[SymbolFormatFlags["None"] = 0] = "None"; // Write symbols's type argument if it is instantiated symbol // eg. class C { p: T } <-- Show p as C.p here // var a: C; // var p = a.p; <--- Here p is property of C so show it as C.p instead of just C.p SymbolFormatFlags[SymbolFormatFlags["WriteTypeParametersOrArguments"] = 1] = "WriteTypeParametersOrArguments"; // Use only external alias information to get the symbol name in the given context // eg. module m { export class c { } } import x = m.c; // When this flag is specified m.c will be used to refer to the class instead of alias symbol x SymbolFormatFlags[SymbolFormatFlags["UseOnlyExternalAliasing"] = 2] = "UseOnlyExternalAliasing"; // Build symbol name using any nodes needed, instead of just components of an entity name SymbolFormatFlags[SymbolFormatFlags["AllowAnyNodeKind"] = 4] = "AllowAnyNodeKind"; // Prefer aliases which are not directly visible SymbolFormatFlags[SymbolFormatFlags["UseAliasDefinedOutsideCurrentScope"] = 8] = "UseAliasDefinedOutsideCurrentScope"; // Skip building an accessible symbol chain /* @internal */ SymbolFormatFlags[SymbolFormatFlags["DoNotIncludeSymbolChain"] = 16] = "DoNotIncludeSymbolChain"; })(SymbolFormatFlags = ts.SymbolFormatFlags || (ts.SymbolFormatFlags = {})); /* @internal */ var SymbolAccessibility; (function (SymbolAccessibility) { SymbolAccessibility[SymbolAccessibility["Accessible"] = 0] = "Accessible"; SymbolAccessibility[SymbolAccessibility["NotAccessible"] = 1] = "NotAccessible"; SymbolAccessibility[SymbolAccessibility["CannotBeNamed"] = 2] = "CannotBeNamed"; })(SymbolAccessibility = ts.SymbolAccessibility || (ts.SymbolAccessibility = {})); /* @internal */ var SyntheticSymbolKind; (function (SyntheticSymbolKind) { SyntheticSymbolKind[SyntheticSymbolKind["UnionOrIntersection"] = 0] = "UnionOrIntersection"; SyntheticSymbolKind[SyntheticSymbolKind["Spread"] = 1] = "Spread"; })(SyntheticSymbolKind = ts.SyntheticSymbolKind || (ts.SyntheticSymbolKind = {})); var TypePredicateKind; (function (TypePredicateKind) { TypePredicateKind[TypePredicateKind["This"] = 0] = "This"; TypePredicateKind[TypePredicateKind["Identifier"] = 1] = "Identifier"; TypePredicateKind[TypePredicateKind["AssertsThis"] = 2] = "AssertsThis"; TypePredicateKind[TypePredicateKind["AssertsIdentifier"] = 3] = "AssertsIdentifier"; })(TypePredicateKind = ts.TypePredicateKind || (ts.TypePredicateKind = {})); /** Indicates how to serialize the name for a TypeReferenceNode when emitting decorator metadata */ /* @internal */ var TypeReferenceSerializationKind; (function (TypeReferenceSerializationKind) { // The TypeReferenceNode could not be resolved. // The type name should be emitted using a safe fallback. TypeReferenceSerializationKind[TypeReferenceSerializationKind["Unknown"] = 0] = "Unknown"; // The TypeReferenceNode resolves to a type with a constructor // function that can be reached at runtime (e.g. a `class` // declaration or a `var` declaration for the static side // of a type, such as the global `Promise` type in lib.d.ts). TypeReferenceSerializationKind[TypeReferenceSerializationKind["TypeWithConstructSignatureAndValue"] = 1] = "TypeWithConstructSignatureAndValue"; // The TypeReferenceNode resolves to a Void-like, Nullable, or Never type. TypeReferenceSerializationKind[TypeReferenceSerializationKind["VoidNullableOrNeverType"] = 2] = "VoidNullableOrNeverType"; // The TypeReferenceNode resolves to a Number-like type. TypeReferenceSerializationKind[TypeReferenceSerializationKind["NumberLikeType"] = 3] = "NumberLikeType"; // The TypeReferenceNode resolves to a BigInt-like type. TypeReferenceSerializationKind[TypeReferenceSerializationKind["BigIntLikeType"] = 4] = "BigIntLikeType"; // The TypeReferenceNode resolves to a String-like type. TypeReferenceSerializationKind[TypeReferenceSerializationKind["StringLikeType"] = 5] = "StringLikeType"; // The TypeReferenceNode resolves to a Boolean-like type. TypeReferenceSerializationKind[TypeReferenceSerializationKind["BooleanType"] = 6] = "BooleanType"; // The TypeReferenceNode resolves to an Array-like type. TypeReferenceSerializationKind[TypeReferenceSerializationKind["ArrayLikeType"] = 7] = "ArrayLikeType"; // The TypeReferenceNode resolves to the ESSymbol type. TypeReferenceSerializationKind[TypeReferenceSerializationKind["ESSymbolType"] = 8] = "ESSymbolType"; // The TypeReferenceNode resolved to the global Promise constructor symbol. TypeReferenceSerializationKind[TypeReferenceSerializationKind["Promise"] = 9] = "Promise"; // The TypeReferenceNode resolves to a Function type or a type with call signatures. TypeReferenceSerializationKind[TypeReferenceSerializationKind["TypeWithCallSignature"] = 10] = "TypeWithCallSignature"; // The TypeReferenceNode resolves to any other type. TypeReferenceSerializationKind[TypeReferenceSerializationKind["ObjectType"] = 11] = "ObjectType"; })(TypeReferenceSerializationKind = ts.TypeReferenceSerializationKind || (ts.TypeReferenceSerializationKind = {})); var SymbolFlags; (function (SymbolFlags) { SymbolFlags[SymbolFlags["None"] = 0] = "None"; SymbolFlags[SymbolFlags["FunctionScopedVariable"] = 1] = "FunctionScopedVariable"; SymbolFlags[SymbolFlags["BlockScopedVariable"] = 2] = "BlockScopedVariable"; SymbolFlags[SymbolFlags["Property"] = 4] = "Property"; SymbolFlags[SymbolFlags["EnumMember"] = 8] = "EnumMember"; SymbolFlags[SymbolFlags["Function"] = 16] = "Function"; SymbolFlags[SymbolFlags["Class"] = 32] = "Class"; SymbolFlags[SymbolFlags["Interface"] = 64] = "Interface"; SymbolFlags[SymbolFlags["ConstEnum"] = 128] = "ConstEnum"; SymbolFlags[SymbolFlags["RegularEnum"] = 256] = "RegularEnum"; SymbolFlags[SymbolFlags["ValueModule"] = 512] = "ValueModule"; SymbolFlags[SymbolFlags["NamespaceModule"] = 1024] = "NamespaceModule"; SymbolFlags[SymbolFlags["TypeLiteral"] = 2048] = "TypeLiteral"; SymbolFlags[SymbolFlags["ObjectLiteral"] = 4096] = "ObjectLiteral"; SymbolFlags[SymbolFlags["Method"] = 8192] = "Method"; SymbolFlags[SymbolFlags["Constructor"] = 16384] = "Constructor"; SymbolFlags[SymbolFlags["GetAccessor"] = 32768] = "GetAccessor"; SymbolFlags[SymbolFlags["SetAccessor"] = 65536] = "SetAccessor"; SymbolFlags[SymbolFlags["Signature"] = 131072] = "Signature"; SymbolFlags[SymbolFlags["TypeParameter"] = 262144] = "TypeParameter"; SymbolFlags[SymbolFlags["TypeAlias"] = 524288] = "TypeAlias"; SymbolFlags[SymbolFlags["ExportValue"] = 1048576] = "ExportValue"; SymbolFlags[SymbolFlags["Alias"] = 2097152] = "Alias"; SymbolFlags[SymbolFlags["Prototype"] = 4194304] = "Prototype"; SymbolFlags[SymbolFlags["ExportStar"] = 8388608] = "ExportStar"; SymbolFlags[SymbolFlags["Optional"] = 16777216] = "Optional"; SymbolFlags[SymbolFlags["Transient"] = 33554432] = "Transient"; SymbolFlags[SymbolFlags["Assignment"] = 67108864] = "Assignment"; SymbolFlags[SymbolFlags["ModuleExports"] = 134217728] = "ModuleExports"; /* @internal */ SymbolFlags[SymbolFlags["All"] = 67108863] = "All"; SymbolFlags[SymbolFlags["Enum"] = 384] = "Enum"; SymbolFlags[SymbolFlags["Variable"] = 3] = "Variable"; SymbolFlags[SymbolFlags["Value"] = 111551] = "Value"; SymbolFlags[SymbolFlags["Type"] = 788968] = "Type"; SymbolFlags[SymbolFlags["Namespace"] = 1920] = "Namespace"; SymbolFlags[SymbolFlags["Module"] = 1536] = "Module"; SymbolFlags[SymbolFlags["Accessor"] = 98304] = "Accessor"; // Variables can be redeclared, but can not redeclare a block-scoped declaration with the // same name, or any other value that is not a variable, e.g. ValueModule or Class SymbolFlags[SymbolFlags["FunctionScopedVariableExcludes"] = 111550] = "FunctionScopedVariableExcludes"; // Block-scoped declarations are not allowed to be re-declared // they can not merge with anything in the value space SymbolFlags[SymbolFlags["BlockScopedVariableExcludes"] = 111551] = "BlockScopedVariableExcludes"; SymbolFlags[SymbolFlags["ParameterExcludes"] = 111551] = "ParameterExcludes"; SymbolFlags[SymbolFlags["PropertyExcludes"] = 0] = "PropertyExcludes"; SymbolFlags[SymbolFlags["EnumMemberExcludes"] = 900095] = "EnumMemberExcludes"; SymbolFlags[SymbolFlags["FunctionExcludes"] = 110991] = "FunctionExcludes"; SymbolFlags[SymbolFlags["ClassExcludes"] = 899503] = "ClassExcludes"; SymbolFlags[SymbolFlags["InterfaceExcludes"] = 788872] = "InterfaceExcludes"; SymbolFlags[SymbolFlags["RegularEnumExcludes"] = 899327] = "RegularEnumExcludes"; SymbolFlags[SymbolFlags["ConstEnumExcludes"] = 899967] = "ConstEnumExcludes"; SymbolFlags[SymbolFlags["ValueModuleExcludes"] = 110735] = "ValueModuleExcludes"; SymbolFlags[SymbolFlags["NamespaceModuleExcludes"] = 0] = "NamespaceModuleExcludes"; SymbolFlags[SymbolFlags["MethodExcludes"] = 103359] = "MethodExcludes"; SymbolFlags[SymbolFlags["GetAccessorExcludes"] = 46015] = "GetAccessorExcludes"; SymbolFlags[SymbolFlags["SetAccessorExcludes"] = 78783] = "SetAccessorExcludes"; SymbolFlags[SymbolFlags["TypeParameterExcludes"] = 526824] = "TypeParameterExcludes"; SymbolFlags[SymbolFlags["TypeAliasExcludes"] = 788968] = "TypeAliasExcludes"; SymbolFlags[SymbolFlags["AliasExcludes"] = 2097152] = "AliasExcludes"; SymbolFlags[SymbolFlags["ModuleMember"] = 2623475] = "ModuleMember"; SymbolFlags[SymbolFlags["ExportHasLocal"] = 944] = "ExportHasLocal"; SymbolFlags[SymbolFlags["BlockScoped"] = 418] = "BlockScoped"; SymbolFlags[SymbolFlags["PropertyOrAccessor"] = 98308] = "PropertyOrAccessor"; SymbolFlags[SymbolFlags["ClassMember"] = 106500] = "ClassMember"; /* @internal */ SymbolFlags[SymbolFlags["ExportSupportsDefaultModifier"] = 112] = "ExportSupportsDefaultModifier"; /* @internal */ SymbolFlags[SymbolFlags["ExportDoesNotSupportDefaultModifier"] = -113] = "ExportDoesNotSupportDefaultModifier"; /* @internal */ // The set of things we consider semantically classifiable. Used to speed up the LS during // classification. SymbolFlags[SymbolFlags["Classifiable"] = 2885600] = "Classifiable"; /* @internal */ SymbolFlags[SymbolFlags["LateBindingContainer"] = 6256] = "LateBindingContainer"; })(SymbolFlags = ts.SymbolFlags || (ts.SymbolFlags = {})); /* @internal */ var EnumKind; (function (EnumKind) { EnumKind[EnumKind["Numeric"] = 0] = "Numeric"; EnumKind[EnumKind["Literal"] = 1] = "Literal"; // Literal enum (each member has a TypeFlags.EnumLiteral type) })(EnumKind = ts.EnumKind || (ts.EnumKind = {})); /* @internal */ var CheckFlags; (function (CheckFlags) { CheckFlags[CheckFlags["Instantiated"] = 1] = "Instantiated"; CheckFlags[CheckFlags["SyntheticProperty"] = 2] = "SyntheticProperty"; CheckFlags[CheckFlags["SyntheticMethod"] = 4] = "SyntheticMethod"; CheckFlags[CheckFlags["Readonly"] = 8] = "Readonly"; CheckFlags[CheckFlags["ReadPartial"] = 16] = "ReadPartial"; CheckFlags[CheckFlags["WritePartial"] = 32] = "WritePartial"; CheckFlags[CheckFlags["HasNonUniformType"] = 64] = "HasNonUniformType"; CheckFlags[CheckFlags["HasLiteralType"] = 128] = "HasLiteralType"; CheckFlags[CheckFlags["ContainsPublic"] = 256] = "ContainsPublic"; CheckFlags[CheckFlags["ContainsProtected"] = 512] = "ContainsProtected"; CheckFlags[CheckFlags["ContainsPrivate"] = 1024] = "ContainsPrivate"; CheckFlags[CheckFlags["ContainsStatic"] = 2048] = "ContainsStatic"; CheckFlags[CheckFlags["Late"] = 4096] = "Late"; CheckFlags[CheckFlags["ReverseMapped"] = 8192] = "ReverseMapped"; CheckFlags[CheckFlags["OptionalParameter"] = 16384] = "OptionalParameter"; CheckFlags[CheckFlags["RestParameter"] = 32768] = "RestParameter"; CheckFlags[CheckFlags["DeferredType"] = 65536] = "DeferredType"; CheckFlags[CheckFlags["HasNeverType"] = 131072] = "HasNeverType"; CheckFlags[CheckFlags["Mapped"] = 262144] = "Mapped"; CheckFlags[CheckFlags["StripOptional"] = 524288] = "StripOptional"; CheckFlags[CheckFlags["Unresolved"] = 1048576] = "Unresolved"; CheckFlags[CheckFlags["Synthetic"] = 6] = "Synthetic"; CheckFlags[CheckFlags["Discriminant"] = 192] = "Discriminant"; CheckFlags[CheckFlags["Partial"] = 48] = "Partial"; })(CheckFlags = ts.CheckFlags || (ts.CheckFlags = {})); var InternalSymbolName; (function (InternalSymbolName) { InternalSymbolName["Call"] = "__call"; InternalSymbolName["Constructor"] = "__constructor"; InternalSymbolName["New"] = "__new"; InternalSymbolName["Index"] = "__index"; InternalSymbolName["ExportStar"] = "__export"; InternalSymbolName["Global"] = "__global"; InternalSymbolName["Missing"] = "__missing"; InternalSymbolName["Type"] = "__type"; InternalSymbolName["Object"] = "__object"; InternalSymbolName["JSXAttributes"] = "__jsxAttributes"; InternalSymbolName["Class"] = "__class"; InternalSymbolName["Function"] = "__function"; InternalSymbolName["Computed"] = "__computed"; InternalSymbolName["Resolving"] = "__resolving__"; InternalSymbolName["ExportEquals"] = "export="; InternalSymbolName["Default"] = "default"; InternalSymbolName["This"] = "this"; })(InternalSymbolName = ts.InternalSymbolName || (ts.InternalSymbolName = {})); /* @internal */ var NodeCheckFlags; (function (NodeCheckFlags) { NodeCheckFlags[NodeCheckFlags["TypeChecked"] = 1] = "TypeChecked"; NodeCheckFlags[NodeCheckFlags["LexicalThis"] = 2] = "LexicalThis"; NodeCheckFlags[NodeCheckFlags["CaptureThis"] = 4] = "CaptureThis"; NodeCheckFlags[NodeCheckFlags["CaptureNewTarget"] = 8] = "CaptureNewTarget"; NodeCheckFlags[NodeCheckFlags["SuperInstance"] = 256] = "SuperInstance"; NodeCheckFlags[NodeCheckFlags["SuperStatic"] = 512] = "SuperStatic"; NodeCheckFlags[NodeCheckFlags["ContextChecked"] = 1024] = "ContextChecked"; NodeCheckFlags[NodeCheckFlags["AsyncMethodWithSuper"] = 2048] = "AsyncMethodWithSuper"; NodeCheckFlags[NodeCheckFlags["AsyncMethodWithSuperBinding"] = 4096] = "AsyncMethodWithSuperBinding"; NodeCheckFlags[NodeCheckFlags["CaptureArguments"] = 8192] = "CaptureArguments"; NodeCheckFlags[NodeCheckFlags["EnumValuesComputed"] = 16384] = "EnumValuesComputed"; NodeCheckFlags[NodeCheckFlags["LexicalModuleMergesWithClass"] = 32768] = "LexicalModuleMergesWithClass"; NodeCheckFlags[NodeCheckFlags["LoopWithCapturedBlockScopedBinding"] = 65536] = "LoopWithCapturedBlockScopedBinding"; NodeCheckFlags[NodeCheckFlags["ContainsCapturedBlockScopeBinding"] = 131072] = "ContainsCapturedBlockScopeBinding"; NodeCheckFlags[NodeCheckFlags["CapturedBlockScopedBinding"] = 262144] = "CapturedBlockScopedBinding"; NodeCheckFlags[NodeCheckFlags["BlockScopedBindingInLoop"] = 524288] = "BlockScopedBindingInLoop"; NodeCheckFlags[NodeCheckFlags["ClassWithBodyScopedClassBinding"] = 1048576] = "ClassWithBodyScopedClassBinding"; NodeCheckFlags[NodeCheckFlags["BodyScopedClassBinding"] = 2097152] = "BodyScopedClassBinding"; NodeCheckFlags[NodeCheckFlags["NeedsLoopOutParameter"] = 4194304] = "NeedsLoopOutParameter"; NodeCheckFlags[NodeCheckFlags["AssignmentsMarked"] = 8388608] = "AssignmentsMarked"; NodeCheckFlags[NodeCheckFlags["ClassWithConstructorReference"] = 16777216] = "ClassWithConstructorReference"; NodeCheckFlags[NodeCheckFlags["ConstructorReferenceInClass"] = 33554432] = "ConstructorReferenceInClass"; NodeCheckFlags[NodeCheckFlags["ContainsClassWithPrivateIdentifiers"] = 67108864] = "ContainsClassWithPrivateIdentifiers"; NodeCheckFlags[NodeCheckFlags["ContainsSuperPropertyInStaticInitializer"] = 134217728] = "ContainsSuperPropertyInStaticInitializer"; NodeCheckFlags[NodeCheckFlags["InCheckIdentifier"] = 268435456] = "InCheckIdentifier"; })(NodeCheckFlags = ts.NodeCheckFlags || (ts.NodeCheckFlags = {})); var TypeFlags; (function (TypeFlags) { TypeFlags[TypeFlags["Any"] = 1] = "Any"; TypeFlags[TypeFlags["Unknown"] = 2] = "Unknown"; TypeFlags[TypeFlags["String"] = 4] = "String"; TypeFlags[TypeFlags["Number"] = 8] = "Number"; TypeFlags[TypeFlags["Boolean"] = 16] = "Boolean"; TypeFlags[TypeFlags["Enum"] = 32] = "Enum"; TypeFlags[TypeFlags["BigInt"] = 64] = "BigInt"; TypeFlags[TypeFlags["StringLiteral"] = 128] = "StringLiteral"; TypeFlags[TypeFlags["NumberLiteral"] = 256] = "NumberLiteral"; TypeFlags[TypeFlags["BooleanLiteral"] = 512] = "BooleanLiteral"; TypeFlags[TypeFlags["EnumLiteral"] = 1024] = "EnumLiteral"; TypeFlags[TypeFlags["BigIntLiteral"] = 2048] = "BigIntLiteral"; TypeFlags[TypeFlags["ESSymbol"] = 4096] = "ESSymbol"; TypeFlags[TypeFlags["UniqueESSymbol"] = 8192] = "UniqueESSymbol"; TypeFlags[TypeFlags["Void"] = 16384] = "Void"; TypeFlags[TypeFlags["Undefined"] = 32768] = "Undefined"; TypeFlags[TypeFlags["Null"] = 65536] = "Null"; TypeFlags[TypeFlags["Never"] = 131072] = "Never"; TypeFlags[TypeFlags["TypeParameter"] = 262144] = "TypeParameter"; TypeFlags[TypeFlags["Object"] = 524288] = "Object"; TypeFlags[TypeFlags["Union"] = 1048576] = "Union"; TypeFlags[TypeFlags["Intersection"] = 2097152] = "Intersection"; TypeFlags[TypeFlags["Index"] = 4194304] = "Index"; TypeFlags[TypeFlags["IndexedAccess"] = 8388608] = "IndexedAccess"; TypeFlags[TypeFlags["Conditional"] = 16777216] = "Conditional"; TypeFlags[TypeFlags["Substitution"] = 33554432] = "Substitution"; TypeFlags[TypeFlags["NonPrimitive"] = 67108864] = "NonPrimitive"; TypeFlags[TypeFlags["TemplateLiteral"] = 134217728] = "TemplateLiteral"; TypeFlags[TypeFlags["StringMapping"] = 268435456] = "StringMapping"; /* @internal */ TypeFlags[TypeFlags["AnyOrUnknown"] = 3] = "AnyOrUnknown"; /* @internal */ TypeFlags[TypeFlags["Nullable"] = 98304] = "Nullable"; TypeFlags[TypeFlags["Literal"] = 2944] = "Literal"; TypeFlags[TypeFlags["Unit"] = 109440] = "Unit"; TypeFlags[TypeFlags["StringOrNumberLiteral"] = 384] = "StringOrNumberLiteral"; /* @internal */ TypeFlags[TypeFlags["StringOrNumberLiteralOrUnique"] = 8576] = "StringOrNumberLiteralOrUnique"; /* @internal */ TypeFlags[TypeFlags["DefinitelyFalsy"] = 117632] = "DefinitelyFalsy"; TypeFlags[TypeFlags["PossiblyFalsy"] = 117724] = "PossiblyFalsy"; /* @internal */ TypeFlags[TypeFlags["Intrinsic"] = 67359327] = "Intrinsic"; /* @internal */ TypeFlags[TypeFlags["Primitive"] = 131068] = "Primitive"; TypeFlags[TypeFlags["StringLike"] = 402653316] = "StringLike"; TypeFlags[TypeFlags["NumberLike"] = 296] = "NumberLike"; TypeFlags[TypeFlags["BigIntLike"] = 2112] = "BigIntLike"; TypeFlags[TypeFlags["BooleanLike"] = 528] = "BooleanLike"; TypeFlags[TypeFlags["EnumLike"] = 1056] = "EnumLike"; TypeFlags[TypeFlags["ESSymbolLike"] = 12288] = "ESSymbolLike"; TypeFlags[TypeFlags["VoidLike"] = 49152] = "VoidLike"; /* @internal */ TypeFlags[TypeFlags["DefinitelyNonNullable"] = 470302716] = "DefinitelyNonNullable"; /* @internal */ TypeFlags[TypeFlags["DisjointDomains"] = 469892092] = "DisjointDomains"; TypeFlags[TypeFlags["UnionOrIntersection"] = 3145728] = "UnionOrIntersection"; TypeFlags[TypeFlags["StructuredType"] = 3670016] = "StructuredType"; TypeFlags[TypeFlags["TypeVariable"] = 8650752] = "TypeVariable"; TypeFlags[TypeFlags["InstantiableNonPrimitive"] = 58982400] = "InstantiableNonPrimitive"; TypeFlags[TypeFlags["InstantiablePrimitive"] = 406847488] = "InstantiablePrimitive"; TypeFlags[TypeFlags["Instantiable"] = 465829888] = "Instantiable"; TypeFlags[TypeFlags["StructuredOrInstantiable"] = 469499904] = "StructuredOrInstantiable"; /* @internal */ TypeFlags[TypeFlags["ObjectFlagsType"] = 3899393] = "ObjectFlagsType"; /* @internal */ TypeFlags[TypeFlags["Simplifiable"] = 25165824] = "Simplifiable"; /* @internal */ TypeFlags[TypeFlags["Singleton"] = 67358815] = "Singleton"; // 'Narrowable' types are types where narrowing actually narrows. // This *should* be every type other than null, undefined, void, and never TypeFlags[TypeFlags["Narrowable"] = 536624127] = "Narrowable"; // The following flags are aggregated during union and intersection type construction /* @internal */ TypeFlags[TypeFlags["IncludesMask"] = 205258751] = "IncludesMask"; // The following flags are used for different purposes during union and intersection type construction /* @internal */ TypeFlags[TypeFlags["IncludesMissingType"] = 262144] = "IncludesMissingType"; /* @internal */ TypeFlags[TypeFlags["IncludesNonWideningType"] = 4194304] = "IncludesNonWideningType"; /* @internal */ TypeFlags[TypeFlags["IncludesWildcard"] = 8388608] = "IncludesWildcard"; /* @internal */ TypeFlags[TypeFlags["IncludesEmptyObject"] = 16777216] = "IncludesEmptyObject"; /* @internal */ TypeFlags[TypeFlags["IncludesInstantiable"] = 33554432] = "IncludesInstantiable"; /* @internal */ TypeFlags[TypeFlags["NotPrimitiveUnion"] = 36323363] = "NotPrimitiveUnion"; })(TypeFlags = ts.TypeFlags || (ts.TypeFlags = {})); // Types included in TypeFlags.ObjectFlagsType have an objectFlags property. Some ObjectFlags // are specific to certain types and reuse the same bit position. Those ObjectFlags require a check // for a certain TypeFlags value to determine their meaning. var ObjectFlags; (function (ObjectFlags) { ObjectFlags[ObjectFlags["Class"] = 1] = "Class"; ObjectFlags[ObjectFlags["Interface"] = 2] = "Interface"; ObjectFlags[ObjectFlags["Reference"] = 4] = "Reference"; ObjectFlags[ObjectFlags["Tuple"] = 8] = "Tuple"; ObjectFlags[ObjectFlags["Anonymous"] = 16] = "Anonymous"; ObjectFlags[ObjectFlags["Mapped"] = 32] = "Mapped"; ObjectFlags[ObjectFlags["Instantiated"] = 64] = "Instantiated"; ObjectFlags[ObjectFlags["ObjectLiteral"] = 128] = "ObjectLiteral"; ObjectFlags[ObjectFlags["EvolvingArray"] = 256] = "EvolvingArray"; ObjectFlags[ObjectFlags["ObjectLiteralPatternWithComputedProperties"] = 512] = "ObjectLiteralPatternWithComputedProperties"; ObjectFlags[ObjectFlags["ReverseMapped"] = 1024] = "ReverseMapped"; ObjectFlags[ObjectFlags["JsxAttributes"] = 2048] = "JsxAttributes"; ObjectFlags[ObjectFlags["JSLiteral"] = 4096] = "JSLiteral"; ObjectFlags[ObjectFlags["FreshLiteral"] = 8192] = "FreshLiteral"; ObjectFlags[ObjectFlags["ArrayLiteral"] = 16384] = "ArrayLiteral"; /* @internal */ ObjectFlags[ObjectFlags["PrimitiveUnion"] = 32768] = "PrimitiveUnion"; /* @internal */ ObjectFlags[ObjectFlags["ContainsWideningType"] = 65536] = "ContainsWideningType"; /* @internal */ ObjectFlags[ObjectFlags["ContainsObjectOrArrayLiteral"] = 131072] = "ContainsObjectOrArrayLiteral"; /* @internal */ ObjectFlags[ObjectFlags["NonInferrableType"] = 262144] = "NonInferrableType"; /* @internal */ ObjectFlags[ObjectFlags["CouldContainTypeVariablesComputed"] = 524288] = "CouldContainTypeVariablesComputed"; /* @internal */ ObjectFlags[ObjectFlags["CouldContainTypeVariables"] = 1048576] = "CouldContainTypeVariables"; ObjectFlags[ObjectFlags["ClassOrInterface"] = 3] = "ClassOrInterface"; /* @internal */ ObjectFlags[ObjectFlags["RequiresWidening"] = 196608] = "RequiresWidening"; /* @internal */ ObjectFlags[ObjectFlags["PropagatingFlags"] = 458752] = "PropagatingFlags"; // Object flags that uniquely identify the kind of ObjectType /* @internal */ ObjectFlags[ObjectFlags["ObjectTypeKindMask"] = 1343] = "ObjectTypeKindMask"; // Flags that require TypeFlags.Object ObjectFlags[ObjectFlags["ContainsSpread"] = 2097152] = "ContainsSpread"; ObjectFlags[ObjectFlags["ObjectRestType"] = 4194304] = "ObjectRestType"; ObjectFlags[ObjectFlags["InstantiationExpressionType"] = 8388608] = "InstantiationExpressionType"; /* @internal */ ObjectFlags[ObjectFlags["IsClassInstanceClone"] = 16777216] = "IsClassInstanceClone"; // Flags that require TypeFlags.Object and ObjectFlags.Reference /* @internal */ ObjectFlags[ObjectFlags["IdenticalBaseTypeCalculated"] = 33554432] = "IdenticalBaseTypeCalculated"; /* @internal */ ObjectFlags[ObjectFlags["IdenticalBaseTypeExists"] = 67108864] = "IdenticalBaseTypeExists"; // Flags that require TypeFlags.UnionOrIntersection or TypeFlags.Substitution /* @internal */ ObjectFlags[ObjectFlags["IsGenericTypeComputed"] = 2097152] = "IsGenericTypeComputed"; /* @internal */ ObjectFlags[ObjectFlags["IsGenericObjectType"] = 4194304] = "IsGenericObjectType"; /* @internal */ ObjectFlags[ObjectFlags["IsGenericIndexType"] = 8388608] = "IsGenericIndexType"; /* @internal */ ObjectFlags[ObjectFlags["IsGenericType"] = 12582912] = "IsGenericType"; // Flags that require TypeFlags.Union /* @internal */ ObjectFlags[ObjectFlags["ContainsIntersections"] = 16777216] = "ContainsIntersections"; // Flags that require TypeFlags.Intersection /* @internal */ ObjectFlags[ObjectFlags["IsNeverIntersectionComputed"] = 16777216] = "IsNeverIntersectionComputed"; /* @internal */ ObjectFlags[ObjectFlags["IsNeverIntersection"] = 33554432] = "IsNeverIntersection"; })(ObjectFlags = ts.ObjectFlags || (ts.ObjectFlags = {})); /* @internal */ var VarianceFlags; (function (VarianceFlags) { VarianceFlags[VarianceFlags["Invariant"] = 0] = "Invariant"; VarianceFlags[VarianceFlags["Covariant"] = 1] = "Covariant"; VarianceFlags[VarianceFlags["Contravariant"] = 2] = "Contravariant"; VarianceFlags[VarianceFlags["Bivariant"] = 3] = "Bivariant"; VarianceFlags[VarianceFlags["Independent"] = 4] = "Independent"; VarianceFlags[VarianceFlags["VarianceMask"] = 7] = "VarianceMask"; VarianceFlags[VarianceFlags["Unmeasurable"] = 8] = "Unmeasurable"; VarianceFlags[VarianceFlags["Unreliable"] = 16] = "Unreliable"; VarianceFlags[VarianceFlags["AllowsStructuralFallback"] = 24] = "AllowsStructuralFallback"; })(VarianceFlags = ts.VarianceFlags || (ts.VarianceFlags = {})); var ElementFlags; (function (ElementFlags) { ElementFlags[ElementFlags["Required"] = 1] = "Required"; ElementFlags[ElementFlags["Optional"] = 2] = "Optional"; ElementFlags[ElementFlags["Rest"] = 4] = "Rest"; ElementFlags[ElementFlags["Variadic"] = 8] = "Variadic"; ElementFlags[ElementFlags["Fixed"] = 3] = "Fixed"; ElementFlags[ElementFlags["Variable"] = 12] = "Variable"; ElementFlags[ElementFlags["NonRequired"] = 14] = "NonRequired"; ElementFlags[ElementFlags["NonRest"] = 11] = "NonRest"; })(ElementFlags = ts.ElementFlags || (ts.ElementFlags = {})); /* @internal */ var AccessFlags; (function (AccessFlags) { AccessFlags[AccessFlags["None"] = 0] = "None"; AccessFlags[AccessFlags["IncludeUndefined"] = 1] = "IncludeUndefined"; AccessFlags[AccessFlags["NoIndexSignatures"] = 2] = "NoIndexSignatures"; AccessFlags[AccessFlags["Writing"] = 4] = "Writing"; AccessFlags[AccessFlags["CacheSymbol"] = 8] = "CacheSymbol"; AccessFlags[AccessFlags["NoTupleBoundsCheck"] = 16] = "NoTupleBoundsCheck"; AccessFlags[AccessFlags["ExpressionPosition"] = 32] = "ExpressionPosition"; AccessFlags[AccessFlags["ReportDeprecated"] = 64] = "ReportDeprecated"; AccessFlags[AccessFlags["SuppressNoImplicitAnyError"] = 128] = "SuppressNoImplicitAnyError"; AccessFlags[AccessFlags["Contextual"] = 256] = "Contextual"; AccessFlags[AccessFlags["Persistent"] = 1] = "Persistent"; })(AccessFlags = ts.AccessFlags || (ts.AccessFlags = {})); /* @internal */ var JsxReferenceKind; (function (JsxReferenceKind) { JsxReferenceKind[JsxReferenceKind["Component"] = 0] = "Component"; JsxReferenceKind[JsxReferenceKind["Function"] = 1] = "Function"; JsxReferenceKind[JsxReferenceKind["Mixed"] = 2] = "Mixed"; })(JsxReferenceKind = ts.JsxReferenceKind || (ts.JsxReferenceKind = {})); var SignatureKind; (function (SignatureKind) { SignatureKind[SignatureKind["Call"] = 0] = "Call"; SignatureKind[SignatureKind["Construct"] = 1] = "Construct"; })(SignatureKind = ts.SignatureKind || (ts.SignatureKind = {})); /* @internal */ var SignatureFlags; (function (SignatureFlags) { SignatureFlags[SignatureFlags["None"] = 0] = "None"; // Propagating flags SignatureFlags[SignatureFlags["HasRestParameter"] = 1] = "HasRestParameter"; SignatureFlags[SignatureFlags["HasLiteralTypes"] = 2] = "HasLiteralTypes"; SignatureFlags[SignatureFlags["Abstract"] = 4] = "Abstract"; // Non-propagating flags SignatureFlags[SignatureFlags["IsInnerCallChain"] = 8] = "IsInnerCallChain"; SignatureFlags[SignatureFlags["IsOuterCallChain"] = 16] = "IsOuterCallChain"; SignatureFlags[SignatureFlags["IsUntypedSignatureInJSFile"] = 32] = "IsUntypedSignatureInJSFile"; // We do not propagate `IsInnerCallChain` or `IsOuterCallChain` to instantiated signatures, as that would result in us // attempting to add `| undefined` on each recursive call to `getReturnTypeOfSignature` when // instantiating the return type. SignatureFlags[SignatureFlags["PropagatingFlags"] = 39] = "PropagatingFlags"; SignatureFlags[SignatureFlags["CallChainFlags"] = 24] = "CallChainFlags"; })(SignatureFlags = ts.SignatureFlags || (ts.SignatureFlags = {})); var IndexKind; (function (IndexKind) { IndexKind[IndexKind["String"] = 0] = "String"; IndexKind[IndexKind["Number"] = 1] = "Number"; })(IndexKind = ts.IndexKind || (ts.IndexKind = {})); /* @internal */ var TypeMapKind; (function (TypeMapKind) { TypeMapKind[TypeMapKind["Simple"] = 0] = "Simple"; TypeMapKind[TypeMapKind["Array"] = 1] = "Array"; TypeMapKind[TypeMapKind["Function"] = 2] = "Function"; TypeMapKind[TypeMapKind["Composite"] = 3] = "Composite"; TypeMapKind[TypeMapKind["Merged"] = 4] = "Merged"; })(TypeMapKind = ts.TypeMapKind || (ts.TypeMapKind = {})); var InferencePriority; (function (InferencePriority) { InferencePriority[InferencePriority["NakedTypeVariable"] = 1] = "NakedTypeVariable"; InferencePriority[InferencePriority["SpeculativeTuple"] = 2] = "SpeculativeTuple"; InferencePriority[InferencePriority["SubstituteSource"] = 4] = "SubstituteSource"; InferencePriority[InferencePriority["HomomorphicMappedType"] = 8] = "HomomorphicMappedType"; InferencePriority[InferencePriority["PartialHomomorphicMappedType"] = 16] = "PartialHomomorphicMappedType"; InferencePriority[InferencePriority["MappedTypeConstraint"] = 32] = "MappedTypeConstraint"; InferencePriority[InferencePriority["ContravariantConditional"] = 64] = "ContravariantConditional"; InferencePriority[InferencePriority["ReturnType"] = 128] = "ReturnType"; InferencePriority[InferencePriority["LiteralKeyof"] = 256] = "LiteralKeyof"; InferencePriority[InferencePriority["NoConstraints"] = 512] = "NoConstraints"; InferencePriority[InferencePriority["AlwaysStrict"] = 1024] = "AlwaysStrict"; InferencePriority[InferencePriority["MaxValue"] = 2048] = "MaxValue"; InferencePriority[InferencePriority["PriorityImpliesCombination"] = 416] = "PriorityImpliesCombination"; InferencePriority[InferencePriority["Circularity"] = -1] = "Circularity"; })(InferencePriority = ts.InferencePriority || (ts.InferencePriority = {})); /* @internal */ var InferenceFlags; (function (InferenceFlags) { InferenceFlags[InferenceFlags["None"] = 0] = "None"; InferenceFlags[InferenceFlags["NoDefault"] = 1] = "NoDefault"; InferenceFlags[InferenceFlags["AnyDefault"] = 2] = "AnyDefault"; InferenceFlags[InferenceFlags["SkippedGenericFunction"] = 4] = "SkippedGenericFunction"; })(InferenceFlags = ts.InferenceFlags || (ts.InferenceFlags = {})); /** * Ternary values are defined such that * x & y picks the lesser in the order False < Unknown < Maybe < True, and * x | y picks the greater in the order False < Unknown < Maybe < True. * Generally, Ternary.Maybe is used as the result of a relation that depends on itself, and * Ternary.Unknown is used as the result of a variance check that depends on itself. We make * a distinction because we don't want to cache circular variance check results. */ /* @internal */ var Ternary; (function (Ternary) { Ternary[Ternary["False"] = 0] = "False"; Ternary[Ternary["Unknown"] = 1] = "Unknown"; Ternary[Ternary["Maybe"] = 3] = "Maybe"; Ternary[Ternary["True"] = -1] = "True"; })(Ternary = ts.Ternary || (ts.Ternary = {})); /* @internal */ var AssignmentDeclarationKind; (function (AssignmentDeclarationKind) { AssignmentDeclarationKind[AssignmentDeclarationKind["None"] = 0] = "None"; /// exports.name = expr /// module.exports.name = expr AssignmentDeclarationKind[AssignmentDeclarationKind["ExportsProperty"] = 1] = "ExportsProperty"; /// module.exports = expr AssignmentDeclarationKind[AssignmentDeclarationKind["ModuleExports"] = 2] = "ModuleExports"; /// className.prototype.name = expr AssignmentDeclarationKind[AssignmentDeclarationKind["PrototypeProperty"] = 3] = "PrototypeProperty"; /// this.name = expr AssignmentDeclarationKind[AssignmentDeclarationKind["ThisProperty"] = 4] = "ThisProperty"; // F.name = expr AssignmentDeclarationKind[AssignmentDeclarationKind["Property"] = 5] = "Property"; // F.prototype = { ... } AssignmentDeclarationKind[AssignmentDeclarationKind["Prototype"] = 6] = "Prototype"; // Object.defineProperty(x, 'name', { value: any, writable?: boolean (false by default) }); // Object.defineProperty(x, 'name', { get: Function, set: Function }); // Object.defineProperty(x, 'name', { get: Function }); // Object.defineProperty(x, 'name', { set: Function }); AssignmentDeclarationKind[AssignmentDeclarationKind["ObjectDefinePropertyValue"] = 7] = "ObjectDefinePropertyValue"; // Object.defineProperty(exports || module.exports, 'name', ...); AssignmentDeclarationKind[AssignmentDeclarationKind["ObjectDefinePropertyExports"] = 8] = "ObjectDefinePropertyExports"; // Object.defineProperty(Foo.prototype, 'name', ...); AssignmentDeclarationKind[AssignmentDeclarationKind["ObjectDefinePrototypeProperty"] = 9] = "ObjectDefinePrototypeProperty"; })(AssignmentDeclarationKind = ts.AssignmentDeclarationKind || (ts.AssignmentDeclarationKind = {})); var DiagnosticCategory; (function (DiagnosticCategory) { DiagnosticCategory[DiagnosticCategory["Warning"] = 0] = "Warning"; DiagnosticCategory[DiagnosticCategory["Error"] = 1] = "Error"; DiagnosticCategory[DiagnosticCategory["Suggestion"] = 2] = "Suggestion"; DiagnosticCategory[DiagnosticCategory["Message"] = 3] = "Message"; })(DiagnosticCategory = ts.DiagnosticCategory || (ts.DiagnosticCategory = {})); /* @internal */ function diagnosticCategoryName(d, lowerCase) { if (lowerCase === void 0) { lowerCase = true; } var name = DiagnosticCategory[d.category]; return lowerCase ? name.toLowerCase() : name; } ts.diagnosticCategoryName = diagnosticCategoryName; var ModuleResolutionKind; (function (ModuleResolutionKind) { ModuleResolutionKind[ModuleResolutionKind["Classic"] = 1] = "Classic"; ModuleResolutionKind[ModuleResolutionKind["NodeJs"] = 2] = "NodeJs"; // Starting with node12, node's module resolver has significant departures from traditional cjs resolution // to better support ecmascript modules and their use within node - however more features are still being added. // TypeScript's Node ESM support was introduced after Node 12 went end-of-life, and Node 14 is the earliest stable // version that supports both pattern trailers - *but*, Node 16 is the first version that also supports ECMASCript 2022. // In turn, we offer both a `NodeNext` moving resolution target, and a `Node16` version-anchored resolution target ModuleResolutionKind[ModuleResolutionKind["Node16"] = 3] = "Node16"; ModuleResolutionKind[ModuleResolutionKind["NodeNext"] = 99] = "NodeNext"; })(ModuleResolutionKind = ts.ModuleResolutionKind || (ts.ModuleResolutionKind = {})); var ModuleDetectionKind; (function (ModuleDetectionKind) { /** * Files with imports, exports and/or import.meta are considered modules */ ModuleDetectionKind[ModuleDetectionKind["Legacy"] = 1] = "Legacy"; /** * Legacy, but also files with jsx under react-jsx or react-jsxdev and esm mode files under moduleResolution: node16+ */ ModuleDetectionKind[ModuleDetectionKind["Auto"] = 2] = "Auto"; /** * Consider all non-declaration files modules, regardless of present syntax */ ModuleDetectionKind[ModuleDetectionKind["Force"] = 3] = "Force"; })(ModuleDetectionKind = ts.ModuleDetectionKind || (ts.ModuleDetectionKind = {})); var WatchFileKind; (function (WatchFileKind) { WatchFileKind[WatchFileKind["FixedPollingInterval"] = 0] = "FixedPollingInterval"; WatchFileKind[WatchFileKind["PriorityPollingInterval"] = 1] = "PriorityPollingInterval"; WatchFileKind[WatchFileKind["DynamicPriorityPolling"] = 2] = "DynamicPriorityPolling"; WatchFileKind[WatchFileKind["FixedChunkSizePolling"] = 3] = "FixedChunkSizePolling"; WatchFileKind[WatchFileKind["UseFsEvents"] = 4] = "UseFsEvents"; WatchFileKind[WatchFileKind["UseFsEventsOnParentDirectory"] = 5] = "UseFsEventsOnParentDirectory"; })(WatchFileKind = ts.WatchFileKind || (ts.WatchFileKind = {})); var WatchDirectoryKind; (function (WatchDirectoryKind) { WatchDirectoryKind[WatchDirectoryKind["UseFsEvents"] = 0] = "UseFsEvents"; WatchDirectoryKind[WatchDirectoryKind["FixedPollingInterval"] = 1] = "FixedPollingInterval"; WatchDirectoryKind[WatchDirectoryKind["DynamicPriorityPolling"] = 2] = "DynamicPriorityPolling"; WatchDirectoryKind[WatchDirectoryKind["FixedChunkSizePolling"] = 3] = "FixedChunkSizePolling"; })(WatchDirectoryKind = ts.WatchDirectoryKind || (ts.WatchDirectoryKind = {})); var PollingWatchKind; (function (PollingWatchKind) { PollingWatchKind[PollingWatchKind["FixedInterval"] = 0] = "FixedInterval"; PollingWatchKind[PollingWatchKind["PriorityInterval"] = 1] = "PriorityInterval"; PollingWatchKind[PollingWatchKind["DynamicPriority"] = 2] = "DynamicPriority"; PollingWatchKind[PollingWatchKind["FixedChunkSize"] = 3] = "FixedChunkSize"; })(PollingWatchKind = ts.PollingWatchKind || (ts.PollingWatchKind = {})); var ModuleKind; (function (ModuleKind) { ModuleKind[ModuleKind["None"] = 0] = "None"; ModuleKind[ModuleKind["CommonJS"] = 1] = "CommonJS"; ModuleKind[ModuleKind["AMD"] = 2] = "AMD"; ModuleKind[ModuleKind["UMD"] = 3] = "UMD"; ModuleKind[ModuleKind["System"] = 4] = "System"; // NOTE: ES module kinds should be contiguous to more easily check whether a module kind is *any* ES module kind. // Non-ES module kinds should not come between ES2015 (the earliest ES module kind) and ESNext (the last ES // module kind). ModuleKind[ModuleKind["ES2015"] = 5] = "ES2015"; ModuleKind[ModuleKind["ES2020"] = 6] = "ES2020"; ModuleKind[ModuleKind["ES2022"] = 7] = "ES2022"; ModuleKind[ModuleKind["ESNext"] = 99] = "ESNext"; // Node16+ is an amalgam of commonjs (albeit updated) and es2022+, and represents a distinct module system from es2020/esnext ModuleKind[ModuleKind["Node16"] = 100] = "Node16"; ModuleKind[ModuleKind["NodeNext"] = 199] = "NodeNext"; })(ModuleKind = ts.ModuleKind || (ts.ModuleKind = {})); var JsxEmit; (function (JsxEmit) { JsxEmit[JsxEmit["None"] = 0] = "None"; JsxEmit[JsxEmit["Preserve"] = 1] = "Preserve"; JsxEmit[JsxEmit["React"] = 2] = "React"; JsxEmit[JsxEmit["ReactNative"] = 3] = "ReactNative"; JsxEmit[JsxEmit["ReactJSX"] = 4] = "ReactJSX"; JsxEmit[JsxEmit["ReactJSXDev"] = 5] = "ReactJSXDev"; })(JsxEmit = ts.JsxEmit || (ts.JsxEmit = {})); var ImportsNotUsedAsValues; (function (ImportsNotUsedAsValues) { ImportsNotUsedAsValues[ImportsNotUsedAsValues["Remove"] = 0] = "Remove"; ImportsNotUsedAsValues[ImportsNotUsedAsValues["Preserve"] = 1] = "Preserve"; ImportsNotUsedAsValues[ImportsNotUsedAsValues["Error"] = 2] = "Error"; })(ImportsNotUsedAsValues = ts.ImportsNotUsedAsValues || (ts.ImportsNotUsedAsValues = {})); var NewLineKind; (function (NewLineKind) { NewLineKind[NewLineKind["CarriageReturnLineFeed"] = 0] = "CarriageReturnLineFeed"; NewLineKind[NewLineKind["LineFeed"] = 1] = "LineFeed"; })(NewLineKind = ts.NewLineKind || (ts.NewLineKind = {})); var ScriptKind; (function (ScriptKind) { ScriptKind[ScriptKind["Unknown"] = 0] = "Unknown"; ScriptKind[ScriptKind["JS"] = 1] = "JS"; ScriptKind[ScriptKind["JSX"] = 2] = "JSX"; ScriptKind[ScriptKind["TS"] = 3] = "TS"; ScriptKind[ScriptKind["TSX"] = 4] = "TSX"; ScriptKind[ScriptKind["External"] = 5] = "External"; ScriptKind[ScriptKind["JSON"] = 6] = "JSON"; /** * Used on extensions that doesn't define the ScriptKind but the content defines it. * Deferred extensions are going to be included in all project contexts. */ ScriptKind[ScriptKind["Deferred"] = 7] = "Deferred"; })(ScriptKind = ts.ScriptKind || (ts.ScriptKind = {})); var ScriptTarget; (function (ScriptTarget) { ScriptTarget[ScriptTarget["ES3"] = 0] = "ES3"; ScriptTarget[ScriptTarget["ES5"] = 1] = "ES5"; ScriptTarget[ScriptTarget["ES2015"] = 2] = "ES2015"; ScriptTarget[ScriptTarget["ES2016"] = 3] = "ES2016"; ScriptTarget[ScriptTarget["ES2017"] = 4] = "ES2017"; ScriptTarget[ScriptTarget["ES2018"] = 5] = "ES2018"; ScriptTarget[ScriptTarget["ES2019"] = 6] = "ES2019"; ScriptTarget[ScriptTarget["ES2020"] = 7] = "ES2020"; ScriptTarget[ScriptTarget["ES2021"] = 8] = "ES2021"; ScriptTarget[ScriptTarget["ES2022"] = 9] = "ES2022"; ScriptTarget[ScriptTarget["ESNext"] = 99] = "ESNext"; ScriptTarget[ScriptTarget["JSON"] = 100] = "JSON"; ScriptTarget[ScriptTarget["Latest"] = 99] = "Latest"; })(ScriptTarget = ts.ScriptTarget || (ts.ScriptTarget = {})); var LanguageVariant; (function (LanguageVariant) { LanguageVariant[LanguageVariant["Standard"] = 0] = "Standard"; LanguageVariant[LanguageVariant["JSX"] = 1] = "JSX"; })(LanguageVariant = ts.LanguageVariant || (ts.LanguageVariant = {})); var WatchDirectoryFlags; (function (WatchDirectoryFlags) { WatchDirectoryFlags[WatchDirectoryFlags["None"] = 0] = "None"; WatchDirectoryFlags[WatchDirectoryFlags["Recursive"] = 1] = "Recursive"; })(WatchDirectoryFlags = ts.WatchDirectoryFlags || (ts.WatchDirectoryFlags = {})); /* @internal */ var CharacterCodes; (function (CharacterCodes) { CharacterCodes[CharacterCodes["nullCharacter"] = 0] = "nullCharacter"; CharacterCodes[CharacterCodes["maxAsciiCharacter"] = 127] = "maxAsciiCharacter"; CharacterCodes[CharacterCodes["lineFeed"] = 10] = "lineFeed"; CharacterCodes[CharacterCodes["carriageReturn"] = 13] = "carriageReturn"; CharacterCodes[CharacterCodes["lineSeparator"] = 8232] = "lineSeparator"; CharacterCodes[CharacterCodes["paragraphSeparator"] = 8233] = "paragraphSeparator"; CharacterCodes[CharacterCodes["nextLine"] = 133] = "nextLine"; // Unicode 3.0 space characters CharacterCodes[CharacterCodes["space"] = 32] = "space"; CharacterCodes[CharacterCodes["nonBreakingSpace"] = 160] = "nonBreakingSpace"; CharacterCodes[CharacterCodes["enQuad"] = 8192] = "enQuad"; CharacterCodes[CharacterCodes["emQuad"] = 8193] = "emQuad"; CharacterCodes[CharacterCodes["enSpace"] = 8194] = "enSpace"; CharacterCodes[CharacterCodes["emSpace"] = 8195] = "emSpace"; CharacterCodes[CharacterCodes["threePerEmSpace"] = 8196] = "threePerEmSpace"; CharacterCodes[CharacterCodes["fourPerEmSpace"] = 8197] = "fourPerEmSpace"; CharacterCodes[CharacterCodes["sixPerEmSpace"] = 8198] = "sixPerEmSpace"; CharacterCodes[CharacterCodes["figureSpace"] = 8199] = "figureSpace"; CharacterCodes[CharacterCodes["punctuationSpace"] = 8200] = "punctuationSpace"; CharacterCodes[CharacterCodes["thinSpace"] = 8201] = "thinSpace"; CharacterCodes[CharacterCodes["hairSpace"] = 8202] = "hairSpace"; CharacterCodes[CharacterCodes["zeroWidthSpace"] = 8203] = "zeroWidthSpace"; CharacterCodes[CharacterCodes["narrowNoBreakSpace"] = 8239] = "narrowNoBreakSpace"; CharacterCodes[CharacterCodes["ideographicSpace"] = 12288] = "ideographicSpace"; CharacterCodes[CharacterCodes["mathematicalSpace"] = 8287] = "mathematicalSpace"; CharacterCodes[CharacterCodes["ogham"] = 5760] = "ogham"; CharacterCodes[CharacterCodes["_"] = 95] = "_"; CharacterCodes[CharacterCodes["$"] = 36] = "$"; CharacterCodes[CharacterCodes["_0"] = 48] = "_0"; CharacterCodes[CharacterCodes["_1"] = 49] = "_1"; CharacterCodes[CharacterCodes["_2"] = 50] = "_2"; CharacterCodes[CharacterCodes["_3"] = 51] = "_3"; CharacterCodes[CharacterCodes["_4"] = 52] = "_4"; CharacterCodes[CharacterCodes["_5"] = 53] = "_5"; CharacterCodes[CharacterCodes["_6"] = 54] = "_6"; CharacterCodes[CharacterCodes["_7"] = 55] = "_7"; CharacterCodes[CharacterCodes["_8"] = 56] = "_8"; CharacterCodes[CharacterCodes["_9"] = 57] = "_9"; CharacterCodes[CharacterCodes["a"] = 97] = "a"; CharacterCodes[CharacterCodes["b"] = 98] = "b"; CharacterCodes[CharacterCodes["c"] = 99] = "c"; CharacterCodes[CharacterCodes["d"] = 100] = "d"; CharacterCodes[CharacterCodes["e"] = 101] = "e"; CharacterCodes[CharacterCodes["f"] = 102] = "f"; CharacterCodes[CharacterCodes["g"] = 103] = "g"; CharacterCodes[CharacterCodes["h"] = 104] = "h"; CharacterCodes[CharacterCodes["i"] = 105] = "i"; CharacterCodes[CharacterCodes["j"] = 106] = "j"; CharacterCodes[CharacterCodes["k"] = 107] = "k"; CharacterCodes[CharacterCodes["l"] = 108] = "l"; CharacterCodes[CharacterCodes["m"] = 109] = "m"; CharacterCodes[CharacterCodes["n"] = 110] = "n"; CharacterCodes[CharacterCodes["o"] = 111] = "o"; CharacterCodes[CharacterCodes["p"] = 112] = "p"; CharacterCodes[CharacterCodes["q"] = 113] = "q"; CharacterCodes[CharacterCodes["r"] = 114] = "r"; CharacterCodes[CharacterCodes["s"] = 115] = "s"; CharacterCodes[CharacterCodes["t"] = 116] = "t"; CharacterCodes[CharacterCodes["u"] = 117] = "u"; CharacterCodes[CharacterCodes["v"] = 118] = "v"; CharacterCodes[CharacterCodes["w"] = 119] = "w"; CharacterCodes[CharacterCodes["x"] = 120] = "x"; CharacterCodes[CharacterCodes["y"] = 121] = "y"; CharacterCodes[CharacterCodes["z"] = 122] = "z"; CharacterCodes[CharacterCodes["A"] = 65] = "A"; CharacterCodes[CharacterCodes["B"] = 66] = "B"; CharacterCodes[CharacterCodes["C"] = 67] = "C"; CharacterCodes[CharacterCodes["D"] = 68] = "D"; CharacterCodes[CharacterCodes["E"] = 69] = "E"; CharacterCodes[CharacterCodes["F"] = 70] = "F"; CharacterCodes[CharacterCodes["G"] = 71] = "G"; CharacterCodes[CharacterCodes["H"] = 72] = "H"; CharacterCodes[CharacterCodes["I"] = 73] = "I"; CharacterCodes[CharacterCodes["J"] = 74] = "J"; CharacterCodes[CharacterCodes["K"] = 75] = "K"; CharacterCodes[CharacterCodes["L"] = 76] = "L"; CharacterCodes[CharacterCodes["M"] = 77] = "M"; CharacterCodes[CharacterCodes["N"] = 78] = "N"; CharacterCodes[CharacterCodes["O"] = 79] = "O"; CharacterCodes[CharacterCodes["P"] = 80] = "P"; CharacterCodes[CharacterCodes["Q"] = 81] = "Q"; CharacterCodes[CharacterCodes["R"] = 82] = "R"; CharacterCodes[CharacterCodes["S"] = 83] = "S"; CharacterCodes[CharacterCodes["T"] = 84] = "T"; CharacterCodes[CharacterCodes["U"] = 85] = "U"; CharacterCodes[CharacterCodes["V"] = 86] = "V"; CharacterCodes[CharacterCodes["W"] = 87] = "W"; CharacterCodes[CharacterCodes["X"] = 88] = "X"; CharacterCodes[CharacterCodes["Y"] = 89] = "Y"; CharacterCodes[CharacterCodes["Z"] = 90] = "Z"; CharacterCodes[CharacterCodes["ampersand"] = 38] = "ampersand"; CharacterCodes[CharacterCodes["asterisk"] = 42] = "asterisk"; CharacterCodes[CharacterCodes["at"] = 64] = "at"; CharacterCodes[CharacterCodes["backslash"] = 92] = "backslash"; CharacterCodes[CharacterCodes["backtick"] = 96] = "backtick"; CharacterCodes[CharacterCodes["bar"] = 124] = "bar"; CharacterCodes[CharacterCodes["caret"] = 94] = "caret"; CharacterCodes[CharacterCodes["closeBrace"] = 125] = "closeBrace"; CharacterCodes[CharacterCodes["closeBracket"] = 93] = "closeBracket"; CharacterCodes[CharacterCodes["closeParen"] = 41] = "closeParen"; CharacterCodes[CharacterCodes["colon"] = 58] = "colon"; CharacterCodes[CharacterCodes["comma"] = 44] = "comma"; CharacterCodes[CharacterCodes["dot"] = 46] = "dot"; CharacterCodes[CharacterCodes["doubleQuote"] = 34] = "doubleQuote"; CharacterCodes[CharacterCodes["equals"] = 61] = "equals"; CharacterCodes[CharacterCodes["exclamation"] = 33] = "exclamation"; CharacterCodes[CharacterCodes["greaterThan"] = 62] = "greaterThan"; CharacterCodes[CharacterCodes["hash"] = 35] = "hash"; CharacterCodes[CharacterCodes["lessThan"] = 60] = "lessThan"; CharacterCodes[CharacterCodes["minus"] = 45] = "minus"; CharacterCodes[CharacterCodes["openBrace"] = 123] = "openBrace"; CharacterCodes[CharacterCodes["openBracket"] = 91] = "openBracket"; CharacterCodes[CharacterCodes["openParen"] = 40] = "openParen"; CharacterCodes[CharacterCodes["percent"] = 37] = "percent"; CharacterCodes[CharacterCodes["plus"] = 43] = "plus"; CharacterCodes[CharacterCodes["question"] = 63] = "question"; CharacterCodes[CharacterCodes["semicolon"] = 59] = "semicolon"; CharacterCodes[CharacterCodes["singleQuote"] = 39] = "singleQuote"; CharacterCodes[CharacterCodes["slash"] = 47] = "slash"; CharacterCodes[CharacterCodes["tilde"] = 126] = "tilde"; CharacterCodes[CharacterCodes["backspace"] = 8] = "backspace"; CharacterCodes[CharacterCodes["formFeed"] = 12] = "formFeed"; CharacterCodes[CharacterCodes["byteOrderMark"] = 65279] = "byteOrderMark"; CharacterCodes[CharacterCodes["tab"] = 9] = "tab"; CharacterCodes[CharacterCodes["verticalTab"] = 11] = "verticalTab"; })(CharacterCodes = ts.CharacterCodes || (ts.CharacterCodes = {})); var Extension; (function (Extension) { Extension["Ts"] = ".ts"; Extension["Tsx"] = ".tsx"; Extension["Dts"] = ".d.ts"; Extension["Js"] = ".js"; Extension["Jsx"] = ".jsx"; Extension["Json"] = ".json"; Extension["TsBuildInfo"] = ".tsbuildinfo"; Extension["Mjs"] = ".mjs"; Extension["Mts"] = ".mts"; Extension["Dmts"] = ".d.mts"; Extension["Cjs"] = ".cjs"; Extension["Cts"] = ".cts"; Extension["Dcts"] = ".d.cts"; })(Extension = ts.Extension || (ts.Extension = {})); /* @internal */ var TransformFlags; (function (TransformFlags) { TransformFlags[TransformFlags["None"] = 0] = "None"; // Facts // - Flags used to indicate that a node or subtree contains syntax that requires transformation. TransformFlags[TransformFlags["ContainsTypeScript"] = 1] = "ContainsTypeScript"; TransformFlags[TransformFlags["ContainsJsx"] = 2] = "ContainsJsx"; TransformFlags[TransformFlags["ContainsESNext"] = 4] = "ContainsESNext"; TransformFlags[TransformFlags["ContainsES2022"] = 8] = "ContainsES2022"; TransformFlags[TransformFlags["ContainsES2021"] = 16] = "ContainsES2021"; TransformFlags[TransformFlags["ContainsES2020"] = 32] = "ContainsES2020"; TransformFlags[TransformFlags["ContainsES2019"] = 64] = "ContainsES2019"; TransformFlags[TransformFlags["ContainsES2018"] = 128] = "ContainsES2018"; TransformFlags[TransformFlags["ContainsES2017"] = 256] = "ContainsES2017"; TransformFlags[TransformFlags["ContainsES2016"] = 512] = "ContainsES2016"; TransformFlags[TransformFlags["ContainsES2015"] = 1024] = "ContainsES2015"; TransformFlags[TransformFlags["ContainsGenerator"] = 2048] = "ContainsGenerator"; TransformFlags[TransformFlags["ContainsDestructuringAssignment"] = 4096] = "ContainsDestructuringAssignment"; // Markers // - Flags used to indicate that a subtree contains a specific transformation. TransformFlags[TransformFlags["ContainsTypeScriptClassSyntax"] = 4096] = "ContainsTypeScriptClassSyntax"; TransformFlags[TransformFlags["ContainsLexicalThis"] = 8192] = "ContainsLexicalThis"; TransformFlags[TransformFlags["ContainsRestOrSpread"] = 16384] = "ContainsRestOrSpread"; TransformFlags[TransformFlags["ContainsObjectRestOrSpread"] = 32768] = "ContainsObjectRestOrSpread"; TransformFlags[TransformFlags["ContainsComputedPropertyName"] = 65536] = "ContainsComputedPropertyName"; TransformFlags[TransformFlags["ContainsBlockScopedBinding"] = 131072] = "ContainsBlockScopedBinding"; TransformFlags[TransformFlags["ContainsBindingPattern"] = 262144] = "ContainsBindingPattern"; TransformFlags[TransformFlags["ContainsYield"] = 524288] = "ContainsYield"; TransformFlags[TransformFlags["ContainsAwait"] = 1048576] = "ContainsAwait"; TransformFlags[TransformFlags["ContainsHoistedDeclarationOrCompletion"] = 2097152] = "ContainsHoistedDeclarationOrCompletion"; TransformFlags[TransformFlags["ContainsDynamicImport"] = 4194304] = "ContainsDynamicImport"; TransformFlags[TransformFlags["ContainsClassFields"] = 8388608] = "ContainsClassFields"; TransformFlags[TransformFlags["ContainsPossibleTopLevelAwait"] = 16777216] = "ContainsPossibleTopLevelAwait"; TransformFlags[TransformFlags["ContainsLexicalSuper"] = 33554432] = "ContainsLexicalSuper"; TransformFlags[TransformFlags["ContainsUpdateExpressionForIdentifier"] = 67108864] = "ContainsUpdateExpressionForIdentifier"; // Please leave this as 1 << 29. // It is the maximum bit we can set before we outgrow the size of a v8 small integer (SMI) on an x86 system. // It is a good reminder of how much room we have left TransformFlags[TransformFlags["HasComputedFlags"] = 536870912] = "HasComputedFlags"; // Assertions // - Bitmasks that are used to assert facts about the syntax of a node and its subtree. TransformFlags[TransformFlags["AssertTypeScript"] = 1] = "AssertTypeScript"; TransformFlags[TransformFlags["AssertJsx"] = 2] = "AssertJsx"; TransformFlags[TransformFlags["AssertESNext"] = 4] = "AssertESNext"; TransformFlags[TransformFlags["AssertES2022"] = 8] = "AssertES2022"; TransformFlags[TransformFlags["AssertES2021"] = 16] = "AssertES2021"; TransformFlags[TransformFlags["AssertES2020"] = 32] = "AssertES2020"; TransformFlags[TransformFlags["AssertES2019"] = 64] = "AssertES2019"; TransformFlags[TransformFlags["AssertES2018"] = 128] = "AssertES2018"; TransformFlags[TransformFlags["AssertES2017"] = 256] = "AssertES2017"; TransformFlags[TransformFlags["AssertES2016"] = 512] = "AssertES2016"; TransformFlags[TransformFlags["AssertES2015"] = 1024] = "AssertES2015"; TransformFlags[TransformFlags["AssertGenerator"] = 2048] = "AssertGenerator"; TransformFlags[TransformFlags["AssertDestructuringAssignment"] = 4096] = "AssertDestructuringAssignment"; // Scope Exclusions // - Bitmasks that exclude flags from propagating out of a specific context // into the subtree flags of their container. TransformFlags[TransformFlags["OuterExpressionExcludes"] = 536870912] = "OuterExpressionExcludes"; TransformFlags[TransformFlags["PropertyAccessExcludes"] = 536870912] = "PropertyAccessExcludes"; TransformFlags[TransformFlags["NodeExcludes"] = 536870912] = "NodeExcludes"; TransformFlags[TransformFlags["ArrowFunctionExcludes"] = 557748224] = "ArrowFunctionExcludes"; TransformFlags[TransformFlags["FunctionExcludes"] = 591310848] = "FunctionExcludes"; TransformFlags[TransformFlags["ConstructorExcludes"] = 591306752] = "ConstructorExcludes"; TransformFlags[TransformFlags["MethodOrAccessorExcludes"] = 574529536] = "MethodOrAccessorExcludes"; TransformFlags[TransformFlags["PropertyExcludes"] = 570433536] = "PropertyExcludes"; TransformFlags[TransformFlags["ClassExcludes"] = 536940544] = "ClassExcludes"; TransformFlags[TransformFlags["ModuleExcludes"] = 589443072] = "ModuleExcludes"; TransformFlags[TransformFlags["TypeExcludes"] = -2] = "TypeExcludes"; TransformFlags[TransformFlags["ObjectLiteralExcludes"] = 536973312] = "ObjectLiteralExcludes"; TransformFlags[TransformFlags["ArrayLiteralOrCallOrNewExcludes"] = 536887296] = "ArrayLiteralOrCallOrNewExcludes"; TransformFlags[TransformFlags["VariableDeclarationListExcludes"] = 537165824] = "VariableDeclarationListExcludes"; TransformFlags[TransformFlags["ParameterExcludes"] = 536870912] = "ParameterExcludes"; TransformFlags[TransformFlags["CatchClauseExcludes"] = 536903680] = "CatchClauseExcludes"; TransformFlags[TransformFlags["BindingPatternExcludes"] = 536887296] = "BindingPatternExcludes"; TransformFlags[TransformFlags["ContainsLexicalThisOrSuper"] = 33562624] = "ContainsLexicalThisOrSuper"; // Propagating flags // - Bitmasks for flags that should propagate from a child TransformFlags[TransformFlags["PropertyNamePropagatingFlags"] = 33562624] = "PropertyNamePropagatingFlags"; // Masks // - Additional bitmasks })(TransformFlags = ts.TransformFlags || (ts.TransformFlags = {})); // Reference: https://code.visualstudio.com/docs/editor/userdefinedsnippets#_snippet-syntax /* @internal */ var SnippetKind; (function (SnippetKind) { SnippetKind[SnippetKind["TabStop"] = 0] = "TabStop"; SnippetKind[SnippetKind["Placeholder"] = 1] = "Placeholder"; SnippetKind[SnippetKind["Choice"] = 2] = "Choice"; SnippetKind[SnippetKind["Variable"] = 3] = "Variable"; })(SnippetKind = ts.SnippetKind || (ts.SnippetKind = {})); var EmitFlags; (function (EmitFlags) { EmitFlags[EmitFlags["None"] = 0] = "None"; EmitFlags[EmitFlags["SingleLine"] = 1] = "SingleLine"; EmitFlags[EmitFlags["AdviseOnEmitNode"] = 2] = "AdviseOnEmitNode"; EmitFlags[EmitFlags["NoSubstitution"] = 4] = "NoSubstitution"; EmitFlags[EmitFlags["CapturesThis"] = 8] = "CapturesThis"; EmitFlags[EmitFlags["NoLeadingSourceMap"] = 16] = "NoLeadingSourceMap"; EmitFlags[EmitFlags["NoTrailingSourceMap"] = 32] = "NoTrailingSourceMap"; EmitFlags[EmitFlags["NoSourceMap"] = 48] = "NoSourceMap"; EmitFlags[EmitFlags["NoNestedSourceMaps"] = 64] = "NoNestedSourceMaps"; EmitFlags[EmitFlags["NoTokenLeadingSourceMaps"] = 128] = "NoTokenLeadingSourceMaps"; EmitFlags[EmitFlags["NoTokenTrailingSourceMaps"] = 256] = "NoTokenTrailingSourceMaps"; EmitFlags[EmitFlags["NoTokenSourceMaps"] = 384] = "NoTokenSourceMaps"; EmitFlags[EmitFlags["NoLeadingComments"] = 512] = "NoLeadingComments"; EmitFlags[EmitFlags["NoTrailingComments"] = 1024] = "NoTrailingComments"; EmitFlags[EmitFlags["NoComments"] = 1536] = "NoComments"; EmitFlags[EmitFlags["NoNestedComments"] = 2048] = "NoNestedComments"; EmitFlags[EmitFlags["HelperName"] = 4096] = "HelperName"; EmitFlags[EmitFlags["ExportName"] = 8192] = "ExportName"; EmitFlags[EmitFlags["LocalName"] = 16384] = "LocalName"; EmitFlags[EmitFlags["InternalName"] = 32768] = "InternalName"; EmitFlags[EmitFlags["Indented"] = 65536] = "Indented"; EmitFlags[EmitFlags["NoIndentation"] = 131072] = "NoIndentation"; EmitFlags[EmitFlags["AsyncFunctionBody"] = 262144] = "AsyncFunctionBody"; EmitFlags[EmitFlags["ReuseTempVariableScope"] = 524288] = "ReuseTempVariableScope"; EmitFlags[EmitFlags["CustomPrologue"] = 1048576] = "CustomPrologue"; EmitFlags[EmitFlags["NoHoisting"] = 2097152] = "NoHoisting"; EmitFlags[EmitFlags["HasEndOfDeclarationMarker"] = 4194304] = "HasEndOfDeclarationMarker"; EmitFlags[EmitFlags["Iterator"] = 8388608] = "Iterator"; EmitFlags[EmitFlags["NoAsciiEscaping"] = 16777216] = "NoAsciiEscaping"; /*@internal*/ EmitFlags[EmitFlags["TypeScriptClassWrapper"] = 33554432] = "TypeScriptClassWrapper"; /*@internal*/ EmitFlags[EmitFlags["NeverApplyImportHelper"] = 67108864] = "NeverApplyImportHelper"; /*@internal*/ EmitFlags[EmitFlags["IgnoreSourceNewlines"] = 134217728] = "IgnoreSourceNewlines"; /*@internal*/ EmitFlags[EmitFlags["Immutable"] = 268435456] = "Immutable"; /*@internal*/ EmitFlags[EmitFlags["IndirectCall"] = 536870912] = "IndirectCall"; })(EmitFlags = ts.EmitFlags || (ts.EmitFlags = {})); /** * Used by the checker, this enum keeps track of external emit helpers that should be type * checked. */ /* @internal */ var ExternalEmitHelpers; (function (ExternalEmitHelpers) { ExternalEmitHelpers[ExternalEmitHelpers["Extends"] = 1] = "Extends"; ExternalEmitHelpers[ExternalEmitHelpers["Assign"] = 2] = "Assign"; ExternalEmitHelpers[ExternalEmitHelpers["Rest"] = 4] = "Rest"; ExternalEmitHelpers[ExternalEmitHelpers["Decorate"] = 8] = "Decorate"; ExternalEmitHelpers[ExternalEmitHelpers["Metadata"] = 16] = "Metadata"; ExternalEmitHelpers[ExternalEmitHelpers["Param"] = 32] = "Param"; ExternalEmitHelpers[ExternalEmitHelpers["Awaiter"] = 64] = "Awaiter"; ExternalEmitHelpers[ExternalEmitHelpers["Generator"] = 128] = "Generator"; ExternalEmitHelpers[ExternalEmitHelpers["Values"] = 256] = "Values"; ExternalEmitHelpers[ExternalEmitHelpers["Read"] = 512] = "Read"; ExternalEmitHelpers[ExternalEmitHelpers["SpreadArray"] = 1024] = "SpreadArray"; ExternalEmitHelpers[ExternalEmitHelpers["Await"] = 2048] = "Await"; ExternalEmitHelpers[ExternalEmitHelpers["AsyncGenerator"] = 4096] = "AsyncGenerator"; ExternalEmitHelpers[ExternalEmitHelpers["AsyncDelegator"] = 8192] = "AsyncDelegator"; ExternalEmitHelpers[ExternalEmitHelpers["AsyncValues"] = 16384] = "AsyncValues"; ExternalEmitHelpers[ExternalEmitHelpers["ExportStar"] = 32768] = "ExportStar"; ExternalEmitHelpers[ExternalEmitHelpers["ImportStar"] = 65536] = "ImportStar"; ExternalEmitHelpers[ExternalEmitHelpers["ImportDefault"] = 131072] = "ImportDefault"; ExternalEmitHelpers[ExternalEmitHelpers["MakeTemplateObject"] = 262144] = "MakeTemplateObject"; ExternalEmitHelpers[ExternalEmitHelpers["ClassPrivateFieldGet"] = 524288] = "ClassPrivateFieldGet"; ExternalEmitHelpers[ExternalEmitHelpers["ClassPrivateFieldSet"] = 1048576] = "ClassPrivateFieldSet"; ExternalEmitHelpers[ExternalEmitHelpers["ClassPrivateFieldIn"] = 2097152] = "ClassPrivateFieldIn"; ExternalEmitHelpers[ExternalEmitHelpers["CreateBinding"] = 4194304] = "CreateBinding"; ExternalEmitHelpers[ExternalEmitHelpers["FirstEmitHelper"] = 1] = "FirstEmitHelper"; ExternalEmitHelpers[ExternalEmitHelpers["LastEmitHelper"] = 4194304] = "LastEmitHelper"; // Helpers included by ES2015 for..of ExternalEmitHelpers[ExternalEmitHelpers["ForOfIncludes"] = 256] = "ForOfIncludes"; // Helpers included by ES2017 for..await..of ExternalEmitHelpers[ExternalEmitHelpers["ForAwaitOfIncludes"] = 16384] = "ForAwaitOfIncludes"; // Helpers included by ES2017 async generators ExternalEmitHelpers[ExternalEmitHelpers["AsyncGeneratorIncludes"] = 6144] = "AsyncGeneratorIncludes"; // Helpers included by yield* in ES2017 async generators ExternalEmitHelpers[ExternalEmitHelpers["AsyncDelegatorIncludes"] = 26624] = "AsyncDelegatorIncludes"; // Helpers included by ES2015 spread ExternalEmitHelpers[ExternalEmitHelpers["SpreadIncludes"] = 1536] = "SpreadIncludes"; })(ExternalEmitHelpers = ts.ExternalEmitHelpers || (ts.ExternalEmitHelpers = {})); var EmitHint; (function (EmitHint) { EmitHint[EmitHint["SourceFile"] = 0] = "SourceFile"; EmitHint[EmitHint["Expression"] = 1] = "Expression"; EmitHint[EmitHint["IdentifierName"] = 2] = "IdentifierName"; EmitHint[EmitHint["MappedTypeParameter"] = 3] = "MappedTypeParameter"; EmitHint[EmitHint["Unspecified"] = 4] = "Unspecified"; EmitHint[EmitHint["EmbeddedStatement"] = 5] = "EmbeddedStatement"; EmitHint[EmitHint["JsxAttributeValue"] = 6] = "JsxAttributeValue"; })(EmitHint = ts.EmitHint || (ts.EmitHint = {})); var OuterExpressionKinds; (function (OuterExpressionKinds) { OuterExpressionKinds[OuterExpressionKinds["Parentheses"] = 1] = "Parentheses"; OuterExpressionKinds[OuterExpressionKinds["TypeAssertions"] = 2] = "TypeAssertions"; OuterExpressionKinds[OuterExpressionKinds["NonNullAssertions"] = 4] = "NonNullAssertions"; OuterExpressionKinds[OuterExpressionKinds["PartiallyEmittedExpressions"] = 8] = "PartiallyEmittedExpressions"; OuterExpressionKinds[OuterExpressionKinds["Assertions"] = 6] = "Assertions"; OuterExpressionKinds[OuterExpressionKinds["All"] = 15] = "All"; OuterExpressionKinds[OuterExpressionKinds["ExcludeJSDocTypeAssertion"] = 16] = "ExcludeJSDocTypeAssertion"; })(OuterExpressionKinds = ts.OuterExpressionKinds || (ts.OuterExpressionKinds = {})); /* @internal */ var LexicalEnvironmentFlags; (function (LexicalEnvironmentFlags) { LexicalEnvironmentFlags[LexicalEnvironmentFlags["None"] = 0] = "None"; LexicalEnvironmentFlags[LexicalEnvironmentFlags["InParameters"] = 1] = "InParameters"; LexicalEnvironmentFlags[LexicalEnvironmentFlags["VariablesHoistedInParameters"] = 2] = "VariablesHoistedInParameters"; // a temp variable was hoisted while visiting a parameter list })(LexicalEnvironmentFlags = ts.LexicalEnvironmentFlags || (ts.LexicalEnvironmentFlags = {})); /*@internal*/ var BundleFileSectionKind; (function (BundleFileSectionKind) { BundleFileSectionKind["Prologue"] = "prologue"; BundleFileSectionKind["EmitHelpers"] = "emitHelpers"; BundleFileSectionKind["NoDefaultLib"] = "no-default-lib"; BundleFileSectionKind["Reference"] = "reference"; BundleFileSectionKind["Type"] = "type"; BundleFileSectionKind["TypeResolutionModeRequire"] = "type-require"; BundleFileSectionKind["TypeResolutionModeImport"] = "type-import"; BundleFileSectionKind["Lib"] = "lib"; BundleFileSectionKind["Prepend"] = "prepend"; BundleFileSectionKind["Text"] = "text"; BundleFileSectionKind["Internal"] = "internal"; // comments? })(BundleFileSectionKind = ts.BundleFileSectionKind || (ts.BundleFileSectionKind = {})); var ListFormat; (function (ListFormat) { ListFormat[ListFormat["None"] = 0] = "None"; // Line separators ListFormat[ListFormat["SingleLine"] = 0] = "SingleLine"; ListFormat[ListFormat["MultiLine"] = 1] = "MultiLine"; ListFormat[ListFormat["PreserveLines"] = 2] = "PreserveLines"; ListFormat[ListFormat["LinesMask"] = 3] = "LinesMask"; // Delimiters ListFormat[ListFormat["NotDelimited"] = 0] = "NotDelimited"; ListFormat[ListFormat["BarDelimited"] = 4] = "BarDelimited"; ListFormat[ListFormat["AmpersandDelimited"] = 8] = "AmpersandDelimited"; ListFormat[ListFormat["CommaDelimited"] = 16] = "CommaDelimited"; ListFormat[ListFormat["AsteriskDelimited"] = 32] = "AsteriskDelimited"; ListFormat[ListFormat["DelimitersMask"] = 60] = "DelimitersMask"; ListFormat[ListFormat["AllowTrailingComma"] = 64] = "AllowTrailingComma"; // Whitespace ListFormat[ListFormat["Indented"] = 128] = "Indented"; ListFormat[ListFormat["SpaceBetweenBraces"] = 256] = "SpaceBetweenBraces"; ListFormat[ListFormat["SpaceBetweenSiblings"] = 512] = "SpaceBetweenSiblings"; // Brackets/Braces ListFormat[ListFormat["Braces"] = 1024] = "Braces"; ListFormat[ListFormat["Parenthesis"] = 2048] = "Parenthesis"; ListFormat[ListFormat["AngleBrackets"] = 4096] = "AngleBrackets"; ListFormat[ListFormat["SquareBrackets"] = 8192] = "SquareBrackets"; ListFormat[ListFormat["BracketsMask"] = 15360] = "BracketsMask"; ListFormat[ListFormat["OptionalIfUndefined"] = 16384] = "OptionalIfUndefined"; ListFormat[ListFormat["OptionalIfEmpty"] = 32768] = "OptionalIfEmpty"; ListFormat[ListFormat["Optional"] = 49152] = "Optional"; // Other ListFormat[ListFormat["PreferNewLine"] = 65536] = "PreferNewLine"; ListFormat[ListFormat["NoTrailingNewLine"] = 131072] = "NoTrailingNewLine"; ListFormat[ListFormat["NoInterveningComments"] = 262144] = "NoInterveningComments"; ListFormat[ListFormat["NoSpaceIfEmpty"] = 524288] = "NoSpaceIfEmpty"; ListFormat[ListFormat["SingleElement"] = 1048576] = "SingleElement"; ListFormat[ListFormat["SpaceAfterList"] = 2097152] = "SpaceAfterList"; // Precomputed Formats ListFormat[ListFormat["Modifiers"] = 262656] = "Modifiers"; ListFormat[ListFormat["HeritageClauses"] = 512] = "HeritageClauses"; ListFormat[ListFormat["SingleLineTypeLiteralMembers"] = 768] = "SingleLineTypeLiteralMembers"; ListFormat[ListFormat["MultiLineTypeLiteralMembers"] = 32897] = "MultiLineTypeLiteralMembers"; ListFormat[ListFormat["SingleLineTupleTypeElements"] = 528] = "SingleLineTupleTypeElements"; ListFormat[ListFormat["MultiLineTupleTypeElements"] = 657] = "MultiLineTupleTypeElements"; ListFormat[ListFormat["UnionTypeConstituents"] = 516] = "UnionTypeConstituents"; ListFormat[ListFormat["IntersectionTypeConstituents"] = 520] = "IntersectionTypeConstituents"; ListFormat[ListFormat["ObjectBindingPatternElements"] = 525136] = "ObjectBindingPatternElements"; ListFormat[ListFormat["ArrayBindingPatternElements"] = 524880] = "ArrayBindingPatternElements"; ListFormat[ListFormat["ObjectLiteralExpressionProperties"] = 526226] = "ObjectLiteralExpressionProperties"; ListFormat[ListFormat["ImportClauseEntries"] = 526226] = "ImportClauseEntries"; ListFormat[ListFormat["ArrayLiteralExpressionElements"] = 8914] = "ArrayLiteralExpressionElements"; ListFormat[ListFormat["CommaListElements"] = 528] = "CommaListElements"; ListFormat[ListFormat["CallExpressionArguments"] = 2576] = "CallExpressionArguments"; ListFormat[ListFormat["NewExpressionArguments"] = 18960] = "NewExpressionArguments"; ListFormat[ListFormat["TemplateExpressionSpans"] = 262144] = "TemplateExpressionSpans"; ListFormat[ListFormat["SingleLineBlockStatements"] = 768] = "SingleLineBlockStatements"; ListFormat[ListFormat["MultiLineBlockStatements"] = 129] = "MultiLineBlockStatements"; ListFormat[ListFormat["VariableDeclarationList"] = 528] = "VariableDeclarationList"; ListFormat[ListFormat["SingleLineFunctionBodyStatements"] = 768] = "SingleLineFunctionBodyStatements"; ListFormat[ListFormat["MultiLineFunctionBodyStatements"] = 1] = "MultiLineFunctionBodyStatements"; ListFormat[ListFormat["ClassHeritageClauses"] = 0] = "ClassHeritageClauses"; ListFormat[ListFormat["ClassMembers"] = 129] = "ClassMembers"; ListFormat[ListFormat["InterfaceMembers"] = 129] = "InterfaceMembers"; ListFormat[ListFormat["EnumMembers"] = 145] = "EnumMembers"; ListFormat[ListFormat["CaseBlockClauses"] = 129] = "CaseBlockClauses"; ListFormat[ListFormat["NamedImportsOrExportsElements"] = 525136] = "NamedImportsOrExportsElements"; ListFormat[ListFormat["JsxElementOrFragmentChildren"] = 262144] = "JsxElementOrFragmentChildren"; ListFormat[ListFormat["JsxElementAttributes"] = 262656] = "JsxElementAttributes"; ListFormat[ListFormat["CaseOrDefaultClauseStatements"] = 163969] = "CaseOrDefaultClauseStatements"; ListFormat[ListFormat["HeritageClauseTypes"] = 528] = "HeritageClauseTypes"; ListFormat[ListFormat["SourceFileStatements"] = 131073] = "SourceFileStatements"; ListFormat[ListFormat["Decorators"] = 2146305] = "Decorators"; ListFormat[ListFormat["TypeArguments"] = 53776] = "TypeArguments"; ListFormat[ListFormat["TypeParameters"] = 53776] = "TypeParameters"; ListFormat[ListFormat["Parameters"] = 2576] = "Parameters"; ListFormat[ListFormat["IndexSignatureParameters"] = 8848] = "IndexSignatureParameters"; ListFormat[ListFormat["JSDocComment"] = 33] = "JSDocComment"; })(ListFormat = ts.ListFormat || (ts.ListFormat = {})); /* @internal */ var PragmaKindFlags; (function (PragmaKindFlags) { PragmaKindFlags[PragmaKindFlags["None"] = 0] = "None"; /** * Triple slash comment of the form * /// */ PragmaKindFlags[PragmaKindFlags["TripleSlashXML"] = 1] = "TripleSlashXML"; /** * Single line comment of the form * // @pragma-name argval1 argval2 * or * /// @pragma-name argval1 argval2 */ PragmaKindFlags[PragmaKindFlags["SingleLine"] = 2] = "SingleLine"; /** * Multiline non-jsdoc pragma of the form * /* @pragma-name argval1 argval2 * / */ PragmaKindFlags[PragmaKindFlags["MultiLine"] = 4] = "MultiLine"; PragmaKindFlags[PragmaKindFlags["All"] = 7] = "All"; PragmaKindFlags[PragmaKindFlags["Default"] = 7] = "Default"; })(PragmaKindFlags = ts.PragmaKindFlags || (ts.PragmaKindFlags = {})); // While not strictly a type, this is here because `PragmaMap` needs to be here to be used with `SourceFile`, and we don't // fancy effectively defining it twice, once in value-space and once in type-space /* @internal */ ts.commentPragmas = { "reference": { args: [ { name: "types", optional: true, captureSpan: true }, { name: "lib", optional: true, captureSpan: true }, { name: "path", optional: true, captureSpan: true }, { name: "no-default-lib", optional: true }, { name: "resolution-mode", optional: true } ], kind: 1 /* PragmaKindFlags.TripleSlashXML */ }, "amd-dependency": { args: [{ name: "path" }, { name: "name", optional: true }], kind: 1 /* PragmaKindFlags.TripleSlashXML */ }, "amd-module": { args: [{ name: "name" }], kind: 1 /* PragmaKindFlags.TripleSlashXML */ }, "ts-check": { kind: 2 /* PragmaKindFlags.SingleLine */ }, "ts-nocheck": { kind: 2 /* PragmaKindFlags.SingleLine */ }, "jsx": { args: [{ name: "factory" }], kind: 4 /* PragmaKindFlags.MultiLine */ }, "jsxfrag": { args: [{ name: "factory" }], kind: 4 /* PragmaKindFlags.MultiLine */ }, "jsximportsource": { args: [{ name: "factory" }], kind: 4 /* PragmaKindFlags.MultiLine */ }, "jsxruntime": { args: [{ name: "factory" }], kind: 4 /* PragmaKindFlags.MultiLine */ }, }; })(ts || (ts = {})); var ts; (function (ts) { /** * djb2 hashing algorithm * http://www.cse.yorku.ca/~oz/hash.html */ /* @internal */ function generateDjb2Hash(data) { var acc = 5381; for (var i = 0; i < data.length; i++) { acc = ((acc << 5) + acc) + data.charCodeAt(i); } return acc.toString(); } ts.generateDjb2Hash = generateDjb2Hash; /** * Set a high stack trace limit to provide more information in case of an error. * Called for command-line and server use cases. * Not called if TypeScript is used as a library. */ /* @internal */ function setStackTraceLimit() { if (Error.stackTraceLimit < 100) { // Also tests that we won't set the property if it doesn't exist. Error.stackTraceLimit = 100; } } ts.setStackTraceLimit = setStackTraceLimit; var FileWatcherEventKind; (function (FileWatcherEventKind) { FileWatcherEventKind[FileWatcherEventKind["Created"] = 0] = "Created"; FileWatcherEventKind[FileWatcherEventKind["Changed"] = 1] = "Changed"; FileWatcherEventKind[FileWatcherEventKind["Deleted"] = 2] = "Deleted"; })(FileWatcherEventKind = ts.FileWatcherEventKind || (ts.FileWatcherEventKind = {})); /* @internal */ var PollingInterval; (function (PollingInterval) { PollingInterval[PollingInterval["High"] = 2000] = "High"; PollingInterval[PollingInterval["Medium"] = 500] = "Medium"; PollingInterval[PollingInterval["Low"] = 250] = "Low"; })(PollingInterval = ts.PollingInterval || (ts.PollingInterval = {})); /* @internal */ ts.missingFileModifiedTime = new Date(0); // Any subsequent modification will occur after this time /* @internal */ function getModifiedTime(host, fileName) { return host.getModifiedTime(fileName) || ts.missingFileModifiedTime; } ts.getModifiedTime = getModifiedTime; function createPollingIntervalBasedLevels(levels) { var _a; return _a = {}, _a[PollingInterval.Low] = levels.Low, _a[PollingInterval.Medium] = levels.Medium, _a[PollingInterval.High] = levels.High, _a; } var defaultChunkLevels = { Low: 32, Medium: 64, High: 256 }; var pollingChunkSize = createPollingIntervalBasedLevels(defaultChunkLevels); /* @internal */ ts.unchangedPollThresholds = createPollingIntervalBasedLevels(defaultChunkLevels); /* @internal */ function setCustomPollingValues(system) { if (!system.getEnvironmentVariable) { return; } var pollingIntervalChanged = setCustomLevels("TSC_WATCH_POLLINGINTERVAL", PollingInterval); pollingChunkSize = getCustomPollingBasedLevels("TSC_WATCH_POLLINGCHUNKSIZE", defaultChunkLevels) || pollingChunkSize; ts.unchangedPollThresholds = getCustomPollingBasedLevels("TSC_WATCH_UNCHANGEDPOLLTHRESHOLDS", defaultChunkLevels) || ts.unchangedPollThresholds; function getLevel(envVar, level) { return system.getEnvironmentVariable("".concat(envVar, "_").concat(level.toUpperCase())); } function getCustomLevels(baseVariable) { var customLevels; setCustomLevel("Low"); setCustomLevel("Medium"); setCustomLevel("High"); return customLevels; function setCustomLevel(level) { var customLevel = getLevel(baseVariable, level); if (customLevel) { (customLevels || (customLevels = {}))[level] = Number(customLevel); } } } function setCustomLevels(baseVariable, levels) { var customLevels = getCustomLevels(baseVariable); if (customLevels) { setLevel("Low"); setLevel("Medium"); setLevel("High"); return true; } return false; function setLevel(level) { levels[level] = customLevels[level] || levels[level]; } } function getCustomPollingBasedLevels(baseVariable, defaultLevels) { var customLevels = getCustomLevels(baseVariable); return (pollingIntervalChanged || customLevels) && createPollingIntervalBasedLevels(customLevels ? __assign(__assign({}, defaultLevels), customLevels) : defaultLevels); } } ts.setCustomPollingValues = setCustomPollingValues; function pollWatchedFileQueue(host, queue, pollIndex, chunkSize, callbackOnWatchFileStat) { var definedValueCopyToIndex = pollIndex; // Max visit would be all elements of the queue for (var canVisit = queue.length; chunkSize && canVisit; nextPollIndex(), canVisit--) { var watchedFile = queue[pollIndex]; if (!watchedFile) { continue; } else if (watchedFile.isClosed) { queue[pollIndex] = undefined; continue; } // Only files polled count towards chunkSize chunkSize--; var fileChanged = onWatchedFileStat(watchedFile, getModifiedTime(host, watchedFile.fileName)); if (watchedFile.isClosed) { // Closed watcher as part of callback queue[pollIndex] = undefined; continue; } callbackOnWatchFileStat === null || callbackOnWatchFileStat === void 0 ? void 0 : callbackOnWatchFileStat(watchedFile, pollIndex, fileChanged); // Defragment the queue while we are at it if (queue[pollIndex]) { // Copy this file to the non hole location if (definedValueCopyToIndex < pollIndex) { queue[definedValueCopyToIndex] = watchedFile; queue[pollIndex] = undefined; } definedValueCopyToIndex++; } } // Return next poll index return pollIndex; function nextPollIndex() { pollIndex++; if (pollIndex === queue.length) { if (definedValueCopyToIndex < pollIndex) { // There are holes from definedValueCopyToIndex to end of queue, change queue size queue.length = definedValueCopyToIndex; } pollIndex = 0; definedValueCopyToIndex = 0; } } } /* @internal */ function createDynamicPriorityPollingWatchFile(host) { var watchedFiles = []; var changedFilesInLastPoll = []; var lowPollingIntervalQueue = createPollingIntervalQueue(PollingInterval.Low); var mediumPollingIntervalQueue = createPollingIntervalQueue(PollingInterval.Medium); var highPollingIntervalQueue = createPollingIntervalQueue(PollingInterval.High); return watchFile; function watchFile(fileName, callback, defaultPollingInterval) { var file = { fileName: fileName, callback: callback, unchangedPolls: 0, mtime: getModifiedTime(host, fileName) }; watchedFiles.push(file); addToPollingIntervalQueue(file, defaultPollingInterval); return { close: function () { file.isClosed = true; // Remove from watchedFiles ts.unorderedRemoveItem(watchedFiles, file); // Do not update polling interval queue since that will happen as part of polling } }; } function createPollingIntervalQueue(pollingInterval) { var queue = []; queue.pollingInterval = pollingInterval; queue.pollIndex = 0; queue.pollScheduled = false; return queue; } function pollPollingIntervalQueue(queue) { queue.pollIndex = pollQueue(queue, queue.pollingInterval, queue.pollIndex, pollingChunkSize[queue.pollingInterval]); // Set the next polling index and timeout if (queue.length) { scheduleNextPoll(queue.pollingInterval); } else { ts.Debug.assert(queue.pollIndex === 0); queue.pollScheduled = false; } } function pollLowPollingIntervalQueue(queue) { // Always poll complete list of changedFilesInLastPoll pollQueue(changedFilesInLastPoll, PollingInterval.Low, /*pollIndex*/ 0, changedFilesInLastPoll.length); // Finally do the actual polling of the queue pollPollingIntervalQueue(queue); // Schedule poll if there are files in changedFilesInLastPoll but no files in the actual queue // as pollPollingIntervalQueue wont schedule for next poll if (!queue.pollScheduled && changedFilesInLastPoll.length) { scheduleNextPoll(PollingInterval.Low); } } function pollQueue(queue, pollingInterval, pollIndex, chunkSize) { return pollWatchedFileQueue(host, queue, pollIndex, chunkSize, onWatchFileStat); function onWatchFileStat(watchedFile, pollIndex, fileChanged) { if (fileChanged) { watchedFile.unchangedPolls = 0; // Changed files go to changedFilesInLastPoll queue if (queue !== changedFilesInLastPoll) { queue[pollIndex] = undefined; addChangedFileToLowPollingIntervalQueue(watchedFile); } } else if (watchedFile.unchangedPolls !== ts.unchangedPollThresholds[pollingInterval]) { watchedFile.unchangedPolls++; } else if (queue === changedFilesInLastPoll) { // Restart unchangedPollCount for unchanged file and move to low polling interval queue watchedFile.unchangedPolls = 1; queue[pollIndex] = undefined; addToPollingIntervalQueue(watchedFile, PollingInterval.Low); } else if (pollingInterval !== PollingInterval.High) { watchedFile.unchangedPolls++; queue[pollIndex] = undefined; addToPollingIntervalQueue(watchedFile, pollingInterval === PollingInterval.Low ? PollingInterval.Medium : PollingInterval.High); } } } function pollingIntervalQueue(pollingInterval) { switch (pollingInterval) { case PollingInterval.Low: return lowPollingIntervalQueue; case PollingInterval.Medium: return mediumPollingIntervalQueue; case PollingInterval.High: return highPollingIntervalQueue; } } function addToPollingIntervalQueue(file, pollingInterval) { pollingIntervalQueue(pollingInterval).push(file); scheduleNextPollIfNotAlreadyScheduled(pollingInterval); } function addChangedFileToLowPollingIntervalQueue(file) { changedFilesInLastPoll.push(file); scheduleNextPollIfNotAlreadyScheduled(PollingInterval.Low); } function scheduleNextPollIfNotAlreadyScheduled(pollingInterval) { if (!pollingIntervalQueue(pollingInterval).pollScheduled) { scheduleNextPoll(pollingInterval); } } function scheduleNextPoll(pollingInterval) { pollingIntervalQueue(pollingInterval).pollScheduled = host.setTimeout(pollingInterval === PollingInterval.Low ? pollLowPollingIntervalQueue : pollPollingIntervalQueue, pollingInterval, pollingIntervalQueue(pollingInterval)); } } ts.createDynamicPriorityPollingWatchFile = createDynamicPriorityPollingWatchFile; function createUseFsEventsOnParentDirectoryWatchFile(fsWatch, useCaseSensitiveFileNames) { // One file can have multiple watchers var fileWatcherCallbacks = ts.createMultiMap(); var dirWatchers = new ts.Map(); var toCanonicalName = ts.createGetCanonicalFileName(useCaseSensitiveFileNames); return nonPollingWatchFile; function nonPollingWatchFile(fileName, callback, _pollingInterval, fallbackOptions) { var filePath = toCanonicalName(fileName); fileWatcherCallbacks.add(filePath, callback); var dirPath = ts.getDirectoryPath(filePath) || "."; var watcher = dirWatchers.get(dirPath) || createDirectoryWatcher(ts.getDirectoryPath(fileName) || ".", dirPath, fallbackOptions); watcher.referenceCount++; return { close: function () { if (watcher.referenceCount === 1) { watcher.close(); dirWatchers.delete(dirPath); } else { watcher.referenceCount--; } fileWatcherCallbacks.remove(filePath, callback); } }; } function createDirectoryWatcher(dirName, dirPath, fallbackOptions) { var watcher = fsWatch(dirName, 1 /* FileSystemEntryKind.Directory */, function (_eventName, relativeFileName) { // When files are deleted from disk, the triggered "rename" event would have a relativefileName of "undefined" if (!ts.isString(relativeFileName)) return; var fileName = ts.getNormalizedAbsolutePath(relativeFileName, dirName); // Some applications save a working file via rename operations var callbacks = fileName && fileWatcherCallbacks.get(toCanonicalName(fileName)); if (callbacks) { for (var _i = 0, callbacks_1 = callbacks; _i < callbacks_1.length; _i++) { var fileCallback = callbacks_1[_i]; fileCallback(fileName, FileWatcherEventKind.Changed); } } }, /*recursive*/ false, PollingInterval.Medium, fallbackOptions); watcher.referenceCount = 0; dirWatchers.set(dirPath, watcher); return watcher; } } function createFixedChunkSizePollingWatchFile(host) { var watchedFiles = []; var pollIndex = 0; var pollScheduled; return watchFile; function watchFile(fileName, callback) { var file = { fileName: fileName, callback: callback, mtime: getModifiedTime(host, fileName) }; watchedFiles.push(file); scheduleNextPoll(); return { close: function () { file.isClosed = true; ts.unorderedRemoveItem(watchedFiles, file); } }; } function pollQueue() { pollScheduled = undefined; pollIndex = pollWatchedFileQueue(host, watchedFiles, pollIndex, pollingChunkSize[PollingInterval.Low]); scheduleNextPoll(); } function scheduleNextPoll() { if (!watchedFiles.length || pollScheduled) return; pollScheduled = host.setTimeout(pollQueue, PollingInterval.High); } } /* @internal */ function createSingleFileWatcherPerName(watchFile, useCaseSensitiveFileNames) { var cache = new ts.Map(); var callbacksCache = ts.createMultiMap(); var toCanonicalFileName = ts.createGetCanonicalFileName(useCaseSensitiveFileNames); return function (fileName, callback, pollingInterval, options) { var path = toCanonicalFileName(fileName); var existing = cache.get(path); if (existing) { existing.refCount++; } else { cache.set(path, { watcher: watchFile(fileName, function (fileName, eventKind) { return ts.forEach(callbacksCache.get(path), function (cb) { return cb(fileName, eventKind); }); }, pollingInterval, options), refCount: 1 }); } callbacksCache.add(path, callback); return { close: function () { var watcher = ts.Debug.checkDefined(cache.get(path)); callbacksCache.remove(path, callback); watcher.refCount--; if (watcher.refCount) return; cache.delete(path); ts.closeFileWatcherOf(watcher); } }; }; } ts.createSingleFileWatcherPerName = createSingleFileWatcherPerName; /** * Returns true if file status changed */ /*@internal*/ function onWatchedFileStat(watchedFile, modifiedTime) { var oldTime = watchedFile.mtime.getTime(); var newTime = modifiedTime.getTime(); if (oldTime !== newTime) { watchedFile.mtime = modifiedTime; watchedFile.callback(watchedFile.fileName, getFileWatcherEventKind(oldTime, newTime)); return true; } return false; } ts.onWatchedFileStat = onWatchedFileStat; /*@internal*/ function getFileWatcherEventKind(oldTime, newTime) { return oldTime === 0 ? FileWatcherEventKind.Created : newTime === 0 ? FileWatcherEventKind.Deleted : FileWatcherEventKind.Changed; } ts.getFileWatcherEventKind = getFileWatcherEventKind; /*@internal*/ ts.ignoredPaths = ["/node_modules/.", "/.git", "/.#"]; var curSysLog = ts.noop; // eslint-disable-line prefer-const /*@internal*/ function sysLog(s) { return curSysLog(s); } ts.sysLog = sysLog; /*@internal*/ function setSysLog(logger) { curSysLog = logger; } ts.setSysLog = setSysLog; /** * Watch the directory recursively using host provided method to watch child directories * that means if this is recursive watcher, watch the children directories as well * (eg on OS that dont support recursive watch using fs.watch use fs.watchFile) */ /*@internal*/ function createDirectoryWatcherSupportingRecursive(_a) { var watchDirectory = _a.watchDirectory, useCaseSensitiveFileNames = _a.useCaseSensitiveFileNames, getCurrentDirectory = _a.getCurrentDirectory, getAccessibleSortedChildDirectories = _a.getAccessibleSortedChildDirectories, directoryExists = _a.directoryExists, realpath = _a.realpath, setTimeout = _a.setTimeout, clearTimeout = _a.clearTimeout; var cache = new ts.Map(); var callbackCache = ts.createMultiMap(); var cacheToUpdateChildWatches = new ts.Map(); var timerToUpdateChildWatches; var filePathComparer = ts.getStringComparer(!useCaseSensitiveFileNames); var toCanonicalFilePath = ts.createGetCanonicalFileName(useCaseSensitiveFileNames); return function (dirName, callback, recursive, options) { return recursive ? createDirectoryWatcher(dirName, options, callback) : watchDirectory(dirName, callback, recursive, options); }; /** * Create the directory watcher for the dirPath. */ function createDirectoryWatcher(dirName, options, callback) { var dirPath = toCanonicalFilePath(dirName); var directoryWatcher = cache.get(dirPath); if (directoryWatcher) { directoryWatcher.refCount++; } else { directoryWatcher = { watcher: watchDirectory(dirName, function (fileName) { if (isIgnoredPath(fileName, options)) return; if (options === null || options === void 0 ? void 0 : options.synchronousWatchDirectory) { // Call the actual callback invokeCallbacks(dirPath, fileName); // Iterate through existing children and update the watches if needed updateChildWatches(dirName, dirPath, options); } else { nonSyncUpdateChildWatches(dirName, dirPath, fileName, options); } }, /*recursive*/ false, options), refCount: 1, childWatches: ts.emptyArray }; cache.set(dirPath, directoryWatcher); updateChildWatches(dirName, dirPath, options); } var callbackToAdd = callback && { dirName: dirName, callback: callback }; if (callbackToAdd) { callbackCache.add(dirPath, callbackToAdd); } return { dirName: dirName, close: function () { var directoryWatcher = ts.Debug.checkDefined(cache.get(dirPath)); if (callbackToAdd) callbackCache.remove(dirPath, callbackToAdd); directoryWatcher.refCount--; if (directoryWatcher.refCount) return; cache.delete(dirPath); ts.closeFileWatcherOf(directoryWatcher); directoryWatcher.childWatches.forEach(ts.closeFileWatcher); } }; } function invokeCallbacks(dirPath, fileNameOrInvokeMap, fileNames) { var fileName; var invokeMap; if (ts.isString(fileNameOrInvokeMap)) { fileName = fileNameOrInvokeMap; } else { invokeMap = fileNameOrInvokeMap; } // Call the actual callback callbackCache.forEach(function (callbacks, rootDirName) { var _a; if (invokeMap && invokeMap.get(rootDirName) === true) return; if (rootDirName === dirPath || (ts.startsWith(dirPath, rootDirName) && dirPath[rootDirName.length] === ts.directorySeparator)) { if (invokeMap) { if (fileNames) { var existing = invokeMap.get(rootDirName); if (existing) { (_a = existing).push.apply(_a, fileNames); } else { invokeMap.set(rootDirName, fileNames.slice()); } } else { invokeMap.set(rootDirName, true); } } else { callbacks.forEach(function (_a) { var callback = _a.callback; return callback(fileName); }); } } }); } function nonSyncUpdateChildWatches(dirName, dirPath, fileName, options) { // Iterate through existing children and update the watches if needed var parentWatcher = cache.get(dirPath); if (parentWatcher && directoryExists(dirName)) { // Schedule the update and postpone invoke for callbacks scheduleUpdateChildWatches(dirName, dirPath, fileName, options); return; } // Call the actual callbacks and remove child watches invokeCallbacks(dirPath, fileName); removeChildWatches(parentWatcher); } function scheduleUpdateChildWatches(dirName, dirPath, fileName, options) { var existing = cacheToUpdateChildWatches.get(dirPath); if (existing) { existing.fileNames.push(fileName); } else { cacheToUpdateChildWatches.set(dirPath, { dirName: dirName, options: options, fileNames: [fileName] }); } if (timerToUpdateChildWatches) { clearTimeout(timerToUpdateChildWatches); timerToUpdateChildWatches = undefined; } timerToUpdateChildWatches = setTimeout(onTimerToUpdateChildWatches, 1000); } function onTimerToUpdateChildWatches() { timerToUpdateChildWatches = undefined; sysLog("sysLog:: onTimerToUpdateChildWatches:: ".concat(cacheToUpdateChildWatches.size)); var start = ts.timestamp(); var invokeMap = new ts.Map(); while (!timerToUpdateChildWatches && cacheToUpdateChildWatches.size) { var result = cacheToUpdateChildWatches.entries().next(); ts.Debug.assert(!result.done); var _a = result.value, dirPath = _a[0], _b = _a[1], dirName = _b.dirName, options = _b.options, fileNames = _b.fileNames; cacheToUpdateChildWatches.delete(dirPath); // Because the child refresh is fresh, we would need to invalidate whole root directory being watched // to ensure that all the changes are reflected at this time var hasChanges = updateChildWatches(dirName, dirPath, options); invokeCallbacks(dirPath, invokeMap, hasChanges ? undefined : fileNames); } sysLog("sysLog:: invokingWatchers:: Elapsed:: ".concat(ts.timestamp() - start, "ms:: ").concat(cacheToUpdateChildWatches.size)); callbackCache.forEach(function (callbacks, rootDirName) { var existing = invokeMap.get(rootDirName); if (existing) { callbacks.forEach(function (_a) { var callback = _a.callback, dirName = _a.dirName; if (ts.isArray(existing)) { existing.forEach(callback); } else { callback(dirName); } }); } }); var elapsed = ts.timestamp() - start; sysLog("sysLog:: Elapsed:: ".concat(elapsed, "ms:: onTimerToUpdateChildWatches:: ").concat(cacheToUpdateChildWatches.size, " ").concat(timerToUpdateChildWatches)); } function removeChildWatches(parentWatcher) { if (!parentWatcher) return; var existingChildWatches = parentWatcher.childWatches; parentWatcher.childWatches = ts.emptyArray; for (var _i = 0, existingChildWatches_1 = existingChildWatches; _i < existingChildWatches_1.length; _i++) { var childWatcher = existingChildWatches_1[_i]; childWatcher.close(); removeChildWatches(cache.get(toCanonicalFilePath(childWatcher.dirName))); } } function updateChildWatches(parentDir, parentDirPath, options) { // Iterate through existing children and update the watches if needed var parentWatcher = cache.get(parentDirPath); if (!parentWatcher) return false; var newChildWatches; var hasChanges = ts.enumerateInsertsAndDeletes(directoryExists(parentDir) ? ts.mapDefined(getAccessibleSortedChildDirectories(parentDir), function (child) { var childFullName = ts.getNormalizedAbsolutePath(child, parentDir); // Filter our the symbolic link directories since those arent included in recursive watch // which is same behaviour when recursive: true is passed to fs.watch return !isIgnoredPath(childFullName, options) && filePathComparer(childFullName, ts.normalizePath(realpath(childFullName))) === 0 /* Comparison.EqualTo */ ? childFullName : undefined; }) : ts.emptyArray, parentWatcher.childWatches, function (child, childWatcher) { return filePathComparer(child, childWatcher.dirName); }, createAndAddChildDirectoryWatcher, ts.closeFileWatcher, addChildDirectoryWatcher); parentWatcher.childWatches = newChildWatches || ts.emptyArray; return hasChanges; /** * Create new childDirectoryWatcher and add it to the new ChildDirectoryWatcher list */ function createAndAddChildDirectoryWatcher(childName) { var result = createDirectoryWatcher(childName, options); addChildDirectoryWatcher(result); } /** * Add child directory watcher to the new ChildDirectoryWatcher list */ function addChildDirectoryWatcher(childWatcher) { (newChildWatches || (newChildWatches = [])).push(childWatcher); } } function isIgnoredPath(path, options) { return ts.some(ts.ignoredPaths, function (searchPath) { return isInPath(path, searchPath); }) || isIgnoredByWatchOptions(path, options, useCaseSensitiveFileNames, getCurrentDirectory); } function isInPath(path, searchPath) { if (ts.stringContains(path, searchPath)) return true; if (useCaseSensitiveFileNames) return false; return ts.stringContains(toCanonicalFilePath(path), searchPath); } } ts.createDirectoryWatcherSupportingRecursive = createDirectoryWatcherSupportingRecursive; /*@internal*/ var FileSystemEntryKind; (function (FileSystemEntryKind) { FileSystemEntryKind[FileSystemEntryKind["File"] = 0] = "File"; FileSystemEntryKind[FileSystemEntryKind["Directory"] = 1] = "Directory"; })(FileSystemEntryKind = ts.FileSystemEntryKind || (ts.FileSystemEntryKind = {})); /*@internal*/ function createFileWatcherCallback(callback) { return function (_fileName, eventKind) { return callback(eventKind === FileWatcherEventKind.Changed ? "change" : "rename", ""); }; } ts.createFileWatcherCallback = createFileWatcherCallback; function createFsWatchCallbackForFileWatcherCallback(fileName, callback, fileExists) { return function (eventName) { if (eventName === "rename") { callback(fileName, fileExists(fileName) ? FileWatcherEventKind.Created : FileWatcherEventKind.Deleted); } else { // Change callback(fileName, FileWatcherEventKind.Changed); } }; } function isIgnoredByWatchOptions(pathToCheck, options, useCaseSensitiveFileNames, getCurrentDirectory) { return ((options === null || options === void 0 ? void 0 : options.excludeDirectories) || (options === null || options === void 0 ? void 0 : options.excludeFiles)) && (ts.matchesExclude(pathToCheck, options === null || options === void 0 ? void 0 : options.excludeFiles, useCaseSensitiveFileNames, getCurrentDirectory()) || ts.matchesExclude(pathToCheck, options === null || options === void 0 ? void 0 : options.excludeDirectories, useCaseSensitiveFileNames, getCurrentDirectory())); } function createFsWatchCallbackForDirectoryWatcherCallback(directoryName, callback, options, useCaseSensitiveFileNames, getCurrentDirectory) { return function (eventName, relativeFileName) { // In watchDirectory we only care about adding and removing files (when event name is // "rename"); changes made within files are handled by corresponding fileWatchers (when // event name is "change") if (eventName === "rename") { // When deleting a file, the passed baseFileName is null var fileName = !relativeFileName ? directoryName : ts.normalizePath(ts.combinePaths(directoryName, relativeFileName)); if (!relativeFileName || !isIgnoredByWatchOptions(fileName, options, useCaseSensitiveFileNames, getCurrentDirectory)) { callback(fileName); } } }; } /*@internal*/ function createSystemWatchFunctions(_a) { var pollingWatchFile = _a.pollingWatchFile, getModifiedTime = _a.getModifiedTime, setTimeout = _a.setTimeout, clearTimeout = _a.clearTimeout, fsWatch = _a.fsWatch, fileExists = _a.fileExists, useCaseSensitiveFileNames = _a.useCaseSensitiveFileNames, getCurrentDirectory = _a.getCurrentDirectory, fsSupportsRecursiveFsWatch = _a.fsSupportsRecursiveFsWatch, directoryExists = _a.directoryExists, getAccessibleSortedChildDirectories = _a.getAccessibleSortedChildDirectories, realpath = _a.realpath, tscWatchFile = _a.tscWatchFile, useNonPollingWatchers = _a.useNonPollingWatchers, tscWatchDirectory = _a.tscWatchDirectory, defaultWatchFileKind = _a.defaultWatchFileKind; var dynamicPollingWatchFile; var fixedChunkSizePollingWatchFile; var nonPollingWatchFile; var hostRecursiveDirectoryWatcher; return { watchFile: watchFile, watchDirectory: watchDirectory }; function watchFile(fileName, callback, pollingInterval, options) { options = updateOptionsForWatchFile(options, useNonPollingWatchers); var watchFileKind = ts.Debug.checkDefined(options.watchFile); switch (watchFileKind) { case ts.WatchFileKind.FixedPollingInterval: return pollingWatchFile(fileName, callback, PollingInterval.Low, /*options*/ undefined); case ts.WatchFileKind.PriorityPollingInterval: return pollingWatchFile(fileName, callback, pollingInterval, /*options*/ undefined); case ts.WatchFileKind.DynamicPriorityPolling: return ensureDynamicPollingWatchFile()(fileName, callback, pollingInterval, /*options*/ undefined); case ts.WatchFileKind.FixedChunkSizePolling: return ensureFixedChunkSizePollingWatchFile()(fileName, callback, /* pollingInterval */ undefined, /*options*/ undefined); case ts.WatchFileKind.UseFsEvents: return fsWatch(fileName, 0 /* FileSystemEntryKind.File */, createFsWatchCallbackForFileWatcherCallback(fileName, callback, fileExists), /*recursive*/ false, pollingInterval, ts.getFallbackOptions(options)); case ts.WatchFileKind.UseFsEventsOnParentDirectory: if (!nonPollingWatchFile) { nonPollingWatchFile = createUseFsEventsOnParentDirectoryWatchFile(fsWatch, useCaseSensitiveFileNames); } return nonPollingWatchFile(fileName, callback, pollingInterval, ts.getFallbackOptions(options)); default: ts.Debug.assertNever(watchFileKind); } } function ensureDynamicPollingWatchFile() { return dynamicPollingWatchFile || (dynamicPollingWatchFile = createDynamicPriorityPollingWatchFile({ getModifiedTime: getModifiedTime, setTimeout: setTimeout })); } function ensureFixedChunkSizePollingWatchFile() { return fixedChunkSizePollingWatchFile || (fixedChunkSizePollingWatchFile = createFixedChunkSizePollingWatchFile({ getModifiedTime: getModifiedTime, setTimeout: setTimeout })); } function updateOptionsForWatchFile(options, useNonPollingWatchers) { if (options && options.watchFile !== undefined) return options; switch (tscWatchFile) { case "PriorityPollingInterval": // Use polling interval based on priority when create watch using host.watchFile return { watchFile: ts.WatchFileKind.PriorityPollingInterval }; case "DynamicPriorityPolling": // Use polling interval but change the interval depending on file changes and their default polling interval return { watchFile: ts.WatchFileKind.DynamicPriorityPolling }; case "UseFsEvents": // Use notifications from FS to watch with falling back to fs.watchFile return generateWatchFileOptions(ts.WatchFileKind.UseFsEvents, ts.PollingWatchKind.PriorityInterval, options); case "UseFsEventsWithFallbackDynamicPolling": // Use notifications from FS to watch with falling back to dynamic watch file return generateWatchFileOptions(ts.WatchFileKind.UseFsEvents, ts.PollingWatchKind.DynamicPriority, options); case "UseFsEventsOnParentDirectory": useNonPollingWatchers = true; // fall through default: return useNonPollingWatchers ? // Use notifications from FS to watch with falling back to fs.watchFile generateWatchFileOptions(ts.WatchFileKind.UseFsEventsOnParentDirectory, ts.PollingWatchKind.PriorityInterval, options) : // Default to do not use fixed polling interval { watchFile: (defaultWatchFileKind === null || defaultWatchFileKind === void 0 ? void 0 : defaultWatchFileKind()) || ts.WatchFileKind.FixedPollingInterval }; } } function generateWatchFileOptions(watchFile, fallbackPolling, options) { var defaultFallbackPolling = options === null || options === void 0 ? void 0 : options.fallbackPolling; return { watchFile: watchFile, fallbackPolling: defaultFallbackPolling === undefined ? fallbackPolling : defaultFallbackPolling }; } function watchDirectory(directoryName, callback, recursive, options) { if (fsSupportsRecursiveFsWatch) { return fsWatch(directoryName, 1 /* FileSystemEntryKind.Directory */, createFsWatchCallbackForDirectoryWatcherCallback(directoryName, callback, options, useCaseSensitiveFileNames, getCurrentDirectory), recursive, PollingInterval.Medium, ts.getFallbackOptions(options)); } if (!hostRecursiveDirectoryWatcher) { hostRecursiveDirectoryWatcher = createDirectoryWatcherSupportingRecursive({ useCaseSensitiveFileNames: useCaseSensitiveFileNames, getCurrentDirectory: getCurrentDirectory, directoryExists: directoryExists, getAccessibleSortedChildDirectories: getAccessibleSortedChildDirectories, watchDirectory: nonRecursiveWatchDirectory, realpath: realpath, setTimeout: setTimeout, clearTimeout: clearTimeout }); } return hostRecursiveDirectoryWatcher(directoryName, callback, recursive, options); } function nonRecursiveWatchDirectory(directoryName, callback, recursive, options) { ts.Debug.assert(!recursive); var watchDirectoryOptions = updateOptionsForWatchDirectory(options); var watchDirectoryKind = ts.Debug.checkDefined(watchDirectoryOptions.watchDirectory); switch (watchDirectoryKind) { case ts.WatchDirectoryKind.FixedPollingInterval: return pollingWatchFile(directoryName, function () { return callback(directoryName); }, PollingInterval.Medium, /*options*/ undefined); case ts.WatchDirectoryKind.DynamicPriorityPolling: return ensureDynamicPollingWatchFile()(directoryName, function () { return callback(directoryName); }, PollingInterval.Medium, /*options*/ undefined); case ts.WatchDirectoryKind.FixedChunkSizePolling: return ensureFixedChunkSizePollingWatchFile()(directoryName, function () { return callback(directoryName); }, /* pollingInterval */ undefined, /*options*/ undefined); case ts.WatchDirectoryKind.UseFsEvents: return fsWatch(directoryName, 1 /* FileSystemEntryKind.Directory */, createFsWatchCallbackForDirectoryWatcherCallback(directoryName, callback, options, useCaseSensitiveFileNames, getCurrentDirectory), recursive, PollingInterval.Medium, ts.getFallbackOptions(watchDirectoryOptions)); default: ts.Debug.assertNever(watchDirectoryKind); } } function updateOptionsForWatchDirectory(options) { if (options && options.watchDirectory !== undefined) return options; switch (tscWatchDirectory) { case "RecursiveDirectoryUsingFsWatchFile": // Use polling interval based on priority when create watch using host.watchFile return { watchDirectory: ts.WatchDirectoryKind.FixedPollingInterval }; case "RecursiveDirectoryUsingDynamicPriorityPolling": // Use polling interval but change the interval depending on file changes and their default polling interval return { watchDirectory: ts.WatchDirectoryKind.DynamicPriorityPolling }; default: var defaultFallbackPolling = options === null || options === void 0 ? void 0 : options.fallbackPolling; return { watchDirectory: ts.WatchDirectoryKind.UseFsEvents, fallbackPolling: defaultFallbackPolling !== undefined ? defaultFallbackPolling : undefined }; } } } ts.createSystemWatchFunctions = createSystemWatchFunctions; /** * patch writefile to create folder before writing the file */ /*@internal*/ function patchWriteFileEnsuringDirectory(sys) { // patch writefile to create folder before writing the file var originalWriteFile = sys.writeFile; sys.writeFile = function (path, data, writeBom) { return ts.writeFileEnsuringDirectories(path, data, !!writeBom, function (path, data, writeByteOrderMark) { return originalWriteFile.call(sys, path, data, writeByteOrderMark); }, function (path) { return sys.createDirectory(path); }, function (path) { return sys.directoryExists(path); }); }; } ts.patchWriteFileEnsuringDirectory = patchWriteFileEnsuringDirectory; function getNodeMajorVersion() { if (typeof process === "undefined") { return undefined; } var version = process.version; if (!version) { return undefined; } var dot = version.indexOf("."); if (dot === -1) { return undefined; } return parseInt(version.substring(1, dot)); } ts.getNodeMajorVersion = getNodeMajorVersion; // TODO: GH#18217 this is used as if it's certainly defined in many places. // eslint-disable-next-line prefer-const ts.sys = (function () { // NodeJS detects "\uFEFF" at the start of the string and *replaces* it with the actual // byte order mark from the specified encoding. Using any other byte order mark does // not actually work. var byteOrderMarkIndicator = "\uFEFF"; function getNodeSystem() { var _a; var nativePattern = /^native |^\([^)]+\)$|^(internal[\\/]|[a-zA-Z0-9_\s]+(\.js)?$)/; var _fs = require("fs"); var _path = require("path"); var _os = require("os"); // crypto can be absent on reduced node installations var _crypto; try { _crypto = require("crypto"); } catch (_b) { _crypto = undefined; } var activeSession; var profilePath = "./profile.cpuprofile"; var hitSystemWatcherLimit = false; var Buffer = require("buffer").Buffer; var nodeVersion = getNodeMajorVersion(); var isNode4OrLater = nodeVersion >= 4; var isLinuxOrMacOs = process.platform === "linux" || process.platform === "darwin"; var platform = _os.platform(); var useCaseSensitiveFileNames = isFileSystemCaseSensitive(); var realpathSync = (_a = _fs.realpathSync.native) !== null && _a !== void 0 ? _a : _fs.realpathSync; var fsSupportsRecursiveFsWatch = isNode4OrLater && (process.platform === "win32" || process.platform === "darwin"); var getCurrentDirectory = ts.memoize(function () { return process.cwd(); }); var _c = createSystemWatchFunctions({ pollingWatchFile: createSingleFileWatcherPerName(fsWatchFileWorker, useCaseSensitiveFileNames), getModifiedTime: getModifiedTime, setTimeout: setTimeout, clearTimeout: clearTimeout, fsWatch: fsWatch, useCaseSensitiveFileNames: useCaseSensitiveFileNames, getCurrentDirectory: getCurrentDirectory, fileExists: fileExists, // Node 4.0 `fs.watch` function supports the "recursive" option on both OSX and Windows // (ref: https://github.com/nodejs/node/pull/2649 and https://github.com/Microsoft/TypeScript/issues/4643) fsSupportsRecursiveFsWatch: fsSupportsRecursiveFsWatch, directoryExists: directoryExists, getAccessibleSortedChildDirectories: function (path) { return getAccessibleFileSystemEntries(path).directories; }, realpath: realpath, tscWatchFile: process.env.TSC_WATCHFILE, useNonPollingWatchers: process.env.TSC_NONPOLLING_WATCHER, tscWatchDirectory: process.env.TSC_WATCHDIRECTORY, defaultWatchFileKind: function () { var _a, _b; return (_b = (_a = sys).defaultWatchFileKind) === null || _b === void 0 ? void 0 : _b.call(_a); }, }), watchFile = _c.watchFile, watchDirectory = _c.watchDirectory; var nodeSystem = { args: process.argv.slice(2), newLine: _os.EOL, useCaseSensitiveFileNames: useCaseSensitiveFileNames, write: function (s) { process.stdout.write(s); }, getWidthOfTerminal: function () { return process.stdout.columns; }, writeOutputIsTTY: function () { return process.stdout.isTTY; }, readFile: readFile, writeFile: writeFile, watchFile: watchFile, watchDirectory: watchDirectory, resolvePath: function (path) { return _path.resolve(path); }, fileExists: fileExists, directoryExists: directoryExists, createDirectory: function (directoryName) { if (!nodeSystem.directoryExists(directoryName)) { // Wrapped in a try-catch to prevent crashing if we are in a race // with another copy of ourselves to create the same directory try { _fs.mkdirSync(directoryName); } catch (e) { if (e.code !== "EEXIST") { // Failed for some other reason (access denied?); still throw throw e; } } } }, getExecutingFilePath: function () { return __filename; }, getCurrentDirectory: getCurrentDirectory, getDirectories: getDirectories, getEnvironmentVariable: function (name) { return process.env[name] || ""; }, readDirectory: readDirectory, getModifiedTime: getModifiedTime, setModifiedTime: setModifiedTime, deleteFile: deleteFile, createHash: _crypto ? createSHA256Hash : generateDjb2Hash, createSHA256Hash: _crypto ? createSHA256Hash : undefined, getMemoryUsage: function () { if (global.gc) { global.gc(); } return process.memoryUsage().heapUsed; }, getFileSize: function (path) { try { var stat = statSync(path); if (stat === null || stat === void 0 ? void 0 : stat.isFile()) { return stat.size; } } catch ( /*ignore*/_a) { /*ignore*/ } return 0; }, exit: function (exitCode) { disableCPUProfiler(function () { return process.exit(exitCode); }); }, enableCPUProfiler: enableCPUProfiler, disableCPUProfiler: disableCPUProfiler, cpuProfilingEnabled: function () { return !!activeSession || ts.contains(process.execArgv, "--cpu-prof") || ts.contains(process.execArgv, "--prof"); }, realpath: realpath, debugMode: !!process.env.NODE_INSPECTOR_IPC || !!process.env.VSCODE_INSPECTOR_OPTIONS || ts.some(process.execArgv, function (arg) { return /^--(inspect|debug)(-brk)?(=\d+)?$/i.test(arg); }), tryEnableSourceMapsForHost: function () { try { require("source-map-support").install(); } catch (_a) { // Could not enable source maps. } }, setTimeout: setTimeout, clearTimeout: clearTimeout, clearScreen: function () { process.stdout.write("\x1Bc"); }, setBlocking: function () { if (process.stdout && process.stdout._handle && process.stdout._handle.setBlocking) { process.stdout._handle.setBlocking(true); } }, bufferFrom: bufferFrom, base64decode: function (input) { return bufferFrom(input, "base64").toString("utf8"); }, base64encode: function (input) { return bufferFrom(input).toString("base64"); }, require: function (baseDir, moduleName) { try { var modulePath = ts.resolveJSModule(moduleName, baseDir, nodeSystem); return { module: require(modulePath), modulePath: modulePath, error: undefined }; } catch (error) { return { module: undefined, modulePath: undefined, error: error }; } } }; return nodeSystem; /** * `throwIfNoEntry` was added so recently that it's not in the node types. * This helper encapsulates the mitigating usage of `any`. * See https://github.com/nodejs/node/pull/33716 */ function statSync(path) { // throwIfNoEntry will be ignored by older versions of node return _fs.statSync(path, { throwIfNoEntry: false }); } /** * Uses the builtin inspector APIs to capture a CPU profile * See https://nodejs.org/api/inspector.html#inspector_example_usage for details */ function enableCPUProfiler(path, cb) { if (activeSession) { cb(); return false; } var inspector = require("inspector"); if (!inspector || !inspector.Session) { cb(); return false; } var session = new inspector.Session(); session.connect(); session.post("Profiler.enable", function () { session.post("Profiler.start", function () { activeSession = session; profilePath = path; cb(); }); }); return true; } /** * Strips non-TS paths from the profile, so users with private projects shouldn't * need to worry about leaking paths by submitting a cpu profile to us */ function cleanupPaths(profile) { var externalFileCounter = 0; var remappedPaths = new ts.Map(); var normalizedDir = ts.normalizeSlashes(__dirname); // Windows rooted dir names need an extra `/` prepended to be valid file:/// urls var fileUrlRoot = "file://".concat(ts.getRootLength(normalizedDir) === 1 ? "" : "/").concat(normalizedDir); for (var _i = 0, _a = profile.nodes; _i < _a.length; _i++) { var node = _a[_i]; if (node.callFrame.url) { var url = ts.normalizeSlashes(node.callFrame.url); if (ts.containsPath(fileUrlRoot, url, useCaseSensitiveFileNames)) { node.callFrame.url = ts.getRelativePathToDirectoryOrUrl(fileUrlRoot, url, fileUrlRoot, ts.createGetCanonicalFileName(useCaseSensitiveFileNames), /*isAbsolutePathAnUrl*/ true); } else if (!nativePattern.test(url)) { node.callFrame.url = (remappedPaths.has(url) ? remappedPaths : remappedPaths.set(url, "external".concat(externalFileCounter, ".js"))).get(url); externalFileCounter++; } } } return profile; } function disableCPUProfiler(cb) { if (activeSession && activeSession !== "stopping") { var s_1 = activeSession; activeSession.post("Profiler.stop", function (err, _a) { var _b; var profile = _a.profile; if (!err) { try { if ((_b = statSync(profilePath)) === null || _b === void 0 ? void 0 : _b.isDirectory()) { profilePath = _path.join(profilePath, "".concat((new Date()).toISOString().replace(/:/g, "-"), "+P").concat(process.pid, ".cpuprofile")); } } catch (_c) { // do nothing and ignore fallible fs operation } try { _fs.mkdirSync(_path.dirname(profilePath), { recursive: true }); } catch (_d) { // do nothing and ignore fallible fs operation } _fs.writeFileSync(profilePath, JSON.stringify(cleanupPaths(profile))); } activeSession = undefined; s_1.disconnect(); cb(); }); activeSession = "stopping"; return true; } else { cb(); return false; } } function bufferFrom(input, encoding) { // See https://github.com/Microsoft/TypeScript/issues/25652 return Buffer.from && Buffer.from !== Int8Array.from ? Buffer.from(input, encoding) : new Buffer(input, encoding); } function isFileSystemCaseSensitive() { // win32\win64 are case insensitive platforms if (platform === "win32" || platform === "win64") { return false; } // If this file exists under a different case, we must be case-insensitve. return !fileExists(swapCase(__filename)); } /** Convert all lowercase chars to uppercase, and vice-versa */ function swapCase(s) { return s.replace(/\w/g, function (ch) { var up = ch.toUpperCase(); return ch === up ? ch.toLowerCase() : up; }); } function fsWatchFileWorker(fileName, callback, pollingInterval) { _fs.watchFile(fileName, { persistent: true, interval: pollingInterval }, fileChanged); var eventKind; return { close: function () { return _fs.unwatchFile(fileName, fileChanged); } }; function fileChanged(curr, prev) { // previous event kind check is to ensure we recongnize the file as previously also missing when it is restored or renamed twice (that is it disappears and reappears) // In such case, prevTime returned is same as prev time of event when file was deleted as per node documentation var isPreviouslyDeleted = +prev.mtime === 0 || eventKind === FileWatcherEventKind.Deleted; if (+curr.mtime === 0) { if (isPreviouslyDeleted) { // Already deleted file, no need to callback again return; } eventKind = FileWatcherEventKind.Deleted; } else if (isPreviouslyDeleted) { eventKind = FileWatcherEventKind.Created; } // If there is no change in modified time, ignore the event else if (+curr.mtime === +prev.mtime) { return; } else { // File changed eventKind = FileWatcherEventKind.Changed; } callback(fileName, eventKind); } } function fsWatch(fileOrDirectory, entryKind, callback, recursive, fallbackPollingInterval, fallbackOptions) { var options; var lastDirectoryPartWithDirectorySeparator; var lastDirectoryPart; if (isLinuxOrMacOs) { lastDirectoryPartWithDirectorySeparator = fileOrDirectory.substr(fileOrDirectory.lastIndexOf(ts.directorySeparator)); lastDirectoryPart = lastDirectoryPartWithDirectorySeparator.slice(ts.directorySeparator.length); } /** Watcher for the file system entry depending on whether it is missing or present */ var watcher = !fileSystemEntryExists(fileOrDirectory, entryKind) ? watchMissingFileSystemEntry() : watchPresentFileSystemEntry(); return { close: function () { // Close the watcher (either existing file system entry watcher or missing file system entry watcher) watcher.close(); watcher = undefined; } }; /** * Invoke the callback with rename and update the watcher if not closed * @param createWatcher */ function invokeCallbackAndUpdateWatcher(createWatcher) { sysLog("sysLog:: ".concat(fileOrDirectory, ":: Changing watcher to ").concat(createWatcher === watchPresentFileSystemEntry ? "Present" : "Missing", "FileSystemEntryWatcher")); // Call the callback for current directory callback("rename", ""); // If watcher is not closed, update it if (watcher) { watcher.close(); watcher = createWatcher(); } } /** * Watch the file or directory that is currently present * and when the watched file or directory is deleted, switch to missing file system entry watcher */ function watchPresentFileSystemEntry() { // Node 4.0 `fs.watch` function supports the "recursive" option on both OSX and Windows // (ref: https://github.com/nodejs/node/pull/2649 and https://github.com/Microsoft/TypeScript/issues/4643) if (options === undefined) { if (fsSupportsRecursiveFsWatch) { options = { persistent: true, recursive: !!recursive }; } else { options = { persistent: true }; } } if (hitSystemWatcherLimit) { sysLog("sysLog:: ".concat(fileOrDirectory, ":: Defaulting to fsWatchFile")); return watchPresentFileSystemEntryWithFsWatchFile(); } try { var presentWatcher = _fs.watch(fileOrDirectory, options, isLinuxOrMacOs ? callbackChangingToMissingFileSystemEntry : callback); // Watch the missing file or directory or error presentWatcher.on("error", function () { return invokeCallbackAndUpdateWatcher(watchMissingFileSystemEntry); }); return presentWatcher; } catch (e) { // Catch the exception and use polling instead // Eg. on linux the number of watches are limited and one could easily exhaust watches and the exception ENOSPC is thrown when creating watcher at that point // so instead of throwing error, use fs.watchFile hitSystemWatcherLimit || (hitSystemWatcherLimit = e.code === "ENOSPC"); sysLog("sysLog:: ".concat(fileOrDirectory, ":: Changing to fsWatchFile")); return watchPresentFileSystemEntryWithFsWatchFile(); } } function callbackChangingToMissingFileSystemEntry(event, relativeName) { // because relativeName is not guaranteed to be correct we need to check on each rename with few combinations // Eg on ubuntu while watching app/node_modules the relativeName is "node_modules" which is neither relative nor full path return event === "rename" && (!relativeName || relativeName === lastDirectoryPart || (relativeName.lastIndexOf(lastDirectoryPartWithDirectorySeparator) !== -1 && relativeName.lastIndexOf(lastDirectoryPartWithDirectorySeparator) === relativeName.length - lastDirectoryPartWithDirectorySeparator.length)) && !fileSystemEntryExists(fileOrDirectory, entryKind) ? invokeCallbackAndUpdateWatcher(watchMissingFileSystemEntry) : callback(event, relativeName); } /** * Watch the file or directory using fs.watchFile since fs.watch threw exception * Eg. on linux the number of watches are limited and one could easily exhaust watches and the exception ENOSPC is thrown when creating watcher at that point */ function watchPresentFileSystemEntryWithFsWatchFile() { return watchFile(fileOrDirectory, createFileWatcherCallback(callback), fallbackPollingInterval, fallbackOptions); } /** * Watch the file or directory that is missing * and switch to existing file or directory when the missing filesystem entry is created */ function watchMissingFileSystemEntry() { return watchFile(fileOrDirectory, function (_fileName, eventKind) { if (eventKind === FileWatcherEventKind.Created && fileSystemEntryExists(fileOrDirectory, entryKind)) { // Call the callback for current file or directory // For now it could be callback for the inner directory creation, // but just return current directory, better than current no-op invokeCallbackAndUpdateWatcher(watchPresentFileSystemEntry); } }, fallbackPollingInterval, fallbackOptions); } } function readFileWorker(fileName, _encoding) { var buffer; try { buffer = _fs.readFileSync(fileName); } catch (e) { return undefined; } var len = buffer.length; if (len >= 2 && buffer[0] === 0xFE && buffer[1] === 0xFF) { // Big endian UTF-16 byte order mark detected. Since big endian is not supported by node.js, // flip all byte pairs and treat as little endian. len &= ~1; // Round down to a multiple of 2 for (var i = 0; i < len; i += 2) { var temp = buffer[i]; buffer[i] = buffer[i + 1]; buffer[i + 1] = temp; } return buffer.toString("utf16le", 2); } if (len >= 2 && buffer[0] === 0xFF && buffer[1] === 0xFE) { // Little endian UTF-16 byte order mark detected return buffer.toString("utf16le", 2); } if (len >= 3 && buffer[0] === 0xEF && buffer[1] === 0xBB && buffer[2] === 0xBF) { // UTF-8 byte order mark detected return buffer.toString("utf8", 3); } // Default is UTF-8 with no byte order mark return buffer.toString("utf8"); } function readFile(fileName, _encoding) { ts.perfLogger.logStartReadFile(fileName); var file = readFileWorker(fileName, _encoding); ts.perfLogger.logStopReadFile(); return file; } function writeFile(fileName, data, writeByteOrderMark) { ts.perfLogger.logEvent("WriteFile: " + fileName); // If a BOM is required, emit one if (writeByteOrderMark) { data = byteOrderMarkIndicator + data; } var fd; try { fd = _fs.openSync(fileName, "w"); _fs.writeSync(fd, data, /*position*/ undefined, "utf8"); } finally { if (fd !== undefined) { _fs.closeSync(fd); } } } function getAccessibleFileSystemEntries(path) { ts.perfLogger.logEvent("ReadDir: " + (path || ".")); try { var entries = _fs.readdirSync(path || ".", { withFileTypes: true }); var files = []; var directories = []; for (var _i = 0, entries_1 = entries; _i < entries_1.length; _i++) { var dirent = entries_1[_i]; // withFileTypes is not supported before Node 10.10. var entry = typeof dirent === "string" ? dirent : dirent.name; // This is necessary because on some file system node fails to exclude // "." and "..". See https://github.com/nodejs/node/issues/4002 if (entry === "." || entry === "..") { continue; } var stat = void 0; if (typeof dirent === "string" || dirent.isSymbolicLink()) { var name = ts.combinePaths(path, entry); try { stat = statSync(name); if (!stat) { continue; } } catch (e) { continue; } } else { stat = dirent; } if (stat.isFile()) { files.push(entry); } else if (stat.isDirectory()) { directories.push(entry); } } files.sort(); directories.sort(); return { files: files, directories: directories }; } catch (e) { return ts.emptyFileSystemEntries; } } function readDirectory(path, extensions, excludes, includes, depth) { return ts.matchFiles(path, extensions, excludes, includes, useCaseSensitiveFileNames, process.cwd(), depth, getAccessibleFileSystemEntries, realpath); } function fileSystemEntryExists(path, entryKind) { // Since the error thrown by fs.statSync isn't used, we can avoid collecting a stack trace to improve // the CPU time performance. var originalStackTraceLimit = Error.stackTraceLimit; Error.stackTraceLimit = 0; try { var stat = statSync(path); if (!stat) { return false; } switch (entryKind) { case 0 /* FileSystemEntryKind.File */: return stat.isFile(); case 1 /* FileSystemEntryKind.Directory */: return stat.isDirectory(); default: return false; } } catch (e) { return false; } finally { Error.stackTraceLimit = originalStackTraceLimit; } } function fileExists(path) { return fileSystemEntryExists(path, 0 /* FileSystemEntryKind.File */); } function directoryExists(path) { return fileSystemEntryExists(path, 1 /* FileSystemEntryKind.Directory */); } function getDirectories(path) { return getAccessibleFileSystemEntries(path).directories.slice(); } function realpath(path) { try { return realpathSync(path); } catch (_a) { return path; } } function getModifiedTime(path) { var _a; try { return (_a = statSync(path)) === null || _a === void 0 ? void 0 : _a.mtime; } catch (e) { return undefined; } } function setModifiedTime(path, time) { try { _fs.utimesSync(path, time, time); } catch (e) { return; } } function deleteFile(path) { try { return _fs.unlinkSync(path); } catch (e) { return; } } function createSHA256Hash(data) { var hash = _crypto.createHash("sha256"); hash.update(data); return hash.digest("hex"); } } var sys; if (typeof process !== "undefined" && process.nextTick && !process.browser && typeof require !== "undefined") { // process and process.nextTick checks if current environment is node-like // process.browser check excludes webpack and browserify sys = getNodeSystem(); } if (sys) { // patch writefile to create folder before writing the file patchWriteFileEnsuringDirectory(sys); } return sys; })(); /*@internal*/ function setSys(s) { ts.sys = s; } ts.setSys = setSys; if (ts.sys && ts.sys.getEnvironmentVariable) { setCustomPollingValues(ts.sys); ts.Debug.setAssertionLevel(/^development$/i.test(ts.sys.getEnvironmentVariable("NODE_ENV")) ? 1 /* AssertionLevel.Normal */ : 0 /* AssertionLevel.None */); } if (ts.sys && ts.sys.debugMode) { ts.Debug.isDebugging = true; } })(ts || (ts = {})); /* @internal */ var ts; (function (ts) { /** * Internally, we represent paths as strings with '/' as the directory separator. * When we make system calls (eg: LanguageServiceHost.getDirectory()), * we expect the host to correctly handle paths in our specified format. */ ts.directorySeparator = "/"; ts.altDirectorySeparator = "\\"; var urlSchemeSeparator = "://"; var backslashRegExp = /\\/g; //// Path Tests /** * Determines whether a charCode corresponds to `/` or `\`. */ function isAnyDirectorySeparator(charCode) { return charCode === 47 /* CharacterCodes.slash */ || charCode === 92 /* CharacterCodes.backslash */; } ts.isAnyDirectorySeparator = isAnyDirectorySeparator; /** * Determines whether a path starts with a URL scheme (e.g. starts with `http://`, `ftp://`, `file://`, etc.). */ function isUrl(path) { return getEncodedRootLength(path) < 0; } ts.isUrl = isUrl; /** * Determines whether a path is an absolute disk path (e.g. starts with `/`, or a dos path * like `c:`, `c:\` or `c:/`). */ function isRootedDiskPath(path) { return getEncodedRootLength(path) > 0; } ts.isRootedDiskPath = isRootedDiskPath; /** * Determines whether a path consists only of a path root. */ function isDiskPathRoot(path) { var rootLength = getEncodedRootLength(path); return rootLength > 0 && rootLength === path.length; } ts.isDiskPathRoot = isDiskPathRoot; /** * Determines whether a path starts with an absolute path component (i.e. `/`, `c:/`, `file://`, etc.). * * ```ts * // POSIX * pathIsAbsolute("/path/to/file.ext") === true * // DOS * pathIsAbsolute("c:/path/to/file.ext") === true * // URL * pathIsAbsolute("file:///path/to/file.ext") === true * // Non-absolute * pathIsAbsolute("path/to/file.ext") === false * pathIsAbsolute("./path/to/file.ext") === false * ``` */ function pathIsAbsolute(path) { return getEncodedRootLength(path) !== 0; } ts.pathIsAbsolute = pathIsAbsolute; /** * Determines whether a path starts with a relative path component (i.e. `.` or `..`). */ function pathIsRelative(path) { return /^\.\.?($|[\\/])/.test(path); } ts.pathIsRelative = pathIsRelative; /** * Determines whether a path is neither relative nor absolute, e.g. "path/to/file". * Also known misleadingly as "non-relative". */ function pathIsBareSpecifier(path) { return !pathIsAbsolute(path) && !pathIsRelative(path); } ts.pathIsBareSpecifier = pathIsBareSpecifier; function hasExtension(fileName) { return ts.stringContains(getBaseFileName(fileName), "."); } ts.hasExtension = hasExtension; function fileExtensionIs(path, extension) { return path.length > extension.length && ts.endsWith(path, extension); } ts.fileExtensionIs = fileExtensionIs; function fileExtensionIsOneOf(path, extensions) { for (var _i = 0, extensions_1 = extensions; _i < extensions_1.length; _i++) { var extension = extensions_1[_i]; if (fileExtensionIs(path, extension)) { return true; } } return false; } ts.fileExtensionIsOneOf = fileExtensionIsOneOf; /** * Determines whether a path has a trailing separator (`/` or `\\`). */ function hasTrailingDirectorySeparator(path) { return path.length > 0 && isAnyDirectorySeparator(path.charCodeAt(path.length - 1)); } ts.hasTrailingDirectorySeparator = hasTrailingDirectorySeparator; //// Path Parsing function isVolumeCharacter(charCode) { return (charCode >= 97 /* CharacterCodes.a */ && charCode <= 122 /* CharacterCodes.z */) || (charCode >= 65 /* CharacterCodes.A */ && charCode <= 90 /* CharacterCodes.Z */); } function getFileUrlVolumeSeparatorEnd(url, start) { var ch0 = url.charCodeAt(start); if (ch0 === 58 /* CharacterCodes.colon */) return start + 1; if (ch0 === 37 /* CharacterCodes.percent */ && url.charCodeAt(start + 1) === 51 /* CharacterCodes._3 */) { var ch2 = url.charCodeAt(start + 2); if (ch2 === 97 /* CharacterCodes.a */ || ch2 === 65 /* CharacterCodes.A */) return start + 3; } return -1; } /** * Returns length of the root part of a path or URL (i.e. length of "/", "x:/", "//server/share/, file:///user/files"). * If the root is part of a URL, the twos-complement of the root length is returned. */ function getEncodedRootLength(path) { if (!path) return 0; var ch0 = path.charCodeAt(0); // POSIX or UNC if (ch0 === 47 /* CharacterCodes.slash */ || ch0 === 92 /* CharacterCodes.backslash */) { if (path.charCodeAt(1) !== ch0) return 1; // POSIX: "/" (or non-normalized "\") var p1 = path.indexOf(ch0 === 47 /* CharacterCodes.slash */ ? ts.directorySeparator : ts.altDirectorySeparator, 2); if (p1 < 0) return path.length; // UNC: "//server" or "\\server" return p1 + 1; // UNC: "//server/" or "\\server\" } // DOS if (isVolumeCharacter(ch0) && path.charCodeAt(1) === 58 /* CharacterCodes.colon */) { var ch2 = path.charCodeAt(2); if (ch2 === 47 /* CharacterCodes.slash */ || ch2 === 92 /* CharacterCodes.backslash */) return 3; // DOS: "c:/" or "c:\" if (path.length === 2) return 2; // DOS: "c:" (but not "c:d") } // URL var schemeEnd = path.indexOf(urlSchemeSeparator); if (schemeEnd !== -1) { var authorityStart = schemeEnd + urlSchemeSeparator.length; var authorityEnd = path.indexOf(ts.directorySeparator, authorityStart); if (authorityEnd !== -1) { // URL: "file:///", "file://server/", "file://server/path" // For local "file" URLs, include the leading DOS volume (if present). // Per https://www.ietf.org/rfc/rfc1738.txt, a host of "" or "localhost" is a // special case interpreted as "the machine from which the URL is being interpreted". var scheme = path.slice(0, schemeEnd); var authority = path.slice(authorityStart, authorityEnd); if (scheme === "file" && (authority === "" || authority === "localhost") && isVolumeCharacter(path.charCodeAt(authorityEnd + 1))) { var volumeSeparatorEnd = getFileUrlVolumeSeparatorEnd(path, authorityEnd + 2); if (volumeSeparatorEnd !== -1) { if (path.charCodeAt(volumeSeparatorEnd) === 47 /* CharacterCodes.slash */) { // URL: "file:///c:/", "file://localhost/c:/", "file:///c%3a/", "file://localhost/c%3a/" return ~(volumeSeparatorEnd + 1); } if (volumeSeparatorEnd === path.length) { // URL: "file:///c:", "file://localhost/c:", "file:///c$3a", "file://localhost/c%3a" // but not "file:///c:d" or "file:///c%3ad" return ~volumeSeparatorEnd; } } } return ~(authorityEnd + 1); // URL: "file://server/", "http://server/" } return ~path.length; // URL: "file://server", "http://server" } // relative return 0; } /** * Returns length of the root part of a path or URL (i.e. length of "/", "x:/", "//server/share/, file:///user/files"). * * For example: * ```ts * getRootLength("a") === 0 // "" * getRootLength("/") === 1 // "/" * getRootLength("c:") === 2 // "c:" * getRootLength("c:d") === 0 // "" * getRootLength("c:/") === 3 // "c:/" * getRootLength("c:\\") === 3 // "c:\\" * getRootLength("//server") === 7 // "//server" * getRootLength("//server/share") === 8 // "//server/" * getRootLength("\\\\server") === 7 // "\\\\server" * getRootLength("\\\\server\\share") === 8 // "\\\\server\\" * getRootLength("file:///path") === 8 // "file:///" * getRootLength("file:///c:") === 10 // "file:///c:" * getRootLength("file:///c:d") === 8 // "file:///" * getRootLength("file:///c:/path") === 11 // "file:///c:/" * getRootLength("file://server") === 13 // "file://server" * getRootLength("file://server/path") === 14 // "file://server/" * getRootLength("http://server") === 13 // "http://server" * getRootLength("http://server/path") === 14 // "http://server/" * ``` */ function getRootLength(path) { var rootLength = getEncodedRootLength(path); return rootLength < 0 ? ~rootLength : rootLength; } ts.getRootLength = getRootLength; function getDirectoryPath(path) { path = normalizeSlashes(path); // If the path provided is itself the root, then return it. var rootLength = getRootLength(path); if (rootLength === path.length) return path; // return the leading portion of the path up to the last (non-terminal) directory separator // but not including any trailing directory separator. path = removeTrailingDirectorySeparator(path); return path.slice(0, Math.max(rootLength, path.lastIndexOf(ts.directorySeparator))); } ts.getDirectoryPath = getDirectoryPath; function getBaseFileName(path, extensions, ignoreCase) { path = normalizeSlashes(path); // if the path provided is itself the root, then it has not file name. var rootLength = getRootLength(path); if (rootLength === path.length) return ""; // return the trailing portion of the path starting after the last (non-terminal) directory // separator but not including any trailing directory separator. path = removeTrailingDirectorySeparator(path); var name = path.slice(Math.max(getRootLength(path), path.lastIndexOf(ts.directorySeparator) + 1)); var extension = extensions !== undefined && ignoreCase !== undefined ? getAnyExtensionFromPath(name, extensions, ignoreCase) : undefined; return extension ? name.slice(0, name.length - extension.length) : name; } ts.getBaseFileName = getBaseFileName; function tryGetExtensionFromPath(path, extension, stringEqualityComparer) { if (!ts.startsWith(extension, ".")) extension = "." + extension; if (path.length >= extension.length && path.charCodeAt(path.length - extension.length) === 46 /* CharacterCodes.dot */) { var pathExtension = path.slice(path.length - extension.length); if (stringEqualityComparer(pathExtension, extension)) { return pathExtension; } } } function getAnyExtensionFromPathWorker(path, extensions, stringEqualityComparer) { if (typeof extensions === "string") { return tryGetExtensionFromPath(path, extensions, stringEqualityComparer) || ""; } for (var _i = 0, extensions_2 = extensions; _i < extensions_2.length; _i++) { var extension = extensions_2[_i]; var result = tryGetExtensionFromPath(path, extension, stringEqualityComparer); if (result) return result; } return ""; } function getAnyExtensionFromPath(path, extensions, ignoreCase) { // Retrieves any string from the final "." onwards from a base file name. // Unlike extensionFromPath, which throws an exception on unrecognized extensions. if (extensions) { return getAnyExtensionFromPathWorker(removeTrailingDirectorySeparator(path), extensions, ignoreCase ? ts.equateStringsCaseInsensitive : ts.equateStringsCaseSensitive); } var baseFileName = getBaseFileName(path); var extensionIndex = baseFileName.lastIndexOf("."); if (extensionIndex >= 0) { return baseFileName.substring(extensionIndex); } return ""; } ts.getAnyExtensionFromPath = getAnyExtensionFromPath; function pathComponents(path, rootLength) { var root = path.substring(0, rootLength); var rest = path.substring(rootLength).split(ts.directorySeparator); if (rest.length && !ts.lastOrUndefined(rest)) rest.pop(); return __spreadArray([root], rest, true); } /** * Parse a path into an array containing a root component (at index 0) and zero or more path * components (at indices > 0). The result is not normalized. * If the path is relative, the root component is `""`. * If the path is absolute, the root component includes the first path separator (`/`). * * ```ts * // POSIX * getPathComponents("/path/to/file.ext") === ["/", "path", "to", "file.ext"] * getPathComponents("/path/to/") === ["/", "path", "to"] * getPathComponents("/") === ["/"] * // DOS * getPathComponents("c:/path/to/file.ext") === ["c:/", "path", "to", "file.ext"] * getPathComponents("c:/path/to/") === ["c:/", "path", "to"] * getPathComponents("c:/") === ["c:/"] * getPathComponents("c:") === ["c:"] * // URL * getPathComponents("http://typescriptlang.org/path/to/file.ext") === ["http://typescriptlang.org/", "path", "to", "file.ext"] * getPathComponents("http://typescriptlang.org/path/to/") === ["http://typescriptlang.org/", "path", "to"] * getPathComponents("http://typescriptlang.org/") === ["http://typescriptlang.org/"] * getPathComponents("http://typescriptlang.org") === ["http://typescriptlang.org"] * getPathComponents("file://server/path/to/file.ext") === ["file://server/", "path", "to", "file.ext"] * getPathComponents("file://server/path/to/") === ["file://server/", "path", "to"] * getPathComponents("file://server/") === ["file://server/"] * getPathComponents("file://server") === ["file://server"] * getPathComponents("file:///path/to/file.ext") === ["file:///", "path", "to", "file.ext"] * getPathComponents("file:///path/to/") === ["file:///", "path", "to"] * getPathComponents("file:///") === ["file:///"] * getPathComponents("file://") === ["file://"] */ function getPathComponents(path, currentDirectory) { if (currentDirectory === void 0) { currentDirectory = ""; } path = combinePaths(currentDirectory, path); return pathComponents(path, getRootLength(path)); } ts.getPathComponents = getPathComponents; //// Path Formatting /** * Formats a parsed path consisting of a root component (at index 0) and zero or more path * segments (at indices > 0). * * ```ts * getPathFromPathComponents(["/", "path", "to", "file.ext"]) === "/path/to/file.ext" * ``` */ function getPathFromPathComponents(pathComponents) { if (pathComponents.length === 0) return ""; var root = pathComponents[0] && ensureTrailingDirectorySeparator(pathComponents[0]); return root + pathComponents.slice(1).join(ts.directorySeparator); } ts.getPathFromPathComponents = getPathFromPathComponents; //// Path Normalization /** * Normalize path separators, converting `\` into `/`. */ function normalizeSlashes(path) { var index = path.indexOf("\\"); if (index === -1) { return path; } backslashRegExp.lastIndex = index; // prime regex with known position return path.replace(backslashRegExp, ts.directorySeparator); } ts.normalizeSlashes = normalizeSlashes; /** * Reduce an array of path components to a more simplified path by navigating any * `"."` or `".."` entries in the path. */ function reducePathComponents(components) { if (!ts.some(components)) return []; var reduced = [components[0]]; for (var i = 1; i < components.length; i++) { var component = components[i]; if (!component) continue; if (component === ".") continue; if (component === "..") { if (reduced.length > 1) { if (reduced[reduced.length - 1] !== "..") { reduced.pop(); continue; } } else if (reduced[0]) continue; } reduced.push(component); } return reduced; } ts.reducePathComponents = reducePathComponents; /** * Combines paths. If a path is absolute, it replaces any previous path. Relative paths are not simplified. * * ```ts * // Non-rooted * combinePaths("path", "to", "file.ext") === "path/to/file.ext" * combinePaths("path", "dir", "..", "to", "file.ext") === "path/dir/../to/file.ext" * // POSIX * combinePaths("/path", "to", "file.ext") === "/path/to/file.ext" * combinePaths("/path", "/to", "file.ext") === "/to/file.ext" * // DOS * combinePaths("c:/path", "to", "file.ext") === "c:/path/to/file.ext" * combinePaths("c:/path", "c:/to", "file.ext") === "c:/to/file.ext" * // URL * combinePaths("file:///path", "to", "file.ext") === "file:///path/to/file.ext" * combinePaths("file:///path", "file:///to", "file.ext") === "file:///to/file.ext" * ``` */ function combinePaths(path) { var paths = []; for (var _i = 1; _i < arguments.length; _i++) { paths[_i - 1] = arguments[_i]; } if (path) path = normalizeSlashes(path); for (var _a = 0, paths_1 = paths; _a < paths_1.length; _a++) { var relativePath = paths_1[_a]; if (!relativePath) continue; relativePath = normalizeSlashes(relativePath); if (!path || getRootLength(relativePath) !== 0) { path = relativePath; } else { path = ensureTrailingDirectorySeparator(path) + relativePath; } } return path; } ts.combinePaths = combinePaths; /** * Combines and resolves paths. If a path is absolute, it replaces any previous path. Any * `.` and `..` path components are resolved. Trailing directory separators are preserved. * * ```ts * resolvePath("/path", "to", "file.ext") === "path/to/file.ext" * resolvePath("/path", "to", "file.ext/") === "path/to/file.ext/" * resolvePath("/path", "dir", "..", "to", "file.ext") === "path/to/file.ext" * ``` */ function resolvePath(path) { var paths = []; for (var _i = 1; _i < arguments.length; _i++) { paths[_i - 1] = arguments[_i]; } return normalizePath(ts.some(paths) ? combinePaths.apply(void 0, __spreadArray([path], paths, false)) : normalizeSlashes(path)); } ts.resolvePath = resolvePath; /** * Parse a path into an array containing a root component (at index 0) and zero or more path * components (at indices > 0). The result is normalized. * If the path is relative, the root component is `""`. * If the path is absolute, the root component includes the first path separator (`/`). * * ```ts * getNormalizedPathComponents("to/dir/../file.ext", "/path/") === ["/", "path", "to", "file.ext"] * ``` */ function getNormalizedPathComponents(path, currentDirectory) { return reducePathComponents(getPathComponents(path, currentDirectory)); } ts.getNormalizedPathComponents = getNormalizedPathComponents; function getNormalizedAbsolutePath(fileName, currentDirectory) { return getPathFromPathComponents(getNormalizedPathComponents(fileName, currentDirectory)); } ts.getNormalizedAbsolutePath = getNormalizedAbsolutePath; function normalizePath(path) { path = normalizeSlashes(path); // Most paths don't require normalization if (!relativePathSegmentRegExp.test(path)) { return path; } // Some paths only require cleanup of `/./` or leading `./` var simplified = path.replace(/\/\.\//g, "/").replace(/^\.\//, ""); if (simplified !== path) { path = simplified; if (!relativePathSegmentRegExp.test(path)) { return path; } } // Other paths require full normalization var normalized = getPathFromPathComponents(reducePathComponents(getPathComponents(path))); return normalized && hasTrailingDirectorySeparator(path) ? ensureTrailingDirectorySeparator(normalized) : normalized; } ts.normalizePath = normalizePath; function getPathWithoutRoot(pathComponents) { if (pathComponents.length === 0) return ""; return pathComponents.slice(1).join(ts.directorySeparator); } function getNormalizedAbsolutePathWithoutRoot(fileName, currentDirectory) { return getPathWithoutRoot(getNormalizedPathComponents(fileName, currentDirectory)); } ts.getNormalizedAbsolutePathWithoutRoot = getNormalizedAbsolutePathWithoutRoot; function toPath(fileName, basePath, getCanonicalFileName) { var nonCanonicalizedPath = isRootedDiskPath(fileName) ? normalizePath(fileName) : getNormalizedAbsolutePath(fileName, basePath); return getCanonicalFileName(nonCanonicalizedPath); } ts.toPath = toPath; function removeTrailingDirectorySeparator(path) { if (hasTrailingDirectorySeparator(path)) { return path.substr(0, path.length - 1); } return path; } ts.removeTrailingDirectorySeparator = removeTrailingDirectorySeparator; function ensureTrailingDirectorySeparator(path) { if (!hasTrailingDirectorySeparator(path)) { return path + ts.directorySeparator; } return path; } ts.ensureTrailingDirectorySeparator = ensureTrailingDirectorySeparator; /** * Ensures a path is either absolute (prefixed with `/` or `c:`) or dot-relative (prefixed * with `./` or `../`) so as not to be confused with an unprefixed module name. * * ```ts * ensurePathIsNonModuleName("/path/to/file.ext") === "/path/to/file.ext" * ensurePathIsNonModuleName("./path/to/file.ext") === "./path/to/file.ext" * ensurePathIsNonModuleName("../path/to/file.ext") === "../path/to/file.ext" * ensurePathIsNonModuleName("path/to/file.ext") === "./path/to/file.ext" * ``` */ function ensurePathIsNonModuleName(path) { return !pathIsAbsolute(path) && !pathIsRelative(path) ? "./" + path : path; } ts.ensurePathIsNonModuleName = ensurePathIsNonModuleName; function changeAnyExtension(path, ext, extensions, ignoreCase) { var pathext = extensions !== undefined && ignoreCase !== undefined ? getAnyExtensionFromPath(path, extensions, ignoreCase) : getAnyExtensionFromPath(path); return pathext ? path.slice(0, path.length - pathext.length) + (ts.startsWith(ext, ".") ? ext : "." + ext) : path; } ts.changeAnyExtension = changeAnyExtension; //// Path Comparisons // check path for these segments: '', '.'. '..' var relativePathSegmentRegExp = /(?:\/\/)|(?:^|\/)\.\.?(?:$|\/)/; function comparePathsWorker(a, b, componentComparer) { if (a === b) return 0 /* Comparison.EqualTo */; if (a === undefined) return -1 /* Comparison.LessThan */; if (b === undefined) return 1 /* Comparison.GreaterThan */; // NOTE: Performance optimization - shortcut if the root segments differ as there would be no // need to perform path reduction. var aRoot = a.substring(0, getRootLength(a)); var bRoot = b.substring(0, getRootLength(b)); var result = ts.compareStringsCaseInsensitive(aRoot, bRoot); if (result !== 0 /* Comparison.EqualTo */) { return result; } // NOTE: Performance optimization - shortcut if there are no relative path segments in // the non-root portion of the path var aRest = a.substring(aRoot.length); var bRest = b.substring(bRoot.length); if (!relativePathSegmentRegExp.test(aRest) && !relativePathSegmentRegExp.test(bRest)) { return componentComparer(aRest, bRest); } // The path contains a relative path segment. Normalize the paths and perform a slower component // by component comparison. var aComponents = reducePathComponents(getPathComponents(a)); var bComponents = reducePathComponents(getPathComponents(b)); var sharedLength = Math.min(aComponents.length, bComponents.length); for (var i = 1; i < sharedLength; i++) { var result_2 = componentComparer(aComponents[i], bComponents[i]); if (result_2 !== 0 /* Comparison.EqualTo */) { return result_2; } } return ts.compareValues(aComponents.length, bComponents.length); } /** * Performs a case-sensitive comparison of two paths. Path roots are always compared case-insensitively. */ function comparePathsCaseSensitive(a, b) { return comparePathsWorker(a, b, ts.compareStringsCaseSensitive); } ts.comparePathsCaseSensitive = comparePathsCaseSensitive; /** * Performs a case-insensitive comparison of two paths. */ function comparePathsCaseInsensitive(a, b) { return comparePathsWorker(a, b, ts.compareStringsCaseInsensitive); } ts.comparePathsCaseInsensitive = comparePathsCaseInsensitive; function comparePaths(a, b, currentDirectory, ignoreCase) { if (typeof currentDirectory === "string") { a = combinePaths(currentDirectory, a); b = combinePaths(currentDirectory, b); } else if (typeof currentDirectory === "boolean") { ignoreCase = currentDirectory; } return comparePathsWorker(a, b, ts.getStringComparer(ignoreCase)); } ts.comparePaths = comparePaths; function containsPath(parent, child, currentDirectory, ignoreCase) { if (typeof currentDirectory === "string") { parent = combinePaths(currentDirectory, parent); child = combinePaths(currentDirectory, child); } else if (typeof currentDirectory === "boolean") { ignoreCase = currentDirectory; } if (parent === undefined || child === undefined) return false; if (parent === child) return true; var parentComponents = reducePathComponents(getPathComponents(parent)); var childComponents = reducePathComponents(getPathComponents(child)); if (childComponents.length < parentComponents.length) { return false; } var componentEqualityComparer = ignoreCase ? ts.equateStringsCaseInsensitive : ts.equateStringsCaseSensitive; for (var i = 0; i < parentComponents.length; i++) { var equalityComparer = i === 0 ? ts.equateStringsCaseInsensitive : componentEqualityComparer; if (!equalityComparer(parentComponents[i], childComponents[i])) { return false; } } return true; } ts.containsPath = containsPath; /** * Determines whether `fileName` starts with the specified `directoryName` using the provided path canonicalization callback. * Comparison is case-sensitive between the canonical paths. * * Use `containsPath` if file names are not already reduced and absolute. */ function startsWithDirectory(fileName, directoryName, getCanonicalFileName) { var canonicalFileName = getCanonicalFileName(fileName); var canonicalDirectoryName = getCanonicalFileName(directoryName); return ts.startsWith(canonicalFileName, canonicalDirectoryName + "/") || ts.startsWith(canonicalFileName, canonicalDirectoryName + "\\"); } ts.startsWithDirectory = startsWithDirectory; //// Relative Paths function getPathComponentsRelativeTo(from, to, stringEqualityComparer, getCanonicalFileName) { var fromComponents = reducePathComponents(getPathComponents(from)); var toComponents = reducePathComponents(getPathComponents(to)); var start; for (start = 0; start < fromComponents.length && start < toComponents.length; start++) { var fromComponent = getCanonicalFileName(fromComponents[start]); var toComponent = getCanonicalFileName(toComponents[start]); var comparer = start === 0 ? ts.equateStringsCaseInsensitive : stringEqualityComparer; if (!comparer(fromComponent, toComponent)) break; } if (start === 0) { return toComponents; } var components = toComponents.slice(start); var relative = []; for (; start < fromComponents.length; start++) { relative.push(".."); } return __spreadArray(__spreadArray([""], relative, true), components, true); } ts.getPathComponentsRelativeTo = getPathComponentsRelativeTo; function getRelativePathFromDirectory(fromDirectory, to, getCanonicalFileNameOrIgnoreCase) { ts.Debug.assert((getRootLength(fromDirectory) > 0) === (getRootLength(to) > 0), "Paths must either both be absolute or both be relative"); var getCanonicalFileName = typeof getCanonicalFileNameOrIgnoreCase === "function" ? getCanonicalFileNameOrIgnoreCase : ts.identity; var ignoreCase = typeof getCanonicalFileNameOrIgnoreCase === "boolean" ? getCanonicalFileNameOrIgnoreCase : false; var pathComponents = getPathComponentsRelativeTo(fromDirectory, to, ignoreCase ? ts.equateStringsCaseInsensitive : ts.equateStringsCaseSensitive, getCanonicalFileName); return getPathFromPathComponents(pathComponents); } ts.getRelativePathFromDirectory = getRelativePathFromDirectory; function convertToRelativePath(absoluteOrRelativePath, basePath, getCanonicalFileName) { return !isRootedDiskPath(absoluteOrRelativePath) ? absoluteOrRelativePath : getRelativePathToDirectoryOrUrl(basePath, absoluteOrRelativePath, basePath, getCanonicalFileName, /*isAbsolutePathAnUrl*/ false); } ts.convertToRelativePath = convertToRelativePath; function getRelativePathFromFile(from, to, getCanonicalFileName) { return ensurePathIsNonModuleName(getRelativePathFromDirectory(getDirectoryPath(from), to, getCanonicalFileName)); } ts.getRelativePathFromFile = getRelativePathFromFile; function getRelativePathToDirectoryOrUrl(directoryPathOrUrl, relativeOrAbsolutePath, currentDirectory, getCanonicalFileName, isAbsolutePathAnUrl) { var pathComponents = getPathComponentsRelativeTo(resolvePath(currentDirectory, directoryPathOrUrl), resolvePath(currentDirectory, relativeOrAbsolutePath), ts.equateStringsCaseSensitive, getCanonicalFileName); var firstComponent = pathComponents[0]; if (isAbsolutePathAnUrl && isRootedDiskPath(firstComponent)) { var prefix = firstComponent.charAt(0) === ts.directorySeparator ? "file://" : "file:///"; pathComponents[0] = prefix + firstComponent; } return getPathFromPathComponents(pathComponents); } ts.getRelativePathToDirectoryOrUrl = getRelativePathToDirectoryOrUrl; function forEachAncestorDirectory(directory, callback) { while (true) { var result = callback(directory); if (result !== undefined) { return result; } var parentPath = getDirectoryPath(directory); if (parentPath === directory) { return undefined; } directory = parentPath; } } ts.forEachAncestorDirectory = forEachAncestorDirectory; function isNodeModulesDirectory(dirPath) { return ts.endsWith(dirPath, "/node_modules"); } ts.isNodeModulesDirectory = isNodeModulesDirectory; })(ts || (ts = {})); // // generated from './diagnosticMessages.json' in 'src/compiler' /* @internal */ var ts; (function (ts) { function diag(code, category, key, message, reportsUnnecessary, elidedInCompatabilityPyramid, reportsDeprecated) { return { code: code, category: category, key: key, message: message, reportsUnnecessary: reportsUnnecessary, elidedInCompatabilityPyramid: elidedInCompatabilityPyramid, reportsDeprecated: reportsDeprecated }; } ts.Diagnostics = { Unterminated_string_literal: diag(1002, ts.DiagnosticCategory.Error, "Unterminated_string_literal_1002", "Unterminated string literal."), Identifier_expected: diag(1003, ts.DiagnosticCategory.Error, "Identifier_expected_1003", "Identifier expected."), _0_expected: diag(1005, ts.DiagnosticCategory.Error, "_0_expected_1005", "'{0}' expected."), A_file_cannot_have_a_reference_to_itself: diag(1006, ts.DiagnosticCategory.Error, "A_file_cannot_have_a_reference_to_itself_1006", "A file cannot have a reference to itself."), The_parser_expected_to_find_a_1_to_match_the_0_token_here: diag(1007, ts.DiagnosticCategory.Error, "The_parser_expected_to_find_a_1_to_match_the_0_token_here_1007", "The parser expected to find a '{1}' to match the '{0}' token here."), Trailing_comma_not_allowed: diag(1009, ts.DiagnosticCategory.Error, "Trailing_comma_not_allowed_1009", "Trailing comma not allowed."), Asterisk_Slash_expected: diag(1010, ts.DiagnosticCategory.Error, "Asterisk_Slash_expected_1010", "'*/' expected."), An_element_access_expression_should_take_an_argument: diag(1011, ts.DiagnosticCategory.Error, "An_element_access_expression_should_take_an_argument_1011", "An element access expression should take an argument."), Unexpected_token: diag(1012, ts.DiagnosticCategory.Error, "Unexpected_token_1012", "Unexpected token."), A_rest_parameter_or_binding_pattern_may_not_have_a_trailing_comma: diag(1013, ts.DiagnosticCategory.Error, "A_rest_parameter_or_binding_pattern_may_not_have_a_trailing_comma_1013", "A rest parameter or binding pattern may not have a trailing comma."), A_rest_parameter_must_be_last_in_a_parameter_list: diag(1014, ts.DiagnosticCategory.Error, "A_rest_parameter_must_be_last_in_a_parameter_list_1014", "A rest parameter must be last in a parameter list."), Parameter_cannot_have_question_mark_and_initializer: diag(1015, ts.DiagnosticCategory.Error, "Parameter_cannot_have_question_mark_and_initializer_1015", "Parameter cannot have question mark and initializer."), A_required_parameter_cannot_follow_an_optional_parameter: diag(1016, ts.DiagnosticCategory.Error, "A_required_parameter_cannot_follow_an_optional_parameter_1016", "A required parameter cannot follow an optional parameter."), An_index_signature_cannot_have_a_rest_parameter: diag(1017, ts.DiagnosticCategory.Error, "An_index_signature_cannot_have_a_rest_parameter_1017", "An index signature cannot have a rest parameter."), An_index_signature_parameter_cannot_have_an_accessibility_modifier: diag(1018, ts.DiagnosticCategory.Error, "An_index_signature_parameter_cannot_have_an_accessibility_modifier_1018", "An index signature parameter cannot have an accessibility modifier."), An_index_signature_parameter_cannot_have_a_question_mark: diag(1019, ts.DiagnosticCategory.Error, "An_index_signature_parameter_cannot_have_a_question_mark_1019", "An index signature parameter cannot have a question mark."), An_index_signature_parameter_cannot_have_an_initializer: diag(1020, ts.DiagnosticCategory.Error, "An_index_signature_parameter_cannot_have_an_initializer_1020", "An index signature parameter cannot have an initializer."), An_index_signature_must_have_a_type_annotation: diag(1021, ts.DiagnosticCategory.Error, "An_index_signature_must_have_a_type_annotation_1021", "An index signature must have a type annotation."), An_index_signature_parameter_must_have_a_type_annotation: diag(1022, ts.DiagnosticCategory.Error, "An_index_signature_parameter_must_have_a_type_annotation_1022", "An index signature parameter must have a type annotation."), readonly_modifier_can_only_appear_on_a_property_declaration_or_index_signature: diag(1024, ts.DiagnosticCategory.Error, "readonly_modifier_can_only_appear_on_a_property_declaration_or_index_signature_1024", "'readonly' modifier can only appear on a property declaration or index signature."), An_index_signature_cannot_have_a_trailing_comma: diag(1025, ts.DiagnosticCategory.Error, "An_index_signature_cannot_have_a_trailing_comma_1025", "An index signature cannot have a trailing comma."), Accessibility_modifier_already_seen: diag(1028, ts.DiagnosticCategory.Error, "Accessibility_modifier_already_seen_1028", "Accessibility modifier already seen."), _0_modifier_must_precede_1_modifier: diag(1029, ts.DiagnosticCategory.Error, "_0_modifier_must_precede_1_modifier_1029", "'{0}' modifier must precede '{1}' modifier."), _0_modifier_already_seen: diag(1030, ts.DiagnosticCategory.Error, "_0_modifier_already_seen_1030", "'{0}' modifier already seen."), _0_modifier_cannot_appear_on_class_elements_of_this_kind: diag(1031, ts.DiagnosticCategory.Error, "_0_modifier_cannot_appear_on_class_elements_of_this_kind_1031", "'{0}' modifier cannot appear on class elements of this kind."), super_must_be_followed_by_an_argument_list_or_member_access: diag(1034, ts.DiagnosticCategory.Error, "super_must_be_followed_by_an_argument_list_or_member_access_1034", "'super' must be followed by an argument list or member access."), Only_ambient_modules_can_use_quoted_names: diag(1035, ts.DiagnosticCategory.Error, "Only_ambient_modules_can_use_quoted_names_1035", "Only ambient modules can use quoted names."), Statements_are_not_allowed_in_ambient_contexts: diag(1036, ts.DiagnosticCategory.Error, "Statements_are_not_allowed_in_ambient_contexts_1036", "Statements are not allowed in ambient contexts."), A_declare_modifier_cannot_be_used_in_an_already_ambient_context: diag(1038, ts.DiagnosticCategory.Error, "A_declare_modifier_cannot_be_used_in_an_already_ambient_context_1038", "A 'declare' modifier cannot be used in an already ambient context."), Initializers_are_not_allowed_in_ambient_contexts: diag(1039, ts.DiagnosticCategory.Error, "Initializers_are_not_allowed_in_ambient_contexts_1039", "Initializers are not allowed in ambient contexts."), _0_modifier_cannot_be_used_in_an_ambient_context: diag(1040, ts.DiagnosticCategory.Error, "_0_modifier_cannot_be_used_in_an_ambient_context_1040", "'{0}' modifier cannot be used in an ambient context."), _0_modifier_cannot_be_used_here: diag(1042, ts.DiagnosticCategory.Error, "_0_modifier_cannot_be_used_here_1042", "'{0}' modifier cannot be used here."), _0_modifier_cannot_appear_on_a_module_or_namespace_element: diag(1044, ts.DiagnosticCategory.Error, "_0_modifier_cannot_appear_on_a_module_or_namespace_element_1044", "'{0}' modifier cannot appear on a module or namespace element."), Top_level_declarations_in_d_ts_files_must_start_with_either_a_declare_or_export_modifier: diag(1046, ts.DiagnosticCategory.Error, "Top_level_declarations_in_d_ts_files_must_start_with_either_a_declare_or_export_modifier_1046", "Top-level declarations in .d.ts files must start with either a 'declare' or 'export' modifier."), A_rest_parameter_cannot_be_optional: diag(1047, ts.DiagnosticCategory.Error, "A_rest_parameter_cannot_be_optional_1047", "A rest parameter cannot be optional."), A_rest_parameter_cannot_have_an_initializer: diag(1048, ts.DiagnosticCategory.Error, "A_rest_parameter_cannot_have_an_initializer_1048", "A rest parameter cannot have an initializer."), A_set_accessor_must_have_exactly_one_parameter: diag(1049, ts.DiagnosticCategory.Error, "A_set_accessor_must_have_exactly_one_parameter_1049", "A 'set' accessor must have exactly one parameter."), A_set_accessor_cannot_have_an_optional_parameter: diag(1051, ts.DiagnosticCategory.Error, "A_set_accessor_cannot_have_an_optional_parameter_1051", "A 'set' accessor cannot have an optional parameter."), A_set_accessor_parameter_cannot_have_an_initializer: diag(1052, ts.DiagnosticCategory.Error, "A_set_accessor_parameter_cannot_have_an_initializer_1052", "A 'set' accessor parameter cannot have an initializer."), A_set_accessor_cannot_have_rest_parameter: diag(1053, ts.DiagnosticCategory.Error, "A_set_accessor_cannot_have_rest_parameter_1053", "A 'set' accessor cannot have rest parameter."), A_get_accessor_cannot_have_parameters: diag(1054, ts.DiagnosticCategory.Error, "A_get_accessor_cannot_have_parameters_1054", "A 'get' accessor cannot have parameters."), Type_0_is_not_a_valid_async_function_return_type_in_ES5_SlashES3_because_it_does_not_refer_to_a_Promise_compatible_constructor_value: diag(1055, ts.DiagnosticCategory.Error, "Type_0_is_not_a_valid_async_function_return_type_in_ES5_SlashES3_because_it_does_not_refer_to_a_Prom_1055", "Type '{0}' is not a valid async function return type in ES5/ES3 because it does not refer to a Promise-compatible constructor value."), Accessors_are_only_available_when_targeting_ECMAScript_5_and_higher: diag(1056, ts.DiagnosticCategory.Error, "Accessors_are_only_available_when_targeting_ECMAScript_5_and_higher_1056", "Accessors are only available when targeting ECMAScript 5 and higher."), The_return_type_of_an_async_function_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member: diag(1058, ts.DiagnosticCategory.Error, "The_return_type_of_an_async_function_must_either_be_a_valid_promise_or_must_not_contain_a_callable_t_1058", "The return type of an async function must either be a valid promise or must not contain a callable 'then' member."), A_promise_must_have_a_then_method: diag(1059, ts.DiagnosticCategory.Error, "A_promise_must_have_a_then_method_1059", "A promise must have a 'then' method."), The_first_parameter_of_the_then_method_of_a_promise_must_be_a_callback: diag(1060, ts.DiagnosticCategory.Error, "The_first_parameter_of_the_then_method_of_a_promise_must_be_a_callback_1060", "The first parameter of the 'then' method of a promise must be a callback."), Enum_member_must_have_initializer: diag(1061, ts.DiagnosticCategory.Error, "Enum_member_must_have_initializer_1061", "Enum member must have initializer."), Type_is_referenced_directly_or_indirectly_in_the_fulfillment_callback_of_its_own_then_method: diag(1062, ts.DiagnosticCategory.Error, "Type_is_referenced_directly_or_indirectly_in_the_fulfillment_callback_of_its_own_then_method_1062", "Type is referenced directly or indirectly in the fulfillment callback of its own 'then' method."), An_export_assignment_cannot_be_used_in_a_namespace: diag(1063, ts.DiagnosticCategory.Error, "An_export_assignment_cannot_be_used_in_a_namespace_1063", "An export assignment cannot be used in a namespace."), The_return_type_of_an_async_function_or_method_must_be_the_global_Promise_T_type_Did_you_mean_to_write_Promise_0: diag(1064, ts.DiagnosticCategory.Error, "The_return_type_of_an_async_function_or_method_must_be_the_global_Promise_T_type_Did_you_mean_to_wri_1064", "The return type of an async function or method must be the global Promise type. Did you mean to write 'Promise<{0}>'?"), In_ambient_enum_declarations_member_initializer_must_be_constant_expression: diag(1066, ts.DiagnosticCategory.Error, "In_ambient_enum_declarations_member_initializer_must_be_constant_expression_1066", "In ambient enum declarations member initializer must be constant expression."), Unexpected_token_A_constructor_method_accessor_or_property_was_expected: diag(1068, ts.DiagnosticCategory.Error, "Unexpected_token_A_constructor_method_accessor_or_property_was_expected_1068", "Unexpected token. A constructor, method, accessor, or property was expected."), Unexpected_token_A_type_parameter_name_was_expected_without_curly_braces: diag(1069, ts.DiagnosticCategory.Error, "Unexpected_token_A_type_parameter_name_was_expected_without_curly_braces_1069", "Unexpected token. A type parameter name was expected without curly braces."), _0_modifier_cannot_appear_on_a_type_member: diag(1070, ts.DiagnosticCategory.Error, "_0_modifier_cannot_appear_on_a_type_member_1070", "'{0}' modifier cannot appear on a type member."), _0_modifier_cannot_appear_on_an_index_signature: diag(1071, ts.DiagnosticCategory.Error, "_0_modifier_cannot_appear_on_an_index_signature_1071", "'{0}' modifier cannot appear on an index signature."), A_0_modifier_cannot_be_used_with_an_import_declaration: diag(1079, ts.DiagnosticCategory.Error, "A_0_modifier_cannot_be_used_with_an_import_declaration_1079", "A '{0}' modifier cannot be used with an import declaration."), Invalid_reference_directive_syntax: diag(1084, ts.DiagnosticCategory.Error, "Invalid_reference_directive_syntax_1084", "Invalid 'reference' directive syntax."), Octal_literals_are_not_available_when_targeting_ECMAScript_5_and_higher_Use_the_syntax_0: diag(1085, ts.DiagnosticCategory.Error, "Octal_literals_are_not_available_when_targeting_ECMAScript_5_and_higher_Use_the_syntax_0_1085", "Octal literals are not available when targeting ECMAScript 5 and higher. Use the syntax '{0}'."), _0_modifier_cannot_appear_on_a_constructor_declaration: diag(1089, ts.DiagnosticCategory.Error, "_0_modifier_cannot_appear_on_a_constructor_declaration_1089", "'{0}' modifier cannot appear on a constructor declaration."), _0_modifier_cannot_appear_on_a_parameter: diag(1090, ts.DiagnosticCategory.Error, "_0_modifier_cannot_appear_on_a_parameter_1090", "'{0}' modifier cannot appear on a parameter."), Only_a_single_variable_declaration_is_allowed_in_a_for_in_statement: diag(1091, ts.DiagnosticCategory.Error, "Only_a_single_variable_declaration_is_allowed_in_a_for_in_statement_1091", "Only a single variable declaration is allowed in a 'for...in' statement."), Type_parameters_cannot_appear_on_a_constructor_declaration: diag(1092, ts.DiagnosticCategory.Error, "Type_parameters_cannot_appear_on_a_constructor_declaration_1092", "Type parameters cannot appear on a constructor declaration."), Type_annotation_cannot_appear_on_a_constructor_declaration: diag(1093, ts.DiagnosticCategory.Error, "Type_annotation_cannot_appear_on_a_constructor_declaration_1093", "Type annotation cannot appear on a constructor declaration."), An_accessor_cannot_have_type_parameters: diag(1094, ts.DiagnosticCategory.Error, "An_accessor_cannot_have_type_parameters_1094", "An accessor cannot have type parameters."), A_set_accessor_cannot_have_a_return_type_annotation: diag(1095, ts.DiagnosticCategory.Error, "A_set_accessor_cannot_have_a_return_type_annotation_1095", "A 'set' accessor cannot have a return type annotation."), An_index_signature_must_have_exactly_one_parameter: diag(1096, ts.DiagnosticCategory.Error, "An_index_signature_must_have_exactly_one_parameter_1096", "An index signature must have exactly one parameter."), _0_list_cannot_be_empty: diag(1097, ts.DiagnosticCategory.Error, "_0_list_cannot_be_empty_1097", "'{0}' list cannot be empty."), Type_parameter_list_cannot_be_empty: diag(1098, ts.DiagnosticCategory.Error, "Type_parameter_list_cannot_be_empty_1098", "Type parameter list cannot be empty."), Type_argument_list_cannot_be_empty: diag(1099, ts.DiagnosticCategory.Error, "Type_argument_list_cannot_be_empty_1099", "Type argument list cannot be empty."), Invalid_use_of_0_in_strict_mode: diag(1100, ts.DiagnosticCategory.Error, "Invalid_use_of_0_in_strict_mode_1100", "Invalid use of '{0}' in strict mode."), with_statements_are_not_allowed_in_strict_mode: diag(1101, ts.DiagnosticCategory.Error, "with_statements_are_not_allowed_in_strict_mode_1101", "'with' statements are not allowed in strict mode."), delete_cannot_be_called_on_an_identifier_in_strict_mode: diag(1102, ts.DiagnosticCategory.Error, "delete_cannot_be_called_on_an_identifier_in_strict_mode_1102", "'delete' cannot be called on an identifier in strict mode."), for_await_loops_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules: diag(1103, ts.DiagnosticCategory.Error, "for_await_loops_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules_1103", "'for await' loops are only allowed within async functions and at the top levels of modules."), A_continue_statement_can_only_be_used_within_an_enclosing_iteration_statement: diag(1104, ts.DiagnosticCategory.Error, "A_continue_statement_can_only_be_used_within_an_enclosing_iteration_statement_1104", "A 'continue' statement can only be used within an enclosing iteration statement."), A_break_statement_can_only_be_used_within_an_enclosing_iteration_or_switch_statement: diag(1105, ts.DiagnosticCategory.Error, "A_break_statement_can_only_be_used_within_an_enclosing_iteration_or_switch_statement_1105", "A 'break' statement can only be used within an enclosing iteration or switch statement."), The_left_hand_side_of_a_for_of_statement_may_not_be_async: diag(1106, ts.DiagnosticCategory.Error, "The_left_hand_side_of_a_for_of_statement_may_not_be_async_1106", "The left-hand side of a 'for...of' statement may not be 'async'."), Jump_target_cannot_cross_function_boundary: diag(1107, ts.DiagnosticCategory.Error, "Jump_target_cannot_cross_function_boundary_1107", "Jump target cannot cross function boundary."), A_return_statement_can_only_be_used_within_a_function_body: diag(1108, ts.DiagnosticCategory.Error, "A_return_statement_can_only_be_used_within_a_function_body_1108", "A 'return' statement can only be used within a function body."), Expression_expected: diag(1109, ts.DiagnosticCategory.Error, "Expression_expected_1109", "Expression expected."), Type_expected: diag(1110, ts.DiagnosticCategory.Error, "Type_expected_1110", "Type expected."), A_default_clause_cannot_appear_more_than_once_in_a_switch_statement: diag(1113, ts.DiagnosticCategory.Error, "A_default_clause_cannot_appear_more_than_once_in_a_switch_statement_1113", "A 'default' clause cannot appear more than once in a 'switch' statement."), Duplicate_label_0: diag(1114, ts.DiagnosticCategory.Error, "Duplicate_label_0_1114", "Duplicate label '{0}'."), A_continue_statement_can_only_jump_to_a_label_of_an_enclosing_iteration_statement: diag(1115, ts.DiagnosticCategory.Error, "A_continue_statement_can_only_jump_to_a_label_of_an_enclosing_iteration_statement_1115", "A 'continue' statement can only jump to a label of an enclosing iteration statement."), A_break_statement_can_only_jump_to_a_label_of_an_enclosing_statement: diag(1116, ts.DiagnosticCategory.Error, "A_break_statement_can_only_jump_to_a_label_of_an_enclosing_statement_1116", "A 'break' statement can only jump to a label of an enclosing statement."), An_object_literal_cannot_have_multiple_properties_with_the_same_name: diag(1117, ts.DiagnosticCategory.Error, "An_object_literal_cannot_have_multiple_properties_with_the_same_name_1117", "An object literal cannot have multiple properties with the same name."), An_object_literal_cannot_have_multiple_get_Slashset_accessors_with_the_same_name: diag(1118, ts.DiagnosticCategory.Error, "An_object_literal_cannot_have_multiple_get_Slashset_accessors_with_the_same_name_1118", "An object literal cannot have multiple get/set accessors with the same name."), An_object_literal_cannot_have_property_and_accessor_with_the_same_name: diag(1119, ts.DiagnosticCategory.Error, "An_object_literal_cannot_have_property_and_accessor_with_the_same_name_1119", "An object literal cannot have property and accessor with the same name."), An_export_assignment_cannot_have_modifiers: diag(1120, ts.DiagnosticCategory.Error, "An_export_assignment_cannot_have_modifiers_1120", "An export assignment cannot have modifiers."), Octal_literals_are_not_allowed_in_strict_mode: diag(1121, ts.DiagnosticCategory.Error, "Octal_literals_are_not_allowed_in_strict_mode_1121", "Octal literals are not allowed in strict mode."), Variable_declaration_list_cannot_be_empty: diag(1123, ts.DiagnosticCategory.Error, "Variable_declaration_list_cannot_be_empty_1123", "Variable declaration list cannot be empty."), Digit_expected: diag(1124, ts.DiagnosticCategory.Error, "Digit_expected_1124", "Digit expected."), Hexadecimal_digit_expected: diag(1125, ts.DiagnosticCategory.Error, "Hexadecimal_digit_expected_1125", "Hexadecimal digit expected."), Unexpected_end_of_text: diag(1126, ts.DiagnosticCategory.Error, "Unexpected_end_of_text_1126", "Unexpected end of text."), Invalid_character: diag(1127, ts.DiagnosticCategory.Error, "Invalid_character_1127", "Invalid character."), Declaration_or_statement_expected: diag(1128, ts.DiagnosticCategory.Error, "Declaration_or_statement_expected_1128", "Declaration or statement expected."), Statement_expected: diag(1129, ts.DiagnosticCategory.Error, "Statement_expected_1129", "Statement expected."), case_or_default_expected: diag(1130, ts.DiagnosticCategory.Error, "case_or_default_expected_1130", "'case' or 'default' expected."), Property_or_signature_expected: diag(1131, ts.DiagnosticCategory.Error, "Property_or_signature_expected_1131", "Property or signature expected."), Enum_member_expected: diag(1132, ts.DiagnosticCategory.Error, "Enum_member_expected_1132", "Enum member expected."), Variable_declaration_expected: diag(1134, ts.DiagnosticCategory.Error, "Variable_declaration_expected_1134", "Variable declaration expected."), Argument_expression_expected: diag(1135, ts.DiagnosticCategory.Error, "Argument_expression_expected_1135", "Argument expression expected."), Property_assignment_expected: diag(1136, ts.DiagnosticCategory.Error, "Property_assignment_expected_1136", "Property assignment expected."), Expression_or_comma_expected: diag(1137, ts.DiagnosticCategory.Error, "Expression_or_comma_expected_1137", "Expression or comma expected."), Parameter_declaration_expected: diag(1138, ts.DiagnosticCategory.Error, "Parameter_declaration_expected_1138", "Parameter declaration expected."), Type_parameter_declaration_expected: diag(1139, ts.DiagnosticCategory.Error, "Type_parameter_declaration_expected_1139", "Type parameter declaration expected."), Type_argument_expected: diag(1140, ts.DiagnosticCategory.Error, "Type_argument_expected_1140", "Type argument expected."), String_literal_expected: diag(1141, ts.DiagnosticCategory.Error, "String_literal_expected_1141", "String literal expected."), Line_break_not_permitted_here: diag(1142, ts.DiagnosticCategory.Error, "Line_break_not_permitted_here_1142", "Line break not permitted here."), or_expected: diag(1144, ts.DiagnosticCategory.Error, "or_expected_1144", "'{' or ';' expected."), Declaration_expected: diag(1146, ts.DiagnosticCategory.Error, "Declaration_expected_1146", "Declaration expected."), Import_declarations_in_a_namespace_cannot_reference_a_module: diag(1147, ts.DiagnosticCategory.Error, "Import_declarations_in_a_namespace_cannot_reference_a_module_1147", "Import declarations in a namespace cannot reference a module."), Cannot_use_imports_exports_or_module_augmentations_when_module_is_none: diag(1148, ts.DiagnosticCategory.Error, "Cannot_use_imports_exports_or_module_augmentations_when_module_is_none_1148", "Cannot use imports, exports, or module augmentations when '--module' is 'none'."), File_name_0_differs_from_already_included_file_name_1_only_in_casing: diag(1149, ts.DiagnosticCategory.Error, "File_name_0_differs_from_already_included_file_name_1_only_in_casing_1149", "File name '{0}' differs from already included file name '{1}' only in casing."), const_declarations_must_be_initialized: diag(1155, ts.DiagnosticCategory.Error, "const_declarations_must_be_initialized_1155", "'const' declarations must be initialized."), const_declarations_can_only_be_declared_inside_a_block: diag(1156, ts.DiagnosticCategory.Error, "const_declarations_can_only_be_declared_inside_a_block_1156", "'const' declarations can only be declared inside a block."), let_declarations_can_only_be_declared_inside_a_block: diag(1157, ts.DiagnosticCategory.Error, "let_declarations_can_only_be_declared_inside_a_block_1157", "'let' declarations can only be declared inside a block."), Unterminated_template_literal: diag(1160, ts.DiagnosticCategory.Error, "Unterminated_template_literal_1160", "Unterminated template literal."), Unterminated_regular_expression_literal: diag(1161, ts.DiagnosticCategory.Error, "Unterminated_regular_expression_literal_1161", "Unterminated regular expression literal."), An_object_member_cannot_be_declared_optional: diag(1162, ts.DiagnosticCategory.Error, "An_object_member_cannot_be_declared_optional_1162", "An object member cannot be declared optional."), A_yield_expression_is_only_allowed_in_a_generator_body: diag(1163, ts.DiagnosticCategory.Error, "A_yield_expression_is_only_allowed_in_a_generator_body_1163", "A 'yield' expression is only allowed in a generator body."), Computed_property_names_are_not_allowed_in_enums: diag(1164, ts.DiagnosticCategory.Error, "Computed_property_names_are_not_allowed_in_enums_1164", "Computed property names are not allowed in enums."), A_computed_property_name_in_an_ambient_context_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type: diag(1165, ts.DiagnosticCategory.Error, "A_computed_property_name_in_an_ambient_context_must_refer_to_an_expression_whose_type_is_a_literal_t_1165", "A computed property name in an ambient context must refer to an expression whose type is a literal type or a 'unique symbol' type."), A_computed_property_name_in_a_class_property_declaration_must_have_a_simple_literal_type_or_a_unique_symbol_type: diag(1166, ts.DiagnosticCategory.Error, "A_computed_property_name_in_a_class_property_declaration_must_have_a_simple_literal_type_or_a_unique_1166", "A computed property name in a class property declaration must have a simple literal type or a 'unique symbol' type."), A_computed_property_name_in_a_method_overload_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type: diag(1168, ts.DiagnosticCategory.Error, "A_computed_property_name_in_a_method_overload_must_refer_to_an_expression_whose_type_is_a_literal_ty_1168", "A computed property name in a method overload must refer to an expression whose type is a literal type or a 'unique symbol' type."), A_computed_property_name_in_an_interface_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type: diag(1169, ts.DiagnosticCategory.Error, "A_computed_property_name_in_an_interface_must_refer_to_an_expression_whose_type_is_a_literal_type_or_1169", "A computed property name in an interface must refer to an expression whose type is a literal type or a 'unique symbol' type."), A_computed_property_name_in_a_type_literal_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type: diag(1170, ts.DiagnosticCategory.Error, "A_computed_property_name_in_a_type_literal_must_refer_to_an_expression_whose_type_is_a_literal_type__1170", "A computed property name in a type literal must refer to an expression whose type is a literal type or a 'unique symbol' type."), A_comma_expression_is_not_allowed_in_a_computed_property_name: diag(1171, ts.DiagnosticCategory.Error, "A_comma_expression_is_not_allowed_in_a_computed_property_name_1171", "A comma expression is not allowed in a computed property name."), extends_clause_already_seen: diag(1172, ts.DiagnosticCategory.Error, "extends_clause_already_seen_1172", "'extends' clause already seen."), extends_clause_must_precede_implements_clause: diag(1173, ts.DiagnosticCategory.Error, "extends_clause_must_precede_implements_clause_1173", "'extends' clause must precede 'implements' clause."), Classes_can_only_extend_a_single_class: diag(1174, ts.DiagnosticCategory.Error, "Classes_can_only_extend_a_single_class_1174", "Classes can only extend a single class."), implements_clause_already_seen: diag(1175, ts.DiagnosticCategory.Error, "implements_clause_already_seen_1175", "'implements' clause already seen."), Interface_declaration_cannot_have_implements_clause: diag(1176, ts.DiagnosticCategory.Error, "Interface_declaration_cannot_have_implements_clause_1176", "Interface declaration cannot have 'implements' clause."), Binary_digit_expected: diag(1177, ts.DiagnosticCategory.Error, "Binary_digit_expected_1177", "Binary digit expected."), Octal_digit_expected: diag(1178, ts.DiagnosticCategory.Error, "Octal_digit_expected_1178", "Octal digit expected."), Unexpected_token_expected: diag(1179, ts.DiagnosticCategory.Error, "Unexpected_token_expected_1179", "Unexpected token. '{' expected."), Property_destructuring_pattern_expected: diag(1180, ts.DiagnosticCategory.Error, "Property_destructuring_pattern_expected_1180", "Property destructuring pattern expected."), Array_element_destructuring_pattern_expected: diag(1181, ts.DiagnosticCategory.Error, "Array_element_destructuring_pattern_expected_1181", "Array element destructuring pattern expected."), A_destructuring_declaration_must_have_an_initializer: diag(1182, ts.DiagnosticCategory.Error, "A_destructuring_declaration_must_have_an_initializer_1182", "A destructuring declaration must have an initializer."), An_implementation_cannot_be_declared_in_ambient_contexts: diag(1183, ts.DiagnosticCategory.Error, "An_implementation_cannot_be_declared_in_ambient_contexts_1183", "An implementation cannot be declared in ambient contexts."), Modifiers_cannot_appear_here: diag(1184, ts.DiagnosticCategory.Error, "Modifiers_cannot_appear_here_1184", "Modifiers cannot appear here."), Merge_conflict_marker_encountered: diag(1185, ts.DiagnosticCategory.Error, "Merge_conflict_marker_encountered_1185", "Merge conflict marker encountered."), A_rest_element_cannot_have_an_initializer: diag(1186, ts.DiagnosticCategory.Error, "A_rest_element_cannot_have_an_initializer_1186", "A rest element cannot have an initializer."), A_parameter_property_may_not_be_declared_using_a_binding_pattern: diag(1187, ts.DiagnosticCategory.Error, "A_parameter_property_may_not_be_declared_using_a_binding_pattern_1187", "A parameter property may not be declared using a binding pattern."), Only_a_single_variable_declaration_is_allowed_in_a_for_of_statement: diag(1188, ts.DiagnosticCategory.Error, "Only_a_single_variable_declaration_is_allowed_in_a_for_of_statement_1188", "Only a single variable declaration is allowed in a 'for...of' statement."), The_variable_declaration_of_a_for_in_statement_cannot_have_an_initializer: diag(1189, ts.DiagnosticCategory.Error, "The_variable_declaration_of_a_for_in_statement_cannot_have_an_initializer_1189", "The variable declaration of a 'for...in' statement cannot have an initializer."), The_variable_declaration_of_a_for_of_statement_cannot_have_an_initializer: diag(1190, ts.DiagnosticCategory.Error, "The_variable_declaration_of_a_for_of_statement_cannot_have_an_initializer_1190", "The variable declaration of a 'for...of' statement cannot have an initializer."), An_import_declaration_cannot_have_modifiers: diag(1191, ts.DiagnosticCategory.Error, "An_import_declaration_cannot_have_modifiers_1191", "An import declaration cannot have modifiers."), Module_0_has_no_default_export: diag(1192, ts.DiagnosticCategory.Error, "Module_0_has_no_default_export_1192", "Module '{0}' has no default export."), An_export_declaration_cannot_have_modifiers: diag(1193, ts.DiagnosticCategory.Error, "An_export_declaration_cannot_have_modifiers_1193", "An export declaration cannot have modifiers."), Export_declarations_are_not_permitted_in_a_namespace: diag(1194, ts.DiagnosticCategory.Error, "Export_declarations_are_not_permitted_in_a_namespace_1194", "Export declarations are not permitted in a namespace."), export_Asterisk_does_not_re_export_a_default: diag(1195, ts.DiagnosticCategory.Error, "export_Asterisk_does_not_re_export_a_default_1195", "'export *' does not re-export a default."), Catch_clause_variable_type_annotation_must_be_any_or_unknown_if_specified: diag(1196, ts.DiagnosticCategory.Error, "Catch_clause_variable_type_annotation_must_be_any_or_unknown_if_specified_1196", "Catch clause variable type annotation must be 'any' or 'unknown' if specified."), Catch_clause_variable_cannot_have_an_initializer: diag(1197, ts.DiagnosticCategory.Error, "Catch_clause_variable_cannot_have_an_initializer_1197", "Catch clause variable cannot have an initializer."), An_extended_Unicode_escape_value_must_be_between_0x0_and_0x10FFFF_inclusive: diag(1198, ts.DiagnosticCategory.Error, "An_extended_Unicode_escape_value_must_be_between_0x0_and_0x10FFFF_inclusive_1198", "An extended Unicode escape value must be between 0x0 and 0x10FFFF inclusive."), Unterminated_Unicode_escape_sequence: diag(1199, ts.DiagnosticCategory.Error, "Unterminated_Unicode_escape_sequence_1199", "Unterminated Unicode escape sequence."), Line_terminator_not_permitted_before_arrow: diag(1200, ts.DiagnosticCategory.Error, "Line_terminator_not_permitted_before_arrow_1200", "Line terminator not permitted before arrow."), Import_assignment_cannot_be_used_when_targeting_ECMAScript_modules_Consider_using_import_Asterisk_as_ns_from_mod_import_a_from_mod_import_d_from_mod_or_another_module_format_instead: diag(1202, ts.DiagnosticCategory.Error, "Import_assignment_cannot_be_used_when_targeting_ECMAScript_modules_Consider_using_import_Asterisk_as_1202", "Import assignment cannot be used when targeting ECMAScript modules. Consider using 'import * as ns from \"mod\"', 'import {a} from \"mod\"', 'import d from \"mod\"', or another module format instead."), Export_assignment_cannot_be_used_when_targeting_ECMAScript_modules_Consider_using_export_default_or_another_module_format_instead: diag(1203, ts.DiagnosticCategory.Error, "Export_assignment_cannot_be_used_when_targeting_ECMAScript_modules_Consider_using_export_default_or__1203", "Export assignment cannot be used when targeting ECMAScript modules. Consider using 'export default' or another module format instead."), Re_exporting_a_type_when_the_isolatedModules_flag_is_provided_requires_using_export_type: diag(1205, ts.DiagnosticCategory.Error, "Re_exporting_a_type_when_the_isolatedModules_flag_is_provided_requires_using_export_type_1205", "Re-exporting a type when the '--isolatedModules' flag is provided requires using 'export type'."), Decorators_are_not_valid_here: diag(1206, ts.DiagnosticCategory.Error, "Decorators_are_not_valid_here_1206", "Decorators are not valid here."), Decorators_cannot_be_applied_to_multiple_get_Slashset_accessors_of_the_same_name: diag(1207, ts.DiagnosticCategory.Error, "Decorators_cannot_be_applied_to_multiple_get_Slashset_accessors_of_the_same_name_1207", "Decorators cannot be applied to multiple get/set accessors of the same name."), _0_cannot_be_compiled_under_isolatedModules_because_it_is_considered_a_global_script_file_Add_an_import_export_or_an_empty_export_statement_to_make_it_a_module: diag(1208, ts.DiagnosticCategory.Error, "_0_cannot_be_compiled_under_isolatedModules_because_it_is_considered_a_global_script_file_Add_an_imp_1208", "'{0}' cannot be compiled under '--isolatedModules' because it is considered a global script file. Add an import, export, or an empty 'export {}' statement to make it a module."), Code_contained_in_a_class_is_evaluated_in_JavaScript_s_strict_mode_which_does_not_allow_this_use_of_0_For_more_information_see_https_Colon_Slash_Slashdeveloper_mozilla_org_Slashen_US_Slashdocs_SlashWeb_SlashJavaScript_SlashReference_SlashStrict_mode: diag(1210, ts.DiagnosticCategory.Error, "Code_contained_in_a_class_is_evaluated_in_JavaScript_s_strict_mode_which_does_not_allow_this_use_of__1210", "Code contained in a class is evaluated in JavaScript's strict mode which does not allow this use of '{0}'. For more information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode."), A_class_declaration_without_the_default_modifier_must_have_a_name: diag(1211, ts.DiagnosticCategory.Error, "A_class_declaration_without_the_default_modifier_must_have_a_name_1211", "A class declaration without the 'default' modifier must have a name."), Identifier_expected_0_is_a_reserved_word_in_strict_mode: diag(1212, ts.DiagnosticCategory.Error, "Identifier_expected_0_is_a_reserved_word_in_strict_mode_1212", "Identifier expected. '{0}' is a reserved word in strict mode."), Identifier_expected_0_is_a_reserved_word_in_strict_mode_Class_definitions_are_automatically_in_strict_mode: diag(1213, ts.DiagnosticCategory.Error, "Identifier_expected_0_is_a_reserved_word_in_strict_mode_Class_definitions_are_automatically_in_stric_1213", "Identifier expected. '{0}' is a reserved word in strict mode. Class definitions are automatically in strict mode."), Identifier_expected_0_is_a_reserved_word_in_strict_mode_Modules_are_automatically_in_strict_mode: diag(1214, ts.DiagnosticCategory.Error, "Identifier_expected_0_is_a_reserved_word_in_strict_mode_Modules_are_automatically_in_strict_mode_1214", "Identifier expected. '{0}' is a reserved word in strict mode. Modules are automatically in strict mode."), Invalid_use_of_0_Modules_are_automatically_in_strict_mode: diag(1215, ts.DiagnosticCategory.Error, "Invalid_use_of_0_Modules_are_automatically_in_strict_mode_1215", "Invalid use of '{0}'. Modules are automatically in strict mode."), Identifier_expected_esModule_is_reserved_as_an_exported_marker_when_transforming_ECMAScript_modules: diag(1216, ts.DiagnosticCategory.Error, "Identifier_expected_esModule_is_reserved_as_an_exported_marker_when_transforming_ECMAScript_modules_1216", "Identifier expected. '__esModule' is reserved as an exported marker when transforming ECMAScript modules."), Export_assignment_is_not_supported_when_module_flag_is_system: diag(1218, ts.DiagnosticCategory.Error, "Export_assignment_is_not_supported_when_module_flag_is_system_1218", "Export assignment is not supported when '--module' flag is 'system'."), Experimental_support_for_decorators_is_a_feature_that_is_subject_to_change_in_a_future_release_Set_the_experimentalDecorators_option_in_your_tsconfig_or_jsconfig_to_remove_this_warning: diag(1219, ts.DiagnosticCategory.Error, "Experimental_support_for_decorators_is_a_feature_that_is_subject_to_change_in_a_future_release_Set_t_1219", "Experimental support for decorators is a feature that is subject to change in a future release. Set the 'experimentalDecorators' option in your 'tsconfig' or 'jsconfig' to remove this warning."), Generators_are_not_allowed_in_an_ambient_context: diag(1221, ts.DiagnosticCategory.Error, "Generators_are_not_allowed_in_an_ambient_context_1221", "Generators are not allowed in an ambient context."), An_overload_signature_cannot_be_declared_as_a_generator: diag(1222, ts.DiagnosticCategory.Error, "An_overload_signature_cannot_be_declared_as_a_generator_1222", "An overload signature cannot be declared as a generator."), _0_tag_already_specified: diag(1223, ts.DiagnosticCategory.Error, "_0_tag_already_specified_1223", "'{0}' tag already specified."), Signature_0_must_be_a_type_predicate: diag(1224, ts.DiagnosticCategory.Error, "Signature_0_must_be_a_type_predicate_1224", "Signature '{0}' must be a type predicate."), Cannot_find_parameter_0: diag(1225, ts.DiagnosticCategory.Error, "Cannot_find_parameter_0_1225", "Cannot find parameter '{0}'."), Type_predicate_0_is_not_assignable_to_1: diag(1226, ts.DiagnosticCategory.Error, "Type_predicate_0_is_not_assignable_to_1_1226", "Type predicate '{0}' is not assignable to '{1}'."), Parameter_0_is_not_in_the_same_position_as_parameter_1: diag(1227, ts.DiagnosticCategory.Error, "Parameter_0_is_not_in_the_same_position_as_parameter_1_1227", "Parameter '{0}' is not in the same position as parameter '{1}'."), A_type_predicate_is_only_allowed_in_return_type_position_for_functions_and_methods: diag(1228, ts.DiagnosticCategory.Error, "A_type_predicate_is_only_allowed_in_return_type_position_for_functions_and_methods_1228", "A type predicate is only allowed in return type position for functions and methods."), A_type_predicate_cannot_reference_a_rest_parameter: diag(1229, ts.DiagnosticCategory.Error, "A_type_predicate_cannot_reference_a_rest_parameter_1229", "A type predicate cannot reference a rest parameter."), A_type_predicate_cannot_reference_element_0_in_a_binding_pattern: diag(1230, ts.DiagnosticCategory.Error, "A_type_predicate_cannot_reference_element_0_in_a_binding_pattern_1230", "A type predicate cannot reference element '{0}' in a binding pattern."), An_export_assignment_must_be_at_the_top_level_of_a_file_or_module_declaration: diag(1231, ts.DiagnosticCategory.Error, "An_export_assignment_must_be_at_the_top_level_of_a_file_or_module_declaration_1231", "An export assignment must be at the top level of a file or module declaration."), An_import_declaration_can_only_be_used_at_the_top_level_of_a_namespace_or_module: diag(1232, ts.DiagnosticCategory.Error, "An_import_declaration_can_only_be_used_at_the_top_level_of_a_namespace_or_module_1232", "An import declaration can only be used at the top level of a namespace or module."), An_export_declaration_can_only_be_used_at_the_top_level_of_a_namespace_or_module: diag(1233, ts.DiagnosticCategory.Error, "An_export_declaration_can_only_be_used_at_the_top_level_of_a_namespace_or_module_1233", "An export declaration can only be used at the top level of a namespace or module."), An_ambient_module_declaration_is_only_allowed_at_the_top_level_in_a_file: diag(1234, ts.DiagnosticCategory.Error, "An_ambient_module_declaration_is_only_allowed_at_the_top_level_in_a_file_1234", "An ambient module declaration is only allowed at the top level in a file."), A_namespace_declaration_is_only_allowed_at_the_top_level_of_a_namespace_or_module: diag(1235, ts.DiagnosticCategory.Error, "A_namespace_declaration_is_only_allowed_at_the_top_level_of_a_namespace_or_module_1235", "A namespace declaration is only allowed at the top level of a namespace or module."), The_return_type_of_a_property_decorator_function_must_be_either_void_or_any: diag(1236, ts.DiagnosticCategory.Error, "The_return_type_of_a_property_decorator_function_must_be_either_void_or_any_1236", "The return type of a property decorator function must be either 'void' or 'any'."), The_return_type_of_a_parameter_decorator_function_must_be_either_void_or_any: diag(1237, ts.DiagnosticCategory.Error, "The_return_type_of_a_parameter_decorator_function_must_be_either_void_or_any_1237", "The return type of a parameter decorator function must be either 'void' or 'any'."), Unable_to_resolve_signature_of_class_decorator_when_called_as_an_expression: diag(1238, ts.DiagnosticCategory.Error, "Unable_to_resolve_signature_of_class_decorator_when_called_as_an_expression_1238", "Unable to resolve signature of class decorator when called as an expression."), Unable_to_resolve_signature_of_parameter_decorator_when_called_as_an_expression: diag(1239, ts.DiagnosticCategory.Error, "Unable_to_resolve_signature_of_parameter_decorator_when_called_as_an_expression_1239", "Unable to resolve signature of parameter decorator when called as an expression."), Unable_to_resolve_signature_of_property_decorator_when_called_as_an_expression: diag(1240, ts.DiagnosticCategory.Error, "Unable_to_resolve_signature_of_property_decorator_when_called_as_an_expression_1240", "Unable to resolve signature of property decorator when called as an expression."), Unable_to_resolve_signature_of_method_decorator_when_called_as_an_expression: diag(1241, ts.DiagnosticCategory.Error, "Unable_to_resolve_signature_of_method_decorator_when_called_as_an_expression_1241", "Unable to resolve signature of method decorator when called as an expression."), abstract_modifier_can_only_appear_on_a_class_method_or_property_declaration: diag(1242, ts.DiagnosticCategory.Error, "abstract_modifier_can_only_appear_on_a_class_method_or_property_declaration_1242", "'abstract' modifier can only appear on a class, method, or property declaration."), _0_modifier_cannot_be_used_with_1_modifier: diag(1243, ts.DiagnosticCategory.Error, "_0_modifier_cannot_be_used_with_1_modifier_1243", "'{0}' modifier cannot be used with '{1}' modifier."), Abstract_methods_can_only_appear_within_an_abstract_class: diag(1244, ts.DiagnosticCategory.Error, "Abstract_methods_can_only_appear_within_an_abstract_class_1244", "Abstract methods can only appear within an abstract class."), Method_0_cannot_have_an_implementation_because_it_is_marked_abstract: diag(1245, ts.DiagnosticCategory.Error, "Method_0_cannot_have_an_implementation_because_it_is_marked_abstract_1245", "Method '{0}' cannot have an implementation because it is marked abstract."), An_interface_property_cannot_have_an_initializer: diag(1246, ts.DiagnosticCategory.Error, "An_interface_property_cannot_have_an_initializer_1246", "An interface property cannot have an initializer."), A_type_literal_property_cannot_have_an_initializer: diag(1247, ts.DiagnosticCategory.Error, "A_type_literal_property_cannot_have_an_initializer_1247", "A type literal property cannot have an initializer."), A_class_member_cannot_have_the_0_keyword: diag(1248, ts.DiagnosticCategory.Error, "A_class_member_cannot_have_the_0_keyword_1248", "A class member cannot have the '{0}' keyword."), A_decorator_can_only_decorate_a_method_implementation_not_an_overload: diag(1249, ts.DiagnosticCategory.Error, "A_decorator_can_only_decorate_a_method_implementation_not_an_overload_1249", "A decorator can only decorate a method implementation, not an overload."), Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES3_or_ES5: diag(1250, ts.DiagnosticCategory.Error, "Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES3_or_ES5_1250", "Function declarations are not allowed inside blocks in strict mode when targeting 'ES3' or 'ES5'."), Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES3_or_ES5_Class_definitions_are_automatically_in_strict_mode: diag(1251, ts.DiagnosticCategory.Error, "Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES3_or_ES5_Class_d_1251", "Function declarations are not allowed inside blocks in strict mode when targeting 'ES3' or 'ES5'. Class definitions are automatically in strict mode."), Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES3_or_ES5_Modules_are_automatically_in_strict_mode: diag(1252, ts.DiagnosticCategory.Error, "Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES3_or_ES5_Modules_1252", "Function declarations are not allowed inside blocks in strict mode when targeting 'ES3' or 'ES5'. Modules are automatically in strict mode."), A_const_initializer_in_an_ambient_context_must_be_a_string_or_numeric_literal_or_literal_enum_reference: diag(1254, ts.DiagnosticCategory.Error, "A_const_initializer_in_an_ambient_context_must_be_a_string_or_numeric_literal_or_literal_enum_refere_1254", "A 'const' initializer in an ambient context must be a string or numeric literal or literal enum reference."), A_definite_assignment_assertion_is_not_permitted_in_this_context: diag(1255, ts.DiagnosticCategory.Error, "A_definite_assignment_assertion_is_not_permitted_in_this_context_1255", "A definite assignment assertion '!' is not permitted in this context."), A_required_element_cannot_follow_an_optional_element: diag(1257, ts.DiagnosticCategory.Error, "A_required_element_cannot_follow_an_optional_element_1257", "A required element cannot follow an optional element."), A_default_export_must_be_at_the_top_level_of_a_file_or_module_declaration: diag(1258, ts.DiagnosticCategory.Error, "A_default_export_must_be_at_the_top_level_of_a_file_or_module_declaration_1258", "A default export must be at the top level of a file or module declaration."), Module_0_can_only_be_default_imported_using_the_1_flag: diag(1259, ts.DiagnosticCategory.Error, "Module_0_can_only_be_default_imported_using_the_1_flag_1259", "Module '{0}' can only be default-imported using the '{1}' flag"), Keywords_cannot_contain_escape_characters: diag(1260, ts.DiagnosticCategory.Error, "Keywords_cannot_contain_escape_characters_1260", "Keywords cannot contain escape characters."), Already_included_file_name_0_differs_from_file_name_1_only_in_casing: diag(1261, ts.DiagnosticCategory.Error, "Already_included_file_name_0_differs_from_file_name_1_only_in_casing_1261", "Already included file name '{0}' differs from file name '{1}' only in casing."), Identifier_expected_0_is_a_reserved_word_at_the_top_level_of_a_module: diag(1262, ts.DiagnosticCategory.Error, "Identifier_expected_0_is_a_reserved_word_at_the_top_level_of_a_module_1262", "Identifier expected. '{0}' is a reserved word at the top-level of a module."), Declarations_with_initializers_cannot_also_have_definite_assignment_assertions: diag(1263, ts.DiagnosticCategory.Error, "Declarations_with_initializers_cannot_also_have_definite_assignment_assertions_1263", "Declarations with initializers cannot also have definite assignment assertions."), Declarations_with_definite_assignment_assertions_must_also_have_type_annotations: diag(1264, ts.DiagnosticCategory.Error, "Declarations_with_definite_assignment_assertions_must_also_have_type_annotations_1264", "Declarations with definite assignment assertions must also have type annotations."), A_rest_element_cannot_follow_another_rest_element: diag(1265, ts.DiagnosticCategory.Error, "A_rest_element_cannot_follow_another_rest_element_1265", "A rest element cannot follow another rest element."), An_optional_element_cannot_follow_a_rest_element: diag(1266, ts.DiagnosticCategory.Error, "An_optional_element_cannot_follow_a_rest_element_1266", "An optional element cannot follow a rest element."), Property_0_cannot_have_an_initializer_because_it_is_marked_abstract: diag(1267, ts.DiagnosticCategory.Error, "Property_0_cannot_have_an_initializer_because_it_is_marked_abstract_1267", "Property '{0}' cannot have an initializer because it is marked abstract."), An_index_signature_parameter_type_must_be_string_number_symbol_or_a_template_literal_type: diag(1268, ts.DiagnosticCategory.Error, "An_index_signature_parameter_type_must_be_string_number_symbol_or_a_template_literal_type_1268", "An index signature parameter type must be 'string', 'number', 'symbol', or a template literal type."), Cannot_use_export_import_on_a_type_or_type_only_namespace_when_the_isolatedModules_flag_is_provided: diag(1269, ts.DiagnosticCategory.Error, "Cannot_use_export_import_on_a_type_or_type_only_namespace_when_the_isolatedModules_flag_is_provided_1269", "Cannot use 'export import' on a type or type-only namespace when the '--isolatedModules' flag is provided."), Decorator_function_return_type_0_is_not_assignable_to_type_1: diag(1270, ts.DiagnosticCategory.Error, "Decorator_function_return_type_0_is_not_assignable_to_type_1_1270", "Decorator function return type '{0}' is not assignable to type '{1}'."), Decorator_function_return_type_is_0_but_is_expected_to_be_void_or_any: diag(1271, ts.DiagnosticCategory.Error, "Decorator_function_return_type_is_0_but_is_expected_to_be_void_or_any_1271", "Decorator function return type is '{0}' but is expected to be 'void' or 'any'."), A_type_referenced_in_a_decorated_signature_must_be_imported_with_import_type_or_a_namespace_import_when_isolatedModules_and_emitDecoratorMetadata_are_enabled: diag(1272, ts.DiagnosticCategory.Error, "A_type_referenced_in_a_decorated_signature_must_be_imported_with_import_type_or_a_namespace_import_w_1272", "A type referenced in a decorated signature must be imported with 'import type' or a namespace import when 'isolatedModules' and 'emitDecoratorMetadata' are enabled."), _0_modifier_cannot_appear_on_a_type_parameter: diag(1273, ts.DiagnosticCategory.Error, "_0_modifier_cannot_appear_on_a_type_parameter_1273", "'{0}' modifier cannot appear on a type parameter"), _0_modifier_can_only_appear_on_a_type_parameter_of_a_class_interface_or_type_alias: diag(1274, ts.DiagnosticCategory.Error, "_0_modifier_can_only_appear_on_a_type_parameter_of_a_class_interface_or_type_alias_1274", "'{0}' modifier can only appear on a type parameter of a class, interface or type alias"), with_statements_are_not_allowed_in_an_async_function_block: diag(1300, ts.DiagnosticCategory.Error, "with_statements_are_not_allowed_in_an_async_function_block_1300", "'with' statements are not allowed in an async function block."), await_expressions_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules: diag(1308, ts.DiagnosticCategory.Error, "await_expressions_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules_1308", "'await' expressions are only allowed within async functions and at the top levels of modules."), The_current_file_is_a_CommonJS_module_and_cannot_use_await_at_the_top_level: diag(1309, ts.DiagnosticCategory.Error, "The_current_file_is_a_CommonJS_module_and_cannot_use_await_at_the_top_level_1309", "The current file is a CommonJS module and cannot use 'await' at the top level."), Did_you_mean_to_use_a_Colon_An_can_only_follow_a_property_name_when_the_containing_object_literal_is_part_of_a_destructuring_pattern: diag(1312, ts.DiagnosticCategory.Error, "Did_you_mean_to_use_a_Colon_An_can_only_follow_a_property_name_when_the_containing_object_literal_is_1312", "Did you mean to use a ':'? An '=' can only follow a property name when the containing object literal is part of a destructuring pattern."), The_body_of_an_if_statement_cannot_be_the_empty_statement: diag(1313, ts.DiagnosticCategory.Error, "The_body_of_an_if_statement_cannot_be_the_empty_statement_1313", "The body of an 'if' statement cannot be the empty statement."), Global_module_exports_may_only_appear_in_module_files: diag(1314, ts.DiagnosticCategory.Error, "Global_module_exports_may_only_appear_in_module_files_1314", "Global module exports may only appear in module files."), Global_module_exports_may_only_appear_in_declaration_files: diag(1315, ts.DiagnosticCategory.Error, "Global_module_exports_may_only_appear_in_declaration_files_1315", "Global module exports may only appear in declaration files."), Global_module_exports_may_only_appear_at_top_level: diag(1316, ts.DiagnosticCategory.Error, "Global_module_exports_may_only_appear_at_top_level_1316", "Global module exports may only appear at top level."), A_parameter_property_cannot_be_declared_using_a_rest_parameter: diag(1317, ts.DiagnosticCategory.Error, "A_parameter_property_cannot_be_declared_using_a_rest_parameter_1317", "A parameter property cannot be declared using a rest parameter."), An_abstract_accessor_cannot_have_an_implementation: diag(1318, ts.DiagnosticCategory.Error, "An_abstract_accessor_cannot_have_an_implementation_1318", "An abstract accessor cannot have an implementation."), A_default_export_can_only_be_used_in_an_ECMAScript_style_module: diag(1319, ts.DiagnosticCategory.Error, "A_default_export_can_only_be_used_in_an_ECMAScript_style_module_1319", "A default export can only be used in an ECMAScript-style module."), Type_of_await_operand_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member: diag(1320, ts.DiagnosticCategory.Error, "Type_of_await_operand_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member_1320", "Type of 'await' operand must either be a valid promise or must not contain a callable 'then' member."), Type_of_yield_operand_in_an_async_generator_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member: diag(1321, ts.DiagnosticCategory.Error, "Type_of_yield_operand_in_an_async_generator_must_either_be_a_valid_promise_or_must_not_contain_a_cal_1321", "Type of 'yield' operand in an async generator must either be a valid promise or must not contain a callable 'then' member."), Type_of_iterated_elements_of_a_yield_Asterisk_operand_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member: diag(1322, ts.DiagnosticCategory.Error, "Type_of_iterated_elements_of_a_yield_Asterisk_operand_must_either_be_a_valid_promise_or_must_not_con_1322", "Type of iterated elements of a 'yield*' operand must either be a valid promise or must not contain a callable 'then' member."), Dynamic_imports_are_only_supported_when_the_module_flag_is_set_to_es2020_es2022_esnext_commonjs_amd_system_umd_node16_or_nodenext: diag(1323, ts.DiagnosticCategory.Error, "Dynamic_imports_are_only_supported_when_the_module_flag_is_set_to_es2020_es2022_esnext_commonjs_amd__1323", "Dynamic imports are only supported when the '--module' flag is set to 'es2020', 'es2022', 'esnext', 'commonjs', 'amd', 'system', 'umd', 'node16', or 'nodenext'."), Dynamic_imports_only_support_a_second_argument_when_the_module_option_is_set_to_esnext_node16_or_nodenext: diag(1324, ts.DiagnosticCategory.Error, "Dynamic_imports_only_support_a_second_argument_when_the_module_option_is_set_to_esnext_node16_or_nod_1324", "Dynamic imports only support a second argument when the '--module' option is set to 'esnext', 'node16', or 'nodenext'."), Argument_of_dynamic_import_cannot_be_spread_element: diag(1325, ts.DiagnosticCategory.Error, "Argument_of_dynamic_import_cannot_be_spread_element_1325", "Argument of dynamic import cannot be spread element."), This_use_of_import_is_invalid_import_calls_can_be_written_but_they_must_have_parentheses_and_cannot_have_type_arguments: diag(1326, ts.DiagnosticCategory.Error, "This_use_of_import_is_invalid_import_calls_can_be_written_but_they_must_have_parentheses_and_cannot__1326", "This use of 'import' is invalid. 'import()' calls can be written, but they must have parentheses and cannot have type arguments."), String_literal_with_double_quotes_expected: diag(1327, ts.DiagnosticCategory.Error, "String_literal_with_double_quotes_expected_1327", "String literal with double quotes expected."), Property_value_can_only_be_string_literal_numeric_literal_true_false_null_object_literal_or_array_literal: diag(1328, ts.DiagnosticCategory.Error, "Property_value_can_only_be_string_literal_numeric_literal_true_false_null_object_literal_or_array_li_1328", "Property value can only be string literal, numeric literal, 'true', 'false', 'null', object literal or array literal."), _0_accepts_too_few_arguments_to_be_used_as_a_decorator_here_Did_you_mean_to_call_it_first_and_write_0: diag(1329, ts.DiagnosticCategory.Error, "_0_accepts_too_few_arguments_to_be_used_as_a_decorator_here_Did_you_mean_to_call_it_first_and_write__1329", "'{0}' accepts too few arguments to be used as a decorator here. Did you mean to call it first and write '@{0}()'?"), A_property_of_an_interface_or_type_literal_whose_type_is_a_unique_symbol_type_must_be_readonly: diag(1330, ts.DiagnosticCategory.Error, "A_property_of_an_interface_or_type_literal_whose_type_is_a_unique_symbol_type_must_be_readonly_1330", "A property of an interface or type literal whose type is a 'unique symbol' type must be 'readonly'."), A_property_of_a_class_whose_type_is_a_unique_symbol_type_must_be_both_static_and_readonly: diag(1331, ts.DiagnosticCategory.Error, "A_property_of_a_class_whose_type_is_a_unique_symbol_type_must_be_both_static_and_readonly_1331", "A property of a class whose type is a 'unique symbol' type must be both 'static' and 'readonly'."), A_variable_whose_type_is_a_unique_symbol_type_must_be_const: diag(1332, ts.DiagnosticCategory.Error, "A_variable_whose_type_is_a_unique_symbol_type_must_be_const_1332", "A variable whose type is a 'unique symbol' type must be 'const'."), unique_symbol_types_may_not_be_used_on_a_variable_declaration_with_a_binding_name: diag(1333, ts.DiagnosticCategory.Error, "unique_symbol_types_may_not_be_used_on_a_variable_declaration_with_a_binding_name_1333", "'unique symbol' types may not be used on a variable declaration with a binding name."), unique_symbol_types_are_only_allowed_on_variables_in_a_variable_statement: diag(1334, ts.DiagnosticCategory.Error, "unique_symbol_types_are_only_allowed_on_variables_in_a_variable_statement_1334", "'unique symbol' types are only allowed on variables in a variable statement."), unique_symbol_types_are_not_allowed_here: diag(1335, ts.DiagnosticCategory.Error, "unique_symbol_types_are_not_allowed_here_1335", "'unique symbol' types are not allowed here."), An_index_signature_parameter_type_cannot_be_a_literal_type_or_generic_type_Consider_using_a_mapped_object_type_instead: diag(1337, ts.DiagnosticCategory.Error, "An_index_signature_parameter_type_cannot_be_a_literal_type_or_generic_type_Consider_using_a_mapped_o_1337", "An index signature parameter type cannot be a literal type or generic type. Consider using a mapped object type instead."), infer_declarations_are_only_permitted_in_the_extends_clause_of_a_conditional_type: diag(1338, ts.DiagnosticCategory.Error, "infer_declarations_are_only_permitted_in_the_extends_clause_of_a_conditional_type_1338", "'infer' declarations are only permitted in the 'extends' clause of a conditional type."), Module_0_does_not_refer_to_a_value_but_is_used_as_a_value_here: diag(1339, ts.DiagnosticCategory.Error, "Module_0_does_not_refer_to_a_value_but_is_used_as_a_value_here_1339", "Module '{0}' does not refer to a value, but is used as a value here."), Module_0_does_not_refer_to_a_type_but_is_used_as_a_type_here_Did_you_mean_typeof_import_0: diag(1340, ts.DiagnosticCategory.Error, "Module_0_does_not_refer_to_a_type_but_is_used_as_a_type_here_Did_you_mean_typeof_import_0_1340", "Module '{0}' does not refer to a type, but is used as a type here. Did you mean 'typeof import('{0}')'?"), Type_arguments_cannot_be_used_here: diag(1342, ts.DiagnosticCategory.Error, "Type_arguments_cannot_be_used_here_1342", "Type arguments cannot be used here."), The_import_meta_meta_property_is_only_allowed_when_the_module_option_is_es2020_es2022_esnext_system_node16_or_nodenext: diag(1343, ts.DiagnosticCategory.Error, "The_import_meta_meta_property_is_only_allowed_when_the_module_option_is_es2020_es2022_esnext_system__1343", "The 'import.meta' meta-property is only allowed when the '--module' option is 'es2020', 'es2022', 'esnext', 'system', 'node16', or 'nodenext'."), A_label_is_not_allowed_here: diag(1344, ts.DiagnosticCategory.Error, "A_label_is_not_allowed_here_1344", "'A label is not allowed here."), An_expression_of_type_void_cannot_be_tested_for_truthiness: diag(1345, ts.DiagnosticCategory.Error, "An_expression_of_type_void_cannot_be_tested_for_truthiness_1345", "An expression of type 'void' cannot be tested for truthiness."), This_parameter_is_not_allowed_with_use_strict_directive: diag(1346, ts.DiagnosticCategory.Error, "This_parameter_is_not_allowed_with_use_strict_directive_1346", "This parameter is not allowed with 'use strict' directive."), use_strict_directive_cannot_be_used_with_non_simple_parameter_list: diag(1347, ts.DiagnosticCategory.Error, "use_strict_directive_cannot_be_used_with_non_simple_parameter_list_1347", "'use strict' directive cannot be used with non-simple parameter list."), Non_simple_parameter_declared_here: diag(1348, ts.DiagnosticCategory.Error, "Non_simple_parameter_declared_here_1348", "Non-simple parameter declared here."), use_strict_directive_used_here: diag(1349, ts.DiagnosticCategory.Error, "use_strict_directive_used_here_1349", "'use strict' directive used here."), Print_the_final_configuration_instead_of_building: diag(1350, ts.DiagnosticCategory.Message, "Print_the_final_configuration_instead_of_building_1350", "Print the final configuration instead of building."), An_identifier_or_keyword_cannot_immediately_follow_a_numeric_literal: diag(1351, ts.DiagnosticCategory.Error, "An_identifier_or_keyword_cannot_immediately_follow_a_numeric_literal_1351", "An identifier or keyword cannot immediately follow a numeric literal."), A_bigint_literal_cannot_use_exponential_notation: diag(1352, ts.DiagnosticCategory.Error, "A_bigint_literal_cannot_use_exponential_notation_1352", "A bigint literal cannot use exponential notation."), A_bigint_literal_must_be_an_integer: diag(1353, ts.DiagnosticCategory.Error, "A_bigint_literal_must_be_an_integer_1353", "A bigint literal must be an integer."), readonly_type_modifier_is_only_permitted_on_array_and_tuple_literal_types: diag(1354, ts.DiagnosticCategory.Error, "readonly_type_modifier_is_only_permitted_on_array_and_tuple_literal_types_1354", "'readonly' type modifier is only permitted on array and tuple literal types."), A_const_assertions_can_only_be_applied_to_references_to_enum_members_or_string_number_boolean_array_or_object_literals: diag(1355, ts.DiagnosticCategory.Error, "A_const_assertions_can_only_be_applied_to_references_to_enum_members_or_string_number_boolean_array__1355", "A 'const' assertions can only be applied to references to enum members, or string, number, boolean, array, or object literals."), Did_you_mean_to_mark_this_function_as_async: diag(1356, ts.DiagnosticCategory.Error, "Did_you_mean_to_mark_this_function_as_async_1356", "Did you mean to mark this function as 'async'?"), An_enum_member_name_must_be_followed_by_a_or: diag(1357, ts.DiagnosticCategory.Error, "An_enum_member_name_must_be_followed_by_a_or_1357", "An enum member name must be followed by a ',', '=', or '}'."), Tagged_template_expressions_are_not_permitted_in_an_optional_chain: diag(1358, ts.DiagnosticCategory.Error, "Tagged_template_expressions_are_not_permitted_in_an_optional_chain_1358", "Tagged template expressions are not permitted in an optional chain."), Identifier_expected_0_is_a_reserved_word_that_cannot_be_used_here: diag(1359, ts.DiagnosticCategory.Error, "Identifier_expected_0_is_a_reserved_word_that_cannot_be_used_here_1359", "Identifier expected. '{0}' is a reserved word that cannot be used here."), _0_cannot_be_used_as_a_value_because_it_was_imported_using_import_type: diag(1361, ts.DiagnosticCategory.Error, "_0_cannot_be_used_as_a_value_because_it_was_imported_using_import_type_1361", "'{0}' cannot be used as a value because it was imported using 'import type'."), _0_cannot_be_used_as_a_value_because_it_was_exported_using_export_type: diag(1362, ts.DiagnosticCategory.Error, "_0_cannot_be_used_as_a_value_because_it_was_exported_using_export_type_1362", "'{0}' cannot be used as a value because it was exported using 'export type'."), A_type_only_import_can_specify_a_default_import_or_named_bindings_but_not_both: diag(1363, ts.DiagnosticCategory.Error, "A_type_only_import_can_specify_a_default_import_or_named_bindings_but_not_both_1363", "A type-only import can specify a default import or named bindings, but not both."), Convert_to_type_only_export: diag(1364, ts.DiagnosticCategory.Message, "Convert_to_type_only_export_1364", "Convert to type-only export"), Convert_all_re_exported_types_to_type_only_exports: diag(1365, ts.DiagnosticCategory.Message, "Convert_all_re_exported_types_to_type_only_exports_1365", "Convert all re-exported types to type-only exports"), Split_into_two_separate_import_declarations: diag(1366, ts.DiagnosticCategory.Message, "Split_into_two_separate_import_declarations_1366", "Split into two separate import declarations"), Split_all_invalid_type_only_imports: diag(1367, ts.DiagnosticCategory.Message, "Split_all_invalid_type_only_imports_1367", "Split all invalid type-only imports"), Did_you_mean_0: diag(1369, ts.DiagnosticCategory.Message, "Did_you_mean_0_1369", "Did you mean '{0}'?"), This_import_is_never_used_as_a_value_and_must_use_import_type_because_importsNotUsedAsValues_is_set_to_error: diag(1371, ts.DiagnosticCategory.Error, "This_import_is_never_used_as_a_value_and_must_use_import_type_because_importsNotUsedAsValues_is_set__1371", "This import is never used as a value and must use 'import type' because 'importsNotUsedAsValues' is set to 'error'."), Convert_to_type_only_import: diag(1373, ts.DiagnosticCategory.Message, "Convert_to_type_only_import_1373", "Convert to type-only import"), Convert_all_imports_not_used_as_a_value_to_type_only_imports: diag(1374, ts.DiagnosticCategory.Message, "Convert_all_imports_not_used_as_a_value_to_type_only_imports_1374", "Convert all imports not used as a value to type-only imports"), await_expressions_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_file_has_no_imports_or_exports_Consider_adding_an_empty_export_to_make_this_file_a_module: diag(1375, ts.DiagnosticCategory.Error, "await_expressions_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_fi_1375", "'await' expressions are only allowed at the top level of a file when that file is a module, but this file has no imports or exports. Consider adding an empty 'export {}' to make this file a module."), _0_was_imported_here: diag(1376, ts.DiagnosticCategory.Message, "_0_was_imported_here_1376", "'{0}' was imported here."), _0_was_exported_here: diag(1377, ts.DiagnosticCategory.Message, "_0_was_exported_here_1377", "'{0}' was exported here."), Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_node16_or_nodenext_and_the_target_option_is_set_to_es2017_or_higher: diag(1378, ts.DiagnosticCategory.Error, "Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_n_1378", "Top-level 'await' expressions are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', 'node16', or 'nodenext', and the 'target' option is set to 'es2017' or higher."), An_import_alias_cannot_reference_a_declaration_that_was_exported_using_export_type: diag(1379, ts.DiagnosticCategory.Error, "An_import_alias_cannot_reference_a_declaration_that_was_exported_using_export_type_1379", "An import alias cannot reference a declaration that was exported using 'export type'."), An_import_alias_cannot_reference_a_declaration_that_was_imported_using_import_type: diag(1380, ts.DiagnosticCategory.Error, "An_import_alias_cannot_reference_a_declaration_that_was_imported_using_import_type_1380", "An import alias cannot reference a declaration that was imported using 'import type'."), Unexpected_token_Did_you_mean_or_rbrace: diag(1381, ts.DiagnosticCategory.Error, "Unexpected_token_Did_you_mean_or_rbrace_1381", "Unexpected token. Did you mean `{'}'}` or `}`?"), Unexpected_token_Did_you_mean_or_gt: diag(1382, ts.DiagnosticCategory.Error, "Unexpected_token_Did_you_mean_or_gt_1382", "Unexpected token. Did you mean `{'>'}` or `>`?"), Only_named_exports_may_use_export_type: diag(1383, ts.DiagnosticCategory.Error, "Only_named_exports_may_use_export_type_1383", "Only named exports may use 'export type'."), Function_type_notation_must_be_parenthesized_when_used_in_a_union_type: diag(1385, ts.DiagnosticCategory.Error, "Function_type_notation_must_be_parenthesized_when_used_in_a_union_type_1385", "Function type notation must be parenthesized when used in a union type."), Constructor_type_notation_must_be_parenthesized_when_used_in_a_union_type: diag(1386, ts.DiagnosticCategory.Error, "Constructor_type_notation_must_be_parenthesized_when_used_in_a_union_type_1386", "Constructor type notation must be parenthesized when used in a union type."), Function_type_notation_must_be_parenthesized_when_used_in_an_intersection_type: diag(1387, ts.DiagnosticCategory.Error, "Function_type_notation_must_be_parenthesized_when_used_in_an_intersection_type_1387", "Function type notation must be parenthesized when used in an intersection type."), Constructor_type_notation_must_be_parenthesized_when_used_in_an_intersection_type: diag(1388, ts.DiagnosticCategory.Error, "Constructor_type_notation_must_be_parenthesized_when_used_in_an_intersection_type_1388", "Constructor type notation must be parenthesized when used in an intersection type."), _0_is_not_allowed_as_a_variable_declaration_name: diag(1389, ts.DiagnosticCategory.Error, "_0_is_not_allowed_as_a_variable_declaration_name_1389", "'{0}' is not allowed as a variable declaration name."), _0_is_not_allowed_as_a_parameter_name: diag(1390, ts.DiagnosticCategory.Error, "_0_is_not_allowed_as_a_parameter_name_1390", "'{0}' is not allowed as a parameter name."), An_import_alias_cannot_use_import_type: diag(1392, ts.DiagnosticCategory.Error, "An_import_alias_cannot_use_import_type_1392", "An import alias cannot use 'import type'"), Imported_via_0_from_file_1: diag(1393, ts.DiagnosticCategory.Message, "Imported_via_0_from_file_1_1393", "Imported via {0} from file '{1}'"), Imported_via_0_from_file_1_with_packageId_2: diag(1394, ts.DiagnosticCategory.Message, "Imported_via_0_from_file_1_with_packageId_2_1394", "Imported via {0} from file '{1}' with packageId '{2}'"), Imported_via_0_from_file_1_to_import_importHelpers_as_specified_in_compilerOptions: diag(1395, ts.DiagnosticCategory.Message, "Imported_via_0_from_file_1_to_import_importHelpers_as_specified_in_compilerOptions_1395", "Imported via {0} from file '{1}' to import 'importHelpers' as specified in compilerOptions"), Imported_via_0_from_file_1_with_packageId_2_to_import_importHelpers_as_specified_in_compilerOptions: diag(1396, ts.DiagnosticCategory.Message, "Imported_via_0_from_file_1_with_packageId_2_to_import_importHelpers_as_specified_in_compilerOptions_1396", "Imported via {0} from file '{1}' with packageId '{2}' to import 'importHelpers' as specified in compilerOptions"), Imported_via_0_from_file_1_to_import_jsx_and_jsxs_factory_functions: diag(1397, ts.DiagnosticCategory.Message, "Imported_via_0_from_file_1_to_import_jsx_and_jsxs_factory_functions_1397", "Imported via {0} from file '{1}' to import 'jsx' and 'jsxs' factory functions"), Imported_via_0_from_file_1_with_packageId_2_to_import_jsx_and_jsxs_factory_functions: diag(1398, ts.DiagnosticCategory.Message, "Imported_via_0_from_file_1_with_packageId_2_to_import_jsx_and_jsxs_factory_functions_1398", "Imported via {0} from file '{1}' with packageId '{2}' to import 'jsx' and 'jsxs' factory functions"), File_is_included_via_import_here: diag(1399, ts.DiagnosticCategory.Message, "File_is_included_via_import_here_1399", "File is included via import here."), Referenced_via_0_from_file_1: diag(1400, ts.DiagnosticCategory.Message, "Referenced_via_0_from_file_1_1400", "Referenced via '{0}' from file '{1}'"), File_is_included_via_reference_here: diag(1401, ts.DiagnosticCategory.Message, "File_is_included_via_reference_here_1401", "File is included via reference here."), Type_library_referenced_via_0_from_file_1: diag(1402, ts.DiagnosticCategory.Message, "Type_library_referenced_via_0_from_file_1_1402", "Type library referenced via '{0}' from file '{1}'"), Type_library_referenced_via_0_from_file_1_with_packageId_2: diag(1403, ts.DiagnosticCategory.Message, "Type_library_referenced_via_0_from_file_1_with_packageId_2_1403", "Type library referenced via '{0}' from file '{1}' with packageId '{2}'"), File_is_included_via_type_library_reference_here: diag(1404, ts.DiagnosticCategory.Message, "File_is_included_via_type_library_reference_here_1404", "File is included via type library reference here."), Library_referenced_via_0_from_file_1: diag(1405, ts.DiagnosticCategory.Message, "Library_referenced_via_0_from_file_1_1405", "Library referenced via '{0}' from file '{1}'"), File_is_included_via_library_reference_here: diag(1406, ts.DiagnosticCategory.Message, "File_is_included_via_library_reference_here_1406", "File is included via library reference here."), Matched_by_include_pattern_0_in_1: diag(1407, ts.DiagnosticCategory.Message, "Matched_by_include_pattern_0_in_1_1407", "Matched by include pattern '{0}' in '{1}'"), File_is_matched_by_include_pattern_specified_here: diag(1408, ts.DiagnosticCategory.Message, "File_is_matched_by_include_pattern_specified_here_1408", "File is matched by include pattern specified here."), Part_of_files_list_in_tsconfig_json: diag(1409, ts.DiagnosticCategory.Message, "Part_of_files_list_in_tsconfig_json_1409", "Part of 'files' list in tsconfig.json"), File_is_matched_by_files_list_specified_here: diag(1410, ts.DiagnosticCategory.Message, "File_is_matched_by_files_list_specified_here_1410", "File is matched by 'files' list specified here."), Output_from_referenced_project_0_included_because_1_specified: diag(1411, ts.DiagnosticCategory.Message, "Output_from_referenced_project_0_included_because_1_specified_1411", "Output from referenced project '{0}' included because '{1}' specified"), Output_from_referenced_project_0_included_because_module_is_specified_as_none: diag(1412, ts.DiagnosticCategory.Message, "Output_from_referenced_project_0_included_because_module_is_specified_as_none_1412", "Output from referenced project '{0}' included because '--module' is specified as 'none'"), File_is_output_from_referenced_project_specified_here: diag(1413, ts.DiagnosticCategory.Message, "File_is_output_from_referenced_project_specified_here_1413", "File is output from referenced project specified here."), Source_from_referenced_project_0_included_because_1_specified: diag(1414, ts.DiagnosticCategory.Message, "Source_from_referenced_project_0_included_because_1_specified_1414", "Source from referenced project '{0}' included because '{1}' specified"), Source_from_referenced_project_0_included_because_module_is_specified_as_none: diag(1415, ts.DiagnosticCategory.Message, "Source_from_referenced_project_0_included_because_module_is_specified_as_none_1415", "Source from referenced project '{0}' included because '--module' is specified as 'none'"), File_is_source_from_referenced_project_specified_here: diag(1416, ts.DiagnosticCategory.Message, "File_is_source_from_referenced_project_specified_here_1416", "File is source from referenced project specified here."), Entry_point_of_type_library_0_specified_in_compilerOptions: diag(1417, ts.DiagnosticCategory.Message, "Entry_point_of_type_library_0_specified_in_compilerOptions_1417", "Entry point of type library '{0}' specified in compilerOptions"), Entry_point_of_type_library_0_specified_in_compilerOptions_with_packageId_1: diag(1418, ts.DiagnosticCategory.Message, "Entry_point_of_type_library_0_specified_in_compilerOptions_with_packageId_1_1418", "Entry point of type library '{0}' specified in compilerOptions with packageId '{1}'"), File_is_entry_point_of_type_library_specified_here: diag(1419, ts.DiagnosticCategory.Message, "File_is_entry_point_of_type_library_specified_here_1419", "File is entry point of type library specified here."), Entry_point_for_implicit_type_library_0: diag(1420, ts.DiagnosticCategory.Message, "Entry_point_for_implicit_type_library_0_1420", "Entry point for implicit type library '{0}'"), Entry_point_for_implicit_type_library_0_with_packageId_1: diag(1421, ts.DiagnosticCategory.Message, "Entry_point_for_implicit_type_library_0_with_packageId_1_1421", "Entry point for implicit type library '{0}' with packageId '{1}'"), Library_0_specified_in_compilerOptions: diag(1422, ts.DiagnosticCategory.Message, "Library_0_specified_in_compilerOptions_1422", "Library '{0}' specified in compilerOptions"), File_is_library_specified_here: diag(1423, ts.DiagnosticCategory.Message, "File_is_library_specified_here_1423", "File is library specified here."), Default_library: diag(1424, ts.DiagnosticCategory.Message, "Default_library_1424", "Default library"), Default_library_for_target_0: diag(1425, ts.DiagnosticCategory.Message, "Default_library_for_target_0_1425", "Default library for target '{0}'"), File_is_default_library_for_target_specified_here: diag(1426, ts.DiagnosticCategory.Message, "File_is_default_library_for_target_specified_here_1426", "File is default library for target specified here."), Root_file_specified_for_compilation: diag(1427, ts.DiagnosticCategory.Message, "Root_file_specified_for_compilation_1427", "Root file specified for compilation"), File_is_output_of_project_reference_source_0: diag(1428, ts.DiagnosticCategory.Message, "File_is_output_of_project_reference_source_0_1428", "File is output of project reference source '{0}'"), File_redirects_to_file_0: diag(1429, ts.DiagnosticCategory.Message, "File_redirects_to_file_0_1429", "File redirects to file '{0}'"), The_file_is_in_the_program_because_Colon: diag(1430, ts.DiagnosticCategory.Message, "The_file_is_in_the_program_because_Colon_1430", "The file is in the program because:"), for_await_loops_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_file_has_no_imports_or_exports_Consider_adding_an_empty_export_to_make_this_file_a_module: diag(1431, ts.DiagnosticCategory.Error, "for_await_loops_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_file_1431", "'for await' loops are only allowed at the top level of a file when that file is a module, but this file has no imports or exports. Consider adding an empty 'export {}' to make this file a module."), Top_level_for_await_loops_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_node16_or_nodenext_and_the_target_option_is_set_to_es2017_or_higher: diag(1432, ts.DiagnosticCategory.Error, "Top_level_for_await_loops_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_nod_1432", "Top-level 'for await' loops are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', 'node16', or 'nodenext', and the 'target' option is set to 'es2017' or higher."), Decorators_may_not_be_applied_to_this_parameters: diag(1433, ts.DiagnosticCategory.Error, "Decorators_may_not_be_applied_to_this_parameters_1433", "Decorators may not be applied to 'this' parameters."), Unexpected_keyword_or_identifier: diag(1434, ts.DiagnosticCategory.Error, "Unexpected_keyword_or_identifier_1434", "Unexpected keyword or identifier."), Unknown_keyword_or_identifier_Did_you_mean_0: diag(1435, ts.DiagnosticCategory.Error, "Unknown_keyword_or_identifier_Did_you_mean_0_1435", "Unknown keyword or identifier. Did you mean '{0}'?"), Decorators_must_precede_the_name_and_all_keywords_of_property_declarations: diag(1436, ts.DiagnosticCategory.Error, "Decorators_must_precede_the_name_and_all_keywords_of_property_declarations_1436", "Decorators must precede the name and all keywords of property declarations."), Namespace_must_be_given_a_name: diag(1437, ts.DiagnosticCategory.Error, "Namespace_must_be_given_a_name_1437", "Namespace must be given a name."), Interface_must_be_given_a_name: diag(1438, ts.DiagnosticCategory.Error, "Interface_must_be_given_a_name_1438", "Interface must be given a name."), Type_alias_must_be_given_a_name: diag(1439, ts.DiagnosticCategory.Error, "Type_alias_must_be_given_a_name_1439", "Type alias must be given a name."), Variable_declaration_not_allowed_at_this_location: diag(1440, ts.DiagnosticCategory.Error, "Variable_declaration_not_allowed_at_this_location_1440", "Variable declaration not allowed at this location."), Cannot_start_a_function_call_in_a_type_annotation: diag(1441, ts.DiagnosticCategory.Error, "Cannot_start_a_function_call_in_a_type_annotation_1441", "Cannot start a function call in a type annotation."), Expected_for_property_initializer: diag(1442, ts.DiagnosticCategory.Error, "Expected_for_property_initializer_1442", "Expected '=' for property initializer."), Module_declaration_names_may_only_use_or_quoted_strings: diag(1443, ts.DiagnosticCategory.Error, "Module_declaration_names_may_only_use_or_quoted_strings_1443", "Module declaration names may only use ' or \" quoted strings."), _0_is_a_type_and_must_be_imported_using_a_type_only_import_when_preserveValueImports_and_isolatedModules_are_both_enabled: diag(1444, ts.DiagnosticCategory.Error, "_0_is_a_type_and_must_be_imported_using_a_type_only_import_when_preserveValueImports_and_isolatedMod_1444", "'{0}' is a type and must be imported using a type-only import when 'preserveValueImports' and 'isolatedModules' are both enabled."), _0_resolves_to_a_type_only_declaration_and_must_be_imported_using_a_type_only_import_when_preserveValueImports_and_isolatedModules_are_both_enabled: diag(1446, ts.DiagnosticCategory.Error, "_0_resolves_to_a_type_only_declaration_and_must_be_imported_using_a_type_only_import_when_preserveVa_1446", "'{0}' resolves to a type-only declaration and must be imported using a type-only import when 'preserveValueImports' and 'isolatedModules' are both enabled."), _0_resolves_to_a_type_only_declaration_and_must_be_re_exported_using_a_type_only_re_export_when_isolatedModules_is_enabled: diag(1448, ts.DiagnosticCategory.Error, "_0_resolves_to_a_type_only_declaration_and_must_be_re_exported_using_a_type_only_re_export_when_isol_1448", "'{0}' resolves to a type-only declaration and must be re-exported using a type-only re-export when 'isolatedModules' is enabled."), Preserve_unused_imported_values_in_the_JavaScript_output_that_would_otherwise_be_removed: diag(1449, ts.DiagnosticCategory.Message, "Preserve_unused_imported_values_in_the_JavaScript_output_that_would_otherwise_be_removed_1449", "Preserve unused imported values in the JavaScript output that would otherwise be removed."), Dynamic_imports_can_only_accept_a_module_specifier_and_an_optional_assertion_as_arguments: diag(1450, ts.DiagnosticCategory.Message, "Dynamic_imports_can_only_accept_a_module_specifier_and_an_optional_assertion_as_arguments_1450", "Dynamic imports can only accept a module specifier and an optional assertion as arguments"), Private_identifiers_are_only_allowed_in_class_bodies_and_may_only_be_used_as_part_of_a_class_member_declaration_property_access_or_on_the_left_hand_side_of_an_in_expression: diag(1451, ts.DiagnosticCategory.Error, "Private_identifiers_are_only_allowed_in_class_bodies_and_may_only_be_used_as_part_of_a_class_member__1451", "Private identifiers are only allowed in class bodies and may only be used as part of a class member declaration, property access, or on the left-hand-side of an 'in' expression"), resolution_mode_assertions_are_only_supported_when_moduleResolution_is_node16_or_nodenext: diag(1452, ts.DiagnosticCategory.Error, "resolution_mode_assertions_are_only_supported_when_moduleResolution_is_node16_or_nodenext_1452", "'resolution-mode' assertions are only supported when `moduleResolution` is `node16` or `nodenext`."), resolution_mode_should_be_either_require_or_import: diag(1453, ts.DiagnosticCategory.Error, "resolution_mode_should_be_either_require_or_import_1453", "`resolution-mode` should be either `require` or `import`."), resolution_mode_can_only_be_set_for_type_only_imports: diag(1454, ts.DiagnosticCategory.Error, "resolution_mode_can_only_be_set_for_type_only_imports_1454", "`resolution-mode` can only be set for type-only imports."), resolution_mode_is_the_only_valid_key_for_type_import_assertions: diag(1455, ts.DiagnosticCategory.Error, "resolution_mode_is_the_only_valid_key_for_type_import_assertions_1455", "`resolution-mode` is the only valid key for type import assertions."), Type_import_assertions_should_have_exactly_one_key_resolution_mode_with_value_import_or_require: diag(1456, ts.DiagnosticCategory.Error, "Type_import_assertions_should_have_exactly_one_key_resolution_mode_with_value_import_or_require_1456", "Type import assertions should have exactly one key - `resolution-mode` - with value `import` or `require`."), The_import_meta_meta_property_is_not_allowed_in_files_which_will_build_into_CommonJS_output: diag(1470, ts.DiagnosticCategory.Error, "The_import_meta_meta_property_is_not_allowed_in_files_which_will_build_into_CommonJS_output_1470", "The 'import.meta' meta-property is not allowed in files which will build into CommonJS output."), Module_0_cannot_be_imported_using_this_construct_The_specifier_only_resolves_to_an_ES_module_which_cannot_be_imported_synchronously_Use_dynamic_import_instead: diag(1471, ts.DiagnosticCategory.Error, "Module_0_cannot_be_imported_using_this_construct_The_specifier_only_resolves_to_an_ES_module_which_c_1471", "Module '{0}' cannot be imported using this construct. The specifier only resolves to an ES module, which cannot be imported synchronously. Use dynamic import instead."), catch_or_finally_expected: diag(1472, ts.DiagnosticCategory.Error, "catch_or_finally_expected_1472", "'catch' or 'finally' expected."), An_import_declaration_can_only_be_used_at_the_top_level_of_a_module: diag(1473, ts.DiagnosticCategory.Error, "An_import_declaration_can_only_be_used_at_the_top_level_of_a_module_1473", "An import declaration can only be used at the top level of a module."), An_export_declaration_can_only_be_used_at_the_top_level_of_a_module: diag(1474, ts.DiagnosticCategory.Error, "An_export_declaration_can_only_be_used_at_the_top_level_of_a_module_1474", "An export declaration can only be used at the top level of a module."), Control_what_method_is_used_to_detect_module_format_JS_files: diag(1475, ts.DiagnosticCategory.Message, "Control_what_method_is_used_to_detect_module_format_JS_files_1475", "Control what method is used to detect module-format JS files."), auto_Colon_Treat_files_with_imports_exports_import_meta_jsx_with_jsx_Colon_react_jsx_or_esm_format_with_module_Colon_node16_as_modules: diag(1476, ts.DiagnosticCategory.Message, "auto_Colon_Treat_files_with_imports_exports_import_meta_jsx_with_jsx_Colon_react_jsx_or_esm_format_w_1476", "\"auto\": Treat files with imports, exports, import.meta, jsx (with jsx: react-jsx), or esm format (with module: node16+) as modules."), The_types_of_0_are_incompatible_between_these_types: diag(2200, ts.DiagnosticCategory.Error, "The_types_of_0_are_incompatible_between_these_types_2200", "The types of '{0}' are incompatible between these types."), The_types_returned_by_0_are_incompatible_between_these_types: diag(2201, ts.DiagnosticCategory.Error, "The_types_returned_by_0_are_incompatible_between_these_types_2201", "The types returned by '{0}' are incompatible between these types."), Call_signature_return_types_0_and_1_are_incompatible: diag(2202, ts.DiagnosticCategory.Error, "Call_signature_return_types_0_and_1_are_incompatible_2202", "Call signature return types '{0}' and '{1}' are incompatible.", /*reportsUnnecessary*/ undefined, /*elidedInCompatabilityPyramid*/ true), Construct_signature_return_types_0_and_1_are_incompatible: diag(2203, ts.DiagnosticCategory.Error, "Construct_signature_return_types_0_and_1_are_incompatible_2203", "Construct signature return types '{0}' and '{1}' are incompatible.", /*reportsUnnecessary*/ undefined, /*elidedInCompatabilityPyramid*/ true), Call_signatures_with_no_arguments_have_incompatible_return_types_0_and_1: diag(2204, ts.DiagnosticCategory.Error, "Call_signatures_with_no_arguments_have_incompatible_return_types_0_and_1_2204", "Call signatures with no arguments have incompatible return types '{0}' and '{1}'.", /*reportsUnnecessary*/ undefined, /*elidedInCompatabilityPyramid*/ true), Construct_signatures_with_no_arguments_have_incompatible_return_types_0_and_1: diag(2205, ts.DiagnosticCategory.Error, "Construct_signatures_with_no_arguments_have_incompatible_return_types_0_and_1_2205", "Construct signatures with no arguments have incompatible return types '{0}' and '{1}'.", /*reportsUnnecessary*/ undefined, /*elidedInCompatabilityPyramid*/ true), The_type_modifier_cannot_be_used_on_a_named_import_when_import_type_is_used_on_its_import_statement: diag(2206, ts.DiagnosticCategory.Error, "The_type_modifier_cannot_be_used_on_a_named_import_when_import_type_is_used_on_its_import_statement_2206", "The 'type' modifier cannot be used on a named import when 'import type' is used on its import statement."), The_type_modifier_cannot_be_used_on_a_named_export_when_export_type_is_used_on_its_export_statement: diag(2207, ts.DiagnosticCategory.Error, "The_type_modifier_cannot_be_used_on_a_named_export_when_export_type_is_used_on_its_export_statement_2207", "The 'type' modifier cannot be used on a named export when 'export type' is used on its export statement."), The_project_root_is_ambiguous_but_is_required_to_resolve_export_map_entry_0_in_file_1_Supply_the_rootDir_compiler_option_to_disambiguate: diag(2209, ts.DiagnosticCategory.Error, "The_project_root_is_ambiguous_but_is_required_to_resolve_export_map_entry_0_in_file_1_Supply_the_roo_2209", "The project root is ambiguous, but is required to resolve export map entry '{0}' in file '{1}'. Supply the `rootDir` compiler option to disambiguate."), The_project_root_is_ambiguous_but_is_required_to_resolve_import_map_entry_0_in_file_1_Supply_the_rootDir_compiler_option_to_disambiguate: diag(2210, ts.DiagnosticCategory.Error, "The_project_root_is_ambiguous_but_is_required_to_resolve_import_map_entry_0_in_file_1_Supply_the_roo_2210", "The project root is ambiguous, but is required to resolve import map entry '{0}' in file '{1}'. Supply the `rootDir` compiler option to disambiguate."), Duplicate_identifier_0: diag(2300, ts.DiagnosticCategory.Error, "Duplicate_identifier_0_2300", "Duplicate identifier '{0}'."), Initializer_of_instance_member_variable_0_cannot_reference_identifier_1_declared_in_the_constructor: diag(2301, ts.DiagnosticCategory.Error, "Initializer_of_instance_member_variable_0_cannot_reference_identifier_1_declared_in_the_constructor_2301", "Initializer of instance member variable '{0}' cannot reference identifier '{1}' declared in the constructor."), Static_members_cannot_reference_class_type_parameters: diag(2302, ts.DiagnosticCategory.Error, "Static_members_cannot_reference_class_type_parameters_2302", "Static members cannot reference class type parameters."), Circular_definition_of_import_alias_0: diag(2303, ts.DiagnosticCategory.Error, "Circular_definition_of_import_alias_0_2303", "Circular definition of import alias '{0}'."), Cannot_find_name_0: diag(2304, ts.DiagnosticCategory.Error, "Cannot_find_name_0_2304", "Cannot find name '{0}'."), Module_0_has_no_exported_member_1: diag(2305, ts.DiagnosticCategory.Error, "Module_0_has_no_exported_member_1_2305", "Module '{0}' has no exported member '{1}'."), File_0_is_not_a_module: diag(2306, ts.DiagnosticCategory.Error, "File_0_is_not_a_module_2306", "File '{0}' is not a module."), Cannot_find_module_0_or_its_corresponding_type_declarations: diag(2307, ts.DiagnosticCategory.Error, "Cannot_find_module_0_or_its_corresponding_type_declarations_2307", "Cannot find module '{0}' or its corresponding type declarations."), Module_0_has_already_exported_a_member_named_1_Consider_explicitly_re_exporting_to_resolve_the_ambiguity: diag(2308, ts.DiagnosticCategory.Error, "Module_0_has_already_exported_a_member_named_1_Consider_explicitly_re_exporting_to_resolve_the_ambig_2308", "Module {0} has already exported a member named '{1}'. Consider explicitly re-exporting to resolve the ambiguity."), An_export_assignment_cannot_be_used_in_a_module_with_other_exported_elements: diag(2309, ts.DiagnosticCategory.Error, "An_export_assignment_cannot_be_used_in_a_module_with_other_exported_elements_2309", "An export assignment cannot be used in a module with other exported elements."), Type_0_recursively_references_itself_as_a_base_type: diag(2310, ts.DiagnosticCategory.Error, "Type_0_recursively_references_itself_as_a_base_type_2310", "Type '{0}' recursively references itself as a base type."), Cannot_find_name_0_Did_you_mean_to_write_this_in_an_async_function: diag(2311, ts.DiagnosticCategory.Error, "Cannot_find_name_0_Did_you_mean_to_write_this_in_an_async_function_2311", "Cannot find name '{0}'. Did you mean to write this in an async function?"), An_interface_can_only_extend_an_object_type_or_intersection_of_object_types_with_statically_known_members: diag(2312, ts.DiagnosticCategory.Error, "An_interface_can_only_extend_an_object_type_or_intersection_of_object_types_with_statically_known_me_2312", "An interface can only extend an object type or intersection of object types with statically known members."), Type_parameter_0_has_a_circular_constraint: diag(2313, ts.DiagnosticCategory.Error, "Type_parameter_0_has_a_circular_constraint_2313", "Type parameter '{0}' has a circular constraint."), Generic_type_0_requires_1_type_argument_s: diag(2314, ts.DiagnosticCategory.Error, "Generic_type_0_requires_1_type_argument_s_2314", "Generic type '{0}' requires {1} type argument(s)."), Type_0_is_not_generic: diag(2315, ts.DiagnosticCategory.Error, "Type_0_is_not_generic_2315", "Type '{0}' is not generic."), Global_type_0_must_be_a_class_or_interface_type: diag(2316, ts.DiagnosticCategory.Error, "Global_type_0_must_be_a_class_or_interface_type_2316", "Global type '{0}' must be a class or interface type."), Global_type_0_must_have_1_type_parameter_s: diag(2317, ts.DiagnosticCategory.Error, "Global_type_0_must_have_1_type_parameter_s_2317", "Global type '{0}' must have {1} type parameter(s)."), Cannot_find_global_type_0: diag(2318, ts.DiagnosticCategory.Error, "Cannot_find_global_type_0_2318", "Cannot find global type '{0}'."), Named_property_0_of_types_1_and_2_are_not_identical: diag(2319, ts.DiagnosticCategory.Error, "Named_property_0_of_types_1_and_2_are_not_identical_2319", "Named property '{0}' of types '{1}' and '{2}' are not identical."), Interface_0_cannot_simultaneously_extend_types_1_and_2: diag(2320, ts.DiagnosticCategory.Error, "Interface_0_cannot_simultaneously_extend_types_1_and_2_2320", "Interface '{0}' cannot simultaneously extend types '{1}' and '{2}'."), Excessive_stack_depth_comparing_types_0_and_1: diag(2321, ts.DiagnosticCategory.Error, "Excessive_stack_depth_comparing_types_0_and_1_2321", "Excessive stack depth comparing types '{0}' and '{1}'."), Type_0_is_not_assignable_to_type_1: diag(2322, ts.DiagnosticCategory.Error, "Type_0_is_not_assignable_to_type_1_2322", "Type '{0}' is not assignable to type '{1}'."), Cannot_redeclare_exported_variable_0: diag(2323, ts.DiagnosticCategory.Error, "Cannot_redeclare_exported_variable_0_2323", "Cannot redeclare exported variable '{0}'."), Property_0_is_missing_in_type_1: diag(2324, ts.DiagnosticCategory.Error, "Property_0_is_missing_in_type_1_2324", "Property '{0}' is missing in type '{1}'."), Property_0_is_private_in_type_1_but_not_in_type_2: diag(2325, ts.DiagnosticCategory.Error, "Property_0_is_private_in_type_1_but_not_in_type_2_2325", "Property '{0}' is private in type '{1}' but not in type '{2}'."), Types_of_property_0_are_incompatible: diag(2326, ts.DiagnosticCategory.Error, "Types_of_property_0_are_incompatible_2326", "Types of property '{0}' are incompatible."), Property_0_is_optional_in_type_1_but_required_in_type_2: diag(2327, ts.DiagnosticCategory.Error, "Property_0_is_optional_in_type_1_but_required_in_type_2_2327", "Property '{0}' is optional in type '{1}' but required in type '{2}'."), Types_of_parameters_0_and_1_are_incompatible: diag(2328, ts.DiagnosticCategory.Error, "Types_of_parameters_0_and_1_are_incompatible_2328", "Types of parameters '{0}' and '{1}' are incompatible."), Index_signature_for_type_0_is_missing_in_type_1: diag(2329, ts.DiagnosticCategory.Error, "Index_signature_for_type_0_is_missing_in_type_1_2329", "Index signature for type '{0}' is missing in type '{1}'."), _0_and_1_index_signatures_are_incompatible: diag(2330, ts.DiagnosticCategory.Error, "_0_and_1_index_signatures_are_incompatible_2330", "'{0}' and '{1}' index signatures are incompatible."), this_cannot_be_referenced_in_a_module_or_namespace_body: diag(2331, ts.DiagnosticCategory.Error, "this_cannot_be_referenced_in_a_module_or_namespace_body_2331", "'this' cannot be referenced in a module or namespace body."), this_cannot_be_referenced_in_current_location: diag(2332, ts.DiagnosticCategory.Error, "this_cannot_be_referenced_in_current_location_2332", "'this' cannot be referenced in current location."), this_cannot_be_referenced_in_constructor_arguments: diag(2333, ts.DiagnosticCategory.Error, "this_cannot_be_referenced_in_constructor_arguments_2333", "'this' cannot be referenced in constructor arguments."), this_cannot_be_referenced_in_a_static_property_initializer: diag(2334, ts.DiagnosticCategory.Error, "this_cannot_be_referenced_in_a_static_property_initializer_2334", "'this' cannot be referenced in a static property initializer."), super_can_only_be_referenced_in_a_derived_class: diag(2335, ts.DiagnosticCategory.Error, "super_can_only_be_referenced_in_a_derived_class_2335", "'super' can only be referenced in a derived class."), super_cannot_be_referenced_in_constructor_arguments: diag(2336, ts.DiagnosticCategory.Error, "super_cannot_be_referenced_in_constructor_arguments_2336", "'super' cannot be referenced in constructor arguments."), Super_calls_are_not_permitted_outside_constructors_or_in_nested_functions_inside_constructors: diag(2337, ts.DiagnosticCategory.Error, "Super_calls_are_not_permitted_outside_constructors_or_in_nested_functions_inside_constructors_2337", "Super calls are not permitted outside constructors or in nested functions inside constructors."), super_property_access_is_permitted_only_in_a_constructor_member_function_or_member_accessor_of_a_derived_class: diag(2338, ts.DiagnosticCategory.Error, "super_property_access_is_permitted_only_in_a_constructor_member_function_or_member_accessor_of_a_der_2338", "'super' property access is permitted only in a constructor, member function, or member accessor of a derived class."), Property_0_does_not_exist_on_type_1: diag(2339, ts.DiagnosticCategory.Error, "Property_0_does_not_exist_on_type_1_2339", "Property '{0}' does not exist on type '{1}'."), Only_public_and_protected_methods_of_the_base_class_are_accessible_via_the_super_keyword: diag(2340, ts.DiagnosticCategory.Error, "Only_public_and_protected_methods_of_the_base_class_are_accessible_via_the_super_keyword_2340", "Only public and protected methods of the base class are accessible via the 'super' keyword."), Property_0_is_private_and_only_accessible_within_class_1: diag(2341, ts.DiagnosticCategory.Error, "Property_0_is_private_and_only_accessible_within_class_1_2341", "Property '{0}' is private and only accessible within class '{1}'."), This_syntax_requires_an_imported_helper_named_1_which_does_not_exist_in_0_Consider_upgrading_your_version_of_0: diag(2343, ts.DiagnosticCategory.Error, "This_syntax_requires_an_imported_helper_named_1_which_does_not_exist_in_0_Consider_upgrading_your_ve_2343", "This syntax requires an imported helper named '{1}' which does not exist in '{0}'. Consider upgrading your version of '{0}'."), Type_0_does_not_satisfy_the_constraint_1: diag(2344, ts.DiagnosticCategory.Error, "Type_0_does_not_satisfy_the_constraint_1_2344", "Type '{0}' does not satisfy the constraint '{1}'."), Argument_of_type_0_is_not_assignable_to_parameter_of_type_1: diag(2345, ts.DiagnosticCategory.Error, "Argument_of_type_0_is_not_assignable_to_parameter_of_type_1_2345", "Argument of type '{0}' is not assignable to parameter of type '{1}'."), Call_target_does_not_contain_any_signatures: diag(2346, ts.DiagnosticCategory.Error, "Call_target_does_not_contain_any_signatures_2346", "Call target does not contain any signatures."), Untyped_function_calls_may_not_accept_type_arguments: diag(2347, ts.DiagnosticCategory.Error, "Untyped_function_calls_may_not_accept_type_arguments_2347", "Untyped function calls may not accept type arguments."), Value_of_type_0_is_not_callable_Did_you_mean_to_include_new: diag(2348, ts.DiagnosticCategory.Error, "Value_of_type_0_is_not_callable_Did_you_mean_to_include_new_2348", "Value of type '{0}' is not callable. Did you mean to include 'new'?"), This_expression_is_not_callable: diag(2349, ts.DiagnosticCategory.Error, "This_expression_is_not_callable_2349", "This expression is not callable."), Only_a_void_function_can_be_called_with_the_new_keyword: diag(2350, ts.DiagnosticCategory.Error, "Only_a_void_function_can_be_called_with_the_new_keyword_2350", "Only a void function can be called with the 'new' keyword."), This_expression_is_not_constructable: diag(2351, ts.DiagnosticCategory.Error, "This_expression_is_not_constructable_2351", "This expression is not constructable."), Conversion_of_type_0_to_type_1_may_be_a_mistake_because_neither_type_sufficiently_overlaps_with_the_other_If_this_was_intentional_convert_the_expression_to_unknown_first: diag(2352, ts.DiagnosticCategory.Error, "Conversion_of_type_0_to_type_1_may_be_a_mistake_because_neither_type_sufficiently_overlaps_with_the__2352", "Conversion of type '{0}' to type '{1}' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first."), Object_literal_may_only_specify_known_properties_and_0_does_not_exist_in_type_1: diag(2353, ts.DiagnosticCategory.Error, "Object_literal_may_only_specify_known_properties_and_0_does_not_exist_in_type_1_2353", "Object literal may only specify known properties, and '{0}' does not exist in type '{1}'."), This_syntax_requires_an_imported_helper_but_module_0_cannot_be_found: diag(2354, ts.DiagnosticCategory.Error, "This_syntax_requires_an_imported_helper_but_module_0_cannot_be_found_2354", "This syntax requires an imported helper but module '{0}' cannot be found."), A_function_whose_declared_type_is_neither_void_nor_any_must_return_a_value: diag(2355, ts.DiagnosticCategory.Error, "A_function_whose_declared_type_is_neither_void_nor_any_must_return_a_value_2355", "A function whose declared type is neither 'void' nor 'any' must return a value."), An_arithmetic_operand_must_be_of_type_any_number_bigint_or_an_enum_type: diag(2356, ts.DiagnosticCategory.Error, "An_arithmetic_operand_must_be_of_type_any_number_bigint_or_an_enum_type_2356", "An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type."), The_operand_of_an_increment_or_decrement_operator_must_be_a_variable_or_a_property_access: diag(2357, ts.DiagnosticCategory.Error, "The_operand_of_an_increment_or_decrement_operator_must_be_a_variable_or_a_property_access_2357", "The operand of an increment or decrement operator must be a variable or a property access."), The_left_hand_side_of_an_instanceof_expression_must_be_of_type_any_an_object_type_or_a_type_parameter: diag(2358, ts.DiagnosticCategory.Error, "The_left_hand_side_of_an_instanceof_expression_must_be_of_type_any_an_object_type_or_a_type_paramete_2358", "The left-hand side of an 'instanceof' expression must be of type 'any', an object type or a type parameter."), The_right_hand_side_of_an_instanceof_expression_must_be_of_type_any_or_of_a_type_assignable_to_the_Function_interface_type: diag(2359, ts.DiagnosticCategory.Error, "The_right_hand_side_of_an_instanceof_expression_must_be_of_type_any_or_of_a_type_assignable_to_the_F_2359", "The right-hand side of an 'instanceof' expression must be of type 'any' or of a type assignable to the 'Function' interface type."), The_left_hand_side_of_an_in_expression_must_be_a_private_identifier_or_of_type_any_string_number_or_symbol: diag(2360, ts.DiagnosticCategory.Error, "The_left_hand_side_of_an_in_expression_must_be_a_private_identifier_or_of_type_any_string_number_or__2360", "The left-hand side of an 'in' expression must be a private identifier or of type 'any', 'string', 'number', or 'symbol'."), The_right_hand_side_of_an_in_expression_must_not_be_a_primitive: diag(2361, ts.DiagnosticCategory.Error, "The_right_hand_side_of_an_in_expression_must_not_be_a_primitive_2361", "The right-hand side of an 'in' expression must not be a primitive."), The_left_hand_side_of_an_arithmetic_operation_must_be_of_type_any_number_bigint_or_an_enum_type: diag(2362, ts.DiagnosticCategory.Error, "The_left_hand_side_of_an_arithmetic_operation_must_be_of_type_any_number_bigint_or_an_enum_type_2362", "The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type."), The_right_hand_side_of_an_arithmetic_operation_must_be_of_type_any_number_bigint_or_an_enum_type: diag(2363, ts.DiagnosticCategory.Error, "The_right_hand_side_of_an_arithmetic_operation_must_be_of_type_any_number_bigint_or_an_enum_type_2363", "The right-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type."), The_left_hand_side_of_an_assignment_expression_must_be_a_variable_or_a_property_access: diag(2364, ts.DiagnosticCategory.Error, "The_left_hand_side_of_an_assignment_expression_must_be_a_variable_or_a_property_access_2364", "The left-hand side of an assignment expression must be a variable or a property access."), Operator_0_cannot_be_applied_to_types_1_and_2: diag(2365, ts.DiagnosticCategory.Error, "Operator_0_cannot_be_applied_to_types_1_and_2_2365", "Operator '{0}' cannot be applied to types '{1}' and '{2}'."), Function_lacks_ending_return_statement_and_return_type_does_not_include_undefined: diag(2366, ts.DiagnosticCategory.Error, "Function_lacks_ending_return_statement_and_return_type_does_not_include_undefined_2366", "Function lacks ending return statement and return type does not include 'undefined'."), This_condition_will_always_return_0_since_the_types_1_and_2_have_no_overlap: diag(2367, ts.DiagnosticCategory.Error, "This_condition_will_always_return_0_since_the_types_1_and_2_have_no_overlap_2367", "This condition will always return '{0}' since the types '{1}' and '{2}' have no overlap."), Type_parameter_name_cannot_be_0: diag(2368, ts.DiagnosticCategory.Error, "Type_parameter_name_cannot_be_0_2368", "Type parameter name cannot be '{0}'."), A_parameter_property_is_only_allowed_in_a_constructor_implementation: diag(2369, ts.DiagnosticCategory.Error, "A_parameter_property_is_only_allowed_in_a_constructor_implementation_2369", "A parameter property is only allowed in a constructor implementation."), A_rest_parameter_must_be_of_an_array_type: diag(2370, ts.DiagnosticCategory.Error, "A_rest_parameter_must_be_of_an_array_type_2370", "A rest parameter must be of an array type."), A_parameter_initializer_is_only_allowed_in_a_function_or_constructor_implementation: diag(2371, ts.DiagnosticCategory.Error, "A_parameter_initializer_is_only_allowed_in_a_function_or_constructor_implementation_2371", "A parameter initializer is only allowed in a function or constructor implementation."), Parameter_0_cannot_reference_itself: diag(2372, ts.DiagnosticCategory.Error, "Parameter_0_cannot_reference_itself_2372", "Parameter '{0}' cannot reference itself."), Parameter_0_cannot_reference_identifier_1_declared_after_it: diag(2373, ts.DiagnosticCategory.Error, "Parameter_0_cannot_reference_identifier_1_declared_after_it_2373", "Parameter '{0}' cannot reference identifier '{1}' declared after it."), Duplicate_index_signature_for_type_0: diag(2374, ts.DiagnosticCategory.Error, "Duplicate_index_signature_for_type_0_2374", "Duplicate index signature for type '{0}'."), Type_0_is_not_assignable_to_type_1_with_exactOptionalPropertyTypes_Colon_true_Consider_adding_undefined_to_the_types_of_the_target_s_properties: diag(2375, ts.DiagnosticCategory.Error, "Type_0_is_not_assignable_to_type_1_with_exactOptionalPropertyTypes_Colon_true_Consider_adding_undefi_2375", "Type '{0}' is not assignable to type '{1}' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the types of the target's properties."), A_super_call_must_be_the_first_statement_in_the_constructor_to_refer_to_super_or_this_when_a_derived_class_contains_initialized_properties_parameter_properties_or_private_identifiers: diag(2376, ts.DiagnosticCategory.Error, "A_super_call_must_be_the_first_statement_in_the_constructor_to_refer_to_super_or_this_when_a_derived_2376", "A 'super' call must be the first statement in the constructor to refer to 'super' or 'this' when a derived class contains initialized properties, parameter properties, or private identifiers."), Constructors_for_derived_classes_must_contain_a_super_call: diag(2377, ts.DiagnosticCategory.Error, "Constructors_for_derived_classes_must_contain_a_super_call_2377", "Constructors for derived classes must contain a 'super' call."), A_get_accessor_must_return_a_value: diag(2378, ts.DiagnosticCategory.Error, "A_get_accessor_must_return_a_value_2378", "A 'get' accessor must return a value."), Argument_of_type_0_is_not_assignable_to_parameter_of_type_1_with_exactOptionalPropertyTypes_Colon_true_Consider_adding_undefined_to_the_types_of_the_target_s_properties: diag(2379, ts.DiagnosticCategory.Error, "Argument_of_type_0_is_not_assignable_to_parameter_of_type_1_with_exactOptionalPropertyTypes_Colon_tr_2379", "Argument of type '{0}' is not assignable to parameter of type '{1}' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the types of the target's properties."), The_return_type_of_a_get_accessor_must_be_assignable_to_its_set_accessor_type: diag(2380, ts.DiagnosticCategory.Error, "The_return_type_of_a_get_accessor_must_be_assignable_to_its_set_accessor_type_2380", "The return type of a 'get' accessor must be assignable to its 'set' accessor type"), Overload_signatures_must_all_be_exported_or_non_exported: diag(2383, ts.DiagnosticCategory.Error, "Overload_signatures_must_all_be_exported_or_non_exported_2383", "Overload signatures must all be exported or non-exported."), Overload_signatures_must_all_be_ambient_or_non_ambient: diag(2384, ts.DiagnosticCategory.Error, "Overload_signatures_must_all_be_ambient_or_non_ambient_2384", "Overload signatures must all be ambient or non-ambient."), Overload_signatures_must_all_be_public_private_or_protected: diag(2385, ts.DiagnosticCategory.Error, "Overload_signatures_must_all_be_public_private_or_protected_2385", "Overload signatures must all be public, private or protected."), Overload_signatures_must_all_be_optional_or_required: diag(2386, ts.DiagnosticCategory.Error, "Overload_signatures_must_all_be_optional_or_required_2386", "Overload signatures must all be optional or required."), Function_overload_must_be_static: diag(2387, ts.DiagnosticCategory.Error, "Function_overload_must_be_static_2387", "Function overload must be static."), Function_overload_must_not_be_static: diag(2388, ts.DiagnosticCategory.Error, "Function_overload_must_not_be_static_2388", "Function overload must not be static."), Function_implementation_name_must_be_0: diag(2389, ts.DiagnosticCategory.Error, "Function_implementation_name_must_be_0_2389", "Function implementation name must be '{0}'."), Constructor_implementation_is_missing: diag(2390, ts.DiagnosticCategory.Error, "Constructor_implementation_is_missing_2390", "Constructor implementation is missing."), Function_implementation_is_missing_or_not_immediately_following_the_declaration: diag(2391, ts.DiagnosticCategory.Error, "Function_implementation_is_missing_or_not_immediately_following_the_declaration_2391", "Function implementation is missing or not immediately following the declaration."), Multiple_constructor_implementations_are_not_allowed: diag(2392, ts.DiagnosticCategory.Error, "Multiple_constructor_implementations_are_not_allowed_2392", "Multiple constructor implementations are not allowed."), Duplicate_function_implementation: diag(2393, ts.DiagnosticCategory.Error, "Duplicate_function_implementation_2393", "Duplicate function implementation."), This_overload_signature_is_not_compatible_with_its_implementation_signature: diag(2394, ts.DiagnosticCategory.Error, "This_overload_signature_is_not_compatible_with_its_implementation_signature_2394", "This overload signature is not compatible with its implementation signature."), Individual_declarations_in_merged_declaration_0_must_be_all_exported_or_all_local: diag(2395, ts.DiagnosticCategory.Error, "Individual_declarations_in_merged_declaration_0_must_be_all_exported_or_all_local_2395", "Individual declarations in merged declaration '{0}' must be all exported or all local."), Duplicate_identifier_arguments_Compiler_uses_arguments_to_initialize_rest_parameters: diag(2396, ts.DiagnosticCategory.Error, "Duplicate_identifier_arguments_Compiler_uses_arguments_to_initialize_rest_parameters_2396", "Duplicate identifier 'arguments'. Compiler uses 'arguments' to initialize rest parameters."), Declaration_name_conflicts_with_built_in_global_identifier_0: diag(2397, ts.DiagnosticCategory.Error, "Declaration_name_conflicts_with_built_in_global_identifier_0_2397", "Declaration name conflicts with built-in global identifier '{0}'."), constructor_cannot_be_used_as_a_parameter_property_name: diag(2398, ts.DiagnosticCategory.Error, "constructor_cannot_be_used_as_a_parameter_property_name_2398", "'constructor' cannot be used as a parameter property name."), Duplicate_identifier_this_Compiler_uses_variable_declaration_this_to_capture_this_reference: diag(2399, ts.DiagnosticCategory.Error, "Duplicate_identifier_this_Compiler_uses_variable_declaration_this_to_capture_this_reference_2399", "Duplicate identifier '_this'. Compiler uses variable declaration '_this' to capture 'this' reference."), Expression_resolves_to_variable_declaration_this_that_compiler_uses_to_capture_this_reference: diag(2400, ts.DiagnosticCategory.Error, "Expression_resolves_to_variable_declaration_this_that_compiler_uses_to_capture_this_reference_2400", "Expression resolves to variable declaration '_this' that compiler uses to capture 'this' reference."), A_super_call_must_be_a_root_level_statement_within_a_constructor_of_a_derived_class_that_contains_initialized_properties_parameter_properties_or_private_identifiers: diag(2401, ts.DiagnosticCategory.Error, "A_super_call_must_be_a_root_level_statement_within_a_constructor_of_a_derived_class_that_contains_in_2401", "A 'super' call must be a root-level statement within a constructor of a derived class that contains initialized properties, parameter properties, or private identifiers."), Expression_resolves_to_super_that_compiler_uses_to_capture_base_class_reference: diag(2402, ts.DiagnosticCategory.Error, "Expression_resolves_to_super_that_compiler_uses_to_capture_base_class_reference_2402", "Expression resolves to '_super' that compiler uses to capture base class reference."), Subsequent_variable_declarations_must_have_the_same_type_Variable_0_must_be_of_type_1_but_here_has_type_2: diag(2403, ts.DiagnosticCategory.Error, "Subsequent_variable_declarations_must_have_the_same_type_Variable_0_must_be_of_type_1_but_here_has_t_2403", "Subsequent variable declarations must have the same type. Variable '{0}' must be of type '{1}', but here has type '{2}'."), The_left_hand_side_of_a_for_in_statement_cannot_use_a_type_annotation: diag(2404, ts.DiagnosticCategory.Error, "The_left_hand_side_of_a_for_in_statement_cannot_use_a_type_annotation_2404", "The left-hand side of a 'for...in' statement cannot use a type annotation."), The_left_hand_side_of_a_for_in_statement_must_be_of_type_string_or_any: diag(2405, ts.DiagnosticCategory.Error, "The_left_hand_side_of_a_for_in_statement_must_be_of_type_string_or_any_2405", "The left-hand side of a 'for...in' statement must be of type 'string' or 'any'."), The_left_hand_side_of_a_for_in_statement_must_be_a_variable_or_a_property_access: diag(2406, ts.DiagnosticCategory.Error, "The_left_hand_side_of_a_for_in_statement_must_be_a_variable_or_a_property_access_2406", "The left-hand side of a 'for...in' statement must be a variable or a property access."), The_right_hand_side_of_a_for_in_statement_must_be_of_type_any_an_object_type_or_a_type_parameter_but_here_has_type_0: diag(2407, ts.DiagnosticCategory.Error, "The_right_hand_side_of_a_for_in_statement_must_be_of_type_any_an_object_type_or_a_type_parameter_but_2407", "The right-hand side of a 'for...in' statement must be of type 'any', an object type or a type parameter, but here has type '{0}'."), Setters_cannot_return_a_value: diag(2408, ts.DiagnosticCategory.Error, "Setters_cannot_return_a_value_2408", "Setters cannot return a value."), Return_type_of_constructor_signature_must_be_assignable_to_the_instance_type_of_the_class: diag(2409, ts.DiagnosticCategory.Error, "Return_type_of_constructor_signature_must_be_assignable_to_the_instance_type_of_the_class_2409", "Return type of constructor signature must be assignable to the instance type of the class."), The_with_statement_is_not_supported_All_symbols_in_a_with_block_will_have_type_any: diag(2410, ts.DiagnosticCategory.Error, "The_with_statement_is_not_supported_All_symbols_in_a_with_block_will_have_type_any_2410", "The 'with' statement is not supported. All symbols in a 'with' block will have type 'any'."), Type_0_is_not_assignable_to_type_1_with_exactOptionalPropertyTypes_Colon_true_Consider_adding_undefined_to_the_type_of_the_target: diag(2412, ts.DiagnosticCategory.Error, "Type_0_is_not_assignable_to_type_1_with_exactOptionalPropertyTypes_Colon_true_Consider_adding_undefi_2412", "Type '{0}' is not assignable to type '{1}' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the type of the target."), Property_0_of_type_1_is_not_assignable_to_2_index_type_3: diag(2411, ts.DiagnosticCategory.Error, "Property_0_of_type_1_is_not_assignable_to_2_index_type_3_2411", "Property '{0}' of type '{1}' is not assignable to '{2}' index type '{3}'."), _0_index_type_1_is_not_assignable_to_2_index_type_3: diag(2413, ts.DiagnosticCategory.Error, "_0_index_type_1_is_not_assignable_to_2_index_type_3_2413", "'{0}' index type '{1}' is not assignable to '{2}' index type '{3}'."), Class_name_cannot_be_0: diag(2414, ts.DiagnosticCategory.Error, "Class_name_cannot_be_0_2414", "Class name cannot be '{0}'."), Class_0_incorrectly_extends_base_class_1: diag(2415, ts.DiagnosticCategory.Error, "Class_0_incorrectly_extends_base_class_1_2415", "Class '{0}' incorrectly extends base class '{1}'."), Property_0_in_type_1_is_not_assignable_to_the_same_property_in_base_type_2: diag(2416, ts.DiagnosticCategory.Error, "Property_0_in_type_1_is_not_assignable_to_the_same_property_in_base_type_2_2416", "Property '{0}' in type '{1}' is not assignable to the same property in base type '{2}'."), Class_static_side_0_incorrectly_extends_base_class_static_side_1: diag(2417, ts.DiagnosticCategory.Error, "Class_static_side_0_incorrectly_extends_base_class_static_side_1_2417", "Class static side '{0}' incorrectly extends base class static side '{1}'."), Type_of_computed_property_s_value_is_0_which_is_not_assignable_to_type_1: diag(2418, ts.DiagnosticCategory.Error, "Type_of_computed_property_s_value_is_0_which_is_not_assignable_to_type_1_2418", "Type of computed property's value is '{0}', which is not assignable to type '{1}'."), Types_of_construct_signatures_are_incompatible: diag(2419, ts.DiagnosticCategory.Error, "Types_of_construct_signatures_are_incompatible_2419", "Types of construct signatures are incompatible."), Class_0_incorrectly_implements_interface_1: diag(2420, ts.DiagnosticCategory.Error, "Class_0_incorrectly_implements_interface_1_2420", "Class '{0}' incorrectly implements interface '{1}'."), A_class_can_only_implement_an_object_type_or_intersection_of_object_types_with_statically_known_members: diag(2422, ts.DiagnosticCategory.Error, "A_class_can_only_implement_an_object_type_or_intersection_of_object_types_with_statically_known_memb_2422", "A class can only implement an object type or intersection of object types with statically known members."), Class_0_defines_instance_member_function_1_but_extended_class_2_defines_it_as_instance_member_accessor: diag(2423, ts.DiagnosticCategory.Error, "Class_0_defines_instance_member_function_1_but_extended_class_2_defines_it_as_instance_member_access_2423", "Class '{0}' defines instance member function '{1}', but extended class '{2}' defines it as instance member accessor."), Class_0_defines_instance_member_property_1_but_extended_class_2_defines_it_as_instance_member_function: diag(2425, ts.DiagnosticCategory.Error, "Class_0_defines_instance_member_property_1_but_extended_class_2_defines_it_as_instance_member_functi_2425", "Class '{0}' defines instance member property '{1}', but extended class '{2}' defines it as instance member function."), Class_0_defines_instance_member_accessor_1_but_extended_class_2_defines_it_as_instance_member_function: diag(2426, ts.DiagnosticCategory.Error, "Class_0_defines_instance_member_accessor_1_but_extended_class_2_defines_it_as_instance_member_functi_2426", "Class '{0}' defines instance member accessor '{1}', but extended class '{2}' defines it as instance member function."), Interface_name_cannot_be_0: diag(2427, ts.DiagnosticCategory.Error, "Interface_name_cannot_be_0_2427", "Interface name cannot be '{0}'."), All_declarations_of_0_must_have_identical_type_parameters: diag(2428, ts.DiagnosticCategory.Error, "All_declarations_of_0_must_have_identical_type_parameters_2428", "All declarations of '{0}' must have identical type parameters."), Interface_0_incorrectly_extends_interface_1: diag(2430, ts.DiagnosticCategory.Error, "Interface_0_incorrectly_extends_interface_1_2430", "Interface '{0}' incorrectly extends interface '{1}'."), Enum_name_cannot_be_0: diag(2431, ts.DiagnosticCategory.Error, "Enum_name_cannot_be_0_2431", "Enum name cannot be '{0}'."), In_an_enum_with_multiple_declarations_only_one_declaration_can_omit_an_initializer_for_its_first_enum_element: diag(2432, ts.DiagnosticCategory.Error, "In_an_enum_with_multiple_declarations_only_one_declaration_can_omit_an_initializer_for_its_first_enu_2432", "In an enum with multiple declarations, only one declaration can omit an initializer for its first enum element."), A_namespace_declaration_cannot_be_in_a_different_file_from_a_class_or_function_with_which_it_is_merged: diag(2433, ts.DiagnosticCategory.Error, "A_namespace_declaration_cannot_be_in_a_different_file_from_a_class_or_function_with_which_it_is_merg_2433", "A namespace declaration cannot be in a different file from a class or function with which it is merged."), A_namespace_declaration_cannot_be_located_prior_to_a_class_or_function_with_which_it_is_merged: diag(2434, ts.DiagnosticCategory.Error, "A_namespace_declaration_cannot_be_located_prior_to_a_class_or_function_with_which_it_is_merged_2434", "A namespace declaration cannot be located prior to a class or function with which it is merged."), Ambient_modules_cannot_be_nested_in_other_modules_or_namespaces: diag(2435, ts.DiagnosticCategory.Error, "Ambient_modules_cannot_be_nested_in_other_modules_or_namespaces_2435", "Ambient modules cannot be nested in other modules or namespaces."), Ambient_module_declaration_cannot_specify_relative_module_name: diag(2436, ts.DiagnosticCategory.Error, "Ambient_module_declaration_cannot_specify_relative_module_name_2436", "Ambient module declaration cannot specify relative module name."), Module_0_is_hidden_by_a_local_declaration_with_the_same_name: diag(2437, ts.DiagnosticCategory.Error, "Module_0_is_hidden_by_a_local_declaration_with_the_same_name_2437", "Module '{0}' is hidden by a local declaration with the same name."), Import_name_cannot_be_0: diag(2438, ts.DiagnosticCategory.Error, "Import_name_cannot_be_0_2438", "Import name cannot be '{0}'."), Import_or_export_declaration_in_an_ambient_module_declaration_cannot_reference_module_through_relative_module_name: diag(2439, ts.DiagnosticCategory.Error, "Import_or_export_declaration_in_an_ambient_module_declaration_cannot_reference_module_through_relati_2439", "Import or export declaration in an ambient module declaration cannot reference module through relative module name."), Import_declaration_conflicts_with_local_declaration_of_0: diag(2440, ts.DiagnosticCategory.Error, "Import_declaration_conflicts_with_local_declaration_of_0_2440", "Import declaration conflicts with local declaration of '{0}'."), Duplicate_identifier_0_Compiler_reserves_name_1_in_top_level_scope_of_a_module: diag(2441, ts.DiagnosticCategory.Error, "Duplicate_identifier_0_Compiler_reserves_name_1_in_top_level_scope_of_a_module_2441", "Duplicate identifier '{0}'. Compiler reserves name '{1}' in top level scope of a module."), Types_have_separate_declarations_of_a_private_property_0: diag(2442, ts.DiagnosticCategory.Error, "Types_have_separate_declarations_of_a_private_property_0_2442", "Types have separate declarations of a private property '{0}'."), Property_0_is_protected_but_type_1_is_not_a_class_derived_from_2: diag(2443, ts.DiagnosticCategory.Error, "Property_0_is_protected_but_type_1_is_not_a_class_derived_from_2_2443", "Property '{0}' is protected but type '{1}' is not a class derived from '{2}'."), Property_0_is_protected_in_type_1_but_public_in_type_2: diag(2444, ts.DiagnosticCategory.Error, "Property_0_is_protected_in_type_1_but_public_in_type_2_2444", "Property '{0}' is protected in type '{1}' but public in type '{2}'."), Property_0_is_protected_and_only_accessible_within_class_1_and_its_subclasses: diag(2445, ts.DiagnosticCategory.Error, "Property_0_is_protected_and_only_accessible_within_class_1_and_its_subclasses_2445", "Property '{0}' is protected and only accessible within class '{1}' and its subclasses."), Property_0_is_protected_and_only_accessible_through_an_instance_of_class_1_This_is_an_instance_of_class_2: diag(2446, ts.DiagnosticCategory.Error, "Property_0_is_protected_and_only_accessible_through_an_instance_of_class_1_This_is_an_instance_of_cl_2446", "Property '{0}' is protected and only accessible through an instance of class '{1}'. This is an instance of class '{2}'."), The_0_operator_is_not_allowed_for_boolean_types_Consider_using_1_instead: diag(2447, ts.DiagnosticCategory.Error, "The_0_operator_is_not_allowed_for_boolean_types_Consider_using_1_instead_2447", "The '{0}' operator is not allowed for boolean types. Consider using '{1}' instead."), Block_scoped_variable_0_used_before_its_declaration: diag(2448, ts.DiagnosticCategory.Error, "Block_scoped_variable_0_used_before_its_declaration_2448", "Block-scoped variable '{0}' used before its declaration."), Class_0_used_before_its_declaration: diag(2449, ts.DiagnosticCategory.Error, "Class_0_used_before_its_declaration_2449", "Class '{0}' used before its declaration."), Enum_0_used_before_its_declaration: diag(2450, ts.DiagnosticCategory.Error, "Enum_0_used_before_its_declaration_2450", "Enum '{0}' used before its declaration."), Cannot_redeclare_block_scoped_variable_0: diag(2451, ts.DiagnosticCategory.Error, "Cannot_redeclare_block_scoped_variable_0_2451", "Cannot redeclare block-scoped variable '{0}'."), An_enum_member_cannot_have_a_numeric_name: diag(2452, ts.DiagnosticCategory.Error, "An_enum_member_cannot_have_a_numeric_name_2452", "An enum member cannot have a numeric name."), Variable_0_is_used_before_being_assigned: diag(2454, ts.DiagnosticCategory.Error, "Variable_0_is_used_before_being_assigned_2454", "Variable '{0}' is used before being assigned."), Type_alias_0_circularly_references_itself: diag(2456, ts.DiagnosticCategory.Error, "Type_alias_0_circularly_references_itself_2456", "Type alias '{0}' circularly references itself."), Type_alias_name_cannot_be_0: diag(2457, ts.DiagnosticCategory.Error, "Type_alias_name_cannot_be_0_2457", "Type alias name cannot be '{0}'."), An_AMD_module_cannot_have_multiple_name_assignments: diag(2458, ts.DiagnosticCategory.Error, "An_AMD_module_cannot_have_multiple_name_assignments_2458", "An AMD module cannot have multiple name assignments."), Module_0_declares_1_locally_but_it_is_not_exported: diag(2459, ts.DiagnosticCategory.Error, "Module_0_declares_1_locally_but_it_is_not_exported_2459", "Module '{0}' declares '{1}' locally, but it is not exported."), Module_0_declares_1_locally_but_it_is_exported_as_2: diag(2460, ts.DiagnosticCategory.Error, "Module_0_declares_1_locally_but_it_is_exported_as_2_2460", "Module '{0}' declares '{1}' locally, but it is exported as '{2}'."), Type_0_is_not_an_array_type: diag(2461, ts.DiagnosticCategory.Error, "Type_0_is_not_an_array_type_2461", "Type '{0}' is not an array type."), A_rest_element_must_be_last_in_a_destructuring_pattern: diag(2462, ts.DiagnosticCategory.Error, "A_rest_element_must_be_last_in_a_destructuring_pattern_2462", "A rest element must be last in a destructuring pattern."), A_binding_pattern_parameter_cannot_be_optional_in_an_implementation_signature: diag(2463, ts.DiagnosticCategory.Error, "A_binding_pattern_parameter_cannot_be_optional_in_an_implementation_signature_2463", "A binding pattern parameter cannot be optional in an implementation signature."), A_computed_property_name_must_be_of_type_string_number_symbol_or_any: diag(2464, ts.DiagnosticCategory.Error, "A_computed_property_name_must_be_of_type_string_number_symbol_or_any_2464", "A computed property name must be of type 'string', 'number', 'symbol', or 'any'."), this_cannot_be_referenced_in_a_computed_property_name: diag(2465, ts.DiagnosticCategory.Error, "this_cannot_be_referenced_in_a_computed_property_name_2465", "'this' cannot be referenced in a computed property name."), super_cannot_be_referenced_in_a_computed_property_name: diag(2466, ts.DiagnosticCategory.Error, "super_cannot_be_referenced_in_a_computed_property_name_2466", "'super' cannot be referenced in a computed property name."), A_computed_property_name_cannot_reference_a_type_parameter_from_its_containing_type: diag(2467, ts.DiagnosticCategory.Error, "A_computed_property_name_cannot_reference_a_type_parameter_from_its_containing_type_2467", "A computed property name cannot reference a type parameter from its containing type."), Cannot_find_global_value_0: diag(2468, ts.DiagnosticCategory.Error, "Cannot_find_global_value_0_2468", "Cannot find global value '{0}'."), The_0_operator_cannot_be_applied_to_type_symbol: diag(2469, ts.DiagnosticCategory.Error, "The_0_operator_cannot_be_applied_to_type_symbol_2469", "The '{0}' operator cannot be applied to type 'symbol'."), Spread_operator_in_new_expressions_is_only_available_when_targeting_ECMAScript_5_and_higher: diag(2472, ts.DiagnosticCategory.Error, "Spread_operator_in_new_expressions_is_only_available_when_targeting_ECMAScript_5_and_higher_2472", "Spread operator in 'new' expressions is only available when targeting ECMAScript 5 and higher."), Enum_declarations_must_all_be_const_or_non_const: diag(2473, ts.DiagnosticCategory.Error, "Enum_declarations_must_all_be_const_or_non_const_2473", "Enum declarations must all be const or non-const."), const_enum_member_initializers_can_only_contain_literal_values_and_other_computed_enum_values: diag(2474, ts.DiagnosticCategory.Error, "const_enum_member_initializers_can_only_contain_literal_values_and_other_computed_enum_values_2474", "const enum member initializers can only contain literal values and other computed enum values."), const_enums_can_only_be_used_in_property_or_index_access_expressions_or_the_right_hand_side_of_an_import_declaration_or_export_assignment_or_type_query: diag(2475, ts.DiagnosticCategory.Error, "const_enums_can_only_be_used_in_property_or_index_access_expressions_or_the_right_hand_side_of_an_im_2475", "'const' enums can only be used in property or index access expressions or the right hand side of an import declaration or export assignment or type query."), A_const_enum_member_can_only_be_accessed_using_a_string_literal: diag(2476, ts.DiagnosticCategory.Error, "A_const_enum_member_can_only_be_accessed_using_a_string_literal_2476", "A const enum member can only be accessed using a string literal."), const_enum_member_initializer_was_evaluated_to_a_non_finite_value: diag(2477, ts.DiagnosticCategory.Error, "const_enum_member_initializer_was_evaluated_to_a_non_finite_value_2477", "'const' enum member initializer was evaluated to a non-finite value."), const_enum_member_initializer_was_evaluated_to_disallowed_value_NaN: diag(2478, ts.DiagnosticCategory.Error, "const_enum_member_initializer_was_evaluated_to_disallowed_value_NaN_2478", "'const' enum member initializer was evaluated to disallowed value 'NaN'."), let_is_not_allowed_to_be_used_as_a_name_in_let_or_const_declarations: diag(2480, ts.DiagnosticCategory.Error, "let_is_not_allowed_to_be_used_as_a_name_in_let_or_const_declarations_2480", "'let' is not allowed to be used as a name in 'let' or 'const' declarations."), Cannot_initialize_outer_scoped_variable_0_in_the_same_scope_as_block_scoped_declaration_1: diag(2481, ts.DiagnosticCategory.Error, "Cannot_initialize_outer_scoped_variable_0_in_the_same_scope_as_block_scoped_declaration_1_2481", "Cannot initialize outer scoped variable '{0}' in the same scope as block scoped declaration '{1}'."), The_left_hand_side_of_a_for_of_statement_cannot_use_a_type_annotation: diag(2483, ts.DiagnosticCategory.Error, "The_left_hand_side_of_a_for_of_statement_cannot_use_a_type_annotation_2483", "The left-hand side of a 'for...of' statement cannot use a type annotation."), Export_declaration_conflicts_with_exported_declaration_of_0: diag(2484, ts.DiagnosticCategory.Error, "Export_declaration_conflicts_with_exported_declaration_of_0_2484", "Export declaration conflicts with exported declaration of '{0}'."), The_left_hand_side_of_a_for_of_statement_must_be_a_variable_or_a_property_access: diag(2487, ts.DiagnosticCategory.Error, "The_left_hand_side_of_a_for_of_statement_must_be_a_variable_or_a_property_access_2487", "The left-hand side of a 'for...of' statement must be a variable or a property access."), Type_0_must_have_a_Symbol_iterator_method_that_returns_an_iterator: diag(2488, ts.DiagnosticCategory.Error, "Type_0_must_have_a_Symbol_iterator_method_that_returns_an_iterator_2488", "Type '{0}' must have a '[Symbol.iterator]()' method that returns an iterator."), An_iterator_must_have_a_next_method: diag(2489, ts.DiagnosticCategory.Error, "An_iterator_must_have_a_next_method_2489", "An iterator must have a 'next()' method."), The_type_returned_by_the_0_method_of_an_iterator_must_have_a_value_property: diag(2490, ts.DiagnosticCategory.Error, "The_type_returned_by_the_0_method_of_an_iterator_must_have_a_value_property_2490", "The type returned by the '{0}()' method of an iterator must have a 'value' property."), The_left_hand_side_of_a_for_in_statement_cannot_be_a_destructuring_pattern: diag(2491, ts.DiagnosticCategory.Error, "The_left_hand_side_of_a_for_in_statement_cannot_be_a_destructuring_pattern_2491", "The left-hand side of a 'for...in' statement cannot be a destructuring pattern."), Cannot_redeclare_identifier_0_in_catch_clause: diag(2492, ts.DiagnosticCategory.Error, "Cannot_redeclare_identifier_0_in_catch_clause_2492", "Cannot redeclare identifier '{0}' in catch clause."), Tuple_type_0_of_length_1_has_no_element_at_index_2: diag(2493, ts.DiagnosticCategory.Error, "Tuple_type_0_of_length_1_has_no_element_at_index_2_2493", "Tuple type '{0}' of length '{1}' has no element at index '{2}'."), Using_a_string_in_a_for_of_statement_is_only_supported_in_ECMAScript_5_and_higher: diag(2494, ts.DiagnosticCategory.Error, "Using_a_string_in_a_for_of_statement_is_only_supported_in_ECMAScript_5_and_higher_2494", "Using a string in a 'for...of' statement is only supported in ECMAScript 5 and higher."), Type_0_is_not_an_array_type_or_a_string_type: diag(2495, ts.DiagnosticCategory.Error, "Type_0_is_not_an_array_type_or_a_string_type_2495", "Type '{0}' is not an array type or a string type."), The_arguments_object_cannot_be_referenced_in_an_arrow_function_in_ES3_and_ES5_Consider_using_a_standard_function_expression: diag(2496, ts.DiagnosticCategory.Error, "The_arguments_object_cannot_be_referenced_in_an_arrow_function_in_ES3_and_ES5_Consider_using_a_stand_2496", "The 'arguments' object cannot be referenced in an arrow function in ES3 and ES5. Consider using a standard function expression."), This_module_can_only_be_referenced_with_ECMAScript_imports_Slashexports_by_turning_on_the_0_flag_and_referencing_its_default_export: diag(2497, ts.DiagnosticCategory.Error, "This_module_can_only_be_referenced_with_ECMAScript_imports_Slashexports_by_turning_on_the_0_flag_and_2497", "This module can only be referenced with ECMAScript imports/exports by turning on the '{0}' flag and referencing its default export."), Module_0_uses_export_and_cannot_be_used_with_export_Asterisk: diag(2498, ts.DiagnosticCategory.Error, "Module_0_uses_export_and_cannot_be_used_with_export_Asterisk_2498", "Module '{0}' uses 'export =' and cannot be used with 'export *'."), An_interface_can_only_extend_an_identifier_Slashqualified_name_with_optional_type_arguments: diag(2499, ts.DiagnosticCategory.Error, "An_interface_can_only_extend_an_identifier_Slashqualified_name_with_optional_type_arguments_2499", "An interface can only extend an identifier/qualified-name with optional type arguments."), A_class_can_only_implement_an_identifier_Slashqualified_name_with_optional_type_arguments: diag(2500, ts.DiagnosticCategory.Error, "A_class_can_only_implement_an_identifier_Slashqualified_name_with_optional_type_arguments_2500", "A class can only implement an identifier/qualified-name with optional type arguments."), A_rest_element_cannot_contain_a_binding_pattern: diag(2501, ts.DiagnosticCategory.Error, "A_rest_element_cannot_contain_a_binding_pattern_2501", "A rest element cannot contain a binding pattern."), _0_is_referenced_directly_or_indirectly_in_its_own_type_annotation: diag(2502, ts.DiagnosticCategory.Error, "_0_is_referenced_directly_or_indirectly_in_its_own_type_annotation_2502", "'{0}' is referenced directly or indirectly in its own type annotation."), Cannot_find_namespace_0: diag(2503, ts.DiagnosticCategory.Error, "Cannot_find_namespace_0_2503", "Cannot find namespace '{0}'."), Type_0_must_have_a_Symbol_asyncIterator_method_that_returns_an_async_iterator: diag(2504, ts.DiagnosticCategory.Error, "Type_0_must_have_a_Symbol_asyncIterator_method_that_returns_an_async_iterator_2504", "Type '{0}' must have a '[Symbol.asyncIterator]()' method that returns an async iterator."), A_generator_cannot_have_a_void_type_annotation: diag(2505, ts.DiagnosticCategory.Error, "A_generator_cannot_have_a_void_type_annotation_2505", "A generator cannot have a 'void' type annotation."), _0_is_referenced_directly_or_indirectly_in_its_own_base_expression: diag(2506, ts.DiagnosticCategory.Error, "_0_is_referenced_directly_or_indirectly_in_its_own_base_expression_2506", "'{0}' is referenced directly or indirectly in its own base expression."), Type_0_is_not_a_constructor_function_type: diag(2507, ts.DiagnosticCategory.Error, "Type_0_is_not_a_constructor_function_type_2507", "Type '{0}' is not a constructor function type."), No_base_constructor_has_the_specified_number_of_type_arguments: diag(2508, ts.DiagnosticCategory.Error, "No_base_constructor_has_the_specified_number_of_type_arguments_2508", "No base constructor has the specified number of type arguments."), Base_constructor_return_type_0_is_not_an_object_type_or_intersection_of_object_types_with_statically_known_members: diag(2509, ts.DiagnosticCategory.Error, "Base_constructor_return_type_0_is_not_an_object_type_or_intersection_of_object_types_with_statically_2509", "Base constructor return type '{0}' is not an object type or intersection of object types with statically known members."), Base_constructors_must_all_have_the_same_return_type: diag(2510, ts.DiagnosticCategory.Error, "Base_constructors_must_all_have_the_same_return_type_2510", "Base constructors must all have the same return type."), Cannot_create_an_instance_of_an_abstract_class: diag(2511, ts.DiagnosticCategory.Error, "Cannot_create_an_instance_of_an_abstract_class_2511", "Cannot create an instance of an abstract class."), Overload_signatures_must_all_be_abstract_or_non_abstract: diag(2512, ts.DiagnosticCategory.Error, "Overload_signatures_must_all_be_abstract_or_non_abstract_2512", "Overload signatures must all be abstract or non-abstract."), Abstract_method_0_in_class_1_cannot_be_accessed_via_super_expression: diag(2513, ts.DiagnosticCategory.Error, "Abstract_method_0_in_class_1_cannot_be_accessed_via_super_expression_2513", "Abstract method '{0}' in class '{1}' cannot be accessed via super expression."), Non_abstract_class_0_does_not_implement_inherited_abstract_member_1_from_class_2: diag(2515, ts.DiagnosticCategory.Error, "Non_abstract_class_0_does_not_implement_inherited_abstract_member_1_from_class_2_2515", "Non-abstract class '{0}' does not implement inherited abstract member '{1}' from class '{2}'."), All_declarations_of_an_abstract_method_must_be_consecutive: diag(2516, ts.DiagnosticCategory.Error, "All_declarations_of_an_abstract_method_must_be_consecutive_2516", "All declarations of an abstract method must be consecutive."), Cannot_assign_an_abstract_constructor_type_to_a_non_abstract_constructor_type: diag(2517, ts.DiagnosticCategory.Error, "Cannot_assign_an_abstract_constructor_type_to_a_non_abstract_constructor_type_2517", "Cannot assign an abstract constructor type to a non-abstract constructor type."), A_this_based_type_guard_is_not_compatible_with_a_parameter_based_type_guard: diag(2518, ts.DiagnosticCategory.Error, "A_this_based_type_guard_is_not_compatible_with_a_parameter_based_type_guard_2518", "A 'this'-based type guard is not compatible with a parameter-based type guard."), An_async_iterator_must_have_a_next_method: diag(2519, ts.DiagnosticCategory.Error, "An_async_iterator_must_have_a_next_method_2519", "An async iterator must have a 'next()' method."), Duplicate_identifier_0_Compiler_uses_declaration_1_to_support_async_functions: diag(2520, ts.DiagnosticCategory.Error, "Duplicate_identifier_0_Compiler_uses_declaration_1_to_support_async_functions_2520", "Duplicate identifier '{0}'. Compiler uses declaration '{1}' to support async functions."), The_arguments_object_cannot_be_referenced_in_an_async_function_or_method_in_ES3_and_ES5_Consider_using_a_standard_function_or_method: diag(2522, ts.DiagnosticCategory.Error, "The_arguments_object_cannot_be_referenced_in_an_async_function_or_method_in_ES3_and_ES5_Consider_usi_2522", "The 'arguments' object cannot be referenced in an async function or method in ES3 and ES5. Consider using a standard function or method."), yield_expressions_cannot_be_used_in_a_parameter_initializer: diag(2523, ts.DiagnosticCategory.Error, "yield_expressions_cannot_be_used_in_a_parameter_initializer_2523", "'yield' expressions cannot be used in a parameter initializer."), await_expressions_cannot_be_used_in_a_parameter_initializer: diag(2524, ts.DiagnosticCategory.Error, "await_expressions_cannot_be_used_in_a_parameter_initializer_2524", "'await' expressions cannot be used in a parameter initializer."), Initializer_provides_no_value_for_this_binding_element_and_the_binding_element_has_no_default_value: diag(2525, ts.DiagnosticCategory.Error, "Initializer_provides_no_value_for_this_binding_element_and_the_binding_element_has_no_default_value_2525", "Initializer provides no value for this binding element and the binding element has no default value."), A_this_type_is_available_only_in_a_non_static_member_of_a_class_or_interface: diag(2526, ts.DiagnosticCategory.Error, "A_this_type_is_available_only_in_a_non_static_member_of_a_class_or_interface_2526", "A 'this' type is available only in a non-static member of a class or interface."), The_inferred_type_of_0_references_an_inaccessible_1_type_A_type_annotation_is_necessary: diag(2527, ts.DiagnosticCategory.Error, "The_inferred_type_of_0_references_an_inaccessible_1_type_A_type_annotation_is_necessary_2527", "The inferred type of '{0}' references an inaccessible '{1}' type. A type annotation is necessary."), A_module_cannot_have_multiple_default_exports: diag(2528, ts.DiagnosticCategory.Error, "A_module_cannot_have_multiple_default_exports_2528", "A module cannot have multiple default exports."), Duplicate_identifier_0_Compiler_reserves_name_1_in_top_level_scope_of_a_module_containing_async_functions: diag(2529, ts.DiagnosticCategory.Error, "Duplicate_identifier_0_Compiler_reserves_name_1_in_top_level_scope_of_a_module_containing_async_func_2529", "Duplicate identifier '{0}'. Compiler reserves name '{1}' in top level scope of a module containing async functions."), Property_0_is_incompatible_with_index_signature: diag(2530, ts.DiagnosticCategory.Error, "Property_0_is_incompatible_with_index_signature_2530", "Property '{0}' is incompatible with index signature."), Object_is_possibly_null: diag(2531, ts.DiagnosticCategory.Error, "Object_is_possibly_null_2531", "Object is possibly 'null'."), Object_is_possibly_undefined: diag(2532, ts.DiagnosticCategory.Error, "Object_is_possibly_undefined_2532", "Object is possibly 'undefined'."), Object_is_possibly_null_or_undefined: diag(2533, ts.DiagnosticCategory.Error, "Object_is_possibly_null_or_undefined_2533", "Object is possibly 'null' or 'undefined'."), A_function_returning_never_cannot_have_a_reachable_end_point: diag(2534, ts.DiagnosticCategory.Error, "A_function_returning_never_cannot_have_a_reachable_end_point_2534", "A function returning 'never' cannot have a reachable end point."), Enum_type_0_has_members_with_initializers_that_are_not_literals: diag(2535, ts.DiagnosticCategory.Error, "Enum_type_0_has_members_with_initializers_that_are_not_literals_2535", "Enum type '{0}' has members with initializers that are not literals."), Type_0_cannot_be_used_to_index_type_1: diag(2536, ts.DiagnosticCategory.Error, "Type_0_cannot_be_used_to_index_type_1_2536", "Type '{0}' cannot be used to index type '{1}'."), Type_0_has_no_matching_index_signature_for_type_1: diag(2537, ts.DiagnosticCategory.Error, "Type_0_has_no_matching_index_signature_for_type_1_2537", "Type '{0}' has no matching index signature for type '{1}'."), Type_0_cannot_be_used_as_an_index_type: diag(2538, ts.DiagnosticCategory.Error, "Type_0_cannot_be_used_as_an_index_type_2538", "Type '{0}' cannot be used as an index type."), Cannot_assign_to_0_because_it_is_not_a_variable: diag(2539, ts.DiagnosticCategory.Error, "Cannot_assign_to_0_because_it_is_not_a_variable_2539", "Cannot assign to '{0}' because it is not a variable."), Cannot_assign_to_0_because_it_is_a_read_only_property: diag(2540, ts.DiagnosticCategory.Error, "Cannot_assign_to_0_because_it_is_a_read_only_property_2540", "Cannot assign to '{0}' because it is a read-only property."), Index_signature_in_type_0_only_permits_reading: diag(2542, ts.DiagnosticCategory.Error, "Index_signature_in_type_0_only_permits_reading_2542", "Index signature in type '{0}' only permits reading."), Duplicate_identifier_newTarget_Compiler_uses_variable_declaration_newTarget_to_capture_new_target_meta_property_reference: diag(2543, ts.DiagnosticCategory.Error, "Duplicate_identifier_newTarget_Compiler_uses_variable_declaration_newTarget_to_capture_new_target_me_2543", "Duplicate identifier '_newTarget'. Compiler uses variable declaration '_newTarget' to capture 'new.target' meta-property reference."), Expression_resolves_to_variable_declaration_newTarget_that_compiler_uses_to_capture_new_target_meta_property_reference: diag(2544, ts.DiagnosticCategory.Error, "Expression_resolves_to_variable_declaration_newTarget_that_compiler_uses_to_capture_new_target_meta__2544", "Expression resolves to variable declaration '_newTarget' that compiler uses to capture 'new.target' meta-property reference."), A_mixin_class_must_have_a_constructor_with_a_single_rest_parameter_of_type_any: diag(2545, ts.DiagnosticCategory.Error, "A_mixin_class_must_have_a_constructor_with_a_single_rest_parameter_of_type_any_2545", "A mixin class must have a constructor with a single rest parameter of type 'any[]'."), The_type_returned_by_the_0_method_of_an_async_iterator_must_be_a_promise_for_a_type_with_a_value_property: diag(2547, ts.DiagnosticCategory.Error, "The_type_returned_by_the_0_method_of_an_async_iterator_must_be_a_promise_for_a_type_with_a_value_pro_2547", "The type returned by the '{0}()' method of an async iterator must be a promise for a type with a 'value' property."), Type_0_is_not_an_array_type_or_does_not_have_a_Symbol_iterator_method_that_returns_an_iterator: diag(2548, ts.DiagnosticCategory.Error, "Type_0_is_not_an_array_type_or_does_not_have_a_Symbol_iterator_method_that_returns_an_iterator_2548", "Type '{0}' is not an array type or does not have a '[Symbol.iterator]()' method that returns an iterator."), Type_0_is_not_an_array_type_or_a_string_type_or_does_not_have_a_Symbol_iterator_method_that_returns_an_iterator: diag(2549, ts.DiagnosticCategory.Error, "Type_0_is_not_an_array_type_or_a_string_type_or_does_not_have_a_Symbol_iterator_method_that_returns__2549", "Type '{0}' is not an array type or a string type or does not have a '[Symbol.iterator]()' method that returns an iterator."), Property_0_does_not_exist_on_type_1_Do_you_need_to_change_your_target_library_Try_changing_the_lib_compiler_option_to_2_or_later: diag(2550, ts.DiagnosticCategory.Error, "Property_0_does_not_exist_on_type_1_Do_you_need_to_change_your_target_library_Try_changing_the_lib_c_2550", "Property '{0}' does not exist on type '{1}'. Do you need to change your target library? Try changing the 'lib' compiler option to '{2}' or later."), Property_0_does_not_exist_on_type_1_Did_you_mean_2: diag(2551, ts.DiagnosticCategory.Error, "Property_0_does_not_exist_on_type_1_Did_you_mean_2_2551", "Property '{0}' does not exist on type '{1}'. Did you mean '{2}'?"), Cannot_find_name_0_Did_you_mean_1: diag(2552, ts.DiagnosticCategory.Error, "Cannot_find_name_0_Did_you_mean_1_2552", "Cannot find name '{0}'. Did you mean '{1}'?"), Computed_values_are_not_permitted_in_an_enum_with_string_valued_members: diag(2553, ts.DiagnosticCategory.Error, "Computed_values_are_not_permitted_in_an_enum_with_string_valued_members_2553", "Computed values are not permitted in an enum with string valued members."), Expected_0_arguments_but_got_1: diag(2554, ts.DiagnosticCategory.Error, "Expected_0_arguments_but_got_1_2554", "Expected {0} arguments, but got {1}."), Expected_at_least_0_arguments_but_got_1: diag(2555, ts.DiagnosticCategory.Error, "Expected_at_least_0_arguments_but_got_1_2555", "Expected at least {0} arguments, but got {1}."), A_spread_argument_must_either_have_a_tuple_type_or_be_passed_to_a_rest_parameter: diag(2556, ts.DiagnosticCategory.Error, "A_spread_argument_must_either_have_a_tuple_type_or_be_passed_to_a_rest_parameter_2556", "A spread argument must either have a tuple type or be passed to a rest parameter."), Expected_0_type_arguments_but_got_1: diag(2558, ts.DiagnosticCategory.Error, "Expected_0_type_arguments_but_got_1_2558", "Expected {0} type arguments, but got {1}."), Type_0_has_no_properties_in_common_with_type_1: diag(2559, ts.DiagnosticCategory.Error, "Type_0_has_no_properties_in_common_with_type_1_2559", "Type '{0}' has no properties in common with type '{1}'."), Value_of_type_0_has_no_properties_in_common_with_type_1_Did_you_mean_to_call_it: diag(2560, ts.DiagnosticCategory.Error, "Value_of_type_0_has_no_properties_in_common_with_type_1_Did_you_mean_to_call_it_2560", "Value of type '{0}' has no properties in common with type '{1}'. Did you mean to call it?"), Object_literal_may_only_specify_known_properties_but_0_does_not_exist_in_type_1_Did_you_mean_to_write_2: diag(2561, ts.DiagnosticCategory.Error, "Object_literal_may_only_specify_known_properties_but_0_does_not_exist_in_type_1_Did_you_mean_to_writ_2561", "Object literal may only specify known properties, but '{0}' does not exist in type '{1}'. Did you mean to write '{2}'?"), Base_class_expressions_cannot_reference_class_type_parameters: diag(2562, ts.DiagnosticCategory.Error, "Base_class_expressions_cannot_reference_class_type_parameters_2562", "Base class expressions cannot reference class type parameters."), The_containing_function_or_module_body_is_too_large_for_control_flow_analysis: diag(2563, ts.DiagnosticCategory.Error, "The_containing_function_or_module_body_is_too_large_for_control_flow_analysis_2563", "The containing function or module body is too large for control flow analysis."), Property_0_has_no_initializer_and_is_not_definitely_assigned_in_the_constructor: diag(2564, ts.DiagnosticCategory.Error, "Property_0_has_no_initializer_and_is_not_definitely_assigned_in_the_constructor_2564", "Property '{0}' has no initializer and is not definitely assigned in the constructor."), Property_0_is_used_before_being_assigned: diag(2565, ts.DiagnosticCategory.Error, "Property_0_is_used_before_being_assigned_2565", "Property '{0}' is used before being assigned."), A_rest_element_cannot_have_a_property_name: diag(2566, ts.DiagnosticCategory.Error, "A_rest_element_cannot_have_a_property_name_2566", "A rest element cannot have a property name."), Enum_declarations_can_only_merge_with_namespace_or_other_enum_declarations: diag(2567, ts.DiagnosticCategory.Error, "Enum_declarations_can_only_merge_with_namespace_or_other_enum_declarations_2567", "Enum declarations can only merge with namespace or other enum declarations."), Property_0_may_not_exist_on_type_1_Did_you_mean_2: diag(2568, ts.DiagnosticCategory.Error, "Property_0_may_not_exist_on_type_1_Did_you_mean_2_2568", "Property '{0}' may not exist on type '{1}'. Did you mean '{2}'?"), Could_not_find_name_0_Did_you_mean_1: diag(2570, ts.DiagnosticCategory.Error, "Could_not_find_name_0_Did_you_mean_1_2570", "Could not find name '{0}'. Did you mean '{1}'?"), Object_is_of_type_unknown: diag(2571, ts.DiagnosticCategory.Error, "Object_is_of_type_unknown_2571", "Object is of type 'unknown'."), A_rest_element_type_must_be_an_array_type: diag(2574, ts.DiagnosticCategory.Error, "A_rest_element_type_must_be_an_array_type_2574", "A rest element type must be an array type."), No_overload_expects_0_arguments_but_overloads_do_exist_that_expect_either_1_or_2_arguments: diag(2575, ts.DiagnosticCategory.Error, "No_overload_expects_0_arguments_but_overloads_do_exist_that_expect_either_1_or_2_arguments_2575", "No overload expects {0} arguments, but overloads do exist that expect either {1} or {2} arguments."), Property_0_does_not_exist_on_type_1_Did_you_mean_to_access_the_static_member_2_instead: diag(2576, ts.DiagnosticCategory.Error, "Property_0_does_not_exist_on_type_1_Did_you_mean_to_access_the_static_member_2_instead_2576", "Property '{0}' does not exist on type '{1}'. Did you mean to access the static member '{2}' instead?"), Return_type_annotation_circularly_references_itself: diag(2577, ts.DiagnosticCategory.Error, "Return_type_annotation_circularly_references_itself_2577", "Return type annotation circularly references itself."), Unused_ts_expect_error_directive: diag(2578, ts.DiagnosticCategory.Error, "Unused_ts_expect_error_directive_2578", "Unused '@ts-expect-error' directive."), Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_node_Try_npm_i_save_dev_types_Slashnode: diag(2580, ts.DiagnosticCategory.Error, "Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_node_Try_npm_i_save_dev_types_Slashno_2580", "Cannot find name '{0}'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`."), Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_jQuery_Try_npm_i_save_dev_types_Slashjquery: diag(2581, ts.DiagnosticCategory.Error, "Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_jQuery_Try_npm_i_save_dev_types_Slash_2581", "Cannot find name '{0}'. Do you need to install type definitions for jQuery? Try `npm i --save-dev @types/jquery`."), Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_a_test_runner_Try_npm_i_save_dev_types_Slashjest_or_npm_i_save_dev_types_Slashmocha: diag(2582, ts.DiagnosticCategory.Error, "Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_a_test_runner_Try_npm_i_save_dev_type_2582", "Cannot find name '{0}'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`."), Cannot_find_name_0_Do_you_need_to_change_your_target_library_Try_changing_the_lib_compiler_option_to_1_or_later: diag(2583, ts.DiagnosticCategory.Error, "Cannot_find_name_0_Do_you_need_to_change_your_target_library_Try_changing_the_lib_compiler_option_to_2583", "Cannot find name '{0}'. Do you need to change your target library? Try changing the 'lib' compiler option to '{1}' or later."), Cannot_find_name_0_Do_you_need_to_change_your_target_library_Try_changing_the_lib_compiler_option_to_include_dom: diag(2584, ts.DiagnosticCategory.Error, "Cannot_find_name_0_Do_you_need_to_change_your_target_library_Try_changing_the_lib_compiler_option_to_2584", "Cannot find name '{0}'. Do you need to change your target library? Try changing the 'lib' compiler option to include 'dom'."), _0_only_refers_to_a_type_but_is_being_used_as_a_value_here_Do_you_need_to_change_your_target_library_Try_changing_the_lib_compiler_option_to_es2015_or_later: diag(2585, ts.DiagnosticCategory.Error, "_0_only_refers_to_a_type_but_is_being_used_as_a_value_here_Do_you_need_to_change_your_target_library_2585", "'{0}' only refers to a type, but is being used as a value here. Do you need to change your target library? Try changing the 'lib' compiler option to es2015 or later."), Cannot_assign_to_0_because_it_is_a_constant: diag(2588, ts.DiagnosticCategory.Error, "Cannot_assign_to_0_because_it_is_a_constant_2588", "Cannot assign to '{0}' because it is a constant."), Type_instantiation_is_excessively_deep_and_possibly_infinite: diag(2589, ts.DiagnosticCategory.Error, "Type_instantiation_is_excessively_deep_and_possibly_infinite_2589", "Type instantiation is excessively deep and possibly infinite."), Expression_produces_a_union_type_that_is_too_complex_to_represent: diag(2590, ts.DiagnosticCategory.Error, "Expression_produces_a_union_type_that_is_too_complex_to_represent_2590", "Expression produces a union type that is too complex to represent."), Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_node_Try_npm_i_save_dev_types_Slashnode_and_then_add_node_to_the_types_field_in_your_tsconfig: diag(2591, ts.DiagnosticCategory.Error, "Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_node_Try_npm_i_save_dev_types_Slashno_2591", "Cannot find name '{0}'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node` and then add 'node' to the types field in your tsconfig."), Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_jQuery_Try_npm_i_save_dev_types_Slashjquery_and_then_add_jquery_to_the_types_field_in_your_tsconfig: diag(2592, ts.DiagnosticCategory.Error, "Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_jQuery_Try_npm_i_save_dev_types_Slash_2592", "Cannot find name '{0}'. Do you need to install type definitions for jQuery? Try `npm i --save-dev @types/jquery` and then add 'jquery' to the types field in your tsconfig."), Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_a_test_runner_Try_npm_i_save_dev_types_Slashjest_or_npm_i_save_dev_types_Slashmocha_and_then_add_jest_or_mocha_to_the_types_field_in_your_tsconfig: diag(2593, ts.DiagnosticCategory.Error, "Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_a_test_runner_Try_npm_i_save_dev_type_2593", "Cannot find name '{0}'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in your tsconfig."), This_module_is_declared_with_using_export_and_can_only_be_used_with_a_default_import_when_using_the_0_flag: diag(2594, ts.DiagnosticCategory.Error, "This_module_is_declared_with_using_export_and_can_only_be_used_with_a_default_import_when_using_the__2594", "This module is declared with using 'export =', and can only be used with a default import when using the '{0}' flag."), _0_can_only_be_imported_by_using_a_default_import: diag(2595, ts.DiagnosticCategory.Error, "_0_can_only_be_imported_by_using_a_default_import_2595", "'{0}' can only be imported by using a default import."), _0_can_only_be_imported_by_turning_on_the_esModuleInterop_flag_and_using_a_default_import: diag(2596, ts.DiagnosticCategory.Error, "_0_can_only_be_imported_by_turning_on_the_esModuleInterop_flag_and_using_a_default_import_2596", "'{0}' can only be imported by turning on the 'esModuleInterop' flag and using a default import."), _0_can_only_be_imported_by_using_a_require_call_or_by_using_a_default_import: diag(2597, ts.DiagnosticCategory.Error, "_0_can_only_be_imported_by_using_a_require_call_or_by_using_a_default_import_2597", "'{0}' can only be imported by using a 'require' call or by using a default import."), _0_can_only_be_imported_by_using_a_require_call_or_by_turning_on_the_esModuleInterop_flag_and_using_a_default_import: diag(2598, ts.DiagnosticCategory.Error, "_0_can_only_be_imported_by_using_a_require_call_or_by_turning_on_the_esModuleInterop_flag_and_using__2598", "'{0}' can only be imported by using a 'require' call or by turning on the 'esModuleInterop' flag and using a default import."), JSX_element_implicitly_has_type_any_because_the_global_type_JSX_Element_does_not_exist: diag(2602, ts.DiagnosticCategory.Error, "JSX_element_implicitly_has_type_any_because_the_global_type_JSX_Element_does_not_exist_2602", "JSX element implicitly has type 'any' because the global type 'JSX.Element' does not exist."), Property_0_in_type_1_is_not_assignable_to_type_2: diag(2603, ts.DiagnosticCategory.Error, "Property_0_in_type_1_is_not_assignable_to_type_2_2603", "Property '{0}' in type '{1}' is not assignable to type '{2}'."), JSX_element_type_0_does_not_have_any_construct_or_call_signatures: diag(2604, ts.DiagnosticCategory.Error, "JSX_element_type_0_does_not_have_any_construct_or_call_signatures_2604", "JSX element type '{0}' does not have any construct or call signatures."), Property_0_of_JSX_spread_attribute_is_not_assignable_to_target_property: diag(2606, ts.DiagnosticCategory.Error, "Property_0_of_JSX_spread_attribute_is_not_assignable_to_target_property_2606", "Property '{0}' of JSX spread attribute is not assignable to target property."), JSX_element_class_does_not_support_attributes_because_it_does_not_have_a_0_property: diag(2607, ts.DiagnosticCategory.Error, "JSX_element_class_does_not_support_attributes_because_it_does_not_have_a_0_property_2607", "JSX element class does not support attributes because it does not have a '{0}' property."), The_global_type_JSX_0_may_not_have_more_than_one_property: diag(2608, ts.DiagnosticCategory.Error, "The_global_type_JSX_0_may_not_have_more_than_one_property_2608", "The global type 'JSX.{0}' may not have more than one property."), JSX_spread_child_must_be_an_array_type: diag(2609, ts.DiagnosticCategory.Error, "JSX_spread_child_must_be_an_array_type_2609", "JSX spread child must be an array type."), _0_is_defined_as_an_accessor_in_class_1_but_is_overridden_here_in_2_as_an_instance_property: diag(2610, ts.DiagnosticCategory.Error, "_0_is_defined_as_an_accessor_in_class_1_but_is_overridden_here_in_2_as_an_instance_property_2610", "'{0}' is defined as an accessor in class '{1}', but is overridden here in '{2}' as an instance property."), _0_is_defined_as_a_property_in_class_1_but_is_overridden_here_in_2_as_an_accessor: diag(2611, ts.DiagnosticCategory.Error, "_0_is_defined_as_a_property_in_class_1_but_is_overridden_here_in_2_as_an_accessor_2611", "'{0}' is defined as a property in class '{1}', but is overridden here in '{2}' as an accessor."), Property_0_will_overwrite_the_base_property_in_1_If_this_is_intentional_add_an_initializer_Otherwise_add_a_declare_modifier_or_remove_the_redundant_declaration: diag(2612, ts.DiagnosticCategory.Error, "Property_0_will_overwrite_the_base_property_in_1_If_this_is_intentional_add_an_initializer_Otherwise_2612", "Property '{0}' will overwrite the base property in '{1}'. If this is intentional, add an initializer. Otherwise, add a 'declare' modifier or remove the redundant declaration."), Module_0_has_no_default_export_Did_you_mean_to_use_import_1_from_0_instead: diag(2613, ts.DiagnosticCategory.Error, "Module_0_has_no_default_export_Did_you_mean_to_use_import_1_from_0_instead_2613", "Module '{0}' has no default export. Did you mean to use 'import { {1} } from {0}' instead?"), Module_0_has_no_exported_member_1_Did_you_mean_to_use_import_1_from_0_instead: diag(2614, ts.DiagnosticCategory.Error, "Module_0_has_no_exported_member_1_Did_you_mean_to_use_import_1_from_0_instead_2614", "Module '{0}' has no exported member '{1}'. Did you mean to use 'import {1} from {0}' instead?"), Type_of_property_0_circularly_references_itself_in_mapped_type_1: diag(2615, ts.DiagnosticCategory.Error, "Type_of_property_0_circularly_references_itself_in_mapped_type_1_2615", "Type of property '{0}' circularly references itself in mapped type '{1}'."), _0_can_only_be_imported_by_using_import_1_require_2_or_a_default_import: diag(2616, ts.DiagnosticCategory.Error, "_0_can_only_be_imported_by_using_import_1_require_2_or_a_default_import_2616", "'{0}' can only be imported by using 'import {1} = require({2})' or a default import."), _0_can_only_be_imported_by_using_import_1_require_2_or_by_turning_on_the_esModuleInterop_flag_and_using_a_default_import: diag(2617, ts.DiagnosticCategory.Error, "_0_can_only_be_imported_by_using_import_1_require_2_or_by_turning_on_the_esModuleInterop_flag_and_us_2617", "'{0}' can only be imported by using 'import {1} = require({2})' or by turning on the 'esModuleInterop' flag and using a default import."), Source_has_0_element_s_but_target_requires_1: diag(2618, ts.DiagnosticCategory.Error, "Source_has_0_element_s_but_target_requires_1_2618", "Source has {0} element(s) but target requires {1}."), Source_has_0_element_s_but_target_allows_only_1: diag(2619, ts.DiagnosticCategory.Error, "Source_has_0_element_s_but_target_allows_only_1_2619", "Source has {0} element(s) but target allows only {1}."), Target_requires_0_element_s_but_source_may_have_fewer: diag(2620, ts.DiagnosticCategory.Error, "Target_requires_0_element_s_but_source_may_have_fewer_2620", "Target requires {0} element(s) but source may have fewer."), Target_allows_only_0_element_s_but_source_may_have_more: diag(2621, ts.DiagnosticCategory.Error, "Target_allows_only_0_element_s_but_source_may_have_more_2621", "Target allows only {0} element(s) but source may have more."), Source_provides_no_match_for_required_element_at_position_0_in_target: diag(2623, ts.DiagnosticCategory.Error, "Source_provides_no_match_for_required_element_at_position_0_in_target_2623", "Source provides no match for required element at position {0} in target."), Source_provides_no_match_for_variadic_element_at_position_0_in_target: diag(2624, ts.DiagnosticCategory.Error, "Source_provides_no_match_for_variadic_element_at_position_0_in_target_2624", "Source provides no match for variadic element at position {0} in target."), Variadic_element_at_position_0_in_source_does_not_match_element_at_position_1_in_target: diag(2625, ts.DiagnosticCategory.Error, "Variadic_element_at_position_0_in_source_does_not_match_element_at_position_1_in_target_2625", "Variadic element at position {0} in source does not match element at position {1} in target."), Type_at_position_0_in_source_is_not_compatible_with_type_at_position_1_in_target: diag(2626, ts.DiagnosticCategory.Error, "Type_at_position_0_in_source_is_not_compatible_with_type_at_position_1_in_target_2626", "Type at position {0} in source is not compatible with type at position {1} in target."), Type_at_positions_0_through_1_in_source_is_not_compatible_with_type_at_position_2_in_target: diag(2627, ts.DiagnosticCategory.Error, "Type_at_positions_0_through_1_in_source_is_not_compatible_with_type_at_position_2_in_target_2627", "Type at positions {0} through {1} in source is not compatible with type at position {2} in target."), Cannot_assign_to_0_because_it_is_an_enum: diag(2628, ts.DiagnosticCategory.Error, "Cannot_assign_to_0_because_it_is_an_enum_2628", "Cannot assign to '{0}' because it is an enum."), Cannot_assign_to_0_because_it_is_a_class: diag(2629, ts.DiagnosticCategory.Error, "Cannot_assign_to_0_because_it_is_a_class_2629", "Cannot assign to '{0}' because it is a class."), Cannot_assign_to_0_because_it_is_a_function: diag(2630, ts.DiagnosticCategory.Error, "Cannot_assign_to_0_because_it_is_a_function_2630", "Cannot assign to '{0}' because it is a function."), Cannot_assign_to_0_because_it_is_a_namespace: diag(2631, ts.DiagnosticCategory.Error, "Cannot_assign_to_0_because_it_is_a_namespace_2631", "Cannot assign to '{0}' because it is a namespace."), Cannot_assign_to_0_because_it_is_an_import: diag(2632, ts.DiagnosticCategory.Error, "Cannot_assign_to_0_because_it_is_an_import_2632", "Cannot assign to '{0}' because it is an import."), JSX_property_access_expressions_cannot_include_JSX_namespace_names: diag(2633, ts.DiagnosticCategory.Error, "JSX_property_access_expressions_cannot_include_JSX_namespace_names_2633", "JSX property access expressions cannot include JSX namespace names"), _0_index_signatures_are_incompatible: diag(2634, ts.DiagnosticCategory.Error, "_0_index_signatures_are_incompatible_2634", "'{0}' index signatures are incompatible."), Type_0_has_no_signatures_for_which_the_type_argument_list_is_applicable: diag(2635, ts.DiagnosticCategory.Error, "Type_0_has_no_signatures_for_which_the_type_argument_list_is_applicable_2635", "Type '{0}' has no signatures for which the type argument list is applicable."), Type_0_is_not_assignable_to_type_1_as_implied_by_variance_annotation: diag(2636, ts.DiagnosticCategory.Error, "Type_0_is_not_assignable_to_type_1_as_implied_by_variance_annotation_2636", "Type '{0}' is not assignable to type '{1}' as implied by variance annotation."), Variance_annotations_are_only_supported_in_type_aliases_for_object_function_constructor_and_mapped_types: diag(2637, ts.DiagnosticCategory.Error, "Variance_annotations_are_only_supported_in_type_aliases_for_object_function_constructor_and_mapped_t_2637", "Variance annotations are only supported in type aliases for object, function, constructor, and mapped types."), Cannot_augment_module_0_with_value_exports_because_it_resolves_to_a_non_module_entity: diag(2649, ts.DiagnosticCategory.Error, "Cannot_augment_module_0_with_value_exports_because_it_resolves_to_a_non_module_entity_2649", "Cannot augment module '{0}' with value exports because it resolves to a non-module entity."), A_member_initializer_in_a_enum_declaration_cannot_reference_members_declared_after_it_including_members_defined_in_other_enums: diag(2651, ts.DiagnosticCategory.Error, "A_member_initializer_in_a_enum_declaration_cannot_reference_members_declared_after_it_including_memb_2651", "A member initializer in a enum declaration cannot reference members declared after it, including members defined in other enums."), Merged_declaration_0_cannot_include_a_default_export_declaration_Consider_adding_a_separate_export_default_0_declaration_instead: diag(2652, ts.DiagnosticCategory.Error, "Merged_declaration_0_cannot_include_a_default_export_declaration_Consider_adding_a_separate_export_d_2652", "Merged declaration '{0}' cannot include a default export declaration. Consider adding a separate 'export default {0}' declaration instead."), Non_abstract_class_expression_does_not_implement_inherited_abstract_member_0_from_class_1: diag(2653, ts.DiagnosticCategory.Error, "Non_abstract_class_expression_does_not_implement_inherited_abstract_member_0_from_class_1_2653", "Non-abstract class expression does not implement inherited abstract member '{0}' from class '{1}'."), JSX_expressions_must_have_one_parent_element: diag(2657, ts.DiagnosticCategory.Error, "JSX_expressions_must_have_one_parent_element_2657", "JSX expressions must have one parent element."), Type_0_provides_no_match_for_the_signature_1: diag(2658, ts.DiagnosticCategory.Error, "Type_0_provides_no_match_for_the_signature_1_2658", "Type '{0}' provides no match for the signature '{1}'."), super_is_only_allowed_in_members_of_object_literal_expressions_when_option_target_is_ES2015_or_higher: diag(2659, ts.DiagnosticCategory.Error, "super_is_only_allowed_in_members_of_object_literal_expressions_when_option_target_is_ES2015_or_highe_2659", "'super' is only allowed in members of object literal expressions when option 'target' is 'ES2015' or higher."), super_can_only_be_referenced_in_members_of_derived_classes_or_object_literal_expressions: diag(2660, ts.DiagnosticCategory.Error, "super_can_only_be_referenced_in_members_of_derived_classes_or_object_literal_expressions_2660", "'super' can only be referenced in members of derived classes or object literal expressions."), Cannot_export_0_Only_local_declarations_can_be_exported_from_a_module: diag(2661, ts.DiagnosticCategory.Error, "Cannot_export_0_Only_local_declarations_can_be_exported_from_a_module_2661", "Cannot export '{0}'. Only local declarations can be exported from a module."), Cannot_find_name_0_Did_you_mean_the_static_member_1_0: diag(2662, ts.DiagnosticCategory.Error, "Cannot_find_name_0_Did_you_mean_the_static_member_1_0_2662", "Cannot find name '{0}'. Did you mean the static member '{1}.{0}'?"), Cannot_find_name_0_Did_you_mean_the_instance_member_this_0: diag(2663, ts.DiagnosticCategory.Error, "Cannot_find_name_0_Did_you_mean_the_instance_member_this_0_2663", "Cannot find name '{0}'. Did you mean the instance member 'this.{0}'?"), Invalid_module_name_in_augmentation_module_0_cannot_be_found: diag(2664, ts.DiagnosticCategory.Error, "Invalid_module_name_in_augmentation_module_0_cannot_be_found_2664", "Invalid module name in augmentation, module '{0}' cannot be found."), Invalid_module_name_in_augmentation_Module_0_resolves_to_an_untyped_module_at_1_which_cannot_be_augmented: diag(2665, ts.DiagnosticCategory.Error, "Invalid_module_name_in_augmentation_Module_0_resolves_to_an_untyped_module_at_1_which_cannot_be_augm_2665", "Invalid module name in augmentation. Module '{0}' resolves to an untyped module at '{1}', which cannot be augmented."), Exports_and_export_assignments_are_not_permitted_in_module_augmentations: diag(2666, ts.DiagnosticCategory.Error, "Exports_and_export_assignments_are_not_permitted_in_module_augmentations_2666", "Exports and export assignments are not permitted in module augmentations."), Imports_are_not_permitted_in_module_augmentations_Consider_moving_them_to_the_enclosing_external_module: diag(2667, ts.DiagnosticCategory.Error, "Imports_are_not_permitted_in_module_augmentations_Consider_moving_them_to_the_enclosing_external_mod_2667", "Imports are not permitted in module augmentations. Consider moving them to the enclosing external module."), export_modifier_cannot_be_applied_to_ambient_modules_and_module_augmentations_since_they_are_always_visible: diag(2668, ts.DiagnosticCategory.Error, "export_modifier_cannot_be_applied_to_ambient_modules_and_module_augmentations_since_they_are_always__2668", "'export' modifier cannot be applied to ambient modules and module augmentations since they are always visible."), Augmentations_for_the_global_scope_can_only_be_directly_nested_in_external_modules_or_ambient_module_declarations: diag(2669, ts.DiagnosticCategory.Error, "Augmentations_for_the_global_scope_can_only_be_directly_nested_in_external_modules_or_ambient_module_2669", "Augmentations for the global scope can only be directly nested in external modules or ambient module declarations."), Augmentations_for_the_global_scope_should_have_declare_modifier_unless_they_appear_in_already_ambient_context: diag(2670, ts.DiagnosticCategory.Error, "Augmentations_for_the_global_scope_should_have_declare_modifier_unless_they_appear_in_already_ambien_2670", "Augmentations for the global scope should have 'declare' modifier unless they appear in already ambient context."), Cannot_augment_module_0_because_it_resolves_to_a_non_module_entity: diag(2671, ts.DiagnosticCategory.Error, "Cannot_augment_module_0_because_it_resolves_to_a_non_module_entity_2671", "Cannot augment module '{0}' because it resolves to a non-module entity."), Cannot_assign_a_0_constructor_type_to_a_1_constructor_type: diag(2672, ts.DiagnosticCategory.Error, "Cannot_assign_a_0_constructor_type_to_a_1_constructor_type_2672", "Cannot assign a '{0}' constructor type to a '{1}' constructor type."), Constructor_of_class_0_is_private_and_only_accessible_within_the_class_declaration: diag(2673, ts.DiagnosticCategory.Error, "Constructor_of_class_0_is_private_and_only_accessible_within_the_class_declaration_2673", "Constructor of class '{0}' is private and only accessible within the class declaration."), Constructor_of_class_0_is_protected_and_only_accessible_within_the_class_declaration: diag(2674, ts.DiagnosticCategory.Error, "Constructor_of_class_0_is_protected_and_only_accessible_within_the_class_declaration_2674", "Constructor of class '{0}' is protected and only accessible within the class declaration."), Cannot_extend_a_class_0_Class_constructor_is_marked_as_private: diag(2675, ts.DiagnosticCategory.Error, "Cannot_extend_a_class_0_Class_constructor_is_marked_as_private_2675", "Cannot extend a class '{0}'. Class constructor is marked as private."), Accessors_must_both_be_abstract_or_non_abstract: diag(2676, ts.DiagnosticCategory.Error, "Accessors_must_both_be_abstract_or_non_abstract_2676", "Accessors must both be abstract or non-abstract."), A_type_predicate_s_type_must_be_assignable_to_its_parameter_s_type: diag(2677, ts.DiagnosticCategory.Error, "A_type_predicate_s_type_must_be_assignable_to_its_parameter_s_type_2677", "A type predicate's type must be assignable to its parameter's type."), Type_0_is_not_comparable_to_type_1: diag(2678, ts.DiagnosticCategory.Error, "Type_0_is_not_comparable_to_type_1_2678", "Type '{0}' is not comparable to type '{1}'."), A_function_that_is_called_with_the_new_keyword_cannot_have_a_this_type_that_is_void: diag(2679, ts.DiagnosticCategory.Error, "A_function_that_is_called_with_the_new_keyword_cannot_have_a_this_type_that_is_void_2679", "A function that is called with the 'new' keyword cannot have a 'this' type that is 'void'."), A_0_parameter_must_be_the_first_parameter: diag(2680, ts.DiagnosticCategory.Error, "A_0_parameter_must_be_the_first_parameter_2680", "A '{0}' parameter must be the first parameter."), A_constructor_cannot_have_a_this_parameter: diag(2681, ts.DiagnosticCategory.Error, "A_constructor_cannot_have_a_this_parameter_2681", "A constructor cannot have a 'this' parameter."), this_implicitly_has_type_any_because_it_does_not_have_a_type_annotation: diag(2683, ts.DiagnosticCategory.Error, "this_implicitly_has_type_any_because_it_does_not_have_a_type_annotation_2683", "'this' implicitly has type 'any' because it does not have a type annotation."), The_this_context_of_type_0_is_not_assignable_to_method_s_this_of_type_1: diag(2684, ts.DiagnosticCategory.Error, "The_this_context_of_type_0_is_not_assignable_to_method_s_this_of_type_1_2684", "The 'this' context of type '{0}' is not assignable to method's 'this' of type '{1}'."), The_this_types_of_each_signature_are_incompatible: diag(2685, ts.DiagnosticCategory.Error, "The_this_types_of_each_signature_are_incompatible_2685", "The 'this' types of each signature are incompatible."), _0_refers_to_a_UMD_global_but_the_current_file_is_a_module_Consider_adding_an_import_instead: diag(2686, ts.DiagnosticCategory.Error, "_0_refers_to_a_UMD_global_but_the_current_file_is_a_module_Consider_adding_an_import_instead_2686", "'{0}' refers to a UMD global, but the current file is a module. Consider adding an import instead."), All_declarations_of_0_must_have_identical_modifiers: diag(2687, ts.DiagnosticCategory.Error, "All_declarations_of_0_must_have_identical_modifiers_2687", "All declarations of '{0}' must have identical modifiers."), Cannot_find_type_definition_file_for_0: diag(2688, ts.DiagnosticCategory.Error, "Cannot_find_type_definition_file_for_0_2688", "Cannot find type definition file for '{0}'."), Cannot_extend_an_interface_0_Did_you_mean_implements: diag(2689, ts.DiagnosticCategory.Error, "Cannot_extend_an_interface_0_Did_you_mean_implements_2689", "Cannot extend an interface '{0}'. Did you mean 'implements'?"), _0_only_refers_to_a_type_but_is_being_used_as_a_value_here_Did_you_mean_to_use_1_in_0: diag(2690, ts.DiagnosticCategory.Error, "_0_only_refers_to_a_type_but_is_being_used_as_a_value_here_Did_you_mean_to_use_1_in_0_2690", "'{0}' only refers to a type, but is being used as a value here. Did you mean to use '{1} in {0}'?"), An_import_path_cannot_end_with_a_0_extension_Consider_importing_1_instead: diag(2691, ts.DiagnosticCategory.Error, "An_import_path_cannot_end_with_a_0_extension_Consider_importing_1_instead_2691", "An import path cannot end with a '{0}' extension. Consider importing '{1}' instead."), _0_is_a_primitive_but_1_is_a_wrapper_object_Prefer_using_0_when_possible: diag(2692, ts.DiagnosticCategory.Error, "_0_is_a_primitive_but_1_is_a_wrapper_object_Prefer_using_0_when_possible_2692", "'{0}' is a primitive, but '{1}' is a wrapper object. Prefer using '{0}' when possible."), _0_only_refers_to_a_type_but_is_being_used_as_a_value_here: diag(2693, ts.DiagnosticCategory.Error, "_0_only_refers_to_a_type_but_is_being_used_as_a_value_here_2693", "'{0}' only refers to a type, but is being used as a value here."), Namespace_0_has_no_exported_member_1: diag(2694, ts.DiagnosticCategory.Error, "Namespace_0_has_no_exported_member_1_2694", "Namespace '{0}' has no exported member '{1}'."), Left_side_of_comma_operator_is_unused_and_has_no_side_effects: diag(2695, ts.DiagnosticCategory.Error, "Left_side_of_comma_operator_is_unused_and_has_no_side_effects_2695", "Left side of comma operator is unused and has no side effects.", /*reportsUnnecessary*/ true), The_Object_type_is_assignable_to_very_few_other_types_Did_you_mean_to_use_the_any_type_instead: diag(2696, ts.DiagnosticCategory.Error, "The_Object_type_is_assignable_to_very_few_other_types_Did_you_mean_to_use_the_any_type_instead_2696", "The 'Object' type is assignable to very few other types. Did you mean to use the 'any' type instead?"), An_async_function_or_method_must_return_a_Promise_Make_sure_you_have_a_declaration_for_Promise_or_include_ES2015_in_your_lib_option: diag(2697, ts.DiagnosticCategory.Error, "An_async_function_or_method_must_return_a_Promise_Make_sure_you_have_a_declaration_for_Promise_or_in_2697", "An async function or method must return a 'Promise'. Make sure you have a declaration for 'Promise' or include 'ES2015' in your '--lib' option."), Spread_types_may_only_be_created_from_object_types: diag(2698, ts.DiagnosticCategory.Error, "Spread_types_may_only_be_created_from_object_types_2698", "Spread types may only be created from object types."), Static_property_0_conflicts_with_built_in_property_Function_0_of_constructor_function_1: diag(2699, ts.DiagnosticCategory.Error, "Static_property_0_conflicts_with_built_in_property_Function_0_of_constructor_function_1_2699", "Static property '{0}' conflicts with built-in property 'Function.{0}' of constructor function '{1}'."), Rest_types_may_only_be_created_from_object_types: diag(2700, ts.DiagnosticCategory.Error, "Rest_types_may_only_be_created_from_object_types_2700", "Rest types may only be created from object types."), The_target_of_an_object_rest_assignment_must_be_a_variable_or_a_property_access: diag(2701, ts.DiagnosticCategory.Error, "The_target_of_an_object_rest_assignment_must_be_a_variable_or_a_property_access_2701", "The target of an object rest assignment must be a variable or a property access."), _0_only_refers_to_a_type_but_is_being_used_as_a_namespace_here: diag(2702, ts.DiagnosticCategory.Error, "_0_only_refers_to_a_type_but_is_being_used_as_a_namespace_here_2702", "'{0}' only refers to a type, but is being used as a namespace here."), The_operand_of_a_delete_operator_must_be_a_property_reference: diag(2703, ts.DiagnosticCategory.Error, "The_operand_of_a_delete_operator_must_be_a_property_reference_2703", "The operand of a 'delete' operator must be a property reference."), The_operand_of_a_delete_operator_cannot_be_a_read_only_property: diag(2704, ts.DiagnosticCategory.Error, "The_operand_of_a_delete_operator_cannot_be_a_read_only_property_2704", "The operand of a 'delete' operator cannot be a read-only property."), An_async_function_or_method_in_ES5_SlashES3_requires_the_Promise_constructor_Make_sure_you_have_a_declaration_for_the_Promise_constructor_or_include_ES2015_in_your_lib_option: diag(2705, ts.DiagnosticCategory.Error, "An_async_function_or_method_in_ES5_SlashES3_requires_the_Promise_constructor_Make_sure_you_have_a_de_2705", "An async function or method in ES5/ES3 requires the 'Promise' constructor. Make sure you have a declaration for the 'Promise' constructor or include 'ES2015' in your '--lib' option."), Required_type_parameters_may_not_follow_optional_type_parameters: diag(2706, ts.DiagnosticCategory.Error, "Required_type_parameters_may_not_follow_optional_type_parameters_2706", "Required type parameters may not follow optional type parameters."), Generic_type_0_requires_between_1_and_2_type_arguments: diag(2707, ts.DiagnosticCategory.Error, "Generic_type_0_requires_between_1_and_2_type_arguments_2707", "Generic type '{0}' requires between {1} and {2} type arguments."), Cannot_use_namespace_0_as_a_value: diag(2708, ts.DiagnosticCategory.Error, "Cannot_use_namespace_0_as_a_value_2708", "Cannot use namespace '{0}' as a value."), Cannot_use_namespace_0_as_a_type: diag(2709, ts.DiagnosticCategory.Error, "Cannot_use_namespace_0_as_a_type_2709", "Cannot use namespace '{0}' as a type."), _0_are_specified_twice_The_attribute_named_0_will_be_overwritten: diag(2710, ts.DiagnosticCategory.Error, "_0_are_specified_twice_The_attribute_named_0_will_be_overwritten_2710", "'{0}' are specified twice. The attribute named '{0}' will be overwritten."), A_dynamic_import_call_returns_a_Promise_Make_sure_you_have_a_declaration_for_Promise_or_include_ES2015_in_your_lib_option: diag(2711, ts.DiagnosticCategory.Error, "A_dynamic_import_call_returns_a_Promise_Make_sure_you_have_a_declaration_for_Promise_or_include_ES20_2711", "A dynamic import call returns a 'Promise'. Make sure you have a declaration for 'Promise' or include 'ES2015' in your '--lib' option."), A_dynamic_import_call_in_ES5_SlashES3_requires_the_Promise_constructor_Make_sure_you_have_a_declaration_for_the_Promise_constructor_or_include_ES2015_in_your_lib_option: diag(2712, ts.DiagnosticCategory.Error, "A_dynamic_import_call_in_ES5_SlashES3_requires_the_Promise_constructor_Make_sure_you_have_a_declarat_2712", "A dynamic import call in ES5/ES3 requires the 'Promise' constructor. Make sure you have a declaration for the 'Promise' constructor or include 'ES2015' in your '--lib' option."), Cannot_access_0_1_because_0_is_a_type_but_not_a_namespace_Did_you_mean_to_retrieve_the_type_of_the_property_1_in_0_with_0_1: diag(2713, ts.DiagnosticCategory.Error, "Cannot_access_0_1_because_0_is_a_type_but_not_a_namespace_Did_you_mean_to_retrieve_the_type_of_the_p_2713", "Cannot access '{0}.{1}' because '{0}' is a type, but not a namespace. Did you mean to retrieve the type of the property '{1}' in '{0}' with '{0}[\"{1}\"]'?"), The_expression_of_an_export_assignment_must_be_an_identifier_or_qualified_name_in_an_ambient_context: diag(2714, ts.DiagnosticCategory.Error, "The_expression_of_an_export_assignment_must_be_an_identifier_or_qualified_name_in_an_ambient_context_2714", "The expression of an export assignment must be an identifier or qualified name in an ambient context."), Abstract_property_0_in_class_1_cannot_be_accessed_in_the_constructor: diag(2715, ts.DiagnosticCategory.Error, "Abstract_property_0_in_class_1_cannot_be_accessed_in_the_constructor_2715", "Abstract property '{0}' in class '{1}' cannot be accessed in the constructor."), Type_parameter_0_has_a_circular_default: diag(2716, ts.DiagnosticCategory.Error, "Type_parameter_0_has_a_circular_default_2716", "Type parameter '{0}' has a circular default."), Subsequent_property_declarations_must_have_the_same_type_Property_0_must_be_of_type_1_but_here_has_type_2: diag(2717, ts.DiagnosticCategory.Error, "Subsequent_property_declarations_must_have_the_same_type_Property_0_must_be_of_type_1_but_here_has_t_2717", "Subsequent property declarations must have the same type. Property '{0}' must be of type '{1}', but here has type '{2}'."), Duplicate_property_0: diag(2718, ts.DiagnosticCategory.Error, "Duplicate_property_0_2718", "Duplicate property '{0}'."), Type_0_is_not_assignable_to_type_1_Two_different_types_with_this_name_exist_but_they_are_unrelated: diag(2719, ts.DiagnosticCategory.Error, "Type_0_is_not_assignable_to_type_1_Two_different_types_with_this_name_exist_but_they_are_unrelated_2719", "Type '{0}' is not assignable to type '{1}'. Two different types with this name exist, but they are unrelated."), Class_0_incorrectly_implements_class_1_Did_you_mean_to_extend_1_and_inherit_its_members_as_a_subclass: diag(2720, ts.DiagnosticCategory.Error, "Class_0_incorrectly_implements_class_1_Did_you_mean_to_extend_1_and_inherit_its_members_as_a_subclas_2720", "Class '{0}' incorrectly implements class '{1}'. Did you mean to extend '{1}' and inherit its members as a subclass?"), Cannot_invoke_an_object_which_is_possibly_null: diag(2721, ts.DiagnosticCategory.Error, "Cannot_invoke_an_object_which_is_possibly_null_2721", "Cannot invoke an object which is possibly 'null'."), Cannot_invoke_an_object_which_is_possibly_undefined: diag(2722, ts.DiagnosticCategory.Error, "Cannot_invoke_an_object_which_is_possibly_undefined_2722", "Cannot invoke an object which is possibly 'undefined'."), Cannot_invoke_an_object_which_is_possibly_null_or_undefined: diag(2723, ts.DiagnosticCategory.Error, "Cannot_invoke_an_object_which_is_possibly_null_or_undefined_2723", "Cannot invoke an object which is possibly 'null' or 'undefined'."), _0_has_no_exported_member_named_1_Did_you_mean_2: diag(2724, ts.DiagnosticCategory.Error, "_0_has_no_exported_member_named_1_Did_you_mean_2_2724", "'{0}' has no exported member named '{1}'. Did you mean '{2}'?"), Class_name_cannot_be_Object_when_targeting_ES5_with_module_0: diag(2725, ts.DiagnosticCategory.Error, "Class_name_cannot_be_Object_when_targeting_ES5_with_module_0_2725", "Class name cannot be 'Object' when targeting ES5 with module {0}."), Cannot_find_lib_definition_for_0: diag(2726, ts.DiagnosticCategory.Error, "Cannot_find_lib_definition_for_0_2726", "Cannot find lib definition for '{0}'."), Cannot_find_lib_definition_for_0_Did_you_mean_1: diag(2727, ts.DiagnosticCategory.Error, "Cannot_find_lib_definition_for_0_Did_you_mean_1_2727", "Cannot find lib definition for '{0}'. Did you mean '{1}'?"), _0_is_declared_here: diag(2728, ts.DiagnosticCategory.Message, "_0_is_declared_here_2728", "'{0}' is declared here."), Property_0_is_used_before_its_initialization: diag(2729, ts.DiagnosticCategory.Error, "Property_0_is_used_before_its_initialization_2729", "Property '{0}' is used before its initialization."), An_arrow_function_cannot_have_a_this_parameter: diag(2730, ts.DiagnosticCategory.Error, "An_arrow_function_cannot_have_a_this_parameter_2730", "An arrow function cannot have a 'this' parameter."), Implicit_conversion_of_a_symbol_to_a_string_will_fail_at_runtime_Consider_wrapping_this_expression_in_String: diag(2731, ts.DiagnosticCategory.Error, "Implicit_conversion_of_a_symbol_to_a_string_will_fail_at_runtime_Consider_wrapping_this_expression_i_2731", "Implicit conversion of a 'symbol' to a 'string' will fail at runtime. Consider wrapping this expression in 'String(...)'."), Cannot_find_module_0_Consider_using_resolveJsonModule_to_import_module_with_json_extension: diag(2732, ts.DiagnosticCategory.Error, "Cannot_find_module_0_Consider_using_resolveJsonModule_to_import_module_with_json_extension_2732", "Cannot find module '{0}'. Consider using '--resolveJsonModule' to import module with '.json' extension."), Property_0_was_also_declared_here: diag(2733, ts.DiagnosticCategory.Error, "Property_0_was_also_declared_here_2733", "Property '{0}' was also declared here."), Are_you_missing_a_semicolon: diag(2734, ts.DiagnosticCategory.Error, "Are_you_missing_a_semicolon_2734", "Are you missing a semicolon?"), Did_you_mean_for_0_to_be_constrained_to_type_new_args_Colon_any_1: diag(2735, ts.DiagnosticCategory.Error, "Did_you_mean_for_0_to_be_constrained_to_type_new_args_Colon_any_1_2735", "Did you mean for '{0}' to be constrained to type 'new (...args: any[]) => {1}'?"), Operator_0_cannot_be_applied_to_type_1: diag(2736, ts.DiagnosticCategory.Error, "Operator_0_cannot_be_applied_to_type_1_2736", "Operator '{0}' cannot be applied to type '{1}'."), BigInt_literals_are_not_available_when_targeting_lower_than_ES2020: diag(2737, ts.DiagnosticCategory.Error, "BigInt_literals_are_not_available_when_targeting_lower_than_ES2020_2737", "BigInt literals are not available when targeting lower than ES2020."), An_outer_value_of_this_is_shadowed_by_this_container: diag(2738, ts.DiagnosticCategory.Message, "An_outer_value_of_this_is_shadowed_by_this_container_2738", "An outer value of 'this' is shadowed by this container."), Type_0_is_missing_the_following_properties_from_type_1_Colon_2: diag(2739, ts.DiagnosticCategory.Error, "Type_0_is_missing_the_following_properties_from_type_1_Colon_2_2739", "Type '{0}' is missing the following properties from type '{1}': {2}"), Type_0_is_missing_the_following_properties_from_type_1_Colon_2_and_3_more: diag(2740, ts.DiagnosticCategory.Error, "Type_0_is_missing_the_following_properties_from_type_1_Colon_2_and_3_more_2740", "Type '{0}' is missing the following properties from type '{1}': {2}, and {3} more."), Property_0_is_missing_in_type_1_but_required_in_type_2: diag(2741, ts.DiagnosticCategory.Error, "Property_0_is_missing_in_type_1_but_required_in_type_2_2741", "Property '{0}' is missing in type '{1}' but required in type '{2}'."), The_inferred_type_of_0_cannot_be_named_without_a_reference_to_1_This_is_likely_not_portable_A_type_annotation_is_necessary: diag(2742, ts.DiagnosticCategory.Error, "The_inferred_type_of_0_cannot_be_named_without_a_reference_to_1_This_is_likely_not_portable_A_type_a_2742", "The inferred type of '{0}' cannot be named without a reference to '{1}'. This is likely not portable. A type annotation is necessary."), No_overload_expects_0_type_arguments_but_overloads_do_exist_that_expect_either_1_or_2_type_arguments: diag(2743, ts.DiagnosticCategory.Error, "No_overload_expects_0_type_arguments_but_overloads_do_exist_that_expect_either_1_or_2_type_arguments_2743", "No overload expects {0} type arguments, but overloads do exist that expect either {1} or {2} type arguments."), Type_parameter_defaults_can_only_reference_previously_declared_type_parameters: diag(2744, ts.DiagnosticCategory.Error, "Type_parameter_defaults_can_only_reference_previously_declared_type_parameters_2744", "Type parameter defaults can only reference previously declared type parameters."), This_JSX_tag_s_0_prop_expects_type_1_which_requires_multiple_children_but_only_a_single_child_was_provided: diag(2745, ts.DiagnosticCategory.Error, "This_JSX_tag_s_0_prop_expects_type_1_which_requires_multiple_children_but_only_a_single_child_was_pr_2745", "This JSX tag's '{0}' prop expects type '{1}' which requires multiple children, but only a single child was provided."), This_JSX_tag_s_0_prop_expects_a_single_child_of_type_1_but_multiple_children_were_provided: diag(2746, ts.DiagnosticCategory.Error, "This_JSX_tag_s_0_prop_expects_a_single_child_of_type_1_but_multiple_children_were_provided_2746", "This JSX tag's '{0}' prop expects a single child of type '{1}', but multiple children were provided."), _0_components_don_t_accept_text_as_child_elements_Text_in_JSX_has_the_type_string_but_the_expected_type_of_1_is_2: diag(2747, ts.DiagnosticCategory.Error, "_0_components_don_t_accept_text_as_child_elements_Text_in_JSX_has_the_type_string_but_the_expected_t_2747", "'{0}' components don't accept text as child elements. Text in JSX has the type 'string', but the expected type of '{1}' is '{2}'."), Cannot_access_ambient_const_enums_when_the_isolatedModules_flag_is_provided: diag(2748, ts.DiagnosticCategory.Error, "Cannot_access_ambient_const_enums_when_the_isolatedModules_flag_is_provided_2748", "Cannot access ambient const enums when the '--isolatedModules' flag is provided."), _0_refers_to_a_value_but_is_being_used_as_a_type_here_Did_you_mean_typeof_0: diag(2749, ts.DiagnosticCategory.Error, "_0_refers_to_a_value_but_is_being_used_as_a_type_here_Did_you_mean_typeof_0_2749", "'{0}' refers to a value, but is being used as a type here. Did you mean 'typeof {0}'?"), The_implementation_signature_is_declared_here: diag(2750, ts.DiagnosticCategory.Error, "The_implementation_signature_is_declared_here_2750", "The implementation signature is declared here."), Circularity_originates_in_type_at_this_location: diag(2751, ts.DiagnosticCategory.Error, "Circularity_originates_in_type_at_this_location_2751", "Circularity originates in type at this location."), The_first_export_default_is_here: diag(2752, ts.DiagnosticCategory.Error, "The_first_export_default_is_here_2752", "The first export default is here."), Another_export_default_is_here: diag(2753, ts.DiagnosticCategory.Error, "Another_export_default_is_here_2753", "Another export default is here."), super_may_not_use_type_arguments: diag(2754, ts.DiagnosticCategory.Error, "super_may_not_use_type_arguments_2754", "'super' may not use type arguments."), No_constituent_of_type_0_is_callable: diag(2755, ts.DiagnosticCategory.Error, "No_constituent_of_type_0_is_callable_2755", "No constituent of type '{0}' is callable."), Not_all_constituents_of_type_0_are_callable: diag(2756, ts.DiagnosticCategory.Error, "Not_all_constituents_of_type_0_are_callable_2756", "Not all constituents of type '{0}' are callable."), Type_0_has_no_call_signatures: diag(2757, ts.DiagnosticCategory.Error, "Type_0_has_no_call_signatures_2757", "Type '{0}' has no call signatures."), Each_member_of_the_union_type_0_has_signatures_but_none_of_those_signatures_are_compatible_with_each_other: diag(2758, ts.DiagnosticCategory.Error, "Each_member_of_the_union_type_0_has_signatures_but_none_of_those_signatures_are_compatible_with_each_2758", "Each member of the union type '{0}' has signatures, but none of those signatures are compatible with each other."), No_constituent_of_type_0_is_constructable: diag(2759, ts.DiagnosticCategory.Error, "No_constituent_of_type_0_is_constructable_2759", "No constituent of type '{0}' is constructable."), Not_all_constituents_of_type_0_are_constructable: diag(2760, ts.DiagnosticCategory.Error, "Not_all_constituents_of_type_0_are_constructable_2760", "Not all constituents of type '{0}' are constructable."), Type_0_has_no_construct_signatures: diag(2761, ts.DiagnosticCategory.Error, "Type_0_has_no_construct_signatures_2761", "Type '{0}' has no construct signatures."), Each_member_of_the_union_type_0_has_construct_signatures_but_none_of_those_signatures_are_compatible_with_each_other: diag(2762, ts.DiagnosticCategory.Error, "Each_member_of_the_union_type_0_has_construct_signatures_but_none_of_those_signatures_are_compatible_2762", "Each member of the union type '{0}' has construct signatures, but none of those signatures are compatible with each other."), Cannot_iterate_value_because_the_next_method_of_its_iterator_expects_type_1_but_for_of_will_always_send_0: diag(2763, ts.DiagnosticCategory.Error, "Cannot_iterate_value_because_the_next_method_of_its_iterator_expects_type_1_but_for_of_will_always_s_2763", "Cannot iterate value because the 'next' method of its iterator expects type '{1}', but for-of will always send '{0}'."), Cannot_iterate_value_because_the_next_method_of_its_iterator_expects_type_1_but_array_spread_will_always_send_0: diag(2764, ts.DiagnosticCategory.Error, "Cannot_iterate_value_because_the_next_method_of_its_iterator_expects_type_1_but_array_spread_will_al_2764", "Cannot iterate value because the 'next' method of its iterator expects type '{1}', but array spread will always send '{0}'."), Cannot_iterate_value_because_the_next_method_of_its_iterator_expects_type_1_but_array_destructuring_will_always_send_0: diag(2765, ts.DiagnosticCategory.Error, "Cannot_iterate_value_because_the_next_method_of_its_iterator_expects_type_1_but_array_destructuring__2765", "Cannot iterate value because the 'next' method of its iterator expects type '{1}', but array destructuring will always send '{0}'."), Cannot_delegate_iteration_to_value_because_the_next_method_of_its_iterator_expects_type_1_but_the_containing_generator_will_always_send_0: diag(2766, ts.DiagnosticCategory.Error, "Cannot_delegate_iteration_to_value_because_the_next_method_of_its_iterator_expects_type_1_but_the_co_2766", "Cannot delegate iteration to value because the 'next' method of its iterator expects type '{1}', but the containing generator will always send '{0}'."), The_0_property_of_an_iterator_must_be_a_method: diag(2767, ts.DiagnosticCategory.Error, "The_0_property_of_an_iterator_must_be_a_method_2767", "The '{0}' property of an iterator must be a method."), The_0_property_of_an_async_iterator_must_be_a_method: diag(2768, ts.DiagnosticCategory.Error, "The_0_property_of_an_async_iterator_must_be_a_method_2768", "The '{0}' property of an async iterator must be a method."), No_overload_matches_this_call: diag(2769, ts.DiagnosticCategory.Error, "No_overload_matches_this_call_2769", "No overload matches this call."), The_last_overload_gave_the_following_error: diag(2770, ts.DiagnosticCategory.Error, "The_last_overload_gave_the_following_error_2770", "The last overload gave the following error."), The_last_overload_is_declared_here: diag(2771, ts.DiagnosticCategory.Error, "The_last_overload_is_declared_here_2771", "The last overload is declared here."), Overload_0_of_1_2_gave_the_following_error: diag(2772, ts.DiagnosticCategory.Error, "Overload_0_of_1_2_gave_the_following_error_2772", "Overload {0} of {1}, '{2}', gave the following error."), Did_you_forget_to_use_await: diag(2773, ts.DiagnosticCategory.Error, "Did_you_forget_to_use_await_2773", "Did you forget to use 'await'?"), This_condition_will_always_return_true_since_this_function_is_always_defined_Did_you_mean_to_call_it_instead: diag(2774, ts.DiagnosticCategory.Error, "This_condition_will_always_return_true_since_this_function_is_always_defined_Did_you_mean_to_call_it_2774", "This condition will always return true since this function is always defined. Did you mean to call it instead?"), Assertions_require_every_name_in_the_call_target_to_be_declared_with_an_explicit_type_annotation: diag(2775, ts.DiagnosticCategory.Error, "Assertions_require_every_name_in_the_call_target_to_be_declared_with_an_explicit_type_annotation_2775", "Assertions require every name in the call target to be declared with an explicit type annotation."), Assertions_require_the_call_target_to_be_an_identifier_or_qualified_name: diag(2776, ts.DiagnosticCategory.Error, "Assertions_require_the_call_target_to_be_an_identifier_or_qualified_name_2776", "Assertions require the call target to be an identifier or qualified name."), The_operand_of_an_increment_or_decrement_operator_may_not_be_an_optional_property_access: diag(2777, ts.DiagnosticCategory.Error, "The_operand_of_an_increment_or_decrement_operator_may_not_be_an_optional_property_access_2777", "The operand of an increment or decrement operator may not be an optional property access."), The_target_of_an_object_rest_assignment_may_not_be_an_optional_property_access: diag(2778, ts.DiagnosticCategory.Error, "The_target_of_an_object_rest_assignment_may_not_be_an_optional_property_access_2778", "The target of an object rest assignment may not be an optional property access."), The_left_hand_side_of_an_assignment_expression_may_not_be_an_optional_property_access: diag(2779, ts.DiagnosticCategory.Error, "The_left_hand_side_of_an_assignment_expression_may_not_be_an_optional_property_access_2779", "The left-hand side of an assignment expression may not be an optional property access."), The_left_hand_side_of_a_for_in_statement_may_not_be_an_optional_property_access: diag(2780, ts.DiagnosticCategory.Error, "The_left_hand_side_of_a_for_in_statement_may_not_be_an_optional_property_access_2780", "The left-hand side of a 'for...in' statement may not be an optional property access."), The_left_hand_side_of_a_for_of_statement_may_not_be_an_optional_property_access: diag(2781, ts.DiagnosticCategory.Error, "The_left_hand_side_of_a_for_of_statement_may_not_be_an_optional_property_access_2781", "The left-hand side of a 'for...of' statement may not be an optional property access."), _0_needs_an_explicit_type_annotation: diag(2782, ts.DiagnosticCategory.Message, "_0_needs_an_explicit_type_annotation_2782", "'{0}' needs an explicit type annotation."), _0_is_specified_more_than_once_so_this_usage_will_be_overwritten: diag(2783, ts.DiagnosticCategory.Error, "_0_is_specified_more_than_once_so_this_usage_will_be_overwritten_2783", "'{0}' is specified more than once, so this usage will be overwritten."), get_and_set_accessors_cannot_declare_this_parameters: diag(2784, ts.DiagnosticCategory.Error, "get_and_set_accessors_cannot_declare_this_parameters_2784", "'get' and 'set' accessors cannot declare 'this' parameters."), This_spread_always_overwrites_this_property: diag(2785, ts.DiagnosticCategory.Error, "This_spread_always_overwrites_this_property_2785", "This spread always overwrites this property."), _0_cannot_be_used_as_a_JSX_component: diag(2786, ts.DiagnosticCategory.Error, "_0_cannot_be_used_as_a_JSX_component_2786", "'{0}' cannot be used as a JSX component."), Its_return_type_0_is_not_a_valid_JSX_element: diag(2787, ts.DiagnosticCategory.Error, "Its_return_type_0_is_not_a_valid_JSX_element_2787", "Its return type '{0}' is not a valid JSX element."), Its_instance_type_0_is_not_a_valid_JSX_element: diag(2788, ts.DiagnosticCategory.Error, "Its_instance_type_0_is_not_a_valid_JSX_element_2788", "Its instance type '{0}' is not a valid JSX element."), Its_element_type_0_is_not_a_valid_JSX_element: diag(2789, ts.DiagnosticCategory.Error, "Its_element_type_0_is_not_a_valid_JSX_element_2789", "Its element type '{0}' is not a valid JSX element."), The_operand_of_a_delete_operator_must_be_optional: diag(2790, ts.DiagnosticCategory.Error, "The_operand_of_a_delete_operator_must_be_optional_2790", "The operand of a 'delete' operator must be optional."), Exponentiation_cannot_be_performed_on_bigint_values_unless_the_target_option_is_set_to_es2016_or_later: diag(2791, ts.DiagnosticCategory.Error, "Exponentiation_cannot_be_performed_on_bigint_values_unless_the_target_option_is_set_to_es2016_or_lat_2791", "Exponentiation cannot be performed on 'bigint' values unless the 'target' option is set to 'es2016' or later."), Cannot_find_module_0_Did_you_mean_to_set_the_moduleResolution_option_to_node_or_to_add_aliases_to_the_paths_option: diag(2792, ts.DiagnosticCategory.Error, "Cannot_find_module_0_Did_you_mean_to_set_the_moduleResolution_option_to_node_or_to_add_aliases_to_th_2792", "Cannot find module '{0}'. Did you mean to set the 'moduleResolution' option to 'node', or to add aliases to the 'paths' option?"), The_call_would_have_succeeded_against_this_implementation_but_implementation_signatures_of_overloads_are_not_externally_visible: diag(2793, ts.DiagnosticCategory.Error, "The_call_would_have_succeeded_against_this_implementation_but_implementation_signatures_of_overloads_2793", "The call would have succeeded against this implementation, but implementation signatures of overloads are not externally visible."), Expected_0_arguments_but_got_1_Did_you_forget_to_include_void_in_your_type_argument_to_Promise: diag(2794, ts.DiagnosticCategory.Error, "Expected_0_arguments_but_got_1_Did_you_forget_to_include_void_in_your_type_argument_to_Promise_2794", "Expected {0} arguments, but got {1}. Did you forget to include 'void' in your type argument to 'Promise'?"), The_intrinsic_keyword_can_only_be_used_to_declare_compiler_provided_intrinsic_types: diag(2795, ts.DiagnosticCategory.Error, "The_intrinsic_keyword_can_only_be_used_to_declare_compiler_provided_intrinsic_types_2795", "The 'intrinsic' keyword can only be used to declare compiler provided intrinsic types."), It_is_likely_that_you_are_missing_a_comma_to_separate_these_two_template_expressions_They_form_a_tagged_template_expression_which_cannot_be_invoked: diag(2796, ts.DiagnosticCategory.Error, "It_is_likely_that_you_are_missing_a_comma_to_separate_these_two_template_expressions_They_form_a_tag_2796", "It is likely that you are missing a comma to separate these two template expressions. They form a tagged template expression which cannot be invoked."), A_mixin_class_that_extends_from_a_type_variable_containing_an_abstract_construct_signature_must_also_be_declared_abstract: diag(2797, ts.DiagnosticCategory.Error, "A_mixin_class_that_extends_from_a_type_variable_containing_an_abstract_construct_signature_must_also_2797", "A mixin class that extends from a type variable containing an abstract construct signature must also be declared 'abstract'."), The_declaration_was_marked_as_deprecated_here: diag(2798, ts.DiagnosticCategory.Error, "The_declaration_was_marked_as_deprecated_here_2798", "The declaration was marked as deprecated here."), Type_produces_a_tuple_type_that_is_too_large_to_represent: diag(2799, ts.DiagnosticCategory.Error, "Type_produces_a_tuple_type_that_is_too_large_to_represent_2799", "Type produces a tuple type that is too large to represent."), Expression_produces_a_tuple_type_that_is_too_large_to_represent: diag(2800, ts.DiagnosticCategory.Error, "Expression_produces_a_tuple_type_that_is_too_large_to_represent_2800", "Expression produces a tuple type that is too large to represent."), This_condition_will_always_return_true_since_this_0_is_always_defined: diag(2801, ts.DiagnosticCategory.Error, "This_condition_will_always_return_true_since_this_0_is_always_defined_2801", "This condition will always return true since this '{0}' is always defined."), Type_0_can_only_be_iterated_through_when_using_the_downlevelIteration_flag_or_with_a_target_of_es2015_or_higher: diag(2802, ts.DiagnosticCategory.Error, "Type_0_can_only_be_iterated_through_when_using_the_downlevelIteration_flag_or_with_a_target_of_es201_2802", "Type '{0}' can only be iterated through when using the '--downlevelIteration' flag or with a '--target' of 'es2015' or higher."), Cannot_assign_to_private_method_0_Private_methods_are_not_writable: diag(2803, ts.DiagnosticCategory.Error, "Cannot_assign_to_private_method_0_Private_methods_are_not_writable_2803", "Cannot assign to private method '{0}'. Private methods are not writable."), Duplicate_identifier_0_Static_and_instance_elements_cannot_share_the_same_private_name: diag(2804, ts.DiagnosticCategory.Error, "Duplicate_identifier_0_Static_and_instance_elements_cannot_share_the_same_private_name_2804", "Duplicate identifier '{0}'. Static and instance elements cannot share the same private name."), Private_accessor_was_defined_without_a_getter: diag(2806, ts.DiagnosticCategory.Error, "Private_accessor_was_defined_without_a_getter_2806", "Private accessor was defined without a getter."), This_syntax_requires_an_imported_helper_named_1_with_2_parameters_which_is_not_compatible_with_the_one_in_0_Consider_upgrading_your_version_of_0: diag(2807, ts.DiagnosticCategory.Error, "This_syntax_requires_an_imported_helper_named_1_with_2_parameters_which_is_not_compatible_with_the_o_2807", "This syntax requires an imported helper named '{1}' with {2} parameters, which is not compatible with the one in '{0}'. Consider upgrading your version of '{0}'."), A_get_accessor_must_be_at_least_as_accessible_as_the_setter: diag(2808, ts.DiagnosticCategory.Error, "A_get_accessor_must_be_at_least_as_accessible_as_the_setter_2808", "A get accessor must be at least as accessible as the setter"), Declaration_or_statement_expected_This_follows_a_block_of_statements_so_if_you_intended_to_write_a_destructuring_assignment_you_might_need_to_wrap_the_the_whole_assignment_in_parentheses: diag(2809, ts.DiagnosticCategory.Error, "Declaration_or_statement_expected_This_follows_a_block_of_statements_so_if_you_intended_to_write_a_d_2809", "Declaration or statement expected. This '=' follows a block of statements, so if you intended to write a destructuring assignment, you might need to wrap the the whole assignment in parentheses."), Expected_1_argument_but_got_0_new_Promise_needs_a_JSDoc_hint_to_produce_a_resolve_that_can_be_called_without_arguments: diag(2810, ts.DiagnosticCategory.Error, "Expected_1_argument_but_got_0_new_Promise_needs_a_JSDoc_hint_to_produce_a_resolve_that_can_be_called_2810", "Expected 1 argument, but got 0. 'new Promise()' needs a JSDoc hint to produce a 'resolve' that can be called without arguments."), Initializer_for_property_0: diag(2811, ts.DiagnosticCategory.Error, "Initializer_for_property_0_2811", "Initializer for property '{0}'"), Property_0_does_not_exist_on_type_1_Try_changing_the_lib_compiler_option_to_include_dom: diag(2812, ts.DiagnosticCategory.Error, "Property_0_does_not_exist_on_type_1_Try_changing_the_lib_compiler_option_to_include_dom_2812", "Property '{0}' does not exist on type '{1}'. Try changing the 'lib' compiler option to include 'dom'."), Class_declaration_cannot_implement_overload_list_for_0: diag(2813, ts.DiagnosticCategory.Error, "Class_declaration_cannot_implement_overload_list_for_0_2813", "Class declaration cannot implement overload list for '{0}'."), Function_with_bodies_can_only_merge_with_classes_that_are_ambient: diag(2814, ts.DiagnosticCategory.Error, "Function_with_bodies_can_only_merge_with_classes_that_are_ambient_2814", "Function with bodies can only merge with classes that are ambient."), arguments_cannot_be_referenced_in_property_initializers: diag(2815, ts.DiagnosticCategory.Error, "arguments_cannot_be_referenced_in_property_initializers_2815", "'arguments' cannot be referenced in property initializers."), Cannot_use_this_in_a_static_property_initializer_of_a_decorated_class: diag(2816, ts.DiagnosticCategory.Error, "Cannot_use_this_in_a_static_property_initializer_of_a_decorated_class_2816", "Cannot use 'this' in a static property initializer of a decorated class."), Property_0_has_no_initializer_and_is_not_definitely_assigned_in_a_class_static_block: diag(2817, ts.DiagnosticCategory.Error, "Property_0_has_no_initializer_and_is_not_definitely_assigned_in_a_class_static_block_2817", "Property '{0}' has no initializer and is not definitely assigned in a class static block."), Duplicate_identifier_0_Compiler_reserves_name_1_when_emitting_super_references_in_static_initializers: diag(2818, ts.DiagnosticCategory.Error, "Duplicate_identifier_0_Compiler_reserves_name_1_when_emitting_super_references_in_static_initializer_2818", "Duplicate identifier '{0}'. Compiler reserves name '{1}' when emitting 'super' references in static initializers."), Namespace_name_cannot_be_0: diag(2819, ts.DiagnosticCategory.Error, "Namespace_name_cannot_be_0_2819", "Namespace name cannot be '{0}'."), Type_0_is_not_assignable_to_type_1_Did_you_mean_2: diag(2820, ts.DiagnosticCategory.Error, "Type_0_is_not_assignable_to_type_1_Did_you_mean_2_2820", "Type '{0}' is not assignable to type '{1}'. Did you mean '{2}'?"), Import_assertions_are_only_supported_when_the_module_option_is_set_to_esnext_or_nodenext: diag(2821, ts.DiagnosticCategory.Error, "Import_assertions_are_only_supported_when_the_module_option_is_set_to_esnext_or_nodenext_2821", "Import assertions are only supported when the '--module' option is set to 'esnext' or 'nodenext'."), Import_assertions_cannot_be_used_with_type_only_imports_or_exports: diag(2822, ts.DiagnosticCategory.Error, "Import_assertions_cannot_be_used_with_type_only_imports_or_exports_2822", "Import assertions cannot be used with type-only imports or exports."), Cannot_find_namespace_0_Did_you_mean_1: diag(2833, ts.DiagnosticCategory.Error, "Cannot_find_namespace_0_Did_you_mean_1_2833", "Cannot find namespace '{0}'. Did you mean '{1}'?"), Relative_import_paths_need_explicit_file_extensions_in_EcmaScript_imports_when_moduleResolution_is_node16_or_nodenext_Consider_adding_an_extension_to_the_import_path: diag(2834, ts.DiagnosticCategory.Error, "Relative_import_paths_need_explicit_file_extensions_in_EcmaScript_imports_when_moduleResolution_is_n_2834", "Relative import paths need explicit file extensions in EcmaScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path."), Relative_import_paths_need_explicit_file_extensions_in_EcmaScript_imports_when_moduleResolution_is_node16_or_nodenext_Did_you_mean_0: diag(2835, ts.DiagnosticCategory.Error, "Relative_import_paths_need_explicit_file_extensions_in_EcmaScript_imports_when_moduleResolution_is_n_2835", "Relative import paths need explicit file extensions in EcmaScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '{0}'?"), Import_assertions_are_not_allowed_on_statements_that_transpile_to_commonjs_require_calls: diag(2836, ts.DiagnosticCategory.Error, "Import_assertions_are_not_allowed_on_statements_that_transpile_to_commonjs_require_calls_2836", "Import assertions are not allowed on statements that transpile to commonjs 'require' calls."), Import_assertion_values_must_be_string_literal_expressions: diag(2837, ts.DiagnosticCategory.Error, "Import_assertion_values_must_be_string_literal_expressions_2837", "Import assertion values must be string literal expressions."), All_declarations_of_0_must_have_identical_constraints: diag(2838, ts.DiagnosticCategory.Error, "All_declarations_of_0_must_have_identical_constraints_2838", "All declarations of '{0}' must have identical constraints."), The_type_of_this_expression_cannot_be_named_without_a_resolution_mode_assertion_which_is_an_unstable_feature_Use_nightly_TypeScript_to_silence_this_error_Try_updating_with_npm_install_D_typescript_next: diag(2841, ts.DiagnosticCategory.Error, "The_type_of_this_expression_cannot_be_named_without_a_resolution_mode_assertion_which_is_an_unstable_2841", "The type of this expression cannot be named without a 'resolution-mode' assertion, which is an unstable feature. Use nightly TypeScript to silence this error. Try updating with 'npm install -D typescript@next'."), Import_declaration_0_is_using_private_name_1: diag(4000, ts.DiagnosticCategory.Error, "Import_declaration_0_is_using_private_name_1_4000", "Import declaration '{0}' is using private name '{1}'."), Type_parameter_0_of_exported_class_has_or_is_using_private_name_1: diag(4002, ts.DiagnosticCategory.Error, "Type_parameter_0_of_exported_class_has_or_is_using_private_name_1_4002", "Type parameter '{0}' of exported class has or is using private name '{1}'."), Type_parameter_0_of_exported_interface_has_or_is_using_private_name_1: diag(4004, ts.DiagnosticCategory.Error, "Type_parameter_0_of_exported_interface_has_or_is_using_private_name_1_4004", "Type parameter '{0}' of exported interface has or is using private name '{1}'."), Type_parameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_private_name_1: diag(4006, ts.DiagnosticCategory.Error, "Type_parameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_private_name_1_4006", "Type parameter '{0}' of constructor signature from exported interface has or is using private name '{1}'."), Type_parameter_0_of_call_signature_from_exported_interface_has_or_is_using_private_name_1: diag(4008, ts.DiagnosticCategory.Error, "Type_parameter_0_of_call_signature_from_exported_interface_has_or_is_using_private_name_1_4008", "Type parameter '{0}' of call signature from exported interface has or is using private name '{1}'."), Type_parameter_0_of_public_static_method_from_exported_class_has_or_is_using_private_name_1: diag(4010, ts.DiagnosticCategory.Error, "Type_parameter_0_of_public_static_method_from_exported_class_has_or_is_using_private_name_1_4010", "Type parameter '{0}' of public static method from exported class has or is using private name '{1}'."), Type_parameter_0_of_public_method_from_exported_class_has_or_is_using_private_name_1: diag(4012, ts.DiagnosticCategory.Error, "Type_parameter_0_of_public_method_from_exported_class_has_or_is_using_private_name_1_4012", "Type parameter '{0}' of public method from exported class has or is using private name '{1}'."), Type_parameter_0_of_method_from_exported_interface_has_or_is_using_private_name_1: diag(4014, ts.DiagnosticCategory.Error, "Type_parameter_0_of_method_from_exported_interface_has_or_is_using_private_name_1_4014", "Type parameter '{0}' of method from exported interface has or is using private name '{1}'."), Type_parameter_0_of_exported_function_has_or_is_using_private_name_1: diag(4016, ts.DiagnosticCategory.Error, "Type_parameter_0_of_exported_function_has_or_is_using_private_name_1_4016", "Type parameter '{0}' of exported function has or is using private name '{1}'."), Implements_clause_of_exported_class_0_has_or_is_using_private_name_1: diag(4019, ts.DiagnosticCategory.Error, "Implements_clause_of_exported_class_0_has_or_is_using_private_name_1_4019", "Implements clause of exported class '{0}' has or is using private name '{1}'."), extends_clause_of_exported_class_0_has_or_is_using_private_name_1: diag(4020, ts.DiagnosticCategory.Error, "extends_clause_of_exported_class_0_has_or_is_using_private_name_1_4020", "'extends' clause of exported class '{0}' has or is using private name '{1}'."), extends_clause_of_exported_class_has_or_is_using_private_name_0: diag(4021, ts.DiagnosticCategory.Error, "extends_clause_of_exported_class_has_or_is_using_private_name_0_4021", "'extends' clause of exported class has or is using private name '{0}'."), extends_clause_of_exported_interface_0_has_or_is_using_private_name_1: diag(4022, ts.DiagnosticCategory.Error, "extends_clause_of_exported_interface_0_has_or_is_using_private_name_1_4022", "'extends' clause of exported interface '{0}' has or is using private name '{1}'."), Exported_variable_0_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named: diag(4023, ts.DiagnosticCategory.Error, "Exported_variable_0_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named_4023", "Exported variable '{0}' has or is using name '{1}' from external module {2} but cannot be named."), Exported_variable_0_has_or_is_using_name_1_from_private_module_2: diag(4024, ts.DiagnosticCategory.Error, "Exported_variable_0_has_or_is_using_name_1_from_private_module_2_4024", "Exported variable '{0}' has or is using name '{1}' from private module '{2}'."), Exported_variable_0_has_or_is_using_private_name_1: diag(4025, ts.DiagnosticCategory.Error, "Exported_variable_0_has_or_is_using_private_name_1_4025", "Exported variable '{0}' has or is using private name '{1}'."), Public_static_property_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named: diag(4026, ts.DiagnosticCategory.Error, "Public_static_property_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot__4026", "Public static property '{0}' of exported class has or is using name '{1}' from external module {2} but cannot be named."), Public_static_property_0_of_exported_class_has_or_is_using_name_1_from_private_module_2: diag(4027, ts.DiagnosticCategory.Error, "Public_static_property_0_of_exported_class_has_or_is_using_name_1_from_private_module_2_4027", "Public static property '{0}' of exported class has or is using name '{1}' from private module '{2}'."), Public_static_property_0_of_exported_class_has_or_is_using_private_name_1: diag(4028, ts.DiagnosticCategory.Error, "Public_static_property_0_of_exported_class_has_or_is_using_private_name_1_4028", "Public static property '{0}' of exported class has or is using private name '{1}'."), Public_property_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named: diag(4029, ts.DiagnosticCategory.Error, "Public_property_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_name_4029", "Public property '{0}' of exported class has or is using name '{1}' from external module {2} but cannot be named."), Public_property_0_of_exported_class_has_or_is_using_name_1_from_private_module_2: diag(4030, ts.DiagnosticCategory.Error, "Public_property_0_of_exported_class_has_or_is_using_name_1_from_private_module_2_4030", "Public property '{0}' of exported class has or is using name '{1}' from private module '{2}'."), Public_property_0_of_exported_class_has_or_is_using_private_name_1: diag(4031, ts.DiagnosticCategory.Error, "Public_property_0_of_exported_class_has_or_is_using_private_name_1_4031", "Public property '{0}' of exported class has or is using private name '{1}'."), Property_0_of_exported_interface_has_or_is_using_name_1_from_private_module_2: diag(4032, ts.DiagnosticCategory.Error, "Property_0_of_exported_interface_has_or_is_using_name_1_from_private_module_2_4032", "Property '{0}' of exported interface has or is using name '{1}' from private module '{2}'."), Property_0_of_exported_interface_has_or_is_using_private_name_1: diag(4033, ts.DiagnosticCategory.Error, "Property_0_of_exported_interface_has_or_is_using_private_name_1_4033", "Property '{0}' of exported interface has or is using private name '{1}'."), Parameter_type_of_public_static_setter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2: diag(4034, ts.DiagnosticCategory.Error, "Parameter_type_of_public_static_setter_0_from_exported_class_has_or_is_using_name_1_from_private_mod_4034", "Parameter type of public static setter '{0}' from exported class has or is using name '{1}' from private module '{2}'."), Parameter_type_of_public_static_setter_0_from_exported_class_has_or_is_using_private_name_1: diag(4035, ts.DiagnosticCategory.Error, "Parameter_type_of_public_static_setter_0_from_exported_class_has_or_is_using_private_name_1_4035", "Parameter type of public static setter '{0}' from exported class has or is using private name '{1}'."), Parameter_type_of_public_setter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2: diag(4036, ts.DiagnosticCategory.Error, "Parameter_type_of_public_setter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2_4036", "Parameter type of public setter '{0}' from exported class has or is using name '{1}' from private module '{2}'."), Parameter_type_of_public_setter_0_from_exported_class_has_or_is_using_private_name_1: diag(4037, ts.DiagnosticCategory.Error, "Parameter_type_of_public_setter_0_from_exported_class_has_or_is_using_private_name_1_4037", "Parameter type of public setter '{0}' from exported class has or is using private name '{1}'."), Return_type_of_public_static_getter_0_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named: diag(4038, ts.DiagnosticCategory.Error, "Return_type_of_public_static_getter_0_from_exported_class_has_or_is_using_name_1_from_external_modul_4038", "Return type of public static getter '{0}' from exported class has or is using name '{1}' from external module {2} but cannot be named."), Return_type_of_public_static_getter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2: diag(4039, ts.DiagnosticCategory.Error, "Return_type_of_public_static_getter_0_from_exported_class_has_or_is_using_name_1_from_private_module_4039", "Return type of public static getter '{0}' from exported class has or is using name '{1}' from private module '{2}'."), Return_type_of_public_static_getter_0_from_exported_class_has_or_is_using_private_name_1: diag(4040, ts.DiagnosticCategory.Error, "Return_type_of_public_static_getter_0_from_exported_class_has_or_is_using_private_name_1_4040", "Return type of public static getter '{0}' from exported class has or is using private name '{1}'."), Return_type_of_public_getter_0_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named: diag(4041, ts.DiagnosticCategory.Error, "Return_type_of_public_getter_0_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_4041", "Return type of public getter '{0}' from exported class has or is using name '{1}' from external module {2} but cannot be named."), Return_type_of_public_getter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2: diag(4042, ts.DiagnosticCategory.Error, "Return_type_of_public_getter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2_4042", "Return type of public getter '{0}' from exported class has or is using name '{1}' from private module '{2}'."), Return_type_of_public_getter_0_from_exported_class_has_or_is_using_private_name_1: diag(4043, ts.DiagnosticCategory.Error, "Return_type_of_public_getter_0_from_exported_class_has_or_is_using_private_name_1_4043", "Return type of public getter '{0}' from exported class has or is using private name '{1}'."), Return_type_of_constructor_signature_from_exported_interface_has_or_is_using_name_0_from_private_module_1: diag(4044, ts.DiagnosticCategory.Error, "Return_type_of_constructor_signature_from_exported_interface_has_or_is_using_name_0_from_private_mod_4044", "Return type of constructor signature from exported interface has or is using name '{0}' from private module '{1}'."), Return_type_of_constructor_signature_from_exported_interface_has_or_is_using_private_name_0: diag(4045, ts.DiagnosticCategory.Error, "Return_type_of_constructor_signature_from_exported_interface_has_or_is_using_private_name_0_4045", "Return type of constructor signature from exported interface has or is using private name '{0}'."), Return_type_of_call_signature_from_exported_interface_has_or_is_using_name_0_from_private_module_1: diag(4046, ts.DiagnosticCategory.Error, "Return_type_of_call_signature_from_exported_interface_has_or_is_using_name_0_from_private_module_1_4046", "Return type of call signature from exported interface has or is using name '{0}' from private module '{1}'."), Return_type_of_call_signature_from_exported_interface_has_or_is_using_private_name_0: diag(4047, ts.DiagnosticCategory.Error, "Return_type_of_call_signature_from_exported_interface_has_or_is_using_private_name_0_4047", "Return type of call signature from exported interface has or is using private name '{0}'."), Return_type_of_index_signature_from_exported_interface_has_or_is_using_name_0_from_private_module_1: diag(4048, ts.DiagnosticCategory.Error, "Return_type_of_index_signature_from_exported_interface_has_or_is_using_name_0_from_private_module_1_4048", "Return type of index signature from exported interface has or is using name '{0}' from private module '{1}'."), Return_type_of_index_signature_from_exported_interface_has_or_is_using_private_name_0: diag(4049, ts.DiagnosticCategory.Error, "Return_type_of_index_signature_from_exported_interface_has_or_is_using_private_name_0_4049", "Return type of index signature from exported interface has or is using private name '{0}'."), Return_type_of_public_static_method_from_exported_class_has_or_is_using_name_0_from_external_module_1_but_cannot_be_named: diag(4050, ts.DiagnosticCategory.Error, "Return_type_of_public_static_method_from_exported_class_has_or_is_using_name_0_from_external_module__4050", "Return type of public static method from exported class has or is using name '{0}' from external module {1} but cannot be named."), Return_type_of_public_static_method_from_exported_class_has_or_is_using_name_0_from_private_module_1: diag(4051, ts.DiagnosticCategory.Error, "Return_type_of_public_static_method_from_exported_class_has_or_is_using_name_0_from_private_module_1_4051", "Return type of public static method from exported class has or is using name '{0}' from private module '{1}'."), Return_type_of_public_static_method_from_exported_class_has_or_is_using_private_name_0: diag(4052, ts.DiagnosticCategory.Error, "Return_type_of_public_static_method_from_exported_class_has_or_is_using_private_name_0_4052", "Return type of public static method from exported class has or is using private name '{0}'."), Return_type_of_public_method_from_exported_class_has_or_is_using_name_0_from_external_module_1_but_cannot_be_named: diag(4053, ts.DiagnosticCategory.Error, "Return_type_of_public_method_from_exported_class_has_or_is_using_name_0_from_external_module_1_but_c_4053", "Return type of public method from exported class has or is using name '{0}' from external module {1} but cannot be named."), Return_type_of_public_method_from_exported_class_has_or_is_using_name_0_from_private_module_1: diag(4054, ts.DiagnosticCategory.Error, "Return_type_of_public_method_from_exported_class_has_or_is_using_name_0_from_private_module_1_4054", "Return type of public method from exported class has or is using name '{0}' from private module '{1}'."), Return_type_of_public_method_from_exported_class_has_or_is_using_private_name_0: diag(4055, ts.DiagnosticCategory.Error, "Return_type_of_public_method_from_exported_class_has_or_is_using_private_name_0_4055", "Return type of public method from exported class has or is using private name '{0}'."), Return_type_of_method_from_exported_interface_has_or_is_using_name_0_from_private_module_1: diag(4056, ts.DiagnosticCategory.Error, "Return_type_of_method_from_exported_interface_has_or_is_using_name_0_from_private_module_1_4056", "Return type of method from exported interface has or is using name '{0}' from private module '{1}'."), Return_type_of_method_from_exported_interface_has_or_is_using_private_name_0: diag(4057, ts.DiagnosticCategory.Error, "Return_type_of_method_from_exported_interface_has_or_is_using_private_name_0_4057", "Return type of method from exported interface has or is using private name '{0}'."), Return_type_of_exported_function_has_or_is_using_name_0_from_external_module_1_but_cannot_be_named: diag(4058, ts.DiagnosticCategory.Error, "Return_type_of_exported_function_has_or_is_using_name_0_from_external_module_1_but_cannot_be_named_4058", "Return type of exported function has or is using name '{0}' from external module {1} but cannot be named."), Return_type_of_exported_function_has_or_is_using_name_0_from_private_module_1: diag(4059, ts.DiagnosticCategory.Error, "Return_type_of_exported_function_has_or_is_using_name_0_from_private_module_1_4059", "Return type of exported function has or is using name '{0}' from private module '{1}'."), Return_type_of_exported_function_has_or_is_using_private_name_0: diag(4060, ts.DiagnosticCategory.Error, "Return_type_of_exported_function_has_or_is_using_private_name_0_4060", "Return type of exported function has or is using private name '{0}'."), Parameter_0_of_constructor_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named: diag(4061, ts.DiagnosticCategory.Error, "Parameter_0_of_constructor_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_can_4061", "Parameter '{0}' of constructor from exported class has or is using name '{1}' from external module {2} but cannot be named."), Parameter_0_of_constructor_from_exported_class_has_or_is_using_name_1_from_private_module_2: diag(4062, ts.DiagnosticCategory.Error, "Parameter_0_of_constructor_from_exported_class_has_or_is_using_name_1_from_private_module_2_4062", "Parameter '{0}' of constructor from exported class has or is using name '{1}' from private module '{2}'."), Parameter_0_of_constructor_from_exported_class_has_or_is_using_private_name_1: diag(4063, ts.DiagnosticCategory.Error, "Parameter_0_of_constructor_from_exported_class_has_or_is_using_private_name_1_4063", "Parameter '{0}' of constructor from exported class has or is using private name '{1}'."), Parameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_name_1_from_private_module_2: diag(4064, ts.DiagnosticCategory.Error, "Parameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_name_1_from_private_mod_4064", "Parameter '{0}' of constructor signature from exported interface has or is using name '{1}' from private module '{2}'."), Parameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_private_name_1: diag(4065, ts.DiagnosticCategory.Error, "Parameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_private_name_1_4065", "Parameter '{0}' of constructor signature from exported interface has or is using private name '{1}'."), Parameter_0_of_call_signature_from_exported_interface_has_or_is_using_name_1_from_private_module_2: diag(4066, ts.DiagnosticCategory.Error, "Parameter_0_of_call_signature_from_exported_interface_has_or_is_using_name_1_from_private_module_2_4066", "Parameter '{0}' of call signature from exported interface has or is using name '{1}' from private module '{2}'."), Parameter_0_of_call_signature_from_exported_interface_has_or_is_using_private_name_1: diag(4067, ts.DiagnosticCategory.Error, "Parameter_0_of_call_signature_from_exported_interface_has_or_is_using_private_name_1_4067", "Parameter '{0}' of call signature from exported interface has or is using private name '{1}'."), Parameter_0_of_public_static_method_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named: diag(4068, ts.DiagnosticCategory.Error, "Parameter_0_of_public_static_method_from_exported_class_has_or_is_using_name_1_from_external_module__4068", "Parameter '{0}' of public static method from exported class has or is using name '{1}' from external module {2} but cannot be named."), Parameter_0_of_public_static_method_from_exported_class_has_or_is_using_name_1_from_private_module_2: diag(4069, ts.DiagnosticCategory.Error, "Parameter_0_of_public_static_method_from_exported_class_has_or_is_using_name_1_from_private_module_2_4069", "Parameter '{0}' of public static method from exported class has or is using name '{1}' from private module '{2}'."), Parameter_0_of_public_static_method_from_exported_class_has_or_is_using_private_name_1: diag(4070, ts.DiagnosticCategory.Error, "Parameter_0_of_public_static_method_from_exported_class_has_or_is_using_private_name_1_4070", "Parameter '{0}' of public static method from exported class has or is using private name '{1}'."), Parameter_0_of_public_method_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named: diag(4071, ts.DiagnosticCategory.Error, "Parameter_0_of_public_method_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_c_4071", "Parameter '{0}' of public method from exported class has or is using name '{1}' from external module {2} but cannot be named."), Parameter_0_of_public_method_from_exported_class_has_or_is_using_name_1_from_private_module_2: diag(4072, ts.DiagnosticCategory.Error, "Parameter_0_of_public_method_from_exported_class_has_or_is_using_name_1_from_private_module_2_4072", "Parameter '{0}' of public method from exported class has or is using name '{1}' from private module '{2}'."), Parameter_0_of_public_method_from_exported_class_has_or_is_using_private_name_1: diag(4073, ts.DiagnosticCategory.Error, "Parameter_0_of_public_method_from_exported_class_has_or_is_using_private_name_1_4073", "Parameter '{0}' of public method from exported class has or is using private name '{1}'."), Parameter_0_of_method_from_exported_interface_has_or_is_using_name_1_from_private_module_2: diag(4074, ts.DiagnosticCategory.Error, "Parameter_0_of_method_from_exported_interface_has_or_is_using_name_1_from_private_module_2_4074", "Parameter '{0}' of method from exported interface has or is using name '{1}' from private module '{2}'."), Parameter_0_of_method_from_exported_interface_has_or_is_using_private_name_1: diag(4075, ts.DiagnosticCategory.Error, "Parameter_0_of_method_from_exported_interface_has_or_is_using_private_name_1_4075", "Parameter '{0}' of method from exported interface has or is using private name '{1}'."), Parameter_0_of_exported_function_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named: diag(4076, ts.DiagnosticCategory.Error, "Parameter_0_of_exported_function_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named_4076", "Parameter '{0}' of exported function has or is using name '{1}' from external module {2} but cannot be named."), Parameter_0_of_exported_function_has_or_is_using_name_1_from_private_module_2: diag(4077, ts.DiagnosticCategory.Error, "Parameter_0_of_exported_function_has_or_is_using_name_1_from_private_module_2_4077", "Parameter '{0}' of exported function has or is using name '{1}' from private module '{2}'."), Parameter_0_of_exported_function_has_or_is_using_private_name_1: diag(4078, ts.DiagnosticCategory.Error, "Parameter_0_of_exported_function_has_or_is_using_private_name_1_4078", "Parameter '{0}' of exported function has or is using private name '{1}'."), Exported_type_alias_0_has_or_is_using_private_name_1: diag(4081, ts.DiagnosticCategory.Error, "Exported_type_alias_0_has_or_is_using_private_name_1_4081", "Exported type alias '{0}' has or is using private name '{1}'."), Default_export_of_the_module_has_or_is_using_private_name_0: diag(4082, ts.DiagnosticCategory.Error, "Default_export_of_the_module_has_or_is_using_private_name_0_4082", "Default export of the module has or is using private name '{0}'."), Type_parameter_0_of_exported_type_alias_has_or_is_using_private_name_1: diag(4083, ts.DiagnosticCategory.Error, "Type_parameter_0_of_exported_type_alias_has_or_is_using_private_name_1_4083", "Type parameter '{0}' of exported type alias has or is using private name '{1}'."), Exported_type_alias_0_has_or_is_using_private_name_1_from_module_2: diag(4084, ts.DiagnosticCategory.Error, "Exported_type_alias_0_has_or_is_using_private_name_1_from_module_2_4084", "Exported type alias '{0}' has or is using private name '{1}' from module {2}."), Conflicting_definitions_for_0_found_at_1_and_2_Consider_installing_a_specific_version_of_this_library_to_resolve_the_conflict: diag(4090, ts.DiagnosticCategory.Error, "Conflicting_definitions_for_0_found_at_1_and_2_Consider_installing_a_specific_version_of_this_librar_4090", "Conflicting definitions for '{0}' found at '{1}' and '{2}'. Consider installing a specific version of this library to resolve the conflict."), Parameter_0_of_index_signature_from_exported_interface_has_or_is_using_name_1_from_private_module_2: diag(4091, ts.DiagnosticCategory.Error, "Parameter_0_of_index_signature_from_exported_interface_has_or_is_using_name_1_from_private_module_2_4091", "Parameter '{0}' of index signature from exported interface has or is using name '{1}' from private module '{2}'."), Parameter_0_of_index_signature_from_exported_interface_has_or_is_using_private_name_1: diag(4092, ts.DiagnosticCategory.Error, "Parameter_0_of_index_signature_from_exported_interface_has_or_is_using_private_name_1_4092", "Parameter '{0}' of index signature from exported interface has or is using private name '{1}'."), Property_0_of_exported_class_expression_may_not_be_private_or_protected: diag(4094, ts.DiagnosticCategory.Error, "Property_0_of_exported_class_expression_may_not_be_private_or_protected_4094", "Property '{0}' of exported class expression may not be private or protected."), Public_static_method_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named: diag(4095, ts.DiagnosticCategory.Error, "Public_static_method_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_4095", "Public static method '{0}' of exported class has or is using name '{1}' from external module {2} but cannot be named."), Public_static_method_0_of_exported_class_has_or_is_using_name_1_from_private_module_2: diag(4096, ts.DiagnosticCategory.Error, "Public_static_method_0_of_exported_class_has_or_is_using_name_1_from_private_module_2_4096", "Public static method '{0}' of exported class has or is using name '{1}' from private module '{2}'."), Public_static_method_0_of_exported_class_has_or_is_using_private_name_1: diag(4097, ts.DiagnosticCategory.Error, "Public_static_method_0_of_exported_class_has_or_is_using_private_name_1_4097", "Public static method '{0}' of exported class has or is using private name '{1}'."), Public_method_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named: diag(4098, ts.DiagnosticCategory.Error, "Public_method_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named_4098", "Public method '{0}' of exported class has or is using name '{1}' from external module {2} but cannot be named."), Public_method_0_of_exported_class_has_or_is_using_name_1_from_private_module_2: diag(4099, ts.DiagnosticCategory.Error, "Public_method_0_of_exported_class_has_or_is_using_name_1_from_private_module_2_4099", "Public method '{0}' of exported class has or is using name '{1}' from private module '{2}'."), Public_method_0_of_exported_class_has_or_is_using_private_name_1: diag(4100, ts.DiagnosticCategory.Error, "Public_method_0_of_exported_class_has_or_is_using_private_name_1_4100", "Public method '{0}' of exported class has or is using private name '{1}'."), Method_0_of_exported_interface_has_or_is_using_name_1_from_private_module_2: diag(4101, ts.DiagnosticCategory.Error, "Method_0_of_exported_interface_has_or_is_using_name_1_from_private_module_2_4101", "Method '{0}' of exported interface has or is using name '{1}' from private module '{2}'."), Method_0_of_exported_interface_has_or_is_using_private_name_1: diag(4102, ts.DiagnosticCategory.Error, "Method_0_of_exported_interface_has_or_is_using_private_name_1_4102", "Method '{0}' of exported interface has or is using private name '{1}'."), Type_parameter_0_of_exported_mapped_object_type_is_using_private_name_1: diag(4103, ts.DiagnosticCategory.Error, "Type_parameter_0_of_exported_mapped_object_type_is_using_private_name_1_4103", "Type parameter '{0}' of exported mapped object type is using private name '{1}'."), The_type_0_is_readonly_and_cannot_be_assigned_to_the_mutable_type_1: diag(4104, ts.DiagnosticCategory.Error, "The_type_0_is_readonly_and_cannot_be_assigned_to_the_mutable_type_1_4104", "The type '{0}' is 'readonly' and cannot be assigned to the mutable type '{1}'."), Private_or_protected_member_0_cannot_be_accessed_on_a_type_parameter: diag(4105, ts.DiagnosticCategory.Error, "Private_or_protected_member_0_cannot_be_accessed_on_a_type_parameter_4105", "Private or protected member '{0}' cannot be accessed on a type parameter."), Parameter_0_of_accessor_has_or_is_using_private_name_1: diag(4106, ts.DiagnosticCategory.Error, "Parameter_0_of_accessor_has_or_is_using_private_name_1_4106", "Parameter '{0}' of accessor has or is using private name '{1}'."), Parameter_0_of_accessor_has_or_is_using_name_1_from_private_module_2: diag(4107, ts.DiagnosticCategory.Error, "Parameter_0_of_accessor_has_or_is_using_name_1_from_private_module_2_4107", "Parameter '{0}' of accessor has or is using name '{1}' from private module '{2}'."), Parameter_0_of_accessor_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named: diag(4108, ts.DiagnosticCategory.Error, "Parameter_0_of_accessor_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named_4108", "Parameter '{0}' of accessor has or is using name '{1}' from external module '{2}' but cannot be named."), Type_arguments_for_0_circularly_reference_themselves: diag(4109, ts.DiagnosticCategory.Error, "Type_arguments_for_0_circularly_reference_themselves_4109", "Type arguments for '{0}' circularly reference themselves."), Tuple_type_arguments_circularly_reference_themselves: diag(4110, ts.DiagnosticCategory.Error, "Tuple_type_arguments_circularly_reference_themselves_4110", "Tuple type arguments circularly reference themselves."), Property_0_comes_from_an_index_signature_so_it_must_be_accessed_with_0: diag(4111, ts.DiagnosticCategory.Error, "Property_0_comes_from_an_index_signature_so_it_must_be_accessed_with_0_4111", "Property '{0}' comes from an index signature, so it must be accessed with ['{0}']."), This_member_cannot_have_an_override_modifier_because_its_containing_class_0_does_not_extend_another_class: diag(4112, ts.DiagnosticCategory.Error, "This_member_cannot_have_an_override_modifier_because_its_containing_class_0_does_not_extend_another__4112", "This member cannot have an 'override' modifier because its containing class '{0}' does not extend another class."), This_member_cannot_have_an_override_modifier_because_it_is_not_declared_in_the_base_class_0: diag(4113, ts.DiagnosticCategory.Error, "This_member_cannot_have_an_override_modifier_because_it_is_not_declared_in_the_base_class_0_4113", "This member cannot have an 'override' modifier because it is not declared in the base class '{0}'."), This_member_must_have_an_override_modifier_because_it_overrides_a_member_in_the_base_class_0: diag(4114, ts.DiagnosticCategory.Error, "This_member_must_have_an_override_modifier_because_it_overrides_a_member_in_the_base_class_0_4114", "This member must have an 'override' modifier because it overrides a member in the base class '{0}'."), This_parameter_property_must_have_an_override_modifier_because_it_overrides_a_member_in_base_class_0: diag(4115, ts.DiagnosticCategory.Error, "This_parameter_property_must_have_an_override_modifier_because_it_overrides_a_member_in_base_class_0_4115", "This parameter property must have an 'override' modifier because it overrides a member in base class '{0}'."), This_member_must_have_an_override_modifier_because_it_overrides_an_abstract_method_that_is_declared_in_the_base_class_0: diag(4116, ts.DiagnosticCategory.Error, "This_member_must_have_an_override_modifier_because_it_overrides_an_abstract_method_that_is_declared__4116", "This member must have an 'override' modifier because it overrides an abstract method that is declared in the base class '{0}'."), This_member_cannot_have_an_override_modifier_because_it_is_not_declared_in_the_base_class_0_Did_you_mean_1: diag(4117, ts.DiagnosticCategory.Error, "This_member_cannot_have_an_override_modifier_because_it_is_not_declared_in_the_base_class_0_Did_you__4117", "This member cannot have an 'override' modifier because it is not declared in the base class '{0}'. Did you mean '{1}'?"), The_type_of_this_node_cannot_be_serialized_because_its_property_0_cannot_be_serialized: diag(4118, ts.DiagnosticCategory.Error, "The_type_of_this_node_cannot_be_serialized_because_its_property_0_cannot_be_serialized_4118", "The type of this node cannot be serialized because its property '{0}' cannot be serialized."), This_member_must_have_a_JSDoc_comment_with_an_override_tag_because_it_overrides_a_member_in_the_base_class_0: diag(4119, ts.DiagnosticCategory.Error, "This_member_must_have_a_JSDoc_comment_with_an_override_tag_because_it_overrides_a_member_in_the_base_4119", "This member must have a JSDoc comment with an '@override' tag because it overrides a member in the base class '{0}'."), This_parameter_property_must_have_a_JSDoc_comment_with_an_override_tag_because_it_overrides_a_member_in_the_base_class_0: diag(4120, ts.DiagnosticCategory.Error, "This_parameter_property_must_have_a_JSDoc_comment_with_an_override_tag_because_it_overrides_a_member_4120", "This parameter property must have a JSDoc comment with an '@override' tag because it overrides a member in the base class '{0}'."), This_member_cannot_have_a_JSDoc_comment_with_an_override_tag_because_its_containing_class_0_does_not_extend_another_class: diag(4121, ts.DiagnosticCategory.Error, "This_member_cannot_have_a_JSDoc_comment_with_an_override_tag_because_its_containing_class_0_does_not_4121", "This member cannot have a JSDoc comment with an '@override' tag because its containing class '{0}' does not extend another class."), This_member_cannot_have_a_JSDoc_comment_with_an_override_tag_because_it_is_not_declared_in_the_base_class_0: diag(4122, ts.DiagnosticCategory.Error, "This_member_cannot_have_a_JSDoc_comment_with_an_override_tag_because_it_is_not_declared_in_the_base__4122", "This member cannot have a JSDoc comment with an '@override' tag because it is not declared in the base class '{0}'."), This_member_cannot_have_a_JSDoc_comment_with_an_override_tag_because_it_is_not_declared_in_the_base_class_0_Did_you_mean_1: diag(4123, ts.DiagnosticCategory.Error, "This_member_cannot_have_a_JSDoc_comment_with_an_override_tag_because_it_is_not_declared_in_the_base__4123", "This member cannot have a JSDoc comment with an 'override' tag because it is not declared in the base class '{0}'. Did you mean '{1}'?"), Compiler_option_0_of_value_1_is_unstable_Use_nightly_TypeScript_to_silence_this_error_Try_updating_with_npm_install_D_typescript_next: diag(4124, ts.DiagnosticCategory.Error, "Compiler_option_0_of_value_1_is_unstable_Use_nightly_TypeScript_to_silence_this_error_Try_updating_w_4124", "Compiler option '{0}' of value '{1}' is unstable. Use nightly TypeScript to silence this error. Try updating with 'npm install -D typescript@next'."), resolution_mode_assertions_are_unstable_Use_nightly_TypeScript_to_silence_this_error_Try_updating_with_npm_install_D_typescript_next: diag(4125, ts.DiagnosticCategory.Error, "resolution_mode_assertions_are_unstable_Use_nightly_TypeScript_to_silence_this_error_Try_updating_wi_4125", "'resolution-mode' assertions are unstable. Use nightly TypeScript to silence this error. Try updating with 'npm install -D typescript@next'."), The_current_host_does_not_support_the_0_option: diag(5001, ts.DiagnosticCategory.Error, "The_current_host_does_not_support_the_0_option_5001", "The current host does not support the '{0}' option."), Cannot_find_the_common_subdirectory_path_for_the_input_files: diag(5009, ts.DiagnosticCategory.Error, "Cannot_find_the_common_subdirectory_path_for_the_input_files_5009", "Cannot find the common subdirectory path for the input files."), File_specification_cannot_end_in_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0: diag(5010, ts.DiagnosticCategory.Error, "File_specification_cannot_end_in_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0_5010", "File specification cannot end in a recursive directory wildcard ('**'): '{0}'."), Cannot_read_file_0_Colon_1: diag(5012, ts.DiagnosticCategory.Error, "Cannot_read_file_0_Colon_1_5012", "Cannot read file '{0}': {1}."), Failed_to_parse_file_0_Colon_1: diag(5014, ts.DiagnosticCategory.Error, "Failed_to_parse_file_0_Colon_1_5014", "Failed to parse file '{0}': {1}."), Unknown_compiler_option_0: diag(5023, ts.DiagnosticCategory.Error, "Unknown_compiler_option_0_5023", "Unknown compiler option '{0}'."), Compiler_option_0_requires_a_value_of_type_1: diag(5024, ts.DiagnosticCategory.Error, "Compiler_option_0_requires_a_value_of_type_1_5024", "Compiler option '{0}' requires a value of type {1}."), Unknown_compiler_option_0_Did_you_mean_1: diag(5025, ts.DiagnosticCategory.Error, "Unknown_compiler_option_0_Did_you_mean_1_5025", "Unknown compiler option '{0}'. Did you mean '{1}'?"), Could_not_write_file_0_Colon_1: diag(5033, ts.DiagnosticCategory.Error, "Could_not_write_file_0_Colon_1_5033", "Could not write file '{0}': {1}."), Option_project_cannot_be_mixed_with_source_files_on_a_command_line: diag(5042, ts.DiagnosticCategory.Error, "Option_project_cannot_be_mixed_with_source_files_on_a_command_line_5042", "Option 'project' cannot be mixed with source files on a command line."), Option_isolatedModules_can_only_be_used_when_either_option_module_is_provided_or_option_target_is_ES2015_or_higher: diag(5047, ts.DiagnosticCategory.Error, "Option_isolatedModules_can_only_be_used_when_either_option_module_is_provided_or_option_target_is_ES_5047", "Option 'isolatedModules' can only be used when either option '--module' is provided or option 'target' is 'ES2015' or higher."), Option_0_cannot_be_specified_when_option_target_is_ES3: diag(5048, ts.DiagnosticCategory.Error, "Option_0_cannot_be_specified_when_option_target_is_ES3_5048", "Option '{0}' cannot be specified when option 'target' is 'ES3'."), Option_0_can_only_be_used_when_either_option_inlineSourceMap_or_option_sourceMap_is_provided: diag(5051, ts.DiagnosticCategory.Error, "Option_0_can_only_be_used_when_either_option_inlineSourceMap_or_option_sourceMap_is_provided_5051", "Option '{0} can only be used when either option '--inlineSourceMap' or option '--sourceMap' is provided."), Option_0_cannot_be_specified_without_specifying_option_1: diag(5052, ts.DiagnosticCategory.Error, "Option_0_cannot_be_specified_without_specifying_option_1_5052", "Option '{0}' cannot be specified without specifying option '{1}'."), Option_0_cannot_be_specified_with_option_1: diag(5053, ts.DiagnosticCategory.Error, "Option_0_cannot_be_specified_with_option_1_5053", "Option '{0}' cannot be specified with option '{1}'."), A_tsconfig_json_file_is_already_defined_at_Colon_0: diag(5054, ts.DiagnosticCategory.Error, "A_tsconfig_json_file_is_already_defined_at_Colon_0_5054", "A 'tsconfig.json' file is already defined at: '{0}'."), Cannot_write_file_0_because_it_would_overwrite_input_file: diag(5055, ts.DiagnosticCategory.Error, "Cannot_write_file_0_because_it_would_overwrite_input_file_5055", "Cannot write file '{0}' because it would overwrite input file."), Cannot_write_file_0_because_it_would_be_overwritten_by_multiple_input_files: diag(5056, ts.DiagnosticCategory.Error, "Cannot_write_file_0_because_it_would_be_overwritten_by_multiple_input_files_5056", "Cannot write file '{0}' because it would be overwritten by multiple input files."), Cannot_find_a_tsconfig_json_file_at_the_specified_directory_Colon_0: diag(5057, ts.DiagnosticCategory.Error, "Cannot_find_a_tsconfig_json_file_at_the_specified_directory_Colon_0_5057", "Cannot find a tsconfig.json file at the specified directory: '{0}'."), The_specified_path_does_not_exist_Colon_0: diag(5058, ts.DiagnosticCategory.Error, "The_specified_path_does_not_exist_Colon_0_5058", "The specified path does not exist: '{0}'."), Invalid_value_for_reactNamespace_0_is_not_a_valid_identifier: diag(5059, ts.DiagnosticCategory.Error, "Invalid_value_for_reactNamespace_0_is_not_a_valid_identifier_5059", "Invalid value for '--reactNamespace'. '{0}' is not a valid identifier."), Pattern_0_can_have_at_most_one_Asterisk_character: diag(5061, ts.DiagnosticCategory.Error, "Pattern_0_can_have_at_most_one_Asterisk_character_5061", "Pattern '{0}' can have at most one '*' character."), Substitution_0_in_pattern_1_can_have_at_most_one_Asterisk_character: diag(5062, ts.DiagnosticCategory.Error, "Substitution_0_in_pattern_1_can_have_at_most_one_Asterisk_character_5062", "Substitution '{0}' in pattern '{1}' can have at most one '*' character."), Substitutions_for_pattern_0_should_be_an_array: diag(5063, ts.DiagnosticCategory.Error, "Substitutions_for_pattern_0_should_be_an_array_5063", "Substitutions for pattern '{0}' should be an array."), Substitution_0_for_pattern_1_has_incorrect_type_expected_string_got_2: diag(5064, ts.DiagnosticCategory.Error, "Substitution_0_for_pattern_1_has_incorrect_type_expected_string_got_2_5064", "Substitution '{0}' for pattern '{1}' has incorrect type, expected 'string', got '{2}'."), File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0: diag(5065, ts.DiagnosticCategory.Error, "File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildca_5065", "File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '{0}'."), Substitutions_for_pattern_0_shouldn_t_be_an_empty_array: diag(5066, ts.DiagnosticCategory.Error, "Substitutions_for_pattern_0_shouldn_t_be_an_empty_array_5066", "Substitutions for pattern '{0}' shouldn't be an empty array."), Invalid_value_for_jsxFactory_0_is_not_a_valid_identifier_or_qualified_name: diag(5067, ts.DiagnosticCategory.Error, "Invalid_value_for_jsxFactory_0_is_not_a_valid_identifier_or_qualified_name_5067", "Invalid value for 'jsxFactory'. '{0}' is not a valid identifier or qualified-name."), Adding_a_tsconfig_json_file_will_help_organize_projects_that_contain_both_TypeScript_and_JavaScript_files_Learn_more_at_https_Colon_Slash_Slashaka_ms_Slashtsconfig: diag(5068, ts.DiagnosticCategory.Error, "Adding_a_tsconfig_json_file_will_help_organize_projects_that_contain_both_TypeScript_and_JavaScript__5068", "Adding a tsconfig.json file will help organize projects that contain both TypeScript and JavaScript files. Learn more at https://aka.ms/tsconfig."), Option_0_cannot_be_specified_without_specifying_option_1_or_option_2: diag(5069, ts.DiagnosticCategory.Error, "Option_0_cannot_be_specified_without_specifying_option_1_or_option_2_5069", "Option '{0}' cannot be specified without specifying option '{1}' or option '{2}'."), Option_resolveJsonModule_cannot_be_specified_without_node_module_resolution_strategy: diag(5070, ts.DiagnosticCategory.Error, "Option_resolveJsonModule_cannot_be_specified_without_node_module_resolution_strategy_5070", "Option '--resolveJsonModule' cannot be specified without 'node' module resolution strategy."), Option_resolveJsonModule_can_only_be_specified_when_module_code_generation_is_commonjs_amd_es2015_or_esNext: diag(5071, ts.DiagnosticCategory.Error, "Option_resolveJsonModule_can_only_be_specified_when_module_code_generation_is_commonjs_amd_es2015_or_5071", "Option '--resolveJsonModule' can only be specified when module code generation is 'commonjs', 'amd', 'es2015' or 'esNext'."), Unknown_build_option_0: diag(5072, ts.DiagnosticCategory.Error, "Unknown_build_option_0_5072", "Unknown build option '{0}'."), Build_option_0_requires_a_value_of_type_1: diag(5073, ts.DiagnosticCategory.Error, "Build_option_0_requires_a_value_of_type_1_5073", "Build option '{0}' requires a value of type {1}."), Option_incremental_can_only_be_specified_using_tsconfig_emitting_to_single_file_or_when_option_tsBuildInfoFile_is_specified: diag(5074, ts.DiagnosticCategory.Error, "Option_incremental_can_only_be_specified_using_tsconfig_emitting_to_single_file_or_when_option_tsBui_5074", "Option '--incremental' can only be specified using tsconfig, emitting to single file or when option '--tsBuildInfoFile' is specified."), _0_is_assignable_to_the_constraint_of_type_1_but_1_could_be_instantiated_with_a_different_subtype_of_constraint_2: diag(5075, ts.DiagnosticCategory.Error, "_0_is_assignable_to_the_constraint_of_type_1_but_1_could_be_instantiated_with_a_different_subtype_of_5075", "'{0}' is assignable to the constraint of type '{1}', but '{1}' could be instantiated with a different subtype of constraint '{2}'."), _0_and_1_operations_cannot_be_mixed_without_parentheses: diag(5076, ts.DiagnosticCategory.Error, "_0_and_1_operations_cannot_be_mixed_without_parentheses_5076", "'{0}' and '{1}' operations cannot be mixed without parentheses."), Unknown_build_option_0_Did_you_mean_1: diag(5077, ts.DiagnosticCategory.Error, "Unknown_build_option_0_Did_you_mean_1_5077", "Unknown build option '{0}'. Did you mean '{1}'?"), Unknown_watch_option_0: diag(5078, ts.DiagnosticCategory.Error, "Unknown_watch_option_0_5078", "Unknown watch option '{0}'."), Unknown_watch_option_0_Did_you_mean_1: diag(5079, ts.DiagnosticCategory.Error, "Unknown_watch_option_0_Did_you_mean_1_5079", "Unknown watch option '{0}'. Did you mean '{1}'?"), Watch_option_0_requires_a_value_of_type_1: diag(5080, ts.DiagnosticCategory.Error, "Watch_option_0_requires_a_value_of_type_1_5080", "Watch option '{0}' requires a value of type {1}."), Cannot_find_a_tsconfig_json_file_at_the_current_directory_Colon_0: diag(5081, ts.DiagnosticCategory.Error, "Cannot_find_a_tsconfig_json_file_at_the_current_directory_Colon_0_5081", "Cannot find a tsconfig.json file at the current directory: {0}."), _0_could_be_instantiated_with_an_arbitrary_type_which_could_be_unrelated_to_1: diag(5082, ts.DiagnosticCategory.Error, "_0_could_be_instantiated_with_an_arbitrary_type_which_could_be_unrelated_to_1_5082", "'{0}' could be instantiated with an arbitrary type which could be unrelated to '{1}'."), Cannot_read_file_0: diag(5083, ts.DiagnosticCategory.Error, "Cannot_read_file_0_5083", "Cannot read file '{0}'."), Tuple_members_must_all_have_names_or_all_not_have_names: diag(5084, ts.DiagnosticCategory.Error, "Tuple_members_must_all_have_names_or_all_not_have_names_5084", "Tuple members must all have names or all not have names."), A_tuple_member_cannot_be_both_optional_and_rest: diag(5085, ts.DiagnosticCategory.Error, "A_tuple_member_cannot_be_both_optional_and_rest_5085", "A tuple member cannot be both optional and rest."), A_labeled_tuple_element_is_declared_as_optional_with_a_question_mark_after_the_name_and_before_the_colon_rather_than_after_the_type: diag(5086, ts.DiagnosticCategory.Error, "A_labeled_tuple_element_is_declared_as_optional_with_a_question_mark_after_the_name_and_before_the_c_5086", "A labeled tuple element is declared as optional with a question mark after the name and before the colon, rather than after the type."), A_labeled_tuple_element_is_declared_as_rest_with_a_before_the_name_rather_than_before_the_type: diag(5087, ts.DiagnosticCategory.Error, "A_labeled_tuple_element_is_declared_as_rest_with_a_before_the_name_rather_than_before_the_type_5087", "A labeled tuple element is declared as rest with a '...' before the name, rather than before the type."), The_inferred_type_of_0_references_a_type_with_a_cyclic_structure_which_cannot_be_trivially_serialized_A_type_annotation_is_necessary: diag(5088, ts.DiagnosticCategory.Error, "The_inferred_type_of_0_references_a_type_with_a_cyclic_structure_which_cannot_be_trivially_serialize_5088", "The inferred type of '{0}' references a type with a cyclic structure which cannot be trivially serialized. A type annotation is necessary."), Option_0_cannot_be_specified_when_option_jsx_is_1: diag(5089, ts.DiagnosticCategory.Error, "Option_0_cannot_be_specified_when_option_jsx_is_1_5089", "Option '{0}' cannot be specified when option 'jsx' is '{1}'."), Non_relative_paths_are_not_allowed_when_baseUrl_is_not_set_Did_you_forget_a_leading_Slash: diag(5090, ts.DiagnosticCategory.Error, "Non_relative_paths_are_not_allowed_when_baseUrl_is_not_set_Did_you_forget_a_leading_Slash_5090", "Non-relative paths are not allowed when 'baseUrl' is not set. Did you forget a leading './'?"), Option_preserveConstEnums_cannot_be_disabled_when_isolatedModules_is_enabled: diag(5091, ts.DiagnosticCategory.Error, "Option_preserveConstEnums_cannot_be_disabled_when_isolatedModules_is_enabled_5091", "Option 'preserveConstEnums' cannot be disabled when 'isolatedModules' is enabled."), The_root_value_of_a_0_file_must_be_an_object: diag(5092, ts.DiagnosticCategory.Error, "The_root_value_of_a_0_file_must_be_an_object_5092", "The root value of a '{0}' file must be an object."), Compiler_option_0_may_only_be_used_with_build: diag(5093, ts.DiagnosticCategory.Error, "Compiler_option_0_may_only_be_used_with_build_5093", "Compiler option '--{0}' may only be used with '--build'."), Compiler_option_0_may_not_be_used_with_build: diag(5094, ts.DiagnosticCategory.Error, "Compiler_option_0_may_not_be_used_with_build_5094", "Compiler option '--{0}' may not be used with '--build'."), Option_preserveValueImports_can_only_be_used_when_module_is_set_to_es2015_or_later: diag(5095, ts.DiagnosticCategory.Error, "Option_preserveValueImports_can_only_be_used_when_module_is_set_to_es2015_or_later_5095", "Option 'preserveValueImports' can only be used when 'module' is set to 'es2015' or later."), Generates_a_sourcemap_for_each_corresponding_d_ts_file: diag(6000, ts.DiagnosticCategory.Message, "Generates_a_sourcemap_for_each_corresponding_d_ts_file_6000", "Generates a sourcemap for each corresponding '.d.ts' file."), Concatenate_and_emit_output_to_single_file: diag(6001, ts.DiagnosticCategory.Message, "Concatenate_and_emit_output_to_single_file_6001", "Concatenate and emit output to single file."), Generates_corresponding_d_ts_file: diag(6002, ts.DiagnosticCategory.Message, "Generates_corresponding_d_ts_file_6002", "Generates corresponding '.d.ts' file."), Specify_the_location_where_debugger_should_locate_TypeScript_files_instead_of_source_locations: diag(6004, ts.DiagnosticCategory.Message, "Specify_the_location_where_debugger_should_locate_TypeScript_files_instead_of_source_locations_6004", "Specify the location where debugger should locate TypeScript files instead of source locations."), Watch_input_files: diag(6005, ts.DiagnosticCategory.Message, "Watch_input_files_6005", "Watch input files."), Redirect_output_structure_to_the_directory: diag(6006, ts.DiagnosticCategory.Message, "Redirect_output_structure_to_the_directory_6006", "Redirect output structure to the directory."), Do_not_erase_const_enum_declarations_in_generated_code: diag(6007, ts.DiagnosticCategory.Message, "Do_not_erase_const_enum_declarations_in_generated_code_6007", "Do not erase const enum declarations in generated code."), Do_not_emit_outputs_if_any_errors_were_reported: diag(6008, ts.DiagnosticCategory.Message, "Do_not_emit_outputs_if_any_errors_were_reported_6008", "Do not emit outputs if any errors were reported."), Do_not_emit_comments_to_output: diag(6009, ts.DiagnosticCategory.Message, "Do_not_emit_comments_to_output_6009", "Do not emit comments to output."), Do_not_emit_outputs: diag(6010, ts.DiagnosticCategory.Message, "Do_not_emit_outputs_6010", "Do not emit outputs."), Allow_default_imports_from_modules_with_no_default_export_This_does_not_affect_code_emit_just_typechecking: diag(6011, ts.DiagnosticCategory.Message, "Allow_default_imports_from_modules_with_no_default_export_This_does_not_affect_code_emit_just_typech_6011", "Allow default imports from modules with no default export. This does not affect code emit, just typechecking."), Skip_type_checking_of_declaration_files: diag(6012, ts.DiagnosticCategory.Message, "Skip_type_checking_of_declaration_files_6012", "Skip type checking of declaration files."), Do_not_resolve_the_real_path_of_symlinks: diag(6013, ts.DiagnosticCategory.Message, "Do_not_resolve_the_real_path_of_symlinks_6013", "Do not resolve the real path of symlinks."), Only_emit_d_ts_declaration_files: diag(6014, ts.DiagnosticCategory.Message, "Only_emit_d_ts_declaration_files_6014", "Only emit '.d.ts' declaration files."), Specify_ECMAScript_target_version: diag(6015, ts.DiagnosticCategory.Message, "Specify_ECMAScript_target_version_6015", "Specify ECMAScript target version."), Specify_module_code_generation: diag(6016, ts.DiagnosticCategory.Message, "Specify_module_code_generation_6016", "Specify module code generation."), Print_this_message: diag(6017, ts.DiagnosticCategory.Message, "Print_this_message_6017", "Print this message."), Print_the_compiler_s_version: diag(6019, ts.DiagnosticCategory.Message, "Print_the_compiler_s_version_6019", "Print the compiler's version."), Compile_the_project_given_the_path_to_its_configuration_file_or_to_a_folder_with_a_tsconfig_json: diag(6020, ts.DiagnosticCategory.Message, "Compile_the_project_given_the_path_to_its_configuration_file_or_to_a_folder_with_a_tsconfig_json_6020", "Compile the project given the path to its configuration file, or to a folder with a 'tsconfig.json'."), Syntax_Colon_0: diag(6023, ts.DiagnosticCategory.Message, "Syntax_Colon_0_6023", "Syntax: {0}"), options: diag(6024, ts.DiagnosticCategory.Message, "options_6024", "options"), file: diag(6025, ts.DiagnosticCategory.Message, "file_6025", "file"), Examples_Colon_0: diag(6026, ts.DiagnosticCategory.Message, "Examples_Colon_0_6026", "Examples: {0}"), Options_Colon: diag(6027, ts.DiagnosticCategory.Message, "Options_Colon_6027", "Options:"), Version_0: diag(6029, ts.DiagnosticCategory.Message, "Version_0_6029", "Version {0}"), Insert_command_line_options_and_files_from_a_file: diag(6030, ts.DiagnosticCategory.Message, "Insert_command_line_options_and_files_from_a_file_6030", "Insert command line options and files from a file."), Starting_compilation_in_watch_mode: diag(6031, ts.DiagnosticCategory.Message, "Starting_compilation_in_watch_mode_6031", "Starting compilation in watch mode..."), File_change_detected_Starting_incremental_compilation: diag(6032, ts.DiagnosticCategory.Message, "File_change_detected_Starting_incremental_compilation_6032", "File change detected. Starting incremental compilation..."), KIND: diag(6034, ts.DiagnosticCategory.Message, "KIND_6034", "KIND"), FILE: diag(6035, ts.DiagnosticCategory.Message, "FILE_6035", "FILE"), VERSION: diag(6036, ts.DiagnosticCategory.Message, "VERSION_6036", "VERSION"), LOCATION: diag(6037, ts.DiagnosticCategory.Message, "LOCATION_6037", "LOCATION"), DIRECTORY: diag(6038, ts.DiagnosticCategory.Message, "DIRECTORY_6038", "DIRECTORY"), STRATEGY: diag(6039, ts.DiagnosticCategory.Message, "STRATEGY_6039", "STRATEGY"), FILE_OR_DIRECTORY: diag(6040, ts.DiagnosticCategory.Message, "FILE_OR_DIRECTORY_6040", "FILE OR DIRECTORY"), Errors_Files: diag(6041, ts.DiagnosticCategory.Message, "Errors_Files_6041", "Errors Files"), Generates_corresponding_map_file: diag(6043, ts.DiagnosticCategory.Message, "Generates_corresponding_map_file_6043", "Generates corresponding '.map' file."), Compiler_option_0_expects_an_argument: diag(6044, ts.DiagnosticCategory.Error, "Compiler_option_0_expects_an_argument_6044", "Compiler option '{0}' expects an argument."), Unterminated_quoted_string_in_response_file_0: diag(6045, ts.DiagnosticCategory.Error, "Unterminated_quoted_string_in_response_file_0_6045", "Unterminated quoted string in response file '{0}'."), Argument_for_0_option_must_be_Colon_1: diag(6046, ts.DiagnosticCategory.Error, "Argument_for_0_option_must_be_Colon_1_6046", "Argument for '{0}' option must be: {1}."), Locale_must_be_of_the_form_language_or_language_territory_For_example_0_or_1: diag(6048, ts.DiagnosticCategory.Error, "Locale_must_be_of_the_form_language_or_language_territory_For_example_0_or_1_6048", "Locale must be of the form or -. For example '{0}' or '{1}'."), Unable_to_open_file_0: diag(6050, ts.DiagnosticCategory.Error, "Unable_to_open_file_0_6050", "Unable to open file '{0}'."), Corrupted_locale_file_0: diag(6051, ts.DiagnosticCategory.Error, "Corrupted_locale_file_0_6051", "Corrupted locale file {0}."), Raise_error_on_expressions_and_declarations_with_an_implied_any_type: diag(6052, ts.DiagnosticCategory.Message, "Raise_error_on_expressions_and_declarations_with_an_implied_any_type_6052", "Raise error on expressions and declarations with an implied 'any' type."), File_0_not_found: diag(6053, ts.DiagnosticCategory.Error, "File_0_not_found_6053", "File '{0}' not found."), File_0_has_an_unsupported_extension_The_only_supported_extensions_are_1: diag(6054, ts.DiagnosticCategory.Error, "File_0_has_an_unsupported_extension_The_only_supported_extensions_are_1_6054", "File '{0}' has an unsupported extension. The only supported extensions are {1}."), Suppress_noImplicitAny_errors_for_indexing_objects_lacking_index_signatures: diag(6055, ts.DiagnosticCategory.Message, "Suppress_noImplicitAny_errors_for_indexing_objects_lacking_index_signatures_6055", "Suppress noImplicitAny errors for indexing objects lacking index signatures."), Do_not_emit_declarations_for_code_that_has_an_internal_annotation: diag(6056, ts.DiagnosticCategory.Message, "Do_not_emit_declarations_for_code_that_has_an_internal_annotation_6056", "Do not emit declarations for code that has an '@internal' annotation."), Specify_the_root_directory_of_input_files_Use_to_control_the_output_directory_structure_with_outDir: diag(6058, ts.DiagnosticCategory.Message, "Specify_the_root_directory_of_input_files_Use_to_control_the_output_directory_structure_with_outDir_6058", "Specify the root directory of input files. Use to control the output directory structure with --outDir."), File_0_is_not_under_rootDir_1_rootDir_is_expected_to_contain_all_source_files: diag(6059, ts.DiagnosticCategory.Error, "File_0_is_not_under_rootDir_1_rootDir_is_expected_to_contain_all_source_files_6059", "File '{0}' is not under 'rootDir' '{1}'. 'rootDir' is expected to contain all source files."), Specify_the_end_of_line_sequence_to_be_used_when_emitting_files_Colon_CRLF_dos_or_LF_unix: diag(6060, ts.DiagnosticCategory.Message, "Specify_the_end_of_line_sequence_to_be_used_when_emitting_files_Colon_CRLF_dos_or_LF_unix_6060", "Specify the end of line sequence to be used when emitting files: 'CRLF' (dos) or 'LF' (unix)."), NEWLINE: diag(6061, ts.DiagnosticCategory.Message, "NEWLINE_6061", "NEWLINE"), Option_0_can_only_be_specified_in_tsconfig_json_file_or_set_to_null_on_command_line: diag(6064, ts.DiagnosticCategory.Error, "Option_0_can_only_be_specified_in_tsconfig_json_file_or_set_to_null_on_command_line_6064", "Option '{0}' can only be specified in 'tsconfig.json' file or set to 'null' on command line."), Enables_experimental_support_for_ES7_decorators: diag(6065, ts.DiagnosticCategory.Message, "Enables_experimental_support_for_ES7_decorators_6065", "Enables experimental support for ES7 decorators."), Enables_experimental_support_for_emitting_type_metadata_for_decorators: diag(6066, ts.DiagnosticCategory.Message, "Enables_experimental_support_for_emitting_type_metadata_for_decorators_6066", "Enables experimental support for emitting type metadata for decorators."), Specify_module_resolution_strategy_Colon_node_Node_js_or_classic_TypeScript_pre_1_6: diag(6069, ts.DiagnosticCategory.Message, "Specify_module_resolution_strategy_Colon_node_Node_js_or_classic_TypeScript_pre_1_6_6069", "Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6)."), Initializes_a_TypeScript_project_and_creates_a_tsconfig_json_file: diag(6070, ts.DiagnosticCategory.Message, "Initializes_a_TypeScript_project_and_creates_a_tsconfig_json_file_6070", "Initializes a TypeScript project and creates a tsconfig.json file."), Successfully_created_a_tsconfig_json_file: diag(6071, ts.DiagnosticCategory.Message, "Successfully_created_a_tsconfig_json_file_6071", "Successfully created a tsconfig.json file."), Suppress_excess_property_checks_for_object_literals: diag(6072, ts.DiagnosticCategory.Message, "Suppress_excess_property_checks_for_object_literals_6072", "Suppress excess property checks for object literals."), Stylize_errors_and_messages_using_color_and_context_experimental: diag(6073, ts.DiagnosticCategory.Message, "Stylize_errors_and_messages_using_color_and_context_experimental_6073", "Stylize errors and messages using color and context (experimental)."), Do_not_report_errors_on_unused_labels: diag(6074, ts.DiagnosticCategory.Message, "Do_not_report_errors_on_unused_labels_6074", "Do not report errors on unused labels."), Report_error_when_not_all_code_paths_in_function_return_a_value: diag(6075, ts.DiagnosticCategory.Message, "Report_error_when_not_all_code_paths_in_function_return_a_value_6075", "Report error when not all code paths in function return a value."), Report_errors_for_fallthrough_cases_in_switch_statement: diag(6076, ts.DiagnosticCategory.Message, "Report_errors_for_fallthrough_cases_in_switch_statement_6076", "Report errors for fallthrough cases in switch statement."), Do_not_report_errors_on_unreachable_code: diag(6077, ts.DiagnosticCategory.Message, "Do_not_report_errors_on_unreachable_code_6077", "Do not report errors on unreachable code."), Disallow_inconsistently_cased_references_to_the_same_file: diag(6078, ts.DiagnosticCategory.Message, "Disallow_inconsistently_cased_references_to_the_same_file_6078", "Disallow inconsistently-cased references to the same file."), Specify_library_files_to_be_included_in_the_compilation: diag(6079, ts.DiagnosticCategory.Message, "Specify_library_files_to_be_included_in_the_compilation_6079", "Specify library files to be included in the compilation."), Specify_JSX_code_generation: diag(6080, ts.DiagnosticCategory.Message, "Specify_JSX_code_generation_6080", "Specify JSX code generation."), File_0_has_an_unsupported_extension_so_skipping_it: diag(6081, ts.DiagnosticCategory.Message, "File_0_has_an_unsupported_extension_so_skipping_it_6081", "File '{0}' has an unsupported extension, so skipping it."), Only_amd_and_system_modules_are_supported_alongside_0: diag(6082, ts.DiagnosticCategory.Error, "Only_amd_and_system_modules_are_supported_alongside_0_6082", "Only 'amd' and 'system' modules are supported alongside --{0}."), Base_directory_to_resolve_non_absolute_module_names: diag(6083, ts.DiagnosticCategory.Message, "Base_directory_to_resolve_non_absolute_module_names_6083", "Base directory to resolve non-absolute module names."), Deprecated_Use_jsxFactory_instead_Specify_the_object_invoked_for_createElement_when_targeting_react_JSX_emit: diag(6084, ts.DiagnosticCategory.Message, "Deprecated_Use_jsxFactory_instead_Specify_the_object_invoked_for_createElement_when_targeting_react__6084", "[Deprecated] Use '--jsxFactory' instead. Specify the object invoked for createElement when targeting 'react' JSX emit"), Enable_tracing_of_the_name_resolution_process: diag(6085, ts.DiagnosticCategory.Message, "Enable_tracing_of_the_name_resolution_process_6085", "Enable tracing of the name resolution process."), Resolving_module_0_from_1: diag(6086, ts.DiagnosticCategory.Message, "Resolving_module_0_from_1_6086", "======== Resolving module '{0}' from '{1}'. ========"), Explicitly_specified_module_resolution_kind_Colon_0: diag(6087, ts.DiagnosticCategory.Message, "Explicitly_specified_module_resolution_kind_Colon_0_6087", "Explicitly specified module resolution kind: '{0}'."), Module_resolution_kind_is_not_specified_using_0: diag(6088, ts.DiagnosticCategory.Message, "Module_resolution_kind_is_not_specified_using_0_6088", "Module resolution kind is not specified, using '{0}'."), Module_name_0_was_successfully_resolved_to_1: diag(6089, ts.DiagnosticCategory.Message, "Module_name_0_was_successfully_resolved_to_1_6089", "======== Module name '{0}' was successfully resolved to '{1}'. ========"), Module_name_0_was_not_resolved: diag(6090, ts.DiagnosticCategory.Message, "Module_name_0_was_not_resolved_6090", "======== Module name '{0}' was not resolved. ========"), paths_option_is_specified_looking_for_a_pattern_to_match_module_name_0: diag(6091, ts.DiagnosticCategory.Message, "paths_option_is_specified_looking_for_a_pattern_to_match_module_name_0_6091", "'paths' option is specified, looking for a pattern to match module name '{0}'."), Module_name_0_matched_pattern_1: diag(6092, ts.DiagnosticCategory.Message, "Module_name_0_matched_pattern_1_6092", "Module name '{0}', matched pattern '{1}'."), Trying_substitution_0_candidate_module_location_Colon_1: diag(6093, ts.DiagnosticCategory.Message, "Trying_substitution_0_candidate_module_location_Colon_1_6093", "Trying substitution '{0}', candidate module location: '{1}'."), Resolving_module_name_0_relative_to_base_url_1_2: diag(6094, ts.DiagnosticCategory.Message, "Resolving_module_name_0_relative_to_base_url_1_2_6094", "Resolving module name '{0}' relative to base url '{1}' - '{2}'."), Loading_module_as_file_Slash_folder_candidate_module_location_0_target_file_type_1: diag(6095, ts.DiagnosticCategory.Message, "Loading_module_as_file_Slash_folder_candidate_module_location_0_target_file_type_1_6095", "Loading module as file / folder, candidate module location '{0}', target file type '{1}'."), File_0_does_not_exist: diag(6096, ts.DiagnosticCategory.Message, "File_0_does_not_exist_6096", "File '{0}' does not exist."), File_0_exist_use_it_as_a_name_resolution_result: diag(6097, ts.DiagnosticCategory.Message, "File_0_exist_use_it_as_a_name_resolution_result_6097", "File '{0}' exist - use it as a name resolution result."), Loading_module_0_from_node_modules_folder_target_file_type_1: diag(6098, ts.DiagnosticCategory.Message, "Loading_module_0_from_node_modules_folder_target_file_type_1_6098", "Loading module '{0}' from 'node_modules' folder, target file type '{1}'."), Found_package_json_at_0: diag(6099, ts.DiagnosticCategory.Message, "Found_package_json_at_0_6099", "Found 'package.json' at '{0}'."), package_json_does_not_have_a_0_field: diag(6100, ts.DiagnosticCategory.Message, "package_json_does_not_have_a_0_field_6100", "'package.json' does not have a '{0}' field."), package_json_has_0_field_1_that_references_2: diag(6101, ts.DiagnosticCategory.Message, "package_json_has_0_field_1_that_references_2_6101", "'package.json' has '{0}' field '{1}' that references '{2}'."), Allow_javascript_files_to_be_compiled: diag(6102, ts.DiagnosticCategory.Message, "Allow_javascript_files_to_be_compiled_6102", "Allow javascript files to be compiled."), Checking_if_0_is_the_longest_matching_prefix_for_1_2: diag(6104, ts.DiagnosticCategory.Message, "Checking_if_0_is_the_longest_matching_prefix_for_1_2_6104", "Checking if '{0}' is the longest matching prefix for '{1}' - '{2}'."), Expected_type_of_0_field_in_package_json_to_be_1_got_2: diag(6105, ts.DiagnosticCategory.Message, "Expected_type_of_0_field_in_package_json_to_be_1_got_2_6105", "Expected type of '{0}' field in 'package.json' to be '{1}', got '{2}'."), baseUrl_option_is_set_to_0_using_this_value_to_resolve_non_relative_module_name_1: diag(6106, ts.DiagnosticCategory.Message, "baseUrl_option_is_set_to_0_using_this_value_to_resolve_non_relative_module_name_1_6106", "'baseUrl' option is set to '{0}', using this value to resolve non-relative module name '{1}'."), rootDirs_option_is_set_using_it_to_resolve_relative_module_name_0: diag(6107, ts.DiagnosticCategory.Message, "rootDirs_option_is_set_using_it_to_resolve_relative_module_name_0_6107", "'rootDirs' option is set, using it to resolve relative module name '{0}'."), Longest_matching_prefix_for_0_is_1: diag(6108, ts.DiagnosticCategory.Message, "Longest_matching_prefix_for_0_is_1_6108", "Longest matching prefix for '{0}' is '{1}'."), Loading_0_from_the_root_dir_1_candidate_location_2: diag(6109, ts.DiagnosticCategory.Message, "Loading_0_from_the_root_dir_1_candidate_location_2_6109", "Loading '{0}' from the root dir '{1}', candidate location '{2}'."), Trying_other_entries_in_rootDirs: diag(6110, ts.DiagnosticCategory.Message, "Trying_other_entries_in_rootDirs_6110", "Trying other entries in 'rootDirs'."), Module_resolution_using_rootDirs_has_failed: diag(6111, ts.DiagnosticCategory.Message, "Module_resolution_using_rootDirs_has_failed_6111", "Module resolution using 'rootDirs' has failed."), Do_not_emit_use_strict_directives_in_module_output: diag(6112, ts.DiagnosticCategory.Message, "Do_not_emit_use_strict_directives_in_module_output_6112", "Do not emit 'use strict' directives in module output."), Enable_strict_null_checks: diag(6113, ts.DiagnosticCategory.Message, "Enable_strict_null_checks_6113", "Enable strict null checks."), Unknown_option_excludes_Did_you_mean_exclude: diag(6114, ts.DiagnosticCategory.Error, "Unknown_option_excludes_Did_you_mean_exclude_6114", "Unknown option 'excludes'. Did you mean 'exclude'?"), Raise_error_on_this_expressions_with_an_implied_any_type: diag(6115, ts.DiagnosticCategory.Message, "Raise_error_on_this_expressions_with_an_implied_any_type_6115", "Raise error on 'this' expressions with an implied 'any' type."), Resolving_type_reference_directive_0_containing_file_1_root_directory_2: diag(6116, ts.DiagnosticCategory.Message, "Resolving_type_reference_directive_0_containing_file_1_root_directory_2_6116", "======== Resolving type reference directive '{0}', containing file '{1}', root directory '{2}'. ========"), Type_reference_directive_0_was_successfully_resolved_to_1_primary_Colon_2: diag(6119, ts.DiagnosticCategory.Message, "Type_reference_directive_0_was_successfully_resolved_to_1_primary_Colon_2_6119", "======== Type reference directive '{0}' was successfully resolved to '{1}', primary: {2}. ========"), Type_reference_directive_0_was_not_resolved: diag(6120, ts.DiagnosticCategory.Message, "Type_reference_directive_0_was_not_resolved_6120", "======== Type reference directive '{0}' was not resolved. ========"), Resolving_with_primary_search_path_0: diag(6121, ts.DiagnosticCategory.Message, "Resolving_with_primary_search_path_0_6121", "Resolving with primary search path '{0}'."), Root_directory_cannot_be_determined_skipping_primary_search_paths: diag(6122, ts.DiagnosticCategory.Message, "Root_directory_cannot_be_determined_skipping_primary_search_paths_6122", "Root directory cannot be determined, skipping primary search paths."), Resolving_type_reference_directive_0_containing_file_1_root_directory_not_set: diag(6123, ts.DiagnosticCategory.Message, "Resolving_type_reference_directive_0_containing_file_1_root_directory_not_set_6123", "======== Resolving type reference directive '{0}', containing file '{1}', root directory not set. ========"), Type_declaration_files_to_be_included_in_compilation: diag(6124, ts.DiagnosticCategory.Message, "Type_declaration_files_to_be_included_in_compilation_6124", "Type declaration files to be included in compilation."), Looking_up_in_node_modules_folder_initial_location_0: diag(6125, ts.DiagnosticCategory.Message, "Looking_up_in_node_modules_folder_initial_location_0_6125", "Looking up in 'node_modules' folder, initial location '{0}'."), Containing_file_is_not_specified_and_root_directory_cannot_be_determined_skipping_lookup_in_node_modules_folder: diag(6126, ts.DiagnosticCategory.Message, "Containing_file_is_not_specified_and_root_directory_cannot_be_determined_skipping_lookup_in_node_mod_6126", "Containing file is not specified and root directory cannot be determined, skipping lookup in 'node_modules' folder."), Resolving_type_reference_directive_0_containing_file_not_set_root_directory_1: diag(6127, ts.DiagnosticCategory.Message, "Resolving_type_reference_directive_0_containing_file_not_set_root_directory_1_6127", "======== Resolving type reference directive '{0}', containing file not set, root directory '{1}'. ========"), Resolving_type_reference_directive_0_containing_file_not_set_root_directory_not_set: diag(6128, ts.DiagnosticCategory.Message, "Resolving_type_reference_directive_0_containing_file_not_set_root_directory_not_set_6128", "======== Resolving type reference directive '{0}', containing file not set, root directory not set. ========"), Resolving_real_path_for_0_result_1: diag(6130, ts.DiagnosticCategory.Message, "Resolving_real_path_for_0_result_1_6130", "Resolving real path for '{0}', result '{1}'."), Cannot_compile_modules_using_option_0_unless_the_module_flag_is_amd_or_system: diag(6131, ts.DiagnosticCategory.Error, "Cannot_compile_modules_using_option_0_unless_the_module_flag_is_amd_or_system_6131", "Cannot compile modules using option '{0}' unless the '--module' flag is 'amd' or 'system'."), File_name_0_has_a_1_extension_stripping_it: diag(6132, ts.DiagnosticCategory.Message, "File_name_0_has_a_1_extension_stripping_it_6132", "File name '{0}' has a '{1}' extension - stripping it."), _0_is_declared_but_its_value_is_never_read: diag(6133, ts.DiagnosticCategory.Error, "_0_is_declared_but_its_value_is_never_read_6133", "'{0}' is declared but its value is never read.", /*reportsUnnecessary*/ true), Report_errors_on_unused_locals: diag(6134, ts.DiagnosticCategory.Message, "Report_errors_on_unused_locals_6134", "Report errors on unused locals."), Report_errors_on_unused_parameters: diag(6135, ts.DiagnosticCategory.Message, "Report_errors_on_unused_parameters_6135", "Report errors on unused parameters."), The_maximum_dependency_depth_to_search_under_node_modules_and_load_JavaScript_files: diag(6136, ts.DiagnosticCategory.Message, "The_maximum_dependency_depth_to_search_under_node_modules_and_load_JavaScript_files_6136", "The maximum dependency depth to search under node_modules and load JavaScript files."), Cannot_import_type_declaration_files_Consider_importing_0_instead_of_1: diag(6137, ts.DiagnosticCategory.Error, "Cannot_import_type_declaration_files_Consider_importing_0_instead_of_1_6137", "Cannot import type declaration files. Consider importing '{0}' instead of '{1}'."), Property_0_is_declared_but_its_value_is_never_read: diag(6138, ts.DiagnosticCategory.Error, "Property_0_is_declared_but_its_value_is_never_read_6138", "Property '{0}' is declared but its value is never read.", /*reportsUnnecessary*/ true), Import_emit_helpers_from_tslib: diag(6139, ts.DiagnosticCategory.Message, "Import_emit_helpers_from_tslib_6139", "Import emit helpers from 'tslib'."), Auto_discovery_for_typings_is_enabled_in_project_0_Running_extra_resolution_pass_for_module_1_using_cache_location_2: diag(6140, ts.DiagnosticCategory.Error, "Auto_discovery_for_typings_is_enabled_in_project_0_Running_extra_resolution_pass_for_module_1_using__6140", "Auto discovery for typings is enabled in project '{0}'. Running extra resolution pass for module '{1}' using cache location '{2}'."), Parse_in_strict_mode_and_emit_use_strict_for_each_source_file: diag(6141, ts.DiagnosticCategory.Message, "Parse_in_strict_mode_and_emit_use_strict_for_each_source_file_6141", "Parse in strict mode and emit \"use strict\" for each source file."), Module_0_was_resolved_to_1_but_jsx_is_not_set: diag(6142, ts.DiagnosticCategory.Error, "Module_0_was_resolved_to_1_but_jsx_is_not_set_6142", "Module '{0}' was resolved to '{1}', but '--jsx' is not set."), Module_0_was_resolved_as_locally_declared_ambient_module_in_file_1: diag(6144, ts.DiagnosticCategory.Message, "Module_0_was_resolved_as_locally_declared_ambient_module_in_file_1_6144", "Module '{0}' was resolved as locally declared ambient module in file '{1}'."), Module_0_was_resolved_as_ambient_module_declared_in_1_since_this_file_was_not_modified: diag(6145, ts.DiagnosticCategory.Message, "Module_0_was_resolved_as_ambient_module_declared_in_1_since_this_file_was_not_modified_6145", "Module '{0}' was resolved as ambient module declared in '{1}' since this file was not modified."), Specify_the_JSX_factory_function_to_use_when_targeting_react_JSX_emit_e_g_React_createElement_or_h: diag(6146, ts.DiagnosticCategory.Message, "Specify_the_JSX_factory_function_to_use_when_targeting_react_JSX_emit_e_g_React_createElement_or_h_6146", "Specify the JSX factory function to use when targeting 'react' JSX emit, e.g. 'React.createElement' or 'h'."), Resolution_for_module_0_was_found_in_cache_from_location_1: diag(6147, ts.DiagnosticCategory.Message, "Resolution_for_module_0_was_found_in_cache_from_location_1_6147", "Resolution for module '{0}' was found in cache from location '{1}'."), Directory_0_does_not_exist_skipping_all_lookups_in_it: diag(6148, ts.DiagnosticCategory.Message, "Directory_0_does_not_exist_skipping_all_lookups_in_it_6148", "Directory '{0}' does not exist, skipping all lookups in it."), Show_diagnostic_information: diag(6149, ts.DiagnosticCategory.Message, "Show_diagnostic_information_6149", "Show diagnostic information."), Show_verbose_diagnostic_information: diag(6150, ts.DiagnosticCategory.Message, "Show_verbose_diagnostic_information_6150", "Show verbose diagnostic information."), Emit_a_single_file_with_source_maps_instead_of_having_a_separate_file: diag(6151, ts.DiagnosticCategory.Message, "Emit_a_single_file_with_source_maps_instead_of_having_a_separate_file_6151", "Emit a single file with source maps instead of having a separate file."), Emit_the_source_alongside_the_sourcemaps_within_a_single_file_requires_inlineSourceMap_or_sourceMap_to_be_set: diag(6152, ts.DiagnosticCategory.Message, "Emit_the_source_alongside_the_sourcemaps_within_a_single_file_requires_inlineSourceMap_or_sourceMap__6152", "Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set."), Transpile_each_file_as_a_separate_module_similar_to_ts_transpileModule: diag(6153, ts.DiagnosticCategory.Message, "Transpile_each_file_as_a_separate_module_similar_to_ts_transpileModule_6153", "Transpile each file as a separate module (similar to 'ts.transpileModule')."), Print_names_of_generated_files_part_of_the_compilation: diag(6154, ts.DiagnosticCategory.Message, "Print_names_of_generated_files_part_of_the_compilation_6154", "Print names of generated files part of the compilation."), Print_names_of_files_part_of_the_compilation: diag(6155, ts.DiagnosticCategory.Message, "Print_names_of_files_part_of_the_compilation_6155", "Print names of files part of the compilation."), The_locale_used_when_displaying_messages_to_the_user_e_g_en_us: diag(6156, ts.DiagnosticCategory.Message, "The_locale_used_when_displaying_messages_to_the_user_e_g_en_us_6156", "The locale used when displaying messages to the user (e.g. 'en-us')"), Do_not_generate_custom_helper_functions_like_extends_in_compiled_output: diag(6157, ts.DiagnosticCategory.Message, "Do_not_generate_custom_helper_functions_like_extends_in_compiled_output_6157", "Do not generate custom helper functions like '__extends' in compiled output."), Do_not_include_the_default_library_file_lib_d_ts: diag(6158, ts.DiagnosticCategory.Message, "Do_not_include_the_default_library_file_lib_d_ts_6158", "Do not include the default library file (lib.d.ts)."), Do_not_add_triple_slash_references_or_imported_modules_to_the_list_of_compiled_files: diag(6159, ts.DiagnosticCategory.Message, "Do_not_add_triple_slash_references_or_imported_modules_to_the_list_of_compiled_files_6159", "Do not add triple-slash references or imported modules to the list of compiled files."), Deprecated_Use_skipLibCheck_instead_Skip_type_checking_of_default_library_declaration_files: diag(6160, ts.DiagnosticCategory.Message, "Deprecated_Use_skipLibCheck_instead_Skip_type_checking_of_default_library_declaration_files_6160", "[Deprecated] Use '--skipLibCheck' instead. Skip type checking of default library declaration files."), List_of_folders_to_include_type_definitions_from: diag(6161, ts.DiagnosticCategory.Message, "List_of_folders_to_include_type_definitions_from_6161", "List of folders to include type definitions from."), Disable_size_limitations_on_JavaScript_projects: diag(6162, ts.DiagnosticCategory.Message, "Disable_size_limitations_on_JavaScript_projects_6162", "Disable size limitations on JavaScript projects."), The_character_set_of_the_input_files: diag(6163, ts.DiagnosticCategory.Message, "The_character_set_of_the_input_files_6163", "The character set of the input files."), Do_not_truncate_error_messages: diag(6165, ts.DiagnosticCategory.Message, "Do_not_truncate_error_messages_6165", "Do not truncate error messages."), Output_directory_for_generated_declaration_files: diag(6166, ts.DiagnosticCategory.Message, "Output_directory_for_generated_declaration_files_6166", "Output directory for generated declaration files."), A_series_of_entries_which_re_map_imports_to_lookup_locations_relative_to_the_baseUrl: diag(6167, ts.DiagnosticCategory.Message, "A_series_of_entries_which_re_map_imports_to_lookup_locations_relative_to_the_baseUrl_6167", "A series of entries which re-map imports to lookup locations relative to the 'baseUrl'."), List_of_root_folders_whose_combined_content_represents_the_structure_of_the_project_at_runtime: diag(6168, ts.DiagnosticCategory.Message, "List_of_root_folders_whose_combined_content_represents_the_structure_of_the_project_at_runtime_6168", "List of root folders whose combined content represents the structure of the project at runtime."), Show_all_compiler_options: diag(6169, ts.DiagnosticCategory.Message, "Show_all_compiler_options_6169", "Show all compiler options."), Deprecated_Use_outFile_instead_Concatenate_and_emit_output_to_single_file: diag(6170, ts.DiagnosticCategory.Message, "Deprecated_Use_outFile_instead_Concatenate_and_emit_output_to_single_file_6170", "[Deprecated] Use '--outFile' instead. Concatenate and emit output to single file"), Command_line_Options: diag(6171, ts.DiagnosticCategory.Message, "Command_line_Options_6171", "Command-line Options"), Provide_full_support_for_iterables_in_for_of_spread_and_destructuring_when_targeting_ES5_or_ES3: diag(6179, ts.DiagnosticCategory.Message, "Provide_full_support_for_iterables_in_for_of_spread_and_destructuring_when_targeting_ES5_or_ES3_6179", "Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'."), Enable_all_strict_type_checking_options: diag(6180, ts.DiagnosticCategory.Message, "Enable_all_strict_type_checking_options_6180", "Enable all strict type-checking options."), Scoped_package_detected_looking_in_0: diag(6182, ts.DiagnosticCategory.Message, "Scoped_package_detected_looking_in_0_6182", "Scoped package detected, looking in '{0}'"), Reusing_resolution_of_module_0_from_1_of_old_program_it_was_successfully_resolved_to_2: diag(6183, ts.DiagnosticCategory.Message, "Reusing_resolution_of_module_0_from_1_of_old_program_it_was_successfully_resolved_to_2_6183", "Reusing resolution of module '{0}' from '{1}' of old program, it was successfully resolved to '{2}'."), Reusing_resolution_of_module_0_from_1_of_old_program_it_was_successfully_resolved_to_2_with_Package_ID_3: diag(6184, ts.DiagnosticCategory.Message, "Reusing_resolution_of_module_0_from_1_of_old_program_it_was_successfully_resolved_to_2_with_Package__6184", "Reusing resolution of module '{0}' from '{1}' of old program, it was successfully resolved to '{2}' with Package ID '{3}'."), Enable_strict_checking_of_function_types: diag(6186, ts.DiagnosticCategory.Message, "Enable_strict_checking_of_function_types_6186", "Enable strict checking of function types."), Enable_strict_checking_of_property_initialization_in_classes: diag(6187, ts.DiagnosticCategory.Message, "Enable_strict_checking_of_property_initialization_in_classes_6187", "Enable strict checking of property initialization in classes."), Numeric_separators_are_not_allowed_here: diag(6188, ts.DiagnosticCategory.Error, "Numeric_separators_are_not_allowed_here_6188", "Numeric separators are not allowed here."), Multiple_consecutive_numeric_separators_are_not_permitted: diag(6189, ts.DiagnosticCategory.Error, "Multiple_consecutive_numeric_separators_are_not_permitted_6189", "Multiple consecutive numeric separators are not permitted."), Whether_to_keep_outdated_console_output_in_watch_mode_instead_of_clearing_the_screen: diag(6191, ts.DiagnosticCategory.Message, "Whether_to_keep_outdated_console_output_in_watch_mode_instead_of_clearing_the_screen_6191", "Whether to keep outdated console output in watch mode instead of clearing the screen."), All_imports_in_import_declaration_are_unused: diag(6192, ts.DiagnosticCategory.Error, "All_imports_in_import_declaration_are_unused_6192", "All imports in import declaration are unused.", /*reportsUnnecessary*/ true), Found_1_error_Watching_for_file_changes: diag(6193, ts.DiagnosticCategory.Message, "Found_1_error_Watching_for_file_changes_6193", "Found 1 error. Watching for file changes."), Found_0_errors_Watching_for_file_changes: diag(6194, ts.DiagnosticCategory.Message, "Found_0_errors_Watching_for_file_changes_6194", "Found {0} errors. Watching for file changes."), Resolve_keyof_to_string_valued_property_names_only_no_numbers_or_symbols: diag(6195, ts.DiagnosticCategory.Message, "Resolve_keyof_to_string_valued_property_names_only_no_numbers_or_symbols_6195", "Resolve 'keyof' to string valued property names only (no numbers or symbols)."), _0_is_declared_but_never_used: diag(6196, ts.DiagnosticCategory.Error, "_0_is_declared_but_never_used_6196", "'{0}' is declared but never used.", /*reportsUnnecessary*/ true), Include_modules_imported_with_json_extension: diag(6197, ts.DiagnosticCategory.Message, "Include_modules_imported_with_json_extension_6197", "Include modules imported with '.json' extension"), All_destructured_elements_are_unused: diag(6198, ts.DiagnosticCategory.Error, "All_destructured_elements_are_unused_6198", "All destructured elements are unused.", /*reportsUnnecessary*/ true), All_variables_are_unused: diag(6199, ts.DiagnosticCategory.Error, "All_variables_are_unused_6199", "All variables are unused.", /*reportsUnnecessary*/ true), Definitions_of_the_following_identifiers_conflict_with_those_in_another_file_Colon_0: diag(6200, ts.DiagnosticCategory.Error, "Definitions_of_the_following_identifiers_conflict_with_those_in_another_file_Colon_0_6200", "Definitions of the following identifiers conflict with those in another file: {0}"), Conflicts_are_in_this_file: diag(6201, ts.DiagnosticCategory.Message, "Conflicts_are_in_this_file_6201", "Conflicts are in this file."), Project_references_may_not_form_a_circular_graph_Cycle_detected_Colon_0: diag(6202, ts.DiagnosticCategory.Error, "Project_references_may_not_form_a_circular_graph_Cycle_detected_Colon_0_6202", "Project references may not form a circular graph. Cycle detected: {0}"), _0_was_also_declared_here: diag(6203, ts.DiagnosticCategory.Message, "_0_was_also_declared_here_6203", "'{0}' was also declared here."), and_here: diag(6204, ts.DiagnosticCategory.Message, "and_here_6204", "and here."), All_type_parameters_are_unused: diag(6205, ts.DiagnosticCategory.Error, "All_type_parameters_are_unused_6205", "All type parameters are unused."), package_json_has_a_typesVersions_field_with_version_specific_path_mappings: diag(6206, ts.DiagnosticCategory.Message, "package_json_has_a_typesVersions_field_with_version_specific_path_mappings_6206", "'package.json' has a 'typesVersions' field with version-specific path mappings."), package_json_does_not_have_a_typesVersions_entry_that_matches_version_0: diag(6207, ts.DiagnosticCategory.Message, "package_json_does_not_have_a_typesVersions_entry_that_matches_version_0_6207", "'package.json' does not have a 'typesVersions' entry that matches version '{0}'."), package_json_has_a_typesVersions_entry_0_that_matches_compiler_version_1_looking_for_a_pattern_to_match_module_name_2: diag(6208, ts.DiagnosticCategory.Message, "package_json_has_a_typesVersions_entry_0_that_matches_compiler_version_1_looking_for_a_pattern_to_ma_6208", "'package.json' has a 'typesVersions' entry '{0}' that matches compiler version '{1}', looking for a pattern to match module name '{2}'."), package_json_has_a_typesVersions_entry_0_that_is_not_a_valid_semver_range: diag(6209, ts.DiagnosticCategory.Message, "package_json_has_a_typesVersions_entry_0_that_is_not_a_valid_semver_range_6209", "'package.json' has a 'typesVersions' entry '{0}' that is not a valid semver range."), An_argument_for_0_was_not_provided: diag(6210, ts.DiagnosticCategory.Message, "An_argument_for_0_was_not_provided_6210", "An argument for '{0}' was not provided."), An_argument_matching_this_binding_pattern_was_not_provided: diag(6211, ts.DiagnosticCategory.Message, "An_argument_matching_this_binding_pattern_was_not_provided_6211", "An argument matching this binding pattern was not provided."), Did_you_mean_to_call_this_expression: diag(6212, ts.DiagnosticCategory.Message, "Did_you_mean_to_call_this_expression_6212", "Did you mean to call this expression?"), Did_you_mean_to_use_new_with_this_expression: diag(6213, ts.DiagnosticCategory.Message, "Did_you_mean_to_use_new_with_this_expression_6213", "Did you mean to use 'new' with this expression?"), Enable_strict_bind_call_and_apply_methods_on_functions: diag(6214, ts.DiagnosticCategory.Message, "Enable_strict_bind_call_and_apply_methods_on_functions_6214", "Enable strict 'bind', 'call', and 'apply' methods on functions."), Using_compiler_options_of_project_reference_redirect_0: diag(6215, ts.DiagnosticCategory.Message, "Using_compiler_options_of_project_reference_redirect_0_6215", "Using compiler options of project reference redirect '{0}'."), Found_1_error: diag(6216, ts.DiagnosticCategory.Message, "Found_1_error_6216", "Found 1 error."), Found_0_errors: diag(6217, ts.DiagnosticCategory.Message, "Found_0_errors_6217", "Found {0} errors."), Module_name_0_was_successfully_resolved_to_1_with_Package_ID_2: diag(6218, ts.DiagnosticCategory.Message, "Module_name_0_was_successfully_resolved_to_1_with_Package_ID_2_6218", "======== Module name '{0}' was successfully resolved to '{1}' with Package ID '{2}'. ========"), Type_reference_directive_0_was_successfully_resolved_to_1_with_Package_ID_2_primary_Colon_3: diag(6219, ts.DiagnosticCategory.Message, "Type_reference_directive_0_was_successfully_resolved_to_1_with_Package_ID_2_primary_Colon_3_6219", "======== Type reference directive '{0}' was successfully resolved to '{1}' with Package ID '{2}', primary: {3}. ========"), package_json_had_a_falsy_0_field: diag(6220, ts.DiagnosticCategory.Message, "package_json_had_a_falsy_0_field_6220", "'package.json' had a falsy '{0}' field."), Disable_use_of_source_files_instead_of_declaration_files_from_referenced_projects: diag(6221, ts.DiagnosticCategory.Message, "Disable_use_of_source_files_instead_of_declaration_files_from_referenced_projects_6221", "Disable use of source files instead of declaration files from referenced projects."), Emit_class_fields_with_Define_instead_of_Set: diag(6222, ts.DiagnosticCategory.Message, "Emit_class_fields_with_Define_instead_of_Set_6222", "Emit class fields with Define instead of Set."), Generates_a_CPU_profile: diag(6223, ts.DiagnosticCategory.Message, "Generates_a_CPU_profile_6223", "Generates a CPU profile."), Disable_solution_searching_for_this_project: diag(6224, ts.DiagnosticCategory.Message, "Disable_solution_searching_for_this_project_6224", "Disable solution searching for this project."), Specify_strategy_for_watching_file_Colon_FixedPollingInterval_default_PriorityPollingInterval_DynamicPriorityPolling_FixedChunkSizePolling_UseFsEvents_UseFsEventsOnParentDirectory: diag(6225, ts.DiagnosticCategory.Message, "Specify_strategy_for_watching_file_Colon_FixedPollingInterval_default_PriorityPollingInterval_Dynami_6225", "Specify strategy for watching file: 'FixedPollingInterval' (default), 'PriorityPollingInterval', 'DynamicPriorityPolling', 'FixedChunkSizePolling', 'UseFsEvents', 'UseFsEventsOnParentDirectory'."), Specify_strategy_for_watching_directory_on_platforms_that_don_t_support_recursive_watching_natively_Colon_UseFsEvents_default_FixedPollingInterval_DynamicPriorityPolling_FixedChunkSizePolling: diag(6226, ts.DiagnosticCategory.Message, "Specify_strategy_for_watching_directory_on_platforms_that_don_t_support_recursive_watching_natively__6226", "Specify strategy for watching directory on platforms that don't support recursive watching natively: 'UseFsEvents' (default), 'FixedPollingInterval', 'DynamicPriorityPolling', 'FixedChunkSizePolling'."), Specify_strategy_for_creating_a_polling_watch_when_it_fails_to_create_using_file_system_events_Colon_FixedInterval_default_PriorityInterval_DynamicPriority_FixedChunkSize: diag(6227, ts.DiagnosticCategory.Message, "Specify_strategy_for_creating_a_polling_watch_when_it_fails_to_create_using_file_system_events_Colon_6227", "Specify strategy for creating a polling watch when it fails to create using file system events: 'FixedInterval' (default), 'PriorityInterval', 'DynamicPriority', 'FixedChunkSize'."), Tag_0_expects_at_least_1_arguments_but_the_JSX_factory_2_provides_at_most_3: diag(6229, ts.DiagnosticCategory.Error, "Tag_0_expects_at_least_1_arguments_but_the_JSX_factory_2_provides_at_most_3_6229", "Tag '{0}' expects at least '{1}' arguments, but the JSX factory '{2}' provides at most '{3}'."), Option_0_can_only_be_specified_in_tsconfig_json_file_or_set_to_false_or_null_on_command_line: diag(6230, ts.DiagnosticCategory.Error, "Option_0_can_only_be_specified_in_tsconfig_json_file_or_set_to_false_or_null_on_command_line_6230", "Option '{0}' can only be specified in 'tsconfig.json' file or set to 'false' or 'null' on command line."), Could_not_resolve_the_path_0_with_the_extensions_Colon_1: diag(6231, ts.DiagnosticCategory.Error, "Could_not_resolve_the_path_0_with_the_extensions_Colon_1_6231", "Could not resolve the path '{0}' with the extensions: {1}."), Declaration_augments_declaration_in_another_file_This_cannot_be_serialized: diag(6232, ts.DiagnosticCategory.Error, "Declaration_augments_declaration_in_another_file_This_cannot_be_serialized_6232", "Declaration augments declaration in another file. This cannot be serialized."), This_is_the_declaration_being_augmented_Consider_moving_the_augmenting_declaration_into_the_same_file: diag(6233, ts.DiagnosticCategory.Error, "This_is_the_declaration_being_augmented_Consider_moving_the_augmenting_declaration_into_the_same_fil_6233", "This is the declaration being augmented. Consider moving the augmenting declaration into the same file."), This_expression_is_not_callable_because_it_is_a_get_accessor_Did_you_mean_to_use_it_without: diag(6234, ts.DiagnosticCategory.Error, "This_expression_is_not_callable_because_it_is_a_get_accessor_Did_you_mean_to_use_it_without_6234", "This expression is not callable because it is a 'get' accessor. Did you mean to use it without '()'?"), Disable_loading_referenced_projects: diag(6235, ts.DiagnosticCategory.Message, "Disable_loading_referenced_projects_6235", "Disable loading referenced projects."), Arguments_for_the_rest_parameter_0_were_not_provided: diag(6236, ts.DiagnosticCategory.Error, "Arguments_for_the_rest_parameter_0_were_not_provided_6236", "Arguments for the rest parameter '{0}' were not provided."), Generates_an_event_trace_and_a_list_of_types: diag(6237, ts.DiagnosticCategory.Message, "Generates_an_event_trace_and_a_list_of_types_6237", "Generates an event trace and a list of types."), Specify_the_module_specifier_to_be_used_to_import_the_jsx_and_jsxs_factory_functions_from_eg_react: diag(6238, ts.DiagnosticCategory.Error, "Specify_the_module_specifier_to_be_used_to_import_the_jsx_and_jsxs_factory_functions_from_eg_react_6238", "Specify the module specifier to be used to import the 'jsx' and 'jsxs' factory functions from. eg, react"), File_0_exists_according_to_earlier_cached_lookups: diag(6239, ts.DiagnosticCategory.Message, "File_0_exists_according_to_earlier_cached_lookups_6239", "File '{0}' exists according to earlier cached lookups."), File_0_does_not_exist_according_to_earlier_cached_lookups: diag(6240, ts.DiagnosticCategory.Message, "File_0_does_not_exist_according_to_earlier_cached_lookups_6240", "File '{0}' does not exist according to earlier cached lookups."), Resolution_for_type_reference_directive_0_was_found_in_cache_from_location_1: diag(6241, ts.DiagnosticCategory.Message, "Resolution_for_type_reference_directive_0_was_found_in_cache_from_location_1_6241", "Resolution for type reference directive '{0}' was found in cache from location '{1}'."), Resolving_type_reference_directive_0_containing_file_1: diag(6242, ts.DiagnosticCategory.Message, "Resolving_type_reference_directive_0_containing_file_1_6242", "======== Resolving type reference directive '{0}', containing file '{1}'. ========"), Interpret_optional_property_types_as_written_rather_than_adding_undefined: diag(6243, ts.DiagnosticCategory.Message, "Interpret_optional_property_types_as_written_rather_than_adding_undefined_6243", "Interpret optional property types as written, rather than adding 'undefined'."), Modules: diag(6244, ts.DiagnosticCategory.Message, "Modules_6244", "Modules"), File_Management: diag(6245, ts.DiagnosticCategory.Message, "File_Management_6245", "File Management"), Emit: diag(6246, ts.DiagnosticCategory.Message, "Emit_6246", "Emit"), JavaScript_Support: diag(6247, ts.DiagnosticCategory.Message, "JavaScript_Support_6247", "JavaScript Support"), Type_Checking: diag(6248, ts.DiagnosticCategory.Message, "Type_Checking_6248", "Type Checking"), Editor_Support: diag(6249, ts.DiagnosticCategory.Message, "Editor_Support_6249", "Editor Support"), Watch_and_Build_Modes: diag(6250, ts.DiagnosticCategory.Message, "Watch_and_Build_Modes_6250", "Watch and Build Modes"), Compiler_Diagnostics: diag(6251, ts.DiagnosticCategory.Message, "Compiler_Diagnostics_6251", "Compiler Diagnostics"), Interop_Constraints: diag(6252, ts.DiagnosticCategory.Message, "Interop_Constraints_6252", "Interop Constraints"), Backwards_Compatibility: diag(6253, ts.DiagnosticCategory.Message, "Backwards_Compatibility_6253", "Backwards Compatibility"), Language_and_Environment: diag(6254, ts.DiagnosticCategory.Message, "Language_and_Environment_6254", "Language and Environment"), Projects: diag(6255, ts.DiagnosticCategory.Message, "Projects_6255", "Projects"), Output_Formatting: diag(6256, ts.DiagnosticCategory.Message, "Output_Formatting_6256", "Output Formatting"), Completeness: diag(6257, ts.DiagnosticCategory.Message, "Completeness_6257", "Completeness"), _0_should_be_set_inside_the_compilerOptions_object_of_the_config_json_file: diag(6258, ts.DiagnosticCategory.Error, "_0_should_be_set_inside_the_compilerOptions_object_of_the_config_json_file_6258", "'{0}' should be set inside the 'compilerOptions' object of the config json file"), Found_1_error_in_1: diag(6259, ts.DiagnosticCategory.Message, "Found_1_error_in_1_6259", "Found 1 error in {1}"), Found_0_errors_in_the_same_file_starting_at_Colon_1: diag(6260, ts.DiagnosticCategory.Message, "Found_0_errors_in_the_same_file_starting_at_Colon_1_6260", "Found {0} errors in the same file, starting at: {1}"), Found_0_errors_in_1_files: diag(6261, ts.DiagnosticCategory.Message, "Found_0_errors_in_1_files_6261", "Found {0} errors in {1} files."), Directory_0_has_no_containing_package_json_scope_Imports_will_not_resolve: diag(6270, ts.DiagnosticCategory.Message, "Directory_0_has_no_containing_package_json_scope_Imports_will_not_resolve_6270", "Directory '{0}' has no containing package.json scope. Imports will not resolve."), Import_specifier_0_does_not_exist_in_package_json_scope_at_path_1: diag(6271, ts.DiagnosticCategory.Message, "Import_specifier_0_does_not_exist_in_package_json_scope_at_path_1_6271", "Import specifier '{0}' does not exist in package.json scope at path '{1}'."), Invalid_import_specifier_0_has_no_possible_resolutions: diag(6272, ts.DiagnosticCategory.Message, "Invalid_import_specifier_0_has_no_possible_resolutions_6272", "Invalid import specifier '{0}' has no possible resolutions."), package_json_scope_0_has_no_imports_defined: diag(6273, ts.DiagnosticCategory.Message, "package_json_scope_0_has_no_imports_defined_6273", "package.json scope '{0}' has no imports defined."), package_json_scope_0_explicitly_maps_specifier_1_to_null: diag(6274, ts.DiagnosticCategory.Message, "package_json_scope_0_explicitly_maps_specifier_1_to_null_6274", "package.json scope '{0}' explicitly maps specifier '{1}' to null."), package_json_scope_0_has_invalid_type_for_target_of_specifier_1: diag(6275, ts.DiagnosticCategory.Message, "package_json_scope_0_has_invalid_type_for_target_of_specifier_1_6275", "package.json scope '{0}' has invalid type for target of specifier '{1}'"), Export_specifier_0_does_not_exist_in_package_json_scope_at_path_1: diag(6276, ts.DiagnosticCategory.Message, "Export_specifier_0_does_not_exist_in_package_json_scope_at_path_1_6276", "Export specifier '{0}' does not exist in package.json scope at path '{1}'."), Enable_project_compilation: diag(6302, ts.DiagnosticCategory.Message, "Enable_project_compilation_6302", "Enable project compilation"), Composite_projects_may_not_disable_declaration_emit: diag(6304, ts.DiagnosticCategory.Error, "Composite_projects_may_not_disable_declaration_emit_6304", "Composite projects may not disable declaration emit."), Output_file_0_has_not_been_built_from_source_file_1: diag(6305, ts.DiagnosticCategory.Error, "Output_file_0_has_not_been_built_from_source_file_1_6305", "Output file '{0}' has not been built from source file '{1}'."), Referenced_project_0_must_have_setting_composite_Colon_true: diag(6306, ts.DiagnosticCategory.Error, "Referenced_project_0_must_have_setting_composite_Colon_true_6306", "Referenced project '{0}' must have setting \"composite\": true."), File_0_is_not_listed_within_the_file_list_of_project_1_Projects_must_list_all_files_or_use_an_include_pattern: diag(6307, ts.DiagnosticCategory.Error, "File_0_is_not_listed_within_the_file_list_of_project_1_Projects_must_list_all_files_or_use_an_includ_6307", "File '{0}' is not listed within the file list of project '{1}'. Projects must list all files or use an 'include' pattern."), Cannot_prepend_project_0_because_it_does_not_have_outFile_set: diag(6308, ts.DiagnosticCategory.Error, "Cannot_prepend_project_0_because_it_does_not_have_outFile_set_6308", "Cannot prepend project '{0}' because it does not have 'outFile' set"), Output_file_0_from_project_1_does_not_exist: diag(6309, ts.DiagnosticCategory.Error, "Output_file_0_from_project_1_does_not_exist_6309", "Output file '{0}' from project '{1}' does not exist"), Referenced_project_0_may_not_disable_emit: diag(6310, ts.DiagnosticCategory.Error, "Referenced_project_0_may_not_disable_emit_6310", "Referenced project '{0}' may not disable emit."), Project_0_is_out_of_date_because_oldest_output_1_is_older_than_newest_input_2: diag(6350, ts.DiagnosticCategory.Message, "Project_0_is_out_of_date_because_oldest_output_1_is_older_than_newest_input_2_6350", "Project '{0}' is out of date because oldest output '{1}' is older than newest input '{2}'"), Project_0_is_up_to_date_because_newest_input_1_is_older_than_oldest_output_2: diag(6351, ts.DiagnosticCategory.Message, "Project_0_is_up_to_date_because_newest_input_1_is_older_than_oldest_output_2_6351", "Project '{0}' is up to date because newest input '{1}' is older than oldest output '{2}'"), Project_0_is_out_of_date_because_output_file_1_does_not_exist: diag(6352, ts.DiagnosticCategory.Message, "Project_0_is_out_of_date_because_output_file_1_does_not_exist_6352", "Project '{0}' is out of date because output file '{1}' does not exist"), Project_0_is_out_of_date_because_its_dependency_1_is_out_of_date: diag(6353, ts.DiagnosticCategory.Message, "Project_0_is_out_of_date_because_its_dependency_1_is_out_of_date_6353", "Project '{0}' is out of date because its dependency '{1}' is out of date"), Project_0_is_up_to_date_with_d_ts_files_from_its_dependencies: diag(6354, ts.DiagnosticCategory.Message, "Project_0_is_up_to_date_with_d_ts_files_from_its_dependencies_6354", "Project '{0}' is up to date with .d.ts files from its dependencies"), Projects_in_this_build_Colon_0: diag(6355, ts.DiagnosticCategory.Message, "Projects_in_this_build_Colon_0_6355", "Projects in this build: {0}"), A_non_dry_build_would_delete_the_following_files_Colon_0: diag(6356, ts.DiagnosticCategory.Message, "A_non_dry_build_would_delete_the_following_files_Colon_0_6356", "A non-dry build would delete the following files: {0}"), A_non_dry_build_would_build_project_0: diag(6357, ts.DiagnosticCategory.Message, "A_non_dry_build_would_build_project_0_6357", "A non-dry build would build project '{0}'"), Building_project_0: diag(6358, ts.DiagnosticCategory.Message, "Building_project_0_6358", "Building project '{0}'..."), Updating_output_timestamps_of_project_0: diag(6359, ts.DiagnosticCategory.Message, "Updating_output_timestamps_of_project_0_6359", "Updating output timestamps of project '{0}'..."), Project_0_is_up_to_date: diag(6361, ts.DiagnosticCategory.Message, "Project_0_is_up_to_date_6361", "Project '{0}' is up to date"), Skipping_build_of_project_0_because_its_dependency_1_has_errors: diag(6362, ts.DiagnosticCategory.Message, "Skipping_build_of_project_0_because_its_dependency_1_has_errors_6362", "Skipping build of project '{0}' because its dependency '{1}' has errors"), Project_0_can_t_be_built_because_its_dependency_1_has_errors: diag(6363, ts.DiagnosticCategory.Message, "Project_0_can_t_be_built_because_its_dependency_1_has_errors_6363", "Project '{0}' can't be built because its dependency '{1}' has errors"), Build_one_or_more_projects_and_their_dependencies_if_out_of_date: diag(6364, ts.DiagnosticCategory.Message, "Build_one_or_more_projects_and_their_dependencies_if_out_of_date_6364", "Build one or more projects and their dependencies, if out of date"), Delete_the_outputs_of_all_projects: diag(6365, ts.DiagnosticCategory.Message, "Delete_the_outputs_of_all_projects_6365", "Delete the outputs of all projects."), Show_what_would_be_built_or_deleted_if_specified_with_clean: diag(6367, ts.DiagnosticCategory.Message, "Show_what_would_be_built_or_deleted_if_specified_with_clean_6367", "Show what would be built (or deleted, if specified with '--clean')"), Option_build_must_be_the_first_command_line_argument: diag(6369, ts.DiagnosticCategory.Error, "Option_build_must_be_the_first_command_line_argument_6369", "Option '--build' must be the first command line argument."), Options_0_and_1_cannot_be_combined: diag(6370, ts.DiagnosticCategory.Error, "Options_0_and_1_cannot_be_combined_6370", "Options '{0}' and '{1}' cannot be combined."), Updating_unchanged_output_timestamps_of_project_0: diag(6371, ts.DiagnosticCategory.Message, "Updating_unchanged_output_timestamps_of_project_0_6371", "Updating unchanged output timestamps of project '{0}'..."), Project_0_is_out_of_date_because_output_of_its_dependency_1_has_changed: diag(6372, ts.DiagnosticCategory.Message, "Project_0_is_out_of_date_because_output_of_its_dependency_1_has_changed_6372", "Project '{0}' is out of date because output of its dependency '{1}' has changed"), Updating_output_of_project_0: diag(6373, ts.DiagnosticCategory.Message, "Updating_output_of_project_0_6373", "Updating output of project '{0}'..."), A_non_dry_build_would_update_timestamps_for_output_of_project_0: diag(6374, ts.DiagnosticCategory.Message, "A_non_dry_build_would_update_timestamps_for_output_of_project_0_6374", "A non-dry build would update timestamps for output of project '{0}'"), A_non_dry_build_would_update_output_of_project_0: diag(6375, ts.DiagnosticCategory.Message, "A_non_dry_build_would_update_output_of_project_0_6375", "A non-dry build would update output of project '{0}'"), Cannot_update_output_of_project_0_because_there_was_error_reading_file_1: diag(6376, ts.DiagnosticCategory.Message, "Cannot_update_output_of_project_0_because_there_was_error_reading_file_1_6376", "Cannot update output of project '{0}' because there was error reading file '{1}'"), Cannot_write_file_0_because_it_will_overwrite_tsbuildinfo_file_generated_by_referenced_project_1: diag(6377, ts.DiagnosticCategory.Error, "Cannot_write_file_0_because_it_will_overwrite_tsbuildinfo_file_generated_by_referenced_project_1_6377", "Cannot write file '{0}' because it will overwrite '.tsbuildinfo' file generated by referenced project '{1}'"), Composite_projects_may_not_disable_incremental_compilation: diag(6379, ts.DiagnosticCategory.Error, "Composite_projects_may_not_disable_incremental_compilation_6379", "Composite projects may not disable incremental compilation."), Specify_file_to_store_incremental_compilation_information: diag(6380, ts.DiagnosticCategory.Message, "Specify_file_to_store_incremental_compilation_information_6380", "Specify file to store incremental compilation information"), Project_0_is_out_of_date_because_output_for_it_was_generated_with_version_1_that_differs_with_current_version_2: diag(6381, ts.DiagnosticCategory.Message, "Project_0_is_out_of_date_because_output_for_it_was_generated_with_version_1_that_differs_with_curren_6381", "Project '{0}' is out of date because output for it was generated with version '{1}' that differs with current version '{2}'"), Skipping_build_of_project_0_because_its_dependency_1_was_not_built: diag(6382, ts.DiagnosticCategory.Message, "Skipping_build_of_project_0_because_its_dependency_1_was_not_built_6382", "Skipping build of project '{0}' because its dependency '{1}' was not built"), Project_0_can_t_be_built_because_its_dependency_1_was_not_built: diag(6383, ts.DiagnosticCategory.Message, "Project_0_can_t_be_built_because_its_dependency_1_was_not_built_6383", "Project '{0}' can't be built because its dependency '{1}' was not built"), Have_recompiles_in_incremental_and_watch_assume_that_changes_within_a_file_will_only_affect_files_directly_depending_on_it: diag(6384, ts.DiagnosticCategory.Message, "Have_recompiles_in_incremental_and_watch_assume_that_changes_within_a_file_will_only_affect_files_di_6384", "Have recompiles in '--incremental' and '--watch' assume that changes within a file will only affect files directly depending on it."), _0_is_deprecated: diag(6385, ts.DiagnosticCategory.Suggestion, "_0_is_deprecated_6385", "'{0}' is deprecated.", /*reportsUnnecessary*/ undefined, /*elidedInCompatabilityPyramid*/ undefined, /*reportsDeprecated*/ true), Performance_timings_for_diagnostics_or_extendedDiagnostics_are_not_available_in_this_session_A_native_implementation_of_the_Web_Performance_API_could_not_be_found: diag(6386, ts.DiagnosticCategory.Message, "Performance_timings_for_diagnostics_or_extendedDiagnostics_are_not_available_in_this_session_A_nativ_6386", "Performance timings for '--diagnostics' or '--extendedDiagnostics' are not available in this session. A native implementation of the Web Performance API could not be found."), The_signature_0_of_1_is_deprecated: diag(6387, ts.DiagnosticCategory.Suggestion, "The_signature_0_of_1_is_deprecated_6387", "The signature '{0}' of '{1}' is deprecated.", /*reportsUnnecessary*/ undefined, /*elidedInCompatabilityPyramid*/ undefined, /*reportsDeprecated*/ true), Project_0_is_being_forcibly_rebuilt: diag(6388, ts.DiagnosticCategory.Message, "Project_0_is_being_forcibly_rebuilt_6388", "Project '{0}' is being forcibly rebuilt"), Reusing_resolution_of_module_0_from_1_of_old_program_it_was_not_resolved: diag(6389, ts.DiagnosticCategory.Message, "Reusing_resolution_of_module_0_from_1_of_old_program_it_was_not_resolved_6389", "Reusing resolution of module '{0}' from '{1}' of old program, it was not resolved."), Reusing_resolution_of_type_reference_directive_0_from_1_of_old_program_it_was_successfully_resolved_to_2: diag(6390, ts.DiagnosticCategory.Message, "Reusing_resolution_of_type_reference_directive_0_from_1_of_old_program_it_was_successfully_resolved__6390", "Reusing resolution of type reference directive '{0}' from '{1}' of old program, it was successfully resolved to '{2}'."), Reusing_resolution_of_type_reference_directive_0_from_1_of_old_program_it_was_successfully_resolved_to_2_with_Package_ID_3: diag(6391, ts.DiagnosticCategory.Message, "Reusing_resolution_of_type_reference_directive_0_from_1_of_old_program_it_was_successfully_resolved__6391", "Reusing resolution of type reference directive '{0}' from '{1}' of old program, it was successfully resolved to '{2}' with Package ID '{3}'."), Reusing_resolution_of_type_reference_directive_0_from_1_of_old_program_it_was_not_resolved: diag(6392, ts.DiagnosticCategory.Message, "Reusing_resolution_of_type_reference_directive_0_from_1_of_old_program_it_was_not_resolved_6392", "Reusing resolution of type reference directive '{0}' from '{1}' of old program, it was not resolved."), Reusing_resolution_of_module_0_from_1_found_in_cache_from_location_2_it_was_successfully_resolved_to_3: diag(6393, ts.DiagnosticCategory.Message, "Reusing_resolution_of_module_0_from_1_found_in_cache_from_location_2_it_was_successfully_resolved_to_6393", "Reusing resolution of module '{0}' from '{1}' found in cache from location '{2}', it was successfully resolved to '{3}'."), Reusing_resolution_of_module_0_from_1_found_in_cache_from_location_2_it_was_successfully_resolved_to_3_with_Package_ID_4: diag(6394, ts.DiagnosticCategory.Message, "Reusing_resolution_of_module_0_from_1_found_in_cache_from_location_2_it_was_successfully_resolved_to_6394", "Reusing resolution of module '{0}' from '{1}' found in cache from location '{2}', it was successfully resolved to '{3}' with Package ID '{4}'."), Reusing_resolution_of_module_0_from_1_found_in_cache_from_location_2_it_was_not_resolved: diag(6395, ts.DiagnosticCategory.Message, "Reusing_resolution_of_module_0_from_1_found_in_cache_from_location_2_it_was_not_resolved_6395", "Reusing resolution of module '{0}' from '{1}' found in cache from location '{2}', it was not resolved."), Reusing_resolution_of_type_reference_directive_0_from_1_found_in_cache_from_location_2_it_was_successfully_resolved_to_3: diag(6396, ts.DiagnosticCategory.Message, "Reusing_resolution_of_type_reference_directive_0_from_1_found_in_cache_from_location_2_it_was_succes_6396", "Reusing resolution of type reference directive '{0}' from '{1}' found in cache from location '{2}', it was successfully resolved to '{3}'."), Reusing_resolution_of_type_reference_directive_0_from_1_found_in_cache_from_location_2_it_was_successfully_resolved_to_3_with_Package_ID_4: diag(6397, ts.DiagnosticCategory.Message, "Reusing_resolution_of_type_reference_directive_0_from_1_found_in_cache_from_location_2_it_was_succes_6397", "Reusing resolution of type reference directive '{0}' from '{1}' found in cache from location '{2}', it was successfully resolved to '{3}' with Package ID '{4}'."), Reusing_resolution_of_type_reference_directive_0_from_1_found_in_cache_from_location_2_it_was_not_resolved: diag(6398, ts.DiagnosticCategory.Message, "Reusing_resolution_of_type_reference_directive_0_from_1_found_in_cache_from_location_2_it_was_not_re_6398", "Reusing resolution of type reference directive '{0}' from '{1}' found in cache from location '{2}', it was not resolved."), The_expected_type_comes_from_property_0_which_is_declared_here_on_type_1: diag(6500, ts.DiagnosticCategory.Message, "The_expected_type_comes_from_property_0_which_is_declared_here_on_type_1_6500", "The expected type comes from property '{0}' which is declared here on type '{1}'"), The_expected_type_comes_from_this_index_signature: diag(6501, ts.DiagnosticCategory.Message, "The_expected_type_comes_from_this_index_signature_6501", "The expected type comes from this index signature."), The_expected_type_comes_from_the_return_type_of_this_signature: diag(6502, ts.DiagnosticCategory.Message, "The_expected_type_comes_from_the_return_type_of_this_signature_6502", "The expected type comes from the return type of this signature."), Print_names_of_files_that_are_part_of_the_compilation_and_then_stop_processing: diag(6503, ts.DiagnosticCategory.Message, "Print_names_of_files_that_are_part_of_the_compilation_and_then_stop_processing_6503", "Print names of files that are part of the compilation and then stop processing."), File_0_is_a_JavaScript_file_Did_you_mean_to_enable_the_allowJs_option: diag(6504, ts.DiagnosticCategory.Error, "File_0_is_a_JavaScript_file_Did_you_mean_to_enable_the_allowJs_option_6504", "File '{0}' is a JavaScript file. Did you mean to enable the 'allowJs' option?"), Print_names_of_files_and_the_reason_they_are_part_of_the_compilation: diag(6505, ts.DiagnosticCategory.Message, "Print_names_of_files_and_the_reason_they_are_part_of_the_compilation_6505", "Print names of files and the reason they are part of the compilation."), Consider_adding_a_declare_modifier_to_this_class: diag(6506, ts.DiagnosticCategory.Message, "Consider_adding_a_declare_modifier_to_this_class_6506", "Consider adding a 'declare' modifier to this class."), Allow_JavaScript_files_to_be_a_part_of_your_program_Use_the_checkJS_option_to_get_errors_from_these_files: diag(6600, ts.DiagnosticCategory.Message, "Allow_JavaScript_files_to_be_a_part_of_your_program_Use_the_checkJS_option_to_get_errors_from_these__6600", "Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files."), Allow_import_x_from_y_when_a_module_doesn_t_have_a_default_export: diag(6601, ts.DiagnosticCategory.Message, "Allow_import_x_from_y_when_a_module_doesn_t_have_a_default_export_6601", "Allow 'import x from y' when a module doesn't have a default export."), Allow_accessing_UMD_globals_from_modules: diag(6602, ts.DiagnosticCategory.Message, "Allow_accessing_UMD_globals_from_modules_6602", "Allow accessing UMD globals from modules."), Disable_error_reporting_for_unreachable_code: diag(6603, ts.DiagnosticCategory.Message, "Disable_error_reporting_for_unreachable_code_6603", "Disable error reporting for unreachable code."), Disable_error_reporting_for_unused_labels: diag(6604, ts.DiagnosticCategory.Message, "Disable_error_reporting_for_unused_labels_6604", "Disable error reporting for unused labels."), Ensure_use_strict_is_always_emitted: diag(6605, ts.DiagnosticCategory.Message, "Ensure_use_strict_is_always_emitted_6605", "Ensure 'use strict' is always emitted."), Have_recompiles_in_projects_that_use_incremental_and_watch_mode_assume_that_changes_within_a_file_will_only_affect_files_directly_depending_on_it: diag(6606, ts.DiagnosticCategory.Message, "Have_recompiles_in_projects_that_use_incremental_and_watch_mode_assume_that_changes_within_a_file_wi_6606", "Have recompiles in projects that use 'incremental' and 'watch' mode assume that changes within a file will only affect files directly depending on it."), Specify_the_base_directory_to_resolve_non_relative_module_names: diag(6607, ts.DiagnosticCategory.Message, "Specify_the_base_directory_to_resolve_non_relative_module_names_6607", "Specify the base directory to resolve non-relative module names."), No_longer_supported_In_early_versions_manually_set_the_text_encoding_for_reading_files: diag(6608, ts.DiagnosticCategory.Message, "No_longer_supported_In_early_versions_manually_set_the_text_encoding_for_reading_files_6608", "No longer supported. In early versions, manually set the text encoding for reading files."), Enable_error_reporting_in_type_checked_JavaScript_files: diag(6609, ts.DiagnosticCategory.Message, "Enable_error_reporting_in_type_checked_JavaScript_files_6609", "Enable error reporting in type-checked JavaScript files."), Enable_constraints_that_allow_a_TypeScript_project_to_be_used_with_project_references: diag(6611, ts.DiagnosticCategory.Message, "Enable_constraints_that_allow_a_TypeScript_project_to_be_used_with_project_references_6611", "Enable constraints that allow a TypeScript project to be used with project references."), Generate_d_ts_files_from_TypeScript_and_JavaScript_files_in_your_project: diag(6612, ts.DiagnosticCategory.Message, "Generate_d_ts_files_from_TypeScript_and_JavaScript_files_in_your_project_6612", "Generate .d.ts files from TypeScript and JavaScript files in your project."), Specify_the_output_directory_for_generated_declaration_files: diag(6613, ts.DiagnosticCategory.Message, "Specify_the_output_directory_for_generated_declaration_files_6613", "Specify the output directory for generated declaration files."), Create_sourcemaps_for_d_ts_files: diag(6614, ts.DiagnosticCategory.Message, "Create_sourcemaps_for_d_ts_files_6614", "Create sourcemaps for d.ts files."), Output_compiler_performance_information_after_building: diag(6615, ts.DiagnosticCategory.Message, "Output_compiler_performance_information_after_building_6615", "Output compiler performance information after building."), Disables_inference_for_type_acquisition_by_looking_at_filenames_in_a_project: diag(6616, ts.DiagnosticCategory.Message, "Disables_inference_for_type_acquisition_by_looking_at_filenames_in_a_project_6616", "Disables inference for type acquisition by looking at filenames in a project."), Reduce_the_number_of_projects_loaded_automatically_by_TypeScript: diag(6617, ts.DiagnosticCategory.Message, "Reduce_the_number_of_projects_loaded_automatically_by_TypeScript_6617", "Reduce the number of projects loaded automatically by TypeScript."), Remove_the_20mb_cap_on_total_source_code_size_for_JavaScript_files_in_the_TypeScript_language_server: diag(6618, ts.DiagnosticCategory.Message, "Remove_the_20mb_cap_on_total_source_code_size_for_JavaScript_files_in_the_TypeScript_language_server_6618", "Remove the 20mb cap on total source code size for JavaScript files in the TypeScript language server."), Opt_a_project_out_of_multi_project_reference_checking_when_editing: diag(6619, ts.DiagnosticCategory.Message, "Opt_a_project_out_of_multi_project_reference_checking_when_editing_6619", "Opt a project out of multi-project reference checking when editing."), Disable_preferring_source_files_instead_of_declaration_files_when_referencing_composite_projects: diag(6620, ts.DiagnosticCategory.Message, "Disable_preferring_source_files_instead_of_declaration_files_when_referencing_composite_projects_6620", "Disable preferring source files instead of declaration files when referencing composite projects."), Emit_more_compliant_but_verbose_and_less_performant_JavaScript_for_iteration: diag(6621, ts.DiagnosticCategory.Message, "Emit_more_compliant_but_verbose_and_less_performant_JavaScript_for_iteration_6621", "Emit more compliant, but verbose and less performant JavaScript for iteration."), Emit_a_UTF_8_Byte_Order_Mark_BOM_in_the_beginning_of_output_files: diag(6622, ts.DiagnosticCategory.Message, "Emit_a_UTF_8_Byte_Order_Mark_BOM_in_the_beginning_of_output_files_6622", "Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files."), Only_output_d_ts_files_and_not_JavaScript_files: diag(6623, ts.DiagnosticCategory.Message, "Only_output_d_ts_files_and_not_JavaScript_files_6623", "Only output d.ts files and not JavaScript files."), Emit_design_type_metadata_for_decorated_declarations_in_source_files: diag(6624, ts.DiagnosticCategory.Message, "Emit_design_type_metadata_for_decorated_declarations_in_source_files_6624", "Emit design-type metadata for decorated declarations in source files."), Disable_the_type_acquisition_for_JavaScript_projects: diag(6625, ts.DiagnosticCategory.Message, "Disable_the_type_acquisition_for_JavaScript_projects_6625", "Disable the type acquisition for JavaScript projects"), Emit_additional_JavaScript_to_ease_support_for_importing_CommonJS_modules_This_enables_allowSyntheticDefaultImports_for_type_compatibility: diag(6626, ts.DiagnosticCategory.Message, "Emit_additional_JavaScript_to_ease_support_for_importing_CommonJS_modules_This_enables_allowSyntheti_6626", "Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility."), Filters_results_from_the_include_option: diag(6627, ts.DiagnosticCategory.Message, "Filters_results_from_the_include_option_6627", "Filters results from the `include` option."), Remove_a_list_of_directories_from_the_watch_process: diag(6628, ts.DiagnosticCategory.Message, "Remove_a_list_of_directories_from_the_watch_process_6628", "Remove a list of directories from the watch process."), Remove_a_list_of_files_from_the_watch_mode_s_processing: diag(6629, ts.DiagnosticCategory.Message, "Remove_a_list_of_files_from_the_watch_mode_s_processing_6629", "Remove a list of files from the watch mode's processing."), Enable_experimental_support_for_TC39_stage_2_draft_decorators: diag(6630, ts.DiagnosticCategory.Message, "Enable_experimental_support_for_TC39_stage_2_draft_decorators_6630", "Enable experimental support for TC39 stage 2 draft decorators."), Print_files_read_during_the_compilation_including_why_it_was_included: diag(6631, ts.DiagnosticCategory.Message, "Print_files_read_during_the_compilation_including_why_it_was_included_6631", "Print files read during the compilation including why it was included."), Output_more_detailed_compiler_performance_information_after_building: diag(6632, ts.DiagnosticCategory.Message, "Output_more_detailed_compiler_performance_information_after_building_6632", "Output more detailed compiler performance information after building."), Specify_one_or_more_path_or_node_module_references_to_base_configuration_files_from_which_settings_are_inherited: diag(6633, ts.DiagnosticCategory.Message, "Specify_one_or_more_path_or_node_module_references_to_base_configuration_files_from_which_settings_a_6633", "Specify one or more path or node module references to base configuration files from which settings are inherited."), Specify_what_approach_the_watcher_should_use_if_the_system_runs_out_of_native_file_watchers: diag(6634, ts.DiagnosticCategory.Message, "Specify_what_approach_the_watcher_should_use_if_the_system_runs_out_of_native_file_watchers_6634", "Specify what approach the watcher should use if the system runs out of native file watchers."), Include_a_list_of_files_This_does_not_support_glob_patterns_as_opposed_to_include: diag(6635, ts.DiagnosticCategory.Message, "Include_a_list_of_files_This_does_not_support_glob_patterns_as_opposed_to_include_6635", "Include a list of files. This does not support glob patterns, as opposed to `include`."), Build_all_projects_including_those_that_appear_to_be_up_to_date: diag(6636, ts.DiagnosticCategory.Message, "Build_all_projects_including_those_that_appear_to_be_up_to_date_6636", "Build all projects, including those that appear to be up to date."), Ensure_that_casing_is_correct_in_imports: diag(6637, ts.DiagnosticCategory.Message, "Ensure_that_casing_is_correct_in_imports_6637", "Ensure that casing is correct in imports."), Emit_a_v8_CPU_profile_of_the_compiler_run_for_debugging: diag(6638, ts.DiagnosticCategory.Message, "Emit_a_v8_CPU_profile_of_the_compiler_run_for_debugging_6638", "Emit a v8 CPU profile of the compiler run for debugging."), Allow_importing_helper_functions_from_tslib_once_per_project_instead_of_including_them_per_file: diag(6639, ts.DiagnosticCategory.Message, "Allow_importing_helper_functions_from_tslib_once_per_project_instead_of_including_them_per_file_6639", "Allow importing helper functions from tslib once per project, instead of including them per-file."), Specify_a_list_of_glob_patterns_that_match_files_to_be_included_in_compilation: diag(6641, ts.DiagnosticCategory.Message, "Specify_a_list_of_glob_patterns_that_match_files_to_be_included_in_compilation_6641", "Specify a list of glob patterns that match files to be included in compilation."), Save_tsbuildinfo_files_to_allow_for_incremental_compilation_of_projects: diag(6642, ts.DiagnosticCategory.Message, "Save_tsbuildinfo_files_to_allow_for_incremental_compilation_of_projects_6642", "Save .tsbuildinfo files to allow for incremental compilation of projects."), Include_sourcemap_files_inside_the_emitted_JavaScript: diag(6643, ts.DiagnosticCategory.Message, "Include_sourcemap_files_inside_the_emitted_JavaScript_6643", "Include sourcemap files inside the emitted JavaScript."), Include_source_code_in_the_sourcemaps_inside_the_emitted_JavaScript: diag(6644, ts.DiagnosticCategory.Message, "Include_source_code_in_the_sourcemaps_inside_the_emitted_JavaScript_6644", "Include source code in the sourcemaps inside the emitted JavaScript."), Ensure_that_each_file_can_be_safely_transpiled_without_relying_on_other_imports: diag(6645, ts.DiagnosticCategory.Message, "Ensure_that_each_file_can_be_safely_transpiled_without_relying_on_other_imports_6645", "Ensure that each file can be safely transpiled without relying on other imports."), Specify_what_JSX_code_is_generated: diag(6646, ts.DiagnosticCategory.Message, "Specify_what_JSX_code_is_generated_6646", "Specify what JSX code is generated."), Specify_the_JSX_factory_function_used_when_targeting_React_JSX_emit_e_g_React_createElement_or_h: diag(6647, ts.DiagnosticCategory.Message, "Specify_the_JSX_factory_function_used_when_targeting_React_JSX_emit_e_g_React_createElement_or_h_6647", "Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'."), Specify_the_JSX_Fragment_reference_used_for_fragments_when_targeting_React_JSX_emit_e_g_React_Fragment_or_Fragment: diag(6648, ts.DiagnosticCategory.Message, "Specify_the_JSX_Fragment_reference_used_for_fragments_when_targeting_React_JSX_emit_e_g_React_Fragme_6648", "Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'."), Specify_module_specifier_used_to_import_the_JSX_factory_functions_when_using_jsx_Colon_react_jsx_Asterisk: diag(6649, ts.DiagnosticCategory.Message, "Specify_module_specifier_used_to_import_the_JSX_factory_functions_when_using_jsx_Colon_react_jsx_Ast_6649", "Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'."), Make_keyof_only_return_strings_instead_of_string_numbers_or_symbols_Legacy_option: diag(6650, ts.DiagnosticCategory.Message, "Make_keyof_only_return_strings_instead_of_string_numbers_or_symbols_Legacy_option_6650", "Make keyof only return strings instead of string, numbers or symbols. Legacy option."), Specify_a_set_of_bundled_library_declaration_files_that_describe_the_target_runtime_environment: diag(6651, ts.DiagnosticCategory.Message, "Specify_a_set_of_bundled_library_declaration_files_that_describe_the_target_runtime_environment_6651", "Specify a set of bundled library declaration files that describe the target runtime environment."), Print_the_names_of_emitted_files_after_a_compilation: diag(6652, ts.DiagnosticCategory.Message, "Print_the_names_of_emitted_files_after_a_compilation_6652", "Print the names of emitted files after a compilation."), Print_all_of_the_files_read_during_the_compilation: diag(6653, ts.DiagnosticCategory.Message, "Print_all_of_the_files_read_during_the_compilation_6653", "Print all of the files read during the compilation."), Set_the_language_of_the_messaging_from_TypeScript_This_does_not_affect_emit: diag(6654, ts.DiagnosticCategory.Message, "Set_the_language_of_the_messaging_from_TypeScript_This_does_not_affect_emit_6654", "Set the language of the messaging from TypeScript. This does not affect emit."), Specify_the_location_where_debugger_should_locate_map_files_instead_of_generated_locations: diag(6655, ts.DiagnosticCategory.Message, "Specify_the_location_where_debugger_should_locate_map_files_instead_of_generated_locations_6655", "Specify the location where debugger should locate map files instead of generated locations."), Specify_the_maximum_folder_depth_used_for_checking_JavaScript_files_from_node_modules_Only_applicable_with_allowJs: diag(6656, ts.DiagnosticCategory.Message, "Specify_the_maximum_folder_depth_used_for_checking_JavaScript_files_from_node_modules_Only_applicabl_6656", "Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'."), Specify_what_module_code_is_generated: diag(6657, ts.DiagnosticCategory.Message, "Specify_what_module_code_is_generated_6657", "Specify what module code is generated."), Specify_how_TypeScript_looks_up_a_file_from_a_given_module_specifier: diag(6658, ts.DiagnosticCategory.Message, "Specify_how_TypeScript_looks_up_a_file_from_a_given_module_specifier_6658", "Specify how TypeScript looks up a file from a given module specifier."), Set_the_newline_character_for_emitting_files: diag(6659, ts.DiagnosticCategory.Message, "Set_the_newline_character_for_emitting_files_6659", "Set the newline character for emitting files."), Disable_emitting_files_from_a_compilation: diag(6660, ts.DiagnosticCategory.Message, "Disable_emitting_files_from_a_compilation_6660", "Disable emitting files from a compilation."), Disable_generating_custom_helper_functions_like_extends_in_compiled_output: diag(6661, ts.DiagnosticCategory.Message, "Disable_generating_custom_helper_functions_like_extends_in_compiled_output_6661", "Disable generating custom helper functions like '__extends' in compiled output."), Disable_emitting_files_if_any_type_checking_errors_are_reported: diag(6662, ts.DiagnosticCategory.Message, "Disable_emitting_files_if_any_type_checking_errors_are_reported_6662", "Disable emitting files if any type checking errors are reported."), Disable_truncating_types_in_error_messages: diag(6663, ts.DiagnosticCategory.Message, "Disable_truncating_types_in_error_messages_6663", "Disable truncating types in error messages."), Enable_error_reporting_for_fallthrough_cases_in_switch_statements: diag(6664, ts.DiagnosticCategory.Message, "Enable_error_reporting_for_fallthrough_cases_in_switch_statements_6664", "Enable error reporting for fallthrough cases in switch statements."), Enable_error_reporting_for_expressions_and_declarations_with_an_implied_any_type: diag(6665, ts.DiagnosticCategory.Message, "Enable_error_reporting_for_expressions_and_declarations_with_an_implied_any_type_6665", "Enable error reporting for expressions and declarations with an implied 'any' type."), Ensure_overriding_members_in_derived_classes_are_marked_with_an_override_modifier: diag(6666, ts.DiagnosticCategory.Message, "Ensure_overriding_members_in_derived_classes_are_marked_with_an_override_modifier_6666", "Ensure overriding members in derived classes are marked with an override modifier."), Enable_error_reporting_for_codepaths_that_do_not_explicitly_return_in_a_function: diag(6667, ts.DiagnosticCategory.Message, "Enable_error_reporting_for_codepaths_that_do_not_explicitly_return_in_a_function_6667", "Enable error reporting for codepaths that do not explicitly return in a function."), Enable_error_reporting_when_this_is_given_the_type_any: diag(6668, ts.DiagnosticCategory.Message, "Enable_error_reporting_when_this_is_given_the_type_any_6668", "Enable error reporting when 'this' is given the type 'any'."), Disable_adding_use_strict_directives_in_emitted_JavaScript_files: diag(6669, ts.DiagnosticCategory.Message, "Disable_adding_use_strict_directives_in_emitted_JavaScript_files_6669", "Disable adding 'use strict' directives in emitted JavaScript files."), Disable_including_any_library_files_including_the_default_lib_d_ts: diag(6670, ts.DiagnosticCategory.Message, "Disable_including_any_library_files_including_the_default_lib_d_ts_6670", "Disable including any library files, including the default lib.d.ts."), Enforces_using_indexed_accessors_for_keys_declared_using_an_indexed_type: diag(6671, ts.DiagnosticCategory.Message, "Enforces_using_indexed_accessors_for_keys_declared_using_an_indexed_type_6671", "Enforces using indexed accessors for keys declared using an indexed type."), Disallow_import_s_require_s_or_reference_s_from_expanding_the_number_of_files_TypeScript_should_add_to_a_project: diag(6672, ts.DiagnosticCategory.Message, "Disallow_import_s_require_s_or_reference_s_from_expanding_the_number_of_files_TypeScript_should_add__6672", "Disallow 'import's, 'require's or ''s from expanding the number of files TypeScript should add to a project."), Disable_strict_checking_of_generic_signatures_in_function_types: diag(6673, ts.DiagnosticCategory.Message, "Disable_strict_checking_of_generic_signatures_in_function_types_6673", "Disable strict checking of generic signatures in function types."), Add_undefined_to_a_type_when_accessed_using_an_index: diag(6674, ts.DiagnosticCategory.Message, "Add_undefined_to_a_type_when_accessed_using_an_index_6674", "Add 'undefined' to a type when accessed using an index."), Enable_error_reporting_when_local_variables_aren_t_read: diag(6675, ts.DiagnosticCategory.Message, "Enable_error_reporting_when_local_variables_aren_t_read_6675", "Enable error reporting when local variables aren't read."), Raise_an_error_when_a_function_parameter_isn_t_read: diag(6676, ts.DiagnosticCategory.Message, "Raise_an_error_when_a_function_parameter_isn_t_read_6676", "Raise an error when a function parameter isn't read."), Deprecated_setting_Use_outFile_instead: diag(6677, ts.DiagnosticCategory.Message, "Deprecated_setting_Use_outFile_instead_6677", "Deprecated setting. Use 'outFile' instead."), Specify_an_output_folder_for_all_emitted_files: diag(6678, ts.DiagnosticCategory.Message, "Specify_an_output_folder_for_all_emitted_files_6678", "Specify an output folder for all emitted files."), Specify_a_file_that_bundles_all_outputs_into_one_JavaScript_file_If_declaration_is_true_also_designates_a_file_that_bundles_all_d_ts_output: diag(6679, ts.DiagnosticCategory.Message, "Specify_a_file_that_bundles_all_outputs_into_one_JavaScript_file_If_declaration_is_true_also_designa_6679", "Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output."), Specify_a_set_of_entries_that_re_map_imports_to_additional_lookup_locations: diag(6680, ts.DiagnosticCategory.Message, "Specify_a_set_of_entries_that_re_map_imports_to_additional_lookup_locations_6680", "Specify a set of entries that re-map imports to additional lookup locations."), Specify_a_list_of_language_service_plugins_to_include: diag(6681, ts.DiagnosticCategory.Message, "Specify_a_list_of_language_service_plugins_to_include_6681", "Specify a list of language service plugins to include."), Disable_erasing_const_enum_declarations_in_generated_code: diag(6682, ts.DiagnosticCategory.Message, "Disable_erasing_const_enum_declarations_in_generated_code_6682", "Disable erasing 'const enum' declarations in generated code."), Disable_resolving_symlinks_to_their_realpath_This_correlates_to_the_same_flag_in_node: diag(6683, ts.DiagnosticCategory.Message, "Disable_resolving_symlinks_to_their_realpath_This_correlates_to_the_same_flag_in_node_6683", "Disable resolving symlinks to their realpath. This correlates to the same flag in node."), Disable_wiping_the_console_in_watch_mode: diag(6684, ts.DiagnosticCategory.Message, "Disable_wiping_the_console_in_watch_mode_6684", "Disable wiping the console in watch mode."), Enable_color_and_formatting_in_TypeScript_s_output_to_make_compiler_errors_easier_to_read: diag(6685, ts.DiagnosticCategory.Message, "Enable_color_and_formatting_in_TypeScript_s_output_to_make_compiler_errors_easier_to_read_6685", "Enable color and formatting in TypeScript's output to make compiler errors easier to read."), Specify_the_object_invoked_for_createElement_This_only_applies_when_targeting_react_JSX_emit: diag(6686, ts.DiagnosticCategory.Message, "Specify_the_object_invoked_for_createElement_This_only_applies_when_targeting_react_JSX_emit_6686", "Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit."), Specify_an_array_of_objects_that_specify_paths_for_projects_Used_in_project_references: diag(6687, ts.DiagnosticCategory.Message, "Specify_an_array_of_objects_that_specify_paths_for_projects_Used_in_project_references_6687", "Specify an array of objects that specify paths for projects. Used in project references."), Disable_emitting_comments: diag(6688, ts.DiagnosticCategory.Message, "Disable_emitting_comments_6688", "Disable emitting comments."), Enable_importing_json_files: diag(6689, ts.DiagnosticCategory.Message, "Enable_importing_json_files_6689", "Enable importing .json files."), Specify_the_root_folder_within_your_source_files: diag(6690, ts.DiagnosticCategory.Message, "Specify_the_root_folder_within_your_source_files_6690", "Specify the root folder within your source files."), Allow_multiple_folders_to_be_treated_as_one_when_resolving_modules: diag(6691, ts.DiagnosticCategory.Message, "Allow_multiple_folders_to_be_treated_as_one_when_resolving_modules_6691", "Allow multiple folders to be treated as one when resolving modules."), Skip_type_checking_d_ts_files_that_are_included_with_TypeScript: diag(6692, ts.DiagnosticCategory.Message, "Skip_type_checking_d_ts_files_that_are_included_with_TypeScript_6692", "Skip type checking .d.ts files that are included with TypeScript."), Skip_type_checking_all_d_ts_files: diag(6693, ts.DiagnosticCategory.Message, "Skip_type_checking_all_d_ts_files_6693", "Skip type checking all .d.ts files."), Create_source_map_files_for_emitted_JavaScript_files: diag(6694, ts.DiagnosticCategory.Message, "Create_source_map_files_for_emitted_JavaScript_files_6694", "Create source map files for emitted JavaScript files."), Specify_the_root_path_for_debuggers_to_find_the_reference_source_code: diag(6695, ts.DiagnosticCategory.Message, "Specify_the_root_path_for_debuggers_to_find_the_reference_source_code_6695", "Specify the root path for debuggers to find the reference source code."), Check_that_the_arguments_for_bind_call_and_apply_methods_match_the_original_function: diag(6697, ts.DiagnosticCategory.Message, "Check_that_the_arguments_for_bind_call_and_apply_methods_match_the_original_function_6697", "Check that the arguments for 'bind', 'call', and 'apply' methods match the original function."), When_assigning_functions_check_to_ensure_parameters_and_the_return_values_are_subtype_compatible: diag(6698, ts.DiagnosticCategory.Message, "When_assigning_functions_check_to_ensure_parameters_and_the_return_values_are_subtype_compatible_6698", "When assigning functions, check to ensure parameters and the return values are subtype-compatible."), When_type_checking_take_into_account_null_and_undefined: diag(6699, ts.DiagnosticCategory.Message, "When_type_checking_take_into_account_null_and_undefined_6699", "When type checking, take into account 'null' and 'undefined'."), Check_for_class_properties_that_are_declared_but_not_set_in_the_constructor: diag(6700, ts.DiagnosticCategory.Message, "Check_for_class_properties_that_are_declared_but_not_set_in_the_constructor_6700", "Check for class properties that are declared but not set in the constructor."), Disable_emitting_declarations_that_have_internal_in_their_JSDoc_comments: diag(6701, ts.DiagnosticCategory.Message, "Disable_emitting_declarations_that_have_internal_in_their_JSDoc_comments_6701", "Disable emitting declarations that have '@internal' in their JSDoc comments."), Disable_reporting_of_excess_property_errors_during_the_creation_of_object_literals: diag(6702, ts.DiagnosticCategory.Message, "Disable_reporting_of_excess_property_errors_during_the_creation_of_object_literals_6702", "Disable reporting of excess property errors during the creation of object literals."), Suppress_noImplicitAny_errors_when_indexing_objects_that_lack_index_signatures: diag(6703, ts.DiagnosticCategory.Message, "Suppress_noImplicitAny_errors_when_indexing_objects_that_lack_index_signatures_6703", "Suppress 'noImplicitAny' errors when indexing objects that lack index signatures."), Synchronously_call_callbacks_and_update_the_state_of_directory_watchers_on_platforms_that_don_t_support_recursive_watching_natively: diag(6704, ts.DiagnosticCategory.Message, "Synchronously_call_callbacks_and_update_the_state_of_directory_watchers_on_platforms_that_don_t_supp_6704", "Synchronously call callbacks and update the state of directory watchers on platforms that don`t support recursive watching natively."), Set_the_JavaScript_language_version_for_emitted_JavaScript_and_include_compatible_library_declarations: diag(6705, ts.DiagnosticCategory.Message, "Set_the_JavaScript_language_version_for_emitted_JavaScript_and_include_compatible_library_declaratio_6705", "Set the JavaScript language version for emitted JavaScript and include compatible library declarations."), Log_paths_used_during_the_moduleResolution_process: diag(6706, ts.DiagnosticCategory.Message, "Log_paths_used_during_the_moduleResolution_process_6706", "Log paths used during the 'moduleResolution' process."), Specify_the_path_to_tsbuildinfo_incremental_compilation_file: diag(6707, ts.DiagnosticCategory.Message, "Specify_the_path_to_tsbuildinfo_incremental_compilation_file_6707", "Specify the path to .tsbuildinfo incremental compilation file."), Specify_options_for_automatic_acquisition_of_declaration_files: diag(6709, ts.DiagnosticCategory.Message, "Specify_options_for_automatic_acquisition_of_declaration_files_6709", "Specify options for automatic acquisition of declaration files."), Specify_multiple_folders_that_act_like_Slashnode_modules_Slash_types: diag(6710, ts.DiagnosticCategory.Message, "Specify_multiple_folders_that_act_like_Slashnode_modules_Slash_types_6710", "Specify multiple folders that act like './node_modules/@types'."), Specify_type_package_names_to_be_included_without_being_referenced_in_a_source_file: diag(6711, ts.DiagnosticCategory.Message, "Specify_type_package_names_to_be_included_without_being_referenced_in_a_source_file_6711", "Specify type package names to be included without being referenced in a source file."), Emit_ECMAScript_standard_compliant_class_fields: diag(6712, ts.DiagnosticCategory.Message, "Emit_ECMAScript_standard_compliant_class_fields_6712", "Emit ECMAScript-standard-compliant class fields."), Enable_verbose_logging: diag(6713, ts.DiagnosticCategory.Message, "Enable_verbose_logging_6713", "Enable verbose logging."), Specify_how_directories_are_watched_on_systems_that_lack_recursive_file_watching_functionality: diag(6714, ts.DiagnosticCategory.Message, "Specify_how_directories_are_watched_on_systems_that_lack_recursive_file_watching_functionality_6714", "Specify how directories are watched on systems that lack recursive file-watching functionality."), Specify_how_the_TypeScript_watch_mode_works: diag(6715, ts.DiagnosticCategory.Message, "Specify_how_the_TypeScript_watch_mode_works_6715", "Specify how the TypeScript watch mode works."), Require_undeclared_properties_from_index_signatures_to_use_element_accesses: diag(6717, ts.DiagnosticCategory.Message, "Require_undeclared_properties_from_index_signatures_to_use_element_accesses_6717", "Require undeclared properties from index signatures to use element accesses."), Specify_emit_Slashchecking_behavior_for_imports_that_are_only_used_for_types: diag(6718, ts.DiagnosticCategory.Message, "Specify_emit_Slashchecking_behavior_for_imports_that_are_only_used_for_types_6718", "Specify emit/checking behavior for imports that are only used for types."), Default_catch_clause_variables_as_unknown_instead_of_any: diag(6803, ts.DiagnosticCategory.Message, "Default_catch_clause_variables_as_unknown_instead_of_any_6803", "Default catch clause variables as 'unknown' instead of 'any'."), one_of_Colon: diag(6900, ts.DiagnosticCategory.Message, "one_of_Colon_6900", "one of:"), one_or_more_Colon: diag(6901, ts.DiagnosticCategory.Message, "one_or_more_Colon_6901", "one or more:"), type_Colon: diag(6902, ts.DiagnosticCategory.Message, "type_Colon_6902", "type:"), default_Colon: diag(6903, ts.DiagnosticCategory.Message, "default_Colon_6903", "default:"), module_system_or_esModuleInterop: diag(6904, ts.DiagnosticCategory.Message, "module_system_or_esModuleInterop_6904", "module === \"system\" or esModuleInterop"), false_unless_strict_is_set: diag(6905, ts.DiagnosticCategory.Message, "false_unless_strict_is_set_6905", "`false`, unless `strict` is set"), false_unless_composite_is_set: diag(6906, ts.DiagnosticCategory.Message, "false_unless_composite_is_set_6906", "`false`, unless `composite` is set"), node_modules_bower_components_jspm_packages_plus_the_value_of_outDir_if_one_is_specified: diag(6907, ts.DiagnosticCategory.Message, "node_modules_bower_components_jspm_packages_plus_the_value_of_outDir_if_one_is_specified_6907", "`[\"node_modules\", \"bower_components\", \"jspm_packages\"]`, plus the value of `outDir` if one is specified."), if_files_is_specified_otherwise_Asterisk_Asterisk_Slash_Asterisk: diag(6908, ts.DiagnosticCategory.Message, "if_files_is_specified_otherwise_Asterisk_Asterisk_Slash_Asterisk_6908", "`[]` if `files` is specified, otherwise `[\"**/*\"]`"), true_if_composite_false_otherwise: diag(6909, ts.DiagnosticCategory.Message, "true_if_composite_false_otherwise_6909", "`true` if `composite`, `false` otherwise"), module_AMD_or_UMD_or_System_or_ES6_then_Classic_Otherwise_Node: diag(69010, ts.DiagnosticCategory.Message, "module_AMD_or_UMD_or_System_or_ES6_then_Classic_Otherwise_Node_69010", "module === `AMD` or `UMD` or `System` or `ES6`, then `Classic`, Otherwise `Node`"), Computed_from_the_list_of_input_files: diag(6911, ts.DiagnosticCategory.Message, "Computed_from_the_list_of_input_files_6911", "Computed from the list of input files"), Platform_specific: diag(6912, ts.DiagnosticCategory.Message, "Platform_specific_6912", "Platform specific"), You_can_learn_about_all_of_the_compiler_options_at_0: diag(6913, ts.DiagnosticCategory.Message, "You_can_learn_about_all_of_the_compiler_options_at_0_6913", "You can learn about all of the compiler options at {0}"), Including_watch_w_will_start_watching_the_current_project_for_the_file_changes_Once_set_you_can_config_watch_mode_with_Colon: diag(6914, ts.DiagnosticCategory.Message, "Including_watch_w_will_start_watching_the_current_project_for_the_file_changes_Once_set_you_can_conf_6914", "Including --watch, -w will start watching the current project for the file changes. Once set, you can config watch mode with:"), Using_build_b_will_make_tsc_behave_more_like_a_build_orchestrator_than_a_compiler_This_is_used_to_trigger_building_composite_projects_which_you_can_learn_more_about_at_0: diag(6915, ts.DiagnosticCategory.Message, "Using_build_b_will_make_tsc_behave_more_like_a_build_orchestrator_than_a_compiler_This_is_used_to_tr_6915", "Using --build, -b will make tsc behave more like a build orchestrator than a compiler. This is used to trigger building composite projects which you can learn more about at {0}"), COMMON_COMMANDS: diag(6916, ts.DiagnosticCategory.Message, "COMMON_COMMANDS_6916", "COMMON COMMANDS"), ALL_COMPILER_OPTIONS: diag(6917, ts.DiagnosticCategory.Message, "ALL_COMPILER_OPTIONS_6917", "ALL COMPILER OPTIONS"), WATCH_OPTIONS: diag(6918, ts.DiagnosticCategory.Message, "WATCH_OPTIONS_6918", "WATCH OPTIONS"), BUILD_OPTIONS: diag(6919, ts.DiagnosticCategory.Message, "BUILD_OPTIONS_6919", "BUILD OPTIONS"), COMMON_COMPILER_OPTIONS: diag(6920, ts.DiagnosticCategory.Message, "COMMON_COMPILER_OPTIONS_6920", "COMMON COMPILER OPTIONS"), COMMAND_LINE_FLAGS: diag(6921, ts.DiagnosticCategory.Message, "COMMAND_LINE_FLAGS_6921", "COMMAND LINE FLAGS"), tsc_Colon_The_TypeScript_Compiler: diag(6922, ts.DiagnosticCategory.Message, "tsc_Colon_The_TypeScript_Compiler_6922", "tsc: The TypeScript Compiler"), Compiles_the_current_project_tsconfig_json_in_the_working_directory: diag(6923, ts.DiagnosticCategory.Message, "Compiles_the_current_project_tsconfig_json_in_the_working_directory_6923", "Compiles the current project (tsconfig.json in the working directory.)"), Ignoring_tsconfig_json_compiles_the_specified_files_with_default_compiler_options: diag(6924, ts.DiagnosticCategory.Message, "Ignoring_tsconfig_json_compiles_the_specified_files_with_default_compiler_options_6924", "Ignoring tsconfig.json, compiles the specified files with default compiler options."), Build_a_composite_project_in_the_working_directory: diag(6925, ts.DiagnosticCategory.Message, "Build_a_composite_project_in_the_working_directory_6925", "Build a composite project in the working directory."), Creates_a_tsconfig_json_with_the_recommended_settings_in_the_working_directory: diag(6926, ts.DiagnosticCategory.Message, "Creates_a_tsconfig_json_with_the_recommended_settings_in_the_working_directory_6926", "Creates a tsconfig.json with the recommended settings in the working directory."), Compiles_the_TypeScript_project_located_at_the_specified_path: diag(6927, ts.DiagnosticCategory.Message, "Compiles_the_TypeScript_project_located_at_the_specified_path_6927", "Compiles the TypeScript project located at the specified path."), An_expanded_version_of_this_information_showing_all_possible_compiler_options: diag(6928, ts.DiagnosticCategory.Message, "An_expanded_version_of_this_information_showing_all_possible_compiler_options_6928", "An expanded version of this information, showing all possible compiler options"), Compiles_the_current_project_with_additional_settings: diag(6929, ts.DiagnosticCategory.Message, "Compiles_the_current_project_with_additional_settings_6929", "Compiles the current project, with additional settings."), true_for_ES2022_and_above_including_ESNext: diag(6930, ts.DiagnosticCategory.Message, "true_for_ES2022_and_above_including_ESNext_6930", "`true` for ES2022 and above, including ESNext."), List_of_file_name_suffixes_to_search_when_resolving_a_module: diag(6931, ts.DiagnosticCategory.Error, "List_of_file_name_suffixes_to_search_when_resolving_a_module_6931", "List of file name suffixes to search when resolving a module."), Variable_0_implicitly_has_an_1_type: diag(7005, ts.DiagnosticCategory.Error, "Variable_0_implicitly_has_an_1_type_7005", "Variable '{0}' implicitly has an '{1}' type."), Parameter_0_implicitly_has_an_1_type: diag(7006, ts.DiagnosticCategory.Error, "Parameter_0_implicitly_has_an_1_type_7006", "Parameter '{0}' implicitly has an '{1}' type."), Member_0_implicitly_has_an_1_type: diag(7008, ts.DiagnosticCategory.Error, "Member_0_implicitly_has_an_1_type_7008", "Member '{0}' implicitly has an '{1}' type."), new_expression_whose_target_lacks_a_construct_signature_implicitly_has_an_any_type: diag(7009, ts.DiagnosticCategory.Error, "new_expression_whose_target_lacks_a_construct_signature_implicitly_has_an_any_type_7009", "'new' expression, whose target lacks a construct signature, implicitly has an 'any' type."), _0_which_lacks_return_type_annotation_implicitly_has_an_1_return_type: diag(7010, ts.DiagnosticCategory.Error, "_0_which_lacks_return_type_annotation_implicitly_has_an_1_return_type_7010", "'{0}', which lacks return-type annotation, implicitly has an '{1}' return type."), Function_expression_which_lacks_return_type_annotation_implicitly_has_an_0_return_type: diag(7011, ts.DiagnosticCategory.Error, "Function_expression_which_lacks_return_type_annotation_implicitly_has_an_0_return_type_7011", "Function expression, which lacks return-type annotation, implicitly has an '{0}' return type."), Construct_signature_which_lacks_return_type_annotation_implicitly_has_an_any_return_type: diag(7013, ts.DiagnosticCategory.Error, "Construct_signature_which_lacks_return_type_annotation_implicitly_has_an_any_return_type_7013", "Construct signature, which lacks return-type annotation, implicitly has an 'any' return type."), Function_type_which_lacks_return_type_annotation_implicitly_has_an_0_return_type: diag(7014, ts.DiagnosticCategory.Error, "Function_type_which_lacks_return_type_annotation_implicitly_has_an_0_return_type_7014", "Function type, which lacks return-type annotation, implicitly has an '{0}' return type."), Element_implicitly_has_an_any_type_because_index_expression_is_not_of_type_number: diag(7015, ts.DiagnosticCategory.Error, "Element_implicitly_has_an_any_type_because_index_expression_is_not_of_type_number_7015", "Element implicitly has an 'any' type because index expression is not of type 'number'."), Could_not_find_a_declaration_file_for_module_0_1_implicitly_has_an_any_type: diag(7016, ts.DiagnosticCategory.Error, "Could_not_find_a_declaration_file_for_module_0_1_implicitly_has_an_any_type_7016", "Could not find a declaration file for module '{0}'. '{1}' implicitly has an 'any' type."), Element_implicitly_has_an_any_type_because_type_0_has_no_index_signature: diag(7017, ts.DiagnosticCategory.Error, "Element_implicitly_has_an_any_type_because_type_0_has_no_index_signature_7017", "Element implicitly has an 'any' type because type '{0}' has no index signature."), Object_literal_s_property_0_implicitly_has_an_1_type: diag(7018, ts.DiagnosticCategory.Error, "Object_literal_s_property_0_implicitly_has_an_1_type_7018", "Object literal's property '{0}' implicitly has an '{1}' type."), Rest_parameter_0_implicitly_has_an_any_type: diag(7019, ts.DiagnosticCategory.Error, "Rest_parameter_0_implicitly_has_an_any_type_7019", "Rest parameter '{0}' implicitly has an 'any[]' type."), Call_signature_which_lacks_return_type_annotation_implicitly_has_an_any_return_type: diag(7020, ts.DiagnosticCategory.Error, "Call_signature_which_lacks_return_type_annotation_implicitly_has_an_any_return_type_7020", "Call signature, which lacks return-type annotation, implicitly has an 'any' return type."), _0_implicitly_has_type_any_because_it_does_not_have_a_type_annotation_and_is_referenced_directly_or_indirectly_in_its_own_initializer: diag(7022, ts.DiagnosticCategory.Error, "_0_implicitly_has_type_any_because_it_does_not_have_a_type_annotation_and_is_referenced_directly_or__7022", "'{0}' implicitly has type 'any' because it does not have a type annotation and is referenced directly or indirectly in its own initializer."), _0_implicitly_has_return_type_any_because_it_does_not_have_a_return_type_annotation_and_is_referenced_directly_or_indirectly_in_one_of_its_return_expressions: diag(7023, ts.DiagnosticCategory.Error, "_0_implicitly_has_return_type_any_because_it_does_not_have_a_return_type_annotation_and_is_reference_7023", "'{0}' implicitly has return type 'any' because it does not have a return type annotation and is referenced directly or indirectly in one of its return expressions."), Function_implicitly_has_return_type_any_because_it_does_not_have_a_return_type_annotation_and_is_referenced_directly_or_indirectly_in_one_of_its_return_expressions: diag(7024, ts.DiagnosticCategory.Error, "Function_implicitly_has_return_type_any_because_it_does_not_have_a_return_type_annotation_and_is_ref_7024", "Function implicitly has return type 'any' because it does not have a return type annotation and is referenced directly or indirectly in one of its return expressions."), Generator_implicitly_has_yield_type_0_because_it_does_not_yield_any_values_Consider_supplying_a_return_type_annotation: diag(7025, ts.DiagnosticCategory.Error, "Generator_implicitly_has_yield_type_0_because_it_does_not_yield_any_values_Consider_supplying_a_retu_7025", "Generator implicitly has yield type '{0}' because it does not yield any values. Consider supplying a return type annotation."), JSX_element_implicitly_has_type_any_because_no_interface_JSX_0_exists: diag(7026, ts.DiagnosticCategory.Error, "JSX_element_implicitly_has_type_any_because_no_interface_JSX_0_exists_7026", "JSX element implicitly has type 'any' because no interface 'JSX.{0}' exists."), Unreachable_code_detected: diag(7027, ts.DiagnosticCategory.Error, "Unreachable_code_detected_7027", "Unreachable code detected.", /*reportsUnnecessary*/ true), Unused_label: diag(7028, ts.DiagnosticCategory.Error, "Unused_label_7028", "Unused label.", /*reportsUnnecessary*/ true), Fallthrough_case_in_switch: diag(7029, ts.DiagnosticCategory.Error, "Fallthrough_case_in_switch_7029", "Fallthrough case in switch."), Not_all_code_paths_return_a_value: diag(7030, ts.DiagnosticCategory.Error, "Not_all_code_paths_return_a_value_7030", "Not all code paths return a value."), Binding_element_0_implicitly_has_an_1_type: diag(7031, ts.DiagnosticCategory.Error, "Binding_element_0_implicitly_has_an_1_type_7031", "Binding element '{0}' implicitly has an '{1}' type."), Property_0_implicitly_has_type_any_because_its_set_accessor_lacks_a_parameter_type_annotation: diag(7032, ts.DiagnosticCategory.Error, "Property_0_implicitly_has_type_any_because_its_set_accessor_lacks_a_parameter_type_annotation_7032", "Property '{0}' implicitly has type 'any', because its set accessor lacks a parameter type annotation."), Property_0_implicitly_has_type_any_because_its_get_accessor_lacks_a_return_type_annotation: diag(7033, ts.DiagnosticCategory.Error, "Property_0_implicitly_has_type_any_because_its_get_accessor_lacks_a_return_type_annotation_7033", "Property '{0}' implicitly has type 'any', because its get accessor lacks a return type annotation."), Variable_0_implicitly_has_type_1_in_some_locations_where_its_type_cannot_be_determined: diag(7034, ts.DiagnosticCategory.Error, "Variable_0_implicitly_has_type_1_in_some_locations_where_its_type_cannot_be_determined_7034", "Variable '{0}' implicitly has type '{1}' in some locations where its type cannot be determined."), Try_npm_i_save_dev_types_Slash_1_if_it_exists_or_add_a_new_declaration_d_ts_file_containing_declare_module_0: diag(7035, ts.DiagnosticCategory.Error, "Try_npm_i_save_dev_types_Slash_1_if_it_exists_or_add_a_new_declaration_d_ts_file_containing_declare__7035", "Try `npm i --save-dev @types/{1}` if it exists or add a new declaration (.d.ts) file containing `declare module '{0}';`"), Dynamic_import_s_specifier_must_be_of_type_string_but_here_has_type_0: diag(7036, ts.DiagnosticCategory.Error, "Dynamic_import_s_specifier_must_be_of_type_string_but_here_has_type_0_7036", "Dynamic import's specifier must be of type 'string', but here has type '{0}'."), Enables_emit_interoperability_between_CommonJS_and_ES_Modules_via_creation_of_namespace_objects_for_all_imports_Implies_allowSyntheticDefaultImports: diag(7037, ts.DiagnosticCategory.Message, "Enables_emit_interoperability_between_CommonJS_and_ES_Modules_via_creation_of_namespace_objects_for__7037", "Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'."), Type_originates_at_this_import_A_namespace_style_import_cannot_be_called_or_constructed_and_will_cause_a_failure_at_runtime_Consider_using_a_default_import_or_import_require_here_instead: diag(7038, ts.DiagnosticCategory.Message, "Type_originates_at_this_import_A_namespace_style_import_cannot_be_called_or_constructed_and_will_cau_7038", "Type originates at this import. A namespace-style import cannot be called or constructed, and will cause a failure at runtime. Consider using a default import or import require here instead."), Mapped_object_type_implicitly_has_an_any_template_type: diag(7039, ts.DiagnosticCategory.Error, "Mapped_object_type_implicitly_has_an_any_template_type_7039", "Mapped object type implicitly has an 'any' template type."), If_the_0_package_actually_exposes_this_module_consider_sending_a_pull_request_to_amend_https_Colon_Slash_Slashgithub_com_SlashDefinitelyTyped_SlashDefinitelyTyped_Slashtree_Slashmaster_Slashtypes_Slash_1: diag(7040, ts.DiagnosticCategory.Error, "If_the_0_package_actually_exposes_this_module_consider_sending_a_pull_request_to_amend_https_Colon_S_7040", "If the '{0}' package actually exposes this module, consider sending a pull request to amend 'https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/{1}'"), The_containing_arrow_function_captures_the_global_value_of_this: diag(7041, ts.DiagnosticCategory.Error, "The_containing_arrow_function_captures_the_global_value_of_this_7041", "The containing arrow function captures the global value of 'this'."), Module_0_was_resolved_to_1_but_resolveJsonModule_is_not_used: diag(7042, ts.DiagnosticCategory.Error, "Module_0_was_resolved_to_1_but_resolveJsonModule_is_not_used_7042", "Module '{0}' was resolved to '{1}', but '--resolveJsonModule' is not used."), Variable_0_implicitly_has_an_1_type_but_a_better_type_may_be_inferred_from_usage: diag(7043, ts.DiagnosticCategory.Suggestion, "Variable_0_implicitly_has_an_1_type_but_a_better_type_may_be_inferred_from_usage_7043", "Variable '{0}' implicitly has an '{1}' type, but a better type may be inferred from usage."), Parameter_0_implicitly_has_an_1_type_but_a_better_type_may_be_inferred_from_usage: diag(7044, ts.DiagnosticCategory.Suggestion, "Parameter_0_implicitly_has_an_1_type_but_a_better_type_may_be_inferred_from_usage_7044", "Parameter '{0}' implicitly has an '{1}' type, but a better type may be inferred from usage."), Member_0_implicitly_has_an_1_type_but_a_better_type_may_be_inferred_from_usage: diag(7045, ts.DiagnosticCategory.Suggestion, "Member_0_implicitly_has_an_1_type_but_a_better_type_may_be_inferred_from_usage_7045", "Member '{0}' implicitly has an '{1}' type, but a better type may be inferred from usage."), Variable_0_implicitly_has_type_1_in_some_locations_but_a_better_type_may_be_inferred_from_usage: diag(7046, ts.DiagnosticCategory.Suggestion, "Variable_0_implicitly_has_type_1_in_some_locations_but_a_better_type_may_be_inferred_from_usage_7046", "Variable '{0}' implicitly has type '{1}' in some locations, but a better type may be inferred from usage."), Rest_parameter_0_implicitly_has_an_any_type_but_a_better_type_may_be_inferred_from_usage: diag(7047, ts.DiagnosticCategory.Suggestion, "Rest_parameter_0_implicitly_has_an_any_type_but_a_better_type_may_be_inferred_from_usage_7047", "Rest parameter '{0}' implicitly has an 'any[]' type, but a better type may be inferred from usage."), Property_0_implicitly_has_type_any_but_a_better_type_for_its_get_accessor_may_be_inferred_from_usage: diag(7048, ts.DiagnosticCategory.Suggestion, "Property_0_implicitly_has_type_any_but_a_better_type_for_its_get_accessor_may_be_inferred_from_usage_7048", "Property '{0}' implicitly has type 'any', but a better type for its get accessor may be inferred from usage."), Property_0_implicitly_has_type_any_but_a_better_type_for_its_set_accessor_may_be_inferred_from_usage: diag(7049, ts.DiagnosticCategory.Suggestion, "Property_0_implicitly_has_type_any_but_a_better_type_for_its_set_accessor_may_be_inferred_from_usage_7049", "Property '{0}' implicitly has type 'any', but a better type for its set accessor may be inferred from usage."), _0_implicitly_has_an_1_return_type_but_a_better_type_may_be_inferred_from_usage: diag(7050, ts.DiagnosticCategory.Suggestion, "_0_implicitly_has_an_1_return_type_but_a_better_type_may_be_inferred_from_usage_7050", "'{0}' implicitly has an '{1}' return type, but a better type may be inferred from usage."), Parameter_has_a_name_but_no_type_Did_you_mean_0_Colon_1: diag(7051, ts.DiagnosticCategory.Error, "Parameter_has_a_name_but_no_type_Did_you_mean_0_Colon_1_7051", "Parameter has a name but no type. Did you mean '{0}: {1}'?"), Element_implicitly_has_an_any_type_because_type_0_has_no_index_signature_Did_you_mean_to_call_1: diag(7052, ts.DiagnosticCategory.Error, "Element_implicitly_has_an_any_type_because_type_0_has_no_index_signature_Did_you_mean_to_call_1_7052", "Element implicitly has an 'any' type because type '{0}' has no index signature. Did you mean to call '{1}'?"), Element_implicitly_has_an_any_type_because_expression_of_type_0_can_t_be_used_to_index_type_1: diag(7053, ts.DiagnosticCategory.Error, "Element_implicitly_has_an_any_type_because_expression_of_type_0_can_t_be_used_to_index_type_1_7053", "Element implicitly has an 'any' type because expression of type '{0}' can't be used to index type '{1}'."), No_index_signature_with_a_parameter_of_type_0_was_found_on_type_1: diag(7054, ts.DiagnosticCategory.Error, "No_index_signature_with_a_parameter_of_type_0_was_found_on_type_1_7054", "No index signature with a parameter of type '{0}' was found on type '{1}'."), _0_which_lacks_return_type_annotation_implicitly_has_an_1_yield_type: diag(7055, ts.DiagnosticCategory.Error, "_0_which_lacks_return_type_annotation_implicitly_has_an_1_yield_type_7055", "'{0}', which lacks return-type annotation, implicitly has an '{1}' yield type."), The_inferred_type_of_this_node_exceeds_the_maximum_length_the_compiler_will_serialize_An_explicit_type_annotation_is_needed: diag(7056, ts.DiagnosticCategory.Error, "The_inferred_type_of_this_node_exceeds_the_maximum_length_the_compiler_will_serialize_An_explicit_ty_7056", "The inferred type of this node exceeds the maximum length the compiler will serialize. An explicit type annotation is needed."), yield_expression_implicitly_results_in_an_any_type_because_its_containing_generator_lacks_a_return_type_annotation: diag(7057, ts.DiagnosticCategory.Error, "yield_expression_implicitly_results_in_an_any_type_because_its_containing_generator_lacks_a_return_t_7057", "'yield' expression implicitly results in an 'any' type because its containing generator lacks a return-type annotation."), If_the_0_package_actually_exposes_this_module_try_adding_a_new_declaration_d_ts_file_containing_declare_module_1: diag(7058, ts.DiagnosticCategory.Error, "If_the_0_package_actually_exposes_this_module_try_adding_a_new_declaration_d_ts_file_containing_decl_7058", "If the '{0}' package actually exposes this module, try adding a new declaration (.d.ts) file containing `declare module '{1}';`"), This_syntax_is_reserved_in_files_with_the_mts_or_cts_extension_Use_an_as_expression_instead: diag(7059, ts.DiagnosticCategory.Error, "This_syntax_is_reserved_in_files_with_the_mts_or_cts_extension_Use_an_as_expression_instead_7059", "This syntax is reserved in files with the .mts or .cts extension. Use an `as` expression instead."), This_syntax_is_reserved_in_files_with_the_mts_or_cts_extension_Add_a_trailing_comma_or_explicit_constraint: diag(7060, ts.DiagnosticCategory.Error, "This_syntax_is_reserved_in_files_with_the_mts_or_cts_extension_Add_a_trailing_comma_or_explicit_cons_7060", "This syntax is reserved in files with the .mts or .cts extension. Add a trailing comma or explicit constraint."), A_mapped_type_may_not_declare_properties_or_methods: diag(7061, ts.DiagnosticCategory.Error, "A_mapped_type_may_not_declare_properties_or_methods_7061", "A mapped type may not declare properties or methods."), You_cannot_rename_this_element: diag(8000, ts.DiagnosticCategory.Error, "You_cannot_rename_this_element_8000", "You cannot rename this element."), You_cannot_rename_elements_that_are_defined_in_the_standard_TypeScript_library: diag(8001, ts.DiagnosticCategory.Error, "You_cannot_rename_elements_that_are_defined_in_the_standard_TypeScript_library_8001", "You cannot rename elements that are defined in the standard TypeScript library."), import_can_only_be_used_in_TypeScript_files: diag(8002, ts.DiagnosticCategory.Error, "import_can_only_be_used_in_TypeScript_files_8002", "'import ... =' can only be used in TypeScript files."), export_can_only_be_used_in_TypeScript_files: diag(8003, ts.DiagnosticCategory.Error, "export_can_only_be_used_in_TypeScript_files_8003", "'export =' can only be used in TypeScript files."), Type_parameter_declarations_can_only_be_used_in_TypeScript_files: diag(8004, ts.DiagnosticCategory.Error, "Type_parameter_declarations_can_only_be_used_in_TypeScript_files_8004", "Type parameter declarations can only be used in TypeScript files."), implements_clauses_can_only_be_used_in_TypeScript_files: diag(8005, ts.DiagnosticCategory.Error, "implements_clauses_can_only_be_used_in_TypeScript_files_8005", "'implements' clauses can only be used in TypeScript files."), _0_declarations_can_only_be_used_in_TypeScript_files: diag(8006, ts.DiagnosticCategory.Error, "_0_declarations_can_only_be_used_in_TypeScript_files_8006", "'{0}' declarations can only be used in TypeScript files."), Type_aliases_can_only_be_used_in_TypeScript_files: diag(8008, ts.DiagnosticCategory.Error, "Type_aliases_can_only_be_used_in_TypeScript_files_8008", "Type aliases can only be used in TypeScript files."), The_0_modifier_can_only_be_used_in_TypeScript_files: diag(8009, ts.DiagnosticCategory.Error, "The_0_modifier_can_only_be_used_in_TypeScript_files_8009", "The '{0}' modifier can only be used in TypeScript files."), Type_annotations_can_only_be_used_in_TypeScript_files: diag(8010, ts.DiagnosticCategory.Error, "Type_annotations_can_only_be_used_in_TypeScript_files_8010", "Type annotations can only be used in TypeScript files."), Type_arguments_can_only_be_used_in_TypeScript_files: diag(8011, ts.DiagnosticCategory.Error, "Type_arguments_can_only_be_used_in_TypeScript_files_8011", "Type arguments can only be used in TypeScript files."), Parameter_modifiers_can_only_be_used_in_TypeScript_files: diag(8012, ts.DiagnosticCategory.Error, "Parameter_modifiers_can_only_be_used_in_TypeScript_files_8012", "Parameter modifiers can only be used in TypeScript files."), Non_null_assertions_can_only_be_used_in_TypeScript_files: diag(8013, ts.DiagnosticCategory.Error, "Non_null_assertions_can_only_be_used_in_TypeScript_files_8013", "Non-null assertions can only be used in TypeScript files."), Type_assertion_expressions_can_only_be_used_in_TypeScript_files: diag(8016, ts.DiagnosticCategory.Error, "Type_assertion_expressions_can_only_be_used_in_TypeScript_files_8016", "Type assertion expressions can only be used in TypeScript files."), Octal_literal_types_must_use_ES2015_syntax_Use_the_syntax_0: diag(8017, ts.DiagnosticCategory.Error, "Octal_literal_types_must_use_ES2015_syntax_Use_the_syntax_0_8017", "Octal literal types must use ES2015 syntax. Use the syntax '{0}'."), Octal_literals_are_not_allowed_in_enums_members_initializer_Use_the_syntax_0: diag(8018, ts.DiagnosticCategory.Error, "Octal_literals_are_not_allowed_in_enums_members_initializer_Use_the_syntax_0_8018", "Octal literals are not allowed in enums members initializer. Use the syntax '{0}'."), Report_errors_in_js_files: diag(8019, ts.DiagnosticCategory.Message, "Report_errors_in_js_files_8019", "Report errors in .js files."), JSDoc_types_can_only_be_used_inside_documentation_comments: diag(8020, ts.DiagnosticCategory.Error, "JSDoc_types_can_only_be_used_inside_documentation_comments_8020", "JSDoc types can only be used inside documentation comments."), JSDoc_typedef_tag_should_either_have_a_type_annotation_or_be_followed_by_property_or_member_tags: diag(8021, ts.DiagnosticCategory.Error, "JSDoc_typedef_tag_should_either_have_a_type_annotation_or_be_followed_by_property_or_member_tags_8021", "JSDoc '@typedef' tag should either have a type annotation or be followed by '@property' or '@member' tags."), JSDoc_0_is_not_attached_to_a_class: diag(8022, ts.DiagnosticCategory.Error, "JSDoc_0_is_not_attached_to_a_class_8022", "JSDoc '@{0}' is not attached to a class."), JSDoc_0_1_does_not_match_the_extends_2_clause: diag(8023, ts.DiagnosticCategory.Error, "JSDoc_0_1_does_not_match_the_extends_2_clause_8023", "JSDoc '@{0} {1}' does not match the 'extends {2}' clause."), JSDoc_param_tag_has_name_0_but_there_is_no_parameter_with_that_name: diag(8024, ts.DiagnosticCategory.Error, "JSDoc_param_tag_has_name_0_but_there_is_no_parameter_with_that_name_8024", "JSDoc '@param' tag has name '{0}', but there is no parameter with that name."), Class_declarations_cannot_have_more_than_one_augments_or_extends_tag: diag(8025, ts.DiagnosticCategory.Error, "Class_declarations_cannot_have_more_than_one_augments_or_extends_tag_8025", "Class declarations cannot have more than one '@augments' or '@extends' tag."), Expected_0_type_arguments_provide_these_with_an_extends_tag: diag(8026, ts.DiagnosticCategory.Error, "Expected_0_type_arguments_provide_these_with_an_extends_tag_8026", "Expected {0} type arguments; provide these with an '@extends' tag."), Expected_0_1_type_arguments_provide_these_with_an_extends_tag: diag(8027, ts.DiagnosticCategory.Error, "Expected_0_1_type_arguments_provide_these_with_an_extends_tag_8027", "Expected {0}-{1} type arguments; provide these with an '@extends' tag."), JSDoc_may_only_appear_in_the_last_parameter_of_a_signature: diag(8028, ts.DiagnosticCategory.Error, "JSDoc_may_only_appear_in_the_last_parameter_of_a_signature_8028", "JSDoc '...' may only appear in the last parameter of a signature."), JSDoc_param_tag_has_name_0_but_there_is_no_parameter_with_that_name_It_would_match_arguments_if_it_had_an_array_type: diag(8029, ts.DiagnosticCategory.Error, "JSDoc_param_tag_has_name_0_but_there_is_no_parameter_with_that_name_It_would_match_arguments_if_it_h_8029", "JSDoc '@param' tag has name '{0}', but there is no parameter with that name. It would match 'arguments' if it had an array type."), The_type_of_a_function_declaration_must_match_the_function_s_signature: diag(8030, ts.DiagnosticCategory.Error, "The_type_of_a_function_declaration_must_match_the_function_s_signature_8030", "The type of a function declaration must match the function's signature."), You_cannot_rename_a_module_via_a_global_import: diag(8031, ts.DiagnosticCategory.Error, "You_cannot_rename_a_module_via_a_global_import_8031", "You cannot rename a module via a global import."), Qualified_name_0_is_not_allowed_without_a_leading_param_object_1: diag(8032, ts.DiagnosticCategory.Error, "Qualified_name_0_is_not_allowed_without_a_leading_param_object_1_8032", "Qualified name '{0}' is not allowed without a leading '@param {object} {1}'."), A_JSDoc_typedef_comment_may_not_contain_multiple_type_tags: diag(8033, ts.DiagnosticCategory.Error, "A_JSDoc_typedef_comment_may_not_contain_multiple_type_tags_8033", "A JSDoc '@typedef' comment may not contain multiple '@type' tags."), The_tag_was_first_specified_here: diag(8034, ts.DiagnosticCategory.Error, "The_tag_was_first_specified_here_8034", "The tag was first specified here."), Declaration_emit_for_this_file_requires_using_private_name_0_An_explicit_type_annotation_may_unblock_declaration_emit: diag(9005, ts.DiagnosticCategory.Error, "Declaration_emit_for_this_file_requires_using_private_name_0_An_explicit_type_annotation_may_unblock_9005", "Declaration emit for this file requires using private name '{0}'. An explicit type annotation may unblock declaration emit."), Declaration_emit_for_this_file_requires_using_private_name_0_from_module_1_An_explicit_type_annotation_may_unblock_declaration_emit: diag(9006, ts.DiagnosticCategory.Error, "Declaration_emit_for_this_file_requires_using_private_name_0_from_module_1_An_explicit_type_annotati_9006", "Declaration emit for this file requires using private name '{0}' from module '{1}'. An explicit type annotation may unblock declaration emit."), JSX_attributes_must_only_be_assigned_a_non_empty_expression: diag(17000, ts.DiagnosticCategory.Error, "JSX_attributes_must_only_be_assigned_a_non_empty_expression_17000", "JSX attributes must only be assigned a non-empty 'expression'."), JSX_elements_cannot_have_multiple_attributes_with_the_same_name: diag(17001, ts.DiagnosticCategory.Error, "JSX_elements_cannot_have_multiple_attributes_with_the_same_name_17001", "JSX elements cannot have multiple attributes with the same name."), Expected_corresponding_JSX_closing_tag_for_0: diag(17002, ts.DiagnosticCategory.Error, "Expected_corresponding_JSX_closing_tag_for_0_17002", "Expected corresponding JSX closing tag for '{0}'."), Cannot_use_JSX_unless_the_jsx_flag_is_provided: diag(17004, ts.DiagnosticCategory.Error, "Cannot_use_JSX_unless_the_jsx_flag_is_provided_17004", "Cannot use JSX unless the '--jsx' flag is provided."), A_constructor_cannot_contain_a_super_call_when_its_class_extends_null: diag(17005, ts.DiagnosticCategory.Error, "A_constructor_cannot_contain_a_super_call_when_its_class_extends_null_17005", "A constructor cannot contain a 'super' call when its class extends 'null'."), An_unary_expression_with_the_0_operator_is_not_allowed_in_the_left_hand_side_of_an_exponentiation_expression_Consider_enclosing_the_expression_in_parentheses: diag(17006, ts.DiagnosticCategory.Error, "An_unary_expression_with_the_0_operator_is_not_allowed_in_the_left_hand_side_of_an_exponentiation_ex_17006", "An unary expression with the '{0}' operator is not allowed in the left-hand side of an exponentiation expression. Consider enclosing the expression in parentheses."), A_type_assertion_expression_is_not_allowed_in_the_left_hand_side_of_an_exponentiation_expression_Consider_enclosing_the_expression_in_parentheses: diag(17007, ts.DiagnosticCategory.Error, "A_type_assertion_expression_is_not_allowed_in_the_left_hand_side_of_an_exponentiation_expression_Con_17007", "A type assertion expression is not allowed in the left-hand side of an exponentiation expression. Consider enclosing the expression in parentheses."), JSX_element_0_has_no_corresponding_closing_tag: diag(17008, ts.DiagnosticCategory.Error, "JSX_element_0_has_no_corresponding_closing_tag_17008", "JSX element '{0}' has no corresponding closing tag."), super_must_be_called_before_accessing_this_in_the_constructor_of_a_derived_class: diag(17009, ts.DiagnosticCategory.Error, "super_must_be_called_before_accessing_this_in_the_constructor_of_a_derived_class_17009", "'super' must be called before accessing 'this' in the constructor of a derived class."), Unknown_type_acquisition_option_0: diag(17010, ts.DiagnosticCategory.Error, "Unknown_type_acquisition_option_0_17010", "Unknown type acquisition option '{0}'."), super_must_be_called_before_accessing_a_property_of_super_in_the_constructor_of_a_derived_class: diag(17011, ts.DiagnosticCategory.Error, "super_must_be_called_before_accessing_a_property_of_super_in_the_constructor_of_a_derived_class_17011", "'super' must be called before accessing a property of 'super' in the constructor of a derived class."), _0_is_not_a_valid_meta_property_for_keyword_1_Did_you_mean_2: diag(17012, ts.DiagnosticCategory.Error, "_0_is_not_a_valid_meta_property_for_keyword_1_Did_you_mean_2_17012", "'{0}' is not a valid meta-property for keyword '{1}'. Did you mean '{2}'?"), Meta_property_0_is_only_allowed_in_the_body_of_a_function_declaration_function_expression_or_constructor: diag(17013, ts.DiagnosticCategory.Error, "Meta_property_0_is_only_allowed_in_the_body_of_a_function_declaration_function_expression_or_constru_17013", "Meta-property '{0}' is only allowed in the body of a function declaration, function expression, or constructor."), JSX_fragment_has_no_corresponding_closing_tag: diag(17014, ts.DiagnosticCategory.Error, "JSX_fragment_has_no_corresponding_closing_tag_17014", "JSX fragment has no corresponding closing tag."), Expected_corresponding_closing_tag_for_JSX_fragment: diag(17015, ts.DiagnosticCategory.Error, "Expected_corresponding_closing_tag_for_JSX_fragment_17015", "Expected corresponding closing tag for JSX fragment."), The_jsxFragmentFactory_compiler_option_must_be_provided_to_use_JSX_fragments_with_the_jsxFactory_compiler_option: diag(17016, ts.DiagnosticCategory.Error, "The_jsxFragmentFactory_compiler_option_must_be_provided_to_use_JSX_fragments_with_the_jsxFactory_com_17016", "The 'jsxFragmentFactory' compiler option must be provided to use JSX fragments with the 'jsxFactory' compiler option."), An_jsxFrag_pragma_is_required_when_using_an_jsx_pragma_with_JSX_fragments: diag(17017, ts.DiagnosticCategory.Error, "An_jsxFrag_pragma_is_required_when_using_an_jsx_pragma_with_JSX_fragments_17017", "An @jsxFrag pragma is required when using an @jsx pragma with JSX fragments."), Unknown_type_acquisition_option_0_Did_you_mean_1: diag(17018, ts.DiagnosticCategory.Error, "Unknown_type_acquisition_option_0_Did_you_mean_1_17018", "Unknown type acquisition option '{0}'. Did you mean '{1}'?"), Circularity_detected_while_resolving_configuration_Colon_0: diag(18000, ts.DiagnosticCategory.Error, "Circularity_detected_while_resolving_configuration_Colon_0_18000", "Circularity detected while resolving configuration: {0}"), The_files_list_in_config_file_0_is_empty: diag(18002, ts.DiagnosticCategory.Error, "The_files_list_in_config_file_0_is_empty_18002", "The 'files' list in config file '{0}' is empty."), No_inputs_were_found_in_config_file_0_Specified_include_paths_were_1_and_exclude_paths_were_2: diag(18003, ts.DiagnosticCategory.Error, "No_inputs_were_found_in_config_file_0_Specified_include_paths_were_1_and_exclude_paths_were_2_18003", "No inputs were found in config file '{0}'. Specified 'include' paths were '{1}' and 'exclude' paths were '{2}'."), File_is_a_CommonJS_module_it_may_be_converted_to_an_ES_module: diag(80001, ts.DiagnosticCategory.Suggestion, "File_is_a_CommonJS_module_it_may_be_converted_to_an_ES_module_80001", "File is a CommonJS module; it may be converted to an ES module."), This_constructor_function_may_be_converted_to_a_class_declaration: diag(80002, ts.DiagnosticCategory.Suggestion, "This_constructor_function_may_be_converted_to_a_class_declaration_80002", "This constructor function may be converted to a class declaration."), Import_may_be_converted_to_a_default_import: diag(80003, ts.DiagnosticCategory.Suggestion, "Import_may_be_converted_to_a_default_import_80003", "Import may be converted to a default import."), JSDoc_types_may_be_moved_to_TypeScript_types: diag(80004, ts.DiagnosticCategory.Suggestion, "JSDoc_types_may_be_moved_to_TypeScript_types_80004", "JSDoc types may be moved to TypeScript types."), require_call_may_be_converted_to_an_import: diag(80005, ts.DiagnosticCategory.Suggestion, "require_call_may_be_converted_to_an_import_80005", "'require' call may be converted to an import."), This_may_be_converted_to_an_async_function: diag(80006, ts.DiagnosticCategory.Suggestion, "This_may_be_converted_to_an_async_function_80006", "This may be converted to an async function."), await_has_no_effect_on_the_type_of_this_expression: diag(80007, ts.DiagnosticCategory.Suggestion, "await_has_no_effect_on_the_type_of_this_expression_80007", "'await' has no effect on the type of this expression."), Numeric_literals_with_absolute_values_equal_to_2_53_or_greater_are_too_large_to_be_represented_accurately_as_integers: diag(80008, ts.DiagnosticCategory.Suggestion, "Numeric_literals_with_absolute_values_equal_to_2_53_or_greater_are_too_large_to_be_represented_accur_80008", "Numeric literals with absolute values equal to 2^53 or greater are too large to be represented accurately as integers."), Add_missing_super_call: diag(90001, ts.DiagnosticCategory.Message, "Add_missing_super_call_90001", "Add missing 'super()' call"), Make_super_call_the_first_statement_in_the_constructor: diag(90002, ts.DiagnosticCategory.Message, "Make_super_call_the_first_statement_in_the_constructor_90002", "Make 'super()' call the first statement in the constructor"), Change_extends_to_implements: diag(90003, ts.DiagnosticCategory.Message, "Change_extends_to_implements_90003", "Change 'extends' to 'implements'"), Remove_unused_declaration_for_Colon_0: diag(90004, ts.DiagnosticCategory.Message, "Remove_unused_declaration_for_Colon_0_90004", "Remove unused declaration for: '{0}'"), Remove_import_from_0: diag(90005, ts.DiagnosticCategory.Message, "Remove_import_from_0_90005", "Remove import from '{0}'"), Implement_interface_0: diag(90006, ts.DiagnosticCategory.Message, "Implement_interface_0_90006", "Implement interface '{0}'"), Implement_inherited_abstract_class: diag(90007, ts.DiagnosticCategory.Message, "Implement_inherited_abstract_class_90007", "Implement inherited abstract class"), Add_0_to_unresolved_variable: diag(90008, ts.DiagnosticCategory.Message, "Add_0_to_unresolved_variable_90008", "Add '{0}.' to unresolved variable"), Remove_variable_statement: diag(90010, ts.DiagnosticCategory.Message, "Remove_variable_statement_90010", "Remove variable statement"), Remove_template_tag: diag(90011, ts.DiagnosticCategory.Message, "Remove_template_tag_90011", "Remove template tag"), Remove_type_parameters: diag(90012, ts.DiagnosticCategory.Message, "Remove_type_parameters_90012", "Remove type parameters"), Import_0_from_1: diag(90013, ts.DiagnosticCategory.Message, "Import_0_from_1_90013", "Import '{0}' from \"{1}\""), Change_0_to_1: diag(90014, ts.DiagnosticCategory.Message, "Change_0_to_1_90014", "Change '{0}' to '{1}'"), Declare_property_0: diag(90016, ts.DiagnosticCategory.Message, "Declare_property_0_90016", "Declare property '{0}'"), Add_index_signature_for_property_0: diag(90017, ts.DiagnosticCategory.Message, "Add_index_signature_for_property_0_90017", "Add index signature for property '{0}'"), Disable_checking_for_this_file: diag(90018, ts.DiagnosticCategory.Message, "Disable_checking_for_this_file_90018", "Disable checking for this file"), Ignore_this_error_message: diag(90019, ts.DiagnosticCategory.Message, "Ignore_this_error_message_90019", "Ignore this error message"), Initialize_property_0_in_the_constructor: diag(90020, ts.DiagnosticCategory.Message, "Initialize_property_0_in_the_constructor_90020", "Initialize property '{0}' in the constructor"), Initialize_static_property_0: diag(90021, ts.DiagnosticCategory.Message, "Initialize_static_property_0_90021", "Initialize static property '{0}'"), Change_spelling_to_0: diag(90022, ts.DiagnosticCategory.Message, "Change_spelling_to_0_90022", "Change spelling to '{0}'"), Declare_method_0: diag(90023, ts.DiagnosticCategory.Message, "Declare_method_0_90023", "Declare method '{0}'"), Declare_static_method_0: diag(90024, ts.DiagnosticCategory.Message, "Declare_static_method_0_90024", "Declare static method '{0}'"), Prefix_0_with_an_underscore: diag(90025, ts.DiagnosticCategory.Message, "Prefix_0_with_an_underscore_90025", "Prefix '{0}' with an underscore"), Rewrite_as_the_indexed_access_type_0: diag(90026, ts.DiagnosticCategory.Message, "Rewrite_as_the_indexed_access_type_0_90026", "Rewrite as the indexed access type '{0}'"), Declare_static_property_0: diag(90027, ts.DiagnosticCategory.Message, "Declare_static_property_0_90027", "Declare static property '{0}'"), Call_decorator_expression: diag(90028, ts.DiagnosticCategory.Message, "Call_decorator_expression_90028", "Call decorator expression"), Add_async_modifier_to_containing_function: diag(90029, ts.DiagnosticCategory.Message, "Add_async_modifier_to_containing_function_90029", "Add async modifier to containing function"), Replace_infer_0_with_unknown: diag(90030, ts.DiagnosticCategory.Message, "Replace_infer_0_with_unknown_90030", "Replace 'infer {0}' with 'unknown'"), Replace_all_unused_infer_with_unknown: diag(90031, ts.DiagnosticCategory.Message, "Replace_all_unused_infer_with_unknown_90031", "Replace all unused 'infer' with 'unknown'"), Add_parameter_name: diag(90034, ts.DiagnosticCategory.Message, "Add_parameter_name_90034", "Add parameter name"), Declare_private_property_0: diag(90035, ts.DiagnosticCategory.Message, "Declare_private_property_0_90035", "Declare private property '{0}'"), Replace_0_with_Promise_1: diag(90036, ts.DiagnosticCategory.Message, "Replace_0_with_Promise_1_90036", "Replace '{0}' with 'Promise<{1}>'"), Fix_all_incorrect_return_type_of_an_async_functions: diag(90037, ts.DiagnosticCategory.Message, "Fix_all_incorrect_return_type_of_an_async_functions_90037", "Fix all incorrect return type of an async functions"), Declare_private_method_0: diag(90038, ts.DiagnosticCategory.Message, "Declare_private_method_0_90038", "Declare private method '{0}'"), Remove_unused_destructuring_declaration: diag(90039, ts.DiagnosticCategory.Message, "Remove_unused_destructuring_declaration_90039", "Remove unused destructuring declaration"), Remove_unused_declarations_for_Colon_0: diag(90041, ts.DiagnosticCategory.Message, "Remove_unused_declarations_for_Colon_0_90041", "Remove unused declarations for: '{0}'"), Declare_a_private_field_named_0: diag(90053, ts.DiagnosticCategory.Message, "Declare_a_private_field_named_0_90053", "Declare a private field named '{0}'."), Includes_imports_of_types_referenced_by_0: diag(90054, ts.DiagnosticCategory.Message, "Includes_imports_of_types_referenced_by_0_90054", "Includes imports of types referenced by '{0}'"), Remove_type_from_import_declaration_from_0: diag(90055, ts.DiagnosticCategory.Message, "Remove_type_from_import_declaration_from_0_90055", "Remove 'type' from import declaration from \"{0}\""), Remove_type_from_import_of_0_from_1: diag(90056, ts.DiagnosticCategory.Message, "Remove_type_from_import_of_0_from_1_90056", "Remove 'type' from import of '{0}' from \"{1}\""), Add_import_from_0: diag(90057, ts.DiagnosticCategory.Message, "Add_import_from_0_90057", "Add import from \"{0}\""), Update_import_from_0: diag(90058, ts.DiagnosticCategory.Message, "Update_import_from_0_90058", "Update import from \"{0}\""), Convert_function_to_an_ES2015_class: diag(95001, ts.DiagnosticCategory.Message, "Convert_function_to_an_ES2015_class_95001", "Convert function to an ES2015 class"), Convert_0_to_1_in_0: diag(95003, ts.DiagnosticCategory.Message, "Convert_0_to_1_in_0_95003", "Convert '{0}' to '{1} in {0}'"), Extract_to_0_in_1: diag(95004, ts.DiagnosticCategory.Message, "Extract_to_0_in_1_95004", "Extract to {0} in {1}"), Extract_function: diag(95005, ts.DiagnosticCategory.Message, "Extract_function_95005", "Extract function"), Extract_constant: diag(95006, ts.DiagnosticCategory.Message, "Extract_constant_95006", "Extract constant"), Extract_to_0_in_enclosing_scope: diag(95007, ts.DiagnosticCategory.Message, "Extract_to_0_in_enclosing_scope_95007", "Extract to {0} in enclosing scope"), Extract_to_0_in_1_scope: diag(95008, ts.DiagnosticCategory.Message, "Extract_to_0_in_1_scope_95008", "Extract to {0} in {1} scope"), Annotate_with_type_from_JSDoc: diag(95009, ts.DiagnosticCategory.Message, "Annotate_with_type_from_JSDoc_95009", "Annotate with type from JSDoc"), Infer_type_of_0_from_usage: diag(95011, ts.DiagnosticCategory.Message, "Infer_type_of_0_from_usage_95011", "Infer type of '{0}' from usage"), Infer_parameter_types_from_usage: diag(95012, ts.DiagnosticCategory.Message, "Infer_parameter_types_from_usage_95012", "Infer parameter types from usage"), Convert_to_default_import: diag(95013, ts.DiagnosticCategory.Message, "Convert_to_default_import_95013", "Convert to default import"), Install_0: diag(95014, ts.DiagnosticCategory.Message, "Install_0_95014", "Install '{0}'"), Replace_import_with_0: diag(95015, ts.DiagnosticCategory.Message, "Replace_import_with_0_95015", "Replace import with '{0}'."), Use_synthetic_default_member: diag(95016, ts.DiagnosticCategory.Message, "Use_synthetic_default_member_95016", "Use synthetic 'default' member."), Convert_to_ES_module: diag(95017, ts.DiagnosticCategory.Message, "Convert_to_ES_module_95017", "Convert to ES module"), Add_undefined_type_to_property_0: diag(95018, ts.DiagnosticCategory.Message, "Add_undefined_type_to_property_0_95018", "Add 'undefined' type to property '{0}'"), Add_initializer_to_property_0: diag(95019, ts.DiagnosticCategory.Message, "Add_initializer_to_property_0_95019", "Add initializer to property '{0}'"), Add_definite_assignment_assertion_to_property_0: diag(95020, ts.DiagnosticCategory.Message, "Add_definite_assignment_assertion_to_property_0_95020", "Add definite assignment assertion to property '{0}'"), Convert_all_type_literals_to_mapped_type: diag(95021, ts.DiagnosticCategory.Message, "Convert_all_type_literals_to_mapped_type_95021", "Convert all type literals to mapped type"), Add_all_missing_members: diag(95022, ts.DiagnosticCategory.Message, "Add_all_missing_members_95022", "Add all missing members"), Infer_all_types_from_usage: diag(95023, ts.DiagnosticCategory.Message, "Infer_all_types_from_usage_95023", "Infer all types from usage"), Delete_all_unused_declarations: diag(95024, ts.DiagnosticCategory.Message, "Delete_all_unused_declarations_95024", "Delete all unused declarations"), Prefix_all_unused_declarations_with_where_possible: diag(95025, ts.DiagnosticCategory.Message, "Prefix_all_unused_declarations_with_where_possible_95025", "Prefix all unused declarations with '_' where possible"), Fix_all_detected_spelling_errors: diag(95026, ts.DiagnosticCategory.Message, "Fix_all_detected_spelling_errors_95026", "Fix all detected spelling errors"), Add_initializers_to_all_uninitialized_properties: diag(95027, ts.DiagnosticCategory.Message, "Add_initializers_to_all_uninitialized_properties_95027", "Add initializers to all uninitialized properties"), Add_definite_assignment_assertions_to_all_uninitialized_properties: diag(95028, ts.DiagnosticCategory.Message, "Add_definite_assignment_assertions_to_all_uninitialized_properties_95028", "Add definite assignment assertions to all uninitialized properties"), Add_undefined_type_to_all_uninitialized_properties: diag(95029, ts.DiagnosticCategory.Message, "Add_undefined_type_to_all_uninitialized_properties_95029", "Add undefined type to all uninitialized properties"), Change_all_jsdoc_style_types_to_TypeScript: diag(95030, ts.DiagnosticCategory.Message, "Change_all_jsdoc_style_types_to_TypeScript_95030", "Change all jsdoc-style types to TypeScript"), Change_all_jsdoc_style_types_to_TypeScript_and_add_undefined_to_nullable_types: diag(95031, ts.DiagnosticCategory.Message, "Change_all_jsdoc_style_types_to_TypeScript_and_add_undefined_to_nullable_types_95031", "Change all jsdoc-style types to TypeScript (and add '| undefined' to nullable types)"), Implement_all_unimplemented_interfaces: diag(95032, ts.DiagnosticCategory.Message, "Implement_all_unimplemented_interfaces_95032", "Implement all unimplemented interfaces"), Install_all_missing_types_packages: diag(95033, ts.DiagnosticCategory.Message, "Install_all_missing_types_packages_95033", "Install all missing types packages"), Rewrite_all_as_indexed_access_types: diag(95034, ts.DiagnosticCategory.Message, "Rewrite_all_as_indexed_access_types_95034", "Rewrite all as indexed access types"), Convert_all_to_default_imports: diag(95035, ts.DiagnosticCategory.Message, "Convert_all_to_default_imports_95035", "Convert all to default imports"), Make_all_super_calls_the_first_statement_in_their_constructor: diag(95036, ts.DiagnosticCategory.Message, "Make_all_super_calls_the_first_statement_in_their_constructor_95036", "Make all 'super()' calls the first statement in their constructor"), Add_qualifier_to_all_unresolved_variables_matching_a_member_name: diag(95037, ts.DiagnosticCategory.Message, "Add_qualifier_to_all_unresolved_variables_matching_a_member_name_95037", "Add qualifier to all unresolved variables matching a member name"), Change_all_extended_interfaces_to_implements: diag(95038, ts.DiagnosticCategory.Message, "Change_all_extended_interfaces_to_implements_95038", "Change all extended interfaces to 'implements'"), Add_all_missing_super_calls: diag(95039, ts.DiagnosticCategory.Message, "Add_all_missing_super_calls_95039", "Add all missing super calls"), Implement_all_inherited_abstract_classes: diag(95040, ts.DiagnosticCategory.Message, "Implement_all_inherited_abstract_classes_95040", "Implement all inherited abstract classes"), Add_all_missing_async_modifiers: diag(95041, ts.DiagnosticCategory.Message, "Add_all_missing_async_modifiers_95041", "Add all missing 'async' modifiers"), Add_ts_ignore_to_all_error_messages: diag(95042, ts.DiagnosticCategory.Message, "Add_ts_ignore_to_all_error_messages_95042", "Add '@ts-ignore' to all error messages"), Annotate_everything_with_types_from_JSDoc: diag(95043, ts.DiagnosticCategory.Message, "Annotate_everything_with_types_from_JSDoc_95043", "Annotate everything with types from JSDoc"), Add_to_all_uncalled_decorators: diag(95044, ts.DiagnosticCategory.Message, "Add_to_all_uncalled_decorators_95044", "Add '()' to all uncalled decorators"), Convert_all_constructor_functions_to_classes: diag(95045, ts.DiagnosticCategory.Message, "Convert_all_constructor_functions_to_classes_95045", "Convert all constructor functions to classes"), Generate_get_and_set_accessors: diag(95046, ts.DiagnosticCategory.Message, "Generate_get_and_set_accessors_95046", "Generate 'get' and 'set' accessors"), Convert_require_to_import: diag(95047, ts.DiagnosticCategory.Message, "Convert_require_to_import_95047", "Convert 'require' to 'import'"), Convert_all_require_to_import: diag(95048, ts.DiagnosticCategory.Message, "Convert_all_require_to_import_95048", "Convert all 'require' to 'import'"), Move_to_a_new_file: diag(95049, ts.DiagnosticCategory.Message, "Move_to_a_new_file_95049", "Move to a new file"), Remove_unreachable_code: diag(95050, ts.DiagnosticCategory.Message, "Remove_unreachable_code_95050", "Remove unreachable code"), Remove_all_unreachable_code: diag(95051, ts.DiagnosticCategory.Message, "Remove_all_unreachable_code_95051", "Remove all unreachable code"), Add_missing_typeof: diag(95052, ts.DiagnosticCategory.Message, "Add_missing_typeof_95052", "Add missing 'typeof'"), Remove_unused_label: diag(95053, ts.DiagnosticCategory.Message, "Remove_unused_label_95053", "Remove unused label"), Remove_all_unused_labels: diag(95054, ts.DiagnosticCategory.Message, "Remove_all_unused_labels_95054", "Remove all unused labels"), Convert_0_to_mapped_object_type: diag(95055, ts.DiagnosticCategory.Message, "Convert_0_to_mapped_object_type_95055", "Convert '{0}' to mapped object type"), Convert_namespace_import_to_named_imports: diag(95056, ts.DiagnosticCategory.Message, "Convert_namespace_import_to_named_imports_95056", "Convert namespace import to named imports"), Convert_named_imports_to_namespace_import: diag(95057, ts.DiagnosticCategory.Message, "Convert_named_imports_to_namespace_import_95057", "Convert named imports to namespace import"), Add_or_remove_braces_in_an_arrow_function: diag(95058, ts.DiagnosticCategory.Message, "Add_or_remove_braces_in_an_arrow_function_95058", "Add or remove braces in an arrow function"), Add_braces_to_arrow_function: diag(95059, ts.DiagnosticCategory.Message, "Add_braces_to_arrow_function_95059", "Add braces to arrow function"), Remove_braces_from_arrow_function: diag(95060, ts.DiagnosticCategory.Message, "Remove_braces_from_arrow_function_95060", "Remove braces from arrow function"), Convert_default_export_to_named_export: diag(95061, ts.DiagnosticCategory.Message, "Convert_default_export_to_named_export_95061", "Convert default export to named export"), Convert_named_export_to_default_export: diag(95062, ts.DiagnosticCategory.Message, "Convert_named_export_to_default_export_95062", "Convert named export to default export"), Add_missing_enum_member_0: diag(95063, ts.DiagnosticCategory.Message, "Add_missing_enum_member_0_95063", "Add missing enum member '{0}'"), Add_all_missing_imports: diag(95064, ts.DiagnosticCategory.Message, "Add_all_missing_imports_95064", "Add all missing imports"), Convert_to_async_function: diag(95065, ts.DiagnosticCategory.Message, "Convert_to_async_function_95065", "Convert to async function"), Convert_all_to_async_functions: diag(95066, ts.DiagnosticCategory.Message, "Convert_all_to_async_functions_95066", "Convert all to async functions"), Add_missing_call_parentheses: diag(95067, ts.DiagnosticCategory.Message, "Add_missing_call_parentheses_95067", "Add missing call parentheses"), Add_all_missing_call_parentheses: diag(95068, ts.DiagnosticCategory.Message, "Add_all_missing_call_parentheses_95068", "Add all missing call parentheses"), Add_unknown_conversion_for_non_overlapping_types: diag(95069, ts.DiagnosticCategory.Message, "Add_unknown_conversion_for_non_overlapping_types_95069", "Add 'unknown' conversion for non-overlapping types"), Add_unknown_to_all_conversions_of_non_overlapping_types: diag(95070, ts.DiagnosticCategory.Message, "Add_unknown_to_all_conversions_of_non_overlapping_types_95070", "Add 'unknown' to all conversions of non-overlapping types"), Add_missing_new_operator_to_call: diag(95071, ts.DiagnosticCategory.Message, "Add_missing_new_operator_to_call_95071", "Add missing 'new' operator to call"), Add_missing_new_operator_to_all_calls: diag(95072, ts.DiagnosticCategory.Message, "Add_missing_new_operator_to_all_calls_95072", "Add missing 'new' operator to all calls"), Add_names_to_all_parameters_without_names: diag(95073, ts.DiagnosticCategory.Message, "Add_names_to_all_parameters_without_names_95073", "Add names to all parameters without names"), Enable_the_experimentalDecorators_option_in_your_configuration_file: diag(95074, ts.DiagnosticCategory.Message, "Enable_the_experimentalDecorators_option_in_your_configuration_file_95074", "Enable the 'experimentalDecorators' option in your configuration file"), Convert_parameters_to_destructured_object: diag(95075, ts.DiagnosticCategory.Message, "Convert_parameters_to_destructured_object_95075", "Convert parameters to destructured object"), Extract_type: diag(95077, ts.DiagnosticCategory.Message, "Extract_type_95077", "Extract type"), Extract_to_type_alias: diag(95078, ts.DiagnosticCategory.Message, "Extract_to_type_alias_95078", "Extract to type alias"), Extract_to_typedef: diag(95079, ts.DiagnosticCategory.Message, "Extract_to_typedef_95079", "Extract to typedef"), Infer_this_type_of_0_from_usage: diag(95080, ts.DiagnosticCategory.Message, "Infer_this_type_of_0_from_usage_95080", "Infer 'this' type of '{0}' from usage"), Add_const_to_unresolved_variable: diag(95081, ts.DiagnosticCategory.Message, "Add_const_to_unresolved_variable_95081", "Add 'const' to unresolved variable"), Add_const_to_all_unresolved_variables: diag(95082, ts.DiagnosticCategory.Message, "Add_const_to_all_unresolved_variables_95082", "Add 'const' to all unresolved variables"), Add_await: diag(95083, ts.DiagnosticCategory.Message, "Add_await_95083", "Add 'await'"), Add_await_to_initializer_for_0: diag(95084, ts.DiagnosticCategory.Message, "Add_await_to_initializer_for_0_95084", "Add 'await' to initializer for '{0}'"), Fix_all_expressions_possibly_missing_await: diag(95085, ts.DiagnosticCategory.Message, "Fix_all_expressions_possibly_missing_await_95085", "Fix all expressions possibly missing 'await'"), Remove_unnecessary_await: diag(95086, ts.DiagnosticCategory.Message, "Remove_unnecessary_await_95086", "Remove unnecessary 'await'"), Remove_all_unnecessary_uses_of_await: diag(95087, ts.DiagnosticCategory.Message, "Remove_all_unnecessary_uses_of_await_95087", "Remove all unnecessary uses of 'await'"), Enable_the_jsx_flag_in_your_configuration_file: diag(95088, ts.DiagnosticCategory.Message, "Enable_the_jsx_flag_in_your_configuration_file_95088", "Enable the '--jsx' flag in your configuration file"), Add_await_to_initializers: diag(95089, ts.DiagnosticCategory.Message, "Add_await_to_initializers_95089", "Add 'await' to initializers"), Extract_to_interface: diag(95090, ts.DiagnosticCategory.Message, "Extract_to_interface_95090", "Extract to interface"), Convert_to_a_bigint_numeric_literal: diag(95091, ts.DiagnosticCategory.Message, "Convert_to_a_bigint_numeric_literal_95091", "Convert to a bigint numeric literal"), Convert_all_to_bigint_numeric_literals: diag(95092, ts.DiagnosticCategory.Message, "Convert_all_to_bigint_numeric_literals_95092", "Convert all to bigint numeric literals"), Convert_const_to_let: diag(95093, ts.DiagnosticCategory.Message, "Convert_const_to_let_95093", "Convert 'const' to 'let'"), Prefix_with_declare: diag(95094, ts.DiagnosticCategory.Message, "Prefix_with_declare_95094", "Prefix with 'declare'"), Prefix_all_incorrect_property_declarations_with_declare: diag(95095, ts.DiagnosticCategory.Message, "Prefix_all_incorrect_property_declarations_with_declare_95095", "Prefix all incorrect property declarations with 'declare'"), Convert_to_template_string: diag(95096, ts.DiagnosticCategory.Message, "Convert_to_template_string_95096", "Convert to template string"), Add_export_to_make_this_file_into_a_module: diag(95097, ts.DiagnosticCategory.Message, "Add_export_to_make_this_file_into_a_module_95097", "Add 'export {}' to make this file into a module"), Set_the_target_option_in_your_configuration_file_to_0: diag(95098, ts.DiagnosticCategory.Message, "Set_the_target_option_in_your_configuration_file_to_0_95098", "Set the 'target' option in your configuration file to '{0}'"), Set_the_module_option_in_your_configuration_file_to_0: diag(95099, ts.DiagnosticCategory.Message, "Set_the_module_option_in_your_configuration_file_to_0_95099", "Set the 'module' option in your configuration file to '{0}'"), Convert_invalid_character_to_its_html_entity_code: diag(95100, ts.DiagnosticCategory.Message, "Convert_invalid_character_to_its_html_entity_code_95100", "Convert invalid character to its html entity code"), Convert_all_invalid_characters_to_HTML_entity_code: diag(95101, ts.DiagnosticCategory.Message, "Convert_all_invalid_characters_to_HTML_entity_code_95101", "Convert all invalid characters to HTML entity code"), Convert_function_expression_0_to_arrow_function: diag(95105, ts.DiagnosticCategory.Message, "Convert_function_expression_0_to_arrow_function_95105", "Convert function expression '{0}' to arrow function"), Convert_function_declaration_0_to_arrow_function: diag(95106, ts.DiagnosticCategory.Message, "Convert_function_declaration_0_to_arrow_function_95106", "Convert function declaration '{0}' to arrow function"), Fix_all_implicit_this_errors: diag(95107, ts.DiagnosticCategory.Message, "Fix_all_implicit_this_errors_95107", "Fix all implicit-'this' errors"), Wrap_invalid_character_in_an_expression_container: diag(95108, ts.DiagnosticCategory.Message, "Wrap_invalid_character_in_an_expression_container_95108", "Wrap invalid character in an expression container"), Wrap_all_invalid_characters_in_an_expression_container: diag(95109, ts.DiagnosticCategory.Message, "Wrap_all_invalid_characters_in_an_expression_container_95109", "Wrap all invalid characters in an expression container"), Visit_https_Colon_Slash_Slashaka_ms_Slashtsconfig_to_read_more_about_this_file: diag(95110, ts.DiagnosticCategory.Message, "Visit_https_Colon_Slash_Slashaka_ms_Slashtsconfig_to_read_more_about_this_file_95110", "Visit https://aka.ms/tsconfig to read more about this file"), Add_a_return_statement: diag(95111, ts.DiagnosticCategory.Message, "Add_a_return_statement_95111", "Add a return statement"), Remove_braces_from_arrow_function_body: diag(95112, ts.DiagnosticCategory.Message, "Remove_braces_from_arrow_function_body_95112", "Remove braces from arrow function body"), Wrap_the_following_body_with_parentheses_which_should_be_an_object_literal: diag(95113, ts.DiagnosticCategory.Message, "Wrap_the_following_body_with_parentheses_which_should_be_an_object_literal_95113", "Wrap the following body with parentheses which should be an object literal"), Add_all_missing_return_statement: diag(95114, ts.DiagnosticCategory.Message, "Add_all_missing_return_statement_95114", "Add all missing return statement"), Remove_braces_from_all_arrow_function_bodies_with_relevant_issues: diag(95115, ts.DiagnosticCategory.Message, "Remove_braces_from_all_arrow_function_bodies_with_relevant_issues_95115", "Remove braces from all arrow function bodies with relevant issues"), Wrap_all_object_literal_with_parentheses: diag(95116, ts.DiagnosticCategory.Message, "Wrap_all_object_literal_with_parentheses_95116", "Wrap all object literal with parentheses"), Move_labeled_tuple_element_modifiers_to_labels: diag(95117, ts.DiagnosticCategory.Message, "Move_labeled_tuple_element_modifiers_to_labels_95117", "Move labeled tuple element modifiers to labels"), Convert_overload_list_to_single_signature: diag(95118, ts.DiagnosticCategory.Message, "Convert_overload_list_to_single_signature_95118", "Convert overload list to single signature"), Generate_get_and_set_accessors_for_all_overriding_properties: diag(95119, ts.DiagnosticCategory.Message, "Generate_get_and_set_accessors_for_all_overriding_properties_95119", "Generate 'get' and 'set' accessors for all overriding properties"), Wrap_in_JSX_fragment: diag(95120, ts.DiagnosticCategory.Message, "Wrap_in_JSX_fragment_95120", "Wrap in JSX fragment"), Wrap_all_unparented_JSX_in_JSX_fragment: diag(95121, ts.DiagnosticCategory.Message, "Wrap_all_unparented_JSX_in_JSX_fragment_95121", "Wrap all unparented JSX in JSX fragment"), Convert_arrow_function_or_function_expression: diag(95122, ts.DiagnosticCategory.Message, "Convert_arrow_function_or_function_expression_95122", "Convert arrow function or function expression"), Convert_to_anonymous_function: diag(95123, ts.DiagnosticCategory.Message, "Convert_to_anonymous_function_95123", "Convert to anonymous function"), Convert_to_named_function: diag(95124, ts.DiagnosticCategory.Message, "Convert_to_named_function_95124", "Convert to named function"), Convert_to_arrow_function: diag(95125, ts.DiagnosticCategory.Message, "Convert_to_arrow_function_95125", "Convert to arrow function"), Remove_parentheses: diag(95126, ts.DiagnosticCategory.Message, "Remove_parentheses_95126", "Remove parentheses"), Could_not_find_a_containing_arrow_function: diag(95127, ts.DiagnosticCategory.Message, "Could_not_find_a_containing_arrow_function_95127", "Could not find a containing arrow function"), Containing_function_is_not_an_arrow_function: diag(95128, ts.DiagnosticCategory.Message, "Containing_function_is_not_an_arrow_function_95128", "Containing function is not an arrow function"), Could_not_find_export_statement: diag(95129, ts.DiagnosticCategory.Message, "Could_not_find_export_statement_95129", "Could not find export statement"), This_file_already_has_a_default_export: diag(95130, ts.DiagnosticCategory.Message, "This_file_already_has_a_default_export_95130", "This file already has a default export"), Could_not_find_import_clause: diag(95131, ts.DiagnosticCategory.Message, "Could_not_find_import_clause_95131", "Could not find import clause"), Could_not_find_namespace_import_or_named_imports: diag(95132, ts.DiagnosticCategory.Message, "Could_not_find_namespace_import_or_named_imports_95132", "Could not find namespace import or named imports"), Selection_is_not_a_valid_type_node: diag(95133, ts.DiagnosticCategory.Message, "Selection_is_not_a_valid_type_node_95133", "Selection is not a valid type node"), No_type_could_be_extracted_from_this_type_node: diag(95134, ts.DiagnosticCategory.Message, "No_type_could_be_extracted_from_this_type_node_95134", "No type could be extracted from this type node"), Could_not_find_property_for_which_to_generate_accessor: diag(95135, ts.DiagnosticCategory.Message, "Could_not_find_property_for_which_to_generate_accessor_95135", "Could not find property for which to generate accessor"), Name_is_not_valid: diag(95136, ts.DiagnosticCategory.Message, "Name_is_not_valid_95136", "Name is not valid"), Can_only_convert_property_with_modifier: diag(95137, ts.DiagnosticCategory.Message, "Can_only_convert_property_with_modifier_95137", "Can only convert property with modifier"), Switch_each_misused_0_to_1: diag(95138, ts.DiagnosticCategory.Message, "Switch_each_misused_0_to_1_95138", "Switch each misused '{0}' to '{1}'"), Convert_to_optional_chain_expression: diag(95139, ts.DiagnosticCategory.Message, "Convert_to_optional_chain_expression_95139", "Convert to optional chain expression"), Could_not_find_convertible_access_expression: diag(95140, ts.DiagnosticCategory.Message, "Could_not_find_convertible_access_expression_95140", "Could not find convertible access expression"), Could_not_find_matching_access_expressions: diag(95141, ts.DiagnosticCategory.Message, "Could_not_find_matching_access_expressions_95141", "Could not find matching access expressions"), Can_only_convert_logical_AND_access_chains: diag(95142, ts.DiagnosticCategory.Message, "Can_only_convert_logical_AND_access_chains_95142", "Can only convert logical AND access chains"), Add_void_to_Promise_resolved_without_a_value: diag(95143, ts.DiagnosticCategory.Message, "Add_void_to_Promise_resolved_without_a_value_95143", "Add 'void' to Promise resolved without a value"), Add_void_to_all_Promises_resolved_without_a_value: diag(95144, ts.DiagnosticCategory.Message, "Add_void_to_all_Promises_resolved_without_a_value_95144", "Add 'void' to all Promises resolved without a value"), Use_element_access_for_0: diag(95145, ts.DiagnosticCategory.Message, "Use_element_access_for_0_95145", "Use element access for '{0}'"), Use_element_access_for_all_undeclared_properties: diag(95146, ts.DiagnosticCategory.Message, "Use_element_access_for_all_undeclared_properties_95146", "Use element access for all undeclared properties."), Delete_all_unused_imports: diag(95147, ts.DiagnosticCategory.Message, "Delete_all_unused_imports_95147", "Delete all unused imports"), Infer_function_return_type: diag(95148, ts.DiagnosticCategory.Message, "Infer_function_return_type_95148", "Infer function return type"), Return_type_must_be_inferred_from_a_function: diag(95149, ts.DiagnosticCategory.Message, "Return_type_must_be_inferred_from_a_function_95149", "Return type must be inferred from a function"), Could_not_determine_function_return_type: diag(95150, ts.DiagnosticCategory.Message, "Could_not_determine_function_return_type_95150", "Could not determine function return type"), Could_not_convert_to_arrow_function: diag(95151, ts.DiagnosticCategory.Message, "Could_not_convert_to_arrow_function_95151", "Could not convert to arrow function"), Could_not_convert_to_named_function: diag(95152, ts.DiagnosticCategory.Message, "Could_not_convert_to_named_function_95152", "Could not convert to named function"), Could_not_convert_to_anonymous_function: diag(95153, ts.DiagnosticCategory.Message, "Could_not_convert_to_anonymous_function_95153", "Could not convert to anonymous function"), Can_only_convert_string_concatenation: diag(95154, ts.DiagnosticCategory.Message, "Can_only_convert_string_concatenation_95154", "Can only convert string concatenation"), Selection_is_not_a_valid_statement_or_statements: diag(95155, ts.DiagnosticCategory.Message, "Selection_is_not_a_valid_statement_or_statements_95155", "Selection is not a valid statement or statements"), Add_missing_function_declaration_0: diag(95156, ts.DiagnosticCategory.Message, "Add_missing_function_declaration_0_95156", "Add missing function declaration '{0}'"), Add_all_missing_function_declarations: diag(95157, ts.DiagnosticCategory.Message, "Add_all_missing_function_declarations_95157", "Add all missing function declarations"), Method_not_implemented: diag(95158, ts.DiagnosticCategory.Message, "Method_not_implemented_95158", "Method not implemented."), Function_not_implemented: diag(95159, ts.DiagnosticCategory.Message, "Function_not_implemented_95159", "Function not implemented."), Add_override_modifier: diag(95160, ts.DiagnosticCategory.Message, "Add_override_modifier_95160", "Add 'override' modifier"), Remove_override_modifier: diag(95161, ts.DiagnosticCategory.Message, "Remove_override_modifier_95161", "Remove 'override' modifier"), Add_all_missing_override_modifiers: diag(95162, ts.DiagnosticCategory.Message, "Add_all_missing_override_modifiers_95162", "Add all missing 'override' modifiers"), Remove_all_unnecessary_override_modifiers: diag(95163, ts.DiagnosticCategory.Message, "Remove_all_unnecessary_override_modifiers_95163", "Remove all unnecessary 'override' modifiers"), Can_only_convert_named_export: diag(95164, ts.DiagnosticCategory.Message, "Can_only_convert_named_export_95164", "Can only convert named export"), Add_missing_properties: diag(95165, ts.DiagnosticCategory.Message, "Add_missing_properties_95165", "Add missing properties"), Add_all_missing_properties: diag(95166, ts.DiagnosticCategory.Message, "Add_all_missing_properties_95166", "Add all missing properties"), Add_missing_attributes: diag(95167, ts.DiagnosticCategory.Message, "Add_missing_attributes_95167", "Add missing attributes"), Add_all_missing_attributes: diag(95168, ts.DiagnosticCategory.Message, "Add_all_missing_attributes_95168", "Add all missing attributes"), Add_undefined_to_optional_property_type: diag(95169, ts.DiagnosticCategory.Message, "Add_undefined_to_optional_property_type_95169", "Add 'undefined' to optional property type"), Convert_named_imports_to_default_import: diag(95170, ts.DiagnosticCategory.Message, "Convert_named_imports_to_default_import_95170", "Convert named imports to default import"), Delete_unused_param_tag_0: diag(95171, ts.DiagnosticCategory.Message, "Delete_unused_param_tag_0_95171", "Delete unused '@param' tag '{0}'"), Delete_all_unused_param_tags: diag(95172, ts.DiagnosticCategory.Message, "Delete_all_unused_param_tags_95172", "Delete all unused '@param' tags"), Rename_param_tag_name_0_to_1: diag(95173, ts.DiagnosticCategory.Message, "Rename_param_tag_name_0_to_1_95173", "Rename '@param' tag name '{0}' to '{1}'"), No_value_exists_in_scope_for_the_shorthand_property_0_Either_declare_one_or_provide_an_initializer: diag(18004, ts.DiagnosticCategory.Error, "No_value_exists_in_scope_for_the_shorthand_property_0_Either_declare_one_or_provide_an_initializer_18004", "No value exists in scope for the shorthand property '{0}'. Either declare one or provide an initializer."), Classes_may_not_have_a_field_named_constructor: diag(18006, ts.DiagnosticCategory.Error, "Classes_may_not_have_a_field_named_constructor_18006", "Classes may not have a field named 'constructor'."), JSX_expressions_may_not_use_the_comma_operator_Did_you_mean_to_write_an_array: diag(18007, ts.DiagnosticCategory.Error, "JSX_expressions_may_not_use_the_comma_operator_Did_you_mean_to_write_an_array_18007", "JSX expressions may not use the comma operator. Did you mean to write an array?"), Private_identifiers_cannot_be_used_as_parameters: diag(18009, ts.DiagnosticCategory.Error, "Private_identifiers_cannot_be_used_as_parameters_18009", "Private identifiers cannot be used as parameters."), An_accessibility_modifier_cannot_be_used_with_a_private_identifier: diag(18010, ts.DiagnosticCategory.Error, "An_accessibility_modifier_cannot_be_used_with_a_private_identifier_18010", "An accessibility modifier cannot be used with a private identifier."), The_operand_of_a_delete_operator_cannot_be_a_private_identifier: diag(18011, ts.DiagnosticCategory.Error, "The_operand_of_a_delete_operator_cannot_be_a_private_identifier_18011", "The operand of a 'delete' operator cannot be a private identifier."), constructor_is_a_reserved_word: diag(18012, ts.DiagnosticCategory.Error, "constructor_is_a_reserved_word_18012", "'#constructor' is a reserved word."), Property_0_is_not_accessible_outside_class_1_because_it_has_a_private_identifier: diag(18013, ts.DiagnosticCategory.Error, "Property_0_is_not_accessible_outside_class_1_because_it_has_a_private_identifier_18013", "Property '{0}' is not accessible outside class '{1}' because it has a private identifier."), The_property_0_cannot_be_accessed_on_type_1_within_this_class_because_it_is_shadowed_by_another_private_identifier_with_the_same_spelling: diag(18014, ts.DiagnosticCategory.Error, "The_property_0_cannot_be_accessed_on_type_1_within_this_class_because_it_is_shadowed_by_another_priv_18014", "The property '{0}' cannot be accessed on type '{1}' within this class because it is shadowed by another private identifier with the same spelling."), Property_0_in_type_1_refers_to_a_different_member_that_cannot_be_accessed_from_within_type_2: diag(18015, ts.DiagnosticCategory.Error, "Property_0_in_type_1_refers_to_a_different_member_that_cannot_be_accessed_from_within_type_2_18015", "Property '{0}' in type '{1}' refers to a different member that cannot be accessed from within type '{2}'."), Private_identifiers_are_not_allowed_outside_class_bodies: diag(18016, ts.DiagnosticCategory.Error, "Private_identifiers_are_not_allowed_outside_class_bodies_18016", "Private identifiers are not allowed outside class bodies."), The_shadowing_declaration_of_0_is_defined_here: diag(18017, ts.DiagnosticCategory.Error, "The_shadowing_declaration_of_0_is_defined_here_18017", "The shadowing declaration of '{0}' is defined here"), The_declaration_of_0_that_you_probably_intended_to_use_is_defined_here: diag(18018, ts.DiagnosticCategory.Error, "The_declaration_of_0_that_you_probably_intended_to_use_is_defined_here_18018", "The declaration of '{0}' that you probably intended to use is defined here"), _0_modifier_cannot_be_used_with_a_private_identifier: diag(18019, ts.DiagnosticCategory.Error, "_0_modifier_cannot_be_used_with_a_private_identifier_18019", "'{0}' modifier cannot be used with a private identifier."), An_enum_member_cannot_be_named_with_a_private_identifier: diag(18024, ts.DiagnosticCategory.Error, "An_enum_member_cannot_be_named_with_a_private_identifier_18024", "An enum member cannot be named with a private identifier."), can_only_be_used_at_the_start_of_a_file: diag(18026, ts.DiagnosticCategory.Error, "can_only_be_used_at_the_start_of_a_file_18026", "'#!' can only be used at the start of a file."), Compiler_reserves_name_0_when_emitting_private_identifier_downlevel: diag(18027, ts.DiagnosticCategory.Error, "Compiler_reserves_name_0_when_emitting_private_identifier_downlevel_18027", "Compiler reserves name '{0}' when emitting private identifier downlevel."), Private_identifiers_are_only_available_when_targeting_ECMAScript_2015_and_higher: diag(18028, ts.DiagnosticCategory.Error, "Private_identifiers_are_only_available_when_targeting_ECMAScript_2015_and_higher_18028", "Private identifiers are only available when targeting ECMAScript 2015 and higher."), Private_identifiers_are_not_allowed_in_variable_declarations: diag(18029, ts.DiagnosticCategory.Error, "Private_identifiers_are_not_allowed_in_variable_declarations_18029", "Private identifiers are not allowed in variable declarations."), An_optional_chain_cannot_contain_private_identifiers: diag(18030, ts.DiagnosticCategory.Error, "An_optional_chain_cannot_contain_private_identifiers_18030", "An optional chain cannot contain private identifiers."), The_intersection_0_was_reduced_to_never_because_property_1_has_conflicting_types_in_some_constituents: diag(18031, ts.DiagnosticCategory.Error, "The_intersection_0_was_reduced_to_never_because_property_1_has_conflicting_types_in_some_constituent_18031", "The intersection '{0}' was reduced to 'never' because property '{1}' has conflicting types in some constituents."), The_intersection_0_was_reduced_to_never_because_property_1_exists_in_multiple_constituents_and_is_private_in_some: diag(18032, ts.DiagnosticCategory.Error, "The_intersection_0_was_reduced_to_never_because_property_1_exists_in_multiple_constituents_and_is_pr_18032", "The intersection '{0}' was reduced to 'never' because property '{1}' exists in multiple constituents and is private in some."), Only_numeric_enums_can_have_computed_members_but_this_expression_has_type_0_If_you_do_not_need_exhaustiveness_checks_consider_using_an_object_literal_instead: diag(18033, ts.DiagnosticCategory.Error, "Only_numeric_enums_can_have_computed_members_but_this_expression_has_type_0_If_you_do_not_need_exhau_18033", "Only numeric enums can have computed members, but this expression has type '{0}'. If you do not need exhaustiveness checks, consider using an object literal instead."), Specify_the_JSX_fragment_factory_function_to_use_when_targeting_react_JSX_emit_with_jsxFactory_compiler_option_is_specified_e_g_Fragment: diag(18034, ts.DiagnosticCategory.Message, "Specify_the_JSX_fragment_factory_function_to_use_when_targeting_react_JSX_emit_with_jsxFactory_compi_18034", "Specify the JSX fragment factory function to use when targeting 'react' JSX emit with 'jsxFactory' compiler option is specified, e.g. 'Fragment'."), Invalid_value_for_jsxFragmentFactory_0_is_not_a_valid_identifier_or_qualified_name: diag(18035, ts.DiagnosticCategory.Error, "Invalid_value_for_jsxFragmentFactory_0_is_not_a_valid_identifier_or_qualified_name_18035", "Invalid value for 'jsxFragmentFactory'. '{0}' is not a valid identifier or qualified-name."), Class_decorators_can_t_be_used_with_static_private_identifier_Consider_removing_the_experimental_decorator: diag(18036, ts.DiagnosticCategory.Error, "Class_decorators_can_t_be_used_with_static_private_identifier_Consider_removing_the_experimental_dec_18036", "Class decorators can't be used with static private identifier. Consider removing the experimental decorator."), Await_expression_cannot_be_used_inside_a_class_static_block: diag(18037, ts.DiagnosticCategory.Error, "Await_expression_cannot_be_used_inside_a_class_static_block_18037", "Await expression cannot be used inside a class static block."), For_await_loops_cannot_be_used_inside_a_class_static_block: diag(18038, ts.DiagnosticCategory.Error, "For_await_loops_cannot_be_used_inside_a_class_static_block_18038", "'For await' loops cannot be used inside a class static block."), Invalid_use_of_0_It_cannot_be_used_inside_a_class_static_block: diag(18039, ts.DiagnosticCategory.Error, "Invalid_use_of_0_It_cannot_be_used_inside_a_class_static_block_18039", "Invalid use of '{0}'. It cannot be used inside a class static block."), A_return_statement_cannot_be_used_inside_a_class_static_block: diag(18041, ts.DiagnosticCategory.Error, "A_return_statement_cannot_be_used_inside_a_class_static_block_18041", "A 'return' statement cannot be used inside a class static block."), }; })(ts || (ts = {})); var ts; (function (ts) { var _a; /* @internal */ function tokenIsIdentifierOrKeyword(token) { return token >= 79 /* SyntaxKind.Identifier */; } ts.tokenIsIdentifierOrKeyword = tokenIsIdentifierOrKeyword; /* @internal */ function tokenIsIdentifierOrKeywordOrGreaterThan(token) { return token === 31 /* SyntaxKind.GreaterThanToken */ || tokenIsIdentifierOrKeyword(token); } ts.tokenIsIdentifierOrKeywordOrGreaterThan = tokenIsIdentifierOrKeywordOrGreaterThan; /** @internal */ ts.textToKeywordObj = (_a = { abstract: 126 /* SyntaxKind.AbstractKeyword */, any: 130 /* SyntaxKind.AnyKeyword */, as: 127 /* SyntaxKind.AsKeyword */, asserts: 128 /* SyntaxKind.AssertsKeyword */, assert: 129 /* SyntaxKind.AssertKeyword */, bigint: 158 /* SyntaxKind.BigIntKeyword */, boolean: 133 /* SyntaxKind.BooleanKeyword */, break: 81 /* SyntaxKind.BreakKeyword */, case: 82 /* SyntaxKind.CaseKeyword */, catch: 83 /* SyntaxKind.CatchKeyword */, class: 84 /* SyntaxKind.ClassKeyword */, continue: 86 /* SyntaxKind.ContinueKeyword */, const: 85 /* SyntaxKind.ConstKeyword */ }, _a["" + "constructor"] = 134 /* SyntaxKind.ConstructorKeyword */, _a.debugger = 87 /* SyntaxKind.DebuggerKeyword */, _a.declare = 135 /* SyntaxKind.DeclareKeyword */, _a.default = 88 /* SyntaxKind.DefaultKeyword */, _a.delete = 89 /* SyntaxKind.DeleteKeyword */, _a.do = 90 /* SyntaxKind.DoKeyword */, _a.else = 91 /* SyntaxKind.ElseKeyword */, _a.enum = 92 /* SyntaxKind.EnumKeyword */, _a.export = 93 /* SyntaxKind.ExportKeyword */, _a.extends = 94 /* SyntaxKind.ExtendsKeyword */, _a.false = 95 /* SyntaxKind.FalseKeyword */, _a.finally = 96 /* SyntaxKind.FinallyKeyword */, _a.for = 97 /* SyntaxKind.ForKeyword */, _a.from = 156 /* SyntaxKind.FromKeyword */, _a.function = 98 /* SyntaxKind.FunctionKeyword */, _a.get = 136 /* SyntaxKind.GetKeyword */, _a.if = 99 /* SyntaxKind.IfKeyword */, _a.implements = 117 /* SyntaxKind.ImplementsKeyword */, _a.import = 100 /* SyntaxKind.ImportKeyword */, _a.in = 101 /* SyntaxKind.InKeyword */, _a.infer = 137 /* SyntaxKind.InferKeyword */, _a.instanceof = 102 /* SyntaxKind.InstanceOfKeyword */, _a.interface = 118 /* SyntaxKind.InterfaceKeyword */, _a.intrinsic = 138 /* SyntaxKind.IntrinsicKeyword */, _a.is = 139 /* SyntaxKind.IsKeyword */, _a.keyof = 140 /* SyntaxKind.KeyOfKeyword */, _a.let = 119 /* SyntaxKind.LetKeyword */, _a.module = 141 /* SyntaxKind.ModuleKeyword */, _a.namespace = 142 /* SyntaxKind.NamespaceKeyword */, _a.never = 143 /* SyntaxKind.NeverKeyword */, _a.new = 103 /* SyntaxKind.NewKeyword */, _a.null = 104 /* SyntaxKind.NullKeyword */, _a.number = 147 /* SyntaxKind.NumberKeyword */, _a.object = 148 /* SyntaxKind.ObjectKeyword */, _a.package = 120 /* SyntaxKind.PackageKeyword */, _a.private = 121 /* SyntaxKind.PrivateKeyword */, _a.protected = 122 /* SyntaxKind.ProtectedKeyword */, _a.public = 123 /* SyntaxKind.PublicKeyword */, _a.override = 159 /* SyntaxKind.OverrideKeyword */, _a.out = 144 /* SyntaxKind.OutKeyword */, _a.readonly = 145 /* SyntaxKind.ReadonlyKeyword */, _a.require = 146 /* SyntaxKind.RequireKeyword */, _a.global = 157 /* SyntaxKind.GlobalKeyword */, _a.return = 105 /* SyntaxKind.ReturnKeyword */, _a.set = 149 /* SyntaxKind.SetKeyword */, _a.static = 124 /* SyntaxKind.StaticKeyword */, _a.string = 150 /* SyntaxKind.StringKeyword */, _a.super = 106 /* SyntaxKind.SuperKeyword */, _a.switch = 107 /* SyntaxKind.SwitchKeyword */, _a.symbol = 151 /* SyntaxKind.SymbolKeyword */, _a.this = 108 /* SyntaxKind.ThisKeyword */, _a.throw = 109 /* SyntaxKind.ThrowKeyword */, _a.true = 110 /* SyntaxKind.TrueKeyword */, _a.try = 111 /* SyntaxKind.TryKeyword */, _a.type = 152 /* SyntaxKind.TypeKeyword */, _a.typeof = 112 /* SyntaxKind.TypeOfKeyword */, _a.undefined = 153 /* SyntaxKind.UndefinedKeyword */, _a.unique = 154 /* SyntaxKind.UniqueKeyword */, _a.unknown = 155 /* SyntaxKind.UnknownKeyword */, _a.var = 113 /* SyntaxKind.VarKeyword */, _a.void = 114 /* SyntaxKind.VoidKeyword */, _a.while = 115 /* SyntaxKind.WhileKeyword */, _a.with = 116 /* SyntaxKind.WithKeyword */, _a.yield = 125 /* SyntaxKind.YieldKeyword */, _a.async = 131 /* SyntaxKind.AsyncKeyword */, _a.await = 132 /* SyntaxKind.AwaitKeyword */, _a.of = 160 /* SyntaxKind.OfKeyword */, _a); var textToKeyword = new ts.Map(ts.getEntries(ts.textToKeywordObj)); var textToToken = new ts.Map(ts.getEntries(__assign(__assign({}, ts.textToKeywordObj), { "{": 18 /* SyntaxKind.OpenBraceToken */, "}": 19 /* SyntaxKind.CloseBraceToken */, "(": 20 /* SyntaxKind.OpenParenToken */, ")": 21 /* SyntaxKind.CloseParenToken */, "[": 22 /* SyntaxKind.OpenBracketToken */, "]": 23 /* SyntaxKind.CloseBracketToken */, ".": 24 /* SyntaxKind.DotToken */, "...": 25 /* SyntaxKind.DotDotDotToken */, ";": 26 /* SyntaxKind.SemicolonToken */, ",": 27 /* SyntaxKind.CommaToken */, "<": 29 /* SyntaxKind.LessThanToken */, ">": 31 /* SyntaxKind.GreaterThanToken */, "<=": 32 /* SyntaxKind.LessThanEqualsToken */, ">=": 33 /* SyntaxKind.GreaterThanEqualsToken */, "==": 34 /* SyntaxKind.EqualsEqualsToken */, "!=": 35 /* SyntaxKind.ExclamationEqualsToken */, "===": 36 /* SyntaxKind.EqualsEqualsEqualsToken */, "!==": 37 /* SyntaxKind.ExclamationEqualsEqualsToken */, "=>": 38 /* SyntaxKind.EqualsGreaterThanToken */, "+": 39 /* SyntaxKind.PlusToken */, "-": 40 /* SyntaxKind.MinusToken */, "**": 42 /* SyntaxKind.AsteriskAsteriskToken */, "*": 41 /* SyntaxKind.AsteriskToken */, "/": 43 /* SyntaxKind.SlashToken */, "%": 44 /* SyntaxKind.PercentToken */, "++": 45 /* SyntaxKind.PlusPlusToken */, "--": 46 /* SyntaxKind.MinusMinusToken */, "<<": 47 /* SyntaxKind.LessThanLessThanToken */, ">": 48 /* SyntaxKind.GreaterThanGreaterThanToken */, ">>>": 49 /* SyntaxKind.GreaterThanGreaterThanGreaterThanToken */, "&": 50 /* SyntaxKind.AmpersandToken */, "|": 51 /* SyntaxKind.BarToken */, "^": 52 /* SyntaxKind.CaretToken */, "!": 53 /* SyntaxKind.ExclamationToken */, "~": 54 /* SyntaxKind.TildeToken */, "&&": 55 /* SyntaxKind.AmpersandAmpersandToken */, "||": 56 /* SyntaxKind.BarBarToken */, "?": 57 /* SyntaxKind.QuestionToken */, "??": 60 /* SyntaxKind.QuestionQuestionToken */, "?.": 28 /* SyntaxKind.QuestionDotToken */, ":": 58 /* SyntaxKind.ColonToken */, "=": 63 /* SyntaxKind.EqualsToken */, "+=": 64 /* SyntaxKind.PlusEqualsToken */, "-=": 65 /* SyntaxKind.MinusEqualsToken */, "*=": 66 /* SyntaxKind.AsteriskEqualsToken */, "**=": 67 /* SyntaxKind.AsteriskAsteriskEqualsToken */, "/=": 68 /* SyntaxKind.SlashEqualsToken */, "%=": 69 /* SyntaxKind.PercentEqualsToken */, "<<=": 70 /* SyntaxKind.LessThanLessThanEqualsToken */, ">>=": 71 /* SyntaxKind.GreaterThanGreaterThanEqualsToken */, ">>>=": 72 /* SyntaxKind.GreaterThanGreaterThanGreaterThanEqualsToken */, "&=": 73 /* SyntaxKind.AmpersandEqualsToken */, "|=": 74 /* SyntaxKind.BarEqualsToken */, "^=": 78 /* SyntaxKind.CaretEqualsToken */, "||=": 75 /* SyntaxKind.BarBarEqualsToken */, "&&=": 76 /* SyntaxKind.AmpersandAmpersandEqualsToken */, "??=": 77 /* SyntaxKind.QuestionQuestionEqualsToken */, "@": 59 /* SyntaxKind.AtToken */, "#": 62 /* SyntaxKind.HashToken */, "`": 61 /* SyntaxKind.BacktickToken */ }))); /* As per ECMAScript Language Specification 3th Edition, Section 7.6: Identifiers IdentifierStart :: Can contain Unicode 3.0.0 categories: Uppercase letter (Lu), Lowercase letter (Ll), Titlecase letter (Lt), Modifier letter (Lm), Other letter (Lo), or Letter number (Nl). IdentifierPart :: = Can contain IdentifierStart + Unicode 3.0.0 categories: Non-spacing mark (Mn), Combining spacing mark (Mc), Decimal number (Nd), or Connector punctuation (Pc). Codepoint ranges for ES3 Identifiers are extracted from the Unicode 3.0.0 specification at: http://www.unicode.org/Public/3.0-Update/UnicodeData-3.0.0.txt */ var unicodeES3IdentifierStart = [170, 170, 181, 181, 186, 186, 192, 214, 216, 246, 248, 543, 546, 563, 592, 685, 688, 696, 699, 705, 720, 721, 736, 740, 750, 750, 890, 890, 902, 902, 904, 906, 908, 908, 910, 929, 931, 974, 976, 983, 986, 1011, 1024, 1153, 1164, 1220, 1223, 1224, 1227, 1228, 1232, 1269, 1272, 1273, 1329, 1366, 1369, 1369, 1377, 1415, 1488, 1514, 1520, 1522, 1569, 1594, 1600, 1610, 1649, 1747, 1749, 1749, 1765, 1766, 1786, 1788, 1808, 1808, 1810, 1836, 1920, 1957, 2309, 2361, 2365, 2365, 2384, 2384, 2392, 2401, 2437, 2444, 2447, 2448, 2451, 2472, 2474, 2480, 2482, 2482, 2486, 2489, 2524, 2525, 2527, 2529, 2544, 2545, 2565, 2570, 2575, 2576, 2579, 2600, 2602, 2608, 2610, 2611, 2613, 2614, 2616, 2617, 2649, 2652, 2654, 2654, 2674, 2676, 2693, 2699, 2701, 2701, 2703, 2705, 2707, 2728, 2730, 2736, 2738, 2739, 2741, 2745, 2749, 2749, 2768, 2768, 2784, 2784, 2821, 2828, 2831, 2832, 2835, 2856, 2858, 2864, 2866, 2867, 2870, 2873, 2877, 2877, 2908, 2909, 2911, 2913, 2949, 2954, 2958, 2960, 2962, 2965, 2969, 2970, 2972, 2972, 2974, 2975, 2979, 2980, 2984, 2986, 2990, 2997, 2999, 3001, 3077, 3084, 3086, 3088, 3090, 3112, 3114, 3123, 3125, 3129, 3168, 3169, 3205, 3212, 3214, 3216, 3218, 3240, 3242, 3251, 3253, 3257, 3294, 3294, 3296, 3297, 3333, 3340, 3342, 3344, 3346, 3368, 3370, 3385, 3424, 3425, 3461, 3478, 3482, 3505, 3507, 3515, 3517, 3517, 3520, 3526, 3585, 3632, 3634, 3635, 3648, 3654, 3713, 3714, 3716, 3716, 3719, 3720, 3722, 3722, 3725, 3725, 3732, 3735, 3737, 3743, 3745, 3747, 3749, 3749, 3751, 3751, 3754, 3755, 3757, 3760, 3762, 3763, 3773, 3773, 3776, 3780, 3782, 3782, 3804, 3805, 3840, 3840, 3904, 3911, 3913, 3946, 3976, 3979, 4096, 4129, 4131, 4135, 4137, 4138, 4176, 4181, 4256, 4293, 4304, 4342, 4352, 4441, 4447, 4514, 4520, 4601, 4608, 4614, 4616, 4678, 4680, 4680, 4682, 4685, 4688, 4694, 4696, 4696, 4698, 4701, 4704, 4742, 4744, 4744, 4746, 4749, 4752, 4782, 4784, 4784, 4786, 4789, 4792, 4798, 4800, 4800, 4802, 4805, 4808, 4814, 4816, 4822, 4824, 4846, 4848, 4878, 4880, 4880, 4882, 4885, 4888, 4894, 4896, 4934, 4936, 4954, 5024, 5108, 5121, 5740, 5743, 5750, 5761, 5786, 5792, 5866, 6016, 6067, 6176, 6263, 6272, 6312, 7680, 7835, 7840, 7929, 7936, 7957, 7960, 7965, 7968, 8005, 8008, 8013, 8016, 8023, 8025, 8025, 8027, 8027, 8029, 8029, 8031, 8061, 8064, 8116, 8118, 8124, 8126, 8126, 8130, 8132, 8134, 8140, 8144, 8147, 8150, 8155, 8160, 8172, 8178, 8180, 8182, 8188, 8319, 8319, 8450, 8450, 8455, 8455, 8458, 8467, 8469, 8469, 8473, 8477, 8484, 8484, 8486, 8486, 8488, 8488, 8490, 8493, 8495, 8497, 8499, 8505, 8544, 8579, 12293, 12295, 12321, 12329, 12337, 12341, 12344, 12346, 12353, 12436, 12445, 12446, 12449, 12538, 12540, 12542, 12549, 12588, 12593, 12686, 12704, 12727, 13312, 19893, 19968, 40869, 40960, 42124, 44032, 55203, 63744, 64045, 64256, 64262, 64275, 64279, 64285, 64285, 64287, 64296, 64298, 64310, 64312, 64316, 64318, 64318, 64320, 64321, 64323, 64324, 64326, 64433, 64467, 64829, 64848, 64911, 64914, 64967, 65008, 65019, 65136, 65138, 65140, 65140, 65142, 65276, 65313, 65338, 65345, 65370, 65382, 65470, 65474, 65479, 65482, 65487, 65490, 65495, 65498, 65500,]; var unicodeES3IdentifierPart = [170, 170, 181, 181, 186, 186, 192, 214, 216, 246, 248, 543, 546, 563, 592, 685, 688, 696, 699, 705, 720, 721, 736, 740, 750, 750, 768, 846, 864, 866, 890, 890, 902, 902, 904, 906, 908, 908, 910, 929, 931, 974, 976, 983, 986, 1011, 1024, 1153, 1155, 1158, 1164, 1220, 1223, 1224, 1227, 1228, 1232, 1269, 1272, 1273, 1329, 1366, 1369, 1369, 1377, 1415, 1425, 1441, 1443, 1465, 1467, 1469, 1471, 1471, 1473, 1474, 1476, 1476, 1488, 1514, 1520, 1522, 1569, 1594, 1600, 1621, 1632, 1641, 1648, 1747, 1749, 1756, 1759, 1768, 1770, 1773, 1776, 1788, 1808, 1836, 1840, 1866, 1920, 1968, 2305, 2307, 2309, 2361, 2364, 2381, 2384, 2388, 2392, 2403, 2406, 2415, 2433, 2435, 2437, 2444, 2447, 2448, 2451, 2472, 2474, 2480, 2482, 2482, 2486, 2489, 2492, 2492, 2494, 2500, 2503, 2504, 2507, 2509, 2519, 2519, 2524, 2525, 2527, 2531, 2534, 2545, 2562, 2562, 2565, 2570, 2575, 2576, 2579, 2600, 2602, 2608, 2610, 2611, 2613, 2614, 2616, 2617, 2620, 2620, 2622, 2626, 2631, 2632, 2635, 2637, 2649, 2652, 2654, 2654, 2662, 2676, 2689, 2691, 2693, 2699, 2701, 2701, 2703, 2705, 2707, 2728, 2730, 2736, 2738, 2739, 2741, 2745, 2748, 2757, 2759, 2761, 2763, 2765, 2768, 2768, 2784, 2784, 2790, 2799, 2817, 2819, 2821, 2828, 2831, 2832, 2835, 2856, 2858, 2864, 2866, 2867, 2870, 2873, 2876, 2883, 2887, 2888, 2891, 2893, 2902, 2903, 2908, 2909, 2911, 2913, 2918, 2927, 2946, 2947, 2949, 2954, 2958, 2960, 2962, 2965, 2969, 2970, 2972, 2972, 2974, 2975, 2979, 2980, 2984, 2986, 2990, 2997, 2999, 3001, 3006, 3010, 3014, 3016, 3018, 3021, 3031, 3031, 3047, 3055, 3073, 3075, 3077, 3084, 3086, 3088, 3090, 3112, 3114, 3123, 3125, 3129, 3134, 3140, 3142, 3144, 3146, 3149, 3157, 3158, 3168, 3169, 3174, 3183, 3202, 3203, 3205, 3212, 3214, 3216, 3218, 3240, 3242, 3251, 3253, 3257, 3262, 3268, 3270, 3272, 3274, 3277, 3285, 3286, 3294, 3294, 3296, 3297, 3302, 3311, 3330, 3331, 3333, 3340, 3342, 3344, 3346, 3368, 3370, 3385, 3390, 3395, 3398, 3400, 3402, 3405, 3415, 3415, 3424, 3425, 3430, 3439, 3458, 3459, 3461, 3478, 3482, 3505, 3507, 3515, 3517, 3517, 3520, 3526, 3530, 3530, 3535, 3540, 3542, 3542, 3544, 3551, 3570, 3571, 3585, 3642, 3648, 3662, 3664, 3673, 3713, 3714, 3716, 3716, 3719, 3720, 3722, 3722, 3725, 3725, 3732, 3735, 3737, 3743, 3745, 3747, 3749, 3749, 3751, 3751, 3754, 3755, 3757, 3769, 3771, 3773, 3776, 3780, 3782, 3782, 3784, 3789, 3792, 3801, 3804, 3805, 3840, 3840, 3864, 3865, 3872, 3881, 3893, 3893, 3895, 3895, 3897, 3897, 3902, 3911, 3913, 3946, 3953, 3972, 3974, 3979, 3984, 3991, 3993, 4028, 4038, 4038, 4096, 4129, 4131, 4135, 4137, 4138, 4140, 4146, 4150, 4153, 4160, 4169, 4176, 4185, 4256, 4293, 4304, 4342, 4352, 4441, 4447, 4514, 4520, 4601, 4608, 4614, 4616, 4678, 4680, 4680, 4682, 4685, 4688, 4694, 4696, 4696, 4698, 4701, 4704, 4742, 4744, 4744, 4746, 4749, 4752, 4782, 4784, 4784, 4786, 4789, 4792, 4798, 4800, 4800, 4802, 4805, 4808, 4814, 4816, 4822, 4824, 4846, 4848, 4878, 4880, 4880, 4882, 4885, 4888, 4894, 4896, 4934, 4936, 4954, 4969, 4977, 5024, 5108, 5121, 5740, 5743, 5750, 5761, 5786, 5792, 5866, 6016, 6099, 6112, 6121, 6160, 6169, 6176, 6263, 6272, 6313, 7680, 7835, 7840, 7929, 7936, 7957, 7960, 7965, 7968, 8005, 8008, 8013, 8016, 8023, 8025, 8025, 8027, 8027, 8029, 8029, 8031, 8061, 8064, 8116, 8118, 8124, 8126, 8126, 8130, 8132, 8134, 8140, 8144, 8147, 8150, 8155, 8160, 8172, 8178, 8180, 8182, 8188, 8255, 8256, 8319, 8319, 8400, 8412, 8417, 8417, 8450, 8450, 8455, 8455, 8458, 8467, 8469, 8469, 8473, 8477, 8484, 8484, 8486, 8486, 8488, 8488, 8490, 8493, 8495, 8497, 8499, 8505, 8544, 8579, 12293, 12295, 12321, 12335, 12337, 12341, 12344, 12346, 12353, 12436, 12441, 12442, 12445, 12446, 12449, 12542, 12549, 12588, 12593, 12686, 12704, 12727, 13312, 19893, 19968, 40869, 40960, 42124, 44032, 55203, 63744, 64045, 64256, 64262, 64275, 64279, 64285, 64296, 64298, 64310, 64312, 64316, 64318, 64318, 64320, 64321, 64323, 64324, 64326, 64433, 64467, 64829, 64848, 64911, 64914, 64967, 65008, 65019, 65056, 65059, 65075, 65076, 65101, 65103, 65136, 65138, 65140, 65140, 65142, 65276, 65296, 65305, 65313, 65338, 65343, 65343, 65345, 65370, 65381, 65470, 65474, 65479, 65482, 65487, 65490, 65495, 65498, 65500,]; /* As per ECMAScript Language Specification 5th Edition, Section 7.6: ISyntaxToken Names and Identifiers IdentifierStart :: Can contain Unicode 6.2 categories: Uppercase letter (Lu), Lowercase letter (Ll), Titlecase letter (Lt), Modifier letter (Lm), Other letter (Lo), or Letter number (Nl). IdentifierPart :: Can contain IdentifierStart + Unicode 6.2 categories: Non-spacing mark (Mn), Combining spacing mark (Mc), Decimal number (Nd), Connector punctuation (Pc), , or . Codepoint ranges for ES5 Identifiers are extracted from the Unicode 6.2 specification at: http://www.unicode.org/Public/6.2.0/ucd/UnicodeData.txt */ var unicodeES5IdentifierStart = [170, 170, 181, 181, 186, 186, 192, 214, 216, 246, 248, 705, 710, 721, 736, 740, 748, 748, 750, 750, 880, 884, 886, 887, 890, 893, 902, 902, 904, 906, 908, 908, 910, 929, 931, 1013, 1015, 1153, 1162, 1319, 1329, 1366, 1369, 1369, 1377, 1415, 1488, 1514, 1520, 1522, 1568, 1610, 1646, 1647, 1649, 1747, 1749, 1749, 1765, 1766, 1774, 1775, 1786, 1788, 1791, 1791, 1808, 1808, 1810, 1839, 1869, 1957, 1969, 1969, 1994, 2026, 2036, 2037, 2042, 2042, 2048, 2069, 2074, 2074, 2084, 2084, 2088, 2088, 2112, 2136, 2208, 2208, 2210, 2220, 2308, 2361, 2365, 2365, 2384, 2384, 2392, 2401, 2417, 2423, 2425, 2431, 2437, 2444, 2447, 2448, 2451, 2472, 2474, 2480, 2482, 2482, 2486, 2489, 2493, 2493, 2510, 2510, 2524, 2525, 2527, 2529, 2544, 2545, 2565, 2570, 2575, 2576, 2579, 2600, 2602, 2608, 2610, 2611, 2613, 2614, 2616, 2617, 2649, 2652, 2654, 2654, 2674, 2676, 2693, 2701, 2703, 2705, 2707, 2728, 2730, 2736, 2738, 2739, 2741, 2745, 2749, 2749, 2768, 2768, 2784, 2785, 2821, 2828, 2831, 2832, 2835, 2856, 2858, 2864, 2866, 2867, 2869, 2873, 2877, 2877, 2908, 2909, 2911, 2913, 2929, 2929, 2947, 2947, 2949, 2954, 2958, 2960, 2962, 2965, 2969, 2970, 2972, 2972, 2974, 2975, 2979, 2980, 2984, 2986, 2990, 3001, 3024, 3024, 3077, 3084, 3086, 3088, 3090, 3112, 3114, 3123, 3125, 3129, 3133, 3133, 3160, 3161, 3168, 3169, 3205, 3212, 3214, 3216, 3218, 3240, 3242, 3251, 3253, 3257, 3261, 3261, 3294, 3294, 3296, 3297, 3313, 3314, 3333, 3340, 3342, 3344, 3346, 3386, 3389, 3389, 3406, 3406, 3424, 3425, 3450, 3455, 3461, 3478, 3482, 3505, 3507, 3515, 3517, 3517, 3520, 3526, 3585, 3632, 3634, 3635, 3648, 3654, 3713, 3714, 3716, 3716, 3719, 3720, 3722, 3722, 3725, 3725, 3732, 3735, 3737, 3743, 3745, 3747, 3749, 3749, 3751, 3751, 3754, 3755, 3757, 3760, 3762, 3763, 3773, 3773, 3776, 3780, 3782, 3782, 3804, 3807, 3840, 3840, 3904, 3911, 3913, 3948, 3976, 3980, 4096, 4138, 4159, 4159, 4176, 4181, 4186, 4189, 4193, 4193, 4197, 4198, 4206, 4208, 4213, 4225, 4238, 4238, 4256, 4293, 4295, 4295, 4301, 4301, 4304, 4346, 4348, 4680, 4682, 4685, 4688, 4694, 4696, 4696, 4698, 4701, 4704, 4744, 4746, 4749, 4752, 4784, 4786, 4789, 4792, 4798, 4800, 4800, 4802, 4805, 4808, 4822, 4824, 4880, 4882, 4885, 4888, 4954, 4992, 5007, 5024, 5108, 5121, 5740, 5743, 5759, 5761, 5786, 5792, 5866, 5870, 5872, 5888, 5900, 5902, 5905, 5920, 5937, 5952, 5969, 5984, 5996, 5998, 6000, 6016, 6067, 6103, 6103, 6108, 6108, 6176, 6263, 6272, 6312, 6314, 6314, 6320, 6389, 6400, 6428, 6480, 6509, 6512, 6516, 6528, 6571, 6593, 6599, 6656, 6678, 6688, 6740, 6823, 6823, 6917, 6963, 6981, 6987, 7043, 7072, 7086, 7087, 7098, 7141, 7168, 7203, 7245, 7247, 7258, 7293, 7401, 7404, 7406, 7409, 7413, 7414, 7424, 7615, 7680, 7957, 7960, 7965, 7968, 8005, 8008, 8013, 8016, 8023, 8025, 8025, 8027, 8027, 8029, 8029, 8031, 8061, 8064, 8116, 8118, 8124, 8126, 8126, 8130, 8132, 8134, 8140, 8144, 8147, 8150, 8155, 8160, 8172, 8178, 8180, 8182, 8188, 8305, 8305, 8319, 8319, 8336, 8348, 8450, 8450, 8455, 8455, 8458, 8467, 8469, 8469, 8473, 8477, 8484, 8484, 8486, 8486, 8488, 8488, 8490, 8493, 8495, 8505, 8508, 8511, 8517, 8521, 8526, 8526, 8544, 8584, 11264, 11310, 11312, 11358, 11360, 11492, 11499, 11502, 11506, 11507, 11520, 11557, 11559, 11559, 11565, 11565, 11568, 11623, 11631, 11631, 11648, 11670, 11680, 11686, 11688, 11694, 11696, 11702, 11704, 11710, 11712, 11718, 11720, 11726, 11728, 11734, 11736, 11742, 11823, 11823, 12293, 12295, 12321, 12329, 12337, 12341, 12344, 12348, 12353, 12438, 12445, 12447, 12449, 12538, 12540, 12543, 12549, 12589, 12593, 12686, 12704, 12730, 12784, 12799, 13312, 19893, 19968, 40908, 40960, 42124, 42192, 42237, 42240, 42508, 42512, 42527, 42538, 42539, 42560, 42606, 42623, 42647, 42656, 42735, 42775, 42783, 42786, 42888, 42891, 42894, 42896, 42899, 42912, 42922, 43000, 43009, 43011, 43013, 43015, 43018, 43020, 43042, 43072, 43123, 43138, 43187, 43250, 43255, 43259, 43259, 43274, 43301, 43312, 43334, 43360, 43388, 43396, 43442, 43471, 43471, 43520, 43560, 43584, 43586, 43588, 43595, 43616, 43638, 43642, 43642, 43648, 43695, 43697, 43697, 43701, 43702, 43705, 43709, 43712, 43712, 43714, 43714, 43739, 43741, 43744, 43754, 43762, 43764, 43777, 43782, 43785, 43790, 43793, 43798, 43808, 43814, 43816, 43822, 43968, 44002, 44032, 55203, 55216, 55238, 55243, 55291, 63744, 64109, 64112, 64217, 64256, 64262, 64275, 64279, 64285, 64285, 64287, 64296, 64298, 64310, 64312, 64316, 64318, 64318, 64320, 64321, 64323, 64324, 64326, 64433, 64467, 64829, 64848, 64911, 64914, 64967, 65008, 65019, 65136, 65140, 65142, 65276, 65313, 65338, 65345, 65370, 65382, 65470, 65474, 65479, 65482, 65487, 65490, 65495, 65498, 65500,]; var unicodeES5IdentifierPart = [170, 170, 181, 181, 186, 186, 192, 214, 216, 246, 248, 705, 710, 721, 736, 740, 748, 748, 750, 750, 768, 884, 886, 887, 890, 893, 902, 902, 904, 906, 908, 908, 910, 929, 931, 1013, 1015, 1153, 1155, 1159, 1162, 1319, 1329, 1366, 1369, 1369, 1377, 1415, 1425, 1469, 1471, 1471, 1473, 1474, 1476, 1477, 1479, 1479, 1488, 1514, 1520, 1522, 1552, 1562, 1568, 1641, 1646, 1747, 1749, 1756, 1759, 1768, 1770, 1788, 1791, 1791, 1808, 1866, 1869, 1969, 1984, 2037, 2042, 2042, 2048, 2093, 2112, 2139, 2208, 2208, 2210, 2220, 2276, 2302, 2304, 2403, 2406, 2415, 2417, 2423, 2425, 2431, 2433, 2435, 2437, 2444, 2447, 2448, 2451, 2472, 2474, 2480, 2482, 2482, 2486, 2489, 2492, 2500, 2503, 2504, 2507, 2510, 2519, 2519, 2524, 2525, 2527, 2531, 2534, 2545, 2561, 2563, 2565, 2570, 2575, 2576, 2579, 2600, 2602, 2608, 2610, 2611, 2613, 2614, 2616, 2617, 2620, 2620, 2622, 2626, 2631, 2632, 2635, 2637, 2641, 2641, 2649, 2652, 2654, 2654, 2662, 2677, 2689, 2691, 2693, 2701, 2703, 2705, 2707, 2728, 2730, 2736, 2738, 2739, 2741, 2745, 2748, 2757, 2759, 2761, 2763, 2765, 2768, 2768, 2784, 2787, 2790, 2799, 2817, 2819, 2821, 2828, 2831, 2832, 2835, 2856, 2858, 2864, 2866, 2867, 2869, 2873, 2876, 2884, 2887, 2888, 2891, 2893, 2902, 2903, 2908, 2909, 2911, 2915, 2918, 2927, 2929, 2929, 2946, 2947, 2949, 2954, 2958, 2960, 2962, 2965, 2969, 2970, 2972, 2972, 2974, 2975, 2979, 2980, 2984, 2986, 2990, 3001, 3006, 3010, 3014, 3016, 3018, 3021, 3024, 3024, 3031, 3031, 3046, 3055, 3073, 3075, 3077, 3084, 3086, 3088, 3090, 3112, 3114, 3123, 3125, 3129, 3133, 3140, 3142, 3144, 3146, 3149, 3157, 3158, 3160, 3161, 3168, 3171, 3174, 3183, 3202, 3203, 3205, 3212, 3214, 3216, 3218, 3240, 3242, 3251, 3253, 3257, 3260, 3268, 3270, 3272, 3274, 3277, 3285, 3286, 3294, 3294, 3296, 3299, 3302, 3311, 3313, 3314, 3330, 3331, 3333, 3340, 3342, 3344, 3346, 3386, 3389, 3396, 3398, 3400, 3402, 3406, 3415, 3415, 3424, 3427, 3430, 3439, 3450, 3455, 3458, 3459, 3461, 3478, 3482, 3505, 3507, 3515, 3517, 3517, 3520, 3526, 3530, 3530, 3535, 3540, 3542, 3542, 3544, 3551, 3570, 3571, 3585, 3642, 3648, 3662, 3664, 3673, 3713, 3714, 3716, 3716, 3719, 3720, 3722, 3722, 3725, 3725, 3732, 3735, 3737, 3743, 3745, 3747, 3749, 3749, 3751, 3751, 3754, 3755, 3757, 3769, 3771, 3773, 3776, 3780, 3782, 3782, 3784, 3789, 3792, 3801, 3804, 3807, 3840, 3840, 3864, 3865, 3872, 3881, 3893, 3893, 3895, 3895, 3897, 3897, 3902, 3911, 3913, 3948, 3953, 3972, 3974, 3991, 3993, 4028, 4038, 4038, 4096, 4169, 4176, 4253, 4256, 4293, 4295, 4295, 4301, 4301, 4304, 4346, 4348, 4680, 4682, 4685, 4688, 4694, 4696, 4696, 4698, 4701, 4704, 4744, 4746, 4749, 4752, 4784, 4786, 4789, 4792, 4798, 4800, 4800, 4802, 4805, 4808, 4822, 4824, 4880, 4882, 4885, 4888, 4954, 4957, 4959, 4992, 5007, 5024, 5108, 5121, 5740, 5743, 5759, 5761, 5786, 5792, 5866, 5870, 5872, 5888, 5900, 5902, 5908, 5920, 5940, 5952, 5971, 5984, 5996, 5998, 6000, 6002, 6003, 6016, 6099, 6103, 6103, 6108, 6109, 6112, 6121, 6155, 6157, 6160, 6169, 6176, 6263, 6272, 6314, 6320, 6389, 6400, 6428, 6432, 6443, 6448, 6459, 6470, 6509, 6512, 6516, 6528, 6571, 6576, 6601, 6608, 6617, 6656, 6683, 6688, 6750, 6752, 6780, 6783, 6793, 6800, 6809, 6823, 6823, 6912, 6987, 6992, 7001, 7019, 7027, 7040, 7155, 7168, 7223, 7232, 7241, 7245, 7293, 7376, 7378, 7380, 7414, 7424, 7654, 7676, 7957, 7960, 7965, 7968, 8005, 8008, 8013, 8016, 8023, 8025, 8025, 8027, 8027, 8029, 8029, 8031, 8061, 8064, 8116, 8118, 8124, 8126, 8126, 8130, 8132, 8134, 8140, 8144, 8147, 8150, 8155, 8160, 8172, 8178, 8180, 8182, 8188, 8204, 8205, 8255, 8256, 8276, 8276, 8305, 8305, 8319, 8319, 8336, 8348, 8400, 8412, 8417, 8417, 8421, 8432, 8450, 8450, 8455, 8455, 8458, 8467, 8469, 8469, 8473, 8477, 8484, 8484, 8486, 8486, 8488, 8488, 8490, 8493, 8495, 8505, 8508, 8511, 8517, 8521, 8526, 8526, 8544, 8584, 11264, 11310, 11312, 11358, 11360, 11492, 11499, 11507, 11520, 11557, 11559, 11559, 11565, 11565, 11568, 11623, 11631, 11631, 11647, 11670, 11680, 11686, 11688, 11694, 11696, 11702, 11704, 11710, 11712, 11718, 11720, 11726, 11728, 11734, 11736, 11742, 11744, 11775, 11823, 11823, 12293, 12295, 12321, 12335, 12337, 12341, 12344, 12348, 12353, 12438, 12441, 12442, 12445, 12447, 12449, 12538, 12540, 12543, 12549, 12589, 12593, 12686, 12704, 12730, 12784, 12799, 13312, 19893, 19968, 40908, 40960, 42124, 42192, 42237, 42240, 42508, 42512, 42539, 42560, 42607, 42612, 42621, 42623, 42647, 42655, 42737, 42775, 42783, 42786, 42888, 42891, 42894, 42896, 42899, 42912, 42922, 43000, 43047, 43072, 43123, 43136, 43204, 43216, 43225, 43232, 43255, 43259, 43259, 43264, 43309, 43312, 43347, 43360, 43388, 43392, 43456, 43471, 43481, 43520, 43574, 43584, 43597, 43600, 43609, 43616, 43638, 43642, 43643, 43648, 43714, 43739, 43741, 43744, 43759, 43762, 43766, 43777, 43782, 43785, 43790, 43793, 43798, 43808, 43814, 43816, 43822, 43968, 44010, 44012, 44013, 44016, 44025, 44032, 55203, 55216, 55238, 55243, 55291, 63744, 64109, 64112, 64217, 64256, 64262, 64275, 64279, 64285, 64296, 64298, 64310, 64312, 64316, 64318, 64318, 64320, 64321, 64323, 64324, 64326, 64433, 64467, 64829, 64848, 64911, 64914, 64967, 65008, 65019, 65024, 65039, 65056, 65062, 65075, 65076, 65101, 65103, 65136, 65140, 65142, 65276, 65296, 65305, 65313, 65338, 65343, 65343, 65345, 65370, 65382, 65470, 65474, 65479, 65482, 65487, 65490, 65495, 65498, 65500,]; /** * Generated by scripts/regenerate-unicode-identifier-parts.js on node v12.4.0 with unicode 12.1 * based on http://www.unicode.org/reports/tr31/ and https://www.ecma-international.org/ecma-262/6.0/#sec-names-and-keywords * unicodeESNextIdentifierStart corresponds to the ID_Start and Other_ID_Start property, and * unicodeESNextIdentifierPart corresponds to ID_Continue, Other_ID_Continue, plus ID_Start and Other_ID_Start */ var unicodeESNextIdentifierStart = [65, 90, 97, 122, 170, 170, 181, 181, 186, 186, 192, 214, 216, 246, 248, 705, 710, 721, 736, 740, 748, 748, 750, 750, 880, 884, 886, 887, 890, 893, 895, 895, 902, 902, 904, 906, 908, 908, 910, 929, 931, 1013, 1015, 1153, 1162, 1327, 1329, 1366, 1369, 1369, 1376, 1416, 1488, 1514, 1519, 1522, 1568, 1610, 1646, 1647, 1649, 1747, 1749, 1749, 1765, 1766, 1774, 1775, 1786, 1788, 1791, 1791, 1808, 1808, 1810, 1839, 1869, 1957, 1969, 1969, 1994, 2026, 2036, 2037, 2042, 2042, 2048, 2069, 2074, 2074, 2084, 2084, 2088, 2088, 2112, 2136, 2144, 2154, 2208, 2228, 2230, 2237, 2308, 2361, 2365, 2365, 2384, 2384, 2392, 2401, 2417, 2432, 2437, 2444, 2447, 2448, 2451, 2472, 2474, 2480, 2482, 2482, 2486, 2489, 2493, 2493, 2510, 2510, 2524, 2525, 2527, 2529, 2544, 2545, 2556, 2556, 2565, 2570, 2575, 2576, 2579, 2600, 2602, 2608, 2610, 2611, 2613, 2614, 2616, 2617, 2649, 2652, 2654, 2654, 2674, 2676, 2693, 2701, 2703, 2705, 2707, 2728, 2730, 2736, 2738, 2739, 2741, 2745, 2749, 2749, 2768, 2768, 2784, 2785, 2809, 2809, 2821, 2828, 2831, 2832, 2835, 2856, 2858, 2864, 2866, 2867, 2869, 2873, 2877, 2877, 2908, 2909, 2911, 2913, 2929, 2929, 2947, 2947, 2949, 2954, 2958, 2960, 2962, 2965, 2969, 2970, 2972, 2972, 2974, 2975, 2979, 2980, 2984, 2986, 2990, 3001, 3024, 3024, 3077, 3084, 3086, 3088, 3090, 3112, 3114, 3129, 3133, 3133, 3160, 3162, 3168, 3169, 3200, 3200, 3205, 3212, 3214, 3216, 3218, 3240, 3242, 3251, 3253, 3257, 3261, 3261, 3294, 3294, 3296, 3297, 3313, 3314, 3333, 3340, 3342, 3344, 3346, 3386, 3389, 3389, 3406, 3406, 3412, 3414, 3423, 3425, 3450, 3455, 3461, 3478, 3482, 3505, 3507, 3515, 3517, 3517, 3520, 3526, 3585, 3632, 3634, 3635, 3648, 3654, 3713, 3714, 3716, 3716, 3718, 3722, 3724, 3747, 3749, 3749, 3751, 3760, 3762, 3763, 3773, 3773, 3776, 3780, 3782, 3782, 3804, 3807, 3840, 3840, 3904, 3911, 3913, 3948, 3976, 3980, 4096, 4138, 4159, 4159, 4176, 4181, 4186, 4189, 4193, 4193, 4197, 4198, 4206, 4208, 4213, 4225, 4238, 4238, 4256, 4293, 4295, 4295, 4301, 4301, 4304, 4346, 4348, 4680, 4682, 4685, 4688, 4694, 4696, 4696, 4698, 4701, 4704, 4744, 4746, 4749, 4752, 4784, 4786, 4789, 4792, 4798, 4800, 4800, 4802, 4805, 4808, 4822, 4824, 4880, 4882, 4885, 4888, 4954, 4992, 5007, 5024, 5109, 5112, 5117, 5121, 5740, 5743, 5759, 5761, 5786, 5792, 5866, 5870, 5880, 5888, 5900, 5902, 5905, 5920, 5937, 5952, 5969, 5984, 5996, 5998, 6000, 6016, 6067, 6103, 6103, 6108, 6108, 6176, 6264, 6272, 6312, 6314, 6314, 6320, 6389, 6400, 6430, 6480, 6509, 6512, 6516, 6528, 6571, 6576, 6601, 6656, 6678, 6688, 6740, 6823, 6823, 6917, 6963, 6981, 6987, 7043, 7072, 7086, 7087, 7098, 7141, 7168, 7203, 7245, 7247, 7258, 7293, 7296, 7304, 7312, 7354, 7357, 7359, 7401, 7404, 7406, 7411, 7413, 7414, 7418, 7418, 7424, 7615, 7680, 7957, 7960, 7965, 7968, 8005, 8008, 8013, 8016, 8023, 8025, 8025, 8027, 8027, 8029, 8029, 8031, 8061, 8064, 8116, 8118, 8124, 8126, 8126, 8130, 8132, 8134, 8140, 8144, 8147, 8150, 8155, 8160, 8172, 8178, 8180, 8182, 8188, 8305, 8305, 8319, 8319, 8336, 8348, 8450, 8450, 8455, 8455, 8458, 8467, 8469, 8469, 8472, 8477, 8484, 8484, 8486, 8486, 8488, 8488, 8490, 8505, 8508, 8511, 8517, 8521, 8526, 8526, 8544, 8584, 11264, 11310, 11312, 11358, 11360, 11492, 11499, 11502, 11506, 11507, 11520, 11557, 11559, 11559, 11565, 11565, 11568, 11623, 11631, 11631, 11648, 11670, 11680, 11686, 11688, 11694, 11696, 11702, 11704, 11710, 11712, 11718, 11720, 11726, 11728, 11734, 11736, 11742, 12293, 12295, 12321, 12329, 12337, 12341, 12344, 12348, 12353, 12438, 12443, 12447, 12449, 12538, 12540, 12543, 12549, 12591, 12593, 12686, 12704, 12730, 12784, 12799, 13312, 19893, 19968, 40943, 40960, 42124, 42192, 42237, 42240, 42508, 42512, 42527, 42538, 42539, 42560, 42606, 42623, 42653, 42656, 42735, 42775, 42783, 42786, 42888, 42891, 42943, 42946, 42950, 42999, 43009, 43011, 43013, 43015, 43018, 43020, 43042, 43072, 43123, 43138, 43187, 43250, 43255, 43259, 43259, 43261, 43262, 43274, 43301, 43312, 43334, 43360, 43388, 43396, 43442, 43471, 43471, 43488, 43492, 43494, 43503, 43514, 43518, 43520, 43560, 43584, 43586, 43588, 43595, 43616, 43638, 43642, 43642, 43646, 43695, 43697, 43697, 43701, 43702, 43705, 43709, 43712, 43712, 43714, 43714, 43739, 43741, 43744, 43754, 43762, 43764, 43777, 43782, 43785, 43790, 43793, 43798, 43808, 43814, 43816, 43822, 43824, 43866, 43868, 43879, 43888, 44002, 44032, 55203, 55216, 55238, 55243, 55291, 63744, 64109, 64112, 64217, 64256, 64262, 64275, 64279, 64285, 64285, 64287, 64296, 64298, 64310, 64312, 64316, 64318, 64318, 64320, 64321, 64323, 64324, 64326, 64433, 64467, 64829, 64848, 64911, 64914, 64967, 65008, 65019, 65136, 65140, 65142, 65276, 65313, 65338, 65345, 65370, 65382, 65470, 65474, 65479, 65482, 65487, 65490, 65495, 65498, 65500, 65536, 65547, 65549, 65574, 65576, 65594, 65596, 65597, 65599, 65613, 65616, 65629, 65664, 65786, 65856, 65908, 66176, 66204, 66208, 66256, 66304, 66335, 66349, 66378, 66384, 66421, 66432, 66461, 66464, 66499, 66504, 66511, 66513, 66517, 66560, 66717, 66736, 66771, 66776, 66811, 66816, 66855, 66864, 66915, 67072, 67382, 67392, 67413, 67424, 67431, 67584, 67589, 67592, 67592, 67594, 67637, 67639, 67640, 67644, 67644, 67647, 67669, 67680, 67702, 67712, 67742, 67808, 67826, 67828, 67829, 67840, 67861, 67872, 67897, 67968, 68023, 68030, 68031, 68096, 68096, 68112, 68115, 68117, 68119, 68121, 68149, 68192, 68220, 68224, 68252, 68288, 68295, 68297, 68324, 68352, 68405, 68416, 68437, 68448, 68466, 68480, 68497, 68608, 68680, 68736, 68786, 68800, 68850, 68864, 68899, 69376, 69404, 69415, 69415, 69424, 69445, 69600, 69622, 69635, 69687, 69763, 69807, 69840, 69864, 69891, 69926, 69956, 69956, 69968, 70002, 70006, 70006, 70019, 70066, 70081, 70084, 70106, 70106, 70108, 70108, 70144, 70161, 70163, 70187, 70272, 70278, 70280, 70280, 70282, 70285, 70287, 70301, 70303, 70312, 70320, 70366, 70405, 70412, 70415, 70416, 70419, 70440, 70442, 70448, 70450, 70451, 70453, 70457, 70461, 70461, 70480, 70480, 70493, 70497, 70656, 70708, 70727, 70730, 70751, 70751, 70784, 70831, 70852, 70853, 70855, 70855, 71040, 71086, 71128, 71131, 71168, 71215, 71236, 71236, 71296, 71338, 71352, 71352, 71424, 71450, 71680, 71723, 71840, 71903, 71935, 71935, 72096, 72103, 72106, 72144, 72161, 72161, 72163, 72163, 72192, 72192, 72203, 72242, 72250, 72250, 72272, 72272, 72284, 72329, 72349, 72349, 72384, 72440, 72704, 72712, 72714, 72750, 72768, 72768, 72818, 72847, 72960, 72966, 72968, 72969, 72971, 73008, 73030, 73030, 73056, 73061, 73063, 73064, 73066, 73097, 73112, 73112, 73440, 73458, 73728, 74649, 74752, 74862, 74880, 75075, 77824, 78894, 82944, 83526, 92160, 92728, 92736, 92766, 92880, 92909, 92928, 92975, 92992, 92995, 93027, 93047, 93053, 93071, 93760, 93823, 93952, 94026, 94032, 94032, 94099, 94111, 94176, 94177, 94179, 94179, 94208, 100343, 100352, 101106, 110592, 110878, 110928, 110930, 110948, 110951, 110960, 111355, 113664, 113770, 113776, 113788, 113792, 113800, 113808, 113817, 119808, 119892, 119894, 119964, 119966, 119967, 119970, 119970, 119973, 119974, 119977, 119980, 119982, 119993, 119995, 119995, 119997, 120003, 120005, 120069, 120071, 120074, 120077, 120084, 120086, 120092, 120094, 120121, 120123, 120126, 120128, 120132, 120134, 120134, 120138, 120144, 120146, 120485, 120488, 120512, 120514, 120538, 120540, 120570, 120572, 120596, 120598, 120628, 120630, 120654, 120656, 120686, 120688, 120712, 120714, 120744, 120746, 120770, 120772, 120779, 123136, 123180, 123191, 123197, 123214, 123214, 123584, 123627, 124928, 125124, 125184, 125251, 125259, 125259, 126464, 126467, 126469, 126495, 126497, 126498, 126500, 126500, 126503, 126503, 126505, 126514, 126516, 126519, 126521, 126521, 126523, 126523, 126530, 126530, 126535, 126535, 126537, 126537, 126539, 126539, 126541, 126543, 126545, 126546, 126548, 126548, 126551, 126551, 126553, 126553, 126555, 126555, 126557, 126557, 126559, 126559, 126561, 126562, 126564, 126564, 126567, 126570, 126572, 126578, 126580, 126583, 126585, 126588, 126590, 126590, 126592, 126601, 126603, 126619, 126625, 126627, 126629, 126633, 126635, 126651, 131072, 173782, 173824, 177972, 177984, 178205, 178208, 183969, 183984, 191456, 194560, 195101]; var unicodeESNextIdentifierPart = [48, 57, 65, 90, 95, 95, 97, 122, 170, 170, 181, 181, 183, 183, 186, 186, 192, 214, 216, 246, 248, 705, 710, 721, 736, 740, 748, 748, 750, 750, 768, 884, 886, 887, 890, 893, 895, 895, 902, 906, 908, 908, 910, 929, 931, 1013, 1015, 1153, 1155, 1159, 1162, 1327, 1329, 1366, 1369, 1369, 1376, 1416, 1425, 1469, 1471, 1471, 1473, 1474, 1476, 1477, 1479, 1479, 1488, 1514, 1519, 1522, 1552, 1562, 1568, 1641, 1646, 1747, 1749, 1756, 1759, 1768, 1770, 1788, 1791, 1791, 1808, 1866, 1869, 1969, 1984, 2037, 2042, 2042, 2045, 2045, 2048, 2093, 2112, 2139, 2144, 2154, 2208, 2228, 2230, 2237, 2259, 2273, 2275, 2403, 2406, 2415, 2417, 2435, 2437, 2444, 2447, 2448, 2451, 2472, 2474, 2480, 2482, 2482, 2486, 2489, 2492, 2500, 2503, 2504, 2507, 2510, 2519, 2519, 2524, 2525, 2527, 2531, 2534, 2545, 2556, 2556, 2558, 2558, 2561, 2563, 2565, 2570, 2575, 2576, 2579, 2600, 2602, 2608, 2610, 2611, 2613, 2614, 2616, 2617, 2620, 2620, 2622, 2626, 2631, 2632, 2635, 2637, 2641, 2641, 2649, 2652, 2654, 2654, 2662, 2677, 2689, 2691, 2693, 2701, 2703, 2705, 2707, 2728, 2730, 2736, 2738, 2739, 2741, 2745, 2748, 2757, 2759, 2761, 2763, 2765, 2768, 2768, 2784, 2787, 2790, 2799, 2809, 2815, 2817, 2819, 2821, 2828, 2831, 2832, 2835, 2856, 2858, 2864, 2866, 2867, 2869, 2873, 2876, 2884, 2887, 2888, 2891, 2893, 2902, 2903, 2908, 2909, 2911, 2915, 2918, 2927, 2929, 2929, 2946, 2947, 2949, 2954, 2958, 2960, 2962, 2965, 2969, 2970, 2972, 2972, 2974, 2975, 2979, 2980, 2984, 2986, 2990, 3001, 3006, 3010, 3014, 3016, 3018, 3021, 3024, 3024, 3031, 3031, 3046, 3055, 3072, 3084, 3086, 3088, 3090, 3112, 3114, 3129, 3133, 3140, 3142, 3144, 3146, 3149, 3157, 3158, 3160, 3162, 3168, 3171, 3174, 3183, 3200, 3203, 3205, 3212, 3214, 3216, 3218, 3240, 3242, 3251, 3253, 3257, 3260, 3268, 3270, 3272, 3274, 3277, 3285, 3286, 3294, 3294, 3296, 3299, 3302, 3311, 3313, 3314, 3328, 3331, 3333, 3340, 3342, 3344, 3346, 3396, 3398, 3400, 3402, 3406, 3412, 3415, 3423, 3427, 3430, 3439, 3450, 3455, 3458, 3459, 3461, 3478, 3482, 3505, 3507, 3515, 3517, 3517, 3520, 3526, 3530, 3530, 3535, 3540, 3542, 3542, 3544, 3551, 3558, 3567, 3570, 3571, 3585, 3642, 3648, 3662, 3664, 3673, 3713, 3714, 3716, 3716, 3718, 3722, 3724, 3747, 3749, 3749, 3751, 3773, 3776, 3780, 3782, 3782, 3784, 3789, 3792, 3801, 3804, 3807, 3840, 3840, 3864, 3865, 3872, 3881, 3893, 3893, 3895, 3895, 3897, 3897, 3902, 3911, 3913, 3948, 3953, 3972, 3974, 3991, 3993, 4028, 4038, 4038, 4096, 4169, 4176, 4253, 4256, 4293, 4295, 4295, 4301, 4301, 4304, 4346, 4348, 4680, 4682, 4685, 4688, 4694, 4696, 4696, 4698, 4701, 4704, 4744, 4746, 4749, 4752, 4784, 4786, 4789, 4792, 4798, 4800, 4800, 4802, 4805, 4808, 4822, 4824, 4880, 4882, 4885, 4888, 4954, 4957, 4959, 4969, 4977, 4992, 5007, 5024, 5109, 5112, 5117, 5121, 5740, 5743, 5759, 5761, 5786, 5792, 5866, 5870, 5880, 5888, 5900, 5902, 5908, 5920, 5940, 5952, 5971, 5984, 5996, 5998, 6000, 6002, 6003, 6016, 6099, 6103, 6103, 6108, 6109, 6112, 6121, 6155, 6157, 6160, 6169, 6176, 6264, 6272, 6314, 6320, 6389, 6400, 6430, 6432, 6443, 6448, 6459, 6470, 6509, 6512, 6516, 6528, 6571, 6576, 6601, 6608, 6618, 6656, 6683, 6688, 6750, 6752, 6780, 6783, 6793, 6800, 6809, 6823, 6823, 6832, 6845, 6912, 6987, 6992, 7001, 7019, 7027, 7040, 7155, 7168, 7223, 7232, 7241, 7245, 7293, 7296, 7304, 7312, 7354, 7357, 7359, 7376, 7378, 7380, 7418, 7424, 7673, 7675, 7957, 7960, 7965, 7968, 8005, 8008, 8013, 8016, 8023, 8025, 8025, 8027, 8027, 8029, 8029, 8031, 8061, 8064, 8116, 8118, 8124, 8126, 8126, 8130, 8132, 8134, 8140, 8144, 8147, 8150, 8155, 8160, 8172, 8178, 8180, 8182, 8188, 8255, 8256, 8276, 8276, 8305, 8305, 8319, 8319, 8336, 8348, 8400, 8412, 8417, 8417, 8421, 8432, 8450, 8450, 8455, 8455, 8458, 8467, 8469, 8469, 8472, 8477, 8484, 8484, 8486, 8486, 8488, 8488, 8490, 8505, 8508, 8511, 8517, 8521, 8526, 8526, 8544, 8584, 11264, 11310, 11312, 11358, 11360, 11492, 11499, 11507, 11520, 11557, 11559, 11559, 11565, 11565, 11568, 11623, 11631, 11631, 11647, 11670, 11680, 11686, 11688, 11694, 11696, 11702, 11704, 11710, 11712, 11718, 11720, 11726, 11728, 11734, 11736, 11742, 11744, 11775, 12293, 12295, 12321, 12335, 12337, 12341, 12344, 12348, 12353, 12438, 12441, 12447, 12449, 12538, 12540, 12543, 12549, 12591, 12593, 12686, 12704, 12730, 12784, 12799, 13312, 19893, 19968, 40943, 40960, 42124, 42192, 42237, 42240, 42508, 42512, 42539, 42560, 42607, 42612, 42621, 42623, 42737, 42775, 42783, 42786, 42888, 42891, 42943, 42946, 42950, 42999, 43047, 43072, 43123, 43136, 43205, 43216, 43225, 43232, 43255, 43259, 43259, 43261, 43309, 43312, 43347, 43360, 43388, 43392, 43456, 43471, 43481, 43488, 43518, 43520, 43574, 43584, 43597, 43600, 43609, 43616, 43638, 43642, 43714, 43739, 43741, 43744, 43759, 43762, 43766, 43777, 43782, 43785, 43790, 43793, 43798, 43808, 43814, 43816, 43822, 43824, 43866, 43868, 43879, 43888, 44010, 44012, 44013, 44016, 44025, 44032, 55203, 55216, 55238, 55243, 55291, 63744, 64109, 64112, 64217, 64256, 64262, 64275, 64279, 64285, 64296, 64298, 64310, 64312, 64316, 64318, 64318, 64320, 64321, 64323, 64324, 64326, 64433, 64467, 64829, 64848, 64911, 64914, 64967, 65008, 65019, 65024, 65039, 65056, 65071, 65075, 65076, 65101, 65103, 65136, 65140, 65142, 65276, 65296, 65305, 65313, 65338, 65343, 65343, 65345, 65370, 65382, 65470, 65474, 65479, 65482, 65487, 65490, 65495, 65498, 65500, 65536, 65547, 65549, 65574, 65576, 65594, 65596, 65597, 65599, 65613, 65616, 65629, 65664, 65786, 65856, 65908, 66045, 66045, 66176, 66204, 66208, 66256, 66272, 66272, 66304, 66335, 66349, 66378, 66384, 66426, 66432, 66461, 66464, 66499, 66504, 66511, 66513, 66517, 66560, 66717, 66720, 66729, 66736, 66771, 66776, 66811, 66816, 66855, 66864, 66915, 67072, 67382, 67392, 67413, 67424, 67431, 67584, 67589, 67592, 67592, 67594, 67637, 67639, 67640, 67644, 67644, 67647, 67669, 67680, 67702, 67712, 67742, 67808, 67826, 67828, 67829, 67840, 67861, 67872, 67897, 67968, 68023, 68030, 68031, 68096, 68099, 68101, 68102, 68108, 68115, 68117, 68119, 68121, 68149, 68152, 68154, 68159, 68159, 68192, 68220, 68224, 68252, 68288, 68295, 68297, 68326, 68352, 68405, 68416, 68437, 68448, 68466, 68480, 68497, 68608, 68680, 68736, 68786, 68800, 68850, 68864, 68903, 68912, 68921, 69376, 69404, 69415, 69415, 69424, 69456, 69600, 69622, 69632, 69702, 69734, 69743, 69759, 69818, 69840, 69864, 69872, 69881, 69888, 69940, 69942, 69951, 69956, 69958, 69968, 70003, 70006, 70006, 70016, 70084, 70089, 70092, 70096, 70106, 70108, 70108, 70144, 70161, 70163, 70199, 70206, 70206, 70272, 70278, 70280, 70280, 70282, 70285, 70287, 70301, 70303, 70312, 70320, 70378, 70384, 70393, 70400, 70403, 70405, 70412, 70415, 70416, 70419, 70440, 70442, 70448, 70450, 70451, 70453, 70457, 70459, 70468, 70471, 70472, 70475, 70477, 70480, 70480, 70487, 70487, 70493, 70499, 70502, 70508, 70512, 70516, 70656, 70730, 70736, 70745, 70750, 70751, 70784, 70853, 70855, 70855, 70864, 70873, 71040, 71093, 71096, 71104, 71128, 71133, 71168, 71232, 71236, 71236, 71248, 71257, 71296, 71352, 71360, 71369, 71424, 71450, 71453, 71467, 71472, 71481, 71680, 71738, 71840, 71913, 71935, 71935, 72096, 72103, 72106, 72151, 72154, 72161, 72163, 72164, 72192, 72254, 72263, 72263, 72272, 72345, 72349, 72349, 72384, 72440, 72704, 72712, 72714, 72758, 72760, 72768, 72784, 72793, 72818, 72847, 72850, 72871, 72873, 72886, 72960, 72966, 72968, 72969, 72971, 73014, 73018, 73018, 73020, 73021, 73023, 73031, 73040, 73049, 73056, 73061, 73063, 73064, 73066, 73102, 73104, 73105, 73107, 73112, 73120, 73129, 73440, 73462, 73728, 74649, 74752, 74862, 74880, 75075, 77824, 78894, 82944, 83526, 92160, 92728, 92736, 92766, 92768, 92777, 92880, 92909, 92912, 92916, 92928, 92982, 92992, 92995, 93008, 93017, 93027, 93047, 93053, 93071, 93760, 93823, 93952, 94026, 94031, 94087, 94095, 94111, 94176, 94177, 94179, 94179, 94208, 100343, 100352, 101106, 110592, 110878, 110928, 110930, 110948, 110951, 110960, 111355, 113664, 113770, 113776, 113788, 113792, 113800, 113808, 113817, 113821, 113822, 119141, 119145, 119149, 119154, 119163, 119170, 119173, 119179, 119210, 119213, 119362, 119364, 119808, 119892, 119894, 119964, 119966, 119967, 119970, 119970, 119973, 119974, 119977, 119980, 119982, 119993, 119995, 119995, 119997, 120003, 120005, 120069, 120071, 120074, 120077, 120084, 120086, 120092, 120094, 120121, 120123, 120126, 120128, 120132, 120134, 120134, 120138, 120144, 120146, 120485, 120488, 120512, 120514, 120538, 120540, 120570, 120572, 120596, 120598, 120628, 120630, 120654, 120656, 120686, 120688, 120712, 120714, 120744, 120746, 120770, 120772, 120779, 120782, 120831, 121344, 121398, 121403, 121452, 121461, 121461, 121476, 121476, 121499, 121503, 121505, 121519, 122880, 122886, 122888, 122904, 122907, 122913, 122915, 122916, 122918, 122922, 123136, 123180, 123184, 123197, 123200, 123209, 123214, 123214, 123584, 123641, 124928, 125124, 125136, 125142, 125184, 125259, 125264, 125273, 126464, 126467, 126469, 126495, 126497, 126498, 126500, 126500, 126503, 126503, 126505, 126514, 126516, 126519, 126521, 126521, 126523, 126523, 126530, 126530, 126535, 126535, 126537, 126537, 126539, 126539, 126541, 126543, 126545, 126546, 126548, 126548, 126551, 126551, 126553, 126553, 126555, 126555, 126557, 126557, 126559, 126559, 126561, 126562, 126564, 126564, 126567, 126570, 126572, 126578, 126580, 126583, 126585, 126588, 126590, 126590, 126592, 126601, 126603, 126619, 126625, 126627, 126629, 126633, 126635, 126651, 131072, 173782, 173824, 177972, 177984, 178205, 178208, 183969, 183984, 191456, 194560, 195101, 917760, 917999]; /** * Test for whether a single line comment with leading whitespace trimmed's text contains a directive. */ var commentDirectiveRegExSingleLine = /^\/\/\/?\s*@(ts-expect-error|ts-ignore)/; /** * Test for whether a multi-line comment with leading whitespace trimmed's last line contains a directive. */ var commentDirectiveRegExMultiLine = /^(?:\/|\*)*\s*@(ts-expect-error|ts-ignore)/; function lookupInUnicodeMap(code, map) { // Bail out quickly if it couldn't possibly be in the map. if (code < map[0]) { return false; } // Perform binary search in one of the Unicode range maps var lo = 0; var hi = map.length; var mid; while (lo + 1 < hi) { mid = lo + (hi - lo) / 2; // mid has to be even to catch a range's beginning mid -= mid % 2; if (map[mid] <= code && code <= map[mid + 1]) { return true; } if (code < map[mid]) { hi = mid; } else { lo = mid + 2; } } return false; } /* @internal */ function isUnicodeIdentifierStart(code, languageVersion) { return languageVersion >= 2 /* ScriptTarget.ES2015 */ ? lookupInUnicodeMap(code, unicodeESNextIdentifierStart) : languageVersion === 1 /* ScriptTarget.ES5 */ ? lookupInUnicodeMap(code, unicodeES5IdentifierStart) : lookupInUnicodeMap(code, unicodeES3IdentifierStart); } ts.isUnicodeIdentifierStart = isUnicodeIdentifierStart; function isUnicodeIdentifierPart(code, languageVersion) { return languageVersion >= 2 /* ScriptTarget.ES2015 */ ? lookupInUnicodeMap(code, unicodeESNextIdentifierPart) : languageVersion === 1 /* ScriptTarget.ES5 */ ? lookupInUnicodeMap(code, unicodeES5IdentifierPart) : lookupInUnicodeMap(code, unicodeES3IdentifierPart); } function makeReverseMap(source) { var result = []; source.forEach(function (value, name) { result[value] = name; }); return result; } var tokenStrings = makeReverseMap(textToToken); function tokenToString(t) { return tokenStrings[t]; } ts.tokenToString = tokenToString; /* @internal */ function stringToToken(s) { return textToToken.get(s); } ts.stringToToken = stringToToken; /* @internal */ function computeLineStarts(text) { var result = new Array(); var pos = 0; var lineStart = 0; while (pos < text.length) { var ch = text.charCodeAt(pos); pos++; switch (ch) { case 13 /* CharacterCodes.carriageReturn */: if (text.charCodeAt(pos) === 10 /* CharacterCodes.lineFeed */) { pos++; } // falls through case 10 /* CharacterCodes.lineFeed */: result.push(lineStart); lineStart = pos; break; default: if (ch > 127 /* CharacterCodes.maxAsciiCharacter */ && isLineBreak(ch)) { result.push(lineStart); lineStart = pos; } break; } } result.push(lineStart); return result; } ts.computeLineStarts = computeLineStarts; function getPositionOfLineAndCharacter(sourceFile, line, character, allowEdits) { return sourceFile.getPositionOfLineAndCharacter ? sourceFile.getPositionOfLineAndCharacter(line, character, allowEdits) : computePositionOfLineAndCharacter(getLineStarts(sourceFile), line, character, sourceFile.text, allowEdits); } ts.getPositionOfLineAndCharacter = getPositionOfLineAndCharacter; /* @internal */ function computePositionOfLineAndCharacter(lineStarts, line, character, debugText, allowEdits) { if (line < 0 || line >= lineStarts.length) { if (allowEdits) { // Clamp line to nearest allowable value line = line < 0 ? 0 : line >= lineStarts.length ? lineStarts.length - 1 : line; } else { ts.Debug.fail("Bad line number. Line: ".concat(line, ", lineStarts.length: ").concat(lineStarts.length, " , line map is correct? ").concat(debugText !== undefined ? ts.arraysEqual(lineStarts, computeLineStarts(debugText)) : "unknown")); } } var res = lineStarts[line] + character; if (allowEdits) { // Clamp to nearest allowable values to allow the underlying to be edited without crashing (accuracy is lost, instead) // TODO: Somehow track edits between file as it was during the creation of sourcemap we have and the current file and // apply them to the computed position to improve accuracy return res > lineStarts[line + 1] ? lineStarts[line + 1] : typeof debugText === "string" && res > debugText.length ? debugText.length : res; } if (line < lineStarts.length - 1) { ts.Debug.assert(res < lineStarts[line + 1]); } else if (debugText !== undefined) { ts.Debug.assert(res <= debugText.length); // Allow single character overflow for trailing newline } return res; } ts.computePositionOfLineAndCharacter = computePositionOfLineAndCharacter; /* @internal */ function getLineStarts(sourceFile) { return sourceFile.lineMap || (sourceFile.lineMap = computeLineStarts(sourceFile.text)); } ts.getLineStarts = getLineStarts; /* @internal */ function computeLineAndCharacterOfPosition(lineStarts, position) { var lineNumber = computeLineOfPosition(lineStarts, position); return { line: lineNumber, character: position - lineStarts[lineNumber] }; } ts.computeLineAndCharacterOfPosition = computeLineAndCharacterOfPosition; /** * @internal * We assume the first line starts at position 0 and 'position' is non-negative. */ function computeLineOfPosition(lineStarts, position, lowerBound) { var lineNumber = ts.binarySearch(lineStarts, position, ts.identity, ts.compareValues, lowerBound); if (lineNumber < 0) { // If the actual position was not found, // the binary search returns the 2's-complement of the next line start // e.g. if the line starts at [5, 10, 23, 80] and the position requested was 20 // then the search will return -2. // // We want the index of the previous line start, so we subtract 1. // Review 2's-complement if this is confusing. lineNumber = ~lineNumber - 1; ts.Debug.assert(lineNumber !== -1, "position cannot precede the beginning of the file"); } return lineNumber; } ts.computeLineOfPosition = computeLineOfPosition; /** @internal */ function getLinesBetweenPositions(sourceFile, pos1, pos2) { if (pos1 === pos2) return 0; var lineStarts = getLineStarts(sourceFile); var lower = Math.min(pos1, pos2); var isNegative = lower === pos2; var upper = isNegative ? pos1 : pos2; var lowerLine = computeLineOfPosition(lineStarts, lower); var upperLine = computeLineOfPosition(lineStarts, upper, lowerLine); return isNegative ? lowerLine - upperLine : upperLine - lowerLine; } ts.getLinesBetweenPositions = getLinesBetweenPositions; function getLineAndCharacterOfPosition(sourceFile, position) { return computeLineAndCharacterOfPosition(getLineStarts(sourceFile), position); } ts.getLineAndCharacterOfPosition = getLineAndCharacterOfPosition; function isWhiteSpaceLike(ch) { return isWhiteSpaceSingleLine(ch) || isLineBreak(ch); } ts.isWhiteSpaceLike = isWhiteSpaceLike; /** Does not include line breaks. For that, see isWhiteSpaceLike. */ function isWhiteSpaceSingleLine(ch) { // Note: nextLine is in the Zs space, and should be considered to be a whitespace. // It is explicitly not a line-break as it isn't in the exact set specified by EcmaScript. return ch === 32 /* CharacterCodes.space */ || ch === 9 /* CharacterCodes.tab */ || ch === 11 /* CharacterCodes.verticalTab */ || ch === 12 /* CharacterCodes.formFeed */ || ch === 160 /* CharacterCodes.nonBreakingSpace */ || ch === 133 /* CharacterCodes.nextLine */ || ch === 5760 /* CharacterCodes.ogham */ || ch >= 8192 /* CharacterCodes.enQuad */ && ch <= 8203 /* CharacterCodes.zeroWidthSpace */ || ch === 8239 /* CharacterCodes.narrowNoBreakSpace */ || ch === 8287 /* CharacterCodes.mathematicalSpace */ || ch === 12288 /* CharacterCodes.ideographicSpace */ || ch === 65279 /* CharacterCodes.byteOrderMark */; } ts.isWhiteSpaceSingleLine = isWhiteSpaceSingleLine; function isLineBreak(ch) { // ES5 7.3: // The ECMAScript line terminator characters are listed in Table 3. // Table 3: Line Terminator Characters // Code Unit Value Name Formal Name // \u000A Line Feed // \u000D Carriage Return // \u2028 Line separator // \u2029 Paragraph separator // Only the characters in Table 3 are treated as line terminators. Other new line or line // breaking characters are treated as white space but not as line terminators. return ch === 10 /* CharacterCodes.lineFeed */ || ch === 13 /* CharacterCodes.carriageReturn */ || ch === 8232 /* CharacterCodes.lineSeparator */ || ch === 8233 /* CharacterCodes.paragraphSeparator */; } ts.isLineBreak = isLineBreak; function isDigit(ch) { return ch >= 48 /* CharacterCodes._0 */ && ch <= 57 /* CharacterCodes._9 */; } function isHexDigit(ch) { return isDigit(ch) || ch >= 65 /* CharacterCodes.A */ && ch <= 70 /* CharacterCodes.F */ || ch >= 97 /* CharacterCodes.a */ && ch <= 102 /* CharacterCodes.f */; } function isCodePoint(code) { return code <= 0x10FFFF; } /* @internal */ function isOctalDigit(ch) { return ch >= 48 /* CharacterCodes._0 */ && ch <= 55 /* CharacterCodes._7 */; } ts.isOctalDigit = isOctalDigit; function couldStartTrivia(text, pos) { // Keep in sync with skipTrivia var ch = text.charCodeAt(pos); switch (ch) { case 13 /* CharacterCodes.carriageReturn */: case 10 /* CharacterCodes.lineFeed */: case 9 /* CharacterCodes.tab */: case 11 /* CharacterCodes.verticalTab */: case 12 /* CharacterCodes.formFeed */: case 32 /* CharacterCodes.space */: case 47 /* CharacterCodes.slash */: // starts of normal trivia // falls through case 60 /* CharacterCodes.lessThan */: case 124 /* CharacterCodes.bar */: case 61 /* CharacterCodes.equals */: case 62 /* CharacterCodes.greaterThan */: // Starts of conflict marker trivia return true; case 35 /* CharacterCodes.hash */: // Only if its the beginning can we have #! trivia return pos === 0; default: return ch > 127 /* CharacterCodes.maxAsciiCharacter */; } } ts.couldStartTrivia = couldStartTrivia; /* @internal */ function skipTrivia(text, pos, stopAfterLineBreak, stopAtComments, inJSDoc) { if (ts.positionIsSynthesized(pos)) { return pos; } var canConsumeStar = false; // Keep in sync with couldStartTrivia while (true) { var ch = text.charCodeAt(pos); switch (ch) { case 13 /* CharacterCodes.carriageReturn */: if (text.charCodeAt(pos + 1) === 10 /* CharacterCodes.lineFeed */) { pos++; } // falls through case 10 /* CharacterCodes.lineFeed */: pos++; if (stopAfterLineBreak) { return pos; } canConsumeStar = !!inJSDoc; continue; case 9 /* CharacterCodes.tab */: case 11 /* CharacterCodes.verticalTab */: case 12 /* CharacterCodes.formFeed */: case 32 /* CharacterCodes.space */: pos++; continue; case 47 /* CharacterCodes.slash */: if (stopAtComments) { break; } if (text.charCodeAt(pos + 1) === 47 /* CharacterCodes.slash */) { pos += 2; while (pos < text.length) { if (isLineBreak(text.charCodeAt(pos))) { break; } pos++; } canConsumeStar = false; continue; } if (text.charCodeAt(pos + 1) === 42 /* CharacterCodes.asterisk */) { pos += 2; while (pos < text.length) { if (text.charCodeAt(pos) === 42 /* CharacterCodes.asterisk */ && text.charCodeAt(pos + 1) === 47 /* CharacterCodes.slash */) { pos += 2; break; } pos++; } canConsumeStar = false; continue; } break; case 60 /* CharacterCodes.lessThan */: case 124 /* CharacterCodes.bar */: case 61 /* CharacterCodes.equals */: case 62 /* CharacterCodes.greaterThan */: if (isConflictMarkerTrivia(text, pos)) { pos = scanConflictMarkerTrivia(text, pos); canConsumeStar = false; continue; } break; case 35 /* CharacterCodes.hash */: if (pos === 0 && isShebangTrivia(text, pos)) { pos = scanShebangTrivia(text, pos); canConsumeStar = false; continue; } break; case 42 /* CharacterCodes.asterisk */: if (canConsumeStar) { pos++; canConsumeStar = false; continue; } break; default: if (ch > 127 /* CharacterCodes.maxAsciiCharacter */ && (isWhiteSpaceLike(ch))) { pos++; continue; } break; } return pos; } } ts.skipTrivia = skipTrivia; // All conflict markers consist of the same character repeated seven times. If it is // a <<<<<<< or >>>>>>> marker then it is also followed by a space. var mergeConflictMarkerLength = "<<<<<<<".length; function isConflictMarkerTrivia(text, pos) { ts.Debug.assert(pos >= 0); // Conflict markers must be at the start of a line. if (pos === 0 || isLineBreak(text.charCodeAt(pos - 1))) { var ch = text.charCodeAt(pos); if ((pos + mergeConflictMarkerLength) < text.length) { for (var i = 0; i < mergeConflictMarkerLength; i++) { if (text.charCodeAt(pos + i) !== ch) { return false; } } return ch === 61 /* CharacterCodes.equals */ || text.charCodeAt(pos + mergeConflictMarkerLength) === 32 /* CharacterCodes.space */; } } return false; } function scanConflictMarkerTrivia(text, pos, error) { if (error) { error(ts.Diagnostics.Merge_conflict_marker_encountered, pos, mergeConflictMarkerLength); } var ch = text.charCodeAt(pos); var len = text.length; if (ch === 60 /* CharacterCodes.lessThan */ || ch === 62 /* CharacterCodes.greaterThan */) { while (pos < len && !isLineBreak(text.charCodeAt(pos))) { pos++; } } else { ts.Debug.assert(ch === 124 /* CharacterCodes.bar */ || ch === 61 /* CharacterCodes.equals */); // Consume everything from the start of a ||||||| or ======= marker to the start // of the next ======= or >>>>>>> marker. while (pos < len) { var currentChar = text.charCodeAt(pos); if ((currentChar === 61 /* CharacterCodes.equals */ || currentChar === 62 /* CharacterCodes.greaterThan */) && currentChar !== ch && isConflictMarkerTrivia(text, pos)) { break; } pos++; } } return pos; } var shebangTriviaRegex = /^#!.*/; /*@internal*/ function isShebangTrivia(text, pos) { // Shebangs check must only be done at the start of the file ts.Debug.assert(pos === 0); return shebangTriviaRegex.test(text); } ts.isShebangTrivia = isShebangTrivia; /*@internal*/ function scanShebangTrivia(text, pos) { var shebang = shebangTriviaRegex.exec(text)[0]; pos = pos + shebang.length; return pos; } ts.scanShebangTrivia = scanShebangTrivia; /** * Invokes a callback for each comment range following the provided position. * * Single-line comment ranges include the leading double-slash characters but not the ending * line break. Multi-line comment ranges include the leading slash-asterisk and trailing * asterisk-slash characters. * * @param reduce If true, accumulates the result of calling the callback in a fashion similar * to reduceLeft. If false, iteration stops when the callback returns a truthy value. * @param text The source text to scan. * @param pos The position at which to start scanning. * @param trailing If false, whitespace is skipped until the first line break and comments * between that location and the next token are returned. If true, comments occurring * between the given position and the next line break are returned. * @param cb The callback to execute as each comment range is encountered. * @param state A state value to pass to each iteration of the callback. * @param initial An initial value to pass when accumulating results (when "reduce" is true). * @returns If "reduce" is true, the accumulated value. If "reduce" is false, the first truthy * return value of the callback. */ function iterateCommentRanges(reduce, text, pos, trailing, cb, state, initial) { var pendingPos; var pendingEnd; var pendingKind; var pendingHasTrailingNewLine; var hasPendingCommentRange = false; var collecting = trailing; var accumulator = initial; if (pos === 0) { collecting = true; var shebang = getShebang(text); if (shebang) { pos = shebang.length; } } scan: while (pos >= 0 && pos < text.length) { var ch = text.charCodeAt(pos); switch (ch) { case 13 /* CharacterCodes.carriageReturn */: if (text.charCodeAt(pos + 1) === 10 /* CharacterCodes.lineFeed */) { pos++; } // falls through case 10 /* CharacterCodes.lineFeed */: pos++; if (trailing) { break scan; } collecting = true; if (hasPendingCommentRange) { pendingHasTrailingNewLine = true; } continue; case 9 /* CharacterCodes.tab */: case 11 /* CharacterCodes.verticalTab */: case 12 /* CharacterCodes.formFeed */: case 32 /* CharacterCodes.space */: pos++; continue; case 47 /* CharacterCodes.slash */: var nextChar = text.charCodeAt(pos + 1); var hasTrailingNewLine = false; if (nextChar === 47 /* CharacterCodes.slash */ || nextChar === 42 /* CharacterCodes.asterisk */) { var kind = nextChar === 47 /* CharacterCodes.slash */ ? 2 /* SyntaxKind.SingleLineCommentTrivia */ : 3 /* SyntaxKind.MultiLineCommentTrivia */; var startPos = pos; pos += 2; if (nextChar === 47 /* CharacterCodes.slash */) { while (pos < text.length) { if (isLineBreak(text.charCodeAt(pos))) { hasTrailingNewLine = true; break; } pos++; } } else { while (pos < text.length) { if (text.charCodeAt(pos) === 42 /* CharacterCodes.asterisk */ && text.charCodeAt(pos + 1) === 47 /* CharacterCodes.slash */) { pos += 2; break; } pos++; } } if (collecting) { if (hasPendingCommentRange) { accumulator = cb(pendingPos, pendingEnd, pendingKind, pendingHasTrailingNewLine, state, accumulator); if (!reduce && accumulator) { // If we are not reducing and we have a truthy result, return it. return accumulator; } } pendingPos = startPos; pendingEnd = pos; pendingKind = kind; pendingHasTrailingNewLine = hasTrailingNewLine; hasPendingCommentRange = true; } continue; } break scan; default: if (ch > 127 /* CharacterCodes.maxAsciiCharacter */ && (isWhiteSpaceLike(ch))) { if (hasPendingCommentRange && isLineBreak(ch)) { pendingHasTrailingNewLine = true; } pos++; continue; } break scan; } } if (hasPendingCommentRange) { accumulator = cb(pendingPos, pendingEnd, pendingKind, pendingHasTrailingNewLine, state, accumulator); } return accumulator; } function forEachLeadingCommentRange(text, pos, cb, state) { return iterateCommentRanges(/*reduce*/ false, text, pos, /*trailing*/ false, cb, state); } ts.forEachLeadingCommentRange = forEachLeadingCommentRange; function forEachTrailingCommentRange(text, pos, cb, state) { return iterateCommentRanges(/*reduce*/ false, text, pos, /*trailing*/ true, cb, state); } ts.forEachTrailingCommentRange = forEachTrailingCommentRange; function reduceEachLeadingCommentRange(text, pos, cb, state, initial) { return iterateCommentRanges(/*reduce*/ true, text, pos, /*trailing*/ false, cb, state, initial); } ts.reduceEachLeadingCommentRange = reduceEachLeadingCommentRange; function reduceEachTrailingCommentRange(text, pos, cb, state, initial) { return iterateCommentRanges(/*reduce*/ true, text, pos, /*trailing*/ true, cb, state, initial); } ts.reduceEachTrailingCommentRange = reduceEachTrailingCommentRange; function appendCommentRange(pos, end, kind, hasTrailingNewLine, _state, comments) { if (!comments) { comments = []; } comments.push({ kind: kind, pos: pos, end: end, hasTrailingNewLine: hasTrailingNewLine }); return comments; } function getLeadingCommentRanges(text, pos) { return reduceEachLeadingCommentRange(text, pos, appendCommentRange, /*state*/ undefined, /*initial*/ undefined); } ts.getLeadingCommentRanges = getLeadingCommentRanges; function getTrailingCommentRanges(text, pos) { return reduceEachTrailingCommentRange(text, pos, appendCommentRange, /*state*/ undefined, /*initial*/ undefined); } ts.getTrailingCommentRanges = getTrailingCommentRanges; /** Optionally, get the shebang */ function getShebang(text) { var match = shebangTriviaRegex.exec(text); if (match) { return match[0]; } } ts.getShebang = getShebang; function isIdentifierStart(ch, languageVersion) { return ch >= 65 /* CharacterCodes.A */ && ch <= 90 /* CharacterCodes.Z */ || ch >= 97 /* CharacterCodes.a */ && ch <= 122 /* CharacterCodes.z */ || ch === 36 /* CharacterCodes.$ */ || ch === 95 /* CharacterCodes._ */ || ch > 127 /* CharacterCodes.maxAsciiCharacter */ && isUnicodeIdentifierStart(ch, languageVersion); } ts.isIdentifierStart = isIdentifierStart; function isIdentifierPart(ch, languageVersion, identifierVariant) { return ch >= 65 /* CharacterCodes.A */ && ch <= 90 /* CharacterCodes.Z */ || ch >= 97 /* CharacterCodes.a */ && ch <= 122 /* CharacterCodes.z */ || ch >= 48 /* CharacterCodes._0 */ && ch <= 57 /* CharacterCodes._9 */ || ch === 36 /* CharacterCodes.$ */ || ch === 95 /* CharacterCodes._ */ || // "-" and ":" are valid in JSX Identifiers (identifierVariant === 1 /* LanguageVariant.JSX */ ? (ch === 45 /* CharacterCodes.minus */ || ch === 58 /* CharacterCodes.colon */) : false) || ch > 127 /* CharacterCodes.maxAsciiCharacter */ && isUnicodeIdentifierPart(ch, languageVersion); } ts.isIdentifierPart = isIdentifierPart; /* @internal */ function isIdentifierText(name, languageVersion, identifierVariant) { var ch = codePointAt(name, 0); if (!isIdentifierStart(ch, languageVersion)) { return false; } for (var i = charSize(ch); i < name.length; i += charSize(ch)) { if (!isIdentifierPart(ch = codePointAt(name, i), languageVersion, identifierVariant)) { return false; } } return true; } ts.isIdentifierText = isIdentifierText; // Creates a scanner over a (possibly unspecified) range of a piece of text. function createScanner(languageVersion, skipTrivia, languageVariant, textInitial, onError, start, length) { if (languageVariant === void 0) { languageVariant = 0 /* LanguageVariant.Standard */; } var text = textInitial; // Current position (end position of text of current token) var pos; // end of text var end; // Start position of whitespace before current token var startPos; // Start position of text of current token var tokenPos; var token; var tokenValue; var tokenFlags; var commentDirectives; var inJSDocType = 0; setText(text, start, length); var scanner = { getStartPos: function () { return startPos; }, getTextPos: function () { return pos; }, getToken: function () { return token; }, getTokenPos: function () { return tokenPos; }, getTokenText: function () { return text.substring(tokenPos, pos); }, getTokenValue: function () { return tokenValue; }, hasUnicodeEscape: function () { return (tokenFlags & 1024 /* TokenFlags.UnicodeEscape */) !== 0; }, hasExtendedUnicodeEscape: function () { return (tokenFlags & 8 /* TokenFlags.ExtendedUnicodeEscape */) !== 0; }, hasPrecedingLineBreak: function () { return (tokenFlags & 1 /* TokenFlags.PrecedingLineBreak */) !== 0; }, hasPrecedingJSDocComment: function () { return (tokenFlags & 2 /* TokenFlags.PrecedingJSDocComment */) !== 0; }, isIdentifier: function () { return token === 79 /* SyntaxKind.Identifier */ || token > 116 /* SyntaxKind.LastReservedWord */; }, isReservedWord: function () { return token >= 81 /* SyntaxKind.FirstReservedWord */ && token <= 116 /* SyntaxKind.LastReservedWord */; }, isUnterminated: function () { return (tokenFlags & 4 /* TokenFlags.Unterminated */) !== 0; }, getCommentDirectives: function () { return commentDirectives; }, getNumericLiteralFlags: function () { return tokenFlags & 1008 /* TokenFlags.NumericLiteralFlags */; }, getTokenFlags: function () { return tokenFlags; }, reScanGreaterToken: reScanGreaterToken, reScanAsteriskEqualsToken: reScanAsteriskEqualsToken, reScanSlashToken: reScanSlashToken, reScanTemplateToken: reScanTemplateToken, reScanTemplateHeadOrNoSubstitutionTemplate: reScanTemplateHeadOrNoSubstitutionTemplate, scanJsxIdentifier: scanJsxIdentifier, scanJsxAttributeValue: scanJsxAttributeValue, reScanJsxAttributeValue: reScanJsxAttributeValue, reScanJsxToken: reScanJsxToken, reScanLessThanToken: reScanLessThanToken, reScanHashToken: reScanHashToken, reScanQuestionToken: reScanQuestionToken, reScanInvalidIdentifier: reScanInvalidIdentifier, scanJsxToken: scanJsxToken, scanJsDocToken: scanJsDocToken, scan: scan, getText: getText, clearCommentDirectives: clearCommentDirectives, setText: setText, setScriptTarget: setScriptTarget, setLanguageVariant: setLanguageVariant, setOnError: setOnError, setTextPos: setTextPos, setInJSDocType: setInJSDocType, tryScan: tryScan, lookAhead: lookAhead, scanRange: scanRange, }; if (ts.Debug.isDebugging) { Object.defineProperty(scanner, "__debugShowCurrentPositionInText", { get: function () { var text = scanner.getText(); return text.slice(0, scanner.getStartPos()) + "║" + text.slice(scanner.getStartPos()); }, }); } return scanner; function error(message, errPos, length) { if (errPos === void 0) { errPos = pos; } if (onError) { var oldPos = pos; pos = errPos; onError(message, length || 0); pos = oldPos; } } function scanNumberFragment() { var start = pos; var allowSeparator = false; var isPreviousTokenSeparator = false; var result = ""; while (true) { var ch = text.charCodeAt(pos); if (ch === 95 /* CharacterCodes._ */) { tokenFlags |= 512 /* TokenFlags.ContainsSeparator */; if (allowSeparator) { allowSeparator = false; isPreviousTokenSeparator = true; result += text.substring(start, pos); } else if (isPreviousTokenSeparator) { error(ts.Diagnostics.Multiple_consecutive_numeric_separators_are_not_permitted, pos, 1); } else { error(ts.Diagnostics.Numeric_separators_are_not_allowed_here, pos, 1); } pos++; start = pos; continue; } if (isDigit(ch)) { allowSeparator = true; isPreviousTokenSeparator = false; pos++; continue; } break; } if (text.charCodeAt(pos - 1) === 95 /* CharacterCodes._ */) { error(ts.Diagnostics.Numeric_separators_are_not_allowed_here, pos - 1, 1); } return result + text.substring(start, pos); } function scanNumber() { var start = pos; var mainFragment = scanNumberFragment(); var decimalFragment; var scientificFragment; if (text.charCodeAt(pos) === 46 /* CharacterCodes.dot */) { pos++; decimalFragment = scanNumberFragment(); } var end = pos; if (text.charCodeAt(pos) === 69 /* CharacterCodes.E */ || text.charCodeAt(pos) === 101 /* CharacterCodes.e */) { pos++; tokenFlags |= 16 /* TokenFlags.Scientific */; if (text.charCodeAt(pos) === 43 /* CharacterCodes.plus */ || text.charCodeAt(pos) === 45 /* CharacterCodes.minus */) pos++; var preNumericPart = pos; var finalFragment = scanNumberFragment(); if (!finalFragment) { error(ts.Diagnostics.Digit_expected); } else { scientificFragment = text.substring(end, preNumericPart) + finalFragment; end = pos; } } var result; if (tokenFlags & 512 /* TokenFlags.ContainsSeparator */) { result = mainFragment; if (decimalFragment) { result += "." + decimalFragment; } if (scientificFragment) { result += scientificFragment; } } else { result = text.substring(start, end); // No need to use all the fragments; no _ removal needed } if (decimalFragment !== undefined || tokenFlags & 16 /* TokenFlags.Scientific */) { checkForIdentifierStartAfterNumericLiteral(start, decimalFragment === undefined && !!(tokenFlags & 16 /* TokenFlags.Scientific */)); return { type: 8 /* SyntaxKind.NumericLiteral */, value: "" + +result // if value is not an integer, it can be safely coerced to a number }; } else { tokenValue = result; var type = checkBigIntSuffix(); // if value is an integer, check whether it is a bigint checkForIdentifierStartAfterNumericLiteral(start); return { type: type, value: tokenValue }; } } function checkForIdentifierStartAfterNumericLiteral(numericStart, isScientific) { if (!isIdentifierStart(codePointAt(text, pos), languageVersion)) { return; } var identifierStart = pos; var length = scanIdentifierParts().length; if (length === 1 && text[identifierStart] === "n") { if (isScientific) { error(ts.Diagnostics.A_bigint_literal_cannot_use_exponential_notation, numericStart, identifierStart - numericStart + 1); } else { error(ts.Diagnostics.A_bigint_literal_must_be_an_integer, numericStart, identifierStart - numericStart + 1); } } else { error(ts.Diagnostics.An_identifier_or_keyword_cannot_immediately_follow_a_numeric_literal, identifierStart, length); pos = identifierStart; } } function scanOctalDigits() { var start = pos; while (isOctalDigit(text.charCodeAt(pos))) { pos++; } return +(text.substring(start, pos)); } /** * Scans the given number of hexadecimal digits in the text, * returning -1 if the given number is unavailable. */ function scanExactNumberOfHexDigits(count, canHaveSeparators) { var valueString = scanHexDigits(/*minCount*/ count, /*scanAsManyAsPossible*/ false, canHaveSeparators); return valueString ? parseInt(valueString, 16) : -1; } /** * Scans as many hexadecimal digits as are available in the text, * returning "" if the given number of digits was unavailable. */ function scanMinimumNumberOfHexDigits(count, canHaveSeparators) { return scanHexDigits(/*minCount*/ count, /*scanAsManyAsPossible*/ true, canHaveSeparators); } function scanHexDigits(minCount, scanAsManyAsPossible, canHaveSeparators) { var valueChars = []; var allowSeparator = false; var isPreviousTokenSeparator = false; while (valueChars.length < minCount || scanAsManyAsPossible) { var ch = text.charCodeAt(pos); if (canHaveSeparators && ch === 95 /* CharacterCodes._ */) { tokenFlags |= 512 /* TokenFlags.ContainsSeparator */; if (allowSeparator) { allowSeparator = false; isPreviousTokenSeparator = true; } else if (isPreviousTokenSeparator) { error(ts.Diagnostics.Multiple_consecutive_numeric_separators_are_not_permitted, pos, 1); } else { error(ts.Diagnostics.Numeric_separators_are_not_allowed_here, pos, 1); } pos++; continue; } allowSeparator = canHaveSeparators; if (ch >= 65 /* CharacterCodes.A */ && ch <= 70 /* CharacterCodes.F */) { ch += 97 /* CharacterCodes.a */ - 65 /* CharacterCodes.A */; // standardize hex literals to lowercase } else if (!((ch >= 48 /* CharacterCodes._0 */ && ch <= 57 /* CharacterCodes._9 */) || (ch >= 97 /* CharacterCodes.a */ && ch <= 102 /* CharacterCodes.f */))) { break; } valueChars.push(ch); pos++; isPreviousTokenSeparator = false; } if (valueChars.length < minCount) { valueChars = []; } if (text.charCodeAt(pos - 1) === 95 /* CharacterCodes._ */) { error(ts.Diagnostics.Numeric_separators_are_not_allowed_here, pos - 1, 1); } return String.fromCharCode.apply(String, valueChars); } function scanString(jsxAttributeString) { if (jsxAttributeString === void 0) { jsxAttributeString = false; } var quote = text.charCodeAt(pos); pos++; var result = ""; var start = pos; while (true) { if (pos >= end) { result += text.substring(start, pos); tokenFlags |= 4 /* TokenFlags.Unterminated */; error(ts.Diagnostics.Unterminated_string_literal); break; } var ch = text.charCodeAt(pos); if (ch === quote) { result += text.substring(start, pos); pos++; break; } if (ch === 92 /* CharacterCodes.backslash */ && !jsxAttributeString) { result += text.substring(start, pos); result += scanEscapeSequence(); start = pos; continue; } if (isLineBreak(ch) && !jsxAttributeString) { result += text.substring(start, pos); tokenFlags |= 4 /* TokenFlags.Unterminated */; error(ts.Diagnostics.Unterminated_string_literal); break; } pos++; } return result; } /** * Sets the current 'tokenValue' and returns a NoSubstitutionTemplateLiteral or * a literal component of a TemplateExpression. */ function scanTemplateAndSetTokenValue(isTaggedTemplate) { var startedWithBacktick = text.charCodeAt(pos) === 96 /* CharacterCodes.backtick */; pos++; var start = pos; var contents = ""; var resultingToken; while (true) { if (pos >= end) { contents += text.substring(start, pos); tokenFlags |= 4 /* TokenFlags.Unterminated */; error(ts.Diagnostics.Unterminated_template_literal); resultingToken = startedWithBacktick ? 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */ : 17 /* SyntaxKind.TemplateTail */; break; } var currChar = text.charCodeAt(pos); // '`' if (currChar === 96 /* CharacterCodes.backtick */) { contents += text.substring(start, pos); pos++; resultingToken = startedWithBacktick ? 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */ : 17 /* SyntaxKind.TemplateTail */; break; } // '${' if (currChar === 36 /* CharacterCodes.$ */ && pos + 1 < end && text.charCodeAt(pos + 1) === 123 /* CharacterCodes.openBrace */) { contents += text.substring(start, pos); pos += 2; resultingToken = startedWithBacktick ? 15 /* SyntaxKind.TemplateHead */ : 16 /* SyntaxKind.TemplateMiddle */; break; } // Escape character if (currChar === 92 /* CharacterCodes.backslash */) { contents += text.substring(start, pos); contents += scanEscapeSequence(isTaggedTemplate); start = pos; continue; } // Speculated ECMAScript 6 Spec 11.8.6.1: // and LineTerminatorSequences are normalized to for Template Values if (currChar === 13 /* CharacterCodes.carriageReturn */) { contents += text.substring(start, pos); pos++; if (pos < end && text.charCodeAt(pos) === 10 /* CharacterCodes.lineFeed */) { pos++; } contents += "\n"; start = pos; continue; } pos++; } ts.Debug.assert(resultingToken !== undefined); tokenValue = contents; return resultingToken; } function scanEscapeSequence(isTaggedTemplate) { var start = pos; pos++; if (pos >= end) { error(ts.Diagnostics.Unexpected_end_of_text); return ""; } var ch = text.charCodeAt(pos); pos++; switch (ch) { case 48 /* CharacterCodes._0 */: // '\01' if (isTaggedTemplate && pos < end && isDigit(text.charCodeAt(pos))) { pos++; tokenFlags |= 2048 /* TokenFlags.ContainsInvalidEscape */; return text.substring(start, pos); } return "\0"; case 98 /* CharacterCodes.b */: return "\b"; case 116 /* CharacterCodes.t */: return "\t"; case 110 /* CharacterCodes.n */: return "\n"; case 118 /* CharacterCodes.v */: return "\v"; case 102 /* CharacterCodes.f */: return "\f"; case 114 /* CharacterCodes.r */: return "\r"; case 39 /* CharacterCodes.singleQuote */: return "\'"; case 34 /* CharacterCodes.doubleQuote */: return "\""; case 117 /* CharacterCodes.u */: if (isTaggedTemplate) { // '\u' or '\u0' or '\u00' or '\u000' for (var escapePos = pos; escapePos < pos + 4; escapePos++) { if (escapePos < end && !isHexDigit(text.charCodeAt(escapePos)) && text.charCodeAt(escapePos) !== 123 /* CharacterCodes.openBrace */) { pos = escapePos; tokenFlags |= 2048 /* TokenFlags.ContainsInvalidEscape */; return text.substring(start, pos); } } } // '\u{DDDDDDDD}' if (pos < end && text.charCodeAt(pos) === 123 /* CharacterCodes.openBrace */) { pos++; // '\u{' if (isTaggedTemplate && !isHexDigit(text.charCodeAt(pos))) { tokenFlags |= 2048 /* TokenFlags.ContainsInvalidEscape */; return text.substring(start, pos); } if (isTaggedTemplate) { var savePos = pos; var escapedValueString = scanMinimumNumberOfHexDigits(1, /*canHaveSeparators*/ false); var escapedValue = escapedValueString ? parseInt(escapedValueString, 16) : -1; // '\u{Not Code Point' or '\u{CodePoint' if (!isCodePoint(escapedValue) || text.charCodeAt(pos) !== 125 /* CharacterCodes.closeBrace */) { tokenFlags |= 2048 /* TokenFlags.ContainsInvalidEscape */; return text.substring(start, pos); } else { pos = savePos; } } tokenFlags |= 8 /* TokenFlags.ExtendedUnicodeEscape */; return scanExtendedUnicodeEscape(); } tokenFlags |= 1024 /* TokenFlags.UnicodeEscape */; // '\uDDDD' return scanHexadecimalEscape(/*numDigits*/ 4); case 120 /* CharacterCodes.x */: if (isTaggedTemplate) { if (!isHexDigit(text.charCodeAt(pos))) { tokenFlags |= 2048 /* TokenFlags.ContainsInvalidEscape */; return text.substring(start, pos); } else if (!isHexDigit(text.charCodeAt(pos + 1))) { pos++; tokenFlags |= 2048 /* TokenFlags.ContainsInvalidEscape */; return text.substring(start, pos); } } // '\xDD' return scanHexadecimalEscape(/*numDigits*/ 2); // when encountering a LineContinuation (i.e. a backslash and a line terminator sequence), // the line terminator is interpreted to be "the empty code unit sequence". case 13 /* CharacterCodes.carriageReturn */: if (pos < end && text.charCodeAt(pos) === 10 /* CharacterCodes.lineFeed */) { pos++; } // falls through case 10 /* CharacterCodes.lineFeed */: case 8232 /* CharacterCodes.lineSeparator */: case 8233 /* CharacterCodes.paragraphSeparator */: return ""; default: return String.fromCharCode(ch); } } function scanHexadecimalEscape(numDigits) { var escapedValue = scanExactNumberOfHexDigits(numDigits, /*canHaveSeparators*/ false); if (escapedValue >= 0) { return String.fromCharCode(escapedValue); } else { error(ts.Diagnostics.Hexadecimal_digit_expected); return ""; } } function scanExtendedUnicodeEscape() { var escapedValueString = scanMinimumNumberOfHexDigits(1, /*canHaveSeparators*/ false); var escapedValue = escapedValueString ? parseInt(escapedValueString, 16) : -1; var isInvalidExtendedEscape = false; // Validate the value of the digit if (escapedValue < 0) { error(ts.Diagnostics.Hexadecimal_digit_expected); isInvalidExtendedEscape = true; } else if (escapedValue > 0x10FFFF) { error(ts.Diagnostics.An_extended_Unicode_escape_value_must_be_between_0x0_and_0x10FFFF_inclusive); isInvalidExtendedEscape = true; } if (pos >= end) { error(ts.Diagnostics.Unexpected_end_of_text); isInvalidExtendedEscape = true; } else if (text.charCodeAt(pos) === 125 /* CharacterCodes.closeBrace */) { // Only swallow the following character up if it's a '}'. pos++; } else { error(ts.Diagnostics.Unterminated_Unicode_escape_sequence); isInvalidExtendedEscape = true; } if (isInvalidExtendedEscape) { return ""; } return utf16EncodeAsString(escapedValue); } // Current character is known to be a backslash. Check for Unicode escape of the form '\uXXXX' // and return code point value if valid Unicode escape is found. Otherwise return -1. function peekUnicodeEscape() { if (pos + 5 < end && text.charCodeAt(pos + 1) === 117 /* CharacterCodes.u */) { var start_1 = pos; pos += 2; var value = scanExactNumberOfHexDigits(4, /*canHaveSeparators*/ false); pos = start_1; return value; } return -1; } function peekExtendedUnicodeEscape() { if (languageVersion >= 2 /* ScriptTarget.ES2015 */ && codePointAt(text, pos + 1) === 117 /* CharacterCodes.u */ && codePointAt(text, pos + 2) === 123 /* CharacterCodes.openBrace */) { var start_2 = pos; pos += 3; var escapedValueString = scanMinimumNumberOfHexDigits(1, /*canHaveSeparators*/ false); var escapedValue = escapedValueString ? parseInt(escapedValueString, 16) : -1; pos = start_2; return escapedValue; } return -1; } function scanIdentifierParts() { var result = ""; var start = pos; while (pos < end) { var ch = codePointAt(text, pos); if (isIdentifierPart(ch, languageVersion)) { pos += charSize(ch); } else if (ch === 92 /* CharacterCodes.backslash */) { ch = peekExtendedUnicodeEscape(); if (ch >= 0 && isIdentifierPart(ch, languageVersion)) { pos += 3; tokenFlags |= 8 /* TokenFlags.ExtendedUnicodeEscape */; result += scanExtendedUnicodeEscape(); start = pos; continue; } ch = peekUnicodeEscape(); if (!(ch >= 0 && isIdentifierPart(ch, languageVersion))) { break; } tokenFlags |= 1024 /* TokenFlags.UnicodeEscape */; result += text.substring(start, pos); result += utf16EncodeAsString(ch); // Valid Unicode escape is always six characters pos += 6; start = pos; } else { break; } } result += text.substring(start, pos); return result; } function getIdentifierToken() { // Reserved words are between 2 and 12 characters long and start with a lowercase letter var len = tokenValue.length; if (len >= 2 && len <= 12) { var ch = tokenValue.charCodeAt(0); if (ch >= 97 /* CharacterCodes.a */ && ch <= 122 /* CharacterCodes.z */) { var keyword = textToKeyword.get(tokenValue); if (keyword !== undefined) { return token = keyword; } } } return token = 79 /* SyntaxKind.Identifier */; } function scanBinaryOrOctalDigits(base) { var value = ""; // For counting number of digits; Valid binaryIntegerLiteral must have at least one binary digit following B or b. // Similarly valid octalIntegerLiteral must have at least one octal digit following o or O. var separatorAllowed = false; var isPreviousTokenSeparator = false; while (true) { var ch = text.charCodeAt(pos); // Numeric separators are allowed anywhere within a numeric literal, except not at the beginning, or following another separator if (ch === 95 /* CharacterCodes._ */) { tokenFlags |= 512 /* TokenFlags.ContainsSeparator */; if (separatorAllowed) { separatorAllowed = false; isPreviousTokenSeparator = true; } else if (isPreviousTokenSeparator) { error(ts.Diagnostics.Multiple_consecutive_numeric_separators_are_not_permitted, pos, 1); } else { error(ts.Diagnostics.Numeric_separators_are_not_allowed_here, pos, 1); } pos++; continue; } separatorAllowed = true; if (!isDigit(ch) || ch - 48 /* CharacterCodes._0 */ >= base) { break; } value += text[pos]; pos++; isPreviousTokenSeparator = false; } if (text.charCodeAt(pos - 1) === 95 /* CharacterCodes._ */) { // Literal ends with underscore - not allowed error(ts.Diagnostics.Numeric_separators_are_not_allowed_here, pos - 1, 1); } return value; } function checkBigIntSuffix() { if (text.charCodeAt(pos) === 110 /* CharacterCodes.n */) { tokenValue += "n"; // Use base 10 instead of base 2 or base 8 for shorter literals if (tokenFlags & 384 /* TokenFlags.BinaryOrOctalSpecifier */) { tokenValue = ts.parsePseudoBigInt(tokenValue) + "n"; } pos++; return 9 /* SyntaxKind.BigIntLiteral */; } else { // not a bigint, so can convert to number in simplified form // Number() may not support 0b or 0o, so use parseInt() instead var numericValue = tokenFlags & 128 /* TokenFlags.BinarySpecifier */ ? parseInt(tokenValue.slice(2), 2) // skip "0b" : tokenFlags & 256 /* TokenFlags.OctalSpecifier */ ? parseInt(tokenValue.slice(2), 8) // skip "0o" : +tokenValue; tokenValue = "" + numericValue; return 8 /* SyntaxKind.NumericLiteral */; } } function scan() { var _a; startPos = pos; tokenFlags = 0 /* TokenFlags.None */; var asteriskSeen = false; while (true) { tokenPos = pos; if (pos >= end) { return token = 1 /* SyntaxKind.EndOfFileToken */; } var ch = codePointAt(text, pos); // Special handling for shebang if (ch === 35 /* CharacterCodes.hash */ && pos === 0 && isShebangTrivia(text, pos)) { pos = scanShebangTrivia(text, pos); if (skipTrivia) { continue; } else { return token = 6 /* SyntaxKind.ShebangTrivia */; } } switch (ch) { case 10 /* CharacterCodes.lineFeed */: case 13 /* CharacterCodes.carriageReturn */: tokenFlags |= 1 /* TokenFlags.PrecedingLineBreak */; if (skipTrivia) { pos++; continue; } else { if (ch === 13 /* CharacterCodes.carriageReturn */ && pos + 1 < end && text.charCodeAt(pos + 1) === 10 /* CharacterCodes.lineFeed */) { // consume both CR and LF pos += 2; } else { pos++; } return token = 4 /* SyntaxKind.NewLineTrivia */; } case 9 /* CharacterCodes.tab */: case 11 /* CharacterCodes.verticalTab */: case 12 /* CharacterCodes.formFeed */: case 32 /* CharacterCodes.space */: case 160 /* CharacterCodes.nonBreakingSpace */: case 5760 /* CharacterCodes.ogham */: case 8192 /* CharacterCodes.enQuad */: case 8193 /* CharacterCodes.emQuad */: case 8194 /* CharacterCodes.enSpace */: case 8195 /* CharacterCodes.emSpace */: case 8196 /* CharacterCodes.threePerEmSpace */: case 8197 /* CharacterCodes.fourPerEmSpace */: case 8198 /* CharacterCodes.sixPerEmSpace */: case 8199 /* CharacterCodes.figureSpace */: case 8200 /* CharacterCodes.punctuationSpace */: case 8201 /* CharacterCodes.thinSpace */: case 8202 /* CharacterCodes.hairSpace */: case 8203 /* CharacterCodes.zeroWidthSpace */: case 8239 /* CharacterCodes.narrowNoBreakSpace */: case 8287 /* CharacterCodes.mathematicalSpace */: case 12288 /* CharacterCodes.ideographicSpace */: case 65279 /* CharacterCodes.byteOrderMark */: if (skipTrivia) { pos++; continue; } else { while (pos < end && isWhiteSpaceSingleLine(text.charCodeAt(pos))) { pos++; } return token = 5 /* SyntaxKind.WhitespaceTrivia */; } case 33 /* CharacterCodes.exclamation */: if (text.charCodeAt(pos + 1) === 61 /* CharacterCodes.equals */) { if (text.charCodeAt(pos + 2) === 61 /* CharacterCodes.equals */) { return pos += 3, token = 37 /* SyntaxKind.ExclamationEqualsEqualsToken */; } return pos += 2, token = 35 /* SyntaxKind.ExclamationEqualsToken */; } pos++; return token = 53 /* SyntaxKind.ExclamationToken */; case 34 /* CharacterCodes.doubleQuote */: case 39 /* CharacterCodes.singleQuote */: tokenValue = scanString(); return token = 10 /* SyntaxKind.StringLiteral */; case 96 /* CharacterCodes.backtick */: return token = scanTemplateAndSetTokenValue(/* isTaggedTemplate */ false); case 37 /* CharacterCodes.percent */: if (text.charCodeAt(pos + 1) === 61 /* CharacterCodes.equals */) { return pos += 2, token = 69 /* SyntaxKind.PercentEqualsToken */; } pos++; return token = 44 /* SyntaxKind.PercentToken */; case 38 /* CharacterCodes.ampersand */: if (text.charCodeAt(pos + 1) === 38 /* CharacterCodes.ampersand */) { if (text.charCodeAt(pos + 2) === 61 /* CharacterCodes.equals */) { return pos += 3, token = 76 /* SyntaxKind.AmpersandAmpersandEqualsToken */; } return pos += 2, token = 55 /* SyntaxKind.AmpersandAmpersandToken */; } if (text.charCodeAt(pos + 1) === 61 /* CharacterCodes.equals */) { return pos += 2, token = 73 /* SyntaxKind.AmpersandEqualsToken */; } pos++; return token = 50 /* SyntaxKind.AmpersandToken */; case 40 /* CharacterCodes.openParen */: pos++; return token = 20 /* SyntaxKind.OpenParenToken */; case 41 /* CharacterCodes.closeParen */: pos++; return token = 21 /* SyntaxKind.CloseParenToken */; case 42 /* CharacterCodes.asterisk */: if (text.charCodeAt(pos + 1) === 61 /* CharacterCodes.equals */) { return pos += 2, token = 66 /* SyntaxKind.AsteriskEqualsToken */; } if (text.charCodeAt(pos + 1) === 42 /* CharacterCodes.asterisk */) { if (text.charCodeAt(pos + 2) === 61 /* CharacterCodes.equals */) { return pos += 3, token = 67 /* SyntaxKind.AsteriskAsteriskEqualsToken */; } return pos += 2, token = 42 /* SyntaxKind.AsteriskAsteriskToken */; } pos++; if (inJSDocType && !asteriskSeen && (tokenFlags & 1 /* TokenFlags.PrecedingLineBreak */)) { // decoration at the start of a JSDoc comment line asteriskSeen = true; continue; } return token = 41 /* SyntaxKind.AsteriskToken */; case 43 /* CharacterCodes.plus */: if (text.charCodeAt(pos + 1) === 43 /* CharacterCodes.plus */) { return pos += 2, token = 45 /* SyntaxKind.PlusPlusToken */; } if (text.charCodeAt(pos + 1) === 61 /* CharacterCodes.equals */) { return pos += 2, token = 64 /* SyntaxKind.PlusEqualsToken */; } pos++; return token = 39 /* SyntaxKind.PlusToken */; case 44 /* CharacterCodes.comma */: pos++; return token = 27 /* SyntaxKind.CommaToken */; case 45 /* CharacterCodes.minus */: if (text.charCodeAt(pos + 1) === 45 /* CharacterCodes.minus */) { return pos += 2, token = 46 /* SyntaxKind.MinusMinusToken */; } if (text.charCodeAt(pos + 1) === 61 /* CharacterCodes.equals */) { return pos += 2, token = 65 /* SyntaxKind.MinusEqualsToken */; } pos++; return token = 40 /* SyntaxKind.MinusToken */; case 46 /* CharacterCodes.dot */: if (isDigit(text.charCodeAt(pos + 1))) { tokenValue = scanNumber().value; return token = 8 /* SyntaxKind.NumericLiteral */; } if (text.charCodeAt(pos + 1) === 46 /* CharacterCodes.dot */ && text.charCodeAt(pos + 2) === 46 /* CharacterCodes.dot */) { return pos += 3, token = 25 /* SyntaxKind.DotDotDotToken */; } pos++; return token = 24 /* SyntaxKind.DotToken */; case 47 /* CharacterCodes.slash */: // Single-line comment if (text.charCodeAt(pos + 1) === 47 /* CharacterCodes.slash */) { pos += 2; while (pos < end) { if (isLineBreak(text.charCodeAt(pos))) { break; } pos++; } commentDirectives = appendIfCommentDirective(commentDirectives, text.slice(tokenPos, pos), commentDirectiveRegExSingleLine, tokenPos); if (skipTrivia) { continue; } else { return token = 2 /* SyntaxKind.SingleLineCommentTrivia */; } } // Multi-line comment if (text.charCodeAt(pos + 1) === 42 /* CharacterCodes.asterisk */) { pos += 2; if (text.charCodeAt(pos) === 42 /* CharacterCodes.asterisk */ && text.charCodeAt(pos + 1) !== 47 /* CharacterCodes.slash */) { tokenFlags |= 2 /* TokenFlags.PrecedingJSDocComment */; } var commentClosed = false; var lastLineStart = tokenPos; while (pos < end) { var ch_1 = text.charCodeAt(pos); if (ch_1 === 42 /* CharacterCodes.asterisk */ && text.charCodeAt(pos + 1) === 47 /* CharacterCodes.slash */) { pos += 2; commentClosed = true; break; } pos++; if (isLineBreak(ch_1)) { lastLineStart = pos; tokenFlags |= 1 /* TokenFlags.PrecedingLineBreak */; } } commentDirectives = appendIfCommentDirective(commentDirectives, text.slice(lastLineStart, pos), commentDirectiveRegExMultiLine, lastLineStart); if (!commentClosed) { error(ts.Diagnostics.Asterisk_Slash_expected); } if (skipTrivia) { continue; } else { if (!commentClosed) { tokenFlags |= 4 /* TokenFlags.Unterminated */; } return token = 3 /* SyntaxKind.MultiLineCommentTrivia */; } } if (text.charCodeAt(pos + 1) === 61 /* CharacterCodes.equals */) { return pos += 2, token = 68 /* SyntaxKind.SlashEqualsToken */; } pos++; return token = 43 /* SyntaxKind.SlashToken */; case 48 /* CharacterCodes._0 */: if (pos + 2 < end && (text.charCodeAt(pos + 1) === 88 /* CharacterCodes.X */ || text.charCodeAt(pos + 1) === 120 /* CharacterCodes.x */)) { pos += 2; tokenValue = scanMinimumNumberOfHexDigits(1, /*canHaveSeparators*/ true); if (!tokenValue) { error(ts.Diagnostics.Hexadecimal_digit_expected); tokenValue = "0"; } tokenValue = "0x" + tokenValue; tokenFlags |= 64 /* TokenFlags.HexSpecifier */; return token = checkBigIntSuffix(); } else if (pos + 2 < end && (text.charCodeAt(pos + 1) === 66 /* CharacterCodes.B */ || text.charCodeAt(pos + 1) === 98 /* CharacterCodes.b */)) { pos += 2; tokenValue = scanBinaryOrOctalDigits(/* base */ 2); if (!tokenValue) { error(ts.Diagnostics.Binary_digit_expected); tokenValue = "0"; } tokenValue = "0b" + tokenValue; tokenFlags |= 128 /* TokenFlags.BinarySpecifier */; return token = checkBigIntSuffix(); } else if (pos + 2 < end && (text.charCodeAt(pos + 1) === 79 /* CharacterCodes.O */ || text.charCodeAt(pos + 1) === 111 /* CharacterCodes.o */)) { pos += 2; tokenValue = scanBinaryOrOctalDigits(/* base */ 8); if (!tokenValue) { error(ts.Diagnostics.Octal_digit_expected); tokenValue = "0"; } tokenValue = "0o" + tokenValue; tokenFlags |= 256 /* TokenFlags.OctalSpecifier */; return token = checkBigIntSuffix(); } // Try to parse as an octal if (pos + 1 < end && isOctalDigit(text.charCodeAt(pos + 1))) { tokenValue = "" + scanOctalDigits(); tokenFlags |= 32 /* TokenFlags.Octal */; return token = 8 /* SyntaxKind.NumericLiteral */; } // This fall-through is a deviation from the EcmaScript grammar. The grammar says that a leading zero // can only be followed by an octal digit, a dot, or the end of the number literal. However, we are being // permissive and allowing decimal digits of the form 08* and 09* (which many browsers also do). // falls through case 49 /* CharacterCodes._1 */: case 50 /* CharacterCodes._2 */: case 51 /* CharacterCodes._3 */: case 52 /* CharacterCodes._4 */: case 53 /* CharacterCodes._5 */: case 54 /* CharacterCodes._6 */: case 55 /* CharacterCodes._7 */: case 56 /* CharacterCodes._8 */: case 57 /* CharacterCodes._9 */: (_a = scanNumber(), token = _a.type, tokenValue = _a.value); return token; case 58 /* CharacterCodes.colon */: pos++; return token = 58 /* SyntaxKind.ColonToken */; case 59 /* CharacterCodes.semicolon */: pos++; return token = 26 /* SyntaxKind.SemicolonToken */; case 60 /* CharacterCodes.lessThan */: if (isConflictMarkerTrivia(text, pos)) { pos = scanConflictMarkerTrivia(text, pos, error); if (skipTrivia) { continue; } else { return token = 7 /* SyntaxKind.ConflictMarkerTrivia */; } } if (text.charCodeAt(pos + 1) === 60 /* CharacterCodes.lessThan */) { if (text.charCodeAt(pos + 2) === 61 /* CharacterCodes.equals */) { return pos += 3, token = 70 /* SyntaxKind.LessThanLessThanEqualsToken */; } return pos += 2, token = 47 /* SyntaxKind.LessThanLessThanToken */; } if (text.charCodeAt(pos + 1) === 61 /* CharacterCodes.equals */) { return pos += 2, token = 32 /* SyntaxKind.LessThanEqualsToken */; } if (languageVariant === 1 /* LanguageVariant.JSX */ && text.charCodeAt(pos + 1) === 47 /* CharacterCodes.slash */ && text.charCodeAt(pos + 2) !== 42 /* CharacterCodes.asterisk */) { return pos += 2, token = 30 /* SyntaxKind.LessThanSlashToken */; } pos++; return token = 29 /* SyntaxKind.LessThanToken */; case 61 /* CharacterCodes.equals */: if (isConflictMarkerTrivia(text, pos)) { pos = scanConflictMarkerTrivia(text, pos, error); if (skipTrivia) { continue; } else { return token = 7 /* SyntaxKind.ConflictMarkerTrivia */; } } if (text.charCodeAt(pos + 1) === 61 /* CharacterCodes.equals */) { if (text.charCodeAt(pos + 2) === 61 /* CharacterCodes.equals */) { return pos += 3, token = 36 /* SyntaxKind.EqualsEqualsEqualsToken */; } return pos += 2, token = 34 /* SyntaxKind.EqualsEqualsToken */; } if (text.charCodeAt(pos + 1) === 62 /* CharacterCodes.greaterThan */) { return pos += 2, token = 38 /* SyntaxKind.EqualsGreaterThanToken */; } pos++; return token = 63 /* SyntaxKind.EqualsToken */; case 62 /* CharacterCodes.greaterThan */: if (isConflictMarkerTrivia(text, pos)) { pos = scanConflictMarkerTrivia(text, pos, error); if (skipTrivia) { continue; } else { return token = 7 /* SyntaxKind.ConflictMarkerTrivia */; } } pos++; return token = 31 /* SyntaxKind.GreaterThanToken */; case 63 /* CharacterCodes.question */: if (text.charCodeAt(pos + 1) === 46 /* CharacterCodes.dot */ && !isDigit(text.charCodeAt(pos + 2))) { return pos += 2, token = 28 /* SyntaxKind.QuestionDotToken */; } if (text.charCodeAt(pos + 1) === 63 /* CharacterCodes.question */) { if (text.charCodeAt(pos + 2) === 61 /* CharacterCodes.equals */) { return pos += 3, token = 77 /* SyntaxKind.QuestionQuestionEqualsToken */; } return pos += 2, token = 60 /* SyntaxKind.QuestionQuestionToken */; } pos++; return token = 57 /* SyntaxKind.QuestionToken */; case 91 /* CharacterCodes.openBracket */: pos++; return token = 22 /* SyntaxKind.OpenBracketToken */; case 93 /* CharacterCodes.closeBracket */: pos++; return token = 23 /* SyntaxKind.CloseBracketToken */; case 94 /* CharacterCodes.caret */: if (text.charCodeAt(pos + 1) === 61 /* CharacterCodes.equals */) { return pos += 2, token = 78 /* SyntaxKind.CaretEqualsToken */; } pos++; return token = 52 /* SyntaxKind.CaretToken */; case 123 /* CharacterCodes.openBrace */: pos++; return token = 18 /* SyntaxKind.OpenBraceToken */; case 124 /* CharacterCodes.bar */: if (isConflictMarkerTrivia(text, pos)) { pos = scanConflictMarkerTrivia(text, pos, error); if (skipTrivia) { continue; } else { return token = 7 /* SyntaxKind.ConflictMarkerTrivia */; } } if (text.charCodeAt(pos + 1) === 124 /* CharacterCodes.bar */) { if (text.charCodeAt(pos + 2) === 61 /* CharacterCodes.equals */) { return pos += 3, token = 75 /* SyntaxKind.BarBarEqualsToken */; } return pos += 2, token = 56 /* SyntaxKind.BarBarToken */; } if (text.charCodeAt(pos + 1) === 61 /* CharacterCodes.equals */) { return pos += 2, token = 74 /* SyntaxKind.BarEqualsToken */; } pos++; return token = 51 /* SyntaxKind.BarToken */; case 125 /* CharacterCodes.closeBrace */: pos++; return token = 19 /* SyntaxKind.CloseBraceToken */; case 126 /* CharacterCodes.tilde */: pos++; return token = 54 /* SyntaxKind.TildeToken */; case 64 /* CharacterCodes.at */: pos++; return token = 59 /* SyntaxKind.AtToken */; case 92 /* CharacterCodes.backslash */: var extendedCookedChar = peekExtendedUnicodeEscape(); if (extendedCookedChar >= 0 && isIdentifierStart(extendedCookedChar, languageVersion)) { pos += 3; tokenFlags |= 8 /* TokenFlags.ExtendedUnicodeEscape */; tokenValue = scanExtendedUnicodeEscape() + scanIdentifierParts(); return token = getIdentifierToken(); } var cookedChar = peekUnicodeEscape(); if (cookedChar >= 0 && isIdentifierStart(cookedChar, languageVersion)) { pos += 6; tokenFlags |= 1024 /* TokenFlags.UnicodeEscape */; tokenValue = String.fromCharCode(cookedChar) + scanIdentifierParts(); return token = getIdentifierToken(); } error(ts.Diagnostics.Invalid_character); pos++; return token = 0 /* SyntaxKind.Unknown */; case 35 /* CharacterCodes.hash */: if (pos !== 0 && text[pos + 1] === "!") { error(ts.Diagnostics.can_only_be_used_at_the_start_of_a_file); pos++; return token = 0 /* SyntaxKind.Unknown */; } if (isIdentifierStart(codePointAt(text, pos + 1), languageVersion)) { pos++; scanIdentifier(codePointAt(text, pos), languageVersion); } else { tokenValue = String.fromCharCode(codePointAt(text, pos)); error(ts.Diagnostics.Invalid_character, pos++, charSize(ch)); } return token = 80 /* SyntaxKind.PrivateIdentifier */; default: var identifierKind = scanIdentifier(ch, languageVersion); if (identifierKind) { return token = identifierKind; } else if (isWhiteSpaceSingleLine(ch)) { pos += charSize(ch); continue; } else if (isLineBreak(ch)) { tokenFlags |= 1 /* TokenFlags.PrecedingLineBreak */; pos += charSize(ch); continue; } var size = charSize(ch); error(ts.Diagnostics.Invalid_character, pos, size); pos += size; return token = 0 /* SyntaxKind.Unknown */; } } } function reScanInvalidIdentifier() { ts.Debug.assert(token === 0 /* SyntaxKind.Unknown */, "'reScanInvalidIdentifier' should only be called when the current token is 'SyntaxKind.Unknown'."); pos = tokenPos = startPos; tokenFlags = 0; var ch = codePointAt(text, pos); var identifierKind = scanIdentifier(ch, 99 /* ScriptTarget.ESNext */); if (identifierKind) { return token = identifierKind; } pos += charSize(ch); return token; // Still `SyntaKind.Unknown` } function scanIdentifier(startCharacter, languageVersion) { var ch = startCharacter; if (isIdentifierStart(ch, languageVersion)) { pos += charSize(ch); while (pos < end && isIdentifierPart(ch = codePointAt(text, pos), languageVersion)) pos += charSize(ch); tokenValue = text.substring(tokenPos, pos); if (ch === 92 /* CharacterCodes.backslash */) { tokenValue += scanIdentifierParts(); } return getIdentifierToken(); } } function reScanGreaterToken() { if (token === 31 /* SyntaxKind.GreaterThanToken */) { if (text.charCodeAt(pos) === 62 /* CharacterCodes.greaterThan */) { if (text.charCodeAt(pos + 1) === 62 /* CharacterCodes.greaterThan */) { if (text.charCodeAt(pos + 2) === 61 /* CharacterCodes.equals */) { return pos += 3, token = 72 /* SyntaxKind.GreaterThanGreaterThanGreaterThanEqualsToken */; } return pos += 2, token = 49 /* SyntaxKind.GreaterThanGreaterThanGreaterThanToken */; } if (text.charCodeAt(pos + 1) === 61 /* CharacterCodes.equals */) { return pos += 2, token = 71 /* SyntaxKind.GreaterThanGreaterThanEqualsToken */; } pos++; return token = 48 /* SyntaxKind.GreaterThanGreaterThanToken */; } if (text.charCodeAt(pos) === 61 /* CharacterCodes.equals */) { pos++; return token = 33 /* SyntaxKind.GreaterThanEqualsToken */; } } return token; } function reScanAsteriskEqualsToken() { ts.Debug.assert(token === 66 /* SyntaxKind.AsteriskEqualsToken */, "'reScanAsteriskEqualsToken' should only be called on a '*='"); pos = tokenPos + 1; return token = 63 /* SyntaxKind.EqualsToken */; } function reScanSlashToken() { if (token === 43 /* SyntaxKind.SlashToken */ || token === 68 /* SyntaxKind.SlashEqualsToken */) { var p = tokenPos + 1; var inEscape = false; var inCharacterClass = false; while (true) { // If we reach the end of a file, or hit a newline, then this is an unterminated // regex. Report error and return what we have so far. if (p >= end) { tokenFlags |= 4 /* TokenFlags.Unterminated */; error(ts.Diagnostics.Unterminated_regular_expression_literal); break; } var ch = text.charCodeAt(p); if (isLineBreak(ch)) { tokenFlags |= 4 /* TokenFlags.Unterminated */; error(ts.Diagnostics.Unterminated_regular_expression_literal); break; } if (inEscape) { // Parsing an escape character; // reset the flag and just advance to the next char. inEscape = false; } else if (ch === 47 /* CharacterCodes.slash */ && !inCharacterClass) { // A slash within a character class is permissible, // but in general it signals the end of the regexp literal. p++; break; } else if (ch === 91 /* CharacterCodes.openBracket */) { inCharacterClass = true; } else if (ch === 92 /* CharacterCodes.backslash */) { inEscape = true; } else if (ch === 93 /* CharacterCodes.closeBracket */) { inCharacterClass = false; } p++; } while (p < end && isIdentifierPart(text.charCodeAt(p), languageVersion)) { p++; } pos = p; tokenValue = text.substring(tokenPos, pos); token = 13 /* SyntaxKind.RegularExpressionLiteral */; } return token; } function appendIfCommentDirective(commentDirectives, text, commentDirectiveRegEx, lineStart) { var type = getDirectiveFromComment(ts.trimStringStart(text), commentDirectiveRegEx); if (type === undefined) { return commentDirectives; } return ts.append(commentDirectives, { range: { pos: lineStart, end: pos }, type: type, }); } function getDirectiveFromComment(text, commentDirectiveRegEx) { var match = commentDirectiveRegEx.exec(text); if (!match) { return undefined; } switch (match[1]) { case "ts-expect-error": return 0 /* CommentDirectiveType.ExpectError */; case "ts-ignore": return 1 /* CommentDirectiveType.Ignore */; } return undefined; } /** * Unconditionally back up and scan a template expression portion. */ function reScanTemplateToken(isTaggedTemplate) { ts.Debug.assert(token === 19 /* SyntaxKind.CloseBraceToken */, "'reScanTemplateToken' should only be called on a '}'"); pos = tokenPos; return token = scanTemplateAndSetTokenValue(isTaggedTemplate); } function reScanTemplateHeadOrNoSubstitutionTemplate() { pos = tokenPos; return token = scanTemplateAndSetTokenValue(/* isTaggedTemplate */ true); } function reScanJsxToken(allowMultilineJsxText) { if (allowMultilineJsxText === void 0) { allowMultilineJsxText = true; } pos = tokenPos = startPos; return token = scanJsxToken(allowMultilineJsxText); } function reScanLessThanToken() { if (token === 47 /* SyntaxKind.LessThanLessThanToken */) { pos = tokenPos + 1; return token = 29 /* SyntaxKind.LessThanToken */; } return token; } function reScanHashToken() { if (token === 80 /* SyntaxKind.PrivateIdentifier */) { pos = tokenPos + 1; return token = 62 /* SyntaxKind.HashToken */; } return token; } function reScanQuestionToken() { ts.Debug.assert(token === 60 /* SyntaxKind.QuestionQuestionToken */, "'reScanQuestionToken' should only be called on a '??'"); pos = tokenPos + 1; return token = 57 /* SyntaxKind.QuestionToken */; } function scanJsxToken(allowMultilineJsxText) { if (allowMultilineJsxText === void 0) { allowMultilineJsxText = true; } startPos = tokenPos = pos; if (pos >= end) { return token = 1 /* SyntaxKind.EndOfFileToken */; } var char = text.charCodeAt(pos); if (char === 60 /* CharacterCodes.lessThan */) { if (text.charCodeAt(pos + 1) === 47 /* CharacterCodes.slash */) { pos += 2; return token = 30 /* SyntaxKind.LessThanSlashToken */; } pos++; return token = 29 /* SyntaxKind.LessThanToken */; } if (char === 123 /* CharacterCodes.openBrace */) { pos++; return token = 18 /* SyntaxKind.OpenBraceToken */; } // First non-whitespace character on this line. var firstNonWhitespace = 0; // These initial values are special because the first line is: // firstNonWhitespace = 0 to indicate that we want leading whitespace, while (pos < end) { char = text.charCodeAt(pos); if (char === 123 /* CharacterCodes.openBrace */) { break; } if (char === 60 /* CharacterCodes.lessThan */) { if (isConflictMarkerTrivia(text, pos)) { pos = scanConflictMarkerTrivia(text, pos, error); return token = 7 /* SyntaxKind.ConflictMarkerTrivia */; } break; } if (char === 62 /* CharacterCodes.greaterThan */) { error(ts.Diagnostics.Unexpected_token_Did_you_mean_or_gt, pos, 1); } if (char === 125 /* CharacterCodes.closeBrace */) { error(ts.Diagnostics.Unexpected_token_Did_you_mean_or_rbrace, pos, 1); } // FirstNonWhitespace is 0, then we only see whitespaces so far. If we see a linebreak, we want to ignore that whitespaces. // i.e (- : whitespace) //
---- //
becomes
// //
----
becomes
----
if (isLineBreak(char) && firstNonWhitespace === 0) { firstNonWhitespace = -1; } else if (!allowMultilineJsxText && isLineBreak(char) && firstNonWhitespace > 0) { // Stop JsxText on each line during formatting. This allows the formatter to // indent each line correctly. break; } else if (!isWhiteSpaceLike(char)) { firstNonWhitespace = pos; } pos++; } tokenValue = text.substring(startPos, pos); return firstNonWhitespace === -1 ? 12 /* SyntaxKind.JsxTextAllWhiteSpaces */ : 11 /* SyntaxKind.JsxText */; } // Scans a JSX identifier; these differ from normal identifiers in that // they allow dashes function scanJsxIdentifier() { if (tokenIsIdentifierOrKeyword(token)) { // An identifier or keyword has already been parsed - check for a `-` or a single instance of `:` and then append it and // everything after it to the token // Do note that this means that `scanJsxIdentifier` effectively _mutates_ the visible token without advancing to a new token // Any caller should be expecting this behavior and should only read the pos or token value after calling it. var namespaceSeparator = false; while (pos < end) { var ch = text.charCodeAt(pos); if (ch === 45 /* CharacterCodes.minus */) { tokenValue += "-"; pos++; continue; } else if (ch === 58 /* CharacterCodes.colon */ && !namespaceSeparator) { tokenValue += ":"; pos++; namespaceSeparator = true; token = 79 /* SyntaxKind.Identifier */; // swap from keyword kind to identifier kind continue; } var oldPos = pos; tokenValue += scanIdentifierParts(); // reuse `scanIdentifierParts` so unicode escapes are handled if (pos === oldPos) { break; } } // Do not include a trailing namespace separator in the token, since this is against the spec. if (tokenValue.slice(-1) === ":") { tokenValue = tokenValue.slice(0, -1); pos--; } return getIdentifierToken(); } return token; } function scanJsxAttributeValue() { startPos = pos; switch (text.charCodeAt(pos)) { case 34 /* CharacterCodes.doubleQuote */: case 39 /* CharacterCodes.singleQuote */: tokenValue = scanString(/*jsxAttributeString*/ true); return token = 10 /* SyntaxKind.StringLiteral */; default: // If this scans anything other than `{`, it's a parse error. return scan(); } } function reScanJsxAttributeValue() { pos = tokenPos = startPos; return scanJsxAttributeValue(); } function scanJsDocToken() { startPos = tokenPos = pos; tokenFlags = 0 /* TokenFlags.None */; if (pos >= end) { return token = 1 /* SyntaxKind.EndOfFileToken */; } var ch = codePointAt(text, pos); pos += charSize(ch); switch (ch) { case 9 /* CharacterCodes.tab */: case 11 /* CharacterCodes.verticalTab */: case 12 /* CharacterCodes.formFeed */: case 32 /* CharacterCodes.space */: while (pos < end && isWhiteSpaceSingleLine(text.charCodeAt(pos))) { pos++; } return token = 5 /* SyntaxKind.WhitespaceTrivia */; case 64 /* CharacterCodes.at */: return token = 59 /* SyntaxKind.AtToken */; case 13 /* CharacterCodes.carriageReturn */: if (text.charCodeAt(pos) === 10 /* CharacterCodes.lineFeed */) { pos++; } // falls through case 10 /* CharacterCodes.lineFeed */: tokenFlags |= 1 /* TokenFlags.PrecedingLineBreak */; return token = 4 /* SyntaxKind.NewLineTrivia */; case 42 /* CharacterCodes.asterisk */: return token = 41 /* SyntaxKind.AsteriskToken */; case 123 /* CharacterCodes.openBrace */: return token = 18 /* SyntaxKind.OpenBraceToken */; case 125 /* CharacterCodes.closeBrace */: return token = 19 /* SyntaxKind.CloseBraceToken */; case 91 /* CharacterCodes.openBracket */: return token = 22 /* SyntaxKind.OpenBracketToken */; case 93 /* CharacterCodes.closeBracket */: return token = 23 /* SyntaxKind.CloseBracketToken */; case 60 /* CharacterCodes.lessThan */: return token = 29 /* SyntaxKind.LessThanToken */; case 62 /* CharacterCodes.greaterThan */: return token = 31 /* SyntaxKind.GreaterThanToken */; case 61 /* CharacterCodes.equals */: return token = 63 /* SyntaxKind.EqualsToken */; case 44 /* CharacterCodes.comma */: return token = 27 /* SyntaxKind.CommaToken */; case 46 /* CharacterCodes.dot */: return token = 24 /* SyntaxKind.DotToken */; case 96 /* CharacterCodes.backtick */: return token = 61 /* SyntaxKind.BacktickToken */; case 35 /* CharacterCodes.hash */: return token = 62 /* SyntaxKind.HashToken */; case 92 /* CharacterCodes.backslash */: pos--; var extendedCookedChar = peekExtendedUnicodeEscape(); if (extendedCookedChar >= 0 && isIdentifierStart(extendedCookedChar, languageVersion)) { pos += 3; tokenFlags |= 8 /* TokenFlags.ExtendedUnicodeEscape */; tokenValue = scanExtendedUnicodeEscape() + scanIdentifierParts(); return token = getIdentifierToken(); } var cookedChar = peekUnicodeEscape(); if (cookedChar >= 0 && isIdentifierStart(cookedChar, languageVersion)) { pos += 6; tokenFlags |= 1024 /* TokenFlags.UnicodeEscape */; tokenValue = String.fromCharCode(cookedChar) + scanIdentifierParts(); return token = getIdentifierToken(); } pos++; return token = 0 /* SyntaxKind.Unknown */; } if (isIdentifierStart(ch, languageVersion)) { var char = ch; while (pos < end && isIdentifierPart(char = codePointAt(text, pos), languageVersion) || text.charCodeAt(pos) === 45 /* CharacterCodes.minus */) pos += charSize(char); tokenValue = text.substring(tokenPos, pos); if (char === 92 /* CharacterCodes.backslash */) { tokenValue += scanIdentifierParts(); } return token = getIdentifierToken(); } else { return token = 0 /* SyntaxKind.Unknown */; } } function speculationHelper(callback, isLookahead) { var savePos = pos; var saveStartPos = startPos; var saveTokenPos = tokenPos; var saveToken = token; var saveTokenValue = tokenValue; var saveTokenFlags = tokenFlags; var result = callback(); // If our callback returned something 'falsy' or we're just looking ahead, // then unconditionally restore us to where we were. if (!result || isLookahead) { pos = savePos; startPos = saveStartPos; tokenPos = saveTokenPos; token = saveToken; tokenValue = saveTokenValue; tokenFlags = saveTokenFlags; } return result; } function scanRange(start, length, callback) { var saveEnd = end; var savePos = pos; var saveStartPos = startPos; var saveTokenPos = tokenPos; var saveToken = token; var saveTokenValue = tokenValue; var saveTokenFlags = tokenFlags; var saveErrorExpectations = commentDirectives; setText(text, start, length); var result = callback(); end = saveEnd; pos = savePos; startPos = saveStartPos; tokenPos = saveTokenPos; token = saveToken; tokenValue = saveTokenValue; tokenFlags = saveTokenFlags; commentDirectives = saveErrorExpectations; return result; } function lookAhead(callback) { return speculationHelper(callback, /*isLookahead*/ true); } function tryScan(callback) { return speculationHelper(callback, /*isLookahead*/ false); } function getText() { return text; } function clearCommentDirectives() { commentDirectives = undefined; } function setText(newText, start, length) { text = newText || ""; end = length === undefined ? text.length : start + length; setTextPos(start || 0); } function setOnError(errorCallback) { onError = errorCallback; } function setScriptTarget(scriptTarget) { languageVersion = scriptTarget; } function setLanguageVariant(variant) { languageVariant = variant; } function setTextPos(textPos) { ts.Debug.assert(textPos >= 0); pos = textPos; startPos = textPos; tokenPos = textPos; token = 0 /* SyntaxKind.Unknown */; tokenValue = undefined; tokenFlags = 0 /* TokenFlags.None */; } function setInJSDocType(inType) { inJSDocType += inType ? 1 : -1; } } ts.createScanner = createScanner; /* @internal */ var codePointAt = String.prototype.codePointAt ? function (s, i) { return s.codePointAt(i); } : function codePointAt(str, i) { // from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/codePointAt var size = str.length; // Account for out-of-bounds indices: if (i < 0 || i >= size) { return undefined; // String.codePointAt returns `undefined` for OOB indexes } // Get the first code unit var first = str.charCodeAt(i); // check if it’s the start of a surrogate pair if (first >= 0xD800 && first <= 0xDBFF && size > i + 1) { // high surrogate and there is a next code unit var second = str.charCodeAt(i + 1); if (second >= 0xDC00 && second <= 0xDFFF) { // low surrogate // https://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae return (first - 0xD800) * 0x400 + second - 0xDC00 + 0x10000; } } return first; }; /* @internal */ function charSize(ch) { if (ch >= 0x10000) { return 2; } return 1; } // Derived from the 10.1.1 UTF16Encoding of the ES6 Spec. function utf16EncodeAsStringFallback(codePoint) { ts.Debug.assert(0x0 <= codePoint && codePoint <= 0x10FFFF); if (codePoint <= 65535) { return String.fromCharCode(codePoint); } var codeUnit1 = Math.floor((codePoint - 65536) / 1024) + 0xD800; var codeUnit2 = ((codePoint - 65536) % 1024) + 0xDC00; return String.fromCharCode(codeUnit1, codeUnit2); } var utf16EncodeAsStringWorker = String.fromCodePoint ? function (codePoint) { return String.fromCodePoint(codePoint); } : utf16EncodeAsStringFallback; /* @internal */ function utf16EncodeAsString(codePoint) { return utf16EncodeAsStringWorker(codePoint); } ts.utf16EncodeAsString = utf16EncodeAsString; })(ts || (ts = {})); var ts; (function (ts) { function isExternalModuleNameRelative(moduleName) { // TypeScript 1.0 spec (April 2014): 11.2.1 // An external module name is "relative" if the first term is "." or "..". // Update: We also consider a path like `C:\foo.ts` "relative" because we do not search for it in `node_modules` or treat it as an ambient module. return ts.pathIsRelative(moduleName) || ts.isRootedDiskPath(moduleName); } ts.isExternalModuleNameRelative = isExternalModuleNameRelative; function sortAndDeduplicateDiagnostics(diagnostics) { return ts.sortAndDeduplicate(diagnostics, ts.compareDiagnostics); } ts.sortAndDeduplicateDiagnostics = sortAndDeduplicateDiagnostics; function getDefaultLibFileName(options) { switch (ts.getEmitScriptTarget(options)) { case 99 /* ScriptTarget.ESNext */: return "lib.esnext.full.d.ts"; case 9 /* ScriptTarget.ES2022 */: return "lib.es2022.full.d.ts"; case 8 /* ScriptTarget.ES2021 */: return "lib.es2021.full.d.ts"; case 7 /* ScriptTarget.ES2020 */: return "lib.es2020.full.d.ts"; case 6 /* ScriptTarget.ES2019 */: return "lib.es2019.full.d.ts"; case 5 /* ScriptTarget.ES2018 */: return "lib.es2018.full.d.ts"; case 4 /* ScriptTarget.ES2017 */: return "lib.es2017.full.d.ts"; case 3 /* ScriptTarget.ES2016 */: return "lib.es2016.full.d.ts"; case 2 /* ScriptTarget.ES2015 */: return "lib.es6.d.ts"; // We don't use lib.es2015.full.d.ts due to breaking change. default: return "lib.d.ts"; } } ts.getDefaultLibFileName = getDefaultLibFileName; function textSpanEnd(span) { return span.start + span.length; } ts.textSpanEnd = textSpanEnd; function textSpanIsEmpty(span) { return span.length === 0; } ts.textSpanIsEmpty = textSpanIsEmpty; function textSpanContainsPosition(span, position) { return position >= span.start && position < textSpanEnd(span); } ts.textSpanContainsPosition = textSpanContainsPosition; /* @internal */ function textRangeContainsPositionInclusive(span, position) { return position >= span.pos && position <= span.end; } ts.textRangeContainsPositionInclusive = textRangeContainsPositionInclusive; // Returns true if 'span' contains 'other'. function textSpanContainsTextSpan(span, other) { return other.start >= span.start && textSpanEnd(other) <= textSpanEnd(span); } ts.textSpanContainsTextSpan = textSpanContainsTextSpan; function textSpanOverlapsWith(span, other) { return textSpanOverlap(span, other) !== undefined; } ts.textSpanOverlapsWith = textSpanOverlapsWith; function textSpanOverlap(span1, span2) { var overlap = textSpanIntersection(span1, span2); return overlap && overlap.length === 0 ? undefined : overlap; } ts.textSpanOverlap = textSpanOverlap; function textSpanIntersectsWithTextSpan(span, other) { return decodedTextSpanIntersectsWith(span.start, span.length, other.start, other.length); } ts.textSpanIntersectsWithTextSpan = textSpanIntersectsWithTextSpan; function textSpanIntersectsWith(span, start, length) { return decodedTextSpanIntersectsWith(span.start, span.length, start, length); } ts.textSpanIntersectsWith = textSpanIntersectsWith; function decodedTextSpanIntersectsWith(start1, length1, start2, length2) { var end1 = start1 + length1; var end2 = start2 + length2; return start2 <= end1 && end2 >= start1; } ts.decodedTextSpanIntersectsWith = decodedTextSpanIntersectsWith; function textSpanIntersectsWithPosition(span, position) { return position <= textSpanEnd(span) && position >= span.start; } ts.textSpanIntersectsWithPosition = textSpanIntersectsWithPosition; function textSpanIntersection(span1, span2) { var start = Math.max(span1.start, span2.start); var end = Math.min(textSpanEnd(span1), textSpanEnd(span2)); return start <= end ? createTextSpanFromBounds(start, end) : undefined; } ts.textSpanIntersection = textSpanIntersection; function createTextSpan(start, length) { if (start < 0) { throw new Error("start < 0"); } if (length < 0) { throw new Error("length < 0"); } return { start: start, length: length }; } ts.createTextSpan = createTextSpan; function createTextSpanFromBounds(start, end) { return createTextSpan(start, end - start); } ts.createTextSpanFromBounds = createTextSpanFromBounds; function textChangeRangeNewSpan(range) { return createTextSpan(range.span.start, range.newLength); } ts.textChangeRangeNewSpan = textChangeRangeNewSpan; function textChangeRangeIsUnchanged(range) { return textSpanIsEmpty(range.span) && range.newLength === 0; } ts.textChangeRangeIsUnchanged = textChangeRangeIsUnchanged; function createTextChangeRange(span, newLength) { if (newLength < 0) { throw new Error("newLength < 0"); } return { span: span, newLength: newLength }; } ts.createTextChangeRange = createTextChangeRange; ts.unchangedTextChangeRange = createTextChangeRange(createTextSpan(0, 0), 0); // eslint-disable-line prefer-const /** * Called to merge all the changes that occurred across several versions of a script snapshot * into a single change. i.e. if a user keeps making successive edits to a script we will * have a text change from V1 to V2, V2 to V3, ..., Vn. * * This function will then merge those changes into a single change range valid between V1 and * Vn. */ function collapseTextChangeRangesAcrossMultipleVersions(changes) { if (changes.length === 0) { return ts.unchangedTextChangeRange; } if (changes.length === 1) { return changes[0]; } // We change from talking about { { oldStart, oldLength }, newLength } to { oldStart, oldEnd, newEnd } // as it makes things much easier to reason about. var change0 = changes[0]; var oldStartN = change0.span.start; var oldEndN = textSpanEnd(change0.span); var newEndN = oldStartN + change0.newLength; for (var i = 1; i < changes.length; i++) { var nextChange = changes[i]; // Consider the following case: // i.e. two edits. The first represents the text change range { { 10, 50 }, 30 }. i.e. The span starting // at 10, with length 50 is reduced to length 30. The second represents the text change range { { 30, 30 }, 40 }. // i.e. the span starting at 30 with length 30 is increased to length 40. // // 0 10 20 30 40 50 60 70 80 90 100 // ------------------------------------------------------------------------------------------------------- // | / // | /---- // T1 | /---- // | /---- // | /---- // ------------------------------------------------------------------------------------------------------- // | \ // | \ // T2 | \ // | \ // | \ // ------------------------------------------------------------------------------------------------------- // // Merging these turns out to not be too difficult. First, determining the new start of the change is trivial // it's just the min of the old and new starts. i.e.: // // 0 10 20 30 40 50 60 70 80 90 100 // ------------------------------------------------------------*------------------------------------------ // | / // | /---- // T1 | /---- // | /---- // | /---- // ----------------------------------------$-------------------$------------------------------------------ // . | \ // . | \ // T2 . | \ // . | \ // . | \ // ----------------------------------------------------------------------*-------------------------------- // // (Note the dots represent the newly inferred start. // Determining the new and old end is also pretty simple. Basically it boils down to paying attention to the // absolute positions at the asterisks, and the relative change between the dollar signs. Basically, we see // which if the two $'s precedes the other, and we move that one forward until they line up. in this case that // means: // // 0 10 20 30 40 50 60 70 80 90 100 // --------------------------------------------------------------------------------*---------------------- // | / // | /---- // T1 | /---- // | /---- // | /---- // ------------------------------------------------------------$------------------------------------------ // . | \ // . | \ // T2 . | \ // . | \ // . | \ // ----------------------------------------------------------------------*-------------------------------- // // In other words (in this case), we're recognizing that the second edit happened after where the first edit // ended with a delta of 20 characters (60 - 40). Thus, if we go back in time to where the first edit started // that's the same as if we started at char 80 instead of 60. // // As it so happens, the same logic applies if the second edit precedes the first edit. In that case rather // than pushing the first edit forward to match the second, we'll push the second edit forward to match the // first. // // In this case that means we have { oldStart: 10, oldEnd: 80, newEnd: 70 } or, in TextChangeRange // semantics: { { start: 10, length: 70 }, newLength: 60 } // // The math then works out as follows. // If we have { oldStart1, oldEnd1, newEnd1 } and { oldStart2, oldEnd2, newEnd2 } then we can compute the // final result like so: // // { // oldStart3: Min(oldStart1, oldStart2), // oldEnd3: Max(oldEnd1, oldEnd1 + (oldEnd2 - newEnd1)), // newEnd3: Max(newEnd2, newEnd2 + (newEnd1 - oldEnd2)) // } var oldStart1 = oldStartN; var oldEnd1 = oldEndN; var newEnd1 = newEndN; var oldStart2 = nextChange.span.start; var oldEnd2 = textSpanEnd(nextChange.span); var newEnd2 = oldStart2 + nextChange.newLength; oldStartN = Math.min(oldStart1, oldStart2); oldEndN = Math.max(oldEnd1, oldEnd1 + (oldEnd2 - newEnd1)); newEndN = Math.max(newEnd2, newEnd2 + (newEnd1 - oldEnd2)); } return createTextChangeRange(createTextSpanFromBounds(oldStartN, oldEndN), /*newLength*/ newEndN - oldStartN); } ts.collapseTextChangeRangesAcrossMultipleVersions = collapseTextChangeRangesAcrossMultipleVersions; function getTypeParameterOwner(d) { if (d && d.kind === 163 /* SyntaxKind.TypeParameter */) { for (var current = d; current; current = current.parent) { if (isFunctionLike(current) || isClassLike(current) || current.kind === 258 /* SyntaxKind.InterfaceDeclaration */) { return current; } } } } ts.getTypeParameterOwner = getTypeParameterOwner; function isParameterPropertyDeclaration(node, parent) { return ts.hasSyntacticModifier(node, 16476 /* ModifierFlags.ParameterPropertyModifier */) && parent.kind === 171 /* SyntaxKind.Constructor */; } ts.isParameterPropertyDeclaration = isParameterPropertyDeclaration; function isEmptyBindingPattern(node) { if (isBindingPattern(node)) { return ts.every(node.elements, isEmptyBindingElement); } return false; } ts.isEmptyBindingPattern = isEmptyBindingPattern; function isEmptyBindingElement(node) { if (ts.isOmittedExpression(node)) { return true; } return isEmptyBindingPattern(node.name); } ts.isEmptyBindingElement = isEmptyBindingElement; function walkUpBindingElementsAndPatterns(binding) { var node = binding.parent; while (ts.isBindingElement(node.parent)) { node = node.parent.parent; } return node.parent; } ts.walkUpBindingElementsAndPatterns = walkUpBindingElementsAndPatterns; function getCombinedFlags(node, getFlags) { if (ts.isBindingElement(node)) { node = walkUpBindingElementsAndPatterns(node); } var flags = getFlags(node); if (node.kind === 254 /* SyntaxKind.VariableDeclaration */) { node = node.parent; } if (node && node.kind === 255 /* SyntaxKind.VariableDeclarationList */) { flags |= getFlags(node); node = node.parent; } if (node && node.kind === 237 /* SyntaxKind.VariableStatement */) { flags |= getFlags(node); } return flags; } function getCombinedModifierFlags(node) { return getCombinedFlags(node, ts.getEffectiveModifierFlags); } ts.getCombinedModifierFlags = getCombinedModifierFlags; /* @internal */ function getCombinedNodeFlagsAlwaysIncludeJSDoc(node) { return getCombinedFlags(node, ts.getEffectiveModifierFlagsAlwaysIncludeJSDoc); } ts.getCombinedNodeFlagsAlwaysIncludeJSDoc = getCombinedNodeFlagsAlwaysIncludeJSDoc; // Returns the node flags for this node and all relevant parent nodes. This is done so that // nodes like variable declarations and binding elements can returned a view of their flags // that includes the modifiers from their container. i.e. flags like export/declare aren't // stored on the variable declaration directly, but on the containing variable statement // (if it has one). Similarly, flags for let/const are stored on the variable declaration // list. By calling this function, all those flags are combined so that the client can treat // the node as if it actually had those flags. function getCombinedNodeFlags(node) { return getCombinedFlags(node, function (n) { return n.flags; }); } ts.getCombinedNodeFlags = getCombinedNodeFlags; /* @internal */ ts.supportedLocaleDirectories = ["cs", "de", "es", "fr", "it", "ja", "ko", "pl", "pt-br", "ru", "tr", "zh-cn", "zh-tw"]; /** * Checks to see if the locale is in the appropriate format, * and if it is, attempts to set the appropriate language. */ function validateLocaleAndSetLanguage(locale, sys, errors) { var lowerCaseLocale = locale.toLowerCase(); var matchResult = /^([a-z]+)([_\-]([a-z]+))?$/.exec(lowerCaseLocale); if (!matchResult) { if (errors) { errors.push(ts.createCompilerDiagnostic(ts.Diagnostics.Locale_must_be_of_the_form_language_or_language_territory_For_example_0_or_1, "en", "ja-jp")); } return; } var language = matchResult[1]; var territory = matchResult[3]; // First try the entire locale, then fall back to just language if that's all we have. // Either ways do not fail, and fallback to the English diagnostic strings. if (ts.contains(ts.supportedLocaleDirectories, lowerCaseLocale) && !trySetLanguageAndTerritory(language, territory, errors)) { trySetLanguageAndTerritory(language, /*territory*/ undefined, errors); } // Set the UI locale for string collation ts.setUILocale(locale); function trySetLanguageAndTerritory(language, territory, errors) { var compilerFilePath = ts.normalizePath(sys.getExecutingFilePath()); var containingDirectoryPath = ts.getDirectoryPath(compilerFilePath); var filePath = ts.combinePaths(containingDirectoryPath, language); if (territory) { filePath = filePath + "-" + territory; } filePath = sys.resolvePath(ts.combinePaths(filePath, "diagnosticMessages.generated.json")); if (!sys.fileExists(filePath)) { return false; } // TODO: Add codePage support for readFile? var fileContents = ""; try { fileContents = sys.readFile(filePath); } catch (e) { if (errors) { errors.push(ts.createCompilerDiagnostic(ts.Diagnostics.Unable_to_open_file_0, filePath)); } return false; } try { // this is a global mutation (or live binding update)! ts.setLocalizedDiagnosticMessages(JSON.parse(fileContents)); } catch (_a) { if (errors) { errors.push(ts.createCompilerDiagnostic(ts.Diagnostics.Corrupted_locale_file_0, filePath)); } return false; } return true; } } ts.validateLocaleAndSetLanguage = validateLocaleAndSetLanguage; function getOriginalNode(node, nodeTest) { if (node) { while (node.original !== undefined) { node = node.original; } } return !nodeTest || nodeTest(node) ? node : undefined; } ts.getOriginalNode = getOriginalNode; function findAncestor(node, callback) { while (node) { var result = callback(node); if (result === "quit") { return undefined; } else if (result) { return node; } node = node.parent; } return undefined; } ts.findAncestor = findAncestor; /** * Gets a value indicating whether a node originated in the parse tree. * * @param node The node to test. */ function isParseTreeNode(node) { return (node.flags & 8 /* NodeFlags.Synthesized */) === 0; } ts.isParseTreeNode = isParseTreeNode; function getParseTreeNode(node, nodeTest) { if (node === undefined || isParseTreeNode(node)) { return node; } node = node.original; while (node) { if (isParseTreeNode(node)) { return !nodeTest || nodeTest(node) ? node : undefined; } node = node.original; } } ts.getParseTreeNode = getParseTreeNode; /** Add an extra underscore to identifiers that start with two underscores to avoid issues with magic names like '__proto__' */ function escapeLeadingUnderscores(identifier) { return (identifier.length >= 2 && identifier.charCodeAt(0) === 95 /* CharacterCodes._ */ && identifier.charCodeAt(1) === 95 /* CharacterCodes._ */ ? "_" + identifier : identifier); } ts.escapeLeadingUnderscores = escapeLeadingUnderscores; /** * Remove extra underscore from escaped identifier text content. * * @param identifier The escaped identifier text. * @returns The unescaped identifier text. */ function unescapeLeadingUnderscores(identifier) { var id = identifier; return id.length >= 3 && id.charCodeAt(0) === 95 /* CharacterCodes._ */ && id.charCodeAt(1) === 95 /* CharacterCodes._ */ && id.charCodeAt(2) === 95 /* CharacterCodes._ */ ? id.substr(1) : id; } ts.unescapeLeadingUnderscores = unescapeLeadingUnderscores; function idText(identifierOrPrivateName) { return unescapeLeadingUnderscores(identifierOrPrivateName.escapedText); } ts.idText = idText; function symbolName(symbol) { if (symbol.valueDeclaration && isPrivateIdentifierClassElementDeclaration(symbol.valueDeclaration)) { return idText(symbol.valueDeclaration.name); } return unescapeLeadingUnderscores(symbol.escapedName); } ts.symbolName = symbolName; /** * A JSDocTypedef tag has an _optional_ name field - if a name is not directly present, we should * attempt to draw the name from the node the declaration is on (as that declaration is what its' symbol * will be merged with) */ function nameForNamelessJSDocTypedef(declaration) { var hostNode = declaration.parent.parent; if (!hostNode) { return undefined; } // Covers classes, functions - any named declaration host node if (isDeclaration(hostNode)) { return getDeclarationIdentifier(hostNode); } // Covers remaining cases (returning undefined if none match). switch (hostNode.kind) { case 237 /* SyntaxKind.VariableStatement */: if (hostNode.declarationList && hostNode.declarationList.declarations[0]) { return getDeclarationIdentifier(hostNode.declarationList.declarations[0]); } break; case 238 /* SyntaxKind.ExpressionStatement */: var expr = hostNode.expression; if (expr.kind === 221 /* SyntaxKind.BinaryExpression */ && expr.operatorToken.kind === 63 /* SyntaxKind.EqualsToken */) { expr = expr.left; } switch (expr.kind) { case 206 /* SyntaxKind.PropertyAccessExpression */: return expr.name; case 207 /* SyntaxKind.ElementAccessExpression */: var arg = expr.argumentExpression; if (ts.isIdentifier(arg)) { return arg; } } break; case 212 /* SyntaxKind.ParenthesizedExpression */: { return getDeclarationIdentifier(hostNode.expression); } case 250 /* SyntaxKind.LabeledStatement */: { if (isDeclaration(hostNode.statement) || isExpression(hostNode.statement)) { return getDeclarationIdentifier(hostNode.statement); } break; } } } function getDeclarationIdentifier(node) { var name = getNameOfDeclaration(node); return name && ts.isIdentifier(name) ? name : undefined; } /** @internal */ function nodeHasName(statement, name) { if (isNamedDeclaration(statement) && ts.isIdentifier(statement.name) && idText(statement.name) === idText(name)) { return true; } if (ts.isVariableStatement(statement) && ts.some(statement.declarationList.declarations, function (d) { return nodeHasName(d, name); })) { return true; } return false; } ts.nodeHasName = nodeHasName; function getNameOfJSDocTypedef(declaration) { return declaration.name || nameForNamelessJSDocTypedef(declaration); } ts.getNameOfJSDocTypedef = getNameOfJSDocTypedef; /** @internal */ function isNamedDeclaration(node) { return !!node.name; // A 'name' property should always be a DeclarationName. } ts.isNamedDeclaration = isNamedDeclaration; /** @internal */ function getNonAssignedNameOfDeclaration(declaration) { switch (declaration.kind) { case 79 /* SyntaxKind.Identifier */: return declaration; case 347 /* SyntaxKind.JSDocPropertyTag */: case 340 /* SyntaxKind.JSDocParameterTag */: { var name = declaration.name; if (name.kind === 161 /* SyntaxKind.QualifiedName */) { return name.right; } break; } case 208 /* SyntaxKind.CallExpression */: case 221 /* SyntaxKind.BinaryExpression */: { var expr_1 = declaration; switch (ts.getAssignmentDeclarationKind(expr_1)) { case 1 /* AssignmentDeclarationKind.ExportsProperty */: case 4 /* AssignmentDeclarationKind.ThisProperty */: case 5 /* AssignmentDeclarationKind.Property */: case 3 /* AssignmentDeclarationKind.PrototypeProperty */: return ts.getElementOrPropertyAccessArgumentExpressionOrName(expr_1.left); case 7 /* AssignmentDeclarationKind.ObjectDefinePropertyValue */: case 8 /* AssignmentDeclarationKind.ObjectDefinePropertyExports */: case 9 /* AssignmentDeclarationKind.ObjectDefinePrototypeProperty */: return expr_1.arguments[1]; default: return undefined; } } case 345 /* SyntaxKind.JSDocTypedefTag */: return getNameOfJSDocTypedef(declaration); case 339 /* SyntaxKind.JSDocEnumTag */: return nameForNamelessJSDocTypedef(declaration); case 271 /* SyntaxKind.ExportAssignment */: { var expression = declaration.expression; return ts.isIdentifier(expression) ? expression : undefined; } case 207 /* SyntaxKind.ElementAccessExpression */: var expr = declaration; if (ts.isBindableStaticElementAccessExpression(expr)) { return expr.argumentExpression; } } return declaration.name; } ts.getNonAssignedNameOfDeclaration = getNonAssignedNameOfDeclaration; function getNameOfDeclaration(declaration) { if (declaration === undefined) return undefined; return getNonAssignedNameOfDeclaration(declaration) || (ts.isFunctionExpression(declaration) || ts.isArrowFunction(declaration) || ts.isClassExpression(declaration) ? getAssignedName(declaration) : undefined); } ts.getNameOfDeclaration = getNameOfDeclaration; /*@internal*/ function getAssignedName(node) { if (!node.parent) { return undefined; } else if (ts.isPropertyAssignment(node.parent) || ts.isBindingElement(node.parent)) { return node.parent.name; } else if (ts.isBinaryExpression(node.parent) && node === node.parent.right) { if (ts.isIdentifier(node.parent.left)) { return node.parent.left; } else if (ts.isAccessExpression(node.parent.left)) { return ts.getElementOrPropertyAccessArgumentExpressionOrName(node.parent.left); } } else if (ts.isVariableDeclaration(node.parent) && ts.isIdentifier(node.parent.name)) { return node.parent.name; } } ts.getAssignedName = getAssignedName; function getJSDocParameterTagsWorker(param, noCache) { if (param.name) { if (ts.isIdentifier(param.name)) { var name_1 = param.name.escapedText; return getJSDocTagsWorker(param.parent, noCache).filter(function (tag) { return ts.isJSDocParameterTag(tag) && ts.isIdentifier(tag.name) && tag.name.escapedText === name_1; }); } else { var i = param.parent.parameters.indexOf(param); ts.Debug.assert(i > -1, "Parameters should always be in their parents' parameter list"); var paramTags = getJSDocTagsWorker(param.parent, noCache).filter(ts.isJSDocParameterTag); if (i < paramTags.length) { return [paramTags[i]]; } } } // return empty array for: out-of-order binding patterns and JSDoc function syntax, which has un-named parameters return ts.emptyArray; } /** * Gets the JSDoc parameter tags for the node if present. * * @remarks Returns any JSDoc param tag whose name matches the provided * parameter, whether a param tag on a containing function * expression, or a param tag on a variable declaration whose * initializer is the containing function. The tags closest to the * node are returned first, so in the previous example, the param * tag on the containing function expression would be first. * * For binding patterns, parameter tags are matched by position. */ function getJSDocParameterTags(param) { return getJSDocParameterTagsWorker(param, /*noCache*/ false); } ts.getJSDocParameterTags = getJSDocParameterTags; /* @internal */ function getJSDocParameterTagsNoCache(param) { return getJSDocParameterTagsWorker(param, /*noCache*/ true); } ts.getJSDocParameterTagsNoCache = getJSDocParameterTagsNoCache; function getJSDocTypeParameterTagsWorker(param, noCache) { var name = param.name.escapedText; return getJSDocTagsWorker(param.parent, noCache).filter(function (tag) { return ts.isJSDocTemplateTag(tag) && tag.typeParameters.some(function (tp) { return tp.name.escapedText === name; }); }); } /** * Gets the JSDoc type parameter tags for the node if present. * * @remarks Returns any JSDoc template tag whose names match the provided * parameter, whether a template tag on a containing function * expression, or a template tag on a variable declaration whose * initializer is the containing function. The tags closest to the * node are returned first, so in the previous example, the template * tag on the containing function expression would be first. */ function getJSDocTypeParameterTags(param) { return getJSDocTypeParameterTagsWorker(param, /*noCache*/ false); } ts.getJSDocTypeParameterTags = getJSDocTypeParameterTags; /* @internal */ function getJSDocTypeParameterTagsNoCache(param) { return getJSDocTypeParameterTagsWorker(param, /*noCache*/ true); } ts.getJSDocTypeParameterTagsNoCache = getJSDocTypeParameterTagsNoCache; /** * Return true if the node has JSDoc parameter tags. * * @remarks Includes parameter tags that are not directly on the node, * for example on a variable declaration whose initializer is a function expression. */ function hasJSDocParameterTags(node) { return !!getFirstJSDocTag(node, ts.isJSDocParameterTag); } ts.hasJSDocParameterTags = hasJSDocParameterTags; /** Gets the JSDoc augments tag for the node if present */ function getJSDocAugmentsTag(node) { return getFirstJSDocTag(node, ts.isJSDocAugmentsTag); } ts.getJSDocAugmentsTag = getJSDocAugmentsTag; /** Gets the JSDoc implements tags for the node if present */ function getJSDocImplementsTags(node) { return getAllJSDocTags(node, ts.isJSDocImplementsTag); } ts.getJSDocImplementsTags = getJSDocImplementsTags; /** Gets the JSDoc class tag for the node if present */ function getJSDocClassTag(node) { return getFirstJSDocTag(node, ts.isJSDocClassTag); } ts.getJSDocClassTag = getJSDocClassTag; /** Gets the JSDoc public tag for the node if present */ function getJSDocPublicTag(node) { return getFirstJSDocTag(node, ts.isJSDocPublicTag); } ts.getJSDocPublicTag = getJSDocPublicTag; /*@internal*/ function getJSDocPublicTagNoCache(node) { return getFirstJSDocTag(node, ts.isJSDocPublicTag, /*noCache*/ true); } ts.getJSDocPublicTagNoCache = getJSDocPublicTagNoCache; /** Gets the JSDoc private tag for the node if present */ function getJSDocPrivateTag(node) { return getFirstJSDocTag(node, ts.isJSDocPrivateTag); } ts.getJSDocPrivateTag = getJSDocPrivateTag; /*@internal*/ function getJSDocPrivateTagNoCache(node) { return getFirstJSDocTag(node, ts.isJSDocPrivateTag, /*noCache*/ true); } ts.getJSDocPrivateTagNoCache = getJSDocPrivateTagNoCache; /** Gets the JSDoc protected tag for the node if present */ function getJSDocProtectedTag(node) { return getFirstJSDocTag(node, ts.isJSDocProtectedTag); } ts.getJSDocProtectedTag = getJSDocProtectedTag; /*@internal*/ function getJSDocProtectedTagNoCache(node) { return getFirstJSDocTag(node, ts.isJSDocProtectedTag, /*noCache*/ true); } ts.getJSDocProtectedTagNoCache = getJSDocProtectedTagNoCache; /** Gets the JSDoc protected tag for the node if present */ function getJSDocReadonlyTag(node) { return getFirstJSDocTag(node, ts.isJSDocReadonlyTag); } ts.getJSDocReadonlyTag = getJSDocReadonlyTag; /*@internal*/ function getJSDocReadonlyTagNoCache(node) { return getFirstJSDocTag(node, ts.isJSDocReadonlyTag, /*noCache*/ true); } ts.getJSDocReadonlyTagNoCache = getJSDocReadonlyTagNoCache; function getJSDocOverrideTagNoCache(node) { return getFirstJSDocTag(node, ts.isJSDocOverrideTag, /*noCache*/ true); } ts.getJSDocOverrideTagNoCache = getJSDocOverrideTagNoCache; /** Gets the JSDoc deprecated tag for the node if present */ function getJSDocDeprecatedTag(node) { return getFirstJSDocTag(node, ts.isJSDocDeprecatedTag); } ts.getJSDocDeprecatedTag = getJSDocDeprecatedTag; /*@internal */ function getJSDocDeprecatedTagNoCache(node) { return getFirstJSDocTag(node, ts.isJSDocDeprecatedTag, /*noCache*/ true); } ts.getJSDocDeprecatedTagNoCache = getJSDocDeprecatedTagNoCache; /** Gets the JSDoc enum tag for the node if present */ function getJSDocEnumTag(node) { return getFirstJSDocTag(node, ts.isJSDocEnumTag); } ts.getJSDocEnumTag = getJSDocEnumTag; /** Gets the JSDoc this tag for the node if present */ function getJSDocThisTag(node) { return getFirstJSDocTag(node, ts.isJSDocThisTag); } ts.getJSDocThisTag = getJSDocThisTag; /** Gets the JSDoc return tag for the node if present */ function getJSDocReturnTag(node) { return getFirstJSDocTag(node, ts.isJSDocReturnTag); } ts.getJSDocReturnTag = getJSDocReturnTag; /** Gets the JSDoc template tag for the node if present */ function getJSDocTemplateTag(node) { return getFirstJSDocTag(node, ts.isJSDocTemplateTag); } ts.getJSDocTemplateTag = getJSDocTemplateTag; /** Gets the JSDoc type tag for the node if present and valid */ function getJSDocTypeTag(node) { // We should have already issued an error if there were multiple type jsdocs, so just use the first one. var tag = getFirstJSDocTag(node, ts.isJSDocTypeTag); if (tag && tag.typeExpression && tag.typeExpression.type) { return tag; } return undefined; } ts.getJSDocTypeTag = getJSDocTypeTag; /** * Gets the type node for the node if provided via JSDoc. * * @remarks The search includes any JSDoc param tag that relates * to the provided parameter, for example a type tag on the * parameter itself, or a param tag on a containing function * expression, or a param tag on a variable declaration whose * initializer is the containing function. The tags closest to the * node are examined first, so in the previous example, the type * tag directly on the node would be returned. */ function getJSDocType(node) { var tag = getFirstJSDocTag(node, ts.isJSDocTypeTag); if (!tag && ts.isParameter(node)) { tag = ts.find(getJSDocParameterTags(node), function (tag) { return !!tag.typeExpression; }); } return tag && tag.typeExpression && tag.typeExpression.type; } ts.getJSDocType = getJSDocType; /** * Gets the return type node for the node if provided via JSDoc return tag or type tag. * * @remarks `getJSDocReturnTag` just gets the whole JSDoc tag. This function * gets the type from inside the braces, after the fat arrow, etc. */ function getJSDocReturnType(node) { var returnTag = getJSDocReturnTag(node); if (returnTag && returnTag.typeExpression) { return returnTag.typeExpression.type; } var typeTag = getJSDocTypeTag(node); if (typeTag && typeTag.typeExpression) { var type = typeTag.typeExpression.type; if (ts.isTypeLiteralNode(type)) { var sig = ts.find(type.members, ts.isCallSignatureDeclaration); return sig && sig.type; } if (ts.isFunctionTypeNode(type) || ts.isJSDocFunctionType(type)) { return type.type; } } } ts.getJSDocReturnType = getJSDocReturnType; function getJSDocTagsWorker(node, noCache) { var tags = node.jsDocCache; // If cache is 'null', that means we did the work of searching for JSDoc tags and came up with nothing. if (tags === undefined || noCache) { var comments = ts.getJSDocCommentsAndTags(node, noCache); ts.Debug.assert(comments.length < 2 || comments[0] !== comments[1]); tags = ts.flatMap(comments, function (j) { return ts.isJSDoc(j) ? j.tags : j; }); if (!noCache) { node.jsDocCache = tags; } } return tags; } /** Get all JSDoc tags related to a node, including those on parent nodes. */ function getJSDocTags(node) { return getJSDocTagsWorker(node, /*noCache*/ false); } ts.getJSDocTags = getJSDocTags; /* @internal */ function getJSDocTagsNoCache(node) { return getJSDocTagsWorker(node, /*noCache*/ true); } ts.getJSDocTagsNoCache = getJSDocTagsNoCache; /** Get the first JSDoc tag of a specified kind, or undefined if not present. */ function getFirstJSDocTag(node, predicate, noCache) { return ts.find(getJSDocTagsWorker(node, noCache), predicate); } /** Gets all JSDoc tags that match a specified predicate */ function getAllJSDocTags(node, predicate) { return getJSDocTags(node).filter(predicate); } ts.getAllJSDocTags = getAllJSDocTags; /** Gets all JSDoc tags of a specified kind */ function getAllJSDocTagsOfKind(node, kind) { return getJSDocTags(node).filter(function (doc) { return doc.kind === kind; }); } ts.getAllJSDocTagsOfKind = getAllJSDocTagsOfKind; /** Gets the text of a jsdoc comment, flattening links to their text. */ function getTextOfJSDocComment(comment) { return typeof comment === "string" ? comment : comment === null || comment === void 0 ? void 0 : comment.map(function (c) { return c.kind === 321 /* SyntaxKind.JSDocText */ ? c.text : formatJSDocLink(c); }).join(""); } ts.getTextOfJSDocComment = getTextOfJSDocComment; function formatJSDocLink(link) { var kind = link.kind === 324 /* SyntaxKind.JSDocLink */ ? "link" : link.kind === 325 /* SyntaxKind.JSDocLinkCode */ ? "linkcode" : "linkplain"; var name = link.name ? ts.entityNameToString(link.name) : ""; var space = link.name && link.text.startsWith("://") ? "" : " "; return "{@".concat(kind, " ").concat(name).concat(space).concat(link.text, "}"); } /** * Gets the effective type parameters. If the node was parsed in a * JavaScript file, gets the type parameters from the `@template` tag from JSDoc. */ function getEffectiveTypeParameterDeclarations(node) { if (ts.isJSDocSignature(node)) { return ts.emptyArray; } if (ts.isJSDocTypeAlias(node)) { ts.Debug.assert(node.parent.kind === 320 /* SyntaxKind.JSDoc */); return ts.flatMap(node.parent.tags, function (tag) { return ts.isJSDocTemplateTag(tag) ? tag.typeParameters : undefined; }); } if (node.typeParameters) { return node.typeParameters; } if (ts.isInJSFile(node)) { var decls = ts.getJSDocTypeParameterDeclarations(node); if (decls.length) { return decls; } var typeTag = getJSDocType(node); if (typeTag && ts.isFunctionTypeNode(typeTag) && typeTag.typeParameters) { return typeTag.typeParameters; } } return ts.emptyArray; } ts.getEffectiveTypeParameterDeclarations = getEffectiveTypeParameterDeclarations; function getEffectiveConstraintOfTypeParameter(node) { return node.constraint ? node.constraint : ts.isJSDocTemplateTag(node.parent) && node === node.parent.typeParameters[0] ? node.parent.constraint : undefined; } ts.getEffectiveConstraintOfTypeParameter = getEffectiveConstraintOfTypeParameter; // #region function isMemberName(node) { return node.kind === 79 /* SyntaxKind.Identifier */ || node.kind === 80 /* SyntaxKind.PrivateIdentifier */; } ts.isMemberName = isMemberName; /* @internal */ function isGetOrSetAccessorDeclaration(node) { return node.kind === 173 /* SyntaxKind.SetAccessor */ || node.kind === 172 /* SyntaxKind.GetAccessor */; } ts.isGetOrSetAccessorDeclaration = isGetOrSetAccessorDeclaration; function isPropertyAccessChain(node) { return ts.isPropertyAccessExpression(node) && !!(node.flags & 32 /* NodeFlags.OptionalChain */); } ts.isPropertyAccessChain = isPropertyAccessChain; function isElementAccessChain(node) { return ts.isElementAccessExpression(node) && !!(node.flags & 32 /* NodeFlags.OptionalChain */); } ts.isElementAccessChain = isElementAccessChain; function isCallChain(node) { return ts.isCallExpression(node) && !!(node.flags & 32 /* NodeFlags.OptionalChain */); } ts.isCallChain = isCallChain; function isOptionalChain(node) { var kind = node.kind; return !!(node.flags & 32 /* NodeFlags.OptionalChain */) && (kind === 206 /* SyntaxKind.PropertyAccessExpression */ || kind === 207 /* SyntaxKind.ElementAccessExpression */ || kind === 208 /* SyntaxKind.CallExpression */ || kind === 230 /* SyntaxKind.NonNullExpression */); } ts.isOptionalChain = isOptionalChain; /* @internal */ function isOptionalChainRoot(node) { return isOptionalChain(node) && !ts.isNonNullExpression(node) && !!node.questionDotToken; } ts.isOptionalChainRoot = isOptionalChainRoot; /** * Determines whether a node is the expression preceding an optional chain (i.e. `a` in `a?.b`). */ /* @internal */ function isExpressionOfOptionalChainRoot(node) { return isOptionalChainRoot(node.parent) && node.parent.expression === node; } ts.isExpressionOfOptionalChainRoot = isExpressionOfOptionalChainRoot; /** * Determines whether a node is the outermost `OptionalChain` in an ECMAScript `OptionalExpression`: * * 1. For `a?.b.c`, the outermost chain is `a?.b.c` (`c` is the end of the chain starting at `a?.`) * 2. For `a?.b!`, the outermost chain is `a?.b` (`b` is the end of the chain starting at `a?.`) * 3. For `(a?.b.c).d`, the outermost chain is `a?.b.c` (`c` is the end of the chain starting at `a?.` since parens end the chain) * 4. For `a?.b.c?.d`, both `a?.b.c` and `a?.b.c?.d` are outermost (`c` is the end of the chain starting at `a?.`, and `d` is * the end of the chain starting at `c?.`) * 5. For `a?.(b?.c).d`, both `b?.c` and `a?.(b?.c)d` are outermost (`c` is the end of the chain starting at `b`, and `d` is * the end of the chain starting at `a?.`) */ /* @internal */ function isOutermostOptionalChain(node) { return !isOptionalChain(node.parent) // cases 1, 2, and 3 || isOptionalChainRoot(node.parent) // case 4 || node !== node.parent.expression; // case 5 } ts.isOutermostOptionalChain = isOutermostOptionalChain; function isNullishCoalesce(node) { return node.kind === 221 /* SyntaxKind.BinaryExpression */ && node.operatorToken.kind === 60 /* SyntaxKind.QuestionQuestionToken */; } ts.isNullishCoalesce = isNullishCoalesce; function isConstTypeReference(node) { return ts.isTypeReferenceNode(node) && ts.isIdentifier(node.typeName) && node.typeName.escapedText === "const" && !node.typeArguments; } ts.isConstTypeReference = isConstTypeReference; function skipPartiallyEmittedExpressions(node) { return ts.skipOuterExpressions(node, 8 /* OuterExpressionKinds.PartiallyEmittedExpressions */); } ts.skipPartiallyEmittedExpressions = skipPartiallyEmittedExpressions; function isNonNullChain(node) { return ts.isNonNullExpression(node) && !!(node.flags & 32 /* NodeFlags.OptionalChain */); } ts.isNonNullChain = isNonNullChain; function isBreakOrContinueStatement(node) { return node.kind === 246 /* SyntaxKind.BreakStatement */ || node.kind === 245 /* SyntaxKind.ContinueStatement */; } ts.isBreakOrContinueStatement = isBreakOrContinueStatement; function isNamedExportBindings(node) { return node.kind === 274 /* SyntaxKind.NamespaceExport */ || node.kind === 273 /* SyntaxKind.NamedExports */; } ts.isNamedExportBindings = isNamedExportBindings; function isUnparsedTextLike(node) { switch (node.kind) { case 302 /* SyntaxKind.UnparsedText */: case 303 /* SyntaxKind.UnparsedInternalText */: return true; default: return false; } } ts.isUnparsedTextLike = isUnparsedTextLike; function isUnparsedNode(node) { return isUnparsedTextLike(node) || node.kind === 300 /* SyntaxKind.UnparsedPrologue */ || node.kind === 304 /* SyntaxKind.UnparsedSyntheticReference */; } ts.isUnparsedNode = isUnparsedNode; function isJSDocPropertyLikeTag(node) { return node.kind === 347 /* SyntaxKind.JSDocPropertyTag */ || node.kind === 340 /* SyntaxKind.JSDocParameterTag */; } ts.isJSDocPropertyLikeTag = isJSDocPropertyLikeTag; // #endregion // #region // Node tests // // All node tests in the following list should *not* reference parent pointers so that // they may be used with transformations. /* @internal */ function isNode(node) { return isNodeKind(node.kind); } ts.isNode = isNode; /* @internal */ function isNodeKind(kind) { return kind >= 161 /* SyntaxKind.FirstNode */; } ts.isNodeKind = isNodeKind; /** * True if kind is of some token syntax kind. * For example, this is true for an IfKeyword but not for an IfStatement. * Literals are considered tokens, except TemplateLiteral, but does include TemplateHead/Middle/Tail. */ function isTokenKind(kind) { return kind >= 0 /* SyntaxKind.FirstToken */ && kind <= 160 /* SyntaxKind.LastToken */; } ts.isTokenKind = isTokenKind; /** * True if node is of some token syntax kind. * For example, this is true for an IfKeyword but not for an IfStatement. * Literals are considered tokens, except TemplateLiteral, but does include TemplateHead/Middle/Tail. */ function isToken(n) { return isTokenKind(n.kind); } ts.isToken = isToken; // Node Arrays /* @internal */ function isNodeArray(array) { return array.hasOwnProperty("pos") && array.hasOwnProperty("end"); } ts.isNodeArray = isNodeArray; // Literals /* @internal */ function isLiteralKind(kind) { return 8 /* SyntaxKind.FirstLiteralToken */ <= kind && kind <= 14 /* SyntaxKind.LastLiteralToken */; } ts.isLiteralKind = isLiteralKind; function isLiteralExpression(node) { return isLiteralKind(node.kind); } ts.isLiteralExpression = isLiteralExpression; // Pseudo-literals /* @internal */ function isTemplateLiteralKind(kind) { return 14 /* SyntaxKind.FirstTemplateToken */ <= kind && kind <= 17 /* SyntaxKind.LastTemplateToken */; } ts.isTemplateLiteralKind = isTemplateLiteralKind; function isTemplateLiteralToken(node) { return isTemplateLiteralKind(node.kind); } ts.isTemplateLiteralToken = isTemplateLiteralToken; function isTemplateMiddleOrTemplateTail(node) { var kind = node.kind; return kind === 16 /* SyntaxKind.TemplateMiddle */ || kind === 17 /* SyntaxKind.TemplateTail */; } ts.isTemplateMiddleOrTemplateTail = isTemplateMiddleOrTemplateTail; function isImportOrExportSpecifier(node) { return ts.isImportSpecifier(node) || ts.isExportSpecifier(node); } ts.isImportOrExportSpecifier = isImportOrExportSpecifier; function isTypeOnlyImportOrExportDeclaration(node) { switch (node.kind) { case 270 /* SyntaxKind.ImportSpecifier */: case 275 /* SyntaxKind.ExportSpecifier */: return node.isTypeOnly || node.parent.parent.isTypeOnly; case 268 /* SyntaxKind.NamespaceImport */: return node.parent.isTypeOnly; case 267 /* SyntaxKind.ImportClause */: case 265 /* SyntaxKind.ImportEqualsDeclaration */: return node.isTypeOnly; default: return false; } } ts.isTypeOnlyImportOrExportDeclaration = isTypeOnlyImportOrExportDeclaration; function isAssertionKey(node) { return ts.isStringLiteral(node) || ts.isIdentifier(node); } ts.isAssertionKey = isAssertionKey; function isStringTextContainingNode(node) { return node.kind === 10 /* SyntaxKind.StringLiteral */ || isTemplateLiteralKind(node.kind); } ts.isStringTextContainingNode = isStringTextContainingNode; // Identifiers /* @internal */ function isGeneratedIdentifier(node) { return ts.isIdentifier(node) && (node.autoGenerateFlags & 7 /* GeneratedIdentifierFlags.KindMask */) > 0 /* GeneratedIdentifierFlags.None */; } ts.isGeneratedIdentifier = isGeneratedIdentifier; // Private Identifiers /*@internal*/ function isPrivateIdentifierClassElementDeclaration(node) { return (ts.isPropertyDeclaration(node) || isMethodOrAccessor(node)) && ts.isPrivateIdentifier(node.name); } ts.isPrivateIdentifierClassElementDeclaration = isPrivateIdentifierClassElementDeclaration; /*@internal*/ function isPrivateIdentifierPropertyAccessExpression(node) { return ts.isPropertyAccessExpression(node) && ts.isPrivateIdentifier(node.name); } ts.isPrivateIdentifierPropertyAccessExpression = isPrivateIdentifierPropertyAccessExpression; // Keywords /* @internal */ function isModifierKind(token) { switch (token) { case 126 /* SyntaxKind.AbstractKeyword */: case 131 /* SyntaxKind.AsyncKeyword */: case 85 /* SyntaxKind.ConstKeyword */: case 135 /* SyntaxKind.DeclareKeyword */: case 88 /* SyntaxKind.DefaultKeyword */: case 93 /* SyntaxKind.ExportKeyword */: case 101 /* SyntaxKind.InKeyword */: case 123 /* SyntaxKind.PublicKeyword */: case 121 /* SyntaxKind.PrivateKeyword */: case 122 /* SyntaxKind.ProtectedKeyword */: case 145 /* SyntaxKind.ReadonlyKeyword */: case 124 /* SyntaxKind.StaticKeyword */: case 144 /* SyntaxKind.OutKeyword */: case 159 /* SyntaxKind.OverrideKeyword */: return true; } return false; } ts.isModifierKind = isModifierKind; /* @internal */ function isParameterPropertyModifier(kind) { return !!(ts.modifierToFlag(kind) & 16476 /* ModifierFlags.ParameterPropertyModifier */); } ts.isParameterPropertyModifier = isParameterPropertyModifier; /* @internal */ function isClassMemberModifier(idToken) { return isParameterPropertyModifier(idToken) || idToken === 124 /* SyntaxKind.StaticKeyword */ || idToken === 159 /* SyntaxKind.OverrideKeyword */; } ts.isClassMemberModifier = isClassMemberModifier; function isModifier(node) { return isModifierKind(node.kind); } ts.isModifier = isModifier; function isEntityName(node) { var kind = node.kind; return kind === 161 /* SyntaxKind.QualifiedName */ || kind === 79 /* SyntaxKind.Identifier */; } ts.isEntityName = isEntityName; function isPropertyName(node) { var kind = node.kind; return kind === 79 /* SyntaxKind.Identifier */ || kind === 80 /* SyntaxKind.PrivateIdentifier */ || kind === 10 /* SyntaxKind.StringLiteral */ || kind === 8 /* SyntaxKind.NumericLiteral */ || kind === 162 /* SyntaxKind.ComputedPropertyName */; } ts.isPropertyName = isPropertyName; function isBindingName(node) { var kind = node.kind; return kind === 79 /* SyntaxKind.Identifier */ || kind === 201 /* SyntaxKind.ObjectBindingPattern */ || kind === 202 /* SyntaxKind.ArrayBindingPattern */; } ts.isBindingName = isBindingName; // Functions function isFunctionLike(node) { return !!node && isFunctionLikeKind(node.kind); } ts.isFunctionLike = isFunctionLike; /* @internal */ function isFunctionLikeOrClassStaticBlockDeclaration(node) { return !!node && (isFunctionLikeKind(node.kind) || ts.isClassStaticBlockDeclaration(node)); } ts.isFunctionLikeOrClassStaticBlockDeclaration = isFunctionLikeOrClassStaticBlockDeclaration; /* @internal */ function isFunctionLikeDeclaration(node) { return node && isFunctionLikeDeclarationKind(node.kind); } ts.isFunctionLikeDeclaration = isFunctionLikeDeclaration; /* @internal */ function isBooleanLiteral(node) { return node.kind === 110 /* SyntaxKind.TrueKeyword */ || node.kind === 95 /* SyntaxKind.FalseKeyword */; } ts.isBooleanLiteral = isBooleanLiteral; function isFunctionLikeDeclarationKind(kind) { switch (kind) { case 256 /* SyntaxKind.FunctionDeclaration */: case 169 /* SyntaxKind.MethodDeclaration */: case 171 /* SyntaxKind.Constructor */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 213 /* SyntaxKind.FunctionExpression */: case 214 /* SyntaxKind.ArrowFunction */: return true; default: return false; } } /* @internal */ function isFunctionLikeKind(kind) { switch (kind) { case 168 /* SyntaxKind.MethodSignature */: case 174 /* SyntaxKind.CallSignature */: case 323 /* SyntaxKind.JSDocSignature */: case 175 /* SyntaxKind.ConstructSignature */: case 176 /* SyntaxKind.IndexSignature */: case 179 /* SyntaxKind.FunctionType */: case 317 /* SyntaxKind.JSDocFunctionType */: case 180 /* SyntaxKind.ConstructorType */: return true; default: return isFunctionLikeDeclarationKind(kind); } } ts.isFunctionLikeKind = isFunctionLikeKind; /* @internal */ function isFunctionOrModuleBlock(node) { return ts.isSourceFile(node) || ts.isModuleBlock(node) || ts.isBlock(node) && isFunctionLike(node.parent); } ts.isFunctionOrModuleBlock = isFunctionOrModuleBlock; // Classes function isClassElement(node) { var kind = node.kind; return kind === 171 /* SyntaxKind.Constructor */ || kind === 167 /* SyntaxKind.PropertyDeclaration */ || kind === 169 /* SyntaxKind.MethodDeclaration */ || kind === 172 /* SyntaxKind.GetAccessor */ || kind === 173 /* SyntaxKind.SetAccessor */ || kind === 176 /* SyntaxKind.IndexSignature */ || kind === 170 /* SyntaxKind.ClassStaticBlockDeclaration */ || kind === 234 /* SyntaxKind.SemicolonClassElement */; } ts.isClassElement = isClassElement; function isClassLike(node) { return node && (node.kind === 257 /* SyntaxKind.ClassDeclaration */ || node.kind === 226 /* SyntaxKind.ClassExpression */); } ts.isClassLike = isClassLike; function isAccessor(node) { return node && (node.kind === 172 /* SyntaxKind.GetAccessor */ || node.kind === 173 /* SyntaxKind.SetAccessor */); } ts.isAccessor = isAccessor; /* @internal */ function isMethodOrAccessor(node) { switch (node.kind) { case 169 /* SyntaxKind.MethodDeclaration */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: return true; default: return false; } } ts.isMethodOrAccessor = isMethodOrAccessor; // Type members function isTypeElement(node) { var kind = node.kind; return kind === 175 /* SyntaxKind.ConstructSignature */ || kind === 174 /* SyntaxKind.CallSignature */ || kind === 166 /* SyntaxKind.PropertySignature */ || kind === 168 /* SyntaxKind.MethodSignature */ || kind === 176 /* SyntaxKind.IndexSignature */ || kind === 172 /* SyntaxKind.GetAccessor */ || kind === 173 /* SyntaxKind.SetAccessor */; } ts.isTypeElement = isTypeElement; function isClassOrTypeElement(node) { return isTypeElement(node) || isClassElement(node); } ts.isClassOrTypeElement = isClassOrTypeElement; function isObjectLiteralElementLike(node) { var kind = node.kind; return kind === 296 /* SyntaxKind.PropertyAssignment */ || kind === 297 /* SyntaxKind.ShorthandPropertyAssignment */ || kind === 298 /* SyntaxKind.SpreadAssignment */ || kind === 169 /* SyntaxKind.MethodDeclaration */ || kind === 172 /* SyntaxKind.GetAccessor */ || kind === 173 /* SyntaxKind.SetAccessor */; } ts.isObjectLiteralElementLike = isObjectLiteralElementLike; // Type /** * Node test that determines whether a node is a valid type node. * This differs from the `isPartOfTypeNode` function which determines whether a node is *part* * of a TypeNode. */ function isTypeNode(node) { return ts.isTypeNodeKind(node.kind); } ts.isTypeNode = isTypeNode; function isFunctionOrConstructorTypeNode(node) { switch (node.kind) { case 179 /* SyntaxKind.FunctionType */: case 180 /* SyntaxKind.ConstructorType */: return true; } return false; } ts.isFunctionOrConstructorTypeNode = isFunctionOrConstructorTypeNode; // Binding patterns /* @internal */ function isBindingPattern(node) { if (node) { var kind = node.kind; return kind === 202 /* SyntaxKind.ArrayBindingPattern */ || kind === 201 /* SyntaxKind.ObjectBindingPattern */; } return false; } ts.isBindingPattern = isBindingPattern; /* @internal */ function isAssignmentPattern(node) { var kind = node.kind; return kind === 204 /* SyntaxKind.ArrayLiteralExpression */ || kind === 205 /* SyntaxKind.ObjectLiteralExpression */; } ts.isAssignmentPattern = isAssignmentPattern; /* @internal */ function isArrayBindingElement(node) { var kind = node.kind; return kind === 203 /* SyntaxKind.BindingElement */ || kind === 227 /* SyntaxKind.OmittedExpression */; } ts.isArrayBindingElement = isArrayBindingElement; /** * Determines whether the BindingOrAssignmentElement is a BindingElement-like declaration */ /* @internal */ function isDeclarationBindingElement(bindingElement) { switch (bindingElement.kind) { case 254 /* SyntaxKind.VariableDeclaration */: case 164 /* SyntaxKind.Parameter */: case 203 /* SyntaxKind.BindingElement */: return true; } return false; } ts.isDeclarationBindingElement = isDeclarationBindingElement; /** * Determines whether a node is a BindingOrAssignmentPattern */ /* @internal */ function isBindingOrAssignmentPattern(node) { return isObjectBindingOrAssignmentPattern(node) || isArrayBindingOrAssignmentPattern(node); } ts.isBindingOrAssignmentPattern = isBindingOrAssignmentPattern; /** * Determines whether a node is an ObjectBindingOrAssignmentPattern */ /* @internal */ function isObjectBindingOrAssignmentPattern(node) { switch (node.kind) { case 201 /* SyntaxKind.ObjectBindingPattern */: case 205 /* SyntaxKind.ObjectLiteralExpression */: return true; } return false; } ts.isObjectBindingOrAssignmentPattern = isObjectBindingOrAssignmentPattern; /* @internal */ function isObjectBindingOrAssignmentElement(node) { switch (node.kind) { case 203 /* SyntaxKind.BindingElement */: case 296 /* SyntaxKind.PropertyAssignment */: // AssignmentProperty case 297 /* SyntaxKind.ShorthandPropertyAssignment */: // AssignmentProperty case 298 /* SyntaxKind.SpreadAssignment */: // AssignmentRestProperty return true; } return false; } ts.isObjectBindingOrAssignmentElement = isObjectBindingOrAssignmentElement; /** * Determines whether a node is an ArrayBindingOrAssignmentPattern */ /* @internal */ function isArrayBindingOrAssignmentPattern(node) { switch (node.kind) { case 202 /* SyntaxKind.ArrayBindingPattern */: case 204 /* SyntaxKind.ArrayLiteralExpression */: return true; } return false; } ts.isArrayBindingOrAssignmentPattern = isArrayBindingOrAssignmentPattern; /* @internal */ function isPropertyAccessOrQualifiedNameOrImportTypeNode(node) { var kind = node.kind; return kind === 206 /* SyntaxKind.PropertyAccessExpression */ || kind === 161 /* SyntaxKind.QualifiedName */ || kind === 200 /* SyntaxKind.ImportType */; } ts.isPropertyAccessOrQualifiedNameOrImportTypeNode = isPropertyAccessOrQualifiedNameOrImportTypeNode; // Expression function isPropertyAccessOrQualifiedName(node) { var kind = node.kind; return kind === 206 /* SyntaxKind.PropertyAccessExpression */ || kind === 161 /* SyntaxKind.QualifiedName */; } ts.isPropertyAccessOrQualifiedName = isPropertyAccessOrQualifiedName; function isCallLikeExpression(node) { switch (node.kind) { case 280 /* SyntaxKind.JsxOpeningElement */: case 279 /* SyntaxKind.JsxSelfClosingElement */: case 208 /* SyntaxKind.CallExpression */: case 209 /* SyntaxKind.NewExpression */: case 210 /* SyntaxKind.TaggedTemplateExpression */: case 165 /* SyntaxKind.Decorator */: return true; default: return false; } } ts.isCallLikeExpression = isCallLikeExpression; function isCallOrNewExpression(node) { return node.kind === 208 /* SyntaxKind.CallExpression */ || node.kind === 209 /* SyntaxKind.NewExpression */; } ts.isCallOrNewExpression = isCallOrNewExpression; function isTemplateLiteral(node) { var kind = node.kind; return kind === 223 /* SyntaxKind.TemplateExpression */ || kind === 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */; } ts.isTemplateLiteral = isTemplateLiteral; /* @internal */ function isLeftHandSideExpression(node) { return isLeftHandSideExpressionKind(skipPartiallyEmittedExpressions(node).kind); } ts.isLeftHandSideExpression = isLeftHandSideExpression; function isLeftHandSideExpressionKind(kind) { switch (kind) { case 206 /* SyntaxKind.PropertyAccessExpression */: case 207 /* SyntaxKind.ElementAccessExpression */: case 209 /* SyntaxKind.NewExpression */: case 208 /* SyntaxKind.CallExpression */: case 278 /* SyntaxKind.JsxElement */: case 279 /* SyntaxKind.JsxSelfClosingElement */: case 282 /* SyntaxKind.JsxFragment */: case 210 /* SyntaxKind.TaggedTemplateExpression */: case 204 /* SyntaxKind.ArrayLiteralExpression */: case 212 /* SyntaxKind.ParenthesizedExpression */: case 205 /* SyntaxKind.ObjectLiteralExpression */: case 226 /* SyntaxKind.ClassExpression */: case 213 /* SyntaxKind.FunctionExpression */: case 79 /* SyntaxKind.Identifier */: case 80 /* SyntaxKind.PrivateIdentifier */: // technically this is only an Expression if it's in a `#field in expr` BinaryExpression case 13 /* SyntaxKind.RegularExpressionLiteral */: case 8 /* SyntaxKind.NumericLiteral */: case 9 /* SyntaxKind.BigIntLiteral */: case 10 /* SyntaxKind.StringLiteral */: case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: case 223 /* SyntaxKind.TemplateExpression */: case 95 /* SyntaxKind.FalseKeyword */: case 104 /* SyntaxKind.NullKeyword */: case 108 /* SyntaxKind.ThisKeyword */: case 110 /* SyntaxKind.TrueKeyword */: case 106 /* SyntaxKind.SuperKeyword */: case 230 /* SyntaxKind.NonNullExpression */: case 228 /* SyntaxKind.ExpressionWithTypeArguments */: case 231 /* SyntaxKind.MetaProperty */: case 100 /* SyntaxKind.ImportKeyword */: // technically this is only an Expression if it's in a CallExpression return true; default: return false; } } /* @internal */ function isUnaryExpression(node) { return isUnaryExpressionKind(skipPartiallyEmittedExpressions(node).kind); } ts.isUnaryExpression = isUnaryExpression; function isUnaryExpressionKind(kind) { switch (kind) { case 219 /* SyntaxKind.PrefixUnaryExpression */: case 220 /* SyntaxKind.PostfixUnaryExpression */: case 215 /* SyntaxKind.DeleteExpression */: case 216 /* SyntaxKind.TypeOfExpression */: case 217 /* SyntaxKind.VoidExpression */: case 218 /* SyntaxKind.AwaitExpression */: case 211 /* SyntaxKind.TypeAssertionExpression */: return true; default: return isLeftHandSideExpressionKind(kind); } } /* @internal */ function isUnaryExpressionWithWrite(expr) { switch (expr.kind) { case 220 /* SyntaxKind.PostfixUnaryExpression */: return true; case 219 /* SyntaxKind.PrefixUnaryExpression */: return expr.operator === 45 /* SyntaxKind.PlusPlusToken */ || expr.operator === 46 /* SyntaxKind.MinusMinusToken */; default: return false; } } ts.isUnaryExpressionWithWrite = isUnaryExpressionWithWrite; /* @internal */ /** * Determines whether a node is an expression based only on its kind. * Use `isExpressionNode` if not in transforms. */ function isExpression(node) { return isExpressionKind(skipPartiallyEmittedExpressions(node).kind); } ts.isExpression = isExpression; function isExpressionKind(kind) { switch (kind) { case 222 /* SyntaxKind.ConditionalExpression */: case 224 /* SyntaxKind.YieldExpression */: case 214 /* SyntaxKind.ArrowFunction */: case 221 /* SyntaxKind.BinaryExpression */: case 225 /* SyntaxKind.SpreadElement */: case 229 /* SyntaxKind.AsExpression */: case 227 /* SyntaxKind.OmittedExpression */: case 351 /* SyntaxKind.CommaListExpression */: case 350 /* SyntaxKind.PartiallyEmittedExpression */: return true; default: return isUnaryExpressionKind(kind); } } function isAssertionExpression(node) { var kind = node.kind; return kind === 211 /* SyntaxKind.TypeAssertionExpression */ || kind === 229 /* SyntaxKind.AsExpression */; } ts.isAssertionExpression = isAssertionExpression; /* @internal */ function isNotEmittedOrPartiallyEmittedNode(node) { return ts.isNotEmittedStatement(node) || ts.isPartiallyEmittedExpression(node); } ts.isNotEmittedOrPartiallyEmittedNode = isNotEmittedOrPartiallyEmittedNode; function isIterationStatement(node, lookInLabeledStatements) { switch (node.kind) { case 242 /* SyntaxKind.ForStatement */: case 243 /* SyntaxKind.ForInStatement */: case 244 /* SyntaxKind.ForOfStatement */: case 240 /* SyntaxKind.DoStatement */: case 241 /* SyntaxKind.WhileStatement */: return true; case 250 /* SyntaxKind.LabeledStatement */: return lookInLabeledStatements && isIterationStatement(node.statement, lookInLabeledStatements); } return false; } ts.isIterationStatement = isIterationStatement; /* @internal */ function isScopeMarker(node) { return ts.isExportAssignment(node) || ts.isExportDeclaration(node); } ts.isScopeMarker = isScopeMarker; /* @internal */ function hasScopeMarker(statements) { return ts.some(statements, isScopeMarker); } ts.hasScopeMarker = hasScopeMarker; /* @internal */ function needsScopeMarker(result) { return !ts.isAnyImportOrReExport(result) && !ts.isExportAssignment(result) && !ts.hasSyntacticModifier(result, 1 /* ModifierFlags.Export */) && !ts.isAmbientModule(result); } ts.needsScopeMarker = needsScopeMarker; /* @internal */ function isExternalModuleIndicator(result) { // Exported top-level member indicates moduleness return ts.isAnyImportOrReExport(result) || ts.isExportAssignment(result) || ts.hasSyntacticModifier(result, 1 /* ModifierFlags.Export */); } ts.isExternalModuleIndicator = isExternalModuleIndicator; /* @internal */ function isForInOrOfStatement(node) { return node.kind === 243 /* SyntaxKind.ForInStatement */ || node.kind === 244 /* SyntaxKind.ForOfStatement */; } ts.isForInOrOfStatement = isForInOrOfStatement; // Element /* @internal */ function isConciseBody(node) { return ts.isBlock(node) || isExpression(node); } ts.isConciseBody = isConciseBody; /* @internal */ function isFunctionBody(node) { return ts.isBlock(node); } ts.isFunctionBody = isFunctionBody; /* @internal */ function isForInitializer(node) { return ts.isVariableDeclarationList(node) || isExpression(node); } ts.isForInitializer = isForInitializer; /* @internal */ function isModuleBody(node) { var kind = node.kind; return kind === 262 /* SyntaxKind.ModuleBlock */ || kind === 261 /* SyntaxKind.ModuleDeclaration */ || kind === 79 /* SyntaxKind.Identifier */; } ts.isModuleBody = isModuleBody; /* @internal */ function isNamespaceBody(node) { var kind = node.kind; return kind === 262 /* SyntaxKind.ModuleBlock */ || kind === 261 /* SyntaxKind.ModuleDeclaration */; } ts.isNamespaceBody = isNamespaceBody; /* @internal */ function isJSDocNamespaceBody(node) { var kind = node.kind; return kind === 79 /* SyntaxKind.Identifier */ || kind === 261 /* SyntaxKind.ModuleDeclaration */; } ts.isJSDocNamespaceBody = isJSDocNamespaceBody; /* @internal */ function isNamedImportBindings(node) { var kind = node.kind; return kind === 269 /* SyntaxKind.NamedImports */ || kind === 268 /* SyntaxKind.NamespaceImport */; } ts.isNamedImportBindings = isNamedImportBindings; /* @internal */ function isModuleOrEnumDeclaration(node) { return node.kind === 261 /* SyntaxKind.ModuleDeclaration */ || node.kind === 260 /* SyntaxKind.EnumDeclaration */; } ts.isModuleOrEnumDeclaration = isModuleOrEnumDeclaration; function isDeclarationKind(kind) { return kind === 214 /* SyntaxKind.ArrowFunction */ || kind === 203 /* SyntaxKind.BindingElement */ || kind === 257 /* SyntaxKind.ClassDeclaration */ || kind === 226 /* SyntaxKind.ClassExpression */ || kind === 170 /* SyntaxKind.ClassStaticBlockDeclaration */ || kind === 171 /* SyntaxKind.Constructor */ || kind === 260 /* SyntaxKind.EnumDeclaration */ || kind === 299 /* SyntaxKind.EnumMember */ || kind === 275 /* SyntaxKind.ExportSpecifier */ || kind === 256 /* SyntaxKind.FunctionDeclaration */ || kind === 213 /* SyntaxKind.FunctionExpression */ || kind === 172 /* SyntaxKind.GetAccessor */ || kind === 267 /* SyntaxKind.ImportClause */ || kind === 265 /* SyntaxKind.ImportEqualsDeclaration */ || kind === 270 /* SyntaxKind.ImportSpecifier */ || kind === 258 /* SyntaxKind.InterfaceDeclaration */ || kind === 285 /* SyntaxKind.JsxAttribute */ || kind === 169 /* SyntaxKind.MethodDeclaration */ || kind === 168 /* SyntaxKind.MethodSignature */ || kind === 261 /* SyntaxKind.ModuleDeclaration */ || kind === 264 /* SyntaxKind.NamespaceExportDeclaration */ || kind === 268 /* SyntaxKind.NamespaceImport */ || kind === 274 /* SyntaxKind.NamespaceExport */ || kind === 164 /* SyntaxKind.Parameter */ || kind === 296 /* SyntaxKind.PropertyAssignment */ || kind === 167 /* SyntaxKind.PropertyDeclaration */ || kind === 166 /* SyntaxKind.PropertySignature */ || kind === 173 /* SyntaxKind.SetAccessor */ || kind === 297 /* SyntaxKind.ShorthandPropertyAssignment */ || kind === 259 /* SyntaxKind.TypeAliasDeclaration */ || kind === 163 /* SyntaxKind.TypeParameter */ || kind === 254 /* SyntaxKind.VariableDeclaration */ || kind === 345 /* SyntaxKind.JSDocTypedefTag */ || kind === 338 /* SyntaxKind.JSDocCallbackTag */ || kind === 347 /* SyntaxKind.JSDocPropertyTag */; } function isDeclarationStatementKind(kind) { return kind === 256 /* SyntaxKind.FunctionDeclaration */ || kind === 276 /* SyntaxKind.MissingDeclaration */ || kind === 257 /* SyntaxKind.ClassDeclaration */ || kind === 258 /* SyntaxKind.InterfaceDeclaration */ || kind === 259 /* SyntaxKind.TypeAliasDeclaration */ || kind === 260 /* SyntaxKind.EnumDeclaration */ || kind === 261 /* SyntaxKind.ModuleDeclaration */ || kind === 266 /* SyntaxKind.ImportDeclaration */ || kind === 265 /* SyntaxKind.ImportEqualsDeclaration */ || kind === 272 /* SyntaxKind.ExportDeclaration */ || kind === 271 /* SyntaxKind.ExportAssignment */ || kind === 264 /* SyntaxKind.NamespaceExportDeclaration */; } function isStatementKindButNotDeclarationKind(kind) { return kind === 246 /* SyntaxKind.BreakStatement */ || kind === 245 /* SyntaxKind.ContinueStatement */ || kind === 253 /* SyntaxKind.DebuggerStatement */ || kind === 240 /* SyntaxKind.DoStatement */ || kind === 238 /* SyntaxKind.ExpressionStatement */ || kind === 236 /* SyntaxKind.EmptyStatement */ || kind === 243 /* SyntaxKind.ForInStatement */ || kind === 244 /* SyntaxKind.ForOfStatement */ || kind === 242 /* SyntaxKind.ForStatement */ || kind === 239 /* SyntaxKind.IfStatement */ || kind === 250 /* SyntaxKind.LabeledStatement */ || kind === 247 /* SyntaxKind.ReturnStatement */ || kind === 249 /* SyntaxKind.SwitchStatement */ || kind === 251 /* SyntaxKind.ThrowStatement */ || kind === 252 /* SyntaxKind.TryStatement */ || kind === 237 /* SyntaxKind.VariableStatement */ || kind === 241 /* SyntaxKind.WhileStatement */ || kind === 248 /* SyntaxKind.WithStatement */ || kind === 349 /* SyntaxKind.NotEmittedStatement */ || kind === 353 /* SyntaxKind.EndOfDeclarationMarker */ || kind === 352 /* SyntaxKind.MergeDeclarationMarker */; } /* @internal */ function isDeclaration(node) { if (node.kind === 163 /* SyntaxKind.TypeParameter */) { return (node.parent && node.parent.kind !== 344 /* SyntaxKind.JSDocTemplateTag */) || ts.isInJSFile(node); } return isDeclarationKind(node.kind); } ts.isDeclaration = isDeclaration; /* @internal */ function isDeclarationStatement(node) { return isDeclarationStatementKind(node.kind); } ts.isDeclarationStatement = isDeclarationStatement; /** * Determines whether the node is a statement that is not also a declaration */ /* @internal */ function isStatementButNotDeclaration(node) { return isStatementKindButNotDeclarationKind(node.kind); } ts.isStatementButNotDeclaration = isStatementButNotDeclaration; /* @internal */ function isStatement(node) { var kind = node.kind; return isStatementKindButNotDeclarationKind(kind) || isDeclarationStatementKind(kind) || isBlockStatement(node); } ts.isStatement = isStatement; function isBlockStatement(node) { if (node.kind !== 235 /* SyntaxKind.Block */) return false; if (node.parent !== undefined) { if (node.parent.kind === 252 /* SyntaxKind.TryStatement */ || node.parent.kind === 292 /* SyntaxKind.CatchClause */) { return false; } } return !ts.isFunctionBlock(node); } /** * NOTE: This is similar to `isStatement` but does not access parent pointers. */ /* @internal */ function isStatementOrBlock(node) { var kind = node.kind; return isStatementKindButNotDeclarationKind(kind) || isDeclarationStatementKind(kind) || kind === 235 /* SyntaxKind.Block */; } ts.isStatementOrBlock = isStatementOrBlock; // Module references /* @internal */ function isModuleReference(node) { var kind = node.kind; return kind === 277 /* SyntaxKind.ExternalModuleReference */ || kind === 161 /* SyntaxKind.QualifiedName */ || kind === 79 /* SyntaxKind.Identifier */; } ts.isModuleReference = isModuleReference; // JSX /* @internal */ function isJsxTagNameExpression(node) { var kind = node.kind; return kind === 108 /* SyntaxKind.ThisKeyword */ || kind === 79 /* SyntaxKind.Identifier */ || kind === 206 /* SyntaxKind.PropertyAccessExpression */; } ts.isJsxTagNameExpression = isJsxTagNameExpression; /* @internal */ function isJsxChild(node) { var kind = node.kind; return kind === 278 /* SyntaxKind.JsxElement */ || kind === 288 /* SyntaxKind.JsxExpression */ || kind === 279 /* SyntaxKind.JsxSelfClosingElement */ || kind === 11 /* SyntaxKind.JsxText */ || kind === 282 /* SyntaxKind.JsxFragment */; } ts.isJsxChild = isJsxChild; /* @internal */ function isJsxAttributeLike(node) { var kind = node.kind; return kind === 285 /* SyntaxKind.JsxAttribute */ || kind === 287 /* SyntaxKind.JsxSpreadAttribute */; } ts.isJsxAttributeLike = isJsxAttributeLike; /* @internal */ function isStringLiteralOrJsxExpression(node) { var kind = node.kind; return kind === 10 /* SyntaxKind.StringLiteral */ || kind === 288 /* SyntaxKind.JsxExpression */; } ts.isStringLiteralOrJsxExpression = isStringLiteralOrJsxExpression; function isJsxOpeningLikeElement(node) { var kind = node.kind; return kind === 280 /* SyntaxKind.JsxOpeningElement */ || kind === 279 /* SyntaxKind.JsxSelfClosingElement */; } ts.isJsxOpeningLikeElement = isJsxOpeningLikeElement; // Clauses function isCaseOrDefaultClause(node) { var kind = node.kind; return kind === 289 /* SyntaxKind.CaseClause */ || kind === 290 /* SyntaxKind.DefaultClause */; } ts.isCaseOrDefaultClause = isCaseOrDefaultClause; // JSDoc /** True if node is of some JSDoc syntax kind. */ /* @internal */ function isJSDocNode(node) { return node.kind >= 309 /* SyntaxKind.FirstJSDocNode */ && node.kind <= 347 /* SyntaxKind.LastJSDocNode */; } ts.isJSDocNode = isJSDocNode; /** True if node is of a kind that may contain comment text. */ function isJSDocCommentContainingNode(node) { return node.kind === 320 /* SyntaxKind.JSDoc */ || node.kind === 319 /* SyntaxKind.JSDocNamepathType */ || node.kind === 321 /* SyntaxKind.JSDocText */ || isJSDocLinkLike(node) || isJSDocTag(node) || ts.isJSDocTypeLiteral(node) || ts.isJSDocSignature(node); } ts.isJSDocCommentContainingNode = isJSDocCommentContainingNode; // TODO: determine what this does before making it public. /* @internal */ function isJSDocTag(node) { return node.kind >= 327 /* SyntaxKind.FirstJSDocTagNode */ && node.kind <= 347 /* SyntaxKind.LastJSDocTagNode */; } ts.isJSDocTag = isJSDocTag; function isSetAccessor(node) { return node.kind === 173 /* SyntaxKind.SetAccessor */; } ts.isSetAccessor = isSetAccessor; function isGetAccessor(node) { return node.kind === 172 /* SyntaxKind.GetAccessor */; } ts.isGetAccessor = isGetAccessor; /** True if has jsdoc nodes attached to it. */ /* @internal */ // TODO: GH#19856 Would like to return `node is Node & { jsDoc: JSDoc[] }` but it causes long compile times function hasJSDocNodes(node) { var jsDoc = node.jsDoc; return !!jsDoc && jsDoc.length > 0; } ts.hasJSDocNodes = hasJSDocNodes; /** True if has type node attached to it. */ /* @internal */ function hasType(node) { return !!node.type; } ts.hasType = hasType; /** True if has initializer node attached to it. */ /* @internal */ function hasInitializer(node) { return !!node.initializer; } ts.hasInitializer = hasInitializer; /** True if has initializer node attached to it. */ function hasOnlyExpressionInitializer(node) { switch (node.kind) { case 254 /* SyntaxKind.VariableDeclaration */: case 164 /* SyntaxKind.Parameter */: case 203 /* SyntaxKind.BindingElement */: case 166 /* SyntaxKind.PropertySignature */: case 167 /* SyntaxKind.PropertyDeclaration */: case 296 /* SyntaxKind.PropertyAssignment */: case 299 /* SyntaxKind.EnumMember */: return true; default: return false; } } ts.hasOnlyExpressionInitializer = hasOnlyExpressionInitializer; function isObjectLiteralElement(node) { return node.kind === 285 /* SyntaxKind.JsxAttribute */ || node.kind === 287 /* SyntaxKind.JsxSpreadAttribute */ || isObjectLiteralElementLike(node); } ts.isObjectLiteralElement = isObjectLiteralElement; /* @internal */ function isTypeReferenceType(node) { return node.kind === 178 /* SyntaxKind.TypeReference */ || node.kind === 228 /* SyntaxKind.ExpressionWithTypeArguments */; } ts.isTypeReferenceType = isTypeReferenceType; var MAX_SMI_X86 = 1073741823; /* @internal */ function guessIndentation(lines) { var indentation = MAX_SMI_X86; for (var _i = 0, lines_1 = lines; _i < lines_1.length; _i++) { var line = lines_1[_i]; if (!line.length) { continue; } var i = 0; for (; i < line.length && i < indentation; i++) { if (!ts.isWhiteSpaceLike(line.charCodeAt(i))) { break; } } if (i < indentation) { indentation = i; } if (indentation === 0) { return 0; } } return indentation === MAX_SMI_X86 ? undefined : indentation; } ts.guessIndentation = guessIndentation; function isStringLiteralLike(node) { return node.kind === 10 /* SyntaxKind.StringLiteral */ || node.kind === 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */; } ts.isStringLiteralLike = isStringLiteralLike; function isJSDocLinkLike(node) { return node.kind === 324 /* SyntaxKind.JSDocLink */ || node.kind === 325 /* SyntaxKind.JSDocLinkCode */ || node.kind === 326 /* SyntaxKind.JSDocLinkPlain */; } ts.isJSDocLinkLike = isJSDocLinkLike; // #endregion })(ts || (ts = {})); /* @internal */ var ts; (function (ts) { ts.resolvingEmptyArray = []; ts.externalHelpersModuleNameText = "tslib"; ts.defaultMaximumTruncationLength = 160; ts.noTruncationMaximumTruncationLength = 1000000; function getDeclarationOfKind(symbol, kind) { var declarations = symbol.declarations; if (declarations) { for (var _i = 0, declarations_1 = declarations; _i < declarations_1.length; _i++) { var declaration = declarations_1[_i]; if (declaration.kind === kind) { return declaration; } } } return undefined; } ts.getDeclarationOfKind = getDeclarationOfKind; function getDeclarationsOfKind(symbol, kind) { return ts.filter(symbol.declarations || ts.emptyArray, function (d) { return d.kind === kind; }); } ts.getDeclarationsOfKind = getDeclarationsOfKind; function createSymbolTable(symbols) { var result = new ts.Map(); if (symbols) { for (var _i = 0, symbols_1 = symbols; _i < symbols_1.length; _i++) { var symbol = symbols_1[_i]; result.set(symbol.escapedName, symbol); } } return result; } ts.createSymbolTable = createSymbolTable; function isTransientSymbol(symbol) { return (symbol.flags & 33554432 /* SymbolFlags.Transient */) !== 0; } ts.isTransientSymbol = isTransientSymbol; var stringWriter = createSingleLineStringWriter(); function createSingleLineStringWriter() { var str = ""; var writeText = function (text) { return str += text; }; return { getText: function () { return str; }, write: writeText, rawWrite: writeText, writeKeyword: writeText, writeOperator: writeText, writePunctuation: writeText, writeSpace: writeText, writeStringLiteral: writeText, writeLiteral: writeText, writeParameter: writeText, writeProperty: writeText, writeSymbol: function (s, _) { return writeText(s); }, writeTrailingSemicolon: writeText, writeComment: writeText, getTextPos: function () { return str.length; }, getLine: function () { return 0; }, getColumn: function () { return 0; }, getIndent: function () { return 0; }, isAtStartOfLine: function () { return false; }, hasTrailingComment: function () { return false; }, hasTrailingWhitespace: function () { return !!str.length && ts.isWhiteSpaceLike(str.charCodeAt(str.length - 1)); }, // Completely ignore indentation for string writers. And map newlines to // a single space. writeLine: function () { return str += " "; }, increaseIndent: ts.noop, decreaseIndent: ts.noop, clear: function () { return str = ""; }, trackSymbol: function () { return false; }, reportInaccessibleThisError: ts.noop, reportInaccessibleUniqueSymbolError: ts.noop, reportPrivateInBaseOfClassExpression: ts.noop, }; } function changesAffectModuleResolution(oldOptions, newOptions) { return oldOptions.configFilePath !== newOptions.configFilePath || optionsHaveModuleResolutionChanges(oldOptions, newOptions); } ts.changesAffectModuleResolution = changesAffectModuleResolution; function optionsHaveModuleResolutionChanges(oldOptions, newOptions) { return optionsHaveChanges(oldOptions, newOptions, ts.moduleResolutionOptionDeclarations); } ts.optionsHaveModuleResolutionChanges = optionsHaveModuleResolutionChanges; function changesAffectingProgramStructure(oldOptions, newOptions) { return optionsHaveChanges(oldOptions, newOptions, ts.optionsAffectingProgramStructure); } ts.changesAffectingProgramStructure = changesAffectingProgramStructure; function optionsHaveChanges(oldOptions, newOptions, optionDeclarations) { return oldOptions !== newOptions && optionDeclarations.some(function (o) { return !isJsonEqual(getCompilerOptionValue(oldOptions, o), getCompilerOptionValue(newOptions, o)); }); } ts.optionsHaveChanges = optionsHaveChanges; function forEachAncestor(node, callback) { while (true) { var res = callback(node); if (res === "quit") return undefined; if (res !== undefined) return res; if (ts.isSourceFile(node)) return undefined; node = node.parent; } } ts.forEachAncestor = forEachAncestor; /** * Calls `callback` for each entry in the map, returning the first truthy result. * Use `map.forEach` instead for normal iteration. */ function forEachEntry(map, callback) { var iterator = map.entries(); for (var iterResult = iterator.next(); !iterResult.done; iterResult = iterator.next()) { var _a = iterResult.value, key = _a[0], value = _a[1]; var result = callback(value, key); if (result) { return result; } } return undefined; } ts.forEachEntry = forEachEntry; /** `forEachEntry` for just keys. */ function forEachKey(map, callback) { var iterator = map.keys(); for (var iterResult = iterator.next(); !iterResult.done; iterResult = iterator.next()) { var result = callback(iterResult.value); if (result) { return result; } } return undefined; } ts.forEachKey = forEachKey; /** Copy entries from `source` to `target`. */ function copyEntries(source, target) { source.forEach(function (value, key) { target.set(key, value); }); } ts.copyEntries = copyEntries; function usingSingleLineStringWriter(action) { var oldString = stringWriter.getText(); try { action(stringWriter); return stringWriter.getText(); } finally { stringWriter.clear(); stringWriter.writeKeyword(oldString); } } ts.usingSingleLineStringWriter = usingSingleLineStringWriter; function getFullWidth(node) { return node.end - node.pos; } ts.getFullWidth = getFullWidth; function getResolvedModule(sourceFile, moduleNameText, mode) { return sourceFile && sourceFile.resolvedModules && sourceFile.resolvedModules.get(moduleNameText, mode); } ts.getResolvedModule = getResolvedModule; function setResolvedModule(sourceFile, moduleNameText, resolvedModule, mode) { if (!sourceFile.resolvedModules) { sourceFile.resolvedModules = ts.createModeAwareCache(); } sourceFile.resolvedModules.set(moduleNameText, mode, resolvedModule); } ts.setResolvedModule = setResolvedModule; function setResolvedTypeReferenceDirective(sourceFile, typeReferenceDirectiveName, resolvedTypeReferenceDirective) { if (!sourceFile.resolvedTypeReferenceDirectiveNames) { sourceFile.resolvedTypeReferenceDirectiveNames = ts.createModeAwareCache(); } sourceFile.resolvedTypeReferenceDirectiveNames.set(typeReferenceDirectiveName, /*mode*/ undefined, resolvedTypeReferenceDirective); } ts.setResolvedTypeReferenceDirective = setResolvedTypeReferenceDirective; function projectReferenceIsEqualTo(oldRef, newRef) { return oldRef.path === newRef.path && !oldRef.prepend === !newRef.prepend && !oldRef.circular === !newRef.circular; } ts.projectReferenceIsEqualTo = projectReferenceIsEqualTo; function moduleResolutionIsEqualTo(oldResolution, newResolution) { return oldResolution.isExternalLibraryImport === newResolution.isExternalLibraryImport && oldResolution.extension === newResolution.extension && oldResolution.resolvedFileName === newResolution.resolvedFileName && oldResolution.originalPath === newResolution.originalPath && packageIdIsEqual(oldResolution.packageId, newResolution.packageId); } ts.moduleResolutionIsEqualTo = moduleResolutionIsEqualTo; function packageIdIsEqual(a, b) { return a === b || !!a && !!b && a.name === b.name && a.subModuleName === b.subModuleName && a.version === b.version; } function packageIdToPackageName(_a) { var name = _a.name, subModuleName = _a.subModuleName; return subModuleName ? "".concat(name, "/").concat(subModuleName) : name; } ts.packageIdToPackageName = packageIdToPackageName; function packageIdToString(packageId) { return "".concat(packageIdToPackageName(packageId), "@").concat(packageId.version); } ts.packageIdToString = packageIdToString; function typeDirectiveIsEqualTo(oldResolution, newResolution) { return oldResolution.resolvedFileName === newResolution.resolvedFileName && oldResolution.primary === newResolution.primary && oldResolution.originalPath === newResolution.originalPath; } ts.typeDirectiveIsEqualTo = typeDirectiveIsEqualTo; function hasChangesInResolutions(names, newResolutions, oldResolutions, oldSourceFile, comparer) { ts.Debug.assert(names.length === newResolutions.length); for (var i = 0; i < names.length; i++) { var newResolution = newResolutions[i]; var entry = names[i]; // We lower-case all type references because npm automatically lowercases all packages. See GH#9824. var name = !ts.isString(entry) ? entry.fileName.toLowerCase() : entry; var mode = !ts.isString(entry) ? ts.getModeForFileReference(entry, oldSourceFile === null || oldSourceFile === void 0 ? void 0 : oldSourceFile.impliedNodeFormat) : oldSourceFile && ts.getModeForResolutionAtIndex(oldSourceFile, i); var oldResolution = oldResolutions && oldResolutions.get(name, mode); var changed = oldResolution ? !newResolution || !comparer(oldResolution, newResolution) : newResolution; if (changed) { return true; } } return false; } ts.hasChangesInResolutions = hasChangesInResolutions; // Returns true if this node contains a parse error anywhere underneath it. function containsParseError(node) { aggregateChildData(node); return (node.flags & 524288 /* NodeFlags.ThisNodeOrAnySubNodesHasError */) !== 0; } ts.containsParseError = containsParseError; function aggregateChildData(node) { if (!(node.flags & 1048576 /* NodeFlags.HasAggregatedChildData */)) { // A node is considered to contain a parse error if: // a) the parser explicitly marked that it had an error // b) any of it's children reported that it had an error. var thisNodeOrAnySubNodesHasError = ((node.flags & 131072 /* NodeFlags.ThisNodeHasError */) !== 0) || ts.forEachChild(node, containsParseError); // If so, mark ourselves accordingly. if (thisNodeOrAnySubNodesHasError) { node.flags |= 524288 /* NodeFlags.ThisNodeOrAnySubNodesHasError */; } // Also mark that we've propagated the child information to this node. This way we can // always consult the bit directly on this node without needing to check its children // again. node.flags |= 1048576 /* NodeFlags.HasAggregatedChildData */; } } function getSourceFileOfNode(node) { while (node && node.kind !== 305 /* SyntaxKind.SourceFile */) { node = node.parent; } return node; } ts.getSourceFileOfNode = getSourceFileOfNode; function getSourceFileOfModule(module) { return getSourceFileOfNode(module.valueDeclaration || getNonAugmentationDeclaration(module)); } ts.getSourceFileOfModule = getSourceFileOfModule; function isPlainJsFile(file, checkJs) { return !!file && (file.scriptKind === 1 /* ScriptKind.JS */ || file.scriptKind === 2 /* ScriptKind.JSX */) && !file.checkJsDirective && checkJs === undefined; } ts.isPlainJsFile = isPlainJsFile; function isStatementWithLocals(node) { switch (node.kind) { case 235 /* SyntaxKind.Block */: case 263 /* SyntaxKind.CaseBlock */: case 242 /* SyntaxKind.ForStatement */: case 243 /* SyntaxKind.ForInStatement */: case 244 /* SyntaxKind.ForOfStatement */: return true; } return false; } ts.isStatementWithLocals = isStatementWithLocals; function getStartPositionOfLine(line, sourceFile) { ts.Debug.assert(line >= 0); return ts.getLineStarts(sourceFile)[line]; } ts.getStartPositionOfLine = getStartPositionOfLine; // This is a useful function for debugging purposes. function nodePosToString(node) { var file = getSourceFileOfNode(node); var loc = ts.getLineAndCharacterOfPosition(file, node.pos); return "".concat(file.fileName, "(").concat(loc.line + 1, ",").concat(loc.character + 1, ")"); } ts.nodePosToString = nodePosToString; function getEndLinePosition(line, sourceFile) { ts.Debug.assert(line >= 0); var lineStarts = ts.getLineStarts(sourceFile); var lineIndex = line; var sourceText = sourceFile.text; if (lineIndex + 1 === lineStarts.length) { // last line - return EOF return sourceText.length - 1; } else { // current line start var start = lineStarts[lineIndex]; // take the start position of the next line - 1 = it should be some line break var pos = lineStarts[lineIndex + 1] - 1; ts.Debug.assert(ts.isLineBreak(sourceText.charCodeAt(pos))); // walk backwards skipping line breaks, stop the the beginning of current line. // i.e: // // $ <- end of line for this position should match the start position while (start <= pos && ts.isLineBreak(sourceText.charCodeAt(pos))) { pos--; } return pos; } } ts.getEndLinePosition = getEndLinePosition; /** * Returns a value indicating whether a name is unique globally or within the current file. * Note: This does not consider whether a name appears as a free identifier or not, so at the expression `x.y` this includes both `x` and `y`. */ function isFileLevelUniqueName(sourceFile, name, hasGlobalName) { return !(hasGlobalName && hasGlobalName(name)) && !sourceFile.identifiers.has(name); } ts.isFileLevelUniqueName = isFileLevelUniqueName; // Returns true if this node is missing from the actual source code. A 'missing' node is different // from 'undefined/defined'. When a node is undefined (which can happen for optional nodes // in the tree), it is definitely missing. However, a node may be defined, but still be // missing. This happens whenever the parser knows it needs to parse something, but can't // get anything in the source code that it expects at that location. For example: // // let a: ; // // Here, the Type in the Type-Annotation is not-optional (as there is a colon in the source // code). So the parser will attempt to parse out a type, and will create an actual node. // However, this node will be 'missing' in the sense that no actual source-code/tokens are // contained within it. function nodeIsMissing(node) { if (node === undefined) { return true; } return node.pos === node.end && node.pos >= 0 && node.kind !== 1 /* SyntaxKind.EndOfFileToken */; } ts.nodeIsMissing = nodeIsMissing; function nodeIsPresent(node) { return !nodeIsMissing(node); } ts.nodeIsPresent = nodeIsPresent; function insertStatementsAfterPrologue(to, from, isPrologueDirective) { if (from === undefined || from.length === 0) return to; var statementIndex = 0; // skip all prologue directives to insert at the correct position for (; statementIndex < to.length; ++statementIndex) { if (!isPrologueDirective(to[statementIndex])) { break; } } to.splice.apply(to, __spreadArray([statementIndex, 0], from, false)); return to; } function insertStatementAfterPrologue(to, statement, isPrologueDirective) { if (statement === undefined) return to; var statementIndex = 0; // skip all prologue directives to insert at the correct position for (; statementIndex < to.length; ++statementIndex) { if (!isPrologueDirective(to[statementIndex])) { break; } } to.splice(statementIndex, 0, statement); return to; } function isAnyPrologueDirective(node) { return isPrologueDirective(node) || !!(getEmitFlags(node) & 1048576 /* EmitFlags.CustomPrologue */); } /** * Prepends statements to an array while taking care of prologue directives. */ function insertStatementsAfterStandardPrologue(to, from) { return insertStatementsAfterPrologue(to, from, isPrologueDirective); } ts.insertStatementsAfterStandardPrologue = insertStatementsAfterStandardPrologue; function insertStatementsAfterCustomPrologue(to, from) { return insertStatementsAfterPrologue(to, from, isAnyPrologueDirective); } ts.insertStatementsAfterCustomPrologue = insertStatementsAfterCustomPrologue; /** * Prepends statements to an array while taking care of prologue directives. */ function insertStatementAfterStandardPrologue(to, statement) { return insertStatementAfterPrologue(to, statement, isPrologueDirective); } ts.insertStatementAfterStandardPrologue = insertStatementAfterStandardPrologue; function insertStatementAfterCustomPrologue(to, statement) { return insertStatementAfterPrologue(to, statement, isAnyPrologueDirective); } ts.insertStatementAfterCustomPrologue = insertStatementAfterCustomPrologue; /** * Determine if the given comment is a triple-slash * * @return true if the comment is a triple-slash comment else false */ function isRecognizedTripleSlashComment(text, commentPos, commentEnd) { // Verify this is /// comment, but do the regexp match only when we first can find /// in the comment text // so that we don't end up computing comment string and doing match for all // comments if (text.charCodeAt(commentPos + 1) === 47 /* CharacterCodes.slash */ && commentPos + 2 < commentEnd && text.charCodeAt(commentPos + 2) === 47 /* CharacterCodes.slash */) { var textSubStr = text.substring(commentPos, commentEnd); return ts.fullTripleSlashReferencePathRegEx.test(textSubStr) || ts.fullTripleSlashAMDReferencePathRegEx.test(textSubStr) || fullTripleSlashReferenceTypeReferenceDirectiveRegEx.test(textSubStr) || defaultLibReferenceRegEx.test(textSubStr) ? true : false; } return false; } ts.isRecognizedTripleSlashComment = isRecognizedTripleSlashComment; function isPinnedComment(text, start) { return text.charCodeAt(start + 1) === 42 /* CharacterCodes.asterisk */ && text.charCodeAt(start + 2) === 33 /* CharacterCodes.exclamation */; } ts.isPinnedComment = isPinnedComment; function createCommentDirectivesMap(sourceFile, commentDirectives) { var directivesByLine = new ts.Map(commentDirectives.map(function (commentDirective) { return ([ "".concat(ts.getLineAndCharacterOfPosition(sourceFile, commentDirective.range.end).line), commentDirective, ]); })); var usedLines = new ts.Map(); return { getUnusedExpectations: getUnusedExpectations, markUsed: markUsed }; function getUnusedExpectations() { return ts.arrayFrom(directivesByLine.entries()) .filter(function (_a) { var line = _a[0], directive = _a[1]; return directive.type === 0 /* CommentDirectiveType.ExpectError */ && !usedLines.get(line); }) .map(function (_a) { var _ = _a[0], directive = _a[1]; return directive; }); } function markUsed(line) { if (!directivesByLine.has("".concat(line))) { return false; } usedLines.set("".concat(line), true); return true; } } ts.createCommentDirectivesMap = createCommentDirectivesMap; function getTokenPosOfNode(node, sourceFile, includeJsDoc) { // With nodes that have no width (i.e. 'Missing' nodes), we actually *don't* // want to skip trivia because this will launch us forward to the next token. if (nodeIsMissing(node)) { return node.pos; } if (ts.isJSDocNode(node) || node.kind === 11 /* SyntaxKind.JsxText */) { // JsxText cannot actually contain comments, even though the scanner will think it sees comments return ts.skipTrivia((sourceFile || getSourceFileOfNode(node)).text, node.pos, /*stopAfterLineBreak*/ false, /*stopAtComments*/ true); } if (includeJsDoc && ts.hasJSDocNodes(node)) { return getTokenPosOfNode(node.jsDoc[0], sourceFile); } // For a syntax list, it is possible that one of its children has JSDocComment nodes, while // the syntax list itself considers them as normal trivia. Therefore if we simply skip // trivia for the list, we may have skipped the JSDocComment as well. So we should process its // first child to determine the actual position of its first token. if (node.kind === 348 /* SyntaxKind.SyntaxList */ && node._children.length > 0) { return getTokenPosOfNode(node._children[0], sourceFile, includeJsDoc); } return ts.skipTrivia((sourceFile || getSourceFileOfNode(node)).text, node.pos, /*stopAfterLineBreak*/ false, /*stopAtComments*/ false, isInJSDoc(node)); } ts.getTokenPosOfNode = getTokenPosOfNode; function getNonDecoratorTokenPosOfNode(node, sourceFile) { if (nodeIsMissing(node) || !node.decorators) { return getTokenPosOfNode(node, sourceFile); } return ts.skipTrivia((sourceFile || getSourceFileOfNode(node)).text, node.decorators.end); } ts.getNonDecoratorTokenPosOfNode = getNonDecoratorTokenPosOfNode; function getSourceTextOfNodeFromSourceFile(sourceFile, node, includeTrivia) { if (includeTrivia === void 0) { includeTrivia = false; } return getTextOfNodeFromSourceText(sourceFile.text, node, includeTrivia); } ts.getSourceTextOfNodeFromSourceFile = getSourceTextOfNodeFromSourceFile; function isJSDocTypeExpressionOrChild(node) { return !!ts.findAncestor(node, ts.isJSDocTypeExpression); } function isExportNamespaceAsDefaultDeclaration(node) { return !!(ts.isExportDeclaration(node) && node.exportClause && ts.isNamespaceExport(node.exportClause) && node.exportClause.name.escapedText === "default"); } ts.isExportNamespaceAsDefaultDeclaration = isExportNamespaceAsDefaultDeclaration; function getTextOfNodeFromSourceText(sourceText, node, includeTrivia) { if (includeTrivia === void 0) { includeTrivia = false; } if (nodeIsMissing(node)) { return ""; } var text = sourceText.substring(includeTrivia ? node.pos : ts.skipTrivia(sourceText, node.pos), node.end); if (isJSDocTypeExpressionOrChild(node)) { // strip space + asterisk at line start text = text.split(/\r\n|\n|\r/).map(function (line) { return ts.trimStringStart(line.replace(/^\s*\*/, "")); }).join("\n"); } return text; } ts.getTextOfNodeFromSourceText = getTextOfNodeFromSourceText; function getTextOfNode(node, includeTrivia) { if (includeTrivia === void 0) { includeTrivia = false; } return getSourceTextOfNodeFromSourceFile(getSourceFileOfNode(node), node, includeTrivia); } ts.getTextOfNode = getTextOfNode; function getPos(range) { return range.pos; } /** * Note: it is expected that the `nodeArray` and the `node` are within the same file. * For example, searching for a `SourceFile` in a `SourceFile[]` wouldn't work. */ function indexOfNode(nodeArray, node) { return ts.binarySearch(nodeArray, node, getPos, ts.compareValues); } ts.indexOfNode = indexOfNode; /** * Gets flags that control emit behavior of a node. */ function getEmitFlags(node) { var emitNode = node.emitNode; return emitNode && emitNode.flags || 0; } ts.getEmitFlags = getEmitFlags; ; function getScriptTargetFeatures() { return { es2015: { Array: ["find", "findIndex", "fill", "copyWithin", "entries", "keys", "values"], RegExp: ["flags", "sticky", "unicode"], Reflect: ["apply", "construct", "defineProperty", "deleteProperty", "get", " getOwnPropertyDescriptor", "getPrototypeOf", "has", "isExtensible", "ownKeys", "preventExtensions", "set", "setPrototypeOf"], ArrayConstructor: ["from", "of"], ObjectConstructor: ["assign", "getOwnPropertySymbols", "keys", "is", "setPrototypeOf"], NumberConstructor: ["isFinite", "isInteger", "isNaN", "isSafeInteger", "parseFloat", "parseInt"], Math: ["clz32", "imul", "sign", "log10", "log2", "log1p", "expm1", "cosh", "sinh", "tanh", "acosh", "asinh", "atanh", "hypot", "trunc", "fround", "cbrt"], Map: ["entries", "keys", "values"], Set: ["entries", "keys", "values"], Promise: ts.emptyArray, PromiseConstructor: ["all", "race", "reject", "resolve"], Symbol: ["for", "keyFor"], WeakMap: ["entries", "keys", "values"], WeakSet: ["entries", "keys", "values"], Iterator: ts.emptyArray, AsyncIterator: ts.emptyArray, String: ["codePointAt", "includes", "endsWith", "normalize", "repeat", "startsWith", "anchor", "big", "blink", "bold", "fixed", "fontcolor", "fontsize", "italics", "link", "small", "strike", "sub", "sup"], StringConstructor: ["fromCodePoint", "raw"] }, es2016: { Array: ["includes"] }, es2017: { Atomics: ts.emptyArray, SharedArrayBuffer: ts.emptyArray, String: ["padStart", "padEnd"], ObjectConstructor: ["values", "entries", "getOwnPropertyDescriptors"], DateTimeFormat: ["formatToParts"] }, es2018: { Promise: ["finally"], RegExpMatchArray: ["groups"], RegExpExecArray: ["groups"], RegExp: ["dotAll"], Intl: ["PluralRules"], AsyncIterable: ts.emptyArray, AsyncIterableIterator: ts.emptyArray, AsyncGenerator: ts.emptyArray, AsyncGeneratorFunction: ts.emptyArray, NumberFormat: ["formatToParts"] }, es2019: { Array: ["flat", "flatMap"], ObjectConstructor: ["fromEntries"], String: ["trimStart", "trimEnd", "trimLeft", "trimRight"], Symbol: ["description"] }, es2020: { BigInt: ts.emptyArray, BigInt64Array: ts.emptyArray, BigUint64Array: ts.emptyArray, PromiseConstructor: ["allSettled"], SymbolConstructor: ["matchAll"], String: ["matchAll"], DataView: ["setBigInt64", "setBigUint64", "getBigInt64", "getBigUint64"], RelativeTimeFormat: ["format", "formatToParts", "resolvedOptions"] }, es2021: { PromiseConstructor: ["any"], String: ["replaceAll"] }, es2022: { Array: ["at"], String: ["at"], Int8Array: ["at"], Uint8Array: ["at"], Uint8ClampedArray: ["at"], Int16Array: ["at"], Uint16Array: ["at"], Int32Array: ["at"], Uint32Array: ["at"], Float32Array: ["at"], Float64Array: ["at"], BigInt64Array: ["at"], BigUint64Array: ["at"], ObjectConstructor: ["hasOwn"], Error: ["cause"] } }; } ts.getScriptTargetFeatures = getScriptTargetFeatures; var GetLiteralTextFlags; (function (GetLiteralTextFlags) { GetLiteralTextFlags[GetLiteralTextFlags["None"] = 0] = "None"; GetLiteralTextFlags[GetLiteralTextFlags["NeverAsciiEscape"] = 1] = "NeverAsciiEscape"; GetLiteralTextFlags[GetLiteralTextFlags["JsxAttributeEscape"] = 2] = "JsxAttributeEscape"; GetLiteralTextFlags[GetLiteralTextFlags["TerminateUnterminatedLiterals"] = 4] = "TerminateUnterminatedLiterals"; GetLiteralTextFlags[GetLiteralTextFlags["AllowNumericSeparator"] = 8] = "AllowNumericSeparator"; })(GetLiteralTextFlags = ts.GetLiteralTextFlags || (ts.GetLiteralTextFlags = {})); function getLiteralText(node, sourceFile, flags) { var _a; // If we don't need to downlevel and we can reach the original source text using // the node's parent reference, then simply get the text as it was originally written. if (sourceFile && canUseOriginalText(node, flags)) { return getSourceTextOfNodeFromSourceFile(sourceFile, node); } // If we can't reach the original source text, use the canonical form if it's a number, // or a (possibly escaped) quoted form of the original text if it's string-like. switch (node.kind) { case 10 /* SyntaxKind.StringLiteral */: { var escapeText = flags & 2 /* GetLiteralTextFlags.JsxAttributeEscape */ ? escapeJsxAttributeString : flags & 1 /* GetLiteralTextFlags.NeverAsciiEscape */ || (getEmitFlags(node) & 16777216 /* EmitFlags.NoAsciiEscaping */) ? escapeString : escapeNonAsciiString; if (node.singleQuote) { return "'" + escapeText(node.text, 39 /* CharacterCodes.singleQuote */) + "'"; } else { return '"' + escapeText(node.text, 34 /* CharacterCodes.doubleQuote */) + '"'; } } case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: case 15 /* SyntaxKind.TemplateHead */: case 16 /* SyntaxKind.TemplateMiddle */: case 17 /* SyntaxKind.TemplateTail */: { // If a NoSubstitutionTemplateLiteral appears to have a substitution in it, the original text // had to include a backslash: `not \${a} substitution`. var escapeText = flags & 1 /* GetLiteralTextFlags.NeverAsciiEscape */ || (getEmitFlags(node) & 16777216 /* EmitFlags.NoAsciiEscaping */) ? escapeString : escapeNonAsciiString; var rawText = (_a = node.rawText) !== null && _a !== void 0 ? _a : escapeTemplateSubstitution(escapeText(node.text, 96 /* CharacterCodes.backtick */)); switch (node.kind) { case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: return "`" + rawText + "`"; case 15 /* SyntaxKind.TemplateHead */: return "`" + rawText + "${"; case 16 /* SyntaxKind.TemplateMiddle */: return "}" + rawText + "${"; case 17 /* SyntaxKind.TemplateTail */: return "}" + rawText + "`"; } break; } case 8 /* SyntaxKind.NumericLiteral */: case 9 /* SyntaxKind.BigIntLiteral */: return node.text; case 13 /* SyntaxKind.RegularExpressionLiteral */: if (flags & 4 /* GetLiteralTextFlags.TerminateUnterminatedLiterals */ && node.isUnterminated) { return node.text + (node.text.charCodeAt(node.text.length - 1) === 92 /* CharacterCodes.backslash */ ? " /" : "/"); } return node.text; } return ts.Debug.fail("Literal kind '".concat(node.kind, "' not accounted for.")); } ts.getLiteralText = getLiteralText; function canUseOriginalText(node, flags) { if (nodeIsSynthesized(node) || !node.parent || (flags & 4 /* GetLiteralTextFlags.TerminateUnterminatedLiterals */ && node.isUnterminated)) { return false; } if (ts.isNumericLiteral(node) && node.numericLiteralFlags & 512 /* TokenFlags.ContainsSeparator */) { return !!(flags & 8 /* GetLiteralTextFlags.AllowNumericSeparator */); } return !ts.isBigIntLiteral(node); } function getTextOfConstantValue(value) { return ts.isString(value) ? '"' + escapeNonAsciiString(value) + '"' : "" + value; } ts.getTextOfConstantValue = getTextOfConstantValue; // Make an identifier from an external module name by extracting the string after the last "/" and replacing // all non-alphanumeric characters with underscores function makeIdentifierFromModuleName(moduleName) { return ts.getBaseFileName(moduleName).replace(/^(\d)/, "_$1").replace(/\W/g, "_"); } ts.makeIdentifierFromModuleName = makeIdentifierFromModuleName; function isBlockOrCatchScoped(declaration) { return (ts.getCombinedNodeFlags(declaration) & 3 /* NodeFlags.BlockScoped */) !== 0 || isCatchClauseVariableDeclarationOrBindingElement(declaration); } ts.isBlockOrCatchScoped = isBlockOrCatchScoped; function isCatchClauseVariableDeclarationOrBindingElement(declaration) { var node = getRootDeclaration(declaration); return node.kind === 254 /* SyntaxKind.VariableDeclaration */ && node.parent.kind === 292 /* SyntaxKind.CatchClause */; } ts.isCatchClauseVariableDeclarationOrBindingElement = isCatchClauseVariableDeclarationOrBindingElement; function isAmbientModule(node) { return ts.isModuleDeclaration(node) && (node.name.kind === 10 /* SyntaxKind.StringLiteral */ || isGlobalScopeAugmentation(node)); } ts.isAmbientModule = isAmbientModule; function isModuleWithStringLiteralName(node) { return ts.isModuleDeclaration(node) && node.name.kind === 10 /* SyntaxKind.StringLiteral */; } ts.isModuleWithStringLiteralName = isModuleWithStringLiteralName; function isNonGlobalAmbientModule(node) { return ts.isModuleDeclaration(node) && ts.isStringLiteral(node.name); } ts.isNonGlobalAmbientModule = isNonGlobalAmbientModule; /** * An effective module (namespace) declaration is either * 1. An actual declaration: namespace X { ... } * 2. A Javascript declaration, which is: * An identifier in a nested property access expression: Y in `X.Y.Z = { ... }` */ function isEffectiveModuleDeclaration(node) { return ts.isModuleDeclaration(node) || ts.isIdentifier(node); } ts.isEffectiveModuleDeclaration = isEffectiveModuleDeclaration; /** Given a symbol for a module, checks that it is a shorthand ambient module. */ function isShorthandAmbientModuleSymbol(moduleSymbol) { return isShorthandAmbientModule(moduleSymbol.valueDeclaration); } ts.isShorthandAmbientModuleSymbol = isShorthandAmbientModuleSymbol; function isShorthandAmbientModule(node) { // The only kind of module that can be missing a body is a shorthand ambient module. return !!node && node.kind === 261 /* SyntaxKind.ModuleDeclaration */ && (!node.body); } function isBlockScopedContainerTopLevel(node) { return node.kind === 305 /* SyntaxKind.SourceFile */ || node.kind === 261 /* SyntaxKind.ModuleDeclaration */ || ts.isFunctionLikeOrClassStaticBlockDeclaration(node); } ts.isBlockScopedContainerTopLevel = isBlockScopedContainerTopLevel; function isGlobalScopeAugmentation(module) { return !!(module.flags & 1024 /* NodeFlags.GlobalAugmentation */); } ts.isGlobalScopeAugmentation = isGlobalScopeAugmentation; function isExternalModuleAugmentation(node) { return isAmbientModule(node) && isModuleAugmentationExternal(node); } ts.isExternalModuleAugmentation = isExternalModuleAugmentation; function isModuleAugmentationExternal(node) { // external module augmentation is a ambient module declaration that is either: // - defined in the top level scope and source file is an external module // - defined inside ambient module declaration located in the top level scope and source file not an external module switch (node.parent.kind) { case 305 /* SyntaxKind.SourceFile */: return ts.isExternalModule(node.parent); case 262 /* SyntaxKind.ModuleBlock */: return isAmbientModule(node.parent.parent) && ts.isSourceFile(node.parent.parent.parent) && !ts.isExternalModule(node.parent.parent.parent); } return false; } ts.isModuleAugmentationExternal = isModuleAugmentationExternal; function getNonAugmentationDeclaration(symbol) { var _a; return (_a = symbol.declarations) === null || _a === void 0 ? void 0 : _a.find(function (d) { return !isExternalModuleAugmentation(d) && !(ts.isModuleDeclaration(d) && isGlobalScopeAugmentation(d)); }); } ts.getNonAugmentationDeclaration = getNonAugmentationDeclaration; function isCommonJSContainingModuleKind(kind) { return kind === ts.ModuleKind.CommonJS || kind === ts.ModuleKind.Node16 || kind === ts.ModuleKind.NodeNext; } function isEffectiveExternalModule(node, compilerOptions) { return ts.isExternalModule(node) || compilerOptions.isolatedModules || (isCommonJSContainingModuleKind(getEmitModuleKind(compilerOptions)) && !!node.commonJsModuleIndicator); } ts.isEffectiveExternalModule = isEffectiveExternalModule; /** * Returns whether the source file will be treated as if it were in strict mode at runtime. */ function isEffectiveStrictModeSourceFile(node, compilerOptions) { // We can only verify strict mode for JS/TS files switch (node.scriptKind) { case 1 /* ScriptKind.JS */: case 3 /* ScriptKind.TS */: case 2 /* ScriptKind.JSX */: case 4 /* ScriptKind.TSX */: break; default: return false; } // Strict mode does not matter for declaration files. if (node.isDeclarationFile) { return false; } // If `alwaysStrict` is set, then treat the file as strict. if (getStrictOptionValue(compilerOptions, "alwaysStrict")) { return true; } // Starting with a "use strict" directive indicates the file is strict. if (ts.startsWithUseStrict(node.statements)) { return true; } if (ts.isExternalModule(node) || compilerOptions.isolatedModules) { // ECMAScript Modules are always strict. if (getEmitModuleKind(compilerOptions) >= ts.ModuleKind.ES2015) { return true; } // Other modules are strict unless otherwise specified. return !compilerOptions.noImplicitUseStrict; } return false; } ts.isEffectiveStrictModeSourceFile = isEffectiveStrictModeSourceFile; function isBlockScope(node, parentNode) { switch (node.kind) { case 305 /* SyntaxKind.SourceFile */: case 263 /* SyntaxKind.CaseBlock */: case 292 /* SyntaxKind.CatchClause */: case 261 /* SyntaxKind.ModuleDeclaration */: case 242 /* SyntaxKind.ForStatement */: case 243 /* SyntaxKind.ForInStatement */: case 244 /* SyntaxKind.ForOfStatement */: case 171 /* SyntaxKind.Constructor */: case 169 /* SyntaxKind.MethodDeclaration */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 256 /* SyntaxKind.FunctionDeclaration */: case 213 /* SyntaxKind.FunctionExpression */: case 214 /* SyntaxKind.ArrowFunction */: case 167 /* SyntaxKind.PropertyDeclaration */: case 170 /* SyntaxKind.ClassStaticBlockDeclaration */: return true; case 235 /* SyntaxKind.Block */: // function block is not considered block-scope container // see comment in binder.ts: bind(...), case for SyntaxKind.Block return !ts.isFunctionLikeOrClassStaticBlockDeclaration(parentNode); } return false; } ts.isBlockScope = isBlockScope; function isDeclarationWithTypeParameters(node) { switch (node.kind) { case 338 /* SyntaxKind.JSDocCallbackTag */: case 345 /* SyntaxKind.JSDocTypedefTag */: case 323 /* SyntaxKind.JSDocSignature */: return true; default: ts.assertType(node); return isDeclarationWithTypeParameterChildren(node); } } ts.isDeclarationWithTypeParameters = isDeclarationWithTypeParameters; function isDeclarationWithTypeParameterChildren(node) { switch (node.kind) { case 174 /* SyntaxKind.CallSignature */: case 175 /* SyntaxKind.ConstructSignature */: case 168 /* SyntaxKind.MethodSignature */: case 176 /* SyntaxKind.IndexSignature */: case 179 /* SyntaxKind.FunctionType */: case 180 /* SyntaxKind.ConstructorType */: case 317 /* SyntaxKind.JSDocFunctionType */: case 257 /* SyntaxKind.ClassDeclaration */: case 226 /* SyntaxKind.ClassExpression */: case 258 /* SyntaxKind.InterfaceDeclaration */: case 259 /* SyntaxKind.TypeAliasDeclaration */: case 344 /* SyntaxKind.JSDocTemplateTag */: case 256 /* SyntaxKind.FunctionDeclaration */: case 169 /* SyntaxKind.MethodDeclaration */: case 171 /* SyntaxKind.Constructor */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 213 /* SyntaxKind.FunctionExpression */: case 214 /* SyntaxKind.ArrowFunction */: return true; default: ts.assertType(node); return false; } } ts.isDeclarationWithTypeParameterChildren = isDeclarationWithTypeParameterChildren; function isAnyImportSyntax(node) { switch (node.kind) { case 266 /* SyntaxKind.ImportDeclaration */: case 265 /* SyntaxKind.ImportEqualsDeclaration */: return true; default: return false; } } ts.isAnyImportSyntax = isAnyImportSyntax; function isAnyImportOrBareOrAccessedRequire(node) { return isAnyImportSyntax(node) || isVariableDeclarationInitializedToBareOrAccessedRequire(node); } ts.isAnyImportOrBareOrAccessedRequire = isAnyImportOrBareOrAccessedRequire; function isLateVisibilityPaintedStatement(node) { switch (node.kind) { case 266 /* SyntaxKind.ImportDeclaration */: case 265 /* SyntaxKind.ImportEqualsDeclaration */: case 237 /* SyntaxKind.VariableStatement */: case 257 /* SyntaxKind.ClassDeclaration */: case 256 /* SyntaxKind.FunctionDeclaration */: case 261 /* SyntaxKind.ModuleDeclaration */: case 259 /* SyntaxKind.TypeAliasDeclaration */: case 258 /* SyntaxKind.InterfaceDeclaration */: case 260 /* SyntaxKind.EnumDeclaration */: return true; default: return false; } } ts.isLateVisibilityPaintedStatement = isLateVisibilityPaintedStatement; function hasPossibleExternalModuleReference(node) { return isAnyImportOrReExport(node) || ts.isModuleDeclaration(node) || ts.isImportTypeNode(node) || isImportCall(node); } ts.hasPossibleExternalModuleReference = hasPossibleExternalModuleReference; function isAnyImportOrReExport(node) { return isAnyImportSyntax(node) || ts.isExportDeclaration(node); } ts.isAnyImportOrReExport = isAnyImportOrReExport; // Gets the nearest enclosing block scope container that has the provided node // as a descendant, that is not the provided node. function getEnclosingBlockScopeContainer(node) { return ts.findAncestor(node.parent, function (current) { return isBlockScope(current, current.parent); }); } ts.getEnclosingBlockScopeContainer = getEnclosingBlockScopeContainer; function forEachEnclosingBlockScopeContainer(node, cb) { var container = getEnclosingBlockScopeContainer(node); while (container) { cb(container); container = getEnclosingBlockScopeContainer(container); } } ts.forEachEnclosingBlockScopeContainer = forEachEnclosingBlockScopeContainer; // Return display name of an identifier // Computed property names will just be emitted as "[]", where is the source // text of the expression in the computed property. function declarationNameToString(name) { return !name || getFullWidth(name) === 0 ? "(Missing)" : getTextOfNode(name); } ts.declarationNameToString = declarationNameToString; function getNameFromIndexInfo(info) { return info.declaration ? declarationNameToString(info.declaration.parameters[0].name) : undefined; } ts.getNameFromIndexInfo = getNameFromIndexInfo; function isComputedNonLiteralName(name) { return name.kind === 162 /* SyntaxKind.ComputedPropertyName */ && !isStringOrNumericLiteralLike(name.expression); } ts.isComputedNonLiteralName = isComputedNonLiteralName; function tryGetTextOfPropertyName(name) { switch (name.kind) { case 79 /* SyntaxKind.Identifier */: case 80 /* SyntaxKind.PrivateIdentifier */: return name.escapedText; case 10 /* SyntaxKind.StringLiteral */: case 8 /* SyntaxKind.NumericLiteral */: case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: return ts.escapeLeadingUnderscores(name.text); case 162 /* SyntaxKind.ComputedPropertyName */: if (isStringOrNumericLiteralLike(name.expression)) return ts.escapeLeadingUnderscores(name.expression.text); return undefined; default: return ts.Debug.assertNever(name); } } ts.tryGetTextOfPropertyName = tryGetTextOfPropertyName; function getTextOfPropertyName(name) { return ts.Debug.checkDefined(tryGetTextOfPropertyName(name)); } ts.getTextOfPropertyName = getTextOfPropertyName; function entityNameToString(name) { switch (name.kind) { case 108 /* SyntaxKind.ThisKeyword */: return "this"; case 80 /* SyntaxKind.PrivateIdentifier */: case 79 /* SyntaxKind.Identifier */: return getFullWidth(name) === 0 ? ts.idText(name) : getTextOfNode(name); case 161 /* SyntaxKind.QualifiedName */: return entityNameToString(name.left) + "." + entityNameToString(name.right); case 206 /* SyntaxKind.PropertyAccessExpression */: if (ts.isIdentifier(name.name) || ts.isPrivateIdentifier(name.name)) { return entityNameToString(name.expression) + "." + entityNameToString(name.name); } else { return ts.Debug.assertNever(name.name); } case 311 /* SyntaxKind.JSDocMemberName */: return entityNameToString(name.left) + entityNameToString(name.right); default: return ts.Debug.assertNever(name); } } ts.entityNameToString = entityNameToString; function createDiagnosticForNode(node, message, arg0, arg1, arg2, arg3) { var sourceFile = getSourceFileOfNode(node); return createDiagnosticForNodeInSourceFile(sourceFile, node, message, arg0, arg1, arg2, arg3); } ts.createDiagnosticForNode = createDiagnosticForNode; function createDiagnosticForNodeArray(sourceFile, nodes, message, arg0, arg1, arg2, arg3) { var start = ts.skipTrivia(sourceFile.text, nodes.pos); return createFileDiagnostic(sourceFile, start, nodes.end - start, message, arg0, arg1, arg2, arg3); } ts.createDiagnosticForNodeArray = createDiagnosticForNodeArray; function createDiagnosticForNodeInSourceFile(sourceFile, node, message, arg0, arg1, arg2, arg3) { var span = getErrorSpanForNode(sourceFile, node); return createFileDiagnostic(sourceFile, span.start, span.length, message, arg0, arg1, arg2, arg3); } ts.createDiagnosticForNodeInSourceFile = createDiagnosticForNodeInSourceFile; function createDiagnosticForNodeFromMessageChain(node, messageChain, relatedInformation) { var sourceFile = getSourceFileOfNode(node); var span = getErrorSpanForNode(sourceFile, node); return createFileDiagnosticFromMessageChain(sourceFile, span.start, span.length, messageChain, relatedInformation); } ts.createDiagnosticForNodeFromMessageChain = createDiagnosticForNodeFromMessageChain; function assertDiagnosticLocation(file, start, length) { ts.Debug.assertGreaterThanOrEqual(start, 0); ts.Debug.assertGreaterThanOrEqual(length, 0); if (file) { ts.Debug.assertLessThanOrEqual(start, file.text.length); ts.Debug.assertLessThanOrEqual(start + length, file.text.length); } } function createFileDiagnosticFromMessageChain(file, start, length, messageChain, relatedInformation) { assertDiagnosticLocation(file, start, length); return { file: file, start: start, length: length, code: messageChain.code, category: messageChain.category, messageText: messageChain.next ? messageChain : messageChain.messageText, relatedInformation: relatedInformation }; } ts.createFileDiagnosticFromMessageChain = createFileDiagnosticFromMessageChain; function createDiagnosticForFileFromMessageChain(sourceFile, messageChain, relatedInformation) { return { file: sourceFile, start: 0, length: 0, code: messageChain.code, category: messageChain.category, messageText: messageChain.next ? messageChain : messageChain.messageText, relatedInformation: relatedInformation }; } ts.createDiagnosticForFileFromMessageChain = createDiagnosticForFileFromMessageChain; function createDiagnosticMessageChainFromDiagnostic(diagnostic) { return typeof diagnostic.messageText === "string" ? { code: diagnostic.code, category: diagnostic.category, messageText: diagnostic.messageText, next: diagnostic.next, } : diagnostic.messageText; } ts.createDiagnosticMessageChainFromDiagnostic = createDiagnosticMessageChainFromDiagnostic; function createDiagnosticForRange(sourceFile, range, message) { return { file: sourceFile, start: range.pos, length: range.end - range.pos, code: message.code, category: message.category, messageText: message.message, }; } ts.createDiagnosticForRange = createDiagnosticForRange; function getSpanOfTokenAtPosition(sourceFile, pos) { var scanner = ts.createScanner(sourceFile.languageVersion, /*skipTrivia*/ true, sourceFile.languageVariant, sourceFile.text, /*onError:*/ undefined, pos); scanner.scan(); var start = scanner.getTokenPos(); return ts.createTextSpanFromBounds(start, scanner.getTextPos()); } ts.getSpanOfTokenAtPosition = getSpanOfTokenAtPosition; function getErrorSpanForArrowFunction(sourceFile, node) { var pos = ts.skipTrivia(sourceFile.text, node.pos); if (node.body && node.body.kind === 235 /* SyntaxKind.Block */) { var startLine = ts.getLineAndCharacterOfPosition(sourceFile, node.body.pos).line; var endLine = ts.getLineAndCharacterOfPosition(sourceFile, node.body.end).line; if (startLine < endLine) { // The arrow function spans multiple lines, // make the error span be the first line, inclusive. return ts.createTextSpan(pos, getEndLinePosition(startLine, sourceFile) - pos + 1); } } return ts.createTextSpanFromBounds(pos, node.end); } function getErrorSpanForNode(sourceFile, node) { var errorNode = node; switch (node.kind) { case 305 /* SyntaxKind.SourceFile */: var pos_1 = ts.skipTrivia(sourceFile.text, 0, /*stopAfterLineBreak*/ false); if (pos_1 === sourceFile.text.length) { // file is empty - return span for the beginning of the file return ts.createTextSpan(0, 0); } return getSpanOfTokenAtPosition(sourceFile, pos_1); // This list is a work in progress. Add missing node kinds to improve their error // spans. case 254 /* SyntaxKind.VariableDeclaration */: case 203 /* SyntaxKind.BindingElement */: case 257 /* SyntaxKind.ClassDeclaration */: case 226 /* SyntaxKind.ClassExpression */: case 258 /* SyntaxKind.InterfaceDeclaration */: case 261 /* SyntaxKind.ModuleDeclaration */: case 260 /* SyntaxKind.EnumDeclaration */: case 299 /* SyntaxKind.EnumMember */: case 256 /* SyntaxKind.FunctionDeclaration */: case 213 /* SyntaxKind.FunctionExpression */: case 169 /* SyntaxKind.MethodDeclaration */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 259 /* SyntaxKind.TypeAliasDeclaration */: case 167 /* SyntaxKind.PropertyDeclaration */: case 166 /* SyntaxKind.PropertySignature */: case 268 /* SyntaxKind.NamespaceImport */: errorNode = node.name; break; case 214 /* SyntaxKind.ArrowFunction */: return getErrorSpanForArrowFunction(sourceFile, node); case 289 /* SyntaxKind.CaseClause */: case 290 /* SyntaxKind.DefaultClause */: var start = ts.skipTrivia(sourceFile.text, node.pos); var end = node.statements.length > 0 ? node.statements[0].pos : node.end; return ts.createTextSpanFromBounds(start, end); } if (errorNode === undefined) { // If we don't have a better node, then just set the error on the first token of // construct. return getSpanOfTokenAtPosition(sourceFile, node.pos); } ts.Debug.assert(!ts.isJSDoc(errorNode)); var isMissing = nodeIsMissing(errorNode); var pos = isMissing || ts.isJsxText(node) ? errorNode.pos : ts.skipTrivia(sourceFile.text, errorNode.pos); // These asserts should all be satisfied for a properly constructed `errorNode`. if (isMissing) { ts.Debug.assert(pos === errorNode.pos, "This failure could trigger https://github.com/Microsoft/TypeScript/issues/20809"); ts.Debug.assert(pos === errorNode.end, "This failure could trigger https://github.com/Microsoft/TypeScript/issues/20809"); } else { ts.Debug.assert(pos >= errorNode.pos, "This failure could trigger https://github.com/Microsoft/TypeScript/issues/20809"); ts.Debug.assert(pos <= errorNode.end, "This failure could trigger https://github.com/Microsoft/TypeScript/issues/20809"); } return ts.createTextSpanFromBounds(pos, errorNode.end); } ts.getErrorSpanForNode = getErrorSpanForNode; function isExternalOrCommonJsModule(file) { return (file.externalModuleIndicator || file.commonJsModuleIndicator) !== undefined; } ts.isExternalOrCommonJsModule = isExternalOrCommonJsModule; function isJsonSourceFile(file) { return file.scriptKind === 6 /* ScriptKind.JSON */; } ts.isJsonSourceFile = isJsonSourceFile; function isEnumConst(node) { return !!(ts.getCombinedModifierFlags(node) & 2048 /* ModifierFlags.Const */); } ts.isEnumConst = isEnumConst; function isDeclarationReadonly(declaration) { return !!(ts.getCombinedModifierFlags(declaration) & 64 /* ModifierFlags.Readonly */ && !ts.isParameterPropertyDeclaration(declaration, declaration.parent)); } ts.isDeclarationReadonly = isDeclarationReadonly; function isVarConst(node) { return !!(ts.getCombinedNodeFlags(node) & 2 /* NodeFlags.Const */); } ts.isVarConst = isVarConst; function isLet(node) { return !!(ts.getCombinedNodeFlags(node) & 1 /* NodeFlags.Let */); } ts.isLet = isLet; function isSuperCall(n) { return n.kind === 208 /* SyntaxKind.CallExpression */ && n.expression.kind === 106 /* SyntaxKind.SuperKeyword */; } ts.isSuperCall = isSuperCall; function isImportCall(n) { return n.kind === 208 /* SyntaxKind.CallExpression */ && n.expression.kind === 100 /* SyntaxKind.ImportKeyword */; } ts.isImportCall = isImportCall; function isImportMeta(n) { return ts.isMetaProperty(n) && n.keywordToken === 100 /* SyntaxKind.ImportKeyword */ && n.name.escapedText === "meta"; } ts.isImportMeta = isImportMeta; function isLiteralImportTypeNode(n) { return ts.isImportTypeNode(n) && ts.isLiteralTypeNode(n.argument) && ts.isStringLiteral(n.argument.literal); } ts.isLiteralImportTypeNode = isLiteralImportTypeNode; function isPrologueDirective(node) { return node.kind === 238 /* SyntaxKind.ExpressionStatement */ && node.expression.kind === 10 /* SyntaxKind.StringLiteral */; } ts.isPrologueDirective = isPrologueDirective; function isCustomPrologue(node) { return !!(getEmitFlags(node) & 1048576 /* EmitFlags.CustomPrologue */); } ts.isCustomPrologue = isCustomPrologue; function isHoistedFunction(node) { return isCustomPrologue(node) && ts.isFunctionDeclaration(node); } ts.isHoistedFunction = isHoistedFunction; function isHoistedVariable(node) { return ts.isIdentifier(node.name) && !node.initializer; } function isHoistedVariableStatement(node) { return isCustomPrologue(node) && ts.isVariableStatement(node) && ts.every(node.declarationList.declarations, isHoistedVariable); } ts.isHoistedVariableStatement = isHoistedVariableStatement; function getLeadingCommentRangesOfNode(node, sourceFileOfNode) { return node.kind !== 11 /* SyntaxKind.JsxText */ ? ts.getLeadingCommentRanges(sourceFileOfNode.text, node.pos) : undefined; } ts.getLeadingCommentRangesOfNode = getLeadingCommentRangesOfNode; function getJSDocCommentRanges(node, text) { var commentRanges = (node.kind === 164 /* SyntaxKind.Parameter */ || node.kind === 163 /* SyntaxKind.TypeParameter */ || node.kind === 213 /* SyntaxKind.FunctionExpression */ || node.kind === 214 /* SyntaxKind.ArrowFunction */ || node.kind === 212 /* SyntaxKind.ParenthesizedExpression */ || node.kind === 254 /* SyntaxKind.VariableDeclaration */ || node.kind === 275 /* SyntaxKind.ExportSpecifier */) ? ts.concatenate(ts.getTrailingCommentRanges(text, node.pos), ts.getLeadingCommentRanges(text, node.pos)) : ts.getLeadingCommentRanges(text, node.pos); // True if the comment starts with '/**' but not if it is '/**/' return ts.filter(commentRanges, function (comment) { return text.charCodeAt(comment.pos + 1) === 42 /* CharacterCodes.asterisk */ && text.charCodeAt(comment.pos + 2) === 42 /* CharacterCodes.asterisk */ && text.charCodeAt(comment.pos + 3) !== 47 /* CharacterCodes.slash */; }); } ts.getJSDocCommentRanges = getJSDocCommentRanges; ts.fullTripleSlashReferencePathRegEx = /^(\/\/\/\s*/; var fullTripleSlashReferenceTypeReferenceDirectiveRegEx = /^(\/\/\/\s*/; ts.fullTripleSlashAMDReferencePathRegEx = /^(\/\/\/\s*/; var defaultLibReferenceRegEx = /^(\/\/\/\s*/; function isPartOfTypeNode(node) { if (177 /* SyntaxKind.FirstTypeNode */ <= node.kind && node.kind <= 200 /* SyntaxKind.LastTypeNode */) { return true; } switch (node.kind) { case 130 /* SyntaxKind.AnyKeyword */: case 155 /* SyntaxKind.UnknownKeyword */: case 147 /* SyntaxKind.NumberKeyword */: case 158 /* SyntaxKind.BigIntKeyword */: case 150 /* SyntaxKind.StringKeyword */: case 133 /* SyntaxKind.BooleanKeyword */: case 151 /* SyntaxKind.SymbolKeyword */: case 148 /* SyntaxKind.ObjectKeyword */: case 153 /* SyntaxKind.UndefinedKeyword */: case 143 /* SyntaxKind.NeverKeyword */: return true; case 114 /* SyntaxKind.VoidKeyword */: return node.parent.kind !== 217 /* SyntaxKind.VoidExpression */; case 228 /* SyntaxKind.ExpressionWithTypeArguments */: return ts.isHeritageClause(node.parent) && !isExpressionWithTypeArgumentsInClassExtendsClause(node); case 163 /* SyntaxKind.TypeParameter */: return node.parent.kind === 195 /* SyntaxKind.MappedType */ || node.parent.kind === 190 /* SyntaxKind.InferType */; // Identifiers and qualified names may be type nodes, depending on their context. Climb // above them to find the lowest container case 79 /* SyntaxKind.Identifier */: // If the identifier is the RHS of a qualified name, then it's a type iff its parent is. if (node.parent.kind === 161 /* SyntaxKind.QualifiedName */ && node.parent.right === node) { node = node.parent; } else if (node.parent.kind === 206 /* SyntaxKind.PropertyAccessExpression */ && node.parent.name === node) { node = node.parent; } // At this point, node is either a qualified name or an identifier ts.Debug.assert(node.kind === 79 /* SyntaxKind.Identifier */ || node.kind === 161 /* SyntaxKind.QualifiedName */ || node.kind === 206 /* SyntaxKind.PropertyAccessExpression */, "'node' was expected to be a qualified name, identifier or property access in 'isPartOfTypeNode'."); // falls through case 161 /* SyntaxKind.QualifiedName */: case 206 /* SyntaxKind.PropertyAccessExpression */: case 108 /* SyntaxKind.ThisKeyword */: { var parent = node.parent; if (parent.kind === 181 /* SyntaxKind.TypeQuery */) { return false; } if (parent.kind === 200 /* SyntaxKind.ImportType */) { return !parent.isTypeOf; } // Do not recursively call isPartOfTypeNode on the parent. In the example: // // let a: A.B.C; // // Calling isPartOfTypeNode would consider the qualified name A.B a type node. // Only C and A.B.C are type nodes. if (177 /* SyntaxKind.FirstTypeNode */ <= parent.kind && parent.kind <= 200 /* SyntaxKind.LastTypeNode */) { return true; } switch (parent.kind) { case 228 /* SyntaxKind.ExpressionWithTypeArguments */: return ts.isHeritageClause(parent.parent) && !isExpressionWithTypeArgumentsInClassExtendsClause(parent); case 163 /* SyntaxKind.TypeParameter */: return node === parent.constraint; case 344 /* SyntaxKind.JSDocTemplateTag */: return node === parent.constraint; case 167 /* SyntaxKind.PropertyDeclaration */: case 166 /* SyntaxKind.PropertySignature */: case 164 /* SyntaxKind.Parameter */: case 254 /* SyntaxKind.VariableDeclaration */: return node === parent.type; case 256 /* SyntaxKind.FunctionDeclaration */: case 213 /* SyntaxKind.FunctionExpression */: case 214 /* SyntaxKind.ArrowFunction */: case 171 /* SyntaxKind.Constructor */: case 169 /* SyntaxKind.MethodDeclaration */: case 168 /* SyntaxKind.MethodSignature */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: return node === parent.type; case 174 /* SyntaxKind.CallSignature */: case 175 /* SyntaxKind.ConstructSignature */: case 176 /* SyntaxKind.IndexSignature */: return node === parent.type; case 211 /* SyntaxKind.TypeAssertionExpression */: return node === parent.type; case 208 /* SyntaxKind.CallExpression */: case 209 /* SyntaxKind.NewExpression */: return ts.contains(parent.typeArguments, node); case 210 /* SyntaxKind.TaggedTemplateExpression */: // TODO (drosen): TaggedTemplateExpressions may eventually support type arguments. return false; } } } return false; } ts.isPartOfTypeNode = isPartOfTypeNode; function isChildOfNodeWithKind(node, kind) { while (node) { if (node.kind === kind) { return true; } node = node.parent; } return false; } ts.isChildOfNodeWithKind = isChildOfNodeWithKind; // Warning: This has the same semantics as the forEach family of functions, // in that traversal terminates in the event that 'visitor' supplies a truthy value. function forEachReturnStatement(body, visitor) { return traverse(body); function traverse(node) { switch (node.kind) { case 247 /* SyntaxKind.ReturnStatement */: return visitor(node); case 263 /* SyntaxKind.CaseBlock */: case 235 /* SyntaxKind.Block */: case 239 /* SyntaxKind.IfStatement */: case 240 /* SyntaxKind.DoStatement */: case 241 /* SyntaxKind.WhileStatement */: case 242 /* SyntaxKind.ForStatement */: case 243 /* SyntaxKind.ForInStatement */: case 244 /* SyntaxKind.ForOfStatement */: case 248 /* SyntaxKind.WithStatement */: case 249 /* SyntaxKind.SwitchStatement */: case 289 /* SyntaxKind.CaseClause */: case 290 /* SyntaxKind.DefaultClause */: case 250 /* SyntaxKind.LabeledStatement */: case 252 /* SyntaxKind.TryStatement */: case 292 /* SyntaxKind.CatchClause */: return ts.forEachChild(node, traverse); } } } ts.forEachReturnStatement = forEachReturnStatement; function forEachYieldExpression(body, visitor) { return traverse(body); function traverse(node) { switch (node.kind) { case 224 /* SyntaxKind.YieldExpression */: visitor(node); var operand = node.expression; if (operand) { traverse(operand); } return; case 260 /* SyntaxKind.EnumDeclaration */: case 258 /* SyntaxKind.InterfaceDeclaration */: case 261 /* SyntaxKind.ModuleDeclaration */: case 259 /* SyntaxKind.TypeAliasDeclaration */: // These are not allowed inside a generator now, but eventually they may be allowed // as local types. Regardless, skip them to avoid the work. return; default: if (ts.isFunctionLike(node)) { if (node.name && node.name.kind === 162 /* SyntaxKind.ComputedPropertyName */) { // Note that we will not include methods/accessors of a class because they would require // first descending into the class. This is by design. traverse(node.name.expression); return; } } else if (!isPartOfTypeNode(node)) { // This is the general case, which should include mostly expressions and statements. // Also includes NodeArrays. ts.forEachChild(node, traverse); } } } } ts.forEachYieldExpression = forEachYieldExpression; /** * Gets the most likely element type for a TypeNode. This is not an exhaustive test * as it assumes a rest argument can only be an array type (either T[], or Array). * * @param node The type node. */ function getRestParameterElementType(node) { if (node && node.kind === 183 /* SyntaxKind.ArrayType */) { return node.elementType; } else if (node && node.kind === 178 /* SyntaxKind.TypeReference */) { return ts.singleOrUndefined(node.typeArguments); } else { return undefined; } } ts.getRestParameterElementType = getRestParameterElementType; function getMembersOfDeclaration(node) { switch (node.kind) { case 258 /* SyntaxKind.InterfaceDeclaration */: case 257 /* SyntaxKind.ClassDeclaration */: case 226 /* SyntaxKind.ClassExpression */: case 182 /* SyntaxKind.TypeLiteral */: return node.members; case 205 /* SyntaxKind.ObjectLiteralExpression */: return node.properties; } } ts.getMembersOfDeclaration = getMembersOfDeclaration; function isVariableLike(node) { if (node) { switch (node.kind) { case 203 /* SyntaxKind.BindingElement */: case 299 /* SyntaxKind.EnumMember */: case 164 /* SyntaxKind.Parameter */: case 296 /* SyntaxKind.PropertyAssignment */: case 167 /* SyntaxKind.PropertyDeclaration */: case 166 /* SyntaxKind.PropertySignature */: case 297 /* SyntaxKind.ShorthandPropertyAssignment */: case 254 /* SyntaxKind.VariableDeclaration */: return true; } } return false; } ts.isVariableLike = isVariableLike; function isVariableLikeOrAccessor(node) { return isVariableLike(node) || ts.isAccessor(node); } ts.isVariableLikeOrAccessor = isVariableLikeOrAccessor; function isVariableDeclarationInVariableStatement(node) { return node.parent.kind === 255 /* SyntaxKind.VariableDeclarationList */ && node.parent.parent.kind === 237 /* SyntaxKind.VariableStatement */; } ts.isVariableDeclarationInVariableStatement = isVariableDeclarationInVariableStatement; function isCommonJsExportedExpression(node) { if (!isInJSFile(node)) return false; return (ts.isObjectLiteralExpression(node.parent) && ts.isBinaryExpression(node.parent.parent) && getAssignmentDeclarationKind(node.parent.parent) === 2 /* AssignmentDeclarationKind.ModuleExports */) || isCommonJsExportPropertyAssignment(node.parent); } ts.isCommonJsExportedExpression = isCommonJsExportedExpression; function isCommonJsExportPropertyAssignment(node) { if (!isInJSFile(node)) return false; return (ts.isBinaryExpression(node) && getAssignmentDeclarationKind(node) === 1 /* AssignmentDeclarationKind.ExportsProperty */); } ts.isCommonJsExportPropertyAssignment = isCommonJsExportPropertyAssignment; function isValidESSymbolDeclaration(node) { return (ts.isVariableDeclaration(node) ? isVarConst(node) && ts.isIdentifier(node.name) && isVariableDeclarationInVariableStatement(node) : ts.isPropertyDeclaration(node) ? hasEffectiveReadonlyModifier(node) && hasStaticModifier(node) : ts.isPropertySignature(node) && hasEffectiveReadonlyModifier(node)) || isCommonJsExportPropertyAssignment(node); } ts.isValidESSymbolDeclaration = isValidESSymbolDeclaration; function introducesArgumentsExoticObject(node) { switch (node.kind) { case 169 /* SyntaxKind.MethodDeclaration */: case 168 /* SyntaxKind.MethodSignature */: case 171 /* SyntaxKind.Constructor */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 256 /* SyntaxKind.FunctionDeclaration */: case 213 /* SyntaxKind.FunctionExpression */: return true; } return false; } ts.introducesArgumentsExoticObject = introducesArgumentsExoticObject; function unwrapInnermostStatementOfLabel(node, beforeUnwrapLabelCallback) { while (true) { if (beforeUnwrapLabelCallback) { beforeUnwrapLabelCallback(node); } if (node.statement.kind !== 250 /* SyntaxKind.LabeledStatement */) { return node.statement; } node = node.statement; } } ts.unwrapInnermostStatementOfLabel = unwrapInnermostStatementOfLabel; function isFunctionBlock(node) { return node && node.kind === 235 /* SyntaxKind.Block */ && ts.isFunctionLike(node.parent); } ts.isFunctionBlock = isFunctionBlock; function isObjectLiteralMethod(node) { return node && node.kind === 169 /* SyntaxKind.MethodDeclaration */ && node.parent.kind === 205 /* SyntaxKind.ObjectLiteralExpression */; } ts.isObjectLiteralMethod = isObjectLiteralMethod; function isObjectLiteralOrClassExpressionMethodOrAccessor(node) { return (node.kind === 169 /* SyntaxKind.MethodDeclaration */ || node.kind === 172 /* SyntaxKind.GetAccessor */ || node.kind === 173 /* SyntaxKind.SetAccessor */) && (node.parent.kind === 205 /* SyntaxKind.ObjectLiteralExpression */ || node.parent.kind === 226 /* SyntaxKind.ClassExpression */); } ts.isObjectLiteralOrClassExpressionMethodOrAccessor = isObjectLiteralOrClassExpressionMethodOrAccessor; function isIdentifierTypePredicate(predicate) { return predicate && predicate.kind === 1 /* TypePredicateKind.Identifier */; } ts.isIdentifierTypePredicate = isIdentifierTypePredicate; function isThisTypePredicate(predicate) { return predicate && predicate.kind === 0 /* TypePredicateKind.This */; } ts.isThisTypePredicate = isThisTypePredicate; function getPropertyAssignment(objectLiteral, key, key2) { return objectLiteral.properties.filter(function (property) { if (property.kind === 296 /* SyntaxKind.PropertyAssignment */) { var propName = tryGetTextOfPropertyName(property.name); return key === propName || (!!key2 && key2 === propName); } return false; }); } ts.getPropertyAssignment = getPropertyAssignment; function getPropertyArrayElementValue(objectLiteral, propKey, elementValue) { return ts.firstDefined(getPropertyAssignment(objectLiteral, propKey), function (property) { return ts.isArrayLiteralExpression(property.initializer) ? ts.find(property.initializer.elements, function (element) { return ts.isStringLiteral(element) && element.text === elementValue; }) : undefined; }); } ts.getPropertyArrayElementValue = getPropertyArrayElementValue; function getTsConfigObjectLiteralExpression(tsConfigSourceFile) { if (tsConfigSourceFile && tsConfigSourceFile.statements.length) { var expression = tsConfigSourceFile.statements[0].expression; return ts.tryCast(expression, ts.isObjectLiteralExpression); } } ts.getTsConfigObjectLiteralExpression = getTsConfigObjectLiteralExpression; function getTsConfigPropArrayElementValue(tsConfigSourceFile, propKey, elementValue) { return ts.firstDefined(getTsConfigPropArray(tsConfigSourceFile, propKey), function (property) { return ts.isArrayLiteralExpression(property.initializer) ? ts.find(property.initializer.elements, function (element) { return ts.isStringLiteral(element) && element.text === elementValue; }) : undefined; }); } ts.getTsConfigPropArrayElementValue = getTsConfigPropArrayElementValue; function getTsConfigPropArray(tsConfigSourceFile, propKey) { var jsonObjectLiteral = getTsConfigObjectLiteralExpression(tsConfigSourceFile); return jsonObjectLiteral ? getPropertyAssignment(jsonObjectLiteral, propKey) : ts.emptyArray; } ts.getTsConfigPropArray = getTsConfigPropArray; function getContainingFunction(node) { return ts.findAncestor(node.parent, ts.isFunctionLike); } ts.getContainingFunction = getContainingFunction; function getContainingFunctionDeclaration(node) { return ts.findAncestor(node.parent, ts.isFunctionLikeDeclaration); } ts.getContainingFunctionDeclaration = getContainingFunctionDeclaration; function getContainingClass(node) { return ts.findAncestor(node.parent, ts.isClassLike); } ts.getContainingClass = getContainingClass; function getContainingClassStaticBlock(node) { return ts.findAncestor(node.parent, function (n) { if (ts.isClassLike(n) || ts.isFunctionLike(n)) { return "quit"; } return ts.isClassStaticBlockDeclaration(n); }); } ts.getContainingClassStaticBlock = getContainingClassStaticBlock; function getContainingFunctionOrClassStaticBlock(node) { return ts.findAncestor(node.parent, ts.isFunctionLikeOrClassStaticBlockDeclaration); } ts.getContainingFunctionOrClassStaticBlock = getContainingFunctionOrClassStaticBlock; function getThisContainer(node, includeArrowFunctions) { ts.Debug.assert(node.kind !== 305 /* SyntaxKind.SourceFile */); while (true) { node = node.parent; if (!node) { return ts.Debug.fail(); // If we never pass in a SourceFile, this should be unreachable, since we'll stop when we reach that. } switch (node.kind) { case 162 /* SyntaxKind.ComputedPropertyName */: // If the grandparent node is an object literal (as opposed to a class), // then the computed property is not a 'this' container. // A computed property name in a class needs to be a this container // so that we can error on it. if (ts.isClassLike(node.parent.parent)) { return node; } // If this is a computed property, then the parent should not // make it a this container. The parent might be a property // in an object literal, like a method or accessor. But in order for // such a parent to be a this container, the reference must be in // the *body* of the container. node = node.parent; break; case 165 /* SyntaxKind.Decorator */: // Decorators are always applied outside of the body of a class or method. if (node.parent.kind === 164 /* SyntaxKind.Parameter */ && ts.isClassElement(node.parent.parent)) { // If the decorator's parent is a Parameter, we resolve the this container from // the grandparent class declaration. node = node.parent.parent; } else if (ts.isClassElement(node.parent)) { // If the decorator's parent is a class element, we resolve the 'this' container // from the parent class declaration. node = node.parent; } break; case 214 /* SyntaxKind.ArrowFunction */: if (!includeArrowFunctions) { continue; } // falls through case 256 /* SyntaxKind.FunctionDeclaration */: case 213 /* SyntaxKind.FunctionExpression */: case 261 /* SyntaxKind.ModuleDeclaration */: case 170 /* SyntaxKind.ClassStaticBlockDeclaration */: case 167 /* SyntaxKind.PropertyDeclaration */: case 166 /* SyntaxKind.PropertySignature */: case 169 /* SyntaxKind.MethodDeclaration */: case 168 /* SyntaxKind.MethodSignature */: case 171 /* SyntaxKind.Constructor */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 174 /* SyntaxKind.CallSignature */: case 175 /* SyntaxKind.ConstructSignature */: case 176 /* SyntaxKind.IndexSignature */: case 260 /* SyntaxKind.EnumDeclaration */: case 305 /* SyntaxKind.SourceFile */: return node; } } } ts.getThisContainer = getThisContainer; /** * @returns Whether the node creates a new 'this' scope for its children. */ function isThisContainerOrFunctionBlock(node) { switch (node.kind) { // Arrow functions use the same scope, but may do so in a "delayed" manner // For example, `const getThis = () => this` may be before a super() call in a derived constructor case 214 /* SyntaxKind.ArrowFunction */: case 256 /* SyntaxKind.FunctionDeclaration */: case 213 /* SyntaxKind.FunctionExpression */: case 167 /* SyntaxKind.PropertyDeclaration */: return true; case 235 /* SyntaxKind.Block */: switch (node.parent.kind) { case 171 /* SyntaxKind.Constructor */: case 169 /* SyntaxKind.MethodDeclaration */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: // Object properties can have computed names; only method-like bodies start a new scope return true; default: return false; } default: return false; } } ts.isThisContainerOrFunctionBlock = isThisContainerOrFunctionBlock; function isInTopLevelContext(node) { // The name of a class or function declaration is a BindingIdentifier in its surrounding scope. if (ts.isIdentifier(node) && (ts.isClassDeclaration(node.parent) || ts.isFunctionDeclaration(node.parent)) && node.parent.name === node) { node = node.parent; } var container = getThisContainer(node, /*includeArrowFunctions*/ true); return ts.isSourceFile(container); } ts.isInTopLevelContext = isInTopLevelContext; function getNewTargetContainer(node) { var container = getThisContainer(node, /*includeArrowFunctions*/ false); if (container) { switch (container.kind) { case 171 /* SyntaxKind.Constructor */: case 256 /* SyntaxKind.FunctionDeclaration */: case 213 /* SyntaxKind.FunctionExpression */: return container; } } return undefined; } ts.getNewTargetContainer = getNewTargetContainer; /** * Given an super call/property node, returns the closest node where * - a super call/property access is legal in the node and not legal in the parent node the node. * i.e. super call is legal in constructor but not legal in the class body. * - the container is an arrow function (so caller might need to call getSuperContainer again in case it needs to climb higher) * - a super call/property is definitely illegal in the container (but might be legal in some subnode) * i.e. super property access is illegal in function declaration but can be legal in the statement list */ function getSuperContainer(node, stopOnFunctions) { while (true) { node = node.parent; if (!node) { return node; } switch (node.kind) { case 162 /* SyntaxKind.ComputedPropertyName */: node = node.parent; break; case 256 /* SyntaxKind.FunctionDeclaration */: case 213 /* SyntaxKind.FunctionExpression */: case 214 /* SyntaxKind.ArrowFunction */: if (!stopOnFunctions) { continue; } // falls through case 167 /* SyntaxKind.PropertyDeclaration */: case 166 /* SyntaxKind.PropertySignature */: case 169 /* SyntaxKind.MethodDeclaration */: case 168 /* SyntaxKind.MethodSignature */: case 171 /* SyntaxKind.Constructor */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 170 /* SyntaxKind.ClassStaticBlockDeclaration */: return node; case 165 /* SyntaxKind.Decorator */: // Decorators are always applied outside of the body of a class or method. if (node.parent.kind === 164 /* SyntaxKind.Parameter */ && ts.isClassElement(node.parent.parent)) { // If the decorator's parent is a Parameter, we resolve the this container from // the grandparent class declaration. node = node.parent.parent; } else if (ts.isClassElement(node.parent)) { // If the decorator's parent is a class element, we resolve the 'this' container // from the parent class declaration. node = node.parent; } break; } } } ts.getSuperContainer = getSuperContainer; function getImmediatelyInvokedFunctionExpression(func) { if (func.kind === 213 /* SyntaxKind.FunctionExpression */ || func.kind === 214 /* SyntaxKind.ArrowFunction */) { var prev = func; var parent = func.parent; while (parent.kind === 212 /* SyntaxKind.ParenthesizedExpression */) { prev = parent; parent = parent.parent; } if (parent.kind === 208 /* SyntaxKind.CallExpression */ && parent.expression === prev) { return parent; } } } ts.getImmediatelyInvokedFunctionExpression = getImmediatelyInvokedFunctionExpression; function isSuperOrSuperProperty(node) { return node.kind === 106 /* SyntaxKind.SuperKeyword */ || isSuperProperty(node); } ts.isSuperOrSuperProperty = isSuperOrSuperProperty; /** * Determines whether a node is a property or element access expression for `super`. */ function isSuperProperty(node) { var kind = node.kind; return (kind === 206 /* SyntaxKind.PropertyAccessExpression */ || kind === 207 /* SyntaxKind.ElementAccessExpression */) && node.expression.kind === 106 /* SyntaxKind.SuperKeyword */; } ts.isSuperProperty = isSuperProperty; /** * Determines whether a node is a property or element access expression for `this`. */ function isThisProperty(node) { var kind = node.kind; return (kind === 206 /* SyntaxKind.PropertyAccessExpression */ || kind === 207 /* SyntaxKind.ElementAccessExpression */) && node.expression.kind === 108 /* SyntaxKind.ThisKeyword */; } ts.isThisProperty = isThisProperty; function isThisInitializedDeclaration(node) { var _a; return !!node && ts.isVariableDeclaration(node) && ((_a = node.initializer) === null || _a === void 0 ? void 0 : _a.kind) === 108 /* SyntaxKind.ThisKeyword */; } ts.isThisInitializedDeclaration = isThisInitializedDeclaration; function isThisInitializedObjectBindingExpression(node) { return !!node && (ts.isShorthandPropertyAssignment(node) || ts.isPropertyAssignment(node)) && ts.isBinaryExpression(node.parent.parent) && node.parent.parent.operatorToken.kind === 63 /* SyntaxKind.EqualsToken */ && node.parent.parent.right.kind === 108 /* SyntaxKind.ThisKeyword */; } ts.isThisInitializedObjectBindingExpression = isThisInitializedObjectBindingExpression; function getEntityNameFromTypeNode(node) { switch (node.kind) { case 178 /* SyntaxKind.TypeReference */: return node.typeName; case 228 /* SyntaxKind.ExpressionWithTypeArguments */: return isEntityNameExpression(node.expression) ? node.expression : undefined; // TODO(rbuckton): These aren't valid TypeNodes, but we treat them as such because of `isPartOfTypeNode`, which returns `true` for things that aren't `TypeNode`s. case 79 /* SyntaxKind.Identifier */: case 161 /* SyntaxKind.QualifiedName */: return node; } return undefined; } ts.getEntityNameFromTypeNode = getEntityNameFromTypeNode; function getInvokedExpression(node) { switch (node.kind) { case 210 /* SyntaxKind.TaggedTemplateExpression */: return node.tag; case 280 /* SyntaxKind.JsxOpeningElement */: case 279 /* SyntaxKind.JsxSelfClosingElement */: return node.tagName; default: return node.expression; } } ts.getInvokedExpression = getInvokedExpression; function nodeCanBeDecorated(node, parent, grandparent) { // private names cannot be used with decorators yet if (ts.isNamedDeclaration(node) && ts.isPrivateIdentifier(node.name)) { return false; } switch (node.kind) { case 257 /* SyntaxKind.ClassDeclaration */: // classes are valid targets return true; case 167 /* SyntaxKind.PropertyDeclaration */: // property declarations are valid if their parent is a class declaration. return parent.kind === 257 /* SyntaxKind.ClassDeclaration */; case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 169 /* SyntaxKind.MethodDeclaration */: // if this method has a body and its parent is a class declaration, this is a valid target. return node.body !== undefined && parent.kind === 257 /* SyntaxKind.ClassDeclaration */; case 164 /* SyntaxKind.Parameter */: // if the parameter's parent has a body and its grandparent is a class declaration, this is a valid target; return parent.body !== undefined && (parent.kind === 171 /* SyntaxKind.Constructor */ || parent.kind === 169 /* SyntaxKind.MethodDeclaration */ || parent.kind === 173 /* SyntaxKind.SetAccessor */) && grandparent.kind === 257 /* SyntaxKind.ClassDeclaration */; } return false; } ts.nodeCanBeDecorated = nodeCanBeDecorated; function nodeIsDecorated(node, parent, grandparent) { return node.decorators !== undefined && nodeCanBeDecorated(node, parent, grandparent); // TODO: GH#18217 } ts.nodeIsDecorated = nodeIsDecorated; function nodeOrChildIsDecorated(node, parent, grandparent) { return nodeIsDecorated(node, parent, grandparent) || childIsDecorated(node, parent); // TODO: GH#18217 } ts.nodeOrChildIsDecorated = nodeOrChildIsDecorated; function childIsDecorated(node, parent) { switch (node.kind) { case 257 /* SyntaxKind.ClassDeclaration */: return ts.some(node.members, function (m) { return nodeOrChildIsDecorated(m, node, parent); }); // TODO: GH#18217 case 169 /* SyntaxKind.MethodDeclaration */: case 173 /* SyntaxKind.SetAccessor */: case 171 /* SyntaxKind.Constructor */: return ts.some(node.parameters, function (p) { return nodeIsDecorated(p, node, parent); }); // TODO: GH#18217 default: return false; } } ts.childIsDecorated = childIsDecorated; function classOrConstructorParameterIsDecorated(node) { if (nodeIsDecorated(node)) return true; var constructor = getFirstConstructorWithBody(node); return !!constructor && childIsDecorated(constructor, node); } ts.classOrConstructorParameterIsDecorated = classOrConstructorParameterIsDecorated; function isJSXTagName(node) { var parent = node.parent; if (parent.kind === 280 /* SyntaxKind.JsxOpeningElement */ || parent.kind === 279 /* SyntaxKind.JsxSelfClosingElement */ || parent.kind === 281 /* SyntaxKind.JsxClosingElement */) { return parent.tagName === node; } return false; } ts.isJSXTagName = isJSXTagName; function isExpressionNode(node) { switch (node.kind) { case 106 /* SyntaxKind.SuperKeyword */: case 104 /* SyntaxKind.NullKeyword */: case 110 /* SyntaxKind.TrueKeyword */: case 95 /* SyntaxKind.FalseKeyword */: case 13 /* SyntaxKind.RegularExpressionLiteral */: case 204 /* SyntaxKind.ArrayLiteralExpression */: case 205 /* SyntaxKind.ObjectLiteralExpression */: case 206 /* SyntaxKind.PropertyAccessExpression */: case 207 /* SyntaxKind.ElementAccessExpression */: case 208 /* SyntaxKind.CallExpression */: case 209 /* SyntaxKind.NewExpression */: case 210 /* SyntaxKind.TaggedTemplateExpression */: case 229 /* SyntaxKind.AsExpression */: case 211 /* SyntaxKind.TypeAssertionExpression */: case 230 /* SyntaxKind.NonNullExpression */: case 212 /* SyntaxKind.ParenthesizedExpression */: case 213 /* SyntaxKind.FunctionExpression */: case 226 /* SyntaxKind.ClassExpression */: case 214 /* SyntaxKind.ArrowFunction */: case 217 /* SyntaxKind.VoidExpression */: case 215 /* SyntaxKind.DeleteExpression */: case 216 /* SyntaxKind.TypeOfExpression */: case 219 /* SyntaxKind.PrefixUnaryExpression */: case 220 /* SyntaxKind.PostfixUnaryExpression */: case 221 /* SyntaxKind.BinaryExpression */: case 222 /* SyntaxKind.ConditionalExpression */: case 225 /* SyntaxKind.SpreadElement */: case 223 /* SyntaxKind.TemplateExpression */: case 227 /* SyntaxKind.OmittedExpression */: case 278 /* SyntaxKind.JsxElement */: case 279 /* SyntaxKind.JsxSelfClosingElement */: case 282 /* SyntaxKind.JsxFragment */: case 224 /* SyntaxKind.YieldExpression */: case 218 /* SyntaxKind.AwaitExpression */: case 231 /* SyntaxKind.MetaProperty */: return true; case 228 /* SyntaxKind.ExpressionWithTypeArguments */: return !ts.isHeritageClause(node.parent); case 161 /* SyntaxKind.QualifiedName */: while (node.parent.kind === 161 /* SyntaxKind.QualifiedName */) { node = node.parent; } return node.parent.kind === 181 /* SyntaxKind.TypeQuery */ || ts.isJSDocLinkLike(node.parent) || ts.isJSDocNameReference(node.parent) || ts.isJSDocMemberName(node.parent) || isJSXTagName(node); case 311 /* SyntaxKind.JSDocMemberName */: while (ts.isJSDocMemberName(node.parent)) { node = node.parent; } return node.parent.kind === 181 /* SyntaxKind.TypeQuery */ || ts.isJSDocLinkLike(node.parent) || ts.isJSDocNameReference(node.parent) || ts.isJSDocMemberName(node.parent) || isJSXTagName(node); case 80 /* SyntaxKind.PrivateIdentifier */: return ts.isBinaryExpression(node.parent) && node.parent.left === node && node.parent.operatorToken.kind === 101 /* SyntaxKind.InKeyword */; case 79 /* SyntaxKind.Identifier */: if (node.parent.kind === 181 /* SyntaxKind.TypeQuery */ || ts.isJSDocLinkLike(node.parent) || ts.isJSDocNameReference(node.parent) || ts.isJSDocMemberName(node.parent) || isJSXTagName(node)) { return true; } // falls through case 8 /* SyntaxKind.NumericLiteral */: case 9 /* SyntaxKind.BigIntLiteral */: case 10 /* SyntaxKind.StringLiteral */: case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: case 108 /* SyntaxKind.ThisKeyword */: return isInExpressionContext(node); default: return false; } } ts.isExpressionNode = isExpressionNode; function isInExpressionContext(node) { var parent = node.parent; switch (parent.kind) { case 254 /* SyntaxKind.VariableDeclaration */: case 164 /* SyntaxKind.Parameter */: case 167 /* SyntaxKind.PropertyDeclaration */: case 166 /* SyntaxKind.PropertySignature */: case 299 /* SyntaxKind.EnumMember */: case 296 /* SyntaxKind.PropertyAssignment */: case 203 /* SyntaxKind.BindingElement */: return parent.initializer === node; case 238 /* SyntaxKind.ExpressionStatement */: case 239 /* SyntaxKind.IfStatement */: case 240 /* SyntaxKind.DoStatement */: case 241 /* SyntaxKind.WhileStatement */: case 247 /* SyntaxKind.ReturnStatement */: case 248 /* SyntaxKind.WithStatement */: case 249 /* SyntaxKind.SwitchStatement */: case 289 /* SyntaxKind.CaseClause */: case 251 /* SyntaxKind.ThrowStatement */: return parent.expression === node; case 242 /* SyntaxKind.ForStatement */: var forStatement = parent; return (forStatement.initializer === node && forStatement.initializer.kind !== 255 /* SyntaxKind.VariableDeclarationList */) || forStatement.condition === node || forStatement.incrementor === node; case 243 /* SyntaxKind.ForInStatement */: case 244 /* SyntaxKind.ForOfStatement */: var forInStatement = parent; return (forInStatement.initializer === node && forInStatement.initializer.kind !== 255 /* SyntaxKind.VariableDeclarationList */) || forInStatement.expression === node; case 211 /* SyntaxKind.TypeAssertionExpression */: case 229 /* SyntaxKind.AsExpression */: return node === parent.expression; case 233 /* SyntaxKind.TemplateSpan */: return node === parent.expression; case 162 /* SyntaxKind.ComputedPropertyName */: return node === parent.expression; case 165 /* SyntaxKind.Decorator */: case 288 /* SyntaxKind.JsxExpression */: case 287 /* SyntaxKind.JsxSpreadAttribute */: case 298 /* SyntaxKind.SpreadAssignment */: return true; case 228 /* SyntaxKind.ExpressionWithTypeArguments */: return parent.expression === node && !isPartOfTypeNode(parent); case 297 /* SyntaxKind.ShorthandPropertyAssignment */: return parent.objectAssignmentInitializer === node; default: return isExpressionNode(parent); } } ts.isInExpressionContext = isInExpressionContext; function isPartOfTypeQuery(node) { while (node.kind === 161 /* SyntaxKind.QualifiedName */ || node.kind === 79 /* SyntaxKind.Identifier */) { node = node.parent; } return node.kind === 181 /* SyntaxKind.TypeQuery */; } ts.isPartOfTypeQuery = isPartOfTypeQuery; function isNamespaceReexportDeclaration(node) { return ts.isNamespaceExport(node) && !!node.parent.moduleSpecifier; } ts.isNamespaceReexportDeclaration = isNamespaceReexportDeclaration; function isExternalModuleImportEqualsDeclaration(node) { return node.kind === 265 /* SyntaxKind.ImportEqualsDeclaration */ && node.moduleReference.kind === 277 /* SyntaxKind.ExternalModuleReference */; } ts.isExternalModuleImportEqualsDeclaration = isExternalModuleImportEqualsDeclaration; function getExternalModuleImportEqualsDeclarationExpression(node) { ts.Debug.assert(isExternalModuleImportEqualsDeclaration(node)); return node.moduleReference.expression; } ts.getExternalModuleImportEqualsDeclarationExpression = getExternalModuleImportEqualsDeclarationExpression; function getExternalModuleRequireArgument(node) { return isVariableDeclarationInitializedToBareOrAccessedRequire(node) && getLeftmostAccessExpression(node.initializer).arguments[0]; } ts.getExternalModuleRequireArgument = getExternalModuleRequireArgument; function isInternalModuleImportEqualsDeclaration(node) { return node.kind === 265 /* SyntaxKind.ImportEqualsDeclaration */ && node.moduleReference.kind !== 277 /* SyntaxKind.ExternalModuleReference */; } ts.isInternalModuleImportEqualsDeclaration = isInternalModuleImportEqualsDeclaration; function isSourceFileJS(file) { return isInJSFile(file); } ts.isSourceFileJS = isSourceFileJS; function isSourceFileNotJS(file) { return !isInJSFile(file); } ts.isSourceFileNotJS = isSourceFileNotJS; function isInJSFile(node) { return !!node && !!(node.flags & 262144 /* NodeFlags.JavaScriptFile */); } ts.isInJSFile = isInJSFile; function isInJsonFile(node) { return !!node && !!(node.flags & 67108864 /* NodeFlags.JsonFile */); } ts.isInJsonFile = isInJsonFile; function isSourceFileNotJson(file) { return !isJsonSourceFile(file); } ts.isSourceFileNotJson = isSourceFileNotJson; function isInJSDoc(node) { return !!node && !!(node.flags & 8388608 /* NodeFlags.JSDoc */); } ts.isInJSDoc = isInJSDoc; function isJSDocIndexSignature(node) { return ts.isTypeReferenceNode(node) && ts.isIdentifier(node.typeName) && node.typeName.escapedText === "Object" && node.typeArguments && node.typeArguments.length === 2 && (node.typeArguments[0].kind === 150 /* SyntaxKind.StringKeyword */ || node.typeArguments[0].kind === 147 /* SyntaxKind.NumberKeyword */); } ts.isJSDocIndexSignature = isJSDocIndexSignature; function isRequireCall(callExpression, requireStringLiteralLikeArgument) { if (callExpression.kind !== 208 /* SyntaxKind.CallExpression */) { return false; } var _a = callExpression, expression = _a.expression, args = _a.arguments; if (expression.kind !== 79 /* SyntaxKind.Identifier */ || expression.escapedText !== "require") { return false; } if (args.length !== 1) { return false; } var arg = args[0]; return !requireStringLiteralLikeArgument || ts.isStringLiteralLike(arg); } ts.isRequireCall = isRequireCall; /** * Returns true if the node is a VariableDeclaration initialized to a require call (see `isRequireCall`). * This function does not test if the node is in a JavaScript file or not. */ function isVariableDeclarationInitializedToRequire(node) { return isVariableDeclarationInitializedWithRequireHelper(node, /*allowAccessedRequire*/ false); } ts.isVariableDeclarationInitializedToRequire = isVariableDeclarationInitializedToRequire; /** * Like {@link isVariableDeclarationInitializedToRequire} but allows things like `require("...").foo.bar` or `require("...")["baz"]`. */ function isVariableDeclarationInitializedToBareOrAccessedRequire(node) { return isVariableDeclarationInitializedWithRequireHelper(node, /*allowAccessedRequire*/ true); } ts.isVariableDeclarationInitializedToBareOrAccessedRequire = isVariableDeclarationInitializedToBareOrAccessedRequire; function isVariableDeclarationInitializedWithRequireHelper(node, allowAccessedRequire) { return ts.isVariableDeclaration(node) && !!node.initializer && isRequireCall(allowAccessedRequire ? getLeftmostAccessExpression(node.initializer) : node.initializer, /*requireStringLiteralLikeArgument*/ true); } function isRequireVariableStatement(node) { return ts.isVariableStatement(node) && node.declarationList.declarations.length > 0 && ts.every(node.declarationList.declarations, function (decl) { return isVariableDeclarationInitializedToRequire(decl); }); } ts.isRequireVariableStatement = isRequireVariableStatement; function isSingleOrDoubleQuote(charCode) { return charCode === 39 /* CharacterCodes.singleQuote */ || charCode === 34 /* CharacterCodes.doubleQuote */; } ts.isSingleOrDoubleQuote = isSingleOrDoubleQuote; function isStringDoubleQuoted(str, sourceFile) { return getSourceTextOfNodeFromSourceFile(sourceFile, str).charCodeAt(0) === 34 /* CharacterCodes.doubleQuote */; } ts.isStringDoubleQuoted = isStringDoubleQuoted; function isAssignmentDeclaration(decl) { return ts.isBinaryExpression(decl) || isAccessExpression(decl) || ts.isIdentifier(decl) || ts.isCallExpression(decl); } ts.isAssignmentDeclaration = isAssignmentDeclaration; /** Get the initializer, taking into account defaulted Javascript initializers */ function getEffectiveInitializer(node) { if (isInJSFile(node) && node.initializer && ts.isBinaryExpression(node.initializer) && (node.initializer.operatorToken.kind === 56 /* SyntaxKind.BarBarToken */ || node.initializer.operatorToken.kind === 60 /* SyntaxKind.QuestionQuestionToken */) && node.name && isEntityNameExpression(node.name) && isSameEntityName(node.name, node.initializer.left)) { return node.initializer.right; } return node.initializer; } ts.getEffectiveInitializer = getEffectiveInitializer; /** Get the declaration initializer when it is container-like (See getExpandoInitializer). */ function getDeclaredExpandoInitializer(node) { var init = getEffectiveInitializer(node); return init && getExpandoInitializer(init, isPrototypeAccess(node.name)); } ts.getDeclaredExpandoInitializer = getDeclaredExpandoInitializer; function hasExpandoValueProperty(node, isPrototypeAssignment) { return ts.forEach(node.properties, function (p) { return ts.isPropertyAssignment(p) && ts.isIdentifier(p.name) && p.name.escapedText === "value" && p.initializer && getExpandoInitializer(p.initializer, isPrototypeAssignment); }); } /** * Get the assignment 'initializer' -- the righthand side-- when the initializer is container-like (See getExpandoInitializer). * We treat the right hand side of assignments with container-like initializers as declarations. */ function getAssignedExpandoInitializer(node) { if (node && node.parent && ts.isBinaryExpression(node.parent) && node.parent.operatorToken.kind === 63 /* SyntaxKind.EqualsToken */) { var isPrototypeAssignment = isPrototypeAccess(node.parent.left); return getExpandoInitializer(node.parent.right, isPrototypeAssignment) || getDefaultedExpandoInitializer(node.parent.left, node.parent.right, isPrototypeAssignment); } if (node && ts.isCallExpression(node) && isBindableObjectDefinePropertyCall(node)) { var result = hasExpandoValueProperty(node.arguments[2], node.arguments[1].text === "prototype"); if (result) { return result; } } } ts.getAssignedExpandoInitializer = getAssignedExpandoInitializer; /** * Recognized expando initializers are: * 1. (function() {})() -- IIFEs * 2. function() { } -- Function expressions * 3. class { } -- Class expressions * 4. {} -- Empty object literals * 5. { ... } -- Non-empty object literals, when used to initialize a prototype, like `C.prototype = { m() { } }` * * This function returns the provided initializer, or undefined if it is not valid. */ function getExpandoInitializer(initializer, isPrototypeAssignment) { if (ts.isCallExpression(initializer)) { var e = skipParentheses(initializer.expression); return e.kind === 213 /* SyntaxKind.FunctionExpression */ || e.kind === 214 /* SyntaxKind.ArrowFunction */ ? initializer : undefined; } if (initializer.kind === 213 /* SyntaxKind.FunctionExpression */ || initializer.kind === 226 /* SyntaxKind.ClassExpression */ || initializer.kind === 214 /* SyntaxKind.ArrowFunction */) { return initializer; } if (ts.isObjectLiteralExpression(initializer) && (initializer.properties.length === 0 || isPrototypeAssignment)) { return initializer; } } ts.getExpandoInitializer = getExpandoInitializer; /** * A defaulted expando initializer matches the pattern * `Lhs = Lhs || ExpandoInitializer` * or `var Lhs = Lhs || ExpandoInitializer` * * The second Lhs is required to be the same as the first except that it may be prefixed with * 'window.', 'global.' or 'self.' The second Lhs is otherwise ignored by the binder and checker. */ function getDefaultedExpandoInitializer(name, initializer, isPrototypeAssignment) { var e = ts.isBinaryExpression(initializer) && (initializer.operatorToken.kind === 56 /* SyntaxKind.BarBarToken */ || initializer.operatorToken.kind === 60 /* SyntaxKind.QuestionQuestionToken */) && getExpandoInitializer(initializer.right, isPrototypeAssignment); if (e && isSameEntityName(name, initializer.left)) { return e; } } function isDefaultedExpandoInitializer(node) { var name = ts.isVariableDeclaration(node.parent) ? node.parent.name : ts.isBinaryExpression(node.parent) && node.parent.operatorToken.kind === 63 /* SyntaxKind.EqualsToken */ ? node.parent.left : undefined; return name && getExpandoInitializer(node.right, isPrototypeAccess(name)) && isEntityNameExpression(name) && isSameEntityName(name, node.left); } ts.isDefaultedExpandoInitializer = isDefaultedExpandoInitializer; /** Given an expando initializer, return its declaration name, or the left-hand side of the assignment if it's part of an assignment declaration. */ function getNameOfExpando(node) { if (ts.isBinaryExpression(node.parent)) { var parent = ((node.parent.operatorToken.kind === 56 /* SyntaxKind.BarBarToken */ || node.parent.operatorToken.kind === 60 /* SyntaxKind.QuestionQuestionToken */) && ts.isBinaryExpression(node.parent.parent)) ? node.parent.parent : node.parent; if (parent.operatorToken.kind === 63 /* SyntaxKind.EqualsToken */ && ts.isIdentifier(parent.left)) { return parent.left; } } else if (ts.isVariableDeclaration(node.parent)) { return node.parent.name; } } ts.getNameOfExpando = getNameOfExpando; /** * Is the 'declared' name the same as the one in the initializer? * @return true for identical entity names, as well as ones where the initializer is prefixed with * 'window', 'self' or 'global'. For example: * * var my = my || {} * var min = window.min || {} * my.app = self.my.app || class { } */ function isSameEntityName(name, initializer) { if (isPropertyNameLiteral(name) && isPropertyNameLiteral(initializer)) { return getTextOfIdentifierOrLiteral(name) === getTextOfIdentifierOrLiteral(initializer); } if (ts.isMemberName(name) && isLiteralLikeAccess(initializer) && (initializer.expression.kind === 108 /* SyntaxKind.ThisKeyword */ || ts.isIdentifier(initializer.expression) && (initializer.expression.escapedText === "window" || initializer.expression.escapedText === "self" || initializer.expression.escapedText === "global"))) { return isSameEntityName(name, getNameOrArgument(initializer)); } if (isLiteralLikeAccess(name) && isLiteralLikeAccess(initializer)) { return getElementOrPropertyAccessName(name) === getElementOrPropertyAccessName(initializer) && isSameEntityName(name.expression, initializer.expression); } return false; } ts.isSameEntityName = isSameEntityName; function getRightMostAssignedExpression(node) { while (isAssignmentExpression(node, /*excludeCompoundAssignments*/ true)) { node = node.right; } return node; } ts.getRightMostAssignedExpression = getRightMostAssignedExpression; function isExportsIdentifier(node) { return ts.isIdentifier(node) && node.escapedText === "exports"; } ts.isExportsIdentifier = isExportsIdentifier; function isModuleIdentifier(node) { return ts.isIdentifier(node) && node.escapedText === "module"; } ts.isModuleIdentifier = isModuleIdentifier; function isModuleExportsAccessExpression(node) { return (ts.isPropertyAccessExpression(node) || isLiteralLikeElementAccess(node)) && isModuleIdentifier(node.expression) && getElementOrPropertyAccessName(node) === "exports"; } ts.isModuleExportsAccessExpression = isModuleExportsAccessExpression; /// Given a BinaryExpression, returns SpecialPropertyAssignmentKind for the various kinds of property /// assignments we treat as special in the binder function getAssignmentDeclarationKind(expr) { var special = getAssignmentDeclarationKindWorker(expr); return special === 5 /* AssignmentDeclarationKind.Property */ || isInJSFile(expr) ? special : 0 /* AssignmentDeclarationKind.None */; } ts.getAssignmentDeclarationKind = getAssignmentDeclarationKind; function isBindableObjectDefinePropertyCall(expr) { return ts.length(expr.arguments) === 3 && ts.isPropertyAccessExpression(expr.expression) && ts.isIdentifier(expr.expression.expression) && ts.idText(expr.expression.expression) === "Object" && ts.idText(expr.expression.name) === "defineProperty" && isStringOrNumericLiteralLike(expr.arguments[1]) && isBindableStaticNameExpression(expr.arguments[0], /*excludeThisKeyword*/ true); } ts.isBindableObjectDefinePropertyCall = isBindableObjectDefinePropertyCall; /** x.y OR x[0] */ function isLiteralLikeAccess(node) { return ts.isPropertyAccessExpression(node) || isLiteralLikeElementAccess(node); } ts.isLiteralLikeAccess = isLiteralLikeAccess; /** x[0] OR x['a'] OR x[Symbol.y] */ function isLiteralLikeElementAccess(node) { return ts.isElementAccessExpression(node) && isStringOrNumericLiteralLike(node.argumentExpression); } ts.isLiteralLikeElementAccess = isLiteralLikeElementAccess; /** Any series of property and element accesses. */ function isBindableStaticAccessExpression(node, excludeThisKeyword) { return ts.isPropertyAccessExpression(node) && (!excludeThisKeyword && node.expression.kind === 108 /* SyntaxKind.ThisKeyword */ || ts.isIdentifier(node.name) && isBindableStaticNameExpression(node.expression, /*excludeThisKeyword*/ true)) || isBindableStaticElementAccessExpression(node, excludeThisKeyword); } ts.isBindableStaticAccessExpression = isBindableStaticAccessExpression; /** Any series of property and element accesses, ending in a literal element access */ function isBindableStaticElementAccessExpression(node, excludeThisKeyword) { return isLiteralLikeElementAccess(node) && ((!excludeThisKeyword && node.expression.kind === 108 /* SyntaxKind.ThisKeyword */) || isEntityNameExpression(node.expression) || isBindableStaticAccessExpression(node.expression, /*excludeThisKeyword*/ true)); } ts.isBindableStaticElementAccessExpression = isBindableStaticElementAccessExpression; function isBindableStaticNameExpression(node, excludeThisKeyword) { return isEntityNameExpression(node) || isBindableStaticAccessExpression(node, excludeThisKeyword); } ts.isBindableStaticNameExpression = isBindableStaticNameExpression; function getNameOrArgument(expr) { if (ts.isPropertyAccessExpression(expr)) { return expr.name; } return expr.argumentExpression; } ts.getNameOrArgument = getNameOrArgument; function getAssignmentDeclarationKindWorker(expr) { if (ts.isCallExpression(expr)) { if (!isBindableObjectDefinePropertyCall(expr)) { return 0 /* AssignmentDeclarationKind.None */; } var entityName = expr.arguments[0]; if (isExportsIdentifier(entityName) || isModuleExportsAccessExpression(entityName)) { return 8 /* AssignmentDeclarationKind.ObjectDefinePropertyExports */; } if (isBindableStaticAccessExpression(entityName) && getElementOrPropertyAccessName(entityName) === "prototype") { return 9 /* AssignmentDeclarationKind.ObjectDefinePrototypeProperty */; } return 7 /* AssignmentDeclarationKind.ObjectDefinePropertyValue */; } if (expr.operatorToken.kind !== 63 /* SyntaxKind.EqualsToken */ || !isAccessExpression(expr.left) || isVoidZero(getRightMostAssignedExpression(expr))) { return 0 /* AssignmentDeclarationKind.None */; } if (isBindableStaticNameExpression(expr.left.expression, /*excludeThisKeyword*/ true) && getElementOrPropertyAccessName(expr.left) === "prototype" && ts.isObjectLiteralExpression(getInitializerOfBinaryExpression(expr))) { // F.prototype = { ... } return 6 /* AssignmentDeclarationKind.Prototype */; } return getAssignmentDeclarationPropertyAccessKind(expr.left); } function isVoidZero(node) { return ts.isVoidExpression(node) && ts.isNumericLiteral(node.expression) && node.expression.text === "0"; } /** * Does not handle signed numeric names like `a[+0]` - handling those would require handling prefix unary expressions * throughout late binding handling as well, which is awkward (but ultimately probably doable if there is demand) */ /* @internal */ function getElementOrPropertyAccessArgumentExpressionOrName(node) { if (ts.isPropertyAccessExpression(node)) { return node.name; } var arg = skipParentheses(node.argumentExpression); if (ts.isNumericLiteral(arg) || ts.isStringLiteralLike(arg)) { return arg; } return node; } ts.getElementOrPropertyAccessArgumentExpressionOrName = getElementOrPropertyAccessArgumentExpressionOrName; function getElementOrPropertyAccessName(node) { var name = getElementOrPropertyAccessArgumentExpressionOrName(node); if (name) { if (ts.isIdentifier(name)) { return name.escapedText; } if (ts.isStringLiteralLike(name) || ts.isNumericLiteral(name)) { return ts.escapeLeadingUnderscores(name.text); } } return undefined; } ts.getElementOrPropertyAccessName = getElementOrPropertyAccessName; function getAssignmentDeclarationPropertyAccessKind(lhs) { if (lhs.expression.kind === 108 /* SyntaxKind.ThisKeyword */) { return 4 /* AssignmentDeclarationKind.ThisProperty */; } else if (isModuleExportsAccessExpression(lhs)) { // module.exports = expr return 2 /* AssignmentDeclarationKind.ModuleExports */; } else if (isBindableStaticNameExpression(lhs.expression, /*excludeThisKeyword*/ true)) { if (isPrototypeAccess(lhs.expression)) { // F.G....prototype.x = expr return 3 /* AssignmentDeclarationKind.PrototypeProperty */; } var nextToLast = lhs; while (!ts.isIdentifier(nextToLast.expression)) { nextToLast = nextToLast.expression; } var id = nextToLast.expression; if ((id.escapedText === "exports" || id.escapedText === "module" && getElementOrPropertyAccessName(nextToLast) === "exports") && // ExportsProperty does not support binding with computed names isBindableStaticAccessExpression(lhs)) { // exports.name = expr OR module.exports.name = expr OR exports["name"] = expr ... return 1 /* AssignmentDeclarationKind.ExportsProperty */; } if (isBindableStaticNameExpression(lhs, /*excludeThisKeyword*/ true) || (ts.isElementAccessExpression(lhs) && isDynamicName(lhs))) { // F.G...x = expr return 5 /* AssignmentDeclarationKind.Property */; } } return 0 /* AssignmentDeclarationKind.None */; } ts.getAssignmentDeclarationPropertyAccessKind = getAssignmentDeclarationPropertyAccessKind; function getInitializerOfBinaryExpression(expr) { while (ts.isBinaryExpression(expr.right)) { expr = expr.right; } return expr.right; } ts.getInitializerOfBinaryExpression = getInitializerOfBinaryExpression; function isPrototypePropertyAssignment(node) { return ts.isBinaryExpression(node) && getAssignmentDeclarationKind(node) === 3 /* AssignmentDeclarationKind.PrototypeProperty */; } ts.isPrototypePropertyAssignment = isPrototypePropertyAssignment; function isSpecialPropertyDeclaration(expr) { return isInJSFile(expr) && expr.parent && expr.parent.kind === 238 /* SyntaxKind.ExpressionStatement */ && (!ts.isElementAccessExpression(expr) || isLiteralLikeElementAccess(expr)) && !!ts.getJSDocTypeTag(expr.parent); } ts.isSpecialPropertyDeclaration = isSpecialPropertyDeclaration; function setValueDeclaration(symbol, node) { var valueDeclaration = symbol.valueDeclaration; if (!valueDeclaration || !(node.flags & 16777216 /* NodeFlags.Ambient */ && !(valueDeclaration.flags & 16777216 /* NodeFlags.Ambient */)) && (isAssignmentDeclaration(valueDeclaration) && !isAssignmentDeclaration(node)) || (valueDeclaration.kind !== node.kind && isEffectiveModuleDeclaration(valueDeclaration))) { // other kinds of value declarations take precedence over modules and assignment declarations symbol.valueDeclaration = node; } } ts.setValueDeclaration = setValueDeclaration; function isFunctionSymbol(symbol) { if (!symbol || !symbol.valueDeclaration) { return false; } var decl = symbol.valueDeclaration; return decl.kind === 256 /* SyntaxKind.FunctionDeclaration */ || ts.isVariableDeclaration(decl) && decl.initializer && ts.isFunctionLike(decl.initializer); } ts.isFunctionSymbol = isFunctionSymbol; function tryGetModuleSpecifierFromDeclaration(node) { var _a, _b; switch (node.kind) { case 254 /* SyntaxKind.VariableDeclaration */: return (_a = ts.findAncestor(node.initializer, function (node) { return isRequireCall(node, /*requireStringLiteralLikeArgument*/ true); })) === null || _a === void 0 ? void 0 : _a.arguments[0]; case 266 /* SyntaxKind.ImportDeclaration */: return ts.tryCast(node.moduleSpecifier, ts.isStringLiteralLike); case 265 /* SyntaxKind.ImportEqualsDeclaration */: return ts.tryCast((_b = ts.tryCast(node.moduleReference, ts.isExternalModuleReference)) === null || _b === void 0 ? void 0 : _b.expression, ts.isStringLiteralLike); default: ts.Debug.assertNever(node); } } ts.tryGetModuleSpecifierFromDeclaration = tryGetModuleSpecifierFromDeclaration; function importFromModuleSpecifier(node) { return tryGetImportFromModuleSpecifier(node) || ts.Debug.failBadSyntaxKind(node.parent); } ts.importFromModuleSpecifier = importFromModuleSpecifier; function tryGetImportFromModuleSpecifier(node) { switch (node.parent.kind) { case 266 /* SyntaxKind.ImportDeclaration */: case 272 /* SyntaxKind.ExportDeclaration */: return node.parent; case 277 /* SyntaxKind.ExternalModuleReference */: return node.parent.parent; case 208 /* SyntaxKind.CallExpression */: return isImportCall(node.parent) || isRequireCall(node.parent, /*checkArg*/ false) ? node.parent : undefined; case 196 /* SyntaxKind.LiteralType */: ts.Debug.assert(ts.isStringLiteral(node)); return ts.tryCast(node.parent.parent, ts.isImportTypeNode); default: return undefined; } } ts.tryGetImportFromModuleSpecifier = tryGetImportFromModuleSpecifier; function getExternalModuleName(node) { switch (node.kind) { case 266 /* SyntaxKind.ImportDeclaration */: case 272 /* SyntaxKind.ExportDeclaration */: return node.moduleSpecifier; case 265 /* SyntaxKind.ImportEqualsDeclaration */: return node.moduleReference.kind === 277 /* SyntaxKind.ExternalModuleReference */ ? node.moduleReference.expression : undefined; case 200 /* SyntaxKind.ImportType */: return isLiteralImportTypeNode(node) ? node.argument.literal : undefined; case 208 /* SyntaxKind.CallExpression */: return node.arguments[0]; case 261 /* SyntaxKind.ModuleDeclaration */: return node.name.kind === 10 /* SyntaxKind.StringLiteral */ ? node.name : undefined; default: return ts.Debug.assertNever(node); } } ts.getExternalModuleName = getExternalModuleName; function getNamespaceDeclarationNode(node) { switch (node.kind) { case 266 /* SyntaxKind.ImportDeclaration */: return node.importClause && ts.tryCast(node.importClause.namedBindings, ts.isNamespaceImport); case 265 /* SyntaxKind.ImportEqualsDeclaration */: return node; case 272 /* SyntaxKind.ExportDeclaration */: return node.exportClause && ts.tryCast(node.exportClause, ts.isNamespaceExport); default: return ts.Debug.assertNever(node); } } ts.getNamespaceDeclarationNode = getNamespaceDeclarationNode; function isDefaultImport(node) { return node.kind === 266 /* SyntaxKind.ImportDeclaration */ && !!node.importClause && !!node.importClause.name; } ts.isDefaultImport = isDefaultImport; function forEachImportClauseDeclaration(node, action) { if (node.name) { var result = action(node); if (result) return result; } if (node.namedBindings) { var result = ts.isNamespaceImport(node.namedBindings) ? action(node.namedBindings) : ts.forEach(node.namedBindings.elements, action); if (result) return result; } } ts.forEachImportClauseDeclaration = forEachImportClauseDeclaration; function hasQuestionToken(node) { if (node) { switch (node.kind) { case 164 /* SyntaxKind.Parameter */: case 169 /* SyntaxKind.MethodDeclaration */: case 168 /* SyntaxKind.MethodSignature */: case 297 /* SyntaxKind.ShorthandPropertyAssignment */: case 296 /* SyntaxKind.PropertyAssignment */: case 167 /* SyntaxKind.PropertyDeclaration */: case 166 /* SyntaxKind.PropertySignature */: return node.questionToken !== undefined; } } return false; } ts.hasQuestionToken = hasQuestionToken; function isJSDocConstructSignature(node) { var param = ts.isJSDocFunctionType(node) ? ts.firstOrUndefined(node.parameters) : undefined; var name = ts.tryCast(param && param.name, ts.isIdentifier); return !!name && name.escapedText === "new"; } ts.isJSDocConstructSignature = isJSDocConstructSignature; function isJSDocTypeAlias(node) { return node.kind === 345 /* SyntaxKind.JSDocTypedefTag */ || node.kind === 338 /* SyntaxKind.JSDocCallbackTag */ || node.kind === 339 /* SyntaxKind.JSDocEnumTag */; } ts.isJSDocTypeAlias = isJSDocTypeAlias; function isTypeAlias(node) { return isJSDocTypeAlias(node) || ts.isTypeAliasDeclaration(node); } ts.isTypeAlias = isTypeAlias; function getSourceOfAssignment(node) { return ts.isExpressionStatement(node) && ts.isBinaryExpression(node.expression) && node.expression.operatorToken.kind === 63 /* SyntaxKind.EqualsToken */ ? getRightMostAssignedExpression(node.expression) : undefined; } function getSourceOfDefaultedAssignment(node) { return ts.isExpressionStatement(node) && ts.isBinaryExpression(node.expression) && getAssignmentDeclarationKind(node.expression) !== 0 /* AssignmentDeclarationKind.None */ && ts.isBinaryExpression(node.expression.right) && (node.expression.right.operatorToken.kind === 56 /* SyntaxKind.BarBarToken */ || node.expression.right.operatorToken.kind === 60 /* SyntaxKind.QuestionQuestionToken */) ? node.expression.right.right : undefined; } function getSingleInitializerOfVariableStatementOrPropertyDeclaration(node) { switch (node.kind) { case 237 /* SyntaxKind.VariableStatement */: var v = getSingleVariableOfVariableStatement(node); return v && v.initializer; case 167 /* SyntaxKind.PropertyDeclaration */: return node.initializer; case 296 /* SyntaxKind.PropertyAssignment */: return node.initializer; } } ts.getSingleInitializerOfVariableStatementOrPropertyDeclaration = getSingleInitializerOfVariableStatementOrPropertyDeclaration; function getSingleVariableOfVariableStatement(node) { return ts.isVariableStatement(node) ? ts.firstOrUndefined(node.declarationList.declarations) : undefined; } ts.getSingleVariableOfVariableStatement = getSingleVariableOfVariableStatement; function getNestedModuleDeclaration(node) { return ts.isModuleDeclaration(node) && node.body && node.body.kind === 261 /* SyntaxKind.ModuleDeclaration */ ? node.body : undefined; } function getJSDocCommentsAndTags(hostNode, noCache) { var result; // Pull parameter comments from declaring function as well if (isVariableLike(hostNode) && ts.hasInitializer(hostNode) && ts.hasJSDocNodes(hostNode.initializer)) { result = ts.addRange(result, filterOwnedJSDocTags(hostNode, ts.last(hostNode.initializer.jsDoc))); } var node = hostNode; while (node && node.parent) { if (ts.hasJSDocNodes(node)) { result = ts.addRange(result, filterOwnedJSDocTags(hostNode, ts.last(node.jsDoc))); } if (node.kind === 164 /* SyntaxKind.Parameter */) { result = ts.addRange(result, (noCache ? ts.getJSDocParameterTagsNoCache : ts.getJSDocParameterTags)(node)); break; } if (node.kind === 163 /* SyntaxKind.TypeParameter */) { result = ts.addRange(result, (noCache ? ts.getJSDocTypeParameterTagsNoCache : ts.getJSDocTypeParameterTags)(node)); break; } node = getNextJSDocCommentLocation(node); } return result || ts.emptyArray; } ts.getJSDocCommentsAndTags = getJSDocCommentsAndTags; function filterOwnedJSDocTags(hostNode, jsDoc) { if (ts.isJSDoc(jsDoc)) { var ownedTags = ts.filter(jsDoc.tags, function (tag) { return ownsJSDocTag(hostNode, tag); }); return jsDoc.tags === ownedTags ? [jsDoc] : ownedTags; } return ownsJSDocTag(hostNode, jsDoc) ? [jsDoc] : undefined; } /** * Determines whether a host node owns a jsDoc tag. A `@type` tag attached to a * a ParenthesizedExpression belongs only to the ParenthesizedExpression. */ function ownsJSDocTag(hostNode, tag) { return !ts.isJSDocTypeTag(tag) || !tag.parent || !ts.isJSDoc(tag.parent) || !ts.isParenthesizedExpression(tag.parent.parent) || tag.parent.parent === hostNode; } function getNextJSDocCommentLocation(node) { var parent = node.parent; if (parent.kind === 296 /* SyntaxKind.PropertyAssignment */ || parent.kind === 271 /* SyntaxKind.ExportAssignment */ || parent.kind === 167 /* SyntaxKind.PropertyDeclaration */ || parent.kind === 238 /* SyntaxKind.ExpressionStatement */ && node.kind === 206 /* SyntaxKind.PropertyAccessExpression */ || parent.kind === 247 /* SyntaxKind.ReturnStatement */ || getNestedModuleDeclaration(parent) || ts.isBinaryExpression(node) && node.operatorToken.kind === 63 /* SyntaxKind.EqualsToken */) { return parent; } // Try to recognize this pattern when node is initializer of variable declaration and JSDoc comments are on containing variable statement. // /** // * @param {number} name // * @returns {number} // */ // var x = function(name) { return name.length; } else if (parent.parent && (getSingleVariableOfVariableStatement(parent.parent) === node || ts.isBinaryExpression(parent) && parent.operatorToken.kind === 63 /* SyntaxKind.EqualsToken */)) { return parent.parent; } else if (parent.parent && parent.parent.parent && (getSingleVariableOfVariableStatement(parent.parent.parent) || getSingleInitializerOfVariableStatementOrPropertyDeclaration(parent.parent.parent) === node || getSourceOfDefaultedAssignment(parent.parent.parent))) { return parent.parent.parent; } } ts.getNextJSDocCommentLocation = getNextJSDocCommentLocation; /** Does the opposite of `getJSDocParameterTags`: given a JSDoc parameter, finds the parameter corresponding to it. */ function getParameterSymbolFromJSDoc(node) { if (node.symbol) { return node.symbol; } if (!ts.isIdentifier(node.name)) { return undefined; } var name = node.name.escapedText; var decl = getHostSignatureFromJSDoc(node); if (!decl) { return undefined; } var parameter = ts.find(decl.parameters, function (p) { return p.name.kind === 79 /* SyntaxKind.Identifier */ && p.name.escapedText === name; }); return parameter && parameter.symbol; } ts.getParameterSymbolFromJSDoc = getParameterSymbolFromJSDoc; function getEffectiveContainerForJSDocTemplateTag(node) { if (ts.isJSDoc(node.parent) && node.parent.tags) { // A @template tag belongs to any @typedef, @callback, or @enum tags in the same comment block, if they exist. var typeAlias = ts.find(node.parent.tags, isJSDocTypeAlias); if (typeAlias) { return typeAlias; } } // otherwise it belongs to the host it annotates return getHostSignatureFromJSDoc(node); } ts.getEffectiveContainerForJSDocTemplateTag = getEffectiveContainerForJSDocTemplateTag; function getHostSignatureFromJSDoc(node) { var host = getEffectiveJSDocHost(node); if (host) { return ts.isPropertySignature(host) && host.type && ts.isFunctionLike(host.type) ? host.type : ts.isFunctionLike(host) ? host : undefined; } return undefined; } ts.getHostSignatureFromJSDoc = getHostSignatureFromJSDoc; function getEffectiveJSDocHost(node) { var host = getJSDocHost(node); if (host) { return getSourceOfDefaultedAssignment(host) || getSourceOfAssignment(host) || getSingleInitializerOfVariableStatementOrPropertyDeclaration(host) || getSingleVariableOfVariableStatement(host) || getNestedModuleDeclaration(host) || host; } } ts.getEffectiveJSDocHost = getEffectiveJSDocHost; /** Use getEffectiveJSDocHost if you additionally need to look for jsdoc on parent nodes, like assignments. */ function getJSDocHost(node) { var jsDoc = getJSDocRoot(node); if (!jsDoc) { return undefined; } var host = jsDoc.parent; if (host && host.jsDoc && jsDoc === ts.lastOrUndefined(host.jsDoc)) { return host; } } ts.getJSDocHost = getJSDocHost; function getJSDocRoot(node) { return ts.findAncestor(node.parent, ts.isJSDoc); } ts.getJSDocRoot = getJSDocRoot; function getTypeParameterFromJsDoc(node) { var name = node.name.escapedText; var typeParameters = node.parent.parent.parent.typeParameters; return typeParameters && ts.find(typeParameters, function (p) { return p.name.escapedText === name; }); } ts.getTypeParameterFromJsDoc = getTypeParameterFromJsDoc; function hasRestParameter(s) { var last = ts.lastOrUndefined(s.parameters); return !!last && isRestParameter(last); } ts.hasRestParameter = hasRestParameter; function isRestParameter(node) { var type = ts.isJSDocParameterTag(node) ? (node.typeExpression && node.typeExpression.type) : node.type; return node.dotDotDotToken !== undefined || !!type && type.kind === 318 /* SyntaxKind.JSDocVariadicType */; } ts.isRestParameter = isRestParameter; function hasTypeArguments(node) { return !!node.typeArguments; } ts.hasTypeArguments = hasTypeArguments; var AssignmentKind; (function (AssignmentKind) { AssignmentKind[AssignmentKind["None"] = 0] = "None"; AssignmentKind[AssignmentKind["Definite"] = 1] = "Definite"; AssignmentKind[AssignmentKind["Compound"] = 2] = "Compound"; })(AssignmentKind = ts.AssignmentKind || (ts.AssignmentKind = {})); function getAssignmentTargetKind(node) { var parent = node.parent; while (true) { switch (parent.kind) { case 221 /* SyntaxKind.BinaryExpression */: var binaryOperator = parent.operatorToken.kind; return isAssignmentOperator(binaryOperator) && parent.left === node ? binaryOperator === 63 /* SyntaxKind.EqualsToken */ || isLogicalOrCoalescingAssignmentOperator(binaryOperator) ? 1 /* AssignmentKind.Definite */ : 2 /* AssignmentKind.Compound */ : 0 /* AssignmentKind.None */; case 219 /* SyntaxKind.PrefixUnaryExpression */: case 220 /* SyntaxKind.PostfixUnaryExpression */: var unaryOperator = parent.operator; return unaryOperator === 45 /* SyntaxKind.PlusPlusToken */ || unaryOperator === 46 /* SyntaxKind.MinusMinusToken */ ? 2 /* AssignmentKind.Compound */ : 0 /* AssignmentKind.None */; case 243 /* SyntaxKind.ForInStatement */: case 244 /* SyntaxKind.ForOfStatement */: return parent.initializer === node ? 1 /* AssignmentKind.Definite */ : 0 /* AssignmentKind.None */; case 212 /* SyntaxKind.ParenthesizedExpression */: case 204 /* SyntaxKind.ArrayLiteralExpression */: case 225 /* SyntaxKind.SpreadElement */: case 230 /* SyntaxKind.NonNullExpression */: node = parent; break; case 298 /* SyntaxKind.SpreadAssignment */: node = parent.parent; break; case 297 /* SyntaxKind.ShorthandPropertyAssignment */: if (parent.name !== node) { return 0 /* AssignmentKind.None */; } node = parent.parent; break; case 296 /* SyntaxKind.PropertyAssignment */: if (parent.name === node) { return 0 /* AssignmentKind.None */; } node = parent.parent; break; default: return 0 /* AssignmentKind.None */; } parent = node.parent; } } ts.getAssignmentTargetKind = getAssignmentTargetKind; // A node is an assignment target if it is on the left hand side of an '=' token, if it is parented by a property // assignment in an object literal that is an assignment target, or if it is parented by an array literal that is // an assignment target. Examples include 'a = xxx', '{ p: a } = xxx', '[{ a }] = xxx'. // (Note that `p` is not a target in the above examples, only `a`.) function isAssignmentTarget(node) { return getAssignmentTargetKind(node) !== 0 /* AssignmentKind.None */; } ts.isAssignmentTarget = isAssignmentTarget; /** * Indicates whether a node could contain a `var` VariableDeclarationList that contributes to * the same `var` declaration scope as the node's parent. */ function isNodeWithPossibleHoistedDeclaration(node) { switch (node.kind) { case 235 /* SyntaxKind.Block */: case 237 /* SyntaxKind.VariableStatement */: case 248 /* SyntaxKind.WithStatement */: case 239 /* SyntaxKind.IfStatement */: case 249 /* SyntaxKind.SwitchStatement */: case 263 /* SyntaxKind.CaseBlock */: case 289 /* SyntaxKind.CaseClause */: case 290 /* SyntaxKind.DefaultClause */: case 250 /* SyntaxKind.LabeledStatement */: case 242 /* SyntaxKind.ForStatement */: case 243 /* SyntaxKind.ForInStatement */: case 244 /* SyntaxKind.ForOfStatement */: case 240 /* SyntaxKind.DoStatement */: case 241 /* SyntaxKind.WhileStatement */: case 252 /* SyntaxKind.TryStatement */: case 292 /* SyntaxKind.CatchClause */: return true; } return false; } ts.isNodeWithPossibleHoistedDeclaration = isNodeWithPossibleHoistedDeclaration; function isValueSignatureDeclaration(node) { return ts.isFunctionExpression(node) || ts.isArrowFunction(node) || ts.isMethodOrAccessor(node) || ts.isFunctionDeclaration(node) || ts.isConstructorDeclaration(node); } ts.isValueSignatureDeclaration = isValueSignatureDeclaration; function walkUp(node, kind) { while (node && node.kind === kind) { node = node.parent; } return node; } function walkUpParenthesizedTypes(node) { return walkUp(node, 191 /* SyntaxKind.ParenthesizedType */); } ts.walkUpParenthesizedTypes = walkUpParenthesizedTypes; function walkUpParenthesizedExpressions(node) { return walkUp(node, 212 /* SyntaxKind.ParenthesizedExpression */); } ts.walkUpParenthesizedExpressions = walkUpParenthesizedExpressions; /** * Walks up parenthesized types. * It returns both the outermost parenthesized type and its parent. * If given node is not a parenthesiezd type, undefined is return as the former. */ function walkUpParenthesizedTypesAndGetParentAndChild(node) { var child; while (node && node.kind === 191 /* SyntaxKind.ParenthesizedType */) { child = node; node = node.parent; } return [child, node]; } ts.walkUpParenthesizedTypesAndGetParentAndChild = walkUpParenthesizedTypesAndGetParentAndChild; function skipParentheses(node, excludeJSDocTypeAssertions) { var flags = excludeJSDocTypeAssertions ? 1 /* OuterExpressionKinds.Parentheses */ | 16 /* OuterExpressionKinds.ExcludeJSDocTypeAssertion */ : 1 /* OuterExpressionKinds.Parentheses */; return ts.skipOuterExpressions(node, flags); } ts.skipParentheses = skipParentheses; // a node is delete target iff. it is PropertyAccessExpression/ElementAccessExpression with parentheses skipped function isDeleteTarget(node) { if (node.kind !== 206 /* SyntaxKind.PropertyAccessExpression */ && node.kind !== 207 /* SyntaxKind.ElementAccessExpression */) { return false; } node = walkUpParenthesizedExpressions(node.parent); return node && node.kind === 215 /* SyntaxKind.DeleteExpression */; } ts.isDeleteTarget = isDeleteTarget; function isNodeDescendantOf(node, ancestor) { while (node) { if (node === ancestor) return true; node = node.parent; } return false; } ts.isNodeDescendantOf = isNodeDescendantOf; // True if `name` is the name of a declaration node function isDeclarationName(name) { return !ts.isSourceFile(name) && !ts.isBindingPattern(name) && ts.isDeclaration(name.parent) && name.parent.name === name; } ts.isDeclarationName = isDeclarationName; // See GH#16030 function getDeclarationFromName(name) { var parent = name.parent; switch (name.kind) { case 10 /* SyntaxKind.StringLiteral */: case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: case 8 /* SyntaxKind.NumericLiteral */: if (ts.isComputedPropertyName(parent)) return parent.parent; // falls through case 79 /* SyntaxKind.Identifier */: if (ts.isDeclaration(parent)) { return parent.name === name ? parent : undefined; } else if (ts.isQualifiedName(parent)) { var tag = parent.parent; return ts.isJSDocParameterTag(tag) && tag.name === parent ? tag : undefined; } else { var binExp = parent.parent; return ts.isBinaryExpression(binExp) && getAssignmentDeclarationKind(binExp) !== 0 /* AssignmentDeclarationKind.None */ && (binExp.left.symbol || binExp.symbol) && ts.getNameOfDeclaration(binExp) === name ? binExp : undefined; } case 80 /* SyntaxKind.PrivateIdentifier */: return ts.isDeclaration(parent) && parent.name === name ? parent : undefined; default: return undefined; } } ts.getDeclarationFromName = getDeclarationFromName; function isLiteralComputedPropertyDeclarationName(node) { return isStringOrNumericLiteralLike(node) && node.parent.kind === 162 /* SyntaxKind.ComputedPropertyName */ && ts.isDeclaration(node.parent.parent); } ts.isLiteralComputedPropertyDeclarationName = isLiteralComputedPropertyDeclarationName; // Return true if the given identifier is classified as an IdentifierName function isIdentifierName(node) { var parent = node.parent; switch (parent.kind) { case 167 /* SyntaxKind.PropertyDeclaration */: case 166 /* SyntaxKind.PropertySignature */: case 169 /* SyntaxKind.MethodDeclaration */: case 168 /* SyntaxKind.MethodSignature */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 299 /* SyntaxKind.EnumMember */: case 296 /* SyntaxKind.PropertyAssignment */: case 206 /* SyntaxKind.PropertyAccessExpression */: // Name in member declaration or property name in property access return parent.name === node; case 161 /* SyntaxKind.QualifiedName */: // Name on right hand side of dot in a type query or type reference return parent.right === node; case 203 /* SyntaxKind.BindingElement */: case 270 /* SyntaxKind.ImportSpecifier */: // Property name in binding element or import specifier return parent.propertyName === node; case 275 /* SyntaxKind.ExportSpecifier */: case 285 /* SyntaxKind.JsxAttribute */: case 279 /* SyntaxKind.JsxSelfClosingElement */: case 280 /* SyntaxKind.JsxOpeningElement */: case 281 /* SyntaxKind.JsxClosingElement */: // Any name in an export specifier or JSX Attribute or Jsx Element return true; } return false; } ts.isIdentifierName = isIdentifierName; // An alias symbol is created by one of the following declarations: // import = ... // import from ... // import * as from ... // import { x as } from ... // export { x as } from ... // export * as ns from ... // export = // export default // module.exports = // module.exports.x = // const x = require("...") // const { x } = require("...") // const x = require("...").y // const { x } = require("...").y function isAliasSymbolDeclaration(node) { if (node.kind === 265 /* SyntaxKind.ImportEqualsDeclaration */ || node.kind === 264 /* SyntaxKind.NamespaceExportDeclaration */ || node.kind === 267 /* SyntaxKind.ImportClause */ && !!node.name || node.kind === 268 /* SyntaxKind.NamespaceImport */ || node.kind === 274 /* SyntaxKind.NamespaceExport */ || node.kind === 270 /* SyntaxKind.ImportSpecifier */ || node.kind === 275 /* SyntaxKind.ExportSpecifier */ || node.kind === 271 /* SyntaxKind.ExportAssignment */ && exportAssignmentIsAlias(node)) { return true; } return isInJSFile(node) && (ts.isBinaryExpression(node) && getAssignmentDeclarationKind(node) === 2 /* AssignmentDeclarationKind.ModuleExports */ && exportAssignmentIsAlias(node) || ts.isPropertyAccessExpression(node) && ts.isBinaryExpression(node.parent) && node.parent.left === node && node.parent.operatorToken.kind === 63 /* SyntaxKind.EqualsToken */ && isAliasableExpression(node.parent.right)); } ts.isAliasSymbolDeclaration = isAliasSymbolDeclaration; function getAliasDeclarationFromName(node) { switch (node.parent.kind) { case 267 /* SyntaxKind.ImportClause */: case 270 /* SyntaxKind.ImportSpecifier */: case 268 /* SyntaxKind.NamespaceImport */: case 275 /* SyntaxKind.ExportSpecifier */: case 271 /* SyntaxKind.ExportAssignment */: case 265 /* SyntaxKind.ImportEqualsDeclaration */: case 274 /* SyntaxKind.NamespaceExport */: return node.parent; case 161 /* SyntaxKind.QualifiedName */: do { node = node.parent; } while (node.parent.kind === 161 /* SyntaxKind.QualifiedName */); return getAliasDeclarationFromName(node); } } ts.getAliasDeclarationFromName = getAliasDeclarationFromName; function isAliasableExpression(e) { return isEntityNameExpression(e) || ts.isClassExpression(e); } ts.isAliasableExpression = isAliasableExpression; function exportAssignmentIsAlias(node) { var e = getExportAssignmentExpression(node); return isAliasableExpression(e); } ts.exportAssignmentIsAlias = exportAssignmentIsAlias; function getExportAssignmentExpression(node) { return ts.isExportAssignment(node) ? node.expression : node.right; } ts.getExportAssignmentExpression = getExportAssignmentExpression; function getPropertyAssignmentAliasLikeExpression(node) { return node.kind === 297 /* SyntaxKind.ShorthandPropertyAssignment */ ? node.name : node.kind === 296 /* SyntaxKind.PropertyAssignment */ ? node.initializer : node.parent.right; } ts.getPropertyAssignmentAliasLikeExpression = getPropertyAssignmentAliasLikeExpression; function getEffectiveBaseTypeNode(node) { var baseType = getClassExtendsHeritageElement(node); if (baseType && isInJSFile(node)) { // Prefer an @augments tag because it may have type parameters. var tag = ts.getJSDocAugmentsTag(node); if (tag) { return tag.class; } } return baseType; } ts.getEffectiveBaseTypeNode = getEffectiveBaseTypeNode; function getClassExtendsHeritageElement(node) { var heritageClause = getHeritageClause(node.heritageClauses, 94 /* SyntaxKind.ExtendsKeyword */); return heritageClause && heritageClause.types.length > 0 ? heritageClause.types[0] : undefined; } ts.getClassExtendsHeritageElement = getClassExtendsHeritageElement; function getEffectiveImplementsTypeNodes(node) { if (isInJSFile(node)) { return ts.getJSDocImplementsTags(node).map(function (n) { return n.class; }); } else { var heritageClause = getHeritageClause(node.heritageClauses, 117 /* SyntaxKind.ImplementsKeyword */); return heritageClause === null || heritageClause === void 0 ? void 0 : heritageClause.types; } } ts.getEffectiveImplementsTypeNodes = getEffectiveImplementsTypeNodes; /** Returns the node in an `extends` or `implements` clause of a class or interface. */ function getAllSuperTypeNodes(node) { return ts.isInterfaceDeclaration(node) ? getInterfaceBaseTypeNodes(node) || ts.emptyArray : ts.isClassLike(node) ? ts.concatenate(ts.singleElementArray(getEffectiveBaseTypeNode(node)), getEffectiveImplementsTypeNodes(node)) || ts.emptyArray : ts.emptyArray; } ts.getAllSuperTypeNodes = getAllSuperTypeNodes; function getInterfaceBaseTypeNodes(node) { var heritageClause = getHeritageClause(node.heritageClauses, 94 /* SyntaxKind.ExtendsKeyword */); return heritageClause ? heritageClause.types : undefined; } ts.getInterfaceBaseTypeNodes = getInterfaceBaseTypeNodes; function getHeritageClause(clauses, kind) { if (clauses) { for (var _i = 0, clauses_1 = clauses; _i < clauses_1.length; _i++) { var clause = clauses_1[_i]; if (clause.token === kind) { return clause; } } } return undefined; } ts.getHeritageClause = getHeritageClause; function getAncestor(node, kind) { while (node) { if (node.kind === kind) { return node; } node = node.parent; } return undefined; } ts.getAncestor = getAncestor; function isKeyword(token) { return 81 /* SyntaxKind.FirstKeyword */ <= token && token <= 160 /* SyntaxKind.LastKeyword */; } ts.isKeyword = isKeyword; function isContextualKeyword(token) { return 126 /* SyntaxKind.FirstContextualKeyword */ <= token && token <= 160 /* SyntaxKind.LastContextualKeyword */; } ts.isContextualKeyword = isContextualKeyword; function isNonContextualKeyword(token) { return isKeyword(token) && !isContextualKeyword(token); } ts.isNonContextualKeyword = isNonContextualKeyword; function isFutureReservedKeyword(token) { return 117 /* SyntaxKind.FirstFutureReservedWord */ <= token && token <= 125 /* SyntaxKind.LastFutureReservedWord */; } ts.isFutureReservedKeyword = isFutureReservedKeyword; function isStringANonContextualKeyword(name) { var token = ts.stringToToken(name); return token !== undefined && isNonContextualKeyword(token); } ts.isStringANonContextualKeyword = isStringANonContextualKeyword; function isStringAKeyword(name) { var token = ts.stringToToken(name); return token !== undefined && isKeyword(token); } ts.isStringAKeyword = isStringAKeyword; function isIdentifierANonContextualKeyword(_a) { var originalKeywordKind = _a.originalKeywordKind; return !!originalKeywordKind && !isContextualKeyword(originalKeywordKind); } ts.isIdentifierANonContextualKeyword = isIdentifierANonContextualKeyword; function isTrivia(token) { return 2 /* SyntaxKind.FirstTriviaToken */ <= token && token <= 7 /* SyntaxKind.LastTriviaToken */; } ts.isTrivia = isTrivia; var FunctionFlags; (function (FunctionFlags) { FunctionFlags[FunctionFlags["Normal"] = 0] = "Normal"; FunctionFlags[FunctionFlags["Generator"] = 1] = "Generator"; FunctionFlags[FunctionFlags["Async"] = 2] = "Async"; FunctionFlags[FunctionFlags["Invalid"] = 4] = "Invalid"; FunctionFlags[FunctionFlags["AsyncGenerator"] = 3] = "AsyncGenerator"; })(FunctionFlags = ts.FunctionFlags || (ts.FunctionFlags = {})); function getFunctionFlags(node) { if (!node) { return 4 /* FunctionFlags.Invalid */; } var flags = 0 /* FunctionFlags.Normal */; switch (node.kind) { case 256 /* SyntaxKind.FunctionDeclaration */: case 213 /* SyntaxKind.FunctionExpression */: case 169 /* SyntaxKind.MethodDeclaration */: if (node.asteriskToken) { flags |= 1 /* FunctionFlags.Generator */; } // falls through case 214 /* SyntaxKind.ArrowFunction */: if (hasSyntacticModifier(node, 256 /* ModifierFlags.Async */)) { flags |= 2 /* FunctionFlags.Async */; } break; } if (!node.body) { flags |= 4 /* FunctionFlags.Invalid */; } return flags; } ts.getFunctionFlags = getFunctionFlags; function isAsyncFunction(node) { switch (node.kind) { case 256 /* SyntaxKind.FunctionDeclaration */: case 213 /* SyntaxKind.FunctionExpression */: case 214 /* SyntaxKind.ArrowFunction */: case 169 /* SyntaxKind.MethodDeclaration */: return node.body !== undefined && node.asteriskToken === undefined && hasSyntacticModifier(node, 256 /* ModifierFlags.Async */); } return false; } ts.isAsyncFunction = isAsyncFunction; function isStringOrNumericLiteralLike(node) { return ts.isStringLiteralLike(node) || ts.isNumericLiteral(node); } ts.isStringOrNumericLiteralLike = isStringOrNumericLiteralLike; function isSignedNumericLiteral(node) { return ts.isPrefixUnaryExpression(node) && (node.operator === 39 /* SyntaxKind.PlusToken */ || node.operator === 40 /* SyntaxKind.MinusToken */) && ts.isNumericLiteral(node.operand); } ts.isSignedNumericLiteral = isSignedNumericLiteral; /** * A declaration has a dynamic name if all of the following are true: * 1. The declaration has a computed property name. * 2. The computed name is *not* expressed as a StringLiteral. * 3. The computed name is *not* expressed as a NumericLiteral. * 4. The computed name is *not* expressed as a PlusToken or MinusToken * immediately followed by a NumericLiteral. */ function hasDynamicName(declaration) { var name = ts.getNameOfDeclaration(declaration); return !!name && isDynamicName(name); } ts.hasDynamicName = hasDynamicName; function isDynamicName(name) { if (!(name.kind === 162 /* SyntaxKind.ComputedPropertyName */ || name.kind === 207 /* SyntaxKind.ElementAccessExpression */)) { return false; } var expr = ts.isElementAccessExpression(name) ? skipParentheses(name.argumentExpression) : name.expression; return !isStringOrNumericLiteralLike(expr) && !isSignedNumericLiteral(expr); } ts.isDynamicName = isDynamicName; function getPropertyNameForPropertyNameNode(name) { switch (name.kind) { case 79 /* SyntaxKind.Identifier */: case 80 /* SyntaxKind.PrivateIdentifier */: return name.escapedText; case 10 /* SyntaxKind.StringLiteral */: case 8 /* SyntaxKind.NumericLiteral */: return ts.escapeLeadingUnderscores(name.text); case 162 /* SyntaxKind.ComputedPropertyName */: var nameExpression = name.expression; if (isStringOrNumericLiteralLike(nameExpression)) { return ts.escapeLeadingUnderscores(nameExpression.text); } else if (isSignedNumericLiteral(nameExpression)) { if (nameExpression.operator === 40 /* SyntaxKind.MinusToken */) { return ts.tokenToString(nameExpression.operator) + nameExpression.operand.text; } return nameExpression.operand.text; } return undefined; default: return ts.Debug.assertNever(name); } } ts.getPropertyNameForPropertyNameNode = getPropertyNameForPropertyNameNode; function isPropertyNameLiteral(node) { switch (node.kind) { case 79 /* SyntaxKind.Identifier */: case 10 /* SyntaxKind.StringLiteral */: case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: case 8 /* SyntaxKind.NumericLiteral */: return true; default: return false; } } ts.isPropertyNameLiteral = isPropertyNameLiteral; function getTextOfIdentifierOrLiteral(node) { return ts.isMemberName(node) ? ts.idText(node) : node.text; } ts.getTextOfIdentifierOrLiteral = getTextOfIdentifierOrLiteral; function getEscapedTextOfIdentifierOrLiteral(node) { return ts.isMemberName(node) ? node.escapedText : ts.escapeLeadingUnderscores(node.text); } ts.getEscapedTextOfIdentifierOrLiteral = getEscapedTextOfIdentifierOrLiteral; function getPropertyNameForUniqueESSymbol(symbol) { return "__@".concat(ts.getSymbolId(symbol), "@").concat(symbol.escapedName); } ts.getPropertyNameForUniqueESSymbol = getPropertyNameForUniqueESSymbol; function getSymbolNameForPrivateIdentifier(containingClassSymbol, description) { return "__#".concat(ts.getSymbolId(containingClassSymbol), "@").concat(description); } ts.getSymbolNameForPrivateIdentifier = getSymbolNameForPrivateIdentifier; function isKnownSymbol(symbol) { return ts.startsWith(symbol.escapedName, "__@"); } ts.isKnownSymbol = isKnownSymbol; function isPrivateIdentifierSymbol(symbol) { return ts.startsWith(symbol.escapedName, "__#"); } ts.isPrivateIdentifierSymbol = isPrivateIdentifierSymbol; /** * Includes the word "Symbol" with unicode escapes */ function isESSymbolIdentifier(node) { return node.kind === 79 /* SyntaxKind.Identifier */ && node.escapedText === "Symbol"; } ts.isESSymbolIdentifier = isESSymbolIdentifier; function isPushOrUnshiftIdentifier(node) { return node.escapedText === "push" || node.escapedText === "unshift"; } ts.isPushOrUnshiftIdentifier = isPushOrUnshiftIdentifier; function isParameterDeclaration(node) { var root = getRootDeclaration(node); return root.kind === 164 /* SyntaxKind.Parameter */; } ts.isParameterDeclaration = isParameterDeclaration; function getRootDeclaration(node) { while (node.kind === 203 /* SyntaxKind.BindingElement */) { node = node.parent.parent; } return node; } ts.getRootDeclaration = getRootDeclaration; function nodeStartsNewLexicalEnvironment(node) { var kind = node.kind; return kind === 171 /* SyntaxKind.Constructor */ || kind === 213 /* SyntaxKind.FunctionExpression */ || kind === 256 /* SyntaxKind.FunctionDeclaration */ || kind === 214 /* SyntaxKind.ArrowFunction */ || kind === 169 /* SyntaxKind.MethodDeclaration */ || kind === 172 /* SyntaxKind.GetAccessor */ || kind === 173 /* SyntaxKind.SetAccessor */ || kind === 261 /* SyntaxKind.ModuleDeclaration */ || kind === 305 /* SyntaxKind.SourceFile */; } ts.nodeStartsNewLexicalEnvironment = nodeStartsNewLexicalEnvironment; function nodeIsSynthesized(range) { return positionIsSynthesized(range.pos) || positionIsSynthesized(range.end); } ts.nodeIsSynthesized = nodeIsSynthesized; function getOriginalSourceFile(sourceFile) { return ts.getParseTreeNode(sourceFile, ts.isSourceFile) || sourceFile; } ts.getOriginalSourceFile = getOriginalSourceFile; var Associativity; (function (Associativity) { Associativity[Associativity["Left"] = 0] = "Left"; Associativity[Associativity["Right"] = 1] = "Right"; })(Associativity = ts.Associativity || (ts.Associativity = {})); function getExpressionAssociativity(expression) { var operator = getOperator(expression); var hasArguments = expression.kind === 209 /* SyntaxKind.NewExpression */ && expression.arguments !== undefined; return getOperatorAssociativity(expression.kind, operator, hasArguments); } ts.getExpressionAssociativity = getExpressionAssociativity; function getOperatorAssociativity(kind, operator, hasArguments) { switch (kind) { case 209 /* SyntaxKind.NewExpression */: return hasArguments ? 0 /* Associativity.Left */ : 1 /* Associativity.Right */; case 219 /* SyntaxKind.PrefixUnaryExpression */: case 216 /* SyntaxKind.TypeOfExpression */: case 217 /* SyntaxKind.VoidExpression */: case 215 /* SyntaxKind.DeleteExpression */: case 218 /* SyntaxKind.AwaitExpression */: case 222 /* SyntaxKind.ConditionalExpression */: case 224 /* SyntaxKind.YieldExpression */: return 1 /* Associativity.Right */; case 221 /* SyntaxKind.BinaryExpression */: switch (operator) { case 42 /* SyntaxKind.AsteriskAsteriskToken */: case 63 /* SyntaxKind.EqualsToken */: case 64 /* SyntaxKind.PlusEqualsToken */: case 65 /* SyntaxKind.MinusEqualsToken */: case 67 /* SyntaxKind.AsteriskAsteriskEqualsToken */: case 66 /* SyntaxKind.AsteriskEqualsToken */: case 68 /* SyntaxKind.SlashEqualsToken */: case 69 /* SyntaxKind.PercentEqualsToken */: case 70 /* SyntaxKind.LessThanLessThanEqualsToken */: case 71 /* SyntaxKind.GreaterThanGreaterThanEqualsToken */: case 72 /* SyntaxKind.GreaterThanGreaterThanGreaterThanEqualsToken */: case 73 /* SyntaxKind.AmpersandEqualsToken */: case 78 /* SyntaxKind.CaretEqualsToken */: case 74 /* SyntaxKind.BarEqualsToken */: case 75 /* SyntaxKind.BarBarEqualsToken */: case 76 /* SyntaxKind.AmpersandAmpersandEqualsToken */: case 77 /* SyntaxKind.QuestionQuestionEqualsToken */: return 1 /* Associativity.Right */; } } return 0 /* Associativity.Left */; } ts.getOperatorAssociativity = getOperatorAssociativity; function getExpressionPrecedence(expression) { var operator = getOperator(expression); var hasArguments = expression.kind === 209 /* SyntaxKind.NewExpression */ && expression.arguments !== undefined; return getOperatorPrecedence(expression.kind, operator, hasArguments); } ts.getExpressionPrecedence = getExpressionPrecedence; function getOperator(expression) { if (expression.kind === 221 /* SyntaxKind.BinaryExpression */) { return expression.operatorToken.kind; } else if (expression.kind === 219 /* SyntaxKind.PrefixUnaryExpression */ || expression.kind === 220 /* SyntaxKind.PostfixUnaryExpression */) { return expression.operator; } else { return expression.kind; } } ts.getOperator = getOperator; var OperatorPrecedence; (function (OperatorPrecedence) { // Expression: // AssignmentExpression // Expression `,` AssignmentExpression OperatorPrecedence[OperatorPrecedence["Comma"] = 0] = "Comma"; // NOTE: `Spread` is higher than `Comma` due to how it is parsed in |ElementList| // SpreadElement: // `...` AssignmentExpression OperatorPrecedence[OperatorPrecedence["Spread"] = 1] = "Spread"; // AssignmentExpression: // ConditionalExpression // YieldExpression // ArrowFunction // AsyncArrowFunction // LeftHandSideExpression `=` AssignmentExpression // LeftHandSideExpression AssignmentOperator AssignmentExpression // // NOTE: AssignmentExpression is broken down into several precedences due to the requirements // of the parenthesizer rules. // AssignmentExpression: YieldExpression // YieldExpression: // `yield` // `yield` AssignmentExpression // `yield` `*` AssignmentExpression OperatorPrecedence[OperatorPrecedence["Yield"] = 2] = "Yield"; // AssignmentExpression: LeftHandSideExpression `=` AssignmentExpression // AssignmentExpression: LeftHandSideExpression AssignmentOperator AssignmentExpression // AssignmentOperator: one of // `*=` `/=` `%=` `+=` `-=` `<<=` `>>=` `>>>=` `&=` `^=` `|=` `**=` OperatorPrecedence[OperatorPrecedence["Assignment"] = 3] = "Assignment"; // NOTE: `Conditional` is considered higher than `Assignment` here, but in reality they have // the same precedence. // AssignmentExpression: ConditionalExpression // ConditionalExpression: // ShortCircuitExpression // ShortCircuitExpression `?` AssignmentExpression `:` AssignmentExpression // ShortCircuitExpression: // LogicalORExpression // CoalesceExpression OperatorPrecedence[OperatorPrecedence["Conditional"] = 4] = "Conditional"; // CoalesceExpression: // CoalesceExpressionHead `??` BitwiseORExpression // CoalesceExpressionHead: // CoalesceExpression // BitwiseORExpression OperatorPrecedence[OperatorPrecedence["Coalesce"] = 4] = "Coalesce"; // LogicalORExpression: // LogicalANDExpression // LogicalORExpression `||` LogicalANDExpression OperatorPrecedence[OperatorPrecedence["LogicalOR"] = 5] = "LogicalOR"; // LogicalANDExpression: // BitwiseORExpression // LogicalANDExprerssion `&&` BitwiseORExpression OperatorPrecedence[OperatorPrecedence["LogicalAND"] = 6] = "LogicalAND"; // BitwiseORExpression: // BitwiseXORExpression // BitwiseORExpression `^` BitwiseXORExpression OperatorPrecedence[OperatorPrecedence["BitwiseOR"] = 7] = "BitwiseOR"; // BitwiseXORExpression: // BitwiseANDExpression // BitwiseXORExpression `^` BitwiseANDExpression OperatorPrecedence[OperatorPrecedence["BitwiseXOR"] = 8] = "BitwiseXOR"; // BitwiseANDExpression: // EqualityExpression // BitwiseANDExpression `^` EqualityExpression OperatorPrecedence[OperatorPrecedence["BitwiseAND"] = 9] = "BitwiseAND"; // EqualityExpression: // RelationalExpression // EqualityExpression `==` RelationalExpression // EqualityExpression `!=` RelationalExpression // EqualityExpression `===` RelationalExpression // EqualityExpression `!==` RelationalExpression OperatorPrecedence[OperatorPrecedence["Equality"] = 10] = "Equality"; // RelationalExpression: // ShiftExpression // RelationalExpression `<` ShiftExpression // RelationalExpression `>` ShiftExpression // RelationalExpression `<=` ShiftExpression // RelationalExpression `>=` ShiftExpression // RelationalExpression `instanceof` ShiftExpression // RelationalExpression `in` ShiftExpression // [+TypeScript] RelationalExpression `as` Type OperatorPrecedence[OperatorPrecedence["Relational"] = 11] = "Relational"; // ShiftExpression: // AdditiveExpression // ShiftExpression `<<` AdditiveExpression // ShiftExpression `>>` AdditiveExpression // ShiftExpression `>>>` AdditiveExpression OperatorPrecedence[OperatorPrecedence["Shift"] = 12] = "Shift"; // AdditiveExpression: // MultiplicativeExpression // AdditiveExpression `+` MultiplicativeExpression // AdditiveExpression `-` MultiplicativeExpression OperatorPrecedence[OperatorPrecedence["Additive"] = 13] = "Additive"; // MultiplicativeExpression: // ExponentiationExpression // MultiplicativeExpression MultiplicativeOperator ExponentiationExpression // MultiplicativeOperator: one of `*`, `/`, `%` OperatorPrecedence[OperatorPrecedence["Multiplicative"] = 14] = "Multiplicative"; // ExponentiationExpression: // UnaryExpression // UpdateExpression `**` ExponentiationExpression OperatorPrecedence[OperatorPrecedence["Exponentiation"] = 15] = "Exponentiation"; // UnaryExpression: // UpdateExpression // `delete` UnaryExpression // `void` UnaryExpression // `typeof` UnaryExpression // `+` UnaryExpression // `-` UnaryExpression // `~` UnaryExpression // `!` UnaryExpression // AwaitExpression // UpdateExpression: // TODO: Do we need to investigate the precedence here? // `++` UnaryExpression // `--` UnaryExpression OperatorPrecedence[OperatorPrecedence["Unary"] = 16] = "Unary"; // UpdateExpression: // LeftHandSideExpression // LeftHandSideExpression `++` // LeftHandSideExpression `--` OperatorPrecedence[OperatorPrecedence["Update"] = 17] = "Update"; // LeftHandSideExpression: // NewExpression // CallExpression // NewExpression: // MemberExpression // `new` NewExpression OperatorPrecedence[OperatorPrecedence["LeftHandSide"] = 18] = "LeftHandSide"; // CallExpression: // CoverCallExpressionAndAsyncArrowHead // SuperCall // ImportCall // CallExpression Arguments // CallExpression `[` Expression `]` // CallExpression `.` IdentifierName // CallExpression TemplateLiteral // MemberExpression: // PrimaryExpression // MemberExpression `[` Expression `]` // MemberExpression `.` IdentifierName // MemberExpression TemplateLiteral // SuperProperty // MetaProperty // `new` MemberExpression Arguments OperatorPrecedence[OperatorPrecedence["Member"] = 19] = "Member"; // TODO: JSXElement? // PrimaryExpression: // `this` // IdentifierReference // Literal // ArrayLiteral // ObjectLiteral // FunctionExpression // ClassExpression // GeneratorExpression // AsyncFunctionExpression // AsyncGeneratorExpression // RegularExpressionLiteral // TemplateLiteral // CoverParenthesizedExpressionAndArrowParameterList OperatorPrecedence[OperatorPrecedence["Primary"] = 20] = "Primary"; OperatorPrecedence[OperatorPrecedence["Highest"] = 20] = "Highest"; OperatorPrecedence[OperatorPrecedence["Lowest"] = 0] = "Lowest"; // -1 is lower than all other precedences. Returning it will cause binary expression // parsing to stop. OperatorPrecedence[OperatorPrecedence["Invalid"] = -1] = "Invalid"; })(OperatorPrecedence = ts.OperatorPrecedence || (ts.OperatorPrecedence = {})); function getOperatorPrecedence(nodeKind, operatorKind, hasArguments) { switch (nodeKind) { case 351 /* SyntaxKind.CommaListExpression */: return 0 /* OperatorPrecedence.Comma */; case 225 /* SyntaxKind.SpreadElement */: return 1 /* OperatorPrecedence.Spread */; case 224 /* SyntaxKind.YieldExpression */: return 2 /* OperatorPrecedence.Yield */; case 222 /* SyntaxKind.ConditionalExpression */: return 4 /* OperatorPrecedence.Conditional */; case 221 /* SyntaxKind.BinaryExpression */: switch (operatorKind) { case 27 /* SyntaxKind.CommaToken */: return 0 /* OperatorPrecedence.Comma */; case 63 /* SyntaxKind.EqualsToken */: case 64 /* SyntaxKind.PlusEqualsToken */: case 65 /* SyntaxKind.MinusEqualsToken */: case 67 /* SyntaxKind.AsteriskAsteriskEqualsToken */: case 66 /* SyntaxKind.AsteriskEqualsToken */: case 68 /* SyntaxKind.SlashEqualsToken */: case 69 /* SyntaxKind.PercentEqualsToken */: case 70 /* SyntaxKind.LessThanLessThanEqualsToken */: case 71 /* SyntaxKind.GreaterThanGreaterThanEqualsToken */: case 72 /* SyntaxKind.GreaterThanGreaterThanGreaterThanEqualsToken */: case 73 /* SyntaxKind.AmpersandEqualsToken */: case 78 /* SyntaxKind.CaretEqualsToken */: case 74 /* SyntaxKind.BarEqualsToken */: case 75 /* SyntaxKind.BarBarEqualsToken */: case 76 /* SyntaxKind.AmpersandAmpersandEqualsToken */: case 77 /* SyntaxKind.QuestionQuestionEqualsToken */: return 3 /* OperatorPrecedence.Assignment */; default: return getBinaryOperatorPrecedence(operatorKind); } // TODO: Should prefix `++` and `--` be moved to the `Update` precedence? case 211 /* SyntaxKind.TypeAssertionExpression */: case 230 /* SyntaxKind.NonNullExpression */: case 219 /* SyntaxKind.PrefixUnaryExpression */: case 216 /* SyntaxKind.TypeOfExpression */: case 217 /* SyntaxKind.VoidExpression */: case 215 /* SyntaxKind.DeleteExpression */: case 218 /* SyntaxKind.AwaitExpression */: return 16 /* OperatorPrecedence.Unary */; case 220 /* SyntaxKind.PostfixUnaryExpression */: return 17 /* OperatorPrecedence.Update */; case 208 /* SyntaxKind.CallExpression */: return 18 /* OperatorPrecedence.LeftHandSide */; case 209 /* SyntaxKind.NewExpression */: return hasArguments ? 19 /* OperatorPrecedence.Member */ : 18 /* OperatorPrecedence.LeftHandSide */; case 210 /* SyntaxKind.TaggedTemplateExpression */: case 206 /* SyntaxKind.PropertyAccessExpression */: case 207 /* SyntaxKind.ElementAccessExpression */: case 231 /* SyntaxKind.MetaProperty */: return 19 /* OperatorPrecedence.Member */; case 229 /* SyntaxKind.AsExpression */: return 11 /* OperatorPrecedence.Relational */; case 108 /* SyntaxKind.ThisKeyword */: case 106 /* SyntaxKind.SuperKeyword */: case 79 /* SyntaxKind.Identifier */: case 80 /* SyntaxKind.PrivateIdentifier */: case 104 /* SyntaxKind.NullKeyword */: case 110 /* SyntaxKind.TrueKeyword */: case 95 /* SyntaxKind.FalseKeyword */: case 8 /* SyntaxKind.NumericLiteral */: case 9 /* SyntaxKind.BigIntLiteral */: case 10 /* SyntaxKind.StringLiteral */: case 204 /* SyntaxKind.ArrayLiteralExpression */: case 205 /* SyntaxKind.ObjectLiteralExpression */: case 213 /* SyntaxKind.FunctionExpression */: case 214 /* SyntaxKind.ArrowFunction */: case 226 /* SyntaxKind.ClassExpression */: case 13 /* SyntaxKind.RegularExpressionLiteral */: case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: case 223 /* SyntaxKind.TemplateExpression */: case 212 /* SyntaxKind.ParenthesizedExpression */: case 227 /* SyntaxKind.OmittedExpression */: case 278 /* SyntaxKind.JsxElement */: case 279 /* SyntaxKind.JsxSelfClosingElement */: case 282 /* SyntaxKind.JsxFragment */: return 20 /* OperatorPrecedence.Primary */; default: return -1 /* OperatorPrecedence.Invalid */; } } ts.getOperatorPrecedence = getOperatorPrecedence; function getBinaryOperatorPrecedence(kind) { switch (kind) { case 60 /* SyntaxKind.QuestionQuestionToken */: return 4 /* OperatorPrecedence.Coalesce */; case 56 /* SyntaxKind.BarBarToken */: return 5 /* OperatorPrecedence.LogicalOR */; case 55 /* SyntaxKind.AmpersandAmpersandToken */: return 6 /* OperatorPrecedence.LogicalAND */; case 51 /* SyntaxKind.BarToken */: return 7 /* OperatorPrecedence.BitwiseOR */; case 52 /* SyntaxKind.CaretToken */: return 8 /* OperatorPrecedence.BitwiseXOR */; case 50 /* SyntaxKind.AmpersandToken */: return 9 /* OperatorPrecedence.BitwiseAND */; case 34 /* SyntaxKind.EqualsEqualsToken */: case 35 /* SyntaxKind.ExclamationEqualsToken */: case 36 /* SyntaxKind.EqualsEqualsEqualsToken */: case 37 /* SyntaxKind.ExclamationEqualsEqualsToken */: return 10 /* OperatorPrecedence.Equality */; case 29 /* SyntaxKind.LessThanToken */: case 31 /* SyntaxKind.GreaterThanToken */: case 32 /* SyntaxKind.LessThanEqualsToken */: case 33 /* SyntaxKind.GreaterThanEqualsToken */: case 102 /* SyntaxKind.InstanceOfKeyword */: case 101 /* SyntaxKind.InKeyword */: case 127 /* SyntaxKind.AsKeyword */: return 11 /* OperatorPrecedence.Relational */; case 47 /* SyntaxKind.LessThanLessThanToken */: case 48 /* SyntaxKind.GreaterThanGreaterThanToken */: case 49 /* SyntaxKind.GreaterThanGreaterThanGreaterThanToken */: return 12 /* OperatorPrecedence.Shift */; case 39 /* SyntaxKind.PlusToken */: case 40 /* SyntaxKind.MinusToken */: return 13 /* OperatorPrecedence.Additive */; case 41 /* SyntaxKind.AsteriskToken */: case 43 /* SyntaxKind.SlashToken */: case 44 /* SyntaxKind.PercentToken */: return 14 /* OperatorPrecedence.Multiplicative */; case 42 /* SyntaxKind.AsteriskAsteriskToken */: return 15 /* OperatorPrecedence.Exponentiation */; } // -1 is lower than all other precedences. Returning it will cause binary expression // parsing to stop. return -1; } ts.getBinaryOperatorPrecedence = getBinaryOperatorPrecedence; function getSemanticJsxChildren(children) { return ts.filter(children, function (i) { switch (i.kind) { case 288 /* SyntaxKind.JsxExpression */: return !!i.expression; case 11 /* SyntaxKind.JsxText */: return !i.containsOnlyTriviaWhiteSpaces; default: return true; } }); } ts.getSemanticJsxChildren = getSemanticJsxChildren; function createDiagnosticCollection() { var nonFileDiagnostics = []; // See GH#19873 var filesWithDiagnostics = []; var fileDiagnostics = new ts.Map(); var hasReadNonFileDiagnostics = false; return { add: add, lookup: lookup, getGlobalDiagnostics: getGlobalDiagnostics, getDiagnostics: getDiagnostics, }; function lookup(diagnostic) { var diagnostics; if (diagnostic.file) { diagnostics = fileDiagnostics.get(diagnostic.file.fileName); } else { diagnostics = nonFileDiagnostics; } if (!diagnostics) { return undefined; } var result = ts.binarySearch(diagnostics, diagnostic, ts.identity, compareDiagnosticsSkipRelatedInformation); if (result >= 0) { return diagnostics[result]; } return undefined; } function add(diagnostic) { var diagnostics; if (diagnostic.file) { diagnostics = fileDiagnostics.get(diagnostic.file.fileName); if (!diagnostics) { diagnostics = []; // See GH#19873 fileDiagnostics.set(diagnostic.file.fileName, diagnostics); ts.insertSorted(filesWithDiagnostics, diagnostic.file.fileName, ts.compareStringsCaseSensitive); } } else { // If we've already read the non-file diagnostics, do not modify the existing array. if (hasReadNonFileDiagnostics) { hasReadNonFileDiagnostics = false; nonFileDiagnostics = nonFileDiagnostics.slice(); } diagnostics = nonFileDiagnostics; } ts.insertSorted(diagnostics, diagnostic, compareDiagnostics); } function getGlobalDiagnostics() { hasReadNonFileDiagnostics = true; return nonFileDiagnostics; } function getDiagnostics(fileName) { if (fileName) { return fileDiagnostics.get(fileName) || []; } var fileDiags = ts.flatMapToMutable(filesWithDiagnostics, function (f) { return fileDiagnostics.get(f); }); if (!nonFileDiagnostics.length) { return fileDiags; } fileDiags.unshift.apply(fileDiags, nonFileDiagnostics); return fileDiags; } } ts.createDiagnosticCollection = createDiagnosticCollection; var templateSubstitutionRegExp = /\$\{/g; function escapeTemplateSubstitution(str) { return str.replace(templateSubstitutionRegExp, "\\${"); } /** @internal */ function hasInvalidEscape(template) { return template && !!(ts.isNoSubstitutionTemplateLiteral(template) ? template.templateFlags : (template.head.templateFlags || ts.some(template.templateSpans, function (span) { return !!span.literal.templateFlags; }))); } ts.hasInvalidEscape = hasInvalidEscape; // This consists of the first 19 unprintable ASCII characters, canonical escapes, lineSeparator, // paragraphSeparator, and nextLine. The latter three are just desirable to suppress new lines in // the language service. These characters should be escaped when printing, and if any characters are added, // the map below must be updated. Note that this regexp *does not* include the 'delete' character. // There is no reason for this other than that JSON.stringify does not handle it either. var doubleQuoteEscapedCharsRegExp = /[\\\"\u0000-\u001f\t\v\f\b\r\n\u2028\u2029\u0085]/g; var singleQuoteEscapedCharsRegExp = /[\\\'\u0000-\u001f\t\v\f\b\r\n\u2028\u2029\u0085]/g; // Template strings preserve simple LF newlines, still encode CRLF (or CR) var backtickQuoteEscapedCharsRegExp = /\r\n|[\\\`\u0000-\u001f\t\v\f\b\r\u2028\u2029\u0085]/g; var escapedCharsMap = new ts.Map(ts.getEntries({ "\t": "\\t", "\v": "\\v", "\f": "\\f", "\b": "\\b", "\r": "\\r", "\n": "\\n", "\\": "\\\\", "\"": "\\\"", "\'": "\\\'", "\`": "\\\`", "\u2028": "\\u2028", "\u2029": "\\u2029", "\u0085": "\\u0085", "\r\n": "\\r\\n", // special case for CRLFs in backticks })); function encodeUtf16EscapeSequence(charCode) { var hexCharCode = charCode.toString(16).toUpperCase(); var paddedHexCode = ("0000" + hexCharCode).slice(-4); return "\\u" + paddedHexCode; } function getReplacement(c, offset, input) { if (c.charCodeAt(0) === 0 /* CharacterCodes.nullCharacter */) { var lookAhead = input.charCodeAt(offset + c.length); if (lookAhead >= 48 /* CharacterCodes._0 */ && lookAhead <= 57 /* CharacterCodes._9 */) { // If the null character is followed by digits, print as a hex escape to prevent the result from parsing as an octal (which is forbidden in strict mode) return "\\x00"; } // Otherwise, keep printing a literal \0 for the null character return "\\0"; } return escapedCharsMap.get(c) || encodeUtf16EscapeSequence(c.charCodeAt(0)); } /** * Based heavily on the abstract 'Quote'/'QuoteJSONString' operation from ECMA-262 (24.3.2.2), * but augmented for a few select characters (e.g. lineSeparator, paragraphSeparator, nextLine) * Note that this doesn't actually wrap the input in double quotes. */ function escapeString(s, quoteChar) { var escapedCharsRegExp = quoteChar === 96 /* CharacterCodes.backtick */ ? backtickQuoteEscapedCharsRegExp : quoteChar === 39 /* CharacterCodes.singleQuote */ ? singleQuoteEscapedCharsRegExp : doubleQuoteEscapedCharsRegExp; return s.replace(escapedCharsRegExp, getReplacement); } ts.escapeString = escapeString; var nonAsciiCharacters = /[^\u0000-\u007F]/g; function escapeNonAsciiString(s, quoteChar) { s = escapeString(s, quoteChar); // Replace non-ASCII characters with '\uNNNN' escapes if any exist. // Otherwise just return the original string. return nonAsciiCharacters.test(s) ? s.replace(nonAsciiCharacters, function (c) { return encodeUtf16EscapeSequence(c.charCodeAt(0)); }) : s; } ts.escapeNonAsciiString = escapeNonAsciiString; // This consists of the first 19 unprintable ASCII characters, JSX canonical escapes, lineSeparator, // paragraphSeparator, and nextLine. The latter three are just desirable to suppress new lines in // the language service. These characters should be escaped when printing, and if any characters are added, // the map below must be updated. var jsxDoubleQuoteEscapedCharsRegExp = /[\"\u0000-\u001f\u2028\u2029\u0085]/g; var jsxSingleQuoteEscapedCharsRegExp = /[\'\u0000-\u001f\u2028\u2029\u0085]/g; var jsxEscapedCharsMap = new ts.Map(ts.getEntries({ "\"": """, "\'": "'" })); function encodeJsxCharacterEntity(charCode) { var hexCharCode = charCode.toString(16).toUpperCase(); return "&#x" + hexCharCode + ";"; } function getJsxAttributeStringReplacement(c) { if (c.charCodeAt(0) === 0 /* CharacterCodes.nullCharacter */) { return "�"; } return jsxEscapedCharsMap.get(c) || encodeJsxCharacterEntity(c.charCodeAt(0)); } function escapeJsxAttributeString(s, quoteChar) { var escapedCharsRegExp = quoteChar === 39 /* CharacterCodes.singleQuote */ ? jsxSingleQuoteEscapedCharsRegExp : jsxDoubleQuoteEscapedCharsRegExp; return s.replace(escapedCharsRegExp, getJsxAttributeStringReplacement); } ts.escapeJsxAttributeString = escapeJsxAttributeString; /** * Strip off existed surrounding single quotes, double quotes, or backticks from a given string * * @return non-quoted string */ function stripQuotes(name) { var length = name.length; if (length >= 2 && name.charCodeAt(0) === name.charCodeAt(length - 1) && isQuoteOrBacktick(name.charCodeAt(0))) { return name.substring(1, length - 1); } return name; } ts.stripQuotes = stripQuotes; function isQuoteOrBacktick(charCode) { return charCode === 39 /* CharacterCodes.singleQuote */ || charCode === 34 /* CharacterCodes.doubleQuote */ || charCode === 96 /* CharacterCodes.backtick */; } function isIntrinsicJsxName(name) { var ch = name.charCodeAt(0); return (ch >= 97 /* CharacterCodes.a */ && ch <= 122 /* CharacterCodes.z */) || ts.stringContains(name, "-") || ts.stringContains(name, ":"); } ts.isIntrinsicJsxName = isIntrinsicJsxName; var indentStrings = ["", " "]; function getIndentString(level) { // prepopulate cache var singleLevel = indentStrings[1]; for (var current = indentStrings.length; current <= level; current++) { indentStrings.push(indentStrings[current - 1] + singleLevel); } return indentStrings[level]; } ts.getIndentString = getIndentString; function getIndentSize() { return indentStrings[1].length; } ts.getIndentSize = getIndentSize; function isNightly() { return ts.stringContains(ts.version, "-dev") || ts.stringContains(ts.version, "-insiders"); } ts.isNightly = isNightly; function createTextWriter(newLine) { var output; var indent; var lineStart; var lineCount; var linePos; var hasTrailingComment = false; function updateLineCountAndPosFor(s) { var lineStartsOfS = ts.computeLineStarts(s); if (lineStartsOfS.length > 1) { lineCount = lineCount + lineStartsOfS.length - 1; linePos = output.length - s.length + ts.last(lineStartsOfS); lineStart = (linePos - output.length) === 0; } else { lineStart = false; } } function writeText(s) { if (s && s.length) { if (lineStart) { s = getIndentString(indent) + s; lineStart = false; } output += s; updateLineCountAndPosFor(s); } } function write(s) { if (s) hasTrailingComment = false; writeText(s); } function writeComment(s) { if (s) hasTrailingComment = true; writeText(s); } function reset() { output = ""; indent = 0; lineStart = true; lineCount = 0; linePos = 0; hasTrailingComment = false; } function rawWrite(s) { if (s !== undefined) { output += s; updateLineCountAndPosFor(s); hasTrailingComment = false; } } function writeLiteral(s) { if (s && s.length) { write(s); } } function writeLine(force) { if (!lineStart || force) { output += newLine; lineCount++; linePos = output.length; lineStart = true; hasTrailingComment = false; } } function getTextPosWithWriteLine() { return lineStart ? output.length : (output.length + newLine.length); } reset(); return { write: write, rawWrite: rawWrite, writeLiteral: writeLiteral, writeLine: writeLine, increaseIndent: function () { indent++; }, decreaseIndent: function () { indent--; }, getIndent: function () { return indent; }, getTextPos: function () { return output.length; }, getLine: function () { return lineCount; }, getColumn: function () { return lineStart ? indent * getIndentSize() : output.length - linePos; }, getText: function () { return output; }, isAtStartOfLine: function () { return lineStart; }, hasTrailingComment: function () { return hasTrailingComment; }, hasTrailingWhitespace: function () { return !!output.length && ts.isWhiteSpaceLike(output.charCodeAt(output.length - 1)); }, clear: reset, reportInaccessibleThisError: ts.noop, reportPrivateInBaseOfClassExpression: ts.noop, reportInaccessibleUniqueSymbolError: ts.noop, trackSymbol: function () { return false; }, writeKeyword: write, writeOperator: write, writeParameter: write, writeProperty: write, writePunctuation: write, writeSpace: write, writeStringLiteral: write, writeSymbol: function (s, _) { return write(s); }, writeTrailingSemicolon: write, writeComment: writeComment, getTextPosWithWriteLine: getTextPosWithWriteLine }; } ts.createTextWriter = createTextWriter; function getTrailingSemicolonDeferringWriter(writer) { var pendingTrailingSemicolon = false; function commitPendingTrailingSemicolon() { if (pendingTrailingSemicolon) { writer.writeTrailingSemicolon(";"); pendingTrailingSemicolon = false; } } return __assign(__assign({}, writer), { writeTrailingSemicolon: function () { pendingTrailingSemicolon = true; }, writeLiteral: function (s) { commitPendingTrailingSemicolon(); writer.writeLiteral(s); }, writeStringLiteral: function (s) { commitPendingTrailingSemicolon(); writer.writeStringLiteral(s); }, writeSymbol: function (s, sym) { commitPendingTrailingSemicolon(); writer.writeSymbol(s, sym); }, writePunctuation: function (s) { commitPendingTrailingSemicolon(); writer.writePunctuation(s); }, writeKeyword: function (s) { commitPendingTrailingSemicolon(); writer.writeKeyword(s); }, writeOperator: function (s) { commitPendingTrailingSemicolon(); writer.writeOperator(s); }, writeParameter: function (s) { commitPendingTrailingSemicolon(); writer.writeParameter(s); }, writeSpace: function (s) { commitPendingTrailingSemicolon(); writer.writeSpace(s); }, writeProperty: function (s) { commitPendingTrailingSemicolon(); writer.writeProperty(s); }, writeComment: function (s) { commitPendingTrailingSemicolon(); writer.writeComment(s); }, writeLine: function () { commitPendingTrailingSemicolon(); writer.writeLine(); }, increaseIndent: function () { commitPendingTrailingSemicolon(); writer.increaseIndent(); }, decreaseIndent: function () { commitPendingTrailingSemicolon(); writer.decreaseIndent(); } }); } ts.getTrailingSemicolonDeferringWriter = getTrailingSemicolonDeferringWriter; function hostUsesCaseSensitiveFileNames(host) { return host.useCaseSensitiveFileNames ? host.useCaseSensitiveFileNames() : false; } ts.hostUsesCaseSensitiveFileNames = hostUsesCaseSensitiveFileNames; function hostGetCanonicalFileName(host) { return ts.createGetCanonicalFileName(hostUsesCaseSensitiveFileNames(host)); } ts.hostGetCanonicalFileName = hostGetCanonicalFileName; function getResolvedExternalModuleName(host, file, referenceFile) { return file.moduleName || getExternalModuleNameFromPath(host, file.fileName, referenceFile && referenceFile.fileName); } ts.getResolvedExternalModuleName = getResolvedExternalModuleName; function getCanonicalAbsolutePath(host, path) { return host.getCanonicalFileName(ts.getNormalizedAbsolutePath(path, host.getCurrentDirectory())); } function getExternalModuleNameFromDeclaration(host, resolver, declaration) { var file = resolver.getExternalModuleFileFromDeclaration(declaration); if (!file || file.isDeclarationFile) { return undefined; } // If the declaration already uses a non-relative name, and is outside the common source directory, continue to use it var specifier = getExternalModuleName(declaration); if (specifier && ts.isStringLiteralLike(specifier) && !ts.pathIsRelative(specifier.text) && getCanonicalAbsolutePath(host, file.path).indexOf(getCanonicalAbsolutePath(host, ts.ensureTrailingDirectorySeparator(host.getCommonSourceDirectory()))) === -1) { return undefined; } return getResolvedExternalModuleName(host, file); } ts.getExternalModuleNameFromDeclaration = getExternalModuleNameFromDeclaration; /** * Resolves a local path to a path which is absolute to the base of the emit */ function getExternalModuleNameFromPath(host, fileName, referencePath) { var getCanonicalFileName = function (f) { return host.getCanonicalFileName(f); }; var dir = ts.toPath(referencePath ? ts.getDirectoryPath(referencePath) : host.getCommonSourceDirectory(), host.getCurrentDirectory(), getCanonicalFileName); var filePath = ts.getNormalizedAbsolutePath(fileName, host.getCurrentDirectory()); var relativePath = ts.getRelativePathToDirectoryOrUrl(dir, filePath, dir, getCanonicalFileName, /*isAbsolutePathAnUrl*/ false); var extensionless = removeFileExtension(relativePath); return referencePath ? ts.ensurePathIsNonModuleName(extensionless) : extensionless; } ts.getExternalModuleNameFromPath = getExternalModuleNameFromPath; function getOwnEmitOutputFilePath(fileName, host, extension) { var compilerOptions = host.getCompilerOptions(); var emitOutputFilePathWithoutExtension; if (compilerOptions.outDir) { emitOutputFilePathWithoutExtension = removeFileExtension(getSourceFilePathInNewDir(fileName, host, compilerOptions.outDir)); } else { emitOutputFilePathWithoutExtension = removeFileExtension(fileName); } return emitOutputFilePathWithoutExtension + extension; } ts.getOwnEmitOutputFilePath = getOwnEmitOutputFilePath; function getDeclarationEmitOutputFilePath(fileName, host) { return getDeclarationEmitOutputFilePathWorker(fileName, host.getCompilerOptions(), host.getCurrentDirectory(), host.getCommonSourceDirectory(), function (f) { return host.getCanonicalFileName(f); }); } ts.getDeclarationEmitOutputFilePath = getDeclarationEmitOutputFilePath; function getDeclarationEmitOutputFilePathWorker(fileName, options, currentDirectory, commonSourceDirectory, getCanonicalFileName) { var outputDir = options.declarationDir || options.outDir; // Prefer declaration folder if specified var path = outputDir ? getSourceFilePathInNewDirWorker(fileName, outputDir, currentDirectory, commonSourceDirectory, getCanonicalFileName) : fileName; var declarationExtension = getDeclarationEmitExtensionForPath(path); return removeFileExtension(path) + declarationExtension; } ts.getDeclarationEmitOutputFilePathWorker = getDeclarationEmitOutputFilePathWorker; function getDeclarationEmitExtensionForPath(path) { return ts.fileExtensionIsOneOf(path, [".mjs" /* Extension.Mjs */, ".mts" /* Extension.Mts */]) ? ".d.mts" /* Extension.Dmts */ : ts.fileExtensionIsOneOf(path, [".cjs" /* Extension.Cjs */, ".cts" /* Extension.Cts */]) ? ".d.cts" /* Extension.Dcts */ : ts.fileExtensionIsOneOf(path, [".json" /* Extension.Json */]) ? ".json.d.ts" : // Drive-by redefinition of json declaration file output name so if it's ever enabled, it behaves well ".d.ts" /* Extension.Dts */; } ts.getDeclarationEmitExtensionForPath = getDeclarationEmitExtensionForPath; /** * This function is an inverse of `getDeclarationEmitExtensionForPath`. */ function getPossibleOriginalInputExtensionForExtension(path) { return ts.fileExtensionIsOneOf(path, [".d.mts" /* Extension.Dmts */, ".mjs" /* Extension.Mjs */, ".mts" /* Extension.Mts */]) ? [".mts" /* Extension.Mts */, ".mjs" /* Extension.Mjs */] : ts.fileExtensionIsOneOf(path, [".d.cts" /* Extension.Dcts */, ".cjs" /* Extension.Cjs */, ".cts" /* Extension.Cts */]) ? [".cts" /* Extension.Cts */, ".cjs" /* Extension.Cjs */] : ts.fileExtensionIsOneOf(path, [".json.d.ts"]) ? [".json" /* Extension.Json */] : [".tsx" /* Extension.Tsx */, ".ts" /* Extension.Ts */, ".jsx" /* Extension.Jsx */, ".js" /* Extension.Js */]; } ts.getPossibleOriginalInputExtensionForExtension = getPossibleOriginalInputExtensionForExtension; function outFile(options) { return options.outFile || options.out; } ts.outFile = outFile; /** Returns 'undefined' if and only if 'options.paths' is undefined. */ function getPathsBasePath(options, host) { var _a, _b; if (!options.paths) return undefined; return (_a = options.baseUrl) !== null && _a !== void 0 ? _a : ts.Debug.checkDefined(options.pathsBasePath || ((_b = host.getCurrentDirectory) === null || _b === void 0 ? void 0 : _b.call(host)), "Encountered 'paths' without a 'baseUrl', config file, or host 'getCurrentDirectory'."); } ts.getPathsBasePath = getPathsBasePath; /** * Gets the source files that are expected to have an emit output. * * Originally part of `forEachExpectedEmitFile`, this functionality was extracted to support * transformations. * * @param host An EmitHost. * @param targetSourceFile An optional target source file to emit. */ function getSourceFilesToEmit(host, targetSourceFile, forceDtsEmit) { var options = host.getCompilerOptions(); if (outFile(options)) { var moduleKind = getEmitModuleKind(options); var moduleEmitEnabled_1 = options.emitDeclarationOnly || moduleKind === ts.ModuleKind.AMD || moduleKind === ts.ModuleKind.System; // Can emit only sources that are not declaration file and are either non module code or module with --module or --target es6 specified return ts.filter(host.getSourceFiles(), function (sourceFile) { return (moduleEmitEnabled_1 || !ts.isExternalModule(sourceFile)) && sourceFileMayBeEmitted(sourceFile, host, forceDtsEmit); }); } else { var sourceFiles = targetSourceFile === undefined ? host.getSourceFiles() : [targetSourceFile]; return ts.filter(sourceFiles, function (sourceFile) { return sourceFileMayBeEmitted(sourceFile, host, forceDtsEmit); }); } } ts.getSourceFilesToEmit = getSourceFilesToEmit; /** Don't call this for `--outFile`, just for `--outDir` or plain emit. `--outFile` needs additional checks. */ function sourceFileMayBeEmitted(sourceFile, host, forceDtsEmit) { var options = host.getCompilerOptions(); return !(options.noEmitForJsFiles && isSourceFileJS(sourceFile)) && !sourceFile.isDeclarationFile && !host.isSourceFileFromExternalLibrary(sourceFile) && (forceDtsEmit || (!(isJsonSourceFile(sourceFile) && host.getResolvedProjectReferenceToRedirect(sourceFile.fileName)) && !host.isSourceOfProjectReferenceRedirect(sourceFile.fileName))); } ts.sourceFileMayBeEmitted = sourceFileMayBeEmitted; function getSourceFilePathInNewDir(fileName, host, newDirPath) { return getSourceFilePathInNewDirWorker(fileName, newDirPath, host.getCurrentDirectory(), host.getCommonSourceDirectory(), function (f) { return host.getCanonicalFileName(f); }); } ts.getSourceFilePathInNewDir = getSourceFilePathInNewDir; function getSourceFilePathInNewDirWorker(fileName, newDirPath, currentDirectory, commonSourceDirectory, getCanonicalFileName) { var sourceFilePath = ts.getNormalizedAbsolutePath(fileName, currentDirectory); var isSourceFileInCommonSourceDirectory = getCanonicalFileName(sourceFilePath).indexOf(getCanonicalFileName(commonSourceDirectory)) === 0; sourceFilePath = isSourceFileInCommonSourceDirectory ? sourceFilePath.substring(commonSourceDirectory.length) : sourceFilePath; return ts.combinePaths(newDirPath, sourceFilePath); } ts.getSourceFilePathInNewDirWorker = getSourceFilePathInNewDirWorker; function writeFile(host, diagnostics, fileName, text, writeByteOrderMark, sourceFiles, data) { host.writeFile(fileName, text, writeByteOrderMark, function (hostErrorMessage) { diagnostics.add(createCompilerDiagnostic(ts.Diagnostics.Could_not_write_file_0_Colon_1, fileName, hostErrorMessage)); }, sourceFiles, data); } ts.writeFile = writeFile; function ensureDirectoriesExist(directoryPath, createDirectory, directoryExists) { if (directoryPath.length > ts.getRootLength(directoryPath) && !directoryExists(directoryPath)) { var parentDirectory = ts.getDirectoryPath(directoryPath); ensureDirectoriesExist(parentDirectory, createDirectory, directoryExists); createDirectory(directoryPath); } } function writeFileEnsuringDirectories(path, data, writeByteOrderMark, writeFile, createDirectory, directoryExists) { // PERF: Checking for directory existence is expensive. Instead, assume the directory exists // and fall back to creating it if the file write fails. try { writeFile(path, data, writeByteOrderMark); } catch (_a) { ensureDirectoriesExist(ts.getDirectoryPath(ts.normalizePath(path)), createDirectory, directoryExists); writeFile(path, data, writeByteOrderMark); } } ts.writeFileEnsuringDirectories = writeFileEnsuringDirectories; function getLineOfLocalPosition(sourceFile, pos) { var lineStarts = ts.getLineStarts(sourceFile); return ts.computeLineOfPosition(lineStarts, pos); } ts.getLineOfLocalPosition = getLineOfLocalPosition; function getLineOfLocalPositionFromLineMap(lineMap, pos) { return ts.computeLineOfPosition(lineMap, pos); } ts.getLineOfLocalPositionFromLineMap = getLineOfLocalPositionFromLineMap; function getFirstConstructorWithBody(node) { return ts.find(node.members, function (member) { return ts.isConstructorDeclaration(member) && nodeIsPresent(member.body); }); } ts.getFirstConstructorWithBody = getFirstConstructorWithBody; function getSetAccessorValueParameter(accessor) { if (accessor && accessor.parameters.length > 0) { var hasThis = accessor.parameters.length === 2 && parameterIsThisKeyword(accessor.parameters[0]); return accessor.parameters[hasThis ? 1 : 0]; } } ts.getSetAccessorValueParameter = getSetAccessorValueParameter; /** Get the type annotation for the value parameter. */ function getSetAccessorTypeAnnotationNode(accessor) { var parameter = getSetAccessorValueParameter(accessor); return parameter && parameter.type; } ts.getSetAccessorTypeAnnotationNode = getSetAccessorTypeAnnotationNode; function getThisParameter(signature) { // callback tags do not currently support this parameters if (signature.parameters.length && !ts.isJSDocSignature(signature)) { var thisParameter = signature.parameters[0]; if (parameterIsThisKeyword(thisParameter)) { return thisParameter; } } } ts.getThisParameter = getThisParameter; function parameterIsThisKeyword(parameter) { return isThisIdentifier(parameter.name); } ts.parameterIsThisKeyword = parameterIsThisKeyword; function isThisIdentifier(node) { return !!node && node.kind === 79 /* SyntaxKind.Identifier */ && identifierIsThisKeyword(node); } ts.isThisIdentifier = isThisIdentifier; function isThisInTypeQuery(node) { if (!isThisIdentifier(node)) { return false; } while (ts.isQualifiedName(node.parent) && node.parent.left === node) { node = node.parent; } return node.parent.kind === 181 /* SyntaxKind.TypeQuery */; } ts.isThisInTypeQuery = isThisInTypeQuery; function identifierIsThisKeyword(id) { return id.originalKeywordKind === 108 /* SyntaxKind.ThisKeyword */; } ts.identifierIsThisKeyword = identifierIsThisKeyword; function getAllAccessorDeclarations(declarations, accessor) { // TODO: GH#18217 var firstAccessor; var secondAccessor; var getAccessor; var setAccessor; if (hasDynamicName(accessor)) { firstAccessor = accessor; if (accessor.kind === 172 /* SyntaxKind.GetAccessor */) { getAccessor = accessor; } else if (accessor.kind === 173 /* SyntaxKind.SetAccessor */) { setAccessor = accessor; } else { ts.Debug.fail("Accessor has wrong kind"); } } else { ts.forEach(declarations, function (member) { if (ts.isAccessor(member) && isStatic(member) === isStatic(accessor)) { var memberName = getPropertyNameForPropertyNameNode(member.name); var accessorName = getPropertyNameForPropertyNameNode(accessor.name); if (memberName === accessorName) { if (!firstAccessor) { firstAccessor = member; } else if (!secondAccessor) { secondAccessor = member; } if (member.kind === 172 /* SyntaxKind.GetAccessor */ && !getAccessor) { getAccessor = member; } if (member.kind === 173 /* SyntaxKind.SetAccessor */ && !setAccessor) { setAccessor = member; } } } }); } return { firstAccessor: firstAccessor, secondAccessor: secondAccessor, getAccessor: getAccessor, setAccessor: setAccessor }; } ts.getAllAccessorDeclarations = getAllAccessorDeclarations; /** * Gets the effective type annotation of a variable, parameter, or property. If the node was * parsed in a JavaScript file, gets the type annotation from JSDoc. Also gets the type of * functions only the JSDoc case. */ function getEffectiveTypeAnnotationNode(node) { if (!isInJSFile(node) && ts.isFunctionDeclaration(node)) return undefined; var type = node.type; if (type || !isInJSFile(node)) return type; return ts.isJSDocPropertyLikeTag(node) ? node.typeExpression && node.typeExpression.type : ts.getJSDocType(node); } ts.getEffectiveTypeAnnotationNode = getEffectiveTypeAnnotationNode; function getTypeAnnotationNode(node) { return node.type; } ts.getTypeAnnotationNode = getTypeAnnotationNode; /** * Gets the effective return type annotation of a signature. If the node was parsed in a * JavaScript file, gets the return type annotation from JSDoc. */ function getEffectiveReturnTypeNode(node) { return ts.isJSDocSignature(node) ? node.type && node.type.typeExpression && node.type.typeExpression.type : node.type || (isInJSFile(node) ? ts.getJSDocReturnType(node) : undefined); } ts.getEffectiveReturnTypeNode = getEffectiveReturnTypeNode; function getJSDocTypeParameterDeclarations(node) { return ts.flatMap(ts.getJSDocTags(node), function (tag) { return isNonTypeAliasTemplate(tag) ? tag.typeParameters : undefined; }); } ts.getJSDocTypeParameterDeclarations = getJSDocTypeParameterDeclarations; /** template tags are only available when a typedef isn't already using them */ function isNonTypeAliasTemplate(tag) { return ts.isJSDocTemplateTag(tag) && !(tag.parent.kind === 320 /* SyntaxKind.JSDoc */ && tag.parent.tags.some(isJSDocTypeAlias)); } /** * Gets the effective type annotation of the value parameter of a set accessor. If the node * was parsed in a JavaScript file, gets the type annotation from JSDoc. */ function getEffectiveSetAccessorTypeAnnotationNode(node) { var parameter = getSetAccessorValueParameter(node); return parameter && getEffectiveTypeAnnotationNode(parameter); } ts.getEffectiveSetAccessorTypeAnnotationNode = getEffectiveSetAccessorTypeAnnotationNode; function emitNewLineBeforeLeadingComments(lineMap, writer, node, leadingComments) { emitNewLineBeforeLeadingCommentsOfPosition(lineMap, writer, node.pos, leadingComments); } ts.emitNewLineBeforeLeadingComments = emitNewLineBeforeLeadingComments; function emitNewLineBeforeLeadingCommentsOfPosition(lineMap, writer, pos, leadingComments) { // If the leading comments start on different line than the start of node, write new line if (leadingComments && leadingComments.length && pos !== leadingComments[0].pos && getLineOfLocalPositionFromLineMap(lineMap, pos) !== getLineOfLocalPositionFromLineMap(lineMap, leadingComments[0].pos)) { writer.writeLine(); } } ts.emitNewLineBeforeLeadingCommentsOfPosition = emitNewLineBeforeLeadingCommentsOfPosition; function emitNewLineBeforeLeadingCommentOfPosition(lineMap, writer, pos, commentPos) { // If the leading comments start on different line than the start of node, write new line if (pos !== commentPos && getLineOfLocalPositionFromLineMap(lineMap, pos) !== getLineOfLocalPositionFromLineMap(lineMap, commentPos)) { writer.writeLine(); } } ts.emitNewLineBeforeLeadingCommentOfPosition = emitNewLineBeforeLeadingCommentOfPosition; function emitComments(text, lineMap, writer, comments, leadingSeparator, trailingSeparator, newLine, writeComment) { if (comments && comments.length > 0) { if (leadingSeparator) { writer.writeSpace(" "); } var emitInterveningSeparator = false; for (var _i = 0, comments_1 = comments; _i < comments_1.length; _i++) { var comment = comments_1[_i]; if (emitInterveningSeparator) { writer.writeSpace(" "); emitInterveningSeparator = false; } writeComment(text, lineMap, writer, comment.pos, comment.end, newLine); if (comment.hasTrailingNewLine) { writer.writeLine(); } else { emitInterveningSeparator = true; } } if (emitInterveningSeparator && trailingSeparator) { writer.writeSpace(" "); } } } ts.emitComments = emitComments; /** * Detached comment is a comment at the top of file or function body that is separated from * the next statement by space. */ function emitDetachedComments(text, lineMap, writer, writeComment, node, newLine, removeComments) { var leadingComments; var currentDetachedCommentInfo; if (removeComments) { // removeComments is true, only reserve pinned comment at the top of file // For example: // /*! Pinned Comment */ // // var x = 10; if (node.pos === 0) { leadingComments = ts.filter(ts.getLeadingCommentRanges(text, node.pos), isPinnedCommentLocal); } } else { // removeComments is false, just get detached as normal and bypass the process to filter comment leadingComments = ts.getLeadingCommentRanges(text, node.pos); } if (leadingComments) { var detachedComments = []; var lastComment = void 0; for (var _i = 0, leadingComments_1 = leadingComments; _i < leadingComments_1.length; _i++) { var comment = leadingComments_1[_i]; if (lastComment) { var lastCommentLine = getLineOfLocalPositionFromLineMap(lineMap, lastComment.end); var commentLine = getLineOfLocalPositionFromLineMap(lineMap, comment.pos); if (commentLine >= lastCommentLine + 2) { // There was a blank line between the last comment and this comment. This // comment is not part of the copyright comments. Return what we have so // far. break; } } detachedComments.push(comment); lastComment = comment; } if (detachedComments.length) { // All comments look like they could have been part of the copyright header. Make // sure there is at least one blank line between it and the node. If not, it's not // a copyright header. var lastCommentLine = getLineOfLocalPositionFromLineMap(lineMap, ts.last(detachedComments).end); var nodeLine = getLineOfLocalPositionFromLineMap(lineMap, ts.skipTrivia(text, node.pos)); if (nodeLine >= lastCommentLine + 2) { // Valid detachedComments emitNewLineBeforeLeadingComments(lineMap, writer, node, leadingComments); emitComments(text, lineMap, writer, detachedComments, /*leadingSeparator*/ false, /*trailingSeparator*/ true, newLine, writeComment); currentDetachedCommentInfo = { nodePos: node.pos, detachedCommentEndPos: ts.last(detachedComments).end }; } } } return currentDetachedCommentInfo; function isPinnedCommentLocal(comment) { return isPinnedComment(text, comment.pos); } } ts.emitDetachedComments = emitDetachedComments; function writeCommentRange(text, lineMap, writer, commentPos, commentEnd, newLine) { if (text.charCodeAt(commentPos + 1) === 42 /* CharacterCodes.asterisk */) { var firstCommentLineAndCharacter = ts.computeLineAndCharacterOfPosition(lineMap, commentPos); var lineCount = lineMap.length; var firstCommentLineIndent = void 0; for (var pos = commentPos, currentLine = firstCommentLineAndCharacter.line; pos < commentEnd; currentLine++) { var nextLineStart = (currentLine + 1) === lineCount ? text.length + 1 : lineMap[currentLine + 1]; if (pos !== commentPos) { // If we are not emitting first line, we need to write the spaces to adjust the alignment if (firstCommentLineIndent === undefined) { firstCommentLineIndent = calculateIndent(text, lineMap[firstCommentLineAndCharacter.line], commentPos); } // These are number of spaces writer is going to write at current indent var currentWriterIndentSpacing = writer.getIndent() * getIndentSize(); // Number of spaces we want to be writing // eg: Assume writer indent // module m { // /* starts at character 9 this is line 1 // * starts at character pos 4 line --1 = 8 - 8 + 3 // More left indented comment */ --2 = 8 - 8 + 2 // class c { } // } // module m { // /* this is line 1 -- Assume current writer indent 8 // * line --3 = 8 - 4 + 5 // More right indented comment */ --4 = 8 - 4 + 11 // class c { } // } var spacesToEmit = currentWriterIndentSpacing - firstCommentLineIndent + calculateIndent(text, pos, nextLineStart); if (spacesToEmit > 0) { var numberOfSingleSpacesToEmit = spacesToEmit % getIndentSize(); var indentSizeSpaceString = getIndentString((spacesToEmit - numberOfSingleSpacesToEmit) / getIndentSize()); // Write indent size string ( in eg 1: = "", 2: "" , 3: string with 8 spaces 4: string with 12 spaces writer.rawWrite(indentSizeSpaceString); // Emit the single spaces (in eg: 1: 3 spaces, 2: 2 spaces, 3: 1 space, 4: 3 spaces) while (numberOfSingleSpacesToEmit) { writer.rawWrite(" "); numberOfSingleSpacesToEmit--; } } else { // No spaces to emit write empty string writer.rawWrite(""); } } // Write the comment line text writeTrimmedCurrentLine(text, commentEnd, writer, newLine, pos, nextLineStart); pos = nextLineStart; } } else { // Single line comment of style //.... writer.writeComment(text.substring(commentPos, commentEnd)); } } ts.writeCommentRange = writeCommentRange; function writeTrimmedCurrentLine(text, commentEnd, writer, newLine, pos, nextLineStart) { var end = Math.min(commentEnd, nextLineStart - 1); var currentLineText = ts.trimString(text.substring(pos, end)); if (currentLineText) { // trimmed forward and ending spaces text writer.writeComment(currentLineText); if (end !== commentEnd) { writer.writeLine(); } } else { // Empty string - make sure we write empty line writer.rawWrite(newLine); } } function calculateIndent(text, pos, end) { var currentLineIndent = 0; for (; pos < end && ts.isWhiteSpaceSingleLine(text.charCodeAt(pos)); pos++) { if (text.charCodeAt(pos) === 9 /* CharacterCodes.tab */) { // Tabs = TabSize = indent size and go to next tabStop currentLineIndent += getIndentSize() - (currentLineIndent % getIndentSize()); } else { // Single space currentLineIndent++; } } return currentLineIndent; } function hasEffectiveModifiers(node) { return getEffectiveModifierFlags(node) !== 0 /* ModifierFlags.None */; } ts.hasEffectiveModifiers = hasEffectiveModifiers; function hasSyntacticModifiers(node) { return getSyntacticModifierFlags(node) !== 0 /* ModifierFlags.None */; } ts.hasSyntacticModifiers = hasSyntacticModifiers; function hasEffectiveModifier(node, flags) { return !!getSelectedEffectiveModifierFlags(node, flags); } ts.hasEffectiveModifier = hasEffectiveModifier; function hasSyntacticModifier(node, flags) { return !!getSelectedSyntacticModifierFlags(node, flags); } ts.hasSyntacticModifier = hasSyntacticModifier; function isStatic(node) { // https://tc39.es/ecma262/#sec-static-semantics-isstatic return ts.isClassElement(node) && hasStaticModifier(node) || ts.isClassStaticBlockDeclaration(node); } ts.isStatic = isStatic; function hasStaticModifier(node) { return hasSyntacticModifier(node, 32 /* ModifierFlags.Static */); } ts.hasStaticModifier = hasStaticModifier; function hasOverrideModifier(node) { return hasEffectiveModifier(node, 16384 /* ModifierFlags.Override */); } ts.hasOverrideModifier = hasOverrideModifier; function hasAbstractModifier(node) { return hasSyntacticModifier(node, 128 /* ModifierFlags.Abstract */); } ts.hasAbstractModifier = hasAbstractModifier; function hasAmbientModifier(node) { return hasSyntacticModifier(node, 2 /* ModifierFlags.Ambient */); } ts.hasAmbientModifier = hasAmbientModifier; function hasEffectiveReadonlyModifier(node) { return hasEffectiveModifier(node, 64 /* ModifierFlags.Readonly */); } ts.hasEffectiveReadonlyModifier = hasEffectiveReadonlyModifier; function getSelectedEffectiveModifierFlags(node, flags) { return getEffectiveModifierFlags(node) & flags; } ts.getSelectedEffectiveModifierFlags = getSelectedEffectiveModifierFlags; function getSelectedSyntacticModifierFlags(node, flags) { return getSyntacticModifierFlags(node) & flags; } ts.getSelectedSyntacticModifierFlags = getSelectedSyntacticModifierFlags; function getModifierFlagsWorker(node, includeJSDoc, alwaysIncludeJSDoc) { if (node.kind >= 0 /* SyntaxKind.FirstToken */ && node.kind <= 160 /* SyntaxKind.LastToken */) { return 0 /* ModifierFlags.None */; } if (!(node.modifierFlagsCache & 536870912 /* ModifierFlags.HasComputedFlags */)) { node.modifierFlagsCache = getSyntacticModifierFlagsNoCache(node) | 536870912 /* ModifierFlags.HasComputedFlags */; } if (includeJSDoc && !(node.modifierFlagsCache & 4096 /* ModifierFlags.HasComputedJSDocModifiers */) && (alwaysIncludeJSDoc || isInJSFile(node)) && node.parent) { node.modifierFlagsCache |= getJSDocModifierFlagsNoCache(node) | 4096 /* ModifierFlags.HasComputedJSDocModifiers */; } return node.modifierFlagsCache & ~(536870912 /* ModifierFlags.HasComputedFlags */ | 4096 /* ModifierFlags.HasComputedJSDocModifiers */); } /** * Gets the effective ModifierFlags for the provided node, including JSDoc modifiers. The modifiers will be cached on the node to improve performance. * * NOTE: This function may use `parent` pointers. */ function getEffectiveModifierFlags(node) { return getModifierFlagsWorker(node, /*includeJSDoc*/ true); } ts.getEffectiveModifierFlags = getEffectiveModifierFlags; function getEffectiveModifierFlagsAlwaysIncludeJSDoc(node) { return getModifierFlagsWorker(node, /*includeJSDOc*/ true, /*alwaysIncludeJSDOc*/ true); } ts.getEffectiveModifierFlagsAlwaysIncludeJSDoc = getEffectiveModifierFlagsAlwaysIncludeJSDoc; /** * Gets the ModifierFlags for syntactic modifiers on the provided node. The modifiers will be cached on the node to improve performance. * * NOTE: This function does not use `parent` pointers and will not include modifiers from JSDoc. */ function getSyntacticModifierFlags(node) { return getModifierFlagsWorker(node, /*includeJSDoc*/ false); } ts.getSyntacticModifierFlags = getSyntacticModifierFlags; function getJSDocModifierFlagsNoCache(node) { var flags = 0 /* ModifierFlags.None */; if (!!node.parent && !ts.isParameter(node)) { if (isInJSFile(node)) { if (ts.getJSDocPublicTagNoCache(node)) flags |= 4 /* ModifierFlags.Public */; if (ts.getJSDocPrivateTagNoCache(node)) flags |= 8 /* ModifierFlags.Private */; if (ts.getJSDocProtectedTagNoCache(node)) flags |= 16 /* ModifierFlags.Protected */; if (ts.getJSDocReadonlyTagNoCache(node)) flags |= 64 /* ModifierFlags.Readonly */; if (ts.getJSDocOverrideTagNoCache(node)) flags |= 16384 /* ModifierFlags.Override */; } if (ts.getJSDocDeprecatedTagNoCache(node)) flags |= 8192 /* ModifierFlags.Deprecated */; } return flags; } /** * Gets the effective ModifierFlags for the provided node, including JSDoc modifiers. The modifier flags cache on the node is ignored. * * NOTE: This function may use `parent` pointers. */ function getEffectiveModifierFlagsNoCache(node) { return getSyntacticModifierFlagsNoCache(node) | getJSDocModifierFlagsNoCache(node); } ts.getEffectiveModifierFlagsNoCache = getEffectiveModifierFlagsNoCache; /** * Gets the ModifierFlags for syntactic modifiers on the provided node. The modifier flags cache on the node is ignored. * * NOTE: This function does not use `parent` pointers and will not include modifiers from JSDoc. */ function getSyntacticModifierFlagsNoCache(node) { var flags = modifiersToFlags(node.modifiers); if (node.flags & 4 /* NodeFlags.NestedNamespace */ || (node.kind === 79 /* SyntaxKind.Identifier */ && node.isInJSDocNamespace)) { flags |= 1 /* ModifierFlags.Export */; } return flags; } ts.getSyntacticModifierFlagsNoCache = getSyntacticModifierFlagsNoCache; function modifiersToFlags(modifiers) { var flags = 0 /* ModifierFlags.None */; if (modifiers) { for (var _i = 0, modifiers_1 = modifiers; _i < modifiers_1.length; _i++) { var modifier = modifiers_1[_i]; flags |= modifierToFlag(modifier.kind); } } return flags; } ts.modifiersToFlags = modifiersToFlags; function modifierToFlag(token) { switch (token) { case 124 /* SyntaxKind.StaticKeyword */: return 32 /* ModifierFlags.Static */; case 123 /* SyntaxKind.PublicKeyword */: return 4 /* ModifierFlags.Public */; case 122 /* SyntaxKind.ProtectedKeyword */: return 16 /* ModifierFlags.Protected */; case 121 /* SyntaxKind.PrivateKeyword */: return 8 /* ModifierFlags.Private */; case 126 /* SyntaxKind.AbstractKeyword */: return 128 /* ModifierFlags.Abstract */; case 93 /* SyntaxKind.ExportKeyword */: return 1 /* ModifierFlags.Export */; case 135 /* SyntaxKind.DeclareKeyword */: return 2 /* ModifierFlags.Ambient */; case 85 /* SyntaxKind.ConstKeyword */: return 2048 /* ModifierFlags.Const */; case 88 /* SyntaxKind.DefaultKeyword */: return 512 /* ModifierFlags.Default */; case 131 /* SyntaxKind.AsyncKeyword */: return 256 /* ModifierFlags.Async */; case 145 /* SyntaxKind.ReadonlyKeyword */: return 64 /* ModifierFlags.Readonly */; case 159 /* SyntaxKind.OverrideKeyword */: return 16384 /* ModifierFlags.Override */; case 101 /* SyntaxKind.InKeyword */: return 32768 /* ModifierFlags.In */; case 144 /* SyntaxKind.OutKeyword */: return 65536 /* ModifierFlags.Out */; } return 0 /* ModifierFlags.None */; } ts.modifierToFlag = modifierToFlag; function createModifiers(modifierFlags) { return modifierFlags ? ts.factory.createNodeArray(ts.factory.createModifiersFromModifierFlags(modifierFlags)) : undefined; } ts.createModifiers = createModifiers; function isLogicalOperator(token) { return token === 56 /* SyntaxKind.BarBarToken */ || token === 55 /* SyntaxKind.AmpersandAmpersandToken */ || token === 53 /* SyntaxKind.ExclamationToken */; } ts.isLogicalOperator = isLogicalOperator; function isLogicalOrCoalescingAssignmentOperator(token) { return token === 75 /* SyntaxKind.BarBarEqualsToken */ || token === 76 /* SyntaxKind.AmpersandAmpersandEqualsToken */ || token === 77 /* SyntaxKind.QuestionQuestionEqualsToken */; } ts.isLogicalOrCoalescingAssignmentOperator = isLogicalOrCoalescingAssignmentOperator; function isLogicalOrCoalescingAssignmentExpression(expr) { return isLogicalOrCoalescingAssignmentOperator(expr.operatorToken.kind); } ts.isLogicalOrCoalescingAssignmentExpression = isLogicalOrCoalescingAssignmentExpression; function isAssignmentOperator(token) { return token >= 63 /* SyntaxKind.FirstAssignment */ && token <= 78 /* SyntaxKind.LastAssignment */; } ts.isAssignmentOperator = isAssignmentOperator; /** Get `C` given `N` if `N` is in the position `class C extends N` where `N` is an ExpressionWithTypeArguments. */ function tryGetClassExtendingExpressionWithTypeArguments(node) { var cls = tryGetClassImplementingOrExtendingExpressionWithTypeArguments(node); return cls && !cls.isImplements ? cls.class : undefined; } ts.tryGetClassExtendingExpressionWithTypeArguments = tryGetClassExtendingExpressionWithTypeArguments; function tryGetClassImplementingOrExtendingExpressionWithTypeArguments(node) { return ts.isExpressionWithTypeArguments(node) && ts.isHeritageClause(node.parent) && ts.isClassLike(node.parent.parent) ? { class: node.parent.parent, isImplements: node.parent.token === 117 /* SyntaxKind.ImplementsKeyword */ } : undefined; } ts.tryGetClassImplementingOrExtendingExpressionWithTypeArguments = tryGetClassImplementingOrExtendingExpressionWithTypeArguments; function isAssignmentExpression(node, excludeCompoundAssignment) { return ts.isBinaryExpression(node) && (excludeCompoundAssignment ? node.operatorToken.kind === 63 /* SyntaxKind.EqualsToken */ : isAssignmentOperator(node.operatorToken.kind)) && ts.isLeftHandSideExpression(node.left); } ts.isAssignmentExpression = isAssignmentExpression; function isLeftHandSideOfAssignment(node) { return isAssignmentExpression(node.parent) && node.parent.left === node; } ts.isLeftHandSideOfAssignment = isLeftHandSideOfAssignment; function isDestructuringAssignment(node) { if (isAssignmentExpression(node, /*excludeCompoundAssignment*/ true)) { var kind = node.left.kind; return kind === 205 /* SyntaxKind.ObjectLiteralExpression */ || kind === 204 /* SyntaxKind.ArrayLiteralExpression */; } return false; } ts.isDestructuringAssignment = isDestructuringAssignment; function isExpressionWithTypeArgumentsInClassExtendsClause(node) { return tryGetClassExtendingExpressionWithTypeArguments(node) !== undefined; } ts.isExpressionWithTypeArgumentsInClassExtendsClause = isExpressionWithTypeArgumentsInClassExtendsClause; function isEntityNameExpression(node) { return node.kind === 79 /* SyntaxKind.Identifier */ || isPropertyAccessEntityNameExpression(node); } ts.isEntityNameExpression = isEntityNameExpression; function getFirstIdentifier(node) { switch (node.kind) { case 79 /* SyntaxKind.Identifier */: return node; case 161 /* SyntaxKind.QualifiedName */: do { node = node.left; } while (node.kind !== 79 /* SyntaxKind.Identifier */); return node; case 206 /* SyntaxKind.PropertyAccessExpression */: do { node = node.expression; } while (node.kind !== 79 /* SyntaxKind.Identifier */); return node; } } ts.getFirstIdentifier = getFirstIdentifier; function isDottedName(node) { return node.kind === 79 /* SyntaxKind.Identifier */ || node.kind === 108 /* SyntaxKind.ThisKeyword */ || node.kind === 106 /* SyntaxKind.SuperKeyword */ || node.kind === 231 /* SyntaxKind.MetaProperty */ || node.kind === 206 /* SyntaxKind.PropertyAccessExpression */ && isDottedName(node.expression) || node.kind === 212 /* SyntaxKind.ParenthesizedExpression */ && isDottedName(node.expression); } ts.isDottedName = isDottedName; function isPropertyAccessEntityNameExpression(node) { return ts.isPropertyAccessExpression(node) && ts.isIdentifier(node.name) && isEntityNameExpression(node.expression); } ts.isPropertyAccessEntityNameExpression = isPropertyAccessEntityNameExpression; function tryGetPropertyAccessOrIdentifierToString(expr) { if (ts.isPropertyAccessExpression(expr)) { var baseStr = tryGetPropertyAccessOrIdentifierToString(expr.expression); if (baseStr !== undefined) { return baseStr + "." + entityNameToString(expr.name); } } else if (ts.isElementAccessExpression(expr)) { var baseStr = tryGetPropertyAccessOrIdentifierToString(expr.expression); if (baseStr !== undefined && ts.isPropertyName(expr.argumentExpression)) { return baseStr + "." + getPropertyNameForPropertyNameNode(expr.argumentExpression); } } else if (ts.isIdentifier(expr)) { return ts.unescapeLeadingUnderscores(expr.escapedText); } return undefined; } ts.tryGetPropertyAccessOrIdentifierToString = tryGetPropertyAccessOrIdentifierToString; function isPrototypeAccess(node) { return isBindableStaticAccessExpression(node) && getElementOrPropertyAccessName(node) === "prototype"; } ts.isPrototypeAccess = isPrototypeAccess; function isRightSideOfQualifiedNameOrPropertyAccess(node) { return (node.parent.kind === 161 /* SyntaxKind.QualifiedName */ && node.parent.right === node) || (node.parent.kind === 206 /* SyntaxKind.PropertyAccessExpression */ && node.parent.name === node); } ts.isRightSideOfQualifiedNameOrPropertyAccess = isRightSideOfQualifiedNameOrPropertyAccess; function isRightSideOfAccessExpression(node) { return ts.isPropertyAccessExpression(node.parent) && node.parent.name === node || ts.isElementAccessExpression(node.parent) && node.parent.argumentExpression === node; } ts.isRightSideOfAccessExpression = isRightSideOfAccessExpression; function isRightSideOfQualifiedNameOrPropertyAccessOrJSDocMemberName(node) { return ts.isQualifiedName(node.parent) && node.parent.right === node || ts.isPropertyAccessExpression(node.parent) && node.parent.name === node || ts.isJSDocMemberName(node.parent) && node.parent.right === node; } ts.isRightSideOfQualifiedNameOrPropertyAccessOrJSDocMemberName = isRightSideOfQualifiedNameOrPropertyAccessOrJSDocMemberName; function isEmptyObjectLiteral(expression) { return expression.kind === 205 /* SyntaxKind.ObjectLiteralExpression */ && expression.properties.length === 0; } ts.isEmptyObjectLiteral = isEmptyObjectLiteral; function isEmptyArrayLiteral(expression) { return expression.kind === 204 /* SyntaxKind.ArrayLiteralExpression */ && expression.elements.length === 0; } ts.isEmptyArrayLiteral = isEmptyArrayLiteral; function getLocalSymbolForExportDefault(symbol) { if (!isExportDefaultSymbol(symbol) || !symbol.declarations) return undefined; for (var _i = 0, _a = symbol.declarations; _i < _a.length; _i++) { var decl = _a[_i]; if (decl.localSymbol) return decl.localSymbol; } return undefined; } ts.getLocalSymbolForExportDefault = getLocalSymbolForExportDefault; function isExportDefaultSymbol(symbol) { return symbol && ts.length(symbol.declarations) > 0 && hasSyntacticModifier(symbol.declarations[0], 512 /* ModifierFlags.Default */); } /** Return ".ts", ".d.ts", or ".tsx", if that is the extension. */ function tryExtractTSExtension(fileName) { return ts.find(supportedTSExtensionsForExtractExtension, function (extension) { return ts.fileExtensionIs(fileName, extension); }); } ts.tryExtractTSExtension = tryExtractTSExtension; /** * Replace each instance of non-ascii characters by one, two, three, or four escape sequences * representing the UTF-8 encoding of the character, and return the expanded char code list. */ function getExpandedCharCodes(input) { var output = []; var length = input.length; for (var i = 0; i < length; i++) { var charCode = input.charCodeAt(i); // handle utf8 if (charCode < 0x80) { output.push(charCode); } else if (charCode < 0x800) { output.push((charCode >> 6) | 192); output.push((charCode & 63) | 128); } else if (charCode < 0x10000) { output.push((charCode >> 12) | 224); output.push(((charCode >> 6) & 63) | 128); output.push((charCode & 63) | 128); } else if (charCode < 0x20000) { output.push((charCode >> 18) | 240); output.push(((charCode >> 12) & 63) | 128); output.push(((charCode >> 6) & 63) | 128); output.push((charCode & 63) | 128); } else { ts.Debug.assert(false, "Unexpected code point"); } } return output; } var base64Digits = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="; /** * Converts a string to a base-64 encoded ASCII string. */ function convertToBase64(input) { var result = ""; var charCodes = getExpandedCharCodes(input); var i = 0; var length = charCodes.length; var byte1, byte2, byte3, byte4; while (i < length) { // Convert every 6-bits in the input 3 character points // into a base64 digit byte1 = charCodes[i] >> 2; byte2 = (charCodes[i] & 3) << 4 | charCodes[i + 1] >> 4; byte3 = (charCodes[i + 1] & 15) << 2 | charCodes[i + 2] >> 6; byte4 = charCodes[i + 2] & 63; // We are out of characters in the input, set the extra // digits to 64 (padding character). if (i + 1 >= length) { byte3 = byte4 = 64; } else if (i + 2 >= length) { byte4 = 64; } // Write to the output result += base64Digits.charAt(byte1) + base64Digits.charAt(byte2) + base64Digits.charAt(byte3) + base64Digits.charAt(byte4); i += 3; } return result; } ts.convertToBase64 = convertToBase64; function getStringFromExpandedCharCodes(codes) { var output = ""; var i = 0; var length = codes.length; while (i < length) { var charCode = codes[i]; if (charCode < 0x80) { output += String.fromCharCode(charCode); i++; } else if ((charCode & 192) === 192) { var value = charCode & 63; i++; var nextCode = codes[i]; while ((nextCode & 192) === 128) { value = (value << 6) | (nextCode & 63); i++; nextCode = codes[i]; } // `value` may be greater than 10FFFF (the maximum unicode codepoint) - JS will just make this into an invalid character for us output += String.fromCharCode(value); } else { // We don't want to kill the process when decoding fails (due to a following char byte not // following a leading char), so we just print the (bad) value output += String.fromCharCode(charCode); i++; } } return output; } function base64encode(host, input) { if (host && host.base64encode) { return host.base64encode(input); } return convertToBase64(input); } ts.base64encode = base64encode; function base64decode(host, input) { if (host && host.base64decode) { return host.base64decode(input); } var length = input.length; var expandedCharCodes = []; var i = 0; while (i < length) { // Stop decoding once padding characters are present if (input.charCodeAt(i) === base64Digits.charCodeAt(64)) { break; } // convert 4 input digits into three characters, ignoring padding characters at the end var ch1 = base64Digits.indexOf(input[i]); var ch2 = base64Digits.indexOf(input[i + 1]); var ch3 = base64Digits.indexOf(input[i + 2]); var ch4 = base64Digits.indexOf(input[i + 3]); var code1 = ((ch1 & 63) << 2) | ((ch2 >> 4) & 3); var code2 = ((ch2 & 15) << 4) | ((ch3 >> 2) & 15); var code3 = ((ch3 & 3) << 6) | (ch4 & 63); if (code2 === 0 && ch3 !== 0) { // code2 decoded to zero, but ch3 was padding - elide code2 and code3 expandedCharCodes.push(code1); } else if (code3 === 0 && ch4 !== 0) { // code3 decoded to zero, but ch4 was padding, elide code3 expandedCharCodes.push(code1, code2); } else { expandedCharCodes.push(code1, code2, code3); } i += 4; } return getStringFromExpandedCharCodes(expandedCharCodes); } ts.base64decode = base64decode; function readJson(path, host) { try { var jsonText = host.readFile(path); if (!jsonText) return {}; var result = ts.parseConfigFileTextToJson(path, jsonText); if (result.error) { return {}; } return result.config; } catch (e) { // gracefully handle if readFile fails or returns not JSON return {}; } } ts.readJson = readJson; function directoryProbablyExists(directoryName, host) { // if host does not support 'directoryExists' assume that directory will exist return !host.directoryExists || host.directoryExists(directoryName); } ts.directoryProbablyExists = directoryProbablyExists; var carriageReturnLineFeed = "\r\n"; var lineFeed = "\n"; function getNewLineCharacter(options, getNewLine) { switch (options.newLine) { case 0 /* NewLineKind.CarriageReturnLineFeed */: return carriageReturnLineFeed; case 1 /* NewLineKind.LineFeed */: return lineFeed; } return getNewLine ? getNewLine() : ts.sys ? ts.sys.newLine : carriageReturnLineFeed; } ts.getNewLineCharacter = getNewLineCharacter; /** * Creates a new TextRange from the provided pos and end. * * @param pos The start position. * @param end The end position. */ function createRange(pos, end) { if (end === void 0) { end = pos; } ts.Debug.assert(end >= pos || end === -1); return { pos: pos, end: end }; } ts.createRange = createRange; /** * Creates a new TextRange from a provided range with a new end position. * * @param range A TextRange. * @param end The new end position. */ function moveRangeEnd(range, end) { return createRange(range.pos, end); } ts.moveRangeEnd = moveRangeEnd; /** * Creates a new TextRange from a provided range with a new start position. * * @param range A TextRange. * @param pos The new Start position. */ function moveRangePos(range, pos) { return createRange(pos, range.end); } ts.moveRangePos = moveRangePos; /** * Moves the start position of a range past any decorators. */ function moveRangePastDecorators(node) { return node.decorators && node.decorators.length > 0 ? moveRangePos(node, node.decorators.end) : node; } ts.moveRangePastDecorators = moveRangePastDecorators; /** * Moves the start position of a range past any decorators or modifiers. */ function moveRangePastModifiers(node) { return node.modifiers && node.modifiers.length > 0 ? moveRangePos(node, node.modifiers.end) : moveRangePastDecorators(node); } ts.moveRangePastModifiers = moveRangePastModifiers; /** * Determines whether a TextRange has the same start and end positions. * * @param range A TextRange. */ function isCollapsedRange(range) { return range.pos === range.end; } ts.isCollapsedRange = isCollapsedRange; /** * Creates a new TextRange for a token at the provides start position. * * @param pos The start position. * @param token The token. */ function createTokenRange(pos, token) { return createRange(pos, pos + ts.tokenToString(token).length); } ts.createTokenRange = createTokenRange; function rangeIsOnSingleLine(range, sourceFile) { return rangeStartIsOnSameLineAsRangeEnd(range, range, sourceFile); } ts.rangeIsOnSingleLine = rangeIsOnSingleLine; function rangeStartPositionsAreOnSameLine(range1, range2, sourceFile) { return positionsAreOnSameLine(getStartPositionOfRange(range1, sourceFile, /*includeComments*/ false), getStartPositionOfRange(range2, sourceFile, /*includeComments*/ false), sourceFile); } ts.rangeStartPositionsAreOnSameLine = rangeStartPositionsAreOnSameLine; function rangeEndPositionsAreOnSameLine(range1, range2, sourceFile) { return positionsAreOnSameLine(range1.end, range2.end, sourceFile); } ts.rangeEndPositionsAreOnSameLine = rangeEndPositionsAreOnSameLine; function rangeStartIsOnSameLineAsRangeEnd(range1, range2, sourceFile) { return positionsAreOnSameLine(getStartPositionOfRange(range1, sourceFile, /*includeComments*/ false), range2.end, sourceFile); } ts.rangeStartIsOnSameLineAsRangeEnd = rangeStartIsOnSameLineAsRangeEnd; function rangeEndIsOnSameLineAsRangeStart(range1, range2, sourceFile) { return positionsAreOnSameLine(range1.end, getStartPositionOfRange(range2, sourceFile, /*includeComments*/ false), sourceFile); } ts.rangeEndIsOnSameLineAsRangeStart = rangeEndIsOnSameLineAsRangeStart; function getLinesBetweenRangeEndAndRangeStart(range1, range2, sourceFile, includeSecondRangeComments) { var range2Start = getStartPositionOfRange(range2, sourceFile, includeSecondRangeComments); return ts.getLinesBetweenPositions(sourceFile, range1.end, range2Start); } ts.getLinesBetweenRangeEndAndRangeStart = getLinesBetweenRangeEndAndRangeStart; function getLinesBetweenRangeEndPositions(range1, range2, sourceFile) { return ts.getLinesBetweenPositions(sourceFile, range1.end, range2.end); } ts.getLinesBetweenRangeEndPositions = getLinesBetweenRangeEndPositions; function isNodeArrayMultiLine(list, sourceFile) { return !positionsAreOnSameLine(list.pos, list.end, sourceFile); } ts.isNodeArrayMultiLine = isNodeArrayMultiLine; function positionsAreOnSameLine(pos1, pos2, sourceFile) { return ts.getLinesBetweenPositions(sourceFile, pos1, pos2) === 0; } ts.positionsAreOnSameLine = positionsAreOnSameLine; function getStartPositionOfRange(range, sourceFile, includeComments) { return positionIsSynthesized(range.pos) ? -1 : ts.skipTrivia(sourceFile.text, range.pos, /*stopAfterLineBreak*/ false, includeComments); } ts.getStartPositionOfRange = getStartPositionOfRange; function getLinesBetweenPositionAndPrecedingNonWhitespaceCharacter(pos, stopPos, sourceFile, includeComments) { var startPos = ts.skipTrivia(sourceFile.text, pos, /*stopAfterLineBreak*/ false, includeComments); var prevPos = getPreviousNonWhitespacePosition(startPos, stopPos, sourceFile); return ts.getLinesBetweenPositions(sourceFile, prevPos !== null && prevPos !== void 0 ? prevPos : stopPos, startPos); } ts.getLinesBetweenPositionAndPrecedingNonWhitespaceCharacter = getLinesBetweenPositionAndPrecedingNonWhitespaceCharacter; function getLinesBetweenPositionAndNextNonWhitespaceCharacter(pos, stopPos, sourceFile, includeComments) { var nextPos = ts.skipTrivia(sourceFile.text, pos, /*stopAfterLineBreak*/ false, includeComments); return ts.getLinesBetweenPositions(sourceFile, pos, Math.min(stopPos, nextPos)); } ts.getLinesBetweenPositionAndNextNonWhitespaceCharacter = getLinesBetweenPositionAndNextNonWhitespaceCharacter; function getPreviousNonWhitespacePosition(pos, stopPos, sourceFile) { if (stopPos === void 0) { stopPos = 0; } while (pos-- > stopPos) { if (!ts.isWhiteSpaceLike(sourceFile.text.charCodeAt(pos))) { return pos; } } } /** * Determines whether a name was originally the declaration name of an enum or namespace * declaration. */ function isDeclarationNameOfEnumOrNamespace(node) { var parseNode = ts.getParseTreeNode(node); if (parseNode) { switch (parseNode.parent.kind) { case 260 /* SyntaxKind.EnumDeclaration */: case 261 /* SyntaxKind.ModuleDeclaration */: return parseNode === parseNode.parent.name; } } return false; } ts.isDeclarationNameOfEnumOrNamespace = isDeclarationNameOfEnumOrNamespace; function getInitializedVariables(node) { return ts.filter(node.declarations, isInitializedVariable); } ts.getInitializedVariables = getInitializedVariables; function isInitializedVariable(node) { return node.initializer !== undefined; } function isWatchSet(options) { // Firefox has Object.prototype.watch return options.watch && options.hasOwnProperty("watch"); } ts.isWatchSet = isWatchSet; function closeFileWatcher(watcher) { watcher.close(); } ts.closeFileWatcher = closeFileWatcher; function getCheckFlags(symbol) { return symbol.flags & 33554432 /* SymbolFlags.Transient */ ? symbol.checkFlags : 0; } ts.getCheckFlags = getCheckFlags; function getDeclarationModifierFlagsFromSymbol(s, isWrite) { if (isWrite === void 0) { isWrite = false; } if (s.valueDeclaration) { var declaration = (isWrite && s.declarations && ts.find(s.declarations, function (d) { return d.kind === 173 /* SyntaxKind.SetAccessor */; })) || s.valueDeclaration; var flags = ts.getCombinedModifierFlags(declaration); return s.parent && s.parent.flags & 32 /* SymbolFlags.Class */ ? flags : flags & ~28 /* ModifierFlags.AccessibilityModifier */; } if (getCheckFlags(s) & 6 /* CheckFlags.Synthetic */) { var checkFlags = s.checkFlags; var accessModifier = checkFlags & 1024 /* CheckFlags.ContainsPrivate */ ? 8 /* ModifierFlags.Private */ : checkFlags & 256 /* CheckFlags.ContainsPublic */ ? 4 /* ModifierFlags.Public */ : 16 /* ModifierFlags.Protected */; var staticModifier = checkFlags & 2048 /* CheckFlags.ContainsStatic */ ? 32 /* ModifierFlags.Static */ : 0; return accessModifier | staticModifier; } if (s.flags & 4194304 /* SymbolFlags.Prototype */) { return 4 /* ModifierFlags.Public */ | 32 /* ModifierFlags.Static */; } return 0; } ts.getDeclarationModifierFlagsFromSymbol = getDeclarationModifierFlagsFromSymbol; function skipAlias(symbol, checker) { return symbol.flags & 2097152 /* SymbolFlags.Alias */ ? checker.getAliasedSymbol(symbol) : symbol; } ts.skipAlias = skipAlias; /** See comment on `declareModuleMember` in `binder.ts`. */ function getCombinedLocalAndExportSymbolFlags(symbol) { return symbol.exportSymbol ? symbol.exportSymbol.flags | symbol.flags : symbol.flags; } ts.getCombinedLocalAndExportSymbolFlags = getCombinedLocalAndExportSymbolFlags; function isWriteOnlyAccess(node) { return accessKind(node) === 1 /* AccessKind.Write */; } ts.isWriteOnlyAccess = isWriteOnlyAccess; function isWriteAccess(node) { return accessKind(node) !== 0 /* AccessKind.Read */; } ts.isWriteAccess = isWriteAccess; var AccessKind; (function (AccessKind) { /** Only reads from a variable. */ AccessKind[AccessKind["Read"] = 0] = "Read"; /** Only writes to a variable without using the result. E.g.: `x++;`. */ AccessKind[AccessKind["Write"] = 1] = "Write"; /** Writes to a variable and uses the result as an expression. E.g.: `f(x++);`. */ AccessKind[AccessKind["ReadWrite"] = 2] = "ReadWrite"; })(AccessKind || (AccessKind = {})); function accessKind(node) { var parent = node.parent; if (!parent) return 0 /* AccessKind.Read */; switch (parent.kind) { case 212 /* SyntaxKind.ParenthesizedExpression */: return accessKind(parent); case 220 /* SyntaxKind.PostfixUnaryExpression */: case 219 /* SyntaxKind.PrefixUnaryExpression */: var operator = parent.operator; return operator === 45 /* SyntaxKind.PlusPlusToken */ || operator === 46 /* SyntaxKind.MinusMinusToken */ ? writeOrReadWrite() : 0 /* AccessKind.Read */; case 221 /* SyntaxKind.BinaryExpression */: var _a = parent, left = _a.left, operatorToken = _a.operatorToken; return left === node && isAssignmentOperator(operatorToken.kind) ? operatorToken.kind === 63 /* SyntaxKind.EqualsToken */ ? 1 /* AccessKind.Write */ : writeOrReadWrite() : 0 /* AccessKind.Read */; case 206 /* SyntaxKind.PropertyAccessExpression */: return parent.name !== node ? 0 /* AccessKind.Read */ : accessKind(parent); case 296 /* SyntaxKind.PropertyAssignment */: { var parentAccess = accessKind(parent.parent); // In `({ x: varname }) = { x: 1 }`, the left `x` is a read, the right `x` is a write. return node === parent.name ? reverseAccessKind(parentAccess) : parentAccess; } case 297 /* SyntaxKind.ShorthandPropertyAssignment */: // Assume it's the local variable being accessed, since we don't check public properties for --noUnusedLocals. return node === parent.objectAssignmentInitializer ? 0 /* AccessKind.Read */ : accessKind(parent.parent); case 204 /* SyntaxKind.ArrayLiteralExpression */: return accessKind(parent); default: return 0 /* AccessKind.Read */; } function writeOrReadWrite() { // If grandparent is not an ExpressionStatement, this is used as an expression in addition to having a side effect. return parent.parent && walkUpParenthesizedExpressions(parent.parent).kind === 238 /* SyntaxKind.ExpressionStatement */ ? 1 /* AccessKind.Write */ : 2 /* AccessKind.ReadWrite */; } } function reverseAccessKind(a) { switch (a) { case 0 /* AccessKind.Read */: return 1 /* AccessKind.Write */; case 1 /* AccessKind.Write */: return 0 /* AccessKind.Read */; case 2 /* AccessKind.ReadWrite */: return 2 /* AccessKind.ReadWrite */; default: return ts.Debug.assertNever(a); } } function compareDataObjects(dst, src) { if (!dst || !src || Object.keys(dst).length !== Object.keys(src).length) { return false; } for (var e in dst) { if (typeof dst[e] === "object") { if (!compareDataObjects(dst[e], src[e])) { return false; } } else if (typeof dst[e] !== "function") { if (dst[e] !== src[e]) { return false; } } } return true; } ts.compareDataObjects = compareDataObjects; /** * clears already present map by calling onDeleteExistingValue callback before deleting that key/value */ function clearMap(map, onDeleteValue) { // Remove all map.forEach(onDeleteValue); map.clear(); } ts.clearMap = clearMap; /** * Mutates the map with newMap such that keys in map will be same as newMap. */ function mutateMapSkippingNewValues(map, newMap, options) { var onDeleteValue = options.onDeleteValue, onExistingValue = options.onExistingValue; // Needs update map.forEach(function (existingValue, key) { var valueInNewMap = newMap.get(key); // Not present any more in new map, remove it if (valueInNewMap === undefined) { map.delete(key); onDeleteValue(existingValue, key); } // If present notify about existing values else if (onExistingValue) { onExistingValue(existingValue, valueInNewMap, key); } }); } ts.mutateMapSkippingNewValues = mutateMapSkippingNewValues; /** * Mutates the map with newMap such that keys in map will be same as newMap. */ function mutateMap(map, newMap, options) { // Needs update mutateMapSkippingNewValues(map, newMap, options); var createNewValue = options.createNewValue; // Add new values that are not already present newMap.forEach(function (valueInNewMap, key) { if (!map.has(key)) { // New values map.set(key, createNewValue(key, valueInNewMap)); } }); } ts.mutateMap = mutateMap; function isAbstractConstructorSymbol(symbol) { if (symbol.flags & 32 /* SymbolFlags.Class */) { var declaration = getClassLikeDeclarationOfSymbol(symbol); return !!declaration && hasSyntacticModifier(declaration, 128 /* ModifierFlags.Abstract */); } return false; } ts.isAbstractConstructorSymbol = isAbstractConstructorSymbol; function getClassLikeDeclarationOfSymbol(symbol) { var _a; return (_a = symbol.declarations) === null || _a === void 0 ? void 0 : _a.find(ts.isClassLike); } ts.getClassLikeDeclarationOfSymbol = getClassLikeDeclarationOfSymbol; function getObjectFlags(type) { return type.flags & 3899393 /* TypeFlags.ObjectFlagsType */ ? type.objectFlags : 0; } ts.getObjectFlags = getObjectFlags; function typeHasCallOrConstructSignatures(type, checker) { return checker.getSignaturesOfType(type, 0 /* SignatureKind.Call */).length !== 0 || checker.getSignaturesOfType(type, 1 /* SignatureKind.Construct */).length !== 0; } ts.typeHasCallOrConstructSignatures = typeHasCallOrConstructSignatures; function forSomeAncestorDirectory(directory, callback) { return !!ts.forEachAncestorDirectory(directory, function (d) { return callback(d) ? true : undefined; }); } ts.forSomeAncestorDirectory = forSomeAncestorDirectory; function isUMDExportSymbol(symbol) { return !!symbol && !!symbol.declarations && !!symbol.declarations[0] && ts.isNamespaceExportDeclaration(symbol.declarations[0]); } ts.isUMDExportSymbol = isUMDExportSymbol; function showModuleSpecifier(_a) { var moduleSpecifier = _a.moduleSpecifier; return ts.isStringLiteral(moduleSpecifier) ? moduleSpecifier.text : getTextOfNode(moduleSpecifier); } ts.showModuleSpecifier = showModuleSpecifier; function getLastChild(node) { var lastChild; ts.forEachChild(node, function (child) { if (nodeIsPresent(child)) lastChild = child; }, function (children) { // As an optimization, jump straight to the end of the list. for (var i = children.length - 1; i >= 0; i--) { if (nodeIsPresent(children[i])) { lastChild = children[i]; break; } } }); return lastChild; } ts.getLastChild = getLastChild; function addToSeen(seen, key, value) { if (value === void 0) { value = true; } if (seen.has(key)) { return false; } seen.set(key, value); return true; } ts.addToSeen = addToSeen; function isObjectTypeDeclaration(node) { return ts.isClassLike(node) || ts.isInterfaceDeclaration(node) || ts.isTypeLiteralNode(node); } ts.isObjectTypeDeclaration = isObjectTypeDeclaration; function isTypeNodeKind(kind) { return (kind >= 177 /* SyntaxKind.FirstTypeNode */ && kind <= 200 /* SyntaxKind.LastTypeNode */) || kind === 130 /* SyntaxKind.AnyKeyword */ || kind === 155 /* SyntaxKind.UnknownKeyword */ || kind === 147 /* SyntaxKind.NumberKeyword */ || kind === 158 /* SyntaxKind.BigIntKeyword */ || kind === 148 /* SyntaxKind.ObjectKeyword */ || kind === 133 /* SyntaxKind.BooleanKeyword */ || kind === 150 /* SyntaxKind.StringKeyword */ || kind === 151 /* SyntaxKind.SymbolKeyword */ || kind === 114 /* SyntaxKind.VoidKeyword */ || kind === 153 /* SyntaxKind.UndefinedKeyword */ || kind === 143 /* SyntaxKind.NeverKeyword */ || kind === 228 /* SyntaxKind.ExpressionWithTypeArguments */ || kind === 312 /* SyntaxKind.JSDocAllType */ || kind === 313 /* SyntaxKind.JSDocUnknownType */ || kind === 314 /* SyntaxKind.JSDocNullableType */ || kind === 315 /* SyntaxKind.JSDocNonNullableType */ || kind === 316 /* SyntaxKind.JSDocOptionalType */ || kind === 317 /* SyntaxKind.JSDocFunctionType */ || kind === 318 /* SyntaxKind.JSDocVariadicType */; } ts.isTypeNodeKind = isTypeNodeKind; function isAccessExpression(node) { return node.kind === 206 /* SyntaxKind.PropertyAccessExpression */ || node.kind === 207 /* SyntaxKind.ElementAccessExpression */; } ts.isAccessExpression = isAccessExpression; function getNameOfAccessExpression(node) { if (node.kind === 206 /* SyntaxKind.PropertyAccessExpression */) { return node.name; } ts.Debug.assert(node.kind === 207 /* SyntaxKind.ElementAccessExpression */); return node.argumentExpression; } ts.getNameOfAccessExpression = getNameOfAccessExpression; function isBundleFileTextLike(section) { switch (section.kind) { case "text" /* BundleFileSectionKind.Text */: case "internal" /* BundleFileSectionKind.Internal */: return true; default: return false; } } ts.isBundleFileTextLike = isBundleFileTextLike; function isNamedImportsOrExports(node) { return node.kind === 269 /* SyntaxKind.NamedImports */ || node.kind === 273 /* SyntaxKind.NamedExports */; } ts.isNamedImportsOrExports = isNamedImportsOrExports; function getLeftmostAccessExpression(expr) { while (isAccessExpression(expr)) { expr = expr.expression; } return expr; } ts.getLeftmostAccessExpression = getLeftmostAccessExpression; function forEachNameInAccessChainWalkingLeft(name, action) { if (isAccessExpression(name.parent) && isRightSideOfAccessExpression(name)) { return walkAccessExpression(name.parent); } function walkAccessExpression(access) { if (access.kind === 206 /* SyntaxKind.PropertyAccessExpression */) { var res = action(access.name); if (res !== undefined) { return res; } } else if (access.kind === 207 /* SyntaxKind.ElementAccessExpression */) { if (ts.isIdentifier(access.argumentExpression) || ts.isStringLiteralLike(access.argumentExpression)) { var res = action(access.argumentExpression); if (res !== undefined) { return res; } } else { // Chain interrupted by non-static-name access 'x[expr()].y.z' return undefined; } } if (isAccessExpression(access.expression)) { return walkAccessExpression(access.expression); } if (ts.isIdentifier(access.expression)) { // End of chain at Identifier 'x.y.z' return action(access.expression); } // End of chain at non-Identifier 'x().y.z' return undefined; } } ts.forEachNameInAccessChainWalkingLeft = forEachNameInAccessChainWalkingLeft; function getLeftmostExpression(node, stopAtCallExpressions) { while (true) { switch (node.kind) { case 220 /* SyntaxKind.PostfixUnaryExpression */: node = node.operand; continue; case 221 /* SyntaxKind.BinaryExpression */: node = node.left; continue; case 222 /* SyntaxKind.ConditionalExpression */: node = node.condition; continue; case 210 /* SyntaxKind.TaggedTemplateExpression */: node = node.tag; continue; case 208 /* SyntaxKind.CallExpression */: if (stopAtCallExpressions) { return node; } // falls through case 229 /* SyntaxKind.AsExpression */: case 207 /* SyntaxKind.ElementAccessExpression */: case 206 /* SyntaxKind.PropertyAccessExpression */: case 230 /* SyntaxKind.NonNullExpression */: case 350 /* SyntaxKind.PartiallyEmittedExpression */: node = node.expression; continue; } return node; } } ts.getLeftmostExpression = getLeftmostExpression; function Symbol(flags, name) { this.flags = flags; this.escapedName = name; this.declarations = undefined; this.valueDeclaration = undefined; this.id = undefined; this.mergeId = undefined; this.parent = undefined; } function Type(checker, flags) { this.flags = flags; if (ts.Debug.isDebugging || ts.tracing) { this.checker = checker; } } function Signature(checker, flags) { this.flags = flags; if (ts.Debug.isDebugging) { this.checker = checker; } } function Node(kind, pos, end) { this.pos = pos; this.end = end; this.kind = kind; this.id = 0; this.flags = 0 /* NodeFlags.None */; this.modifierFlagsCache = 0 /* ModifierFlags.None */; this.transformFlags = 0 /* TransformFlags.None */; this.parent = undefined; this.original = undefined; } function Token(kind, pos, end) { this.pos = pos; this.end = end; this.kind = kind; this.id = 0; this.flags = 0 /* NodeFlags.None */; this.transformFlags = 0 /* TransformFlags.None */; this.parent = undefined; } function Identifier(kind, pos, end) { this.pos = pos; this.end = end; this.kind = kind; this.id = 0; this.flags = 0 /* NodeFlags.None */; this.transformFlags = 0 /* TransformFlags.None */; this.parent = undefined; this.original = undefined; this.flowNode = undefined; } function SourceMapSource(fileName, text, skipTrivia) { this.fileName = fileName; this.text = text; this.skipTrivia = skipTrivia || (function (pos) { return pos; }); } // eslint-disable-next-line prefer-const ts.objectAllocator = { getNodeConstructor: function () { return Node; }, getTokenConstructor: function () { return Token; }, getIdentifierConstructor: function () { return Identifier; }, getPrivateIdentifierConstructor: function () { return Node; }, getSourceFileConstructor: function () { return Node; }, getSymbolConstructor: function () { return Symbol; }, getTypeConstructor: function () { return Type; }, getSignatureConstructor: function () { return Signature; }, getSourceMapSourceConstructor: function () { return SourceMapSource; }, }; function setObjectAllocator(alloc) { Object.assign(ts.objectAllocator, alloc); } ts.setObjectAllocator = setObjectAllocator; function formatStringFromArgs(text, args, baseIndex) { if (baseIndex === void 0) { baseIndex = 0; } return text.replace(/{(\d+)}/g, function (_match, index) { return "" + ts.Debug.checkDefined(args[+index + baseIndex]); }); } ts.formatStringFromArgs = formatStringFromArgs; var localizedDiagnosticMessages; /* @internal */ function setLocalizedDiagnosticMessages(messages) { localizedDiagnosticMessages = messages; } ts.setLocalizedDiagnosticMessages = setLocalizedDiagnosticMessages; /* @internal */ // If the localized messages json is unset, and if given function use it to set the json function maybeSetLocalizedDiagnosticMessages(getMessages) { if (!localizedDiagnosticMessages && getMessages) { localizedDiagnosticMessages = getMessages(); } } ts.maybeSetLocalizedDiagnosticMessages = maybeSetLocalizedDiagnosticMessages; function getLocaleSpecificMessage(message) { return localizedDiagnosticMessages && localizedDiagnosticMessages[message.key] || message.message; } ts.getLocaleSpecificMessage = getLocaleSpecificMessage; function createDetachedDiagnostic(fileName, start, length, message) { assertDiagnosticLocation(/*file*/ undefined, start, length); var text = getLocaleSpecificMessage(message); if (arguments.length > 4) { text = formatStringFromArgs(text, arguments, 4); } return { file: undefined, start: start, length: length, messageText: text, category: message.category, code: message.code, reportsUnnecessary: message.reportsUnnecessary, fileName: fileName, }; } ts.createDetachedDiagnostic = createDetachedDiagnostic; function isDiagnosticWithDetachedLocation(diagnostic) { return diagnostic.file === undefined && diagnostic.start !== undefined && diagnostic.length !== undefined && typeof diagnostic.fileName === "string"; } function attachFileToDiagnostic(diagnostic, file) { var fileName = file.fileName || ""; var length = file.text.length; ts.Debug.assertEqual(diagnostic.fileName, fileName); ts.Debug.assertLessThanOrEqual(diagnostic.start, length); ts.Debug.assertLessThanOrEqual(diagnostic.start + diagnostic.length, length); var diagnosticWithLocation = { file: file, start: diagnostic.start, length: diagnostic.length, messageText: diagnostic.messageText, category: diagnostic.category, code: diagnostic.code, reportsUnnecessary: diagnostic.reportsUnnecessary }; if (diagnostic.relatedInformation) { diagnosticWithLocation.relatedInformation = []; for (var _i = 0, _a = diagnostic.relatedInformation; _i < _a.length; _i++) { var related = _a[_i]; if (isDiagnosticWithDetachedLocation(related) && related.fileName === fileName) { ts.Debug.assertLessThanOrEqual(related.start, length); ts.Debug.assertLessThanOrEqual(related.start + related.length, length); diagnosticWithLocation.relatedInformation.push(attachFileToDiagnostic(related, file)); } else { diagnosticWithLocation.relatedInformation.push(related); } } } return diagnosticWithLocation; } function attachFileToDiagnostics(diagnostics, file) { var diagnosticsWithLocation = []; for (var _i = 0, diagnostics_1 = diagnostics; _i < diagnostics_1.length; _i++) { var diagnostic = diagnostics_1[_i]; diagnosticsWithLocation.push(attachFileToDiagnostic(diagnostic, file)); } return diagnosticsWithLocation; } ts.attachFileToDiagnostics = attachFileToDiagnostics; function createFileDiagnostic(file, start, length, message) { assertDiagnosticLocation(file, start, length); var text = getLocaleSpecificMessage(message); if (arguments.length > 4) { text = formatStringFromArgs(text, arguments, 4); } return { file: file, start: start, length: length, messageText: text, category: message.category, code: message.code, reportsUnnecessary: message.reportsUnnecessary, reportsDeprecated: message.reportsDeprecated }; } ts.createFileDiagnostic = createFileDiagnostic; function formatMessage(_dummy, message) { var text = getLocaleSpecificMessage(message); if (arguments.length > 2) { text = formatStringFromArgs(text, arguments, 2); } return text; } ts.formatMessage = formatMessage; function createCompilerDiagnostic(message) { var text = getLocaleSpecificMessage(message); if (arguments.length > 1) { text = formatStringFromArgs(text, arguments, 1); } return { file: undefined, start: undefined, length: undefined, messageText: text, category: message.category, code: message.code, reportsUnnecessary: message.reportsUnnecessary, reportsDeprecated: message.reportsDeprecated }; } ts.createCompilerDiagnostic = createCompilerDiagnostic; function createCompilerDiagnosticFromMessageChain(chain, relatedInformation) { return { file: undefined, start: undefined, length: undefined, code: chain.code, category: chain.category, messageText: chain.next ? chain : chain.messageText, relatedInformation: relatedInformation }; } ts.createCompilerDiagnosticFromMessageChain = createCompilerDiagnosticFromMessageChain; function chainDiagnosticMessages(details, message) { var text = getLocaleSpecificMessage(message); if (arguments.length > 2) { text = formatStringFromArgs(text, arguments, 2); } return { messageText: text, category: message.category, code: message.code, next: details === undefined || Array.isArray(details) ? details : [details] }; } ts.chainDiagnosticMessages = chainDiagnosticMessages; function concatenateDiagnosticMessageChains(headChain, tailChain) { var lastChain = headChain; while (lastChain.next) { lastChain = lastChain.next[0]; } lastChain.next = [tailChain]; } ts.concatenateDiagnosticMessageChains = concatenateDiagnosticMessageChains; function getDiagnosticFilePath(diagnostic) { return diagnostic.file ? diagnostic.file.path : undefined; } function compareDiagnostics(d1, d2) { return compareDiagnosticsSkipRelatedInformation(d1, d2) || compareRelatedInformation(d1, d2) || 0 /* Comparison.EqualTo */; } ts.compareDiagnostics = compareDiagnostics; function compareDiagnosticsSkipRelatedInformation(d1, d2) { return ts.compareStringsCaseSensitive(getDiagnosticFilePath(d1), getDiagnosticFilePath(d2)) || ts.compareValues(d1.start, d2.start) || ts.compareValues(d1.length, d2.length) || ts.compareValues(d1.code, d2.code) || compareMessageText(d1.messageText, d2.messageText) || 0 /* Comparison.EqualTo */; } ts.compareDiagnosticsSkipRelatedInformation = compareDiagnosticsSkipRelatedInformation; function compareRelatedInformation(d1, d2) { if (!d1.relatedInformation && !d2.relatedInformation) { return 0 /* Comparison.EqualTo */; } if (d1.relatedInformation && d2.relatedInformation) { return ts.compareValues(d1.relatedInformation.length, d2.relatedInformation.length) || ts.forEach(d1.relatedInformation, function (d1i, index) { var d2i = d2.relatedInformation[index]; return compareDiagnostics(d1i, d2i); // EqualTo is 0, so falsy, and will cause the next item to be compared }) || 0 /* Comparison.EqualTo */; } return d1.relatedInformation ? -1 /* Comparison.LessThan */ : 1 /* Comparison.GreaterThan */; } function compareMessageText(t1, t2) { if (typeof t1 === "string" && typeof t2 === "string") { return ts.compareStringsCaseSensitive(t1, t2); } else if (typeof t1 === "string") { return -1 /* Comparison.LessThan */; } else if (typeof t2 === "string") { return 1 /* Comparison.GreaterThan */; } var res = ts.compareStringsCaseSensitive(t1.messageText, t2.messageText); if (res) { return res; } if (!t1.next && !t2.next) { return 0 /* Comparison.EqualTo */; } if (!t1.next) { return -1 /* Comparison.LessThan */; } if (!t2.next) { return 1 /* Comparison.GreaterThan */; } var len = Math.min(t1.next.length, t2.next.length); for (var i = 0; i < len; i++) { res = compareMessageText(t1.next[i], t2.next[i]); if (res) { return res; } } if (t1.next.length < t2.next.length) { return -1 /* Comparison.LessThan */; } else if (t1.next.length > t2.next.length) { return 1 /* Comparison.GreaterThan */; } return 0 /* Comparison.EqualTo */; } function getLanguageVariant(scriptKind) { // .tsx and .jsx files are treated as jsx language variant. return scriptKind === 4 /* ScriptKind.TSX */ || scriptKind === 2 /* ScriptKind.JSX */ || scriptKind === 1 /* ScriptKind.JS */ || scriptKind === 6 /* ScriptKind.JSON */ ? 1 /* LanguageVariant.JSX */ : 0 /* LanguageVariant.Standard */; } ts.getLanguageVariant = getLanguageVariant; /** * This is a somewhat unavoidable full tree walk to locate a JSX tag - `import.meta` requires the same, * but we avoid that walk (or parts of it) if at all possible using the `PossiblyContainsImportMeta` node flag. * Unfortunately, there's no `NodeFlag` space to do the same for JSX. */ function walkTreeForJSXTags(node) { if (!(node.transformFlags & 2 /* TransformFlags.ContainsJsx */)) return undefined; return ts.isJsxOpeningLikeElement(node) || ts.isJsxFragment(node) ? node : ts.forEachChild(node, walkTreeForJSXTags); } function isFileModuleFromUsingJSXTag(file) { // Excludes declaration files - they still require an explicit `export {}` or the like // for back compat purposes. (not that declaration files should contain JSX tags!) return !file.isDeclarationFile ? walkTreeForJSXTags(file) : undefined; } /** * Note that this requires file.impliedNodeFormat be set already; meaning it must be set very early on * in SourceFile construction. */ function isFileForcedToBeModuleByFormat(file) { // Excludes declaration files - they still require an explicit `export {}` or the like // for back compat purposes. The only non-declaration files _not_ forced to be a module are `.js` files // that aren't esm-mode (meaning not in a `type: module` scope). return (file.impliedNodeFormat === ts.ModuleKind.ESNext || (ts.fileExtensionIsOneOf(file.fileName, [".cjs" /* Extension.Cjs */, ".cts" /* Extension.Cts */]))) && !file.isDeclarationFile ? true : undefined; } function getSetExternalModuleIndicator(options) { // TODO: Should this callback be cached? switch (getEmitModuleDetectionKind(options)) { case ts.ModuleDetectionKind.Force: // All non-declaration files are modules, declaration files still do the usual isFileProbablyExternalModule return function (file) { file.externalModuleIndicator = ts.isFileProbablyExternalModule(file) || !file.isDeclarationFile || undefined; }; case ts.ModuleDetectionKind.Legacy: // Files are modules if they have imports, exports, or import.meta return function (file) { file.externalModuleIndicator = ts.isFileProbablyExternalModule(file); }; case ts.ModuleDetectionKind.Auto: // If module is nodenext or node16, all esm format files are modules // If jsx is react-jsx or react-jsxdev then jsx tags force module-ness // otherwise, the presence of import or export statments (or import.meta) implies module-ness var checks = [ts.isFileProbablyExternalModule]; if (options.jsx === 4 /* JsxEmit.ReactJSX */ || options.jsx === 5 /* JsxEmit.ReactJSXDev */) { checks.push(isFileModuleFromUsingJSXTag); } var moduleKind = getEmitModuleKind(options); if (moduleKind === ts.ModuleKind.Node16 || moduleKind === ts.ModuleKind.NodeNext) { checks.push(isFileForcedToBeModuleByFormat); } var combined_1 = ts.or.apply(void 0, checks); var callback = function (file) { return void (file.externalModuleIndicator = combined_1(file)); }; return callback; } } ts.getSetExternalModuleIndicator = getSetExternalModuleIndicator; function getEmitScriptTarget(compilerOptions) { return compilerOptions.target || (compilerOptions.module === ts.ModuleKind.Node16 && 9 /* ScriptTarget.ES2022 */) || (compilerOptions.module === ts.ModuleKind.NodeNext && 99 /* ScriptTarget.ESNext */) || 0 /* ScriptTarget.ES3 */; } ts.getEmitScriptTarget = getEmitScriptTarget; function getEmitModuleKind(compilerOptions) { return typeof compilerOptions.module === "number" ? compilerOptions.module : getEmitScriptTarget(compilerOptions) >= 2 /* ScriptTarget.ES2015 */ ? ts.ModuleKind.ES2015 : ts.ModuleKind.CommonJS; } ts.getEmitModuleKind = getEmitModuleKind; function getEmitModuleResolutionKind(compilerOptions) { var moduleResolution = compilerOptions.moduleResolution; if (moduleResolution === undefined) { switch (getEmitModuleKind(compilerOptions)) { case ts.ModuleKind.CommonJS: moduleResolution = ts.ModuleResolutionKind.NodeJs; break; case ts.ModuleKind.Node16: moduleResolution = ts.ModuleResolutionKind.Node16; break; case ts.ModuleKind.NodeNext: moduleResolution = ts.ModuleResolutionKind.NodeNext; break; default: moduleResolution = ts.ModuleResolutionKind.Classic; break; } } return moduleResolution; } ts.getEmitModuleResolutionKind = getEmitModuleResolutionKind; function getEmitModuleDetectionKind(options) { return options.moduleDetection || (getEmitModuleKind(options) === ts.ModuleKind.Node16 || getEmitModuleKind(options) === ts.ModuleKind.NodeNext ? ts.ModuleDetectionKind.Force : ts.ModuleDetectionKind.Auto); } ts.getEmitModuleDetectionKind = getEmitModuleDetectionKind; function hasJsonModuleEmitEnabled(options) { switch (getEmitModuleKind(options)) { case ts.ModuleKind.CommonJS: case ts.ModuleKind.AMD: case ts.ModuleKind.ES2015: case ts.ModuleKind.ES2020: case ts.ModuleKind.ES2022: case ts.ModuleKind.ESNext: case ts.ModuleKind.Node16: case ts.ModuleKind.NodeNext: return true; default: return false; } } ts.hasJsonModuleEmitEnabled = hasJsonModuleEmitEnabled; function unreachableCodeIsError(options) { return options.allowUnreachableCode === false; } ts.unreachableCodeIsError = unreachableCodeIsError; function unusedLabelIsError(options) { return options.allowUnusedLabels === false; } ts.unusedLabelIsError = unusedLabelIsError; function getAreDeclarationMapsEnabled(options) { return !!(getEmitDeclarations(options) && options.declarationMap); } ts.getAreDeclarationMapsEnabled = getAreDeclarationMapsEnabled; function getESModuleInterop(compilerOptions) { if (compilerOptions.esModuleInterop !== undefined) { return compilerOptions.esModuleInterop; } switch (getEmitModuleKind(compilerOptions)) { case ts.ModuleKind.Node16: case ts.ModuleKind.NodeNext: return true; } return undefined; } ts.getESModuleInterop = getESModuleInterop; function getAllowSyntheticDefaultImports(compilerOptions) { var moduleKind = getEmitModuleKind(compilerOptions); return compilerOptions.allowSyntheticDefaultImports !== undefined ? compilerOptions.allowSyntheticDefaultImports : getESModuleInterop(compilerOptions) || moduleKind === ts.ModuleKind.System; } ts.getAllowSyntheticDefaultImports = getAllowSyntheticDefaultImports; function getEmitDeclarations(compilerOptions) { return !!(compilerOptions.declaration || compilerOptions.composite); } ts.getEmitDeclarations = getEmitDeclarations; function shouldPreserveConstEnums(compilerOptions) { return !!(compilerOptions.preserveConstEnums || compilerOptions.isolatedModules); } ts.shouldPreserveConstEnums = shouldPreserveConstEnums; function isIncrementalCompilation(options) { return !!(options.incremental || options.composite); } ts.isIncrementalCompilation = isIncrementalCompilation; function getStrictOptionValue(compilerOptions, flag) { return compilerOptions[flag] === undefined ? !!compilerOptions.strict : !!compilerOptions[flag]; } ts.getStrictOptionValue = getStrictOptionValue; function getAllowJSCompilerOption(compilerOptions) { return compilerOptions.allowJs === undefined ? !!compilerOptions.checkJs : compilerOptions.allowJs; } ts.getAllowJSCompilerOption = getAllowJSCompilerOption; function getUseDefineForClassFields(compilerOptions) { return compilerOptions.useDefineForClassFields === undefined ? getEmitScriptTarget(compilerOptions) >= 9 /* ScriptTarget.ES2022 */ : compilerOptions.useDefineForClassFields; } ts.getUseDefineForClassFields = getUseDefineForClassFields; function compilerOptionsAffectSemanticDiagnostics(newOptions, oldOptions) { return optionsHaveChanges(oldOptions, newOptions, ts.semanticDiagnosticsOptionDeclarations); } ts.compilerOptionsAffectSemanticDiagnostics = compilerOptionsAffectSemanticDiagnostics; function compilerOptionsAffectEmit(newOptions, oldOptions) { return optionsHaveChanges(oldOptions, newOptions, ts.affectsEmitOptionDeclarations); } ts.compilerOptionsAffectEmit = compilerOptionsAffectEmit; function getCompilerOptionValue(options, option) { return option.strictFlag ? getStrictOptionValue(options, option.name) : options[option.name]; } ts.getCompilerOptionValue = getCompilerOptionValue; function getJSXTransformEnabled(options) { var jsx = options.jsx; return jsx === 2 /* JsxEmit.React */ || jsx === 4 /* JsxEmit.ReactJSX */ || jsx === 5 /* JsxEmit.ReactJSXDev */; } ts.getJSXTransformEnabled = getJSXTransformEnabled; function getJSXImplicitImportBase(compilerOptions, file) { var jsxImportSourcePragmas = file === null || file === void 0 ? void 0 : file.pragmas.get("jsximportsource"); var jsxImportSourcePragma = ts.isArray(jsxImportSourcePragmas) ? jsxImportSourcePragmas[jsxImportSourcePragmas.length - 1] : jsxImportSourcePragmas; return compilerOptions.jsx === 4 /* JsxEmit.ReactJSX */ || compilerOptions.jsx === 5 /* JsxEmit.ReactJSXDev */ || compilerOptions.jsxImportSource || jsxImportSourcePragma ? (jsxImportSourcePragma === null || jsxImportSourcePragma === void 0 ? void 0 : jsxImportSourcePragma.arguments.factory) || compilerOptions.jsxImportSource || "react" : undefined; } ts.getJSXImplicitImportBase = getJSXImplicitImportBase; function getJSXRuntimeImport(base, options) { return base ? "".concat(base, "/").concat(options.jsx === 5 /* JsxEmit.ReactJSXDev */ ? "jsx-dev-runtime" : "jsx-runtime") : undefined; } ts.getJSXRuntimeImport = getJSXRuntimeImport; function hasZeroOrOneAsteriskCharacter(str) { var seenAsterisk = false; for (var i = 0; i < str.length; i++) { if (str.charCodeAt(i) === 42 /* CharacterCodes.asterisk */) { if (!seenAsterisk) { seenAsterisk = true; } else { // have already seen asterisk return false; } } } return true; } ts.hasZeroOrOneAsteriskCharacter = hasZeroOrOneAsteriskCharacter; function createSymlinkCache(cwd, getCanonicalFileName) { var symlinkedDirectories; var symlinkedDirectoriesByRealpath; var symlinkedFiles; var hasProcessedResolutions = false; return { getSymlinkedFiles: function () { return symlinkedFiles; }, getSymlinkedDirectories: function () { return symlinkedDirectories; }, getSymlinkedDirectoriesByRealpath: function () { return symlinkedDirectoriesByRealpath; }, setSymlinkedFile: function (path, real) { return (symlinkedFiles || (symlinkedFiles = new ts.Map())).set(path, real); }, setSymlinkedDirectory: function (symlink, real) { // Large, interconnected dependency graphs in pnpm will have a huge number of symlinks // where both the realpath and the symlink path are inside node_modules/.pnpm. Since // this path is never a candidate for a module specifier, we can ignore it entirely. var symlinkPath = ts.toPath(symlink, cwd, getCanonicalFileName); if (!containsIgnoredPath(symlinkPath)) { symlinkPath = ts.ensureTrailingDirectorySeparator(symlinkPath); if (real !== false && !(symlinkedDirectories === null || symlinkedDirectories === void 0 ? void 0 : symlinkedDirectories.has(symlinkPath))) { (symlinkedDirectoriesByRealpath || (symlinkedDirectoriesByRealpath = ts.createMultiMap())).add(ts.ensureTrailingDirectorySeparator(real.realPath), symlink); } (symlinkedDirectories || (symlinkedDirectories = new ts.Map())).set(symlinkPath, real); } }, setSymlinksFromResolutions: function (files, typeReferenceDirectives) { var _this = this; var _a; ts.Debug.assert(!hasProcessedResolutions); hasProcessedResolutions = true; for (var _i = 0, files_1 = files; _i < files_1.length; _i++) { var file = files_1[_i]; (_a = file.resolvedModules) === null || _a === void 0 ? void 0 : _a.forEach(function (resolution) { return processResolution(_this, resolution); }); } typeReferenceDirectives === null || typeReferenceDirectives === void 0 ? void 0 : typeReferenceDirectives.forEach(function (resolution) { return processResolution(_this, resolution); }); }, hasProcessedResolutions: function () { return hasProcessedResolutions; }, }; function processResolution(cache, resolution) { if (!resolution || !resolution.originalPath || !resolution.resolvedFileName) return; var resolvedFileName = resolution.resolvedFileName, originalPath = resolution.originalPath; cache.setSymlinkedFile(ts.toPath(originalPath, cwd, getCanonicalFileName), resolvedFileName); var _a = guessDirectorySymlink(resolvedFileName, originalPath, cwd, getCanonicalFileName) || ts.emptyArray, commonResolved = _a[0], commonOriginal = _a[1]; if (commonResolved && commonOriginal) { cache.setSymlinkedDirectory(commonOriginal, { real: commonResolved, realPath: ts.toPath(commonResolved, cwd, getCanonicalFileName) }); } } } ts.createSymlinkCache = createSymlinkCache; function guessDirectorySymlink(a, b, cwd, getCanonicalFileName) { var aParts = ts.getPathComponents(ts.getNormalizedAbsolutePath(a, cwd)); var bParts = ts.getPathComponents(ts.getNormalizedAbsolutePath(b, cwd)); var isDirectory = false; while (aParts.length >= 2 && bParts.length >= 2 && !isNodeModulesOrScopedPackageDirectory(aParts[aParts.length - 2], getCanonicalFileName) && !isNodeModulesOrScopedPackageDirectory(bParts[bParts.length - 2], getCanonicalFileName) && getCanonicalFileName(aParts[aParts.length - 1]) === getCanonicalFileName(bParts[bParts.length - 1])) { aParts.pop(); bParts.pop(); isDirectory = true; } return isDirectory ? [ts.getPathFromPathComponents(aParts), ts.getPathFromPathComponents(bParts)] : undefined; } // KLUDGE: Don't assume one 'node_modules' links to another. More likely a single directory inside the node_modules is the symlink. // ALso, don't assume that an `@foo` directory is linked. More likely the contents of that are linked. function isNodeModulesOrScopedPackageDirectory(s, getCanonicalFileName) { return s !== undefined && (getCanonicalFileName(s) === "node_modules" || ts.startsWith(s, "@")); } function stripLeadingDirectorySeparator(s) { return ts.isAnyDirectorySeparator(s.charCodeAt(0)) ? s.slice(1) : undefined; } function tryRemoveDirectoryPrefix(path, dirPath, getCanonicalFileName) { var withoutPrefix = ts.tryRemovePrefix(path, dirPath, getCanonicalFileName); return withoutPrefix === undefined ? undefined : stripLeadingDirectorySeparator(withoutPrefix); } ts.tryRemoveDirectoryPrefix = tryRemoveDirectoryPrefix; // Reserved characters, forces escaping of any non-word (or digit), non-whitespace character. // It may be inefficient (we could just match (/[-[\]{}()*+?.,\\^$|#\s]/g), but this is future // proof. var reservedCharacterPattern = /[^\w\s\/]/g; function regExpEscape(text) { return text.replace(reservedCharacterPattern, escapeRegExpCharacter); } ts.regExpEscape = regExpEscape; function escapeRegExpCharacter(match) { return "\\" + match; } var wildcardCharCodes = [42 /* CharacterCodes.asterisk */, 63 /* CharacterCodes.question */]; ts.commonPackageFolders = ["node_modules", "bower_components", "jspm_packages"]; var implicitExcludePathRegexPattern = "(?!(".concat(ts.commonPackageFolders.join("|"), ")(/|$))"); var filesMatcher = { /** * Matches any single directory segment unless it is the last segment and a .min.js file * Breakdown: * [^./] # matches everything up to the first . character (excluding directory separators) * (\\.(?!min\\.js$))? # matches . characters but not if they are part of the .min.js file extension */ singleAsteriskRegexFragment: "([^./]|(\\.(?!min\\.js$))?)*", /** * Regex for the ** wildcard. Matches any number of subdirectories. When used for including * files or directories, does not match subdirectories that start with a . character */ doubleAsteriskRegexFragment: "(/".concat(implicitExcludePathRegexPattern, "[^/.][^/]*)*?"), replaceWildcardCharacter: function (match) { return replaceWildcardCharacter(match, filesMatcher.singleAsteriskRegexFragment); } }; var directoriesMatcher = { singleAsteriskRegexFragment: "[^/]*", /** * Regex for the ** wildcard. Matches any number of subdirectories. When used for including * files or directories, does not match subdirectories that start with a . character */ doubleAsteriskRegexFragment: "(/".concat(implicitExcludePathRegexPattern, "[^/.][^/]*)*?"), replaceWildcardCharacter: function (match) { return replaceWildcardCharacter(match, directoriesMatcher.singleAsteriskRegexFragment); } }; var excludeMatcher = { singleAsteriskRegexFragment: "[^/]*", doubleAsteriskRegexFragment: "(/.+?)?", replaceWildcardCharacter: function (match) { return replaceWildcardCharacter(match, excludeMatcher.singleAsteriskRegexFragment); } }; var wildcardMatchers = { files: filesMatcher, directories: directoriesMatcher, exclude: excludeMatcher }; function getRegularExpressionForWildcard(specs, basePath, usage) { var patterns = getRegularExpressionsForWildcards(specs, basePath, usage); if (!patterns || !patterns.length) { return undefined; } var pattern = patterns.map(function (pattern) { return "(".concat(pattern, ")"); }).join("|"); // If excluding, match "foo/bar/baz...", but if including, only allow "foo". var terminator = usage === "exclude" ? "($|/)" : "$"; return "^(".concat(pattern, ")").concat(terminator); } ts.getRegularExpressionForWildcard = getRegularExpressionForWildcard; function getRegularExpressionsForWildcards(specs, basePath, usage) { if (specs === undefined || specs.length === 0) { return undefined; } return ts.flatMap(specs, function (spec) { return spec && getSubPatternFromSpec(spec, basePath, usage, wildcardMatchers[usage]); }); } ts.getRegularExpressionsForWildcards = getRegularExpressionsForWildcards; /** * An "includes" path "foo" is implicitly a glob "foo/** /*" (without the space) if its last component has no extension, * and does not contain any glob characters itself. */ function isImplicitGlob(lastPathComponent) { return !/[.*?]/.test(lastPathComponent); } ts.isImplicitGlob = isImplicitGlob; function getPatternFromSpec(spec, basePath, usage) { var pattern = spec && getSubPatternFromSpec(spec, basePath, usage, wildcardMatchers[usage]); return pattern && "^(".concat(pattern, ")").concat(usage === "exclude" ? "($|/)" : "$"); } ts.getPatternFromSpec = getPatternFromSpec; function getSubPatternFromSpec(spec, basePath, usage, _a) { var singleAsteriskRegexFragment = _a.singleAsteriskRegexFragment, doubleAsteriskRegexFragment = _a.doubleAsteriskRegexFragment, replaceWildcardCharacter = _a.replaceWildcardCharacter; var subpattern = ""; var hasWrittenComponent = false; var components = ts.getNormalizedPathComponents(spec, basePath); var lastComponent = ts.last(components); if (usage !== "exclude" && lastComponent === "**") { return undefined; } // getNormalizedPathComponents includes the separator for the root component. // We need to remove to create our regex correctly. components[0] = ts.removeTrailingDirectorySeparator(components[0]); if (isImplicitGlob(lastComponent)) { components.push("**", "*"); } var optionalCount = 0; for (var _i = 0, components_1 = components; _i < components_1.length; _i++) { var component = components_1[_i]; if (component === "**") { subpattern += doubleAsteriskRegexFragment; } else { if (usage === "directories") { subpattern += "("; optionalCount++; } if (hasWrittenComponent) { subpattern += ts.directorySeparator; } if (usage !== "exclude") { var componentPattern = ""; // The * and ? wildcards should not match directories or files that start with . if they // appear first in a component. Dotted directories and files can be included explicitly // like so: **/.*/.* if (component.charCodeAt(0) === 42 /* CharacterCodes.asterisk */) { componentPattern += "([^./]" + singleAsteriskRegexFragment + ")?"; component = component.substr(1); } else if (component.charCodeAt(0) === 63 /* CharacterCodes.question */) { componentPattern += "[^./]"; component = component.substr(1); } componentPattern += component.replace(reservedCharacterPattern, replaceWildcardCharacter); // Patterns should not include subfolders like node_modules unless they are // explicitly included as part of the path. // // As an optimization, if the component pattern is the same as the component, // then there definitely were no wildcard characters and we do not need to // add the exclusion pattern. if (componentPattern !== component) { subpattern += implicitExcludePathRegexPattern; } subpattern += componentPattern; } else { subpattern += component.replace(reservedCharacterPattern, replaceWildcardCharacter); } } hasWrittenComponent = true; } while (optionalCount > 0) { subpattern += ")?"; optionalCount--; } return subpattern; } function replaceWildcardCharacter(match, singleAsteriskRegexFragment) { return match === "*" ? singleAsteriskRegexFragment : match === "?" ? "[^/]" : "\\" + match; } /** @param path directory of the tsconfig.json */ function getFileMatcherPatterns(path, excludes, includes, useCaseSensitiveFileNames, currentDirectory) { path = ts.normalizePath(path); currentDirectory = ts.normalizePath(currentDirectory); var absolutePath = ts.combinePaths(currentDirectory, path); return { includeFilePatterns: ts.map(getRegularExpressionsForWildcards(includes, absolutePath, "files"), function (pattern) { return "^".concat(pattern, "$"); }), includeFilePattern: getRegularExpressionForWildcard(includes, absolutePath, "files"), includeDirectoryPattern: getRegularExpressionForWildcard(includes, absolutePath, "directories"), excludePattern: getRegularExpressionForWildcard(excludes, absolutePath, "exclude"), basePaths: getBasePaths(path, includes, useCaseSensitiveFileNames) }; } ts.getFileMatcherPatterns = getFileMatcherPatterns; function getRegexFromPattern(pattern, useCaseSensitiveFileNames) { return new RegExp(pattern, useCaseSensitiveFileNames ? "" : "i"); } ts.getRegexFromPattern = getRegexFromPattern; /** @param path directory of the tsconfig.json */ function matchFiles(path, extensions, excludes, includes, useCaseSensitiveFileNames, currentDirectory, depth, getFileSystemEntries, realpath) { path = ts.normalizePath(path); currentDirectory = ts.normalizePath(currentDirectory); var patterns = getFileMatcherPatterns(path, excludes, includes, useCaseSensitiveFileNames, currentDirectory); var includeFileRegexes = patterns.includeFilePatterns && patterns.includeFilePatterns.map(function (pattern) { return getRegexFromPattern(pattern, useCaseSensitiveFileNames); }); var includeDirectoryRegex = patterns.includeDirectoryPattern && getRegexFromPattern(patterns.includeDirectoryPattern, useCaseSensitiveFileNames); var excludeRegex = patterns.excludePattern && getRegexFromPattern(patterns.excludePattern, useCaseSensitiveFileNames); // Associate an array of results with each include regex. This keeps results in order of the "include" order. // If there are no "includes", then just put everything in results[0]. var results = includeFileRegexes ? includeFileRegexes.map(function () { return []; }) : [[]]; var visited = new ts.Map(); var toCanonical = ts.createGetCanonicalFileName(useCaseSensitiveFileNames); for (var _i = 0, _a = patterns.basePaths; _i < _a.length; _i++) { var basePath = _a[_i]; visitDirectory(basePath, ts.combinePaths(currentDirectory, basePath), depth); } return ts.flatten(results); function visitDirectory(path, absolutePath, depth) { var canonicalPath = toCanonical(realpath(absolutePath)); if (visited.has(canonicalPath)) return; visited.set(canonicalPath, true); var _a = getFileSystemEntries(path), files = _a.files, directories = _a.directories; var _loop_1 = function (current) { var name = ts.combinePaths(path, current); var absoluteName = ts.combinePaths(absolutePath, current); if (extensions && !ts.fileExtensionIsOneOf(name, extensions)) return "continue"; if (excludeRegex && excludeRegex.test(absoluteName)) return "continue"; if (!includeFileRegexes) { results[0].push(name); } else { var includeIndex = ts.findIndex(includeFileRegexes, function (re) { return re.test(absoluteName); }); if (includeIndex !== -1) { results[includeIndex].push(name); } } }; for (var _i = 0, _b = ts.sort(files, ts.compareStringsCaseSensitive); _i < _b.length; _i++) { var current = _b[_i]; _loop_1(current); } if (depth !== undefined) { depth--; if (depth === 0) { return; } } for (var _c = 0, _d = ts.sort(directories, ts.compareStringsCaseSensitive); _c < _d.length; _c++) { var current = _d[_c]; var name = ts.combinePaths(path, current); var absoluteName = ts.combinePaths(absolutePath, current); if ((!includeDirectoryRegex || includeDirectoryRegex.test(absoluteName)) && (!excludeRegex || !excludeRegex.test(absoluteName))) { visitDirectory(name, absoluteName, depth); } } } } ts.matchFiles = matchFiles; /** * Computes the unique non-wildcard base paths amongst the provided include patterns. */ function getBasePaths(path, includes, useCaseSensitiveFileNames) { // Storage for our results in the form of literal paths (e.g. the paths as written by the user). var basePaths = [path]; if (includes) { // Storage for literal base paths amongst the include patterns. var includeBasePaths = []; for (var _i = 0, includes_1 = includes; _i < includes_1.length; _i++) { var include = includes_1[_i]; // We also need to check the relative paths by converting them to absolute and normalizing // in case they escape the base path (e.g "..\somedirectory") var absolute = ts.isRootedDiskPath(include) ? include : ts.normalizePath(ts.combinePaths(path, include)); // Append the literal and canonical candidate base paths. includeBasePaths.push(getIncludeBasePath(absolute)); } // Sort the offsets array using either the literal or canonical path representations. includeBasePaths.sort(ts.getStringComparer(!useCaseSensitiveFileNames)); var _loop_2 = function (includeBasePath) { if (ts.every(basePaths, function (basePath) { return !ts.containsPath(basePath, includeBasePath, path, !useCaseSensitiveFileNames); })) { basePaths.push(includeBasePath); } }; // Iterate over each include base path and include unique base paths that are not a // subpath of an existing base path for (var _a = 0, includeBasePaths_1 = includeBasePaths; _a < includeBasePaths_1.length; _a++) { var includeBasePath = includeBasePaths_1[_a]; _loop_2(includeBasePath); } } return basePaths; } function getIncludeBasePath(absolute) { var wildcardOffset = ts.indexOfAnyCharCode(absolute, wildcardCharCodes); if (wildcardOffset < 0) { // No "*" or "?" in the path return !ts.hasExtension(absolute) ? absolute : ts.removeTrailingDirectorySeparator(ts.getDirectoryPath(absolute)); } return absolute.substring(0, absolute.lastIndexOf(ts.directorySeparator, wildcardOffset)); } function ensureScriptKind(fileName, scriptKind) { // Using scriptKind as a condition handles both: // - 'scriptKind' is unspecified and thus it is `undefined` // - 'scriptKind' is set and it is `Unknown` (0) // If the 'scriptKind' is 'undefined' or 'Unknown' then we attempt // to get the ScriptKind from the file name. If it cannot be resolved // from the file name then the default 'TS' script kind is returned. return scriptKind || getScriptKindFromFileName(fileName) || 3 /* ScriptKind.TS */; } ts.ensureScriptKind = ensureScriptKind; function getScriptKindFromFileName(fileName) { var ext = fileName.substr(fileName.lastIndexOf(".")); switch (ext.toLowerCase()) { case ".js" /* Extension.Js */: case ".cjs" /* Extension.Cjs */: case ".mjs" /* Extension.Mjs */: return 1 /* ScriptKind.JS */; case ".jsx" /* Extension.Jsx */: return 2 /* ScriptKind.JSX */; case ".ts" /* Extension.Ts */: case ".cts" /* Extension.Cts */: case ".mts" /* Extension.Mts */: return 3 /* ScriptKind.TS */; case ".tsx" /* Extension.Tsx */: return 4 /* ScriptKind.TSX */; case ".json" /* Extension.Json */: return 6 /* ScriptKind.JSON */; default: return 0 /* ScriptKind.Unknown */; } } ts.getScriptKindFromFileName = getScriptKindFromFileName; /** * Groups of supported extensions in order of file resolution precedence. (eg, TS > TSX > DTS and seperately, CTS > DCTS) */ ts.supportedTSExtensions = [[".ts" /* Extension.Ts */, ".tsx" /* Extension.Tsx */, ".d.ts" /* Extension.Dts */], [".cts" /* Extension.Cts */, ".d.cts" /* Extension.Dcts */], [".mts" /* Extension.Mts */, ".d.mts" /* Extension.Dmts */]]; ts.supportedTSExtensionsFlat = ts.flatten(ts.supportedTSExtensions); var supportedTSExtensionsWithJson = __spreadArray(__spreadArray([], ts.supportedTSExtensions, true), [[".json" /* Extension.Json */]], false); /** Must have ".d.ts" first because if ".ts" goes first, that will be detected as the extension instead of ".d.ts". */ var supportedTSExtensionsForExtractExtension = [".d.ts" /* Extension.Dts */, ".d.cts" /* Extension.Dcts */, ".d.mts" /* Extension.Dmts */, ".cts" /* Extension.Cts */, ".mts" /* Extension.Mts */, ".ts" /* Extension.Ts */, ".tsx" /* Extension.Tsx */, ".cts" /* Extension.Cts */, ".mts" /* Extension.Mts */]; ts.supportedJSExtensions = [[".js" /* Extension.Js */, ".jsx" /* Extension.Jsx */], [".mjs" /* Extension.Mjs */], [".cjs" /* Extension.Cjs */]]; ts.supportedJSExtensionsFlat = ts.flatten(ts.supportedJSExtensions); var allSupportedExtensions = [[".ts" /* Extension.Ts */, ".tsx" /* Extension.Tsx */, ".d.ts" /* Extension.Dts */, ".js" /* Extension.Js */, ".jsx" /* Extension.Jsx */], [".cts" /* Extension.Cts */, ".d.cts" /* Extension.Dcts */, ".cjs" /* Extension.Cjs */], [".mts" /* Extension.Mts */, ".d.mts" /* Extension.Dmts */, ".mjs" /* Extension.Mjs */]]; var allSupportedExtensionsWithJson = __spreadArray(__spreadArray([], allSupportedExtensions, true), [[".json" /* Extension.Json */]], false); ts.supportedDeclarationExtensions = [".d.ts" /* Extension.Dts */, ".d.cts" /* Extension.Dcts */, ".d.mts" /* Extension.Dmts */]; function getSupportedExtensions(options, extraFileExtensions) { var needJsExtensions = options && getAllowJSCompilerOption(options); if (!extraFileExtensions || extraFileExtensions.length === 0) { return needJsExtensions ? allSupportedExtensions : ts.supportedTSExtensions; } var builtins = needJsExtensions ? allSupportedExtensions : ts.supportedTSExtensions; var flatBuiltins = ts.flatten(builtins); var extensions = __spreadArray(__spreadArray([], builtins, true), ts.mapDefined(extraFileExtensions, function (x) { return x.scriptKind === 7 /* ScriptKind.Deferred */ || needJsExtensions && isJSLike(x.scriptKind) && flatBuiltins.indexOf(x.extension) === -1 ? [x.extension] : undefined; }), true); return extensions; } ts.getSupportedExtensions = getSupportedExtensions; function getSupportedExtensionsWithJsonIfResolveJsonModule(options, supportedExtensions) { if (!options || !options.resolveJsonModule) return supportedExtensions; if (supportedExtensions === allSupportedExtensions) return allSupportedExtensionsWithJson; if (supportedExtensions === ts.supportedTSExtensions) return supportedTSExtensionsWithJson; return __spreadArray(__spreadArray([], supportedExtensions, true), [[".json" /* Extension.Json */]], false); } ts.getSupportedExtensionsWithJsonIfResolveJsonModule = getSupportedExtensionsWithJsonIfResolveJsonModule; function isJSLike(scriptKind) { return scriptKind === 1 /* ScriptKind.JS */ || scriptKind === 2 /* ScriptKind.JSX */; } function hasJSFileExtension(fileName) { return ts.some(ts.supportedJSExtensionsFlat, function (extension) { return ts.fileExtensionIs(fileName, extension); }); } ts.hasJSFileExtension = hasJSFileExtension; function hasTSFileExtension(fileName) { return ts.some(ts.supportedTSExtensionsFlat, function (extension) { return ts.fileExtensionIs(fileName, extension); }); } ts.hasTSFileExtension = hasTSFileExtension; function isSupportedSourceFileName(fileName, compilerOptions, extraFileExtensions) { if (!fileName) return false; var supportedExtensions = getSupportedExtensions(compilerOptions, extraFileExtensions); for (var _i = 0, _a = ts.flatten(getSupportedExtensionsWithJsonIfResolveJsonModule(compilerOptions, supportedExtensions)); _i < _a.length; _i++) { var extension = _a[_i]; if (ts.fileExtensionIs(fileName, extension)) { return true; } } return false; } ts.isSupportedSourceFileName = isSupportedSourceFileName; function numberOfDirectorySeparators(str) { var match = str.match(/\//g); return match ? match.length : 0; } function compareNumberOfDirectorySeparators(path1, path2) { return ts.compareValues(numberOfDirectorySeparators(path1), numberOfDirectorySeparators(path2)); } ts.compareNumberOfDirectorySeparators = compareNumberOfDirectorySeparators; var extensionsToRemove = [".d.ts" /* Extension.Dts */, ".d.mts" /* Extension.Dmts */, ".d.cts" /* Extension.Dcts */, ".mjs" /* Extension.Mjs */, ".mts" /* Extension.Mts */, ".cjs" /* Extension.Cjs */, ".cts" /* Extension.Cts */, ".ts" /* Extension.Ts */, ".js" /* Extension.Js */, ".tsx" /* Extension.Tsx */, ".jsx" /* Extension.Jsx */, ".json" /* Extension.Json */]; function removeFileExtension(path) { for (var _i = 0, extensionsToRemove_1 = extensionsToRemove; _i < extensionsToRemove_1.length; _i++) { var ext = extensionsToRemove_1[_i]; var extensionless = tryRemoveExtension(path, ext); if (extensionless !== undefined) { return extensionless; } } return path; } ts.removeFileExtension = removeFileExtension; function tryRemoveExtension(path, extension) { return ts.fileExtensionIs(path, extension) ? removeExtension(path, extension) : undefined; } ts.tryRemoveExtension = tryRemoveExtension; function removeExtension(path, extension) { return path.substring(0, path.length - extension.length); } ts.removeExtension = removeExtension; function changeExtension(path, newExtension) { return ts.changeAnyExtension(path, newExtension, extensionsToRemove, /*ignoreCase*/ false); } ts.changeExtension = changeExtension; /** * Returns the input if there are no stars, a pattern if there is exactly one, * and undefined if there are more. */ function tryParsePattern(pattern) { var indexOfStar = pattern.indexOf("*"); if (indexOfStar === -1) { return pattern; } return pattern.indexOf("*", indexOfStar + 1) !== -1 ? undefined : { prefix: pattern.substr(0, indexOfStar), suffix: pattern.substr(indexOfStar + 1) }; } ts.tryParsePattern = tryParsePattern; function tryParsePatterns(paths) { return ts.mapDefined(ts.getOwnKeys(paths), function (path) { return tryParsePattern(path); }); } ts.tryParsePatterns = tryParsePatterns; function positionIsSynthesized(pos) { // This is a fast way of testing the following conditions: // pos === undefined || pos === null || isNaN(pos) || pos < 0; return !(pos >= 0); } ts.positionIsSynthesized = positionIsSynthesized; /** True if an extension is one of the supported TypeScript extensions. */ function extensionIsTS(ext) { return ext === ".ts" /* Extension.Ts */ || ext === ".tsx" /* Extension.Tsx */ || ext === ".d.ts" /* Extension.Dts */ || ext === ".cts" /* Extension.Cts */ || ext === ".mts" /* Extension.Mts */ || ext === ".d.mts" /* Extension.Dmts */ || ext === ".d.cts" /* Extension.Dcts */; } ts.extensionIsTS = extensionIsTS; function resolutionExtensionIsTSOrJson(ext) { return extensionIsTS(ext) || ext === ".json" /* Extension.Json */; } ts.resolutionExtensionIsTSOrJson = resolutionExtensionIsTSOrJson; /** * Gets the extension from a path. * Path must have a valid extension. */ function extensionFromPath(path) { var ext = tryGetExtensionFromPath(path); return ext !== undefined ? ext : ts.Debug.fail("File ".concat(path, " has unknown extension.")); } ts.extensionFromPath = extensionFromPath; function isAnySupportedFileExtension(path) { return tryGetExtensionFromPath(path) !== undefined; } ts.isAnySupportedFileExtension = isAnySupportedFileExtension; function tryGetExtensionFromPath(path) { return ts.find(extensionsToRemove, function (e) { return ts.fileExtensionIs(path, e); }); } ts.tryGetExtensionFromPath = tryGetExtensionFromPath; function isCheckJsEnabledForFile(sourceFile, compilerOptions) { return sourceFile.checkJsDirective ? sourceFile.checkJsDirective.enabled : compilerOptions.checkJs; } ts.isCheckJsEnabledForFile = isCheckJsEnabledForFile; ts.emptyFileSystemEntries = { files: ts.emptyArray, directories: ts.emptyArray }; /** * patternOrStrings contains both patterns (containing "*") and regular strings. * Return an exact match if possible, or a pattern match, or undefined. * (These are verified by verifyCompilerOptions to have 0 or 1 "*" characters.) */ function matchPatternOrExact(patternOrStrings, candidate) { var patterns = []; for (var _i = 0, patternOrStrings_1 = patternOrStrings; _i < patternOrStrings_1.length; _i++) { var patternOrString = patternOrStrings_1[_i]; if (patternOrString === candidate) { return candidate; } if (!ts.isString(patternOrString)) { patterns.push(patternOrString); } } return ts.findBestPatternMatch(patterns, function (_) { return _; }, candidate); } ts.matchPatternOrExact = matchPatternOrExact; function sliceAfter(arr, value) { var index = arr.indexOf(value); ts.Debug.assert(index !== -1); return arr.slice(index); } ts.sliceAfter = sliceAfter; function addRelatedInfo(diagnostic) { var _a; var relatedInformation = []; for (var _i = 1; _i < arguments.length; _i++) { relatedInformation[_i - 1] = arguments[_i]; } if (!relatedInformation.length) { return diagnostic; } if (!diagnostic.relatedInformation) { diagnostic.relatedInformation = []; } ts.Debug.assert(diagnostic.relatedInformation !== ts.emptyArray, "Diagnostic had empty array singleton for related info, but is still being constructed!"); (_a = diagnostic.relatedInformation).push.apply(_a, relatedInformation); return diagnostic; } ts.addRelatedInfo = addRelatedInfo; function minAndMax(arr, getValue) { ts.Debug.assert(arr.length !== 0); var min = getValue(arr[0]); var max = min; for (var i = 1; i < arr.length; i++) { var value = getValue(arr[i]); if (value < min) { min = value; } else if (value > max) { max = value; } } return { min: min, max: max }; } ts.minAndMax = minAndMax; function rangeOfNode(node) { return { pos: getTokenPosOfNode(node), end: node.end }; } ts.rangeOfNode = rangeOfNode; function rangeOfTypeParameters(sourceFile, typeParameters) { // Include the `<>` var pos = typeParameters.pos - 1; var end = ts.skipTrivia(sourceFile.text, typeParameters.end) + 1; return { pos: pos, end: end }; } ts.rangeOfTypeParameters = rangeOfTypeParameters; function skipTypeChecking(sourceFile, options, host) { // If skipLibCheck is enabled, skip reporting errors if file is a declaration file. // If skipDefaultLibCheck is enabled, skip reporting errors if file contains a // '/// ' directive. return (options.skipLibCheck && sourceFile.isDeclarationFile || options.skipDefaultLibCheck && sourceFile.hasNoDefaultLib) || host.isSourceOfProjectReferenceRedirect(sourceFile.fileName); } ts.skipTypeChecking = skipTypeChecking; function isJsonEqual(a, b) { // eslint-disable-next-line no-null/no-null return a === b || typeof a === "object" && a !== null && typeof b === "object" && b !== null && ts.equalOwnProperties(a, b, isJsonEqual); } ts.isJsonEqual = isJsonEqual; /** * Converts a bigint literal string, e.g. `0x1234n`, * to its decimal string representation, e.g. `4660`. */ function parsePseudoBigInt(stringValue) { var log2Base; switch (stringValue.charCodeAt(1)) { // "x" in "0x123" case 98 /* CharacterCodes.b */: case 66 /* CharacterCodes.B */: // 0b or 0B log2Base = 1; break; case 111 /* CharacterCodes.o */: case 79 /* CharacterCodes.O */: // 0o or 0O log2Base = 3; break; case 120 /* CharacterCodes.x */: case 88 /* CharacterCodes.X */: // 0x or 0X log2Base = 4; break; default: // already in decimal; omit trailing "n" var nIndex = stringValue.length - 1; // Skip leading 0s var nonZeroStart = 0; while (stringValue.charCodeAt(nonZeroStart) === 48 /* CharacterCodes._0 */) { nonZeroStart++; } return stringValue.slice(nonZeroStart, nIndex) || "0"; } // Omit leading "0b", "0o", or "0x", and trailing "n" var startIndex = 2, endIndex = stringValue.length - 1; var bitsNeeded = (endIndex - startIndex) * log2Base; // Stores the value specified by the string as a LE array of 16-bit integers // using Uint16 instead of Uint32 so combining steps can use bitwise operators var segments = new Uint16Array((bitsNeeded >>> 4) + (bitsNeeded & 15 ? 1 : 0)); // Add the digits, one at a time for (var i = endIndex - 1, bitOffset = 0; i >= startIndex; i--, bitOffset += log2Base) { var segment = bitOffset >>> 4; var digitChar = stringValue.charCodeAt(i); // Find character range: 0-9 < A-F < a-f var digit = digitChar <= 57 /* CharacterCodes._9 */ ? digitChar - 48 /* CharacterCodes._0 */ : 10 + digitChar - (digitChar <= 70 /* CharacterCodes.F */ ? 65 /* CharacterCodes.A */ : 97 /* CharacterCodes.a */); var shiftedDigit = digit << (bitOffset & 15); segments[segment] |= shiftedDigit; var residual = shiftedDigit >>> 16; if (residual) segments[segment + 1] |= residual; // overflows segment } // Repeatedly divide segments by 10 and add remainder to base10Value var base10Value = ""; var firstNonzeroSegment = segments.length - 1; var segmentsRemaining = true; while (segmentsRemaining) { var mod10 = 0; segmentsRemaining = false; for (var segment = firstNonzeroSegment; segment >= 0; segment--) { var newSegment = mod10 << 16 | segments[segment]; var segmentValue = (newSegment / 10) | 0; segments[segment] = segmentValue; mod10 = newSegment - segmentValue * 10; if (segmentValue && !segmentsRemaining) { firstNonzeroSegment = segment; segmentsRemaining = true; } } base10Value = mod10 + base10Value; } return base10Value; } ts.parsePseudoBigInt = parsePseudoBigInt; function pseudoBigIntToString(_a) { var negative = _a.negative, base10Value = _a.base10Value; return (negative && base10Value !== "0" ? "-" : "") + base10Value; } ts.pseudoBigIntToString = pseudoBigIntToString; function isValidTypeOnlyAliasUseSite(useSite) { return !!(useSite.flags & 16777216 /* NodeFlags.Ambient */) || isPartOfTypeQuery(useSite) || isIdentifierInNonEmittingHeritageClause(useSite) || isPartOfPossiblyValidTypeOrAbstractComputedPropertyName(useSite) || !(isExpressionNode(useSite) || isShorthandPropertyNameUseSite(useSite)); } ts.isValidTypeOnlyAliasUseSite = isValidTypeOnlyAliasUseSite; function isShorthandPropertyNameUseSite(useSite) { return ts.isIdentifier(useSite) && ts.isShorthandPropertyAssignment(useSite.parent) && useSite.parent.name === useSite; } function isPartOfPossiblyValidTypeOrAbstractComputedPropertyName(node) { while (node.kind === 79 /* SyntaxKind.Identifier */ || node.kind === 206 /* SyntaxKind.PropertyAccessExpression */) { node = node.parent; } if (node.kind !== 162 /* SyntaxKind.ComputedPropertyName */) { return false; } if (hasSyntacticModifier(node.parent, 128 /* ModifierFlags.Abstract */)) { return true; } var containerKind = node.parent.parent.kind; return containerKind === 258 /* SyntaxKind.InterfaceDeclaration */ || containerKind === 182 /* SyntaxKind.TypeLiteral */; } /** Returns true for an identifier in 1) an `implements` clause, and 2) an `extends` clause of an interface. */ function isIdentifierInNonEmittingHeritageClause(node) { if (node.kind !== 79 /* SyntaxKind.Identifier */) return false; var heritageClause = ts.findAncestor(node.parent, function (parent) { switch (parent.kind) { case 291 /* SyntaxKind.HeritageClause */: return true; case 206 /* SyntaxKind.PropertyAccessExpression */: case 228 /* SyntaxKind.ExpressionWithTypeArguments */: return false; default: return "quit"; } }); return (heritageClause === null || heritageClause === void 0 ? void 0 : heritageClause.token) === 117 /* SyntaxKind.ImplementsKeyword */ || (heritageClause === null || heritageClause === void 0 ? void 0 : heritageClause.parent.kind) === 258 /* SyntaxKind.InterfaceDeclaration */; } function isIdentifierTypeReference(node) { return ts.isTypeReferenceNode(node) && ts.isIdentifier(node.typeName); } ts.isIdentifierTypeReference = isIdentifierTypeReference; function arrayIsHomogeneous(array, comparer) { if (comparer === void 0) { comparer = ts.equateValues; } if (array.length < 2) return true; var first = array[0]; for (var i = 1, length_1 = array.length; i < length_1; i++) { var target = array[i]; if (!comparer(first, target)) return false; } return true; } ts.arrayIsHomogeneous = arrayIsHomogeneous; /** * Bypasses immutability and directly sets the `pos` property of a `TextRange` or `Node`. */ /* @internal */ function setTextRangePos(range, pos) { range.pos = pos; return range; } ts.setTextRangePos = setTextRangePos; /** * Bypasses immutability and directly sets the `end` property of a `TextRange` or `Node`. */ /* @internal */ function setTextRangeEnd(range, end) { range.end = end; return range; } ts.setTextRangeEnd = setTextRangeEnd; /** * Bypasses immutability and directly sets the `pos` and `end` properties of a `TextRange` or `Node`. */ /* @internal */ function setTextRangePosEnd(range, pos, end) { return setTextRangeEnd(setTextRangePos(range, pos), end); } ts.setTextRangePosEnd = setTextRangePosEnd; /** * Bypasses immutability and directly sets the `pos` and `end` properties of a `TextRange` or `Node` from the * provided position and width. */ /* @internal */ function setTextRangePosWidth(range, pos, width) { return setTextRangePosEnd(range, pos, pos + width); } ts.setTextRangePosWidth = setTextRangePosWidth; function setNodeFlags(node, newFlags) { if (node) { node.flags = newFlags; } return node; } ts.setNodeFlags = setNodeFlags; function setParent(child, parent) { if (child && parent) { child.parent = parent; } return child; } ts.setParent = setParent; function setEachParent(children, parent) { if (children) { for (var _i = 0, children_1 = children; _i < children_1.length; _i++) { var child = children_1[_i]; setParent(child, parent); } } return children; } ts.setEachParent = setEachParent; function setParentRecursive(rootNode, incremental) { if (!rootNode) return rootNode; ts.forEachChildRecursively(rootNode, ts.isJSDocNode(rootNode) ? bindParentToChildIgnoringJSDoc : bindParentToChild); return rootNode; function bindParentToChildIgnoringJSDoc(child, parent) { if (incremental && child.parent === parent) { return "skip"; } setParent(child, parent); } function bindJSDoc(child) { if (ts.hasJSDocNodes(child)) { for (var _i = 0, _a = child.jsDoc; _i < _a.length; _i++) { var doc = _a[_i]; bindParentToChildIgnoringJSDoc(doc, child); ts.forEachChildRecursively(doc, bindParentToChildIgnoringJSDoc); } } } function bindParentToChild(child, parent) { return bindParentToChildIgnoringJSDoc(child, parent) || bindJSDoc(child); } } ts.setParentRecursive = setParentRecursive; function isPackedElement(node) { return !ts.isOmittedExpression(node); } /** * Determines whether the provided node is an ArrayLiteralExpression that contains no missing elements. */ function isPackedArrayLiteral(node) { return ts.isArrayLiteralExpression(node) && ts.every(node.elements, isPackedElement); } ts.isPackedArrayLiteral = isPackedArrayLiteral; /** * Indicates whether the result of an `Expression` will be unused. * * NOTE: This requires a node with a valid `parent` pointer. */ function expressionResultIsUnused(node) { ts.Debug.assertIsDefined(node.parent); while (true) { var parent = node.parent; // walk up parenthesized expressions, but keep a pointer to the top-most parenthesized expression if (ts.isParenthesizedExpression(parent)) { node = parent; continue; } // result is unused in an expression statement, `void` expression, or the initializer or incrementer of a `for` loop if (ts.isExpressionStatement(parent) || ts.isVoidExpression(parent) || ts.isForStatement(parent) && (parent.initializer === node || parent.incrementor === node)) { return true; } if (ts.isCommaListExpression(parent)) { // left side of comma is always unused if (node !== ts.last(parent.elements)) return true; // right side of comma is unused if parent is unused node = parent; continue; } if (ts.isBinaryExpression(parent) && parent.operatorToken.kind === 27 /* SyntaxKind.CommaToken */) { // left side of comma is always unused if (node === parent.left) return true; // right side of comma is unused if parent is unused node = parent; continue; } return false; } } ts.expressionResultIsUnused = expressionResultIsUnused; function containsIgnoredPath(path) { return ts.some(ts.ignoredPaths, function (p) { return ts.stringContains(path, p); }); } ts.containsIgnoredPath = containsIgnoredPath; function getContainingNodeArray(node) { if (!node.parent) return undefined; switch (node.kind) { case 163 /* SyntaxKind.TypeParameter */: var parent_1 = node.parent; return parent_1.kind === 190 /* SyntaxKind.InferType */ ? undefined : parent_1.typeParameters; case 164 /* SyntaxKind.Parameter */: return node.parent.parameters; case 199 /* SyntaxKind.TemplateLiteralTypeSpan */: return node.parent.templateSpans; case 233 /* SyntaxKind.TemplateSpan */: return node.parent.templateSpans; case 165 /* SyntaxKind.Decorator */: return node.parent.decorators; case 291 /* SyntaxKind.HeritageClause */: return node.parent.heritageClauses; } var parent = node.parent; if (ts.isJSDocTag(node)) { return ts.isJSDocTypeLiteral(node.parent) ? undefined : node.parent.tags; } switch (parent.kind) { case 182 /* SyntaxKind.TypeLiteral */: case 258 /* SyntaxKind.InterfaceDeclaration */: return ts.isTypeElement(node) ? parent.members : undefined; case 187 /* SyntaxKind.UnionType */: case 188 /* SyntaxKind.IntersectionType */: return parent.types; case 184 /* SyntaxKind.TupleType */: case 204 /* SyntaxKind.ArrayLiteralExpression */: case 351 /* SyntaxKind.CommaListExpression */: case 269 /* SyntaxKind.NamedImports */: case 273 /* SyntaxKind.NamedExports */: return parent.elements; case 205 /* SyntaxKind.ObjectLiteralExpression */: case 286 /* SyntaxKind.JsxAttributes */: return parent.properties; case 208 /* SyntaxKind.CallExpression */: case 209 /* SyntaxKind.NewExpression */: return ts.isTypeNode(node) ? parent.typeArguments : parent.expression === node ? undefined : parent.arguments; case 278 /* SyntaxKind.JsxElement */: case 282 /* SyntaxKind.JsxFragment */: return ts.isJsxChild(node) ? parent.children : undefined; case 280 /* SyntaxKind.JsxOpeningElement */: case 279 /* SyntaxKind.JsxSelfClosingElement */: return ts.isTypeNode(node) ? parent.typeArguments : undefined; case 235 /* SyntaxKind.Block */: case 289 /* SyntaxKind.CaseClause */: case 290 /* SyntaxKind.DefaultClause */: case 262 /* SyntaxKind.ModuleBlock */: return parent.statements; case 263 /* SyntaxKind.CaseBlock */: return parent.clauses; case 257 /* SyntaxKind.ClassDeclaration */: case 226 /* SyntaxKind.ClassExpression */: return ts.isClassElement(node) ? parent.members : undefined; case 260 /* SyntaxKind.EnumDeclaration */: return ts.isEnumMember(node) ? parent.members : undefined; case 305 /* SyntaxKind.SourceFile */: return parent.statements; } } ts.getContainingNodeArray = getContainingNodeArray; function hasContextSensitiveParameters(node) { // Functions with type parameters are not context sensitive. if (!node.typeParameters) { // Functions with any parameters that lack type annotations are context sensitive. if (ts.some(node.parameters, function (p) { return !getEffectiveTypeAnnotationNode(p); })) { return true; } if (node.kind !== 214 /* SyntaxKind.ArrowFunction */) { // If the first parameter is not an explicit 'this' parameter, then the function has // an implicit 'this' parameter which is subject to contextual typing. var parameter = ts.firstOrUndefined(node.parameters); if (!(parameter && parameterIsThisKeyword(parameter))) { return true; } } } return false; } ts.hasContextSensitiveParameters = hasContextSensitiveParameters; /* @internal */ function isInfinityOrNaNString(name) { return name === "Infinity" || name === "-Infinity" || name === "NaN"; } ts.isInfinityOrNaNString = isInfinityOrNaNString; function isCatchClauseVariableDeclaration(node) { return node.kind === 254 /* SyntaxKind.VariableDeclaration */ && node.parent.kind === 292 /* SyntaxKind.CatchClause */; } ts.isCatchClauseVariableDeclaration = isCatchClauseVariableDeclaration; function isParameterOrCatchClauseVariable(symbol) { var declaration = symbol.valueDeclaration && getRootDeclaration(symbol.valueDeclaration); return !!declaration && (ts.isParameter(declaration) || isCatchClauseVariableDeclaration(declaration)); } ts.isParameterOrCatchClauseVariable = isParameterOrCatchClauseVariable; function isFunctionExpressionOrArrowFunction(node) { return node.kind === 213 /* SyntaxKind.FunctionExpression */ || node.kind === 214 /* SyntaxKind.ArrowFunction */; } ts.isFunctionExpressionOrArrowFunction = isFunctionExpressionOrArrowFunction; function escapeSnippetText(text) { return text.replace(/\$/gm, function () { return "\\$"; }); } ts.escapeSnippetText = escapeSnippetText; function isNumericLiteralName(name) { // The intent of numeric names is that // - they are names with text in a numeric form, and that // - setting properties/indexing with them is always equivalent to doing so with the numeric literal 'numLit', // acquired by applying the abstract 'ToNumber' operation on the name's text. // // The subtlety is in the latter portion, as we cannot reliably say that anything that looks like a numeric literal is a numeric name. // In fact, it is the case that the text of the name must be equal to 'ToString(numLit)' for this to hold. // // Consider the property name '"0xF00D"'. When one indexes with '0xF00D', they are actually indexing with the value of 'ToString(0xF00D)' // according to the ECMAScript specification, so it is actually as if the user indexed with the string '"61453"'. // Thus, the text of all numeric literals equivalent to '61543' such as '0xF00D', '0xf00D', '0170015', etc. are not valid numeric names // because their 'ToString' representation is not equal to their original text. // This is motivated by ECMA-262 sections 9.3.1, 9.8.1, 11.1.5, and 11.2.1. // // Here, we test whether 'ToString(ToNumber(name))' is exactly equal to 'name'. // The '+' prefix operator is equivalent here to applying the abstract ToNumber operation. // Applying the 'toString()' method on a number gives us the abstract ToString operation on a number. // // Note that this accepts the values 'Infinity', '-Infinity', and 'NaN', and that this is intentional. // This is desired behavior, because when indexing with them as numeric entities, you are indexing // with the strings '"Infinity"', '"-Infinity"', and '"NaN"' respectively. return (+name).toString() === name; } ts.isNumericLiteralName = isNumericLiteralName; function createPropertyNameNodeForIdentifierOrLiteral(name, target, singleQuote, stringNamed) { return ts.isIdentifierText(name, target) ? ts.factory.createIdentifier(name) : !stringNamed && isNumericLiteralName(name) && +name >= 0 ? ts.factory.createNumericLiteral(+name) : ts.factory.createStringLiteral(name, !!singleQuote); } ts.createPropertyNameNodeForIdentifierOrLiteral = createPropertyNameNodeForIdentifierOrLiteral; function isThisTypeParameter(type) { return !!(type.flags & 262144 /* TypeFlags.TypeParameter */ && type.isThisType); } ts.isThisTypeParameter = isThisTypeParameter; function getNodeModulePathParts(fullPath) { // If fullPath can't be valid module file within node_modules, returns undefined. // Example of expected pattern: /base/path/node_modules/[@scope/otherpackage/@otherscope/node_modules/]package/[subdirectory/]file.js // Returns indices: ^ ^ ^ ^ var topLevelNodeModulesIndex = 0; var topLevelPackageNameIndex = 0; var packageRootIndex = 0; var fileNameIndex = 0; var States; (function (States) { States[States["BeforeNodeModules"] = 0] = "BeforeNodeModules"; States[States["NodeModules"] = 1] = "NodeModules"; States[States["Scope"] = 2] = "Scope"; States[States["PackageContent"] = 3] = "PackageContent"; })(States || (States = {})); var partStart = 0; var partEnd = 0; var state = 0 /* States.BeforeNodeModules */; while (partEnd >= 0) { partStart = partEnd; partEnd = fullPath.indexOf("/", partStart + 1); switch (state) { case 0 /* States.BeforeNodeModules */: if (fullPath.indexOf(ts.nodeModulesPathPart, partStart) === partStart) { topLevelNodeModulesIndex = partStart; topLevelPackageNameIndex = partEnd; state = 1 /* States.NodeModules */; } break; case 1 /* States.NodeModules */: case 2 /* States.Scope */: if (state === 1 /* States.NodeModules */ && fullPath.charAt(partStart + 1) === "@") { state = 2 /* States.Scope */; } else { packageRootIndex = partEnd; state = 3 /* States.PackageContent */; } break; case 3 /* States.PackageContent */: if (fullPath.indexOf(ts.nodeModulesPathPart, partStart) === partStart) { state = 1 /* States.NodeModules */; } else { state = 3 /* States.PackageContent */; } break; } } fileNameIndex = partStart; return state > 1 /* States.NodeModules */ ? { topLevelNodeModulesIndex: topLevelNodeModulesIndex, topLevelPackageNameIndex: topLevelPackageNameIndex, packageRootIndex: packageRootIndex, fileNameIndex: fileNameIndex } : undefined; } ts.getNodeModulePathParts = getNodeModulePathParts; function getParameterTypeNode(parameter) { var _a; return parameter.kind === 340 /* SyntaxKind.JSDocParameterTag */ ? (_a = parameter.typeExpression) === null || _a === void 0 ? void 0 : _a.type : parameter.type; } ts.getParameterTypeNode = getParameterTypeNode; })(ts || (ts = {})); /* @internal */ var ts; (function (ts) { /** * Creates a `BaseNodeFactory` which can be used to create `Node` instances from the constructors provided by the object allocator. */ function createBaseNodeFactory() { // tslint:disable variable-name var NodeConstructor; var TokenConstructor; var IdentifierConstructor; var PrivateIdentifierConstructor; var SourceFileConstructor; // tslint:enable variable-name return { createBaseSourceFileNode: createBaseSourceFileNode, createBaseIdentifierNode: createBaseIdentifierNode, createBasePrivateIdentifierNode: createBasePrivateIdentifierNode, createBaseTokenNode: createBaseTokenNode, createBaseNode: createBaseNode }; function createBaseSourceFileNode(kind) { return new (SourceFileConstructor || (SourceFileConstructor = ts.objectAllocator.getSourceFileConstructor()))(kind, /*pos*/ -1, /*end*/ -1); } function createBaseIdentifierNode(kind) { return new (IdentifierConstructor || (IdentifierConstructor = ts.objectAllocator.getIdentifierConstructor()))(kind, /*pos*/ -1, /*end*/ -1); } function createBasePrivateIdentifierNode(kind) { return new (PrivateIdentifierConstructor || (PrivateIdentifierConstructor = ts.objectAllocator.getPrivateIdentifierConstructor()))(kind, /*pos*/ -1, /*end*/ -1); } function createBaseTokenNode(kind) { return new (TokenConstructor || (TokenConstructor = ts.objectAllocator.getTokenConstructor()))(kind, /*pos*/ -1, /*end*/ -1); } function createBaseNode(kind) { return new (NodeConstructor || (NodeConstructor = ts.objectAllocator.getNodeConstructor()))(kind, /*pos*/ -1, /*end*/ -1); } } ts.createBaseNodeFactory = createBaseNodeFactory; })(ts || (ts = {})); /* @internal */ var ts; (function (ts) { function createParenthesizerRules(factory) { var binaryLeftOperandParenthesizerCache; var binaryRightOperandParenthesizerCache; return { getParenthesizeLeftSideOfBinaryForOperator: getParenthesizeLeftSideOfBinaryForOperator, getParenthesizeRightSideOfBinaryForOperator: getParenthesizeRightSideOfBinaryForOperator, parenthesizeLeftSideOfBinary: parenthesizeLeftSideOfBinary, parenthesizeRightSideOfBinary: parenthesizeRightSideOfBinary, parenthesizeExpressionOfComputedPropertyName: parenthesizeExpressionOfComputedPropertyName, parenthesizeConditionOfConditionalExpression: parenthesizeConditionOfConditionalExpression, parenthesizeBranchOfConditionalExpression: parenthesizeBranchOfConditionalExpression, parenthesizeExpressionOfExportDefault: parenthesizeExpressionOfExportDefault, parenthesizeExpressionOfNew: parenthesizeExpressionOfNew, parenthesizeLeftSideOfAccess: parenthesizeLeftSideOfAccess, parenthesizeOperandOfPostfixUnary: parenthesizeOperandOfPostfixUnary, parenthesizeOperandOfPrefixUnary: parenthesizeOperandOfPrefixUnary, parenthesizeExpressionsOfCommaDelimitedList: parenthesizeExpressionsOfCommaDelimitedList, parenthesizeExpressionForDisallowedComma: parenthesizeExpressionForDisallowedComma, parenthesizeExpressionOfExpressionStatement: parenthesizeExpressionOfExpressionStatement, parenthesizeConciseBodyOfArrowFunction: parenthesizeConciseBodyOfArrowFunction, parenthesizeCheckTypeOfConditionalType: parenthesizeCheckTypeOfConditionalType, parenthesizeExtendsTypeOfConditionalType: parenthesizeExtendsTypeOfConditionalType, parenthesizeConstituentTypesOfUnionType: parenthesizeConstituentTypesOfUnionType, parenthesizeConstituentTypeOfUnionType: parenthesizeConstituentTypeOfUnionType, parenthesizeConstituentTypesOfIntersectionType: parenthesizeConstituentTypesOfIntersectionType, parenthesizeConstituentTypeOfIntersectionType: parenthesizeConstituentTypeOfIntersectionType, parenthesizeOperandOfTypeOperator: parenthesizeOperandOfTypeOperator, parenthesizeOperandOfReadonlyTypeOperator: parenthesizeOperandOfReadonlyTypeOperator, parenthesizeNonArrayTypeOfPostfixType: parenthesizeNonArrayTypeOfPostfixType, parenthesizeElementTypesOfTupleType: parenthesizeElementTypesOfTupleType, parenthesizeElementTypeOfTupleType: parenthesizeElementTypeOfTupleType, parenthesizeTypeOfOptionalType: parenthesizeTypeOfOptionalType, parenthesizeTypeArguments: parenthesizeTypeArguments, parenthesizeLeadingTypeArgument: parenthesizeLeadingTypeArgument, }; function getParenthesizeLeftSideOfBinaryForOperator(operatorKind) { binaryLeftOperandParenthesizerCache || (binaryLeftOperandParenthesizerCache = new ts.Map()); var parenthesizerRule = binaryLeftOperandParenthesizerCache.get(operatorKind); if (!parenthesizerRule) { parenthesizerRule = function (node) { return parenthesizeLeftSideOfBinary(operatorKind, node); }; binaryLeftOperandParenthesizerCache.set(operatorKind, parenthesizerRule); } return parenthesizerRule; } function getParenthesizeRightSideOfBinaryForOperator(operatorKind) { binaryRightOperandParenthesizerCache || (binaryRightOperandParenthesizerCache = new ts.Map()); var parenthesizerRule = binaryRightOperandParenthesizerCache.get(operatorKind); if (!parenthesizerRule) { parenthesizerRule = function (node) { return parenthesizeRightSideOfBinary(operatorKind, /*leftSide*/ undefined, node); }; binaryRightOperandParenthesizerCache.set(operatorKind, parenthesizerRule); } return parenthesizerRule; } /** * Determines whether the operand to a BinaryExpression needs to be parenthesized. * * @param binaryOperator The operator for the BinaryExpression. * @param operand The operand for the BinaryExpression. * @param isLeftSideOfBinary A value indicating whether the operand is the left side of the * BinaryExpression. */ function binaryOperandNeedsParentheses(binaryOperator, operand, isLeftSideOfBinary, leftOperand) { // If the operand has lower precedence, then it needs to be parenthesized to preserve the // intent of the expression. For example, if the operand is `a + b` and the operator is // `*`, then we need to parenthesize the operand to preserve the intended order of // operations: `(a + b) * x`. // // If the operand has higher precedence, then it does not need to be parenthesized. For // example, if the operand is `a * b` and the operator is `+`, then we do not need to // parenthesize to preserve the intended order of operations: `a * b + x`. // // If the operand has the same precedence, then we need to check the associativity of // the operator based on whether this is the left or right operand of the expression. // // For example, if `a / d` is on the right of operator `*`, we need to parenthesize // to preserve the intended order of operations: `x * (a / d)` // // If `a ** d` is on the left of operator `**`, we need to parenthesize to preserve // the intended order of operations: `(a ** b) ** c` var binaryOperatorPrecedence = ts.getOperatorPrecedence(221 /* SyntaxKind.BinaryExpression */, binaryOperator); var binaryOperatorAssociativity = ts.getOperatorAssociativity(221 /* SyntaxKind.BinaryExpression */, binaryOperator); var emittedOperand = ts.skipPartiallyEmittedExpressions(operand); if (!isLeftSideOfBinary && operand.kind === 214 /* SyntaxKind.ArrowFunction */ && binaryOperatorPrecedence > 3 /* OperatorPrecedence.Assignment */) { // We need to parenthesize arrow functions on the right side to avoid it being // parsed as parenthesized expression: `a && (() => {})` return true; } var operandPrecedence = ts.getExpressionPrecedence(emittedOperand); switch (ts.compareValues(operandPrecedence, binaryOperatorPrecedence)) { case -1 /* Comparison.LessThan */: // If the operand is the right side of a right-associative binary operation // and is a yield expression, then we do not need parentheses. if (!isLeftSideOfBinary && binaryOperatorAssociativity === 1 /* Associativity.Right */ && operand.kind === 224 /* SyntaxKind.YieldExpression */) { return false; } return true; case 1 /* Comparison.GreaterThan */: return false; case 0 /* Comparison.EqualTo */: if (isLeftSideOfBinary) { // No need to parenthesize the left operand when the binary operator is // left associative: // (a*b)/x -> a*b/x // (a**b)/x -> a**b/x // // Parentheses are needed for the left operand when the binary operator is // right associative: // (a/b)**x -> (a/b)**x // (a**b)**x -> (a**b)**x return binaryOperatorAssociativity === 1 /* Associativity.Right */; } else { if (ts.isBinaryExpression(emittedOperand) && emittedOperand.operatorToken.kind === binaryOperator) { // No need to parenthesize the right operand when the binary operator and // operand are the same and one of the following: // x*(a*b) => x*a*b // x|(a|b) => x|a|b // x&(a&b) => x&a&b // x^(a^b) => x^a^b if (operatorHasAssociativeProperty(binaryOperator)) { return false; } // No need to parenthesize the right operand when the binary operator // is plus (+) if both the left and right operands consist solely of either // literals of the same kind or binary plus (+) expressions for literals of // the same kind (recursively). // "a"+(1+2) => "a"+(1+2) // "a"+("b"+"c") => "a"+"b"+"c" if (binaryOperator === 39 /* SyntaxKind.PlusToken */) { var leftKind = leftOperand ? getLiteralKindOfBinaryPlusOperand(leftOperand) : 0 /* SyntaxKind.Unknown */; if (ts.isLiteralKind(leftKind) && leftKind === getLiteralKindOfBinaryPlusOperand(emittedOperand)) { return false; } } } // No need to parenthesize the right operand when the operand is right // associative: // x/(a**b) -> x/a**b // x**(a**b) -> x**a**b // // Parentheses are needed for the right operand when the operand is left // associative: // x/(a*b) -> x/(a*b) // x**(a/b) -> x**(a/b) var operandAssociativity = ts.getExpressionAssociativity(emittedOperand); return operandAssociativity === 0 /* Associativity.Left */; } } } /** * Determines whether a binary operator is mathematically associative. * * @param binaryOperator The binary operator. */ function operatorHasAssociativeProperty(binaryOperator) { // The following operators are associative in JavaScript: // (a*b)*c -> a*(b*c) -> a*b*c // (a|b)|c -> a|(b|c) -> a|b|c // (a&b)&c -> a&(b&c) -> a&b&c // (a^b)^c -> a^(b^c) -> a^b^c // // While addition is associative in mathematics, JavaScript's `+` is not // guaranteed to be associative as it is overloaded with string concatenation. return binaryOperator === 41 /* SyntaxKind.AsteriskToken */ || binaryOperator === 51 /* SyntaxKind.BarToken */ || binaryOperator === 50 /* SyntaxKind.AmpersandToken */ || binaryOperator === 52 /* SyntaxKind.CaretToken */; } /** * This function determines whether an expression consists of a homogeneous set of * literal expressions or binary plus expressions that all share the same literal kind. * It is used to determine whether the right-hand operand of a binary plus expression can be * emitted without parentheses. */ function getLiteralKindOfBinaryPlusOperand(node) { node = ts.skipPartiallyEmittedExpressions(node); if (ts.isLiteralKind(node.kind)) { return node.kind; } if (node.kind === 221 /* SyntaxKind.BinaryExpression */ && node.operatorToken.kind === 39 /* SyntaxKind.PlusToken */) { if (node.cachedLiteralKind !== undefined) { return node.cachedLiteralKind; } var leftKind = getLiteralKindOfBinaryPlusOperand(node.left); var literalKind = ts.isLiteralKind(leftKind) && leftKind === getLiteralKindOfBinaryPlusOperand(node.right) ? leftKind : 0 /* SyntaxKind.Unknown */; node.cachedLiteralKind = literalKind; return literalKind; } return 0 /* SyntaxKind.Unknown */; } /** * Wraps the operand to a BinaryExpression in parentheses if they are needed to preserve the intended * order of operations. * * @param binaryOperator The operator for the BinaryExpression. * @param operand The operand for the BinaryExpression. * @param isLeftSideOfBinary A value indicating whether the operand is the left side of the * BinaryExpression. */ function parenthesizeBinaryOperand(binaryOperator, operand, isLeftSideOfBinary, leftOperand) { var skipped = ts.skipPartiallyEmittedExpressions(operand); // If the resulting expression is already parenthesized, we do not need to do any further processing. if (skipped.kind === 212 /* SyntaxKind.ParenthesizedExpression */) { return operand; } return binaryOperandNeedsParentheses(binaryOperator, operand, isLeftSideOfBinary, leftOperand) ? factory.createParenthesizedExpression(operand) : operand; } function parenthesizeLeftSideOfBinary(binaryOperator, leftSide) { return parenthesizeBinaryOperand(binaryOperator, leftSide, /*isLeftSideOfBinary*/ true); } function parenthesizeRightSideOfBinary(binaryOperator, leftSide, rightSide) { return parenthesizeBinaryOperand(binaryOperator, rightSide, /*isLeftSideOfBinary*/ false, leftSide); } function parenthesizeExpressionOfComputedPropertyName(expression) { return ts.isCommaSequence(expression) ? factory.createParenthesizedExpression(expression) : expression; } function parenthesizeConditionOfConditionalExpression(condition) { var conditionalPrecedence = ts.getOperatorPrecedence(222 /* SyntaxKind.ConditionalExpression */, 57 /* SyntaxKind.QuestionToken */); var emittedCondition = ts.skipPartiallyEmittedExpressions(condition); var conditionPrecedence = ts.getExpressionPrecedence(emittedCondition); if (ts.compareValues(conditionPrecedence, conditionalPrecedence) !== 1 /* Comparison.GreaterThan */) { return factory.createParenthesizedExpression(condition); } return condition; } function parenthesizeBranchOfConditionalExpression(branch) { // per ES grammar both 'whenTrue' and 'whenFalse' parts of conditional expression are assignment expressions // so in case when comma expression is introduced as a part of previous transformations // if should be wrapped in parens since comma operator has the lowest precedence var emittedExpression = ts.skipPartiallyEmittedExpressions(branch); return ts.isCommaSequence(emittedExpression) ? factory.createParenthesizedExpression(branch) : branch; } /** * [Per the spec](https://tc39.github.io/ecma262/#prod-ExportDeclaration), `export default` accepts _AssigmentExpression_ but * has a lookahead restriction for `function`, `async function`, and `class`. * * Basically, that means we need to parenthesize in the following cases: * * - BinaryExpression of CommaToken * - CommaList (synthetic list of multiple comma expressions) * - FunctionExpression * - ClassExpression */ function parenthesizeExpressionOfExportDefault(expression) { var check = ts.skipPartiallyEmittedExpressions(expression); var needsParens = ts.isCommaSequence(check); if (!needsParens) { switch (ts.getLeftmostExpression(check, /*stopAtCallExpression*/ false).kind) { case 226 /* SyntaxKind.ClassExpression */: case 213 /* SyntaxKind.FunctionExpression */: needsParens = true; } } return needsParens ? factory.createParenthesizedExpression(expression) : expression; } /** * Wraps an expression in parentheses if it is needed in order to use the expression * as the expression of a `NewExpression` node. */ function parenthesizeExpressionOfNew(expression) { var leftmostExpr = ts.getLeftmostExpression(expression, /*stopAtCallExpressions*/ true); switch (leftmostExpr.kind) { case 208 /* SyntaxKind.CallExpression */: return factory.createParenthesizedExpression(expression); case 209 /* SyntaxKind.NewExpression */: return !leftmostExpr.arguments ? factory.createParenthesizedExpression(expression) : expression; // TODO(rbuckton): Verify this assertion holds } return parenthesizeLeftSideOfAccess(expression); } /** * Wraps an expression in parentheses if it is needed in order to use the expression for * property or element access. */ function parenthesizeLeftSideOfAccess(expression) { // isLeftHandSideExpression is almost the correct criterion for when it is not necessary // to parenthesize the expression before a dot. The known exception is: // // NewExpression: // new C.x -> not the same as (new C).x // var emittedExpression = ts.skipPartiallyEmittedExpressions(expression); if (ts.isLeftHandSideExpression(emittedExpression) && (emittedExpression.kind !== 209 /* SyntaxKind.NewExpression */ || emittedExpression.arguments)) { // TODO(rbuckton): Verify whether this assertion holds. return expression; } // TODO(rbuckton): Verifiy whether `setTextRange` is needed. return ts.setTextRange(factory.createParenthesizedExpression(expression), expression); } function parenthesizeOperandOfPostfixUnary(operand) { // TODO(rbuckton): Verifiy whether `setTextRange` is needed. return ts.isLeftHandSideExpression(operand) ? operand : ts.setTextRange(factory.createParenthesizedExpression(operand), operand); } function parenthesizeOperandOfPrefixUnary(operand) { // TODO(rbuckton): Verifiy whether `setTextRange` is needed. return ts.isUnaryExpression(operand) ? operand : ts.setTextRange(factory.createParenthesizedExpression(operand), operand); } function parenthesizeExpressionsOfCommaDelimitedList(elements) { var result = ts.sameMap(elements, parenthesizeExpressionForDisallowedComma); return ts.setTextRange(factory.createNodeArray(result, elements.hasTrailingComma), elements); } function parenthesizeExpressionForDisallowedComma(expression) { var emittedExpression = ts.skipPartiallyEmittedExpressions(expression); var expressionPrecedence = ts.getExpressionPrecedence(emittedExpression); var commaPrecedence = ts.getOperatorPrecedence(221 /* SyntaxKind.BinaryExpression */, 27 /* SyntaxKind.CommaToken */); // TODO(rbuckton): Verifiy whether `setTextRange` is needed. return expressionPrecedence > commaPrecedence ? expression : ts.setTextRange(factory.createParenthesizedExpression(expression), expression); } function parenthesizeExpressionOfExpressionStatement(expression) { var emittedExpression = ts.skipPartiallyEmittedExpressions(expression); if (ts.isCallExpression(emittedExpression)) { var callee = emittedExpression.expression; var kind = ts.skipPartiallyEmittedExpressions(callee).kind; if (kind === 213 /* SyntaxKind.FunctionExpression */ || kind === 214 /* SyntaxKind.ArrowFunction */) { // TODO(rbuckton): Verifiy whether `setTextRange` is needed. var updated = factory.updateCallExpression(emittedExpression, ts.setTextRange(factory.createParenthesizedExpression(callee), callee), emittedExpression.typeArguments, emittedExpression.arguments); return factory.restoreOuterExpressions(expression, updated, 8 /* OuterExpressionKinds.PartiallyEmittedExpressions */); } } var leftmostExpressionKind = ts.getLeftmostExpression(emittedExpression, /*stopAtCallExpressions*/ false).kind; if (leftmostExpressionKind === 205 /* SyntaxKind.ObjectLiteralExpression */ || leftmostExpressionKind === 213 /* SyntaxKind.FunctionExpression */) { // TODO(rbuckton): Verifiy whether `setTextRange` is needed. return ts.setTextRange(factory.createParenthesizedExpression(expression), expression); } return expression; } function parenthesizeConciseBodyOfArrowFunction(body) { if (!ts.isBlock(body) && (ts.isCommaSequence(body) || ts.getLeftmostExpression(body, /*stopAtCallExpressions*/ false).kind === 205 /* SyntaxKind.ObjectLiteralExpression */)) { // TODO(rbuckton): Verifiy whether `setTextRange` is needed. return ts.setTextRange(factory.createParenthesizedExpression(body), body); } return body; } // Type[Extends] : // FunctionOrConstructorType // ConditionalType[?Extends] // ConditionalType[Extends] : // UnionType[?Extends] // [~Extends] UnionType[~Extends] `extends` Type[+Extends] `?` Type[~Extends] `:` Type[~Extends] // // - The check type (the `UnionType`, above) does not allow function, constructor, or conditional types (they must be parenthesized) // - The extends type (the first `Type`, above) does not allow conditional types (they must be parenthesized). Function and constructor types are fine. // - The true and false branch types (the second and third `Type` non-terminals, above) allow any type function parenthesizeCheckTypeOfConditionalType(checkType) { switch (checkType.kind) { case 179 /* SyntaxKind.FunctionType */: case 180 /* SyntaxKind.ConstructorType */: case 189 /* SyntaxKind.ConditionalType */: return factory.createParenthesizedType(checkType); } return checkType; } function parenthesizeExtendsTypeOfConditionalType(extendsType) { switch (extendsType.kind) { case 189 /* SyntaxKind.ConditionalType */: return factory.createParenthesizedType(extendsType); } return extendsType; } // UnionType[Extends] : // `|`? IntersectionType[?Extends] // UnionType[?Extends] `|` IntersectionType[?Extends] // // - A union type constituent has the same precedence as the check type of a conditional type function parenthesizeConstituentTypeOfUnionType(type) { switch (type.kind) { case 187 /* SyntaxKind.UnionType */: // Not strictly necessary, but a union containing a union should have been flattened case 188 /* SyntaxKind.IntersectionType */: // Not strictly necessary, but makes generated output more readable and avoids breaks in DT tests return factory.createParenthesizedType(type); } return parenthesizeCheckTypeOfConditionalType(type); } function parenthesizeConstituentTypesOfUnionType(members) { return factory.createNodeArray(ts.sameMap(members, parenthesizeConstituentTypeOfUnionType)); } // IntersectionType[Extends] : // `&`? TypeOperator[?Extends] // IntersectionType[?Extends] `&` TypeOperator[?Extends] // // - An intersection type constituent does not allow function, constructor, conditional, or union types (they must be parenthesized) function parenthesizeConstituentTypeOfIntersectionType(type) { switch (type.kind) { case 187 /* SyntaxKind.UnionType */: case 188 /* SyntaxKind.IntersectionType */: // Not strictly necessary, but an intersection containing an intersection should have been flattened return factory.createParenthesizedType(type); } return parenthesizeConstituentTypeOfUnionType(type); } function parenthesizeConstituentTypesOfIntersectionType(members) { return factory.createNodeArray(ts.sameMap(members, parenthesizeConstituentTypeOfIntersectionType)); } // TypeOperator[Extends] : // PostfixType // InferType[?Extends] // `keyof` TypeOperator[?Extends] // `unique` TypeOperator[?Extends] // `readonly` TypeOperator[?Extends] // function parenthesizeOperandOfTypeOperator(type) { switch (type.kind) { case 188 /* SyntaxKind.IntersectionType */: return factory.createParenthesizedType(type); } return parenthesizeConstituentTypeOfIntersectionType(type); } function parenthesizeOperandOfReadonlyTypeOperator(type) { switch (type.kind) { case 193 /* SyntaxKind.TypeOperator */: return factory.createParenthesizedType(type); } return parenthesizeOperandOfTypeOperator(type); } // PostfixType : // NonArrayType // NonArrayType [no LineTerminator here] `!` // JSDoc // NonArrayType [no LineTerminator here] `?` // JSDoc // IndexedAccessType // ArrayType // // IndexedAccessType : // NonArrayType `[` Type[~Extends] `]` // // ArrayType : // NonArrayType `[` `]` // function parenthesizeNonArrayTypeOfPostfixType(type) { switch (type.kind) { case 190 /* SyntaxKind.InferType */: case 193 /* SyntaxKind.TypeOperator */: case 181 /* SyntaxKind.TypeQuery */: // Not strictly necessary, but makes generated output more readable and avoids breaks in DT tests return factory.createParenthesizedType(type); } return parenthesizeOperandOfTypeOperator(type); } // TupleType : // `[` Elision? `]` // `[` NamedTupleElementTypes `]` // `[` NamedTupleElementTypes `,` Elision? `]` // `[` TupleElementTypes `]` // `[` TupleElementTypes `,` Elision? `]` // // NamedTupleElementTypes : // Elision? NamedTupleMember // NamedTupleElementTypes `,` Elision? NamedTupleMember // // NamedTupleMember : // Identifier `?`? `:` Type[~Extends] // `...` Identifier `:` Type[~Extends] // // TupleElementTypes : // Elision? TupleElementType // TupleElementTypes `,` Elision? TupleElementType // // TupleElementType : // Type[~Extends] // NOTE: Needs cover grammar to disallow JSDoc postfix-optional // OptionalType // RestType // // OptionalType : // Type[~Extends] `?` // NOTE: Needs cover grammar to disallow JSDoc postfix-optional // // RestType : // `...` Type[~Extends] // function parenthesizeElementTypesOfTupleType(types) { return factory.createNodeArray(ts.sameMap(types, parenthesizeElementTypeOfTupleType)); } function parenthesizeElementTypeOfTupleType(type) { if (hasJSDocPostfixQuestion(type)) return factory.createParenthesizedType(type); return type; } function hasJSDocPostfixQuestion(type) { if (ts.isJSDocNullableType(type)) return type.postfix; if (ts.isNamedTupleMember(type)) return hasJSDocPostfixQuestion(type.type); if (ts.isFunctionTypeNode(type) || ts.isConstructorTypeNode(type) || ts.isTypeOperatorNode(type)) return hasJSDocPostfixQuestion(type.type); if (ts.isConditionalTypeNode(type)) return hasJSDocPostfixQuestion(type.falseType); if (ts.isUnionTypeNode(type)) return hasJSDocPostfixQuestion(ts.last(type.types)); if (ts.isIntersectionTypeNode(type)) return hasJSDocPostfixQuestion(ts.last(type.types)); if (ts.isInferTypeNode(type)) return !!type.typeParameter.constraint && hasJSDocPostfixQuestion(type.typeParameter.constraint); return false; } function parenthesizeTypeOfOptionalType(type) { if (hasJSDocPostfixQuestion(type)) return factory.createParenthesizedType(type); return parenthesizeNonArrayTypeOfPostfixType(type); } // function parenthesizeMemberOfElementType(member: TypeNode): TypeNode { // switch (member.kind) { // case SyntaxKind.UnionType: // case SyntaxKind.IntersectionType: // case SyntaxKind.FunctionType: // case SyntaxKind.ConstructorType: // return factory.createParenthesizedType(member); // } // return parenthesizeMemberOfConditionalType(member); // } // function parenthesizeElementTypeOfArrayType(member: TypeNode): TypeNode { // switch (member.kind) { // case SyntaxKind.TypeQuery: // case SyntaxKind.TypeOperator: // case SyntaxKind.InferType: // return factory.createParenthesizedType(member); // } // return parenthesizeMemberOfElementType(member); // } function parenthesizeLeadingTypeArgument(node) { return ts.isFunctionOrConstructorTypeNode(node) && node.typeParameters ? factory.createParenthesizedType(node) : node; } function parenthesizeOrdinalTypeArgument(node, i) { return i === 0 ? parenthesizeLeadingTypeArgument(node) : node; } function parenthesizeTypeArguments(typeArguments) { if (ts.some(typeArguments)) { return factory.createNodeArray(ts.sameMap(typeArguments, parenthesizeOrdinalTypeArgument)); } } } ts.createParenthesizerRules = createParenthesizerRules; ts.nullParenthesizerRules = { getParenthesizeLeftSideOfBinaryForOperator: function (_) { return ts.identity; }, getParenthesizeRightSideOfBinaryForOperator: function (_) { return ts.identity; }, parenthesizeLeftSideOfBinary: function (_binaryOperator, leftSide) { return leftSide; }, parenthesizeRightSideOfBinary: function (_binaryOperator, _leftSide, rightSide) { return rightSide; }, parenthesizeExpressionOfComputedPropertyName: ts.identity, parenthesizeConditionOfConditionalExpression: ts.identity, parenthesizeBranchOfConditionalExpression: ts.identity, parenthesizeExpressionOfExportDefault: ts.identity, parenthesizeExpressionOfNew: function (expression) { return ts.cast(expression, ts.isLeftHandSideExpression); }, parenthesizeLeftSideOfAccess: function (expression) { return ts.cast(expression, ts.isLeftHandSideExpression); }, parenthesizeOperandOfPostfixUnary: function (operand) { return ts.cast(operand, ts.isLeftHandSideExpression); }, parenthesizeOperandOfPrefixUnary: function (operand) { return ts.cast(operand, ts.isUnaryExpression); }, parenthesizeExpressionsOfCommaDelimitedList: function (nodes) { return ts.cast(nodes, ts.isNodeArray); }, parenthesizeExpressionForDisallowedComma: ts.identity, parenthesizeExpressionOfExpressionStatement: ts.identity, parenthesizeConciseBodyOfArrowFunction: ts.identity, parenthesizeCheckTypeOfConditionalType: ts.identity, parenthesizeExtendsTypeOfConditionalType: ts.identity, parenthesizeConstituentTypesOfUnionType: function (nodes) { return ts.cast(nodes, ts.isNodeArray); }, parenthesizeConstituentTypeOfUnionType: ts.identity, parenthesizeConstituentTypesOfIntersectionType: function (nodes) { return ts.cast(nodes, ts.isNodeArray); }, parenthesizeConstituentTypeOfIntersectionType: ts.identity, parenthesizeOperandOfTypeOperator: ts.identity, parenthesizeOperandOfReadonlyTypeOperator: ts.identity, parenthesizeNonArrayTypeOfPostfixType: ts.identity, parenthesizeElementTypesOfTupleType: function (nodes) { return ts.cast(nodes, ts.isNodeArray); }, parenthesizeElementTypeOfTupleType: ts.identity, parenthesizeTypeOfOptionalType: ts.identity, parenthesizeTypeArguments: function (nodes) { return nodes && ts.cast(nodes, ts.isNodeArray); }, parenthesizeLeadingTypeArgument: ts.identity, }; })(ts || (ts = {})); /* @internal */ var ts; (function (ts) { function createNodeConverters(factory) { return { convertToFunctionBlock: convertToFunctionBlock, convertToFunctionExpression: convertToFunctionExpression, convertToArrayAssignmentElement: convertToArrayAssignmentElement, convertToObjectAssignmentElement: convertToObjectAssignmentElement, convertToAssignmentPattern: convertToAssignmentPattern, convertToObjectAssignmentPattern: convertToObjectAssignmentPattern, convertToArrayAssignmentPattern: convertToArrayAssignmentPattern, convertToAssignmentElementTarget: convertToAssignmentElementTarget, }; function convertToFunctionBlock(node, multiLine) { if (ts.isBlock(node)) return node; var returnStatement = factory.createReturnStatement(node); ts.setTextRange(returnStatement, node); var body = factory.createBlock([returnStatement], multiLine); ts.setTextRange(body, node); return body; } function convertToFunctionExpression(node) { if (!node.body) return ts.Debug.fail("Cannot convert a FunctionDeclaration without a body"); var updated = factory.createFunctionExpression(node.modifiers, node.asteriskToken, node.name, node.typeParameters, node.parameters, node.type, node.body); ts.setOriginalNode(updated, node); ts.setTextRange(updated, node); if (ts.getStartsOnNewLine(node)) { ts.setStartsOnNewLine(updated, /*newLine*/ true); } return updated; } function convertToArrayAssignmentElement(element) { if (ts.isBindingElement(element)) { if (element.dotDotDotToken) { ts.Debug.assertNode(element.name, ts.isIdentifier); return ts.setOriginalNode(ts.setTextRange(factory.createSpreadElement(element.name), element), element); } var expression = convertToAssignmentElementTarget(element.name); return element.initializer ? ts.setOriginalNode(ts.setTextRange(factory.createAssignment(expression, element.initializer), element), element) : expression; } return ts.cast(element, ts.isExpression); } function convertToObjectAssignmentElement(element) { if (ts.isBindingElement(element)) { if (element.dotDotDotToken) { ts.Debug.assertNode(element.name, ts.isIdentifier); return ts.setOriginalNode(ts.setTextRange(factory.createSpreadAssignment(element.name), element), element); } if (element.propertyName) { var expression = convertToAssignmentElementTarget(element.name); return ts.setOriginalNode(ts.setTextRange(factory.createPropertyAssignment(element.propertyName, element.initializer ? factory.createAssignment(expression, element.initializer) : expression), element), element); } ts.Debug.assertNode(element.name, ts.isIdentifier); return ts.setOriginalNode(ts.setTextRange(factory.createShorthandPropertyAssignment(element.name, element.initializer), element), element); } return ts.cast(element, ts.isObjectLiteralElementLike); } function convertToAssignmentPattern(node) { switch (node.kind) { case 202 /* SyntaxKind.ArrayBindingPattern */: case 204 /* SyntaxKind.ArrayLiteralExpression */: return convertToArrayAssignmentPattern(node); case 201 /* SyntaxKind.ObjectBindingPattern */: case 205 /* SyntaxKind.ObjectLiteralExpression */: return convertToObjectAssignmentPattern(node); } } function convertToObjectAssignmentPattern(node) { if (ts.isObjectBindingPattern(node)) { return ts.setOriginalNode(ts.setTextRange(factory.createObjectLiteralExpression(ts.map(node.elements, convertToObjectAssignmentElement)), node), node); } return ts.cast(node, ts.isObjectLiteralExpression); } function convertToArrayAssignmentPattern(node) { if (ts.isArrayBindingPattern(node)) { return ts.setOriginalNode(ts.setTextRange(factory.createArrayLiteralExpression(ts.map(node.elements, convertToArrayAssignmentElement)), node), node); } return ts.cast(node, ts.isArrayLiteralExpression); } function convertToAssignmentElementTarget(node) { if (ts.isBindingPattern(node)) { return convertToAssignmentPattern(node); } return ts.cast(node, ts.isExpression); } } ts.createNodeConverters = createNodeConverters; ts.nullNodeConverters = { convertToFunctionBlock: ts.notImplemented, convertToFunctionExpression: ts.notImplemented, convertToArrayAssignmentElement: ts.notImplemented, convertToObjectAssignmentElement: ts.notImplemented, convertToAssignmentPattern: ts.notImplemented, convertToObjectAssignmentPattern: ts.notImplemented, convertToArrayAssignmentPattern: ts.notImplemented, convertToAssignmentElementTarget: ts.notImplemented, }; })(ts || (ts = {})); var ts; (function (ts) { var nextAutoGenerateId = 0; /* @internal */ var NodeFactoryFlags; (function (NodeFactoryFlags) { NodeFactoryFlags[NodeFactoryFlags["None"] = 0] = "None"; // Disables the parenthesizer rules for the factory. NodeFactoryFlags[NodeFactoryFlags["NoParenthesizerRules"] = 1] = "NoParenthesizerRules"; // Disables the node converters for the factory. NodeFactoryFlags[NodeFactoryFlags["NoNodeConverters"] = 2] = "NoNodeConverters"; // Ensures new `PropertyAccessExpression` nodes are created with the `NoIndentation` emit flag set. NodeFactoryFlags[NodeFactoryFlags["NoIndentationOnFreshPropertyAccess"] = 4] = "NoIndentationOnFreshPropertyAccess"; // Do not set an `original` pointer when updating a node. NodeFactoryFlags[NodeFactoryFlags["NoOriginalNode"] = 8] = "NoOriginalNode"; })(NodeFactoryFlags = ts.NodeFactoryFlags || (ts.NodeFactoryFlags = {})); /** * Creates a `NodeFactory` that can be used to create and update a syntax tree. * @param flags Flags that control factory behavior. * @param baseFactory A `BaseNodeFactory` used to create the base `Node` objects. */ /* @internal */ function createNodeFactory(flags, baseFactory) { var update = flags & 8 /* NodeFactoryFlags.NoOriginalNode */ ? updateWithoutOriginal : updateWithOriginal; // Lazily load the parenthesizer, node converters, and some factory methods until they are used. var parenthesizerRules = ts.memoize(function () { return flags & 1 /* NodeFactoryFlags.NoParenthesizerRules */ ? ts.nullParenthesizerRules : ts.createParenthesizerRules(factory); }); var converters = ts.memoize(function () { return flags & 2 /* NodeFactoryFlags.NoNodeConverters */ ? ts.nullNodeConverters : ts.createNodeConverters(factory); }); // lazy initializaton of common operator factories var getBinaryCreateFunction = ts.memoizeOne(function (operator) { return function (left, right) { return createBinaryExpression(left, operator, right); }; }); var getPrefixUnaryCreateFunction = ts.memoizeOne(function (operator) { return function (operand) { return createPrefixUnaryExpression(operator, operand); }; }); var getPostfixUnaryCreateFunction = ts.memoizeOne(function (operator) { return function (operand) { return createPostfixUnaryExpression(operand, operator); }; }); var getJSDocPrimaryTypeCreateFunction = ts.memoizeOne(function (kind) { return function () { return createJSDocPrimaryTypeWorker(kind); }; }); var getJSDocUnaryTypeCreateFunction = ts.memoizeOne(function (kind) { return function (type) { return createJSDocUnaryTypeWorker(kind, type); }; }); var getJSDocUnaryTypeUpdateFunction = ts.memoizeOne(function (kind) { return function (node, type) { return updateJSDocUnaryTypeWorker(kind, node, type); }; }); var getJSDocPrePostfixUnaryTypeCreateFunction = ts.memoizeOne(function (kind) { return function (type, postfix) { return createJSDocPrePostfixUnaryTypeWorker(kind, type, postfix); }; }); var getJSDocPrePostfixUnaryTypeUpdateFunction = ts.memoizeOne(function (kind) { return function (node, type) { return updateJSDocPrePostfixUnaryTypeWorker(kind, node, type); }; }); var getJSDocSimpleTagCreateFunction = ts.memoizeOne(function (kind) { return function (tagName, comment) { return createJSDocSimpleTagWorker(kind, tagName, comment); }; }); var getJSDocSimpleTagUpdateFunction = ts.memoizeOne(function (kind) { return function (node, tagName, comment) { return updateJSDocSimpleTagWorker(kind, node, tagName, comment); }; }); var getJSDocTypeLikeTagCreateFunction = ts.memoizeOne(function (kind) { return function (tagName, typeExpression, comment) { return createJSDocTypeLikeTagWorker(kind, tagName, typeExpression, comment); }; }); var getJSDocTypeLikeTagUpdateFunction = ts.memoizeOne(function (kind) { return function (node, tagName, typeExpression, comment) { return updateJSDocTypeLikeTagWorker(kind, node, tagName, typeExpression, comment); }; }); var factory = { get parenthesizer() { return parenthesizerRules(); }, get converters() { return converters(); }, baseFactory: baseFactory, flags: flags, createNodeArray: createNodeArray, createNumericLiteral: createNumericLiteral, createBigIntLiteral: createBigIntLiteral, createStringLiteral: createStringLiteral, createStringLiteralFromNode: createStringLiteralFromNode, createRegularExpressionLiteral: createRegularExpressionLiteral, createLiteralLikeNode: createLiteralLikeNode, createIdentifier: createIdentifier, updateIdentifier: updateIdentifier, createTempVariable: createTempVariable, createLoopVariable: createLoopVariable, createUniqueName: createUniqueName, getGeneratedNameForNode: getGeneratedNameForNode, createPrivateIdentifier: createPrivateIdentifier, createToken: createToken, createSuper: createSuper, createThis: createThis, createNull: createNull, createTrue: createTrue, createFalse: createFalse, createModifier: createModifier, createModifiersFromModifierFlags: createModifiersFromModifierFlags, createQualifiedName: createQualifiedName, updateQualifiedName: updateQualifiedName, createComputedPropertyName: createComputedPropertyName, updateComputedPropertyName: updateComputedPropertyName, createTypeParameterDeclaration: createTypeParameterDeclaration, updateTypeParameterDeclaration: updateTypeParameterDeclaration, createParameterDeclaration: createParameterDeclaration, updateParameterDeclaration: updateParameterDeclaration, createDecorator: createDecorator, updateDecorator: updateDecorator, createPropertySignature: createPropertySignature, updatePropertySignature: updatePropertySignature, createPropertyDeclaration: createPropertyDeclaration, updatePropertyDeclaration: updatePropertyDeclaration, createMethodSignature: createMethodSignature, updateMethodSignature: updateMethodSignature, createMethodDeclaration: createMethodDeclaration, updateMethodDeclaration: updateMethodDeclaration, createConstructorDeclaration: createConstructorDeclaration, updateConstructorDeclaration: updateConstructorDeclaration, createGetAccessorDeclaration: createGetAccessorDeclaration, updateGetAccessorDeclaration: updateGetAccessorDeclaration, createSetAccessorDeclaration: createSetAccessorDeclaration, updateSetAccessorDeclaration: updateSetAccessorDeclaration, createCallSignature: createCallSignature, updateCallSignature: updateCallSignature, createConstructSignature: createConstructSignature, updateConstructSignature: updateConstructSignature, createIndexSignature: createIndexSignature, updateIndexSignature: updateIndexSignature, createClassStaticBlockDeclaration: createClassStaticBlockDeclaration, updateClassStaticBlockDeclaration: updateClassStaticBlockDeclaration, createTemplateLiteralTypeSpan: createTemplateLiteralTypeSpan, updateTemplateLiteralTypeSpan: updateTemplateLiteralTypeSpan, createKeywordTypeNode: createKeywordTypeNode, createTypePredicateNode: createTypePredicateNode, updateTypePredicateNode: updateTypePredicateNode, createTypeReferenceNode: createTypeReferenceNode, updateTypeReferenceNode: updateTypeReferenceNode, createFunctionTypeNode: createFunctionTypeNode, updateFunctionTypeNode: updateFunctionTypeNode, createConstructorTypeNode: createConstructorTypeNode, updateConstructorTypeNode: updateConstructorTypeNode, createTypeQueryNode: createTypeQueryNode, updateTypeQueryNode: updateTypeQueryNode, createTypeLiteralNode: createTypeLiteralNode, updateTypeLiteralNode: updateTypeLiteralNode, createArrayTypeNode: createArrayTypeNode, updateArrayTypeNode: updateArrayTypeNode, createTupleTypeNode: createTupleTypeNode, updateTupleTypeNode: updateTupleTypeNode, createNamedTupleMember: createNamedTupleMember, updateNamedTupleMember: updateNamedTupleMember, createOptionalTypeNode: createOptionalTypeNode, updateOptionalTypeNode: updateOptionalTypeNode, createRestTypeNode: createRestTypeNode, updateRestTypeNode: updateRestTypeNode, createUnionTypeNode: createUnionTypeNode, updateUnionTypeNode: updateUnionTypeNode, createIntersectionTypeNode: createIntersectionTypeNode, updateIntersectionTypeNode: updateIntersectionTypeNode, createConditionalTypeNode: createConditionalTypeNode, updateConditionalTypeNode: updateConditionalTypeNode, createInferTypeNode: createInferTypeNode, updateInferTypeNode: updateInferTypeNode, createImportTypeNode: createImportTypeNode, updateImportTypeNode: updateImportTypeNode, createParenthesizedType: createParenthesizedType, updateParenthesizedType: updateParenthesizedType, createThisTypeNode: createThisTypeNode, createTypeOperatorNode: createTypeOperatorNode, updateTypeOperatorNode: updateTypeOperatorNode, createIndexedAccessTypeNode: createIndexedAccessTypeNode, updateIndexedAccessTypeNode: updateIndexedAccessTypeNode, createMappedTypeNode: createMappedTypeNode, updateMappedTypeNode: updateMappedTypeNode, createLiteralTypeNode: createLiteralTypeNode, updateLiteralTypeNode: updateLiteralTypeNode, createTemplateLiteralType: createTemplateLiteralType, updateTemplateLiteralType: updateTemplateLiteralType, createObjectBindingPattern: createObjectBindingPattern, updateObjectBindingPattern: updateObjectBindingPattern, createArrayBindingPattern: createArrayBindingPattern, updateArrayBindingPattern: updateArrayBindingPattern, createBindingElement: createBindingElement, updateBindingElement: updateBindingElement, createArrayLiteralExpression: createArrayLiteralExpression, updateArrayLiteralExpression: updateArrayLiteralExpression, createObjectLiteralExpression: createObjectLiteralExpression, updateObjectLiteralExpression: updateObjectLiteralExpression, createPropertyAccessExpression: flags & 4 /* NodeFactoryFlags.NoIndentationOnFreshPropertyAccess */ ? function (expression, name) { return ts.setEmitFlags(createPropertyAccessExpression(expression, name), 131072 /* EmitFlags.NoIndentation */); } : createPropertyAccessExpression, updatePropertyAccessExpression: updatePropertyAccessExpression, createPropertyAccessChain: flags & 4 /* NodeFactoryFlags.NoIndentationOnFreshPropertyAccess */ ? function (expression, questionDotToken, name) { return ts.setEmitFlags(createPropertyAccessChain(expression, questionDotToken, name), 131072 /* EmitFlags.NoIndentation */); } : createPropertyAccessChain, updatePropertyAccessChain: updatePropertyAccessChain, createElementAccessExpression: createElementAccessExpression, updateElementAccessExpression: updateElementAccessExpression, createElementAccessChain: createElementAccessChain, updateElementAccessChain: updateElementAccessChain, createCallExpression: createCallExpression, updateCallExpression: updateCallExpression, createCallChain: createCallChain, updateCallChain: updateCallChain, createNewExpression: createNewExpression, updateNewExpression: updateNewExpression, createTaggedTemplateExpression: createTaggedTemplateExpression, updateTaggedTemplateExpression: updateTaggedTemplateExpression, createTypeAssertion: createTypeAssertion, updateTypeAssertion: updateTypeAssertion, createParenthesizedExpression: createParenthesizedExpression, updateParenthesizedExpression: updateParenthesizedExpression, createFunctionExpression: createFunctionExpression, updateFunctionExpression: updateFunctionExpression, createArrowFunction: createArrowFunction, updateArrowFunction: updateArrowFunction, createDeleteExpression: createDeleteExpression, updateDeleteExpression: updateDeleteExpression, createTypeOfExpression: createTypeOfExpression, updateTypeOfExpression: updateTypeOfExpression, createVoidExpression: createVoidExpression, updateVoidExpression: updateVoidExpression, createAwaitExpression: createAwaitExpression, updateAwaitExpression: updateAwaitExpression, createPrefixUnaryExpression: createPrefixUnaryExpression, updatePrefixUnaryExpression: updatePrefixUnaryExpression, createPostfixUnaryExpression: createPostfixUnaryExpression, updatePostfixUnaryExpression: updatePostfixUnaryExpression, createBinaryExpression: createBinaryExpression, updateBinaryExpression: updateBinaryExpression, createConditionalExpression: createConditionalExpression, updateConditionalExpression: updateConditionalExpression, createTemplateExpression: createTemplateExpression, updateTemplateExpression: updateTemplateExpression, createTemplateHead: createTemplateHead, createTemplateMiddle: createTemplateMiddle, createTemplateTail: createTemplateTail, createNoSubstitutionTemplateLiteral: createNoSubstitutionTemplateLiteral, createTemplateLiteralLikeNode: createTemplateLiteralLikeNode, createYieldExpression: createYieldExpression, updateYieldExpression: updateYieldExpression, createSpreadElement: createSpreadElement, updateSpreadElement: updateSpreadElement, createClassExpression: createClassExpression, updateClassExpression: updateClassExpression, createOmittedExpression: createOmittedExpression, createExpressionWithTypeArguments: createExpressionWithTypeArguments, updateExpressionWithTypeArguments: updateExpressionWithTypeArguments, createAsExpression: createAsExpression, updateAsExpression: updateAsExpression, createNonNullExpression: createNonNullExpression, updateNonNullExpression: updateNonNullExpression, createNonNullChain: createNonNullChain, updateNonNullChain: updateNonNullChain, createMetaProperty: createMetaProperty, updateMetaProperty: updateMetaProperty, createTemplateSpan: createTemplateSpan, updateTemplateSpan: updateTemplateSpan, createSemicolonClassElement: createSemicolonClassElement, createBlock: createBlock, updateBlock: updateBlock, createVariableStatement: createVariableStatement, updateVariableStatement: updateVariableStatement, createEmptyStatement: createEmptyStatement, createExpressionStatement: createExpressionStatement, updateExpressionStatement: updateExpressionStatement, createIfStatement: createIfStatement, updateIfStatement: updateIfStatement, createDoStatement: createDoStatement, updateDoStatement: updateDoStatement, createWhileStatement: createWhileStatement, updateWhileStatement: updateWhileStatement, createForStatement: createForStatement, updateForStatement: updateForStatement, createForInStatement: createForInStatement, updateForInStatement: updateForInStatement, createForOfStatement: createForOfStatement, updateForOfStatement: updateForOfStatement, createContinueStatement: createContinueStatement, updateContinueStatement: updateContinueStatement, createBreakStatement: createBreakStatement, updateBreakStatement: updateBreakStatement, createReturnStatement: createReturnStatement, updateReturnStatement: updateReturnStatement, createWithStatement: createWithStatement, updateWithStatement: updateWithStatement, createSwitchStatement: createSwitchStatement, updateSwitchStatement: updateSwitchStatement, createLabeledStatement: createLabeledStatement, updateLabeledStatement: updateLabeledStatement, createThrowStatement: createThrowStatement, updateThrowStatement: updateThrowStatement, createTryStatement: createTryStatement, updateTryStatement: updateTryStatement, createDebuggerStatement: createDebuggerStatement, createVariableDeclaration: createVariableDeclaration, updateVariableDeclaration: updateVariableDeclaration, createVariableDeclarationList: createVariableDeclarationList, updateVariableDeclarationList: updateVariableDeclarationList, createFunctionDeclaration: createFunctionDeclaration, updateFunctionDeclaration: updateFunctionDeclaration, createClassDeclaration: createClassDeclaration, updateClassDeclaration: updateClassDeclaration, createInterfaceDeclaration: createInterfaceDeclaration, updateInterfaceDeclaration: updateInterfaceDeclaration, createTypeAliasDeclaration: createTypeAliasDeclaration, updateTypeAliasDeclaration: updateTypeAliasDeclaration, createEnumDeclaration: createEnumDeclaration, updateEnumDeclaration: updateEnumDeclaration, createModuleDeclaration: createModuleDeclaration, updateModuleDeclaration: updateModuleDeclaration, createModuleBlock: createModuleBlock, updateModuleBlock: updateModuleBlock, createCaseBlock: createCaseBlock, updateCaseBlock: updateCaseBlock, createNamespaceExportDeclaration: createNamespaceExportDeclaration, updateNamespaceExportDeclaration: updateNamespaceExportDeclaration, createImportEqualsDeclaration: createImportEqualsDeclaration, updateImportEqualsDeclaration: updateImportEqualsDeclaration, createImportDeclaration: createImportDeclaration, updateImportDeclaration: updateImportDeclaration, createImportClause: createImportClause, updateImportClause: updateImportClause, createAssertClause: createAssertClause, updateAssertClause: updateAssertClause, createAssertEntry: createAssertEntry, updateAssertEntry: updateAssertEntry, createImportTypeAssertionContainer: createImportTypeAssertionContainer, updateImportTypeAssertionContainer: updateImportTypeAssertionContainer, createNamespaceImport: createNamespaceImport, updateNamespaceImport: updateNamespaceImport, createNamespaceExport: createNamespaceExport, updateNamespaceExport: updateNamespaceExport, createNamedImports: createNamedImports, updateNamedImports: updateNamedImports, createImportSpecifier: createImportSpecifier, updateImportSpecifier: updateImportSpecifier, createExportAssignment: createExportAssignment, updateExportAssignment: updateExportAssignment, createExportDeclaration: createExportDeclaration, updateExportDeclaration: updateExportDeclaration, createNamedExports: createNamedExports, updateNamedExports: updateNamedExports, createExportSpecifier: createExportSpecifier, updateExportSpecifier: updateExportSpecifier, createMissingDeclaration: createMissingDeclaration, createExternalModuleReference: createExternalModuleReference, updateExternalModuleReference: updateExternalModuleReference, // lazily load factory members for JSDoc types with similar structure get createJSDocAllType() { return getJSDocPrimaryTypeCreateFunction(312 /* SyntaxKind.JSDocAllType */); }, get createJSDocUnknownType() { return getJSDocPrimaryTypeCreateFunction(313 /* SyntaxKind.JSDocUnknownType */); }, get createJSDocNonNullableType() { return getJSDocPrePostfixUnaryTypeCreateFunction(315 /* SyntaxKind.JSDocNonNullableType */); }, get updateJSDocNonNullableType() { return getJSDocPrePostfixUnaryTypeUpdateFunction(315 /* SyntaxKind.JSDocNonNullableType */); }, get createJSDocNullableType() { return getJSDocPrePostfixUnaryTypeCreateFunction(314 /* SyntaxKind.JSDocNullableType */); }, get updateJSDocNullableType() { return getJSDocPrePostfixUnaryTypeUpdateFunction(314 /* SyntaxKind.JSDocNullableType */); }, get createJSDocOptionalType() { return getJSDocUnaryTypeCreateFunction(316 /* SyntaxKind.JSDocOptionalType */); }, get updateJSDocOptionalType() { return getJSDocUnaryTypeUpdateFunction(316 /* SyntaxKind.JSDocOptionalType */); }, get createJSDocVariadicType() { return getJSDocUnaryTypeCreateFunction(318 /* SyntaxKind.JSDocVariadicType */); }, get updateJSDocVariadicType() { return getJSDocUnaryTypeUpdateFunction(318 /* SyntaxKind.JSDocVariadicType */); }, get createJSDocNamepathType() { return getJSDocUnaryTypeCreateFunction(319 /* SyntaxKind.JSDocNamepathType */); }, get updateJSDocNamepathType() { return getJSDocUnaryTypeUpdateFunction(319 /* SyntaxKind.JSDocNamepathType */); }, createJSDocFunctionType: createJSDocFunctionType, updateJSDocFunctionType: updateJSDocFunctionType, createJSDocTypeLiteral: createJSDocTypeLiteral, updateJSDocTypeLiteral: updateJSDocTypeLiteral, createJSDocTypeExpression: createJSDocTypeExpression, updateJSDocTypeExpression: updateJSDocTypeExpression, createJSDocSignature: createJSDocSignature, updateJSDocSignature: updateJSDocSignature, createJSDocTemplateTag: createJSDocTemplateTag, updateJSDocTemplateTag: updateJSDocTemplateTag, createJSDocTypedefTag: createJSDocTypedefTag, updateJSDocTypedefTag: updateJSDocTypedefTag, createJSDocParameterTag: createJSDocParameterTag, updateJSDocParameterTag: updateJSDocParameterTag, createJSDocPropertyTag: createJSDocPropertyTag, updateJSDocPropertyTag: updateJSDocPropertyTag, createJSDocCallbackTag: createJSDocCallbackTag, updateJSDocCallbackTag: updateJSDocCallbackTag, createJSDocAugmentsTag: createJSDocAugmentsTag, updateJSDocAugmentsTag: updateJSDocAugmentsTag, createJSDocImplementsTag: createJSDocImplementsTag, updateJSDocImplementsTag: updateJSDocImplementsTag, createJSDocSeeTag: createJSDocSeeTag, updateJSDocSeeTag: updateJSDocSeeTag, createJSDocNameReference: createJSDocNameReference, updateJSDocNameReference: updateJSDocNameReference, createJSDocMemberName: createJSDocMemberName, updateJSDocMemberName: updateJSDocMemberName, createJSDocLink: createJSDocLink, updateJSDocLink: updateJSDocLink, createJSDocLinkCode: createJSDocLinkCode, updateJSDocLinkCode: updateJSDocLinkCode, createJSDocLinkPlain: createJSDocLinkPlain, updateJSDocLinkPlain: updateJSDocLinkPlain, // lazily load factory members for JSDoc tags with similar structure get createJSDocTypeTag() { return getJSDocTypeLikeTagCreateFunction(343 /* SyntaxKind.JSDocTypeTag */); }, get updateJSDocTypeTag() { return getJSDocTypeLikeTagUpdateFunction(343 /* SyntaxKind.JSDocTypeTag */); }, get createJSDocReturnTag() { return getJSDocTypeLikeTagCreateFunction(341 /* SyntaxKind.JSDocReturnTag */); }, get updateJSDocReturnTag() { return getJSDocTypeLikeTagUpdateFunction(341 /* SyntaxKind.JSDocReturnTag */); }, get createJSDocThisTag() { return getJSDocTypeLikeTagCreateFunction(342 /* SyntaxKind.JSDocThisTag */); }, get updateJSDocThisTag() { return getJSDocTypeLikeTagUpdateFunction(342 /* SyntaxKind.JSDocThisTag */); }, get createJSDocEnumTag() { return getJSDocTypeLikeTagCreateFunction(339 /* SyntaxKind.JSDocEnumTag */); }, get updateJSDocEnumTag() { return getJSDocTypeLikeTagUpdateFunction(339 /* SyntaxKind.JSDocEnumTag */); }, get createJSDocAuthorTag() { return getJSDocSimpleTagCreateFunction(330 /* SyntaxKind.JSDocAuthorTag */); }, get updateJSDocAuthorTag() { return getJSDocSimpleTagUpdateFunction(330 /* SyntaxKind.JSDocAuthorTag */); }, get createJSDocClassTag() { return getJSDocSimpleTagCreateFunction(332 /* SyntaxKind.JSDocClassTag */); }, get updateJSDocClassTag() { return getJSDocSimpleTagUpdateFunction(332 /* SyntaxKind.JSDocClassTag */); }, get createJSDocPublicTag() { return getJSDocSimpleTagCreateFunction(333 /* SyntaxKind.JSDocPublicTag */); }, get updateJSDocPublicTag() { return getJSDocSimpleTagUpdateFunction(333 /* SyntaxKind.JSDocPublicTag */); }, get createJSDocPrivateTag() { return getJSDocSimpleTagCreateFunction(334 /* SyntaxKind.JSDocPrivateTag */); }, get updateJSDocPrivateTag() { return getJSDocSimpleTagUpdateFunction(334 /* SyntaxKind.JSDocPrivateTag */); }, get createJSDocProtectedTag() { return getJSDocSimpleTagCreateFunction(335 /* SyntaxKind.JSDocProtectedTag */); }, get updateJSDocProtectedTag() { return getJSDocSimpleTagUpdateFunction(335 /* SyntaxKind.JSDocProtectedTag */); }, get createJSDocReadonlyTag() { return getJSDocSimpleTagCreateFunction(336 /* SyntaxKind.JSDocReadonlyTag */); }, get updateJSDocReadonlyTag() { return getJSDocSimpleTagUpdateFunction(336 /* SyntaxKind.JSDocReadonlyTag */); }, get createJSDocOverrideTag() { return getJSDocSimpleTagCreateFunction(337 /* SyntaxKind.JSDocOverrideTag */); }, get updateJSDocOverrideTag() { return getJSDocSimpleTagUpdateFunction(337 /* SyntaxKind.JSDocOverrideTag */); }, get createJSDocDeprecatedTag() { return getJSDocSimpleTagCreateFunction(331 /* SyntaxKind.JSDocDeprecatedTag */); }, get updateJSDocDeprecatedTag() { return getJSDocSimpleTagUpdateFunction(331 /* SyntaxKind.JSDocDeprecatedTag */); }, createJSDocUnknownTag: createJSDocUnknownTag, updateJSDocUnknownTag: updateJSDocUnknownTag, createJSDocText: createJSDocText, updateJSDocText: updateJSDocText, createJSDocComment: createJSDocComment, updateJSDocComment: updateJSDocComment, createJsxElement: createJsxElement, updateJsxElement: updateJsxElement, createJsxSelfClosingElement: createJsxSelfClosingElement, updateJsxSelfClosingElement: updateJsxSelfClosingElement, createJsxOpeningElement: createJsxOpeningElement, updateJsxOpeningElement: updateJsxOpeningElement, createJsxClosingElement: createJsxClosingElement, updateJsxClosingElement: updateJsxClosingElement, createJsxFragment: createJsxFragment, createJsxText: createJsxText, updateJsxText: updateJsxText, createJsxOpeningFragment: createJsxOpeningFragment, createJsxJsxClosingFragment: createJsxJsxClosingFragment, updateJsxFragment: updateJsxFragment, createJsxAttribute: createJsxAttribute, updateJsxAttribute: updateJsxAttribute, createJsxAttributes: createJsxAttributes, updateJsxAttributes: updateJsxAttributes, createJsxSpreadAttribute: createJsxSpreadAttribute, updateJsxSpreadAttribute: updateJsxSpreadAttribute, createJsxExpression: createJsxExpression, updateJsxExpression: updateJsxExpression, createCaseClause: createCaseClause, updateCaseClause: updateCaseClause, createDefaultClause: createDefaultClause, updateDefaultClause: updateDefaultClause, createHeritageClause: createHeritageClause, updateHeritageClause: updateHeritageClause, createCatchClause: createCatchClause, updateCatchClause: updateCatchClause, createPropertyAssignment: createPropertyAssignment, updatePropertyAssignment: updatePropertyAssignment, createShorthandPropertyAssignment: createShorthandPropertyAssignment, updateShorthandPropertyAssignment: updateShorthandPropertyAssignment, createSpreadAssignment: createSpreadAssignment, updateSpreadAssignment: updateSpreadAssignment, createEnumMember: createEnumMember, updateEnumMember: updateEnumMember, createSourceFile: createSourceFile, updateSourceFile: updateSourceFile, createBundle: createBundle, updateBundle: updateBundle, createUnparsedSource: createUnparsedSource, createUnparsedPrologue: createUnparsedPrologue, createUnparsedPrepend: createUnparsedPrepend, createUnparsedTextLike: createUnparsedTextLike, createUnparsedSyntheticReference: createUnparsedSyntheticReference, createInputFiles: createInputFiles, createSyntheticExpression: createSyntheticExpression, createSyntaxList: createSyntaxList, createNotEmittedStatement: createNotEmittedStatement, createPartiallyEmittedExpression: createPartiallyEmittedExpression, updatePartiallyEmittedExpression: updatePartiallyEmittedExpression, createCommaListExpression: createCommaListExpression, updateCommaListExpression: updateCommaListExpression, createEndOfDeclarationMarker: createEndOfDeclarationMarker, createMergeDeclarationMarker: createMergeDeclarationMarker, createSyntheticReferenceExpression: createSyntheticReferenceExpression, updateSyntheticReferenceExpression: updateSyntheticReferenceExpression, cloneNode: cloneNode, // Lazily load factory methods for common operator factories and utilities get createComma() { return getBinaryCreateFunction(27 /* SyntaxKind.CommaToken */); }, get createAssignment() { return getBinaryCreateFunction(63 /* SyntaxKind.EqualsToken */); }, get createLogicalOr() { return getBinaryCreateFunction(56 /* SyntaxKind.BarBarToken */); }, get createLogicalAnd() { return getBinaryCreateFunction(55 /* SyntaxKind.AmpersandAmpersandToken */); }, get createBitwiseOr() { return getBinaryCreateFunction(51 /* SyntaxKind.BarToken */); }, get createBitwiseXor() { return getBinaryCreateFunction(52 /* SyntaxKind.CaretToken */); }, get createBitwiseAnd() { return getBinaryCreateFunction(50 /* SyntaxKind.AmpersandToken */); }, get createStrictEquality() { return getBinaryCreateFunction(36 /* SyntaxKind.EqualsEqualsEqualsToken */); }, get createStrictInequality() { return getBinaryCreateFunction(37 /* SyntaxKind.ExclamationEqualsEqualsToken */); }, get createEquality() { return getBinaryCreateFunction(34 /* SyntaxKind.EqualsEqualsToken */); }, get createInequality() { return getBinaryCreateFunction(35 /* SyntaxKind.ExclamationEqualsToken */); }, get createLessThan() { return getBinaryCreateFunction(29 /* SyntaxKind.LessThanToken */); }, get createLessThanEquals() { return getBinaryCreateFunction(32 /* SyntaxKind.LessThanEqualsToken */); }, get createGreaterThan() { return getBinaryCreateFunction(31 /* SyntaxKind.GreaterThanToken */); }, get createGreaterThanEquals() { return getBinaryCreateFunction(33 /* SyntaxKind.GreaterThanEqualsToken */); }, get createLeftShift() { return getBinaryCreateFunction(47 /* SyntaxKind.LessThanLessThanToken */); }, get createRightShift() { return getBinaryCreateFunction(48 /* SyntaxKind.GreaterThanGreaterThanToken */); }, get createUnsignedRightShift() { return getBinaryCreateFunction(49 /* SyntaxKind.GreaterThanGreaterThanGreaterThanToken */); }, get createAdd() { return getBinaryCreateFunction(39 /* SyntaxKind.PlusToken */); }, get createSubtract() { return getBinaryCreateFunction(40 /* SyntaxKind.MinusToken */); }, get createMultiply() { return getBinaryCreateFunction(41 /* SyntaxKind.AsteriskToken */); }, get createDivide() { return getBinaryCreateFunction(43 /* SyntaxKind.SlashToken */); }, get createModulo() { return getBinaryCreateFunction(44 /* SyntaxKind.PercentToken */); }, get createExponent() { return getBinaryCreateFunction(42 /* SyntaxKind.AsteriskAsteriskToken */); }, get createPrefixPlus() { return getPrefixUnaryCreateFunction(39 /* SyntaxKind.PlusToken */); }, get createPrefixMinus() { return getPrefixUnaryCreateFunction(40 /* SyntaxKind.MinusToken */); }, get createPrefixIncrement() { return getPrefixUnaryCreateFunction(45 /* SyntaxKind.PlusPlusToken */); }, get createPrefixDecrement() { return getPrefixUnaryCreateFunction(46 /* SyntaxKind.MinusMinusToken */); }, get createBitwiseNot() { return getPrefixUnaryCreateFunction(54 /* SyntaxKind.TildeToken */); }, get createLogicalNot() { return getPrefixUnaryCreateFunction(53 /* SyntaxKind.ExclamationToken */); }, get createPostfixIncrement() { return getPostfixUnaryCreateFunction(45 /* SyntaxKind.PlusPlusToken */); }, get createPostfixDecrement() { return getPostfixUnaryCreateFunction(46 /* SyntaxKind.MinusMinusToken */); }, // Compound nodes createImmediatelyInvokedFunctionExpression: createImmediatelyInvokedFunctionExpression, createImmediatelyInvokedArrowFunction: createImmediatelyInvokedArrowFunction, createVoidZero: createVoidZero, createExportDefault: createExportDefault, createExternalModuleExport: createExternalModuleExport, createTypeCheck: createTypeCheck, createMethodCall: createMethodCall, createGlobalMethodCall: createGlobalMethodCall, createFunctionBindCall: createFunctionBindCall, createFunctionCallCall: createFunctionCallCall, createFunctionApplyCall: createFunctionApplyCall, createArraySliceCall: createArraySliceCall, createArrayConcatCall: createArrayConcatCall, createObjectDefinePropertyCall: createObjectDefinePropertyCall, createReflectGetCall: createReflectGetCall, createReflectSetCall: createReflectSetCall, createPropertyDescriptor: createPropertyDescriptor, createCallBinding: createCallBinding, createAssignmentTargetWrapper: createAssignmentTargetWrapper, // Utilities inlineExpressions: inlineExpressions, getInternalName: getInternalName, getLocalName: getLocalName, getExportName: getExportName, getDeclarationName: getDeclarationName, getNamespaceMemberName: getNamespaceMemberName, getExternalModuleOrNamespaceExportName: getExternalModuleOrNamespaceExportName, restoreOuterExpressions: restoreOuterExpressions, restoreEnclosingLabel: restoreEnclosingLabel, createUseStrictPrologue: createUseStrictPrologue, copyPrologue: copyPrologue, copyStandardPrologue: copyStandardPrologue, copyCustomPrologue: copyCustomPrologue, ensureUseStrict: ensureUseStrict, liftToBlock: liftToBlock, mergeLexicalEnvironment: mergeLexicalEnvironment, updateModifiers: updateModifiers, }; return factory; // @api function createNodeArray(elements, hasTrailingComma) { if (elements === undefined || elements === ts.emptyArray) { elements = []; } else if (ts.isNodeArray(elements)) { if (hasTrailingComma === undefined || elements.hasTrailingComma === hasTrailingComma) { // Ensure the transform flags have been aggregated for this NodeArray if (elements.transformFlags === undefined) { aggregateChildrenFlags(elements); } ts.Debug.attachNodeArrayDebugInfo(elements); return elements; } // This *was* a `NodeArray`, but the `hasTrailingComma` option differs. Recreate the // array with the same elements, text range, and transform flags but with the updated // value for `hasTrailingComma` var array_8 = elements.slice(); array_8.pos = elements.pos; array_8.end = elements.end; array_8.hasTrailingComma = hasTrailingComma; array_8.transformFlags = elements.transformFlags; ts.Debug.attachNodeArrayDebugInfo(array_8); return array_8; } // Since the element list of a node array is typically created by starting with an empty array and // repeatedly calling push(), the list may not have the optimal memory layout. We invoke slice() for // small arrays (1 to 4 elements) to give the VM a chance to allocate an optimal representation. var length = elements.length; var array = (length >= 1 && length <= 4 ? elements.slice() : elements); ts.setTextRangePosEnd(array, -1, -1); array.hasTrailingComma = !!hasTrailingComma; aggregateChildrenFlags(array); ts.Debug.attachNodeArrayDebugInfo(array); return array; } function createBaseNode(kind) { return baseFactory.createBaseNode(kind); } function createBaseDeclaration(kind, decorators, modifiers) { var node = createBaseNode(kind); node.decorators = asNodeArray(decorators); node.modifiers = asNodeArray(modifiers); node.transformFlags |= propagateChildrenFlags(node.decorators) | propagateChildrenFlags(node.modifiers); // NOTE: The following properties are commonly set by the binder and are added here to // ensure declarations have a stable shape. node.symbol = undefined; // initialized by binder node.localSymbol = undefined; // initialized by binder node.locals = undefined; // initialized by binder node.nextContainer = undefined; // initialized by binder return node; } function createBaseNamedDeclaration(kind, decorators, modifiers, name) { var node = createBaseDeclaration(kind, decorators, modifiers); name = asName(name); node.name = name; // The PropertyName of a member is allowed to be `await`. // We don't need to exclude `await` for type signatures since types // don't propagate child flags. if (name) { switch (node.kind) { case 169 /* SyntaxKind.MethodDeclaration */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 167 /* SyntaxKind.PropertyDeclaration */: case 296 /* SyntaxKind.PropertyAssignment */: if (ts.isIdentifier(name)) { node.transformFlags |= propagateIdentifierNameFlags(name); break; } // fall through default: node.transformFlags |= propagateChildFlags(name); break; } } return node; } function createBaseGenericNamedDeclaration(kind, decorators, modifiers, name, typeParameters) { var node = createBaseNamedDeclaration(kind, decorators, modifiers, name); node.typeParameters = asNodeArray(typeParameters); node.transformFlags |= propagateChildrenFlags(node.typeParameters); if (typeParameters) node.transformFlags |= 1 /* TransformFlags.ContainsTypeScript */; return node; } function createBaseSignatureDeclaration(kind, decorators, modifiers, name, typeParameters, parameters, type) { var node = createBaseGenericNamedDeclaration(kind, decorators, modifiers, name, typeParameters); node.parameters = createNodeArray(parameters); node.type = type; node.transformFlags |= propagateChildrenFlags(node.parameters) | propagateChildFlags(node.type); if (type) node.transformFlags |= 1 /* TransformFlags.ContainsTypeScript */; return node; } function updateBaseSignatureDeclaration(updated, original) { // copy children used only for error reporting if (original.typeArguments) updated.typeArguments = original.typeArguments; return update(updated, original); } function createBaseFunctionLikeDeclaration(kind, decorators, modifiers, name, typeParameters, parameters, type, body) { var node = createBaseSignatureDeclaration(kind, decorators, modifiers, name, typeParameters, parameters, type); node.body = body; node.transformFlags |= propagateChildFlags(node.body) & ~16777216 /* TransformFlags.ContainsPossibleTopLevelAwait */; if (!body) node.transformFlags |= 1 /* TransformFlags.ContainsTypeScript */; return node; } function updateBaseFunctionLikeDeclaration(updated, original) { // copy children used only for error reporting if (original.exclamationToken) updated.exclamationToken = original.exclamationToken; if (original.typeArguments) updated.typeArguments = original.typeArguments; return updateBaseSignatureDeclaration(updated, original); } function createBaseInterfaceOrClassLikeDeclaration(kind, decorators, modifiers, name, typeParameters, heritageClauses) { var node = createBaseGenericNamedDeclaration(kind, decorators, modifiers, name, typeParameters); node.heritageClauses = asNodeArray(heritageClauses); node.transformFlags |= propagateChildrenFlags(node.heritageClauses); return node; } function createBaseClassLikeDeclaration(kind, decorators, modifiers, name, typeParameters, heritageClauses, members) { var node = createBaseInterfaceOrClassLikeDeclaration(kind, decorators, modifiers, name, typeParameters, heritageClauses); node.members = createNodeArray(members); node.transformFlags |= propagateChildrenFlags(node.members); return node; } function createBaseBindingLikeDeclaration(kind, decorators, modifiers, name, initializer) { var node = createBaseNamedDeclaration(kind, decorators, modifiers, name); node.initializer = initializer; node.transformFlags |= propagateChildFlags(node.initializer); return node; } function createBaseVariableLikeDeclaration(kind, decorators, modifiers, name, type, initializer) { var node = createBaseBindingLikeDeclaration(kind, decorators, modifiers, name, initializer); node.type = type; node.transformFlags |= propagateChildFlags(type); if (type) node.transformFlags |= 1 /* TransformFlags.ContainsTypeScript */; return node; } // // Literals // function createBaseLiteral(kind, text) { var node = createBaseToken(kind); node.text = text; return node; } // @api function createNumericLiteral(value, numericLiteralFlags) { if (numericLiteralFlags === void 0) { numericLiteralFlags = 0 /* TokenFlags.None */; } var node = createBaseLiteral(8 /* SyntaxKind.NumericLiteral */, typeof value === "number" ? value + "" : value); node.numericLiteralFlags = numericLiteralFlags; if (numericLiteralFlags & 384 /* TokenFlags.BinaryOrOctalSpecifier */) node.transformFlags |= 1024 /* TransformFlags.ContainsES2015 */; return node; } // @api function createBigIntLiteral(value) { var node = createBaseLiteral(9 /* SyntaxKind.BigIntLiteral */, typeof value === "string" ? value : ts.pseudoBigIntToString(value) + "n"); node.transformFlags |= 4 /* TransformFlags.ContainsESNext */; return node; } function createBaseStringLiteral(text, isSingleQuote) { var node = createBaseLiteral(10 /* SyntaxKind.StringLiteral */, text); node.singleQuote = isSingleQuote; return node; } // @api function createStringLiteral(text, isSingleQuote, hasExtendedUnicodeEscape) { var node = createBaseStringLiteral(text, isSingleQuote); node.hasExtendedUnicodeEscape = hasExtendedUnicodeEscape; if (hasExtendedUnicodeEscape) node.transformFlags |= 1024 /* TransformFlags.ContainsES2015 */; return node; } // @api function createStringLiteralFromNode(sourceNode) { var node = createBaseStringLiteral(ts.getTextOfIdentifierOrLiteral(sourceNode), /*isSingleQuote*/ undefined); node.textSourceNode = sourceNode; return node; } // @api function createRegularExpressionLiteral(text) { var node = createBaseLiteral(13 /* SyntaxKind.RegularExpressionLiteral */, text); return node; } // @api function createLiteralLikeNode(kind, text) { switch (kind) { case 8 /* SyntaxKind.NumericLiteral */: return createNumericLiteral(text, /*numericLiteralFlags*/ 0); case 9 /* SyntaxKind.BigIntLiteral */: return createBigIntLiteral(text); case 10 /* SyntaxKind.StringLiteral */: return createStringLiteral(text, /*isSingleQuote*/ undefined); case 11 /* SyntaxKind.JsxText */: return createJsxText(text, /*containsOnlyTriviaWhiteSpaces*/ false); case 12 /* SyntaxKind.JsxTextAllWhiteSpaces */: return createJsxText(text, /*containsOnlyTriviaWhiteSpaces*/ true); case 13 /* SyntaxKind.RegularExpressionLiteral */: return createRegularExpressionLiteral(text); case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: return createTemplateLiteralLikeNode(kind, text, /*rawText*/ undefined, /*templateFlags*/ 0); } } // // Identifiers // function createBaseIdentifier(text, originalKeywordKind) { if (originalKeywordKind === undefined && text) { originalKeywordKind = ts.stringToToken(text); } if (originalKeywordKind === 79 /* SyntaxKind.Identifier */) { originalKeywordKind = undefined; } var node = baseFactory.createBaseIdentifierNode(79 /* SyntaxKind.Identifier */); node.originalKeywordKind = originalKeywordKind; node.escapedText = ts.escapeLeadingUnderscores(text); return node; } function createBaseGeneratedIdentifier(text, autoGenerateFlags) { var node = createBaseIdentifier(text, /*originalKeywordKind*/ undefined); node.autoGenerateFlags = autoGenerateFlags; node.autoGenerateId = nextAutoGenerateId; nextAutoGenerateId++; return node; } // @api function createIdentifier(text, typeArguments, originalKeywordKind) { var node = createBaseIdentifier(text, originalKeywordKind); if (typeArguments) { // NOTE: we do not use `setChildren` here because typeArguments in an identifier do not contribute to transformations node.typeArguments = createNodeArray(typeArguments); } if (node.originalKeywordKind === 132 /* SyntaxKind.AwaitKeyword */) { node.transformFlags |= 16777216 /* TransformFlags.ContainsPossibleTopLevelAwait */; } return node; } // @api function updateIdentifier(node, typeArguments) { return node.typeArguments !== typeArguments ? update(createIdentifier(ts.idText(node), typeArguments), node) : node; } // @api function createTempVariable(recordTempVariable, reservedInNestedScopes) { var flags = 1 /* GeneratedIdentifierFlags.Auto */; if (reservedInNestedScopes) flags |= 8 /* GeneratedIdentifierFlags.ReservedInNestedScopes */; var name = createBaseGeneratedIdentifier("", flags); if (recordTempVariable) { recordTempVariable(name); } return name; } /** Create a unique temporary variable for use in a loop. */ // @api function createLoopVariable(reservedInNestedScopes) { var flags = 2 /* GeneratedIdentifierFlags.Loop */; if (reservedInNestedScopes) flags |= 8 /* GeneratedIdentifierFlags.ReservedInNestedScopes */; return createBaseGeneratedIdentifier("", flags); } /** Create a unique name based on the supplied text. */ // @api function createUniqueName(text, flags) { if (flags === void 0) { flags = 0 /* GeneratedIdentifierFlags.None */; } ts.Debug.assert(!(flags & 7 /* GeneratedIdentifierFlags.KindMask */), "Argument out of range: flags"); ts.Debug.assert((flags & (16 /* GeneratedIdentifierFlags.Optimistic */ | 32 /* GeneratedIdentifierFlags.FileLevel */)) !== 32 /* GeneratedIdentifierFlags.FileLevel */, "GeneratedIdentifierFlags.FileLevel cannot be set without also setting GeneratedIdentifierFlags.Optimistic"); return createBaseGeneratedIdentifier(text, 3 /* GeneratedIdentifierFlags.Unique */ | flags); } /** Create a unique name generated for a node. */ // @api function getGeneratedNameForNode(node, flags) { if (flags === void 0) { flags = 0; } ts.Debug.assert(!(flags & 7 /* GeneratedIdentifierFlags.KindMask */), "Argument out of range: flags"); var name = createBaseGeneratedIdentifier(node && ts.isIdentifier(node) ? ts.idText(node) : "", 4 /* GeneratedIdentifierFlags.Node */ | flags); name.original = node; return name; } // @api function createPrivateIdentifier(text) { if (!ts.startsWith(text, "#")) ts.Debug.fail("First character of private identifier must be #: " + text); var node = baseFactory.createBasePrivateIdentifierNode(80 /* SyntaxKind.PrivateIdentifier */); node.escapedText = ts.escapeLeadingUnderscores(text); node.transformFlags |= 8388608 /* TransformFlags.ContainsClassFields */; return node; } // // Punctuation // function createBaseToken(kind) { return baseFactory.createBaseTokenNode(kind); } function createToken(token) { ts.Debug.assert(token >= 0 /* SyntaxKind.FirstToken */ && token <= 160 /* SyntaxKind.LastToken */, "Invalid token"); ts.Debug.assert(token <= 14 /* SyntaxKind.FirstTemplateToken */ || token >= 17 /* SyntaxKind.LastTemplateToken */, "Invalid token. Use 'createTemplateLiteralLikeNode' to create template literals."); ts.Debug.assert(token <= 8 /* SyntaxKind.FirstLiteralToken */ || token >= 14 /* SyntaxKind.LastLiteralToken */, "Invalid token. Use 'createLiteralLikeNode' to create literals."); ts.Debug.assert(token !== 79 /* SyntaxKind.Identifier */, "Invalid token. Use 'createIdentifier' to create identifiers"); var node = createBaseToken(token); var transformFlags = 0 /* TransformFlags.None */; switch (token) { case 131 /* SyntaxKind.AsyncKeyword */: // 'async' modifier is ES2017 (async functions) or ES2018 (async generators) transformFlags = 256 /* TransformFlags.ContainsES2017 */ | 128 /* TransformFlags.ContainsES2018 */; break; case 123 /* SyntaxKind.PublicKeyword */: case 121 /* SyntaxKind.PrivateKeyword */: case 122 /* SyntaxKind.ProtectedKeyword */: case 145 /* SyntaxKind.ReadonlyKeyword */: case 126 /* SyntaxKind.AbstractKeyword */: case 135 /* SyntaxKind.DeclareKeyword */: case 85 /* SyntaxKind.ConstKeyword */: case 130 /* SyntaxKind.AnyKeyword */: case 147 /* SyntaxKind.NumberKeyword */: case 158 /* SyntaxKind.BigIntKeyword */: case 143 /* SyntaxKind.NeverKeyword */: case 148 /* SyntaxKind.ObjectKeyword */: case 101 /* SyntaxKind.InKeyword */: case 144 /* SyntaxKind.OutKeyword */: case 159 /* SyntaxKind.OverrideKeyword */: case 150 /* SyntaxKind.StringKeyword */: case 133 /* SyntaxKind.BooleanKeyword */: case 151 /* SyntaxKind.SymbolKeyword */: case 114 /* SyntaxKind.VoidKeyword */: case 155 /* SyntaxKind.UnknownKeyword */: case 153 /* SyntaxKind.UndefinedKeyword */: // `undefined` is an Identifier in the expression case. transformFlags = 1 /* TransformFlags.ContainsTypeScript */; break; case 106 /* SyntaxKind.SuperKeyword */: transformFlags = 1024 /* TransformFlags.ContainsES2015 */ | 33554432 /* TransformFlags.ContainsLexicalSuper */; break; case 124 /* SyntaxKind.StaticKeyword */: transformFlags = 1024 /* TransformFlags.ContainsES2015 */; break; case 108 /* SyntaxKind.ThisKeyword */: // 'this' indicates a lexical 'this' transformFlags = 8192 /* TransformFlags.ContainsLexicalThis */; break; } if (transformFlags) { node.transformFlags |= transformFlags; } return node; } // // Reserved words // // @api function createSuper() { return createToken(106 /* SyntaxKind.SuperKeyword */); } // @api function createThis() { return createToken(108 /* SyntaxKind.ThisKeyword */); } // @api function createNull() { return createToken(104 /* SyntaxKind.NullKeyword */); } // @api function createTrue() { return createToken(110 /* SyntaxKind.TrueKeyword */); } // @api function createFalse() { return createToken(95 /* SyntaxKind.FalseKeyword */); } // // Modifiers // // @api function createModifier(kind) { return createToken(kind); } // @api function createModifiersFromModifierFlags(flags) { var result = []; if (flags & 1 /* ModifierFlags.Export */) result.push(createModifier(93 /* SyntaxKind.ExportKeyword */)); if (flags & 2 /* ModifierFlags.Ambient */) result.push(createModifier(135 /* SyntaxKind.DeclareKeyword */)); if (flags & 512 /* ModifierFlags.Default */) result.push(createModifier(88 /* SyntaxKind.DefaultKeyword */)); if (flags & 2048 /* ModifierFlags.Const */) result.push(createModifier(85 /* SyntaxKind.ConstKeyword */)); if (flags & 4 /* ModifierFlags.Public */) result.push(createModifier(123 /* SyntaxKind.PublicKeyword */)); if (flags & 8 /* ModifierFlags.Private */) result.push(createModifier(121 /* SyntaxKind.PrivateKeyword */)); if (flags & 16 /* ModifierFlags.Protected */) result.push(createModifier(122 /* SyntaxKind.ProtectedKeyword */)); if (flags & 128 /* ModifierFlags.Abstract */) result.push(createModifier(126 /* SyntaxKind.AbstractKeyword */)); if (flags & 32 /* ModifierFlags.Static */) result.push(createModifier(124 /* SyntaxKind.StaticKeyword */)); if (flags & 16384 /* ModifierFlags.Override */) result.push(createModifier(159 /* SyntaxKind.OverrideKeyword */)); if (flags & 64 /* ModifierFlags.Readonly */) result.push(createModifier(145 /* SyntaxKind.ReadonlyKeyword */)); if (flags & 256 /* ModifierFlags.Async */) result.push(createModifier(131 /* SyntaxKind.AsyncKeyword */)); if (flags & 32768 /* ModifierFlags.In */) result.push(createModifier(101 /* SyntaxKind.InKeyword */)); if (flags & 65536 /* ModifierFlags.Out */) result.push(createModifier(144 /* SyntaxKind.OutKeyword */)); return result.length ? result : undefined; } // // Names // // @api function createQualifiedName(left, right) { var node = createBaseNode(161 /* SyntaxKind.QualifiedName */); node.left = left; node.right = asName(right); node.transformFlags |= propagateChildFlags(node.left) | propagateIdentifierNameFlags(node.right); return node; } // @api function updateQualifiedName(node, left, right) { return node.left !== left || node.right !== right ? update(createQualifiedName(left, right), node) : node; } // @api function createComputedPropertyName(expression) { var node = createBaseNode(162 /* SyntaxKind.ComputedPropertyName */); node.expression = parenthesizerRules().parenthesizeExpressionOfComputedPropertyName(expression); node.transformFlags |= propagateChildFlags(node.expression) | 1024 /* TransformFlags.ContainsES2015 */ | 65536 /* TransformFlags.ContainsComputedPropertyName */; return node; } // @api function updateComputedPropertyName(node, expression) { return node.expression !== expression ? update(createComputedPropertyName(expression), node) : node; } function createTypeParameterDeclaration(modifiersOrName, nameOrConstraint, constraintOrDefault, defaultType) { var name; var modifiers; var constraint; if (modifiersOrName === undefined || ts.isArray(modifiersOrName)) { modifiers = modifiersOrName; name = nameOrConstraint; constraint = constraintOrDefault; } else { modifiers = undefined; name = modifiersOrName; constraint = nameOrConstraint; } var node = createBaseNamedDeclaration(163 /* SyntaxKind.TypeParameter */, /*decorators*/ undefined, modifiers, name); node.constraint = constraint; node.default = defaultType; node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } function updateTypeParameterDeclaration(node, modifiersOrName, nameOrConstraint, constraintOrDefault, defaultType) { var name; var modifiers; var constraint; if (modifiersOrName === undefined || ts.isArray(modifiersOrName)) { modifiers = modifiersOrName; name = nameOrConstraint; constraint = constraintOrDefault; } else { modifiers = undefined; name = modifiersOrName; constraint = nameOrConstraint; } return node.modifiers !== modifiers || node.name !== name || node.constraint !== constraint || node.default !== defaultType ? update(createTypeParameterDeclaration(modifiers, name, constraint, defaultType), node) : node; } // @api function createParameterDeclaration(decorators, modifiers, dotDotDotToken, name, questionToken, type, initializer) { var node = createBaseVariableLikeDeclaration(164 /* SyntaxKind.Parameter */, decorators, modifiers, name, type, initializer && parenthesizerRules().parenthesizeExpressionForDisallowedComma(initializer)); node.dotDotDotToken = dotDotDotToken; node.questionToken = questionToken; if (ts.isThisIdentifier(node.name)) { node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; } else { node.transformFlags |= propagateChildFlags(node.dotDotDotToken) | propagateChildFlags(node.questionToken); if (questionToken) node.transformFlags |= 1 /* TransformFlags.ContainsTypeScript */; if (ts.modifiersToFlags(node.modifiers) & 16476 /* ModifierFlags.ParameterPropertyModifier */) node.transformFlags |= 4096 /* TransformFlags.ContainsTypeScriptClassSyntax */; if (initializer || dotDotDotToken) node.transformFlags |= 1024 /* TransformFlags.ContainsES2015 */; } return node; } // @api function updateParameterDeclaration(node, decorators, modifiers, dotDotDotToken, name, questionToken, type, initializer) { return node.decorators !== decorators || node.modifiers !== modifiers || node.dotDotDotToken !== dotDotDotToken || node.name !== name || node.questionToken !== questionToken || node.type !== type || node.initializer !== initializer ? update(createParameterDeclaration(decorators, modifiers, dotDotDotToken, name, questionToken, type, initializer), node) : node; } // @api function createDecorator(expression) { var node = createBaseNode(165 /* SyntaxKind.Decorator */); node.expression = parenthesizerRules().parenthesizeLeftSideOfAccess(expression); node.transformFlags |= propagateChildFlags(node.expression) | 1 /* TransformFlags.ContainsTypeScript */ | 4096 /* TransformFlags.ContainsTypeScriptClassSyntax */; return node; } // @api function updateDecorator(node, expression) { return node.expression !== expression ? update(createDecorator(expression), node) : node; } // // Type Elements // // @api function createPropertySignature(modifiers, name, questionToken, type) { var node = createBaseNamedDeclaration(166 /* SyntaxKind.PropertySignature */, /*decorators*/ undefined, modifiers, name); node.type = type; node.questionToken = questionToken; node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updatePropertySignature(node, modifiers, name, questionToken, type) { return node.modifiers !== modifiers || node.name !== name || node.questionToken !== questionToken || node.type !== type ? update(createPropertySignature(modifiers, name, questionToken, type), node) : node; } // @api function createPropertyDeclaration(decorators, modifiers, name, questionOrExclamationToken, type, initializer) { var node = createBaseVariableLikeDeclaration(167 /* SyntaxKind.PropertyDeclaration */, decorators, modifiers, name, type, initializer); node.questionToken = questionOrExclamationToken && ts.isQuestionToken(questionOrExclamationToken) ? questionOrExclamationToken : undefined; node.exclamationToken = questionOrExclamationToken && ts.isExclamationToken(questionOrExclamationToken) ? questionOrExclamationToken : undefined; node.transformFlags |= propagateChildFlags(node.questionToken) | propagateChildFlags(node.exclamationToken) | 8388608 /* TransformFlags.ContainsClassFields */; if (ts.isComputedPropertyName(node.name) || (ts.hasStaticModifier(node) && node.initializer)) { node.transformFlags |= 4096 /* TransformFlags.ContainsTypeScriptClassSyntax */; } if (questionOrExclamationToken || ts.modifiersToFlags(node.modifiers) & 2 /* ModifierFlags.Ambient */) { node.transformFlags |= 1 /* TransformFlags.ContainsTypeScript */; } return node; } // @api function updatePropertyDeclaration(node, decorators, modifiers, name, questionOrExclamationToken, type, initializer) { return node.decorators !== decorators || node.modifiers !== modifiers || node.name !== name || node.questionToken !== (questionOrExclamationToken !== undefined && ts.isQuestionToken(questionOrExclamationToken) ? questionOrExclamationToken : undefined) || node.exclamationToken !== (questionOrExclamationToken !== undefined && ts.isExclamationToken(questionOrExclamationToken) ? questionOrExclamationToken : undefined) || node.type !== type || node.initializer !== initializer ? update(createPropertyDeclaration(decorators, modifiers, name, questionOrExclamationToken, type, initializer), node) : node; } // @api function createMethodSignature(modifiers, name, questionToken, typeParameters, parameters, type) { var node = createBaseSignatureDeclaration(168 /* SyntaxKind.MethodSignature */, /*decorators*/ undefined, modifiers, name, typeParameters, parameters, type); node.questionToken = questionToken; node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateMethodSignature(node, modifiers, name, questionToken, typeParameters, parameters, type) { return node.modifiers !== modifiers || node.name !== name || node.questionToken !== questionToken || node.typeParameters !== typeParameters || node.parameters !== parameters || node.type !== type ? updateBaseSignatureDeclaration(createMethodSignature(modifiers, name, questionToken, typeParameters, parameters, type), node) : node; } // @api function createMethodDeclaration(decorators, modifiers, asteriskToken, name, questionToken, typeParameters, parameters, type, body) { var node = createBaseFunctionLikeDeclaration(169 /* SyntaxKind.MethodDeclaration */, decorators, modifiers, name, typeParameters, parameters, type, body); node.asteriskToken = asteriskToken; node.questionToken = questionToken; node.transformFlags |= propagateChildFlags(node.asteriskToken) | propagateChildFlags(node.questionToken) | 1024 /* TransformFlags.ContainsES2015 */; if (questionToken) { node.transformFlags |= 1 /* TransformFlags.ContainsTypeScript */; } if (ts.modifiersToFlags(node.modifiers) & 256 /* ModifierFlags.Async */) { if (asteriskToken) { node.transformFlags |= 128 /* TransformFlags.ContainsES2018 */; } else { node.transformFlags |= 256 /* TransformFlags.ContainsES2017 */; } } else if (asteriskToken) { node.transformFlags |= 2048 /* TransformFlags.ContainsGenerator */; } return node; } // @api function updateMethodDeclaration(node, decorators, modifiers, asteriskToken, name, questionToken, typeParameters, parameters, type, body) { return node.decorators !== decorators || node.modifiers !== modifiers || node.asteriskToken !== asteriskToken || node.name !== name || node.questionToken !== questionToken || node.typeParameters !== typeParameters || node.parameters !== parameters || node.type !== type || node.body !== body ? updateBaseFunctionLikeDeclaration(createMethodDeclaration(decorators, modifiers, asteriskToken, name, questionToken, typeParameters, parameters, type, body), node) : node; } // @api function createClassStaticBlockDeclaration(decorators, modifiers, body) { var node = createBaseGenericNamedDeclaration(170 /* SyntaxKind.ClassStaticBlockDeclaration */, decorators, modifiers, /*name*/ undefined, /*typeParameters*/ undefined); node.body = body; node.transformFlags = propagateChildFlags(body) | 8388608 /* TransformFlags.ContainsClassFields */; return node; } // @api function updateClassStaticBlockDeclaration(node, decorators, modifiers, body) { return node.decorators !== decorators || node.modifier !== modifiers || node.body !== body ? update(createClassStaticBlockDeclaration(decorators, modifiers, body), node) : node; } // @api function createConstructorDeclaration(decorators, modifiers, parameters, body) { var node = createBaseFunctionLikeDeclaration(171 /* SyntaxKind.Constructor */, decorators, modifiers, /*name*/ undefined, /*typeParameters*/ undefined, parameters, /*type*/ undefined, body); node.transformFlags |= 1024 /* TransformFlags.ContainsES2015 */; return node; } // @api function updateConstructorDeclaration(node, decorators, modifiers, parameters, body) { return node.decorators !== decorators || node.modifiers !== modifiers || node.parameters !== parameters || node.body !== body ? updateBaseFunctionLikeDeclaration(createConstructorDeclaration(decorators, modifiers, parameters, body), node) : node; } // @api function createGetAccessorDeclaration(decorators, modifiers, name, parameters, type, body) { return createBaseFunctionLikeDeclaration(172 /* SyntaxKind.GetAccessor */, decorators, modifiers, name, /*typeParameters*/ undefined, parameters, type, body); } // @api function updateGetAccessorDeclaration(node, decorators, modifiers, name, parameters, type, body) { return node.decorators !== decorators || node.modifiers !== modifiers || node.name !== name || node.parameters !== parameters || node.type !== type || node.body !== body ? updateBaseFunctionLikeDeclaration(createGetAccessorDeclaration(decorators, modifiers, name, parameters, type, body), node) : node; } // @api function createSetAccessorDeclaration(decorators, modifiers, name, parameters, body) { return createBaseFunctionLikeDeclaration(173 /* SyntaxKind.SetAccessor */, decorators, modifiers, name, /*typeParameters*/ undefined, parameters, /*type*/ undefined, body); } // @api function updateSetAccessorDeclaration(node, decorators, modifiers, name, parameters, body) { return node.decorators !== decorators || node.modifiers !== modifiers || node.name !== name || node.parameters !== parameters || node.body !== body ? updateBaseFunctionLikeDeclaration(createSetAccessorDeclaration(decorators, modifiers, name, parameters, body), node) : node; } // @api function createCallSignature(typeParameters, parameters, type) { var node = createBaseSignatureDeclaration(174 /* SyntaxKind.CallSignature */, /*decorators*/ undefined, /*modifiers*/ undefined, /*name*/ undefined, typeParameters, parameters, type); node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateCallSignature(node, typeParameters, parameters, type) { return node.typeParameters !== typeParameters || node.parameters !== parameters || node.type !== type ? updateBaseSignatureDeclaration(createCallSignature(typeParameters, parameters, type), node) : node; } // @api function createConstructSignature(typeParameters, parameters, type) { var node = createBaseSignatureDeclaration(175 /* SyntaxKind.ConstructSignature */, /*decorators*/ undefined, /*modifiers*/ undefined, /*name*/ undefined, typeParameters, parameters, type); node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateConstructSignature(node, typeParameters, parameters, type) { return node.typeParameters !== typeParameters || node.parameters !== parameters || node.type !== type ? updateBaseSignatureDeclaration(createConstructSignature(typeParameters, parameters, type), node) : node; } // @api function createIndexSignature(decorators, modifiers, parameters, type) { var node = createBaseSignatureDeclaration(176 /* SyntaxKind.IndexSignature */, decorators, modifiers, /*name*/ undefined, /*typeParameters*/ undefined, parameters, type); node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateIndexSignature(node, decorators, modifiers, parameters, type) { return node.parameters !== parameters || node.type !== type || node.decorators !== decorators || node.modifiers !== modifiers ? updateBaseSignatureDeclaration(createIndexSignature(decorators, modifiers, parameters, type), node) : node; } // @api function createTemplateLiteralTypeSpan(type, literal) { var node = createBaseNode(199 /* SyntaxKind.TemplateLiteralTypeSpan */); node.type = type; node.literal = literal; node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateTemplateLiteralTypeSpan(node, type, literal) { return node.type !== type || node.literal !== literal ? update(createTemplateLiteralTypeSpan(type, literal), node) : node; } // // Types // // @api function createKeywordTypeNode(kind) { return createToken(kind); } // @api function createTypePredicateNode(assertsModifier, parameterName, type) { var node = createBaseNode(177 /* SyntaxKind.TypePredicate */); node.assertsModifier = assertsModifier; node.parameterName = asName(parameterName); node.type = type; node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateTypePredicateNode(node, assertsModifier, parameterName, type) { return node.assertsModifier !== assertsModifier || node.parameterName !== parameterName || node.type !== type ? update(createTypePredicateNode(assertsModifier, parameterName, type), node) : node; } // @api function createTypeReferenceNode(typeName, typeArguments) { var node = createBaseNode(178 /* SyntaxKind.TypeReference */); node.typeName = asName(typeName); node.typeArguments = typeArguments && parenthesizerRules().parenthesizeTypeArguments(createNodeArray(typeArguments)); node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateTypeReferenceNode(node, typeName, typeArguments) { return node.typeName !== typeName || node.typeArguments !== typeArguments ? update(createTypeReferenceNode(typeName, typeArguments), node) : node; } // @api function createFunctionTypeNode(typeParameters, parameters, type) { var node = createBaseSignatureDeclaration(179 /* SyntaxKind.FunctionType */, /*decorators*/ undefined, /*modifiers*/ undefined, /*name*/ undefined, typeParameters, parameters, type); node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateFunctionTypeNode(node, typeParameters, parameters, type) { return node.typeParameters !== typeParameters || node.parameters !== parameters || node.type !== type ? updateBaseSignatureDeclaration(createFunctionTypeNode(typeParameters, parameters, type), node) : node; } // @api function createConstructorTypeNode() { var args = []; for (var _i = 0; _i < arguments.length; _i++) { args[_i] = arguments[_i]; } return args.length === 4 ? createConstructorTypeNode1.apply(void 0, args) : args.length === 3 ? createConstructorTypeNode2.apply(void 0, args) : ts.Debug.fail("Incorrect number of arguments specified."); } function createConstructorTypeNode1(modifiers, typeParameters, parameters, type) { var node = createBaseSignatureDeclaration(180 /* SyntaxKind.ConstructorType */, /*decorators*/ undefined, modifiers, /*name*/ undefined, typeParameters, parameters, type); node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } /** @deprecated */ function createConstructorTypeNode2(typeParameters, parameters, type) { return createConstructorTypeNode1(/*modifiers*/ undefined, typeParameters, parameters, type); } // @api function updateConstructorTypeNode() { var args = []; for (var _i = 0; _i < arguments.length; _i++) { args[_i] = arguments[_i]; } return args.length === 5 ? updateConstructorTypeNode1.apply(void 0, args) : args.length === 4 ? updateConstructorTypeNode2.apply(void 0, args) : ts.Debug.fail("Incorrect number of arguments specified."); } function updateConstructorTypeNode1(node, modifiers, typeParameters, parameters, type) { return node.modifiers !== modifiers || node.typeParameters !== typeParameters || node.parameters !== parameters || node.type !== type ? updateBaseSignatureDeclaration(createConstructorTypeNode(modifiers, typeParameters, parameters, type), node) : node; } /** @deprecated */ function updateConstructorTypeNode2(node, typeParameters, parameters, type) { return updateConstructorTypeNode1(node, node.modifiers, typeParameters, parameters, type); } // @api function createTypeQueryNode(exprName, typeArguments) { var node = createBaseNode(181 /* SyntaxKind.TypeQuery */); node.exprName = exprName; node.typeArguments = typeArguments && parenthesizerRules().parenthesizeTypeArguments(typeArguments); node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateTypeQueryNode(node, exprName, typeArguments) { return node.exprName !== exprName || node.typeArguments !== typeArguments ? update(createTypeQueryNode(exprName, typeArguments), node) : node; } // @api function createTypeLiteralNode(members) { var node = createBaseNode(182 /* SyntaxKind.TypeLiteral */); node.members = createNodeArray(members); node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateTypeLiteralNode(node, members) { return node.members !== members ? update(createTypeLiteralNode(members), node) : node; } // @api function createArrayTypeNode(elementType) { var node = createBaseNode(183 /* SyntaxKind.ArrayType */); node.elementType = parenthesizerRules().parenthesizeNonArrayTypeOfPostfixType(elementType); node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateArrayTypeNode(node, elementType) { return node.elementType !== elementType ? update(createArrayTypeNode(elementType), node) : node; } // @api function createTupleTypeNode(elements) { var node = createBaseNode(184 /* SyntaxKind.TupleType */); node.elements = createNodeArray(parenthesizerRules().parenthesizeElementTypesOfTupleType(elements)); node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateTupleTypeNode(node, elements) { return node.elements !== elements ? update(createTupleTypeNode(elements), node) : node; } // @api function createNamedTupleMember(dotDotDotToken, name, questionToken, type) { var node = createBaseNode(197 /* SyntaxKind.NamedTupleMember */); node.dotDotDotToken = dotDotDotToken; node.name = name; node.questionToken = questionToken; node.type = type; node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateNamedTupleMember(node, dotDotDotToken, name, questionToken, type) { return node.dotDotDotToken !== dotDotDotToken || node.name !== name || node.questionToken !== questionToken || node.type !== type ? update(createNamedTupleMember(dotDotDotToken, name, questionToken, type), node) : node; } // @api function createOptionalTypeNode(type) { var node = createBaseNode(185 /* SyntaxKind.OptionalType */); node.type = parenthesizerRules().parenthesizeTypeOfOptionalType(type); node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateOptionalTypeNode(node, type) { return node.type !== type ? update(createOptionalTypeNode(type), node) : node; } // @api function createRestTypeNode(type) { var node = createBaseNode(186 /* SyntaxKind.RestType */); node.type = type; node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateRestTypeNode(node, type) { return node.type !== type ? update(createRestTypeNode(type), node) : node; } function createUnionOrIntersectionTypeNode(kind, types, parenthesize) { var node = createBaseNode(kind); node.types = factory.createNodeArray(parenthesize(types)); node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } function updateUnionOrIntersectionTypeNode(node, types, parenthesize) { return node.types !== types ? update(createUnionOrIntersectionTypeNode(node.kind, types, parenthesize), node) : node; } // @api function createUnionTypeNode(types) { return createUnionOrIntersectionTypeNode(187 /* SyntaxKind.UnionType */, types, parenthesizerRules().parenthesizeConstituentTypesOfUnionType); } // @api function updateUnionTypeNode(node, types) { return updateUnionOrIntersectionTypeNode(node, types, parenthesizerRules().parenthesizeConstituentTypesOfUnionType); } // @api function createIntersectionTypeNode(types) { return createUnionOrIntersectionTypeNode(188 /* SyntaxKind.IntersectionType */, types, parenthesizerRules().parenthesizeConstituentTypesOfIntersectionType); } // @api function updateIntersectionTypeNode(node, types) { return updateUnionOrIntersectionTypeNode(node, types, parenthesizerRules().parenthesizeConstituentTypesOfIntersectionType); } // @api function createConditionalTypeNode(checkType, extendsType, trueType, falseType) { var node = createBaseNode(189 /* SyntaxKind.ConditionalType */); node.checkType = parenthesizerRules().parenthesizeCheckTypeOfConditionalType(checkType); node.extendsType = parenthesizerRules().parenthesizeExtendsTypeOfConditionalType(extendsType); node.trueType = trueType; node.falseType = falseType; node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateConditionalTypeNode(node, checkType, extendsType, trueType, falseType) { return node.checkType !== checkType || node.extendsType !== extendsType || node.trueType !== trueType || node.falseType !== falseType ? update(createConditionalTypeNode(checkType, extendsType, trueType, falseType), node) : node; } // @api function createInferTypeNode(typeParameter) { var node = createBaseNode(190 /* SyntaxKind.InferType */); node.typeParameter = typeParameter; node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateInferTypeNode(node, typeParameter) { return node.typeParameter !== typeParameter ? update(createInferTypeNode(typeParameter), node) : node; } // @api function createTemplateLiteralType(head, templateSpans) { var node = createBaseNode(198 /* SyntaxKind.TemplateLiteralType */); node.head = head; node.templateSpans = createNodeArray(templateSpans); node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateTemplateLiteralType(node, head, templateSpans) { return node.head !== head || node.templateSpans !== templateSpans ? update(createTemplateLiteralType(head, templateSpans), node) : node; } function createImportTypeNode(argument, qualifierOrAssertions, typeArgumentsOrQualifier, isTypeOfOrTypeArguments, isTypeOf) { var assertion = qualifierOrAssertions && qualifierOrAssertions.kind === 295 /* SyntaxKind.ImportTypeAssertionContainer */ ? qualifierOrAssertions : undefined; var qualifier = qualifierOrAssertions && ts.isEntityName(qualifierOrAssertions) ? qualifierOrAssertions : typeArgumentsOrQualifier && !ts.isArray(typeArgumentsOrQualifier) ? typeArgumentsOrQualifier : undefined; var typeArguments = ts.isArray(typeArgumentsOrQualifier) ? typeArgumentsOrQualifier : ts.isArray(isTypeOfOrTypeArguments) ? isTypeOfOrTypeArguments : undefined; isTypeOf = typeof isTypeOfOrTypeArguments === "boolean" ? isTypeOfOrTypeArguments : typeof isTypeOf === "boolean" ? isTypeOf : false; var node = createBaseNode(200 /* SyntaxKind.ImportType */); node.argument = argument; node.assertions = assertion; node.qualifier = qualifier; node.typeArguments = typeArguments && parenthesizerRules().parenthesizeTypeArguments(typeArguments); node.isTypeOf = isTypeOf; node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } function updateImportTypeNode(node, argument, qualifierOrAssertions, typeArgumentsOrQualifier, isTypeOfOrTypeArguments, isTypeOf) { var assertion = qualifierOrAssertions && qualifierOrAssertions.kind === 295 /* SyntaxKind.ImportTypeAssertionContainer */ ? qualifierOrAssertions : undefined; var qualifier = qualifierOrAssertions && ts.isEntityName(qualifierOrAssertions) ? qualifierOrAssertions : typeArgumentsOrQualifier && !ts.isArray(typeArgumentsOrQualifier) ? typeArgumentsOrQualifier : undefined; var typeArguments = ts.isArray(typeArgumentsOrQualifier) ? typeArgumentsOrQualifier : ts.isArray(isTypeOfOrTypeArguments) ? isTypeOfOrTypeArguments : undefined; isTypeOf = typeof isTypeOfOrTypeArguments === "boolean" ? isTypeOfOrTypeArguments : typeof isTypeOf === "boolean" ? isTypeOf : node.isTypeOf; return node.argument !== argument || node.assertions !== assertion || node.qualifier !== qualifier || node.typeArguments !== typeArguments || node.isTypeOf !== isTypeOf ? update(createImportTypeNode(argument, assertion, qualifier, typeArguments, isTypeOf), node) : node; } // @api function createParenthesizedType(type) { var node = createBaseNode(191 /* SyntaxKind.ParenthesizedType */); node.type = type; node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateParenthesizedType(node, type) { return node.type !== type ? update(createParenthesizedType(type), node) : node; } // @api function createThisTypeNode() { var node = createBaseNode(192 /* SyntaxKind.ThisType */); node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function createTypeOperatorNode(operator, type) { var node = createBaseNode(193 /* SyntaxKind.TypeOperator */); node.operator = operator; node.type = operator === 145 /* SyntaxKind.ReadonlyKeyword */ ? parenthesizerRules().parenthesizeOperandOfReadonlyTypeOperator(type) : parenthesizerRules().parenthesizeOperandOfTypeOperator(type); node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateTypeOperatorNode(node, type) { return node.type !== type ? update(createTypeOperatorNode(node.operator, type), node) : node; } // @api function createIndexedAccessTypeNode(objectType, indexType) { var node = createBaseNode(194 /* SyntaxKind.IndexedAccessType */); node.objectType = parenthesizerRules().parenthesizeNonArrayTypeOfPostfixType(objectType); node.indexType = indexType; node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateIndexedAccessTypeNode(node, objectType, indexType) { return node.objectType !== objectType || node.indexType !== indexType ? update(createIndexedAccessTypeNode(objectType, indexType), node) : node; } // @api function createMappedTypeNode(readonlyToken, typeParameter, nameType, questionToken, type, members) { var node = createBaseNode(195 /* SyntaxKind.MappedType */); node.readonlyToken = readonlyToken; node.typeParameter = typeParameter; node.nameType = nameType; node.questionToken = questionToken; node.type = type; node.members = members && createNodeArray(members); node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateMappedTypeNode(node, readonlyToken, typeParameter, nameType, questionToken, type, members) { return node.readonlyToken !== readonlyToken || node.typeParameter !== typeParameter || node.nameType !== nameType || node.questionToken !== questionToken || node.type !== type || node.members !== members ? update(createMappedTypeNode(readonlyToken, typeParameter, nameType, questionToken, type, members), node) : node; } // @api function createLiteralTypeNode(literal) { var node = createBaseNode(196 /* SyntaxKind.LiteralType */); node.literal = literal; node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateLiteralTypeNode(node, literal) { return node.literal !== literal ? update(createLiteralTypeNode(literal), node) : node; } // // Binding Patterns // // @api function createObjectBindingPattern(elements) { var node = createBaseNode(201 /* SyntaxKind.ObjectBindingPattern */); node.elements = createNodeArray(elements); node.transformFlags |= propagateChildrenFlags(node.elements) | 1024 /* TransformFlags.ContainsES2015 */ | 262144 /* TransformFlags.ContainsBindingPattern */; if (node.transformFlags & 16384 /* TransformFlags.ContainsRestOrSpread */) { node.transformFlags |= 128 /* TransformFlags.ContainsES2018 */ | 32768 /* TransformFlags.ContainsObjectRestOrSpread */; } return node; } // @api function updateObjectBindingPattern(node, elements) { return node.elements !== elements ? update(createObjectBindingPattern(elements), node) : node; } // @api function createArrayBindingPattern(elements) { var node = createBaseNode(202 /* SyntaxKind.ArrayBindingPattern */); node.elements = createNodeArray(elements); node.transformFlags |= propagateChildrenFlags(node.elements) | 1024 /* TransformFlags.ContainsES2015 */ | 262144 /* TransformFlags.ContainsBindingPattern */; return node; } // @api function updateArrayBindingPattern(node, elements) { return node.elements !== elements ? update(createArrayBindingPattern(elements), node) : node; } // @api function createBindingElement(dotDotDotToken, propertyName, name, initializer) { var node = createBaseBindingLikeDeclaration(203 /* SyntaxKind.BindingElement */, /*decorators*/ undefined, /*modifiers*/ undefined, name, initializer && parenthesizerRules().parenthesizeExpressionForDisallowedComma(initializer)); node.propertyName = asName(propertyName); node.dotDotDotToken = dotDotDotToken; node.transformFlags |= propagateChildFlags(node.dotDotDotToken) | 1024 /* TransformFlags.ContainsES2015 */; if (node.propertyName) { node.transformFlags |= ts.isIdentifier(node.propertyName) ? propagateIdentifierNameFlags(node.propertyName) : propagateChildFlags(node.propertyName); } if (dotDotDotToken) node.transformFlags |= 16384 /* TransformFlags.ContainsRestOrSpread */; return node; } // @api function updateBindingElement(node, dotDotDotToken, propertyName, name, initializer) { return node.propertyName !== propertyName || node.dotDotDotToken !== dotDotDotToken || node.name !== name || node.initializer !== initializer ? update(createBindingElement(dotDotDotToken, propertyName, name, initializer), node) : node; } // // Expression // function createBaseExpression(kind) { var node = createBaseNode(kind); // the following properties are commonly set by the checker/binder return node; } // @api function createArrayLiteralExpression(elements, multiLine) { var node = createBaseExpression(204 /* SyntaxKind.ArrayLiteralExpression */); // Ensure we add a trailing comma for something like `[NumericLiteral(1), NumericLiteral(2), OmittedExpresion]` so that // we end up with `[1, 2, ,]` instead of `[1, 2, ]` otherwise the `OmittedExpression` will just end up being treated like // a trailing comma. var lastElement = elements && ts.lastOrUndefined(elements); var elementsArray = createNodeArray(elements, lastElement && ts.isOmittedExpression(lastElement) ? true : undefined); node.elements = parenthesizerRules().parenthesizeExpressionsOfCommaDelimitedList(elementsArray); node.multiLine = multiLine; node.transformFlags |= propagateChildrenFlags(node.elements); return node; } // @api function updateArrayLiteralExpression(node, elements) { return node.elements !== elements ? update(createArrayLiteralExpression(elements, node.multiLine), node) : node; } // @api function createObjectLiteralExpression(properties, multiLine) { var node = createBaseExpression(205 /* SyntaxKind.ObjectLiteralExpression */); node.properties = createNodeArray(properties); node.multiLine = multiLine; node.transformFlags |= propagateChildrenFlags(node.properties); return node; } // @api function updateObjectLiteralExpression(node, properties) { return node.properties !== properties ? update(createObjectLiteralExpression(properties, node.multiLine), node) : node; } // @api function createPropertyAccessExpression(expression, name) { var node = createBaseExpression(206 /* SyntaxKind.PropertyAccessExpression */); node.expression = parenthesizerRules().parenthesizeLeftSideOfAccess(expression); node.name = asName(name); node.transformFlags = propagateChildFlags(node.expression) | (ts.isIdentifier(node.name) ? propagateIdentifierNameFlags(node.name) : propagateChildFlags(node.name)); if (ts.isSuperKeyword(expression)) { // super method calls require a lexical 'this' // super method calls require 'super' hoisting in ES2017 and ES2018 async functions and async generators node.transformFlags |= 256 /* TransformFlags.ContainsES2017 */ | 128 /* TransformFlags.ContainsES2018 */; } return node; } // @api function updatePropertyAccessExpression(node, expression, name) { if (ts.isPropertyAccessChain(node)) { return updatePropertyAccessChain(node, expression, node.questionDotToken, ts.cast(name, ts.isIdentifier)); } return node.expression !== expression || node.name !== name ? update(createPropertyAccessExpression(expression, name), node) : node; } // @api function createPropertyAccessChain(expression, questionDotToken, name) { var node = createBaseExpression(206 /* SyntaxKind.PropertyAccessExpression */); node.flags |= 32 /* NodeFlags.OptionalChain */; node.expression = parenthesizerRules().parenthesizeLeftSideOfAccess(expression); node.questionDotToken = questionDotToken; node.name = asName(name); node.transformFlags |= 32 /* TransformFlags.ContainsES2020 */ | propagateChildFlags(node.expression) | propagateChildFlags(node.questionDotToken) | (ts.isIdentifier(node.name) ? propagateIdentifierNameFlags(node.name) : propagateChildFlags(node.name)); return node; } // @api function updatePropertyAccessChain(node, expression, questionDotToken, name) { ts.Debug.assert(!!(node.flags & 32 /* NodeFlags.OptionalChain */), "Cannot update a PropertyAccessExpression using updatePropertyAccessChain. Use updatePropertyAccess instead."); // Because we are updating an existing PropertyAccessChain we want to inherit its emitFlags // instead of using the default from createPropertyAccess return node.expression !== expression || node.questionDotToken !== questionDotToken || node.name !== name ? update(createPropertyAccessChain(expression, questionDotToken, name), node) : node; } // @api function createElementAccessExpression(expression, index) { var node = createBaseExpression(207 /* SyntaxKind.ElementAccessExpression */); node.expression = parenthesizerRules().parenthesizeLeftSideOfAccess(expression); node.argumentExpression = asExpression(index); node.transformFlags |= propagateChildFlags(node.expression) | propagateChildFlags(node.argumentExpression); if (ts.isSuperKeyword(expression)) { // super method calls require a lexical 'this' // super method calls require 'super' hoisting in ES2017 and ES2018 async functions and async generators node.transformFlags |= 256 /* TransformFlags.ContainsES2017 */ | 128 /* TransformFlags.ContainsES2018 */; } return node; } // @api function updateElementAccessExpression(node, expression, argumentExpression) { if (ts.isElementAccessChain(node)) { return updateElementAccessChain(node, expression, node.questionDotToken, argumentExpression); } return node.expression !== expression || node.argumentExpression !== argumentExpression ? update(createElementAccessExpression(expression, argumentExpression), node) : node; } // @api function createElementAccessChain(expression, questionDotToken, index) { var node = createBaseExpression(207 /* SyntaxKind.ElementAccessExpression */); node.flags |= 32 /* NodeFlags.OptionalChain */; node.expression = parenthesizerRules().parenthesizeLeftSideOfAccess(expression); node.questionDotToken = questionDotToken; node.argumentExpression = asExpression(index); node.transformFlags |= propagateChildFlags(node.expression) | propagateChildFlags(node.questionDotToken) | propagateChildFlags(node.argumentExpression) | 32 /* TransformFlags.ContainsES2020 */; return node; } // @api function updateElementAccessChain(node, expression, questionDotToken, argumentExpression) { ts.Debug.assert(!!(node.flags & 32 /* NodeFlags.OptionalChain */), "Cannot update a ElementAccessExpression using updateElementAccessChain. Use updateElementAccess instead."); // Because we are updating an existing ElementAccessChain we want to inherit its emitFlags // instead of using the default from createElementAccess return node.expression !== expression || node.questionDotToken !== questionDotToken || node.argumentExpression !== argumentExpression ? update(createElementAccessChain(expression, questionDotToken, argumentExpression), node) : node; } // @api function createCallExpression(expression, typeArguments, argumentsArray) { var node = createBaseExpression(208 /* SyntaxKind.CallExpression */); node.expression = parenthesizerRules().parenthesizeLeftSideOfAccess(expression); node.typeArguments = asNodeArray(typeArguments); node.arguments = parenthesizerRules().parenthesizeExpressionsOfCommaDelimitedList(createNodeArray(argumentsArray)); node.transformFlags |= propagateChildFlags(node.expression) | propagateChildrenFlags(node.typeArguments) | propagateChildrenFlags(node.arguments); if (node.typeArguments) { node.transformFlags |= 1 /* TransformFlags.ContainsTypeScript */; } if (ts.isImportKeyword(node.expression)) { node.transformFlags |= 4194304 /* TransformFlags.ContainsDynamicImport */; } else if (ts.isSuperProperty(node.expression)) { node.transformFlags |= 8192 /* TransformFlags.ContainsLexicalThis */; } return node; } // @api function updateCallExpression(node, expression, typeArguments, argumentsArray) { if (ts.isCallChain(node)) { return updateCallChain(node, expression, node.questionDotToken, typeArguments, argumentsArray); } return node.expression !== expression || node.typeArguments !== typeArguments || node.arguments !== argumentsArray ? update(createCallExpression(expression, typeArguments, argumentsArray), node) : node; } // @api function createCallChain(expression, questionDotToken, typeArguments, argumentsArray) { var node = createBaseExpression(208 /* SyntaxKind.CallExpression */); node.flags |= 32 /* NodeFlags.OptionalChain */; node.expression = parenthesizerRules().parenthesizeLeftSideOfAccess(expression); node.questionDotToken = questionDotToken; node.typeArguments = asNodeArray(typeArguments); node.arguments = parenthesizerRules().parenthesizeExpressionsOfCommaDelimitedList(createNodeArray(argumentsArray)); node.transformFlags |= propagateChildFlags(node.expression) | propagateChildFlags(node.questionDotToken) | propagateChildrenFlags(node.typeArguments) | propagateChildrenFlags(node.arguments) | 32 /* TransformFlags.ContainsES2020 */; if (node.typeArguments) { node.transformFlags |= 1 /* TransformFlags.ContainsTypeScript */; } if (ts.isSuperProperty(node.expression)) { node.transformFlags |= 8192 /* TransformFlags.ContainsLexicalThis */; } return node; } // @api function updateCallChain(node, expression, questionDotToken, typeArguments, argumentsArray) { ts.Debug.assert(!!(node.flags & 32 /* NodeFlags.OptionalChain */), "Cannot update a CallExpression using updateCallChain. Use updateCall instead."); return node.expression !== expression || node.questionDotToken !== questionDotToken || node.typeArguments !== typeArguments || node.arguments !== argumentsArray ? update(createCallChain(expression, questionDotToken, typeArguments, argumentsArray), node) : node; } // @api function createNewExpression(expression, typeArguments, argumentsArray) { var node = createBaseExpression(209 /* SyntaxKind.NewExpression */); node.expression = parenthesizerRules().parenthesizeExpressionOfNew(expression); node.typeArguments = asNodeArray(typeArguments); node.arguments = argumentsArray ? parenthesizerRules().parenthesizeExpressionsOfCommaDelimitedList(argumentsArray) : undefined; node.transformFlags |= propagateChildFlags(node.expression) | propagateChildrenFlags(node.typeArguments) | propagateChildrenFlags(node.arguments) | 32 /* TransformFlags.ContainsES2020 */; if (node.typeArguments) { node.transformFlags |= 1 /* TransformFlags.ContainsTypeScript */; } return node; } // @api function updateNewExpression(node, expression, typeArguments, argumentsArray) { return node.expression !== expression || node.typeArguments !== typeArguments || node.arguments !== argumentsArray ? update(createNewExpression(expression, typeArguments, argumentsArray), node) : node; } // @api function createTaggedTemplateExpression(tag, typeArguments, template) { var node = createBaseExpression(210 /* SyntaxKind.TaggedTemplateExpression */); node.tag = parenthesizerRules().parenthesizeLeftSideOfAccess(tag); node.typeArguments = asNodeArray(typeArguments); node.template = template; node.transformFlags |= propagateChildFlags(node.tag) | propagateChildrenFlags(node.typeArguments) | propagateChildFlags(node.template) | 1024 /* TransformFlags.ContainsES2015 */; if (node.typeArguments) { node.transformFlags |= 1 /* TransformFlags.ContainsTypeScript */; } if (ts.hasInvalidEscape(node.template)) { node.transformFlags |= 128 /* TransformFlags.ContainsES2018 */; } return node; } // @api function updateTaggedTemplateExpression(node, tag, typeArguments, template) { return node.tag !== tag || node.typeArguments !== typeArguments || node.template !== template ? update(createTaggedTemplateExpression(tag, typeArguments, template), node) : node; } // @api function createTypeAssertion(type, expression) { var node = createBaseExpression(211 /* SyntaxKind.TypeAssertionExpression */); node.expression = parenthesizerRules().parenthesizeOperandOfPrefixUnary(expression); node.type = type; node.transformFlags |= propagateChildFlags(node.expression) | propagateChildFlags(node.type) | 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateTypeAssertion(node, type, expression) { return node.type !== type || node.expression !== expression ? update(createTypeAssertion(type, expression), node) : node; } // @api function createParenthesizedExpression(expression) { var node = createBaseExpression(212 /* SyntaxKind.ParenthesizedExpression */); node.expression = expression; node.transformFlags = propagateChildFlags(node.expression); return node; } // @api function updateParenthesizedExpression(node, expression) { return node.expression !== expression ? update(createParenthesizedExpression(expression), node) : node; } // @api function createFunctionExpression(modifiers, asteriskToken, name, typeParameters, parameters, type, body) { var node = createBaseFunctionLikeDeclaration(213 /* SyntaxKind.FunctionExpression */, /*decorators*/ undefined, modifiers, name, typeParameters, parameters, type, body); node.asteriskToken = asteriskToken; node.transformFlags |= propagateChildFlags(node.asteriskToken); if (node.typeParameters) { node.transformFlags |= 1 /* TransformFlags.ContainsTypeScript */; } if (ts.modifiersToFlags(node.modifiers) & 256 /* ModifierFlags.Async */) { if (node.asteriskToken) { node.transformFlags |= 128 /* TransformFlags.ContainsES2018 */; } else { node.transformFlags |= 256 /* TransformFlags.ContainsES2017 */; } } else if (node.asteriskToken) { node.transformFlags |= 2048 /* TransformFlags.ContainsGenerator */; } return node; } // @api function updateFunctionExpression(node, modifiers, asteriskToken, name, typeParameters, parameters, type, body) { return node.name !== name || node.modifiers !== modifiers || node.asteriskToken !== asteriskToken || node.typeParameters !== typeParameters || node.parameters !== parameters || node.type !== type || node.body !== body ? updateBaseFunctionLikeDeclaration(createFunctionExpression(modifiers, asteriskToken, name, typeParameters, parameters, type, body), node) : node; } // @api function createArrowFunction(modifiers, typeParameters, parameters, type, equalsGreaterThanToken, body) { var node = createBaseFunctionLikeDeclaration(214 /* SyntaxKind.ArrowFunction */, /*decorators*/ undefined, modifiers, /*name*/ undefined, typeParameters, parameters, type, parenthesizerRules().parenthesizeConciseBodyOfArrowFunction(body)); node.equalsGreaterThanToken = equalsGreaterThanToken !== null && equalsGreaterThanToken !== void 0 ? equalsGreaterThanToken : createToken(38 /* SyntaxKind.EqualsGreaterThanToken */); node.transformFlags |= propagateChildFlags(node.equalsGreaterThanToken) | 1024 /* TransformFlags.ContainsES2015 */; if (ts.modifiersToFlags(node.modifiers) & 256 /* ModifierFlags.Async */) { node.transformFlags |= 256 /* TransformFlags.ContainsES2017 */ | 8192 /* TransformFlags.ContainsLexicalThis */; } return node; } // @api function updateArrowFunction(node, modifiers, typeParameters, parameters, type, equalsGreaterThanToken, body) { return node.modifiers !== modifiers || node.typeParameters !== typeParameters || node.parameters !== parameters || node.type !== type || node.equalsGreaterThanToken !== equalsGreaterThanToken || node.body !== body ? updateBaseFunctionLikeDeclaration(createArrowFunction(modifiers, typeParameters, parameters, type, equalsGreaterThanToken, body), node) : node; } // @api function createDeleteExpression(expression) { var node = createBaseExpression(215 /* SyntaxKind.DeleteExpression */); node.expression = parenthesizerRules().parenthesizeOperandOfPrefixUnary(expression); node.transformFlags |= propagateChildFlags(node.expression); return node; } // @api function updateDeleteExpression(node, expression) { return node.expression !== expression ? update(createDeleteExpression(expression), node) : node; } // @api function createTypeOfExpression(expression) { var node = createBaseExpression(216 /* SyntaxKind.TypeOfExpression */); node.expression = parenthesizerRules().parenthesizeOperandOfPrefixUnary(expression); node.transformFlags |= propagateChildFlags(node.expression); return node; } // @api function updateTypeOfExpression(node, expression) { return node.expression !== expression ? update(createTypeOfExpression(expression), node) : node; } // @api function createVoidExpression(expression) { var node = createBaseExpression(217 /* SyntaxKind.VoidExpression */); node.expression = parenthesizerRules().parenthesizeOperandOfPrefixUnary(expression); node.transformFlags |= propagateChildFlags(node.expression); return node; } // @api function updateVoidExpression(node, expression) { return node.expression !== expression ? update(createVoidExpression(expression), node) : node; } // @api function createAwaitExpression(expression) { var node = createBaseExpression(218 /* SyntaxKind.AwaitExpression */); node.expression = parenthesizerRules().parenthesizeOperandOfPrefixUnary(expression); node.transformFlags |= propagateChildFlags(node.expression) | 256 /* TransformFlags.ContainsES2017 */ | 128 /* TransformFlags.ContainsES2018 */ | 1048576 /* TransformFlags.ContainsAwait */; return node; } // @api function updateAwaitExpression(node, expression) { return node.expression !== expression ? update(createAwaitExpression(expression), node) : node; } // @api function createPrefixUnaryExpression(operator, operand) { var node = createBaseExpression(219 /* SyntaxKind.PrefixUnaryExpression */); node.operator = operator; node.operand = parenthesizerRules().parenthesizeOperandOfPrefixUnary(operand); node.transformFlags |= propagateChildFlags(node.operand); // Only set this flag for non-generated identifiers and non-"local" names. See the // comment in `visitPreOrPostfixUnaryExpression` in module.ts if ((operator === 45 /* SyntaxKind.PlusPlusToken */ || operator === 46 /* SyntaxKind.MinusMinusToken */) && ts.isIdentifier(node.operand) && !ts.isGeneratedIdentifier(node.operand) && !ts.isLocalName(node.operand)) { node.transformFlags |= 67108864 /* TransformFlags.ContainsUpdateExpressionForIdentifier */; } return node; } // @api function updatePrefixUnaryExpression(node, operand) { return node.operand !== operand ? update(createPrefixUnaryExpression(node.operator, operand), node) : node; } // @api function createPostfixUnaryExpression(operand, operator) { var node = createBaseExpression(220 /* SyntaxKind.PostfixUnaryExpression */); node.operator = operator; node.operand = parenthesizerRules().parenthesizeOperandOfPostfixUnary(operand); node.transformFlags |= propagateChildFlags(node.operand); // Only set this flag for non-generated identifiers and non-"local" names. See the // comment in `visitPreOrPostfixUnaryExpression` in module.ts if (ts.isIdentifier(node.operand) && !ts.isGeneratedIdentifier(node.operand) && !ts.isLocalName(node.operand)) { node.transformFlags |= 67108864 /* TransformFlags.ContainsUpdateExpressionForIdentifier */; } return node; } // @api function updatePostfixUnaryExpression(node, operand) { return node.operand !== operand ? update(createPostfixUnaryExpression(operand, node.operator), node) : node; } // @api function createBinaryExpression(left, operator, right) { var node = createBaseExpression(221 /* SyntaxKind.BinaryExpression */); var operatorToken = asToken(operator); var operatorKind = operatorToken.kind; node.left = parenthesizerRules().parenthesizeLeftSideOfBinary(operatorKind, left); node.operatorToken = operatorToken; node.right = parenthesizerRules().parenthesizeRightSideOfBinary(operatorKind, node.left, right); node.transformFlags |= propagateChildFlags(node.left) | propagateChildFlags(node.operatorToken) | propagateChildFlags(node.right); if (operatorKind === 60 /* SyntaxKind.QuestionQuestionToken */) { node.transformFlags |= 32 /* TransformFlags.ContainsES2020 */; } else if (operatorKind === 63 /* SyntaxKind.EqualsToken */) { if (ts.isObjectLiteralExpression(node.left)) { node.transformFlags |= 1024 /* TransformFlags.ContainsES2015 */ | 128 /* TransformFlags.ContainsES2018 */ | 4096 /* TransformFlags.ContainsDestructuringAssignment */ | propagateAssignmentPatternFlags(node.left); } else if (ts.isArrayLiteralExpression(node.left)) { node.transformFlags |= 1024 /* TransformFlags.ContainsES2015 */ | 4096 /* TransformFlags.ContainsDestructuringAssignment */ | propagateAssignmentPatternFlags(node.left); } } else if (operatorKind === 42 /* SyntaxKind.AsteriskAsteriskToken */ || operatorKind === 67 /* SyntaxKind.AsteriskAsteriskEqualsToken */) { node.transformFlags |= 512 /* TransformFlags.ContainsES2016 */; } else if (ts.isLogicalOrCoalescingAssignmentOperator(operatorKind)) { node.transformFlags |= 16 /* TransformFlags.ContainsES2021 */; } return node; } function propagateAssignmentPatternFlags(node) { if (node.transformFlags & 32768 /* TransformFlags.ContainsObjectRestOrSpread */) return 32768 /* TransformFlags.ContainsObjectRestOrSpread */; if (node.transformFlags & 128 /* TransformFlags.ContainsES2018 */) { // check for nested spread assignments, otherwise '{ x: { a, ...b } = foo } = c' // will not be correctly interpreted by the ES2018 transformer for (var _i = 0, _a = ts.getElementsOfBindingOrAssignmentPattern(node); _i < _a.length; _i++) { var element = _a[_i]; var target = ts.getTargetOfBindingOrAssignmentElement(element); if (target && ts.isAssignmentPattern(target)) { if (target.transformFlags & 32768 /* TransformFlags.ContainsObjectRestOrSpread */) { return 32768 /* TransformFlags.ContainsObjectRestOrSpread */; } if (target.transformFlags & 128 /* TransformFlags.ContainsES2018 */) { var flags_1 = propagateAssignmentPatternFlags(target); if (flags_1) return flags_1; } } } } return 0 /* TransformFlags.None */; } // @api function updateBinaryExpression(node, left, operator, right) { return node.left !== left || node.operatorToken !== operator || node.right !== right ? update(createBinaryExpression(left, operator, right), node) : node; } // @api function createConditionalExpression(condition, questionToken, whenTrue, colonToken, whenFalse) { var node = createBaseExpression(222 /* SyntaxKind.ConditionalExpression */); node.condition = parenthesizerRules().parenthesizeConditionOfConditionalExpression(condition); node.questionToken = questionToken !== null && questionToken !== void 0 ? questionToken : createToken(57 /* SyntaxKind.QuestionToken */); node.whenTrue = parenthesizerRules().parenthesizeBranchOfConditionalExpression(whenTrue); node.colonToken = colonToken !== null && colonToken !== void 0 ? colonToken : createToken(58 /* SyntaxKind.ColonToken */); node.whenFalse = parenthesizerRules().parenthesizeBranchOfConditionalExpression(whenFalse); node.transformFlags |= propagateChildFlags(node.condition) | propagateChildFlags(node.questionToken) | propagateChildFlags(node.whenTrue) | propagateChildFlags(node.colonToken) | propagateChildFlags(node.whenFalse); return node; } // @api function updateConditionalExpression(node, condition, questionToken, whenTrue, colonToken, whenFalse) { return node.condition !== condition || node.questionToken !== questionToken || node.whenTrue !== whenTrue || node.colonToken !== colonToken || node.whenFalse !== whenFalse ? update(createConditionalExpression(condition, questionToken, whenTrue, colonToken, whenFalse), node) : node; } // @api function createTemplateExpression(head, templateSpans) { var node = createBaseExpression(223 /* SyntaxKind.TemplateExpression */); node.head = head; node.templateSpans = createNodeArray(templateSpans); node.transformFlags |= propagateChildFlags(node.head) | propagateChildrenFlags(node.templateSpans) | 1024 /* TransformFlags.ContainsES2015 */; return node; } // @api function updateTemplateExpression(node, head, templateSpans) { return node.head !== head || node.templateSpans !== templateSpans ? update(createTemplateExpression(head, templateSpans), node) : node; } function createTemplateLiteralLikeNodeChecked(kind, text, rawText, templateFlags) { if (templateFlags === void 0) { templateFlags = 0 /* TokenFlags.None */; } ts.Debug.assert(!(templateFlags & ~2048 /* TokenFlags.TemplateLiteralLikeFlags */), "Unsupported template flags."); // NOTE: without the assignment to `undefined`, we don't narrow the initial type of `cooked`. // eslint-disable-next-line no-undef-init var cooked = undefined; if (rawText !== undefined && rawText !== text) { cooked = getCookedText(kind, rawText); if (typeof cooked === "object") { return ts.Debug.fail("Invalid raw text"); } } if (text === undefined) { if (cooked === undefined) { return ts.Debug.fail("Arguments 'text' and 'rawText' may not both be undefined."); } text = cooked; } else if (cooked !== undefined) { ts.Debug.assert(text === cooked, "Expected argument 'text' to be the normalized (i.e. 'cooked') version of argument 'rawText'."); } return createTemplateLiteralLikeNode(kind, text, rawText, templateFlags); } // @api function createTemplateLiteralLikeNode(kind, text, rawText, templateFlags) { var node = createBaseToken(kind); node.text = text; node.rawText = rawText; node.templateFlags = templateFlags & 2048 /* TokenFlags.TemplateLiteralLikeFlags */; node.transformFlags |= 1024 /* TransformFlags.ContainsES2015 */; if (node.templateFlags) { node.transformFlags |= 128 /* TransformFlags.ContainsES2018 */; } return node; } // @api function createTemplateHead(text, rawText, templateFlags) { return createTemplateLiteralLikeNodeChecked(15 /* SyntaxKind.TemplateHead */, text, rawText, templateFlags); } // @api function createTemplateMiddle(text, rawText, templateFlags) { return createTemplateLiteralLikeNodeChecked(16 /* SyntaxKind.TemplateMiddle */, text, rawText, templateFlags); } // @api function createTemplateTail(text, rawText, templateFlags) { return createTemplateLiteralLikeNodeChecked(17 /* SyntaxKind.TemplateTail */, text, rawText, templateFlags); } // @api function createNoSubstitutionTemplateLiteral(text, rawText, templateFlags) { return createTemplateLiteralLikeNodeChecked(14 /* SyntaxKind.NoSubstitutionTemplateLiteral */, text, rawText, templateFlags); } // @api function createYieldExpression(asteriskToken, expression) { ts.Debug.assert(!asteriskToken || !!expression, "A `YieldExpression` with an asteriskToken must have an expression."); var node = createBaseExpression(224 /* SyntaxKind.YieldExpression */); node.expression = expression && parenthesizerRules().parenthesizeExpressionForDisallowedComma(expression); node.asteriskToken = asteriskToken; node.transformFlags |= propagateChildFlags(node.expression) | propagateChildFlags(node.asteriskToken) | 1024 /* TransformFlags.ContainsES2015 */ | 128 /* TransformFlags.ContainsES2018 */ | 524288 /* TransformFlags.ContainsYield */; return node; } // @api function updateYieldExpression(node, asteriskToken, expression) { return node.expression !== expression || node.asteriskToken !== asteriskToken ? update(createYieldExpression(asteriskToken, expression), node) : node; } // @api function createSpreadElement(expression) { var node = createBaseExpression(225 /* SyntaxKind.SpreadElement */); node.expression = parenthesizerRules().parenthesizeExpressionForDisallowedComma(expression); node.transformFlags |= propagateChildFlags(node.expression) | 1024 /* TransformFlags.ContainsES2015 */ | 16384 /* TransformFlags.ContainsRestOrSpread */; return node; } // @api function updateSpreadElement(node, expression) { return node.expression !== expression ? update(createSpreadElement(expression), node) : node; } // @api function createClassExpression(decorators, modifiers, name, typeParameters, heritageClauses, members) { var node = createBaseClassLikeDeclaration(226 /* SyntaxKind.ClassExpression */, decorators, modifiers, name, typeParameters, heritageClauses, members); node.transformFlags |= 1024 /* TransformFlags.ContainsES2015 */; return node; } // @api function updateClassExpression(node, decorators, modifiers, name, typeParameters, heritageClauses, members) { return node.decorators !== decorators || node.modifiers !== modifiers || node.name !== name || node.typeParameters !== typeParameters || node.heritageClauses !== heritageClauses || node.members !== members ? update(createClassExpression(decorators, modifiers, name, typeParameters, heritageClauses, members), node) : node; } // @api function createOmittedExpression() { return createBaseExpression(227 /* SyntaxKind.OmittedExpression */); } // @api function createExpressionWithTypeArguments(expression, typeArguments) { var node = createBaseNode(228 /* SyntaxKind.ExpressionWithTypeArguments */); node.expression = parenthesizerRules().parenthesizeLeftSideOfAccess(expression); node.typeArguments = typeArguments && parenthesizerRules().parenthesizeTypeArguments(typeArguments); node.transformFlags |= propagateChildFlags(node.expression) | propagateChildrenFlags(node.typeArguments) | 1024 /* TransformFlags.ContainsES2015 */; return node; } // @api function updateExpressionWithTypeArguments(node, expression, typeArguments) { return node.expression !== expression || node.typeArguments !== typeArguments ? update(createExpressionWithTypeArguments(expression, typeArguments), node) : node; } // @api function createAsExpression(expression, type) { var node = createBaseExpression(229 /* SyntaxKind.AsExpression */); node.expression = expression; node.type = type; node.transformFlags |= propagateChildFlags(node.expression) | propagateChildFlags(node.type) | 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateAsExpression(node, expression, type) { return node.expression !== expression || node.type !== type ? update(createAsExpression(expression, type), node) : node; } // @api function createNonNullExpression(expression) { var node = createBaseExpression(230 /* SyntaxKind.NonNullExpression */); node.expression = parenthesizerRules().parenthesizeLeftSideOfAccess(expression); node.transformFlags |= propagateChildFlags(node.expression) | 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateNonNullExpression(node, expression) { if (ts.isNonNullChain(node)) { return updateNonNullChain(node, expression); } return node.expression !== expression ? update(createNonNullExpression(expression), node) : node; } // @api function createNonNullChain(expression) { var node = createBaseExpression(230 /* SyntaxKind.NonNullExpression */); node.flags |= 32 /* NodeFlags.OptionalChain */; node.expression = parenthesizerRules().parenthesizeLeftSideOfAccess(expression); node.transformFlags |= propagateChildFlags(node.expression) | 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateNonNullChain(node, expression) { ts.Debug.assert(!!(node.flags & 32 /* NodeFlags.OptionalChain */), "Cannot update a NonNullExpression using updateNonNullChain. Use updateNonNullExpression instead."); return node.expression !== expression ? update(createNonNullChain(expression), node) : node; } // @api function createMetaProperty(keywordToken, name) { var node = createBaseExpression(231 /* SyntaxKind.MetaProperty */); node.keywordToken = keywordToken; node.name = name; node.transformFlags |= propagateChildFlags(node.name); switch (keywordToken) { case 103 /* SyntaxKind.NewKeyword */: node.transformFlags |= 1024 /* TransformFlags.ContainsES2015 */; break; case 100 /* SyntaxKind.ImportKeyword */: node.transformFlags |= 4 /* TransformFlags.ContainsESNext */; break; default: return ts.Debug.assertNever(keywordToken); } return node; } // @api function updateMetaProperty(node, name) { return node.name !== name ? update(createMetaProperty(node.keywordToken, name), node) : node; } // // Misc // // @api function createTemplateSpan(expression, literal) { var node = createBaseNode(233 /* SyntaxKind.TemplateSpan */); node.expression = expression; node.literal = literal; node.transformFlags |= propagateChildFlags(node.expression) | propagateChildFlags(node.literal) | 1024 /* TransformFlags.ContainsES2015 */; return node; } // @api function updateTemplateSpan(node, expression, literal) { return node.expression !== expression || node.literal !== literal ? update(createTemplateSpan(expression, literal), node) : node; } // @api function createSemicolonClassElement() { var node = createBaseNode(234 /* SyntaxKind.SemicolonClassElement */); node.transformFlags |= 1024 /* TransformFlags.ContainsES2015 */; return node; } // // Element // // @api function createBlock(statements, multiLine) { var node = createBaseNode(235 /* SyntaxKind.Block */); node.statements = createNodeArray(statements); node.multiLine = multiLine; node.transformFlags |= propagateChildrenFlags(node.statements); return node; } // @api function updateBlock(node, statements) { return node.statements !== statements ? update(createBlock(statements, node.multiLine), node) : node; } // @api function createVariableStatement(modifiers, declarationList) { var node = createBaseDeclaration(237 /* SyntaxKind.VariableStatement */, /*decorators*/ undefined, modifiers); node.declarationList = ts.isArray(declarationList) ? createVariableDeclarationList(declarationList) : declarationList; node.transformFlags |= propagateChildFlags(node.declarationList); if (ts.modifiersToFlags(node.modifiers) & 2 /* ModifierFlags.Ambient */) { node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; } return node; } // @api function updateVariableStatement(node, modifiers, declarationList) { return node.modifiers !== modifiers || node.declarationList !== declarationList ? update(createVariableStatement(modifiers, declarationList), node) : node; } // @api function createEmptyStatement() { return createBaseNode(236 /* SyntaxKind.EmptyStatement */); } // @api function createExpressionStatement(expression) { var node = createBaseNode(238 /* SyntaxKind.ExpressionStatement */); node.expression = parenthesizerRules().parenthesizeExpressionOfExpressionStatement(expression); node.transformFlags |= propagateChildFlags(node.expression); return node; } // @api function updateExpressionStatement(node, expression) { return node.expression !== expression ? update(createExpressionStatement(expression), node) : node; } // @api function createIfStatement(expression, thenStatement, elseStatement) { var node = createBaseNode(239 /* SyntaxKind.IfStatement */); node.expression = expression; node.thenStatement = asEmbeddedStatement(thenStatement); node.elseStatement = asEmbeddedStatement(elseStatement); node.transformFlags |= propagateChildFlags(node.expression) | propagateChildFlags(node.thenStatement) | propagateChildFlags(node.elseStatement); return node; } // @api function updateIfStatement(node, expression, thenStatement, elseStatement) { return node.expression !== expression || node.thenStatement !== thenStatement || node.elseStatement !== elseStatement ? update(createIfStatement(expression, thenStatement, elseStatement), node) : node; } // @api function createDoStatement(statement, expression) { var node = createBaseNode(240 /* SyntaxKind.DoStatement */); node.statement = asEmbeddedStatement(statement); node.expression = expression; node.transformFlags |= propagateChildFlags(node.statement) | propagateChildFlags(node.expression); return node; } // @api function updateDoStatement(node, statement, expression) { return node.statement !== statement || node.expression !== expression ? update(createDoStatement(statement, expression), node) : node; } // @api function createWhileStatement(expression, statement) { var node = createBaseNode(241 /* SyntaxKind.WhileStatement */); node.expression = expression; node.statement = asEmbeddedStatement(statement); node.transformFlags |= propagateChildFlags(node.expression) | propagateChildFlags(node.statement); return node; } // @api function updateWhileStatement(node, expression, statement) { return node.expression !== expression || node.statement !== statement ? update(createWhileStatement(expression, statement), node) : node; } // @api function createForStatement(initializer, condition, incrementor, statement) { var node = createBaseNode(242 /* SyntaxKind.ForStatement */); node.initializer = initializer; node.condition = condition; node.incrementor = incrementor; node.statement = asEmbeddedStatement(statement); node.transformFlags |= propagateChildFlags(node.initializer) | propagateChildFlags(node.condition) | propagateChildFlags(node.incrementor) | propagateChildFlags(node.statement); return node; } // @api function updateForStatement(node, initializer, condition, incrementor, statement) { return node.initializer !== initializer || node.condition !== condition || node.incrementor !== incrementor || node.statement !== statement ? update(createForStatement(initializer, condition, incrementor, statement), node) : node; } // @api function createForInStatement(initializer, expression, statement) { var node = createBaseNode(243 /* SyntaxKind.ForInStatement */); node.initializer = initializer; node.expression = expression; node.statement = asEmbeddedStatement(statement); node.transformFlags |= propagateChildFlags(node.initializer) | propagateChildFlags(node.expression) | propagateChildFlags(node.statement); return node; } // @api function updateForInStatement(node, initializer, expression, statement) { return node.initializer !== initializer || node.expression !== expression || node.statement !== statement ? update(createForInStatement(initializer, expression, statement), node) : node; } // @api function createForOfStatement(awaitModifier, initializer, expression, statement) { var node = createBaseNode(244 /* SyntaxKind.ForOfStatement */); node.awaitModifier = awaitModifier; node.initializer = initializer; node.expression = parenthesizerRules().parenthesizeExpressionForDisallowedComma(expression); node.statement = asEmbeddedStatement(statement); node.transformFlags |= propagateChildFlags(node.awaitModifier) | propagateChildFlags(node.initializer) | propagateChildFlags(node.expression) | propagateChildFlags(node.statement) | 1024 /* TransformFlags.ContainsES2015 */; if (awaitModifier) node.transformFlags |= 128 /* TransformFlags.ContainsES2018 */; return node; } // @api function updateForOfStatement(node, awaitModifier, initializer, expression, statement) { return node.awaitModifier !== awaitModifier || node.initializer !== initializer || node.expression !== expression || node.statement !== statement ? update(createForOfStatement(awaitModifier, initializer, expression, statement), node) : node; } // @api function createContinueStatement(label) { var node = createBaseNode(245 /* SyntaxKind.ContinueStatement */); node.label = asName(label); node.transformFlags |= propagateChildFlags(node.label) | 2097152 /* TransformFlags.ContainsHoistedDeclarationOrCompletion */; return node; } // @api function updateContinueStatement(node, label) { return node.label !== label ? update(createContinueStatement(label), node) : node; } // @api function createBreakStatement(label) { var node = createBaseNode(246 /* SyntaxKind.BreakStatement */); node.label = asName(label); node.transformFlags |= propagateChildFlags(node.label) | 2097152 /* TransformFlags.ContainsHoistedDeclarationOrCompletion */; return node; } // @api function updateBreakStatement(node, label) { return node.label !== label ? update(createBreakStatement(label), node) : node; } // @api function createReturnStatement(expression) { var node = createBaseNode(247 /* SyntaxKind.ReturnStatement */); node.expression = expression; // return in an ES2018 async generator must be awaited node.transformFlags |= propagateChildFlags(node.expression) | 128 /* TransformFlags.ContainsES2018 */ | 2097152 /* TransformFlags.ContainsHoistedDeclarationOrCompletion */; return node; } // @api function updateReturnStatement(node, expression) { return node.expression !== expression ? update(createReturnStatement(expression), node) : node; } // @api function createWithStatement(expression, statement) { var node = createBaseNode(248 /* SyntaxKind.WithStatement */); node.expression = expression; node.statement = asEmbeddedStatement(statement); node.transformFlags |= propagateChildFlags(node.expression) | propagateChildFlags(node.statement); return node; } // @api function updateWithStatement(node, expression, statement) { return node.expression !== expression || node.statement !== statement ? update(createWithStatement(expression, statement), node) : node; } // @api function createSwitchStatement(expression, caseBlock) { var node = createBaseNode(249 /* SyntaxKind.SwitchStatement */); node.expression = parenthesizerRules().parenthesizeExpressionForDisallowedComma(expression); node.caseBlock = caseBlock; node.transformFlags |= propagateChildFlags(node.expression) | propagateChildFlags(node.caseBlock); return node; } // @api function updateSwitchStatement(node, expression, caseBlock) { return node.expression !== expression || node.caseBlock !== caseBlock ? update(createSwitchStatement(expression, caseBlock), node) : node; } // @api function createLabeledStatement(label, statement) { var node = createBaseNode(250 /* SyntaxKind.LabeledStatement */); node.label = asName(label); node.statement = asEmbeddedStatement(statement); node.transformFlags |= propagateChildFlags(node.label) | propagateChildFlags(node.statement); return node; } // @api function updateLabeledStatement(node, label, statement) { return node.label !== label || node.statement !== statement ? update(createLabeledStatement(label, statement), node) : node; } // @api function createThrowStatement(expression) { var node = createBaseNode(251 /* SyntaxKind.ThrowStatement */); node.expression = expression; node.transformFlags |= propagateChildFlags(node.expression); return node; } // @api function updateThrowStatement(node, expression) { return node.expression !== expression ? update(createThrowStatement(expression), node) : node; } // @api function createTryStatement(tryBlock, catchClause, finallyBlock) { var node = createBaseNode(252 /* SyntaxKind.TryStatement */); node.tryBlock = tryBlock; node.catchClause = catchClause; node.finallyBlock = finallyBlock; node.transformFlags |= propagateChildFlags(node.tryBlock) | propagateChildFlags(node.catchClause) | propagateChildFlags(node.finallyBlock); return node; } // @api function updateTryStatement(node, tryBlock, catchClause, finallyBlock) { return node.tryBlock !== tryBlock || node.catchClause !== catchClause || node.finallyBlock !== finallyBlock ? update(createTryStatement(tryBlock, catchClause, finallyBlock), node) : node; } // @api function createDebuggerStatement() { return createBaseNode(253 /* SyntaxKind.DebuggerStatement */); } // @api function createVariableDeclaration(name, exclamationToken, type, initializer) { var node = createBaseVariableLikeDeclaration(254 /* SyntaxKind.VariableDeclaration */, /*decorators*/ undefined, /*modifiers*/ undefined, name, type, initializer && parenthesizerRules().parenthesizeExpressionForDisallowedComma(initializer)); node.exclamationToken = exclamationToken; node.transformFlags |= propagateChildFlags(node.exclamationToken); if (exclamationToken) { node.transformFlags |= 1 /* TransformFlags.ContainsTypeScript */; } return node; } // @api function updateVariableDeclaration(node, name, exclamationToken, type, initializer) { return node.name !== name || node.type !== type || node.exclamationToken !== exclamationToken || node.initializer !== initializer ? update(createVariableDeclaration(name, exclamationToken, type, initializer), node) : node; } // @api function createVariableDeclarationList(declarations, flags) { if (flags === void 0) { flags = 0 /* NodeFlags.None */; } var node = createBaseNode(255 /* SyntaxKind.VariableDeclarationList */); node.flags |= flags & 3 /* NodeFlags.BlockScoped */; node.declarations = createNodeArray(declarations); node.transformFlags |= propagateChildrenFlags(node.declarations) | 2097152 /* TransformFlags.ContainsHoistedDeclarationOrCompletion */; if (flags & 3 /* NodeFlags.BlockScoped */) { node.transformFlags |= 1024 /* TransformFlags.ContainsES2015 */ | 131072 /* TransformFlags.ContainsBlockScopedBinding */; } return node; } // @api function updateVariableDeclarationList(node, declarations) { return node.declarations !== declarations ? update(createVariableDeclarationList(declarations, node.flags), node) : node; } // @api function createFunctionDeclaration(decorators, modifiers, asteriskToken, name, typeParameters, parameters, type, body) { var node = createBaseFunctionLikeDeclaration(256 /* SyntaxKind.FunctionDeclaration */, decorators, modifiers, name, typeParameters, parameters, type, body); node.asteriskToken = asteriskToken; if (!node.body || ts.modifiersToFlags(node.modifiers) & 2 /* ModifierFlags.Ambient */) { node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; } else { node.transformFlags |= propagateChildFlags(node.asteriskToken) | 2097152 /* TransformFlags.ContainsHoistedDeclarationOrCompletion */; if (ts.modifiersToFlags(node.modifiers) & 256 /* ModifierFlags.Async */) { if (node.asteriskToken) { node.transformFlags |= 128 /* TransformFlags.ContainsES2018 */; } else { node.transformFlags |= 256 /* TransformFlags.ContainsES2017 */; } } else if (node.asteriskToken) { node.transformFlags |= 2048 /* TransformFlags.ContainsGenerator */; } } return node; } // @api function updateFunctionDeclaration(node, decorators, modifiers, asteriskToken, name, typeParameters, parameters, type, body) { return node.decorators !== decorators || node.modifiers !== modifiers || node.asteriskToken !== asteriskToken || node.name !== name || node.typeParameters !== typeParameters || node.parameters !== parameters || node.type !== type || node.body !== body ? updateBaseFunctionLikeDeclaration(createFunctionDeclaration(decorators, modifiers, asteriskToken, name, typeParameters, parameters, type, body), node) : node; } // @api function createClassDeclaration(decorators, modifiers, name, typeParameters, heritageClauses, members) { var node = createBaseClassLikeDeclaration(257 /* SyntaxKind.ClassDeclaration */, decorators, modifiers, name, typeParameters, heritageClauses, members); if (ts.modifiersToFlags(node.modifiers) & 2 /* ModifierFlags.Ambient */) { node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; } else { node.transformFlags |= 1024 /* TransformFlags.ContainsES2015 */; if (node.transformFlags & 4096 /* TransformFlags.ContainsTypeScriptClassSyntax */) { node.transformFlags |= 1 /* TransformFlags.ContainsTypeScript */; } } return node; } // @api function updateClassDeclaration(node, decorators, modifiers, name, typeParameters, heritageClauses, members) { return node.decorators !== decorators || node.modifiers !== modifiers || node.name !== name || node.typeParameters !== typeParameters || node.heritageClauses !== heritageClauses || node.members !== members ? update(createClassDeclaration(decorators, modifiers, name, typeParameters, heritageClauses, members), node) : node; } // @api function createInterfaceDeclaration(decorators, modifiers, name, typeParameters, heritageClauses, members) { var node = createBaseInterfaceOrClassLikeDeclaration(258 /* SyntaxKind.InterfaceDeclaration */, decorators, modifiers, name, typeParameters, heritageClauses); node.members = createNodeArray(members); node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateInterfaceDeclaration(node, decorators, modifiers, name, typeParameters, heritageClauses, members) { return node.decorators !== decorators || node.modifiers !== modifiers || node.name !== name || node.typeParameters !== typeParameters || node.heritageClauses !== heritageClauses || node.members !== members ? update(createInterfaceDeclaration(decorators, modifiers, name, typeParameters, heritageClauses, members), node) : node; } // @api function createTypeAliasDeclaration(decorators, modifiers, name, typeParameters, type) { var node = createBaseGenericNamedDeclaration(259 /* SyntaxKind.TypeAliasDeclaration */, decorators, modifiers, name, typeParameters); node.type = type; node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateTypeAliasDeclaration(node, decorators, modifiers, name, typeParameters, type) { return node.decorators !== decorators || node.modifiers !== modifiers || node.name !== name || node.typeParameters !== typeParameters || node.type !== type ? update(createTypeAliasDeclaration(decorators, modifiers, name, typeParameters, type), node) : node; } // @api function createEnumDeclaration(decorators, modifiers, name, members) { var node = createBaseNamedDeclaration(260 /* SyntaxKind.EnumDeclaration */, decorators, modifiers, name); node.members = createNodeArray(members); node.transformFlags |= propagateChildrenFlags(node.members) | 1 /* TransformFlags.ContainsTypeScript */; node.transformFlags &= ~16777216 /* TransformFlags.ContainsPossibleTopLevelAwait */; // Enum declarations cannot contain `await` return node; } // @api function updateEnumDeclaration(node, decorators, modifiers, name, members) { return node.decorators !== decorators || node.modifiers !== modifiers || node.name !== name || node.members !== members ? update(createEnumDeclaration(decorators, modifiers, name, members), node) : node; } // @api function createModuleDeclaration(decorators, modifiers, name, body, flags) { if (flags === void 0) { flags = 0 /* NodeFlags.None */; } var node = createBaseDeclaration(261 /* SyntaxKind.ModuleDeclaration */, decorators, modifiers); node.flags |= flags & (16 /* NodeFlags.Namespace */ | 4 /* NodeFlags.NestedNamespace */ | 1024 /* NodeFlags.GlobalAugmentation */); node.name = name; node.body = body; if (ts.modifiersToFlags(node.modifiers) & 2 /* ModifierFlags.Ambient */) { node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; } else { node.transformFlags |= propagateChildFlags(node.name) | propagateChildFlags(node.body) | 1 /* TransformFlags.ContainsTypeScript */; } node.transformFlags &= ~16777216 /* TransformFlags.ContainsPossibleTopLevelAwait */; // Module declarations cannot contain `await`. return node; } // @api function updateModuleDeclaration(node, decorators, modifiers, name, body) { return node.decorators !== decorators || node.modifiers !== modifiers || node.name !== name || node.body !== body ? update(createModuleDeclaration(decorators, modifiers, name, body, node.flags), node) : node; } // @api function createModuleBlock(statements) { var node = createBaseNode(262 /* SyntaxKind.ModuleBlock */); node.statements = createNodeArray(statements); node.transformFlags |= propagateChildrenFlags(node.statements); return node; } // @api function updateModuleBlock(node, statements) { return node.statements !== statements ? update(createModuleBlock(statements), node) : node; } // @api function createCaseBlock(clauses) { var node = createBaseNode(263 /* SyntaxKind.CaseBlock */); node.clauses = createNodeArray(clauses); node.transformFlags |= propagateChildrenFlags(node.clauses); return node; } // @api function updateCaseBlock(node, clauses) { return node.clauses !== clauses ? update(createCaseBlock(clauses), node) : node; } // @api function createNamespaceExportDeclaration(name) { var node = createBaseNamedDeclaration(264 /* SyntaxKind.NamespaceExportDeclaration */, /*decorators*/ undefined, /*modifiers*/ undefined, name); node.transformFlags = 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateNamespaceExportDeclaration(node, name) { return node.name !== name ? update(createNamespaceExportDeclaration(name), node) : node; } // @api function createImportEqualsDeclaration(decorators, modifiers, isTypeOnly, name, moduleReference) { var node = createBaseNamedDeclaration(265 /* SyntaxKind.ImportEqualsDeclaration */, decorators, modifiers, name); node.isTypeOnly = isTypeOnly; node.moduleReference = moduleReference; node.transformFlags |= propagateChildFlags(node.moduleReference); if (!ts.isExternalModuleReference(node.moduleReference)) node.transformFlags |= 1 /* TransformFlags.ContainsTypeScript */; node.transformFlags &= ~16777216 /* TransformFlags.ContainsPossibleTopLevelAwait */; // Import= declaration is always parsed in an Await context return node; } // @api function updateImportEqualsDeclaration(node, decorators, modifiers, isTypeOnly, name, moduleReference) { return node.decorators !== decorators || node.modifiers !== modifiers || node.isTypeOnly !== isTypeOnly || node.name !== name || node.moduleReference !== moduleReference ? update(createImportEqualsDeclaration(decorators, modifiers, isTypeOnly, name, moduleReference), node) : node; } // @api function createImportDeclaration(decorators, modifiers, importClause, moduleSpecifier, assertClause) { var node = createBaseDeclaration(266 /* SyntaxKind.ImportDeclaration */, decorators, modifiers); node.importClause = importClause; node.moduleSpecifier = moduleSpecifier; node.assertClause = assertClause; node.transformFlags |= propagateChildFlags(node.importClause) | propagateChildFlags(node.moduleSpecifier); node.transformFlags &= ~16777216 /* TransformFlags.ContainsPossibleTopLevelAwait */; // always parsed in an Await context return node; } // @api function updateImportDeclaration(node, decorators, modifiers, importClause, moduleSpecifier, assertClause) { return node.decorators !== decorators || node.modifiers !== modifiers || node.importClause !== importClause || node.moduleSpecifier !== moduleSpecifier || node.assertClause !== assertClause ? update(createImportDeclaration(decorators, modifiers, importClause, moduleSpecifier, assertClause), node) : node; } // @api function createImportClause(isTypeOnly, name, namedBindings) { var node = createBaseNode(267 /* SyntaxKind.ImportClause */); node.isTypeOnly = isTypeOnly; node.name = name; node.namedBindings = namedBindings; node.transformFlags |= propagateChildFlags(node.name) | propagateChildFlags(node.namedBindings); if (isTypeOnly) { node.transformFlags |= 1 /* TransformFlags.ContainsTypeScript */; } node.transformFlags &= ~16777216 /* TransformFlags.ContainsPossibleTopLevelAwait */; // always parsed in an Await context return node; } // @api function updateImportClause(node, isTypeOnly, name, namedBindings) { return node.isTypeOnly !== isTypeOnly || node.name !== name || node.namedBindings !== namedBindings ? update(createImportClause(isTypeOnly, name, namedBindings), node) : node; } // @api function createAssertClause(elements, multiLine) { var node = createBaseNode(293 /* SyntaxKind.AssertClause */); node.elements = createNodeArray(elements); node.multiLine = multiLine; node.transformFlags |= 4 /* TransformFlags.ContainsESNext */; return node; } // @api function updateAssertClause(node, elements, multiLine) { return node.elements !== elements || node.multiLine !== multiLine ? update(createAssertClause(elements, multiLine), node) : node; } // @api function createAssertEntry(name, value) { var node = createBaseNode(294 /* SyntaxKind.AssertEntry */); node.name = name; node.value = value; node.transformFlags |= 4 /* TransformFlags.ContainsESNext */; return node; } // @api function updateAssertEntry(node, name, value) { return node.name !== name || node.value !== value ? update(createAssertEntry(name, value), node) : node; } // @api function createImportTypeAssertionContainer(clause, multiLine) { var node = createBaseNode(295 /* SyntaxKind.ImportTypeAssertionContainer */); node.assertClause = clause; node.multiLine = multiLine; return node; } // @api function updateImportTypeAssertionContainer(node, clause, multiLine) { return node.assertClause !== clause || node.multiLine !== multiLine ? update(createImportTypeAssertionContainer(clause, multiLine), node) : node; } // @api function createNamespaceImport(name) { var node = createBaseNode(268 /* SyntaxKind.NamespaceImport */); node.name = name; node.transformFlags |= propagateChildFlags(node.name); node.transformFlags &= ~16777216 /* TransformFlags.ContainsPossibleTopLevelAwait */; // always parsed in an Await context return node; } // @api function updateNamespaceImport(node, name) { return node.name !== name ? update(createNamespaceImport(name), node) : node; } // @api function createNamespaceExport(name) { var node = createBaseNode(274 /* SyntaxKind.NamespaceExport */); node.name = name; node.transformFlags |= propagateChildFlags(node.name) | 4 /* TransformFlags.ContainsESNext */; node.transformFlags &= ~16777216 /* TransformFlags.ContainsPossibleTopLevelAwait */; // always parsed in an Await context return node; } // @api function updateNamespaceExport(node, name) { return node.name !== name ? update(createNamespaceExport(name), node) : node; } // @api function createNamedImports(elements) { var node = createBaseNode(269 /* SyntaxKind.NamedImports */); node.elements = createNodeArray(elements); node.transformFlags |= propagateChildrenFlags(node.elements); node.transformFlags &= ~16777216 /* TransformFlags.ContainsPossibleTopLevelAwait */; // always parsed in an Await context return node; } // @api function updateNamedImports(node, elements) { return node.elements !== elements ? update(createNamedImports(elements), node) : node; } // @api function createImportSpecifier(isTypeOnly, propertyName, name) { var node = createBaseNode(270 /* SyntaxKind.ImportSpecifier */); node.isTypeOnly = isTypeOnly; node.propertyName = propertyName; node.name = name; node.transformFlags |= propagateChildFlags(node.propertyName) | propagateChildFlags(node.name); node.transformFlags &= ~16777216 /* TransformFlags.ContainsPossibleTopLevelAwait */; // always parsed in an Await context return node; } // @api function updateImportSpecifier(node, isTypeOnly, propertyName, name) { return node.isTypeOnly !== isTypeOnly || node.propertyName !== propertyName || node.name !== name ? update(createImportSpecifier(isTypeOnly, propertyName, name), node) : node; } // @api function createExportAssignment(decorators, modifiers, isExportEquals, expression) { var node = createBaseDeclaration(271 /* SyntaxKind.ExportAssignment */, decorators, modifiers); node.isExportEquals = isExportEquals; node.expression = isExportEquals ? parenthesizerRules().parenthesizeRightSideOfBinary(63 /* SyntaxKind.EqualsToken */, /*leftSide*/ undefined, expression) : parenthesizerRules().parenthesizeExpressionOfExportDefault(expression); node.transformFlags |= propagateChildFlags(node.expression); node.transformFlags &= ~16777216 /* TransformFlags.ContainsPossibleTopLevelAwait */; // always parsed in an Await context return node; } // @api function updateExportAssignment(node, decorators, modifiers, expression) { return node.decorators !== decorators || node.modifiers !== modifiers || node.expression !== expression ? update(createExportAssignment(decorators, modifiers, node.isExportEquals, expression), node) : node; } // @api function createExportDeclaration(decorators, modifiers, isTypeOnly, exportClause, moduleSpecifier, assertClause) { var node = createBaseDeclaration(272 /* SyntaxKind.ExportDeclaration */, decorators, modifiers); node.isTypeOnly = isTypeOnly; node.exportClause = exportClause; node.moduleSpecifier = moduleSpecifier; node.assertClause = assertClause; node.transformFlags |= propagateChildFlags(node.exportClause) | propagateChildFlags(node.moduleSpecifier); node.transformFlags &= ~16777216 /* TransformFlags.ContainsPossibleTopLevelAwait */; // always parsed in an Await context return node; } // @api function updateExportDeclaration(node, decorators, modifiers, isTypeOnly, exportClause, moduleSpecifier, assertClause) { return node.decorators !== decorators || node.modifiers !== modifiers || node.isTypeOnly !== isTypeOnly || node.exportClause !== exportClause || node.moduleSpecifier !== moduleSpecifier || node.assertClause !== assertClause ? update(createExportDeclaration(decorators, modifiers, isTypeOnly, exportClause, moduleSpecifier, assertClause), node) : node; } // @api function createNamedExports(elements) { var node = createBaseNode(273 /* SyntaxKind.NamedExports */); node.elements = createNodeArray(elements); node.transformFlags |= propagateChildrenFlags(node.elements); node.transformFlags &= ~16777216 /* TransformFlags.ContainsPossibleTopLevelAwait */; // always parsed in an Await context return node; } // @api function updateNamedExports(node, elements) { return node.elements !== elements ? update(createNamedExports(elements), node) : node; } // @api function createExportSpecifier(isTypeOnly, propertyName, name) { var node = createBaseNode(275 /* SyntaxKind.ExportSpecifier */); node.isTypeOnly = isTypeOnly; node.propertyName = asName(propertyName); node.name = asName(name); node.transformFlags |= propagateChildFlags(node.propertyName) | propagateChildFlags(node.name); node.transformFlags &= ~16777216 /* TransformFlags.ContainsPossibleTopLevelAwait */; // always parsed in an Await context return node; } // @api function updateExportSpecifier(node, isTypeOnly, propertyName, name) { return node.isTypeOnly !== isTypeOnly || node.propertyName !== propertyName || node.name !== name ? update(createExportSpecifier(isTypeOnly, propertyName, name), node) : node; } // @api function createMissingDeclaration() { var node = createBaseDeclaration(276 /* SyntaxKind.MissingDeclaration */, /*decorators*/ undefined, /*modifiers*/ undefined); return node; } // // Module references // // @api function createExternalModuleReference(expression) { var node = createBaseNode(277 /* SyntaxKind.ExternalModuleReference */); node.expression = expression; node.transformFlags |= propagateChildFlags(node.expression); node.transformFlags &= ~16777216 /* TransformFlags.ContainsPossibleTopLevelAwait */; // always parsed in an Await context return node; } // @api function updateExternalModuleReference(node, expression) { return node.expression !== expression ? update(createExternalModuleReference(expression), node) : node; } // // JSDoc // // @api // createJSDocAllType // createJSDocUnknownType function createJSDocPrimaryTypeWorker(kind) { return createBaseNode(kind); } // @api // createJSDocNullableType // createJSDocNonNullableType function createJSDocPrePostfixUnaryTypeWorker(kind, type, postfix) { if (postfix === void 0) { postfix = false; } var node = createJSDocUnaryTypeWorker(kind, postfix ? type && parenthesizerRules().parenthesizeNonArrayTypeOfPostfixType(type) : type); node.postfix = postfix; return node; } // @api // createJSDocOptionalType // createJSDocVariadicType // createJSDocNamepathType function createJSDocUnaryTypeWorker(kind, type) { var node = createBaseNode(kind); node.type = type; return node; } // @api // updateJSDocNonNullableType // updateJSDocNullableType function updateJSDocPrePostfixUnaryTypeWorker(kind, node, type) { return node.type !== type ? update(createJSDocPrePostfixUnaryTypeWorker(kind, type, node.postfix), node) : node; } // @api // updateJSDocOptionalType // updateJSDocVariadicType // updateJSDocNamepathType function updateJSDocUnaryTypeWorker(kind, node, type) { return node.type !== type ? update(createJSDocUnaryTypeWorker(kind, type), node) : node; } // @api function createJSDocFunctionType(parameters, type) { var node = createBaseSignatureDeclaration(317 /* SyntaxKind.JSDocFunctionType */, /*decorators*/ undefined, /*modifiers*/ undefined, /*name*/ undefined, /*typeParameters*/ undefined, parameters, type); return node; } // @api function updateJSDocFunctionType(node, parameters, type) { return node.parameters !== parameters || node.type !== type ? update(createJSDocFunctionType(parameters, type), node) : node; } // @api function createJSDocTypeLiteral(propertyTags, isArrayType) { if (isArrayType === void 0) { isArrayType = false; } var node = createBaseNode(322 /* SyntaxKind.JSDocTypeLiteral */); node.jsDocPropertyTags = asNodeArray(propertyTags); node.isArrayType = isArrayType; return node; } // @api function updateJSDocTypeLiteral(node, propertyTags, isArrayType) { return node.jsDocPropertyTags !== propertyTags || node.isArrayType !== isArrayType ? update(createJSDocTypeLiteral(propertyTags, isArrayType), node) : node; } // @api function createJSDocTypeExpression(type) { var node = createBaseNode(309 /* SyntaxKind.JSDocTypeExpression */); node.type = type; return node; } // @api function updateJSDocTypeExpression(node, type) { return node.type !== type ? update(createJSDocTypeExpression(type), node) : node; } // @api function createJSDocSignature(typeParameters, parameters, type) { var node = createBaseNode(323 /* SyntaxKind.JSDocSignature */); node.typeParameters = asNodeArray(typeParameters); node.parameters = createNodeArray(parameters); node.type = type; return node; } // @api function updateJSDocSignature(node, typeParameters, parameters, type) { return node.typeParameters !== typeParameters || node.parameters !== parameters || node.type !== type ? update(createJSDocSignature(typeParameters, parameters, type), node) : node; } function getDefaultTagName(node) { var defaultTagName = getDefaultTagNameForKind(node.kind); return node.tagName.escapedText === ts.escapeLeadingUnderscores(defaultTagName) ? node.tagName : createIdentifier(defaultTagName); } // @api function createBaseJSDocTag(kind, tagName, comment) { var node = createBaseNode(kind); node.tagName = tagName; node.comment = comment; return node; } // @api function createJSDocTemplateTag(tagName, constraint, typeParameters, comment) { var node = createBaseJSDocTag(344 /* SyntaxKind.JSDocTemplateTag */, tagName !== null && tagName !== void 0 ? tagName : createIdentifier("template"), comment); node.constraint = constraint; node.typeParameters = createNodeArray(typeParameters); return node; } // @api function updateJSDocTemplateTag(node, tagName, constraint, typeParameters, comment) { if (tagName === void 0) { tagName = getDefaultTagName(node); } return node.tagName !== tagName || node.constraint !== constraint || node.typeParameters !== typeParameters || node.comment !== comment ? update(createJSDocTemplateTag(tagName, constraint, typeParameters, comment), node) : node; } // @api function createJSDocTypedefTag(tagName, typeExpression, fullName, comment) { var node = createBaseJSDocTag(345 /* SyntaxKind.JSDocTypedefTag */, tagName !== null && tagName !== void 0 ? tagName : createIdentifier("typedef"), comment); node.typeExpression = typeExpression; node.fullName = fullName; node.name = ts.getJSDocTypeAliasName(fullName); return node; } // @api function updateJSDocTypedefTag(node, tagName, typeExpression, fullName, comment) { if (tagName === void 0) { tagName = getDefaultTagName(node); } return node.tagName !== tagName || node.typeExpression !== typeExpression || node.fullName !== fullName || node.comment !== comment ? update(createJSDocTypedefTag(tagName, typeExpression, fullName, comment), node) : node; } // @api function createJSDocParameterTag(tagName, name, isBracketed, typeExpression, isNameFirst, comment) { var node = createBaseJSDocTag(340 /* SyntaxKind.JSDocParameterTag */, tagName !== null && tagName !== void 0 ? tagName : createIdentifier("param"), comment); node.typeExpression = typeExpression; node.name = name; node.isNameFirst = !!isNameFirst; node.isBracketed = isBracketed; return node; } // @api function updateJSDocParameterTag(node, tagName, name, isBracketed, typeExpression, isNameFirst, comment) { if (tagName === void 0) { tagName = getDefaultTagName(node); } return node.tagName !== tagName || node.name !== name || node.isBracketed !== isBracketed || node.typeExpression !== typeExpression || node.isNameFirst !== isNameFirst || node.comment !== comment ? update(createJSDocParameterTag(tagName, name, isBracketed, typeExpression, isNameFirst, comment), node) : node; } // @api function createJSDocPropertyTag(tagName, name, isBracketed, typeExpression, isNameFirst, comment) { var node = createBaseJSDocTag(347 /* SyntaxKind.JSDocPropertyTag */, tagName !== null && tagName !== void 0 ? tagName : createIdentifier("prop"), comment); node.typeExpression = typeExpression; node.name = name; node.isNameFirst = !!isNameFirst; node.isBracketed = isBracketed; return node; } // @api function updateJSDocPropertyTag(node, tagName, name, isBracketed, typeExpression, isNameFirst, comment) { if (tagName === void 0) { tagName = getDefaultTagName(node); } return node.tagName !== tagName || node.name !== name || node.isBracketed !== isBracketed || node.typeExpression !== typeExpression || node.isNameFirst !== isNameFirst || node.comment !== comment ? update(createJSDocPropertyTag(tagName, name, isBracketed, typeExpression, isNameFirst, comment), node) : node; } // @api function createJSDocCallbackTag(tagName, typeExpression, fullName, comment) { var node = createBaseJSDocTag(338 /* SyntaxKind.JSDocCallbackTag */, tagName !== null && tagName !== void 0 ? tagName : createIdentifier("callback"), comment); node.typeExpression = typeExpression; node.fullName = fullName; node.name = ts.getJSDocTypeAliasName(fullName); return node; } // @api function updateJSDocCallbackTag(node, tagName, typeExpression, fullName, comment) { if (tagName === void 0) { tagName = getDefaultTagName(node); } return node.tagName !== tagName || node.typeExpression !== typeExpression || node.fullName !== fullName || node.comment !== comment ? update(createJSDocCallbackTag(tagName, typeExpression, fullName, comment), node) : node; } // @api function createJSDocAugmentsTag(tagName, className, comment) { var node = createBaseJSDocTag(328 /* SyntaxKind.JSDocAugmentsTag */, tagName !== null && tagName !== void 0 ? tagName : createIdentifier("augments"), comment); node.class = className; return node; } // @api function updateJSDocAugmentsTag(node, tagName, className, comment) { if (tagName === void 0) { tagName = getDefaultTagName(node); } return node.tagName !== tagName || node.class !== className || node.comment !== comment ? update(createJSDocAugmentsTag(tagName, className, comment), node) : node; } // @api function createJSDocImplementsTag(tagName, className, comment) { var node = createBaseJSDocTag(329 /* SyntaxKind.JSDocImplementsTag */, tagName !== null && tagName !== void 0 ? tagName : createIdentifier("implements"), comment); node.class = className; return node; } // @api function createJSDocSeeTag(tagName, name, comment) { var node = createBaseJSDocTag(346 /* SyntaxKind.JSDocSeeTag */, tagName !== null && tagName !== void 0 ? tagName : createIdentifier("see"), comment); node.name = name; return node; } // @api function updateJSDocSeeTag(node, tagName, name, comment) { return node.tagName !== tagName || node.name !== name || node.comment !== comment ? update(createJSDocSeeTag(tagName, name, comment), node) : node; } // @api function createJSDocNameReference(name) { var node = createBaseNode(310 /* SyntaxKind.JSDocNameReference */); node.name = name; return node; } // @api function updateJSDocNameReference(node, name) { return node.name !== name ? update(createJSDocNameReference(name), node) : node; } // @api function createJSDocMemberName(left, right) { var node = createBaseNode(311 /* SyntaxKind.JSDocMemberName */); node.left = left; node.right = right; node.transformFlags |= propagateChildFlags(node.left) | propagateChildFlags(node.right); return node; } // @api function updateJSDocMemberName(node, left, right) { return node.left !== left || node.right !== right ? update(createJSDocMemberName(left, right), node) : node; } // @api function createJSDocLink(name, text) { var node = createBaseNode(324 /* SyntaxKind.JSDocLink */); node.name = name; node.text = text; return node; } // @api function updateJSDocLink(node, name, text) { return node.name !== name ? update(createJSDocLink(name, text), node) : node; } // @api function createJSDocLinkCode(name, text) { var node = createBaseNode(325 /* SyntaxKind.JSDocLinkCode */); node.name = name; node.text = text; return node; } // @api function updateJSDocLinkCode(node, name, text) { return node.name !== name ? update(createJSDocLinkCode(name, text), node) : node; } // @api function createJSDocLinkPlain(name, text) { var node = createBaseNode(326 /* SyntaxKind.JSDocLinkPlain */); node.name = name; node.text = text; return node; } // @api function updateJSDocLinkPlain(node, name, text) { return node.name !== name ? update(createJSDocLinkPlain(name, text), node) : node; } // @api function updateJSDocImplementsTag(node, tagName, className, comment) { if (tagName === void 0) { tagName = getDefaultTagName(node); } return node.tagName !== tagName || node.class !== className || node.comment !== comment ? update(createJSDocImplementsTag(tagName, className, comment), node) : node; } // @api // createJSDocAuthorTag // createJSDocClassTag // createJSDocPublicTag // createJSDocPrivateTag // createJSDocProtectedTag // createJSDocReadonlyTag // createJSDocDeprecatedTag function createJSDocSimpleTagWorker(kind, tagName, comment) { var node = createBaseJSDocTag(kind, tagName !== null && tagName !== void 0 ? tagName : createIdentifier(getDefaultTagNameForKind(kind)), comment); return node; } // @api // updateJSDocAuthorTag // updateJSDocClassTag // updateJSDocPublicTag // updateJSDocPrivateTag // updateJSDocProtectedTag // updateJSDocReadonlyTag // updateJSDocDeprecatedTag function updateJSDocSimpleTagWorker(kind, node, tagName, comment) { if (tagName === void 0) { tagName = getDefaultTagName(node); } return node.tagName !== tagName || node.comment !== comment ? update(createJSDocSimpleTagWorker(kind, tagName, comment), node) : node; } // @api // createJSDocTypeTag // createJSDocReturnTag // createJSDocThisTag // createJSDocEnumTag function createJSDocTypeLikeTagWorker(kind, tagName, typeExpression, comment) { var node = createBaseJSDocTag(kind, tagName !== null && tagName !== void 0 ? tagName : createIdentifier(getDefaultTagNameForKind(kind)), comment); node.typeExpression = typeExpression; return node; } // @api // updateJSDocTypeTag // updateJSDocReturnTag // updateJSDocThisTag // updateJSDocEnumTag function updateJSDocTypeLikeTagWorker(kind, node, tagName, typeExpression, comment) { if (tagName === void 0) { tagName = getDefaultTagName(node); } return node.tagName !== tagName || node.typeExpression !== typeExpression || node.comment !== comment ? update(createJSDocTypeLikeTagWorker(kind, tagName, typeExpression, comment), node) : node; } // @api function createJSDocUnknownTag(tagName, comment) { var node = createBaseJSDocTag(327 /* SyntaxKind.JSDocTag */, tagName, comment); return node; } // @api function updateJSDocUnknownTag(node, tagName, comment) { return node.tagName !== tagName || node.comment !== comment ? update(createJSDocUnknownTag(tagName, comment), node) : node; } // @api function createJSDocText(text) { var node = createBaseNode(321 /* SyntaxKind.JSDocText */); node.text = text; return node; } // @api function updateJSDocText(node, text) { return node.text !== text ? update(createJSDocText(text), node) : node; } // @api function createJSDocComment(comment, tags) { var node = createBaseNode(320 /* SyntaxKind.JSDoc */); node.comment = comment; node.tags = asNodeArray(tags); return node; } // @api function updateJSDocComment(node, comment, tags) { return node.comment !== comment || node.tags !== tags ? update(createJSDocComment(comment, tags), node) : node; } // // JSX // // @api function createJsxElement(openingElement, children, closingElement) { var node = createBaseNode(278 /* SyntaxKind.JsxElement */); node.openingElement = openingElement; node.children = createNodeArray(children); node.closingElement = closingElement; node.transformFlags |= propagateChildFlags(node.openingElement) | propagateChildrenFlags(node.children) | propagateChildFlags(node.closingElement) | 2 /* TransformFlags.ContainsJsx */; return node; } // @api function updateJsxElement(node, openingElement, children, closingElement) { return node.openingElement !== openingElement || node.children !== children || node.closingElement !== closingElement ? update(createJsxElement(openingElement, children, closingElement), node) : node; } // @api function createJsxSelfClosingElement(tagName, typeArguments, attributes) { var node = createBaseNode(279 /* SyntaxKind.JsxSelfClosingElement */); node.tagName = tagName; node.typeArguments = asNodeArray(typeArguments); node.attributes = attributes; node.transformFlags |= propagateChildFlags(node.tagName) | propagateChildrenFlags(node.typeArguments) | propagateChildFlags(node.attributes) | 2 /* TransformFlags.ContainsJsx */; if (node.typeArguments) { node.transformFlags |= 1 /* TransformFlags.ContainsTypeScript */; } return node; } // @api function updateJsxSelfClosingElement(node, tagName, typeArguments, attributes) { return node.tagName !== tagName || node.typeArguments !== typeArguments || node.attributes !== attributes ? update(createJsxSelfClosingElement(tagName, typeArguments, attributes), node) : node; } // @api function createJsxOpeningElement(tagName, typeArguments, attributes) { var node = createBaseNode(280 /* SyntaxKind.JsxOpeningElement */); node.tagName = tagName; node.typeArguments = asNodeArray(typeArguments); node.attributes = attributes; node.transformFlags |= propagateChildFlags(node.tagName) | propagateChildrenFlags(node.typeArguments) | propagateChildFlags(node.attributes) | 2 /* TransformFlags.ContainsJsx */; if (typeArguments) { node.transformFlags |= 1 /* TransformFlags.ContainsTypeScript */; } return node; } // @api function updateJsxOpeningElement(node, tagName, typeArguments, attributes) { return node.tagName !== tagName || node.typeArguments !== typeArguments || node.attributes !== attributes ? update(createJsxOpeningElement(tagName, typeArguments, attributes), node) : node; } // @api function createJsxClosingElement(tagName) { var node = createBaseNode(281 /* SyntaxKind.JsxClosingElement */); node.tagName = tagName; node.transformFlags |= propagateChildFlags(node.tagName) | 2 /* TransformFlags.ContainsJsx */; return node; } // @api function updateJsxClosingElement(node, tagName) { return node.tagName !== tagName ? update(createJsxClosingElement(tagName), node) : node; } // @api function createJsxFragment(openingFragment, children, closingFragment) { var node = createBaseNode(282 /* SyntaxKind.JsxFragment */); node.openingFragment = openingFragment; node.children = createNodeArray(children); node.closingFragment = closingFragment; node.transformFlags |= propagateChildFlags(node.openingFragment) | propagateChildrenFlags(node.children) | propagateChildFlags(node.closingFragment) | 2 /* TransformFlags.ContainsJsx */; return node; } // @api function updateJsxFragment(node, openingFragment, children, closingFragment) { return node.openingFragment !== openingFragment || node.children !== children || node.closingFragment !== closingFragment ? update(createJsxFragment(openingFragment, children, closingFragment), node) : node; } // @api function createJsxText(text, containsOnlyTriviaWhiteSpaces) { var node = createBaseNode(11 /* SyntaxKind.JsxText */); node.text = text; node.containsOnlyTriviaWhiteSpaces = !!containsOnlyTriviaWhiteSpaces; node.transformFlags |= 2 /* TransformFlags.ContainsJsx */; return node; } // @api function updateJsxText(node, text, containsOnlyTriviaWhiteSpaces) { return node.text !== text || node.containsOnlyTriviaWhiteSpaces !== containsOnlyTriviaWhiteSpaces ? update(createJsxText(text, containsOnlyTriviaWhiteSpaces), node) : node; } // @api function createJsxOpeningFragment() { var node = createBaseNode(283 /* SyntaxKind.JsxOpeningFragment */); node.transformFlags |= 2 /* TransformFlags.ContainsJsx */; return node; } // @api function createJsxJsxClosingFragment() { var node = createBaseNode(284 /* SyntaxKind.JsxClosingFragment */); node.transformFlags |= 2 /* TransformFlags.ContainsJsx */; return node; } // @api function createJsxAttribute(name, initializer) { var node = createBaseNode(285 /* SyntaxKind.JsxAttribute */); node.name = name; node.initializer = initializer; node.transformFlags |= propagateChildFlags(node.name) | propagateChildFlags(node.initializer) | 2 /* TransformFlags.ContainsJsx */; return node; } // @api function updateJsxAttribute(node, name, initializer) { return node.name !== name || node.initializer !== initializer ? update(createJsxAttribute(name, initializer), node) : node; } // @api function createJsxAttributes(properties) { var node = createBaseNode(286 /* SyntaxKind.JsxAttributes */); node.properties = createNodeArray(properties); node.transformFlags |= propagateChildrenFlags(node.properties) | 2 /* TransformFlags.ContainsJsx */; return node; } // @api function updateJsxAttributes(node, properties) { return node.properties !== properties ? update(createJsxAttributes(properties), node) : node; } // @api function createJsxSpreadAttribute(expression) { var node = createBaseNode(287 /* SyntaxKind.JsxSpreadAttribute */); node.expression = expression; node.transformFlags |= propagateChildFlags(node.expression) | 2 /* TransformFlags.ContainsJsx */; return node; } // @api function updateJsxSpreadAttribute(node, expression) { return node.expression !== expression ? update(createJsxSpreadAttribute(expression), node) : node; } // @api function createJsxExpression(dotDotDotToken, expression) { var node = createBaseNode(288 /* SyntaxKind.JsxExpression */); node.dotDotDotToken = dotDotDotToken; node.expression = expression; node.transformFlags |= propagateChildFlags(node.dotDotDotToken) | propagateChildFlags(node.expression) | 2 /* TransformFlags.ContainsJsx */; return node; } // @api function updateJsxExpression(node, expression) { return node.expression !== expression ? update(createJsxExpression(node.dotDotDotToken, expression), node) : node; } // // Clauses // // @api function createCaseClause(expression, statements) { var node = createBaseNode(289 /* SyntaxKind.CaseClause */); node.expression = parenthesizerRules().parenthesizeExpressionForDisallowedComma(expression); node.statements = createNodeArray(statements); node.transformFlags |= propagateChildFlags(node.expression) | propagateChildrenFlags(node.statements); return node; } // @api function updateCaseClause(node, expression, statements) { return node.expression !== expression || node.statements !== statements ? update(createCaseClause(expression, statements), node) : node; } // @api function createDefaultClause(statements) { var node = createBaseNode(290 /* SyntaxKind.DefaultClause */); node.statements = createNodeArray(statements); node.transformFlags = propagateChildrenFlags(node.statements); return node; } // @api function updateDefaultClause(node, statements) { return node.statements !== statements ? update(createDefaultClause(statements), node) : node; } // @api function createHeritageClause(token, types) { var node = createBaseNode(291 /* SyntaxKind.HeritageClause */); node.token = token; node.types = createNodeArray(types); node.transformFlags |= propagateChildrenFlags(node.types); switch (token) { case 94 /* SyntaxKind.ExtendsKeyword */: node.transformFlags |= 1024 /* TransformFlags.ContainsES2015 */; break; case 117 /* SyntaxKind.ImplementsKeyword */: node.transformFlags |= 1 /* TransformFlags.ContainsTypeScript */; break; default: return ts.Debug.assertNever(token); } return node; } // @api function updateHeritageClause(node, types) { return node.types !== types ? update(createHeritageClause(node.token, types), node) : node; } // @api function createCatchClause(variableDeclaration, block) { var node = createBaseNode(292 /* SyntaxKind.CatchClause */); if (typeof variableDeclaration === "string" || variableDeclaration && !ts.isVariableDeclaration(variableDeclaration)) { variableDeclaration = createVariableDeclaration(variableDeclaration, /*exclamationToken*/ undefined, /*type*/ undefined, /*initializer*/ undefined); } node.variableDeclaration = variableDeclaration; node.block = block; node.transformFlags |= propagateChildFlags(node.variableDeclaration) | propagateChildFlags(node.block); if (!variableDeclaration) node.transformFlags |= 64 /* TransformFlags.ContainsES2019 */; return node; } // @api function updateCatchClause(node, variableDeclaration, block) { return node.variableDeclaration !== variableDeclaration || node.block !== block ? update(createCatchClause(variableDeclaration, block), node) : node; } // // Property assignments // // @api function createPropertyAssignment(name, initializer) { var node = createBaseNamedDeclaration(296 /* SyntaxKind.PropertyAssignment */, /*decorators*/ undefined, /*modifiers*/ undefined, name); node.initializer = parenthesizerRules().parenthesizeExpressionForDisallowedComma(initializer); node.transformFlags |= propagateChildFlags(node.name) | propagateChildFlags(node.initializer); return node; } function finishUpdatePropertyAssignment(updated, original) { // copy children used only for error reporting if (original.decorators) updated.decorators = original.decorators; if (original.modifiers) updated.modifiers = original.modifiers; if (original.questionToken) updated.questionToken = original.questionToken; if (original.exclamationToken) updated.exclamationToken = original.exclamationToken; return update(updated, original); } // @api function updatePropertyAssignment(node, name, initializer) { return node.name !== name || node.initializer !== initializer ? finishUpdatePropertyAssignment(createPropertyAssignment(name, initializer), node) : node; } // @api function createShorthandPropertyAssignment(name, objectAssignmentInitializer) { var node = createBaseNamedDeclaration(297 /* SyntaxKind.ShorthandPropertyAssignment */, /*decorators*/ undefined, /*modifiers*/ undefined, name); node.objectAssignmentInitializer = objectAssignmentInitializer && parenthesizerRules().parenthesizeExpressionForDisallowedComma(objectAssignmentInitializer); node.transformFlags |= propagateChildFlags(node.objectAssignmentInitializer) | 1024 /* TransformFlags.ContainsES2015 */; return node; } function finishUpdateShorthandPropertyAssignment(updated, original) { // copy children used only for error reporting if (original.decorators) updated.decorators = original.decorators; if (original.modifiers) updated.modifiers = original.modifiers; if (original.equalsToken) updated.equalsToken = original.equalsToken; if (original.questionToken) updated.questionToken = original.questionToken; if (original.exclamationToken) updated.exclamationToken = original.exclamationToken; return update(updated, original); } // @api function updateShorthandPropertyAssignment(node, name, objectAssignmentInitializer) { return node.name !== name || node.objectAssignmentInitializer !== objectAssignmentInitializer ? finishUpdateShorthandPropertyAssignment(createShorthandPropertyAssignment(name, objectAssignmentInitializer), node) : node; } // @api function createSpreadAssignment(expression) { var node = createBaseNode(298 /* SyntaxKind.SpreadAssignment */); node.expression = parenthesizerRules().parenthesizeExpressionForDisallowedComma(expression); node.transformFlags |= propagateChildFlags(node.expression) | 128 /* TransformFlags.ContainsES2018 */ | 32768 /* TransformFlags.ContainsObjectRestOrSpread */; return node; } // @api function updateSpreadAssignment(node, expression) { return node.expression !== expression ? update(createSpreadAssignment(expression), node) : node; } // // Enum // // @api function createEnumMember(name, initializer) { var node = createBaseNode(299 /* SyntaxKind.EnumMember */); node.name = asName(name); node.initializer = initializer && parenthesizerRules().parenthesizeExpressionForDisallowedComma(initializer); node.transformFlags |= propagateChildFlags(node.name) | propagateChildFlags(node.initializer) | 1 /* TransformFlags.ContainsTypeScript */; return node; } // @api function updateEnumMember(node, name, initializer) { return node.name !== name || node.initializer !== initializer ? update(createEnumMember(name, initializer), node) : node; } // // Top-level nodes // // @api function createSourceFile(statements, endOfFileToken, flags) { var node = baseFactory.createBaseSourceFileNode(305 /* SyntaxKind.SourceFile */); node.statements = createNodeArray(statements); node.endOfFileToken = endOfFileToken; node.flags |= flags; node.fileName = ""; node.text = ""; node.languageVersion = 0; node.languageVariant = 0; node.scriptKind = 0; node.isDeclarationFile = false; node.hasNoDefaultLib = false; node.transformFlags |= propagateChildrenFlags(node.statements) | propagateChildFlags(node.endOfFileToken); return node; } function cloneSourceFileWithChanges(source, statements, isDeclarationFile, referencedFiles, typeReferences, hasNoDefaultLib, libReferences) { var node = (source.redirectInfo ? Object.create(source.redirectInfo.redirectTarget) : baseFactory.createBaseSourceFileNode(305 /* SyntaxKind.SourceFile */)); for (var p in source) { if (p === "emitNode" || ts.hasProperty(node, p) || !ts.hasProperty(source, p)) continue; node[p] = source[p]; } node.flags |= source.flags; node.statements = createNodeArray(statements); node.endOfFileToken = source.endOfFileToken; node.isDeclarationFile = isDeclarationFile; node.referencedFiles = referencedFiles; node.typeReferenceDirectives = typeReferences; node.hasNoDefaultLib = hasNoDefaultLib; node.libReferenceDirectives = libReferences; node.transformFlags = propagateChildrenFlags(node.statements) | propagateChildFlags(node.endOfFileToken); node.impliedNodeFormat = source.impliedNodeFormat; return node; } // @api function updateSourceFile(node, statements, isDeclarationFile, referencedFiles, typeReferenceDirectives, hasNoDefaultLib, libReferenceDirectives) { if (isDeclarationFile === void 0) { isDeclarationFile = node.isDeclarationFile; } if (referencedFiles === void 0) { referencedFiles = node.referencedFiles; } if (typeReferenceDirectives === void 0) { typeReferenceDirectives = node.typeReferenceDirectives; } if (hasNoDefaultLib === void 0) { hasNoDefaultLib = node.hasNoDefaultLib; } if (libReferenceDirectives === void 0) { libReferenceDirectives = node.libReferenceDirectives; } return node.statements !== statements || node.isDeclarationFile !== isDeclarationFile || node.referencedFiles !== referencedFiles || node.typeReferenceDirectives !== typeReferenceDirectives || node.hasNoDefaultLib !== hasNoDefaultLib || node.libReferenceDirectives !== libReferenceDirectives ? update(cloneSourceFileWithChanges(node, statements, isDeclarationFile, referencedFiles, typeReferenceDirectives, hasNoDefaultLib, libReferenceDirectives), node) : node; } // @api function createBundle(sourceFiles, prepends) { if (prepends === void 0) { prepends = ts.emptyArray; } var node = createBaseNode(306 /* SyntaxKind.Bundle */); node.prepends = prepends; node.sourceFiles = sourceFiles; return node; } // @api function updateBundle(node, sourceFiles, prepends) { if (prepends === void 0) { prepends = ts.emptyArray; } return node.sourceFiles !== sourceFiles || node.prepends !== prepends ? update(createBundle(sourceFiles, prepends), node) : node; } // @api function createUnparsedSource(prologues, syntheticReferences, texts) { var node = createBaseNode(307 /* SyntaxKind.UnparsedSource */); node.prologues = prologues; node.syntheticReferences = syntheticReferences; node.texts = texts; node.fileName = ""; node.text = ""; node.referencedFiles = ts.emptyArray; node.libReferenceDirectives = ts.emptyArray; node.getLineAndCharacterOfPosition = function (pos) { return ts.getLineAndCharacterOfPosition(node, pos); }; return node; } function createBaseUnparsedNode(kind, data) { var node = createBaseNode(kind); node.data = data; return node; } // @api function createUnparsedPrologue(data) { return createBaseUnparsedNode(300 /* SyntaxKind.UnparsedPrologue */, data); } // @api function createUnparsedPrepend(data, texts) { var node = createBaseUnparsedNode(301 /* SyntaxKind.UnparsedPrepend */, data); node.texts = texts; return node; } // @api function createUnparsedTextLike(data, internal) { return createBaseUnparsedNode(internal ? 303 /* SyntaxKind.UnparsedInternalText */ : 302 /* SyntaxKind.UnparsedText */, data); } // @api function createUnparsedSyntheticReference(section) { var node = createBaseNode(304 /* SyntaxKind.UnparsedSyntheticReference */); node.data = section.data; node.section = section; return node; } // @api function createInputFiles() { var node = createBaseNode(308 /* SyntaxKind.InputFiles */); node.javascriptText = ""; node.declarationText = ""; return node; } // // Synthetic Nodes (used by checker) // // @api function createSyntheticExpression(type, isSpread, tupleNameSource) { if (isSpread === void 0) { isSpread = false; } var node = createBaseNode(232 /* SyntaxKind.SyntheticExpression */); node.type = type; node.isSpread = isSpread; node.tupleNameSource = tupleNameSource; return node; } // @api function createSyntaxList(children) { var node = createBaseNode(348 /* SyntaxKind.SyntaxList */); node._children = children; return node; } // // Transformation nodes // /** * Creates a synthetic statement to act as a placeholder for a not-emitted statement in * order to preserve comments. * * @param original The original statement. */ // @api function createNotEmittedStatement(original) { var node = createBaseNode(349 /* SyntaxKind.NotEmittedStatement */); node.original = original; ts.setTextRange(node, original); return node; } /** * Creates a synthetic expression to act as a placeholder for a not-emitted expression in * order to preserve comments or sourcemap positions. * * @param expression The inner expression to emit. * @param original The original outer expression. */ // @api function createPartiallyEmittedExpression(expression, original) { var node = createBaseNode(350 /* SyntaxKind.PartiallyEmittedExpression */); node.expression = expression; node.original = original; node.transformFlags |= propagateChildFlags(node.expression) | 1 /* TransformFlags.ContainsTypeScript */; ts.setTextRange(node, original); return node; } // @api function updatePartiallyEmittedExpression(node, expression) { return node.expression !== expression ? update(createPartiallyEmittedExpression(expression, node.original), node) : node; } function flattenCommaElements(node) { if (ts.nodeIsSynthesized(node) && !ts.isParseTreeNode(node) && !node.original && !node.emitNode && !node.id) { if (ts.isCommaListExpression(node)) { return node.elements; } if (ts.isBinaryExpression(node) && ts.isCommaToken(node.operatorToken)) { return [node.left, node.right]; } } return node; } // @api function createCommaListExpression(elements) { var node = createBaseNode(351 /* SyntaxKind.CommaListExpression */); node.elements = createNodeArray(ts.sameFlatMap(elements, flattenCommaElements)); node.transformFlags |= propagateChildrenFlags(node.elements); return node; } // @api function updateCommaListExpression(node, elements) { return node.elements !== elements ? update(createCommaListExpression(elements), node) : node; } /** * Creates a synthetic element to act as a placeholder for the end of an emitted declaration in * order to properly emit exports. */ // @api function createEndOfDeclarationMarker(original) { var node = createBaseNode(353 /* SyntaxKind.EndOfDeclarationMarker */); node.emitNode = {}; node.original = original; return node; } /** * Creates a synthetic element to act as a placeholder for the beginning of a merged declaration in * order to properly emit exports. */ // @api function createMergeDeclarationMarker(original) { var node = createBaseNode(352 /* SyntaxKind.MergeDeclarationMarker */); node.emitNode = {}; node.original = original; return node; } // @api function createSyntheticReferenceExpression(expression, thisArg) { var node = createBaseNode(354 /* SyntaxKind.SyntheticReferenceExpression */); node.expression = expression; node.thisArg = thisArg; node.transformFlags |= propagateChildFlags(node.expression) | propagateChildFlags(node.thisArg); return node; } // @api function updateSyntheticReferenceExpression(node, expression, thisArg) { return node.expression !== expression || node.thisArg !== thisArg ? update(createSyntheticReferenceExpression(expression, thisArg), node) : node; } function cloneNode(node) { // We don't use "clone" from core.ts here, as we need to preserve the prototype chain of // the original node. We also need to exclude specific properties and only include own- // properties (to skip members already defined on the shared prototype). if (node === undefined) { return node; } var clone = ts.isSourceFile(node) ? baseFactory.createBaseSourceFileNode(305 /* SyntaxKind.SourceFile */) : ts.isIdentifier(node) ? baseFactory.createBaseIdentifierNode(79 /* SyntaxKind.Identifier */) : ts.isPrivateIdentifier(node) ? baseFactory.createBasePrivateIdentifierNode(80 /* SyntaxKind.PrivateIdentifier */) : !ts.isNodeKind(node.kind) ? baseFactory.createBaseTokenNode(node.kind) : baseFactory.createBaseNode(node.kind); clone.flags |= (node.flags & ~8 /* NodeFlags.Synthesized */); clone.transformFlags = node.transformFlags; setOriginalNode(clone, node); for (var key in node) { if (clone.hasOwnProperty(key) || !node.hasOwnProperty(key)) { continue; } clone[key] = node[key]; } return clone; } function createImmediatelyInvokedFunctionExpression(statements, param, paramValue) { return createCallExpression(createFunctionExpression( /*modifiers*/ undefined, /*asteriskToken*/ undefined, /*name*/ undefined, /*typeParameters*/ undefined, /*parameters*/ param ? [param] : [], /*type*/ undefined, createBlock(statements, /*multiLine*/ true)), /*typeArguments*/ undefined, /*argumentsArray*/ paramValue ? [paramValue] : []); } function createImmediatelyInvokedArrowFunction(statements, param, paramValue) { return createCallExpression(createArrowFunction( /*modifiers*/ undefined, /*typeParameters*/ undefined, /*parameters*/ param ? [param] : [], /*type*/ undefined, /*equalsGreaterThanToken*/ undefined, createBlock(statements, /*multiLine*/ true)), /*typeArguments*/ undefined, /*argumentsArray*/ paramValue ? [paramValue] : []); } function createVoidZero() { return createVoidExpression(createNumericLiteral("0")); } function createExportDefault(expression) { return createExportAssignment( /*decorators*/ undefined, /*modifiers*/ undefined, /*isExportEquals*/ false, expression); } function createExternalModuleExport(exportName) { return createExportDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*isTypeOnly*/ false, createNamedExports([ createExportSpecifier(/*isTypeOnly*/ false, /*propertyName*/ undefined, exportName) ])); } // // Utilities // function createTypeCheck(value, tag) { return tag === "undefined" ? factory.createStrictEquality(value, createVoidZero()) : factory.createStrictEquality(createTypeOfExpression(value), createStringLiteral(tag)); } function createMethodCall(object, methodName, argumentsList) { // Preserve the optionality of `object`. if (ts.isCallChain(object)) { return createCallChain(createPropertyAccessChain(object, /*questionDotToken*/ undefined, methodName), /*questionDotToken*/ undefined, /*typeArguments*/ undefined, argumentsList); } return createCallExpression(createPropertyAccessExpression(object, methodName), /*typeArguments*/ undefined, argumentsList); } function createFunctionBindCall(target, thisArg, argumentsList) { return createMethodCall(target, "bind", __spreadArray([thisArg], argumentsList, true)); } function createFunctionCallCall(target, thisArg, argumentsList) { return createMethodCall(target, "call", __spreadArray([thisArg], argumentsList, true)); } function createFunctionApplyCall(target, thisArg, argumentsExpression) { return createMethodCall(target, "apply", [thisArg, argumentsExpression]); } function createGlobalMethodCall(globalObjectName, methodName, argumentsList) { return createMethodCall(createIdentifier(globalObjectName), methodName, argumentsList); } function createArraySliceCall(array, start) { return createMethodCall(array, "slice", start === undefined ? [] : [asExpression(start)]); } function createArrayConcatCall(array, argumentsList) { return createMethodCall(array, "concat", argumentsList); } function createObjectDefinePropertyCall(target, propertyName, attributes) { return createGlobalMethodCall("Object", "defineProperty", [target, asExpression(propertyName), attributes]); } function createReflectGetCall(target, propertyKey, receiver) { return createGlobalMethodCall("Reflect", "get", receiver ? [target, propertyKey, receiver] : [target, propertyKey]); } function createReflectSetCall(target, propertyKey, value, receiver) { return createGlobalMethodCall("Reflect", "set", receiver ? [target, propertyKey, value, receiver] : [target, propertyKey, value]); } function tryAddPropertyAssignment(properties, propertyName, expression) { if (expression) { properties.push(createPropertyAssignment(propertyName, expression)); return true; } return false; } function createPropertyDescriptor(attributes, singleLine) { var properties = []; tryAddPropertyAssignment(properties, "enumerable", asExpression(attributes.enumerable)); tryAddPropertyAssignment(properties, "configurable", asExpression(attributes.configurable)); var isData = tryAddPropertyAssignment(properties, "writable", asExpression(attributes.writable)); isData = tryAddPropertyAssignment(properties, "value", attributes.value) || isData; var isAccessor = tryAddPropertyAssignment(properties, "get", attributes.get); isAccessor = tryAddPropertyAssignment(properties, "set", attributes.set) || isAccessor; ts.Debug.assert(!(isData && isAccessor), "A PropertyDescriptor may not be both an accessor descriptor and a data descriptor."); return createObjectLiteralExpression(properties, !singleLine); } function updateOuterExpression(outerExpression, expression) { switch (outerExpression.kind) { case 212 /* SyntaxKind.ParenthesizedExpression */: return updateParenthesizedExpression(outerExpression, expression); case 211 /* SyntaxKind.TypeAssertionExpression */: return updateTypeAssertion(outerExpression, outerExpression.type, expression); case 229 /* SyntaxKind.AsExpression */: return updateAsExpression(outerExpression, expression, outerExpression.type); case 230 /* SyntaxKind.NonNullExpression */: return updateNonNullExpression(outerExpression, expression); case 350 /* SyntaxKind.PartiallyEmittedExpression */: return updatePartiallyEmittedExpression(outerExpression, expression); } } /** * Determines whether a node is a parenthesized expression that can be ignored when recreating outer expressions. * * A parenthesized expression can be ignored when all of the following are true: * * - It's `pos` and `end` are not -1 * - It does not have a custom source map range * - It does not have a custom comment range * - It does not have synthetic leading or trailing comments * * If an outermost parenthesized expression is ignored, but the containing expression requires a parentheses around * the expression to maintain precedence, a new parenthesized expression should be created automatically when * the containing expression is created/updated. */ function isIgnorableParen(node) { return ts.isParenthesizedExpression(node) && ts.nodeIsSynthesized(node) && ts.nodeIsSynthesized(ts.getSourceMapRange(node)) && ts.nodeIsSynthesized(ts.getCommentRange(node)) && !ts.some(ts.getSyntheticLeadingComments(node)) && !ts.some(ts.getSyntheticTrailingComments(node)); } function restoreOuterExpressions(outerExpression, innerExpression, kinds) { if (kinds === void 0) { kinds = 15 /* OuterExpressionKinds.All */; } if (outerExpression && ts.isOuterExpression(outerExpression, kinds) && !isIgnorableParen(outerExpression)) { return updateOuterExpression(outerExpression, restoreOuterExpressions(outerExpression.expression, innerExpression)); } return innerExpression; } function restoreEnclosingLabel(node, outermostLabeledStatement, afterRestoreLabelCallback) { if (!outermostLabeledStatement) { return node; } var updated = updateLabeledStatement(outermostLabeledStatement, outermostLabeledStatement.label, ts.isLabeledStatement(outermostLabeledStatement.statement) ? restoreEnclosingLabel(node, outermostLabeledStatement.statement) : node); if (afterRestoreLabelCallback) { afterRestoreLabelCallback(outermostLabeledStatement); } return updated; } function shouldBeCapturedInTempVariable(node, cacheIdentifiers) { var target = ts.skipParentheses(node); switch (target.kind) { case 79 /* SyntaxKind.Identifier */: return cacheIdentifiers; case 108 /* SyntaxKind.ThisKeyword */: case 8 /* SyntaxKind.NumericLiteral */: case 9 /* SyntaxKind.BigIntLiteral */: case 10 /* SyntaxKind.StringLiteral */: return false; case 204 /* SyntaxKind.ArrayLiteralExpression */: var elements = target.elements; if (elements.length === 0) { return false; } return true; case 205 /* SyntaxKind.ObjectLiteralExpression */: return target.properties.length > 0; default: return true; } } function createCallBinding(expression, recordTempVariable, languageVersion, cacheIdentifiers) { if (cacheIdentifiers === void 0) { cacheIdentifiers = false; } var callee = ts.skipOuterExpressions(expression, 15 /* OuterExpressionKinds.All */); var thisArg; var target; if (ts.isSuperProperty(callee)) { thisArg = createThis(); target = callee; } else if (ts.isSuperKeyword(callee)) { thisArg = createThis(); target = languageVersion !== undefined && languageVersion < 2 /* ScriptTarget.ES2015 */ ? ts.setTextRange(createIdentifier("_super"), callee) : callee; } else if (ts.getEmitFlags(callee) & 4096 /* EmitFlags.HelperName */) { thisArg = createVoidZero(); target = parenthesizerRules().parenthesizeLeftSideOfAccess(callee); } else if (ts.isPropertyAccessExpression(callee)) { if (shouldBeCapturedInTempVariable(callee.expression, cacheIdentifiers)) { // for `a.b()` target is `(_a = a).b` and thisArg is `_a` thisArg = createTempVariable(recordTempVariable); target = createPropertyAccessExpression(ts.setTextRange(factory.createAssignment(thisArg, callee.expression), callee.expression), callee.name); ts.setTextRange(target, callee); } else { thisArg = callee.expression; target = callee; } } else if (ts.isElementAccessExpression(callee)) { if (shouldBeCapturedInTempVariable(callee.expression, cacheIdentifiers)) { // for `a[b]()` target is `(_a = a)[b]` and thisArg is `_a` thisArg = createTempVariable(recordTempVariable); target = createElementAccessExpression(ts.setTextRange(factory.createAssignment(thisArg, callee.expression), callee.expression), callee.argumentExpression); ts.setTextRange(target, callee); } else { thisArg = callee.expression; target = callee; } } else { // for `a()` target is `a` and thisArg is `void 0` thisArg = createVoidZero(); target = parenthesizerRules().parenthesizeLeftSideOfAccess(expression); } return { target: target, thisArg: thisArg }; } function createAssignmentTargetWrapper(paramName, expression) { return createPropertyAccessExpression( // Explicit parens required because of v8 regression (https://bugs.chromium.org/p/v8/issues/detail?id=9560) createParenthesizedExpression(createObjectLiteralExpression([ createSetAccessorDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, "value", [createParameterDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, paramName, /*questionToken*/ undefined, /*type*/ undefined, /*initializer*/ undefined)], createBlock([ createExpressionStatement(expression) ])) ])), "value"); } function inlineExpressions(expressions) { // Avoid deeply nested comma expressions as traversing them during emit can result in "Maximum call // stack size exceeded" errors. return expressions.length > 10 ? createCommaListExpression(expressions) : ts.reduceLeft(expressions, factory.createComma); } function getName(node, allowComments, allowSourceMaps, emitFlags) { if (emitFlags === void 0) { emitFlags = 0; } var nodeName = ts.getNameOfDeclaration(node); if (nodeName && ts.isIdentifier(nodeName) && !ts.isGeneratedIdentifier(nodeName)) { // TODO(rbuckton): Does this need to be parented? var name = ts.setParent(ts.setTextRange(cloneNode(nodeName), nodeName), nodeName.parent); emitFlags |= ts.getEmitFlags(nodeName); if (!allowSourceMaps) emitFlags |= 48 /* EmitFlags.NoSourceMap */; if (!allowComments) emitFlags |= 1536 /* EmitFlags.NoComments */; if (emitFlags) ts.setEmitFlags(name, emitFlags); return name; } return getGeneratedNameForNode(node); } /** * Gets the internal name of a declaration. This is primarily used for declarations that can be * referred to by name in the body of an ES5 class function body. An internal name will *never* * be prefixed with an module or namespace export modifier like "exports." when emitted as an * expression. An internal name will also *never* be renamed due to a collision with a block * scoped variable. * * @param node The declaration. * @param allowComments A value indicating whether comments may be emitted for the name. * @param allowSourceMaps A value indicating whether source maps may be emitted for the name. */ function getInternalName(node, allowComments, allowSourceMaps) { return getName(node, allowComments, allowSourceMaps, 16384 /* EmitFlags.LocalName */ | 32768 /* EmitFlags.InternalName */); } /** * Gets the local name of a declaration. This is primarily used for declarations that can be * referred to by name in the declaration's immediate scope (classes, enums, namespaces). A * local name will *never* be prefixed with an module or namespace export modifier like * "exports." when emitted as an expression. * * @param node The declaration. * @param allowComments A value indicating whether comments may be emitted for the name. * @param allowSourceMaps A value indicating whether source maps may be emitted for the name. */ function getLocalName(node, allowComments, allowSourceMaps) { return getName(node, allowComments, allowSourceMaps, 16384 /* EmitFlags.LocalName */); } /** * Gets the export name of a declaration. This is primarily used for declarations that can be * referred to by name in the declaration's immediate scope (classes, enums, namespaces). An * export name will *always* be prefixed with an module or namespace export modifier like * `"exports."` when emitted as an expression if the name points to an exported symbol. * * @param node The declaration. * @param allowComments A value indicating whether comments may be emitted for the name. * @param allowSourceMaps A value indicating whether source maps may be emitted for the name. */ function getExportName(node, allowComments, allowSourceMaps) { return getName(node, allowComments, allowSourceMaps, 8192 /* EmitFlags.ExportName */); } /** * Gets the name of a declaration for use in declarations. * * @param node The declaration. * @param allowComments A value indicating whether comments may be emitted for the name. * @param allowSourceMaps A value indicating whether source maps may be emitted for the name. */ function getDeclarationName(node, allowComments, allowSourceMaps) { return getName(node, allowComments, allowSourceMaps); } /** * Gets a namespace-qualified name for use in expressions. * * @param ns The namespace identifier. * @param name The name. * @param allowComments A value indicating whether comments may be emitted for the name. * @param allowSourceMaps A value indicating whether source maps may be emitted for the name. */ function getNamespaceMemberName(ns, name, allowComments, allowSourceMaps) { var qualifiedName = createPropertyAccessExpression(ns, ts.nodeIsSynthesized(name) ? name : cloneNode(name)); ts.setTextRange(qualifiedName, name); var emitFlags = 0; if (!allowSourceMaps) emitFlags |= 48 /* EmitFlags.NoSourceMap */; if (!allowComments) emitFlags |= 1536 /* EmitFlags.NoComments */; if (emitFlags) ts.setEmitFlags(qualifiedName, emitFlags); return qualifiedName; } /** * Gets the exported name of a declaration for use in expressions. * * An exported name will *always* be prefixed with an module or namespace export modifier like * "exports." if the name points to an exported symbol. * * @param ns The namespace identifier. * @param node The declaration. * @param allowComments A value indicating whether comments may be emitted for the name. * @param allowSourceMaps A value indicating whether source maps may be emitted for the name. */ function getExternalModuleOrNamespaceExportName(ns, node, allowComments, allowSourceMaps) { if (ns && ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */)) { return getNamespaceMemberName(ns, getName(node), allowComments, allowSourceMaps); } return getExportName(node, allowComments, allowSourceMaps); } /** * Copies any necessary standard and custom prologue-directives into target array. * @param source origin statements array * @param target result statements array * @param ensureUseStrict boolean determining whether the function need to add prologue-directives * @param visitor Optional callback used to visit any custom prologue directives. */ function copyPrologue(source, target, ensureUseStrict, visitor) { var offset = copyStandardPrologue(source, target, 0, ensureUseStrict); return copyCustomPrologue(source, target, offset, visitor); } function isUseStrictPrologue(node) { return ts.isStringLiteral(node.expression) && node.expression.text === "use strict"; } function createUseStrictPrologue() { return ts.startOnNewLine(createExpressionStatement(createStringLiteral("use strict"))); } /** * Copies only the standard (string-expression) prologue-directives into the target statement-array. * @param source origin statements array * @param target result statements array * @param statementOffset The offset at which to begin the copy. * @param ensureUseStrict boolean determining whether the function need to add prologue-directives * @returns Count of how many directive statements were copied. */ function copyStandardPrologue(source, target, statementOffset, ensureUseStrict) { if (statementOffset === void 0) { statementOffset = 0; } ts.Debug.assert(target.length === 0, "Prologue directives should be at the first statement in the target statements array"); var foundUseStrict = false; var numStatements = source.length; while (statementOffset < numStatements) { var statement = source[statementOffset]; if (ts.isPrologueDirective(statement)) { if (isUseStrictPrologue(statement)) { foundUseStrict = true; } target.push(statement); } else { break; } statementOffset++; } if (ensureUseStrict && !foundUseStrict) { target.push(createUseStrictPrologue()); } return statementOffset; } function copyCustomPrologue(source, target, statementOffset, visitor, filter) { if (filter === void 0) { filter = ts.returnTrue; } var numStatements = source.length; while (statementOffset !== undefined && statementOffset < numStatements) { var statement = source[statementOffset]; if (ts.getEmitFlags(statement) & 1048576 /* EmitFlags.CustomPrologue */ && filter(statement)) { ts.append(target, visitor ? ts.visitNode(statement, visitor, ts.isStatement) : statement); } else { break; } statementOffset++; } return statementOffset; } /** * Ensures "use strict" directive is added * * @param statements An array of statements */ function ensureUseStrict(statements) { var foundUseStrict = ts.findUseStrictPrologue(statements); if (!foundUseStrict) { return ts.setTextRange(createNodeArray(__spreadArray([createUseStrictPrologue()], statements, true)), statements); } return statements; } /** * Lifts a NodeArray containing only Statement nodes to a block. * * @param nodes The NodeArray. */ function liftToBlock(nodes) { ts.Debug.assert(ts.every(nodes, ts.isStatementOrBlock), "Cannot lift nodes to a Block."); return ts.singleOrUndefined(nodes) || createBlock(nodes); } function findSpanEnd(array, test, start) { var i = start; while (i < array.length && test(array[i])) { i++; } return i; } function mergeLexicalEnvironment(statements, declarations) { if (!ts.some(declarations)) { return statements; } // When we merge new lexical statements into an existing statement list, we merge them in the following manner: // // Given: // // | Left | Right | // |------------------------------------|-------------------------------------| // | [standard prologues (left)] | [standard prologues (right)] | // | [hoisted functions (left)] | [hoisted functions (right)] | // | [hoisted variables (left)] | [hoisted variables (right)] | // | [lexical init statements (left)] | [lexical init statements (right)] | // | [other statements (left)] | | // // The resulting statement list will be: // // | Result | // |-------------------------------------| // | [standard prologues (right)] | // | [standard prologues (left)] | // | [hoisted functions (right)] | // | [hoisted functions (left)] | // | [hoisted variables (right)] | // | [hoisted variables (left)] | // | [lexical init statements (right)] | // | [lexical init statements (left)] | // | [other statements (left)] | // // NOTE: It is expected that new lexical init statements must be evaluated before existing lexical init statements, // as the prior transformation may depend on the evaluation of the lexical init statements to be in the correct state. // find standard prologues on left in the following order: standard directives, hoisted functions, hoisted variables, other custom var leftStandardPrologueEnd = findSpanEnd(statements, ts.isPrologueDirective, 0); var leftHoistedFunctionsEnd = findSpanEnd(statements, ts.isHoistedFunction, leftStandardPrologueEnd); var leftHoistedVariablesEnd = findSpanEnd(statements, ts.isHoistedVariableStatement, leftHoistedFunctionsEnd); // find standard prologues on right in the following order: standard directives, hoisted functions, hoisted variables, other custom var rightStandardPrologueEnd = findSpanEnd(declarations, ts.isPrologueDirective, 0); var rightHoistedFunctionsEnd = findSpanEnd(declarations, ts.isHoistedFunction, rightStandardPrologueEnd); var rightHoistedVariablesEnd = findSpanEnd(declarations, ts.isHoistedVariableStatement, rightHoistedFunctionsEnd); var rightCustomPrologueEnd = findSpanEnd(declarations, ts.isCustomPrologue, rightHoistedVariablesEnd); ts.Debug.assert(rightCustomPrologueEnd === declarations.length, "Expected declarations to be valid standard or custom prologues"); // splice prologues from the right into the left. We do this in reverse order // so that we don't need to recompute the index on the left when we insert items. var left = ts.isNodeArray(statements) ? statements.slice() : statements; // splice other custom prologues from right into left if (rightCustomPrologueEnd > rightHoistedVariablesEnd) { left.splice.apply(left, __spreadArray([leftHoistedVariablesEnd, 0], declarations.slice(rightHoistedVariablesEnd, rightCustomPrologueEnd), false)); } // splice hoisted variables from right into left if (rightHoistedVariablesEnd > rightHoistedFunctionsEnd) { left.splice.apply(left, __spreadArray([leftHoistedFunctionsEnd, 0], declarations.slice(rightHoistedFunctionsEnd, rightHoistedVariablesEnd), false)); } // splice hoisted functions from right into left if (rightHoistedFunctionsEnd > rightStandardPrologueEnd) { left.splice.apply(left, __spreadArray([leftStandardPrologueEnd, 0], declarations.slice(rightStandardPrologueEnd, rightHoistedFunctionsEnd), false)); } // splice standard prologues from right into left (that are not already in left) if (rightStandardPrologueEnd > 0) { if (leftStandardPrologueEnd === 0) { left.splice.apply(left, __spreadArray([0, 0], declarations.slice(0, rightStandardPrologueEnd), false)); } else { var leftPrologues = new ts.Map(); for (var i = 0; i < leftStandardPrologueEnd; i++) { var leftPrologue = statements[i]; leftPrologues.set(leftPrologue.expression.text, true); } for (var i = rightStandardPrologueEnd - 1; i >= 0; i--) { var rightPrologue = declarations[i]; if (!leftPrologues.has(rightPrologue.expression.text)) { left.unshift(rightPrologue); } } } } if (ts.isNodeArray(statements)) { return ts.setTextRange(createNodeArray(left, statements.hasTrailingComma), statements); } return statements; } function updateModifiers(node, modifiers) { var _a; var modifierArray; if (typeof modifiers === "number") { modifierArray = createModifiersFromModifierFlags(modifiers); } else { modifierArray = modifiers; } return ts.isParameter(node) ? updateParameterDeclaration(node, node.decorators, modifierArray, node.dotDotDotToken, node.name, node.questionToken, node.type, node.initializer) : ts.isPropertySignature(node) ? updatePropertySignature(node, modifierArray, node.name, node.questionToken, node.type) : ts.isPropertyDeclaration(node) ? updatePropertyDeclaration(node, node.decorators, modifierArray, node.name, (_a = node.questionToken) !== null && _a !== void 0 ? _a : node.exclamationToken, node.type, node.initializer) : ts.isMethodSignature(node) ? updateMethodSignature(node, modifierArray, node.name, node.questionToken, node.typeParameters, node.parameters, node.type) : ts.isMethodDeclaration(node) ? updateMethodDeclaration(node, node.decorators, modifierArray, node.asteriskToken, node.name, node.questionToken, node.typeParameters, node.parameters, node.type, node.body) : ts.isConstructorDeclaration(node) ? updateConstructorDeclaration(node, node.decorators, modifierArray, node.parameters, node.body) : ts.isGetAccessorDeclaration(node) ? updateGetAccessorDeclaration(node, node.decorators, modifierArray, node.name, node.parameters, node.type, node.body) : ts.isSetAccessorDeclaration(node) ? updateSetAccessorDeclaration(node, node.decorators, modifierArray, node.name, node.parameters, node.body) : ts.isIndexSignatureDeclaration(node) ? updateIndexSignature(node, node.decorators, modifierArray, node.parameters, node.type) : ts.isFunctionExpression(node) ? updateFunctionExpression(node, modifierArray, node.asteriskToken, node.name, node.typeParameters, node.parameters, node.type, node.body) : ts.isArrowFunction(node) ? updateArrowFunction(node, modifierArray, node.typeParameters, node.parameters, node.type, node.equalsGreaterThanToken, node.body) : ts.isClassExpression(node) ? updateClassExpression(node, node.decorators, modifierArray, node.name, node.typeParameters, node.heritageClauses, node.members) : ts.isVariableStatement(node) ? updateVariableStatement(node, modifierArray, node.declarationList) : ts.isFunctionDeclaration(node) ? updateFunctionDeclaration(node, node.decorators, modifierArray, node.asteriskToken, node.name, node.typeParameters, node.parameters, node.type, node.body) : ts.isClassDeclaration(node) ? updateClassDeclaration(node, node.decorators, modifierArray, node.name, node.typeParameters, node.heritageClauses, node.members) : ts.isInterfaceDeclaration(node) ? updateInterfaceDeclaration(node, node.decorators, modifierArray, node.name, node.typeParameters, node.heritageClauses, node.members) : ts.isTypeAliasDeclaration(node) ? updateTypeAliasDeclaration(node, node.decorators, modifierArray, node.name, node.typeParameters, node.type) : ts.isEnumDeclaration(node) ? updateEnumDeclaration(node, node.decorators, modifierArray, node.name, node.members) : ts.isModuleDeclaration(node) ? updateModuleDeclaration(node, node.decorators, modifierArray, node.name, node.body) : ts.isImportEqualsDeclaration(node) ? updateImportEqualsDeclaration(node, node.decorators, modifierArray, node.isTypeOnly, node.name, node.moduleReference) : ts.isImportDeclaration(node) ? updateImportDeclaration(node, node.decorators, modifierArray, node.importClause, node.moduleSpecifier, node.assertClause) : ts.isExportAssignment(node) ? updateExportAssignment(node, node.decorators, modifierArray, node.expression) : ts.isExportDeclaration(node) ? updateExportDeclaration(node, node.decorators, modifierArray, node.isTypeOnly, node.exportClause, node.moduleSpecifier, node.assertClause) : ts.Debug.assertNever(node); } function asNodeArray(array) { return array ? createNodeArray(array) : undefined; } function asName(name) { return typeof name === "string" ? createIdentifier(name) : name; } function asExpression(value) { return typeof value === "string" ? createStringLiteral(value) : typeof value === "number" ? createNumericLiteral(value) : typeof value === "boolean" ? value ? createTrue() : createFalse() : value; } function asToken(value) { return typeof value === "number" ? createToken(value) : value; } function asEmbeddedStatement(statement) { return statement && ts.isNotEmittedStatement(statement) ? ts.setTextRange(setOriginalNode(createEmptyStatement(), statement), statement) : statement; } } ts.createNodeFactory = createNodeFactory; function updateWithoutOriginal(updated, original) { if (updated !== original) { ts.setTextRange(updated, original); } return updated; } function updateWithOriginal(updated, original) { if (updated !== original) { setOriginalNode(updated, original); ts.setTextRange(updated, original); } return updated; } function getDefaultTagNameForKind(kind) { switch (kind) { case 343 /* SyntaxKind.JSDocTypeTag */: return "type"; case 341 /* SyntaxKind.JSDocReturnTag */: return "returns"; case 342 /* SyntaxKind.JSDocThisTag */: return "this"; case 339 /* SyntaxKind.JSDocEnumTag */: return "enum"; case 330 /* SyntaxKind.JSDocAuthorTag */: return "author"; case 332 /* SyntaxKind.JSDocClassTag */: return "class"; case 333 /* SyntaxKind.JSDocPublicTag */: return "public"; case 334 /* SyntaxKind.JSDocPrivateTag */: return "private"; case 335 /* SyntaxKind.JSDocProtectedTag */: return "protected"; case 336 /* SyntaxKind.JSDocReadonlyTag */: return "readonly"; case 337 /* SyntaxKind.JSDocOverrideTag */: return "override"; case 344 /* SyntaxKind.JSDocTemplateTag */: return "template"; case 345 /* SyntaxKind.JSDocTypedefTag */: return "typedef"; case 340 /* SyntaxKind.JSDocParameterTag */: return "param"; case 347 /* SyntaxKind.JSDocPropertyTag */: return "prop"; case 338 /* SyntaxKind.JSDocCallbackTag */: return "callback"; case 328 /* SyntaxKind.JSDocAugmentsTag */: return "augments"; case 329 /* SyntaxKind.JSDocImplementsTag */: return "implements"; default: return ts.Debug.fail("Unsupported kind: ".concat(ts.Debug.formatSyntaxKind(kind))); } } var rawTextScanner; var invalidValueSentinel = {}; function getCookedText(kind, rawText) { if (!rawTextScanner) { rawTextScanner = ts.createScanner(99 /* ScriptTarget.Latest */, /*skipTrivia*/ false, 0 /* LanguageVariant.Standard */); } switch (kind) { case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: rawTextScanner.setText("`" + rawText + "`"); break; case 15 /* SyntaxKind.TemplateHead */: // tslint:disable-next-line no-invalid-template-strings rawTextScanner.setText("`" + rawText + "${"); break; case 16 /* SyntaxKind.TemplateMiddle */: // tslint:disable-next-line no-invalid-template-strings rawTextScanner.setText("}" + rawText + "${"); break; case 17 /* SyntaxKind.TemplateTail */: rawTextScanner.setText("}" + rawText + "`"); break; } var token = rawTextScanner.scan(); if (token === 19 /* SyntaxKind.CloseBraceToken */) { token = rawTextScanner.reScanTemplateToken(/*isTaggedTemplate*/ false); } if (rawTextScanner.isUnterminated()) { rawTextScanner.setText(undefined); return invalidValueSentinel; } var tokenValue; switch (token) { case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: case 15 /* SyntaxKind.TemplateHead */: case 16 /* SyntaxKind.TemplateMiddle */: case 17 /* SyntaxKind.TemplateTail */: tokenValue = rawTextScanner.getTokenValue(); break; } if (tokenValue === undefined || rawTextScanner.scan() !== 1 /* SyntaxKind.EndOfFileToken */) { rawTextScanner.setText(undefined); return invalidValueSentinel; } rawTextScanner.setText(undefined); return tokenValue; } function propagateIdentifierNameFlags(node) { // An IdentifierName is allowed to be `await` return propagateChildFlags(node) & ~16777216 /* TransformFlags.ContainsPossibleTopLevelAwait */; } function propagatePropertyNameFlagsOfChild(node, transformFlags) { return transformFlags | (node.transformFlags & 33562624 /* TransformFlags.PropertyNamePropagatingFlags */); } function propagateChildFlags(child) { if (!child) return 0 /* TransformFlags.None */; var childFlags = child.transformFlags & ~getTransformFlagsSubtreeExclusions(child.kind); return ts.isNamedDeclaration(child) && ts.isPropertyName(child.name) ? propagatePropertyNameFlagsOfChild(child.name, childFlags) : childFlags; } function propagateChildrenFlags(children) { return children ? children.transformFlags : 0 /* TransformFlags.None */; } function aggregateChildrenFlags(children) { var subtreeFlags = 0 /* TransformFlags.None */; for (var _i = 0, children_2 = children; _i < children_2.length; _i++) { var child = children_2[_i]; subtreeFlags |= propagateChildFlags(child); } children.transformFlags = subtreeFlags; } /** * Gets the transform flags to exclude when unioning the transform flags of a subtree. */ /* @internal */ function getTransformFlagsSubtreeExclusions(kind) { if (kind >= 177 /* SyntaxKind.FirstTypeNode */ && kind <= 200 /* SyntaxKind.LastTypeNode */) { return -2 /* TransformFlags.TypeExcludes */; } switch (kind) { case 208 /* SyntaxKind.CallExpression */: case 209 /* SyntaxKind.NewExpression */: case 204 /* SyntaxKind.ArrayLiteralExpression */: return 536887296 /* TransformFlags.ArrayLiteralOrCallOrNewExcludes */; case 261 /* SyntaxKind.ModuleDeclaration */: return 589443072 /* TransformFlags.ModuleExcludes */; case 164 /* SyntaxKind.Parameter */: return 536870912 /* TransformFlags.ParameterExcludes */; case 214 /* SyntaxKind.ArrowFunction */: return 557748224 /* TransformFlags.ArrowFunctionExcludes */; case 213 /* SyntaxKind.FunctionExpression */: case 256 /* SyntaxKind.FunctionDeclaration */: return 591310848 /* TransformFlags.FunctionExcludes */; case 255 /* SyntaxKind.VariableDeclarationList */: return 537165824 /* TransformFlags.VariableDeclarationListExcludes */; case 257 /* SyntaxKind.ClassDeclaration */: case 226 /* SyntaxKind.ClassExpression */: return 536940544 /* TransformFlags.ClassExcludes */; case 171 /* SyntaxKind.Constructor */: return 591306752 /* TransformFlags.ConstructorExcludes */; case 167 /* SyntaxKind.PropertyDeclaration */: return 570433536 /* TransformFlags.PropertyExcludes */; case 169 /* SyntaxKind.MethodDeclaration */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: return 574529536 /* TransformFlags.MethodOrAccessorExcludes */; case 130 /* SyntaxKind.AnyKeyword */: case 147 /* SyntaxKind.NumberKeyword */: case 158 /* SyntaxKind.BigIntKeyword */: case 143 /* SyntaxKind.NeverKeyword */: case 150 /* SyntaxKind.StringKeyword */: case 148 /* SyntaxKind.ObjectKeyword */: case 133 /* SyntaxKind.BooleanKeyword */: case 151 /* SyntaxKind.SymbolKeyword */: case 114 /* SyntaxKind.VoidKeyword */: case 163 /* SyntaxKind.TypeParameter */: case 166 /* SyntaxKind.PropertySignature */: case 168 /* SyntaxKind.MethodSignature */: case 174 /* SyntaxKind.CallSignature */: case 175 /* SyntaxKind.ConstructSignature */: case 176 /* SyntaxKind.IndexSignature */: case 258 /* SyntaxKind.InterfaceDeclaration */: case 259 /* SyntaxKind.TypeAliasDeclaration */: return -2 /* TransformFlags.TypeExcludes */; case 205 /* SyntaxKind.ObjectLiteralExpression */: return 536973312 /* TransformFlags.ObjectLiteralExcludes */; case 292 /* SyntaxKind.CatchClause */: return 536903680 /* TransformFlags.CatchClauseExcludes */; case 201 /* SyntaxKind.ObjectBindingPattern */: case 202 /* SyntaxKind.ArrayBindingPattern */: return 536887296 /* TransformFlags.BindingPatternExcludes */; case 211 /* SyntaxKind.TypeAssertionExpression */: case 229 /* SyntaxKind.AsExpression */: case 350 /* SyntaxKind.PartiallyEmittedExpression */: case 212 /* SyntaxKind.ParenthesizedExpression */: case 106 /* SyntaxKind.SuperKeyword */: return 536870912 /* TransformFlags.OuterExpressionExcludes */; case 206 /* SyntaxKind.PropertyAccessExpression */: case 207 /* SyntaxKind.ElementAccessExpression */: return 536870912 /* TransformFlags.PropertyAccessExcludes */; default: return 536870912 /* TransformFlags.NodeExcludes */; } } ts.getTransformFlagsSubtreeExclusions = getTransformFlagsSubtreeExclusions; var baseFactory = ts.createBaseNodeFactory(); function makeSynthetic(node) { node.flags |= 8 /* NodeFlags.Synthesized */; return node; } var syntheticFactory = { createBaseSourceFileNode: function (kind) { return makeSynthetic(baseFactory.createBaseSourceFileNode(kind)); }, createBaseIdentifierNode: function (kind) { return makeSynthetic(baseFactory.createBaseIdentifierNode(kind)); }, createBasePrivateIdentifierNode: function (kind) { return makeSynthetic(baseFactory.createBasePrivateIdentifierNode(kind)); }, createBaseTokenNode: function (kind) { return makeSynthetic(baseFactory.createBaseTokenNode(kind)); }, createBaseNode: function (kind) { return makeSynthetic(baseFactory.createBaseNode(kind)); }, }; ts.factory = createNodeFactory(4 /* NodeFactoryFlags.NoIndentationOnFreshPropertyAccess */, syntheticFactory); function createUnparsedSourceFile(textOrInputFiles, mapPathOrType, mapTextOrStripInternal) { var stripInternal; var bundleFileInfo; var fileName; var text; var length; var sourceMapPath; var sourceMapText; var getText; var getSourceMapText; var oldFileOfCurrentEmit; if (!ts.isString(textOrInputFiles)) { ts.Debug.assert(mapPathOrType === "js" || mapPathOrType === "dts"); fileName = (mapPathOrType === "js" ? textOrInputFiles.javascriptPath : textOrInputFiles.declarationPath) || ""; sourceMapPath = mapPathOrType === "js" ? textOrInputFiles.javascriptMapPath : textOrInputFiles.declarationMapPath; getText = function () { return mapPathOrType === "js" ? textOrInputFiles.javascriptText : textOrInputFiles.declarationText; }; getSourceMapText = function () { return mapPathOrType === "js" ? textOrInputFiles.javascriptMapText : textOrInputFiles.declarationMapText; }; length = function () { return getText().length; }; if (textOrInputFiles.buildInfo && textOrInputFiles.buildInfo.bundle) { ts.Debug.assert(mapTextOrStripInternal === undefined || typeof mapTextOrStripInternal === "boolean"); stripInternal = mapTextOrStripInternal; bundleFileInfo = mapPathOrType === "js" ? textOrInputFiles.buildInfo.bundle.js : textOrInputFiles.buildInfo.bundle.dts; oldFileOfCurrentEmit = textOrInputFiles.oldFileOfCurrentEmit; } } else { fileName = ""; text = textOrInputFiles; length = textOrInputFiles.length; sourceMapPath = mapPathOrType; sourceMapText = mapTextOrStripInternal; } var node = oldFileOfCurrentEmit ? parseOldFileOfCurrentEmit(ts.Debug.checkDefined(bundleFileInfo)) : parseUnparsedSourceFile(bundleFileInfo, stripInternal, length); node.fileName = fileName; node.sourceMapPath = sourceMapPath; node.oldFileOfCurrentEmit = oldFileOfCurrentEmit; if (getText && getSourceMapText) { Object.defineProperty(node, "text", { get: getText }); Object.defineProperty(node, "sourceMapText", { get: getSourceMapText }); } else { ts.Debug.assert(!oldFileOfCurrentEmit); node.text = text !== null && text !== void 0 ? text : ""; node.sourceMapText = sourceMapText; } return node; } ts.createUnparsedSourceFile = createUnparsedSourceFile; function parseUnparsedSourceFile(bundleFileInfo, stripInternal, length) { var prologues; var helpers; var referencedFiles; var typeReferenceDirectives; var libReferenceDirectives; var prependChildren; var texts; var hasNoDefaultLib; for (var _i = 0, _a = bundleFileInfo ? bundleFileInfo.sections : ts.emptyArray; _i < _a.length; _i++) { var section = _a[_i]; switch (section.kind) { case "prologue" /* BundleFileSectionKind.Prologue */: prologues = ts.append(prologues, ts.setTextRange(ts.factory.createUnparsedPrologue(section.data), section)); break; case "emitHelpers" /* BundleFileSectionKind.EmitHelpers */: helpers = ts.append(helpers, ts.getAllUnscopedEmitHelpers().get(section.data)); break; case "no-default-lib" /* BundleFileSectionKind.NoDefaultLib */: hasNoDefaultLib = true; break; case "reference" /* BundleFileSectionKind.Reference */: referencedFiles = ts.append(referencedFiles, { pos: -1, end: -1, fileName: section.data }); break; case "type" /* BundleFileSectionKind.Type */: typeReferenceDirectives = ts.append(typeReferenceDirectives, { pos: -1, end: -1, fileName: section.data }); break; case "type-import" /* BundleFileSectionKind.TypeResolutionModeImport */: typeReferenceDirectives = ts.append(typeReferenceDirectives, { pos: -1, end: -1, fileName: section.data, resolutionMode: ts.ModuleKind.ESNext }); break; case "type-require" /* BundleFileSectionKind.TypeResolutionModeRequire */: typeReferenceDirectives = ts.append(typeReferenceDirectives, { pos: -1, end: -1, fileName: section.data, resolutionMode: ts.ModuleKind.CommonJS }); break; case "lib" /* BundleFileSectionKind.Lib */: libReferenceDirectives = ts.append(libReferenceDirectives, { pos: -1, end: -1, fileName: section.data }); break; case "prepend" /* BundleFileSectionKind.Prepend */: var prependTexts = void 0; for (var _b = 0, _c = section.texts; _b < _c.length; _b++) { var text = _c[_b]; if (!stripInternal || text.kind !== "internal" /* BundleFileSectionKind.Internal */) { prependTexts = ts.append(prependTexts, ts.setTextRange(ts.factory.createUnparsedTextLike(text.data, text.kind === "internal" /* BundleFileSectionKind.Internal */), text)); } } prependChildren = ts.addRange(prependChildren, prependTexts); texts = ts.append(texts, ts.factory.createUnparsedPrepend(section.data, prependTexts !== null && prependTexts !== void 0 ? prependTexts : ts.emptyArray)); break; case "internal" /* BundleFileSectionKind.Internal */: if (stripInternal) { if (!texts) texts = []; break; } // falls through case "text" /* BundleFileSectionKind.Text */: texts = ts.append(texts, ts.setTextRange(ts.factory.createUnparsedTextLike(section.data, section.kind === "internal" /* BundleFileSectionKind.Internal */), section)); break; default: ts.Debug.assertNever(section); } } if (!texts) { var textNode = ts.factory.createUnparsedTextLike(/*data*/ undefined, /*internal*/ false); ts.setTextRangePosWidth(textNode, 0, typeof length === "function" ? length() : length); texts = [textNode]; } var node = ts.parseNodeFactory.createUnparsedSource(prologues !== null && prologues !== void 0 ? prologues : ts.emptyArray, /*syntheticReferences*/ undefined, texts); ts.setEachParent(prologues, node); ts.setEachParent(texts, node); ts.setEachParent(prependChildren, node); node.hasNoDefaultLib = hasNoDefaultLib; node.helpers = helpers; node.referencedFiles = referencedFiles || ts.emptyArray; node.typeReferenceDirectives = typeReferenceDirectives; node.libReferenceDirectives = libReferenceDirectives || ts.emptyArray; return node; } function parseOldFileOfCurrentEmit(bundleFileInfo) { var texts; var syntheticReferences; for (var _i = 0, _a = bundleFileInfo.sections; _i < _a.length; _i++) { var section = _a[_i]; switch (section.kind) { case "internal" /* BundleFileSectionKind.Internal */: case "text" /* BundleFileSectionKind.Text */: texts = ts.append(texts, ts.setTextRange(ts.factory.createUnparsedTextLike(section.data, section.kind === "internal" /* BundleFileSectionKind.Internal */), section)); break; case "no-default-lib" /* BundleFileSectionKind.NoDefaultLib */: case "reference" /* BundleFileSectionKind.Reference */: case "type" /* BundleFileSectionKind.Type */: case "type-import" /* BundleFileSectionKind.TypeResolutionModeImport */: case "type-require" /* BundleFileSectionKind.TypeResolutionModeRequire */: case "lib" /* BundleFileSectionKind.Lib */: syntheticReferences = ts.append(syntheticReferences, ts.setTextRange(ts.factory.createUnparsedSyntheticReference(section), section)); break; // Ignore case "prologue" /* BundleFileSectionKind.Prologue */: case "emitHelpers" /* BundleFileSectionKind.EmitHelpers */: case "prepend" /* BundleFileSectionKind.Prepend */: break; default: ts.Debug.assertNever(section); } } var node = ts.factory.createUnparsedSource(ts.emptyArray, syntheticReferences, texts !== null && texts !== void 0 ? texts : ts.emptyArray); ts.setEachParent(syntheticReferences, node); ts.setEachParent(texts, node); node.helpers = ts.map(bundleFileInfo.sources && bundleFileInfo.sources.helpers, function (name) { return ts.getAllUnscopedEmitHelpers().get(name); }); return node; } function createInputFiles(javascriptTextOrReadFileText, declarationTextOrJavascriptPath, javascriptMapPath, javascriptMapTextOrDeclarationPath, declarationMapPath, declarationMapTextOrBuildInfoPath, javascriptPath, declarationPath, buildInfoPath, buildInfo, oldFileOfCurrentEmit) { var node = ts.parseNodeFactory.createInputFiles(); if (!ts.isString(javascriptTextOrReadFileText)) { var cache_1 = new ts.Map(); var textGetter_1 = function (path) { if (path === undefined) return undefined; var value = cache_1.get(path); if (value === undefined) { value = javascriptTextOrReadFileText(path); cache_1.set(path, value !== undefined ? value : false); } return value !== false ? value : undefined; }; var definedTextGetter_1 = function (path) { var result = textGetter_1(path); return result !== undefined ? result : "/* Input file ".concat(path, " was missing */\r\n"); }; var buildInfo_1; var getAndCacheBuildInfo_1 = function (getText) { if (buildInfo_1 === undefined) { var result = getText(); buildInfo_1 = result !== undefined ? ts.getBuildInfo(result) : false; } return buildInfo_1 || undefined; }; node.javascriptPath = declarationTextOrJavascriptPath; node.javascriptMapPath = javascriptMapPath; node.declarationPath = ts.Debug.checkDefined(javascriptMapTextOrDeclarationPath); node.declarationMapPath = declarationMapPath; node.buildInfoPath = declarationMapTextOrBuildInfoPath; Object.defineProperties(node, { javascriptText: { get: function () { return definedTextGetter_1(declarationTextOrJavascriptPath); } }, javascriptMapText: { get: function () { return textGetter_1(javascriptMapPath); } }, declarationText: { get: function () { return definedTextGetter_1(ts.Debug.checkDefined(javascriptMapTextOrDeclarationPath)); } }, declarationMapText: { get: function () { return textGetter_1(declarationMapPath); } }, buildInfo: { get: function () { return getAndCacheBuildInfo_1(function () { return textGetter_1(declarationMapTextOrBuildInfoPath); }); } } }); } else { node.javascriptText = javascriptTextOrReadFileText; node.javascriptMapPath = javascriptMapPath; node.javascriptMapText = javascriptMapTextOrDeclarationPath; node.declarationText = declarationTextOrJavascriptPath; node.declarationMapPath = declarationMapPath; node.declarationMapText = declarationMapTextOrBuildInfoPath; node.javascriptPath = javascriptPath; node.declarationPath = declarationPath; node.buildInfoPath = buildInfoPath; node.buildInfo = buildInfo; node.oldFileOfCurrentEmit = oldFileOfCurrentEmit; } return node; } ts.createInputFiles = createInputFiles; // tslint:disable-next-line variable-name var SourceMapSource; /** * Create an external source map source file reference */ function createSourceMapSource(fileName, text, skipTrivia) { return new (SourceMapSource || (SourceMapSource = ts.objectAllocator.getSourceMapSourceConstructor()))(fileName, text, skipTrivia); } ts.createSourceMapSource = createSourceMapSource; // Utilities function setOriginalNode(node, original) { node.original = original; if (original) { var emitNode = original.emitNode; if (emitNode) node.emitNode = mergeEmitNode(emitNode, node.emitNode); } return node; } ts.setOriginalNode = setOriginalNode; function mergeEmitNode(sourceEmitNode, destEmitNode) { var flags = sourceEmitNode.flags, leadingComments = sourceEmitNode.leadingComments, trailingComments = sourceEmitNode.trailingComments, commentRange = sourceEmitNode.commentRange, sourceMapRange = sourceEmitNode.sourceMapRange, tokenSourceMapRanges = sourceEmitNode.tokenSourceMapRanges, constantValue = sourceEmitNode.constantValue, helpers = sourceEmitNode.helpers, startsOnNewLine = sourceEmitNode.startsOnNewLine; if (!destEmitNode) destEmitNode = {}; // We are using `.slice()` here in case `destEmitNode.leadingComments` is pushed to later. if (leadingComments) destEmitNode.leadingComments = ts.addRange(leadingComments.slice(), destEmitNode.leadingComments); if (trailingComments) destEmitNode.trailingComments = ts.addRange(trailingComments.slice(), destEmitNode.trailingComments); if (flags) destEmitNode.flags = flags & ~268435456 /* EmitFlags.Immutable */; if (commentRange) destEmitNode.commentRange = commentRange; if (sourceMapRange) destEmitNode.sourceMapRange = sourceMapRange; if (tokenSourceMapRanges) destEmitNode.tokenSourceMapRanges = mergeTokenSourceMapRanges(tokenSourceMapRanges, destEmitNode.tokenSourceMapRanges); if (constantValue !== undefined) destEmitNode.constantValue = constantValue; if (helpers) { for (var _i = 0, helpers_1 = helpers; _i < helpers_1.length; _i++) { var helper = helpers_1[_i]; destEmitNode.helpers = ts.appendIfUnique(destEmitNode.helpers, helper); } } if (startsOnNewLine !== undefined) destEmitNode.startsOnNewLine = startsOnNewLine; return destEmitNode; } function mergeTokenSourceMapRanges(sourceRanges, destRanges) { if (!destRanges) destRanges = []; for (var key in sourceRanges) { destRanges[key] = sourceRanges[key]; } return destRanges; } })(ts || (ts = {})); var ts; (function (ts) { /** * Associates a node with the current transformation, initializing * various transient transformation properties. * @internal */ function getOrCreateEmitNode(node) { var _a; if (!node.emitNode) { if (ts.isParseTreeNode(node)) { // To avoid holding onto transformation artifacts, we keep track of any // parse tree node we are annotating. This allows us to clean them up after // all transformations have completed. if (node.kind === 305 /* SyntaxKind.SourceFile */) { return node.emitNode = { annotatedNodes: [node] }; } var sourceFile = (_a = ts.getSourceFileOfNode(ts.getParseTreeNode(ts.getSourceFileOfNode(node)))) !== null && _a !== void 0 ? _a : ts.Debug.fail("Could not determine parsed source file."); getOrCreateEmitNode(sourceFile).annotatedNodes.push(node); } node.emitNode = {}; } else { ts.Debug.assert(!(node.emitNode.flags & 268435456 /* EmitFlags.Immutable */), "Invalid attempt to mutate an immutable node."); } return node.emitNode; } ts.getOrCreateEmitNode = getOrCreateEmitNode; /** * Clears any `EmitNode` entries from parse-tree nodes. * @param sourceFile A source file. */ function disposeEmitNodes(sourceFile) { var _a, _b; // During transformation we may need to annotate a parse tree node with transient // transformation properties. As parse tree nodes live longer than transformation // nodes, we need to make sure we reclaim any memory allocated for custom ranges // from these nodes to ensure we do not hold onto entire subtrees just for position // information. We also need to reset these nodes to a pre-transformation state // for incremental parsing scenarios so that we do not impact later emit. var annotatedNodes = (_b = (_a = ts.getSourceFileOfNode(ts.getParseTreeNode(sourceFile))) === null || _a === void 0 ? void 0 : _a.emitNode) === null || _b === void 0 ? void 0 : _b.annotatedNodes; if (annotatedNodes) { for (var _i = 0, annotatedNodes_1 = annotatedNodes; _i < annotatedNodes_1.length; _i++) { var node = annotatedNodes_1[_i]; node.emitNode = undefined; } } } ts.disposeEmitNodes = disposeEmitNodes; /** * Sets `EmitFlags.NoComments` on a node and removes any leading and trailing synthetic comments. * @internal */ function removeAllComments(node) { var emitNode = getOrCreateEmitNode(node); emitNode.flags |= 1536 /* EmitFlags.NoComments */; emitNode.leadingComments = undefined; emitNode.trailingComments = undefined; return node; } ts.removeAllComments = removeAllComments; /** * Sets flags that control emit behavior of a node. */ function setEmitFlags(node, emitFlags) { getOrCreateEmitNode(node).flags = emitFlags; return node; } ts.setEmitFlags = setEmitFlags; /** * Sets flags that control emit behavior of a node. */ /* @internal */ function addEmitFlags(node, emitFlags) { var emitNode = getOrCreateEmitNode(node); emitNode.flags = emitNode.flags | emitFlags; return node; } ts.addEmitFlags = addEmitFlags; /** * Gets a custom text range to use when emitting source maps. */ function getSourceMapRange(node) { var _a, _b; return (_b = (_a = node.emitNode) === null || _a === void 0 ? void 0 : _a.sourceMapRange) !== null && _b !== void 0 ? _b : node; } ts.getSourceMapRange = getSourceMapRange; /** * Sets a custom text range to use when emitting source maps. */ function setSourceMapRange(node, range) { getOrCreateEmitNode(node).sourceMapRange = range; return node; } ts.setSourceMapRange = setSourceMapRange; /** * Gets the TextRange to use for source maps for a token of a node. */ function getTokenSourceMapRange(node, token) { var _a, _b; return (_b = (_a = node.emitNode) === null || _a === void 0 ? void 0 : _a.tokenSourceMapRanges) === null || _b === void 0 ? void 0 : _b[token]; } ts.getTokenSourceMapRange = getTokenSourceMapRange; /** * Sets the TextRange to use for source maps for a token of a node. */ function setTokenSourceMapRange(node, token, range) { var _a; var emitNode = getOrCreateEmitNode(node); var tokenSourceMapRanges = (_a = emitNode.tokenSourceMapRanges) !== null && _a !== void 0 ? _a : (emitNode.tokenSourceMapRanges = []); tokenSourceMapRanges[token] = range; return node; } ts.setTokenSourceMapRange = setTokenSourceMapRange; /** * Gets a custom text range to use when emitting comments. */ /*@internal*/ function getStartsOnNewLine(node) { var _a; return (_a = node.emitNode) === null || _a === void 0 ? void 0 : _a.startsOnNewLine; } ts.getStartsOnNewLine = getStartsOnNewLine; /** * Sets a custom text range to use when emitting comments. */ /*@internal*/ function setStartsOnNewLine(node, newLine) { getOrCreateEmitNode(node).startsOnNewLine = newLine; return node; } ts.setStartsOnNewLine = setStartsOnNewLine; /** * Gets a custom text range to use when emitting comments. */ function getCommentRange(node) { var _a, _b; return (_b = (_a = node.emitNode) === null || _a === void 0 ? void 0 : _a.commentRange) !== null && _b !== void 0 ? _b : node; } ts.getCommentRange = getCommentRange; /** * Sets a custom text range to use when emitting comments. */ function setCommentRange(node, range) { getOrCreateEmitNode(node).commentRange = range; return node; } ts.setCommentRange = setCommentRange; function getSyntheticLeadingComments(node) { var _a; return (_a = node.emitNode) === null || _a === void 0 ? void 0 : _a.leadingComments; } ts.getSyntheticLeadingComments = getSyntheticLeadingComments; function setSyntheticLeadingComments(node, comments) { getOrCreateEmitNode(node).leadingComments = comments; return node; } ts.setSyntheticLeadingComments = setSyntheticLeadingComments; function addSyntheticLeadingComment(node, kind, text, hasTrailingNewLine) { return setSyntheticLeadingComments(node, ts.append(getSyntheticLeadingComments(node), { kind: kind, pos: -1, end: -1, hasTrailingNewLine: hasTrailingNewLine, text: text })); } ts.addSyntheticLeadingComment = addSyntheticLeadingComment; function getSyntheticTrailingComments(node) { var _a; return (_a = node.emitNode) === null || _a === void 0 ? void 0 : _a.trailingComments; } ts.getSyntheticTrailingComments = getSyntheticTrailingComments; function setSyntheticTrailingComments(node, comments) { getOrCreateEmitNode(node).trailingComments = comments; return node; } ts.setSyntheticTrailingComments = setSyntheticTrailingComments; function addSyntheticTrailingComment(node, kind, text, hasTrailingNewLine) { return setSyntheticTrailingComments(node, ts.append(getSyntheticTrailingComments(node), { kind: kind, pos: -1, end: -1, hasTrailingNewLine: hasTrailingNewLine, text: text })); } ts.addSyntheticTrailingComment = addSyntheticTrailingComment; function moveSyntheticComments(node, original) { setSyntheticLeadingComments(node, getSyntheticLeadingComments(original)); setSyntheticTrailingComments(node, getSyntheticTrailingComments(original)); var emit = getOrCreateEmitNode(original); emit.leadingComments = undefined; emit.trailingComments = undefined; return node; } ts.moveSyntheticComments = moveSyntheticComments; /** * Gets the constant value to emit for an expression representing an enum. */ function getConstantValue(node) { var _a; return (_a = node.emitNode) === null || _a === void 0 ? void 0 : _a.constantValue; } ts.getConstantValue = getConstantValue; /** * Sets the constant value to emit for an expression. */ function setConstantValue(node, value) { var emitNode = getOrCreateEmitNode(node); emitNode.constantValue = value; return node; } ts.setConstantValue = setConstantValue; /** * Adds an EmitHelper to a node. */ function addEmitHelper(node, helper) { var emitNode = getOrCreateEmitNode(node); emitNode.helpers = ts.append(emitNode.helpers, helper); return node; } ts.addEmitHelper = addEmitHelper; /** * Add EmitHelpers to a node. */ function addEmitHelpers(node, helpers) { if (ts.some(helpers)) { var emitNode = getOrCreateEmitNode(node); for (var _i = 0, helpers_2 = helpers; _i < helpers_2.length; _i++) { var helper = helpers_2[_i]; emitNode.helpers = ts.appendIfUnique(emitNode.helpers, helper); } } return node; } ts.addEmitHelpers = addEmitHelpers; /** * Removes an EmitHelper from a node. */ function removeEmitHelper(node, helper) { var _a; var helpers = (_a = node.emitNode) === null || _a === void 0 ? void 0 : _a.helpers; if (helpers) { return ts.orderedRemoveItem(helpers, helper); } return false; } ts.removeEmitHelper = removeEmitHelper; /** * Gets the EmitHelpers of a node. */ function getEmitHelpers(node) { var _a; return (_a = node.emitNode) === null || _a === void 0 ? void 0 : _a.helpers; } ts.getEmitHelpers = getEmitHelpers; /** * Moves matching emit helpers from a source node to a target node. */ function moveEmitHelpers(source, target, predicate) { var sourceEmitNode = source.emitNode; var sourceEmitHelpers = sourceEmitNode && sourceEmitNode.helpers; if (!ts.some(sourceEmitHelpers)) return; var targetEmitNode = getOrCreateEmitNode(target); var helpersRemoved = 0; for (var i = 0; i < sourceEmitHelpers.length; i++) { var helper = sourceEmitHelpers[i]; if (predicate(helper)) { helpersRemoved++; targetEmitNode.helpers = ts.appendIfUnique(targetEmitNode.helpers, helper); } else if (helpersRemoved > 0) { sourceEmitHelpers[i - helpersRemoved] = helper; } } if (helpersRemoved > 0) { sourceEmitHelpers.length -= helpersRemoved; } } ts.moveEmitHelpers = moveEmitHelpers; /** * Gets the SnippetElement of a node. */ /* @internal */ function getSnippetElement(node) { var _a; return (_a = node.emitNode) === null || _a === void 0 ? void 0 : _a.snippetElement; } ts.getSnippetElement = getSnippetElement; /** * Sets the SnippetElement of a node. */ /* @internal */ function setSnippetElement(node, snippet) { var emitNode = getOrCreateEmitNode(node); emitNode.snippetElement = snippet; return node; } ts.setSnippetElement = setSnippetElement; /* @internal */ function ignoreSourceNewlines(node) { getOrCreateEmitNode(node).flags |= 134217728 /* EmitFlags.IgnoreSourceNewlines */; return node; } ts.ignoreSourceNewlines = ignoreSourceNewlines; /* @internal */ function setTypeNode(node, type) { var emitNode = getOrCreateEmitNode(node); emitNode.typeNode = type; return node; } ts.setTypeNode = setTypeNode; /* @internal */ function getTypeNode(node) { var _a; return (_a = node.emitNode) === null || _a === void 0 ? void 0 : _a.typeNode; } ts.getTypeNode = getTypeNode; })(ts || (ts = {})); /* @internal */ var ts; (function (ts) { function createEmitHelperFactory(context) { var factory = context.factory; var immutableTrue = ts.memoize(function () { return ts.setEmitFlags(factory.createTrue(), 268435456 /* EmitFlags.Immutable */); }); var immutableFalse = ts.memoize(function () { return ts.setEmitFlags(factory.createFalse(), 268435456 /* EmitFlags.Immutable */); }); return { getUnscopedHelperName: getUnscopedHelperName, // TypeScript Helpers createDecorateHelper: createDecorateHelper, createMetadataHelper: createMetadataHelper, createParamHelper: createParamHelper, // ES2018 Helpers createAssignHelper: createAssignHelper, createAwaitHelper: createAwaitHelper, createAsyncGeneratorHelper: createAsyncGeneratorHelper, createAsyncDelegatorHelper: createAsyncDelegatorHelper, createAsyncValuesHelper: createAsyncValuesHelper, // ES2018 Destructuring Helpers createRestHelper: createRestHelper, // ES2017 Helpers createAwaiterHelper: createAwaiterHelper, // ES2015 Helpers createExtendsHelper: createExtendsHelper, createTemplateObjectHelper: createTemplateObjectHelper, createSpreadArrayHelper: createSpreadArrayHelper, // ES2015 Destructuring Helpers createValuesHelper: createValuesHelper, createReadHelper: createReadHelper, // ES2015 Generator Helpers createGeneratorHelper: createGeneratorHelper, // ES Module Helpers createCreateBindingHelper: createCreateBindingHelper, createImportStarHelper: createImportStarHelper, createImportStarCallbackHelper: createImportStarCallbackHelper, createImportDefaultHelper: createImportDefaultHelper, createExportStarHelper: createExportStarHelper, // Class Fields Helpers createClassPrivateFieldGetHelper: createClassPrivateFieldGetHelper, createClassPrivateFieldSetHelper: createClassPrivateFieldSetHelper, createClassPrivateFieldInHelper: createClassPrivateFieldInHelper }; /** * Gets an identifier for the name of an *unscoped* emit helper. */ function getUnscopedHelperName(name) { return ts.setEmitFlags(factory.createIdentifier(name), 4096 /* EmitFlags.HelperName */ | 2 /* EmitFlags.AdviseOnEmitNode */); } // TypeScript Helpers function createDecorateHelper(decoratorExpressions, target, memberName, descriptor) { context.requestEmitHelper(ts.decorateHelper); var argumentsArray = []; argumentsArray.push(factory.createArrayLiteralExpression(decoratorExpressions, /*multiLine*/ true)); argumentsArray.push(target); if (memberName) { argumentsArray.push(memberName); if (descriptor) { argumentsArray.push(descriptor); } } return factory.createCallExpression(getUnscopedHelperName("__decorate"), /*typeArguments*/ undefined, argumentsArray); } function createMetadataHelper(metadataKey, metadataValue) { context.requestEmitHelper(ts.metadataHelper); return factory.createCallExpression(getUnscopedHelperName("__metadata"), /*typeArguments*/ undefined, [ factory.createStringLiteral(metadataKey), metadataValue ]); } function createParamHelper(expression, parameterOffset, location) { context.requestEmitHelper(ts.paramHelper); return ts.setTextRange(factory.createCallExpression(getUnscopedHelperName("__param"), /*typeArguments*/ undefined, [ factory.createNumericLiteral(parameterOffset + ""), expression ]), location); } // ES2018 Helpers function createAssignHelper(attributesSegments) { if (ts.getEmitScriptTarget(context.getCompilerOptions()) >= 2 /* ScriptTarget.ES2015 */) { return factory.createCallExpression(factory.createPropertyAccessExpression(factory.createIdentifier("Object"), "assign"), /*typeArguments*/ undefined, attributesSegments); } context.requestEmitHelper(ts.assignHelper); return factory.createCallExpression(getUnscopedHelperName("__assign"), /*typeArguments*/ undefined, attributesSegments); } function createAwaitHelper(expression) { context.requestEmitHelper(ts.awaitHelper); return factory.createCallExpression(getUnscopedHelperName("__await"), /*typeArguments*/ undefined, [expression]); } function createAsyncGeneratorHelper(generatorFunc, hasLexicalThis) { context.requestEmitHelper(ts.awaitHelper); context.requestEmitHelper(ts.asyncGeneratorHelper); // Mark this node as originally an async function (generatorFunc.emitNode || (generatorFunc.emitNode = {})).flags |= 262144 /* EmitFlags.AsyncFunctionBody */ | 524288 /* EmitFlags.ReuseTempVariableScope */; return factory.createCallExpression(getUnscopedHelperName("__asyncGenerator"), /*typeArguments*/ undefined, [ hasLexicalThis ? factory.createThis() : factory.createVoidZero(), factory.createIdentifier("arguments"), generatorFunc ]); } function createAsyncDelegatorHelper(expression) { context.requestEmitHelper(ts.awaitHelper); context.requestEmitHelper(ts.asyncDelegator); return factory.createCallExpression(getUnscopedHelperName("__asyncDelegator"), /*typeArguments*/ undefined, [expression]); } function createAsyncValuesHelper(expression) { context.requestEmitHelper(ts.asyncValues); return factory.createCallExpression(getUnscopedHelperName("__asyncValues"), /*typeArguments*/ undefined, [expression]); } // ES2018 Destructuring Helpers /** Given value: o, propName: p, pattern: { a, b, ...p } from the original statement * `{ a, b, ...p } = o`, create `p = __rest(o, ["a", "b"]);` */ function createRestHelper(value, elements, computedTempVariables, location) { context.requestEmitHelper(ts.restHelper); var propertyNames = []; var computedTempVariableOffset = 0; for (var i = 0; i < elements.length - 1; i++) { var propertyName = ts.getPropertyNameOfBindingOrAssignmentElement(elements[i]); if (propertyName) { if (ts.isComputedPropertyName(propertyName)) { ts.Debug.assertIsDefined(computedTempVariables, "Encountered computed property name but 'computedTempVariables' argument was not provided."); var temp = computedTempVariables[computedTempVariableOffset]; computedTempVariableOffset++; // typeof _tmp === "symbol" ? _tmp : _tmp + "" propertyNames.push(factory.createConditionalExpression(factory.createTypeCheck(temp, "symbol"), /*questionToken*/ undefined, temp, /*colonToken*/ undefined, factory.createAdd(temp, factory.createStringLiteral("")))); } else { propertyNames.push(factory.createStringLiteralFromNode(propertyName)); } } } return factory.createCallExpression(getUnscopedHelperName("__rest"), /*typeArguments*/ undefined, [ value, ts.setTextRange(factory.createArrayLiteralExpression(propertyNames), location) ]); } // ES2017 Helpers function createAwaiterHelper(hasLexicalThis, hasLexicalArguments, promiseConstructor, body) { context.requestEmitHelper(ts.awaiterHelper); var generatorFunc = factory.createFunctionExpression( /*modifiers*/ undefined, factory.createToken(41 /* SyntaxKind.AsteriskToken */), /*name*/ undefined, /*typeParameters*/ undefined, /*parameters*/ [], /*type*/ undefined, body); // Mark this node as originally an async function (generatorFunc.emitNode || (generatorFunc.emitNode = {})).flags |= 262144 /* EmitFlags.AsyncFunctionBody */ | 524288 /* EmitFlags.ReuseTempVariableScope */; return factory.createCallExpression(getUnscopedHelperName("__awaiter"), /*typeArguments*/ undefined, [ hasLexicalThis ? factory.createThis() : factory.createVoidZero(), hasLexicalArguments ? factory.createIdentifier("arguments") : factory.createVoidZero(), promiseConstructor ? ts.createExpressionFromEntityName(factory, promiseConstructor) : factory.createVoidZero(), generatorFunc ]); } // ES2015 Helpers function createExtendsHelper(name) { context.requestEmitHelper(ts.extendsHelper); return factory.createCallExpression(getUnscopedHelperName("__extends"), /*typeArguments*/ undefined, [name, factory.createUniqueName("_super", 16 /* GeneratedIdentifierFlags.Optimistic */ | 32 /* GeneratedIdentifierFlags.FileLevel */)]); } function createTemplateObjectHelper(cooked, raw) { context.requestEmitHelper(ts.templateObjectHelper); return factory.createCallExpression(getUnscopedHelperName("__makeTemplateObject"), /*typeArguments*/ undefined, [cooked, raw]); } function createSpreadArrayHelper(to, from, packFrom) { context.requestEmitHelper(ts.spreadArrayHelper); return factory.createCallExpression(getUnscopedHelperName("__spreadArray"), /*typeArguments*/ undefined, [to, from, packFrom ? immutableTrue() : immutableFalse()]); } // ES2015 Destructuring Helpers function createValuesHelper(expression) { context.requestEmitHelper(ts.valuesHelper); return factory.createCallExpression(getUnscopedHelperName("__values"), /*typeArguments*/ undefined, [expression]); } function createReadHelper(iteratorRecord, count) { context.requestEmitHelper(ts.readHelper); return factory.createCallExpression(getUnscopedHelperName("__read"), /*typeArguments*/ undefined, count !== undefined ? [iteratorRecord, factory.createNumericLiteral(count + "")] : [iteratorRecord]); } // ES2015 Generator Helpers function createGeneratorHelper(body) { context.requestEmitHelper(ts.generatorHelper); return factory.createCallExpression(getUnscopedHelperName("__generator"), /*typeArguments*/ undefined, [factory.createThis(), body]); } // ES Module Helpers function createCreateBindingHelper(module, inputName, outputName) { context.requestEmitHelper(ts.createBindingHelper); return factory.createCallExpression(getUnscopedHelperName("__createBinding"), /*typeArguments*/ undefined, __spreadArray([factory.createIdentifier("exports"), module, inputName], (outputName ? [outputName] : []), true)); } function createImportStarHelper(expression) { context.requestEmitHelper(ts.importStarHelper); return factory.createCallExpression(getUnscopedHelperName("__importStar"), /*typeArguments*/ undefined, [expression]); } function createImportStarCallbackHelper() { context.requestEmitHelper(ts.importStarHelper); return getUnscopedHelperName("__importStar"); } function createImportDefaultHelper(expression) { context.requestEmitHelper(ts.importDefaultHelper); return factory.createCallExpression(getUnscopedHelperName("__importDefault"), /*typeArguments*/ undefined, [expression]); } function createExportStarHelper(moduleExpression, exportsExpression) { if (exportsExpression === void 0) { exportsExpression = factory.createIdentifier("exports"); } context.requestEmitHelper(ts.exportStarHelper); context.requestEmitHelper(ts.createBindingHelper); return factory.createCallExpression(getUnscopedHelperName("__exportStar"), /*typeArguments*/ undefined, [moduleExpression, exportsExpression]); } // Class Fields Helpers function createClassPrivateFieldGetHelper(receiver, state, kind, f) { context.requestEmitHelper(ts.classPrivateFieldGetHelper); var args; if (!f) { args = [receiver, state, factory.createStringLiteral(kind)]; } else { args = [receiver, state, factory.createStringLiteral(kind), f]; } return factory.createCallExpression(getUnscopedHelperName("__classPrivateFieldGet"), /*typeArguments*/ undefined, args); } function createClassPrivateFieldSetHelper(receiver, state, value, kind, f) { context.requestEmitHelper(ts.classPrivateFieldSetHelper); var args; if (!f) { args = [receiver, state, value, factory.createStringLiteral(kind)]; } else { args = [receiver, state, value, factory.createStringLiteral(kind), f]; } return factory.createCallExpression(getUnscopedHelperName("__classPrivateFieldSet"), /*typeArguments*/ undefined, args); } function createClassPrivateFieldInHelper(state, receiver) { context.requestEmitHelper(ts.classPrivateFieldInHelper); return factory.createCallExpression(getUnscopedHelperName("__classPrivateFieldIn"), /* typeArguments*/ undefined, [state, receiver]); } } ts.createEmitHelperFactory = createEmitHelperFactory; /* @internal */ function compareEmitHelpers(x, y) { if (x === y) return 0 /* Comparison.EqualTo */; if (x.priority === y.priority) return 0 /* Comparison.EqualTo */; if (x.priority === undefined) return 1 /* Comparison.GreaterThan */; if (y.priority === undefined) return -1 /* Comparison.LessThan */; return ts.compareValues(x.priority, y.priority); } ts.compareEmitHelpers = compareEmitHelpers; /** * @param input Template string input strings * @param args Names which need to be made file-level unique */ function helperString(input) { var args = []; for (var _i = 1; _i < arguments.length; _i++) { args[_i - 1] = arguments[_i]; } return function (uniqueName) { var result = ""; for (var i = 0; i < args.length; i++) { result += input[i]; result += uniqueName(args[i]); } result += input[input.length - 1]; return result; }; } ts.helperString = helperString; // TypeScript Helpers ts.decorateHelper = { name: "typescript:decorate", importName: "__decorate", scoped: false, priority: 2, text: "\n var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\n return c > 3 && r && Object.defineProperty(target, key, r), r;\n };" }; ts.metadataHelper = { name: "typescript:metadata", importName: "__metadata", scoped: false, priority: 3, text: "\n var __metadata = (this && this.__metadata) || function (k, v) {\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(k, v);\n };" }; ts.paramHelper = { name: "typescript:param", importName: "__param", scoped: false, priority: 4, text: "\n var __param = (this && this.__param) || function (paramIndex, decorator) {\n return function (target, key) { decorator(target, key, paramIndex); }\n };" }; // ES2018 Helpers ts.assignHelper = { name: "typescript:assign", importName: "__assign", scoped: false, priority: 1, text: "\n var __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n };" }; ts.awaitHelper = { name: "typescript:await", importName: "__await", scoped: false, text: "\n var __await = (this && this.__await) || function (v) { return this instanceof __await ? (this.v = v, this) : new __await(v); }" }; ts.asyncGeneratorHelper = { name: "typescript:asyncGenerator", importName: "__asyncGenerator", scoped: false, dependencies: [ts.awaitHelper], text: "\n var __asyncGenerator = (this && this.__asyncGenerator) || function (thisArg, _arguments, generator) {\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\n function fulfill(value) { resume(\"next\", value); }\n function reject(value) { resume(\"throw\", value); }\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\n };" }; ts.asyncDelegator = { name: "typescript:asyncDelegator", importName: "__asyncDelegator", scoped: false, dependencies: [ts.awaitHelper], text: "\n var __asyncDelegator = (this && this.__asyncDelegator) || function (o) {\n var i, p;\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\n };" }; ts.asyncValues = { name: "typescript:asyncValues", importName: "__asyncValues", scoped: false, text: "\n var __asyncValues = (this && this.__asyncValues) || function (o) {\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n var m = o[Symbol.asyncIterator], i;\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\n };" }; // ES2018 Destructuring Helpers ts.restHelper = { name: "typescript:rest", importName: "__rest", scoped: false, text: "\n var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n };" }; // ES2017 Helpers ts.awaiterHelper = { name: "typescript:awaiter", importName: "__awaiter", scoped: false, priority: 5, text: "\n var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n };" }; // ES2015 Helpers ts.extendsHelper = { name: "typescript:extends", importName: "__extends", scoped: false, priority: 0, text: "\n var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n\n return function (d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n })();" }; ts.templateObjectHelper = { name: "typescript:makeTemplateObject", importName: "__makeTemplateObject", scoped: false, priority: 0, text: "\n var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\n return cooked;\n };" }; ts.readHelper = { name: "typescript:read", importName: "__read", scoped: false, text: "\n var __read = (this && this.__read) || function (o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n };" }; ts.spreadArrayHelper = { name: "typescript:spreadArray", importName: "__spreadArray", scoped: false, text: "\n var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\n if (ar || !(i in from)) {\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\n ar[i] = from[i];\n }\n }\n return to.concat(ar || Array.prototype.slice.call(from));\n };" }; // ES2015 Destructuring Helpers ts.valuesHelper = { name: "typescript:values", importName: "__values", scoped: false, text: "\n var __values = (this && this.__values) || function(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n };" }; // ES2015 Generator Helpers // The __generator helper is used by down-level transformations to emulate the runtime // semantics of an ES2015 generator function. When called, this helper returns an // object that implements the Iterator protocol, in that it has `next`, `return`, and // `throw` methods that step through the generator when invoked. // // parameters: // @param thisArg The value to use as the `this` binding for the transformed generator body. // @param body A function that acts as the transformed generator body. // // variables: // _ Persistent state for the generator that is shared between the helper and the // generator body. The state object has the following members: // sent() - A method that returns or throws the current completion value. // label - The next point at which to resume evaluation of the generator body. // trys - A stack of protected regions (try/catch/finally blocks). // ops - A stack of pending instructions when inside of a finally block. // f A value indicating whether the generator is executing. // y An iterator to delegate for a yield*. // t A temporary variable that holds one of the following values (note that these // cases do not overlap): // - The completion value when resuming from a `yield` or `yield*`. // - The error value for a catch block. // - The current protected region (array of try/catch/finally/end labels). // - The verb (`next`, `throw`, or `return` method) to delegate to the expression // of a `yield*`. // - The result of evaluating the verb delegated to the expression of a `yield*`. // // functions: // verb(n) Creates a bound callback to the `step` function for opcode `n`. // step(op) Evaluates opcodes in a generator body until execution is suspended or // completed. // // The __generator helper understands a limited set of instructions: // 0: next(value?) - Start or resume the generator with the specified value. // 1: throw(error) - Resume the generator with an exception. If the generator is // suspended inside of one or more protected regions, evaluates // any intervening finally blocks between the current label and // the nearest catch block or function boundary. If uncaught, the // exception is thrown to the caller. // 2: return(value?) - Resume the generator as if with a return. If the generator is // suspended inside of one or more protected regions, evaluates any // intervening finally blocks. // 3: break(label) - Jump to the specified label. If the label is outside of the // current protected region, evaluates any intervening finally // blocks. // 4: yield(value?) - Yield execution to the caller with an optional value. When // resumed, the generator will continue at the next label. // 5: yield*(value) - Delegates evaluation to the supplied iterator. When // delegation completes, the generator will continue at the next // label. // 6: catch(error) - Handles an exception thrown from within the generator body. If // the current label is inside of one or more protected regions, // evaluates any intervening finally blocks between the current // label and the nearest catch block or function boundary. If // uncaught, the exception is thrown to the caller. // 7: endfinally - Ends a finally block, resuming the last instruction prior to // entering a finally block. // // For examples of how these are used, see the comments in ./transformers/generators.ts ts.generatorHelper = { name: "typescript:generator", importName: "__generator", scoped: false, priority: 6, text: "\n var __generator = (this && this.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n };" }; // ES Module Helpers ts.createBindingHelper = { name: "typescript:commonjscreatebinding", importName: "__createBinding", scoped: false, priority: 1, text: "\n var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n var desc = Object.getOwnPropertyDescriptor(m, k);\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n desc = { enumerable: true, get: function() { return m[k]; } };\n }\n Object.defineProperty(o, k2, desc);\n }) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n }));" }; ts.setModuleDefaultHelper = { name: "typescript:commonjscreatevalue", importName: "__setModuleDefault", scoped: false, priority: 1, text: "\n var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n }) : function(o, v) {\n o[\"default\"] = v;\n });" }; // emit helper for `import * as Name from "foo"` ts.importStarHelper = { name: "typescript:commonjsimportstar", importName: "__importStar", scoped: false, dependencies: [ts.createBindingHelper, ts.setModuleDefaultHelper], priority: 2, text: "\n var __importStar = (this && this.__importStar) || function (mod) {\n if (mod && mod.__esModule) return mod;\n var result = {};\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n __setModuleDefault(result, mod);\n return result;\n };" }; // emit helper for `import Name from "foo"` ts.importDefaultHelper = { name: "typescript:commonjsimportdefault", importName: "__importDefault", scoped: false, text: "\n var __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n };" }; ts.exportStarHelper = { name: "typescript:export-star", importName: "__exportStar", scoped: false, dependencies: [ts.createBindingHelper], priority: 2, text: "\n var __exportStar = (this && this.__exportStar) || function(m, exports) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n };" }; /** * Parameters: * @param receiver — The object from which the private member will be read. * @param state — One of the following: * - A WeakMap used to read a private instance field. * - A WeakSet used as an instance brand for private instance methods and accessors. * - A function value that should be the undecorated class constructor used to brand check private static fields, methods, and accessors. * @param kind — (optional pre TS 4.3, required for TS 4.3+) One of the following values: * - undefined — Indicates a private instance field (pre TS 4.3). * - "f" — Indicates a private field (instance or static). * - "m" — Indicates a private method (instance or static). * - "a" — Indicates a private accessor (instance or static). * @param f — (optional pre TS 4.3) Depends on the arguments for state and kind: * - If kind is "m", this should be the function corresponding to the static or instance method. * - If kind is "a", this should be the function corresponding to the getter method, or undefined if the getter was not defined. * - If kind is "f" and state is a function, this should be an object holding the value of a static field, or undefined if the static field declaration has not yet been evaluated. * Usage: * This helper will only ever be used by the compiler in the following ways: * * Reading from a private instance field (pre TS 4.3): * __classPrivateFieldGet(, ) * * Reading from a private instance field (TS 4.3+): * __classPrivateFieldGet(, , "f") * * Reading from a private instance get accessor (when defined, TS 4.3+): * __classPrivateFieldGet(, , "a", ) * * Reading from a private instance get accessor (when not defined, TS 4.3+): * __classPrivateFieldGet(, , "a", void 0) * NOTE: This always results in a runtime error. * * Reading from a private instance method (TS 4.3+): * __classPrivateFieldGet(, , "m", ) * * Reading from a private static field (TS 4.3+): * __classPrivateFieldGet(, , "f", <{ value: any }>) * * Reading from a private static get accessor (when defined, TS 4.3+): * __classPrivateFieldGet(, , "a", ) * * Reading from a private static get accessor (when not defined, TS 4.3+): * __classPrivateFieldGet(, , "a", void 0) * NOTE: This always results in a runtime error. * * Reading from a private static method (TS 4.3+): * __classPrivateFieldGet(, , "m", ) */ ts.classPrivateFieldGetHelper = { name: "typescript:classPrivateFieldGet", importName: "__classPrivateFieldGet", scoped: false, text: "\n var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\n };" }; /** * Parameters: * @param receiver — The object on which the private member will be set. * @param state — One of the following: * - A WeakMap used to store a private instance field. * - A WeakSet used as an instance brand for private instance methods and accessors. * - A function value that should be the undecorated class constructor used to brand check private static fields, methods, and accessors. * @param value — The value to set. * @param kind — (optional pre TS 4.3, required for TS 4.3+) One of the following values: * - undefined — Indicates a private instance field (pre TS 4.3). * - "f" — Indicates a private field (instance or static). * - "m" — Indicates a private method (instance or static). * - "a" — Indicates a private accessor (instance or static). * @param f — (optional pre TS 4.3) Depends on the arguments for state and kind: * - If kind is "m", this should be the function corresponding to the static or instance method. * - If kind is "a", this should be the function corresponding to the setter method, or undefined if the setter was not defined. * - If kind is "f" and state is a function, this should be an object holding the value of a static field, or undefined if the static field declaration has not yet been evaluated. * Usage: * This helper will only ever be used by the compiler in the following ways: * * Writing to a private instance field (pre TS 4.3): * __classPrivateFieldSet(, , ) * * Writing to a private instance field (TS 4.3+): * __classPrivateFieldSet(, , , "f") * * Writing to a private instance set accessor (when defined, TS 4.3+): * __classPrivateFieldSet(, , , "a", ) * * Writing to a private instance set accessor (when not defined, TS 4.3+): * __classPrivateFieldSet(, , , "a", void 0) * NOTE: This always results in a runtime error. * * Writing to a private instance method (TS 4.3+): * __classPrivateFieldSet(, , , "m", ) * NOTE: This always results in a runtime error. * * Writing to a private static field (TS 4.3+): * __classPrivateFieldSet(, , , "f", <{ value: any }>) * * Writing to a private static set accessor (when defined, TS 4.3+): * __classPrivateFieldSet(, , , "a", ) * * Writing to a private static set accessor (when not defined, TS 4.3+): * __classPrivateFieldSet(, , , "a", void 0) * NOTE: This always results in a runtime error. * * Writing to a private static method (TS 4.3+): * __classPrivateFieldSet(, , , "m", ) * NOTE: This always results in a runtime error. */ ts.classPrivateFieldSetHelper = { name: "typescript:classPrivateFieldSet", importName: "__classPrivateFieldSet", scoped: false, text: "\n var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\n };" }; /** * Parameters: * @param state — One of the following: * - A WeakMap when the member is a private instance field. * - A WeakSet when the member is a private instance method or accessor. * - A function value that should be the undecorated class constructor when the member is a private static field, method, or accessor. * @param receiver — The object being checked if it has the private member. * * Usage: * This helper is used to transform `#field in expression` to * `__classPrivateFieldIn(, expression)` */ ts.classPrivateFieldInHelper = { name: "typescript:classPrivateFieldIn", importName: "__classPrivateFieldIn", scoped: false, text: "\n var __classPrivateFieldIn = (this && this.__classPrivateFieldIn) || function(state, receiver) {\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\n };" }; var allUnscopedEmitHelpers; function getAllUnscopedEmitHelpers() { return allUnscopedEmitHelpers || (allUnscopedEmitHelpers = ts.arrayToMap([ ts.decorateHelper, ts.metadataHelper, ts.paramHelper, ts.assignHelper, ts.awaitHelper, ts.asyncGeneratorHelper, ts.asyncDelegator, ts.asyncValues, ts.restHelper, ts.awaiterHelper, ts.extendsHelper, ts.templateObjectHelper, ts.spreadArrayHelper, ts.valuesHelper, ts.readHelper, ts.generatorHelper, ts.importStarHelper, ts.importDefaultHelper, ts.exportStarHelper, ts.classPrivateFieldGetHelper, ts.classPrivateFieldSetHelper, ts.classPrivateFieldInHelper, ts.createBindingHelper, ts.setModuleDefaultHelper ], function (helper) { return helper.name; })); } ts.getAllUnscopedEmitHelpers = getAllUnscopedEmitHelpers; ts.asyncSuperHelper = { name: "typescript:async-super", scoped: true, text: helperString(__makeTemplateObject(["\n const ", " = name => super[name];"], ["\n const ", " = name => super[name];"]), "_superIndex") }; ts.advancedAsyncSuperHelper = { name: "typescript:advanced-async-super", scoped: true, text: helperString(__makeTemplateObject(["\n const ", " = (function (geti, seti) {\n const cache = Object.create(null);\n return name => cache[name] || (cache[name] = { get value() { return geti(name); }, set value(v) { seti(name, v); } });\n })(name => super[name], (name, value) => super[name] = value);"], ["\n const ", " = (function (geti, seti) {\n const cache = Object.create(null);\n return name => cache[name] || (cache[name] = { get value() { return geti(name); }, set value(v) { seti(name, v); } });\n })(name => super[name], (name, value) => super[name] = value);"]), "_superIndex") }; function isCallToHelper(firstSegment, helperName) { return ts.isCallExpression(firstSegment) && ts.isIdentifier(firstSegment.expression) && (ts.getEmitFlags(firstSegment.expression) & 4096 /* EmitFlags.HelperName */) !== 0 && firstSegment.expression.escapedText === helperName; } ts.isCallToHelper = isCallToHelper; })(ts || (ts = {})); var ts; (function (ts) { // Literals function isNumericLiteral(node) { return node.kind === 8 /* SyntaxKind.NumericLiteral */; } ts.isNumericLiteral = isNumericLiteral; function isBigIntLiteral(node) { return node.kind === 9 /* SyntaxKind.BigIntLiteral */; } ts.isBigIntLiteral = isBigIntLiteral; function isStringLiteral(node) { return node.kind === 10 /* SyntaxKind.StringLiteral */; } ts.isStringLiteral = isStringLiteral; function isJsxText(node) { return node.kind === 11 /* SyntaxKind.JsxText */; } ts.isJsxText = isJsxText; function isRegularExpressionLiteral(node) { return node.kind === 13 /* SyntaxKind.RegularExpressionLiteral */; } ts.isRegularExpressionLiteral = isRegularExpressionLiteral; function isNoSubstitutionTemplateLiteral(node) { return node.kind === 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */; } ts.isNoSubstitutionTemplateLiteral = isNoSubstitutionTemplateLiteral; // Pseudo-literals function isTemplateHead(node) { return node.kind === 15 /* SyntaxKind.TemplateHead */; } ts.isTemplateHead = isTemplateHead; function isTemplateMiddle(node) { return node.kind === 16 /* SyntaxKind.TemplateMiddle */; } ts.isTemplateMiddle = isTemplateMiddle; function isTemplateTail(node) { return node.kind === 17 /* SyntaxKind.TemplateTail */; } ts.isTemplateTail = isTemplateTail; // Punctuation function isDotDotDotToken(node) { return node.kind === 25 /* SyntaxKind.DotDotDotToken */; } ts.isDotDotDotToken = isDotDotDotToken; /*@internal*/ function isCommaToken(node) { return node.kind === 27 /* SyntaxKind.CommaToken */; } ts.isCommaToken = isCommaToken; function isPlusToken(node) { return node.kind === 39 /* SyntaxKind.PlusToken */; } ts.isPlusToken = isPlusToken; function isMinusToken(node) { return node.kind === 40 /* SyntaxKind.MinusToken */; } ts.isMinusToken = isMinusToken; function isAsteriskToken(node) { return node.kind === 41 /* SyntaxKind.AsteriskToken */; } ts.isAsteriskToken = isAsteriskToken; /*@internal*/ function isExclamationToken(node) { return node.kind === 53 /* SyntaxKind.ExclamationToken */; } ts.isExclamationToken = isExclamationToken; /*@internal*/ function isQuestionToken(node) { return node.kind === 57 /* SyntaxKind.QuestionToken */; } ts.isQuestionToken = isQuestionToken; /*@internal*/ function isColonToken(node) { return node.kind === 58 /* SyntaxKind.ColonToken */; } ts.isColonToken = isColonToken; /*@internal*/ function isQuestionDotToken(node) { return node.kind === 28 /* SyntaxKind.QuestionDotToken */; } ts.isQuestionDotToken = isQuestionDotToken; /*@internal*/ function isEqualsGreaterThanToken(node) { return node.kind === 38 /* SyntaxKind.EqualsGreaterThanToken */; } ts.isEqualsGreaterThanToken = isEqualsGreaterThanToken; // Identifiers function isIdentifier(node) { return node.kind === 79 /* SyntaxKind.Identifier */; } ts.isIdentifier = isIdentifier; function isPrivateIdentifier(node) { return node.kind === 80 /* SyntaxKind.PrivateIdentifier */; } ts.isPrivateIdentifier = isPrivateIdentifier; // Reserved Words /* @internal */ function isExportModifier(node) { return node.kind === 93 /* SyntaxKind.ExportKeyword */; } ts.isExportModifier = isExportModifier; /* @internal */ function isAsyncModifier(node) { return node.kind === 131 /* SyntaxKind.AsyncKeyword */; } ts.isAsyncModifier = isAsyncModifier; /* @internal */ function isAssertsKeyword(node) { return node.kind === 128 /* SyntaxKind.AssertsKeyword */; } ts.isAssertsKeyword = isAssertsKeyword; /* @internal */ function isAwaitKeyword(node) { return node.kind === 132 /* SyntaxKind.AwaitKeyword */; } ts.isAwaitKeyword = isAwaitKeyword; /* @internal */ function isReadonlyKeyword(node) { return node.kind === 145 /* SyntaxKind.ReadonlyKeyword */; } ts.isReadonlyKeyword = isReadonlyKeyword; /* @internal */ function isStaticModifier(node) { return node.kind === 124 /* SyntaxKind.StaticKeyword */; } ts.isStaticModifier = isStaticModifier; /* @internal */ function isAbstractModifier(node) { return node.kind === 126 /* SyntaxKind.AbstractKeyword */; } ts.isAbstractModifier = isAbstractModifier; /*@internal*/ function isSuperKeyword(node) { return node.kind === 106 /* SyntaxKind.SuperKeyword */; } ts.isSuperKeyword = isSuperKeyword; /*@internal*/ function isImportKeyword(node) { return node.kind === 100 /* SyntaxKind.ImportKeyword */; } ts.isImportKeyword = isImportKeyword; // Names function isQualifiedName(node) { return node.kind === 161 /* SyntaxKind.QualifiedName */; } ts.isQualifiedName = isQualifiedName; function isComputedPropertyName(node) { return node.kind === 162 /* SyntaxKind.ComputedPropertyName */; } ts.isComputedPropertyName = isComputedPropertyName; // Signature elements function isTypeParameterDeclaration(node) { return node.kind === 163 /* SyntaxKind.TypeParameter */; } ts.isTypeParameterDeclaration = isTypeParameterDeclaration; // TODO(rbuckton): Rename to 'isParameterDeclaration' function isParameter(node) { return node.kind === 164 /* SyntaxKind.Parameter */; } ts.isParameter = isParameter; function isDecorator(node) { return node.kind === 165 /* SyntaxKind.Decorator */; } ts.isDecorator = isDecorator; // TypeMember function isPropertySignature(node) { return node.kind === 166 /* SyntaxKind.PropertySignature */; } ts.isPropertySignature = isPropertySignature; function isPropertyDeclaration(node) { return node.kind === 167 /* SyntaxKind.PropertyDeclaration */; } ts.isPropertyDeclaration = isPropertyDeclaration; function isMethodSignature(node) { return node.kind === 168 /* SyntaxKind.MethodSignature */; } ts.isMethodSignature = isMethodSignature; function isMethodDeclaration(node) { return node.kind === 169 /* SyntaxKind.MethodDeclaration */; } ts.isMethodDeclaration = isMethodDeclaration; function isClassStaticBlockDeclaration(node) { return node.kind === 170 /* SyntaxKind.ClassStaticBlockDeclaration */; } ts.isClassStaticBlockDeclaration = isClassStaticBlockDeclaration; function isConstructorDeclaration(node) { return node.kind === 171 /* SyntaxKind.Constructor */; } ts.isConstructorDeclaration = isConstructorDeclaration; function isGetAccessorDeclaration(node) { return node.kind === 172 /* SyntaxKind.GetAccessor */; } ts.isGetAccessorDeclaration = isGetAccessorDeclaration; function isSetAccessorDeclaration(node) { return node.kind === 173 /* SyntaxKind.SetAccessor */; } ts.isSetAccessorDeclaration = isSetAccessorDeclaration; function isCallSignatureDeclaration(node) { return node.kind === 174 /* SyntaxKind.CallSignature */; } ts.isCallSignatureDeclaration = isCallSignatureDeclaration; function isConstructSignatureDeclaration(node) { return node.kind === 175 /* SyntaxKind.ConstructSignature */; } ts.isConstructSignatureDeclaration = isConstructSignatureDeclaration; function isIndexSignatureDeclaration(node) { return node.kind === 176 /* SyntaxKind.IndexSignature */; } ts.isIndexSignatureDeclaration = isIndexSignatureDeclaration; // Type function isTypePredicateNode(node) { return node.kind === 177 /* SyntaxKind.TypePredicate */; } ts.isTypePredicateNode = isTypePredicateNode; function isTypeReferenceNode(node) { return node.kind === 178 /* SyntaxKind.TypeReference */; } ts.isTypeReferenceNode = isTypeReferenceNode; function isFunctionTypeNode(node) { return node.kind === 179 /* SyntaxKind.FunctionType */; } ts.isFunctionTypeNode = isFunctionTypeNode; function isConstructorTypeNode(node) { return node.kind === 180 /* SyntaxKind.ConstructorType */; } ts.isConstructorTypeNode = isConstructorTypeNode; function isTypeQueryNode(node) { return node.kind === 181 /* SyntaxKind.TypeQuery */; } ts.isTypeQueryNode = isTypeQueryNode; function isTypeLiteralNode(node) { return node.kind === 182 /* SyntaxKind.TypeLiteral */; } ts.isTypeLiteralNode = isTypeLiteralNode; function isArrayTypeNode(node) { return node.kind === 183 /* SyntaxKind.ArrayType */; } ts.isArrayTypeNode = isArrayTypeNode; function isTupleTypeNode(node) { return node.kind === 184 /* SyntaxKind.TupleType */; } ts.isTupleTypeNode = isTupleTypeNode; function isNamedTupleMember(node) { return node.kind === 197 /* SyntaxKind.NamedTupleMember */; } ts.isNamedTupleMember = isNamedTupleMember; function isOptionalTypeNode(node) { return node.kind === 185 /* SyntaxKind.OptionalType */; } ts.isOptionalTypeNode = isOptionalTypeNode; function isRestTypeNode(node) { return node.kind === 186 /* SyntaxKind.RestType */; } ts.isRestTypeNode = isRestTypeNode; function isUnionTypeNode(node) { return node.kind === 187 /* SyntaxKind.UnionType */; } ts.isUnionTypeNode = isUnionTypeNode; function isIntersectionTypeNode(node) { return node.kind === 188 /* SyntaxKind.IntersectionType */; } ts.isIntersectionTypeNode = isIntersectionTypeNode; function isConditionalTypeNode(node) { return node.kind === 189 /* SyntaxKind.ConditionalType */; } ts.isConditionalTypeNode = isConditionalTypeNode; function isInferTypeNode(node) { return node.kind === 190 /* SyntaxKind.InferType */; } ts.isInferTypeNode = isInferTypeNode; function isParenthesizedTypeNode(node) { return node.kind === 191 /* SyntaxKind.ParenthesizedType */; } ts.isParenthesizedTypeNode = isParenthesizedTypeNode; function isThisTypeNode(node) { return node.kind === 192 /* SyntaxKind.ThisType */; } ts.isThisTypeNode = isThisTypeNode; function isTypeOperatorNode(node) { return node.kind === 193 /* SyntaxKind.TypeOperator */; } ts.isTypeOperatorNode = isTypeOperatorNode; function isIndexedAccessTypeNode(node) { return node.kind === 194 /* SyntaxKind.IndexedAccessType */; } ts.isIndexedAccessTypeNode = isIndexedAccessTypeNode; function isMappedTypeNode(node) { return node.kind === 195 /* SyntaxKind.MappedType */; } ts.isMappedTypeNode = isMappedTypeNode; function isLiteralTypeNode(node) { return node.kind === 196 /* SyntaxKind.LiteralType */; } ts.isLiteralTypeNode = isLiteralTypeNode; function isImportTypeNode(node) { return node.kind === 200 /* SyntaxKind.ImportType */; } ts.isImportTypeNode = isImportTypeNode; function isTemplateLiteralTypeSpan(node) { return node.kind === 199 /* SyntaxKind.TemplateLiteralTypeSpan */; } ts.isTemplateLiteralTypeSpan = isTemplateLiteralTypeSpan; function isTemplateLiteralTypeNode(node) { return node.kind === 198 /* SyntaxKind.TemplateLiteralType */; } ts.isTemplateLiteralTypeNode = isTemplateLiteralTypeNode; // Binding patterns function isObjectBindingPattern(node) { return node.kind === 201 /* SyntaxKind.ObjectBindingPattern */; } ts.isObjectBindingPattern = isObjectBindingPattern; function isArrayBindingPattern(node) { return node.kind === 202 /* SyntaxKind.ArrayBindingPattern */; } ts.isArrayBindingPattern = isArrayBindingPattern; function isBindingElement(node) { return node.kind === 203 /* SyntaxKind.BindingElement */; } ts.isBindingElement = isBindingElement; // Expression function isArrayLiteralExpression(node) { return node.kind === 204 /* SyntaxKind.ArrayLiteralExpression */; } ts.isArrayLiteralExpression = isArrayLiteralExpression; function isObjectLiteralExpression(node) { return node.kind === 205 /* SyntaxKind.ObjectLiteralExpression */; } ts.isObjectLiteralExpression = isObjectLiteralExpression; function isPropertyAccessExpression(node) { return node.kind === 206 /* SyntaxKind.PropertyAccessExpression */; } ts.isPropertyAccessExpression = isPropertyAccessExpression; function isElementAccessExpression(node) { return node.kind === 207 /* SyntaxKind.ElementAccessExpression */; } ts.isElementAccessExpression = isElementAccessExpression; function isCallExpression(node) { return node.kind === 208 /* SyntaxKind.CallExpression */; } ts.isCallExpression = isCallExpression; function isNewExpression(node) { return node.kind === 209 /* SyntaxKind.NewExpression */; } ts.isNewExpression = isNewExpression; function isTaggedTemplateExpression(node) { return node.kind === 210 /* SyntaxKind.TaggedTemplateExpression */; } ts.isTaggedTemplateExpression = isTaggedTemplateExpression; function isTypeAssertionExpression(node) { return node.kind === 211 /* SyntaxKind.TypeAssertionExpression */; } ts.isTypeAssertionExpression = isTypeAssertionExpression; function isParenthesizedExpression(node) { return node.kind === 212 /* SyntaxKind.ParenthesizedExpression */; } ts.isParenthesizedExpression = isParenthesizedExpression; function isFunctionExpression(node) { return node.kind === 213 /* SyntaxKind.FunctionExpression */; } ts.isFunctionExpression = isFunctionExpression; function isArrowFunction(node) { return node.kind === 214 /* SyntaxKind.ArrowFunction */; } ts.isArrowFunction = isArrowFunction; function isDeleteExpression(node) { return node.kind === 215 /* SyntaxKind.DeleteExpression */; } ts.isDeleteExpression = isDeleteExpression; function isTypeOfExpression(node) { return node.kind === 216 /* SyntaxKind.TypeOfExpression */; } ts.isTypeOfExpression = isTypeOfExpression; function isVoidExpression(node) { return node.kind === 217 /* SyntaxKind.VoidExpression */; } ts.isVoidExpression = isVoidExpression; function isAwaitExpression(node) { return node.kind === 218 /* SyntaxKind.AwaitExpression */; } ts.isAwaitExpression = isAwaitExpression; function isPrefixUnaryExpression(node) { return node.kind === 219 /* SyntaxKind.PrefixUnaryExpression */; } ts.isPrefixUnaryExpression = isPrefixUnaryExpression; function isPostfixUnaryExpression(node) { return node.kind === 220 /* SyntaxKind.PostfixUnaryExpression */; } ts.isPostfixUnaryExpression = isPostfixUnaryExpression; function isBinaryExpression(node) { return node.kind === 221 /* SyntaxKind.BinaryExpression */; } ts.isBinaryExpression = isBinaryExpression; function isConditionalExpression(node) { return node.kind === 222 /* SyntaxKind.ConditionalExpression */; } ts.isConditionalExpression = isConditionalExpression; function isTemplateExpression(node) { return node.kind === 223 /* SyntaxKind.TemplateExpression */; } ts.isTemplateExpression = isTemplateExpression; function isYieldExpression(node) { return node.kind === 224 /* SyntaxKind.YieldExpression */; } ts.isYieldExpression = isYieldExpression; function isSpreadElement(node) { return node.kind === 225 /* SyntaxKind.SpreadElement */; } ts.isSpreadElement = isSpreadElement; function isClassExpression(node) { return node.kind === 226 /* SyntaxKind.ClassExpression */; } ts.isClassExpression = isClassExpression; function isOmittedExpression(node) { return node.kind === 227 /* SyntaxKind.OmittedExpression */; } ts.isOmittedExpression = isOmittedExpression; function isExpressionWithTypeArguments(node) { return node.kind === 228 /* SyntaxKind.ExpressionWithTypeArguments */; } ts.isExpressionWithTypeArguments = isExpressionWithTypeArguments; function isAsExpression(node) { return node.kind === 229 /* SyntaxKind.AsExpression */; } ts.isAsExpression = isAsExpression; function isNonNullExpression(node) { return node.kind === 230 /* SyntaxKind.NonNullExpression */; } ts.isNonNullExpression = isNonNullExpression; function isMetaProperty(node) { return node.kind === 231 /* SyntaxKind.MetaProperty */; } ts.isMetaProperty = isMetaProperty; function isSyntheticExpression(node) { return node.kind === 232 /* SyntaxKind.SyntheticExpression */; } ts.isSyntheticExpression = isSyntheticExpression; function isPartiallyEmittedExpression(node) { return node.kind === 350 /* SyntaxKind.PartiallyEmittedExpression */; } ts.isPartiallyEmittedExpression = isPartiallyEmittedExpression; function isCommaListExpression(node) { return node.kind === 351 /* SyntaxKind.CommaListExpression */; } ts.isCommaListExpression = isCommaListExpression; // Misc function isTemplateSpan(node) { return node.kind === 233 /* SyntaxKind.TemplateSpan */; } ts.isTemplateSpan = isTemplateSpan; function isSemicolonClassElement(node) { return node.kind === 234 /* SyntaxKind.SemicolonClassElement */; } ts.isSemicolonClassElement = isSemicolonClassElement; // Elements function isBlock(node) { return node.kind === 235 /* SyntaxKind.Block */; } ts.isBlock = isBlock; function isVariableStatement(node) { return node.kind === 237 /* SyntaxKind.VariableStatement */; } ts.isVariableStatement = isVariableStatement; function isEmptyStatement(node) { return node.kind === 236 /* SyntaxKind.EmptyStatement */; } ts.isEmptyStatement = isEmptyStatement; function isExpressionStatement(node) { return node.kind === 238 /* SyntaxKind.ExpressionStatement */; } ts.isExpressionStatement = isExpressionStatement; function isIfStatement(node) { return node.kind === 239 /* SyntaxKind.IfStatement */; } ts.isIfStatement = isIfStatement; function isDoStatement(node) { return node.kind === 240 /* SyntaxKind.DoStatement */; } ts.isDoStatement = isDoStatement; function isWhileStatement(node) { return node.kind === 241 /* SyntaxKind.WhileStatement */; } ts.isWhileStatement = isWhileStatement; function isForStatement(node) { return node.kind === 242 /* SyntaxKind.ForStatement */; } ts.isForStatement = isForStatement; function isForInStatement(node) { return node.kind === 243 /* SyntaxKind.ForInStatement */; } ts.isForInStatement = isForInStatement; function isForOfStatement(node) { return node.kind === 244 /* SyntaxKind.ForOfStatement */; } ts.isForOfStatement = isForOfStatement; function isContinueStatement(node) { return node.kind === 245 /* SyntaxKind.ContinueStatement */; } ts.isContinueStatement = isContinueStatement; function isBreakStatement(node) { return node.kind === 246 /* SyntaxKind.BreakStatement */; } ts.isBreakStatement = isBreakStatement; function isReturnStatement(node) { return node.kind === 247 /* SyntaxKind.ReturnStatement */; } ts.isReturnStatement = isReturnStatement; function isWithStatement(node) { return node.kind === 248 /* SyntaxKind.WithStatement */; } ts.isWithStatement = isWithStatement; function isSwitchStatement(node) { return node.kind === 249 /* SyntaxKind.SwitchStatement */; } ts.isSwitchStatement = isSwitchStatement; function isLabeledStatement(node) { return node.kind === 250 /* SyntaxKind.LabeledStatement */; } ts.isLabeledStatement = isLabeledStatement; function isThrowStatement(node) { return node.kind === 251 /* SyntaxKind.ThrowStatement */; } ts.isThrowStatement = isThrowStatement; function isTryStatement(node) { return node.kind === 252 /* SyntaxKind.TryStatement */; } ts.isTryStatement = isTryStatement; function isDebuggerStatement(node) { return node.kind === 253 /* SyntaxKind.DebuggerStatement */; } ts.isDebuggerStatement = isDebuggerStatement; function isVariableDeclaration(node) { return node.kind === 254 /* SyntaxKind.VariableDeclaration */; } ts.isVariableDeclaration = isVariableDeclaration; function isVariableDeclarationList(node) { return node.kind === 255 /* SyntaxKind.VariableDeclarationList */; } ts.isVariableDeclarationList = isVariableDeclarationList; function isFunctionDeclaration(node) { return node.kind === 256 /* SyntaxKind.FunctionDeclaration */; } ts.isFunctionDeclaration = isFunctionDeclaration; function isClassDeclaration(node) { return node.kind === 257 /* SyntaxKind.ClassDeclaration */; } ts.isClassDeclaration = isClassDeclaration; function isInterfaceDeclaration(node) { return node.kind === 258 /* SyntaxKind.InterfaceDeclaration */; } ts.isInterfaceDeclaration = isInterfaceDeclaration; function isTypeAliasDeclaration(node) { return node.kind === 259 /* SyntaxKind.TypeAliasDeclaration */; } ts.isTypeAliasDeclaration = isTypeAliasDeclaration; function isEnumDeclaration(node) { return node.kind === 260 /* SyntaxKind.EnumDeclaration */; } ts.isEnumDeclaration = isEnumDeclaration; function isModuleDeclaration(node) { return node.kind === 261 /* SyntaxKind.ModuleDeclaration */; } ts.isModuleDeclaration = isModuleDeclaration; function isModuleBlock(node) { return node.kind === 262 /* SyntaxKind.ModuleBlock */; } ts.isModuleBlock = isModuleBlock; function isCaseBlock(node) { return node.kind === 263 /* SyntaxKind.CaseBlock */; } ts.isCaseBlock = isCaseBlock; function isNamespaceExportDeclaration(node) { return node.kind === 264 /* SyntaxKind.NamespaceExportDeclaration */; } ts.isNamespaceExportDeclaration = isNamespaceExportDeclaration; function isImportEqualsDeclaration(node) { return node.kind === 265 /* SyntaxKind.ImportEqualsDeclaration */; } ts.isImportEqualsDeclaration = isImportEqualsDeclaration; function isImportDeclaration(node) { return node.kind === 266 /* SyntaxKind.ImportDeclaration */; } ts.isImportDeclaration = isImportDeclaration; function isImportClause(node) { return node.kind === 267 /* SyntaxKind.ImportClause */; } ts.isImportClause = isImportClause; function isImportTypeAssertionContainer(node) { return node.kind === 295 /* SyntaxKind.ImportTypeAssertionContainer */; } ts.isImportTypeAssertionContainer = isImportTypeAssertionContainer; function isAssertClause(node) { return node.kind === 293 /* SyntaxKind.AssertClause */; } ts.isAssertClause = isAssertClause; function isAssertEntry(node) { return node.kind === 294 /* SyntaxKind.AssertEntry */; } ts.isAssertEntry = isAssertEntry; function isNamespaceImport(node) { return node.kind === 268 /* SyntaxKind.NamespaceImport */; } ts.isNamespaceImport = isNamespaceImport; function isNamespaceExport(node) { return node.kind === 274 /* SyntaxKind.NamespaceExport */; } ts.isNamespaceExport = isNamespaceExport; function isNamedImports(node) { return node.kind === 269 /* SyntaxKind.NamedImports */; } ts.isNamedImports = isNamedImports; function isImportSpecifier(node) { return node.kind === 270 /* SyntaxKind.ImportSpecifier */; } ts.isImportSpecifier = isImportSpecifier; function isExportAssignment(node) { return node.kind === 271 /* SyntaxKind.ExportAssignment */; } ts.isExportAssignment = isExportAssignment; function isExportDeclaration(node) { return node.kind === 272 /* SyntaxKind.ExportDeclaration */; } ts.isExportDeclaration = isExportDeclaration; function isNamedExports(node) { return node.kind === 273 /* SyntaxKind.NamedExports */; } ts.isNamedExports = isNamedExports; function isExportSpecifier(node) { return node.kind === 275 /* SyntaxKind.ExportSpecifier */; } ts.isExportSpecifier = isExportSpecifier; function isMissingDeclaration(node) { return node.kind === 276 /* SyntaxKind.MissingDeclaration */; } ts.isMissingDeclaration = isMissingDeclaration; function isNotEmittedStatement(node) { return node.kind === 349 /* SyntaxKind.NotEmittedStatement */; } ts.isNotEmittedStatement = isNotEmittedStatement; /* @internal */ function isSyntheticReference(node) { return node.kind === 354 /* SyntaxKind.SyntheticReferenceExpression */; } ts.isSyntheticReference = isSyntheticReference; /* @internal */ function isMergeDeclarationMarker(node) { return node.kind === 352 /* SyntaxKind.MergeDeclarationMarker */; } ts.isMergeDeclarationMarker = isMergeDeclarationMarker; /* @internal */ function isEndOfDeclarationMarker(node) { return node.kind === 353 /* SyntaxKind.EndOfDeclarationMarker */; } ts.isEndOfDeclarationMarker = isEndOfDeclarationMarker; // Module References function isExternalModuleReference(node) { return node.kind === 277 /* SyntaxKind.ExternalModuleReference */; } ts.isExternalModuleReference = isExternalModuleReference; // JSX function isJsxElement(node) { return node.kind === 278 /* SyntaxKind.JsxElement */; } ts.isJsxElement = isJsxElement; function isJsxSelfClosingElement(node) { return node.kind === 279 /* SyntaxKind.JsxSelfClosingElement */; } ts.isJsxSelfClosingElement = isJsxSelfClosingElement; function isJsxOpeningElement(node) { return node.kind === 280 /* SyntaxKind.JsxOpeningElement */; } ts.isJsxOpeningElement = isJsxOpeningElement; function isJsxClosingElement(node) { return node.kind === 281 /* SyntaxKind.JsxClosingElement */; } ts.isJsxClosingElement = isJsxClosingElement; function isJsxFragment(node) { return node.kind === 282 /* SyntaxKind.JsxFragment */; } ts.isJsxFragment = isJsxFragment; function isJsxOpeningFragment(node) { return node.kind === 283 /* SyntaxKind.JsxOpeningFragment */; } ts.isJsxOpeningFragment = isJsxOpeningFragment; function isJsxClosingFragment(node) { return node.kind === 284 /* SyntaxKind.JsxClosingFragment */; } ts.isJsxClosingFragment = isJsxClosingFragment; function isJsxAttribute(node) { return node.kind === 285 /* SyntaxKind.JsxAttribute */; } ts.isJsxAttribute = isJsxAttribute; function isJsxAttributes(node) { return node.kind === 286 /* SyntaxKind.JsxAttributes */; } ts.isJsxAttributes = isJsxAttributes; function isJsxSpreadAttribute(node) { return node.kind === 287 /* SyntaxKind.JsxSpreadAttribute */; } ts.isJsxSpreadAttribute = isJsxSpreadAttribute; function isJsxExpression(node) { return node.kind === 288 /* SyntaxKind.JsxExpression */; } ts.isJsxExpression = isJsxExpression; // Clauses function isCaseClause(node) { return node.kind === 289 /* SyntaxKind.CaseClause */; } ts.isCaseClause = isCaseClause; function isDefaultClause(node) { return node.kind === 290 /* SyntaxKind.DefaultClause */; } ts.isDefaultClause = isDefaultClause; function isHeritageClause(node) { return node.kind === 291 /* SyntaxKind.HeritageClause */; } ts.isHeritageClause = isHeritageClause; function isCatchClause(node) { return node.kind === 292 /* SyntaxKind.CatchClause */; } ts.isCatchClause = isCatchClause; // Property assignments function isPropertyAssignment(node) { return node.kind === 296 /* SyntaxKind.PropertyAssignment */; } ts.isPropertyAssignment = isPropertyAssignment; function isShorthandPropertyAssignment(node) { return node.kind === 297 /* SyntaxKind.ShorthandPropertyAssignment */; } ts.isShorthandPropertyAssignment = isShorthandPropertyAssignment; function isSpreadAssignment(node) { return node.kind === 298 /* SyntaxKind.SpreadAssignment */; } ts.isSpreadAssignment = isSpreadAssignment; // Enum function isEnumMember(node) { return node.kind === 299 /* SyntaxKind.EnumMember */; } ts.isEnumMember = isEnumMember; // Unparsed // TODO(rbuckton): isUnparsedPrologue function isUnparsedPrepend(node) { return node.kind === 301 /* SyntaxKind.UnparsedPrepend */; } ts.isUnparsedPrepend = isUnparsedPrepend; // TODO(rbuckton): isUnparsedText // TODO(rbuckton): isUnparsedInternalText // TODO(rbuckton): isUnparsedSyntheticReference // Top-level nodes function isSourceFile(node) { return node.kind === 305 /* SyntaxKind.SourceFile */; } ts.isSourceFile = isSourceFile; function isBundle(node) { return node.kind === 306 /* SyntaxKind.Bundle */; } ts.isBundle = isBundle; function isUnparsedSource(node) { return node.kind === 307 /* SyntaxKind.UnparsedSource */; } ts.isUnparsedSource = isUnparsedSource; // TODO(rbuckton): isInputFiles // JSDoc Elements function isJSDocTypeExpression(node) { return node.kind === 309 /* SyntaxKind.JSDocTypeExpression */; } ts.isJSDocTypeExpression = isJSDocTypeExpression; function isJSDocNameReference(node) { return node.kind === 310 /* SyntaxKind.JSDocNameReference */; } ts.isJSDocNameReference = isJSDocNameReference; function isJSDocMemberName(node) { return node.kind === 311 /* SyntaxKind.JSDocMemberName */; } ts.isJSDocMemberName = isJSDocMemberName; function isJSDocLink(node) { return node.kind === 324 /* SyntaxKind.JSDocLink */; } ts.isJSDocLink = isJSDocLink; function isJSDocLinkCode(node) { return node.kind === 325 /* SyntaxKind.JSDocLinkCode */; } ts.isJSDocLinkCode = isJSDocLinkCode; function isJSDocLinkPlain(node) { return node.kind === 326 /* SyntaxKind.JSDocLinkPlain */; } ts.isJSDocLinkPlain = isJSDocLinkPlain; function isJSDocAllType(node) { return node.kind === 312 /* SyntaxKind.JSDocAllType */; } ts.isJSDocAllType = isJSDocAllType; function isJSDocUnknownType(node) { return node.kind === 313 /* SyntaxKind.JSDocUnknownType */; } ts.isJSDocUnknownType = isJSDocUnknownType; function isJSDocNullableType(node) { return node.kind === 314 /* SyntaxKind.JSDocNullableType */; } ts.isJSDocNullableType = isJSDocNullableType; function isJSDocNonNullableType(node) { return node.kind === 315 /* SyntaxKind.JSDocNonNullableType */; } ts.isJSDocNonNullableType = isJSDocNonNullableType; function isJSDocOptionalType(node) { return node.kind === 316 /* SyntaxKind.JSDocOptionalType */; } ts.isJSDocOptionalType = isJSDocOptionalType; function isJSDocFunctionType(node) { return node.kind === 317 /* SyntaxKind.JSDocFunctionType */; } ts.isJSDocFunctionType = isJSDocFunctionType; function isJSDocVariadicType(node) { return node.kind === 318 /* SyntaxKind.JSDocVariadicType */; } ts.isJSDocVariadicType = isJSDocVariadicType; function isJSDocNamepathType(node) { return node.kind === 319 /* SyntaxKind.JSDocNamepathType */; } ts.isJSDocNamepathType = isJSDocNamepathType; function isJSDoc(node) { return node.kind === 320 /* SyntaxKind.JSDoc */; } ts.isJSDoc = isJSDoc; function isJSDocTypeLiteral(node) { return node.kind === 322 /* SyntaxKind.JSDocTypeLiteral */; } ts.isJSDocTypeLiteral = isJSDocTypeLiteral; function isJSDocSignature(node) { return node.kind === 323 /* SyntaxKind.JSDocSignature */; } ts.isJSDocSignature = isJSDocSignature; // JSDoc Tags function isJSDocAugmentsTag(node) { return node.kind === 328 /* SyntaxKind.JSDocAugmentsTag */; } ts.isJSDocAugmentsTag = isJSDocAugmentsTag; function isJSDocAuthorTag(node) { return node.kind === 330 /* SyntaxKind.JSDocAuthorTag */; } ts.isJSDocAuthorTag = isJSDocAuthorTag; function isJSDocClassTag(node) { return node.kind === 332 /* SyntaxKind.JSDocClassTag */; } ts.isJSDocClassTag = isJSDocClassTag; function isJSDocCallbackTag(node) { return node.kind === 338 /* SyntaxKind.JSDocCallbackTag */; } ts.isJSDocCallbackTag = isJSDocCallbackTag; function isJSDocPublicTag(node) { return node.kind === 333 /* SyntaxKind.JSDocPublicTag */; } ts.isJSDocPublicTag = isJSDocPublicTag; function isJSDocPrivateTag(node) { return node.kind === 334 /* SyntaxKind.JSDocPrivateTag */; } ts.isJSDocPrivateTag = isJSDocPrivateTag; function isJSDocProtectedTag(node) { return node.kind === 335 /* SyntaxKind.JSDocProtectedTag */; } ts.isJSDocProtectedTag = isJSDocProtectedTag; function isJSDocReadonlyTag(node) { return node.kind === 336 /* SyntaxKind.JSDocReadonlyTag */; } ts.isJSDocReadonlyTag = isJSDocReadonlyTag; function isJSDocOverrideTag(node) { return node.kind === 337 /* SyntaxKind.JSDocOverrideTag */; } ts.isJSDocOverrideTag = isJSDocOverrideTag; function isJSDocDeprecatedTag(node) { return node.kind === 331 /* SyntaxKind.JSDocDeprecatedTag */; } ts.isJSDocDeprecatedTag = isJSDocDeprecatedTag; function isJSDocSeeTag(node) { return node.kind === 346 /* SyntaxKind.JSDocSeeTag */; } ts.isJSDocSeeTag = isJSDocSeeTag; function isJSDocEnumTag(node) { return node.kind === 339 /* SyntaxKind.JSDocEnumTag */; } ts.isJSDocEnumTag = isJSDocEnumTag; function isJSDocParameterTag(node) { return node.kind === 340 /* SyntaxKind.JSDocParameterTag */; } ts.isJSDocParameterTag = isJSDocParameterTag; function isJSDocReturnTag(node) { return node.kind === 341 /* SyntaxKind.JSDocReturnTag */; } ts.isJSDocReturnTag = isJSDocReturnTag; function isJSDocThisTag(node) { return node.kind === 342 /* SyntaxKind.JSDocThisTag */; } ts.isJSDocThisTag = isJSDocThisTag; function isJSDocTypeTag(node) { return node.kind === 343 /* SyntaxKind.JSDocTypeTag */; } ts.isJSDocTypeTag = isJSDocTypeTag; function isJSDocTemplateTag(node) { return node.kind === 344 /* SyntaxKind.JSDocTemplateTag */; } ts.isJSDocTemplateTag = isJSDocTemplateTag; function isJSDocTypedefTag(node) { return node.kind === 345 /* SyntaxKind.JSDocTypedefTag */; } ts.isJSDocTypedefTag = isJSDocTypedefTag; function isJSDocUnknownTag(node) { return node.kind === 327 /* SyntaxKind.JSDocTag */; } ts.isJSDocUnknownTag = isJSDocUnknownTag; function isJSDocPropertyTag(node) { return node.kind === 347 /* SyntaxKind.JSDocPropertyTag */; } ts.isJSDocPropertyTag = isJSDocPropertyTag; function isJSDocImplementsTag(node) { return node.kind === 329 /* SyntaxKind.JSDocImplementsTag */; } ts.isJSDocImplementsTag = isJSDocImplementsTag; // Synthesized list /* @internal */ function isSyntaxList(n) { return n.kind === 348 /* SyntaxKind.SyntaxList */; } ts.isSyntaxList = isSyntaxList; })(ts || (ts = {})); /* @internal */ var ts; (function (ts) { // Compound nodes function createEmptyExports(factory) { return factory.createExportDeclaration(/*decorators*/ undefined, /*modifiers*/ undefined, /*isTypeOnly*/ false, factory.createNamedExports([]), /*moduleSpecifier*/ undefined); } ts.createEmptyExports = createEmptyExports; function createMemberAccessForPropertyName(factory, target, memberName, location) { if (ts.isComputedPropertyName(memberName)) { return ts.setTextRange(factory.createElementAccessExpression(target, memberName.expression), location); } else { var expression = ts.setTextRange(ts.isMemberName(memberName) ? factory.createPropertyAccessExpression(target, memberName) : factory.createElementAccessExpression(target, memberName), memberName); ts.getOrCreateEmitNode(expression).flags |= 64 /* EmitFlags.NoNestedSourceMaps */; return expression; } } ts.createMemberAccessForPropertyName = createMemberAccessForPropertyName; function createReactNamespace(reactNamespace, parent) { // To ensure the emit resolver can properly resolve the namespace, we need to // treat this identifier as if it were a source tree node by clearing the `Synthesized` // flag and setting a parent node. var react = ts.parseNodeFactory.createIdentifier(reactNamespace || "React"); // Set the parent that is in parse tree // this makes sure that parent chain is intact for checker to traverse complete scope tree ts.setParent(react, ts.getParseTreeNode(parent)); return react; } function createJsxFactoryExpressionFromEntityName(factory, jsxFactory, parent) { if (ts.isQualifiedName(jsxFactory)) { var left = createJsxFactoryExpressionFromEntityName(factory, jsxFactory.left, parent); var right = factory.createIdentifier(ts.idText(jsxFactory.right)); right.escapedText = jsxFactory.right.escapedText; return factory.createPropertyAccessExpression(left, right); } else { return createReactNamespace(ts.idText(jsxFactory), parent); } } function createJsxFactoryExpression(factory, jsxFactoryEntity, reactNamespace, parent) { return jsxFactoryEntity ? createJsxFactoryExpressionFromEntityName(factory, jsxFactoryEntity, parent) : factory.createPropertyAccessExpression(createReactNamespace(reactNamespace, parent), "createElement"); } ts.createJsxFactoryExpression = createJsxFactoryExpression; function createJsxFragmentFactoryExpression(factory, jsxFragmentFactoryEntity, reactNamespace, parent) { return jsxFragmentFactoryEntity ? createJsxFactoryExpressionFromEntityName(factory, jsxFragmentFactoryEntity, parent) : factory.createPropertyAccessExpression(createReactNamespace(reactNamespace, parent), "Fragment"); } function createExpressionForJsxElement(factory, callee, tagName, props, children, location) { var argumentsList = [tagName]; if (props) { argumentsList.push(props); } if (children && children.length > 0) { if (!props) { argumentsList.push(factory.createNull()); } if (children.length > 1) { for (var _i = 0, children_3 = children; _i < children_3.length; _i++) { var child = children_3[_i]; startOnNewLine(child); argumentsList.push(child); } } else { argumentsList.push(children[0]); } } return ts.setTextRange(factory.createCallExpression(callee, /*typeArguments*/ undefined, argumentsList), location); } ts.createExpressionForJsxElement = createExpressionForJsxElement; function createExpressionForJsxFragment(factory, jsxFactoryEntity, jsxFragmentFactoryEntity, reactNamespace, children, parentElement, location) { var tagName = createJsxFragmentFactoryExpression(factory, jsxFragmentFactoryEntity, reactNamespace, parentElement); var argumentsList = [tagName, factory.createNull()]; if (children && children.length > 0) { if (children.length > 1) { for (var _i = 0, children_4 = children; _i < children_4.length; _i++) { var child = children_4[_i]; startOnNewLine(child); argumentsList.push(child); } } else { argumentsList.push(children[0]); } } return ts.setTextRange(factory.createCallExpression(createJsxFactoryExpression(factory, jsxFactoryEntity, reactNamespace, parentElement), /*typeArguments*/ undefined, argumentsList), location); } ts.createExpressionForJsxFragment = createExpressionForJsxFragment; // Utilities function createForOfBindingStatement(factory, node, boundValue) { if (ts.isVariableDeclarationList(node)) { var firstDeclaration = ts.first(node.declarations); var updatedDeclaration = factory.updateVariableDeclaration(firstDeclaration, firstDeclaration.name, /*exclamationToken*/ undefined, /*type*/ undefined, boundValue); return ts.setTextRange(factory.createVariableStatement( /*modifiers*/ undefined, factory.updateVariableDeclarationList(node, [updatedDeclaration])), /*location*/ node); } else { var updatedExpression = ts.setTextRange(factory.createAssignment(node, boundValue), /*location*/ node); return ts.setTextRange(factory.createExpressionStatement(updatedExpression), /*location*/ node); } } ts.createForOfBindingStatement = createForOfBindingStatement; function insertLeadingStatement(factory, dest, source) { if (ts.isBlock(dest)) { return factory.updateBlock(dest, ts.setTextRange(factory.createNodeArray(__spreadArray([source], dest.statements, true)), dest.statements)); } else { return factory.createBlock(factory.createNodeArray([dest, source]), /*multiLine*/ true); } } ts.insertLeadingStatement = insertLeadingStatement; function createExpressionFromEntityName(factory, node) { if (ts.isQualifiedName(node)) { var left = createExpressionFromEntityName(factory, node.left); // TODO(rbuckton): Does this need to be parented? var right = ts.setParent(ts.setTextRange(factory.cloneNode(node.right), node.right), node.right.parent); return ts.setTextRange(factory.createPropertyAccessExpression(left, right), node); } else { // TODO(rbuckton): Does this need to be parented? return ts.setParent(ts.setTextRange(factory.cloneNode(node), node), node.parent); } } ts.createExpressionFromEntityName = createExpressionFromEntityName; function createExpressionForPropertyName(factory, memberName) { if (ts.isIdentifier(memberName)) { return factory.createStringLiteralFromNode(memberName); } else if (ts.isComputedPropertyName(memberName)) { // TODO(rbuckton): Does this need to be parented? return ts.setParent(ts.setTextRange(factory.cloneNode(memberName.expression), memberName.expression), memberName.expression.parent); } else { // TODO(rbuckton): Does this need to be parented? return ts.setParent(ts.setTextRange(factory.cloneNode(memberName), memberName), memberName.parent); } } ts.createExpressionForPropertyName = createExpressionForPropertyName; function createExpressionForAccessorDeclaration(factory, properties, property, receiver, multiLine) { var _a = ts.getAllAccessorDeclarations(properties, property), firstAccessor = _a.firstAccessor, getAccessor = _a.getAccessor, setAccessor = _a.setAccessor; if (property === firstAccessor) { return ts.setTextRange(factory.createObjectDefinePropertyCall(receiver, createExpressionForPropertyName(factory, property.name), factory.createPropertyDescriptor({ enumerable: factory.createFalse(), configurable: true, get: getAccessor && ts.setTextRange(ts.setOriginalNode(factory.createFunctionExpression(getAccessor.modifiers, /*asteriskToken*/ undefined, /*name*/ undefined, /*typeParameters*/ undefined, getAccessor.parameters, /*type*/ undefined, getAccessor.body // TODO: GH#18217 ), getAccessor), getAccessor), set: setAccessor && ts.setTextRange(ts.setOriginalNode(factory.createFunctionExpression(setAccessor.modifiers, /*asteriskToken*/ undefined, /*name*/ undefined, /*typeParameters*/ undefined, setAccessor.parameters, /*type*/ undefined, setAccessor.body // TODO: GH#18217 ), setAccessor), setAccessor) }, !multiLine)), firstAccessor); } return undefined; } function createExpressionForPropertyAssignment(factory, property, receiver) { return ts.setOriginalNode(ts.setTextRange(factory.createAssignment(createMemberAccessForPropertyName(factory, receiver, property.name, /*location*/ property.name), property.initializer), property), property); } function createExpressionForShorthandPropertyAssignment(factory, property, receiver) { return ts.setOriginalNode(ts.setTextRange(factory.createAssignment(createMemberAccessForPropertyName(factory, receiver, property.name, /*location*/ property.name), factory.cloneNode(property.name)), /*location*/ property), /*original*/ property); } function createExpressionForMethodDeclaration(factory, method, receiver) { return ts.setOriginalNode(ts.setTextRange(factory.createAssignment(createMemberAccessForPropertyName(factory, receiver, method.name, /*location*/ method.name), ts.setOriginalNode(ts.setTextRange(factory.createFunctionExpression(method.modifiers, method.asteriskToken, /*name*/ undefined, /*typeParameters*/ undefined, method.parameters, /*type*/ undefined, method.body // TODO: GH#18217 ), /*location*/ method), /*original*/ method)), /*location*/ method), /*original*/ method); } function createExpressionForObjectLiteralElementLike(factory, node, property, receiver) { if (property.name && ts.isPrivateIdentifier(property.name)) { ts.Debug.failBadSyntaxKind(property.name, "Private identifiers are not allowed in object literals."); } switch (property.kind) { case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: return createExpressionForAccessorDeclaration(factory, node.properties, property, receiver, !!node.multiLine); case 296 /* SyntaxKind.PropertyAssignment */: return createExpressionForPropertyAssignment(factory, property, receiver); case 297 /* SyntaxKind.ShorthandPropertyAssignment */: return createExpressionForShorthandPropertyAssignment(factory, property, receiver); case 169 /* SyntaxKind.MethodDeclaration */: return createExpressionForMethodDeclaration(factory, property, receiver); } } ts.createExpressionForObjectLiteralElementLike = createExpressionForObjectLiteralElementLike; /** * Expand the read and increment/decrement operations a pre- or post-increment or pre- or post-decrement expression. * * ```ts * // input * ++ * // output (if result is not discarded) * var ; * ( = , = ++, ) * // output (if result is discarded) * var ; * ( = , ++, ) * * // input * ++ * // output (if result is not discarded) * var ; * ( = , = ++) * // output (if result is discarded) * var ; * ( = , ++) * ``` * * It is up to the caller to supply a temporary variable for `` if one is needed. * The temporary variable `` is injected so that `++` and `--` work uniformly with `number` and `bigint`. * The result of the expression is always the final result of incrementing or decrementing the expression, so that it can be used for storage. * * @param factory {@link NodeFactory} used to create the expanded representation. * @param node The original prefix or postfix unary node. * @param expression The expression to use as the value to increment or decrement * @param resultVariable A temporary variable in which to store the result. Pass `undefined` if the result is discarded, or if the value of `` is the expected result. */ function expandPreOrPostfixIncrementOrDecrementExpression(factory, node, expression, recordTempVariable, resultVariable) { var operator = node.operator; ts.Debug.assert(operator === 45 /* SyntaxKind.PlusPlusToken */ || operator === 46 /* SyntaxKind.MinusMinusToken */, "Expected 'node' to be a pre- or post-increment or pre- or post-decrement expression"); var temp = factory.createTempVariable(recordTempVariable); expression = factory.createAssignment(temp, expression); ts.setTextRange(expression, node.operand); var operation = ts.isPrefixUnaryExpression(node) ? factory.createPrefixUnaryExpression(operator, temp) : factory.createPostfixUnaryExpression(temp, operator); ts.setTextRange(operation, node); if (resultVariable) { operation = factory.createAssignment(resultVariable, operation); ts.setTextRange(operation, node); } expression = factory.createComma(expression, operation); ts.setTextRange(expression, node); if (ts.isPostfixUnaryExpression(node)) { expression = factory.createComma(expression, temp); ts.setTextRange(expression, node); } return expression; } ts.expandPreOrPostfixIncrementOrDecrementExpression = expandPreOrPostfixIncrementOrDecrementExpression; /** * Gets whether an identifier should only be referred to by its internal name. */ function isInternalName(node) { return (ts.getEmitFlags(node) & 32768 /* EmitFlags.InternalName */) !== 0; } ts.isInternalName = isInternalName; /** * Gets whether an identifier should only be referred to by its local name. */ function isLocalName(node) { return (ts.getEmitFlags(node) & 16384 /* EmitFlags.LocalName */) !== 0; } ts.isLocalName = isLocalName; /** * Gets whether an identifier should only be referred to by its export representation if the * name points to an exported symbol. */ function isExportName(node) { return (ts.getEmitFlags(node) & 8192 /* EmitFlags.ExportName */) !== 0; } ts.isExportName = isExportName; function isUseStrictPrologue(node) { return ts.isStringLiteral(node.expression) && node.expression.text === "use strict"; } function findUseStrictPrologue(statements) { for (var _i = 0, statements_1 = statements; _i < statements_1.length; _i++) { var statement = statements_1[_i]; if (ts.isPrologueDirective(statement)) { if (isUseStrictPrologue(statement)) { return statement; } } else { break; } } return undefined; } ts.findUseStrictPrologue = findUseStrictPrologue; function startsWithUseStrict(statements) { var firstStatement = ts.firstOrUndefined(statements); return firstStatement !== undefined && ts.isPrologueDirective(firstStatement) && isUseStrictPrologue(firstStatement); } ts.startsWithUseStrict = startsWithUseStrict; function isCommaSequence(node) { return node.kind === 221 /* SyntaxKind.BinaryExpression */ && node.operatorToken.kind === 27 /* SyntaxKind.CommaToken */ || node.kind === 351 /* SyntaxKind.CommaListExpression */; } ts.isCommaSequence = isCommaSequence; function isJSDocTypeAssertion(node) { return ts.isParenthesizedExpression(node) && ts.isInJSFile(node) && !!ts.getJSDocTypeTag(node); } ts.isJSDocTypeAssertion = isJSDocTypeAssertion; function getJSDocTypeAssertionType(node) { var type = ts.getJSDocType(node); ts.Debug.assertIsDefined(type); return type; } ts.getJSDocTypeAssertionType = getJSDocTypeAssertionType; function isOuterExpression(node, kinds) { if (kinds === void 0) { kinds = 15 /* OuterExpressionKinds.All */; } switch (node.kind) { case 212 /* SyntaxKind.ParenthesizedExpression */: if (kinds & 16 /* OuterExpressionKinds.ExcludeJSDocTypeAssertion */ && isJSDocTypeAssertion(node)) { return false; } return (kinds & 1 /* OuterExpressionKinds.Parentheses */) !== 0; case 211 /* SyntaxKind.TypeAssertionExpression */: case 229 /* SyntaxKind.AsExpression */: return (kinds & 2 /* OuterExpressionKinds.TypeAssertions */) !== 0; case 230 /* SyntaxKind.NonNullExpression */: return (kinds & 4 /* OuterExpressionKinds.NonNullAssertions */) !== 0; case 350 /* SyntaxKind.PartiallyEmittedExpression */: return (kinds & 8 /* OuterExpressionKinds.PartiallyEmittedExpressions */) !== 0; } return false; } ts.isOuterExpression = isOuterExpression; function skipOuterExpressions(node, kinds) { if (kinds === void 0) { kinds = 15 /* OuterExpressionKinds.All */; } while (isOuterExpression(node, kinds)) { node = node.expression; } return node; } ts.skipOuterExpressions = skipOuterExpressions; function skipAssertions(node) { return skipOuterExpressions(node, 6 /* OuterExpressionKinds.Assertions */); } ts.skipAssertions = skipAssertions; function startOnNewLine(node) { return ts.setStartsOnNewLine(node, /*newLine*/ true); } ts.startOnNewLine = startOnNewLine; function getExternalHelpersModuleName(node) { var parseNode = ts.getOriginalNode(node, ts.isSourceFile); var emitNode = parseNode && parseNode.emitNode; return emitNode && emitNode.externalHelpersModuleName; } ts.getExternalHelpersModuleName = getExternalHelpersModuleName; function hasRecordedExternalHelpers(sourceFile) { var parseNode = ts.getOriginalNode(sourceFile, ts.isSourceFile); var emitNode = parseNode && parseNode.emitNode; return !!emitNode && (!!emitNode.externalHelpersModuleName || !!emitNode.externalHelpers); } ts.hasRecordedExternalHelpers = hasRecordedExternalHelpers; function createExternalHelpersImportDeclarationIfNeeded(nodeFactory, helperFactory, sourceFile, compilerOptions, hasExportStarsToExportValues, hasImportStar, hasImportDefault) { if (compilerOptions.importHelpers && ts.isEffectiveExternalModule(sourceFile, compilerOptions)) { var namedBindings = void 0; var moduleKind = ts.getEmitModuleKind(compilerOptions); if ((moduleKind >= ts.ModuleKind.ES2015 && moduleKind <= ts.ModuleKind.ESNext) || sourceFile.impliedNodeFormat === ts.ModuleKind.ESNext) { // use named imports var helpers = ts.getEmitHelpers(sourceFile); if (helpers) { var helperNames = []; for (var _i = 0, helpers_3 = helpers; _i < helpers_3.length; _i++) { var helper = helpers_3[_i]; if (!helper.scoped) { var importName = helper.importName; if (importName) { ts.pushIfUnique(helperNames, importName); } } } if (ts.some(helperNames)) { helperNames.sort(ts.compareStringsCaseSensitive); // Alias the imports if the names are used somewhere in the file. // NOTE: We don't need to care about global import collisions as this is a module. namedBindings = nodeFactory.createNamedImports(ts.map(helperNames, function (name) { return ts.isFileLevelUniqueName(sourceFile, name) ? nodeFactory.createImportSpecifier(/*isTypeOnly*/ false, /*propertyName*/ undefined, nodeFactory.createIdentifier(name)) : nodeFactory.createImportSpecifier(/*isTypeOnly*/ false, nodeFactory.createIdentifier(name), helperFactory.getUnscopedHelperName(name)); })); var parseNode = ts.getOriginalNode(sourceFile, ts.isSourceFile); var emitNode = ts.getOrCreateEmitNode(parseNode); emitNode.externalHelpers = true; } } } else { // use a namespace import var externalHelpersModuleName = getOrCreateExternalHelpersModuleNameIfNeeded(nodeFactory, sourceFile, compilerOptions, hasExportStarsToExportValues, hasImportStar || hasImportDefault); if (externalHelpersModuleName) { namedBindings = nodeFactory.createNamespaceImport(externalHelpersModuleName); } } if (namedBindings) { var externalHelpersImportDeclaration = nodeFactory.createImportDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, nodeFactory.createImportClause(/*isTypeOnly*/ false, /*name*/ undefined, namedBindings), nodeFactory.createStringLiteral(ts.externalHelpersModuleNameText), /*assertClause*/ undefined); ts.addEmitFlags(externalHelpersImportDeclaration, 67108864 /* EmitFlags.NeverApplyImportHelper */); return externalHelpersImportDeclaration; } } } ts.createExternalHelpersImportDeclarationIfNeeded = createExternalHelpersImportDeclarationIfNeeded; function getOrCreateExternalHelpersModuleNameIfNeeded(factory, node, compilerOptions, hasExportStarsToExportValues, hasImportStarOrImportDefault) { if (compilerOptions.importHelpers && ts.isEffectiveExternalModule(node, compilerOptions)) { var externalHelpersModuleName = getExternalHelpersModuleName(node); if (externalHelpersModuleName) { return externalHelpersModuleName; } var moduleKind = ts.getEmitModuleKind(compilerOptions); var create = (hasExportStarsToExportValues || (ts.getESModuleInterop(compilerOptions) && hasImportStarOrImportDefault)) && moduleKind !== ts.ModuleKind.System && (moduleKind < ts.ModuleKind.ES2015 || node.impliedNodeFormat === ts.ModuleKind.CommonJS); if (!create) { var helpers = ts.getEmitHelpers(node); if (helpers) { for (var _i = 0, helpers_4 = helpers; _i < helpers_4.length; _i++) { var helper = helpers_4[_i]; if (!helper.scoped) { create = true; break; } } } } if (create) { var parseNode = ts.getOriginalNode(node, ts.isSourceFile); var emitNode = ts.getOrCreateEmitNode(parseNode); return emitNode.externalHelpersModuleName || (emitNode.externalHelpersModuleName = factory.createUniqueName(ts.externalHelpersModuleNameText)); } } } ts.getOrCreateExternalHelpersModuleNameIfNeeded = getOrCreateExternalHelpersModuleNameIfNeeded; /** * Get the name of that target module from an import or export declaration */ function getLocalNameForExternalImport(factory, node, sourceFile) { var namespaceDeclaration = ts.getNamespaceDeclarationNode(node); if (namespaceDeclaration && !ts.isDefaultImport(node) && !ts.isExportNamespaceAsDefaultDeclaration(node)) { var name = namespaceDeclaration.name; return ts.isGeneratedIdentifier(name) ? name : factory.createIdentifier(ts.getSourceTextOfNodeFromSourceFile(sourceFile, name) || ts.idText(name)); } if (node.kind === 266 /* SyntaxKind.ImportDeclaration */ && node.importClause) { return factory.getGeneratedNameForNode(node); } if (node.kind === 272 /* SyntaxKind.ExportDeclaration */ && node.moduleSpecifier) { return factory.getGeneratedNameForNode(node); } return undefined; } ts.getLocalNameForExternalImport = getLocalNameForExternalImport; /** * Get the name of a target module from an import/export declaration as should be written in the emitted output. * The emitted output name can be different from the input if: * 1. The module has a /// * 2. --out or --outFile is used, making the name relative to the rootDir * 3- The containing SourceFile has an entry in renamedDependencies for the import as requested by some module loaders (e.g. System). * Otherwise, a new StringLiteral node representing the module name will be returned. */ function getExternalModuleNameLiteral(factory, importNode, sourceFile, host, resolver, compilerOptions) { var moduleName = ts.getExternalModuleName(importNode); if (moduleName && ts.isStringLiteral(moduleName)) { return tryGetModuleNameFromDeclaration(importNode, host, factory, resolver, compilerOptions) || tryRenameExternalModule(factory, moduleName, sourceFile) || factory.cloneNode(moduleName); } return undefined; } ts.getExternalModuleNameLiteral = getExternalModuleNameLiteral; /** * Some bundlers (SystemJS builder) sometimes want to rename dependencies. * Here we check if alternative name was provided for a given moduleName and return it if possible. */ function tryRenameExternalModule(factory, moduleName, sourceFile) { var rename = sourceFile.renamedDependencies && sourceFile.renamedDependencies.get(moduleName.text); return rename ? factory.createStringLiteral(rename) : undefined; } /** * Get the name of a module as should be written in the emitted output. * The emitted output name can be different from the input if: * 1. The module has a /// * 2. --out or --outFile is used, making the name relative to the rootDir * Otherwise, a new StringLiteral node representing the module name will be returned. */ function tryGetModuleNameFromFile(factory, file, host, options) { if (!file) { return undefined; } if (file.moduleName) { return factory.createStringLiteral(file.moduleName); } if (!file.isDeclarationFile && ts.outFile(options)) { return factory.createStringLiteral(ts.getExternalModuleNameFromPath(host, file.fileName)); } return undefined; } ts.tryGetModuleNameFromFile = tryGetModuleNameFromFile; function tryGetModuleNameFromDeclaration(declaration, host, factory, resolver, compilerOptions) { return tryGetModuleNameFromFile(factory, resolver.getExternalModuleFileFromDeclaration(declaration), host, compilerOptions); } /** * Gets the initializer of an BindingOrAssignmentElement. */ function getInitializerOfBindingOrAssignmentElement(bindingElement) { if (ts.isDeclarationBindingElement(bindingElement)) { // `1` in `let { a = 1 } = ...` // `1` in `let { a: b = 1 } = ...` // `1` in `let { a: {b} = 1 } = ...` // `1` in `let { a: [b] = 1 } = ...` // `1` in `let [a = 1] = ...` // `1` in `let [{a} = 1] = ...` // `1` in `let [[a] = 1] = ...` return bindingElement.initializer; } if (ts.isPropertyAssignment(bindingElement)) { // `1` in `({ a: b = 1 } = ...)` // `1` in `({ a: {b} = 1 } = ...)` // `1` in `({ a: [b] = 1 } = ...)` var initializer = bindingElement.initializer; return ts.isAssignmentExpression(initializer, /*excludeCompoundAssignment*/ true) ? initializer.right : undefined; } if (ts.isShorthandPropertyAssignment(bindingElement)) { // `1` in `({ a = 1 } = ...)` return bindingElement.objectAssignmentInitializer; } if (ts.isAssignmentExpression(bindingElement, /*excludeCompoundAssignment*/ true)) { // `1` in `[a = 1] = ...` // `1` in `[{a} = 1] = ...` // `1` in `[[a] = 1] = ...` return bindingElement.right; } if (ts.isSpreadElement(bindingElement)) { // Recovery consistent with existing emit. return getInitializerOfBindingOrAssignmentElement(bindingElement.expression); } } ts.getInitializerOfBindingOrAssignmentElement = getInitializerOfBindingOrAssignmentElement; /** * Gets the name of an BindingOrAssignmentElement. */ function getTargetOfBindingOrAssignmentElement(bindingElement) { if (ts.isDeclarationBindingElement(bindingElement)) { // `a` in `let { a } = ...` // `a` in `let { a = 1 } = ...` // `b` in `let { a: b } = ...` // `b` in `let { a: b = 1 } = ...` // `a` in `let { ...a } = ...` // `{b}` in `let { a: {b} } = ...` // `{b}` in `let { a: {b} = 1 } = ...` // `[b]` in `let { a: [b] } = ...` // `[b]` in `let { a: [b] = 1 } = ...` // `a` in `let [a] = ...` // `a` in `let [a = 1] = ...` // `a` in `let [...a] = ...` // `{a}` in `let [{a}] = ...` // `{a}` in `let [{a} = 1] = ...` // `[a]` in `let [[a]] = ...` // `[a]` in `let [[a] = 1] = ...` return bindingElement.name; } if (ts.isObjectLiteralElementLike(bindingElement)) { switch (bindingElement.kind) { case 296 /* SyntaxKind.PropertyAssignment */: // `b` in `({ a: b } = ...)` // `b` in `({ a: b = 1 } = ...)` // `{b}` in `({ a: {b} } = ...)` // `{b}` in `({ a: {b} = 1 } = ...)` // `[b]` in `({ a: [b] } = ...)` // `[b]` in `({ a: [b] = 1 } = ...)` // `b.c` in `({ a: b.c } = ...)` // `b.c` in `({ a: b.c = 1 } = ...)` // `b[0]` in `({ a: b[0] } = ...)` // `b[0]` in `({ a: b[0] = 1 } = ...)` return getTargetOfBindingOrAssignmentElement(bindingElement.initializer); case 297 /* SyntaxKind.ShorthandPropertyAssignment */: // `a` in `({ a } = ...)` // `a` in `({ a = 1 } = ...)` return bindingElement.name; case 298 /* SyntaxKind.SpreadAssignment */: // `a` in `({ ...a } = ...)` return getTargetOfBindingOrAssignmentElement(bindingElement.expression); } // no target return undefined; } if (ts.isAssignmentExpression(bindingElement, /*excludeCompoundAssignment*/ true)) { // `a` in `[a = 1] = ...` // `{a}` in `[{a} = 1] = ...` // `[a]` in `[[a] = 1] = ...` // `a.b` in `[a.b = 1] = ...` // `a[0]` in `[a[0] = 1] = ...` return getTargetOfBindingOrAssignmentElement(bindingElement.left); } if (ts.isSpreadElement(bindingElement)) { // `a` in `[...a] = ...` return getTargetOfBindingOrAssignmentElement(bindingElement.expression); } // `a` in `[a] = ...` // `{a}` in `[{a}] = ...` // `[a]` in `[[a]] = ...` // `a.b` in `[a.b] = ...` // `a[0]` in `[a[0]] = ...` return bindingElement; } ts.getTargetOfBindingOrAssignmentElement = getTargetOfBindingOrAssignmentElement; /** * Determines whether an BindingOrAssignmentElement is a rest element. */ function getRestIndicatorOfBindingOrAssignmentElement(bindingElement) { switch (bindingElement.kind) { case 164 /* SyntaxKind.Parameter */: case 203 /* SyntaxKind.BindingElement */: // `...` in `let [...a] = ...` return bindingElement.dotDotDotToken; case 225 /* SyntaxKind.SpreadElement */: case 298 /* SyntaxKind.SpreadAssignment */: // `...` in `[...a] = ...` return bindingElement; } return undefined; } ts.getRestIndicatorOfBindingOrAssignmentElement = getRestIndicatorOfBindingOrAssignmentElement; /** * Gets the property name of a BindingOrAssignmentElement */ function getPropertyNameOfBindingOrAssignmentElement(bindingElement) { var propertyName = tryGetPropertyNameOfBindingOrAssignmentElement(bindingElement); ts.Debug.assert(!!propertyName || ts.isSpreadAssignment(bindingElement), "Invalid property name for binding element."); return propertyName; } ts.getPropertyNameOfBindingOrAssignmentElement = getPropertyNameOfBindingOrAssignmentElement; function tryGetPropertyNameOfBindingOrAssignmentElement(bindingElement) { switch (bindingElement.kind) { case 203 /* SyntaxKind.BindingElement */: // `a` in `let { a: b } = ...` // `[a]` in `let { [a]: b } = ...` // `"a"` in `let { "a": b } = ...` // `1` in `let { 1: b } = ...` if (bindingElement.propertyName) { var propertyName = bindingElement.propertyName; if (ts.isPrivateIdentifier(propertyName)) { return ts.Debug.failBadSyntaxKind(propertyName); } return ts.isComputedPropertyName(propertyName) && isStringOrNumericLiteral(propertyName.expression) ? propertyName.expression : propertyName; } break; case 296 /* SyntaxKind.PropertyAssignment */: // `a` in `({ a: b } = ...)` // `[a]` in `({ [a]: b } = ...)` // `"a"` in `({ "a": b } = ...)` // `1` in `({ 1: b } = ...)` if (bindingElement.name) { var propertyName = bindingElement.name; if (ts.isPrivateIdentifier(propertyName)) { return ts.Debug.failBadSyntaxKind(propertyName); } return ts.isComputedPropertyName(propertyName) && isStringOrNumericLiteral(propertyName.expression) ? propertyName.expression : propertyName; } break; case 298 /* SyntaxKind.SpreadAssignment */: // `a` in `({ ...a } = ...)` if (bindingElement.name && ts.isPrivateIdentifier(bindingElement.name)) { return ts.Debug.failBadSyntaxKind(bindingElement.name); } return bindingElement.name; } var target = getTargetOfBindingOrAssignmentElement(bindingElement); if (target && ts.isPropertyName(target)) { return target; } } ts.tryGetPropertyNameOfBindingOrAssignmentElement = tryGetPropertyNameOfBindingOrAssignmentElement; function isStringOrNumericLiteral(node) { var kind = node.kind; return kind === 10 /* SyntaxKind.StringLiteral */ || kind === 8 /* SyntaxKind.NumericLiteral */; } /** * Gets the elements of a BindingOrAssignmentPattern */ function getElementsOfBindingOrAssignmentPattern(name) { switch (name.kind) { case 201 /* SyntaxKind.ObjectBindingPattern */: case 202 /* SyntaxKind.ArrayBindingPattern */: case 204 /* SyntaxKind.ArrayLiteralExpression */: // `a` in `{a}` // `a` in `[a]` return name.elements; case 205 /* SyntaxKind.ObjectLiteralExpression */: // `a` in `{a}` return name.properties; } } ts.getElementsOfBindingOrAssignmentPattern = getElementsOfBindingOrAssignmentPattern; /* @internal */ function getJSDocTypeAliasName(fullName) { if (fullName) { var rightNode = fullName; while (true) { if (ts.isIdentifier(rightNode) || !rightNode.body) { return ts.isIdentifier(rightNode) ? rightNode : rightNode.name; } rightNode = rightNode.body; } } } ts.getJSDocTypeAliasName = getJSDocTypeAliasName; function canHaveModifiers(node) { var kind = node.kind; return kind === 164 /* SyntaxKind.Parameter */ || kind === 166 /* SyntaxKind.PropertySignature */ || kind === 167 /* SyntaxKind.PropertyDeclaration */ || kind === 168 /* SyntaxKind.MethodSignature */ || kind === 169 /* SyntaxKind.MethodDeclaration */ || kind === 171 /* SyntaxKind.Constructor */ || kind === 172 /* SyntaxKind.GetAccessor */ || kind === 173 /* SyntaxKind.SetAccessor */ || kind === 176 /* SyntaxKind.IndexSignature */ || kind === 213 /* SyntaxKind.FunctionExpression */ || kind === 214 /* SyntaxKind.ArrowFunction */ || kind === 226 /* SyntaxKind.ClassExpression */ || kind === 237 /* SyntaxKind.VariableStatement */ || kind === 256 /* SyntaxKind.FunctionDeclaration */ || kind === 257 /* SyntaxKind.ClassDeclaration */ || kind === 258 /* SyntaxKind.InterfaceDeclaration */ || kind === 259 /* SyntaxKind.TypeAliasDeclaration */ || kind === 260 /* SyntaxKind.EnumDeclaration */ || kind === 261 /* SyntaxKind.ModuleDeclaration */ || kind === 265 /* SyntaxKind.ImportEqualsDeclaration */ || kind === 266 /* SyntaxKind.ImportDeclaration */ || kind === 271 /* SyntaxKind.ExportAssignment */ || kind === 272 /* SyntaxKind.ExportDeclaration */; } ts.canHaveModifiers = canHaveModifiers; ts.isTypeNodeOrTypeParameterDeclaration = ts.or(ts.isTypeNode, ts.isTypeParameterDeclaration); ts.isQuestionOrExclamationToken = ts.or(ts.isQuestionToken, ts.isExclamationToken); ts.isIdentifierOrThisTypeNode = ts.or(ts.isIdentifier, ts.isThisTypeNode); ts.isReadonlyKeywordOrPlusOrMinusToken = ts.or(ts.isReadonlyKeyword, ts.isPlusToken, ts.isMinusToken); ts.isQuestionOrPlusOrMinusToken = ts.or(ts.isQuestionToken, ts.isPlusToken, ts.isMinusToken); ts.isModuleName = ts.or(ts.isIdentifier, ts.isStringLiteral); function isLiteralTypeLikeExpression(node) { var kind = node.kind; return kind === 104 /* SyntaxKind.NullKeyword */ || kind === 110 /* SyntaxKind.TrueKeyword */ || kind === 95 /* SyntaxKind.FalseKeyword */ || ts.isLiteralExpression(node) || ts.isPrefixUnaryExpression(node); } ts.isLiteralTypeLikeExpression = isLiteralTypeLikeExpression; function isExponentiationOperator(kind) { return kind === 42 /* SyntaxKind.AsteriskAsteriskToken */; } function isMultiplicativeOperator(kind) { return kind === 41 /* SyntaxKind.AsteriskToken */ || kind === 43 /* SyntaxKind.SlashToken */ || kind === 44 /* SyntaxKind.PercentToken */; } function isMultiplicativeOperatorOrHigher(kind) { return isExponentiationOperator(kind) || isMultiplicativeOperator(kind); } function isAdditiveOperator(kind) { return kind === 39 /* SyntaxKind.PlusToken */ || kind === 40 /* SyntaxKind.MinusToken */; } function isAdditiveOperatorOrHigher(kind) { return isAdditiveOperator(kind) || isMultiplicativeOperatorOrHigher(kind); } function isShiftOperator(kind) { return kind === 47 /* SyntaxKind.LessThanLessThanToken */ || kind === 48 /* SyntaxKind.GreaterThanGreaterThanToken */ || kind === 49 /* SyntaxKind.GreaterThanGreaterThanGreaterThanToken */; } function isShiftOperatorOrHigher(kind) { return isShiftOperator(kind) || isAdditiveOperatorOrHigher(kind); } function isRelationalOperator(kind) { return kind === 29 /* SyntaxKind.LessThanToken */ || kind === 32 /* SyntaxKind.LessThanEqualsToken */ || kind === 31 /* SyntaxKind.GreaterThanToken */ || kind === 33 /* SyntaxKind.GreaterThanEqualsToken */ || kind === 102 /* SyntaxKind.InstanceOfKeyword */ || kind === 101 /* SyntaxKind.InKeyword */; } function isRelationalOperatorOrHigher(kind) { return isRelationalOperator(kind) || isShiftOperatorOrHigher(kind); } function isEqualityOperator(kind) { return kind === 34 /* SyntaxKind.EqualsEqualsToken */ || kind === 36 /* SyntaxKind.EqualsEqualsEqualsToken */ || kind === 35 /* SyntaxKind.ExclamationEqualsToken */ || kind === 37 /* SyntaxKind.ExclamationEqualsEqualsToken */; } function isEqualityOperatorOrHigher(kind) { return isEqualityOperator(kind) || isRelationalOperatorOrHigher(kind); } function isBitwiseOperator(kind) { return kind === 50 /* SyntaxKind.AmpersandToken */ || kind === 51 /* SyntaxKind.BarToken */ || kind === 52 /* SyntaxKind.CaretToken */; } function isBitwiseOperatorOrHigher(kind) { return isBitwiseOperator(kind) || isEqualityOperatorOrHigher(kind); } // NOTE: The version in utilities includes ExclamationToken, which is not a binary operator. function isLogicalOperator(kind) { return kind === 55 /* SyntaxKind.AmpersandAmpersandToken */ || kind === 56 /* SyntaxKind.BarBarToken */; } function isLogicalOperatorOrHigher(kind) { return isLogicalOperator(kind) || isBitwiseOperatorOrHigher(kind); } function isAssignmentOperatorOrHigher(kind) { return kind === 60 /* SyntaxKind.QuestionQuestionToken */ || isLogicalOperatorOrHigher(kind) || ts.isAssignmentOperator(kind); } function isBinaryOperator(kind) { return isAssignmentOperatorOrHigher(kind) || kind === 27 /* SyntaxKind.CommaToken */; } function isBinaryOperatorToken(node) { return isBinaryOperator(node.kind); } ts.isBinaryOperatorToken = isBinaryOperatorToken; var BinaryExpressionState; (function (BinaryExpressionState) { /** * Handles walking into a `BinaryExpression`. * @param machine State machine handler functions * @param frame The current frame * @returns The new frame */ function enter(machine, stackIndex, stateStack, nodeStack, userStateStack, _resultHolder, outerState) { var prevUserState = stackIndex > 0 ? userStateStack[stackIndex - 1] : undefined; ts.Debug.assertEqual(stateStack[stackIndex], enter); userStateStack[stackIndex] = machine.onEnter(nodeStack[stackIndex], prevUserState, outerState); stateStack[stackIndex] = nextState(machine, enter); return stackIndex; } BinaryExpressionState.enter = enter; /** * Handles walking the `left` side of a `BinaryExpression`. * @param machine State machine handler functions * @param frame The current frame * @returns The new frame */ function left(machine, stackIndex, stateStack, nodeStack, userStateStack, _resultHolder, _outerState) { ts.Debug.assertEqual(stateStack[stackIndex], left); ts.Debug.assertIsDefined(machine.onLeft); stateStack[stackIndex] = nextState(machine, left); var nextNode = machine.onLeft(nodeStack[stackIndex].left, userStateStack[stackIndex], nodeStack[stackIndex]); if (nextNode) { checkCircularity(stackIndex, nodeStack, nextNode); return pushStack(stackIndex, stateStack, nodeStack, userStateStack, nextNode); } return stackIndex; } BinaryExpressionState.left = left; /** * Handles walking the `operatorToken` of a `BinaryExpression`. * @param machine State machine handler functions * @param frame The current frame * @returns The new frame */ function operator(machine, stackIndex, stateStack, nodeStack, userStateStack, _resultHolder, _outerState) { ts.Debug.assertEqual(stateStack[stackIndex], operator); ts.Debug.assertIsDefined(machine.onOperator); stateStack[stackIndex] = nextState(machine, operator); machine.onOperator(nodeStack[stackIndex].operatorToken, userStateStack[stackIndex], nodeStack[stackIndex]); return stackIndex; } BinaryExpressionState.operator = operator; /** * Handles walking the `right` side of a `BinaryExpression`. * @param machine State machine handler functions * @param frame The current frame * @returns The new frame */ function right(machine, stackIndex, stateStack, nodeStack, userStateStack, _resultHolder, _outerState) { ts.Debug.assertEqual(stateStack[stackIndex], right); ts.Debug.assertIsDefined(machine.onRight); stateStack[stackIndex] = nextState(machine, right); var nextNode = machine.onRight(nodeStack[stackIndex].right, userStateStack[stackIndex], nodeStack[stackIndex]); if (nextNode) { checkCircularity(stackIndex, nodeStack, nextNode); return pushStack(stackIndex, stateStack, nodeStack, userStateStack, nextNode); } return stackIndex; } BinaryExpressionState.right = right; /** * Handles walking out of a `BinaryExpression`. * @param machine State machine handler functions * @param frame The current frame * @returns The new frame */ function exit(machine, stackIndex, stateStack, nodeStack, userStateStack, resultHolder, _outerState) { ts.Debug.assertEqual(stateStack[stackIndex], exit); stateStack[stackIndex] = nextState(machine, exit); var result = machine.onExit(nodeStack[stackIndex], userStateStack[stackIndex]); if (stackIndex > 0) { stackIndex--; if (machine.foldState) { var side = stateStack[stackIndex] === exit ? "right" : "left"; userStateStack[stackIndex] = machine.foldState(userStateStack[stackIndex], result, side); } } else { resultHolder.value = result; } return stackIndex; } BinaryExpressionState.exit = exit; /** * Handles a frame that is already done. * @returns The `done` state. */ function done(_machine, stackIndex, stateStack, _nodeStack, _userStateStack, _resultHolder, _outerState) { ts.Debug.assertEqual(stateStack[stackIndex], done); return stackIndex; } BinaryExpressionState.done = done; function nextState(machine, currentState) { switch (currentState) { case enter: if (machine.onLeft) return left; // falls through case left: if (machine.onOperator) return operator; // falls through case operator: if (machine.onRight) return right; // falls through case right: return exit; case exit: return done; case done: return done; default: ts.Debug.fail("Invalid state"); } } BinaryExpressionState.nextState = nextState; function pushStack(stackIndex, stateStack, nodeStack, userStateStack, node) { stackIndex++; stateStack[stackIndex] = enter; nodeStack[stackIndex] = node; userStateStack[stackIndex] = undefined; return stackIndex; } function checkCircularity(stackIndex, nodeStack, node) { if (ts.Debug.shouldAssert(2 /* AssertionLevel.Aggressive */)) { while (stackIndex >= 0) { ts.Debug.assert(nodeStack[stackIndex] !== node, "Circular traversal detected."); stackIndex--; } } } })(BinaryExpressionState || (BinaryExpressionState = {})); /** * Holds state machine handler functions */ var BinaryExpressionStateMachine = /** @class */ (function () { function BinaryExpressionStateMachine(onEnter, onLeft, onOperator, onRight, onExit, foldState) { this.onEnter = onEnter; this.onLeft = onLeft; this.onOperator = onOperator; this.onRight = onRight; this.onExit = onExit; this.foldState = foldState; } return BinaryExpressionStateMachine; }()); function createBinaryExpressionTrampoline(onEnter, onLeft, onOperator, onRight, onExit, foldState) { var machine = new BinaryExpressionStateMachine(onEnter, onLeft, onOperator, onRight, onExit, foldState); return trampoline; function trampoline(node, outerState) { var resultHolder = { value: undefined }; var stateStack = [BinaryExpressionState.enter]; var nodeStack = [node]; var userStateStack = [undefined]; var stackIndex = 0; while (stateStack[stackIndex] !== BinaryExpressionState.done) { stackIndex = stateStack[stackIndex](machine, stackIndex, stateStack, nodeStack, userStateStack, resultHolder, outerState); } ts.Debug.assertEqual(stackIndex, 0); return resultHolder.value; } } ts.createBinaryExpressionTrampoline = createBinaryExpressionTrampoline; })(ts || (ts = {})); var ts; (function (ts) { function setTextRange(range, location) { return location ? ts.setTextRangePosEnd(range, location.pos, location.end) : range; } ts.setTextRange = setTextRange; })(ts || (ts = {})); var ts; (function (ts) { var SignatureFlags; (function (SignatureFlags) { SignatureFlags[SignatureFlags["None"] = 0] = "None"; SignatureFlags[SignatureFlags["Yield"] = 1] = "Yield"; SignatureFlags[SignatureFlags["Await"] = 2] = "Await"; SignatureFlags[SignatureFlags["Type"] = 4] = "Type"; SignatureFlags[SignatureFlags["IgnoreMissingOpenBrace"] = 16] = "IgnoreMissingOpenBrace"; SignatureFlags[SignatureFlags["JSDoc"] = 32] = "JSDoc"; })(SignatureFlags || (SignatureFlags = {})); var SpeculationKind; (function (SpeculationKind) { SpeculationKind[SpeculationKind["TryParse"] = 0] = "TryParse"; SpeculationKind[SpeculationKind["Lookahead"] = 1] = "Lookahead"; SpeculationKind[SpeculationKind["Reparse"] = 2] = "Reparse"; })(SpeculationKind || (SpeculationKind = {})); var NodeConstructor; var TokenConstructor; var IdentifierConstructor; var PrivateIdentifierConstructor; var SourceFileConstructor; /** * NOTE: You should not use this, it is only exported to support `createNode` in `~/src/deprecatedCompat/deprecations.ts`. */ /* @internal */ ts.parseBaseNodeFactory = { createBaseSourceFileNode: function (kind) { return new (SourceFileConstructor || (SourceFileConstructor = ts.objectAllocator.getSourceFileConstructor()))(kind, -1, -1); }, createBaseIdentifierNode: function (kind) { return new (IdentifierConstructor || (IdentifierConstructor = ts.objectAllocator.getIdentifierConstructor()))(kind, -1, -1); }, createBasePrivateIdentifierNode: function (kind) { return new (PrivateIdentifierConstructor || (PrivateIdentifierConstructor = ts.objectAllocator.getPrivateIdentifierConstructor()))(kind, -1, -1); }, createBaseTokenNode: function (kind) { return new (TokenConstructor || (TokenConstructor = ts.objectAllocator.getTokenConstructor()))(kind, -1, -1); }, createBaseNode: function (kind) { return new (NodeConstructor || (NodeConstructor = ts.objectAllocator.getNodeConstructor()))(kind, -1, -1); }, }; /* @internal */ ts.parseNodeFactory = ts.createNodeFactory(1 /* NodeFactoryFlags.NoParenthesizerRules */, ts.parseBaseNodeFactory); function visitNode(cbNode, node) { return node && cbNode(node); } function visitNodes(cbNode, cbNodes, nodes) { if (nodes) { if (cbNodes) { return cbNodes(nodes); } for (var _i = 0, nodes_1 = nodes; _i < nodes_1.length; _i++) { var node = nodes_1[_i]; var result = cbNode(node); if (result) { return result; } } } } /*@internal*/ function isJSDocLikeText(text, start) { return text.charCodeAt(start + 1) === 42 /* CharacterCodes.asterisk */ && text.charCodeAt(start + 2) === 42 /* CharacterCodes.asterisk */ && text.charCodeAt(start + 3) !== 47 /* CharacterCodes.slash */; } ts.isJSDocLikeText = isJSDocLikeText; /*@internal*/ function isFileProbablyExternalModule(sourceFile) { // Try to use the first top-level import/export when available, then // fall back to looking for an 'import.meta' somewhere in the tree if necessary. return ts.forEach(sourceFile.statements, isAnExternalModuleIndicatorNode) || getImportMetaIfNecessary(sourceFile); } ts.isFileProbablyExternalModule = isFileProbablyExternalModule; function isAnExternalModuleIndicatorNode(node) { return hasModifierOfKind(node, 93 /* SyntaxKind.ExportKeyword */) || ts.isImportEqualsDeclaration(node) && ts.isExternalModuleReference(node.moduleReference) || ts.isImportDeclaration(node) || ts.isExportAssignment(node) || ts.isExportDeclaration(node) ? node : undefined; } function getImportMetaIfNecessary(sourceFile) { return sourceFile.flags & 4194304 /* NodeFlags.PossiblyContainsImportMeta */ ? walkTreeForImportMeta(sourceFile) : undefined; } function walkTreeForImportMeta(node) { return isImportMeta(node) ? node : forEachChild(node, walkTreeForImportMeta); } /** Do not use hasModifier inside the parser; it relies on parent pointers. Use this instead. */ function hasModifierOfKind(node, kind) { return ts.some(node.modifiers, function (m) { return m.kind === kind; }); } function isImportMeta(node) { return ts.isMetaProperty(node) && node.keywordToken === 100 /* SyntaxKind.ImportKeyword */ && node.name.escapedText === "meta"; } /** * Invokes a callback for each child of the given node. The 'cbNode' callback is invoked for all child nodes * stored in properties. If a 'cbNodes' callback is specified, it is invoked for embedded arrays; otherwise, * embedded arrays are flattened and the 'cbNode' callback is invoked for each element. If a callback returns * a truthy value, iteration stops and that value is returned. Otherwise, undefined is returned. * * @param node a given node to visit its children * @param cbNode a callback to be invoked for all child nodes * @param cbNodes a callback to be invoked for embedded array * * @remarks `forEachChild` must visit the children of a node in the order * that they appear in the source code. The language service depends on this property to locate nodes by position. */ function forEachChild(node, cbNode, cbNodes) { if (!node || node.kind <= 160 /* SyntaxKind.LastToken */) { return; } switch (node.kind) { case 161 /* SyntaxKind.QualifiedName */: return visitNode(cbNode, node.left) || visitNode(cbNode, node.right); case 163 /* SyntaxKind.TypeParameter */: return visitNodes(cbNode, cbNodes, node.modifiers) || visitNode(cbNode, node.name) || visitNode(cbNode, node.constraint) || visitNode(cbNode, node.default) || visitNode(cbNode, node.expression); case 297 /* SyntaxKind.ShorthandPropertyAssignment */: return visitNodes(cbNode, cbNodes, node.decorators) || visitNodes(cbNode, cbNodes, node.modifiers) || visitNode(cbNode, node.name) || visitNode(cbNode, node.questionToken) || visitNode(cbNode, node.exclamationToken) || visitNode(cbNode, node.equalsToken) || visitNode(cbNode, node.objectAssignmentInitializer); case 298 /* SyntaxKind.SpreadAssignment */: return visitNode(cbNode, node.expression); case 164 /* SyntaxKind.Parameter */: return visitNodes(cbNode, cbNodes, node.decorators) || visitNodes(cbNode, cbNodes, node.modifiers) || visitNode(cbNode, node.dotDotDotToken) || visitNode(cbNode, node.name) || visitNode(cbNode, node.questionToken) || visitNode(cbNode, node.type) || visitNode(cbNode, node.initializer); case 167 /* SyntaxKind.PropertyDeclaration */: return visitNodes(cbNode, cbNodes, node.decorators) || visitNodes(cbNode, cbNodes, node.modifiers) || visitNode(cbNode, node.name) || visitNode(cbNode, node.questionToken) || visitNode(cbNode, node.exclamationToken) || visitNode(cbNode, node.type) || visitNode(cbNode, node.initializer); case 166 /* SyntaxKind.PropertySignature */: return visitNodes(cbNode, cbNodes, node.decorators) || visitNodes(cbNode, cbNodes, node.modifiers) || visitNode(cbNode, node.name) || visitNode(cbNode, node.questionToken) || visitNode(cbNode, node.type) || visitNode(cbNode, node.initializer); case 296 /* SyntaxKind.PropertyAssignment */: return visitNodes(cbNode, cbNodes, node.decorators) || visitNodes(cbNode, cbNodes, node.modifiers) || visitNode(cbNode, node.name) || visitNode(cbNode, node.questionToken) || visitNode(cbNode, node.initializer); case 254 /* SyntaxKind.VariableDeclaration */: return visitNodes(cbNode, cbNodes, node.decorators) || visitNodes(cbNode, cbNodes, node.modifiers) || visitNode(cbNode, node.name) || visitNode(cbNode, node.exclamationToken) || visitNode(cbNode, node.type) || visitNode(cbNode, node.initializer); case 203 /* SyntaxKind.BindingElement */: return visitNodes(cbNode, cbNodes, node.decorators) || visitNodes(cbNode, cbNodes, node.modifiers) || visitNode(cbNode, node.dotDotDotToken) || visitNode(cbNode, node.propertyName) || visitNode(cbNode, node.name) || visitNode(cbNode, node.initializer); case 179 /* SyntaxKind.FunctionType */: case 180 /* SyntaxKind.ConstructorType */: case 174 /* SyntaxKind.CallSignature */: case 175 /* SyntaxKind.ConstructSignature */: case 176 /* SyntaxKind.IndexSignature */: return visitNodes(cbNode, cbNodes, node.decorators) || visitNodes(cbNode, cbNodes, node.modifiers) || visitNodes(cbNode, cbNodes, node.typeParameters) || visitNodes(cbNode, cbNodes, node.parameters) || visitNode(cbNode, node.type); case 169 /* SyntaxKind.MethodDeclaration */: case 168 /* SyntaxKind.MethodSignature */: case 171 /* SyntaxKind.Constructor */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 213 /* SyntaxKind.FunctionExpression */: case 256 /* SyntaxKind.FunctionDeclaration */: case 214 /* SyntaxKind.ArrowFunction */: return visitNodes(cbNode, cbNodes, node.decorators) || visitNodes(cbNode, cbNodes, node.modifiers) || visitNode(cbNode, node.asteriskToken) || visitNode(cbNode, node.name) || visitNode(cbNode, node.questionToken) || visitNode(cbNode, node.exclamationToken) || visitNodes(cbNode, cbNodes, node.typeParameters) || visitNodes(cbNode, cbNodes, node.parameters) || visitNode(cbNode, node.type) || visitNode(cbNode, node.equalsGreaterThanToken) || visitNode(cbNode, node.body); case 170 /* SyntaxKind.ClassStaticBlockDeclaration */: return visitNodes(cbNode, cbNodes, node.decorators) || visitNodes(cbNode, cbNodes, node.modifiers) || visitNode(cbNode, node.body); case 178 /* SyntaxKind.TypeReference */: return visitNode(cbNode, node.typeName) || visitNodes(cbNode, cbNodes, node.typeArguments); case 177 /* SyntaxKind.TypePredicate */: return visitNode(cbNode, node.assertsModifier) || visitNode(cbNode, node.parameterName) || visitNode(cbNode, node.type); case 181 /* SyntaxKind.TypeQuery */: return visitNode(cbNode, node.exprName) || visitNodes(cbNode, cbNodes, node.typeArguments); case 182 /* SyntaxKind.TypeLiteral */: return visitNodes(cbNode, cbNodes, node.members); case 183 /* SyntaxKind.ArrayType */: return visitNode(cbNode, node.elementType); case 184 /* SyntaxKind.TupleType */: return visitNodes(cbNode, cbNodes, node.elements); case 187 /* SyntaxKind.UnionType */: case 188 /* SyntaxKind.IntersectionType */: return visitNodes(cbNode, cbNodes, node.types); case 189 /* SyntaxKind.ConditionalType */: return visitNode(cbNode, node.checkType) || visitNode(cbNode, node.extendsType) || visitNode(cbNode, node.trueType) || visitNode(cbNode, node.falseType); case 190 /* SyntaxKind.InferType */: return visitNode(cbNode, node.typeParameter); case 200 /* SyntaxKind.ImportType */: return visitNode(cbNode, node.argument) || visitNode(cbNode, node.assertions) || visitNode(cbNode, node.qualifier) || visitNodes(cbNode, cbNodes, node.typeArguments); case 295 /* SyntaxKind.ImportTypeAssertionContainer */: return visitNode(cbNode, node.assertClause); case 191 /* SyntaxKind.ParenthesizedType */: case 193 /* SyntaxKind.TypeOperator */: return visitNode(cbNode, node.type); case 194 /* SyntaxKind.IndexedAccessType */: return visitNode(cbNode, node.objectType) || visitNode(cbNode, node.indexType); case 195 /* SyntaxKind.MappedType */: return visitNode(cbNode, node.readonlyToken) || visitNode(cbNode, node.typeParameter) || visitNode(cbNode, node.nameType) || visitNode(cbNode, node.questionToken) || visitNode(cbNode, node.type) || visitNodes(cbNode, cbNodes, node.members); case 196 /* SyntaxKind.LiteralType */: return visitNode(cbNode, node.literal); case 197 /* SyntaxKind.NamedTupleMember */: return visitNode(cbNode, node.dotDotDotToken) || visitNode(cbNode, node.name) || visitNode(cbNode, node.questionToken) || visitNode(cbNode, node.type); case 201 /* SyntaxKind.ObjectBindingPattern */: case 202 /* SyntaxKind.ArrayBindingPattern */: return visitNodes(cbNode, cbNodes, node.elements); case 204 /* SyntaxKind.ArrayLiteralExpression */: return visitNodes(cbNode, cbNodes, node.elements); case 205 /* SyntaxKind.ObjectLiteralExpression */: return visitNodes(cbNode, cbNodes, node.properties); case 206 /* SyntaxKind.PropertyAccessExpression */: return visitNode(cbNode, node.expression) || visitNode(cbNode, node.questionDotToken) || visitNode(cbNode, node.name); case 207 /* SyntaxKind.ElementAccessExpression */: return visitNode(cbNode, node.expression) || visitNode(cbNode, node.questionDotToken) || visitNode(cbNode, node.argumentExpression); case 208 /* SyntaxKind.CallExpression */: case 209 /* SyntaxKind.NewExpression */: return visitNode(cbNode, node.expression) || visitNode(cbNode, node.questionDotToken) || visitNodes(cbNode, cbNodes, node.typeArguments) || visitNodes(cbNode, cbNodes, node.arguments); case 210 /* SyntaxKind.TaggedTemplateExpression */: return visitNode(cbNode, node.tag) || visitNode(cbNode, node.questionDotToken) || visitNodes(cbNode, cbNodes, node.typeArguments) || visitNode(cbNode, node.template); case 211 /* SyntaxKind.TypeAssertionExpression */: return visitNode(cbNode, node.type) || visitNode(cbNode, node.expression); case 212 /* SyntaxKind.ParenthesizedExpression */: return visitNode(cbNode, node.expression); case 215 /* SyntaxKind.DeleteExpression */: return visitNode(cbNode, node.expression); case 216 /* SyntaxKind.TypeOfExpression */: return visitNode(cbNode, node.expression); case 217 /* SyntaxKind.VoidExpression */: return visitNode(cbNode, node.expression); case 219 /* SyntaxKind.PrefixUnaryExpression */: return visitNode(cbNode, node.operand); case 224 /* SyntaxKind.YieldExpression */: return visitNode(cbNode, node.asteriskToken) || visitNode(cbNode, node.expression); case 218 /* SyntaxKind.AwaitExpression */: return visitNode(cbNode, node.expression); case 220 /* SyntaxKind.PostfixUnaryExpression */: return visitNode(cbNode, node.operand); case 221 /* SyntaxKind.BinaryExpression */: return visitNode(cbNode, node.left) || visitNode(cbNode, node.operatorToken) || visitNode(cbNode, node.right); case 229 /* SyntaxKind.AsExpression */: return visitNode(cbNode, node.expression) || visitNode(cbNode, node.type); case 230 /* SyntaxKind.NonNullExpression */: return visitNode(cbNode, node.expression); case 231 /* SyntaxKind.MetaProperty */: return visitNode(cbNode, node.name); case 222 /* SyntaxKind.ConditionalExpression */: return visitNode(cbNode, node.condition) || visitNode(cbNode, node.questionToken) || visitNode(cbNode, node.whenTrue) || visitNode(cbNode, node.colonToken) || visitNode(cbNode, node.whenFalse); case 225 /* SyntaxKind.SpreadElement */: return visitNode(cbNode, node.expression); case 235 /* SyntaxKind.Block */: case 262 /* SyntaxKind.ModuleBlock */: return visitNodes(cbNode, cbNodes, node.statements); case 305 /* SyntaxKind.SourceFile */: return visitNodes(cbNode, cbNodes, node.statements) || visitNode(cbNode, node.endOfFileToken); case 237 /* SyntaxKind.VariableStatement */: return visitNodes(cbNode, cbNodes, node.decorators) || visitNodes(cbNode, cbNodes, node.modifiers) || visitNode(cbNode, node.declarationList); case 255 /* SyntaxKind.VariableDeclarationList */: return visitNodes(cbNode, cbNodes, node.declarations); case 238 /* SyntaxKind.ExpressionStatement */: return visitNode(cbNode, node.expression); case 239 /* SyntaxKind.IfStatement */: return visitNode(cbNode, node.expression) || visitNode(cbNode, node.thenStatement) || visitNode(cbNode, node.elseStatement); case 240 /* SyntaxKind.DoStatement */: return visitNode(cbNode, node.statement) || visitNode(cbNode, node.expression); case 241 /* SyntaxKind.WhileStatement */: return visitNode(cbNode, node.expression) || visitNode(cbNode, node.statement); case 242 /* SyntaxKind.ForStatement */: return visitNode(cbNode, node.initializer) || visitNode(cbNode, node.condition) || visitNode(cbNode, node.incrementor) || visitNode(cbNode, node.statement); case 243 /* SyntaxKind.ForInStatement */: return visitNode(cbNode, node.initializer) || visitNode(cbNode, node.expression) || visitNode(cbNode, node.statement); case 244 /* SyntaxKind.ForOfStatement */: return visitNode(cbNode, node.awaitModifier) || visitNode(cbNode, node.initializer) || visitNode(cbNode, node.expression) || visitNode(cbNode, node.statement); case 245 /* SyntaxKind.ContinueStatement */: case 246 /* SyntaxKind.BreakStatement */: return visitNode(cbNode, node.label); case 247 /* SyntaxKind.ReturnStatement */: return visitNode(cbNode, node.expression); case 248 /* SyntaxKind.WithStatement */: return visitNode(cbNode, node.expression) || visitNode(cbNode, node.statement); case 249 /* SyntaxKind.SwitchStatement */: return visitNode(cbNode, node.expression) || visitNode(cbNode, node.caseBlock); case 263 /* SyntaxKind.CaseBlock */: return visitNodes(cbNode, cbNodes, node.clauses); case 289 /* SyntaxKind.CaseClause */: return visitNode(cbNode, node.expression) || visitNodes(cbNode, cbNodes, node.statements); case 290 /* SyntaxKind.DefaultClause */: return visitNodes(cbNode, cbNodes, node.statements); case 250 /* SyntaxKind.LabeledStatement */: return visitNode(cbNode, node.label) || visitNode(cbNode, node.statement); case 251 /* SyntaxKind.ThrowStatement */: return visitNode(cbNode, node.expression); case 252 /* SyntaxKind.TryStatement */: return visitNode(cbNode, node.tryBlock) || visitNode(cbNode, node.catchClause) || visitNode(cbNode, node.finallyBlock); case 292 /* SyntaxKind.CatchClause */: return visitNode(cbNode, node.variableDeclaration) || visitNode(cbNode, node.block); case 165 /* SyntaxKind.Decorator */: return visitNode(cbNode, node.expression); case 257 /* SyntaxKind.ClassDeclaration */: case 226 /* SyntaxKind.ClassExpression */: return visitNodes(cbNode, cbNodes, node.decorators) || visitNodes(cbNode, cbNodes, node.modifiers) || visitNode(cbNode, node.name) || visitNodes(cbNode, cbNodes, node.typeParameters) || visitNodes(cbNode, cbNodes, node.heritageClauses) || visitNodes(cbNode, cbNodes, node.members); case 258 /* SyntaxKind.InterfaceDeclaration */: return visitNodes(cbNode, cbNodes, node.decorators) || visitNodes(cbNode, cbNodes, node.modifiers) || visitNode(cbNode, node.name) || visitNodes(cbNode, cbNodes, node.typeParameters) || visitNodes(cbNode, cbNodes, node.heritageClauses) || visitNodes(cbNode, cbNodes, node.members); case 259 /* SyntaxKind.TypeAliasDeclaration */: return visitNodes(cbNode, cbNodes, node.decorators) || visitNodes(cbNode, cbNodes, node.modifiers) || visitNode(cbNode, node.name) || visitNodes(cbNode, cbNodes, node.typeParameters) || visitNode(cbNode, node.type); case 260 /* SyntaxKind.EnumDeclaration */: return visitNodes(cbNode, cbNodes, node.decorators) || visitNodes(cbNode, cbNodes, node.modifiers) || visitNode(cbNode, node.name) || visitNodes(cbNode, cbNodes, node.members); case 299 /* SyntaxKind.EnumMember */: return visitNode(cbNode, node.name) || visitNode(cbNode, node.initializer); case 261 /* SyntaxKind.ModuleDeclaration */: return visitNodes(cbNode, cbNodes, node.decorators) || visitNodes(cbNode, cbNodes, node.modifiers) || visitNode(cbNode, node.name) || visitNode(cbNode, node.body); case 265 /* SyntaxKind.ImportEqualsDeclaration */: return visitNodes(cbNode, cbNodes, node.decorators) || visitNodes(cbNode, cbNodes, node.modifiers) || visitNode(cbNode, node.name) || visitNode(cbNode, node.moduleReference); case 266 /* SyntaxKind.ImportDeclaration */: return visitNodes(cbNode, cbNodes, node.decorators) || visitNodes(cbNode, cbNodes, node.modifiers) || visitNode(cbNode, node.importClause) || visitNode(cbNode, node.moduleSpecifier) || visitNode(cbNode, node.assertClause); case 267 /* SyntaxKind.ImportClause */: return visitNode(cbNode, node.name) || visitNode(cbNode, node.namedBindings); case 293 /* SyntaxKind.AssertClause */: return visitNodes(cbNode, cbNodes, node.elements); case 294 /* SyntaxKind.AssertEntry */: return visitNode(cbNode, node.name) || visitNode(cbNode, node.value); case 264 /* SyntaxKind.NamespaceExportDeclaration */: return visitNode(cbNode, node.name); case 268 /* SyntaxKind.NamespaceImport */: return visitNode(cbNode, node.name); case 274 /* SyntaxKind.NamespaceExport */: return visitNode(cbNode, node.name); case 269 /* SyntaxKind.NamedImports */: case 273 /* SyntaxKind.NamedExports */: return visitNodes(cbNode, cbNodes, node.elements); case 272 /* SyntaxKind.ExportDeclaration */: return visitNodes(cbNode, cbNodes, node.decorators) || visitNodes(cbNode, cbNodes, node.modifiers) || visitNode(cbNode, node.exportClause) || visitNode(cbNode, node.moduleSpecifier) || visitNode(cbNode, node.assertClause); case 270 /* SyntaxKind.ImportSpecifier */: case 275 /* SyntaxKind.ExportSpecifier */: return visitNode(cbNode, node.propertyName) || visitNode(cbNode, node.name); case 271 /* SyntaxKind.ExportAssignment */: return visitNodes(cbNode, cbNodes, node.decorators) || visitNodes(cbNode, cbNodes, node.modifiers) || visitNode(cbNode, node.expression); case 223 /* SyntaxKind.TemplateExpression */: return visitNode(cbNode, node.head) || visitNodes(cbNode, cbNodes, node.templateSpans); case 233 /* SyntaxKind.TemplateSpan */: return visitNode(cbNode, node.expression) || visitNode(cbNode, node.literal); case 198 /* SyntaxKind.TemplateLiteralType */: return visitNode(cbNode, node.head) || visitNodes(cbNode, cbNodes, node.templateSpans); case 199 /* SyntaxKind.TemplateLiteralTypeSpan */: return visitNode(cbNode, node.type) || visitNode(cbNode, node.literal); case 162 /* SyntaxKind.ComputedPropertyName */: return visitNode(cbNode, node.expression); case 291 /* SyntaxKind.HeritageClause */: return visitNodes(cbNode, cbNodes, node.types); case 228 /* SyntaxKind.ExpressionWithTypeArguments */: return visitNode(cbNode, node.expression) || visitNodes(cbNode, cbNodes, node.typeArguments); case 277 /* SyntaxKind.ExternalModuleReference */: return visitNode(cbNode, node.expression); case 276 /* SyntaxKind.MissingDeclaration */: return visitNodes(cbNode, cbNodes, node.decorators); case 351 /* SyntaxKind.CommaListExpression */: return visitNodes(cbNode, cbNodes, node.elements); case 278 /* SyntaxKind.JsxElement */: return visitNode(cbNode, node.openingElement) || visitNodes(cbNode, cbNodes, node.children) || visitNode(cbNode, node.closingElement); case 282 /* SyntaxKind.JsxFragment */: return visitNode(cbNode, node.openingFragment) || visitNodes(cbNode, cbNodes, node.children) || visitNode(cbNode, node.closingFragment); case 279 /* SyntaxKind.JsxSelfClosingElement */: case 280 /* SyntaxKind.JsxOpeningElement */: return visitNode(cbNode, node.tagName) || visitNodes(cbNode, cbNodes, node.typeArguments) || visitNode(cbNode, node.attributes); case 286 /* SyntaxKind.JsxAttributes */: return visitNodes(cbNode, cbNodes, node.properties); case 285 /* SyntaxKind.JsxAttribute */: return visitNode(cbNode, node.name) || visitNode(cbNode, node.initializer); case 287 /* SyntaxKind.JsxSpreadAttribute */: return visitNode(cbNode, node.expression); case 288 /* SyntaxKind.JsxExpression */: return visitNode(cbNode, node.dotDotDotToken) || visitNode(cbNode, node.expression); case 281 /* SyntaxKind.JsxClosingElement */: return visitNode(cbNode, node.tagName); case 185 /* SyntaxKind.OptionalType */: case 186 /* SyntaxKind.RestType */: case 309 /* SyntaxKind.JSDocTypeExpression */: case 315 /* SyntaxKind.JSDocNonNullableType */: case 314 /* SyntaxKind.JSDocNullableType */: case 316 /* SyntaxKind.JSDocOptionalType */: case 318 /* SyntaxKind.JSDocVariadicType */: return visitNode(cbNode, node.type); case 317 /* SyntaxKind.JSDocFunctionType */: return visitNodes(cbNode, cbNodes, node.parameters) || visitNode(cbNode, node.type); case 320 /* SyntaxKind.JSDoc */: return (typeof node.comment === "string" ? undefined : visitNodes(cbNode, cbNodes, node.comment)) || visitNodes(cbNode, cbNodes, node.tags); case 346 /* SyntaxKind.JSDocSeeTag */: return visitNode(cbNode, node.tagName) || visitNode(cbNode, node.name) || (typeof node.comment === "string" ? undefined : visitNodes(cbNode, cbNodes, node.comment)); case 310 /* SyntaxKind.JSDocNameReference */: return visitNode(cbNode, node.name); case 311 /* SyntaxKind.JSDocMemberName */: return visitNode(cbNode, node.left) || visitNode(cbNode, node.right); case 340 /* SyntaxKind.JSDocParameterTag */: case 347 /* SyntaxKind.JSDocPropertyTag */: return visitNode(cbNode, node.tagName) || (node.isNameFirst ? visitNode(cbNode, node.name) || visitNode(cbNode, node.typeExpression) || (typeof node.comment === "string" ? undefined : visitNodes(cbNode, cbNodes, node.comment)) : visitNode(cbNode, node.typeExpression) || visitNode(cbNode, node.name) || (typeof node.comment === "string" ? undefined : visitNodes(cbNode, cbNodes, node.comment))); case 330 /* SyntaxKind.JSDocAuthorTag */: return visitNode(cbNode, node.tagName) || (typeof node.comment === "string" ? undefined : visitNodes(cbNode, cbNodes, node.comment)); case 329 /* SyntaxKind.JSDocImplementsTag */: return visitNode(cbNode, node.tagName) || visitNode(cbNode, node.class) || (typeof node.comment === "string" ? undefined : visitNodes(cbNode, cbNodes, node.comment)); case 328 /* SyntaxKind.JSDocAugmentsTag */: return visitNode(cbNode, node.tagName) || visitNode(cbNode, node.class) || (typeof node.comment === "string" ? undefined : visitNodes(cbNode, cbNodes, node.comment)); case 344 /* SyntaxKind.JSDocTemplateTag */: return visitNode(cbNode, node.tagName) || visitNode(cbNode, node.constraint) || visitNodes(cbNode, cbNodes, node.typeParameters) || (typeof node.comment === "string" ? undefined : visitNodes(cbNode, cbNodes, node.comment)); case 345 /* SyntaxKind.JSDocTypedefTag */: return visitNode(cbNode, node.tagName) || (node.typeExpression && node.typeExpression.kind === 309 /* SyntaxKind.JSDocTypeExpression */ ? visitNode(cbNode, node.typeExpression) || visitNode(cbNode, node.fullName) || (typeof node.comment === "string" ? undefined : visitNodes(cbNode, cbNodes, node.comment)) : visitNode(cbNode, node.fullName) || visitNode(cbNode, node.typeExpression) || (typeof node.comment === "string" ? undefined : visitNodes(cbNode, cbNodes, node.comment))); case 338 /* SyntaxKind.JSDocCallbackTag */: return visitNode(cbNode, node.tagName) || visitNode(cbNode, node.fullName) || visitNode(cbNode, node.typeExpression) || (typeof node.comment === "string" ? undefined : visitNodes(cbNode, cbNodes, node.comment)); case 341 /* SyntaxKind.JSDocReturnTag */: case 343 /* SyntaxKind.JSDocTypeTag */: case 342 /* SyntaxKind.JSDocThisTag */: case 339 /* SyntaxKind.JSDocEnumTag */: return visitNode(cbNode, node.tagName) || visitNode(cbNode, node.typeExpression) || (typeof node.comment === "string" ? undefined : visitNodes(cbNode, cbNodes, node.comment)); case 323 /* SyntaxKind.JSDocSignature */: return ts.forEach(node.typeParameters, cbNode) || ts.forEach(node.parameters, cbNode) || visitNode(cbNode, node.type); case 324 /* SyntaxKind.JSDocLink */: case 325 /* SyntaxKind.JSDocLinkCode */: case 326 /* SyntaxKind.JSDocLinkPlain */: return visitNode(cbNode, node.name); case 322 /* SyntaxKind.JSDocTypeLiteral */: return ts.forEach(node.jsDocPropertyTags, cbNode); case 327 /* SyntaxKind.JSDocTag */: case 332 /* SyntaxKind.JSDocClassTag */: case 333 /* SyntaxKind.JSDocPublicTag */: case 334 /* SyntaxKind.JSDocPrivateTag */: case 335 /* SyntaxKind.JSDocProtectedTag */: case 336 /* SyntaxKind.JSDocReadonlyTag */: case 331 /* SyntaxKind.JSDocDeprecatedTag */: return visitNode(cbNode, node.tagName) || (typeof node.comment === "string" ? undefined : visitNodes(cbNode, cbNodes, node.comment)); case 350 /* SyntaxKind.PartiallyEmittedExpression */: return visitNode(cbNode, node.expression); } } ts.forEachChild = forEachChild; /** @internal */ /** * Invokes a callback for each child of the given node. The 'cbNode' callback is invoked for all child nodes * stored in properties. If a 'cbNodes' callback is specified, it is invoked for embedded arrays; additionally, * unlike `forEachChild`, embedded arrays are flattened and the 'cbNode' callback is invoked for each element. * If a callback returns a truthy value, iteration stops and that value is returned. Otherwise, undefined is returned. * * @param node a given node to visit its children * @param cbNode a callback to be invoked for all child nodes * @param cbNodes a callback to be invoked for embedded array * * @remarks Unlike `forEachChild`, `forEachChildRecursively` handles recursively invoking the traversal on each child node found, * and while doing so, handles traversing the structure without relying on the callstack to encode the tree structure. */ function forEachChildRecursively(rootNode, cbNode, cbNodes) { var queue = gatherPossibleChildren(rootNode); var parents = []; // tracks parent references for elements in queue while (parents.length < queue.length) { parents.push(rootNode); } while (queue.length !== 0) { var current = queue.pop(); var parent = parents.pop(); if (ts.isArray(current)) { if (cbNodes) { var res = cbNodes(current, parent); if (res) { if (res === "skip") continue; return res; } } for (var i = current.length - 1; i >= 0; --i) { queue.push(current[i]); parents.push(parent); } } else { var res = cbNode(current, parent); if (res) { if (res === "skip") continue; return res; } if (current.kind >= 161 /* SyntaxKind.FirstNode */) { // add children in reverse order to the queue, so popping gives the first child for (var _i = 0, _a = gatherPossibleChildren(current); _i < _a.length; _i++) { var child = _a[_i]; queue.push(child); parents.push(current); } } } } } ts.forEachChildRecursively = forEachChildRecursively; function gatherPossibleChildren(node) { var children = []; forEachChild(node, addWorkItem, addWorkItem); // By using a stack above and `unshift` here, we emulate a depth-first preorder traversal return children; function addWorkItem(n) { children.unshift(n); } } function setExternalModuleIndicator(sourceFile) { sourceFile.externalModuleIndicator = isFileProbablyExternalModule(sourceFile); } function createSourceFile(fileName, sourceText, languageVersionOrOptions, setParentNodes, scriptKind) { if (setParentNodes === void 0) { setParentNodes = false; } ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("parse" /* tracing.Phase.Parse */, "createSourceFile", { path: fileName }, /*separateBeginAndEnd*/ true); ts.performance.mark("beforeParse"); var result; ts.perfLogger.logStartParseSourceFile(fileName); var _a = typeof languageVersionOrOptions === "object" ? languageVersionOrOptions : { languageVersion: languageVersionOrOptions }, languageVersion = _a.languageVersion, overrideSetExternalModuleIndicator = _a.setExternalModuleIndicator, format = _a.impliedNodeFormat; if (languageVersion === 100 /* ScriptTarget.JSON */) { result = Parser.parseSourceFile(fileName, sourceText, languageVersion, /*syntaxCursor*/ undefined, setParentNodes, 6 /* ScriptKind.JSON */, ts.noop); } else { var setIndicator = format === undefined ? overrideSetExternalModuleIndicator : function (file) { file.impliedNodeFormat = format; return (overrideSetExternalModuleIndicator || setExternalModuleIndicator)(file); }; result = Parser.parseSourceFile(fileName, sourceText, languageVersion, /*syntaxCursor*/ undefined, setParentNodes, scriptKind, setIndicator); } ts.perfLogger.logStopParseSourceFile(); ts.performance.mark("afterParse"); ts.performance.measure("Parse", "beforeParse", "afterParse"); ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); return result; } ts.createSourceFile = createSourceFile; function parseIsolatedEntityName(text, languageVersion) { return Parser.parseIsolatedEntityName(text, languageVersion); } ts.parseIsolatedEntityName = parseIsolatedEntityName; /** * Parse json text into SyntaxTree and return node and parse errors if any * @param fileName * @param sourceText */ function parseJsonText(fileName, sourceText) { return Parser.parseJsonText(fileName, sourceText); } ts.parseJsonText = parseJsonText; // See also `isExternalOrCommonJsModule` in utilities.ts function isExternalModule(file) { return file.externalModuleIndicator !== undefined; } ts.isExternalModule = isExternalModule; // Produces a new SourceFile for the 'newText' provided. The 'textChangeRange' parameter // indicates what changed between the 'text' that this SourceFile has and the 'newText'. // The SourceFile will be created with the compiler attempting to reuse as many nodes from // this file as possible. // // Note: this function mutates nodes from this SourceFile. That means any existing nodes // from this SourceFile that are being held onto may change as a result (including // becoming detached from any SourceFile). It is recommended that this SourceFile not // be used once 'update' is called on it. function updateSourceFile(sourceFile, newText, textChangeRange, aggressiveChecks) { if (aggressiveChecks === void 0) { aggressiveChecks = false; } var newSourceFile = IncrementalParser.updateSourceFile(sourceFile, newText, textChangeRange, aggressiveChecks); // Because new source file node is created, it may not have the flag PossiblyContainDynamicImport. This is the case if there is no new edit to add dynamic import. // We will manually port the flag to the new source file. newSourceFile.flags |= (sourceFile.flags & 6291456 /* NodeFlags.PermanentlySetIncrementalFlags */); return newSourceFile; } ts.updateSourceFile = updateSourceFile; /* @internal */ function parseIsolatedJSDocComment(content, start, length) { var result = Parser.JSDocParser.parseIsolatedJSDocComment(content, start, length); if (result && result.jsDoc) { // because the jsDocComment was parsed out of the source file, it might // not be covered by the fixupParentReferences. Parser.fixupParentReferences(result.jsDoc); } return result; } ts.parseIsolatedJSDocComment = parseIsolatedJSDocComment; /* @internal */ // Exposed only for testing. function parseJSDocTypeExpressionForTests(content, start, length) { return Parser.JSDocParser.parseJSDocTypeExpressionForTests(content, start, length); } ts.parseJSDocTypeExpressionForTests = parseJSDocTypeExpressionForTests; // Implement the parser as a singleton module. We do this for perf reasons because creating // parser instances can actually be expensive enough to impact us on projects with many source // files. var Parser; (function (Parser) { // Share a single scanner across all calls to parse a source file. This helps speed things // up by avoiding the cost of creating/compiling scanners over and over again. var scanner = ts.createScanner(99 /* ScriptTarget.Latest */, /*skipTrivia*/ true); var disallowInAndDecoratorContext = 4096 /* NodeFlags.DisallowInContext */ | 16384 /* NodeFlags.DecoratorContext */; // capture constructors in 'initializeState' to avoid null checks // tslint:disable variable-name var NodeConstructor; var TokenConstructor; var IdentifierConstructor; var PrivateIdentifierConstructor; var SourceFileConstructor; // tslint:enable variable-name function countNode(node) { nodeCount++; return node; } // Rather than using `createBaseNodeFactory` here, we establish a `BaseNodeFactory` that closes over the // constructors above, which are reset each time `initializeState` is called. var baseNodeFactory = { createBaseSourceFileNode: function (kind) { return countNode(new SourceFileConstructor(kind, /*pos*/ 0, /*end*/ 0)); }, createBaseIdentifierNode: function (kind) { return countNode(new IdentifierConstructor(kind, /*pos*/ 0, /*end*/ 0)); }, createBasePrivateIdentifierNode: function (kind) { return countNode(new PrivateIdentifierConstructor(kind, /*pos*/ 0, /*end*/ 0)); }, createBaseTokenNode: function (kind) { return countNode(new TokenConstructor(kind, /*pos*/ 0, /*end*/ 0)); }, createBaseNode: function (kind) { return countNode(new NodeConstructor(kind, /*pos*/ 0, /*end*/ 0)); } }; var factory = ts.createNodeFactory(1 /* NodeFactoryFlags.NoParenthesizerRules */ | 2 /* NodeFactoryFlags.NoNodeConverters */ | 8 /* NodeFactoryFlags.NoOriginalNode */, baseNodeFactory); var fileName; var sourceFlags; var sourceText; var languageVersion; var scriptKind; var languageVariant; var parseDiagnostics; var jsDocDiagnostics; var syntaxCursor; var currentToken; var nodeCount; var identifiers; var privateIdentifiers; var identifierCount; var parsingContext; var notParenthesizedArrow; // Flags that dictate what parsing context we're in. For example: // Whether or not we are in strict parsing mode. All that changes in strict parsing mode is // that some tokens that would be considered identifiers may be considered keywords. // // When adding more parser context flags, consider which is the more common case that the // flag will be in. This should be the 'false' state for that flag. The reason for this is // that we don't store data in our nodes unless the value is in the *non-default* state. So, // for example, more often than code 'allows-in' (or doesn't 'disallow-in'). We opt for // 'disallow-in' set to 'false'. Otherwise, if we had 'allowsIn' set to 'true', then almost // all nodes would need extra state on them to store this info. // // Note: 'allowIn' and 'allowYield' track 1:1 with the [in] and [yield] concepts in the ES6 // grammar specification. // // An important thing about these context concepts. By default they are effectively inherited // while parsing through every grammar production. i.e. if you don't change them, then when // you parse a sub-production, it will have the same context values as the parent production. // This is great most of the time. After all, consider all the 'expression' grammar productions // and how nearly all of them pass along the 'in' and 'yield' context values: // // EqualityExpression[In, Yield] : // RelationalExpression[?In, ?Yield] // EqualityExpression[?In, ?Yield] == RelationalExpression[?In, ?Yield] // EqualityExpression[?In, ?Yield] != RelationalExpression[?In, ?Yield] // EqualityExpression[?In, ?Yield] === RelationalExpression[?In, ?Yield] // EqualityExpression[?In, ?Yield] !== RelationalExpression[?In, ?Yield] // // Where you have to be careful is then understanding what the points are in the grammar // where the values are *not* passed along. For example: // // SingleNameBinding[Yield,GeneratorParameter] // [+GeneratorParameter]BindingIdentifier[Yield] Initializer[In]opt // [~GeneratorParameter]BindingIdentifier[?Yield]Initializer[In, ?Yield]opt // // Here this is saying that if the GeneratorParameter context flag is set, that we should // explicitly set the 'yield' context flag to false before calling into the BindingIdentifier // and we should explicitly unset the 'yield' context flag before calling into the Initializer. // production. Conversely, if the GeneratorParameter context flag is not set, then we // should leave the 'yield' context flag alone. // // Getting this all correct is tricky and requires careful reading of the grammar to // understand when these values should be changed versus when they should be inherited. // // Note: it should not be necessary to save/restore these flags during speculative/lookahead // parsing. These context flags are naturally stored and restored through normal recursive // descent parsing and unwinding. var contextFlags; // Indicates whether we are currently parsing top-level statements. var topLevel = true; // Whether or not we've had a parse error since creating the last AST node. If we have // encountered an error, it will be stored on the next AST node we create. Parse errors // can be broken down into three categories: // // 1) An error that occurred during scanning. For example, an unterminated literal, or a // character that was completely not understood. // // 2) A token was expected, but was not present. This type of error is commonly produced // by the 'parseExpected' function. // // 3) A token was present that no parsing function was able to consume. This type of error // only occurs in the 'abortParsingListOrMoveToNextToken' function when the parser // decides to skip the token. // // In all of these cases, we want to mark the next node as having had an error before it. // With this mark, we can know in incremental settings if this node can be reused, or if // we have to reparse it. If we don't keep this information around, we may just reuse the // node. in that event we would then not produce the same errors as we did before, causing // significant confusion problems. // // Note: it is necessary that this value be saved/restored during speculative/lookahead // parsing. During lookahead parsing, we will often create a node. That node will have // this value attached, and then this value will be set back to 'false'. If we decide to // rewind, we must get back to the same value we had prior to the lookahead. // // Note: any errors at the end of the file that do not precede a regular node, should get // attached to the EOF token. var parseErrorBeforeNextFinishedNode = false; function parseSourceFile(fileName, sourceText, languageVersion, syntaxCursor, setParentNodes, scriptKind, setExternalModuleIndicatorOverride) { var _a; if (setParentNodes === void 0) { setParentNodes = false; } scriptKind = ts.ensureScriptKind(fileName, scriptKind); if (scriptKind === 6 /* ScriptKind.JSON */) { var result_3 = parseJsonText(fileName, sourceText, languageVersion, syntaxCursor, setParentNodes); ts.convertToObjectWorker(result_3, (_a = result_3.statements[0]) === null || _a === void 0 ? void 0 : _a.expression, result_3.parseDiagnostics, /*returnValue*/ false, /*knownRootOptions*/ undefined, /*jsonConversionNotifier*/ undefined); result_3.referencedFiles = ts.emptyArray; result_3.typeReferenceDirectives = ts.emptyArray; result_3.libReferenceDirectives = ts.emptyArray; result_3.amdDependencies = ts.emptyArray; result_3.hasNoDefaultLib = false; result_3.pragmas = ts.emptyMap; return result_3; } initializeState(fileName, sourceText, languageVersion, syntaxCursor, scriptKind); var result = parseSourceFileWorker(languageVersion, setParentNodes, scriptKind, setExternalModuleIndicatorOverride || setExternalModuleIndicator); clearState(); return result; } Parser.parseSourceFile = parseSourceFile; function parseIsolatedEntityName(content, languageVersion) { // Choice of `isDeclarationFile` should be arbitrary initializeState("", content, languageVersion, /*syntaxCursor*/ undefined, 1 /* ScriptKind.JS */); // Prime the scanner. nextToken(); var entityName = parseEntityName(/*allowReservedWords*/ true); var isInvalid = token() === 1 /* SyntaxKind.EndOfFileToken */ && !parseDiagnostics.length; clearState(); return isInvalid ? entityName : undefined; } Parser.parseIsolatedEntityName = parseIsolatedEntityName; function parseJsonText(fileName, sourceText, languageVersion, syntaxCursor, setParentNodes) { if (languageVersion === void 0) { languageVersion = 2 /* ScriptTarget.ES2015 */; } if (setParentNodes === void 0) { setParentNodes = false; } initializeState(fileName, sourceText, languageVersion, syntaxCursor, 6 /* ScriptKind.JSON */); sourceFlags = contextFlags; // Prime the scanner. nextToken(); var pos = getNodePos(); var statements, endOfFileToken; if (token() === 1 /* SyntaxKind.EndOfFileToken */) { statements = createNodeArray([], pos, pos); endOfFileToken = parseTokenNode(); } else { // Loop and synthesize an ArrayLiteralExpression if there are more than // one top-level expressions to ensure all input text is consumed. var expressions = void 0; while (token() !== 1 /* SyntaxKind.EndOfFileToken */) { var expression_1 = void 0; switch (token()) { case 22 /* SyntaxKind.OpenBracketToken */: expression_1 = parseArrayLiteralExpression(); break; case 110 /* SyntaxKind.TrueKeyword */: case 95 /* SyntaxKind.FalseKeyword */: case 104 /* SyntaxKind.NullKeyword */: expression_1 = parseTokenNode(); break; case 40 /* SyntaxKind.MinusToken */: if (lookAhead(function () { return nextToken() === 8 /* SyntaxKind.NumericLiteral */ && nextToken() !== 58 /* SyntaxKind.ColonToken */; })) { expression_1 = parsePrefixUnaryExpression(); } else { expression_1 = parseObjectLiteralExpression(); } break; case 8 /* SyntaxKind.NumericLiteral */: case 10 /* SyntaxKind.StringLiteral */: if (lookAhead(function () { return nextToken() !== 58 /* SyntaxKind.ColonToken */; })) { expression_1 = parseLiteralNode(); break; } // falls through default: expression_1 = parseObjectLiteralExpression(); break; } // Error recovery: collect multiple top-level expressions if (expressions && ts.isArray(expressions)) { expressions.push(expression_1); } else if (expressions) { expressions = [expressions, expression_1]; } else { expressions = expression_1; if (token() !== 1 /* SyntaxKind.EndOfFileToken */) { parseErrorAtCurrentToken(ts.Diagnostics.Unexpected_token); } } } var expression = ts.isArray(expressions) ? finishNode(factory.createArrayLiteralExpression(expressions), pos) : ts.Debug.checkDefined(expressions); var statement = factory.createExpressionStatement(expression); finishNode(statement, pos); statements = createNodeArray([statement], pos); endOfFileToken = parseExpectedToken(1 /* SyntaxKind.EndOfFileToken */, ts.Diagnostics.Unexpected_token); } // Set source file so that errors will be reported with this file name var sourceFile = createSourceFile(fileName, 2 /* ScriptTarget.ES2015 */, 6 /* ScriptKind.JSON */, /*isDeclaration*/ false, statements, endOfFileToken, sourceFlags, ts.noop); if (setParentNodes) { fixupParentReferences(sourceFile); } sourceFile.nodeCount = nodeCount; sourceFile.identifierCount = identifierCount; sourceFile.identifiers = identifiers; sourceFile.parseDiagnostics = ts.attachFileToDiagnostics(parseDiagnostics, sourceFile); if (jsDocDiagnostics) { sourceFile.jsDocDiagnostics = ts.attachFileToDiagnostics(jsDocDiagnostics, sourceFile); } var result = sourceFile; clearState(); return result; } Parser.parseJsonText = parseJsonText; function initializeState(_fileName, _sourceText, _languageVersion, _syntaxCursor, _scriptKind) { NodeConstructor = ts.objectAllocator.getNodeConstructor(); TokenConstructor = ts.objectAllocator.getTokenConstructor(); IdentifierConstructor = ts.objectAllocator.getIdentifierConstructor(); PrivateIdentifierConstructor = ts.objectAllocator.getPrivateIdentifierConstructor(); SourceFileConstructor = ts.objectAllocator.getSourceFileConstructor(); fileName = ts.normalizePath(_fileName); sourceText = _sourceText; languageVersion = _languageVersion; syntaxCursor = _syntaxCursor; scriptKind = _scriptKind; languageVariant = ts.getLanguageVariant(_scriptKind); parseDiagnostics = []; parsingContext = 0; identifiers = new ts.Map(); privateIdentifiers = new ts.Map(); identifierCount = 0; nodeCount = 0; sourceFlags = 0; topLevel = true; switch (scriptKind) { case 1 /* ScriptKind.JS */: case 2 /* ScriptKind.JSX */: contextFlags = 262144 /* NodeFlags.JavaScriptFile */; break; case 6 /* ScriptKind.JSON */: contextFlags = 262144 /* NodeFlags.JavaScriptFile */ | 67108864 /* NodeFlags.JsonFile */; break; default: contextFlags = 0 /* NodeFlags.None */; break; } parseErrorBeforeNextFinishedNode = false; // Initialize and prime the scanner before parsing the source elements. scanner.setText(sourceText); scanner.setOnError(scanError); scanner.setScriptTarget(languageVersion); scanner.setLanguageVariant(languageVariant); } function clearState() { // Clear out the text the scanner is pointing at, so it doesn't keep anything alive unnecessarily. scanner.clearCommentDirectives(); scanner.setText(""); scanner.setOnError(undefined); // Clear any data. We don't want to accidentally hold onto it for too long. sourceText = undefined; languageVersion = undefined; syntaxCursor = undefined; scriptKind = undefined; languageVariant = undefined; sourceFlags = 0; parseDiagnostics = undefined; jsDocDiagnostics = undefined; parsingContext = 0; identifiers = undefined; notParenthesizedArrow = undefined; topLevel = true; } function parseSourceFileWorker(languageVersion, setParentNodes, scriptKind, setExternalModuleIndicator) { var isDeclarationFile = isDeclarationFileName(fileName); if (isDeclarationFile) { contextFlags |= 16777216 /* NodeFlags.Ambient */; } sourceFlags = contextFlags; // Prime the scanner. nextToken(); var statements = parseList(0 /* ParsingContext.SourceElements */, parseStatement); ts.Debug.assert(token() === 1 /* SyntaxKind.EndOfFileToken */); var endOfFileToken = addJSDocComment(parseTokenNode()); var sourceFile = createSourceFile(fileName, languageVersion, scriptKind, isDeclarationFile, statements, endOfFileToken, sourceFlags, setExternalModuleIndicator); // A member of ReadonlyArray isn't assignable to a member of T[] (and prevents a direct cast) - but this is where we set up those members so they can be readonly in the future processCommentPragmas(sourceFile, sourceText); processPragmasIntoFields(sourceFile, reportPragmaDiagnostic); sourceFile.commentDirectives = scanner.getCommentDirectives(); sourceFile.nodeCount = nodeCount; sourceFile.identifierCount = identifierCount; sourceFile.identifiers = identifiers; sourceFile.parseDiagnostics = ts.attachFileToDiagnostics(parseDiagnostics, sourceFile); if (jsDocDiagnostics) { sourceFile.jsDocDiagnostics = ts.attachFileToDiagnostics(jsDocDiagnostics, sourceFile); } if (setParentNodes) { fixupParentReferences(sourceFile); } return sourceFile; function reportPragmaDiagnostic(pos, end, diagnostic) { parseDiagnostics.push(ts.createDetachedDiagnostic(fileName, pos, end, diagnostic)); } } function withJSDoc(node, hasJSDoc) { return hasJSDoc ? addJSDocComment(node) : node; } var hasDeprecatedTag = false; function addJSDocComment(node) { ts.Debug.assert(!node.jsDoc); // Should only be called once per node var jsDoc = ts.mapDefined(ts.getJSDocCommentRanges(node, sourceText), function (comment) { return JSDocParser.parseJSDocComment(node, comment.pos, comment.end - comment.pos); }); if (jsDoc.length) node.jsDoc = jsDoc; if (hasDeprecatedTag) { hasDeprecatedTag = false; node.flags |= 268435456 /* NodeFlags.Deprecated */; } return node; } function reparseTopLevelAwait(sourceFile) { var savedSyntaxCursor = syntaxCursor; var baseSyntaxCursor = IncrementalParser.createSyntaxCursor(sourceFile); syntaxCursor = { currentNode: currentNode }; var statements = []; var savedParseDiagnostics = parseDiagnostics; parseDiagnostics = []; var pos = 0; var start = findNextStatementWithAwait(sourceFile.statements, 0); var _loop_3 = function () { // append all statements between pos and start var prevStatement = sourceFile.statements[pos]; var nextStatement = sourceFile.statements[start]; ts.addRange(statements, sourceFile.statements, pos, start); pos = findNextStatementWithoutAwait(sourceFile.statements, start); // append all diagnostics associated with the copied range var diagnosticStart = ts.findIndex(savedParseDiagnostics, function (diagnostic) { return diagnostic.start >= prevStatement.pos; }); var diagnosticEnd = diagnosticStart >= 0 ? ts.findIndex(savedParseDiagnostics, function (diagnostic) { return diagnostic.start >= nextStatement.pos; }, diagnosticStart) : -1; if (diagnosticStart >= 0) { ts.addRange(parseDiagnostics, savedParseDiagnostics, diagnosticStart, diagnosticEnd >= 0 ? diagnosticEnd : undefined); } // reparse all statements between start and pos. We skip existing diagnostics for the same range and allow the parser to generate new ones. speculationHelper(function () { var savedContextFlags = contextFlags; contextFlags |= 32768 /* NodeFlags.AwaitContext */; scanner.setTextPos(nextStatement.pos); nextToken(); while (token() !== 1 /* SyntaxKind.EndOfFileToken */) { var startPos = scanner.getStartPos(); var statement = parseListElement(0 /* ParsingContext.SourceElements */, parseStatement); statements.push(statement); if (startPos === scanner.getStartPos()) { nextToken(); } if (pos >= 0) { var nonAwaitStatement = sourceFile.statements[pos]; if (statement.end === nonAwaitStatement.pos) { // done reparsing this section break; } if (statement.end > nonAwaitStatement.pos) { // we ate into the next statement, so we must reparse it. pos = findNextStatementWithoutAwait(sourceFile.statements, pos + 1); } } } contextFlags = savedContextFlags; }, 2 /* SpeculationKind.Reparse */); // find the next statement containing an `await` start = pos >= 0 ? findNextStatementWithAwait(sourceFile.statements, pos) : -1; }; while (start !== -1) { _loop_3(); } // append all statements between pos and the end of the list if (pos >= 0) { var prevStatement_1 = sourceFile.statements[pos]; ts.addRange(statements, sourceFile.statements, pos); // append all diagnostics associated with the copied range var diagnosticStart = ts.findIndex(savedParseDiagnostics, function (diagnostic) { return diagnostic.start >= prevStatement_1.pos; }); if (diagnosticStart >= 0) { ts.addRange(parseDiagnostics, savedParseDiagnostics, diagnosticStart); } } syntaxCursor = savedSyntaxCursor; return factory.updateSourceFile(sourceFile, ts.setTextRange(factory.createNodeArray(statements), sourceFile.statements)); function containsPossibleTopLevelAwait(node) { return !(node.flags & 32768 /* NodeFlags.AwaitContext */) && !!(node.transformFlags & 16777216 /* TransformFlags.ContainsPossibleTopLevelAwait */); } function findNextStatementWithAwait(statements, start) { for (var i = start; i < statements.length; i++) { if (containsPossibleTopLevelAwait(statements[i])) { return i; } } return -1; } function findNextStatementWithoutAwait(statements, start) { for (var i = start; i < statements.length; i++) { if (!containsPossibleTopLevelAwait(statements[i])) { return i; } } return -1; } function currentNode(position) { var node = baseSyntaxCursor.currentNode(position); if (topLevel && node && containsPossibleTopLevelAwait(node)) { node.intersectsChange = true; } return node; } } function fixupParentReferences(rootNode) { // normally parent references are set during binding. However, for clients that only need // a syntax tree, and no semantic features, then the binding process is an unnecessary // overhead. This functions allows us to set all the parents, without all the expense of // binding. ts.setParentRecursive(rootNode, /*incremental*/ true); } Parser.fixupParentReferences = fixupParentReferences; function createSourceFile(fileName, languageVersion, scriptKind, isDeclarationFile, statements, endOfFileToken, flags, setExternalModuleIndicator) { // code from createNode is inlined here so createNode won't have to deal with special case of creating source files // this is quite rare comparing to other nodes and createNode should be as fast as possible var sourceFile = factory.createSourceFile(statements, endOfFileToken, flags); ts.setTextRangePosWidth(sourceFile, 0, sourceText.length); setFields(sourceFile); // If we parsed this as an external module, it may contain top-level await if (!isDeclarationFile && isExternalModule(sourceFile) && sourceFile.transformFlags & 16777216 /* TransformFlags.ContainsPossibleTopLevelAwait */) { sourceFile = reparseTopLevelAwait(sourceFile); setFields(sourceFile); } return sourceFile; function setFields(sourceFile) { sourceFile.text = sourceText; sourceFile.bindDiagnostics = []; sourceFile.bindSuggestionDiagnostics = undefined; sourceFile.languageVersion = languageVersion; sourceFile.fileName = fileName; sourceFile.languageVariant = ts.getLanguageVariant(scriptKind); sourceFile.isDeclarationFile = isDeclarationFile; sourceFile.scriptKind = scriptKind; setExternalModuleIndicator(sourceFile); sourceFile.setExternalModuleIndicator = setExternalModuleIndicator; } } function setContextFlag(val, flag) { if (val) { contextFlags |= flag; } else { contextFlags &= ~flag; } } function setDisallowInContext(val) { setContextFlag(val, 4096 /* NodeFlags.DisallowInContext */); } function setYieldContext(val) { setContextFlag(val, 8192 /* NodeFlags.YieldContext */); } function setDecoratorContext(val) { setContextFlag(val, 16384 /* NodeFlags.DecoratorContext */); } function setAwaitContext(val) { setContextFlag(val, 32768 /* NodeFlags.AwaitContext */); } function doOutsideOfContext(context, func) { // contextFlagsToClear will contain only the context flags that are // currently set that we need to temporarily clear // We don't just blindly reset to the previous flags to ensure // that we do not mutate cached flags for the incremental // parser (ThisNodeHasError, ThisNodeOrAnySubNodesHasError, and // HasAggregatedChildData). var contextFlagsToClear = context & contextFlags; if (contextFlagsToClear) { // clear the requested context flags setContextFlag(/*val*/ false, contextFlagsToClear); var result = func(); // restore the context flags we just cleared setContextFlag(/*val*/ true, contextFlagsToClear); return result; } // no need to do anything special as we are not in any of the requested contexts return func(); } function doInsideOfContext(context, func) { // contextFlagsToSet will contain only the context flags that // are not currently set that we need to temporarily enable. // We don't just blindly reset to the previous flags to ensure // that we do not mutate cached flags for the incremental // parser (ThisNodeHasError, ThisNodeOrAnySubNodesHasError, and // HasAggregatedChildData). var contextFlagsToSet = context & ~contextFlags; if (contextFlagsToSet) { // set the requested context flags setContextFlag(/*val*/ true, contextFlagsToSet); var result = func(); // reset the context flags we just set setContextFlag(/*val*/ false, contextFlagsToSet); return result; } // no need to do anything special as we are already in all of the requested contexts return func(); } function allowInAnd(func) { return doOutsideOfContext(4096 /* NodeFlags.DisallowInContext */, func); } function disallowInAnd(func) { return doInsideOfContext(4096 /* NodeFlags.DisallowInContext */, func); } function allowConditionalTypesAnd(func) { return doOutsideOfContext(65536 /* NodeFlags.DisallowConditionalTypesContext */, func); } function disallowConditionalTypesAnd(func) { return doInsideOfContext(65536 /* NodeFlags.DisallowConditionalTypesContext */, func); } function doInYieldContext(func) { return doInsideOfContext(8192 /* NodeFlags.YieldContext */, func); } function doInDecoratorContext(func) { return doInsideOfContext(16384 /* NodeFlags.DecoratorContext */, func); } function doInAwaitContext(func) { return doInsideOfContext(32768 /* NodeFlags.AwaitContext */, func); } function doOutsideOfAwaitContext(func) { return doOutsideOfContext(32768 /* NodeFlags.AwaitContext */, func); } function doInYieldAndAwaitContext(func) { return doInsideOfContext(8192 /* NodeFlags.YieldContext */ | 32768 /* NodeFlags.AwaitContext */, func); } function doOutsideOfYieldAndAwaitContext(func) { return doOutsideOfContext(8192 /* NodeFlags.YieldContext */ | 32768 /* NodeFlags.AwaitContext */, func); } function inContext(flags) { return (contextFlags & flags) !== 0; } function inYieldContext() { return inContext(8192 /* NodeFlags.YieldContext */); } function inDisallowInContext() { return inContext(4096 /* NodeFlags.DisallowInContext */); } function inDisallowConditionalTypesContext() { return inContext(65536 /* NodeFlags.DisallowConditionalTypesContext */); } function inDecoratorContext() { return inContext(16384 /* NodeFlags.DecoratorContext */); } function inAwaitContext() { return inContext(32768 /* NodeFlags.AwaitContext */); } function parseErrorAtCurrentToken(message, arg0) { return parseErrorAt(scanner.getTokenPos(), scanner.getTextPos(), message, arg0); } function parseErrorAtPosition(start, length, message, arg0) { // Don't report another error if it would just be at the same position as the last error. var lastError = ts.lastOrUndefined(parseDiagnostics); var result; if (!lastError || start !== lastError.start) { result = ts.createDetachedDiagnostic(fileName, start, length, message, arg0); parseDiagnostics.push(result); } // Mark that we've encountered an error. We'll set an appropriate bit on the next // node we finish so that it can't be reused incrementally. parseErrorBeforeNextFinishedNode = true; return result; } function parseErrorAt(start, end, message, arg0) { return parseErrorAtPosition(start, end - start, message, arg0); } function parseErrorAtRange(range, message, arg0) { parseErrorAt(range.pos, range.end, message, arg0); } function scanError(message, length) { parseErrorAtPosition(scanner.getTextPos(), length, message); } function getNodePos() { return scanner.getStartPos(); } function hasPrecedingJSDocComment() { return scanner.hasPrecedingJSDocComment(); } // Use this function to access the current token instead of reading the currentToken // variable. Since function results aren't narrowed in control flow analysis, this ensures // that the type checker doesn't make wrong assumptions about the type of the current // token (e.g. a call to nextToken() changes the current token but the checker doesn't // reason about this side effect). Mainstream VMs inline simple functions like this, so // there is no performance penalty. function token() { return currentToken; } function nextTokenWithoutCheck() { return currentToken = scanner.scan(); } function nextTokenAnd(func) { nextToken(); return func(); } function nextToken() { // if the keyword had an escape if (ts.isKeyword(currentToken) && (scanner.hasUnicodeEscape() || scanner.hasExtendedUnicodeEscape())) { // issue a parse error for the escape parseErrorAt(scanner.getTokenPos(), scanner.getTextPos(), ts.Diagnostics.Keywords_cannot_contain_escape_characters); } return nextTokenWithoutCheck(); } function nextTokenJSDoc() { return currentToken = scanner.scanJsDocToken(); } function reScanGreaterToken() { return currentToken = scanner.reScanGreaterToken(); } function reScanSlashToken() { return currentToken = scanner.reScanSlashToken(); } function reScanTemplateToken(isTaggedTemplate) { return currentToken = scanner.reScanTemplateToken(isTaggedTemplate); } function reScanTemplateHeadOrNoSubstitutionTemplate() { return currentToken = scanner.reScanTemplateHeadOrNoSubstitutionTemplate(); } function reScanLessThanToken() { return currentToken = scanner.reScanLessThanToken(); } function reScanHashToken() { return currentToken = scanner.reScanHashToken(); } function scanJsxIdentifier() { return currentToken = scanner.scanJsxIdentifier(); } function scanJsxText() { return currentToken = scanner.scanJsxToken(); } function scanJsxAttributeValue() { return currentToken = scanner.scanJsxAttributeValue(); } function speculationHelper(callback, speculationKind) { // Keep track of the state we'll need to rollback to if lookahead fails (or if the // caller asked us to always reset our state). var saveToken = currentToken; var saveParseDiagnosticsLength = parseDiagnostics.length; var saveParseErrorBeforeNextFinishedNode = parseErrorBeforeNextFinishedNode; // Note: it is not actually necessary to save/restore the context flags here. That's // because the saving/restoring of these flags happens naturally through the recursive // descent nature of our parser. However, we still store this here just so we can // assert that invariant holds. var saveContextFlags = contextFlags; // If we're only looking ahead, then tell the scanner to only lookahead as well. // Otherwise, if we're actually speculatively parsing, then tell the scanner to do the // same. var result = speculationKind !== 0 /* SpeculationKind.TryParse */ ? scanner.lookAhead(callback) : scanner.tryScan(callback); ts.Debug.assert(saveContextFlags === contextFlags); // If our callback returned something 'falsy' or we're just looking ahead, // then unconditionally restore us to where we were. if (!result || speculationKind !== 0 /* SpeculationKind.TryParse */) { currentToken = saveToken; if (speculationKind !== 2 /* SpeculationKind.Reparse */) { parseDiagnostics.length = saveParseDiagnosticsLength; } parseErrorBeforeNextFinishedNode = saveParseErrorBeforeNextFinishedNode; } return result; } /** Invokes the provided callback then unconditionally restores the parser to the state it * was in immediately prior to invoking the callback. The result of invoking the callback * is returned from this function. */ function lookAhead(callback) { return speculationHelper(callback, 1 /* SpeculationKind.Lookahead */); } /** Invokes the provided callback. If the callback returns something falsy, then it restores * the parser to the state it was in immediately prior to invoking the callback. If the * callback returns something truthy, then the parser state is not rolled back. The result * of invoking the callback is returned from this function. */ function tryParse(callback) { return speculationHelper(callback, 0 /* SpeculationKind.TryParse */); } function isBindingIdentifier() { if (token() === 79 /* SyntaxKind.Identifier */) { return true; } // `let await`/`let yield` in [Yield] or [Await] are allowed here and disallowed in the binder. return token() > 116 /* SyntaxKind.LastReservedWord */; } // Ignore strict mode flag because we will report an error in type checker instead. function isIdentifier() { if (token() === 79 /* SyntaxKind.Identifier */) { return true; } // If we have a 'yield' keyword, and we're in the [yield] context, then 'yield' is // considered a keyword and is not an identifier. if (token() === 125 /* SyntaxKind.YieldKeyword */ && inYieldContext()) { return false; } // If we have a 'await' keyword, and we're in the [Await] context, then 'await' is // considered a keyword and is not an identifier. if (token() === 132 /* SyntaxKind.AwaitKeyword */ && inAwaitContext()) { return false; } return token() > 116 /* SyntaxKind.LastReservedWord */; } function parseExpected(kind, diagnosticMessage, shouldAdvance) { if (shouldAdvance === void 0) { shouldAdvance = true; } if (token() === kind) { if (shouldAdvance) { nextToken(); } return true; } // Report specific message if provided with one. Otherwise, report generic fallback message. if (diagnosticMessage) { parseErrorAtCurrentToken(diagnosticMessage); } else { parseErrorAtCurrentToken(ts.Diagnostics._0_expected, ts.tokenToString(kind)); } return false; } var viableKeywordSuggestions = Object.keys(ts.textToKeywordObj).filter(function (keyword) { return keyword.length > 2; }); /** * Provides a better error message than the generic "';' expected" if possible for * known common variants of a missing semicolon, such as from a mispelled names. * * @param node Node preceding the expected semicolon location. */ function parseErrorForMissingSemicolonAfter(node) { var _a; // Tagged template literals are sometimes used in places where only simple strings are allowed, i.e.: // module `M1` { // ^^^^^^^^^^^ This block is parsed as a template literal like module`M1`. if (ts.isTaggedTemplateExpression(node)) { parseErrorAt(ts.skipTrivia(sourceText, node.template.pos), node.template.end, ts.Diagnostics.Module_declaration_names_may_only_use_or_quoted_strings); return; } // Otherwise, if this isn't a well-known keyword-like identifier, give the generic fallback message. var expressionText = ts.isIdentifier(node) ? ts.idText(node) : undefined; if (!expressionText || !ts.isIdentifierText(expressionText, languageVersion)) { parseErrorAtCurrentToken(ts.Diagnostics._0_expected, ts.tokenToString(26 /* SyntaxKind.SemicolonToken */)); return; } var pos = ts.skipTrivia(sourceText, node.pos); // Some known keywords are likely signs of syntax being used improperly. switch (expressionText) { case "const": case "let": case "var": parseErrorAt(pos, node.end, ts.Diagnostics.Variable_declaration_not_allowed_at_this_location); return; case "declare": // If a declared node failed to parse, it would have emitted a diagnostic already. return; case "interface": parseErrorForInvalidName(ts.Diagnostics.Interface_name_cannot_be_0, ts.Diagnostics.Interface_must_be_given_a_name, 18 /* SyntaxKind.OpenBraceToken */); return; case "is": parseErrorAt(pos, scanner.getTextPos(), ts.Diagnostics.A_type_predicate_is_only_allowed_in_return_type_position_for_functions_and_methods); return; case "module": case "namespace": parseErrorForInvalidName(ts.Diagnostics.Namespace_name_cannot_be_0, ts.Diagnostics.Namespace_must_be_given_a_name, 18 /* SyntaxKind.OpenBraceToken */); return; case "type": parseErrorForInvalidName(ts.Diagnostics.Type_alias_name_cannot_be_0, ts.Diagnostics.Type_alias_must_be_given_a_name, 63 /* SyntaxKind.EqualsToken */); return; } // The user alternatively might have misspelled or forgotten to add a space after a common keyword. var suggestion = (_a = ts.getSpellingSuggestion(expressionText, viableKeywordSuggestions, function (n) { return n; })) !== null && _a !== void 0 ? _a : getSpaceSuggestion(expressionText); if (suggestion) { parseErrorAt(pos, node.end, ts.Diagnostics.Unknown_keyword_or_identifier_Did_you_mean_0, suggestion); return; } // Unknown tokens are handled with their own errors in the scanner if (token() === 0 /* SyntaxKind.Unknown */) { return; } // Otherwise, we know this some kind of unknown word, not just a missing expected semicolon. parseErrorAt(pos, node.end, ts.Diagnostics.Unexpected_keyword_or_identifier); } /** * Reports a diagnostic error for the current token being an invalid name. * * @param blankDiagnostic Diagnostic to report for the case of the name being blank (matched tokenIfBlankName). * @param nameDiagnostic Diagnostic to report for all other cases. * @param tokenIfBlankName Current token if the name was invalid for being blank (not provided / skipped). */ function parseErrorForInvalidName(nameDiagnostic, blankDiagnostic, tokenIfBlankName) { if (token() === tokenIfBlankName) { parseErrorAtCurrentToken(blankDiagnostic); } else { parseErrorAtCurrentToken(nameDiagnostic, scanner.getTokenValue()); } } function getSpaceSuggestion(expressionText) { for (var _i = 0, viableKeywordSuggestions_1 = viableKeywordSuggestions; _i < viableKeywordSuggestions_1.length; _i++) { var keyword = viableKeywordSuggestions_1[_i]; if (expressionText.length > keyword.length + 2 && ts.startsWith(expressionText, keyword)) { return "".concat(keyword, " ").concat(expressionText.slice(keyword.length)); } } return undefined; } function parseSemicolonAfterPropertyName(name, type, initializer) { if (token() === 59 /* SyntaxKind.AtToken */ && !scanner.hasPrecedingLineBreak()) { parseErrorAtCurrentToken(ts.Diagnostics.Decorators_must_precede_the_name_and_all_keywords_of_property_declarations); return; } if (token() === 20 /* SyntaxKind.OpenParenToken */) { parseErrorAtCurrentToken(ts.Diagnostics.Cannot_start_a_function_call_in_a_type_annotation); nextToken(); return; } if (type && !canParseSemicolon()) { if (initializer) { parseErrorAtCurrentToken(ts.Diagnostics._0_expected, ts.tokenToString(26 /* SyntaxKind.SemicolonToken */)); } else { parseErrorAtCurrentToken(ts.Diagnostics.Expected_for_property_initializer); } return; } if (tryParseSemicolon()) { return; } if (initializer) { parseErrorAtCurrentToken(ts.Diagnostics._0_expected, ts.tokenToString(26 /* SyntaxKind.SemicolonToken */)); return; } parseErrorForMissingSemicolonAfter(name); } function parseExpectedJSDoc(kind) { if (token() === kind) { nextTokenJSDoc(); return true; } parseErrorAtCurrentToken(ts.Diagnostics._0_expected, ts.tokenToString(kind)); return false; } function parseExpectedMatchingBrackets(openKind, closeKind, openParsed, openPosition) { if (token() === closeKind) { nextToken(); return; } var lastError = parseErrorAtCurrentToken(ts.Diagnostics._0_expected, ts.tokenToString(closeKind)); if (!openParsed) { return; } if (lastError) { ts.addRelatedInfo(lastError, ts.createDetachedDiagnostic(fileName, openPosition, 1, ts.Diagnostics.The_parser_expected_to_find_a_1_to_match_the_0_token_here, ts.tokenToString(openKind), ts.tokenToString(closeKind))); } } function parseOptional(t) { if (token() === t) { nextToken(); return true; } return false; } function parseOptionalToken(t) { if (token() === t) { return parseTokenNode(); } return undefined; } function parseOptionalTokenJSDoc(t) { if (token() === t) { return parseTokenNodeJSDoc(); } return undefined; } function parseExpectedToken(t, diagnosticMessage, arg0) { return parseOptionalToken(t) || createMissingNode(t, /*reportAtCurrentPosition*/ false, diagnosticMessage || ts.Diagnostics._0_expected, arg0 || ts.tokenToString(t)); } function parseExpectedTokenJSDoc(t) { return parseOptionalTokenJSDoc(t) || createMissingNode(t, /*reportAtCurrentPosition*/ false, ts.Diagnostics._0_expected, ts.tokenToString(t)); } function parseTokenNode() { var pos = getNodePos(); var kind = token(); nextToken(); return finishNode(factory.createToken(kind), pos); } function parseTokenNodeJSDoc() { var pos = getNodePos(); var kind = token(); nextTokenJSDoc(); return finishNode(factory.createToken(kind), pos); } function canParseSemicolon() { // If there's a real semicolon, then we can always parse it out. if (token() === 26 /* SyntaxKind.SemicolonToken */) { return true; } // We can parse out an optional semicolon in ASI cases in the following cases. return token() === 19 /* SyntaxKind.CloseBraceToken */ || token() === 1 /* SyntaxKind.EndOfFileToken */ || scanner.hasPrecedingLineBreak(); } function tryParseSemicolon() { if (!canParseSemicolon()) { return false; } if (token() === 26 /* SyntaxKind.SemicolonToken */) { // consume the semicolon if it was explicitly provided. nextToken(); } return true; } function parseSemicolon() { return tryParseSemicolon() || parseExpected(26 /* SyntaxKind.SemicolonToken */); } function createNodeArray(elements, pos, end, hasTrailingComma) { var array = factory.createNodeArray(elements, hasTrailingComma); ts.setTextRangePosEnd(array, pos, end !== null && end !== void 0 ? end : scanner.getStartPos()); return array; } function finishNode(node, pos, end) { ts.setTextRangePosEnd(node, pos, end !== null && end !== void 0 ? end : scanner.getStartPos()); if (contextFlags) { node.flags |= contextFlags; } // Keep track on the node if we encountered an error while parsing it. If we did, then // we cannot reuse the node incrementally. Once we've marked this node, clear out the // flag so that we don't mark any subsequent nodes. if (parseErrorBeforeNextFinishedNode) { parseErrorBeforeNextFinishedNode = false; node.flags |= 131072 /* NodeFlags.ThisNodeHasError */; } return node; } function createMissingNode(kind, reportAtCurrentPosition, diagnosticMessage, arg0) { if (reportAtCurrentPosition) { parseErrorAtPosition(scanner.getStartPos(), 0, diagnosticMessage, arg0); } else if (diagnosticMessage) { parseErrorAtCurrentToken(diagnosticMessage, arg0); } var pos = getNodePos(); var result = kind === 79 /* SyntaxKind.Identifier */ ? factory.createIdentifier("", /*typeArguments*/ undefined, /*originalKeywordKind*/ undefined) : ts.isTemplateLiteralKind(kind) ? factory.createTemplateLiteralLikeNode(kind, "", "", /*templateFlags*/ undefined) : kind === 8 /* SyntaxKind.NumericLiteral */ ? factory.createNumericLiteral("", /*numericLiteralFlags*/ undefined) : kind === 10 /* SyntaxKind.StringLiteral */ ? factory.createStringLiteral("", /*isSingleQuote*/ undefined) : kind === 276 /* SyntaxKind.MissingDeclaration */ ? factory.createMissingDeclaration() : factory.createToken(kind); return finishNode(result, pos); } function internIdentifier(text) { var identifier = identifiers.get(text); if (identifier === undefined) { identifiers.set(text, identifier = text); } return identifier; } // An identifier that starts with two underscores has an extra underscore character prepended to it to avoid issues // with magic property names like '__proto__'. The 'identifiers' object is used to share a single string instance for // each identifier in order to reduce memory consumption. function createIdentifier(isIdentifier, diagnosticMessage, privateIdentifierDiagnosticMessage) { if (isIdentifier) { identifierCount++; var pos = getNodePos(); // Store original token kind if it is not just an Identifier so we can report appropriate error later in type checker var originalKeywordKind = token(); var text = internIdentifier(scanner.getTokenValue()); nextTokenWithoutCheck(); return finishNode(factory.createIdentifier(text, /*typeArguments*/ undefined, originalKeywordKind), pos); } if (token() === 80 /* SyntaxKind.PrivateIdentifier */) { parseErrorAtCurrentToken(privateIdentifierDiagnosticMessage || ts.Diagnostics.Private_identifiers_are_not_allowed_outside_class_bodies); return createIdentifier(/*isIdentifier*/ true); } if (token() === 0 /* SyntaxKind.Unknown */ && scanner.tryScan(function () { return scanner.reScanInvalidIdentifier() === 79 /* SyntaxKind.Identifier */; })) { // Scanner has already recorded an 'Invalid character' error, so no need to add another from the parser. return createIdentifier(/*isIdentifier*/ true); } identifierCount++; // Only for end of file because the error gets reported incorrectly on embedded script tags. var reportAtCurrentPosition = token() === 1 /* SyntaxKind.EndOfFileToken */; var isReservedWord = scanner.isReservedWord(); var msgArg = scanner.getTokenText(); var defaultMessage = isReservedWord ? ts.Diagnostics.Identifier_expected_0_is_a_reserved_word_that_cannot_be_used_here : ts.Diagnostics.Identifier_expected; return createMissingNode(79 /* SyntaxKind.Identifier */, reportAtCurrentPosition, diagnosticMessage || defaultMessage, msgArg); } function parseBindingIdentifier(privateIdentifierDiagnosticMessage) { return createIdentifier(isBindingIdentifier(), /*diagnosticMessage*/ undefined, privateIdentifierDiagnosticMessage); } function parseIdentifier(diagnosticMessage, privateIdentifierDiagnosticMessage) { return createIdentifier(isIdentifier(), diagnosticMessage, privateIdentifierDiagnosticMessage); } function parseIdentifierName(diagnosticMessage) { return createIdentifier(ts.tokenIsIdentifierOrKeyword(token()), diagnosticMessage); } function isLiteralPropertyName() { return ts.tokenIsIdentifierOrKeyword(token()) || token() === 10 /* SyntaxKind.StringLiteral */ || token() === 8 /* SyntaxKind.NumericLiteral */; } function isAssertionKey() { return ts.tokenIsIdentifierOrKeyword(token()) || token() === 10 /* SyntaxKind.StringLiteral */; } function parsePropertyNameWorker(allowComputedPropertyNames) { if (token() === 10 /* SyntaxKind.StringLiteral */ || token() === 8 /* SyntaxKind.NumericLiteral */) { var node = parseLiteralNode(); node.text = internIdentifier(node.text); return node; } if (allowComputedPropertyNames && token() === 22 /* SyntaxKind.OpenBracketToken */) { return parseComputedPropertyName(); } if (token() === 80 /* SyntaxKind.PrivateIdentifier */) { return parsePrivateIdentifier(); } return parseIdentifierName(); } function parsePropertyName() { return parsePropertyNameWorker(/*allowComputedPropertyNames*/ true); } function parseComputedPropertyName() { // PropertyName [Yield]: // LiteralPropertyName // ComputedPropertyName[?Yield] var pos = getNodePos(); parseExpected(22 /* SyntaxKind.OpenBracketToken */); // We parse any expression (including a comma expression). But the grammar // says that only an assignment expression is allowed, so the grammar checker // will error if it sees a comma expression. var expression = allowInAnd(parseExpression); parseExpected(23 /* SyntaxKind.CloseBracketToken */); return finishNode(factory.createComputedPropertyName(expression), pos); } function internPrivateIdentifier(text) { var privateIdentifier = privateIdentifiers.get(text); if (privateIdentifier === undefined) { privateIdentifiers.set(text, privateIdentifier = text); } return privateIdentifier; } function parsePrivateIdentifier() { var pos = getNodePos(); var node = factory.createPrivateIdentifier(internPrivateIdentifier(scanner.getTokenText())); nextToken(); return finishNode(node, pos); } function parseContextualModifier(t) { return token() === t && tryParse(nextTokenCanFollowModifier); } function nextTokenIsOnSameLineAndCanFollowModifier() { nextToken(); if (scanner.hasPrecedingLineBreak()) { return false; } return canFollowModifier(); } function nextTokenCanFollowModifier() { switch (token()) { case 85 /* SyntaxKind.ConstKeyword */: // 'const' is only a modifier if followed by 'enum'. return nextToken() === 92 /* SyntaxKind.EnumKeyword */; case 93 /* SyntaxKind.ExportKeyword */: nextToken(); if (token() === 88 /* SyntaxKind.DefaultKeyword */) { return lookAhead(nextTokenCanFollowDefaultKeyword); } if (token() === 152 /* SyntaxKind.TypeKeyword */) { return lookAhead(nextTokenCanFollowExportModifier); } return canFollowExportModifier(); case 88 /* SyntaxKind.DefaultKeyword */: return nextTokenCanFollowDefaultKeyword(); case 124 /* SyntaxKind.StaticKeyword */: case 136 /* SyntaxKind.GetKeyword */: case 149 /* SyntaxKind.SetKeyword */: nextToken(); return canFollowModifier(); default: return nextTokenIsOnSameLineAndCanFollowModifier(); } } function canFollowExportModifier() { return token() !== 41 /* SyntaxKind.AsteriskToken */ && token() !== 127 /* SyntaxKind.AsKeyword */ && token() !== 18 /* SyntaxKind.OpenBraceToken */ && canFollowModifier(); } function nextTokenCanFollowExportModifier() { nextToken(); return canFollowExportModifier(); } function parseAnyContextualModifier() { return ts.isModifierKind(token()) && tryParse(nextTokenCanFollowModifier); } function canFollowModifier() { return token() === 22 /* SyntaxKind.OpenBracketToken */ || token() === 18 /* SyntaxKind.OpenBraceToken */ || token() === 41 /* SyntaxKind.AsteriskToken */ || token() === 25 /* SyntaxKind.DotDotDotToken */ || isLiteralPropertyName(); } function nextTokenCanFollowDefaultKeyword() { nextToken(); return token() === 84 /* SyntaxKind.ClassKeyword */ || token() === 98 /* SyntaxKind.FunctionKeyword */ || token() === 118 /* SyntaxKind.InterfaceKeyword */ || (token() === 126 /* SyntaxKind.AbstractKeyword */ && lookAhead(nextTokenIsClassKeywordOnSameLine)) || (token() === 131 /* SyntaxKind.AsyncKeyword */ && lookAhead(nextTokenIsFunctionKeywordOnSameLine)); } // True if positioned at the start of a list element function isListElement(parsingContext, inErrorRecovery) { var node = currentNode(parsingContext); if (node) { return true; } switch (parsingContext) { case 0 /* ParsingContext.SourceElements */: case 1 /* ParsingContext.BlockStatements */: case 3 /* ParsingContext.SwitchClauseStatements */: // If we're in error recovery, then we don't want to treat ';' as an empty statement. // The problem is that ';' can show up in far too many contexts, and if we see one // and assume it's a statement, then we may bail out inappropriately from whatever // we're parsing. For example, if we have a semicolon in the middle of a class, then // we really don't want to assume the class is over and we're on a statement in the // outer module. We just want to consume and move on. return !(token() === 26 /* SyntaxKind.SemicolonToken */ && inErrorRecovery) && isStartOfStatement(); case 2 /* ParsingContext.SwitchClauses */: return token() === 82 /* SyntaxKind.CaseKeyword */ || token() === 88 /* SyntaxKind.DefaultKeyword */; case 4 /* ParsingContext.TypeMembers */: return lookAhead(isTypeMemberStart); case 5 /* ParsingContext.ClassMembers */: // We allow semicolons as class elements (as specified by ES6) as long as we're // not in error recovery. If we're in error recovery, we don't want an errant // semicolon to be treated as a class member (since they're almost always used // for statements. return lookAhead(isClassMemberStart) || (token() === 26 /* SyntaxKind.SemicolonToken */ && !inErrorRecovery); case 6 /* ParsingContext.EnumMembers */: // Include open bracket computed properties. This technically also lets in indexers, // which would be a candidate for improved error reporting. return token() === 22 /* SyntaxKind.OpenBracketToken */ || isLiteralPropertyName(); case 12 /* ParsingContext.ObjectLiteralMembers */: switch (token()) { case 22 /* SyntaxKind.OpenBracketToken */: case 41 /* SyntaxKind.AsteriskToken */: case 25 /* SyntaxKind.DotDotDotToken */: case 24 /* SyntaxKind.DotToken */: // Not an object literal member, but don't want to close the object (see `tests/cases/fourslash/completionsDotInObjectLiteral.ts`) return true; default: return isLiteralPropertyName(); } case 18 /* ParsingContext.RestProperties */: return isLiteralPropertyName(); case 9 /* ParsingContext.ObjectBindingElements */: return token() === 22 /* SyntaxKind.OpenBracketToken */ || token() === 25 /* SyntaxKind.DotDotDotToken */ || isLiteralPropertyName(); case 24 /* ParsingContext.AssertEntries */: return isAssertionKey(); case 7 /* ParsingContext.HeritageClauseElement */: // If we see `{ ... }` then only consume it as an expression if it is followed by `,` or `{` // That way we won't consume the body of a class in its heritage clause. if (token() === 18 /* SyntaxKind.OpenBraceToken */) { return lookAhead(isValidHeritageClauseObjectLiteral); } if (!inErrorRecovery) { return isStartOfLeftHandSideExpression() && !isHeritageClauseExtendsOrImplementsKeyword(); } else { // If we're in error recovery we tighten up what we're willing to match. // That way we don't treat something like "this" as a valid heritage clause // element during recovery. return isIdentifier() && !isHeritageClauseExtendsOrImplementsKeyword(); } case 8 /* ParsingContext.VariableDeclarations */: return isBindingIdentifierOrPrivateIdentifierOrPattern(); case 10 /* ParsingContext.ArrayBindingElements */: return token() === 27 /* SyntaxKind.CommaToken */ || token() === 25 /* SyntaxKind.DotDotDotToken */ || isBindingIdentifierOrPrivateIdentifierOrPattern(); case 19 /* ParsingContext.TypeParameters */: return token() === 101 /* SyntaxKind.InKeyword */ || isIdentifier(); case 15 /* ParsingContext.ArrayLiteralMembers */: switch (token()) { case 27 /* SyntaxKind.CommaToken */: case 24 /* SyntaxKind.DotToken */: // Not an array literal member, but don't want to close the array (see `tests/cases/fourslash/completionsDotInArrayLiteralInObjectLiteral.ts`) return true; } // falls through case 11 /* ParsingContext.ArgumentExpressions */: return token() === 25 /* SyntaxKind.DotDotDotToken */ || isStartOfExpression(); case 16 /* ParsingContext.Parameters */: return isStartOfParameter(/*isJSDocParameter*/ false); case 17 /* ParsingContext.JSDocParameters */: return isStartOfParameter(/*isJSDocParameter*/ true); case 20 /* ParsingContext.TypeArguments */: case 21 /* ParsingContext.TupleElementTypes */: return token() === 27 /* SyntaxKind.CommaToken */ || isStartOfType(); case 22 /* ParsingContext.HeritageClauses */: return isHeritageClause(); case 23 /* ParsingContext.ImportOrExportSpecifiers */: return ts.tokenIsIdentifierOrKeyword(token()); case 13 /* ParsingContext.JsxAttributes */: return ts.tokenIsIdentifierOrKeyword(token()) || token() === 18 /* SyntaxKind.OpenBraceToken */; case 14 /* ParsingContext.JsxChildren */: return true; } return ts.Debug.fail("Non-exhaustive case in 'isListElement'."); } function isValidHeritageClauseObjectLiteral() { ts.Debug.assert(token() === 18 /* SyntaxKind.OpenBraceToken */); if (nextToken() === 19 /* SyntaxKind.CloseBraceToken */) { // if we see "extends {}" then only treat the {} as what we're extending (and not // the class body) if we have: // // extends {} { // extends {}, // extends {} extends // extends {} implements var next = nextToken(); return next === 27 /* SyntaxKind.CommaToken */ || next === 18 /* SyntaxKind.OpenBraceToken */ || next === 94 /* SyntaxKind.ExtendsKeyword */ || next === 117 /* SyntaxKind.ImplementsKeyword */; } return true; } function nextTokenIsIdentifier() { nextToken(); return isIdentifier(); } function nextTokenIsIdentifierOrKeyword() { nextToken(); return ts.tokenIsIdentifierOrKeyword(token()); } function nextTokenIsIdentifierOrKeywordOrGreaterThan() { nextToken(); return ts.tokenIsIdentifierOrKeywordOrGreaterThan(token()); } function isHeritageClauseExtendsOrImplementsKeyword() { if (token() === 117 /* SyntaxKind.ImplementsKeyword */ || token() === 94 /* SyntaxKind.ExtendsKeyword */) { return lookAhead(nextTokenIsStartOfExpression); } return false; } function nextTokenIsStartOfExpression() { nextToken(); return isStartOfExpression(); } function nextTokenIsStartOfType() { nextToken(); return isStartOfType(); } // True if positioned at a list terminator function isListTerminator(kind) { if (token() === 1 /* SyntaxKind.EndOfFileToken */) { // Being at the end of the file ends all lists. return true; } switch (kind) { case 1 /* ParsingContext.BlockStatements */: case 2 /* ParsingContext.SwitchClauses */: case 4 /* ParsingContext.TypeMembers */: case 5 /* ParsingContext.ClassMembers */: case 6 /* ParsingContext.EnumMembers */: case 12 /* ParsingContext.ObjectLiteralMembers */: case 9 /* ParsingContext.ObjectBindingElements */: case 23 /* ParsingContext.ImportOrExportSpecifiers */: case 24 /* ParsingContext.AssertEntries */: return token() === 19 /* SyntaxKind.CloseBraceToken */; case 3 /* ParsingContext.SwitchClauseStatements */: return token() === 19 /* SyntaxKind.CloseBraceToken */ || token() === 82 /* SyntaxKind.CaseKeyword */ || token() === 88 /* SyntaxKind.DefaultKeyword */; case 7 /* ParsingContext.HeritageClauseElement */: return token() === 18 /* SyntaxKind.OpenBraceToken */ || token() === 94 /* SyntaxKind.ExtendsKeyword */ || token() === 117 /* SyntaxKind.ImplementsKeyword */; case 8 /* ParsingContext.VariableDeclarations */: return isVariableDeclaratorListTerminator(); case 19 /* ParsingContext.TypeParameters */: // Tokens other than '>' are here for better error recovery return token() === 31 /* SyntaxKind.GreaterThanToken */ || token() === 20 /* SyntaxKind.OpenParenToken */ || token() === 18 /* SyntaxKind.OpenBraceToken */ || token() === 94 /* SyntaxKind.ExtendsKeyword */ || token() === 117 /* SyntaxKind.ImplementsKeyword */; case 11 /* ParsingContext.ArgumentExpressions */: // Tokens other than ')' are here for better error recovery return token() === 21 /* SyntaxKind.CloseParenToken */ || token() === 26 /* SyntaxKind.SemicolonToken */; case 15 /* ParsingContext.ArrayLiteralMembers */: case 21 /* ParsingContext.TupleElementTypes */: case 10 /* ParsingContext.ArrayBindingElements */: return token() === 23 /* SyntaxKind.CloseBracketToken */; case 17 /* ParsingContext.JSDocParameters */: case 16 /* ParsingContext.Parameters */: case 18 /* ParsingContext.RestProperties */: // Tokens other than ')' and ']' (the latter for index signatures) are here for better error recovery return token() === 21 /* SyntaxKind.CloseParenToken */ || token() === 23 /* SyntaxKind.CloseBracketToken */ /*|| token === SyntaxKind.OpenBraceToken*/; case 20 /* ParsingContext.TypeArguments */: // All other tokens should cause the type-argument to terminate except comma token return token() !== 27 /* SyntaxKind.CommaToken */; case 22 /* ParsingContext.HeritageClauses */: return token() === 18 /* SyntaxKind.OpenBraceToken */ || token() === 19 /* SyntaxKind.CloseBraceToken */; case 13 /* ParsingContext.JsxAttributes */: return token() === 31 /* SyntaxKind.GreaterThanToken */ || token() === 43 /* SyntaxKind.SlashToken */; case 14 /* ParsingContext.JsxChildren */: return token() === 29 /* SyntaxKind.LessThanToken */ && lookAhead(nextTokenIsSlash); default: return false; } } function isVariableDeclaratorListTerminator() { // If we can consume a semicolon (either explicitly, or with ASI), then consider us done // with parsing the list of variable declarators. if (canParseSemicolon()) { return true; } // in the case where we're parsing the variable declarator of a 'for-in' statement, we // are done if we see an 'in' keyword in front of us. Same with for-of if (isInOrOfKeyword(token())) { return true; } // ERROR RECOVERY TWEAK: // For better error recovery, if we see an '=>' then we just stop immediately. We've got an // arrow function here and it's going to be very unlikely that we'll resynchronize and get // another variable declaration. if (token() === 38 /* SyntaxKind.EqualsGreaterThanToken */) { return true; } // Keep trying to parse out variable declarators. return false; } // True if positioned at element or terminator of the current list or any enclosing list function isInSomeParsingContext() { for (var kind = 0; kind < 25 /* ParsingContext.Count */; kind++) { if (parsingContext & (1 << kind)) { if (isListElement(kind, /*inErrorRecovery*/ true) || isListTerminator(kind)) { return true; } } } return false; } // Parses a list of elements function parseList(kind, parseElement) { var saveParsingContext = parsingContext; parsingContext |= 1 << kind; var list = []; var listPos = getNodePos(); while (!isListTerminator(kind)) { if (isListElement(kind, /*inErrorRecovery*/ false)) { list.push(parseListElement(kind, parseElement)); continue; } if (abortParsingListOrMoveToNextToken(kind)) { break; } } parsingContext = saveParsingContext; return createNodeArray(list, listPos); } function parseListElement(parsingContext, parseElement) { var node = currentNode(parsingContext); if (node) { return consumeNode(node); } return parseElement(); } function currentNode(parsingContext) { // If we don't have a cursor or the parsing context isn't reusable, there's nothing to reuse. // // If there is an outstanding parse error that we've encountered, but not attached to // some node, then we cannot get a node from the old source tree. This is because we // want to mark the next node we encounter as being unusable. // // Note: This may be too conservative. Perhaps we could reuse the node and set the bit // on it (or its leftmost child) as having the error. For now though, being conservative // is nice and likely won't ever affect perf. if (!syntaxCursor || !isReusableParsingContext(parsingContext) || parseErrorBeforeNextFinishedNode) { return undefined; } var node = syntaxCursor.currentNode(scanner.getStartPos()); // Can't reuse a missing node. // Can't reuse a node that intersected the change range. // Can't reuse a node that contains a parse error. This is necessary so that we // produce the same set of errors again. if (ts.nodeIsMissing(node) || node.intersectsChange || ts.containsParseError(node)) { return undefined; } // We can only reuse a node if it was parsed under the same strict mode that we're // currently in. i.e. if we originally parsed a node in non-strict mode, but then // the user added 'using strict' at the top of the file, then we can't use that node // again as the presence of strict mode may cause us to parse the tokens in the file // differently. // // Note: we *can* reuse tokens when the strict mode changes. That's because tokens // are unaffected by strict mode. It's just the parser will decide what to do with it // differently depending on what mode it is in. // // This also applies to all our other context flags as well. var nodeContextFlags = node.flags & 50720768 /* NodeFlags.ContextFlags */; if (nodeContextFlags !== contextFlags) { return undefined; } // Ok, we have a node that looks like it could be reused. Now verify that it is valid // in the current list parsing context that we're currently at. if (!canReuseNode(node, parsingContext)) { return undefined; } if (node.jsDocCache) { // jsDocCache may include tags from parent nodes, which might have been modified. node.jsDocCache = undefined; } return node; } function consumeNode(node) { // Move the scanner so it is after the node we just consumed. scanner.setTextPos(node.end); nextToken(); return node; } function isReusableParsingContext(parsingContext) { switch (parsingContext) { case 5 /* ParsingContext.ClassMembers */: case 2 /* ParsingContext.SwitchClauses */: case 0 /* ParsingContext.SourceElements */: case 1 /* ParsingContext.BlockStatements */: case 3 /* ParsingContext.SwitchClauseStatements */: case 6 /* ParsingContext.EnumMembers */: case 4 /* ParsingContext.TypeMembers */: case 8 /* ParsingContext.VariableDeclarations */: case 17 /* ParsingContext.JSDocParameters */: case 16 /* ParsingContext.Parameters */: return true; } return false; } function canReuseNode(node, parsingContext) { switch (parsingContext) { case 5 /* ParsingContext.ClassMembers */: return isReusableClassMember(node); case 2 /* ParsingContext.SwitchClauses */: return isReusableSwitchClause(node); case 0 /* ParsingContext.SourceElements */: case 1 /* ParsingContext.BlockStatements */: case 3 /* ParsingContext.SwitchClauseStatements */: return isReusableStatement(node); case 6 /* ParsingContext.EnumMembers */: return isReusableEnumMember(node); case 4 /* ParsingContext.TypeMembers */: return isReusableTypeMember(node); case 8 /* ParsingContext.VariableDeclarations */: return isReusableVariableDeclaration(node); case 17 /* ParsingContext.JSDocParameters */: case 16 /* ParsingContext.Parameters */: return isReusableParameter(node); // Any other lists we do not care about reusing nodes in. But feel free to add if // you can do so safely. Danger areas involve nodes that may involve speculative // parsing. If speculative parsing is involved with the node, then the range the // parser reached while looking ahead might be in the edited range (see the example // in canReuseVariableDeclaratorNode for a good case of this). // case ParsingContext.HeritageClauses: // This would probably be safe to reuse. There is no speculative parsing with // heritage clauses. // case ParsingContext.TypeParameters: // This would probably be safe to reuse. There is no speculative parsing with // type parameters. Note that that's because type *parameters* only occur in // unambiguous *type* contexts. While type *arguments* occur in very ambiguous // *expression* contexts. // case ParsingContext.TupleElementTypes: // This would probably be safe to reuse. There is no speculative parsing with // tuple types. // Technically, type argument list types are probably safe to reuse. While // speculative parsing is involved with them (since type argument lists are only // produced from speculative parsing a < as a type argument list), we only have // the types because speculative parsing succeeded. Thus, the lookahead never // went past the end of the list and rewound. // case ParsingContext.TypeArguments: // Note: these are almost certainly not safe to ever reuse. Expressions commonly // need a large amount of lookahead, and we should not reuse them as they may // have actually intersected the edit. // case ParsingContext.ArgumentExpressions: // This is not safe to reuse for the same reason as the 'AssignmentExpression' // cases. i.e. a property assignment may end with an expression, and thus might // have lookahead far beyond it's old node. // case ParsingContext.ObjectLiteralMembers: // This is probably not safe to reuse. There can be speculative parsing with // type names in a heritage clause. There can be generic names in the type // name list, and there can be left hand side expressions (which can have type // arguments.) // case ParsingContext.HeritageClauseElement: // Perhaps safe to reuse, but it's unlikely we'd see more than a dozen attributes // on any given element. Same for children. // case ParsingContext.JsxAttributes: // case ParsingContext.JsxChildren: } return false; } function isReusableClassMember(node) { if (node) { switch (node.kind) { case 171 /* SyntaxKind.Constructor */: case 176 /* SyntaxKind.IndexSignature */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 167 /* SyntaxKind.PropertyDeclaration */: case 234 /* SyntaxKind.SemicolonClassElement */: return true; case 169 /* SyntaxKind.MethodDeclaration */: // Method declarations are not necessarily reusable. An object-literal // may have a method calls "constructor(...)" and we must reparse that // into an actual .ConstructorDeclaration. var methodDeclaration = node; var nameIsConstructor = methodDeclaration.name.kind === 79 /* SyntaxKind.Identifier */ && methodDeclaration.name.originalKeywordKind === 134 /* SyntaxKind.ConstructorKeyword */; return !nameIsConstructor; } } return false; } function isReusableSwitchClause(node) { if (node) { switch (node.kind) { case 289 /* SyntaxKind.CaseClause */: case 290 /* SyntaxKind.DefaultClause */: return true; } } return false; } function isReusableStatement(node) { if (node) { switch (node.kind) { case 256 /* SyntaxKind.FunctionDeclaration */: case 237 /* SyntaxKind.VariableStatement */: case 235 /* SyntaxKind.Block */: case 239 /* SyntaxKind.IfStatement */: case 238 /* SyntaxKind.ExpressionStatement */: case 251 /* SyntaxKind.ThrowStatement */: case 247 /* SyntaxKind.ReturnStatement */: case 249 /* SyntaxKind.SwitchStatement */: case 246 /* SyntaxKind.BreakStatement */: case 245 /* SyntaxKind.ContinueStatement */: case 243 /* SyntaxKind.ForInStatement */: case 244 /* SyntaxKind.ForOfStatement */: case 242 /* SyntaxKind.ForStatement */: case 241 /* SyntaxKind.WhileStatement */: case 248 /* SyntaxKind.WithStatement */: case 236 /* SyntaxKind.EmptyStatement */: case 252 /* SyntaxKind.TryStatement */: case 250 /* SyntaxKind.LabeledStatement */: case 240 /* SyntaxKind.DoStatement */: case 253 /* SyntaxKind.DebuggerStatement */: case 266 /* SyntaxKind.ImportDeclaration */: case 265 /* SyntaxKind.ImportEqualsDeclaration */: case 272 /* SyntaxKind.ExportDeclaration */: case 271 /* SyntaxKind.ExportAssignment */: case 261 /* SyntaxKind.ModuleDeclaration */: case 257 /* SyntaxKind.ClassDeclaration */: case 258 /* SyntaxKind.InterfaceDeclaration */: case 260 /* SyntaxKind.EnumDeclaration */: case 259 /* SyntaxKind.TypeAliasDeclaration */: return true; } } return false; } function isReusableEnumMember(node) { return node.kind === 299 /* SyntaxKind.EnumMember */; } function isReusableTypeMember(node) { if (node) { switch (node.kind) { case 175 /* SyntaxKind.ConstructSignature */: case 168 /* SyntaxKind.MethodSignature */: case 176 /* SyntaxKind.IndexSignature */: case 166 /* SyntaxKind.PropertySignature */: case 174 /* SyntaxKind.CallSignature */: return true; } } return false; } function isReusableVariableDeclaration(node) { if (node.kind !== 254 /* SyntaxKind.VariableDeclaration */) { return false; } // Very subtle incremental parsing bug. Consider the following code: // // let v = new List < A, B // // This is actually legal code. It's a list of variable declarators "v = new List() // // then we have a problem. "v = new List= 0); } function getExpectedCommaDiagnostic(kind) { return kind === 6 /* ParsingContext.EnumMembers */ ? ts.Diagnostics.An_enum_member_name_must_be_followed_by_a_or : undefined; } function createMissingList() { var list = createNodeArray([], getNodePos()); list.isMissingList = true; return list; } function isMissingList(arr) { return !!arr.isMissingList; } function parseBracketedList(kind, parseElement, open, close) { if (parseExpected(open)) { var result = parseDelimitedList(kind, parseElement); parseExpected(close); return result; } return createMissingList(); } function parseEntityName(allowReservedWords, diagnosticMessage) { var pos = getNodePos(); var entity = allowReservedWords ? parseIdentifierName(diagnosticMessage) : parseIdentifier(diagnosticMessage); var dotPos = getNodePos(); while (parseOptional(24 /* SyntaxKind.DotToken */)) { if (token() === 29 /* SyntaxKind.LessThanToken */) { // the entity is part of a JSDoc-style generic, so record the trailing dot for later error reporting entity.jsdocDotPos = dotPos; break; } dotPos = getNodePos(); entity = finishNode(factory.createQualifiedName(entity, parseRightSideOfDot(allowReservedWords, /* allowPrivateIdentifiers */ false)), pos); } return entity; } function createQualifiedName(entity, name) { return finishNode(factory.createQualifiedName(entity, name), entity.pos); } function parseRightSideOfDot(allowIdentifierNames, allowPrivateIdentifiers) { // Technically a keyword is valid here as all identifiers and keywords are identifier names. // However, often we'll encounter this in error situations when the identifier or keyword // is actually starting another valid construct. // // So, we check for the following specific case: // // name. // identifierOrKeyword identifierNameOrKeyword // // Note: the newlines are important here. For example, if that above code // were rewritten into: // // name.identifierOrKeyword // identifierNameOrKeyword // // Then we would consider it valid. That's because ASI would take effect and // the code would be implicitly: "name.identifierOrKeyword; identifierNameOrKeyword". // In the first case though, ASI will not take effect because there is not a // line terminator after the identifier or keyword. if (scanner.hasPrecedingLineBreak() && ts.tokenIsIdentifierOrKeyword(token())) { var matchesPattern = lookAhead(nextTokenIsIdentifierOrKeywordOnSameLine); if (matchesPattern) { // Report that we need an identifier. However, report it right after the dot, // and not on the next token. This is because the next token might actually // be an identifier and the error would be quite confusing. return createMissingNode(79 /* SyntaxKind.Identifier */, /*reportAtCurrentPosition*/ true, ts.Diagnostics.Identifier_expected); } } if (token() === 80 /* SyntaxKind.PrivateIdentifier */) { var node = parsePrivateIdentifier(); return allowPrivateIdentifiers ? node : createMissingNode(79 /* SyntaxKind.Identifier */, /*reportAtCurrentPosition*/ true, ts.Diagnostics.Identifier_expected); } return allowIdentifierNames ? parseIdentifierName() : parseIdentifier(); } function parseTemplateSpans(isTaggedTemplate) { var pos = getNodePos(); var list = []; var node; do { node = parseTemplateSpan(isTaggedTemplate); list.push(node); } while (node.literal.kind === 16 /* SyntaxKind.TemplateMiddle */); return createNodeArray(list, pos); } function parseTemplateExpression(isTaggedTemplate) { var pos = getNodePos(); return finishNode(factory.createTemplateExpression(parseTemplateHead(isTaggedTemplate), parseTemplateSpans(isTaggedTemplate)), pos); } function parseTemplateType() { var pos = getNodePos(); return finishNode(factory.createTemplateLiteralType(parseTemplateHead(/*isTaggedTemplate*/ false), parseTemplateTypeSpans()), pos); } function parseTemplateTypeSpans() { var pos = getNodePos(); var list = []; var node; do { node = parseTemplateTypeSpan(); list.push(node); } while (node.literal.kind === 16 /* SyntaxKind.TemplateMiddle */); return createNodeArray(list, pos); } function parseTemplateTypeSpan() { var pos = getNodePos(); return finishNode(factory.createTemplateLiteralTypeSpan(parseType(), parseLiteralOfTemplateSpan(/*isTaggedTemplate*/ false)), pos); } function parseLiteralOfTemplateSpan(isTaggedTemplate) { if (token() === 19 /* SyntaxKind.CloseBraceToken */) { reScanTemplateToken(isTaggedTemplate); return parseTemplateMiddleOrTemplateTail(); } else { // TODO(rbuckton): Do we need to call `parseExpectedToken` or can we just call `createMissingNode` directly? return parseExpectedToken(17 /* SyntaxKind.TemplateTail */, ts.Diagnostics._0_expected, ts.tokenToString(19 /* SyntaxKind.CloseBraceToken */)); } } function parseTemplateSpan(isTaggedTemplate) { var pos = getNodePos(); return finishNode(factory.createTemplateSpan(allowInAnd(parseExpression), parseLiteralOfTemplateSpan(isTaggedTemplate)), pos); } function parseLiteralNode() { return parseLiteralLikeNode(token()); } function parseTemplateHead(isTaggedTemplate) { if (isTaggedTemplate) { reScanTemplateHeadOrNoSubstitutionTemplate(); } var fragment = parseLiteralLikeNode(token()); ts.Debug.assert(fragment.kind === 15 /* SyntaxKind.TemplateHead */, "Template head has wrong token kind"); return fragment; } function parseTemplateMiddleOrTemplateTail() { var fragment = parseLiteralLikeNode(token()); ts.Debug.assert(fragment.kind === 16 /* SyntaxKind.TemplateMiddle */ || fragment.kind === 17 /* SyntaxKind.TemplateTail */, "Template fragment has wrong token kind"); return fragment; } function getTemplateLiteralRawText(kind) { var isLast = kind === 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */ || kind === 17 /* SyntaxKind.TemplateTail */; var tokenText = scanner.getTokenText(); return tokenText.substring(1, tokenText.length - (scanner.isUnterminated() ? 0 : isLast ? 1 : 2)); } function parseLiteralLikeNode(kind) { var pos = getNodePos(); var node = ts.isTemplateLiteralKind(kind) ? factory.createTemplateLiteralLikeNode(kind, scanner.getTokenValue(), getTemplateLiteralRawText(kind), scanner.getTokenFlags() & 2048 /* TokenFlags.TemplateLiteralLikeFlags */) : // Octal literals are not allowed in strict mode or ES5 // Note that theoretically the following condition would hold true literals like 009, // which is not octal. But because of how the scanner separates the tokens, we would // never get a token like this. Instead, we would get 00 and 9 as two separate tokens. // We also do not need to check for negatives because any prefix operator would be part of a // parent unary expression. kind === 8 /* SyntaxKind.NumericLiteral */ ? factory.createNumericLiteral(scanner.getTokenValue(), scanner.getNumericLiteralFlags()) : kind === 10 /* SyntaxKind.StringLiteral */ ? factory.createStringLiteral(scanner.getTokenValue(), /*isSingleQuote*/ undefined, scanner.hasExtendedUnicodeEscape()) : ts.isLiteralKind(kind) ? factory.createLiteralLikeNode(kind, scanner.getTokenValue()) : ts.Debug.fail(); if (scanner.hasExtendedUnicodeEscape()) { node.hasExtendedUnicodeEscape = true; } if (scanner.isUnterminated()) { node.isUnterminated = true; } nextToken(); return finishNode(node, pos); } // TYPES function parseEntityNameOfTypeReference() { return parseEntityName(/*allowReservedWords*/ true, ts.Diagnostics.Type_expected); } function parseTypeArgumentsOfTypeReference() { if (!scanner.hasPrecedingLineBreak() && reScanLessThanToken() === 29 /* SyntaxKind.LessThanToken */) { return parseBracketedList(20 /* ParsingContext.TypeArguments */, parseType, 29 /* SyntaxKind.LessThanToken */, 31 /* SyntaxKind.GreaterThanToken */); } } function parseTypeReference() { var pos = getNodePos(); return finishNode(factory.createTypeReferenceNode(parseEntityNameOfTypeReference(), parseTypeArgumentsOfTypeReference()), pos); } // If true, we should abort parsing an error function. function typeHasArrowFunctionBlockingParseError(node) { switch (node.kind) { case 178 /* SyntaxKind.TypeReference */: return ts.nodeIsMissing(node.typeName); case 179 /* SyntaxKind.FunctionType */: case 180 /* SyntaxKind.ConstructorType */: { var _a = node, parameters = _a.parameters, type = _a.type; return isMissingList(parameters) || typeHasArrowFunctionBlockingParseError(type); } case 191 /* SyntaxKind.ParenthesizedType */: return typeHasArrowFunctionBlockingParseError(node.type); default: return false; } } function parseThisTypePredicate(lhs) { nextToken(); return finishNode(factory.createTypePredicateNode(/*assertsModifier*/ undefined, lhs, parseType()), lhs.pos); } function parseThisTypeNode() { var pos = getNodePos(); nextToken(); return finishNode(factory.createThisTypeNode(), pos); } function parseJSDocAllType() { var pos = getNodePos(); nextToken(); return finishNode(factory.createJSDocAllType(), pos); } function parseJSDocNonNullableType() { var pos = getNodePos(); nextToken(); return finishNode(factory.createJSDocNonNullableType(parseNonArrayType(), /*postfix*/ false), pos); } function parseJSDocUnknownOrNullableType() { var pos = getNodePos(); // skip the ? nextToken(); // Need to lookahead to decide if this is a nullable or unknown type. // Here are cases where we'll pick the unknown type: // // Foo(?, // { a: ? } // Foo(?) // Foo // Foo(?= // (?| if (token() === 27 /* SyntaxKind.CommaToken */ || token() === 19 /* SyntaxKind.CloseBraceToken */ || token() === 21 /* SyntaxKind.CloseParenToken */ || token() === 31 /* SyntaxKind.GreaterThanToken */ || token() === 63 /* SyntaxKind.EqualsToken */ || token() === 51 /* SyntaxKind.BarToken */) { return finishNode(factory.createJSDocUnknownType(), pos); } else { return finishNode(factory.createJSDocNullableType(parseType(), /*postfix*/ false), pos); } } function parseJSDocFunctionType() { var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); if (lookAhead(nextTokenIsOpenParen)) { nextToken(); var parameters = parseParameters(4 /* SignatureFlags.Type */ | 32 /* SignatureFlags.JSDoc */); var type = parseReturnType(58 /* SyntaxKind.ColonToken */, /*isType*/ false); return withJSDoc(finishNode(factory.createJSDocFunctionType(parameters, type), pos), hasJSDoc); } return finishNode(factory.createTypeReferenceNode(parseIdentifierName(), /*typeArguments*/ undefined), pos); } function parseJSDocParameter() { var pos = getNodePos(); var name; if (token() === 108 /* SyntaxKind.ThisKeyword */ || token() === 103 /* SyntaxKind.NewKeyword */) { name = parseIdentifierName(); parseExpected(58 /* SyntaxKind.ColonToken */); } return finishNode(factory.createParameterDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, // TODO(rbuckton): JSDoc parameters don't have names (except `this`/`new`), should we manufacture an empty identifier? name, /*questionToken*/ undefined, parseJSDocType(), /*initializer*/ undefined), pos); } function parseJSDocType() { scanner.setInJSDocType(true); var pos = getNodePos(); if (parseOptional(141 /* SyntaxKind.ModuleKeyword */)) { // TODO(rbuckton): We never set the type for a JSDocNamepathType. What should we put here? var moduleTag = factory.createJSDocNamepathType(/*type*/ undefined); terminate: while (true) { switch (token()) { case 19 /* SyntaxKind.CloseBraceToken */: case 1 /* SyntaxKind.EndOfFileToken */: case 27 /* SyntaxKind.CommaToken */: case 5 /* SyntaxKind.WhitespaceTrivia */: break terminate; default: nextTokenJSDoc(); } } scanner.setInJSDocType(false); return finishNode(moduleTag, pos); } var hasDotDotDot = parseOptional(25 /* SyntaxKind.DotDotDotToken */); var type = parseTypeOrTypePredicate(); scanner.setInJSDocType(false); if (hasDotDotDot) { type = finishNode(factory.createJSDocVariadicType(type), pos); } if (token() === 63 /* SyntaxKind.EqualsToken */) { nextToken(); return finishNode(factory.createJSDocOptionalType(type), pos); } return type; } function parseTypeQuery() { var pos = getNodePos(); parseExpected(112 /* SyntaxKind.TypeOfKeyword */); var entityName = parseEntityName(/*allowReservedWords*/ true); // Make sure we perform ASI to prevent parsing the next line's type arguments as part of an instantiation expression. var typeArguments = !scanner.hasPrecedingLineBreak() ? tryParseTypeArguments() : undefined; return finishNode(factory.createTypeQueryNode(entityName, typeArguments), pos); } function parseTypeParameter() { var pos = getNodePos(); var modifiers = parseModifiers(); var name = parseIdentifier(); var constraint; var expression; if (parseOptional(94 /* SyntaxKind.ExtendsKeyword */)) { // It's not uncommon for people to write improper constraints to a generic. If the // user writes a constraint that is an expression and not an actual type, then parse // it out as an expression (so we can recover well), but report that a type is needed // instead. if (isStartOfType() || !isStartOfExpression()) { constraint = parseType(); } else { // It was not a type, and it looked like an expression. Parse out an expression // here so we recover well. Note: it is important that we call parseUnaryExpression // and not parseExpression here. If the user has: // // // // We do *not* want to consume the `>` as we're consuming the expression for "". expression = parseUnaryExpressionOrHigher(); } } var defaultType = parseOptional(63 /* SyntaxKind.EqualsToken */) ? parseType() : undefined; var node = factory.createTypeParameterDeclaration(modifiers, name, constraint, defaultType); node.expression = expression; return finishNode(node, pos); } function parseTypeParameters() { if (token() === 29 /* SyntaxKind.LessThanToken */) { return parseBracketedList(19 /* ParsingContext.TypeParameters */, parseTypeParameter, 29 /* SyntaxKind.LessThanToken */, 31 /* SyntaxKind.GreaterThanToken */); } } function isStartOfParameter(isJSDocParameter) { return token() === 25 /* SyntaxKind.DotDotDotToken */ || isBindingIdentifierOrPrivateIdentifierOrPattern() || ts.isModifierKind(token()) || token() === 59 /* SyntaxKind.AtToken */ || isStartOfType(/*inStartOfParameter*/ !isJSDocParameter); } function parseNameOfParameter(modifiers) { // FormalParameter [Yield,Await]: // BindingElement[?Yield,?Await] var name = parseIdentifierOrPattern(ts.Diagnostics.Private_identifiers_cannot_be_used_as_parameters); if (ts.getFullWidth(name) === 0 && !ts.some(modifiers) && ts.isModifierKind(token())) { // in cases like // 'use strict' // function foo(static) // isParameter('static') === true, because of isModifier('static') // however 'static' is not a legal identifier in a strict mode. // so result of this function will be ParameterDeclaration (flags = 0, name = missing, type = undefined, initializer = undefined) // and current token will not change => parsing of the enclosing parameter list will last till the end of time (or OOM) // to avoid this we'll advance cursor to the next token. nextToken(); } return name; } function isParameterNameStart() { // Be permissive about await and yield by calling isBindingIdentifier instead of isIdentifier; disallowing // them during a speculative parse leads to many more follow-on errors than allowing the function to parse then later // complaining about the use of the keywords. return isBindingIdentifier() || token() === 22 /* SyntaxKind.OpenBracketToken */ || token() === 18 /* SyntaxKind.OpenBraceToken */; } function parseParameter(inOuterAwaitContext) { return parseParameterWorker(inOuterAwaitContext); } function parseParameterForSpeculation(inOuterAwaitContext) { return parseParameterWorker(inOuterAwaitContext, /*allowAmbiguity*/ false); } function parseParameterWorker(inOuterAwaitContext, allowAmbiguity) { if (allowAmbiguity === void 0) { allowAmbiguity = true; } var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); // FormalParameter [Yield,Await]: // BindingElement[?Yield,?Await] // Decorators are parsed in the outer [Await] context, the rest of the parameter is parsed in the function's [Await] context. var decorators = inOuterAwaitContext ? doInAwaitContext(parseDecorators) : parseDecorators(); if (token() === 108 /* SyntaxKind.ThisKeyword */) { var node_1 = factory.createParameterDeclaration(decorators, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, createIdentifier(/*isIdentifier*/ true), /*questionToken*/ undefined, parseTypeAnnotation(), /*initializer*/ undefined); if (decorators) { parseErrorAtRange(decorators[0], ts.Diagnostics.Decorators_may_not_be_applied_to_this_parameters); } return withJSDoc(finishNode(node_1, pos), hasJSDoc); } var savedTopLevel = topLevel; topLevel = false; var modifiers = parseModifiers(); var dotDotDotToken = parseOptionalToken(25 /* SyntaxKind.DotDotDotToken */); if (!allowAmbiguity && !isParameterNameStart()) { return undefined; } var node = withJSDoc(finishNode(factory.createParameterDeclaration(decorators, modifiers, dotDotDotToken, parseNameOfParameter(modifiers), parseOptionalToken(57 /* SyntaxKind.QuestionToken */), parseTypeAnnotation(), parseInitializer()), pos), hasJSDoc); topLevel = savedTopLevel; return node; } function parseReturnType(returnToken, isType) { if (shouldParseReturnType(returnToken, isType)) { return allowConditionalTypesAnd(parseTypeOrTypePredicate); } } function shouldParseReturnType(returnToken, isType) { if (returnToken === 38 /* SyntaxKind.EqualsGreaterThanToken */) { parseExpected(returnToken); return true; } else if (parseOptional(58 /* SyntaxKind.ColonToken */)) { return true; } else if (isType && token() === 38 /* SyntaxKind.EqualsGreaterThanToken */) { // This is easy to get backward, especially in type contexts, so parse the type anyway parseErrorAtCurrentToken(ts.Diagnostics._0_expected, ts.tokenToString(58 /* SyntaxKind.ColonToken */)); nextToken(); return true; } return false; } function parseParametersWorker(flags, allowAmbiguity) { // FormalParameters [Yield,Await]: (modified) // [empty] // FormalParameterList[?Yield,Await] // // FormalParameter[Yield,Await]: (modified) // BindingElement[?Yield,Await] // // BindingElement [Yield,Await]: (modified) // SingleNameBinding[?Yield,?Await] // BindingPattern[?Yield,?Await]Initializer [In, ?Yield,?Await] opt // // SingleNameBinding [Yield,Await]: // BindingIdentifier[?Yield,?Await]Initializer [In, ?Yield,?Await] opt var savedYieldContext = inYieldContext(); var savedAwaitContext = inAwaitContext(); setYieldContext(!!(flags & 1 /* SignatureFlags.Yield */)); setAwaitContext(!!(flags & 2 /* SignatureFlags.Await */)); var parameters = flags & 32 /* SignatureFlags.JSDoc */ ? parseDelimitedList(17 /* ParsingContext.JSDocParameters */, parseJSDocParameter) : parseDelimitedList(16 /* ParsingContext.Parameters */, function () { return allowAmbiguity ? parseParameter(savedAwaitContext) : parseParameterForSpeculation(savedAwaitContext); }); setYieldContext(savedYieldContext); setAwaitContext(savedAwaitContext); return parameters; } function parseParameters(flags) { // FormalParameters [Yield,Await]: (modified) // [empty] // FormalParameterList[?Yield,Await] // // FormalParameter[Yield,Await]: (modified) // BindingElement[?Yield,Await] // // BindingElement [Yield,Await]: (modified) // SingleNameBinding[?Yield,?Await] // BindingPattern[?Yield,?Await]Initializer [In, ?Yield,?Await] opt // // SingleNameBinding [Yield,Await]: // BindingIdentifier[?Yield,?Await]Initializer [In, ?Yield,?Await] opt if (!parseExpected(20 /* SyntaxKind.OpenParenToken */)) { return createMissingList(); } var parameters = parseParametersWorker(flags, /*allowAmbiguity*/ true); parseExpected(21 /* SyntaxKind.CloseParenToken */); return parameters; } function parseTypeMemberSemicolon() { // We allow type members to be separated by commas or (possibly ASI) semicolons. // First check if it was a comma. If so, we're done with the member. if (parseOptional(27 /* SyntaxKind.CommaToken */)) { return; } // Didn't have a comma. We must have a (possible ASI) semicolon. parseSemicolon(); } function parseSignatureMember(kind) { var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); if (kind === 175 /* SyntaxKind.ConstructSignature */) { parseExpected(103 /* SyntaxKind.NewKeyword */); } var typeParameters = parseTypeParameters(); var parameters = parseParameters(4 /* SignatureFlags.Type */); var type = parseReturnType(58 /* SyntaxKind.ColonToken */, /*isType*/ true); parseTypeMemberSemicolon(); var node = kind === 174 /* SyntaxKind.CallSignature */ ? factory.createCallSignature(typeParameters, parameters, type) : factory.createConstructSignature(typeParameters, parameters, type); return withJSDoc(finishNode(node, pos), hasJSDoc); } function isIndexSignature() { return token() === 22 /* SyntaxKind.OpenBracketToken */ && lookAhead(isUnambiguouslyIndexSignature); } function isUnambiguouslyIndexSignature() { // The only allowed sequence is: // // [id: // // However, for error recovery, we also check the following cases: // // [... // [id, // [id?, // [id?: // [id?] // [public id // [private id // [protected id // [] // nextToken(); if (token() === 25 /* SyntaxKind.DotDotDotToken */ || token() === 23 /* SyntaxKind.CloseBracketToken */) { return true; } if (ts.isModifierKind(token())) { nextToken(); if (isIdentifier()) { return true; } } else if (!isIdentifier()) { return false; } else { // Skip the identifier nextToken(); } // A colon signifies a well formed indexer // A comma should be a badly formed indexer because comma expressions are not allowed // in computed properties. if (token() === 58 /* SyntaxKind.ColonToken */ || token() === 27 /* SyntaxKind.CommaToken */) { return true; } // Question mark could be an indexer with an optional property, // or it could be a conditional expression in a computed property. if (token() !== 57 /* SyntaxKind.QuestionToken */) { return false; } // If any of the following tokens are after the question mark, it cannot // be a conditional expression, so treat it as an indexer. nextToken(); return token() === 58 /* SyntaxKind.ColonToken */ || token() === 27 /* SyntaxKind.CommaToken */ || token() === 23 /* SyntaxKind.CloseBracketToken */; } function parseIndexSignatureDeclaration(pos, hasJSDoc, decorators, modifiers) { var parameters = parseBracketedList(16 /* ParsingContext.Parameters */, function () { return parseParameter(/*inOuterAwaitContext*/ false); }, 22 /* SyntaxKind.OpenBracketToken */, 23 /* SyntaxKind.CloseBracketToken */); var type = parseTypeAnnotation(); parseTypeMemberSemicolon(); var node = factory.createIndexSignature(decorators, modifiers, parameters, type); return withJSDoc(finishNode(node, pos), hasJSDoc); } function parsePropertyOrMethodSignature(pos, hasJSDoc, modifiers) { var name = parsePropertyName(); var questionToken = parseOptionalToken(57 /* SyntaxKind.QuestionToken */); var node; if (token() === 20 /* SyntaxKind.OpenParenToken */ || token() === 29 /* SyntaxKind.LessThanToken */) { // Method signatures don't exist in expression contexts. So they have neither // [Yield] nor [Await] var typeParameters = parseTypeParameters(); var parameters = parseParameters(4 /* SignatureFlags.Type */); var type = parseReturnType(58 /* SyntaxKind.ColonToken */, /*isType*/ true); node = factory.createMethodSignature(modifiers, name, questionToken, typeParameters, parameters, type); } else { var type = parseTypeAnnotation(); node = factory.createPropertySignature(modifiers, name, questionToken, type); // Although type literal properties cannot not have initializers, we attempt // to parse an initializer so we can report in the checker that an interface // property or type literal property cannot have an initializer. if (token() === 63 /* SyntaxKind.EqualsToken */) node.initializer = parseInitializer(); } parseTypeMemberSemicolon(); return withJSDoc(finishNode(node, pos), hasJSDoc); } function isTypeMemberStart() { // Return true if we have the start of a signature member if (token() === 20 /* SyntaxKind.OpenParenToken */ || token() === 29 /* SyntaxKind.LessThanToken */ || token() === 136 /* SyntaxKind.GetKeyword */ || token() === 149 /* SyntaxKind.SetKeyword */) { return true; } var idToken = false; // Eat up all modifiers, but hold on to the last one in case it is actually an identifier while (ts.isModifierKind(token())) { idToken = true; nextToken(); } // Index signatures and computed property names are type members if (token() === 22 /* SyntaxKind.OpenBracketToken */) { return true; } // Try to get the first property-like token following all modifiers if (isLiteralPropertyName()) { idToken = true; nextToken(); } // If we were able to get any potential identifier, check that it is // the start of a member declaration if (idToken) { return token() === 20 /* SyntaxKind.OpenParenToken */ || token() === 29 /* SyntaxKind.LessThanToken */ || token() === 57 /* SyntaxKind.QuestionToken */ || token() === 58 /* SyntaxKind.ColonToken */ || token() === 27 /* SyntaxKind.CommaToken */ || canParseSemicolon(); } return false; } function parseTypeMember() { if (token() === 20 /* SyntaxKind.OpenParenToken */ || token() === 29 /* SyntaxKind.LessThanToken */) { return parseSignatureMember(174 /* SyntaxKind.CallSignature */); } if (token() === 103 /* SyntaxKind.NewKeyword */ && lookAhead(nextTokenIsOpenParenOrLessThan)) { return parseSignatureMember(175 /* SyntaxKind.ConstructSignature */); } var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); var modifiers = parseModifiers(); if (parseContextualModifier(136 /* SyntaxKind.GetKeyword */)) { return parseAccessorDeclaration(pos, hasJSDoc, /*decorators*/ undefined, modifiers, 172 /* SyntaxKind.GetAccessor */); } if (parseContextualModifier(149 /* SyntaxKind.SetKeyword */)) { return parseAccessorDeclaration(pos, hasJSDoc, /*decorators*/ undefined, modifiers, 173 /* SyntaxKind.SetAccessor */); } if (isIndexSignature()) { return parseIndexSignatureDeclaration(pos, hasJSDoc, /*decorators*/ undefined, modifiers); } return parsePropertyOrMethodSignature(pos, hasJSDoc, modifiers); } function nextTokenIsOpenParenOrLessThan() { nextToken(); return token() === 20 /* SyntaxKind.OpenParenToken */ || token() === 29 /* SyntaxKind.LessThanToken */; } function nextTokenIsDot() { return nextToken() === 24 /* SyntaxKind.DotToken */; } function nextTokenIsOpenParenOrLessThanOrDot() { switch (nextToken()) { case 20 /* SyntaxKind.OpenParenToken */: case 29 /* SyntaxKind.LessThanToken */: case 24 /* SyntaxKind.DotToken */: return true; } return false; } function parseTypeLiteral() { var pos = getNodePos(); return finishNode(factory.createTypeLiteralNode(parseObjectTypeMembers()), pos); } function parseObjectTypeMembers() { var members; if (parseExpected(18 /* SyntaxKind.OpenBraceToken */)) { members = parseList(4 /* ParsingContext.TypeMembers */, parseTypeMember); parseExpected(19 /* SyntaxKind.CloseBraceToken */); } else { members = createMissingList(); } return members; } function isStartOfMappedType() { nextToken(); if (token() === 39 /* SyntaxKind.PlusToken */ || token() === 40 /* SyntaxKind.MinusToken */) { return nextToken() === 145 /* SyntaxKind.ReadonlyKeyword */; } if (token() === 145 /* SyntaxKind.ReadonlyKeyword */) { nextToken(); } return token() === 22 /* SyntaxKind.OpenBracketToken */ && nextTokenIsIdentifier() && nextToken() === 101 /* SyntaxKind.InKeyword */; } function parseMappedTypeParameter() { var pos = getNodePos(); var name = parseIdentifierName(); parseExpected(101 /* SyntaxKind.InKeyword */); var type = parseType(); return finishNode(factory.createTypeParameterDeclaration(/*modifiers*/ undefined, name, type, /*defaultType*/ undefined), pos); } function parseMappedType() { var pos = getNodePos(); parseExpected(18 /* SyntaxKind.OpenBraceToken */); var readonlyToken; if (token() === 145 /* SyntaxKind.ReadonlyKeyword */ || token() === 39 /* SyntaxKind.PlusToken */ || token() === 40 /* SyntaxKind.MinusToken */) { readonlyToken = parseTokenNode(); if (readonlyToken.kind !== 145 /* SyntaxKind.ReadonlyKeyword */) { parseExpected(145 /* SyntaxKind.ReadonlyKeyword */); } } parseExpected(22 /* SyntaxKind.OpenBracketToken */); var typeParameter = parseMappedTypeParameter(); var nameType = parseOptional(127 /* SyntaxKind.AsKeyword */) ? parseType() : undefined; parseExpected(23 /* SyntaxKind.CloseBracketToken */); var questionToken; if (token() === 57 /* SyntaxKind.QuestionToken */ || token() === 39 /* SyntaxKind.PlusToken */ || token() === 40 /* SyntaxKind.MinusToken */) { questionToken = parseTokenNode(); if (questionToken.kind !== 57 /* SyntaxKind.QuestionToken */) { parseExpected(57 /* SyntaxKind.QuestionToken */); } } var type = parseTypeAnnotation(); parseSemicolon(); var members = parseList(4 /* ParsingContext.TypeMembers */, parseTypeMember); parseExpected(19 /* SyntaxKind.CloseBraceToken */); return finishNode(factory.createMappedTypeNode(readonlyToken, typeParameter, nameType, questionToken, type, members), pos); } function parseTupleElementType() { var pos = getNodePos(); if (parseOptional(25 /* SyntaxKind.DotDotDotToken */)) { return finishNode(factory.createRestTypeNode(parseType()), pos); } var type = parseType(); if (ts.isJSDocNullableType(type) && type.pos === type.type.pos) { var node = factory.createOptionalTypeNode(type.type); ts.setTextRange(node, type); node.flags = type.flags; return node; } return type; } function isNextTokenColonOrQuestionColon() { return nextToken() === 58 /* SyntaxKind.ColonToken */ || (token() === 57 /* SyntaxKind.QuestionToken */ && nextToken() === 58 /* SyntaxKind.ColonToken */); } function isTupleElementName() { if (token() === 25 /* SyntaxKind.DotDotDotToken */) { return ts.tokenIsIdentifierOrKeyword(nextToken()) && isNextTokenColonOrQuestionColon(); } return ts.tokenIsIdentifierOrKeyword(token()) && isNextTokenColonOrQuestionColon(); } function parseTupleElementNameOrTupleElementType() { if (lookAhead(isTupleElementName)) { var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); var dotDotDotToken = parseOptionalToken(25 /* SyntaxKind.DotDotDotToken */); var name = parseIdentifierName(); var questionToken = parseOptionalToken(57 /* SyntaxKind.QuestionToken */); parseExpected(58 /* SyntaxKind.ColonToken */); var type = parseTupleElementType(); var node = factory.createNamedTupleMember(dotDotDotToken, name, questionToken, type); return withJSDoc(finishNode(node, pos), hasJSDoc); } return parseTupleElementType(); } function parseTupleType() { var pos = getNodePos(); return finishNode(factory.createTupleTypeNode(parseBracketedList(21 /* ParsingContext.TupleElementTypes */, parseTupleElementNameOrTupleElementType, 22 /* SyntaxKind.OpenBracketToken */, 23 /* SyntaxKind.CloseBracketToken */)), pos); } function parseParenthesizedType() { var pos = getNodePos(); parseExpected(20 /* SyntaxKind.OpenParenToken */); var type = parseType(); parseExpected(21 /* SyntaxKind.CloseParenToken */); return finishNode(factory.createParenthesizedType(type), pos); } function parseModifiersForConstructorType() { var modifiers; if (token() === 126 /* SyntaxKind.AbstractKeyword */) { var pos = getNodePos(); nextToken(); var modifier = finishNode(factory.createToken(126 /* SyntaxKind.AbstractKeyword */), pos); modifiers = createNodeArray([modifier], pos); } return modifiers; } function parseFunctionOrConstructorType() { var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); var modifiers = parseModifiersForConstructorType(); var isConstructorType = parseOptional(103 /* SyntaxKind.NewKeyword */); var typeParameters = parseTypeParameters(); var parameters = parseParameters(4 /* SignatureFlags.Type */); var type = parseReturnType(38 /* SyntaxKind.EqualsGreaterThanToken */, /*isType*/ false); var node = isConstructorType ? factory.createConstructorTypeNode(modifiers, typeParameters, parameters, type) : factory.createFunctionTypeNode(typeParameters, parameters, type); if (!isConstructorType) node.modifiers = modifiers; return withJSDoc(finishNode(node, pos), hasJSDoc); } function parseKeywordAndNoDot() { var node = parseTokenNode(); return token() === 24 /* SyntaxKind.DotToken */ ? undefined : node; } function parseLiteralTypeNode(negative) { var pos = getNodePos(); if (negative) { nextToken(); } var expression = token() === 110 /* SyntaxKind.TrueKeyword */ || token() === 95 /* SyntaxKind.FalseKeyword */ || token() === 104 /* SyntaxKind.NullKeyword */ ? parseTokenNode() : parseLiteralLikeNode(token()); if (negative) { expression = finishNode(factory.createPrefixUnaryExpression(40 /* SyntaxKind.MinusToken */, expression), pos); } return finishNode(factory.createLiteralTypeNode(expression), pos); } function isStartOfTypeOfImportType() { nextToken(); return token() === 100 /* SyntaxKind.ImportKeyword */; } function parseImportTypeAssertions() { var pos = getNodePos(); var openBracePosition = scanner.getTokenPos(); parseExpected(18 /* SyntaxKind.OpenBraceToken */); var multiLine = scanner.hasPrecedingLineBreak(); parseExpected(129 /* SyntaxKind.AssertKeyword */); parseExpected(58 /* SyntaxKind.ColonToken */); var clause = parseAssertClause(/*skipAssertKeyword*/ true); if (!parseExpected(19 /* SyntaxKind.CloseBraceToken */)) { var lastError = ts.lastOrUndefined(parseDiagnostics); if (lastError && lastError.code === ts.Diagnostics._0_expected.code) { ts.addRelatedInfo(lastError, ts.createDetachedDiagnostic(fileName, openBracePosition, 1, ts.Diagnostics.The_parser_expected_to_find_a_1_to_match_the_0_token_here, "{", "}")); } } return finishNode(factory.createImportTypeAssertionContainer(clause, multiLine), pos); } function parseImportType() { sourceFlags |= 2097152 /* NodeFlags.PossiblyContainsDynamicImport */; var pos = getNodePos(); var isTypeOf = parseOptional(112 /* SyntaxKind.TypeOfKeyword */); parseExpected(100 /* SyntaxKind.ImportKeyword */); parseExpected(20 /* SyntaxKind.OpenParenToken */); var type = parseType(); var assertions; if (parseOptional(27 /* SyntaxKind.CommaToken */)) { assertions = parseImportTypeAssertions(); } parseExpected(21 /* SyntaxKind.CloseParenToken */); var qualifier = parseOptional(24 /* SyntaxKind.DotToken */) ? parseEntityNameOfTypeReference() : undefined; var typeArguments = parseTypeArgumentsOfTypeReference(); return finishNode(factory.createImportTypeNode(type, assertions, qualifier, typeArguments, isTypeOf), pos); } function nextTokenIsNumericOrBigIntLiteral() { nextToken(); return token() === 8 /* SyntaxKind.NumericLiteral */ || token() === 9 /* SyntaxKind.BigIntLiteral */; } function parseNonArrayType() { switch (token()) { case 130 /* SyntaxKind.AnyKeyword */: case 155 /* SyntaxKind.UnknownKeyword */: case 150 /* SyntaxKind.StringKeyword */: case 147 /* SyntaxKind.NumberKeyword */: case 158 /* SyntaxKind.BigIntKeyword */: case 151 /* SyntaxKind.SymbolKeyword */: case 133 /* SyntaxKind.BooleanKeyword */: case 153 /* SyntaxKind.UndefinedKeyword */: case 143 /* SyntaxKind.NeverKeyword */: case 148 /* SyntaxKind.ObjectKeyword */: // If these are followed by a dot, then parse these out as a dotted type reference instead. return tryParse(parseKeywordAndNoDot) || parseTypeReference(); case 66 /* SyntaxKind.AsteriskEqualsToken */: // If there is '*=', treat it as * followed by postfix = scanner.reScanAsteriskEqualsToken(); // falls through case 41 /* SyntaxKind.AsteriskToken */: return parseJSDocAllType(); case 60 /* SyntaxKind.QuestionQuestionToken */: // If there is '??', treat it as prefix-'?' in JSDoc type. scanner.reScanQuestionToken(); // falls through case 57 /* SyntaxKind.QuestionToken */: return parseJSDocUnknownOrNullableType(); case 98 /* SyntaxKind.FunctionKeyword */: return parseJSDocFunctionType(); case 53 /* SyntaxKind.ExclamationToken */: return parseJSDocNonNullableType(); case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: case 10 /* SyntaxKind.StringLiteral */: case 8 /* SyntaxKind.NumericLiteral */: case 9 /* SyntaxKind.BigIntLiteral */: case 110 /* SyntaxKind.TrueKeyword */: case 95 /* SyntaxKind.FalseKeyword */: case 104 /* SyntaxKind.NullKeyword */: return parseLiteralTypeNode(); case 40 /* SyntaxKind.MinusToken */: return lookAhead(nextTokenIsNumericOrBigIntLiteral) ? parseLiteralTypeNode(/*negative*/ true) : parseTypeReference(); case 114 /* SyntaxKind.VoidKeyword */: return parseTokenNode(); case 108 /* SyntaxKind.ThisKeyword */: { var thisKeyword = parseThisTypeNode(); if (token() === 139 /* SyntaxKind.IsKeyword */ && !scanner.hasPrecedingLineBreak()) { return parseThisTypePredicate(thisKeyword); } else { return thisKeyword; } } case 112 /* SyntaxKind.TypeOfKeyword */: return lookAhead(isStartOfTypeOfImportType) ? parseImportType() : parseTypeQuery(); case 18 /* SyntaxKind.OpenBraceToken */: return lookAhead(isStartOfMappedType) ? parseMappedType() : parseTypeLiteral(); case 22 /* SyntaxKind.OpenBracketToken */: return parseTupleType(); case 20 /* SyntaxKind.OpenParenToken */: return parseParenthesizedType(); case 100 /* SyntaxKind.ImportKeyword */: return parseImportType(); case 128 /* SyntaxKind.AssertsKeyword */: return lookAhead(nextTokenIsIdentifierOrKeywordOnSameLine) ? parseAssertsTypePredicate() : parseTypeReference(); case 15 /* SyntaxKind.TemplateHead */: return parseTemplateType(); default: return parseTypeReference(); } } function isStartOfType(inStartOfParameter) { switch (token()) { case 130 /* SyntaxKind.AnyKeyword */: case 155 /* SyntaxKind.UnknownKeyword */: case 150 /* SyntaxKind.StringKeyword */: case 147 /* SyntaxKind.NumberKeyword */: case 158 /* SyntaxKind.BigIntKeyword */: case 133 /* SyntaxKind.BooleanKeyword */: case 145 /* SyntaxKind.ReadonlyKeyword */: case 151 /* SyntaxKind.SymbolKeyword */: case 154 /* SyntaxKind.UniqueKeyword */: case 114 /* SyntaxKind.VoidKeyword */: case 153 /* SyntaxKind.UndefinedKeyword */: case 104 /* SyntaxKind.NullKeyword */: case 108 /* SyntaxKind.ThisKeyword */: case 112 /* SyntaxKind.TypeOfKeyword */: case 143 /* SyntaxKind.NeverKeyword */: case 18 /* SyntaxKind.OpenBraceToken */: case 22 /* SyntaxKind.OpenBracketToken */: case 29 /* SyntaxKind.LessThanToken */: case 51 /* SyntaxKind.BarToken */: case 50 /* SyntaxKind.AmpersandToken */: case 103 /* SyntaxKind.NewKeyword */: case 10 /* SyntaxKind.StringLiteral */: case 8 /* SyntaxKind.NumericLiteral */: case 9 /* SyntaxKind.BigIntLiteral */: case 110 /* SyntaxKind.TrueKeyword */: case 95 /* SyntaxKind.FalseKeyword */: case 148 /* SyntaxKind.ObjectKeyword */: case 41 /* SyntaxKind.AsteriskToken */: case 57 /* SyntaxKind.QuestionToken */: case 53 /* SyntaxKind.ExclamationToken */: case 25 /* SyntaxKind.DotDotDotToken */: case 137 /* SyntaxKind.InferKeyword */: case 100 /* SyntaxKind.ImportKeyword */: case 128 /* SyntaxKind.AssertsKeyword */: case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: case 15 /* SyntaxKind.TemplateHead */: return true; case 98 /* SyntaxKind.FunctionKeyword */: return !inStartOfParameter; case 40 /* SyntaxKind.MinusToken */: return !inStartOfParameter && lookAhead(nextTokenIsNumericOrBigIntLiteral); case 20 /* SyntaxKind.OpenParenToken */: // Only consider '(' the start of a type if followed by ')', '...', an identifier, a modifier, // or something that starts a type. We don't want to consider things like '(1)' a type. return !inStartOfParameter && lookAhead(isStartOfParenthesizedOrFunctionType); default: return isIdentifier(); } } function isStartOfParenthesizedOrFunctionType() { nextToken(); return token() === 21 /* SyntaxKind.CloseParenToken */ || isStartOfParameter(/*isJSDocParameter*/ false) || isStartOfType(); } function parsePostfixTypeOrHigher() { var pos = getNodePos(); var type = parseNonArrayType(); while (!scanner.hasPrecedingLineBreak()) { switch (token()) { case 53 /* SyntaxKind.ExclamationToken */: nextToken(); type = finishNode(factory.createJSDocNonNullableType(type, /*postfix*/ true), pos); break; case 57 /* SyntaxKind.QuestionToken */: // If next token is start of a type we have a conditional type if (lookAhead(nextTokenIsStartOfType)) { return type; } nextToken(); type = finishNode(factory.createJSDocNullableType(type, /*postfix*/ true), pos); break; case 22 /* SyntaxKind.OpenBracketToken */: parseExpected(22 /* SyntaxKind.OpenBracketToken */); if (isStartOfType()) { var indexType = parseType(); parseExpected(23 /* SyntaxKind.CloseBracketToken */); type = finishNode(factory.createIndexedAccessTypeNode(type, indexType), pos); } else { parseExpected(23 /* SyntaxKind.CloseBracketToken */); type = finishNode(factory.createArrayTypeNode(type), pos); } break; default: return type; } } return type; } function parseTypeOperator(operator) { var pos = getNodePos(); parseExpected(operator); return finishNode(factory.createTypeOperatorNode(operator, parseTypeOperatorOrHigher()), pos); } function tryParseConstraintOfInferType() { if (parseOptional(94 /* SyntaxKind.ExtendsKeyword */)) { var constraint = disallowConditionalTypesAnd(parseType); if (inDisallowConditionalTypesContext() || token() !== 57 /* SyntaxKind.QuestionToken */) { return constraint; } } } function parseTypeParameterOfInferType() { var pos = getNodePos(); var name = parseIdentifier(); var constraint = tryParse(tryParseConstraintOfInferType); var node = factory.createTypeParameterDeclaration(/*modifiers*/ undefined, name, constraint); return finishNode(node, pos); } function parseInferType() { var pos = getNodePos(); parseExpected(137 /* SyntaxKind.InferKeyword */); return finishNode(factory.createInferTypeNode(parseTypeParameterOfInferType()), pos); } function parseTypeOperatorOrHigher() { var operator = token(); switch (operator) { case 140 /* SyntaxKind.KeyOfKeyword */: case 154 /* SyntaxKind.UniqueKeyword */: case 145 /* SyntaxKind.ReadonlyKeyword */: return parseTypeOperator(operator); case 137 /* SyntaxKind.InferKeyword */: return parseInferType(); } return allowConditionalTypesAnd(parsePostfixTypeOrHigher); } function parseFunctionOrConstructorTypeToError(isInUnionType) { // the function type and constructor type shorthand notation // are not allowed directly in unions and intersections, but we'll // try to parse them gracefully and issue a helpful message. if (isStartOfFunctionTypeOrConstructorType()) { var type = parseFunctionOrConstructorType(); var diagnostic = void 0; if (ts.isFunctionTypeNode(type)) { diagnostic = isInUnionType ? ts.Diagnostics.Function_type_notation_must_be_parenthesized_when_used_in_a_union_type : ts.Diagnostics.Function_type_notation_must_be_parenthesized_when_used_in_an_intersection_type; } else { diagnostic = isInUnionType ? ts.Diagnostics.Constructor_type_notation_must_be_parenthesized_when_used_in_a_union_type : ts.Diagnostics.Constructor_type_notation_must_be_parenthesized_when_used_in_an_intersection_type; } parseErrorAtRange(type, diagnostic); return type; } return undefined; } function parseUnionOrIntersectionType(operator, parseConstituentType, createTypeNode) { var pos = getNodePos(); var isUnionType = operator === 51 /* SyntaxKind.BarToken */; var hasLeadingOperator = parseOptional(operator); var type = hasLeadingOperator && parseFunctionOrConstructorTypeToError(isUnionType) || parseConstituentType(); if (token() === operator || hasLeadingOperator) { var types = [type]; while (parseOptional(operator)) { types.push(parseFunctionOrConstructorTypeToError(isUnionType) || parseConstituentType()); } type = finishNode(createTypeNode(createNodeArray(types, pos)), pos); } return type; } function parseIntersectionTypeOrHigher() { return parseUnionOrIntersectionType(50 /* SyntaxKind.AmpersandToken */, parseTypeOperatorOrHigher, factory.createIntersectionTypeNode); } function parseUnionTypeOrHigher() { return parseUnionOrIntersectionType(51 /* SyntaxKind.BarToken */, parseIntersectionTypeOrHigher, factory.createUnionTypeNode); } function nextTokenIsNewKeyword() { nextToken(); return token() === 103 /* SyntaxKind.NewKeyword */; } function isStartOfFunctionTypeOrConstructorType() { if (token() === 29 /* SyntaxKind.LessThanToken */) { return true; } if (token() === 20 /* SyntaxKind.OpenParenToken */ && lookAhead(isUnambiguouslyStartOfFunctionType)) { return true; } return token() === 103 /* SyntaxKind.NewKeyword */ || token() === 126 /* SyntaxKind.AbstractKeyword */ && lookAhead(nextTokenIsNewKeyword); } function skipParameterStart() { if (ts.isModifierKind(token())) { // Skip modifiers parseModifiers(); } if (isIdentifier() || token() === 108 /* SyntaxKind.ThisKeyword */) { nextToken(); return true; } if (token() === 22 /* SyntaxKind.OpenBracketToken */ || token() === 18 /* SyntaxKind.OpenBraceToken */) { // Return true if we can parse an array or object binding pattern with no errors var previousErrorCount = parseDiagnostics.length; parseIdentifierOrPattern(); return previousErrorCount === parseDiagnostics.length; } return false; } function isUnambiguouslyStartOfFunctionType() { nextToken(); if (token() === 21 /* SyntaxKind.CloseParenToken */ || token() === 25 /* SyntaxKind.DotDotDotToken */) { // ( ) // ( ... return true; } if (skipParameterStart()) { // We successfully skipped modifiers (if any) and an identifier or binding pattern, // now see if we have something that indicates a parameter declaration if (token() === 58 /* SyntaxKind.ColonToken */ || token() === 27 /* SyntaxKind.CommaToken */ || token() === 57 /* SyntaxKind.QuestionToken */ || token() === 63 /* SyntaxKind.EqualsToken */) { // ( xxx : // ( xxx , // ( xxx ? // ( xxx = return true; } if (token() === 21 /* SyntaxKind.CloseParenToken */) { nextToken(); if (token() === 38 /* SyntaxKind.EqualsGreaterThanToken */) { // ( xxx ) => return true; } } } return false; } function parseTypeOrTypePredicate() { var pos = getNodePos(); var typePredicateVariable = isIdentifier() && tryParse(parseTypePredicatePrefix); var type = parseType(); if (typePredicateVariable) { return finishNode(factory.createTypePredicateNode(/*assertsModifier*/ undefined, typePredicateVariable, type), pos); } else { return type; } } function parseTypePredicatePrefix() { var id = parseIdentifier(); if (token() === 139 /* SyntaxKind.IsKeyword */ && !scanner.hasPrecedingLineBreak()) { nextToken(); return id; } } function parseAssertsTypePredicate() { var pos = getNodePos(); var assertsModifier = parseExpectedToken(128 /* SyntaxKind.AssertsKeyword */); var parameterName = token() === 108 /* SyntaxKind.ThisKeyword */ ? parseThisTypeNode() : parseIdentifier(); var type = parseOptional(139 /* SyntaxKind.IsKeyword */) ? parseType() : undefined; return finishNode(factory.createTypePredicateNode(assertsModifier, parameterName, type), pos); } function parseType() { if (contextFlags & 40960 /* NodeFlags.TypeExcludesFlags */) { return doOutsideOfContext(40960 /* NodeFlags.TypeExcludesFlags */, parseType); } if (isStartOfFunctionTypeOrConstructorType()) { return parseFunctionOrConstructorType(); } var pos = getNodePos(); var type = parseUnionTypeOrHigher(); if (!inDisallowConditionalTypesContext() && !scanner.hasPrecedingLineBreak() && parseOptional(94 /* SyntaxKind.ExtendsKeyword */)) { // The type following 'extends' is not permitted to be another conditional type var extendsType = disallowConditionalTypesAnd(parseType); parseExpected(57 /* SyntaxKind.QuestionToken */); var trueType = allowConditionalTypesAnd(parseType); parseExpected(58 /* SyntaxKind.ColonToken */); var falseType = allowConditionalTypesAnd(parseType); return finishNode(factory.createConditionalTypeNode(type, extendsType, trueType, falseType), pos); } return type; } function parseTypeAnnotation() { return parseOptional(58 /* SyntaxKind.ColonToken */) ? parseType() : undefined; } // EXPRESSIONS function isStartOfLeftHandSideExpression() { switch (token()) { case 108 /* SyntaxKind.ThisKeyword */: case 106 /* SyntaxKind.SuperKeyword */: case 104 /* SyntaxKind.NullKeyword */: case 110 /* SyntaxKind.TrueKeyword */: case 95 /* SyntaxKind.FalseKeyword */: case 8 /* SyntaxKind.NumericLiteral */: case 9 /* SyntaxKind.BigIntLiteral */: case 10 /* SyntaxKind.StringLiteral */: case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: case 15 /* SyntaxKind.TemplateHead */: case 20 /* SyntaxKind.OpenParenToken */: case 22 /* SyntaxKind.OpenBracketToken */: case 18 /* SyntaxKind.OpenBraceToken */: case 98 /* SyntaxKind.FunctionKeyword */: case 84 /* SyntaxKind.ClassKeyword */: case 103 /* SyntaxKind.NewKeyword */: case 43 /* SyntaxKind.SlashToken */: case 68 /* SyntaxKind.SlashEqualsToken */: case 79 /* SyntaxKind.Identifier */: return true; case 100 /* SyntaxKind.ImportKeyword */: return lookAhead(nextTokenIsOpenParenOrLessThanOrDot); default: return isIdentifier(); } } function isStartOfExpression() { if (isStartOfLeftHandSideExpression()) { return true; } switch (token()) { case 39 /* SyntaxKind.PlusToken */: case 40 /* SyntaxKind.MinusToken */: case 54 /* SyntaxKind.TildeToken */: case 53 /* SyntaxKind.ExclamationToken */: case 89 /* SyntaxKind.DeleteKeyword */: case 112 /* SyntaxKind.TypeOfKeyword */: case 114 /* SyntaxKind.VoidKeyword */: case 45 /* SyntaxKind.PlusPlusToken */: case 46 /* SyntaxKind.MinusMinusToken */: case 29 /* SyntaxKind.LessThanToken */: case 132 /* SyntaxKind.AwaitKeyword */: case 125 /* SyntaxKind.YieldKeyword */: case 80 /* SyntaxKind.PrivateIdentifier */: // Yield/await always starts an expression. Either it is an identifier (in which case // it is definitely an expression). Or it's a keyword (either because we're in // a generator or async function, or in strict mode (or both)) and it started a yield or await expression. return true; default: // Error tolerance. If we see the start of some binary operator, we consider // that the start of an expression. That way we'll parse out a missing identifier, // give a good message about an identifier being missing, and then consume the // rest of the binary expression. if (isBinaryOperator()) { return true; } return isIdentifier(); } } function isStartOfExpressionStatement() { // As per the grammar, none of '{' or 'function' or 'class' can start an expression statement. return token() !== 18 /* SyntaxKind.OpenBraceToken */ && token() !== 98 /* SyntaxKind.FunctionKeyword */ && token() !== 84 /* SyntaxKind.ClassKeyword */ && token() !== 59 /* SyntaxKind.AtToken */ && isStartOfExpression(); } function parseExpression() { // Expression[in]: // AssignmentExpression[in] // Expression[in] , AssignmentExpression[in] // clear the decorator context when parsing Expression, as it should be unambiguous when parsing a decorator var saveDecoratorContext = inDecoratorContext(); if (saveDecoratorContext) { setDecoratorContext(/*val*/ false); } var pos = getNodePos(); var expr = parseAssignmentExpressionOrHigher(); var operatorToken; while ((operatorToken = parseOptionalToken(27 /* SyntaxKind.CommaToken */))) { expr = makeBinaryExpression(expr, operatorToken, parseAssignmentExpressionOrHigher(), pos); } if (saveDecoratorContext) { setDecoratorContext(/*val*/ true); } return expr; } function parseInitializer() { return parseOptional(63 /* SyntaxKind.EqualsToken */) ? parseAssignmentExpressionOrHigher() : undefined; } function parseAssignmentExpressionOrHigher() { // AssignmentExpression[in,yield]: // 1) ConditionalExpression[?in,?yield] // 2) LeftHandSideExpression = AssignmentExpression[?in,?yield] // 3) LeftHandSideExpression AssignmentOperator AssignmentExpression[?in,?yield] // 4) ArrowFunctionExpression[?in,?yield] // 5) AsyncArrowFunctionExpression[in,yield,await] // 6) [+Yield] YieldExpression[?In] // // Note: for ease of implementation we treat productions '2' and '3' as the same thing. // (i.e. they're both BinaryExpressions with an assignment operator in it). // First, do the simple check if we have a YieldExpression (production '6'). if (isYieldExpression()) { return parseYieldExpression(); } // Then, check if we have an arrow function (production '4' and '5') that starts with a parenthesized // parameter list or is an async arrow function. // AsyncArrowFunctionExpression: // 1) async[no LineTerminator here]AsyncArrowBindingIdentifier[?Yield][no LineTerminator here]=>AsyncConciseBody[?In] // 2) CoverCallExpressionAndAsyncArrowHead[?Yield, ?Await][no LineTerminator here]=>AsyncConciseBody[?In] // Production (1) of AsyncArrowFunctionExpression is parsed in "tryParseAsyncSimpleArrowFunctionExpression". // And production (2) is parsed in "tryParseParenthesizedArrowFunctionExpression". // // If we do successfully parse arrow-function, we must *not* recurse for productions 1, 2 or 3. An ArrowFunction is // not a LeftHandSideExpression, nor does it start a ConditionalExpression. So we are done // with AssignmentExpression if we see one. var arrowExpression = tryParseParenthesizedArrowFunctionExpression() || tryParseAsyncSimpleArrowFunctionExpression(); if (arrowExpression) { return arrowExpression; } // Now try to see if we're in production '1', '2' or '3'. A conditional expression can // start with a LogicalOrExpression, while the assignment productions can only start with // LeftHandSideExpressions. // // So, first, we try to just parse out a BinaryExpression. If we get something that is a // LeftHandSide or higher, then we can try to parse out the assignment expression part. // Otherwise, we try to parse out the conditional expression bit. We want to allow any // binary expression here, so we pass in the 'lowest' precedence here so that it matches // and consumes anything. var pos = getNodePos(); var expr = parseBinaryExpressionOrHigher(0 /* OperatorPrecedence.Lowest */); // To avoid a look-ahead, we did not handle the case of an arrow function with a single un-parenthesized // parameter ('x => ...') above. We handle it here by checking if the parsed expression was a single // identifier and the current token is an arrow. if (expr.kind === 79 /* SyntaxKind.Identifier */ && token() === 38 /* SyntaxKind.EqualsGreaterThanToken */) { return parseSimpleArrowFunctionExpression(pos, expr, /*asyncModifier*/ undefined); } // Now see if we might be in cases '2' or '3'. // If the expression was a LHS expression, and we have an assignment operator, then // we're in '2' or '3'. Consume the assignment and return. // // Note: we call reScanGreaterToken so that we get an appropriately merged token // for cases like `> > =` becoming `>>=` if (ts.isLeftHandSideExpression(expr) && ts.isAssignmentOperator(reScanGreaterToken())) { return makeBinaryExpression(expr, parseTokenNode(), parseAssignmentExpressionOrHigher(), pos); } // It wasn't an assignment or a lambda. This is a conditional expression: return parseConditionalExpressionRest(expr, pos); } function isYieldExpression() { if (token() === 125 /* SyntaxKind.YieldKeyword */) { // If we have a 'yield' keyword, and this is a context where yield expressions are // allowed, then definitely parse out a yield expression. if (inYieldContext()) { return true; } // We're in a context where 'yield expr' is not allowed. However, if we can // definitely tell that the user was trying to parse a 'yield expr' and not // just a normal expr that start with a 'yield' identifier, then parse out // a 'yield expr'. We can then report an error later that they are only // allowed in generator expressions. // // for example, if we see 'yield(foo)', then we'll have to treat that as an // invocation expression of something called 'yield'. However, if we have // 'yield foo' then that is not legal as a normal expression, so we can // definitely recognize this as a yield expression. // // for now we just check if the next token is an identifier. More heuristics // can be added here later as necessary. We just need to make sure that we // don't accidentally consume something legal. return lookAhead(nextTokenIsIdentifierOrKeywordOrLiteralOnSameLine); } return false; } function nextTokenIsIdentifierOnSameLine() { nextToken(); return !scanner.hasPrecedingLineBreak() && isIdentifier(); } function parseYieldExpression() { var pos = getNodePos(); // YieldExpression[In] : // yield // yield [no LineTerminator here] [Lexical goal InputElementRegExp]AssignmentExpression[?In, Yield] // yield [no LineTerminator here] * [Lexical goal InputElementRegExp]AssignmentExpression[?In, Yield] nextToken(); if (!scanner.hasPrecedingLineBreak() && (token() === 41 /* SyntaxKind.AsteriskToken */ || isStartOfExpression())) { return finishNode(factory.createYieldExpression(parseOptionalToken(41 /* SyntaxKind.AsteriskToken */), parseAssignmentExpressionOrHigher()), pos); } else { // if the next token is not on the same line as yield. or we don't have an '*' or // the start of an expression, then this is just a simple "yield" expression. return finishNode(factory.createYieldExpression(/*asteriskToken*/ undefined, /*expression*/ undefined), pos); } } function parseSimpleArrowFunctionExpression(pos, identifier, asyncModifier) { ts.Debug.assert(token() === 38 /* SyntaxKind.EqualsGreaterThanToken */, "parseSimpleArrowFunctionExpression should only have been called if we had a =>"); var parameter = factory.createParameterDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, identifier, /*questionToken*/ undefined, /*type*/ undefined, /*initializer*/ undefined); finishNode(parameter, identifier.pos); var parameters = createNodeArray([parameter], parameter.pos, parameter.end); var equalsGreaterThanToken = parseExpectedToken(38 /* SyntaxKind.EqualsGreaterThanToken */); var body = parseArrowFunctionExpressionBody(/*isAsync*/ !!asyncModifier); var node = factory.createArrowFunction(asyncModifier, /*typeParameters*/ undefined, parameters, /*type*/ undefined, equalsGreaterThanToken, body); return addJSDocComment(finishNode(node, pos)); } function tryParseParenthesizedArrowFunctionExpression() { var triState = isParenthesizedArrowFunctionExpression(); if (triState === 0 /* Tristate.False */) { // It's definitely not a parenthesized arrow function expression. return undefined; } // If we definitely have an arrow function, then we can just parse one, not requiring a // following => or { token. Otherwise, we *might* have an arrow function. Try to parse // it out, but don't allow any ambiguity, and return 'undefined' if this could be an // expression instead. return triState === 1 /* Tristate.True */ ? parseParenthesizedArrowFunctionExpression(/*allowAmbiguity*/ true) : tryParse(parsePossibleParenthesizedArrowFunctionExpression); } // True -> We definitely expect a parenthesized arrow function here. // False -> There *cannot* be a parenthesized arrow function here. // Unknown -> There *might* be a parenthesized arrow function here. // Speculatively look ahead to be sure, and rollback if not. function isParenthesizedArrowFunctionExpression() { if (token() === 20 /* SyntaxKind.OpenParenToken */ || token() === 29 /* SyntaxKind.LessThanToken */ || token() === 131 /* SyntaxKind.AsyncKeyword */) { return lookAhead(isParenthesizedArrowFunctionExpressionWorker); } if (token() === 38 /* SyntaxKind.EqualsGreaterThanToken */) { // ERROR RECOVERY TWEAK: // If we see a standalone => try to parse it as an arrow function expression as that's // likely what the user intended to write. return 1 /* Tristate.True */; } // Definitely not a parenthesized arrow function. return 0 /* Tristate.False */; } function isParenthesizedArrowFunctionExpressionWorker() { if (token() === 131 /* SyntaxKind.AsyncKeyword */) { nextToken(); if (scanner.hasPrecedingLineBreak()) { return 0 /* Tristate.False */; } if (token() !== 20 /* SyntaxKind.OpenParenToken */ && token() !== 29 /* SyntaxKind.LessThanToken */) { return 0 /* Tristate.False */; } } var first = token(); var second = nextToken(); if (first === 20 /* SyntaxKind.OpenParenToken */) { if (second === 21 /* SyntaxKind.CloseParenToken */) { // Simple cases: "() =>", "(): ", and "() {". // This is an arrow function with no parameters. // The last one is not actually an arrow function, // but this is probably what the user intended. var third = nextToken(); switch (third) { case 38 /* SyntaxKind.EqualsGreaterThanToken */: case 58 /* SyntaxKind.ColonToken */: case 18 /* SyntaxKind.OpenBraceToken */: return 1 /* Tristate.True */; default: return 0 /* Tristate.False */; } } // If encounter "([" or "({", this could be the start of a binding pattern. // Examples: // ([ x ]) => { } // ({ x }) => { } // ([ x ]) // ({ x }) if (second === 22 /* SyntaxKind.OpenBracketToken */ || second === 18 /* SyntaxKind.OpenBraceToken */) { return 2 /* Tristate.Unknown */; } // Simple case: "(..." // This is an arrow function with a rest parameter. if (second === 25 /* SyntaxKind.DotDotDotToken */) { return 1 /* Tristate.True */; } // Check for "(xxx yyy", where xxx is a modifier and yyy is an identifier. This // isn't actually allowed, but we want to treat it as a lambda so we can provide // a good error message. if (ts.isModifierKind(second) && second !== 131 /* SyntaxKind.AsyncKeyword */ && lookAhead(nextTokenIsIdentifier)) { if (lookAhead(function () { return nextToken() === 127 /* SyntaxKind.AsKeyword */; })) { // https://github.com/microsoft/TypeScript/issues/44466 return 0 /* Tristate.False */; } return 1 /* Tristate.True */; } // If we had "(" followed by something that's not an identifier, // then this definitely doesn't look like a lambda. "this" is not // valid, but we want to parse it and then give a semantic error. if (!isIdentifier() && second !== 108 /* SyntaxKind.ThisKeyword */) { return 0 /* Tristate.False */; } switch (nextToken()) { case 58 /* SyntaxKind.ColonToken */: // If we have something like "(a:", then we must have a // type-annotated parameter in an arrow function expression. return 1 /* Tristate.True */; case 57 /* SyntaxKind.QuestionToken */: nextToken(); // If we have "(a?:" or "(a?," or "(a?=" or "(a?)" then it is definitely a lambda. if (token() === 58 /* SyntaxKind.ColonToken */ || token() === 27 /* SyntaxKind.CommaToken */ || token() === 63 /* SyntaxKind.EqualsToken */ || token() === 21 /* SyntaxKind.CloseParenToken */) { return 1 /* Tristate.True */; } // Otherwise it is definitely not a lambda. return 0 /* Tristate.False */; case 27 /* SyntaxKind.CommaToken */: case 63 /* SyntaxKind.EqualsToken */: case 21 /* SyntaxKind.CloseParenToken */: // If we have "(a," or "(a=" or "(a)" this *could* be an arrow function return 2 /* Tristate.Unknown */; } // It is definitely not an arrow function return 0 /* Tristate.False */; } else { ts.Debug.assert(first === 29 /* SyntaxKind.LessThanToken */); // If we have "<" not followed by an identifier, // then this definitely is not an arrow function. if (!isIdentifier()) { return 0 /* Tristate.False */; } // JSX overrides if (languageVariant === 1 /* LanguageVariant.JSX */) { var isArrowFunctionInJsx = lookAhead(function () { var third = nextToken(); if (third === 94 /* SyntaxKind.ExtendsKeyword */) { var fourth = nextToken(); switch (fourth) { case 63 /* SyntaxKind.EqualsToken */: case 31 /* SyntaxKind.GreaterThanToken */: return false; default: return true; } } else if (third === 27 /* SyntaxKind.CommaToken */ || third === 63 /* SyntaxKind.EqualsToken */) { return true; } return false; }); if (isArrowFunctionInJsx) { return 1 /* Tristate.True */; } return 0 /* Tristate.False */; } // This *could* be a parenthesized arrow function. return 2 /* Tristate.Unknown */; } } function parsePossibleParenthesizedArrowFunctionExpression() { var tokenPos = scanner.getTokenPos(); if (notParenthesizedArrow === null || notParenthesizedArrow === void 0 ? void 0 : notParenthesizedArrow.has(tokenPos)) { return undefined; } var result = parseParenthesizedArrowFunctionExpression(/*allowAmbiguity*/ false); if (!result) { (notParenthesizedArrow || (notParenthesizedArrow = new ts.Set())).add(tokenPos); } return result; } function tryParseAsyncSimpleArrowFunctionExpression() { // We do a check here so that we won't be doing unnecessarily call to "lookAhead" if (token() === 131 /* SyntaxKind.AsyncKeyword */) { if (lookAhead(isUnParenthesizedAsyncArrowFunctionWorker) === 1 /* Tristate.True */) { var pos = getNodePos(); var asyncModifier = parseModifiersForArrowFunction(); var expr = parseBinaryExpressionOrHigher(0 /* OperatorPrecedence.Lowest */); return parseSimpleArrowFunctionExpression(pos, expr, asyncModifier); } } return undefined; } function isUnParenthesizedAsyncArrowFunctionWorker() { // AsyncArrowFunctionExpression: // 1) async[no LineTerminator here]AsyncArrowBindingIdentifier[?Yield][no LineTerminator here]=>AsyncConciseBody[?In] // 2) CoverCallExpressionAndAsyncArrowHead[?Yield, ?Await][no LineTerminator here]=>AsyncConciseBody[?In] if (token() === 131 /* SyntaxKind.AsyncKeyword */) { nextToken(); // If the "async" is followed by "=>" token then it is not a beginning of an async arrow-function // but instead a simple arrow-function which will be parsed inside "parseAssignmentExpressionOrHigher" if (scanner.hasPrecedingLineBreak() || token() === 38 /* SyntaxKind.EqualsGreaterThanToken */) { return 0 /* Tristate.False */; } // Check for un-parenthesized AsyncArrowFunction var expr = parseBinaryExpressionOrHigher(0 /* OperatorPrecedence.Lowest */); if (!scanner.hasPrecedingLineBreak() && expr.kind === 79 /* SyntaxKind.Identifier */ && token() === 38 /* SyntaxKind.EqualsGreaterThanToken */) { return 1 /* Tristate.True */; } } return 0 /* Tristate.False */; } function parseParenthesizedArrowFunctionExpression(allowAmbiguity) { var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); var modifiers = parseModifiersForArrowFunction(); var isAsync = ts.some(modifiers, ts.isAsyncModifier) ? 2 /* SignatureFlags.Await */ : 0 /* SignatureFlags.None */; // Arrow functions are never generators. // // If we're speculatively parsing a signature for a parenthesized arrow function, then // we have to have a complete parameter list. Otherwise we might see something like // a => (b => c) // And think that "(b =>" was actually a parenthesized arrow function with a missing // close paren. var typeParameters = parseTypeParameters(); var parameters; if (!parseExpected(20 /* SyntaxKind.OpenParenToken */)) { if (!allowAmbiguity) { return undefined; } parameters = createMissingList(); } else { if (!allowAmbiguity) { var maybeParameters = parseParametersWorker(isAsync, allowAmbiguity); if (!maybeParameters) { return undefined; } parameters = maybeParameters; } else { parameters = parseParametersWorker(isAsync, allowAmbiguity); } if (!parseExpected(21 /* SyntaxKind.CloseParenToken */) && !allowAmbiguity) { return undefined; } } var type = parseReturnType(58 /* SyntaxKind.ColonToken */, /*isType*/ false); if (type && !allowAmbiguity && typeHasArrowFunctionBlockingParseError(type)) { return undefined; } // Parsing a signature isn't enough. // Parenthesized arrow signatures often look like other valid expressions. // For instance: // - "(x = 10)" is an assignment expression parsed as a signature with a default parameter value. // - "(x,y)" is a comma expression parsed as a signature with two parameters. // - "a ? (b): c" will have "(b):" parsed as a signature with a return type annotation. // - "a ? (b): function() {}" will too, since function() is a valid JSDoc function type. // - "a ? (b): (function() {})" as well, but inside of a parenthesized type with an arbitrary amount of nesting. // // So we need just a bit of lookahead to ensure that it can only be a signature. var unwrappedType = type; while ((unwrappedType === null || unwrappedType === void 0 ? void 0 : unwrappedType.kind) === 191 /* SyntaxKind.ParenthesizedType */) { unwrappedType = unwrappedType.type; // Skip parens if need be } var hasJSDocFunctionType = unwrappedType && ts.isJSDocFunctionType(unwrappedType); if (!allowAmbiguity && token() !== 38 /* SyntaxKind.EqualsGreaterThanToken */ && (hasJSDocFunctionType || token() !== 18 /* SyntaxKind.OpenBraceToken */)) { // Returning undefined here will cause our caller to rewind to where we started from. return undefined; } // If we have an arrow, then try to parse the body. Even if not, try to parse if we // have an opening brace, just in case we're in an error state. var lastToken = token(); var equalsGreaterThanToken = parseExpectedToken(38 /* SyntaxKind.EqualsGreaterThanToken */); var body = (lastToken === 38 /* SyntaxKind.EqualsGreaterThanToken */ || lastToken === 18 /* SyntaxKind.OpenBraceToken */) ? parseArrowFunctionExpressionBody(ts.some(modifiers, ts.isAsyncModifier)) : parseIdentifier(); var node = factory.createArrowFunction(modifiers, typeParameters, parameters, type, equalsGreaterThanToken, body); return withJSDoc(finishNode(node, pos), hasJSDoc); } function parseArrowFunctionExpressionBody(isAsync) { if (token() === 18 /* SyntaxKind.OpenBraceToken */) { return parseFunctionBlock(isAsync ? 2 /* SignatureFlags.Await */ : 0 /* SignatureFlags.None */); } if (token() !== 26 /* SyntaxKind.SemicolonToken */ && token() !== 98 /* SyntaxKind.FunctionKeyword */ && token() !== 84 /* SyntaxKind.ClassKeyword */ && isStartOfStatement() && !isStartOfExpressionStatement()) { // Check if we got a plain statement (i.e. no expression-statements, no function/class expressions/declarations) // // Here we try to recover from a potential error situation in the case where the // user meant to supply a block. For example, if the user wrote: // // a => // let v = 0; // } // // they may be missing an open brace. Check to see if that's the case so we can // try to recover better. If we don't do this, then the next close curly we see may end // up preemptively closing the containing construct. // // Note: even when 'IgnoreMissingOpenBrace' is passed, parseBody will still error. return parseFunctionBlock(16 /* SignatureFlags.IgnoreMissingOpenBrace */ | (isAsync ? 2 /* SignatureFlags.Await */ : 0 /* SignatureFlags.None */)); } var savedTopLevel = topLevel; topLevel = false; var node = isAsync ? doInAwaitContext(parseAssignmentExpressionOrHigher) : doOutsideOfAwaitContext(parseAssignmentExpressionOrHigher); topLevel = savedTopLevel; return node; } function parseConditionalExpressionRest(leftOperand, pos) { // Note: we are passed in an expression which was produced from parseBinaryExpressionOrHigher. var questionToken = parseOptionalToken(57 /* SyntaxKind.QuestionToken */); if (!questionToken) { return leftOperand; } // Note: we explicitly 'allowIn' in the whenTrue part of the condition expression, and // we do not that for the 'whenFalse' part. var colonToken; return finishNode(factory.createConditionalExpression(leftOperand, questionToken, doOutsideOfContext(disallowInAndDecoratorContext, parseAssignmentExpressionOrHigher), colonToken = parseExpectedToken(58 /* SyntaxKind.ColonToken */), ts.nodeIsPresent(colonToken) ? parseAssignmentExpressionOrHigher() : createMissingNode(79 /* SyntaxKind.Identifier */, /*reportAtCurrentPosition*/ false, ts.Diagnostics._0_expected, ts.tokenToString(58 /* SyntaxKind.ColonToken */))), pos); } function parseBinaryExpressionOrHigher(precedence) { var pos = getNodePos(); var leftOperand = parseUnaryExpressionOrHigher(); return parseBinaryExpressionRest(precedence, leftOperand, pos); } function isInOrOfKeyword(t) { return t === 101 /* SyntaxKind.InKeyword */ || t === 160 /* SyntaxKind.OfKeyword */; } function parseBinaryExpressionRest(precedence, leftOperand, pos) { while (true) { // We either have a binary operator here, or we're finished. We call // reScanGreaterToken so that we merge token sequences like > and = into >= reScanGreaterToken(); var newPrecedence = ts.getBinaryOperatorPrecedence(token()); // Check the precedence to see if we should "take" this operator // - For left associative operator (all operator but **), consume the operator, // recursively call the function below, and parse binaryExpression as a rightOperand // of the caller if the new precedence of the operator is greater then or equal to the current precedence. // For example: // a - b - c; // ^token; leftOperand = b. Return b to the caller as a rightOperand // a * b - c // ^token; leftOperand = b. Return b to the caller as a rightOperand // a - b * c; // ^token; leftOperand = b. Return b * c to the caller as a rightOperand // - For right associative operator (**), consume the operator, recursively call the function // and parse binaryExpression as a rightOperand of the caller if the new precedence of // the operator is strictly grater than the current precedence // For example: // a ** b ** c; // ^^token; leftOperand = b. Return b ** c to the caller as a rightOperand // a - b ** c; // ^^token; leftOperand = b. Return b ** c to the caller as a rightOperand // a ** b - c // ^token; leftOperand = b. Return b to the caller as a rightOperand var consumeCurrentOperator = token() === 42 /* SyntaxKind.AsteriskAsteriskToken */ ? newPrecedence >= precedence : newPrecedence > precedence; if (!consumeCurrentOperator) { break; } if (token() === 101 /* SyntaxKind.InKeyword */ && inDisallowInContext()) { break; } if (token() === 127 /* SyntaxKind.AsKeyword */) { // Make sure we *do* perform ASI for constructs like this: // var x = foo // as (Bar) // This should be parsed as an initialized variable, followed // by a function call to 'as' with the argument 'Bar' if (scanner.hasPrecedingLineBreak()) { break; } else { nextToken(); leftOperand = makeAsExpression(leftOperand, parseType()); } } else { leftOperand = makeBinaryExpression(leftOperand, parseTokenNode(), parseBinaryExpressionOrHigher(newPrecedence), pos); } } return leftOperand; } function isBinaryOperator() { if (inDisallowInContext() && token() === 101 /* SyntaxKind.InKeyword */) { return false; } return ts.getBinaryOperatorPrecedence(token()) > 0; } function makeBinaryExpression(left, operatorToken, right, pos) { return finishNode(factory.createBinaryExpression(left, operatorToken, right), pos); } function makeAsExpression(left, right) { return finishNode(factory.createAsExpression(left, right), left.pos); } function parsePrefixUnaryExpression() { var pos = getNodePos(); return finishNode(factory.createPrefixUnaryExpression(token(), nextTokenAnd(parseSimpleUnaryExpression)), pos); } function parseDeleteExpression() { var pos = getNodePos(); return finishNode(factory.createDeleteExpression(nextTokenAnd(parseSimpleUnaryExpression)), pos); } function parseTypeOfExpression() { var pos = getNodePos(); return finishNode(factory.createTypeOfExpression(nextTokenAnd(parseSimpleUnaryExpression)), pos); } function parseVoidExpression() { var pos = getNodePos(); return finishNode(factory.createVoidExpression(nextTokenAnd(parseSimpleUnaryExpression)), pos); } function isAwaitExpression() { if (token() === 132 /* SyntaxKind.AwaitKeyword */) { if (inAwaitContext()) { return true; } // here we are using similar heuristics as 'isYieldExpression' return lookAhead(nextTokenIsIdentifierOrKeywordOrLiteralOnSameLine); } return false; } function parseAwaitExpression() { var pos = getNodePos(); return finishNode(factory.createAwaitExpression(nextTokenAnd(parseSimpleUnaryExpression)), pos); } /** * Parse ES7 exponential expression and await expression * * ES7 ExponentiationExpression: * 1) UnaryExpression[?Yield] * 2) UpdateExpression[?Yield] ** ExponentiationExpression[?Yield] * */ function parseUnaryExpressionOrHigher() { /** * ES7 UpdateExpression: * 1) LeftHandSideExpression[?Yield] * 2) LeftHandSideExpression[?Yield][no LineTerminator here]++ * 3) LeftHandSideExpression[?Yield][no LineTerminator here]-- * 4) ++UnaryExpression[?Yield] * 5) --UnaryExpression[?Yield] */ if (isUpdateExpression()) { var pos = getNodePos(); var updateExpression = parseUpdateExpression(); return token() === 42 /* SyntaxKind.AsteriskAsteriskToken */ ? parseBinaryExpressionRest(ts.getBinaryOperatorPrecedence(token()), updateExpression, pos) : updateExpression; } /** * ES7 UnaryExpression: * 1) UpdateExpression[?yield] * 2) delete UpdateExpression[?yield] * 3) void UpdateExpression[?yield] * 4) typeof UpdateExpression[?yield] * 5) + UpdateExpression[?yield] * 6) - UpdateExpression[?yield] * 7) ~ UpdateExpression[?yield] * 8) ! UpdateExpression[?yield] */ var unaryOperator = token(); var simpleUnaryExpression = parseSimpleUnaryExpression(); if (token() === 42 /* SyntaxKind.AsteriskAsteriskToken */) { var pos = ts.skipTrivia(sourceText, simpleUnaryExpression.pos); var end = simpleUnaryExpression.end; if (simpleUnaryExpression.kind === 211 /* SyntaxKind.TypeAssertionExpression */) { parseErrorAt(pos, end, ts.Diagnostics.A_type_assertion_expression_is_not_allowed_in_the_left_hand_side_of_an_exponentiation_expression_Consider_enclosing_the_expression_in_parentheses); } else { parseErrorAt(pos, end, ts.Diagnostics.An_unary_expression_with_the_0_operator_is_not_allowed_in_the_left_hand_side_of_an_exponentiation_expression_Consider_enclosing_the_expression_in_parentheses, ts.tokenToString(unaryOperator)); } } return simpleUnaryExpression; } /** * Parse ES7 simple-unary expression or higher: * * ES7 UnaryExpression: * 1) UpdateExpression[?yield] * 2) delete UnaryExpression[?yield] * 3) void UnaryExpression[?yield] * 4) typeof UnaryExpression[?yield] * 5) + UnaryExpression[?yield] * 6) - UnaryExpression[?yield] * 7) ~ UnaryExpression[?yield] * 8) ! UnaryExpression[?yield] * 9) [+Await] await UnaryExpression[?yield] */ function parseSimpleUnaryExpression() { switch (token()) { case 39 /* SyntaxKind.PlusToken */: case 40 /* SyntaxKind.MinusToken */: case 54 /* SyntaxKind.TildeToken */: case 53 /* SyntaxKind.ExclamationToken */: return parsePrefixUnaryExpression(); case 89 /* SyntaxKind.DeleteKeyword */: return parseDeleteExpression(); case 112 /* SyntaxKind.TypeOfKeyword */: return parseTypeOfExpression(); case 114 /* SyntaxKind.VoidKeyword */: return parseVoidExpression(); case 29 /* SyntaxKind.LessThanToken */: // This is modified UnaryExpression grammar in TypeScript // UnaryExpression (modified): // < type > UnaryExpression return parseTypeAssertion(); case 132 /* SyntaxKind.AwaitKeyword */: if (isAwaitExpression()) { return parseAwaitExpression(); } // falls through default: return parseUpdateExpression(); } } /** * Check if the current token can possibly be an ES7 increment expression. * * ES7 UpdateExpression: * LeftHandSideExpression[?Yield] * LeftHandSideExpression[?Yield][no LineTerminator here]++ * LeftHandSideExpression[?Yield][no LineTerminator here]-- * ++LeftHandSideExpression[?Yield] * --LeftHandSideExpression[?Yield] */ function isUpdateExpression() { // This function is called inside parseUnaryExpression to decide // whether to call parseSimpleUnaryExpression or call parseUpdateExpression directly switch (token()) { case 39 /* SyntaxKind.PlusToken */: case 40 /* SyntaxKind.MinusToken */: case 54 /* SyntaxKind.TildeToken */: case 53 /* SyntaxKind.ExclamationToken */: case 89 /* SyntaxKind.DeleteKeyword */: case 112 /* SyntaxKind.TypeOfKeyword */: case 114 /* SyntaxKind.VoidKeyword */: case 132 /* SyntaxKind.AwaitKeyword */: return false; case 29 /* SyntaxKind.LessThanToken */: // If we are not in JSX context, we are parsing TypeAssertion which is an UnaryExpression if (languageVariant !== 1 /* LanguageVariant.JSX */) { return false; } // We are in JSX context and the token is part of JSXElement. // falls through default: return true; } } /** * Parse ES7 UpdateExpression. UpdateExpression is used instead of ES6's PostFixExpression. * * ES7 UpdateExpression[yield]: * 1) LeftHandSideExpression[?yield] * 2) LeftHandSideExpression[?yield] [[no LineTerminator here]]++ * 3) LeftHandSideExpression[?yield] [[no LineTerminator here]]-- * 4) ++LeftHandSideExpression[?yield] * 5) --LeftHandSideExpression[?yield] * In TypeScript (2), (3) are parsed as PostfixUnaryExpression. (4), (5) are parsed as PrefixUnaryExpression */ function parseUpdateExpression() { if (token() === 45 /* SyntaxKind.PlusPlusToken */ || token() === 46 /* SyntaxKind.MinusMinusToken */) { var pos = getNodePos(); return finishNode(factory.createPrefixUnaryExpression(token(), nextTokenAnd(parseLeftHandSideExpressionOrHigher)), pos); } else if (languageVariant === 1 /* LanguageVariant.JSX */ && token() === 29 /* SyntaxKind.LessThanToken */ && lookAhead(nextTokenIsIdentifierOrKeywordOrGreaterThan)) { // JSXElement is part of primaryExpression return parseJsxElementOrSelfClosingElementOrFragment(/*inExpressionContext*/ true); } var expression = parseLeftHandSideExpressionOrHigher(); ts.Debug.assert(ts.isLeftHandSideExpression(expression)); if ((token() === 45 /* SyntaxKind.PlusPlusToken */ || token() === 46 /* SyntaxKind.MinusMinusToken */) && !scanner.hasPrecedingLineBreak()) { var operator = token(); nextToken(); return finishNode(factory.createPostfixUnaryExpression(expression, operator), expression.pos); } return expression; } function parseLeftHandSideExpressionOrHigher() { // Original Ecma: // LeftHandSideExpression: See 11.2 // NewExpression // CallExpression // // Our simplification: // // LeftHandSideExpression: See 11.2 // MemberExpression // CallExpression // // See comment in parseMemberExpressionOrHigher on how we replaced NewExpression with // MemberExpression to make our lives easier. // // to best understand the below code, it's important to see how CallExpression expands // out into its own productions: // // CallExpression: // MemberExpression Arguments // CallExpression Arguments // CallExpression[Expression] // CallExpression.IdentifierName // import (AssignmentExpression) // super Arguments // super.IdentifierName // // Because of the recursion in these calls, we need to bottom out first. There are three // bottom out states we can run into: 1) We see 'super' which must start either of // the last two CallExpression productions. 2) We see 'import' which must start import call. // 3)we have a MemberExpression which either completes the LeftHandSideExpression, // or starts the beginning of the first four CallExpression productions. var pos = getNodePos(); var expression; if (token() === 100 /* SyntaxKind.ImportKeyword */) { if (lookAhead(nextTokenIsOpenParenOrLessThan)) { // We don't want to eagerly consume all import keyword as import call expression so we look ahead to find "(" // For example: // var foo3 = require("subfolder // import * as foo1 from "module-from-node // We want this import to be a statement rather than import call expression sourceFlags |= 2097152 /* NodeFlags.PossiblyContainsDynamicImport */; expression = parseTokenNode(); } else if (lookAhead(nextTokenIsDot)) { // This is an 'import.*' metaproperty (i.e. 'import.meta') nextToken(); // advance past the 'import' nextToken(); // advance past the dot expression = finishNode(factory.createMetaProperty(100 /* SyntaxKind.ImportKeyword */, parseIdentifierName()), pos); sourceFlags |= 4194304 /* NodeFlags.PossiblyContainsImportMeta */; } else { expression = parseMemberExpressionOrHigher(); } } else { expression = token() === 106 /* SyntaxKind.SuperKeyword */ ? parseSuperExpression() : parseMemberExpressionOrHigher(); } // Now, we *may* be complete. However, we might have consumed the start of a // CallExpression or OptionalExpression. As such, we need to consume the rest // of it here to be complete. return parseCallExpressionRest(pos, expression); } function parseMemberExpressionOrHigher() { // Note: to make our lives simpler, we decompose the NewExpression productions and // place ObjectCreationExpression and FunctionExpression into PrimaryExpression. // like so: // // PrimaryExpression : See 11.1 // this // Identifier // Literal // ArrayLiteral // ObjectLiteral // (Expression) // FunctionExpression // new MemberExpression Arguments? // // MemberExpression : See 11.2 // PrimaryExpression // MemberExpression[Expression] // MemberExpression.IdentifierName // // CallExpression : See 11.2 // MemberExpression // CallExpression Arguments // CallExpression[Expression] // CallExpression.IdentifierName // // Technically this is ambiguous. i.e. CallExpression defines: // // CallExpression: // CallExpression Arguments // // If you see: "new Foo()" // // Then that could be treated as a single ObjectCreationExpression, or it could be // treated as the invocation of "new Foo". We disambiguate that in code (to match // the original grammar) by making sure that if we see an ObjectCreationExpression // we always consume arguments if they are there. So we treat "new Foo()" as an // object creation only, and not at all as an invocation. Another way to think // about this is that for every "new" that we see, we will consume an argument list if // it is there as part of the *associated* object creation node. Any additional // argument lists we see, will become invocation expressions. // // Because there are no other places in the grammar now that refer to FunctionExpression // or ObjectCreationExpression, it is safe to push down into the PrimaryExpression // production. // // Because CallExpression and MemberExpression are left recursive, we need to bottom out // of the recursion immediately. So we parse out a primary expression to start with. var pos = getNodePos(); var expression = parsePrimaryExpression(); return parseMemberExpressionRest(pos, expression, /*allowOptionalChain*/ true); } function parseSuperExpression() { var pos = getNodePos(); var expression = parseTokenNode(); if (token() === 29 /* SyntaxKind.LessThanToken */) { var startPos = getNodePos(); var typeArguments = tryParse(parseTypeArgumentsInExpression); if (typeArguments !== undefined) { parseErrorAt(startPos, getNodePos(), ts.Diagnostics.super_may_not_use_type_arguments); } } if (token() === 20 /* SyntaxKind.OpenParenToken */ || token() === 24 /* SyntaxKind.DotToken */ || token() === 22 /* SyntaxKind.OpenBracketToken */) { return expression; } // If we have seen "super" it must be followed by '(' or '.'. // If it wasn't then just try to parse out a '.' and report an error. parseExpectedToken(24 /* SyntaxKind.DotToken */, ts.Diagnostics.super_must_be_followed_by_an_argument_list_or_member_access); // private names will never work with `super` (`super.#foo`), but that's a semantic error, not syntactic return finishNode(factory.createPropertyAccessExpression(expression, parseRightSideOfDot(/*allowIdentifierNames*/ true, /*allowPrivateIdentifiers*/ true)), pos); } function parseJsxElementOrSelfClosingElementOrFragment(inExpressionContext, topInvalidNodePosition, openingTag) { var pos = getNodePos(); var opening = parseJsxOpeningOrSelfClosingElementOrOpeningFragment(inExpressionContext); var result; if (opening.kind === 280 /* SyntaxKind.JsxOpeningElement */) { var children = parseJsxChildren(opening); var closingElement = void 0; var lastChild = children[children.length - 1]; if ((lastChild === null || lastChild === void 0 ? void 0 : lastChild.kind) === 278 /* SyntaxKind.JsxElement */ && !tagNamesAreEquivalent(lastChild.openingElement.tagName, lastChild.closingElement.tagName) && tagNamesAreEquivalent(opening.tagName, lastChild.closingElement.tagName)) { // when an unclosed JsxOpeningElement incorrectly parses its parent's JsxClosingElement, // restructure (
(......
)) --> (
(......)
) // (no need to error; the parent will error) var end = lastChild.children.end; var newLast = finishNode(factory.createJsxElement(lastChild.openingElement, lastChild.children, finishNode(factory.createJsxClosingElement(finishNode(factory.createIdentifier(""), end, end)), end, end)), lastChild.openingElement.pos, end); children = createNodeArray(__spreadArray(__spreadArray([], children.slice(0, children.length - 1), true), [newLast], false), children.pos, end); closingElement = lastChild.closingElement; } else { closingElement = parseJsxClosingElement(opening, inExpressionContext); if (!tagNamesAreEquivalent(opening.tagName, closingElement.tagName)) { if (openingTag && ts.isJsxOpeningElement(openingTag) && tagNamesAreEquivalent(closingElement.tagName, openingTag.tagName)) { // opening incorrectly matched with its parent's closing -- put error on opening parseErrorAtRange(opening.tagName, ts.Diagnostics.JSX_element_0_has_no_corresponding_closing_tag, ts.getTextOfNodeFromSourceText(sourceText, opening.tagName)); } else { // other opening/closing mismatches -- put error on closing parseErrorAtRange(closingElement.tagName, ts.Diagnostics.Expected_corresponding_JSX_closing_tag_for_0, ts.getTextOfNodeFromSourceText(sourceText, opening.tagName)); } } } result = finishNode(factory.createJsxElement(opening, children, closingElement), pos); } else if (opening.kind === 283 /* SyntaxKind.JsxOpeningFragment */) { result = finishNode(factory.createJsxFragment(opening, parseJsxChildren(opening), parseJsxClosingFragment(inExpressionContext)), pos); } else { ts.Debug.assert(opening.kind === 279 /* SyntaxKind.JsxSelfClosingElement */); // Nothing else to do for self-closing elements result = opening; } // If the user writes the invalid code '
' in an expression context (i.e. not wrapped in // an enclosing tag), we'll naively try to parse ^ this as a 'less than' operator and the remainder of the tag // as garbage, which will cause the formatter to badly mangle the JSX. Perform a speculative parse of a JSX // element if we see a < token so that we can wrap it in a synthetic binary expression so the formatter // does less damage and we can report a better error. // Since JSX elements are invalid < operands anyway, this lookahead parse will only occur in error scenarios // of one sort or another. if (inExpressionContext && token() === 29 /* SyntaxKind.LessThanToken */) { var topBadPos_1 = typeof topInvalidNodePosition === "undefined" ? result.pos : topInvalidNodePosition; var invalidElement = tryParse(function () { return parseJsxElementOrSelfClosingElementOrFragment(/*inExpressionContext*/ true, topBadPos_1); }); if (invalidElement) { var operatorToken = createMissingNode(27 /* SyntaxKind.CommaToken */, /*reportAtCurrentPosition*/ false); ts.setTextRangePosWidth(operatorToken, invalidElement.pos, 0); parseErrorAt(ts.skipTrivia(sourceText, topBadPos_1), invalidElement.end, ts.Diagnostics.JSX_expressions_must_have_one_parent_element); return finishNode(factory.createBinaryExpression(result, operatorToken, invalidElement), pos); } } return result; } function parseJsxText() { var pos = getNodePos(); var node = factory.createJsxText(scanner.getTokenValue(), currentToken === 12 /* SyntaxKind.JsxTextAllWhiteSpaces */); currentToken = scanner.scanJsxToken(); return finishNode(node, pos); } function parseJsxChild(openingTag, token) { switch (token) { case 1 /* SyntaxKind.EndOfFileToken */: // If we hit EOF, issue the error at the tag that lacks the closing element // rather than at the end of the file (which is useless) if (ts.isJsxOpeningFragment(openingTag)) { parseErrorAtRange(openingTag, ts.Diagnostics.JSX_fragment_has_no_corresponding_closing_tag); } else { // We want the error span to cover only 'Foo.Bar' in < Foo.Bar > // or to cover only 'Foo' in < Foo > var tag = openingTag.tagName; var start = ts.skipTrivia(sourceText, tag.pos); parseErrorAt(start, tag.end, ts.Diagnostics.JSX_element_0_has_no_corresponding_closing_tag, ts.getTextOfNodeFromSourceText(sourceText, openingTag.tagName)); } return undefined; case 30 /* SyntaxKind.LessThanSlashToken */: case 7 /* SyntaxKind.ConflictMarkerTrivia */: return undefined; case 11 /* SyntaxKind.JsxText */: case 12 /* SyntaxKind.JsxTextAllWhiteSpaces */: return parseJsxText(); case 18 /* SyntaxKind.OpenBraceToken */: return parseJsxExpression(/*inExpressionContext*/ false); case 29 /* SyntaxKind.LessThanToken */: return parseJsxElementOrSelfClosingElementOrFragment(/*inExpressionContext*/ false, /*topInvalidNodePosition*/ undefined, openingTag); default: return ts.Debug.assertNever(token); } } function parseJsxChildren(openingTag) { var list = []; var listPos = getNodePos(); var saveParsingContext = parsingContext; parsingContext |= 1 << 14 /* ParsingContext.JsxChildren */; while (true) { var child = parseJsxChild(openingTag, currentToken = scanner.reScanJsxToken()); if (!child) break; list.push(child); if (ts.isJsxOpeningElement(openingTag) && (child === null || child === void 0 ? void 0 : child.kind) === 278 /* SyntaxKind.JsxElement */ && !tagNamesAreEquivalent(child.openingElement.tagName, child.closingElement.tagName) && tagNamesAreEquivalent(openingTag.tagName, child.closingElement.tagName)) { // stop after parsing a mismatched child like
...(
) in order to reattach the higher break; } } parsingContext = saveParsingContext; return createNodeArray(list, listPos); } function parseJsxAttributes() { var pos = getNodePos(); return finishNode(factory.createJsxAttributes(parseList(13 /* ParsingContext.JsxAttributes */, parseJsxAttribute)), pos); } function parseJsxOpeningOrSelfClosingElementOrOpeningFragment(inExpressionContext) { var pos = getNodePos(); parseExpected(29 /* SyntaxKind.LessThanToken */); if (token() === 31 /* SyntaxKind.GreaterThanToken */) { // See below for explanation of scanJsxText scanJsxText(); return finishNode(factory.createJsxOpeningFragment(), pos); } var tagName = parseJsxElementName(); var typeArguments = (contextFlags & 262144 /* NodeFlags.JavaScriptFile */) === 0 ? tryParseTypeArguments() : undefined; var attributes = parseJsxAttributes(); var node; if (token() === 31 /* SyntaxKind.GreaterThanToken */) { // Closing tag, so scan the immediately-following text with the JSX scanning instead // of regular scanning to avoid treating illegal characters (e.g. '#') as immediate // scanning errors scanJsxText(); node = factory.createJsxOpeningElement(tagName, typeArguments, attributes); } else { parseExpected(43 /* SyntaxKind.SlashToken */); if (parseExpected(31 /* SyntaxKind.GreaterThanToken */, /*diagnostic*/ undefined, /*shouldAdvance*/ false)) { // manually advance the scanner in order to look for jsx text inside jsx if (inExpressionContext) { nextToken(); } else { scanJsxText(); } } node = factory.createJsxSelfClosingElement(tagName, typeArguments, attributes); } return finishNode(node, pos); } function parseJsxElementName() { var pos = getNodePos(); scanJsxIdentifier(); // JsxElement can have name in the form of // propertyAccessExpression // primaryExpression in the form of an identifier and "this" keyword // We can't just simply use parseLeftHandSideExpressionOrHigher because then we will start consider class,function etc as a keyword // We only want to consider "this" as a primaryExpression var expression = token() === 108 /* SyntaxKind.ThisKeyword */ ? parseTokenNode() : parseIdentifierName(); while (parseOptional(24 /* SyntaxKind.DotToken */)) { expression = finishNode(factory.createPropertyAccessExpression(expression, parseRightSideOfDot(/*allowIdentifierNames*/ true, /*allowPrivateIdentifiers*/ false)), pos); } return expression; } function parseJsxExpression(inExpressionContext) { var pos = getNodePos(); if (!parseExpected(18 /* SyntaxKind.OpenBraceToken */)) { return undefined; } var dotDotDotToken; var expression; if (token() !== 19 /* SyntaxKind.CloseBraceToken */) { dotDotDotToken = parseOptionalToken(25 /* SyntaxKind.DotDotDotToken */); // Only an AssignmentExpression is valid here per the JSX spec, // but we can unambiguously parse a comma sequence and provide // a better error message in grammar checking. expression = parseExpression(); } if (inExpressionContext) { parseExpected(19 /* SyntaxKind.CloseBraceToken */); } else { if (parseExpected(19 /* SyntaxKind.CloseBraceToken */, /*message*/ undefined, /*shouldAdvance*/ false)) { scanJsxText(); } } return finishNode(factory.createJsxExpression(dotDotDotToken, expression), pos); } function parseJsxAttribute() { if (token() === 18 /* SyntaxKind.OpenBraceToken */) { return parseJsxSpreadAttribute(); } scanJsxIdentifier(); var pos = getNodePos(); return finishNode(factory.createJsxAttribute(parseIdentifierName(), token() !== 63 /* SyntaxKind.EqualsToken */ ? undefined : scanJsxAttributeValue() === 10 /* SyntaxKind.StringLiteral */ ? parseLiteralNode() : parseJsxExpression(/*inExpressionContext*/ true)), pos); } function parseJsxSpreadAttribute() { var pos = getNodePos(); parseExpected(18 /* SyntaxKind.OpenBraceToken */); parseExpected(25 /* SyntaxKind.DotDotDotToken */); var expression = parseExpression(); parseExpected(19 /* SyntaxKind.CloseBraceToken */); return finishNode(factory.createJsxSpreadAttribute(expression), pos); } function parseJsxClosingElement(open, inExpressionContext) { var pos = getNodePos(); parseExpected(30 /* SyntaxKind.LessThanSlashToken */); var tagName = parseJsxElementName(); if (parseExpected(31 /* SyntaxKind.GreaterThanToken */, /*diagnostic*/ undefined, /*shouldAdvance*/ false)) { // manually advance the scanner in order to look for jsx text inside jsx if (inExpressionContext || !tagNamesAreEquivalent(open.tagName, tagName)) { nextToken(); } else { scanJsxText(); } } return finishNode(factory.createJsxClosingElement(tagName), pos); } function parseJsxClosingFragment(inExpressionContext) { var pos = getNodePos(); parseExpected(30 /* SyntaxKind.LessThanSlashToken */); if (ts.tokenIsIdentifierOrKeyword(token())) { parseErrorAtRange(parseJsxElementName(), ts.Diagnostics.Expected_corresponding_closing_tag_for_JSX_fragment); } if (parseExpected(31 /* SyntaxKind.GreaterThanToken */, /*diagnostic*/ undefined, /*shouldAdvance*/ false)) { // manually advance the scanner in order to look for jsx text inside jsx if (inExpressionContext) { nextToken(); } else { scanJsxText(); } } return finishNode(factory.createJsxJsxClosingFragment(), pos); } function parseTypeAssertion() { var pos = getNodePos(); parseExpected(29 /* SyntaxKind.LessThanToken */); var type = parseType(); parseExpected(31 /* SyntaxKind.GreaterThanToken */); var expression = parseSimpleUnaryExpression(); return finishNode(factory.createTypeAssertion(type, expression), pos); } function nextTokenIsIdentifierOrKeywordOrOpenBracketOrTemplate() { nextToken(); return ts.tokenIsIdentifierOrKeyword(token()) || token() === 22 /* SyntaxKind.OpenBracketToken */ || isTemplateStartOfTaggedTemplate(); } function isStartOfOptionalPropertyOrElementAccessChain() { return token() === 28 /* SyntaxKind.QuestionDotToken */ && lookAhead(nextTokenIsIdentifierOrKeywordOrOpenBracketOrTemplate); } function tryReparseOptionalChain(node) { if (node.flags & 32 /* NodeFlags.OptionalChain */) { return true; } // check for an optional chain in a non-null expression if (ts.isNonNullExpression(node)) { var expr = node.expression; while (ts.isNonNullExpression(expr) && !(expr.flags & 32 /* NodeFlags.OptionalChain */)) { expr = expr.expression; } if (expr.flags & 32 /* NodeFlags.OptionalChain */) { // this is part of an optional chain. Walk down from `node` to `expression` and set the flag. while (ts.isNonNullExpression(node)) { node.flags |= 32 /* NodeFlags.OptionalChain */; node = node.expression; } return true; } } return false; } function parsePropertyAccessExpressionRest(pos, expression, questionDotToken) { var name = parseRightSideOfDot(/*allowIdentifierNames*/ true, /*allowPrivateIdentifiers*/ true); var isOptionalChain = questionDotToken || tryReparseOptionalChain(expression); var propertyAccess = isOptionalChain ? factory.createPropertyAccessChain(expression, questionDotToken, name) : factory.createPropertyAccessExpression(expression, name); if (isOptionalChain && ts.isPrivateIdentifier(propertyAccess.name)) { parseErrorAtRange(propertyAccess.name, ts.Diagnostics.An_optional_chain_cannot_contain_private_identifiers); } return finishNode(propertyAccess, pos); } function parseElementAccessExpressionRest(pos, expression, questionDotToken) { var argumentExpression; if (token() === 23 /* SyntaxKind.CloseBracketToken */) { argumentExpression = createMissingNode(79 /* SyntaxKind.Identifier */, /*reportAtCurrentPosition*/ true, ts.Diagnostics.An_element_access_expression_should_take_an_argument); } else { var argument = allowInAnd(parseExpression); if (ts.isStringOrNumericLiteralLike(argument)) { argument.text = internIdentifier(argument.text); } argumentExpression = argument; } parseExpected(23 /* SyntaxKind.CloseBracketToken */); var indexedAccess = questionDotToken || tryReparseOptionalChain(expression) ? factory.createElementAccessChain(expression, questionDotToken, argumentExpression) : factory.createElementAccessExpression(expression, argumentExpression); return finishNode(indexedAccess, pos); } function parseMemberExpressionRest(pos, expression, allowOptionalChain) { while (true) { var questionDotToken = void 0; var isPropertyAccess = false; if (allowOptionalChain && isStartOfOptionalPropertyOrElementAccessChain()) { questionDotToken = parseExpectedToken(28 /* SyntaxKind.QuestionDotToken */); isPropertyAccess = ts.tokenIsIdentifierOrKeyword(token()); } else { isPropertyAccess = parseOptional(24 /* SyntaxKind.DotToken */); } if (isPropertyAccess) { expression = parsePropertyAccessExpressionRest(pos, expression, questionDotToken); continue; } // when in the [Decorator] context, we do not parse ElementAccess as it could be part of a ComputedPropertyName if ((questionDotToken || !inDecoratorContext()) && parseOptional(22 /* SyntaxKind.OpenBracketToken */)) { expression = parseElementAccessExpressionRest(pos, expression, questionDotToken); continue; } if (isTemplateStartOfTaggedTemplate()) { // Absorb type arguments into TemplateExpression when preceding expression is ExpressionWithTypeArguments expression = !questionDotToken && expression.kind === 228 /* SyntaxKind.ExpressionWithTypeArguments */ ? parseTaggedTemplateRest(pos, expression.expression, questionDotToken, expression.typeArguments) : parseTaggedTemplateRest(pos, expression, questionDotToken, /*typeArguments*/ undefined); continue; } if (!questionDotToken) { if (token() === 53 /* SyntaxKind.ExclamationToken */ && !scanner.hasPrecedingLineBreak()) { nextToken(); expression = finishNode(factory.createNonNullExpression(expression), pos); continue; } var typeArguments = tryParse(parseTypeArgumentsInExpression); if (typeArguments) { expression = finishNode(factory.createExpressionWithTypeArguments(expression, typeArguments), pos); continue; } } return expression; } } function isTemplateStartOfTaggedTemplate() { return token() === 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */ || token() === 15 /* SyntaxKind.TemplateHead */; } function parseTaggedTemplateRest(pos, tag, questionDotToken, typeArguments) { var tagExpression = factory.createTaggedTemplateExpression(tag, typeArguments, token() === 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */ ? (reScanTemplateHeadOrNoSubstitutionTemplate(), parseLiteralNode()) : parseTemplateExpression(/*isTaggedTemplate*/ true)); if (questionDotToken || tag.flags & 32 /* NodeFlags.OptionalChain */) { tagExpression.flags |= 32 /* NodeFlags.OptionalChain */; } tagExpression.questionDotToken = questionDotToken; return finishNode(tagExpression, pos); } function parseCallExpressionRest(pos, expression) { while (true) { expression = parseMemberExpressionRest(pos, expression, /*allowOptionalChain*/ true); var typeArguments = void 0; var questionDotToken = parseOptionalToken(28 /* SyntaxKind.QuestionDotToken */); if (questionDotToken) { typeArguments = tryParse(parseTypeArgumentsInExpression); if (isTemplateStartOfTaggedTemplate()) { expression = parseTaggedTemplateRest(pos, expression, questionDotToken, typeArguments); continue; } } if (typeArguments || token() === 20 /* SyntaxKind.OpenParenToken */) { // Absorb type arguments into CallExpression when preceding expression is ExpressionWithTypeArguments if (!questionDotToken && expression.kind === 228 /* SyntaxKind.ExpressionWithTypeArguments */) { typeArguments = expression.typeArguments; expression = expression.expression; } var argumentList = parseArgumentList(); var callExpr = questionDotToken || tryReparseOptionalChain(expression) ? factory.createCallChain(expression, questionDotToken, typeArguments, argumentList) : factory.createCallExpression(expression, typeArguments, argumentList); expression = finishNode(callExpr, pos); continue; } if (questionDotToken) { // We parsed `?.` but then failed to parse anything, so report a missing identifier here. var name = createMissingNode(79 /* SyntaxKind.Identifier */, /*reportAtCurrentPosition*/ false, ts.Diagnostics.Identifier_expected); expression = finishNode(factory.createPropertyAccessChain(expression, questionDotToken, name), pos); } break; } return expression; } function parseArgumentList() { parseExpected(20 /* SyntaxKind.OpenParenToken */); var result = parseDelimitedList(11 /* ParsingContext.ArgumentExpressions */, parseArgumentExpression); parseExpected(21 /* SyntaxKind.CloseParenToken */); return result; } function parseTypeArgumentsInExpression() { if ((contextFlags & 262144 /* NodeFlags.JavaScriptFile */) !== 0) { // TypeArguments must not be parsed in JavaScript files to avoid ambiguity with binary operators. return undefined; } if (reScanLessThanToken() !== 29 /* SyntaxKind.LessThanToken */) { return undefined; } nextToken(); var typeArguments = parseDelimitedList(20 /* ParsingContext.TypeArguments */, parseType); if (reScanGreaterToken() !== 31 /* SyntaxKind.GreaterThanToken */) { // If it doesn't have the closing `>` then it's definitely not an type argument list. return undefined; } nextToken(); // We successfully parsed a type argument list. The next token determines whether we want to // treat it as such. If the type argument list is followed by `(` or a template literal, as in // `f(42)`, we favor the type argument interpretation even though JavaScript would view // it as a relational expression. return typeArguments && canFollowTypeArgumentsInExpression() ? typeArguments : undefined; } function canFollowTypeArgumentsInExpression() { switch (token()) { // These tokens can follow a type argument list in a call expression. case 20 /* SyntaxKind.OpenParenToken */: // foo( case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: // foo `...` case 15 /* SyntaxKind.TemplateHead */: // foo `...${100}...` return true; } // Consider something a type argument list only if the following token can't start an expression. return !isStartOfExpression(); } function parsePrimaryExpression() { switch (token()) { case 8 /* SyntaxKind.NumericLiteral */: case 9 /* SyntaxKind.BigIntLiteral */: case 10 /* SyntaxKind.StringLiteral */: case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: return parseLiteralNode(); case 108 /* SyntaxKind.ThisKeyword */: case 106 /* SyntaxKind.SuperKeyword */: case 104 /* SyntaxKind.NullKeyword */: case 110 /* SyntaxKind.TrueKeyword */: case 95 /* SyntaxKind.FalseKeyword */: return parseTokenNode(); case 20 /* SyntaxKind.OpenParenToken */: return parseParenthesizedExpression(); case 22 /* SyntaxKind.OpenBracketToken */: return parseArrayLiteralExpression(); case 18 /* SyntaxKind.OpenBraceToken */: return parseObjectLiteralExpression(); case 131 /* SyntaxKind.AsyncKeyword */: // Async arrow functions are parsed earlier in parseAssignmentExpressionOrHigher. // If we encounter `async [no LineTerminator here] function` then this is an async // function; otherwise, its an identifier. if (!lookAhead(nextTokenIsFunctionKeywordOnSameLine)) { break; } return parseFunctionExpression(); case 84 /* SyntaxKind.ClassKeyword */: return parseClassExpression(); case 98 /* SyntaxKind.FunctionKeyword */: return parseFunctionExpression(); case 103 /* SyntaxKind.NewKeyword */: return parseNewExpressionOrNewDotTarget(); case 43 /* SyntaxKind.SlashToken */: case 68 /* SyntaxKind.SlashEqualsToken */: if (reScanSlashToken() === 13 /* SyntaxKind.RegularExpressionLiteral */) { return parseLiteralNode(); } break; case 15 /* SyntaxKind.TemplateHead */: return parseTemplateExpression(/* isTaggedTemplate */ false); case 80 /* SyntaxKind.PrivateIdentifier */: return parsePrivateIdentifier(); } return parseIdentifier(ts.Diagnostics.Expression_expected); } function parseParenthesizedExpression() { var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); parseExpected(20 /* SyntaxKind.OpenParenToken */); var expression = allowInAnd(parseExpression); parseExpected(21 /* SyntaxKind.CloseParenToken */); return withJSDoc(finishNode(factory.createParenthesizedExpression(expression), pos), hasJSDoc); } function parseSpreadElement() { var pos = getNodePos(); parseExpected(25 /* SyntaxKind.DotDotDotToken */); var expression = parseAssignmentExpressionOrHigher(); return finishNode(factory.createSpreadElement(expression), pos); } function parseArgumentOrArrayLiteralElement() { return token() === 25 /* SyntaxKind.DotDotDotToken */ ? parseSpreadElement() : token() === 27 /* SyntaxKind.CommaToken */ ? finishNode(factory.createOmittedExpression(), getNodePos()) : parseAssignmentExpressionOrHigher(); } function parseArgumentExpression() { return doOutsideOfContext(disallowInAndDecoratorContext, parseArgumentOrArrayLiteralElement); } function parseArrayLiteralExpression() { var pos = getNodePos(); var openBracketPosition = scanner.getTokenPos(); var openBracketParsed = parseExpected(22 /* SyntaxKind.OpenBracketToken */); var multiLine = scanner.hasPrecedingLineBreak(); var elements = parseDelimitedList(15 /* ParsingContext.ArrayLiteralMembers */, parseArgumentOrArrayLiteralElement); parseExpectedMatchingBrackets(22 /* SyntaxKind.OpenBracketToken */, 23 /* SyntaxKind.CloseBracketToken */, openBracketParsed, openBracketPosition); return finishNode(factory.createArrayLiteralExpression(elements, multiLine), pos); } function parseObjectLiteralElement() { var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); if (parseOptionalToken(25 /* SyntaxKind.DotDotDotToken */)) { var expression = parseAssignmentExpressionOrHigher(); return withJSDoc(finishNode(factory.createSpreadAssignment(expression), pos), hasJSDoc); } var decorators = parseDecorators(); var modifiers = parseModifiers(); if (parseContextualModifier(136 /* SyntaxKind.GetKeyword */)) { return parseAccessorDeclaration(pos, hasJSDoc, decorators, modifiers, 172 /* SyntaxKind.GetAccessor */); } if (parseContextualModifier(149 /* SyntaxKind.SetKeyword */)) { return parseAccessorDeclaration(pos, hasJSDoc, decorators, modifiers, 173 /* SyntaxKind.SetAccessor */); } var asteriskToken = parseOptionalToken(41 /* SyntaxKind.AsteriskToken */); var tokenIsIdentifier = isIdentifier(); var name = parsePropertyName(); // Disallowing of optional property assignments and definite assignment assertion happens in the grammar checker. var questionToken = parseOptionalToken(57 /* SyntaxKind.QuestionToken */); var exclamationToken = parseOptionalToken(53 /* SyntaxKind.ExclamationToken */); if (asteriskToken || token() === 20 /* SyntaxKind.OpenParenToken */ || token() === 29 /* SyntaxKind.LessThanToken */) { return parseMethodDeclaration(pos, hasJSDoc, decorators, modifiers, asteriskToken, name, questionToken, exclamationToken); } // check if it is short-hand property assignment or normal property assignment // NOTE: if token is EqualsToken it is interpreted as CoverInitializedName production // CoverInitializedName[Yield] : // IdentifierReference[?Yield] Initializer[In, ?Yield] // this is necessary because ObjectLiteral productions are also used to cover grammar for ObjectAssignmentPattern var node; var isShorthandPropertyAssignment = tokenIsIdentifier && (token() !== 58 /* SyntaxKind.ColonToken */); if (isShorthandPropertyAssignment) { var equalsToken = parseOptionalToken(63 /* SyntaxKind.EqualsToken */); var objectAssignmentInitializer = equalsToken ? allowInAnd(parseAssignmentExpressionOrHigher) : undefined; node = factory.createShorthandPropertyAssignment(name, objectAssignmentInitializer); // Save equals token for error reporting. // TODO(rbuckton): Consider manufacturing this when we need to report an error as it is otherwise not useful. node.equalsToken = equalsToken; } else { parseExpected(58 /* SyntaxKind.ColonToken */); var initializer = allowInAnd(parseAssignmentExpressionOrHigher); node = factory.createPropertyAssignment(name, initializer); } // Decorators, Modifiers, questionToken, and exclamationToken are not supported by property assignments and are reported in the grammar checker node.decorators = decorators; node.modifiers = modifiers; node.questionToken = questionToken; node.exclamationToken = exclamationToken; return withJSDoc(finishNode(node, pos), hasJSDoc); } function parseObjectLiteralExpression() { var pos = getNodePos(); var openBracePosition = scanner.getTokenPos(); var openBraceParsed = parseExpected(18 /* SyntaxKind.OpenBraceToken */); var multiLine = scanner.hasPrecedingLineBreak(); var properties = parseDelimitedList(12 /* ParsingContext.ObjectLiteralMembers */, parseObjectLiteralElement, /*considerSemicolonAsDelimiter*/ true); parseExpectedMatchingBrackets(18 /* SyntaxKind.OpenBraceToken */, 19 /* SyntaxKind.CloseBraceToken */, openBraceParsed, openBracePosition); return finishNode(factory.createObjectLiteralExpression(properties, multiLine), pos); } function parseFunctionExpression() { // GeneratorExpression: // function* BindingIdentifier [Yield][opt](FormalParameters[Yield]){ GeneratorBody } // // FunctionExpression: // function BindingIdentifier[opt](FormalParameters){ FunctionBody } var savedDecoratorContext = inDecoratorContext(); setDecoratorContext(/*val*/ false); var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); var modifiers = parseModifiers(); parseExpected(98 /* SyntaxKind.FunctionKeyword */); var asteriskToken = parseOptionalToken(41 /* SyntaxKind.AsteriskToken */); var isGenerator = asteriskToken ? 1 /* SignatureFlags.Yield */ : 0 /* SignatureFlags.None */; var isAsync = ts.some(modifiers, ts.isAsyncModifier) ? 2 /* SignatureFlags.Await */ : 0 /* SignatureFlags.None */; var name = isGenerator && isAsync ? doInYieldAndAwaitContext(parseOptionalBindingIdentifier) : isGenerator ? doInYieldContext(parseOptionalBindingIdentifier) : isAsync ? doInAwaitContext(parseOptionalBindingIdentifier) : parseOptionalBindingIdentifier(); var typeParameters = parseTypeParameters(); var parameters = parseParameters(isGenerator | isAsync); var type = parseReturnType(58 /* SyntaxKind.ColonToken */, /*isType*/ false); var body = parseFunctionBlock(isGenerator | isAsync); setDecoratorContext(savedDecoratorContext); var node = factory.createFunctionExpression(modifiers, asteriskToken, name, typeParameters, parameters, type, body); return withJSDoc(finishNode(node, pos), hasJSDoc); } function parseOptionalBindingIdentifier() { return isBindingIdentifier() ? parseBindingIdentifier() : undefined; } function parseNewExpressionOrNewDotTarget() { var pos = getNodePos(); parseExpected(103 /* SyntaxKind.NewKeyword */); if (parseOptional(24 /* SyntaxKind.DotToken */)) { var name = parseIdentifierName(); return finishNode(factory.createMetaProperty(103 /* SyntaxKind.NewKeyword */, name), pos); } var expressionPos = getNodePos(); var expression = parseMemberExpressionRest(expressionPos, parsePrimaryExpression(), /*allowOptionalChain*/ false); var typeArguments; // Absorb type arguments into NewExpression when preceding expression is ExpressionWithTypeArguments if (expression.kind === 228 /* SyntaxKind.ExpressionWithTypeArguments */) { typeArguments = expression.typeArguments; expression = expression.expression; } var argumentList = token() === 20 /* SyntaxKind.OpenParenToken */ ? parseArgumentList() : undefined; return finishNode(factory.createNewExpression(expression, typeArguments, argumentList), pos); } // STATEMENTS function parseBlock(ignoreMissingOpenBrace, diagnosticMessage) { var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); var openBracePosition = scanner.getTokenPos(); var openBraceParsed = parseExpected(18 /* SyntaxKind.OpenBraceToken */, diagnosticMessage); if (openBraceParsed || ignoreMissingOpenBrace) { var multiLine = scanner.hasPrecedingLineBreak(); var statements = parseList(1 /* ParsingContext.BlockStatements */, parseStatement); parseExpectedMatchingBrackets(18 /* SyntaxKind.OpenBraceToken */, 19 /* SyntaxKind.CloseBraceToken */, openBraceParsed, openBracePosition); var result = withJSDoc(finishNode(factory.createBlock(statements, multiLine), pos), hasJSDoc); if (token() === 63 /* SyntaxKind.EqualsToken */) { parseErrorAtCurrentToken(ts.Diagnostics.Declaration_or_statement_expected_This_follows_a_block_of_statements_so_if_you_intended_to_write_a_destructuring_assignment_you_might_need_to_wrap_the_the_whole_assignment_in_parentheses); nextToken(); } return result; } else { var statements = createMissingList(); return withJSDoc(finishNode(factory.createBlock(statements, /*multiLine*/ undefined), pos), hasJSDoc); } } function parseFunctionBlock(flags, diagnosticMessage) { var savedYieldContext = inYieldContext(); setYieldContext(!!(flags & 1 /* SignatureFlags.Yield */)); var savedAwaitContext = inAwaitContext(); setAwaitContext(!!(flags & 2 /* SignatureFlags.Await */)); var savedTopLevel = topLevel; topLevel = false; // We may be in a [Decorator] context when parsing a function expression or // arrow function. The body of the function is not in [Decorator] context. var saveDecoratorContext = inDecoratorContext(); if (saveDecoratorContext) { setDecoratorContext(/*val*/ false); } var block = parseBlock(!!(flags & 16 /* SignatureFlags.IgnoreMissingOpenBrace */), diagnosticMessage); if (saveDecoratorContext) { setDecoratorContext(/*val*/ true); } topLevel = savedTopLevel; setYieldContext(savedYieldContext); setAwaitContext(savedAwaitContext); return block; } function parseEmptyStatement() { var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); parseExpected(26 /* SyntaxKind.SemicolonToken */); return withJSDoc(finishNode(factory.createEmptyStatement(), pos), hasJSDoc); } function parseIfStatement() { var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); parseExpected(99 /* SyntaxKind.IfKeyword */); var openParenPosition = scanner.getTokenPos(); var openParenParsed = parseExpected(20 /* SyntaxKind.OpenParenToken */); var expression = allowInAnd(parseExpression); parseExpectedMatchingBrackets(20 /* SyntaxKind.OpenParenToken */, 21 /* SyntaxKind.CloseParenToken */, openParenParsed, openParenPosition); var thenStatement = parseStatement(); var elseStatement = parseOptional(91 /* SyntaxKind.ElseKeyword */) ? parseStatement() : undefined; return withJSDoc(finishNode(factory.createIfStatement(expression, thenStatement, elseStatement), pos), hasJSDoc); } function parseDoStatement() { var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); parseExpected(90 /* SyntaxKind.DoKeyword */); var statement = parseStatement(); parseExpected(115 /* SyntaxKind.WhileKeyword */); var openParenPosition = scanner.getTokenPos(); var openParenParsed = parseExpected(20 /* SyntaxKind.OpenParenToken */); var expression = allowInAnd(parseExpression); parseExpectedMatchingBrackets(20 /* SyntaxKind.OpenParenToken */, 21 /* SyntaxKind.CloseParenToken */, openParenParsed, openParenPosition); // From: https://mail.mozilla.org/pipermail/es-discuss/2011-August/016188.html // 157 min --- All allen at wirfs-brock.com CONF --- "do{;}while(false)false" prohibited in // spec but allowed in consensus reality. Approved -- this is the de-facto standard whereby // do;while(0)x will have a semicolon inserted before x. parseOptional(26 /* SyntaxKind.SemicolonToken */); return withJSDoc(finishNode(factory.createDoStatement(statement, expression), pos), hasJSDoc); } function parseWhileStatement() { var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); parseExpected(115 /* SyntaxKind.WhileKeyword */); var openParenPosition = scanner.getTokenPos(); var openParenParsed = parseExpected(20 /* SyntaxKind.OpenParenToken */); var expression = allowInAnd(parseExpression); parseExpectedMatchingBrackets(20 /* SyntaxKind.OpenParenToken */, 21 /* SyntaxKind.CloseParenToken */, openParenParsed, openParenPosition); var statement = parseStatement(); return withJSDoc(finishNode(factory.createWhileStatement(expression, statement), pos), hasJSDoc); } function parseForOrForInOrForOfStatement() { var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); parseExpected(97 /* SyntaxKind.ForKeyword */); var awaitToken = parseOptionalToken(132 /* SyntaxKind.AwaitKeyword */); parseExpected(20 /* SyntaxKind.OpenParenToken */); var initializer; if (token() !== 26 /* SyntaxKind.SemicolonToken */) { if (token() === 113 /* SyntaxKind.VarKeyword */ || token() === 119 /* SyntaxKind.LetKeyword */ || token() === 85 /* SyntaxKind.ConstKeyword */) { initializer = parseVariableDeclarationList(/*inForStatementInitializer*/ true); } else { initializer = disallowInAnd(parseExpression); } } var node; if (awaitToken ? parseExpected(160 /* SyntaxKind.OfKeyword */) : parseOptional(160 /* SyntaxKind.OfKeyword */)) { var expression = allowInAnd(parseAssignmentExpressionOrHigher); parseExpected(21 /* SyntaxKind.CloseParenToken */); node = factory.createForOfStatement(awaitToken, initializer, expression, parseStatement()); } else if (parseOptional(101 /* SyntaxKind.InKeyword */)) { var expression = allowInAnd(parseExpression); parseExpected(21 /* SyntaxKind.CloseParenToken */); node = factory.createForInStatement(initializer, expression, parseStatement()); } else { parseExpected(26 /* SyntaxKind.SemicolonToken */); var condition = token() !== 26 /* SyntaxKind.SemicolonToken */ && token() !== 21 /* SyntaxKind.CloseParenToken */ ? allowInAnd(parseExpression) : undefined; parseExpected(26 /* SyntaxKind.SemicolonToken */); var incrementor = token() !== 21 /* SyntaxKind.CloseParenToken */ ? allowInAnd(parseExpression) : undefined; parseExpected(21 /* SyntaxKind.CloseParenToken */); node = factory.createForStatement(initializer, condition, incrementor, parseStatement()); } return withJSDoc(finishNode(node, pos), hasJSDoc); } function parseBreakOrContinueStatement(kind) { var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); parseExpected(kind === 246 /* SyntaxKind.BreakStatement */ ? 81 /* SyntaxKind.BreakKeyword */ : 86 /* SyntaxKind.ContinueKeyword */); var label = canParseSemicolon() ? undefined : parseIdentifier(); parseSemicolon(); var node = kind === 246 /* SyntaxKind.BreakStatement */ ? factory.createBreakStatement(label) : factory.createContinueStatement(label); return withJSDoc(finishNode(node, pos), hasJSDoc); } function parseReturnStatement() { var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); parseExpected(105 /* SyntaxKind.ReturnKeyword */); var expression = canParseSemicolon() ? undefined : allowInAnd(parseExpression); parseSemicolon(); return withJSDoc(finishNode(factory.createReturnStatement(expression), pos), hasJSDoc); } function parseWithStatement() { var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); parseExpected(116 /* SyntaxKind.WithKeyword */); var openParenPosition = scanner.getTokenPos(); var openParenParsed = parseExpected(20 /* SyntaxKind.OpenParenToken */); var expression = allowInAnd(parseExpression); parseExpectedMatchingBrackets(20 /* SyntaxKind.OpenParenToken */, 21 /* SyntaxKind.CloseParenToken */, openParenParsed, openParenPosition); var statement = doInsideOfContext(33554432 /* NodeFlags.InWithStatement */, parseStatement); return withJSDoc(finishNode(factory.createWithStatement(expression, statement), pos), hasJSDoc); } function parseCaseClause() { var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); parseExpected(82 /* SyntaxKind.CaseKeyword */); var expression = allowInAnd(parseExpression); parseExpected(58 /* SyntaxKind.ColonToken */); var statements = parseList(3 /* ParsingContext.SwitchClauseStatements */, parseStatement); return withJSDoc(finishNode(factory.createCaseClause(expression, statements), pos), hasJSDoc); } function parseDefaultClause() { var pos = getNodePos(); parseExpected(88 /* SyntaxKind.DefaultKeyword */); parseExpected(58 /* SyntaxKind.ColonToken */); var statements = parseList(3 /* ParsingContext.SwitchClauseStatements */, parseStatement); return finishNode(factory.createDefaultClause(statements), pos); } function parseCaseOrDefaultClause() { return token() === 82 /* SyntaxKind.CaseKeyword */ ? parseCaseClause() : parseDefaultClause(); } function parseCaseBlock() { var pos = getNodePos(); parseExpected(18 /* SyntaxKind.OpenBraceToken */); var clauses = parseList(2 /* ParsingContext.SwitchClauses */, parseCaseOrDefaultClause); parseExpected(19 /* SyntaxKind.CloseBraceToken */); return finishNode(factory.createCaseBlock(clauses), pos); } function parseSwitchStatement() { var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); parseExpected(107 /* SyntaxKind.SwitchKeyword */); parseExpected(20 /* SyntaxKind.OpenParenToken */); var expression = allowInAnd(parseExpression); parseExpected(21 /* SyntaxKind.CloseParenToken */); var caseBlock = parseCaseBlock(); return withJSDoc(finishNode(factory.createSwitchStatement(expression, caseBlock), pos), hasJSDoc); } function parseThrowStatement() { // ThrowStatement[Yield] : // throw [no LineTerminator here]Expression[In, ?Yield]; var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); parseExpected(109 /* SyntaxKind.ThrowKeyword */); // Because of automatic semicolon insertion, we need to report error if this // throw could be terminated with a semicolon. Note: we can't call 'parseExpression' // directly as that might consume an expression on the following line. // Instead, we create a "missing" identifier, but don't report an error. The actual error // will be reported in the grammar walker. var expression = scanner.hasPrecedingLineBreak() ? undefined : allowInAnd(parseExpression); if (expression === undefined) { identifierCount++; expression = finishNode(factory.createIdentifier(""), getNodePos()); } if (!tryParseSemicolon()) { parseErrorForMissingSemicolonAfter(expression); } return withJSDoc(finishNode(factory.createThrowStatement(expression), pos), hasJSDoc); } // TODO: Review for error recovery function parseTryStatement() { var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); parseExpected(111 /* SyntaxKind.TryKeyword */); var tryBlock = parseBlock(/*ignoreMissingOpenBrace*/ false); var catchClause = token() === 83 /* SyntaxKind.CatchKeyword */ ? parseCatchClause() : undefined; // If we don't have a catch clause, then we must have a finally clause. Try to parse // one out no matter what. var finallyBlock; if (!catchClause || token() === 96 /* SyntaxKind.FinallyKeyword */) { parseExpected(96 /* SyntaxKind.FinallyKeyword */, ts.Diagnostics.catch_or_finally_expected); finallyBlock = parseBlock(/*ignoreMissingOpenBrace*/ false); } return withJSDoc(finishNode(factory.createTryStatement(tryBlock, catchClause, finallyBlock), pos), hasJSDoc); } function parseCatchClause() { var pos = getNodePos(); parseExpected(83 /* SyntaxKind.CatchKeyword */); var variableDeclaration; if (parseOptional(20 /* SyntaxKind.OpenParenToken */)) { variableDeclaration = parseVariableDeclaration(); parseExpected(21 /* SyntaxKind.CloseParenToken */); } else { // Keep shape of node to avoid degrading performance. variableDeclaration = undefined; } var block = parseBlock(/*ignoreMissingOpenBrace*/ false); return finishNode(factory.createCatchClause(variableDeclaration, block), pos); } function parseDebuggerStatement() { var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); parseExpected(87 /* SyntaxKind.DebuggerKeyword */); parseSemicolon(); return withJSDoc(finishNode(factory.createDebuggerStatement(), pos), hasJSDoc); } function parseExpressionOrLabeledStatement() { // Avoiding having to do the lookahead for a labeled statement by just trying to parse // out an expression, seeing if it is identifier and then seeing if it is followed by // a colon. var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); var node; var hasParen = token() === 20 /* SyntaxKind.OpenParenToken */; var expression = allowInAnd(parseExpression); if (ts.isIdentifier(expression) && parseOptional(58 /* SyntaxKind.ColonToken */)) { node = factory.createLabeledStatement(expression, parseStatement()); } else { if (!tryParseSemicolon()) { parseErrorForMissingSemicolonAfter(expression); } node = factory.createExpressionStatement(expression); if (hasParen) { // do not parse the same jsdoc twice hasJSDoc = false; } } return withJSDoc(finishNode(node, pos), hasJSDoc); } function nextTokenIsIdentifierOrKeywordOnSameLine() { nextToken(); return ts.tokenIsIdentifierOrKeyword(token()) && !scanner.hasPrecedingLineBreak(); } function nextTokenIsClassKeywordOnSameLine() { nextToken(); return token() === 84 /* SyntaxKind.ClassKeyword */ && !scanner.hasPrecedingLineBreak(); } function nextTokenIsFunctionKeywordOnSameLine() { nextToken(); return token() === 98 /* SyntaxKind.FunctionKeyword */ && !scanner.hasPrecedingLineBreak(); } function nextTokenIsIdentifierOrKeywordOrLiteralOnSameLine() { nextToken(); return (ts.tokenIsIdentifierOrKeyword(token()) || token() === 8 /* SyntaxKind.NumericLiteral */ || token() === 9 /* SyntaxKind.BigIntLiteral */ || token() === 10 /* SyntaxKind.StringLiteral */) && !scanner.hasPrecedingLineBreak(); } function isDeclaration() { while (true) { switch (token()) { case 113 /* SyntaxKind.VarKeyword */: case 119 /* SyntaxKind.LetKeyword */: case 85 /* SyntaxKind.ConstKeyword */: case 98 /* SyntaxKind.FunctionKeyword */: case 84 /* SyntaxKind.ClassKeyword */: case 92 /* SyntaxKind.EnumKeyword */: return true; // 'declare', 'module', 'namespace', 'interface'* and 'type' are all legal JavaScript identifiers; // however, an identifier cannot be followed by another identifier on the same line. This is what we // count on to parse out the respective declarations. For instance, we exploit this to say that // // namespace n // // can be none other than the beginning of a namespace declaration, but need to respect that JavaScript sees // // namespace // n // // as the identifier 'namespace' on one line followed by the identifier 'n' on another. // We need to look one token ahead to see if it permissible to try parsing a declaration. // // *Note*: 'interface' is actually a strict mode reserved word. So while // // "use strict" // interface // I {} // // could be legal, it would add complexity for very little gain. case 118 /* SyntaxKind.InterfaceKeyword */: case 152 /* SyntaxKind.TypeKeyword */: return nextTokenIsIdentifierOnSameLine(); case 141 /* SyntaxKind.ModuleKeyword */: case 142 /* SyntaxKind.NamespaceKeyword */: return nextTokenIsIdentifierOrStringLiteralOnSameLine(); case 126 /* SyntaxKind.AbstractKeyword */: case 131 /* SyntaxKind.AsyncKeyword */: case 135 /* SyntaxKind.DeclareKeyword */: case 121 /* SyntaxKind.PrivateKeyword */: case 122 /* SyntaxKind.ProtectedKeyword */: case 123 /* SyntaxKind.PublicKeyword */: case 145 /* SyntaxKind.ReadonlyKeyword */: nextToken(); // ASI takes effect for this modifier. if (scanner.hasPrecedingLineBreak()) { return false; } continue; case 157 /* SyntaxKind.GlobalKeyword */: nextToken(); return token() === 18 /* SyntaxKind.OpenBraceToken */ || token() === 79 /* SyntaxKind.Identifier */ || token() === 93 /* SyntaxKind.ExportKeyword */; case 100 /* SyntaxKind.ImportKeyword */: nextToken(); return token() === 10 /* SyntaxKind.StringLiteral */ || token() === 41 /* SyntaxKind.AsteriskToken */ || token() === 18 /* SyntaxKind.OpenBraceToken */ || ts.tokenIsIdentifierOrKeyword(token()); case 93 /* SyntaxKind.ExportKeyword */: var currentToken_1 = nextToken(); if (currentToken_1 === 152 /* SyntaxKind.TypeKeyword */) { currentToken_1 = lookAhead(nextToken); } if (currentToken_1 === 63 /* SyntaxKind.EqualsToken */ || currentToken_1 === 41 /* SyntaxKind.AsteriskToken */ || currentToken_1 === 18 /* SyntaxKind.OpenBraceToken */ || currentToken_1 === 88 /* SyntaxKind.DefaultKeyword */ || currentToken_1 === 127 /* SyntaxKind.AsKeyword */) { return true; } continue; case 124 /* SyntaxKind.StaticKeyword */: nextToken(); continue; default: return false; } } } function isStartOfDeclaration() { return lookAhead(isDeclaration); } function isStartOfStatement() { switch (token()) { case 59 /* SyntaxKind.AtToken */: case 26 /* SyntaxKind.SemicolonToken */: case 18 /* SyntaxKind.OpenBraceToken */: case 113 /* SyntaxKind.VarKeyword */: case 119 /* SyntaxKind.LetKeyword */: case 98 /* SyntaxKind.FunctionKeyword */: case 84 /* SyntaxKind.ClassKeyword */: case 92 /* SyntaxKind.EnumKeyword */: case 99 /* SyntaxKind.IfKeyword */: case 90 /* SyntaxKind.DoKeyword */: case 115 /* SyntaxKind.WhileKeyword */: case 97 /* SyntaxKind.ForKeyword */: case 86 /* SyntaxKind.ContinueKeyword */: case 81 /* SyntaxKind.BreakKeyword */: case 105 /* SyntaxKind.ReturnKeyword */: case 116 /* SyntaxKind.WithKeyword */: case 107 /* SyntaxKind.SwitchKeyword */: case 109 /* SyntaxKind.ThrowKeyword */: case 111 /* SyntaxKind.TryKeyword */: case 87 /* SyntaxKind.DebuggerKeyword */: // 'catch' and 'finally' do not actually indicate that the code is part of a statement, // however, we say they are here so that we may gracefully parse them and error later. // falls through case 83 /* SyntaxKind.CatchKeyword */: case 96 /* SyntaxKind.FinallyKeyword */: return true; case 100 /* SyntaxKind.ImportKeyword */: return isStartOfDeclaration() || lookAhead(nextTokenIsOpenParenOrLessThanOrDot); case 85 /* SyntaxKind.ConstKeyword */: case 93 /* SyntaxKind.ExportKeyword */: return isStartOfDeclaration(); case 131 /* SyntaxKind.AsyncKeyword */: case 135 /* SyntaxKind.DeclareKeyword */: case 118 /* SyntaxKind.InterfaceKeyword */: case 141 /* SyntaxKind.ModuleKeyword */: case 142 /* SyntaxKind.NamespaceKeyword */: case 152 /* SyntaxKind.TypeKeyword */: case 157 /* SyntaxKind.GlobalKeyword */: // When these don't start a declaration, they're an identifier in an expression statement return true; case 123 /* SyntaxKind.PublicKeyword */: case 121 /* SyntaxKind.PrivateKeyword */: case 122 /* SyntaxKind.ProtectedKeyword */: case 124 /* SyntaxKind.StaticKeyword */: case 145 /* SyntaxKind.ReadonlyKeyword */: // When these don't start a declaration, they may be the start of a class member if an identifier // immediately follows. Otherwise they're an identifier in an expression statement. return isStartOfDeclaration() || !lookAhead(nextTokenIsIdentifierOrKeywordOnSameLine); default: return isStartOfExpression(); } } function nextTokenIsBindingIdentifierOrStartOfDestructuring() { nextToken(); return isBindingIdentifier() || token() === 18 /* SyntaxKind.OpenBraceToken */ || token() === 22 /* SyntaxKind.OpenBracketToken */; } function isLetDeclaration() { // In ES6 'let' always starts a lexical declaration if followed by an identifier or { // or [. return lookAhead(nextTokenIsBindingIdentifierOrStartOfDestructuring); } function parseStatement() { switch (token()) { case 26 /* SyntaxKind.SemicolonToken */: return parseEmptyStatement(); case 18 /* SyntaxKind.OpenBraceToken */: return parseBlock(/*ignoreMissingOpenBrace*/ false); case 113 /* SyntaxKind.VarKeyword */: return parseVariableStatement(getNodePos(), hasPrecedingJSDocComment(), /*decorators*/ undefined, /*modifiers*/ undefined); case 119 /* SyntaxKind.LetKeyword */: if (isLetDeclaration()) { return parseVariableStatement(getNodePos(), hasPrecedingJSDocComment(), /*decorators*/ undefined, /*modifiers*/ undefined); } break; case 98 /* SyntaxKind.FunctionKeyword */: return parseFunctionDeclaration(getNodePos(), hasPrecedingJSDocComment(), /*decorators*/ undefined, /*modifiers*/ undefined); case 84 /* SyntaxKind.ClassKeyword */: return parseClassDeclaration(getNodePos(), hasPrecedingJSDocComment(), /*decorators*/ undefined, /*modifiers*/ undefined); case 99 /* SyntaxKind.IfKeyword */: return parseIfStatement(); case 90 /* SyntaxKind.DoKeyword */: return parseDoStatement(); case 115 /* SyntaxKind.WhileKeyword */: return parseWhileStatement(); case 97 /* SyntaxKind.ForKeyword */: return parseForOrForInOrForOfStatement(); case 86 /* SyntaxKind.ContinueKeyword */: return parseBreakOrContinueStatement(245 /* SyntaxKind.ContinueStatement */); case 81 /* SyntaxKind.BreakKeyword */: return parseBreakOrContinueStatement(246 /* SyntaxKind.BreakStatement */); case 105 /* SyntaxKind.ReturnKeyword */: return parseReturnStatement(); case 116 /* SyntaxKind.WithKeyword */: return parseWithStatement(); case 107 /* SyntaxKind.SwitchKeyword */: return parseSwitchStatement(); case 109 /* SyntaxKind.ThrowKeyword */: return parseThrowStatement(); case 111 /* SyntaxKind.TryKeyword */: // Include 'catch' and 'finally' for error recovery. // falls through case 83 /* SyntaxKind.CatchKeyword */: case 96 /* SyntaxKind.FinallyKeyword */: return parseTryStatement(); case 87 /* SyntaxKind.DebuggerKeyword */: return parseDebuggerStatement(); case 59 /* SyntaxKind.AtToken */: return parseDeclaration(); case 131 /* SyntaxKind.AsyncKeyword */: case 118 /* SyntaxKind.InterfaceKeyword */: case 152 /* SyntaxKind.TypeKeyword */: case 141 /* SyntaxKind.ModuleKeyword */: case 142 /* SyntaxKind.NamespaceKeyword */: case 135 /* SyntaxKind.DeclareKeyword */: case 85 /* SyntaxKind.ConstKeyword */: case 92 /* SyntaxKind.EnumKeyword */: case 93 /* SyntaxKind.ExportKeyword */: case 100 /* SyntaxKind.ImportKeyword */: case 121 /* SyntaxKind.PrivateKeyword */: case 122 /* SyntaxKind.ProtectedKeyword */: case 123 /* SyntaxKind.PublicKeyword */: case 126 /* SyntaxKind.AbstractKeyword */: case 124 /* SyntaxKind.StaticKeyword */: case 145 /* SyntaxKind.ReadonlyKeyword */: case 157 /* SyntaxKind.GlobalKeyword */: if (isStartOfDeclaration()) { return parseDeclaration(); } break; } return parseExpressionOrLabeledStatement(); } function isDeclareModifier(modifier) { return modifier.kind === 135 /* SyntaxKind.DeclareKeyword */; } function parseDeclaration() { // TODO: Can we hold onto the parsed decorators/modifiers and advance the scanner // if we can't reuse the declaration, so that we don't do this work twice? // // `parseListElement` attempted to get the reused node at this position, // but the ambient context flag was not yet set, so the node appeared // not reusable in that context. var isAmbient = ts.some(lookAhead(function () { return (parseDecorators(), parseModifiers()); }), isDeclareModifier); if (isAmbient) { var node = tryReuseAmbientDeclaration(); if (node) { return node; } } var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); var decorators = parseDecorators(); var modifiers = parseModifiers(); if (isAmbient) { for (var _i = 0, _a = modifiers; _i < _a.length; _i++) { var m = _a[_i]; m.flags |= 16777216 /* NodeFlags.Ambient */; } return doInsideOfContext(16777216 /* NodeFlags.Ambient */, function () { return parseDeclarationWorker(pos, hasJSDoc, decorators, modifiers); }); } else { return parseDeclarationWorker(pos, hasJSDoc, decorators, modifiers); } } function tryReuseAmbientDeclaration() { return doInsideOfContext(16777216 /* NodeFlags.Ambient */, function () { var node = currentNode(parsingContext); if (node) { return consumeNode(node); } }); } function parseDeclarationWorker(pos, hasJSDoc, decorators, modifiers) { switch (token()) { case 113 /* SyntaxKind.VarKeyword */: case 119 /* SyntaxKind.LetKeyword */: case 85 /* SyntaxKind.ConstKeyword */: return parseVariableStatement(pos, hasJSDoc, decorators, modifiers); case 98 /* SyntaxKind.FunctionKeyword */: return parseFunctionDeclaration(pos, hasJSDoc, decorators, modifiers); case 84 /* SyntaxKind.ClassKeyword */: return parseClassDeclaration(pos, hasJSDoc, decorators, modifiers); case 118 /* SyntaxKind.InterfaceKeyword */: return parseInterfaceDeclaration(pos, hasJSDoc, decorators, modifiers); case 152 /* SyntaxKind.TypeKeyword */: return parseTypeAliasDeclaration(pos, hasJSDoc, decorators, modifiers); case 92 /* SyntaxKind.EnumKeyword */: return parseEnumDeclaration(pos, hasJSDoc, decorators, modifiers); case 157 /* SyntaxKind.GlobalKeyword */: case 141 /* SyntaxKind.ModuleKeyword */: case 142 /* SyntaxKind.NamespaceKeyword */: return parseModuleDeclaration(pos, hasJSDoc, decorators, modifiers); case 100 /* SyntaxKind.ImportKeyword */: return parseImportDeclarationOrImportEqualsDeclaration(pos, hasJSDoc, decorators, modifiers); case 93 /* SyntaxKind.ExportKeyword */: nextToken(); switch (token()) { case 88 /* SyntaxKind.DefaultKeyword */: case 63 /* SyntaxKind.EqualsToken */: return parseExportAssignment(pos, hasJSDoc, decorators, modifiers); case 127 /* SyntaxKind.AsKeyword */: return parseNamespaceExportDeclaration(pos, hasJSDoc, decorators, modifiers); default: return parseExportDeclaration(pos, hasJSDoc, decorators, modifiers); } default: if (decorators || modifiers) { // We reached this point because we encountered decorators and/or modifiers and assumed a declaration // would follow. For recovery and error reporting purposes, return an incomplete declaration. var missing = createMissingNode(276 /* SyntaxKind.MissingDeclaration */, /*reportAtCurrentPosition*/ true, ts.Diagnostics.Declaration_expected); ts.setTextRangePos(missing, pos); missing.decorators = decorators; missing.modifiers = modifiers; return missing; } return undefined; // TODO: GH#18217 } } function nextTokenIsIdentifierOrStringLiteralOnSameLine() { nextToken(); return !scanner.hasPrecedingLineBreak() && (isIdentifier() || token() === 10 /* SyntaxKind.StringLiteral */); } function parseFunctionBlockOrSemicolon(flags, diagnosticMessage) { if (token() !== 18 /* SyntaxKind.OpenBraceToken */ && canParseSemicolon()) { parseSemicolon(); return; } return parseFunctionBlock(flags, diagnosticMessage); } // DECLARATIONS function parseArrayBindingElement() { var pos = getNodePos(); if (token() === 27 /* SyntaxKind.CommaToken */) { return finishNode(factory.createOmittedExpression(), pos); } var dotDotDotToken = parseOptionalToken(25 /* SyntaxKind.DotDotDotToken */); var name = parseIdentifierOrPattern(); var initializer = parseInitializer(); return finishNode(factory.createBindingElement(dotDotDotToken, /*propertyName*/ undefined, name, initializer), pos); } function parseObjectBindingElement() { var pos = getNodePos(); var dotDotDotToken = parseOptionalToken(25 /* SyntaxKind.DotDotDotToken */); var tokenIsIdentifier = isBindingIdentifier(); var propertyName = parsePropertyName(); var name; if (tokenIsIdentifier && token() !== 58 /* SyntaxKind.ColonToken */) { name = propertyName; propertyName = undefined; } else { parseExpected(58 /* SyntaxKind.ColonToken */); name = parseIdentifierOrPattern(); } var initializer = parseInitializer(); return finishNode(factory.createBindingElement(dotDotDotToken, propertyName, name, initializer), pos); } function parseObjectBindingPattern() { var pos = getNodePos(); parseExpected(18 /* SyntaxKind.OpenBraceToken */); var elements = parseDelimitedList(9 /* ParsingContext.ObjectBindingElements */, parseObjectBindingElement); parseExpected(19 /* SyntaxKind.CloseBraceToken */); return finishNode(factory.createObjectBindingPattern(elements), pos); } function parseArrayBindingPattern() { var pos = getNodePos(); parseExpected(22 /* SyntaxKind.OpenBracketToken */); var elements = parseDelimitedList(10 /* ParsingContext.ArrayBindingElements */, parseArrayBindingElement); parseExpected(23 /* SyntaxKind.CloseBracketToken */); return finishNode(factory.createArrayBindingPattern(elements), pos); } function isBindingIdentifierOrPrivateIdentifierOrPattern() { return token() === 18 /* SyntaxKind.OpenBraceToken */ || token() === 22 /* SyntaxKind.OpenBracketToken */ || token() === 80 /* SyntaxKind.PrivateIdentifier */ || isBindingIdentifier(); } function parseIdentifierOrPattern(privateIdentifierDiagnosticMessage) { if (token() === 22 /* SyntaxKind.OpenBracketToken */) { return parseArrayBindingPattern(); } if (token() === 18 /* SyntaxKind.OpenBraceToken */) { return parseObjectBindingPattern(); } return parseBindingIdentifier(privateIdentifierDiagnosticMessage); } function parseVariableDeclarationAllowExclamation() { return parseVariableDeclaration(/*allowExclamation*/ true); } function parseVariableDeclaration(allowExclamation) { var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); var name = parseIdentifierOrPattern(ts.Diagnostics.Private_identifiers_are_not_allowed_in_variable_declarations); var exclamationToken; if (allowExclamation && name.kind === 79 /* SyntaxKind.Identifier */ && token() === 53 /* SyntaxKind.ExclamationToken */ && !scanner.hasPrecedingLineBreak()) { exclamationToken = parseTokenNode(); } var type = parseTypeAnnotation(); var initializer = isInOrOfKeyword(token()) ? undefined : parseInitializer(); var node = factory.createVariableDeclaration(name, exclamationToken, type, initializer); return withJSDoc(finishNode(node, pos), hasJSDoc); } function parseVariableDeclarationList(inForStatementInitializer) { var pos = getNodePos(); var flags = 0; switch (token()) { case 113 /* SyntaxKind.VarKeyword */: break; case 119 /* SyntaxKind.LetKeyword */: flags |= 1 /* NodeFlags.Let */; break; case 85 /* SyntaxKind.ConstKeyword */: flags |= 2 /* NodeFlags.Const */; break; default: ts.Debug.fail(); } nextToken(); // The user may have written the following: // // for (let of X) { } // // In this case, we want to parse an empty declaration list, and then parse 'of' // as a keyword. The reason this is not automatic is that 'of' is a valid identifier. // So we need to look ahead to determine if 'of' should be treated as a keyword in // this context. // The checker will then give an error that there is an empty declaration list. var declarations; if (token() === 160 /* SyntaxKind.OfKeyword */ && lookAhead(canFollowContextualOfKeyword)) { declarations = createMissingList(); } else { var savedDisallowIn = inDisallowInContext(); setDisallowInContext(inForStatementInitializer); declarations = parseDelimitedList(8 /* ParsingContext.VariableDeclarations */, inForStatementInitializer ? parseVariableDeclaration : parseVariableDeclarationAllowExclamation); setDisallowInContext(savedDisallowIn); } return finishNode(factory.createVariableDeclarationList(declarations, flags), pos); } function canFollowContextualOfKeyword() { return nextTokenIsIdentifier() && nextToken() === 21 /* SyntaxKind.CloseParenToken */; } function parseVariableStatement(pos, hasJSDoc, decorators, modifiers) { var declarationList = parseVariableDeclarationList(/*inForStatementInitializer*/ false); parseSemicolon(); var node = factory.createVariableStatement(modifiers, declarationList); // Decorators are not allowed on a variable statement, so we keep track of them to report them in the grammar checker. node.decorators = decorators; return withJSDoc(finishNode(node, pos), hasJSDoc); } function parseFunctionDeclaration(pos, hasJSDoc, decorators, modifiers) { var savedAwaitContext = inAwaitContext(); var modifierFlags = ts.modifiersToFlags(modifiers); parseExpected(98 /* SyntaxKind.FunctionKeyword */); var asteriskToken = parseOptionalToken(41 /* SyntaxKind.AsteriskToken */); // We don't parse the name here in await context, instead we will report a grammar error in the checker. var name = modifierFlags & 512 /* ModifierFlags.Default */ ? parseOptionalBindingIdentifier() : parseBindingIdentifier(); var isGenerator = asteriskToken ? 1 /* SignatureFlags.Yield */ : 0 /* SignatureFlags.None */; var isAsync = modifierFlags & 256 /* ModifierFlags.Async */ ? 2 /* SignatureFlags.Await */ : 0 /* SignatureFlags.None */; var typeParameters = parseTypeParameters(); if (modifierFlags & 1 /* ModifierFlags.Export */) setAwaitContext(/*value*/ true); var parameters = parseParameters(isGenerator | isAsync); var type = parseReturnType(58 /* SyntaxKind.ColonToken */, /*isType*/ false); var body = parseFunctionBlockOrSemicolon(isGenerator | isAsync, ts.Diagnostics.or_expected); setAwaitContext(savedAwaitContext); var node = factory.createFunctionDeclaration(decorators, modifiers, asteriskToken, name, typeParameters, parameters, type, body); return withJSDoc(finishNode(node, pos), hasJSDoc); } function parseConstructorName() { if (token() === 134 /* SyntaxKind.ConstructorKeyword */) { return parseExpected(134 /* SyntaxKind.ConstructorKeyword */); } if (token() === 10 /* SyntaxKind.StringLiteral */ && lookAhead(nextToken) === 20 /* SyntaxKind.OpenParenToken */) { return tryParse(function () { var literalNode = parseLiteralNode(); return literalNode.text === "constructor" ? literalNode : undefined; }); } } function tryParseConstructorDeclaration(pos, hasJSDoc, decorators, modifiers) { return tryParse(function () { if (parseConstructorName()) { var typeParameters = parseTypeParameters(); var parameters = parseParameters(0 /* SignatureFlags.None */); var type = parseReturnType(58 /* SyntaxKind.ColonToken */, /*isType*/ false); var body = parseFunctionBlockOrSemicolon(0 /* SignatureFlags.None */, ts.Diagnostics.or_expected); var node = factory.createConstructorDeclaration(decorators, modifiers, parameters, body); // Attach `typeParameters` and `type` if they exist so that we can report them in the grammar checker. node.typeParameters = typeParameters; node.type = type; return withJSDoc(finishNode(node, pos), hasJSDoc); } }); } function parseMethodDeclaration(pos, hasJSDoc, decorators, modifiers, asteriskToken, name, questionToken, exclamationToken, diagnosticMessage) { var isGenerator = asteriskToken ? 1 /* SignatureFlags.Yield */ : 0 /* SignatureFlags.None */; var isAsync = ts.some(modifiers, ts.isAsyncModifier) ? 2 /* SignatureFlags.Await */ : 0 /* SignatureFlags.None */; var typeParameters = parseTypeParameters(); var parameters = parseParameters(isGenerator | isAsync); var type = parseReturnType(58 /* SyntaxKind.ColonToken */, /*isType*/ false); var body = parseFunctionBlockOrSemicolon(isGenerator | isAsync, diagnosticMessage); var node = factory.createMethodDeclaration(decorators, modifiers, asteriskToken, name, questionToken, typeParameters, parameters, type, body); // An exclamation token on a method is invalid syntax and will be handled by the grammar checker node.exclamationToken = exclamationToken; return withJSDoc(finishNode(node, pos), hasJSDoc); } function parsePropertyDeclaration(pos, hasJSDoc, decorators, modifiers, name, questionToken) { var exclamationToken = !questionToken && !scanner.hasPrecedingLineBreak() ? parseOptionalToken(53 /* SyntaxKind.ExclamationToken */) : undefined; var type = parseTypeAnnotation(); var initializer = doOutsideOfContext(8192 /* NodeFlags.YieldContext */ | 32768 /* NodeFlags.AwaitContext */ | 4096 /* NodeFlags.DisallowInContext */, parseInitializer); parseSemicolonAfterPropertyName(name, type, initializer); var node = factory.createPropertyDeclaration(decorators, modifiers, name, questionToken || exclamationToken, type, initializer); return withJSDoc(finishNode(node, pos), hasJSDoc); } function parsePropertyOrMethodDeclaration(pos, hasJSDoc, decorators, modifiers) { var asteriskToken = parseOptionalToken(41 /* SyntaxKind.AsteriskToken */); var name = parsePropertyName(); // Note: this is not legal as per the grammar. But we allow it in the parser and // report an error in the grammar checker. var questionToken = parseOptionalToken(57 /* SyntaxKind.QuestionToken */); if (asteriskToken || token() === 20 /* SyntaxKind.OpenParenToken */ || token() === 29 /* SyntaxKind.LessThanToken */) { return parseMethodDeclaration(pos, hasJSDoc, decorators, modifiers, asteriskToken, name, questionToken, /*exclamationToken*/ undefined, ts.Diagnostics.or_expected); } return parsePropertyDeclaration(pos, hasJSDoc, decorators, modifiers, name, questionToken); } function parseAccessorDeclaration(pos, hasJSDoc, decorators, modifiers, kind) { var name = parsePropertyName(); var typeParameters = parseTypeParameters(); var parameters = parseParameters(0 /* SignatureFlags.None */); var type = parseReturnType(58 /* SyntaxKind.ColonToken */, /*isType*/ false); var body = parseFunctionBlockOrSemicolon(0 /* SignatureFlags.None */); var node = kind === 172 /* SyntaxKind.GetAccessor */ ? factory.createGetAccessorDeclaration(decorators, modifiers, name, parameters, type, body) : factory.createSetAccessorDeclaration(decorators, modifiers, name, parameters, body); // Keep track of `typeParameters` (for both) and `type` (for setters) if they were parsed those indicate grammar errors node.typeParameters = typeParameters; if (type && node.kind === 173 /* SyntaxKind.SetAccessor */) node.type = type; return withJSDoc(finishNode(node, pos), hasJSDoc); } function isClassMemberStart() { var idToken; if (token() === 59 /* SyntaxKind.AtToken */) { return true; } // Eat up all modifiers, but hold on to the last one in case it is actually an identifier. while (ts.isModifierKind(token())) { idToken = token(); // If the idToken is a class modifier (protected, private, public, and static), it is // certain that we are starting to parse class member. This allows better error recovery // Example: // public foo() ... // true // public @dec blah ... // true; we will then report an error later // export public ... // true; we will then report an error later if (ts.isClassMemberModifier(idToken)) { return true; } nextToken(); } if (token() === 41 /* SyntaxKind.AsteriskToken */) { return true; } // Try to get the first property-like token following all modifiers. // This can either be an identifier or the 'get' or 'set' keywords. if (isLiteralPropertyName()) { idToken = token(); nextToken(); } // Index signatures and computed properties are class members; we can parse. if (token() === 22 /* SyntaxKind.OpenBracketToken */) { return true; } // If we were able to get any potential identifier... if (idToken !== undefined) { // If we have a non-keyword identifier, or if we have an accessor, then it's safe to parse. if (!ts.isKeyword(idToken) || idToken === 149 /* SyntaxKind.SetKeyword */ || idToken === 136 /* SyntaxKind.GetKeyword */) { return true; } // If it *is* a keyword, but not an accessor, check a little farther along // to see if it should actually be parsed as a class member. switch (token()) { case 20 /* SyntaxKind.OpenParenToken */: // Method declaration case 29 /* SyntaxKind.LessThanToken */: // Generic Method declaration case 53 /* SyntaxKind.ExclamationToken */: // Non-null assertion on property name case 58 /* SyntaxKind.ColonToken */: // Type Annotation for declaration case 63 /* SyntaxKind.EqualsToken */: // Initializer for declaration case 57 /* SyntaxKind.QuestionToken */: // Not valid, but permitted so that it gets caught later on. return true; default: // Covers // - Semicolons (declaration termination) // - Closing braces (end-of-class, must be declaration) // - End-of-files (not valid, but permitted so that it gets caught later on) // - Line-breaks (enabling *automatic semicolon insertion*) return canParseSemicolon(); } } return false; } function parseClassStaticBlockDeclaration(pos, hasJSDoc, decorators, modifiers) { parseExpectedToken(124 /* SyntaxKind.StaticKeyword */); var body = parseClassStaticBlockBody(); return withJSDoc(finishNode(factory.createClassStaticBlockDeclaration(decorators, modifiers, body), pos), hasJSDoc); } function parseClassStaticBlockBody() { var savedYieldContext = inYieldContext(); var savedAwaitContext = inAwaitContext(); setYieldContext(false); setAwaitContext(true); var body = parseBlock(/*ignoreMissingOpenBrace*/ false); setYieldContext(savedYieldContext); setAwaitContext(savedAwaitContext); return body; } function parseDecoratorExpression() { if (inAwaitContext() && token() === 132 /* SyntaxKind.AwaitKeyword */) { // `@await` is is disallowed in an [Await] context, but can cause parsing to go off the rails // This simply parses the missing identifier and moves on. var pos = getNodePos(); var awaitExpression = parseIdentifier(ts.Diagnostics.Expression_expected); nextToken(); var memberExpression = parseMemberExpressionRest(pos, awaitExpression, /*allowOptionalChain*/ true); return parseCallExpressionRest(pos, memberExpression); } return parseLeftHandSideExpressionOrHigher(); } function tryParseDecorator() { var pos = getNodePos(); if (!parseOptional(59 /* SyntaxKind.AtToken */)) { return undefined; } var expression = doInDecoratorContext(parseDecoratorExpression); return finishNode(factory.createDecorator(expression), pos); } function parseDecorators() { var pos = getNodePos(); var list, decorator; while (decorator = tryParseDecorator()) { list = ts.append(list, decorator); } return list && createNodeArray(list, pos); } function tryParseModifier(permitInvalidConstAsModifier, stopOnStartOfClassStaticBlock, hasSeenStaticModifier) { var pos = getNodePos(); var kind = token(); if (token() === 85 /* SyntaxKind.ConstKeyword */ && permitInvalidConstAsModifier) { // We need to ensure that any subsequent modifiers appear on the same line // so that when 'const' is a standalone declaration, we don't issue an error. if (!tryParse(nextTokenIsOnSameLineAndCanFollowModifier)) { return undefined; } } else if (stopOnStartOfClassStaticBlock && token() === 124 /* SyntaxKind.StaticKeyword */ && lookAhead(nextTokenIsOpenBrace)) { return undefined; } else if (hasSeenStaticModifier && token() === 124 /* SyntaxKind.StaticKeyword */) { return undefined; } else { if (!parseAnyContextualModifier()) { return undefined; } } return finishNode(factory.createToken(kind), pos); } /* * There are situations in which a modifier like 'const' will appear unexpectedly, such as on a class member. * In those situations, if we are entirely sure that 'const' is not valid on its own (such as when ASI takes effect * and turns it into a standalone declaration), then it is better to parse it and report an error later. * * In such situations, 'permitInvalidConstAsModifier' should be set to true. */ function parseModifiers(permitInvalidConstAsModifier, stopOnStartOfClassStaticBlock) { var pos = getNodePos(); var list, modifier, hasSeenStatic = false; while (modifier = tryParseModifier(permitInvalidConstAsModifier, stopOnStartOfClassStaticBlock, hasSeenStatic)) { if (modifier.kind === 124 /* SyntaxKind.StaticKeyword */) hasSeenStatic = true; list = ts.append(list, modifier); } return list && createNodeArray(list, pos); } function parseModifiersForArrowFunction() { var modifiers; if (token() === 131 /* SyntaxKind.AsyncKeyword */) { var pos = getNodePos(); nextToken(); var modifier = finishNode(factory.createToken(131 /* SyntaxKind.AsyncKeyword */), pos); modifiers = createNodeArray([modifier], pos); } return modifiers; } function parseClassElement() { var pos = getNodePos(); if (token() === 26 /* SyntaxKind.SemicolonToken */) { nextToken(); return finishNode(factory.createSemicolonClassElement(), pos); } var hasJSDoc = hasPrecedingJSDocComment(); var decorators = parseDecorators(); var modifiers = parseModifiers(/*permitInvalidConstAsModifier*/ true, /*stopOnStartOfClassStaticBlock*/ true); if (token() === 124 /* SyntaxKind.StaticKeyword */ && lookAhead(nextTokenIsOpenBrace)) { return parseClassStaticBlockDeclaration(pos, hasJSDoc, decorators, modifiers); } if (parseContextualModifier(136 /* SyntaxKind.GetKeyword */)) { return parseAccessorDeclaration(pos, hasJSDoc, decorators, modifiers, 172 /* SyntaxKind.GetAccessor */); } if (parseContextualModifier(149 /* SyntaxKind.SetKeyword */)) { return parseAccessorDeclaration(pos, hasJSDoc, decorators, modifiers, 173 /* SyntaxKind.SetAccessor */); } if (token() === 134 /* SyntaxKind.ConstructorKeyword */ || token() === 10 /* SyntaxKind.StringLiteral */) { var constructorDeclaration = tryParseConstructorDeclaration(pos, hasJSDoc, decorators, modifiers); if (constructorDeclaration) { return constructorDeclaration; } } if (isIndexSignature()) { return parseIndexSignatureDeclaration(pos, hasJSDoc, decorators, modifiers); } // It is very important that we check this *after* checking indexers because // the [ token can start an index signature or a computed property name if (ts.tokenIsIdentifierOrKeyword(token()) || token() === 10 /* SyntaxKind.StringLiteral */ || token() === 8 /* SyntaxKind.NumericLiteral */ || token() === 41 /* SyntaxKind.AsteriskToken */ || token() === 22 /* SyntaxKind.OpenBracketToken */) { var isAmbient = ts.some(modifiers, isDeclareModifier); if (isAmbient) { for (var _i = 0, _a = modifiers; _i < _a.length; _i++) { var m = _a[_i]; m.flags |= 16777216 /* NodeFlags.Ambient */; } return doInsideOfContext(16777216 /* NodeFlags.Ambient */, function () { return parsePropertyOrMethodDeclaration(pos, hasJSDoc, decorators, modifiers); }); } else { return parsePropertyOrMethodDeclaration(pos, hasJSDoc, decorators, modifiers); } } if (decorators || modifiers) { // treat this as a property declaration with a missing name. var name = createMissingNode(79 /* SyntaxKind.Identifier */, /*reportAtCurrentPosition*/ true, ts.Diagnostics.Declaration_expected); return parsePropertyDeclaration(pos, hasJSDoc, decorators, modifiers, name, /*questionToken*/ undefined); } // 'isClassMemberStart' should have hinted not to attempt parsing. return ts.Debug.fail("Should not have attempted to parse class member declaration."); } function parseClassExpression() { return parseClassDeclarationOrExpression(getNodePos(), hasPrecedingJSDocComment(), /*decorators*/ undefined, /*modifiers*/ undefined, 226 /* SyntaxKind.ClassExpression */); } function parseClassDeclaration(pos, hasJSDoc, decorators, modifiers) { return parseClassDeclarationOrExpression(pos, hasJSDoc, decorators, modifiers, 257 /* SyntaxKind.ClassDeclaration */); } function parseClassDeclarationOrExpression(pos, hasJSDoc, decorators, modifiers, kind) { var savedAwaitContext = inAwaitContext(); parseExpected(84 /* SyntaxKind.ClassKeyword */); // We don't parse the name here in await context, instead we will report a grammar error in the checker. var name = parseNameOfClassDeclarationOrExpression(); var typeParameters = parseTypeParameters(); if (ts.some(modifiers, ts.isExportModifier)) setAwaitContext(/*value*/ true); var heritageClauses = parseHeritageClauses(); var members; if (parseExpected(18 /* SyntaxKind.OpenBraceToken */)) { // ClassTail[Yield,Await] : (Modified) See 14.5 // ClassHeritage[?Yield,?Await]opt { ClassBody[?Yield,?Await]opt } members = parseClassMembers(); parseExpected(19 /* SyntaxKind.CloseBraceToken */); } else { members = createMissingList(); } setAwaitContext(savedAwaitContext); var node = kind === 257 /* SyntaxKind.ClassDeclaration */ ? factory.createClassDeclaration(decorators, modifiers, name, typeParameters, heritageClauses, members) : factory.createClassExpression(decorators, modifiers, name, typeParameters, heritageClauses, members); return withJSDoc(finishNode(node, pos), hasJSDoc); } function parseNameOfClassDeclarationOrExpression() { // implements is a future reserved word so // 'class implements' might mean either // - class expression with omitted name, 'implements' starts heritage clause // - class with name 'implements' // 'isImplementsClause' helps to disambiguate between these two cases return isBindingIdentifier() && !isImplementsClause() ? createIdentifier(isBindingIdentifier()) : undefined; } function isImplementsClause() { return token() === 117 /* SyntaxKind.ImplementsKeyword */ && lookAhead(nextTokenIsIdentifierOrKeyword); } function parseHeritageClauses() { // ClassTail[Yield,Await] : (Modified) See 14.5 // ClassHeritage[?Yield,?Await]opt { ClassBody[?Yield,?Await]opt } if (isHeritageClause()) { return parseList(22 /* ParsingContext.HeritageClauses */, parseHeritageClause); } return undefined; } function parseHeritageClause() { var pos = getNodePos(); var tok = token(); ts.Debug.assert(tok === 94 /* SyntaxKind.ExtendsKeyword */ || tok === 117 /* SyntaxKind.ImplementsKeyword */); // isListElement() should ensure this. nextToken(); var types = parseDelimitedList(7 /* ParsingContext.HeritageClauseElement */, parseExpressionWithTypeArguments); return finishNode(factory.createHeritageClause(tok, types), pos); } function parseExpressionWithTypeArguments() { var pos = getNodePos(); var expression = parseLeftHandSideExpressionOrHigher(); if (expression.kind === 228 /* SyntaxKind.ExpressionWithTypeArguments */) { return expression; } var typeArguments = tryParseTypeArguments(); return finishNode(factory.createExpressionWithTypeArguments(expression, typeArguments), pos); } function tryParseTypeArguments() { return token() === 29 /* SyntaxKind.LessThanToken */ ? parseBracketedList(20 /* ParsingContext.TypeArguments */, parseType, 29 /* SyntaxKind.LessThanToken */, 31 /* SyntaxKind.GreaterThanToken */) : undefined; } function isHeritageClause() { return token() === 94 /* SyntaxKind.ExtendsKeyword */ || token() === 117 /* SyntaxKind.ImplementsKeyword */; } function parseClassMembers() { return parseList(5 /* ParsingContext.ClassMembers */, parseClassElement); } function parseInterfaceDeclaration(pos, hasJSDoc, decorators, modifiers) { parseExpected(118 /* SyntaxKind.InterfaceKeyword */); var name = parseIdentifier(); var typeParameters = parseTypeParameters(); var heritageClauses = parseHeritageClauses(); var members = parseObjectTypeMembers(); var node = factory.createInterfaceDeclaration(decorators, modifiers, name, typeParameters, heritageClauses, members); return withJSDoc(finishNode(node, pos), hasJSDoc); } function parseTypeAliasDeclaration(pos, hasJSDoc, decorators, modifiers) { parseExpected(152 /* SyntaxKind.TypeKeyword */); var name = parseIdentifier(); var typeParameters = parseTypeParameters(); parseExpected(63 /* SyntaxKind.EqualsToken */); var type = token() === 138 /* SyntaxKind.IntrinsicKeyword */ && tryParse(parseKeywordAndNoDot) || parseType(); parseSemicolon(); var node = factory.createTypeAliasDeclaration(decorators, modifiers, name, typeParameters, type); return withJSDoc(finishNode(node, pos), hasJSDoc); } // In an ambient declaration, the grammar only allows integer literals as initializers. // In a non-ambient declaration, the grammar allows uninitialized members only in a // ConstantEnumMemberSection, which starts at the beginning of an enum declaration // or any time an integer literal initializer is encountered. function parseEnumMember() { var pos = getNodePos(); var hasJSDoc = hasPrecedingJSDocComment(); var name = parsePropertyName(); var initializer = allowInAnd(parseInitializer); return withJSDoc(finishNode(factory.createEnumMember(name, initializer), pos), hasJSDoc); } function parseEnumDeclaration(pos, hasJSDoc, decorators, modifiers) { parseExpected(92 /* SyntaxKind.EnumKeyword */); var name = parseIdentifier(); var members; if (parseExpected(18 /* SyntaxKind.OpenBraceToken */)) { members = doOutsideOfYieldAndAwaitContext(function () { return parseDelimitedList(6 /* ParsingContext.EnumMembers */, parseEnumMember); }); parseExpected(19 /* SyntaxKind.CloseBraceToken */); } else { members = createMissingList(); } var node = factory.createEnumDeclaration(decorators, modifiers, name, members); return withJSDoc(finishNode(node, pos), hasJSDoc); } function parseModuleBlock() { var pos = getNodePos(); var statements; if (parseExpected(18 /* SyntaxKind.OpenBraceToken */)) { statements = parseList(1 /* ParsingContext.BlockStatements */, parseStatement); parseExpected(19 /* SyntaxKind.CloseBraceToken */); } else { statements = createMissingList(); } return finishNode(factory.createModuleBlock(statements), pos); } function parseModuleOrNamespaceDeclaration(pos, hasJSDoc, decorators, modifiers, flags) { // If we are parsing a dotted namespace name, we want to // propagate the 'Namespace' flag across the names if set. var namespaceFlag = flags & 16 /* NodeFlags.Namespace */; var name = parseIdentifier(); var body = parseOptional(24 /* SyntaxKind.DotToken */) ? parseModuleOrNamespaceDeclaration(getNodePos(), /*hasJSDoc*/ false, /*decorators*/ undefined, /*modifiers*/ undefined, 4 /* NodeFlags.NestedNamespace */ | namespaceFlag) : parseModuleBlock(); var node = factory.createModuleDeclaration(decorators, modifiers, name, body, flags); return withJSDoc(finishNode(node, pos), hasJSDoc); } function parseAmbientExternalModuleDeclaration(pos, hasJSDoc, decorators, modifiers) { var flags = 0; var name; if (token() === 157 /* SyntaxKind.GlobalKeyword */) { // parse 'global' as name of global scope augmentation name = parseIdentifier(); flags |= 1024 /* NodeFlags.GlobalAugmentation */; } else { name = parseLiteralNode(); name.text = internIdentifier(name.text); } var body; if (token() === 18 /* SyntaxKind.OpenBraceToken */) { body = parseModuleBlock(); } else { parseSemicolon(); } var node = factory.createModuleDeclaration(decorators, modifiers, name, body, flags); return withJSDoc(finishNode(node, pos), hasJSDoc); } function parseModuleDeclaration(pos, hasJSDoc, decorators, modifiers) { var flags = 0; if (token() === 157 /* SyntaxKind.GlobalKeyword */) { // global augmentation return parseAmbientExternalModuleDeclaration(pos, hasJSDoc, decorators, modifiers); } else if (parseOptional(142 /* SyntaxKind.NamespaceKeyword */)) { flags |= 16 /* NodeFlags.Namespace */; } else { parseExpected(141 /* SyntaxKind.ModuleKeyword */); if (token() === 10 /* SyntaxKind.StringLiteral */) { return parseAmbientExternalModuleDeclaration(pos, hasJSDoc, decorators, modifiers); } } return parseModuleOrNamespaceDeclaration(pos, hasJSDoc, decorators, modifiers, flags); } function isExternalModuleReference() { return token() === 146 /* SyntaxKind.RequireKeyword */ && lookAhead(nextTokenIsOpenParen); } function nextTokenIsOpenParen() { return nextToken() === 20 /* SyntaxKind.OpenParenToken */; } function nextTokenIsOpenBrace() { return nextToken() === 18 /* SyntaxKind.OpenBraceToken */; } function nextTokenIsSlash() { return nextToken() === 43 /* SyntaxKind.SlashToken */; } function parseNamespaceExportDeclaration(pos, hasJSDoc, decorators, modifiers) { parseExpected(127 /* SyntaxKind.AsKeyword */); parseExpected(142 /* SyntaxKind.NamespaceKeyword */); var name = parseIdentifier(); parseSemicolon(); var node = factory.createNamespaceExportDeclaration(name); // NamespaceExportDeclaration nodes cannot have decorators or modifiers, so we attach them here so we can report them in the grammar checker node.decorators = decorators; node.modifiers = modifiers; return withJSDoc(finishNode(node, pos), hasJSDoc); } function parseImportDeclarationOrImportEqualsDeclaration(pos, hasJSDoc, decorators, modifiers) { parseExpected(100 /* SyntaxKind.ImportKeyword */); var afterImportPos = scanner.getStartPos(); // We don't parse the identifier here in await context, instead we will report a grammar error in the checker. var identifier; if (isIdentifier()) { identifier = parseIdentifier(); } var isTypeOnly = false; if (token() !== 156 /* SyntaxKind.FromKeyword */ && (identifier === null || identifier === void 0 ? void 0 : identifier.escapedText) === "type" && (isIdentifier() || tokenAfterImportDefinitelyProducesImportDeclaration())) { isTypeOnly = true; identifier = isIdentifier() ? parseIdentifier() : undefined; } if (identifier && !tokenAfterImportedIdentifierDefinitelyProducesImportDeclaration()) { return parseImportEqualsDeclaration(pos, hasJSDoc, decorators, modifiers, identifier, isTypeOnly); } // ImportDeclaration: // import ImportClause from ModuleSpecifier ; // import ModuleSpecifier; var importClause; if (identifier || // import id token() === 41 /* SyntaxKind.AsteriskToken */ || // import * token() === 18 /* SyntaxKind.OpenBraceToken */ // import { ) { importClause = parseImportClause(identifier, afterImportPos, isTypeOnly); parseExpected(156 /* SyntaxKind.FromKeyword */); } var moduleSpecifier = parseModuleSpecifier(); var assertClause; if (token() === 129 /* SyntaxKind.AssertKeyword */ && !scanner.hasPrecedingLineBreak()) { assertClause = parseAssertClause(); } parseSemicolon(); var node = factory.createImportDeclaration(decorators, modifiers, importClause, moduleSpecifier, assertClause); return withJSDoc(finishNode(node, pos), hasJSDoc); } function parseAssertEntry() { var pos = getNodePos(); var name = ts.tokenIsIdentifierOrKeyword(token()) ? parseIdentifierName() : parseLiteralLikeNode(10 /* SyntaxKind.StringLiteral */); parseExpected(58 /* SyntaxKind.ColonToken */); var value = parseAssignmentExpressionOrHigher(); return finishNode(factory.createAssertEntry(name, value), pos); } function parseAssertClause(skipAssertKeyword) { var pos = getNodePos(); if (!skipAssertKeyword) { parseExpected(129 /* SyntaxKind.AssertKeyword */); } var openBracePosition = scanner.getTokenPos(); if (parseExpected(18 /* SyntaxKind.OpenBraceToken */)) { var multiLine = scanner.hasPrecedingLineBreak(); var elements = parseDelimitedList(24 /* ParsingContext.AssertEntries */, parseAssertEntry, /*considerSemicolonAsDelimiter*/ true); if (!parseExpected(19 /* SyntaxKind.CloseBraceToken */)) { var lastError = ts.lastOrUndefined(parseDiagnostics); if (lastError && lastError.code === ts.Diagnostics._0_expected.code) { ts.addRelatedInfo(lastError, ts.createDetachedDiagnostic(fileName, openBracePosition, 1, ts.Diagnostics.The_parser_expected_to_find_a_1_to_match_the_0_token_here, "{", "}")); } } return finishNode(factory.createAssertClause(elements, multiLine), pos); } else { var elements = createNodeArray([], getNodePos(), /*end*/ undefined, /*hasTrailingComma*/ false); return finishNode(factory.createAssertClause(elements, /*multiLine*/ false), pos); } } function tokenAfterImportDefinitelyProducesImportDeclaration() { return token() === 41 /* SyntaxKind.AsteriskToken */ || token() === 18 /* SyntaxKind.OpenBraceToken */; } function tokenAfterImportedIdentifierDefinitelyProducesImportDeclaration() { // In `import id ___`, the current token decides whether to produce // an ImportDeclaration or ImportEqualsDeclaration. return token() === 27 /* SyntaxKind.CommaToken */ || token() === 156 /* SyntaxKind.FromKeyword */; } function parseImportEqualsDeclaration(pos, hasJSDoc, decorators, modifiers, identifier, isTypeOnly) { parseExpected(63 /* SyntaxKind.EqualsToken */); var moduleReference = parseModuleReference(); parseSemicolon(); var node = factory.createImportEqualsDeclaration(decorators, modifiers, isTypeOnly, identifier, moduleReference); var finished = withJSDoc(finishNode(node, pos), hasJSDoc); return finished; } function parseImportClause(identifier, pos, isTypeOnly) { // ImportClause: // ImportedDefaultBinding // NameSpaceImport // NamedImports // ImportedDefaultBinding, NameSpaceImport // ImportedDefaultBinding, NamedImports // If there was no default import or if there is comma token after default import // parse namespace or named imports var namedBindings; if (!identifier || parseOptional(27 /* SyntaxKind.CommaToken */)) { namedBindings = token() === 41 /* SyntaxKind.AsteriskToken */ ? parseNamespaceImport() : parseNamedImportsOrExports(269 /* SyntaxKind.NamedImports */); } return finishNode(factory.createImportClause(isTypeOnly, identifier, namedBindings), pos); } function parseModuleReference() { return isExternalModuleReference() ? parseExternalModuleReference() : parseEntityName(/*allowReservedWords*/ false); } function parseExternalModuleReference() { var pos = getNodePos(); parseExpected(146 /* SyntaxKind.RequireKeyword */); parseExpected(20 /* SyntaxKind.OpenParenToken */); var expression = parseModuleSpecifier(); parseExpected(21 /* SyntaxKind.CloseParenToken */); return finishNode(factory.createExternalModuleReference(expression), pos); } function parseModuleSpecifier() { if (token() === 10 /* SyntaxKind.StringLiteral */) { var result = parseLiteralNode(); result.text = internIdentifier(result.text); return result; } else { // We allow arbitrary expressions here, even though the grammar only allows string // literals. We check to ensure that it is only a string literal later in the grammar // check pass. return parseExpression(); } } function parseNamespaceImport() { // NameSpaceImport: // * as ImportedBinding var pos = getNodePos(); parseExpected(41 /* SyntaxKind.AsteriskToken */); parseExpected(127 /* SyntaxKind.AsKeyword */); var name = parseIdentifier(); return finishNode(factory.createNamespaceImport(name), pos); } function parseNamedImportsOrExports(kind) { var pos = getNodePos(); // NamedImports: // { } // { ImportsList } // { ImportsList, } // ImportsList: // ImportSpecifier // ImportsList, ImportSpecifier var node = kind === 269 /* SyntaxKind.NamedImports */ ? factory.createNamedImports(parseBracketedList(23 /* ParsingContext.ImportOrExportSpecifiers */, parseImportSpecifier, 18 /* SyntaxKind.OpenBraceToken */, 19 /* SyntaxKind.CloseBraceToken */)) : factory.createNamedExports(parseBracketedList(23 /* ParsingContext.ImportOrExportSpecifiers */, parseExportSpecifier, 18 /* SyntaxKind.OpenBraceToken */, 19 /* SyntaxKind.CloseBraceToken */)); return finishNode(node, pos); } function parseExportSpecifier() { var hasJSDoc = hasPrecedingJSDocComment(); return withJSDoc(parseImportOrExportSpecifier(275 /* SyntaxKind.ExportSpecifier */), hasJSDoc); } function parseImportSpecifier() { return parseImportOrExportSpecifier(270 /* SyntaxKind.ImportSpecifier */); } function parseImportOrExportSpecifier(kind) { var pos = getNodePos(); // ImportSpecifier: // BindingIdentifier // IdentifierName as BindingIdentifier // ExportSpecifier: // IdentifierName // IdentifierName as IdentifierName var checkIdentifierIsKeyword = ts.isKeyword(token()) && !isIdentifier(); var checkIdentifierStart = scanner.getTokenPos(); var checkIdentifierEnd = scanner.getTextPos(); var isTypeOnly = false; var propertyName; var canParseAsKeyword = true; var name = parseIdentifierName(); if (name.escapedText === "type") { // If the first token of an import specifier is 'type', there are a lot of possibilities, // especially if we see 'as' afterwards: // // import { type } from "mod"; - isTypeOnly: false, name: type // import { type as } from "mod"; - isTypeOnly: true, name: as // import { type as as } from "mod"; - isTypeOnly: false, name: as, propertyName: type // import { type as as as } from "mod"; - isTypeOnly: true, name: as, propertyName: as if (token() === 127 /* SyntaxKind.AsKeyword */) { // { type as ...? } var firstAs = parseIdentifierName(); if (token() === 127 /* SyntaxKind.AsKeyword */) { // { type as as ...? } var secondAs = parseIdentifierName(); if (ts.tokenIsIdentifierOrKeyword(token())) { // { type as as something } isTypeOnly = true; propertyName = firstAs; name = parseNameWithKeywordCheck(); canParseAsKeyword = false; } else { // { type as as } propertyName = name; name = secondAs; canParseAsKeyword = false; } } else if (ts.tokenIsIdentifierOrKeyword(token())) { // { type as something } propertyName = name; canParseAsKeyword = false; name = parseNameWithKeywordCheck(); } else { // { type as } isTypeOnly = true; name = firstAs; } } else if (ts.tokenIsIdentifierOrKeyword(token())) { // { type something ...? } isTypeOnly = true; name = parseNameWithKeywordCheck(); } } if (canParseAsKeyword && token() === 127 /* SyntaxKind.AsKeyword */) { propertyName = name; parseExpected(127 /* SyntaxKind.AsKeyword */); name = parseNameWithKeywordCheck(); } if (kind === 270 /* SyntaxKind.ImportSpecifier */ && checkIdentifierIsKeyword) { parseErrorAt(checkIdentifierStart, checkIdentifierEnd, ts.Diagnostics.Identifier_expected); } var node = kind === 270 /* SyntaxKind.ImportSpecifier */ ? factory.createImportSpecifier(isTypeOnly, propertyName, name) : factory.createExportSpecifier(isTypeOnly, propertyName, name); return finishNode(node, pos); function parseNameWithKeywordCheck() { checkIdentifierIsKeyword = ts.isKeyword(token()) && !isIdentifier(); checkIdentifierStart = scanner.getTokenPos(); checkIdentifierEnd = scanner.getTextPos(); return parseIdentifierName(); } } function parseNamespaceExport(pos) { return finishNode(factory.createNamespaceExport(parseIdentifierName()), pos); } function parseExportDeclaration(pos, hasJSDoc, decorators, modifiers) { var savedAwaitContext = inAwaitContext(); setAwaitContext(/*value*/ true); var exportClause; var moduleSpecifier; var assertClause; var isTypeOnly = parseOptional(152 /* SyntaxKind.TypeKeyword */); var namespaceExportPos = getNodePos(); if (parseOptional(41 /* SyntaxKind.AsteriskToken */)) { if (parseOptional(127 /* SyntaxKind.AsKeyword */)) { exportClause = parseNamespaceExport(namespaceExportPos); } parseExpected(156 /* SyntaxKind.FromKeyword */); moduleSpecifier = parseModuleSpecifier(); } else { exportClause = parseNamedImportsOrExports(273 /* SyntaxKind.NamedExports */); // It is not uncommon to accidentally omit the 'from' keyword. Additionally, in editing scenarios, // the 'from' keyword can be parsed as a named export when the export clause is unterminated (i.e. `export { from "moduleName";`) // If we don't have a 'from' keyword, see if we have a string literal such that ASI won't take effect. if (token() === 156 /* SyntaxKind.FromKeyword */ || (token() === 10 /* SyntaxKind.StringLiteral */ && !scanner.hasPrecedingLineBreak())) { parseExpected(156 /* SyntaxKind.FromKeyword */); moduleSpecifier = parseModuleSpecifier(); } } if (moduleSpecifier && token() === 129 /* SyntaxKind.AssertKeyword */ && !scanner.hasPrecedingLineBreak()) { assertClause = parseAssertClause(); } parseSemicolon(); setAwaitContext(savedAwaitContext); var node = factory.createExportDeclaration(decorators, modifiers, isTypeOnly, exportClause, moduleSpecifier, assertClause); return withJSDoc(finishNode(node, pos), hasJSDoc); } function parseExportAssignment(pos, hasJSDoc, decorators, modifiers) { var savedAwaitContext = inAwaitContext(); setAwaitContext(/*value*/ true); var isExportEquals; if (parseOptional(63 /* SyntaxKind.EqualsToken */)) { isExportEquals = true; } else { parseExpected(88 /* SyntaxKind.DefaultKeyword */); } var expression = parseAssignmentExpressionOrHigher(); parseSemicolon(); setAwaitContext(savedAwaitContext); var node = factory.createExportAssignment(decorators, modifiers, isExportEquals, expression); return withJSDoc(finishNode(node, pos), hasJSDoc); } var ParsingContext; (function (ParsingContext) { ParsingContext[ParsingContext["SourceElements"] = 0] = "SourceElements"; ParsingContext[ParsingContext["BlockStatements"] = 1] = "BlockStatements"; ParsingContext[ParsingContext["SwitchClauses"] = 2] = "SwitchClauses"; ParsingContext[ParsingContext["SwitchClauseStatements"] = 3] = "SwitchClauseStatements"; ParsingContext[ParsingContext["TypeMembers"] = 4] = "TypeMembers"; ParsingContext[ParsingContext["ClassMembers"] = 5] = "ClassMembers"; ParsingContext[ParsingContext["EnumMembers"] = 6] = "EnumMembers"; ParsingContext[ParsingContext["HeritageClauseElement"] = 7] = "HeritageClauseElement"; ParsingContext[ParsingContext["VariableDeclarations"] = 8] = "VariableDeclarations"; ParsingContext[ParsingContext["ObjectBindingElements"] = 9] = "ObjectBindingElements"; ParsingContext[ParsingContext["ArrayBindingElements"] = 10] = "ArrayBindingElements"; ParsingContext[ParsingContext["ArgumentExpressions"] = 11] = "ArgumentExpressions"; ParsingContext[ParsingContext["ObjectLiteralMembers"] = 12] = "ObjectLiteralMembers"; ParsingContext[ParsingContext["JsxAttributes"] = 13] = "JsxAttributes"; ParsingContext[ParsingContext["JsxChildren"] = 14] = "JsxChildren"; ParsingContext[ParsingContext["ArrayLiteralMembers"] = 15] = "ArrayLiteralMembers"; ParsingContext[ParsingContext["Parameters"] = 16] = "Parameters"; ParsingContext[ParsingContext["JSDocParameters"] = 17] = "JSDocParameters"; ParsingContext[ParsingContext["RestProperties"] = 18] = "RestProperties"; ParsingContext[ParsingContext["TypeParameters"] = 19] = "TypeParameters"; ParsingContext[ParsingContext["TypeArguments"] = 20] = "TypeArguments"; ParsingContext[ParsingContext["TupleElementTypes"] = 21] = "TupleElementTypes"; ParsingContext[ParsingContext["HeritageClauses"] = 22] = "HeritageClauses"; ParsingContext[ParsingContext["ImportOrExportSpecifiers"] = 23] = "ImportOrExportSpecifiers"; ParsingContext[ParsingContext["AssertEntries"] = 24] = "AssertEntries"; ParsingContext[ParsingContext["Count"] = 25] = "Count"; // Number of parsing contexts })(ParsingContext || (ParsingContext = {})); var Tristate; (function (Tristate) { Tristate[Tristate["False"] = 0] = "False"; Tristate[Tristate["True"] = 1] = "True"; Tristate[Tristate["Unknown"] = 2] = "Unknown"; })(Tristate || (Tristate = {})); var JSDocParser; (function (JSDocParser) { function parseJSDocTypeExpressionForTests(content, start, length) { initializeState("file.js", content, 99 /* ScriptTarget.Latest */, /*_syntaxCursor:*/ undefined, 1 /* ScriptKind.JS */); scanner.setText(content, start, length); currentToken = scanner.scan(); var jsDocTypeExpression = parseJSDocTypeExpression(); var sourceFile = createSourceFile("file.js", 99 /* ScriptTarget.Latest */, 1 /* ScriptKind.JS */, /*isDeclarationFile*/ false, [], factory.createToken(1 /* SyntaxKind.EndOfFileToken */), 0 /* NodeFlags.None */, ts.noop); var diagnostics = ts.attachFileToDiagnostics(parseDiagnostics, sourceFile); if (jsDocDiagnostics) { sourceFile.jsDocDiagnostics = ts.attachFileToDiagnostics(jsDocDiagnostics, sourceFile); } clearState(); return jsDocTypeExpression ? { jsDocTypeExpression: jsDocTypeExpression, diagnostics: diagnostics } : undefined; } JSDocParser.parseJSDocTypeExpressionForTests = parseJSDocTypeExpressionForTests; // Parses out a JSDoc type expression. function parseJSDocTypeExpression(mayOmitBraces) { var pos = getNodePos(); var hasBrace = (mayOmitBraces ? parseOptional : parseExpected)(18 /* SyntaxKind.OpenBraceToken */); var type = doInsideOfContext(8388608 /* NodeFlags.JSDoc */, parseJSDocType); if (!mayOmitBraces || hasBrace) { parseExpectedJSDoc(19 /* SyntaxKind.CloseBraceToken */); } var result = factory.createJSDocTypeExpression(type); fixupParentReferences(result); return finishNode(result, pos); } JSDocParser.parseJSDocTypeExpression = parseJSDocTypeExpression; function parseJSDocNameReference() { var pos = getNodePos(); var hasBrace = parseOptional(18 /* SyntaxKind.OpenBraceToken */); var p2 = getNodePos(); var entityName = parseEntityName(/* allowReservedWords*/ false); while (token() === 80 /* SyntaxKind.PrivateIdentifier */) { reScanHashToken(); // rescan #id as # id nextTokenJSDoc(); // then skip the # entityName = finishNode(factory.createJSDocMemberName(entityName, parseIdentifier()), p2); } if (hasBrace) { parseExpectedJSDoc(19 /* SyntaxKind.CloseBraceToken */); } var result = factory.createJSDocNameReference(entityName); fixupParentReferences(result); return finishNode(result, pos); } JSDocParser.parseJSDocNameReference = parseJSDocNameReference; function parseIsolatedJSDocComment(content, start, length) { initializeState("", content, 99 /* ScriptTarget.Latest */, /*_syntaxCursor:*/ undefined, 1 /* ScriptKind.JS */); var jsDoc = doInsideOfContext(8388608 /* NodeFlags.JSDoc */, function () { return parseJSDocCommentWorker(start, length); }); var sourceFile = { languageVariant: 0 /* LanguageVariant.Standard */, text: content }; var diagnostics = ts.attachFileToDiagnostics(parseDiagnostics, sourceFile); clearState(); return jsDoc ? { jsDoc: jsDoc, diagnostics: diagnostics } : undefined; } JSDocParser.parseIsolatedJSDocComment = parseIsolatedJSDocComment; function parseJSDocComment(parent, start, length) { var saveToken = currentToken; var saveParseDiagnosticsLength = parseDiagnostics.length; var saveParseErrorBeforeNextFinishedNode = parseErrorBeforeNextFinishedNode; var comment = doInsideOfContext(8388608 /* NodeFlags.JSDoc */, function () { return parseJSDocCommentWorker(start, length); }); ts.setParent(comment, parent); if (contextFlags & 262144 /* NodeFlags.JavaScriptFile */) { if (!jsDocDiagnostics) { jsDocDiagnostics = []; } jsDocDiagnostics.push.apply(jsDocDiagnostics, parseDiagnostics); } currentToken = saveToken; parseDiagnostics.length = saveParseDiagnosticsLength; parseErrorBeforeNextFinishedNode = saveParseErrorBeforeNextFinishedNode; return comment; } JSDocParser.parseJSDocComment = parseJSDocComment; var JSDocState; (function (JSDocState) { JSDocState[JSDocState["BeginningOfLine"] = 0] = "BeginningOfLine"; JSDocState[JSDocState["SawAsterisk"] = 1] = "SawAsterisk"; JSDocState[JSDocState["SavingComments"] = 2] = "SavingComments"; JSDocState[JSDocState["SavingBackticks"] = 3] = "SavingBackticks"; })(JSDocState || (JSDocState = {})); var PropertyLikeParse; (function (PropertyLikeParse) { PropertyLikeParse[PropertyLikeParse["Property"] = 1] = "Property"; PropertyLikeParse[PropertyLikeParse["Parameter"] = 2] = "Parameter"; PropertyLikeParse[PropertyLikeParse["CallbackParameter"] = 4] = "CallbackParameter"; })(PropertyLikeParse || (PropertyLikeParse = {})); function parseJSDocCommentWorker(start, length) { if (start === void 0) { start = 0; } var content = sourceText; var end = length === undefined ? content.length : start + length; length = end - start; ts.Debug.assert(start >= 0); ts.Debug.assert(start <= end); ts.Debug.assert(end <= content.length); // Check for /** (JSDoc opening part) if (!isJSDocLikeText(content, start)) { return undefined; } var tags; var tagsPos; var tagsEnd; var linkEnd; var commentsPos; var comments = []; var parts = []; // + 3 for leading /**, - 5 in total for /** */ return scanner.scanRange(start + 3, length - 5, function () { // Initially we can parse out a tag. We also have seen a starting asterisk. // This is so that /** * @type */ doesn't parse. var state = 1 /* JSDocState.SawAsterisk */; var margin; // + 4 for leading '/** ' // + 1 because the last index of \n is always one index before the first character in the line and coincidentally, if there is no \n before start, it is -1, which is also one index before the first character var indent = start - (content.lastIndexOf("\n", start) + 1) + 4; function pushComment(text) { if (!margin) { margin = indent; } comments.push(text); indent += text.length; } nextTokenJSDoc(); while (parseOptionalJsdoc(5 /* SyntaxKind.WhitespaceTrivia */)) ; if (parseOptionalJsdoc(4 /* SyntaxKind.NewLineTrivia */)) { state = 0 /* JSDocState.BeginningOfLine */; indent = 0; } loop: while (true) { switch (token()) { case 59 /* SyntaxKind.AtToken */: if (state === 0 /* JSDocState.BeginningOfLine */ || state === 1 /* JSDocState.SawAsterisk */) { removeTrailingWhitespace(comments); if (!commentsPos) commentsPos = getNodePos(); addTag(parseTag(indent)); // NOTE: According to usejsdoc.org, a tag goes to end of line, except the last tag. // Real-world comments may break this rule, so "BeginningOfLine" will not be a real line beginning // for malformed examples like `/** @param {string} x @returns {number} the length */` state = 0 /* JSDocState.BeginningOfLine */; margin = undefined; } else { pushComment(scanner.getTokenText()); } break; case 4 /* SyntaxKind.NewLineTrivia */: comments.push(scanner.getTokenText()); state = 0 /* JSDocState.BeginningOfLine */; indent = 0; break; case 41 /* SyntaxKind.AsteriskToken */: var asterisk = scanner.getTokenText(); if (state === 1 /* JSDocState.SawAsterisk */ || state === 2 /* JSDocState.SavingComments */) { // If we've already seen an asterisk, then we can no longer parse a tag on this line state = 2 /* JSDocState.SavingComments */; pushComment(asterisk); } else { // Ignore the first asterisk on a line state = 1 /* JSDocState.SawAsterisk */; indent += asterisk.length; } break; case 5 /* SyntaxKind.WhitespaceTrivia */: // only collect whitespace if we're already saving comments or have just crossed the comment indent margin var whitespace = scanner.getTokenText(); if (state === 2 /* JSDocState.SavingComments */) { comments.push(whitespace); } else if (margin !== undefined && indent + whitespace.length > margin) { comments.push(whitespace.slice(margin - indent)); } indent += whitespace.length; break; case 1 /* SyntaxKind.EndOfFileToken */: break loop; case 18 /* SyntaxKind.OpenBraceToken */: state = 2 /* JSDocState.SavingComments */; var commentEnd = scanner.getStartPos(); var linkStart = scanner.getTextPos() - 1; var link = parseJSDocLink(linkStart); if (link) { if (!linkEnd) { removeLeadingNewlines(comments); } parts.push(finishNode(factory.createJSDocText(comments.join("")), linkEnd !== null && linkEnd !== void 0 ? linkEnd : start, commentEnd)); parts.push(link); comments = []; linkEnd = scanner.getTextPos(); break; } // fallthrough if it's not a {@link sequence default: // Anything else is doc comment text. We just save it. Because it // wasn't a tag, we can no longer parse a tag on this line until we hit the next // line break. state = 2 /* JSDocState.SavingComments */; pushComment(scanner.getTokenText()); break; } nextTokenJSDoc(); } removeTrailingWhitespace(comments); if (parts.length && comments.length) { parts.push(finishNode(factory.createJSDocText(comments.join("")), linkEnd !== null && linkEnd !== void 0 ? linkEnd : start, commentsPos)); } if (parts.length && tags) ts.Debug.assertIsDefined(commentsPos, "having parsed tags implies that the end of the comment span should be set"); var tagsArray = tags && createNodeArray(tags, tagsPos, tagsEnd); return finishNode(factory.createJSDocComment(parts.length ? createNodeArray(parts, start, commentsPos) : comments.length ? comments.join("") : undefined, tagsArray), start, end); }); function removeLeadingNewlines(comments) { while (comments.length && (comments[0] === "\n" || comments[0] === "\r")) { comments.shift(); } } function removeTrailingWhitespace(comments) { while (comments.length && comments[comments.length - 1].trim() === "") { comments.pop(); } } function isNextNonwhitespaceTokenEndOfFile() { // We must use infinite lookahead, as there could be any number of newlines :( while (true) { nextTokenJSDoc(); if (token() === 1 /* SyntaxKind.EndOfFileToken */) { return true; } if (!(token() === 5 /* SyntaxKind.WhitespaceTrivia */ || token() === 4 /* SyntaxKind.NewLineTrivia */)) { return false; } } } function skipWhitespace() { if (token() === 5 /* SyntaxKind.WhitespaceTrivia */ || token() === 4 /* SyntaxKind.NewLineTrivia */) { if (lookAhead(isNextNonwhitespaceTokenEndOfFile)) { return; // Don't skip whitespace prior to EoF (or end of comment) - that shouldn't be included in any node's range } } while (token() === 5 /* SyntaxKind.WhitespaceTrivia */ || token() === 4 /* SyntaxKind.NewLineTrivia */) { nextTokenJSDoc(); } } function skipWhitespaceOrAsterisk() { if (token() === 5 /* SyntaxKind.WhitespaceTrivia */ || token() === 4 /* SyntaxKind.NewLineTrivia */) { if (lookAhead(isNextNonwhitespaceTokenEndOfFile)) { return ""; // Don't skip whitespace prior to EoF (or end of comment) - that shouldn't be included in any node's range } } var precedingLineBreak = scanner.hasPrecedingLineBreak(); var seenLineBreak = false; var indentText = ""; while ((precedingLineBreak && token() === 41 /* SyntaxKind.AsteriskToken */) || token() === 5 /* SyntaxKind.WhitespaceTrivia */ || token() === 4 /* SyntaxKind.NewLineTrivia */) { indentText += scanner.getTokenText(); if (token() === 4 /* SyntaxKind.NewLineTrivia */) { precedingLineBreak = true; seenLineBreak = true; indentText = ""; } else if (token() === 41 /* SyntaxKind.AsteriskToken */) { precedingLineBreak = false; } nextTokenJSDoc(); } return seenLineBreak ? indentText : ""; } function parseTag(margin) { ts.Debug.assert(token() === 59 /* SyntaxKind.AtToken */); var start = scanner.getTokenPos(); nextTokenJSDoc(); var tagName = parseJSDocIdentifierName(/*message*/ undefined); var indentText = skipWhitespaceOrAsterisk(); var tag; switch (tagName.escapedText) { case "author": tag = parseAuthorTag(start, tagName, margin, indentText); break; case "implements": tag = parseImplementsTag(start, tagName, margin, indentText); break; case "augments": case "extends": tag = parseAugmentsTag(start, tagName, margin, indentText); break; case "class": case "constructor": tag = parseSimpleTag(start, factory.createJSDocClassTag, tagName, margin, indentText); break; case "public": tag = parseSimpleTag(start, factory.createJSDocPublicTag, tagName, margin, indentText); break; case "private": tag = parseSimpleTag(start, factory.createJSDocPrivateTag, tagName, margin, indentText); break; case "protected": tag = parseSimpleTag(start, factory.createJSDocProtectedTag, tagName, margin, indentText); break; case "readonly": tag = parseSimpleTag(start, factory.createJSDocReadonlyTag, tagName, margin, indentText); break; case "override": tag = parseSimpleTag(start, factory.createJSDocOverrideTag, tagName, margin, indentText); break; case "deprecated": hasDeprecatedTag = true; tag = parseSimpleTag(start, factory.createJSDocDeprecatedTag, tagName, margin, indentText); break; case "this": tag = parseThisTag(start, tagName, margin, indentText); break; case "enum": tag = parseEnumTag(start, tagName, margin, indentText); break; case "arg": case "argument": case "param": return parseParameterOrPropertyTag(start, tagName, 2 /* PropertyLikeParse.Parameter */, margin); case "return": case "returns": tag = parseReturnTag(start, tagName, margin, indentText); break; case "template": tag = parseTemplateTag(start, tagName, margin, indentText); break; case "type": tag = parseTypeTag(start, tagName, margin, indentText); break; case "typedef": tag = parseTypedefTag(start, tagName, margin, indentText); break; case "callback": tag = parseCallbackTag(start, tagName, margin, indentText); break; case "see": tag = parseSeeTag(start, tagName, margin, indentText); break; default: tag = parseUnknownTag(start, tagName, margin, indentText); break; } return tag; } function parseTrailingTagComments(pos, end, margin, indentText) { // some tags, like typedef and callback, have already parsed their comments earlier if (!indentText) { margin += end - pos; } return parseTagComments(margin, indentText.slice(margin)); } function parseTagComments(indent, initialMargin) { var commentsPos = getNodePos(); var comments = []; var parts = []; var linkEnd; var state = 0 /* JSDocState.BeginningOfLine */; var previousWhitespace = true; var margin; function pushComment(text) { if (!margin) { margin = indent; } comments.push(text); indent += text.length; } if (initialMargin !== undefined) { // jump straight to saving comments if there is some initial indentation if (initialMargin !== "") { pushComment(initialMargin); } state = 1 /* JSDocState.SawAsterisk */; } var tok = token(); loop: while (true) { switch (tok) { case 4 /* SyntaxKind.NewLineTrivia */: state = 0 /* JSDocState.BeginningOfLine */; // don't use pushComment here because we want to keep the margin unchanged comments.push(scanner.getTokenText()); indent = 0; break; case 59 /* SyntaxKind.AtToken */: if (state === 3 /* JSDocState.SavingBackticks */ || state === 2 /* JSDocState.SavingComments */ && (!previousWhitespace || lookAhead(isNextJSDocTokenWhitespace))) { // @ doesn't start a new tag inside ``, and inside a comment, only after whitespace or not before whitespace comments.push(scanner.getTokenText()); break; } scanner.setTextPos(scanner.getTextPos() - 1); // falls through case 1 /* SyntaxKind.EndOfFileToken */: // Done break loop; case 5 /* SyntaxKind.WhitespaceTrivia */: if (state === 2 /* JSDocState.SavingComments */ || state === 3 /* JSDocState.SavingBackticks */) { pushComment(scanner.getTokenText()); } else { var whitespace = scanner.getTokenText(); // if the whitespace crosses the margin, take only the whitespace that passes the margin if (margin !== undefined && indent + whitespace.length > margin) { comments.push(whitespace.slice(margin - indent)); } indent += whitespace.length; } break; case 18 /* SyntaxKind.OpenBraceToken */: state = 2 /* JSDocState.SavingComments */; var commentEnd = scanner.getStartPos(); var linkStart = scanner.getTextPos() - 1; var link = parseJSDocLink(linkStart); if (link) { parts.push(finishNode(factory.createJSDocText(comments.join("")), linkEnd !== null && linkEnd !== void 0 ? linkEnd : commentsPos, commentEnd)); parts.push(link); comments = []; linkEnd = scanner.getTextPos(); } else { pushComment(scanner.getTokenText()); } break; case 61 /* SyntaxKind.BacktickToken */: if (state === 3 /* JSDocState.SavingBackticks */) { state = 2 /* JSDocState.SavingComments */; } else { state = 3 /* JSDocState.SavingBackticks */; } pushComment(scanner.getTokenText()); break; case 41 /* SyntaxKind.AsteriskToken */: if (state === 0 /* JSDocState.BeginningOfLine */) { // leading asterisks start recording on the *next* (non-whitespace) token state = 1 /* JSDocState.SawAsterisk */; indent += 1; break; } // record the * as a comment // falls through default: if (state !== 3 /* JSDocState.SavingBackticks */) { state = 2 /* JSDocState.SavingComments */; // leading identifiers start recording as well } pushComment(scanner.getTokenText()); break; } previousWhitespace = token() === 5 /* SyntaxKind.WhitespaceTrivia */; tok = nextTokenJSDoc(); } removeLeadingNewlines(comments); removeTrailingWhitespace(comments); if (parts.length) { if (comments.length) { parts.push(finishNode(factory.createJSDocText(comments.join("")), linkEnd !== null && linkEnd !== void 0 ? linkEnd : commentsPos)); } return createNodeArray(parts, commentsPos, scanner.getTextPos()); } else if (comments.length) { return comments.join(""); } } function isNextJSDocTokenWhitespace() { var next = nextTokenJSDoc(); return next === 5 /* SyntaxKind.WhitespaceTrivia */ || next === 4 /* SyntaxKind.NewLineTrivia */; } function parseJSDocLink(start) { var linkType = tryParse(parseJSDocLinkPrefix); if (!linkType) { return undefined; } nextTokenJSDoc(); // start at token after link, then skip any whitespace skipWhitespace(); // parseEntityName logs an error for non-identifier, so create a MissingNode ourselves to avoid the error var p2 = getNodePos(); var name = ts.tokenIsIdentifierOrKeyword(token()) ? parseEntityName(/*allowReservedWords*/ true) : undefined; if (name) { while (token() === 80 /* SyntaxKind.PrivateIdentifier */) { reScanHashToken(); // rescan #id as # id nextTokenJSDoc(); // then skip the # name = finishNode(factory.createJSDocMemberName(name, parseIdentifier()), p2); } } var text = []; while (token() !== 19 /* SyntaxKind.CloseBraceToken */ && token() !== 4 /* SyntaxKind.NewLineTrivia */ && token() !== 1 /* SyntaxKind.EndOfFileToken */) { text.push(scanner.getTokenText()); nextTokenJSDoc(); } var create = linkType === "link" ? factory.createJSDocLink : linkType === "linkcode" ? factory.createJSDocLinkCode : factory.createJSDocLinkPlain; return finishNode(create(name, text.join("")), start, scanner.getTextPos()); } function parseJSDocLinkPrefix() { skipWhitespaceOrAsterisk(); if (token() === 18 /* SyntaxKind.OpenBraceToken */ && nextTokenJSDoc() === 59 /* SyntaxKind.AtToken */ && ts.tokenIsIdentifierOrKeyword(nextTokenJSDoc())) { var kind = scanner.getTokenValue(); if (isJSDocLinkTag(kind)) return kind; } } function isJSDocLinkTag(kind) { return kind === "link" || kind === "linkcode" || kind === "linkplain"; } function parseUnknownTag(start, tagName, indent, indentText) { return finishNode(factory.createJSDocUnknownTag(tagName, parseTrailingTagComments(start, getNodePos(), indent, indentText)), start); } function addTag(tag) { if (!tag) { return; } if (!tags) { tags = [tag]; tagsPos = tag.pos; } else { tags.push(tag); } tagsEnd = tag.end; } function tryParseTypeExpression() { skipWhitespaceOrAsterisk(); return token() === 18 /* SyntaxKind.OpenBraceToken */ ? parseJSDocTypeExpression() : undefined; } function parseBracketNameInPropertyAndParamTag() { // Looking for something like '[foo]', 'foo', '[foo.bar]' or 'foo.bar' var isBracketed = parseOptionalJsdoc(22 /* SyntaxKind.OpenBracketToken */); if (isBracketed) { skipWhitespace(); } // a markdown-quoted name: `arg` is not legal jsdoc, but occurs in the wild var isBackquoted = parseOptionalJsdoc(61 /* SyntaxKind.BacktickToken */); var name = parseJSDocEntityName(); if (isBackquoted) { parseExpectedTokenJSDoc(61 /* SyntaxKind.BacktickToken */); } if (isBracketed) { skipWhitespace(); // May have an optional default, e.g. '[foo = 42]' if (parseOptionalToken(63 /* SyntaxKind.EqualsToken */)) { parseExpression(); } parseExpected(23 /* SyntaxKind.CloseBracketToken */); } return { name: name, isBracketed: isBracketed }; } function isObjectOrObjectArrayTypeReference(node) { switch (node.kind) { case 148 /* SyntaxKind.ObjectKeyword */: return true; case 183 /* SyntaxKind.ArrayType */: return isObjectOrObjectArrayTypeReference(node.elementType); default: return ts.isTypeReferenceNode(node) && ts.isIdentifier(node.typeName) && node.typeName.escapedText === "Object" && !node.typeArguments; } } function parseParameterOrPropertyTag(start, tagName, target, indent) { var typeExpression = tryParseTypeExpression(); var isNameFirst = !typeExpression; skipWhitespaceOrAsterisk(); var _a = parseBracketNameInPropertyAndParamTag(), name = _a.name, isBracketed = _a.isBracketed; var indentText = skipWhitespaceOrAsterisk(); if (isNameFirst && !lookAhead(parseJSDocLinkPrefix)) { typeExpression = tryParseTypeExpression(); } var comment = parseTrailingTagComments(start, getNodePos(), indent, indentText); var nestedTypeLiteral = target !== 4 /* PropertyLikeParse.CallbackParameter */ && parseNestedTypeLiteral(typeExpression, name, target, indent); if (nestedTypeLiteral) { typeExpression = nestedTypeLiteral; isNameFirst = true; } var result = target === 1 /* PropertyLikeParse.Property */ ? factory.createJSDocPropertyTag(tagName, name, isBracketed, typeExpression, isNameFirst, comment) : factory.createJSDocParameterTag(tagName, name, isBracketed, typeExpression, isNameFirst, comment); return finishNode(result, start); } function parseNestedTypeLiteral(typeExpression, name, target, indent) { if (typeExpression && isObjectOrObjectArrayTypeReference(typeExpression.type)) { var pos = getNodePos(); var child = void 0; var children = void 0; while (child = tryParse(function () { return parseChildParameterOrPropertyTag(target, indent, name); })) { if (child.kind === 340 /* SyntaxKind.JSDocParameterTag */ || child.kind === 347 /* SyntaxKind.JSDocPropertyTag */) { children = ts.append(children, child); } } if (children) { var literal = finishNode(factory.createJSDocTypeLiteral(children, typeExpression.type.kind === 183 /* SyntaxKind.ArrayType */), pos); return finishNode(factory.createJSDocTypeExpression(literal), pos); } } } function parseReturnTag(start, tagName, indent, indentText) { if (ts.some(tags, ts.isJSDocReturnTag)) { parseErrorAt(tagName.pos, scanner.getTokenPos(), ts.Diagnostics._0_tag_already_specified, tagName.escapedText); } var typeExpression = tryParseTypeExpression(); return finishNode(factory.createJSDocReturnTag(tagName, typeExpression, parseTrailingTagComments(start, getNodePos(), indent, indentText)), start); } function parseTypeTag(start, tagName, indent, indentText) { if (ts.some(tags, ts.isJSDocTypeTag)) { parseErrorAt(tagName.pos, scanner.getTokenPos(), ts.Diagnostics._0_tag_already_specified, tagName.escapedText); } var typeExpression = parseJSDocTypeExpression(/*mayOmitBraces*/ true); var comments = indent !== undefined && indentText !== undefined ? parseTrailingTagComments(start, getNodePos(), indent, indentText) : undefined; return finishNode(factory.createJSDocTypeTag(tagName, typeExpression, comments), start); } function parseSeeTag(start, tagName, indent, indentText) { var isMarkdownOrJSDocLink = token() === 22 /* SyntaxKind.OpenBracketToken */ || lookAhead(function () { return nextTokenJSDoc() === 59 /* SyntaxKind.AtToken */ && ts.tokenIsIdentifierOrKeyword(nextTokenJSDoc()) && isJSDocLinkTag(scanner.getTokenValue()); }); var nameExpression = isMarkdownOrJSDocLink ? undefined : parseJSDocNameReference(); var comments = indent !== undefined && indentText !== undefined ? parseTrailingTagComments(start, getNodePos(), indent, indentText) : undefined; return finishNode(factory.createJSDocSeeTag(tagName, nameExpression, comments), start); } function parseAuthorTag(start, tagName, indent, indentText) { var commentStart = getNodePos(); var textOnly = parseAuthorNameAndEmail(); var commentEnd = scanner.getStartPos(); var comments = parseTrailingTagComments(start, commentEnd, indent, indentText); if (!comments) { commentEnd = scanner.getStartPos(); } var allParts = typeof comments !== "string" ? createNodeArray(ts.concatenate([finishNode(textOnly, commentStart, commentEnd)], comments), commentStart) // cast away readonly : textOnly.text + comments; return finishNode(factory.createJSDocAuthorTag(tagName, allParts), start); } function parseAuthorNameAndEmail() { var comments = []; var inEmail = false; var token = scanner.getToken(); while (token !== 1 /* SyntaxKind.EndOfFileToken */ && token !== 4 /* SyntaxKind.NewLineTrivia */) { if (token === 29 /* SyntaxKind.LessThanToken */) { inEmail = true; } else if (token === 59 /* SyntaxKind.AtToken */ && !inEmail) { break; } else if (token === 31 /* SyntaxKind.GreaterThanToken */ && inEmail) { comments.push(scanner.getTokenText()); scanner.setTextPos(scanner.getTokenPos() + 1); break; } comments.push(scanner.getTokenText()); token = nextTokenJSDoc(); } return factory.createJSDocText(comments.join("")); } function parseImplementsTag(start, tagName, margin, indentText) { var className = parseExpressionWithTypeArgumentsForAugments(); return finishNode(factory.createJSDocImplementsTag(tagName, className, parseTrailingTagComments(start, getNodePos(), margin, indentText)), start); } function parseAugmentsTag(start, tagName, margin, indentText) { var className = parseExpressionWithTypeArgumentsForAugments(); return finishNode(factory.createJSDocAugmentsTag(tagName, className, parseTrailingTagComments(start, getNodePos(), margin, indentText)), start); } function parseExpressionWithTypeArgumentsForAugments() { var usedBrace = parseOptional(18 /* SyntaxKind.OpenBraceToken */); var pos = getNodePos(); var expression = parsePropertyAccessEntityNameExpression(); var typeArguments = tryParseTypeArguments(); var node = factory.createExpressionWithTypeArguments(expression, typeArguments); var res = finishNode(node, pos); if (usedBrace) { parseExpected(19 /* SyntaxKind.CloseBraceToken */); } return res; } function parsePropertyAccessEntityNameExpression() { var pos = getNodePos(); var node = parseJSDocIdentifierName(); while (parseOptional(24 /* SyntaxKind.DotToken */)) { var name = parseJSDocIdentifierName(); node = finishNode(factory.createPropertyAccessExpression(node, name), pos); } return node; } function parseSimpleTag(start, createTag, tagName, margin, indentText) { return finishNode(createTag(tagName, parseTrailingTagComments(start, getNodePos(), margin, indentText)), start); } function parseThisTag(start, tagName, margin, indentText) { var typeExpression = parseJSDocTypeExpression(/*mayOmitBraces*/ true); skipWhitespace(); return finishNode(factory.createJSDocThisTag(tagName, typeExpression, parseTrailingTagComments(start, getNodePos(), margin, indentText)), start); } function parseEnumTag(start, tagName, margin, indentText) { var typeExpression = parseJSDocTypeExpression(/*mayOmitBraces*/ true); skipWhitespace(); return finishNode(factory.createJSDocEnumTag(tagName, typeExpression, parseTrailingTagComments(start, getNodePos(), margin, indentText)), start); } function parseTypedefTag(start, tagName, indent, indentText) { var _a; var typeExpression = tryParseTypeExpression(); skipWhitespaceOrAsterisk(); var fullName = parseJSDocTypeNameWithNamespace(); skipWhitespace(); var comment = parseTagComments(indent); var end; if (!typeExpression || isObjectOrObjectArrayTypeReference(typeExpression.type)) { var child = void 0; var childTypeTag = void 0; var jsDocPropertyTags = void 0; var hasChildren = false; while (child = tryParse(function () { return parseChildPropertyTag(indent); })) { hasChildren = true; if (child.kind === 343 /* SyntaxKind.JSDocTypeTag */) { if (childTypeTag) { var lastError = parseErrorAtCurrentToken(ts.Diagnostics.A_JSDoc_typedef_comment_may_not_contain_multiple_type_tags); if (lastError) { ts.addRelatedInfo(lastError, ts.createDetachedDiagnostic(fileName, 0, 0, ts.Diagnostics.The_tag_was_first_specified_here)); } break; } else { childTypeTag = child; } } else { jsDocPropertyTags = ts.append(jsDocPropertyTags, child); } } if (hasChildren) { var isArrayType = typeExpression && typeExpression.type.kind === 183 /* SyntaxKind.ArrayType */; var jsdocTypeLiteral = factory.createJSDocTypeLiteral(jsDocPropertyTags, isArrayType); typeExpression = childTypeTag && childTypeTag.typeExpression && !isObjectOrObjectArrayTypeReference(childTypeTag.typeExpression.type) ? childTypeTag.typeExpression : finishNode(jsdocTypeLiteral, start); end = typeExpression.end; } } // Only include the characters between the name end and the next token if a comment was actually parsed out - otherwise it's just whitespace end = end || comment !== undefined ? getNodePos() : ((_a = fullName !== null && fullName !== void 0 ? fullName : typeExpression) !== null && _a !== void 0 ? _a : tagName).end; if (!comment) { comment = parseTrailingTagComments(start, end, indent, indentText); } var typedefTag = factory.createJSDocTypedefTag(tagName, typeExpression, fullName, comment); return finishNode(typedefTag, start, end); } function parseJSDocTypeNameWithNamespace(nested) { var pos = scanner.getTokenPos(); if (!ts.tokenIsIdentifierOrKeyword(token())) { return undefined; } var typeNameOrNamespaceName = parseJSDocIdentifierName(); if (parseOptional(24 /* SyntaxKind.DotToken */)) { var body = parseJSDocTypeNameWithNamespace(/*nested*/ true); var jsDocNamespaceNode = factory.createModuleDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, typeNameOrNamespaceName, body, nested ? 4 /* NodeFlags.NestedNamespace */ : undefined); return finishNode(jsDocNamespaceNode, pos); } if (nested) { typeNameOrNamespaceName.isInJSDocNamespace = true; } return typeNameOrNamespaceName; } function parseCallbackTagParameters(indent) { var pos = getNodePos(); var child; var parameters; while (child = tryParse(function () { return parseChildParameterOrPropertyTag(4 /* PropertyLikeParse.CallbackParameter */, indent); })) { parameters = ts.append(parameters, child); } return createNodeArray(parameters || [], pos); } function parseCallbackTag(start, tagName, indent, indentText) { var fullName = parseJSDocTypeNameWithNamespace(); skipWhitespace(); var comment = parseTagComments(indent); var parameters = parseCallbackTagParameters(indent); var returnTag = tryParse(function () { if (parseOptionalJsdoc(59 /* SyntaxKind.AtToken */)) { var tag = parseTag(indent); if (tag && tag.kind === 341 /* SyntaxKind.JSDocReturnTag */) { return tag; } } }); var typeExpression = finishNode(factory.createJSDocSignature(/*typeParameters*/ undefined, parameters, returnTag), start); if (!comment) { comment = parseTrailingTagComments(start, getNodePos(), indent, indentText); } var end = comment !== undefined ? getNodePos() : typeExpression.end; return finishNode(factory.createJSDocCallbackTag(tagName, typeExpression, fullName, comment), start, end); } function escapedTextsEqual(a, b) { while (!ts.isIdentifier(a) || !ts.isIdentifier(b)) { if (!ts.isIdentifier(a) && !ts.isIdentifier(b) && a.right.escapedText === b.right.escapedText) { a = a.left; b = b.left; } else { return false; } } return a.escapedText === b.escapedText; } function parseChildPropertyTag(indent) { return parseChildParameterOrPropertyTag(1 /* PropertyLikeParse.Property */, indent); } function parseChildParameterOrPropertyTag(target, indent, name) { var canParseTag = true; var seenAsterisk = false; while (true) { switch (nextTokenJSDoc()) { case 59 /* SyntaxKind.AtToken */: if (canParseTag) { var child = tryParseChildTag(target, indent); if (child && (child.kind === 340 /* SyntaxKind.JSDocParameterTag */ || child.kind === 347 /* SyntaxKind.JSDocPropertyTag */) && target !== 4 /* PropertyLikeParse.CallbackParameter */ && name && (ts.isIdentifier(child.name) || !escapedTextsEqual(name, child.name.left))) { return false; } return child; } seenAsterisk = false; break; case 4 /* SyntaxKind.NewLineTrivia */: canParseTag = true; seenAsterisk = false; break; case 41 /* SyntaxKind.AsteriskToken */: if (seenAsterisk) { canParseTag = false; } seenAsterisk = true; break; case 79 /* SyntaxKind.Identifier */: canParseTag = false; break; case 1 /* SyntaxKind.EndOfFileToken */: return false; } } } function tryParseChildTag(target, indent) { ts.Debug.assert(token() === 59 /* SyntaxKind.AtToken */); var start = scanner.getStartPos(); nextTokenJSDoc(); var tagName = parseJSDocIdentifierName(); skipWhitespace(); var t; switch (tagName.escapedText) { case "type": return target === 1 /* PropertyLikeParse.Property */ && parseTypeTag(start, tagName); case "prop": case "property": t = 1 /* PropertyLikeParse.Property */; break; case "arg": case "argument": case "param": t = 2 /* PropertyLikeParse.Parameter */ | 4 /* PropertyLikeParse.CallbackParameter */; break; default: return false; } if (!(target & t)) { return false; } return parseParameterOrPropertyTag(start, tagName, target, indent); } function parseTemplateTagTypeParameter() { var typeParameterPos = getNodePos(); var isBracketed = parseOptionalJsdoc(22 /* SyntaxKind.OpenBracketToken */); if (isBracketed) { skipWhitespace(); } var name = parseJSDocIdentifierName(ts.Diagnostics.Unexpected_token_A_type_parameter_name_was_expected_without_curly_braces); var defaultType; if (isBracketed) { skipWhitespace(); parseExpected(63 /* SyntaxKind.EqualsToken */); defaultType = doInsideOfContext(8388608 /* NodeFlags.JSDoc */, parseJSDocType); parseExpected(23 /* SyntaxKind.CloseBracketToken */); } if (ts.nodeIsMissing(name)) { return undefined; } return finishNode(factory.createTypeParameterDeclaration(/*modifiers*/ undefined, name, /*constraint*/ undefined, defaultType), typeParameterPos); } function parseTemplateTagTypeParameters() { var pos = getNodePos(); var typeParameters = []; do { skipWhitespace(); var node = parseTemplateTagTypeParameter(); if (node !== undefined) { typeParameters.push(node); } skipWhitespaceOrAsterisk(); } while (parseOptionalJsdoc(27 /* SyntaxKind.CommaToken */)); return createNodeArray(typeParameters, pos); } function parseTemplateTag(start, tagName, indent, indentText) { // The template tag looks like one of the following: // @template T,U,V // @template {Constraint} T // // According to the [closure docs](https://github.com/google/closure-compiler/wiki/Generic-Types#multiple-bounded-template-types): // > Multiple bounded generics cannot be declared on the same line. For the sake of clarity, if multiple templates share the same // > type bound they must be declared on separate lines. // // TODO: Determine whether we should enforce this in the checker. // TODO: Consider moving the `constraint` to the first type parameter as we could then remove `getEffectiveConstraintOfTypeParameter`. // TODO: Consider only parsing a single type parameter if there is a constraint. var constraint = token() === 18 /* SyntaxKind.OpenBraceToken */ ? parseJSDocTypeExpression() : undefined; var typeParameters = parseTemplateTagTypeParameters(); return finishNode(factory.createJSDocTemplateTag(tagName, constraint, typeParameters, parseTrailingTagComments(start, getNodePos(), indent, indentText)), start); } function parseOptionalJsdoc(t) { if (token() === t) { nextTokenJSDoc(); return true; } return false; } function parseJSDocEntityName() { var entity = parseJSDocIdentifierName(); if (parseOptional(22 /* SyntaxKind.OpenBracketToken */)) { parseExpected(23 /* SyntaxKind.CloseBracketToken */); // Note that y[] is accepted as an entity name, but the postfix brackets are not saved for checking. // Technically usejsdoc.org requires them for specifying a property of a type equivalent to Array<{ x: ...}> // but it's not worth it to enforce that restriction. } while (parseOptional(24 /* SyntaxKind.DotToken */)) { var name = parseJSDocIdentifierName(); if (parseOptional(22 /* SyntaxKind.OpenBracketToken */)) { parseExpected(23 /* SyntaxKind.CloseBracketToken */); } entity = createQualifiedName(entity, name); } return entity; } function parseJSDocIdentifierName(message) { if (!ts.tokenIsIdentifierOrKeyword(token())) { return createMissingNode(79 /* SyntaxKind.Identifier */, /*reportAtCurrentPosition*/ !message, message || ts.Diagnostics.Identifier_expected); } identifierCount++; var pos = scanner.getTokenPos(); var end = scanner.getTextPos(); var originalKeywordKind = token(); var text = internIdentifier(scanner.getTokenValue()); var result = finishNode(factory.createIdentifier(text, /*typeArguments*/ undefined, originalKeywordKind), pos, end); nextTokenJSDoc(); return result; } } })(JSDocParser = Parser.JSDocParser || (Parser.JSDocParser = {})); })(Parser || (Parser = {})); var IncrementalParser; (function (IncrementalParser) { function updateSourceFile(sourceFile, newText, textChangeRange, aggressiveChecks) { aggressiveChecks = aggressiveChecks || ts.Debug.shouldAssert(2 /* AssertionLevel.Aggressive */); checkChangeRange(sourceFile, newText, textChangeRange, aggressiveChecks); if (ts.textChangeRangeIsUnchanged(textChangeRange)) { // if the text didn't change, then we can just return our current source file as-is. return sourceFile; } if (sourceFile.statements.length === 0) { // If we don't have any statements in the current source file, then there's no real // way to incrementally parse. So just do a full parse instead. return Parser.parseSourceFile(sourceFile.fileName, newText, sourceFile.languageVersion, /*syntaxCursor*/ undefined, /*setParentNodes*/ true, sourceFile.scriptKind, sourceFile.setExternalModuleIndicator); } // Make sure we're not trying to incrementally update a source file more than once. Once // we do an update the original source file is considered unusable from that point onwards. // // This is because we do incremental parsing in-place. i.e. we take nodes from the old // tree and give them new positions and parents. From that point on, trusting the old // tree at all is not possible as far too much of it may violate invariants. var incrementalSourceFile = sourceFile; ts.Debug.assert(!incrementalSourceFile.hasBeenIncrementallyParsed); incrementalSourceFile.hasBeenIncrementallyParsed = true; Parser.fixupParentReferences(incrementalSourceFile); var oldText = sourceFile.text; var syntaxCursor = createSyntaxCursor(sourceFile); // Make the actual change larger so that we know to reparse anything whose lookahead // might have intersected the change. var changeRange = extendToAffectedRange(sourceFile, textChangeRange); checkChangeRange(sourceFile, newText, changeRange, aggressiveChecks); // Ensure that extending the affected range only moved the start of the change range // earlier in the file. ts.Debug.assert(changeRange.span.start <= textChangeRange.span.start); ts.Debug.assert(ts.textSpanEnd(changeRange.span) === ts.textSpanEnd(textChangeRange.span)); ts.Debug.assert(ts.textSpanEnd(ts.textChangeRangeNewSpan(changeRange)) === ts.textSpanEnd(ts.textChangeRangeNewSpan(textChangeRange))); // The is the amount the nodes after the edit range need to be adjusted. It can be // positive (if the edit added characters), negative (if the edit deleted characters) // or zero (if this was a pure overwrite with nothing added/removed). var delta = ts.textChangeRangeNewSpan(changeRange).length - changeRange.span.length; // If we added or removed characters during the edit, then we need to go and adjust all // the nodes after the edit. Those nodes may move forward (if we inserted chars) or they // may move backward (if we deleted chars). // // Doing this helps us out in two ways. First, it means that any nodes/tokens we want // to reuse are already at the appropriate position in the new text. That way when we // reuse them, we don't have to figure out if they need to be adjusted. Second, it makes // it very easy to determine if we can reuse a node. If the node's position is at where // we are in the text, then we can reuse it. Otherwise we can't. If the node's position // is ahead of us, then we'll need to rescan tokens. If the node's position is behind // us, then we'll need to skip it or crumble it as appropriate // // We will also adjust the positions of nodes that intersect the change range as well. // By doing this, we ensure that all the positions in the old tree are consistent, not // just the positions of nodes entirely before/after the change range. By being // consistent, we can then easily map from positions to nodes in the old tree easily. // // Also, mark any syntax elements that intersect the changed span. We know, up front, // that we cannot reuse these elements. updateTokenPositionsAndMarkElements(incrementalSourceFile, changeRange.span.start, ts.textSpanEnd(changeRange.span), ts.textSpanEnd(ts.textChangeRangeNewSpan(changeRange)), delta, oldText, newText, aggressiveChecks); // Now that we've set up our internal incremental state just proceed and parse the // source file in the normal fashion. When possible the parser will retrieve and // reuse nodes from the old tree. // // Note: passing in 'true' for setNodeParents is very important. When incrementally // parsing, we will be reusing nodes from the old tree, and placing it into new // parents. If we don't set the parents now, we'll end up with an observably // inconsistent tree. Setting the parents on the new tree should be very fast. We // will immediately bail out of walking any subtrees when we can see that their parents // are already correct. var result = Parser.parseSourceFile(sourceFile.fileName, newText, sourceFile.languageVersion, syntaxCursor, /*setParentNodes*/ true, sourceFile.scriptKind, sourceFile.setExternalModuleIndicator); result.commentDirectives = getNewCommentDirectives(sourceFile.commentDirectives, result.commentDirectives, changeRange.span.start, ts.textSpanEnd(changeRange.span), delta, oldText, newText, aggressiveChecks); result.impliedNodeFormat = sourceFile.impliedNodeFormat; return result; } IncrementalParser.updateSourceFile = updateSourceFile; function getNewCommentDirectives(oldDirectives, newDirectives, changeStart, changeRangeOldEnd, delta, oldText, newText, aggressiveChecks) { if (!oldDirectives) return newDirectives; var commentDirectives; var addedNewlyScannedDirectives = false; for (var _i = 0, oldDirectives_1 = oldDirectives; _i < oldDirectives_1.length; _i++) { var directive = oldDirectives_1[_i]; var range = directive.range, type = directive.type; // Range before the change if (range.end < changeStart) { commentDirectives = ts.append(commentDirectives, directive); } else if (range.pos > changeRangeOldEnd) { addNewlyScannedDirectives(); // Node is entirely past the change range. We need to move both its pos and // end, forward or backward appropriately. var updatedDirective = { range: { pos: range.pos + delta, end: range.end + delta }, type: type }; commentDirectives = ts.append(commentDirectives, updatedDirective); if (aggressiveChecks) { ts.Debug.assert(oldText.substring(range.pos, range.end) === newText.substring(updatedDirective.range.pos, updatedDirective.range.end)); } } // Ignore ranges that fall in change range } addNewlyScannedDirectives(); return commentDirectives; function addNewlyScannedDirectives() { if (addedNewlyScannedDirectives) return; addedNewlyScannedDirectives = true; if (!commentDirectives) { commentDirectives = newDirectives; } else if (newDirectives) { commentDirectives.push.apply(commentDirectives, newDirectives); } } } function moveElementEntirelyPastChangeRange(element, isArray, delta, oldText, newText, aggressiveChecks) { if (isArray) { visitArray(element); } else { visitNode(element); } return; function visitNode(node) { var text = ""; if (aggressiveChecks && shouldCheckNode(node)) { text = oldText.substring(node.pos, node.end); } // Ditch any existing LS children we may have created. This way we can avoid // moving them forward. if (node._children) { node._children = undefined; } ts.setTextRangePosEnd(node, node.pos + delta, node.end + delta); if (aggressiveChecks && shouldCheckNode(node)) { ts.Debug.assert(text === newText.substring(node.pos, node.end)); } forEachChild(node, visitNode, visitArray); if (ts.hasJSDocNodes(node)) { for (var _i = 0, _a = node.jsDoc; _i < _a.length; _i++) { var jsDocComment = _a[_i]; visitNode(jsDocComment); } } checkNodePositions(node, aggressiveChecks); } function visitArray(array) { array._children = undefined; ts.setTextRangePosEnd(array, array.pos + delta, array.end + delta); for (var _i = 0, array_9 = array; _i < array_9.length; _i++) { var node = array_9[_i]; visitNode(node); } } } function shouldCheckNode(node) { switch (node.kind) { case 10 /* SyntaxKind.StringLiteral */: case 8 /* SyntaxKind.NumericLiteral */: case 79 /* SyntaxKind.Identifier */: return true; } return false; } function adjustIntersectingElement(element, changeStart, changeRangeOldEnd, changeRangeNewEnd, delta) { ts.Debug.assert(element.end >= changeStart, "Adjusting an element that was entirely before the change range"); ts.Debug.assert(element.pos <= changeRangeOldEnd, "Adjusting an element that was entirely after the change range"); ts.Debug.assert(element.pos <= element.end); // We have an element that intersects the change range in some way. It may have its // start, or its end (or both) in the changed range. We want to adjust any part // that intersects such that the final tree is in a consistent state. i.e. all // children have spans within the span of their parent, and all siblings are ordered // properly. // We may need to update both the 'pos' and the 'end' of the element. // If the 'pos' is before the start of the change, then we don't need to touch it. // If it isn't, then the 'pos' must be inside the change. How we update it will // depend if delta is positive or negative. If delta is positive then we have // something like: // // -------------------AAA----------------- // -------------------BBBCCCCCCC----------------- // // In this case, we consider any node that started in the change range to still be // starting at the same position. // // however, if the delta is negative, then we instead have something like this: // // -------------------XXXYYYYYYY----------------- // -------------------ZZZ----------------- // // In this case, any element that started in the 'X' range will keep its position. // However any element that started after that will have their pos adjusted to be // at the end of the new range. i.e. any node that started in the 'Y' range will // be adjusted to have their start at the end of the 'Z' range. // // The element will keep its position if possible. Or Move backward to the new-end // if it's in the 'Y' range. var pos = Math.min(element.pos, changeRangeNewEnd); // If the 'end' is after the change range, then we always adjust it by the delta // amount. However, if the end is in the change range, then how we adjust it // will depend on if delta is positive or negative. If delta is positive then we // have something like: // // -------------------AAA----------------- // -------------------BBBCCCCCCC----------------- // // In this case, we consider any node that ended inside the change range to keep its // end position. // // however, if the delta is negative, then we instead have something like this: // // -------------------XXXYYYYYYY----------------- // -------------------ZZZ----------------- // // In this case, any element that ended in the 'X' range will keep its position. // However any element that ended after that will have their pos adjusted to be // at the end of the new range. i.e. any node that ended in the 'Y' range will // be adjusted to have their end at the end of the 'Z' range. var end = element.end >= changeRangeOldEnd ? // Element ends after the change range. Always adjust the end pos. element.end + delta : // Element ends in the change range. The element will keep its position if // possible. Or Move backward to the new-end if it's in the 'Y' range. Math.min(element.end, changeRangeNewEnd); ts.Debug.assert(pos <= end); if (element.parent) { ts.Debug.assertGreaterThanOrEqual(pos, element.parent.pos); ts.Debug.assertLessThanOrEqual(end, element.parent.end); } ts.setTextRangePosEnd(element, pos, end); } function checkNodePositions(node, aggressiveChecks) { if (aggressiveChecks) { var pos_2 = node.pos; var visitNode_1 = function (child) { ts.Debug.assert(child.pos >= pos_2); pos_2 = child.end; }; if (ts.hasJSDocNodes(node)) { for (var _i = 0, _a = node.jsDoc; _i < _a.length; _i++) { var jsDocComment = _a[_i]; visitNode_1(jsDocComment); } } forEachChild(node, visitNode_1); ts.Debug.assert(pos_2 <= node.end); } } function updateTokenPositionsAndMarkElements(sourceFile, changeStart, changeRangeOldEnd, changeRangeNewEnd, delta, oldText, newText, aggressiveChecks) { visitNode(sourceFile); return; function visitNode(child) { ts.Debug.assert(child.pos <= child.end); if (child.pos > changeRangeOldEnd) { // Node is entirely past the change range. We need to move both its pos and // end, forward or backward appropriately. moveElementEntirelyPastChangeRange(child, /*isArray*/ false, delta, oldText, newText, aggressiveChecks); return; } // Check if the element intersects the change range. If it does, then it is not // reusable. Also, we'll need to recurse to see what constituent portions we may // be able to use. var fullEnd = child.end; if (fullEnd >= changeStart) { child.intersectsChange = true; child._children = undefined; // Adjust the pos or end (or both) of the intersecting element accordingly. adjustIntersectingElement(child, changeStart, changeRangeOldEnd, changeRangeNewEnd, delta); forEachChild(child, visitNode, visitArray); if (ts.hasJSDocNodes(child)) { for (var _i = 0, _a = child.jsDoc; _i < _a.length; _i++) { var jsDocComment = _a[_i]; visitNode(jsDocComment); } } checkNodePositions(child, aggressiveChecks); return; } // Otherwise, the node is entirely before the change range. No need to do anything with it. ts.Debug.assert(fullEnd < changeStart); } function visitArray(array) { ts.Debug.assert(array.pos <= array.end); if (array.pos > changeRangeOldEnd) { // Array is entirely after the change range. We need to move it, and move any of // its children. moveElementEntirelyPastChangeRange(array, /*isArray*/ true, delta, oldText, newText, aggressiveChecks); return; } // Check if the element intersects the change range. If it does, then it is not // reusable. Also, we'll need to recurse to see what constituent portions we may // be able to use. var fullEnd = array.end; if (fullEnd >= changeStart) { array.intersectsChange = true; array._children = undefined; // Adjust the pos or end (or both) of the intersecting array accordingly. adjustIntersectingElement(array, changeStart, changeRangeOldEnd, changeRangeNewEnd, delta); for (var _i = 0, array_10 = array; _i < array_10.length; _i++) { var node = array_10[_i]; visitNode(node); } return; } // Otherwise, the array is entirely before the change range. No need to do anything with it. ts.Debug.assert(fullEnd < changeStart); } } function extendToAffectedRange(sourceFile, changeRange) { // Consider the following code: // void foo() { /; } // // If the text changes with an insertion of / just before the semicolon then we end up with: // void foo() { //; } // // If we were to just use the changeRange a is, then we would not rescan the { token // (as it does not intersect the actual original change range). Because an edit may // change the token touching it, we actually need to look back *at least* one token so // that the prior token sees that change. var maxLookahead = 1; var start = changeRange.span.start; // the first iteration aligns us with the change start. subsequent iteration move us to // the left by maxLookahead tokens. We only need to do this as long as we're not at the // start of the tree. for (var i = 0; start > 0 && i <= maxLookahead; i++) { var nearestNode = findNearestNodeStartingBeforeOrAtPosition(sourceFile, start); ts.Debug.assert(nearestNode.pos <= start); var position = nearestNode.pos; start = Math.max(0, position - 1); } var finalSpan = ts.createTextSpanFromBounds(start, ts.textSpanEnd(changeRange.span)); var finalLength = changeRange.newLength + (changeRange.span.start - start); return ts.createTextChangeRange(finalSpan, finalLength); } function findNearestNodeStartingBeforeOrAtPosition(sourceFile, position) { var bestResult = sourceFile; var lastNodeEntirelyBeforePosition; forEachChild(sourceFile, visit); if (lastNodeEntirelyBeforePosition) { var lastChildOfLastEntireNodeBeforePosition = getLastDescendant(lastNodeEntirelyBeforePosition); if (lastChildOfLastEntireNodeBeforePosition.pos > bestResult.pos) { bestResult = lastChildOfLastEntireNodeBeforePosition; } } return bestResult; function getLastDescendant(node) { while (true) { var lastChild = ts.getLastChild(node); if (lastChild) { node = lastChild; } else { return node; } } } function visit(child) { if (ts.nodeIsMissing(child)) { // Missing nodes are effectively invisible to us. We never even consider them // When trying to find the nearest node before us. return; } // If the child intersects this position, then this node is currently the nearest // node that starts before the position. if (child.pos <= position) { if (child.pos >= bestResult.pos) { // This node starts before the position, and is closer to the position than // the previous best node we found. It is now the new best node. bestResult = child; } // Now, the node may overlap the position, or it may end entirely before the // position. If it overlaps with the position, then either it, or one of its // children must be the nearest node before the position. So we can just // recurse into this child to see if we can find something better. if (position < child.end) { // The nearest node is either this child, or one of the children inside // of it. We've already marked this child as the best so far. Recurse // in case one of the children is better. forEachChild(child, visit); // Once we look at the children of this node, then there's no need to // continue any further. return true; } else { ts.Debug.assert(child.end <= position); // The child ends entirely before this position. Say you have the following // (where $ is the position) // // ? $ : <...> <...> // // We would want to find the nearest preceding node in "complex expr 2". // To support that, we keep track of this node, and once we're done searching // for a best node, we recurse down this node to see if we can find a good // result in it. // // This approach allows us to quickly skip over nodes that are entirely // before the position, while still allowing us to find any nodes in the // last one that might be what we want. lastNodeEntirelyBeforePosition = child; } } else { ts.Debug.assert(child.pos > position); // We're now at a node that is entirely past the position we're searching for. // This node (and all following nodes) could never contribute to the result, // so just skip them by returning 'true' here. return true; } } } function checkChangeRange(sourceFile, newText, textChangeRange, aggressiveChecks) { var oldText = sourceFile.text; if (textChangeRange) { ts.Debug.assert((oldText.length - textChangeRange.span.length + textChangeRange.newLength) === newText.length); if (aggressiveChecks || ts.Debug.shouldAssert(3 /* AssertionLevel.VeryAggressive */)) { var oldTextPrefix = oldText.substr(0, textChangeRange.span.start); var newTextPrefix = newText.substr(0, textChangeRange.span.start); ts.Debug.assert(oldTextPrefix === newTextPrefix); var oldTextSuffix = oldText.substring(ts.textSpanEnd(textChangeRange.span), oldText.length); var newTextSuffix = newText.substring(ts.textSpanEnd(ts.textChangeRangeNewSpan(textChangeRange)), newText.length); ts.Debug.assert(oldTextSuffix === newTextSuffix); } } } function createSyntaxCursor(sourceFile) { var currentArray = sourceFile.statements; var currentArrayIndex = 0; ts.Debug.assert(currentArrayIndex < currentArray.length); var current = currentArray[currentArrayIndex]; var lastQueriedPosition = -1 /* InvalidPosition.Value */; return { currentNode: function (position) { // Only compute the current node if the position is different than the last time // we were asked. The parser commonly asks for the node at the same position // twice. Once to know if can read an appropriate list element at a certain point, // and then to actually read and consume the node. if (position !== lastQueriedPosition) { // Much of the time the parser will need the very next node in the array that // we just returned a node from.So just simply check for that case and move // forward in the array instead of searching for the node again. if (current && current.end === position && currentArrayIndex < (currentArray.length - 1)) { currentArrayIndex++; current = currentArray[currentArrayIndex]; } // If we don't have a node, or the node we have isn't in the right position, // then try to find a viable node at the position requested. if (!current || current.pos !== position) { findHighestListElementThatStartsAtPosition(position); } } // Cache this query so that we don't do any extra work if the parser calls back // into us. Note: this is very common as the parser will make pairs of calls like // 'isListElement -> parseListElement'. If we were unable to find a node when // called with 'isListElement', we don't want to redo the work when parseListElement // is called immediately after. lastQueriedPosition = position; // Either we don'd have a node, or we have a node at the position being asked for. ts.Debug.assert(!current || current.pos === position); return current; } }; // Finds the highest element in the tree we can find that starts at the provided position. // The element must be a direct child of some node list in the tree. This way after we // return it, we can easily return its next sibling in the list. function findHighestListElementThatStartsAtPosition(position) { // Clear out any cached state about the last node we found. currentArray = undefined; currentArrayIndex = -1 /* InvalidPosition.Value */; current = undefined; // Recurse into the source file to find the highest node at this position. forEachChild(sourceFile, visitNode, visitArray); return; function visitNode(node) { if (position >= node.pos && position < node.end) { // Position was within this node. Keep searching deeper to find the node. forEachChild(node, visitNode, visitArray); // don't proceed any further in the search. return true; } // position wasn't in this node, have to keep searching. return false; } function visitArray(array) { if (position >= array.pos && position < array.end) { // position was in this array. Search through this array to see if we find a // viable element. for (var i = 0; i < array.length; i++) { var child = array[i]; if (child) { if (child.pos === position) { // Found the right node. We're done. currentArray = array; currentArrayIndex = i; current = child; return true; } else { if (child.pos < position && position < child.end) { // Position in somewhere within this child. Search in it and // stop searching in this array. forEachChild(child, visitNode, visitArray); return true; } } } } } // position wasn't in this array, have to keep searching. return false; } } } IncrementalParser.createSyntaxCursor = createSyntaxCursor; var InvalidPosition; (function (InvalidPosition) { InvalidPosition[InvalidPosition["Value"] = -1] = "Value"; })(InvalidPosition || (InvalidPosition = {})); })(IncrementalParser || (IncrementalParser = {})); /** @internal */ function isDeclarationFileName(fileName) { return ts.fileExtensionIsOneOf(fileName, ts.supportedDeclarationExtensions); } ts.isDeclarationFileName = isDeclarationFileName; function parseResolutionMode(mode, pos, end, reportDiagnostic) { if (!mode) { return undefined; } if (mode === "import") { return ts.ModuleKind.ESNext; } if (mode === "require") { return ts.ModuleKind.CommonJS; } reportDiagnostic(pos, end - pos, ts.Diagnostics.resolution_mode_should_be_either_require_or_import); return undefined; } /*@internal*/ function processCommentPragmas(context, sourceText) { var pragmas = []; for (var _i = 0, _a = ts.getLeadingCommentRanges(sourceText, 0) || ts.emptyArray; _i < _a.length; _i++) { var range = _a[_i]; var comment = sourceText.substring(range.pos, range.end); extractPragmas(pragmas, range, comment); } context.pragmas = new ts.Map(); for (var _b = 0, pragmas_1 = pragmas; _b < pragmas_1.length; _b++) { var pragma = pragmas_1[_b]; if (context.pragmas.has(pragma.name)) { var currentValue = context.pragmas.get(pragma.name); if (currentValue instanceof Array) { currentValue.push(pragma.args); } else { context.pragmas.set(pragma.name, [currentValue, pragma.args]); } continue; } context.pragmas.set(pragma.name, pragma.args); } } ts.processCommentPragmas = processCommentPragmas; /*@internal*/ function processPragmasIntoFields(context, reportDiagnostic) { context.checkJsDirective = undefined; context.referencedFiles = []; context.typeReferenceDirectives = []; context.libReferenceDirectives = []; context.amdDependencies = []; context.hasNoDefaultLib = false; context.pragmas.forEach(function (entryOrList, key) { // TODO: The below should be strongly type-guarded and not need casts/explicit annotations, since entryOrList is related to // key and key is constrained to a union; but it's not (see GH#21483 for at least partial fix) :( switch (key) { case "reference": { var referencedFiles_1 = context.referencedFiles; var typeReferenceDirectives_1 = context.typeReferenceDirectives; var libReferenceDirectives_1 = context.libReferenceDirectives; ts.forEach(ts.toArray(entryOrList), function (arg) { var _a = arg.arguments, types = _a.types, lib = _a.lib, path = _a.path, res = _a["resolution-mode"]; if (arg.arguments["no-default-lib"]) { context.hasNoDefaultLib = true; } else if (types) { var parsed = parseResolutionMode(res, types.pos, types.end, reportDiagnostic); typeReferenceDirectives_1.push(__assign({ pos: types.pos, end: types.end, fileName: types.value }, (parsed ? { resolutionMode: parsed } : {}))); } else if (lib) { libReferenceDirectives_1.push({ pos: lib.pos, end: lib.end, fileName: lib.value }); } else if (path) { referencedFiles_1.push({ pos: path.pos, end: path.end, fileName: path.value }); } else { reportDiagnostic(arg.range.pos, arg.range.end - arg.range.pos, ts.Diagnostics.Invalid_reference_directive_syntax); } }); break; } case "amd-dependency": { context.amdDependencies = ts.map(ts.toArray(entryOrList), function (x) { return ({ name: x.arguments.name, path: x.arguments.path }); }); break; } case "amd-module": { if (entryOrList instanceof Array) { for (var _i = 0, entryOrList_1 = entryOrList; _i < entryOrList_1.length; _i++) { var entry = entryOrList_1[_i]; if (context.moduleName) { // TODO: It's probably fine to issue this diagnostic on all instances of the pragma reportDiagnostic(entry.range.pos, entry.range.end - entry.range.pos, ts.Diagnostics.An_AMD_module_cannot_have_multiple_name_assignments); } context.moduleName = entry.arguments.name; } } else { context.moduleName = entryOrList.arguments.name; } break; } case "ts-nocheck": case "ts-check": { // _last_ of either nocheck or check in a file is the "winner" ts.forEach(ts.toArray(entryOrList), function (entry) { if (!context.checkJsDirective || entry.range.pos > context.checkJsDirective.pos) { context.checkJsDirective = { enabled: key === "ts-check", end: entry.range.end, pos: entry.range.pos }; } }); break; } case "jsx": case "jsxfrag": case "jsximportsource": case "jsxruntime": return; // Accessed directly default: ts.Debug.fail("Unhandled pragma kind"); // Can this be made into an assertNever in the future? } }); } ts.processPragmasIntoFields = processPragmasIntoFields; var namedArgRegExCache = new ts.Map(); function getNamedArgRegEx(name) { if (namedArgRegExCache.has(name)) { return namedArgRegExCache.get(name); } var result = new RegExp("(\\s".concat(name, "\\s*=\\s*)(?:(?:'([^']*)')|(?:\"([^\"]*)\"))"), "im"); namedArgRegExCache.set(name, result); return result; } var tripleSlashXMLCommentStartRegEx = /^\/\/\/\s*<(\S+)\s.*?\/>/im; var singleLinePragmaRegEx = /^\/\/\/?\s*@(\S+)\s*(.*)\s*$/im; function extractPragmas(pragmas, range, text) { var tripleSlash = range.kind === 2 /* SyntaxKind.SingleLineCommentTrivia */ && tripleSlashXMLCommentStartRegEx.exec(text); if (tripleSlash) { var name = tripleSlash[1].toLowerCase(); // Technically unsafe cast, but we do it so the below check to make it safe typechecks var pragma = ts.commentPragmas[name]; if (!pragma || !(pragma.kind & 1 /* PragmaKindFlags.TripleSlashXML */)) { return; } if (pragma.args) { var argument = {}; for (var _i = 0, _a = pragma.args; _i < _a.length; _i++) { var arg = _a[_i]; var matcher = getNamedArgRegEx(arg.name); var matchResult = matcher.exec(text); if (!matchResult && !arg.optional) { return; // Missing required argument, don't parse } else if (matchResult) { var value = matchResult[2] || matchResult[3]; if (arg.captureSpan) { var startPos = range.pos + matchResult.index + matchResult[1].length + 1; argument[arg.name] = { value: value, pos: startPos, end: startPos + value.length }; } else { argument[arg.name] = value; } } } pragmas.push({ name: name, args: { arguments: argument, range: range } }); } else { pragmas.push({ name: name, args: { arguments: {}, range: range } }); } return; } var singleLine = range.kind === 2 /* SyntaxKind.SingleLineCommentTrivia */ && singleLinePragmaRegEx.exec(text); if (singleLine) { return addPragmaForMatch(pragmas, range, 2 /* PragmaKindFlags.SingleLine */, singleLine); } if (range.kind === 3 /* SyntaxKind.MultiLineCommentTrivia */) { var multiLinePragmaRegEx = /@(\S+)(\s+.*)?$/gim; // Defined inline since it uses the "g" flag, which keeps a persistent index (for iterating) var multiLineMatch = void 0; while (multiLineMatch = multiLinePragmaRegEx.exec(text)) { addPragmaForMatch(pragmas, range, 4 /* PragmaKindFlags.MultiLine */, multiLineMatch); } } } function addPragmaForMatch(pragmas, range, kind, match) { if (!match) return; var name = match[1].toLowerCase(); // Technically unsafe cast, but we do it so they below check to make it safe typechecks var pragma = ts.commentPragmas[name]; if (!pragma || !(pragma.kind & kind)) { return; } var args = match[2]; // Split on spaces and match up positionally with definition var argument = getNamedPragmaArguments(pragma, args); if (argument === "fail") return; // Missing required argument, fail to parse it pragmas.push({ name: name, args: { arguments: argument, range: range } }); return; } function getNamedPragmaArguments(pragma, text) { if (!text) return {}; if (!pragma.args) return {}; var args = ts.trimString(text).split(/\s+/); var argMap = {}; for (var i = 0; i < pragma.args.length; i++) { var argument = pragma.args[i]; if (!args[i] && !argument.optional) { return "fail"; } if (argument.captureSpan) { return ts.Debug.fail("Capture spans not yet implemented for non-xml pragmas"); } argMap[argument.name] = args[i]; } return argMap; } /** @internal */ function tagNamesAreEquivalent(lhs, rhs) { if (lhs.kind !== rhs.kind) { return false; } if (lhs.kind === 79 /* SyntaxKind.Identifier */) { return lhs.escapedText === rhs.escapedText; } if (lhs.kind === 108 /* SyntaxKind.ThisKeyword */) { return true; } // If we are at this statement then we must have PropertyAccessExpression and because tag name in Jsx element can only // take forms of JsxTagNameExpression which includes an identifier, "this" expression, or another propertyAccessExpression // it is safe to case the expression property as such. See parseJsxElementName for how we parse tag name in Jsx element return lhs.name.escapedText === rhs.name.escapedText && tagNamesAreEquivalent(lhs.expression, rhs.expression); } ts.tagNamesAreEquivalent = tagNamesAreEquivalent; })(ts || (ts = {})); var ts; (function (ts) { /* @internal */ ts.compileOnSaveCommandLineOption = { name: "compileOnSave", type: "boolean", defaultValueDescription: false, }; var jsxOptionMap = new ts.Map(ts.getEntries({ "preserve": 1 /* JsxEmit.Preserve */, "react-native": 3 /* JsxEmit.ReactNative */, "react": 2 /* JsxEmit.React */, "react-jsx": 4 /* JsxEmit.ReactJSX */, "react-jsxdev": 5 /* JsxEmit.ReactJSXDev */, })); /* @internal */ ts.inverseJsxOptionMap = new ts.Map(ts.arrayFrom(ts.mapIterator(jsxOptionMap.entries(), function (_a) { var key = _a[0], value = _a[1]; return ["" + value, key]; }))); // NOTE: The order here is important to default lib ordering as entries will have the same // order in the generated program (see `getDefaultLibPriority` in program.ts). This // order also affects overload resolution when a type declared in one lib is // augmented in another lib. var libEntries = [ // JavaScript only ["es5", "lib.es5.d.ts"], ["es6", "lib.es2015.d.ts"], ["es2015", "lib.es2015.d.ts"], ["es7", "lib.es2016.d.ts"], ["es2016", "lib.es2016.d.ts"], ["es2017", "lib.es2017.d.ts"], ["es2018", "lib.es2018.d.ts"], ["es2019", "lib.es2019.d.ts"], ["es2020", "lib.es2020.d.ts"], ["es2021", "lib.es2021.d.ts"], ["es2022", "lib.es2022.d.ts"], ["esnext", "lib.esnext.d.ts"], // Host only ["dom", "lib.dom.d.ts"], ["dom.iterable", "lib.dom.iterable.d.ts"], ["webworker", "lib.webworker.d.ts"], ["webworker.importscripts", "lib.webworker.importscripts.d.ts"], ["webworker.iterable", "lib.webworker.iterable.d.ts"], ["scripthost", "lib.scripthost.d.ts"], // ES2015 Or ESNext By-feature options ["es2015.core", "lib.es2015.core.d.ts"], ["es2015.collection", "lib.es2015.collection.d.ts"], ["es2015.generator", "lib.es2015.generator.d.ts"], ["es2015.iterable", "lib.es2015.iterable.d.ts"], ["es2015.promise", "lib.es2015.promise.d.ts"], ["es2015.proxy", "lib.es2015.proxy.d.ts"], ["es2015.reflect", "lib.es2015.reflect.d.ts"], ["es2015.symbol", "lib.es2015.symbol.d.ts"], ["es2015.symbol.wellknown", "lib.es2015.symbol.wellknown.d.ts"], ["es2016.array.include", "lib.es2016.array.include.d.ts"], ["es2017.object", "lib.es2017.object.d.ts"], ["es2017.sharedmemory", "lib.es2017.sharedmemory.d.ts"], ["es2017.string", "lib.es2017.string.d.ts"], ["es2017.intl", "lib.es2017.intl.d.ts"], ["es2017.typedarrays", "lib.es2017.typedarrays.d.ts"], ["es2018.asyncgenerator", "lib.es2018.asyncgenerator.d.ts"], ["es2018.asynciterable", "lib.es2018.asynciterable.d.ts"], ["es2018.intl", "lib.es2018.intl.d.ts"], ["es2018.promise", "lib.es2018.promise.d.ts"], ["es2018.regexp", "lib.es2018.regexp.d.ts"], ["es2019.array", "lib.es2019.array.d.ts"], ["es2019.object", "lib.es2019.object.d.ts"], ["es2019.string", "lib.es2019.string.d.ts"], ["es2019.symbol", "lib.es2019.symbol.d.ts"], ["es2020.bigint", "lib.es2020.bigint.d.ts"], ["es2020.date", "lib.es2020.date.d.ts"], ["es2020.promise", "lib.es2020.promise.d.ts"], ["es2020.sharedmemory", "lib.es2020.sharedmemory.d.ts"], ["es2020.string", "lib.es2020.string.d.ts"], ["es2020.symbol.wellknown", "lib.es2020.symbol.wellknown.d.ts"], ["es2020.intl", "lib.es2020.intl.d.ts"], ["es2020.number", "lib.es2020.number.d.ts"], ["es2021.promise", "lib.es2021.promise.d.ts"], ["es2021.string", "lib.es2021.string.d.ts"], ["es2021.weakref", "lib.es2021.weakref.d.ts"], ["es2021.intl", "lib.es2021.intl.d.ts"], ["es2022.array", "lib.es2022.array.d.ts"], ["es2022.error", "lib.es2022.error.d.ts"], ["es2022.intl", "lib.es2022.intl.d.ts"], ["es2022.object", "lib.es2022.object.d.ts"], ["es2022.string", "lib.es2022.string.d.ts"], ["esnext.array", "lib.es2022.array.d.ts"], ["esnext.symbol", "lib.es2019.symbol.d.ts"], ["esnext.asynciterable", "lib.es2018.asynciterable.d.ts"], ["esnext.intl", "lib.esnext.intl.d.ts"], ["esnext.bigint", "lib.es2020.bigint.d.ts"], ["esnext.string", "lib.es2022.string.d.ts"], ["esnext.promise", "lib.es2021.promise.d.ts"], ["esnext.weakref", "lib.es2021.weakref.d.ts"] ]; /** * An array of supported "lib" reference file names used to determine the order for inclusion * when referenced, as well as for spelling suggestions. This ensures the correct ordering for * overload resolution when a type declared in one lib is extended by another. */ /* @internal */ ts.libs = libEntries.map(function (entry) { return entry[0]; }); /** * A map of lib names to lib files. This map is used both for parsing the "lib" command line * option as well as for resolving lib reference directives. */ /* @internal */ ts.libMap = new ts.Map(libEntries); // Watch related options /* @internal */ ts.optionsForWatch = [ { name: "watchFile", type: new ts.Map(ts.getEntries({ fixedpollinginterval: ts.WatchFileKind.FixedPollingInterval, prioritypollinginterval: ts.WatchFileKind.PriorityPollingInterval, dynamicprioritypolling: ts.WatchFileKind.DynamicPriorityPolling, fixedchunksizepolling: ts.WatchFileKind.FixedChunkSizePolling, usefsevents: ts.WatchFileKind.UseFsEvents, usefseventsonparentdirectory: ts.WatchFileKind.UseFsEventsOnParentDirectory, })), category: ts.Diagnostics.Watch_and_Build_Modes, description: ts.Diagnostics.Specify_how_the_TypeScript_watch_mode_works, defaultValueDescription: ts.WatchFileKind.UseFsEvents, }, { name: "watchDirectory", type: new ts.Map(ts.getEntries({ usefsevents: ts.WatchDirectoryKind.UseFsEvents, fixedpollinginterval: ts.WatchDirectoryKind.FixedPollingInterval, dynamicprioritypolling: ts.WatchDirectoryKind.DynamicPriorityPolling, fixedchunksizepolling: ts.WatchDirectoryKind.FixedChunkSizePolling, })), category: ts.Diagnostics.Watch_and_Build_Modes, description: ts.Diagnostics.Specify_how_directories_are_watched_on_systems_that_lack_recursive_file_watching_functionality, defaultValueDescription: ts.WatchDirectoryKind.UseFsEvents, }, { name: "fallbackPolling", type: new ts.Map(ts.getEntries({ fixedinterval: ts.PollingWatchKind.FixedInterval, priorityinterval: ts.PollingWatchKind.PriorityInterval, dynamicpriority: ts.PollingWatchKind.DynamicPriority, fixedchunksize: ts.PollingWatchKind.FixedChunkSize, })), category: ts.Diagnostics.Watch_and_Build_Modes, description: ts.Diagnostics.Specify_what_approach_the_watcher_should_use_if_the_system_runs_out_of_native_file_watchers, defaultValueDescription: ts.PollingWatchKind.PriorityInterval, }, { name: "synchronousWatchDirectory", type: "boolean", category: ts.Diagnostics.Watch_and_Build_Modes, description: ts.Diagnostics.Synchronously_call_callbacks_and_update_the_state_of_directory_watchers_on_platforms_that_don_t_support_recursive_watching_natively, defaultValueDescription: false, }, { name: "excludeDirectories", type: "list", element: { name: "excludeDirectory", type: "string", isFilePath: true, extraValidation: specToDiagnostic }, category: ts.Diagnostics.Watch_and_Build_Modes, description: ts.Diagnostics.Remove_a_list_of_directories_from_the_watch_process, }, { name: "excludeFiles", type: "list", element: { name: "excludeFile", type: "string", isFilePath: true, extraValidation: specToDiagnostic }, category: ts.Diagnostics.Watch_and_Build_Modes, description: ts.Diagnostics.Remove_a_list_of_files_from_the_watch_mode_s_processing, }, ]; /* @internal */ ts.commonOptionsWithBuild = [ { name: "help", shortName: "h", type: "boolean", showInSimplifiedHelpView: true, category: ts.Diagnostics.Command_line_Options, description: ts.Diagnostics.Print_this_message, defaultValueDescription: false, }, { name: "help", shortName: "?", type: "boolean", defaultValueDescription: false, }, { name: "watch", shortName: "w", type: "boolean", showInSimplifiedHelpView: true, isCommandLineOnly: true, category: ts.Diagnostics.Command_line_Options, description: ts.Diagnostics.Watch_input_files, defaultValueDescription: false, }, { name: "preserveWatchOutput", type: "boolean", showInSimplifiedHelpView: false, category: ts.Diagnostics.Output_Formatting, description: ts.Diagnostics.Disable_wiping_the_console_in_watch_mode, defaultValueDescription: false, }, { name: "listFiles", type: "boolean", category: ts.Diagnostics.Compiler_Diagnostics, description: ts.Diagnostics.Print_all_of_the_files_read_during_the_compilation, defaultValueDescription: false, }, { name: "explainFiles", type: "boolean", category: ts.Diagnostics.Compiler_Diagnostics, description: ts.Diagnostics.Print_files_read_during_the_compilation_including_why_it_was_included, defaultValueDescription: false, }, { name: "listEmittedFiles", type: "boolean", category: ts.Diagnostics.Compiler_Diagnostics, description: ts.Diagnostics.Print_the_names_of_emitted_files_after_a_compilation, defaultValueDescription: false, }, { name: "pretty", type: "boolean", showInSimplifiedHelpView: true, category: ts.Diagnostics.Output_Formatting, description: ts.Diagnostics.Enable_color_and_formatting_in_TypeScript_s_output_to_make_compiler_errors_easier_to_read, defaultValueDescription: true, }, { name: "traceResolution", type: "boolean", category: ts.Diagnostics.Compiler_Diagnostics, description: ts.Diagnostics.Log_paths_used_during_the_moduleResolution_process, defaultValueDescription: false, }, { name: "diagnostics", type: "boolean", category: ts.Diagnostics.Compiler_Diagnostics, description: ts.Diagnostics.Output_compiler_performance_information_after_building, defaultValueDescription: false, }, { name: "extendedDiagnostics", type: "boolean", category: ts.Diagnostics.Compiler_Diagnostics, description: ts.Diagnostics.Output_more_detailed_compiler_performance_information_after_building, defaultValueDescription: false, }, { name: "generateCpuProfile", type: "string", isFilePath: true, paramType: ts.Diagnostics.FILE_OR_DIRECTORY, category: ts.Diagnostics.Compiler_Diagnostics, description: ts.Diagnostics.Emit_a_v8_CPU_profile_of_the_compiler_run_for_debugging, defaultValueDescription: "profile.cpuprofile" }, { name: "generateTrace", type: "string", isFilePath: true, isCommandLineOnly: true, paramType: ts.Diagnostics.DIRECTORY, category: ts.Diagnostics.Compiler_Diagnostics, description: ts.Diagnostics.Generates_an_event_trace_and_a_list_of_types }, { name: "incremental", shortName: "i", type: "boolean", category: ts.Diagnostics.Projects, description: ts.Diagnostics.Save_tsbuildinfo_files_to_allow_for_incremental_compilation_of_projects, transpileOptionValue: undefined, defaultValueDescription: ts.Diagnostics.false_unless_composite_is_set }, { name: "assumeChangesOnlyAffectDirectDependencies", type: "boolean", affectsSemanticDiagnostics: true, affectsEmit: true, category: ts.Diagnostics.Watch_and_Build_Modes, description: ts.Diagnostics.Have_recompiles_in_projects_that_use_incremental_and_watch_mode_assume_that_changes_within_a_file_will_only_affect_files_directly_depending_on_it, defaultValueDescription: false, }, { name: "locale", type: "string", category: ts.Diagnostics.Command_line_Options, isCommandLineOnly: true, description: ts.Diagnostics.Set_the_language_of_the_messaging_from_TypeScript_This_does_not_affect_emit, defaultValueDescription: ts.Diagnostics.Platform_specific }, ]; /* @internal */ ts.targetOptionDeclaration = { name: "target", shortName: "t", type: new ts.Map(ts.getEntries({ es3: 0 /* ScriptTarget.ES3 */, es5: 1 /* ScriptTarget.ES5 */, es6: 2 /* ScriptTarget.ES2015 */, es2015: 2 /* ScriptTarget.ES2015 */, es2016: 3 /* ScriptTarget.ES2016 */, es2017: 4 /* ScriptTarget.ES2017 */, es2018: 5 /* ScriptTarget.ES2018 */, es2019: 6 /* ScriptTarget.ES2019 */, es2020: 7 /* ScriptTarget.ES2020 */, es2021: 8 /* ScriptTarget.ES2021 */, es2022: 9 /* ScriptTarget.ES2022 */, esnext: 99 /* ScriptTarget.ESNext */, })), affectsSourceFile: true, affectsModuleResolution: true, affectsEmit: true, paramType: ts.Diagnostics.VERSION, showInSimplifiedHelpView: true, category: ts.Diagnostics.Language_and_Environment, description: ts.Diagnostics.Set_the_JavaScript_language_version_for_emitted_JavaScript_and_include_compatible_library_declarations, defaultValueDescription: 0 /* ScriptTarget.ES3 */, }; var commandOptionsWithoutBuild = [ // CommandLine only options { name: "all", type: "boolean", showInSimplifiedHelpView: true, category: ts.Diagnostics.Command_line_Options, description: ts.Diagnostics.Show_all_compiler_options, defaultValueDescription: false, }, { name: "version", shortName: "v", type: "boolean", showInSimplifiedHelpView: true, category: ts.Diagnostics.Command_line_Options, description: ts.Diagnostics.Print_the_compiler_s_version, defaultValueDescription: false, }, { name: "init", type: "boolean", showInSimplifiedHelpView: true, category: ts.Diagnostics.Command_line_Options, description: ts.Diagnostics.Initializes_a_TypeScript_project_and_creates_a_tsconfig_json_file, defaultValueDescription: false, }, { name: "project", shortName: "p", type: "string", isFilePath: true, showInSimplifiedHelpView: true, category: ts.Diagnostics.Command_line_Options, paramType: ts.Diagnostics.FILE_OR_DIRECTORY, description: ts.Diagnostics.Compile_the_project_given_the_path_to_its_configuration_file_or_to_a_folder_with_a_tsconfig_json, }, { name: "build", type: "boolean", shortName: "b", showInSimplifiedHelpView: true, category: ts.Diagnostics.Command_line_Options, description: ts.Diagnostics.Build_one_or_more_projects_and_their_dependencies_if_out_of_date, defaultValueDescription: false, }, { name: "showConfig", type: "boolean", showInSimplifiedHelpView: true, category: ts.Diagnostics.Command_line_Options, isCommandLineOnly: true, description: ts.Diagnostics.Print_the_final_configuration_instead_of_building, defaultValueDescription: false, }, { name: "listFilesOnly", type: "boolean", category: ts.Diagnostics.Command_line_Options, affectsSemanticDiagnostics: true, affectsEmit: true, isCommandLineOnly: true, description: ts.Diagnostics.Print_names_of_files_that_are_part_of_the_compilation_and_then_stop_processing, defaultValueDescription: false, }, // Basic ts.targetOptionDeclaration, { name: "module", shortName: "m", type: new ts.Map(ts.getEntries({ none: ts.ModuleKind.None, commonjs: ts.ModuleKind.CommonJS, amd: ts.ModuleKind.AMD, system: ts.ModuleKind.System, umd: ts.ModuleKind.UMD, es6: ts.ModuleKind.ES2015, es2015: ts.ModuleKind.ES2015, es2020: ts.ModuleKind.ES2020, es2022: ts.ModuleKind.ES2022, esnext: ts.ModuleKind.ESNext, node16: ts.ModuleKind.Node16, nodenext: ts.ModuleKind.NodeNext, })), affectsModuleResolution: true, affectsEmit: true, paramType: ts.Diagnostics.KIND, showInSimplifiedHelpView: true, category: ts.Diagnostics.Modules, description: ts.Diagnostics.Specify_what_module_code_is_generated, defaultValueDescription: undefined, }, { name: "lib", type: "list", element: { name: "lib", type: ts.libMap, defaultValueDescription: undefined, }, affectsProgramStructure: true, showInSimplifiedHelpView: true, category: ts.Diagnostics.Language_and_Environment, description: ts.Diagnostics.Specify_a_set_of_bundled_library_declaration_files_that_describe_the_target_runtime_environment, transpileOptionValue: undefined }, { name: "allowJs", type: "boolean", affectsModuleResolution: true, showInSimplifiedHelpView: true, category: ts.Diagnostics.JavaScript_Support, description: ts.Diagnostics.Allow_JavaScript_files_to_be_a_part_of_your_program_Use_the_checkJS_option_to_get_errors_from_these_files, defaultValueDescription: false, }, { name: "checkJs", type: "boolean", showInSimplifiedHelpView: true, category: ts.Diagnostics.JavaScript_Support, description: ts.Diagnostics.Enable_error_reporting_in_type_checked_JavaScript_files, defaultValueDescription: false, }, { name: "jsx", type: jsxOptionMap, affectsSourceFile: true, affectsEmit: true, affectsModuleResolution: true, paramType: ts.Diagnostics.KIND, showInSimplifiedHelpView: true, category: ts.Diagnostics.Language_and_Environment, description: ts.Diagnostics.Specify_what_JSX_code_is_generated, defaultValueDescription: undefined, }, { name: "declaration", shortName: "d", type: "boolean", affectsEmit: true, showInSimplifiedHelpView: true, category: ts.Diagnostics.Emit, transpileOptionValue: undefined, description: ts.Diagnostics.Generate_d_ts_files_from_TypeScript_and_JavaScript_files_in_your_project, defaultValueDescription: ts.Diagnostics.false_unless_composite_is_set, }, { name: "declarationMap", type: "boolean", affectsEmit: true, showInSimplifiedHelpView: true, category: ts.Diagnostics.Emit, transpileOptionValue: undefined, defaultValueDescription: false, description: ts.Diagnostics.Create_sourcemaps_for_d_ts_files }, { name: "emitDeclarationOnly", type: "boolean", affectsEmit: true, showInSimplifiedHelpView: true, category: ts.Diagnostics.Emit, description: ts.Diagnostics.Only_output_d_ts_files_and_not_JavaScript_files, transpileOptionValue: undefined, defaultValueDescription: false, }, { name: "sourceMap", type: "boolean", affectsEmit: true, showInSimplifiedHelpView: true, category: ts.Diagnostics.Emit, defaultValueDescription: false, description: ts.Diagnostics.Create_source_map_files_for_emitted_JavaScript_files, }, { name: "outFile", type: "string", affectsEmit: true, isFilePath: true, paramType: ts.Diagnostics.FILE, showInSimplifiedHelpView: true, category: ts.Diagnostics.Emit, description: ts.Diagnostics.Specify_a_file_that_bundles_all_outputs_into_one_JavaScript_file_If_declaration_is_true_also_designates_a_file_that_bundles_all_d_ts_output, transpileOptionValue: undefined, }, { name: "outDir", type: "string", affectsEmit: true, isFilePath: true, paramType: ts.Diagnostics.DIRECTORY, showInSimplifiedHelpView: true, category: ts.Diagnostics.Emit, description: ts.Diagnostics.Specify_an_output_folder_for_all_emitted_files, }, { name: "rootDir", type: "string", affectsEmit: true, isFilePath: true, paramType: ts.Diagnostics.LOCATION, category: ts.Diagnostics.Modules, description: ts.Diagnostics.Specify_the_root_folder_within_your_source_files, defaultValueDescription: ts.Diagnostics.Computed_from_the_list_of_input_files }, { name: "composite", type: "boolean", affectsEmit: true, isTSConfigOnly: true, category: ts.Diagnostics.Projects, transpileOptionValue: undefined, defaultValueDescription: false, description: ts.Diagnostics.Enable_constraints_that_allow_a_TypeScript_project_to_be_used_with_project_references, }, { name: "tsBuildInfoFile", type: "string", affectsEmit: true, isFilePath: true, paramType: ts.Diagnostics.FILE, category: ts.Diagnostics.Projects, transpileOptionValue: undefined, defaultValueDescription: ".tsbuildinfo", description: ts.Diagnostics.Specify_the_path_to_tsbuildinfo_incremental_compilation_file, }, { name: "removeComments", type: "boolean", affectsEmit: true, showInSimplifiedHelpView: true, category: ts.Diagnostics.Emit, defaultValueDescription: false, description: ts.Diagnostics.Disable_emitting_comments, }, { name: "noEmit", type: "boolean", showInSimplifiedHelpView: true, category: ts.Diagnostics.Emit, description: ts.Diagnostics.Disable_emitting_files_from_a_compilation, transpileOptionValue: undefined, defaultValueDescription: false, }, { name: "importHelpers", type: "boolean", affectsEmit: true, category: ts.Diagnostics.Emit, description: ts.Diagnostics.Allow_importing_helper_functions_from_tslib_once_per_project_instead_of_including_them_per_file, defaultValueDescription: false, }, { name: "importsNotUsedAsValues", type: new ts.Map(ts.getEntries({ remove: 0 /* ImportsNotUsedAsValues.Remove */, preserve: 1 /* ImportsNotUsedAsValues.Preserve */, error: 2 /* ImportsNotUsedAsValues.Error */, })), affectsEmit: true, affectsSemanticDiagnostics: true, category: ts.Diagnostics.Emit, description: ts.Diagnostics.Specify_emit_Slashchecking_behavior_for_imports_that_are_only_used_for_types, defaultValueDescription: 0 /* ImportsNotUsedAsValues.Remove */, }, { name: "downlevelIteration", type: "boolean", affectsEmit: true, category: ts.Diagnostics.Emit, description: ts.Diagnostics.Emit_more_compliant_but_verbose_and_less_performant_JavaScript_for_iteration, defaultValueDescription: false, }, { name: "isolatedModules", type: "boolean", category: ts.Diagnostics.Interop_Constraints, description: ts.Diagnostics.Ensure_that_each_file_can_be_safely_transpiled_without_relying_on_other_imports, transpileOptionValue: true, defaultValueDescription: false, }, // Strict Type Checks { name: "strict", type: "boolean", // Though this affects semantic diagnostics, affectsSemanticDiagnostics is not set here // The value of each strictFlag depends on own strictFlag value or this and never accessed directly. showInSimplifiedHelpView: true, category: ts.Diagnostics.Type_Checking, description: ts.Diagnostics.Enable_all_strict_type_checking_options, defaultValueDescription: false, }, { name: "noImplicitAny", type: "boolean", affectsSemanticDiagnostics: true, strictFlag: true, category: ts.Diagnostics.Type_Checking, description: ts.Diagnostics.Enable_error_reporting_for_expressions_and_declarations_with_an_implied_any_type, defaultValueDescription: ts.Diagnostics.false_unless_strict_is_set }, { name: "strictNullChecks", type: "boolean", affectsSemanticDiagnostics: true, strictFlag: true, category: ts.Diagnostics.Type_Checking, description: ts.Diagnostics.When_type_checking_take_into_account_null_and_undefined, defaultValueDescription: ts.Diagnostics.false_unless_strict_is_set }, { name: "strictFunctionTypes", type: "boolean", strictFlag: true, category: ts.Diagnostics.Type_Checking, description: ts.Diagnostics.When_assigning_functions_check_to_ensure_parameters_and_the_return_values_are_subtype_compatible, defaultValueDescription: ts.Diagnostics.false_unless_strict_is_set }, { name: "strictBindCallApply", type: "boolean", strictFlag: true, category: ts.Diagnostics.Type_Checking, description: ts.Diagnostics.Check_that_the_arguments_for_bind_call_and_apply_methods_match_the_original_function, defaultValueDescription: ts.Diagnostics.false_unless_strict_is_set }, { name: "strictPropertyInitialization", type: "boolean", affectsSemanticDiagnostics: true, strictFlag: true, category: ts.Diagnostics.Type_Checking, description: ts.Diagnostics.Check_for_class_properties_that_are_declared_but_not_set_in_the_constructor, defaultValueDescription: ts.Diagnostics.false_unless_strict_is_set }, { name: "noImplicitThis", type: "boolean", affectsSemanticDiagnostics: true, strictFlag: true, category: ts.Diagnostics.Type_Checking, description: ts.Diagnostics.Enable_error_reporting_when_this_is_given_the_type_any, defaultValueDescription: ts.Diagnostics.false_unless_strict_is_set }, { name: "useUnknownInCatchVariables", type: "boolean", affectsSemanticDiagnostics: true, strictFlag: true, category: ts.Diagnostics.Type_Checking, description: ts.Diagnostics.Default_catch_clause_variables_as_unknown_instead_of_any, defaultValueDescription: false, }, { name: "alwaysStrict", type: "boolean", affectsSourceFile: true, strictFlag: true, category: ts.Diagnostics.Type_Checking, description: ts.Diagnostics.Ensure_use_strict_is_always_emitted, defaultValueDescription: ts.Diagnostics.false_unless_strict_is_set }, // Additional Checks { name: "noUnusedLocals", type: "boolean", affectsSemanticDiagnostics: true, category: ts.Diagnostics.Type_Checking, description: ts.Diagnostics.Enable_error_reporting_when_local_variables_aren_t_read, defaultValueDescription: false, }, { name: "noUnusedParameters", type: "boolean", affectsSemanticDiagnostics: true, category: ts.Diagnostics.Type_Checking, description: ts.Diagnostics.Raise_an_error_when_a_function_parameter_isn_t_read, defaultValueDescription: false, }, { name: "exactOptionalPropertyTypes", type: "boolean", affectsSemanticDiagnostics: true, category: ts.Diagnostics.Type_Checking, description: ts.Diagnostics.Interpret_optional_property_types_as_written_rather_than_adding_undefined, defaultValueDescription: false, }, { name: "noImplicitReturns", type: "boolean", affectsSemanticDiagnostics: true, category: ts.Diagnostics.Type_Checking, description: ts.Diagnostics.Enable_error_reporting_for_codepaths_that_do_not_explicitly_return_in_a_function, defaultValueDescription: false, }, { name: "noFallthroughCasesInSwitch", type: "boolean", affectsBindDiagnostics: true, affectsSemanticDiagnostics: true, category: ts.Diagnostics.Type_Checking, description: ts.Diagnostics.Enable_error_reporting_for_fallthrough_cases_in_switch_statements, defaultValueDescription: false, }, { name: "noUncheckedIndexedAccess", type: "boolean", affectsSemanticDiagnostics: true, category: ts.Diagnostics.Type_Checking, description: ts.Diagnostics.Add_undefined_to_a_type_when_accessed_using_an_index, defaultValueDescription: false, }, { name: "noImplicitOverride", type: "boolean", affectsSemanticDiagnostics: true, category: ts.Diagnostics.Type_Checking, description: ts.Diagnostics.Ensure_overriding_members_in_derived_classes_are_marked_with_an_override_modifier, defaultValueDescription: false, }, { name: "noPropertyAccessFromIndexSignature", type: "boolean", showInSimplifiedHelpView: false, category: ts.Diagnostics.Type_Checking, description: ts.Diagnostics.Enforces_using_indexed_accessors_for_keys_declared_using_an_indexed_type, defaultValueDescription: false, }, // Module Resolution { name: "moduleResolution", type: new ts.Map(ts.getEntries({ node: ts.ModuleResolutionKind.NodeJs, classic: ts.ModuleResolutionKind.Classic, node16: ts.ModuleResolutionKind.Node16, nodenext: ts.ModuleResolutionKind.NodeNext, })), affectsModuleResolution: true, paramType: ts.Diagnostics.STRATEGY, category: ts.Diagnostics.Modules, description: ts.Diagnostics.Specify_how_TypeScript_looks_up_a_file_from_a_given_module_specifier, defaultValueDescription: ts.Diagnostics.module_AMD_or_UMD_or_System_or_ES6_then_Classic_Otherwise_Node }, { name: "baseUrl", type: "string", affectsModuleResolution: true, isFilePath: true, category: ts.Diagnostics.Modules, description: ts.Diagnostics.Specify_the_base_directory_to_resolve_non_relative_module_names }, { // this option can only be specified in tsconfig.json // use type = object to copy the value as-is name: "paths", type: "object", affectsModuleResolution: true, isTSConfigOnly: true, category: ts.Diagnostics.Modules, description: ts.Diagnostics.Specify_a_set_of_entries_that_re_map_imports_to_additional_lookup_locations, transpileOptionValue: undefined }, { // this option can only be specified in tsconfig.json // use type = object to copy the value as-is name: "rootDirs", type: "list", isTSConfigOnly: true, element: { name: "rootDirs", type: "string", isFilePath: true }, affectsModuleResolution: true, category: ts.Diagnostics.Modules, description: ts.Diagnostics.Allow_multiple_folders_to_be_treated_as_one_when_resolving_modules, transpileOptionValue: undefined, defaultValueDescription: ts.Diagnostics.Computed_from_the_list_of_input_files }, { name: "typeRoots", type: "list", element: { name: "typeRoots", type: "string", isFilePath: true }, affectsModuleResolution: true, category: ts.Diagnostics.Modules, description: ts.Diagnostics.Specify_multiple_folders_that_act_like_Slashnode_modules_Slash_types }, { name: "types", type: "list", element: { name: "types", type: "string" }, affectsProgramStructure: true, showInSimplifiedHelpView: true, category: ts.Diagnostics.Modules, description: ts.Diagnostics.Specify_type_package_names_to_be_included_without_being_referenced_in_a_source_file, transpileOptionValue: undefined }, { name: "allowSyntheticDefaultImports", type: "boolean", affectsSemanticDiagnostics: true, category: ts.Diagnostics.Interop_Constraints, description: ts.Diagnostics.Allow_import_x_from_y_when_a_module_doesn_t_have_a_default_export, defaultValueDescription: ts.Diagnostics.module_system_or_esModuleInterop }, { name: "esModuleInterop", type: "boolean", affectsSemanticDiagnostics: true, affectsEmit: true, showInSimplifiedHelpView: true, category: ts.Diagnostics.Interop_Constraints, description: ts.Diagnostics.Emit_additional_JavaScript_to_ease_support_for_importing_CommonJS_modules_This_enables_allowSyntheticDefaultImports_for_type_compatibility, defaultValueDescription: false, }, { name: "preserveSymlinks", type: "boolean", category: ts.Diagnostics.Interop_Constraints, description: ts.Diagnostics.Disable_resolving_symlinks_to_their_realpath_This_correlates_to_the_same_flag_in_node, defaultValueDescription: false, }, { name: "allowUmdGlobalAccess", type: "boolean", affectsSemanticDiagnostics: true, category: ts.Diagnostics.Modules, description: ts.Diagnostics.Allow_accessing_UMD_globals_from_modules, defaultValueDescription: false, }, { name: "moduleSuffixes", type: "list", element: { name: "suffix", type: "string", }, listPreserveFalsyValues: true, affectsModuleResolution: true, category: ts.Diagnostics.Modules, description: ts.Diagnostics.List_of_file_name_suffixes_to_search_when_resolving_a_module, }, // Source Maps { name: "sourceRoot", type: "string", affectsEmit: true, paramType: ts.Diagnostics.LOCATION, category: ts.Diagnostics.Emit, description: ts.Diagnostics.Specify_the_root_path_for_debuggers_to_find_the_reference_source_code, }, { name: "mapRoot", type: "string", affectsEmit: true, paramType: ts.Diagnostics.LOCATION, category: ts.Diagnostics.Emit, description: ts.Diagnostics.Specify_the_location_where_debugger_should_locate_map_files_instead_of_generated_locations, }, { name: "inlineSourceMap", type: "boolean", affectsEmit: true, category: ts.Diagnostics.Emit, description: ts.Diagnostics.Include_sourcemap_files_inside_the_emitted_JavaScript, defaultValueDescription: false, }, { name: "inlineSources", type: "boolean", affectsEmit: true, category: ts.Diagnostics.Emit, description: ts.Diagnostics.Include_source_code_in_the_sourcemaps_inside_the_emitted_JavaScript, defaultValueDescription: false, }, // Experimental { name: "experimentalDecorators", type: "boolean", affectsSemanticDiagnostics: true, category: ts.Diagnostics.Language_and_Environment, description: ts.Diagnostics.Enable_experimental_support_for_TC39_stage_2_draft_decorators, defaultValueDescription: false, }, { name: "emitDecoratorMetadata", type: "boolean", affectsSemanticDiagnostics: true, affectsEmit: true, category: ts.Diagnostics.Language_and_Environment, description: ts.Diagnostics.Emit_design_type_metadata_for_decorated_declarations_in_source_files, defaultValueDescription: false, }, // Advanced { name: "jsxFactory", type: "string", category: ts.Diagnostics.Language_and_Environment, description: ts.Diagnostics.Specify_the_JSX_factory_function_used_when_targeting_React_JSX_emit_e_g_React_createElement_or_h, defaultValueDescription: "`React.createElement`" }, { name: "jsxFragmentFactory", type: "string", category: ts.Diagnostics.Language_and_Environment, description: ts.Diagnostics.Specify_the_JSX_Fragment_reference_used_for_fragments_when_targeting_React_JSX_emit_e_g_React_Fragment_or_Fragment, defaultValueDescription: "React.Fragment", }, { name: "jsxImportSource", type: "string", affectsSemanticDiagnostics: true, affectsEmit: true, affectsModuleResolution: true, category: ts.Diagnostics.Language_and_Environment, description: ts.Diagnostics.Specify_module_specifier_used_to_import_the_JSX_factory_functions_when_using_jsx_Colon_react_jsx_Asterisk, defaultValueDescription: "react" }, { name: "resolveJsonModule", type: "boolean", affectsModuleResolution: true, category: ts.Diagnostics.Modules, description: ts.Diagnostics.Enable_importing_json_files, defaultValueDescription: false, }, { name: "out", type: "string", affectsEmit: true, isFilePath: false, // for correct behaviour, please use outFile category: ts.Diagnostics.Backwards_Compatibility, paramType: ts.Diagnostics.FILE, transpileOptionValue: undefined, description: ts.Diagnostics.Deprecated_setting_Use_outFile_instead, }, { name: "reactNamespace", type: "string", affectsEmit: true, category: ts.Diagnostics.Language_and_Environment, description: ts.Diagnostics.Specify_the_object_invoked_for_createElement_This_only_applies_when_targeting_react_JSX_emit, defaultValueDescription: "`React`", }, { name: "skipDefaultLibCheck", type: "boolean", category: ts.Diagnostics.Completeness, description: ts.Diagnostics.Skip_type_checking_d_ts_files_that_are_included_with_TypeScript, defaultValueDescription: false, }, { name: "charset", type: "string", category: ts.Diagnostics.Backwards_Compatibility, description: ts.Diagnostics.No_longer_supported_In_early_versions_manually_set_the_text_encoding_for_reading_files, defaultValueDescription: "utf8" }, { name: "emitBOM", type: "boolean", affectsEmit: true, category: ts.Diagnostics.Emit, description: ts.Diagnostics.Emit_a_UTF_8_Byte_Order_Mark_BOM_in_the_beginning_of_output_files, defaultValueDescription: false, }, { name: "newLine", type: new ts.Map(ts.getEntries({ crlf: 0 /* NewLineKind.CarriageReturnLineFeed */, lf: 1 /* NewLineKind.LineFeed */ })), affectsEmit: true, paramType: ts.Diagnostics.NEWLINE, category: ts.Diagnostics.Emit, description: ts.Diagnostics.Set_the_newline_character_for_emitting_files, defaultValueDescription: ts.Diagnostics.Platform_specific }, { name: "noErrorTruncation", type: "boolean", affectsSemanticDiagnostics: true, category: ts.Diagnostics.Output_Formatting, description: ts.Diagnostics.Disable_truncating_types_in_error_messages, defaultValueDescription: false, }, { name: "noLib", type: "boolean", category: ts.Diagnostics.Language_and_Environment, affectsProgramStructure: true, description: ts.Diagnostics.Disable_including_any_library_files_including_the_default_lib_d_ts, // We are not returning a sourceFile for lib file when asked by the program, // so pass --noLib to avoid reporting a file not found error. transpileOptionValue: true, defaultValueDescription: false, }, { name: "noResolve", type: "boolean", affectsModuleResolution: true, category: ts.Diagnostics.Modules, description: ts.Diagnostics.Disallow_import_s_require_s_or_reference_s_from_expanding_the_number_of_files_TypeScript_should_add_to_a_project, // We are not doing a full typecheck, we are not resolving the whole context, // so pass --noResolve to avoid reporting missing file errors. transpileOptionValue: true, defaultValueDescription: false, }, { name: "stripInternal", type: "boolean", affectsEmit: true, category: ts.Diagnostics.Emit, description: ts.Diagnostics.Disable_emitting_declarations_that_have_internal_in_their_JSDoc_comments, defaultValueDescription: false, }, { name: "disableSizeLimit", type: "boolean", affectsProgramStructure: true, category: ts.Diagnostics.Editor_Support, description: ts.Diagnostics.Remove_the_20mb_cap_on_total_source_code_size_for_JavaScript_files_in_the_TypeScript_language_server, defaultValueDescription: false, }, { name: "disableSourceOfProjectReferenceRedirect", type: "boolean", isTSConfigOnly: true, category: ts.Diagnostics.Projects, description: ts.Diagnostics.Disable_preferring_source_files_instead_of_declaration_files_when_referencing_composite_projects, defaultValueDescription: false, }, { name: "disableSolutionSearching", type: "boolean", isTSConfigOnly: true, category: ts.Diagnostics.Projects, description: ts.Diagnostics.Opt_a_project_out_of_multi_project_reference_checking_when_editing, defaultValueDescription: false, }, { name: "disableReferencedProjectLoad", type: "boolean", isTSConfigOnly: true, category: ts.Diagnostics.Projects, description: ts.Diagnostics.Reduce_the_number_of_projects_loaded_automatically_by_TypeScript, defaultValueDescription: false, }, { name: "noImplicitUseStrict", type: "boolean", affectsSemanticDiagnostics: true, category: ts.Diagnostics.Backwards_Compatibility, description: ts.Diagnostics.Disable_adding_use_strict_directives_in_emitted_JavaScript_files, defaultValueDescription: false, }, { name: "noEmitHelpers", type: "boolean", affectsEmit: true, category: ts.Diagnostics.Emit, description: ts.Diagnostics.Disable_generating_custom_helper_functions_like_extends_in_compiled_output, defaultValueDescription: false, }, { name: "noEmitOnError", type: "boolean", affectsEmit: true, category: ts.Diagnostics.Emit, transpileOptionValue: undefined, description: ts.Diagnostics.Disable_emitting_files_if_any_type_checking_errors_are_reported, defaultValueDescription: false, }, { name: "preserveConstEnums", type: "boolean", affectsEmit: true, category: ts.Diagnostics.Emit, description: ts.Diagnostics.Disable_erasing_const_enum_declarations_in_generated_code, defaultValueDescription: false, }, { name: "declarationDir", type: "string", affectsEmit: true, isFilePath: true, paramType: ts.Diagnostics.DIRECTORY, category: ts.Diagnostics.Emit, transpileOptionValue: undefined, description: ts.Diagnostics.Specify_the_output_directory_for_generated_declaration_files, }, { name: "skipLibCheck", type: "boolean", category: ts.Diagnostics.Completeness, description: ts.Diagnostics.Skip_type_checking_all_d_ts_files, defaultValueDescription: false, }, { name: "allowUnusedLabels", type: "boolean", affectsBindDiagnostics: true, affectsSemanticDiagnostics: true, category: ts.Diagnostics.Type_Checking, description: ts.Diagnostics.Disable_error_reporting_for_unused_labels, defaultValueDescription: undefined, }, { name: "allowUnreachableCode", type: "boolean", affectsBindDiagnostics: true, affectsSemanticDiagnostics: true, category: ts.Diagnostics.Type_Checking, description: ts.Diagnostics.Disable_error_reporting_for_unreachable_code, defaultValueDescription: undefined, }, { name: "suppressExcessPropertyErrors", type: "boolean", affectsSemanticDiagnostics: true, category: ts.Diagnostics.Backwards_Compatibility, description: ts.Diagnostics.Disable_reporting_of_excess_property_errors_during_the_creation_of_object_literals, defaultValueDescription: false, }, { name: "suppressImplicitAnyIndexErrors", type: "boolean", affectsSemanticDiagnostics: true, category: ts.Diagnostics.Backwards_Compatibility, description: ts.Diagnostics.Suppress_noImplicitAny_errors_when_indexing_objects_that_lack_index_signatures, defaultValueDescription: false, }, { name: "forceConsistentCasingInFileNames", type: "boolean", affectsModuleResolution: true, category: ts.Diagnostics.Interop_Constraints, description: ts.Diagnostics.Ensure_that_casing_is_correct_in_imports, defaultValueDescription: false, }, { name: "maxNodeModuleJsDepth", type: "number", affectsModuleResolution: true, category: ts.Diagnostics.JavaScript_Support, description: ts.Diagnostics.Specify_the_maximum_folder_depth_used_for_checking_JavaScript_files_from_node_modules_Only_applicable_with_allowJs, defaultValueDescription: 0, }, { name: "noStrictGenericChecks", type: "boolean", affectsSemanticDiagnostics: true, category: ts.Diagnostics.Backwards_Compatibility, description: ts.Diagnostics.Disable_strict_checking_of_generic_signatures_in_function_types, defaultValueDescription: false, }, { name: "useDefineForClassFields", type: "boolean", affectsSemanticDiagnostics: true, affectsEmit: true, category: ts.Diagnostics.Language_and_Environment, description: ts.Diagnostics.Emit_ECMAScript_standard_compliant_class_fields, defaultValueDescription: ts.Diagnostics.true_for_ES2022_and_above_including_ESNext }, { name: "preserveValueImports", type: "boolean", affectsEmit: true, category: ts.Diagnostics.Emit, description: ts.Diagnostics.Preserve_unused_imported_values_in_the_JavaScript_output_that_would_otherwise_be_removed, defaultValueDescription: false, }, { name: "keyofStringsOnly", type: "boolean", category: ts.Diagnostics.Backwards_Compatibility, description: ts.Diagnostics.Make_keyof_only_return_strings_instead_of_string_numbers_or_symbols_Legacy_option, defaultValueDescription: false, }, { // A list of plugins to load in the language service name: "plugins", type: "list", isTSConfigOnly: true, element: { name: "plugin", type: "object" }, description: ts.Diagnostics.Specify_a_list_of_language_service_plugins_to_include, category: ts.Diagnostics.Editor_Support, }, { name: "moduleDetection", type: new ts.Map(ts.getEntries({ auto: ts.ModuleDetectionKind.Auto, legacy: ts.ModuleDetectionKind.Legacy, force: ts.ModuleDetectionKind.Force, })), affectsModuleResolution: true, description: ts.Diagnostics.Control_what_method_is_used_to_detect_module_format_JS_files, category: ts.Diagnostics.Language_and_Environment, defaultValueDescription: ts.Diagnostics.auto_Colon_Treat_files_with_imports_exports_import_meta_jsx_with_jsx_Colon_react_jsx_or_esm_format_with_module_Colon_node16_as_modules, } ]; /* @internal */ ts.optionDeclarations = __spreadArray(__spreadArray([], ts.commonOptionsWithBuild, true), commandOptionsWithoutBuild, true); /* @internal */ ts.semanticDiagnosticsOptionDeclarations = ts.optionDeclarations.filter(function (option) { return !!option.affectsSemanticDiagnostics; }); /* @internal */ ts.affectsEmitOptionDeclarations = ts.optionDeclarations.filter(function (option) { return !!option.affectsEmit; }); /* @internal */ ts.moduleResolutionOptionDeclarations = ts.optionDeclarations.filter(function (option) { return !!option.affectsModuleResolution; }); /* @internal */ ts.sourceFileAffectingCompilerOptions = ts.optionDeclarations.filter(function (option) { return !!option.affectsSourceFile || !!option.affectsModuleResolution || !!option.affectsBindDiagnostics; }); /* @internal */ ts.optionsAffectingProgramStructure = ts.optionDeclarations.filter(function (option) { return !!option.affectsProgramStructure; }); /* @internal */ ts.transpileOptionValueCompilerOptions = ts.optionDeclarations.filter(function (option) { return ts.hasProperty(option, "transpileOptionValue"); }); // Build related options /* @internal */ ts.optionsForBuild = [ { name: "verbose", shortName: "v", category: ts.Diagnostics.Command_line_Options, description: ts.Diagnostics.Enable_verbose_logging, type: "boolean", defaultValueDescription: false, }, { name: "dry", shortName: "d", category: ts.Diagnostics.Command_line_Options, description: ts.Diagnostics.Show_what_would_be_built_or_deleted_if_specified_with_clean, type: "boolean", defaultValueDescription: false, }, { name: "force", shortName: "f", category: ts.Diagnostics.Command_line_Options, description: ts.Diagnostics.Build_all_projects_including_those_that_appear_to_be_up_to_date, type: "boolean", defaultValueDescription: false, }, { name: "clean", category: ts.Diagnostics.Command_line_Options, description: ts.Diagnostics.Delete_the_outputs_of_all_projects, type: "boolean", defaultValueDescription: false, } ]; /* @internal */ ts.buildOpts = __spreadArray(__spreadArray([], ts.commonOptionsWithBuild, true), ts.optionsForBuild, true); /* @internal */ ts.typeAcquisitionDeclarations = [ { /* @deprecated typingOptions.enableAutoDiscovery * Use typeAcquisition.enable instead. */ name: "enableAutoDiscovery", type: "boolean", defaultValueDescription: false, }, { name: "enable", type: "boolean", defaultValueDescription: false, }, { name: "include", type: "list", element: { name: "include", type: "string" } }, { name: "exclude", type: "list", element: { name: "exclude", type: "string" } }, { name: "disableFilenameBasedTypeAcquisition", type: "boolean", defaultValueDescription: false, }, ]; /*@internal*/ function createOptionNameMap(optionDeclarations) { var optionsNameMap = new ts.Map(); var shortOptionNames = new ts.Map(); ts.forEach(optionDeclarations, function (option) { optionsNameMap.set(option.name.toLowerCase(), option); if (option.shortName) { shortOptionNames.set(option.shortName, option.name); } }); return { optionsNameMap: optionsNameMap, shortOptionNames: shortOptionNames }; } ts.createOptionNameMap = createOptionNameMap; var optionsNameMapCache; /* @internal */ function getOptionsNameMap() { return optionsNameMapCache || (optionsNameMapCache = createOptionNameMap(ts.optionDeclarations)); } ts.getOptionsNameMap = getOptionsNameMap; var compilerOptionsAlternateMode = { diagnostic: ts.Diagnostics.Compiler_option_0_may_only_be_used_with_build, getOptionsNameMap: getBuildOptionsNameMap }; /* @internal */ ts.defaultInitCompilerOptions = { module: ts.ModuleKind.CommonJS, target: 3 /* ScriptTarget.ES2016 */, strict: true, esModuleInterop: true, forceConsistentCasingInFileNames: true, skipLibCheck: true }; /* @internal */ function convertEnableAutoDiscoveryToEnable(typeAcquisition) { // Convert deprecated typingOptions.enableAutoDiscovery to typeAcquisition.enable if (typeAcquisition && typeAcquisition.enableAutoDiscovery !== undefined && typeAcquisition.enable === undefined) { return { enable: typeAcquisition.enableAutoDiscovery, include: typeAcquisition.include || [], exclude: typeAcquisition.exclude || [] }; } return typeAcquisition; } ts.convertEnableAutoDiscoveryToEnable = convertEnableAutoDiscoveryToEnable; /* @internal */ function createCompilerDiagnosticForInvalidCustomType(opt) { return createDiagnosticForInvalidCustomType(opt, ts.createCompilerDiagnostic); } ts.createCompilerDiagnosticForInvalidCustomType = createCompilerDiagnosticForInvalidCustomType; function createDiagnosticForInvalidCustomType(opt, createDiagnostic) { var namesOfType = ts.arrayFrom(opt.type.keys()).map(function (key) { return "'".concat(key, "'"); }).join(", "); return createDiagnostic(ts.Diagnostics.Argument_for_0_option_must_be_Colon_1, "--".concat(opt.name), namesOfType); } /* @internal */ function parseCustomTypeOption(opt, value, errors) { return convertJsonOptionOfCustomType(opt, ts.trimString(value || ""), errors); } ts.parseCustomTypeOption = parseCustomTypeOption; /* @internal */ function parseListTypeOption(opt, value, errors) { if (value === void 0) { value = ""; } value = ts.trimString(value); if (ts.startsWith(value, "-")) { return undefined; } if (value === "") { return []; } var values = value.split(","); switch (opt.element.type) { case "number": return ts.mapDefined(values, function (v) { return validateJsonOptionValue(opt.element, parseInt(v), errors); }); case "string": return ts.mapDefined(values, function (v) { return validateJsonOptionValue(opt.element, v || "", errors); }); default: return ts.mapDefined(values, function (v) { return parseCustomTypeOption(opt.element, v, errors); }); } } ts.parseListTypeOption = parseListTypeOption; function getOptionName(option) { return option.name; } function createUnknownOptionError(unknownOption, diagnostics, createDiagnostics, unknownOptionErrorText) { var _a; if ((_a = diagnostics.alternateMode) === null || _a === void 0 ? void 0 : _a.getOptionsNameMap().optionsNameMap.has(unknownOption.toLowerCase())) { return createDiagnostics(diagnostics.alternateMode.diagnostic, unknownOption); } var possibleOption = ts.getSpellingSuggestion(unknownOption, diagnostics.optionDeclarations, getOptionName); return possibleOption ? createDiagnostics(diagnostics.unknownDidYouMeanDiagnostic, unknownOptionErrorText || unknownOption, possibleOption.name) : createDiagnostics(diagnostics.unknownOptionDiagnostic, unknownOptionErrorText || unknownOption); } /*@internal*/ function parseCommandLineWorker(diagnostics, commandLine, readFile) { var options = {}; var watchOptions; var fileNames = []; var errors = []; parseStrings(commandLine); return { options: options, watchOptions: watchOptions, fileNames: fileNames, errors: errors }; function parseStrings(args) { var i = 0; while (i < args.length) { var s = args[i]; i++; if (s.charCodeAt(0) === 64 /* CharacterCodes.at */) { parseResponseFile(s.slice(1)); } else if (s.charCodeAt(0) === 45 /* CharacterCodes.minus */) { var inputOptionName = s.slice(s.charCodeAt(1) === 45 /* CharacterCodes.minus */ ? 2 : 1); var opt = getOptionDeclarationFromName(diagnostics.getOptionsNameMap, inputOptionName, /*allowShort*/ true); if (opt) { i = parseOptionValue(args, i, diagnostics, opt, options, errors); } else { var watchOpt = getOptionDeclarationFromName(watchOptionsDidYouMeanDiagnostics.getOptionsNameMap, inputOptionName, /*allowShort*/ true); if (watchOpt) { i = parseOptionValue(args, i, watchOptionsDidYouMeanDiagnostics, watchOpt, watchOptions || (watchOptions = {}), errors); } else { errors.push(createUnknownOptionError(inputOptionName, diagnostics, ts.createCompilerDiagnostic, s)); } } } else { fileNames.push(s); } } } function parseResponseFile(fileName) { var text = tryReadFile(fileName, readFile || (function (fileName) { return ts.sys.readFile(fileName); })); if (!ts.isString(text)) { errors.push(text); return; } var args = []; var pos = 0; while (true) { while (pos < text.length && text.charCodeAt(pos) <= 32 /* CharacterCodes.space */) pos++; if (pos >= text.length) break; var start = pos; if (text.charCodeAt(start) === 34 /* CharacterCodes.doubleQuote */) { pos++; while (pos < text.length && text.charCodeAt(pos) !== 34 /* CharacterCodes.doubleQuote */) pos++; if (pos < text.length) { args.push(text.substring(start + 1, pos)); pos++; } else { errors.push(ts.createCompilerDiagnostic(ts.Diagnostics.Unterminated_quoted_string_in_response_file_0, fileName)); } } else { while (text.charCodeAt(pos) > 32 /* CharacterCodes.space */) pos++; args.push(text.substring(start, pos)); } } parseStrings(args); } } ts.parseCommandLineWorker = parseCommandLineWorker; function parseOptionValue(args, i, diagnostics, opt, options, errors) { if (opt.isTSConfigOnly) { var optValue = args[i]; if (optValue === "null") { options[opt.name] = undefined; i++; } else if (opt.type === "boolean") { if (optValue === "false") { options[opt.name] = validateJsonOptionValue(opt, /*value*/ false, errors); i++; } else { if (optValue === "true") i++; errors.push(ts.createCompilerDiagnostic(ts.Diagnostics.Option_0_can_only_be_specified_in_tsconfig_json_file_or_set_to_false_or_null_on_command_line, opt.name)); } } else { errors.push(ts.createCompilerDiagnostic(ts.Diagnostics.Option_0_can_only_be_specified_in_tsconfig_json_file_or_set_to_null_on_command_line, opt.name)); if (optValue && !ts.startsWith(optValue, "-")) i++; } } else { // Check to see if no argument was provided (e.g. "--locale" is the last command-line argument). if (!args[i] && opt.type !== "boolean") { errors.push(ts.createCompilerDiagnostic(diagnostics.optionTypeMismatchDiagnostic, opt.name, getCompilerOptionValueTypeString(opt))); } if (args[i] !== "null") { switch (opt.type) { case "number": options[opt.name] = validateJsonOptionValue(opt, parseInt(args[i]), errors); i++; break; case "boolean": // boolean flag has optional value true, false, others var optValue = args[i]; options[opt.name] = validateJsonOptionValue(opt, optValue !== "false", errors); // consume next argument as boolean flag value if (optValue === "false" || optValue === "true") { i++; } break; case "string": options[opt.name] = validateJsonOptionValue(opt, args[i] || "", errors); i++; break; case "list": var result = parseListTypeOption(opt, args[i], errors); options[opt.name] = result || []; if (result) { i++; } break; // If not a primitive, the possible types are specified in what is effectively a map of options. default: options[opt.name] = parseCustomTypeOption(opt, args[i], errors); i++; break; } } else { options[opt.name] = undefined; i++; } } return i; } /*@internal*/ ts.compilerOptionsDidYouMeanDiagnostics = { alternateMode: compilerOptionsAlternateMode, getOptionsNameMap: getOptionsNameMap, optionDeclarations: ts.optionDeclarations, unknownOptionDiagnostic: ts.Diagnostics.Unknown_compiler_option_0, unknownDidYouMeanDiagnostic: ts.Diagnostics.Unknown_compiler_option_0_Did_you_mean_1, optionTypeMismatchDiagnostic: ts.Diagnostics.Compiler_option_0_expects_an_argument }; function parseCommandLine(commandLine, readFile) { return parseCommandLineWorker(ts.compilerOptionsDidYouMeanDiagnostics, commandLine, readFile); } ts.parseCommandLine = parseCommandLine; /** @internal */ function getOptionFromName(optionName, allowShort) { return getOptionDeclarationFromName(getOptionsNameMap, optionName, allowShort); } ts.getOptionFromName = getOptionFromName; function getOptionDeclarationFromName(getOptionNameMap, optionName, allowShort) { if (allowShort === void 0) { allowShort = false; } optionName = optionName.toLowerCase(); var _a = getOptionNameMap(), optionsNameMap = _a.optionsNameMap, shortOptionNames = _a.shortOptionNames; // Try to translate short option names to their full equivalents. if (allowShort) { var short = shortOptionNames.get(optionName); if (short !== undefined) { optionName = short; } } return optionsNameMap.get(optionName); } var buildOptionsNameMapCache; function getBuildOptionsNameMap() { return buildOptionsNameMapCache || (buildOptionsNameMapCache = createOptionNameMap(ts.buildOpts)); } var buildOptionsAlternateMode = { diagnostic: ts.Diagnostics.Compiler_option_0_may_not_be_used_with_build, getOptionsNameMap: getOptionsNameMap }; var buildOptionsDidYouMeanDiagnostics = { alternateMode: buildOptionsAlternateMode, getOptionsNameMap: getBuildOptionsNameMap, optionDeclarations: ts.buildOpts, unknownOptionDiagnostic: ts.Diagnostics.Unknown_build_option_0, unknownDidYouMeanDiagnostic: ts.Diagnostics.Unknown_build_option_0_Did_you_mean_1, optionTypeMismatchDiagnostic: ts.Diagnostics.Build_option_0_requires_a_value_of_type_1 }; /*@internal*/ function parseBuildCommand(args) { var _a = parseCommandLineWorker(buildOptionsDidYouMeanDiagnostics, args), options = _a.options, watchOptions = _a.watchOptions, projects = _a.fileNames, errors = _a.errors; var buildOptions = options; if (projects.length === 0) { // tsc -b invoked with no extra arguments; act as if invoked with "tsc -b ." projects.push("."); } // Nonsensical combinations if (buildOptions.clean && buildOptions.force) { errors.push(ts.createCompilerDiagnostic(ts.Diagnostics.Options_0_and_1_cannot_be_combined, "clean", "force")); } if (buildOptions.clean && buildOptions.verbose) { errors.push(ts.createCompilerDiagnostic(ts.Diagnostics.Options_0_and_1_cannot_be_combined, "clean", "verbose")); } if (buildOptions.clean && buildOptions.watch) { errors.push(ts.createCompilerDiagnostic(ts.Diagnostics.Options_0_and_1_cannot_be_combined, "clean", "watch")); } if (buildOptions.watch && buildOptions.dry) { errors.push(ts.createCompilerDiagnostic(ts.Diagnostics.Options_0_and_1_cannot_be_combined, "watch", "dry")); } return { buildOptions: buildOptions, watchOptions: watchOptions, projects: projects, errors: errors }; } ts.parseBuildCommand = parseBuildCommand; /* @internal */ function getDiagnosticText(_message) { var _args = []; for (var _i = 1; _i < arguments.length; _i++) { _args[_i - 1] = arguments[_i]; } var diagnostic = ts.createCompilerDiagnostic.apply(undefined, arguments); return diagnostic.messageText; } ts.getDiagnosticText = getDiagnosticText; /** * Reads the config file, reports errors if any and exits if the config file cannot be found */ function getParsedCommandLineOfConfigFile(configFileName, optionsToExtend, host, extendedConfigCache, watchOptionsToExtend, extraFileExtensions) { var configFileText = tryReadFile(configFileName, function (fileName) { return host.readFile(fileName); }); if (!ts.isString(configFileText)) { host.onUnRecoverableConfigFileDiagnostic(configFileText); return undefined; } var result = ts.parseJsonText(configFileName, configFileText); var cwd = host.getCurrentDirectory(); result.path = ts.toPath(configFileName, cwd, ts.createGetCanonicalFileName(host.useCaseSensitiveFileNames)); result.resolvedPath = result.path; result.originalFileName = result.fileName; return parseJsonSourceFileConfigFileContent(result, host, ts.getNormalizedAbsolutePath(ts.getDirectoryPath(configFileName), cwd), optionsToExtend, ts.getNormalizedAbsolutePath(configFileName, cwd), /*resolutionStack*/ undefined, extraFileExtensions, extendedConfigCache, watchOptionsToExtend); } ts.getParsedCommandLineOfConfigFile = getParsedCommandLineOfConfigFile; /** * Read tsconfig.json file * @param fileName The path to the config file */ function readConfigFile(fileName, readFile) { var textOrDiagnostic = tryReadFile(fileName, readFile); return ts.isString(textOrDiagnostic) ? parseConfigFileTextToJson(fileName, textOrDiagnostic) : { config: {}, error: textOrDiagnostic }; } ts.readConfigFile = readConfigFile; /** * Parse the text of the tsconfig.json file * @param fileName The path to the config file * @param jsonText The text of the config file */ function parseConfigFileTextToJson(fileName, jsonText) { var jsonSourceFile = ts.parseJsonText(fileName, jsonText); return { config: convertConfigFileToObject(jsonSourceFile, jsonSourceFile.parseDiagnostics, /*reportOptionsErrors*/ false, /*optionsIterator*/ undefined), error: jsonSourceFile.parseDiagnostics.length ? jsonSourceFile.parseDiagnostics[0] : undefined }; } ts.parseConfigFileTextToJson = parseConfigFileTextToJson; /** * Read tsconfig.json file * @param fileName The path to the config file */ function readJsonConfigFile(fileName, readFile) { var textOrDiagnostic = tryReadFile(fileName, readFile); return ts.isString(textOrDiagnostic) ? ts.parseJsonText(fileName, textOrDiagnostic) : { fileName: fileName, parseDiagnostics: [textOrDiagnostic] }; } ts.readJsonConfigFile = readJsonConfigFile; /*@internal*/ function tryReadFile(fileName, readFile) { var text; try { text = readFile(fileName); } catch (e) { return ts.createCompilerDiagnostic(ts.Diagnostics.Cannot_read_file_0_Colon_1, fileName, e.message); } return text === undefined ? ts.createCompilerDiagnostic(ts.Diagnostics.Cannot_read_file_0, fileName) : text; } ts.tryReadFile = tryReadFile; function commandLineOptionsToMap(options) { return ts.arrayToMap(options, getOptionName); } var typeAcquisitionDidYouMeanDiagnostics = { optionDeclarations: ts.typeAcquisitionDeclarations, unknownOptionDiagnostic: ts.Diagnostics.Unknown_type_acquisition_option_0, unknownDidYouMeanDiagnostic: ts.Diagnostics.Unknown_type_acquisition_option_0_Did_you_mean_1, }; var watchOptionsNameMapCache; function getWatchOptionsNameMap() { return watchOptionsNameMapCache || (watchOptionsNameMapCache = createOptionNameMap(ts.optionsForWatch)); } var watchOptionsDidYouMeanDiagnostics = { getOptionsNameMap: getWatchOptionsNameMap, optionDeclarations: ts.optionsForWatch, unknownOptionDiagnostic: ts.Diagnostics.Unknown_watch_option_0, unknownDidYouMeanDiagnostic: ts.Diagnostics.Unknown_watch_option_0_Did_you_mean_1, optionTypeMismatchDiagnostic: ts.Diagnostics.Watch_option_0_requires_a_value_of_type_1 }; var commandLineCompilerOptionsMapCache; function getCommandLineCompilerOptionsMap() { return commandLineCompilerOptionsMapCache || (commandLineCompilerOptionsMapCache = commandLineOptionsToMap(ts.optionDeclarations)); } var commandLineWatchOptionsMapCache; function getCommandLineWatchOptionsMap() { return commandLineWatchOptionsMapCache || (commandLineWatchOptionsMapCache = commandLineOptionsToMap(ts.optionsForWatch)); } var commandLineTypeAcquisitionMapCache; function getCommandLineTypeAcquisitionMap() { return commandLineTypeAcquisitionMapCache || (commandLineTypeAcquisitionMapCache = commandLineOptionsToMap(ts.typeAcquisitionDeclarations)); } var _tsconfigRootOptions; function getTsconfigRootOptionsMap() { if (_tsconfigRootOptions === undefined) { _tsconfigRootOptions = { name: undefined, type: "object", elementOptions: commandLineOptionsToMap([ { name: "compilerOptions", type: "object", elementOptions: getCommandLineCompilerOptionsMap(), extraKeyDiagnostics: ts.compilerOptionsDidYouMeanDiagnostics, }, { name: "watchOptions", type: "object", elementOptions: getCommandLineWatchOptionsMap(), extraKeyDiagnostics: watchOptionsDidYouMeanDiagnostics, }, { name: "typingOptions", type: "object", elementOptions: getCommandLineTypeAcquisitionMap(), extraKeyDiagnostics: typeAcquisitionDidYouMeanDiagnostics, }, { name: "typeAcquisition", type: "object", elementOptions: getCommandLineTypeAcquisitionMap(), extraKeyDiagnostics: typeAcquisitionDidYouMeanDiagnostics }, { name: "extends", type: "string", category: ts.Diagnostics.File_Management, }, { name: "references", type: "list", element: { name: "references", type: "object" }, category: ts.Diagnostics.Projects, }, { name: "files", type: "list", element: { name: "files", type: "string" }, category: ts.Diagnostics.File_Management, }, { name: "include", type: "list", element: { name: "include", type: "string" }, category: ts.Diagnostics.File_Management, defaultValueDescription: ts.Diagnostics.if_files_is_specified_otherwise_Asterisk_Asterisk_Slash_Asterisk }, { name: "exclude", type: "list", element: { name: "exclude", type: "string" }, category: ts.Diagnostics.File_Management, defaultValueDescription: ts.Diagnostics.node_modules_bower_components_jspm_packages_plus_the_value_of_outDir_if_one_is_specified }, ts.compileOnSaveCommandLineOption ]) }; } return _tsconfigRootOptions; } function convertConfigFileToObject(sourceFile, errors, reportOptionsErrors, optionsIterator) { var _a; var rootExpression = (_a = sourceFile.statements[0]) === null || _a === void 0 ? void 0 : _a.expression; var knownRootOptions = reportOptionsErrors ? getTsconfigRootOptionsMap() : undefined; if (rootExpression && rootExpression.kind !== 205 /* SyntaxKind.ObjectLiteralExpression */) { errors.push(ts.createDiagnosticForNodeInSourceFile(sourceFile, rootExpression, ts.Diagnostics.The_root_value_of_a_0_file_must_be_an_object, ts.getBaseFileName(sourceFile.fileName) === "jsconfig.json" ? "jsconfig.json" : "tsconfig.json")); // Last-ditch error recovery. Somewhat useful because the JSON parser will recover from some parse errors by // synthesizing a top-level array literal expression. There's a reasonable chance the first element of that // array is a well-formed configuration object, made into an array element by stray characters. if (ts.isArrayLiteralExpression(rootExpression)) { var firstObject = ts.find(rootExpression.elements, ts.isObjectLiteralExpression); if (firstObject) { return convertToObjectWorker(sourceFile, firstObject, errors, /*returnValue*/ true, knownRootOptions, optionsIterator); } } return {}; } return convertToObjectWorker(sourceFile, rootExpression, errors, /*returnValue*/ true, knownRootOptions, optionsIterator); } /** * Convert the json syntax tree into the json value */ function convertToObject(sourceFile, errors) { var _a; return convertToObjectWorker(sourceFile, (_a = sourceFile.statements[0]) === null || _a === void 0 ? void 0 : _a.expression, errors, /*returnValue*/ true, /*knownRootOptions*/ undefined, /*jsonConversionNotifier*/ undefined); } ts.convertToObject = convertToObject; /** * Convert the json syntax tree into the json value and report errors * This returns the json value (apart from checking errors) only if returnValue provided is true. * Otherwise it just checks the errors and returns undefined */ /*@internal*/ function convertToObjectWorker(sourceFile, rootExpression, errors, returnValue, knownRootOptions, jsonConversionNotifier) { if (!rootExpression) { return returnValue ? {} : undefined; } return convertPropertyValueToJson(rootExpression, knownRootOptions); function isRootOptionMap(knownOptions) { return knownRootOptions && knownRootOptions.elementOptions === knownOptions; } function convertObjectLiteralExpressionToJson(node, knownOptions, extraKeyDiagnostics, parentOption) { var result = returnValue ? {} : undefined; var _loop_4 = function (element) { if (element.kind !== 296 /* SyntaxKind.PropertyAssignment */) { errors.push(ts.createDiagnosticForNodeInSourceFile(sourceFile, element, ts.Diagnostics.Property_assignment_expected)); return "continue"; } if (element.questionToken) { errors.push(ts.createDiagnosticForNodeInSourceFile(sourceFile, element.questionToken, ts.Diagnostics.The_0_modifier_can_only_be_used_in_TypeScript_files, "?")); } if (!isDoubleQuotedString(element.name)) { errors.push(ts.createDiagnosticForNodeInSourceFile(sourceFile, element.name, ts.Diagnostics.String_literal_with_double_quotes_expected)); } var textOfKey = ts.isComputedNonLiteralName(element.name) ? undefined : ts.getTextOfPropertyName(element.name); var keyText = textOfKey && ts.unescapeLeadingUnderscores(textOfKey); var option = keyText && knownOptions ? knownOptions.get(keyText) : undefined; if (keyText && extraKeyDiagnostics && !option) { if (knownOptions) { errors.push(createUnknownOptionError(keyText, extraKeyDiagnostics, function (message, arg0, arg1) { return ts.createDiagnosticForNodeInSourceFile(sourceFile, element.name, message, arg0, arg1); })); } else { errors.push(ts.createDiagnosticForNodeInSourceFile(sourceFile, element.name, extraKeyDiagnostics.unknownOptionDiagnostic, keyText)); } } var value = convertPropertyValueToJson(element.initializer, option); if (typeof keyText !== "undefined") { if (returnValue) { result[keyText] = value; } // Notify key value set, if user asked for it if (jsonConversionNotifier && // Current callbacks are only on known parent option or if we are setting values in the root (parentOption || isRootOptionMap(knownOptions))) { var isValidOptionValue = isCompilerOptionsValue(option, value); if (parentOption) { if (isValidOptionValue) { // Notify option set in the parent if its a valid option value jsonConversionNotifier.onSetValidOptionKeyValueInParent(parentOption, option, value); } } else if (isRootOptionMap(knownOptions)) { if (isValidOptionValue) { // Notify about the valid root key value being set jsonConversionNotifier.onSetValidOptionKeyValueInRoot(keyText, element.name, value, element.initializer); } else if (!option) { // Notify about the unknown root key value being set jsonConversionNotifier.onSetUnknownOptionKeyValueInRoot(keyText, element.name, value, element.initializer); } } } } }; for (var _i = 0, _a = node.properties; _i < _a.length; _i++) { var element = _a[_i]; _loop_4(element); } return result; } function convertArrayLiteralExpressionToJson(elements, elementOption) { if (!returnValue) { elements.forEach(function (element) { return convertPropertyValueToJson(element, elementOption); }); return undefined; } // Filter out invalid values return ts.filter(elements.map(function (element) { return convertPropertyValueToJson(element, elementOption); }), function (v) { return v !== undefined; }); } function convertPropertyValueToJson(valueExpression, option) { var invalidReported; switch (valueExpression.kind) { case 110 /* SyntaxKind.TrueKeyword */: reportInvalidOptionValue(option && option.type !== "boolean"); return validateValue(/*value*/ true); case 95 /* SyntaxKind.FalseKeyword */: reportInvalidOptionValue(option && option.type !== "boolean"); return validateValue(/*value*/ false); case 104 /* SyntaxKind.NullKeyword */: reportInvalidOptionValue(option && option.name === "extends"); // "extends" is the only option we don't allow null/undefined for return validateValue(/*value*/ null); // eslint-disable-line no-null/no-null case 10 /* SyntaxKind.StringLiteral */: if (!isDoubleQuotedString(valueExpression)) { errors.push(ts.createDiagnosticForNodeInSourceFile(sourceFile, valueExpression, ts.Diagnostics.String_literal_with_double_quotes_expected)); } reportInvalidOptionValue(option && (ts.isString(option.type) && option.type !== "string")); var text = valueExpression.text; if (option && !ts.isString(option.type)) { var customOption = option; // Validate custom option type if (!customOption.type.has(text.toLowerCase())) { errors.push(createDiagnosticForInvalidCustomType(customOption, function (message, arg0, arg1) { return ts.createDiagnosticForNodeInSourceFile(sourceFile, valueExpression, message, arg0, arg1); })); invalidReported = true; } } return validateValue(text); case 8 /* SyntaxKind.NumericLiteral */: reportInvalidOptionValue(option && option.type !== "number"); return validateValue(Number(valueExpression.text)); case 219 /* SyntaxKind.PrefixUnaryExpression */: if (valueExpression.operator !== 40 /* SyntaxKind.MinusToken */ || valueExpression.operand.kind !== 8 /* SyntaxKind.NumericLiteral */) { break; // not valid JSON syntax } reportInvalidOptionValue(option && option.type !== "number"); return validateValue(-Number(valueExpression.operand.text)); case 205 /* SyntaxKind.ObjectLiteralExpression */: reportInvalidOptionValue(option && option.type !== "object"); var objectLiteralExpression = valueExpression; // Currently having element option declaration in the tsconfig with type "object" // determines if it needs onSetValidOptionKeyValueInParent callback or not // At moment there are only "compilerOptions", "typeAcquisition" and "typingOptions" // that satifies it and need it to modify options set in them (for normalizing file paths) // vs what we set in the json // If need arises, we can modify this interface and callbacks as needed if (option) { var _a = option, elementOptions = _a.elementOptions, extraKeyDiagnostics = _a.extraKeyDiagnostics, optionName = _a.name; return validateValue(convertObjectLiteralExpressionToJson(objectLiteralExpression, elementOptions, extraKeyDiagnostics, optionName)); } else { return validateValue(convertObjectLiteralExpressionToJson(objectLiteralExpression, /* knownOptions*/ undefined, /*extraKeyDiagnosticMessage */ undefined, /*parentOption*/ undefined)); } case 204 /* SyntaxKind.ArrayLiteralExpression */: reportInvalidOptionValue(option && option.type !== "list"); return validateValue(convertArrayLiteralExpressionToJson(valueExpression.elements, option && option.element)); } // Not in expected format if (option) { reportInvalidOptionValue(/*isError*/ true); } else { errors.push(ts.createDiagnosticForNodeInSourceFile(sourceFile, valueExpression, ts.Diagnostics.Property_value_can_only_be_string_literal_numeric_literal_true_false_null_object_literal_or_array_literal)); } return undefined; function validateValue(value) { var _a; if (!invalidReported) { var diagnostic = (_a = option === null || option === void 0 ? void 0 : option.extraValidation) === null || _a === void 0 ? void 0 : _a.call(option, value); if (diagnostic) { errors.push(ts.createDiagnosticForNodeInSourceFile.apply(void 0, __spreadArray([sourceFile, valueExpression], diagnostic, false))); return undefined; } } return value; } function reportInvalidOptionValue(isError) { if (isError) { errors.push(ts.createDiagnosticForNodeInSourceFile(sourceFile, valueExpression, ts.Diagnostics.Compiler_option_0_requires_a_value_of_type_1, option.name, getCompilerOptionValueTypeString(option))); invalidReported = true; } } } function isDoubleQuotedString(node) { return ts.isStringLiteral(node) && ts.isStringDoubleQuoted(node, sourceFile); } } ts.convertToObjectWorker = convertToObjectWorker; function getCompilerOptionValueTypeString(option) { return option.type === "list" ? "Array" : ts.isString(option.type) ? option.type : "string"; } function isCompilerOptionsValue(option, value) { if (option) { if (isNullOrUndefined(value)) return true; // All options are undefinable/nullable if (option.type === "list") { return ts.isArray(value); } var expectedType = ts.isString(option.type) ? option.type : "string"; return typeof value === expectedType; } return false; } /** * Generate an uncommented, complete tsconfig for use with "--showConfig" * @param configParseResult options to be generated into tsconfig.json * @param configFileName name of the parsed config file - output paths will be generated relative to this * @param host provides current directory and case sensitivity services */ /** @internal */ function convertToTSConfig(configParseResult, configFileName, host) { var _a, _b, _c; var getCanonicalFileName = ts.createGetCanonicalFileName(host.useCaseSensitiveFileNames); var files = ts.map(ts.filter(configParseResult.fileNames, !((_b = (_a = configParseResult.options.configFile) === null || _a === void 0 ? void 0 : _a.configFileSpecs) === null || _b === void 0 ? void 0 : _b.validatedIncludeSpecs) ? ts.returnTrue : matchesSpecs(configFileName, configParseResult.options.configFile.configFileSpecs.validatedIncludeSpecs, configParseResult.options.configFile.configFileSpecs.validatedExcludeSpecs, host)), function (f) { return ts.getRelativePathFromFile(ts.getNormalizedAbsolutePath(configFileName, host.getCurrentDirectory()), ts.getNormalizedAbsolutePath(f, host.getCurrentDirectory()), getCanonicalFileName); }); var optionMap = serializeCompilerOptions(configParseResult.options, { configFilePath: ts.getNormalizedAbsolutePath(configFileName, host.getCurrentDirectory()), useCaseSensitiveFileNames: host.useCaseSensitiveFileNames }); var watchOptionMap = configParseResult.watchOptions && serializeWatchOptions(configParseResult.watchOptions); var config = __assign(__assign({ compilerOptions: __assign(__assign({}, optionMapToObject(optionMap)), { showConfig: undefined, configFile: undefined, configFilePath: undefined, help: undefined, init: undefined, listFiles: undefined, listEmittedFiles: undefined, project: undefined, build: undefined, version: undefined }), watchOptions: watchOptionMap && optionMapToObject(watchOptionMap), references: ts.map(configParseResult.projectReferences, function (r) { return (__assign(__assign({}, r), { path: r.originalPath ? r.originalPath : "", originalPath: undefined })); }), files: ts.length(files) ? files : undefined }, (((_c = configParseResult.options.configFile) === null || _c === void 0 ? void 0 : _c.configFileSpecs) ? { include: filterSameAsDefaultInclude(configParseResult.options.configFile.configFileSpecs.validatedIncludeSpecs), exclude: configParseResult.options.configFile.configFileSpecs.validatedExcludeSpecs } : {})), { compileOnSave: !!configParseResult.compileOnSave ? true : undefined }); return config; } ts.convertToTSConfig = convertToTSConfig; function optionMapToObject(optionMap) { return __assign({}, ts.arrayFrom(optionMap.entries()).reduce(function (prev, cur) { var _a; return (__assign(__assign({}, prev), (_a = {}, _a[cur[0]] = cur[1], _a))); }, {})); } function filterSameAsDefaultInclude(specs) { if (!ts.length(specs)) return undefined; if (ts.length(specs) !== 1) return specs; if (specs[0] === "**/*") return undefined; return specs; } function matchesSpecs(path, includeSpecs, excludeSpecs, host) { if (!includeSpecs) return ts.returnTrue; var patterns = ts.getFileMatcherPatterns(path, excludeSpecs, includeSpecs, host.useCaseSensitiveFileNames, host.getCurrentDirectory()); var excludeRe = patterns.excludePattern && ts.getRegexFromPattern(patterns.excludePattern, host.useCaseSensitiveFileNames); var includeRe = patterns.includeFilePattern && ts.getRegexFromPattern(patterns.includeFilePattern, host.useCaseSensitiveFileNames); if (includeRe) { if (excludeRe) { return function (path) { return !(includeRe.test(path) && !excludeRe.test(path)); }; } return function (path) { return !includeRe.test(path); }; } if (excludeRe) { return function (path) { return excludeRe.test(path); }; } return ts.returnTrue; } function getCustomTypeMapOfCommandLineOption(optionDefinition) { if (optionDefinition.type === "string" || optionDefinition.type === "number" || optionDefinition.type === "boolean" || optionDefinition.type === "object") { // this is of a type CommandLineOptionOfPrimitiveType return undefined; } else if (optionDefinition.type === "list") { return getCustomTypeMapOfCommandLineOption(optionDefinition.element); } else { return optionDefinition.type; } } function getNameOfCompilerOptionValue(value, customTypeMap) { // There is a typeMap associated with this command-line option so use it to map value back to its name return ts.forEachEntry(customTypeMap, function (mapValue, key) { if (mapValue === value) { return key; } }); } function serializeCompilerOptions(options, pathOptions) { return serializeOptionBaseObject(options, getOptionsNameMap(), pathOptions); } function serializeWatchOptions(options) { return serializeOptionBaseObject(options, getWatchOptionsNameMap()); } function serializeOptionBaseObject(options, _a, pathOptions) { var optionsNameMap = _a.optionsNameMap; var result = new ts.Map(); var getCanonicalFileName = pathOptions && ts.createGetCanonicalFileName(pathOptions.useCaseSensitiveFileNames); var _loop_5 = function (name) { if (ts.hasProperty(options, name)) { // tsconfig only options cannot be specified via command line, // so we can assume that only types that can appear here string | number | boolean if (optionsNameMap.has(name) && (optionsNameMap.get(name).category === ts.Diagnostics.Command_line_Options || optionsNameMap.get(name).category === ts.Diagnostics.Output_Formatting)) { return "continue"; } var value = options[name]; var optionDefinition = optionsNameMap.get(name.toLowerCase()); if (optionDefinition) { var customTypeMap_1 = getCustomTypeMapOfCommandLineOption(optionDefinition); if (!customTypeMap_1) { // There is no map associated with this compiler option then use the value as-is // This is the case if the value is expect to be string, number, boolean or list of string if (pathOptions && optionDefinition.isFilePath) { result.set(name, ts.getRelativePathFromFile(pathOptions.configFilePath, ts.getNormalizedAbsolutePath(value, ts.getDirectoryPath(pathOptions.configFilePath)), getCanonicalFileName)); } else { result.set(name, value); } } else { if (optionDefinition.type === "list") { result.set(name, value.map(function (element) { return getNameOfCompilerOptionValue(element, customTypeMap_1); })); // TODO: GH#18217 } else { // There is a typeMap associated with this command-line option so use it to map value back to its name result.set(name, getNameOfCompilerOptionValue(value, customTypeMap_1)); } } } } }; for (var name in options) { _loop_5(name); } return result; } /** * Generate a list of the compiler options whose value is not the default. * @param options compilerOptions to be evaluated. /** @internal */ function getCompilerOptionsDiffValue(options, newLine) { var compilerOptionsMap = getSerializedCompilerOption(options); return getOverwrittenDefaultOptions(); function makePadding(paddingLength) { return Array(paddingLength + 1).join(" "); } function getOverwrittenDefaultOptions() { var result = []; var tab = makePadding(2); commandOptionsWithoutBuild.forEach(function (cmd) { if (!compilerOptionsMap.has(cmd.name)) { return; } var newValue = compilerOptionsMap.get(cmd.name); var defaultValue = getDefaultValueForOption(cmd); if (newValue !== defaultValue) { result.push("".concat(tab).concat(cmd.name, ": ").concat(newValue)); } else if (ts.hasProperty(ts.defaultInitCompilerOptions, cmd.name)) { result.push("".concat(tab).concat(cmd.name, ": ").concat(defaultValue)); } }); return result.join(newLine) + newLine; } } ts.getCompilerOptionsDiffValue = getCompilerOptionsDiffValue; /** * Get the compiler options to be written into the tsconfig.json. * @param options commandlineOptions to be included in the compileOptions. */ function getSerializedCompilerOption(options) { var compilerOptions = ts.extend(options, ts.defaultInitCompilerOptions); return serializeCompilerOptions(compilerOptions); } /** * Generate tsconfig configuration when running command line "--init" * @param options commandlineOptions to be generated into tsconfig.json * @param fileNames array of filenames to be generated into tsconfig.json */ /* @internal */ function generateTSConfig(options, fileNames, newLine) { var compilerOptionsMap = getSerializedCompilerOption(options); return writeConfigurations(); function makePadding(paddingLength) { return Array(paddingLength + 1).join(" "); } function isAllowedOptionForOutput(_a) { var category = _a.category, name = _a.name, isCommandLineOnly = _a.isCommandLineOnly; // Skip options which do not have a category or have categories which are more niche var categoriesToSkip = [ts.Diagnostics.Command_line_Options, ts.Diagnostics.Editor_Support, ts.Diagnostics.Compiler_Diagnostics, ts.Diagnostics.Backwards_Compatibility, ts.Diagnostics.Watch_and_Build_Modes, ts.Diagnostics.Output_Formatting]; return !isCommandLineOnly && category !== undefined && (!categoriesToSkip.includes(category) || compilerOptionsMap.has(name)); } function writeConfigurations() { // Filter applicable options to place in the file var categorizedOptions = ts.createMultiMap(); for (var _i = 0, optionDeclarations_1 = ts.optionDeclarations; _i < optionDeclarations_1.length; _i++) { var option = optionDeclarations_1[_i]; var category = option.category; if (isAllowedOptionForOutput(option)) { categorizedOptions.add(ts.getLocaleSpecificMessage(category), option); } } // Serialize all options and their descriptions var marginLength = 0; var seenKnownKeys = 0; var entries = []; categorizedOptions.forEach(function (options, category) { if (entries.length !== 0) { entries.push({ value: "" }); } entries.push({ value: "/* ".concat(category, " */") }); for (var _i = 0, options_1 = options; _i < options_1.length; _i++) { var option = options_1[_i]; var optionName = void 0; if (compilerOptionsMap.has(option.name)) { optionName = "\"".concat(option.name, "\": ").concat(JSON.stringify(compilerOptionsMap.get(option.name))).concat((seenKnownKeys += 1) === compilerOptionsMap.size ? "" : ","); } else { optionName = "// \"".concat(option.name, "\": ").concat(JSON.stringify(getDefaultValueForOption(option)), ","); } entries.push({ value: optionName, description: "/* ".concat(option.description && ts.getLocaleSpecificMessage(option.description) || option.name, " */") }); marginLength = Math.max(optionName.length, marginLength); } }); // Write the output var tab = makePadding(2); var result = []; result.push("{"); result.push("".concat(tab, "\"compilerOptions\": {")); result.push("".concat(tab).concat(tab, "/* ").concat(ts.getLocaleSpecificMessage(ts.Diagnostics.Visit_https_Colon_Slash_Slashaka_ms_Slashtsconfig_to_read_more_about_this_file), " */")); result.push(""); // Print out each row, aligning all the descriptions on the same column. for (var _a = 0, entries_2 = entries; _a < entries_2.length; _a++) { var entry = entries_2[_a]; var value = entry.value, _b = entry.description, description = _b === void 0 ? "" : _b; result.push(value && "".concat(tab).concat(tab).concat(value).concat(description && (makePadding(marginLength - value.length + 2) + description))); } if (fileNames.length) { result.push("".concat(tab, "},")); result.push("".concat(tab, "\"files\": [")); for (var i = 0; i < fileNames.length; i++) { result.push("".concat(tab).concat(tab).concat(JSON.stringify(fileNames[i])).concat(i === fileNames.length - 1 ? "" : ",")); } result.push("".concat(tab, "]")); } else { result.push("".concat(tab, "}")); } result.push("}"); return result.join(newLine) + newLine; } } ts.generateTSConfig = generateTSConfig; /* @internal */ function convertToOptionsWithAbsolutePaths(options, toAbsolutePath) { var result = {}; var optionsNameMap = getOptionsNameMap().optionsNameMap; for (var name in options) { if (ts.hasProperty(options, name)) { result[name] = convertToOptionValueWithAbsolutePaths(optionsNameMap.get(name.toLowerCase()), options[name], toAbsolutePath); } } if (result.configFilePath) { result.configFilePath = toAbsolutePath(result.configFilePath); } return result; } ts.convertToOptionsWithAbsolutePaths = convertToOptionsWithAbsolutePaths; function convertToOptionValueWithAbsolutePaths(option, value, toAbsolutePath) { if (option && !isNullOrUndefined(value)) { if (option.type === "list") { var values = value; if (option.element.isFilePath && values.length) { return values.map(toAbsolutePath); } } else if (option.isFilePath) { return toAbsolutePath(value); } } return value; } /** * Parse the contents of a config file (tsconfig.json). * @param json The contents of the config file to parse * @param host Instance of ParseConfigHost used to enumerate files in folder. * @param basePath A root directory to resolve relative path entries in the config * file to. e.g. outDir */ function parseJsonConfigFileContent(json, host, basePath, existingOptions, configFileName, resolutionStack, extraFileExtensions, extendedConfigCache, existingWatchOptions) { return parseJsonConfigFileContentWorker(json, /*sourceFile*/ undefined, host, basePath, existingOptions, existingWatchOptions, configFileName, resolutionStack, extraFileExtensions, extendedConfigCache); } ts.parseJsonConfigFileContent = parseJsonConfigFileContent; /** * Parse the contents of a config file (tsconfig.json). * @param jsonNode The contents of the config file to parse * @param host Instance of ParseConfigHost used to enumerate files in folder. * @param basePath A root directory to resolve relative path entries in the config * file to. e.g. outDir */ function parseJsonSourceFileConfigFileContent(sourceFile, host, basePath, existingOptions, configFileName, resolutionStack, extraFileExtensions, extendedConfigCache, existingWatchOptions) { ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("parse" /* tracing.Phase.Parse */, "parseJsonSourceFileConfigFileContent", { path: sourceFile.fileName }); var result = parseJsonConfigFileContentWorker(/*json*/ undefined, sourceFile, host, basePath, existingOptions, existingWatchOptions, configFileName, resolutionStack, extraFileExtensions, extendedConfigCache); ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); return result; } ts.parseJsonSourceFileConfigFileContent = parseJsonSourceFileConfigFileContent; /*@internal*/ function setConfigFileInOptions(options, configFile) { if (configFile) { Object.defineProperty(options, "configFile", { enumerable: false, writable: false, value: configFile }); } } ts.setConfigFileInOptions = setConfigFileInOptions; function isNullOrUndefined(x) { return x === undefined || x === null; // eslint-disable-line no-null/no-null } function directoryOfCombinedPath(fileName, basePath) { // Use the `getNormalizedAbsolutePath` function to avoid canonicalizing the path, as it must remain noncanonical // until consistent casing errors are reported return ts.getDirectoryPath(ts.getNormalizedAbsolutePath(fileName, basePath)); } /** * Parse the contents of a config file from json or json source file (tsconfig.json). * @param json The contents of the config file to parse * @param sourceFile sourceFile corresponding to the Json * @param host Instance of ParseConfigHost used to enumerate files in folder. * @param basePath A root directory to resolve relative path entries in the config * file to. e.g. outDir * @param resolutionStack Only present for backwards-compatibility. Should be empty. */ function parseJsonConfigFileContentWorker(json, sourceFile, host, basePath, existingOptions, existingWatchOptions, configFileName, resolutionStack, extraFileExtensions, extendedConfigCache) { if (existingOptions === void 0) { existingOptions = {}; } if (resolutionStack === void 0) { resolutionStack = []; } if (extraFileExtensions === void 0) { extraFileExtensions = []; } ts.Debug.assert((json === undefined && sourceFile !== undefined) || (json !== undefined && sourceFile === undefined)); var errors = []; var parsedConfig = parseConfig(json, sourceFile, host, basePath, configFileName, resolutionStack, errors, extendedConfigCache); var raw = parsedConfig.raw; var options = ts.extend(existingOptions, parsedConfig.options || {}); var watchOptions = existingWatchOptions && parsedConfig.watchOptions ? ts.extend(existingWatchOptions, parsedConfig.watchOptions) : parsedConfig.watchOptions || existingWatchOptions; options.configFilePath = configFileName && ts.normalizeSlashes(configFileName); var configFileSpecs = getConfigFileSpecs(); if (sourceFile) sourceFile.configFileSpecs = configFileSpecs; setConfigFileInOptions(options, sourceFile); var basePathForFileNames = ts.normalizePath(configFileName ? directoryOfCombinedPath(configFileName, basePath) : basePath); return { options: options, watchOptions: watchOptions, fileNames: getFileNames(basePathForFileNames), projectReferences: getProjectReferences(basePathForFileNames), typeAcquisition: parsedConfig.typeAcquisition || getDefaultTypeAcquisition(), raw: raw, errors: errors, // Wildcard directories (provided as part of a wildcard path) are stored in a // file map that marks whether it was a regular wildcard match (with a `*` or `?` token), // or a recursive directory. This information is used by filesystem watchers to monitor for // new entries in these paths. wildcardDirectories: getWildcardDirectories(configFileSpecs, basePathForFileNames, host.useCaseSensitiveFileNames), compileOnSave: !!raw.compileOnSave, }; function getConfigFileSpecs() { var referencesOfRaw = getPropFromRaw("references", function (element) { return typeof element === "object"; }, "object"); var filesSpecs = toPropValue(getSpecsFromRaw("files")); if (filesSpecs) { var hasZeroOrNoReferences = referencesOfRaw === "no-prop" || ts.isArray(referencesOfRaw) && referencesOfRaw.length === 0; var hasExtends = ts.hasProperty(raw, "extends"); if (filesSpecs.length === 0 && hasZeroOrNoReferences && !hasExtends) { if (sourceFile) { var fileName = configFileName || "tsconfig.json"; var diagnosticMessage = ts.Diagnostics.The_files_list_in_config_file_0_is_empty; var nodeValue = ts.firstDefined(ts.getTsConfigPropArray(sourceFile, "files"), function (property) { return property.initializer; }); var error = nodeValue ? ts.createDiagnosticForNodeInSourceFile(sourceFile, nodeValue, diagnosticMessage, fileName) : ts.createCompilerDiagnostic(diagnosticMessage, fileName); errors.push(error); } else { createCompilerDiagnosticOnlyIfJson(ts.Diagnostics.The_files_list_in_config_file_0_is_empty, configFileName || "tsconfig.json"); } } } var includeSpecs = toPropValue(getSpecsFromRaw("include")); var excludeOfRaw = getSpecsFromRaw("exclude"); var excludeSpecs = toPropValue(excludeOfRaw); if (excludeOfRaw === "no-prop" && raw.compilerOptions) { var outDir = raw.compilerOptions.outDir; var declarationDir = raw.compilerOptions.declarationDir; if (outDir || declarationDir) { excludeSpecs = [outDir, declarationDir].filter(function (d) { return !!d; }); } } if (filesSpecs === undefined && includeSpecs === undefined) { includeSpecs = ["**/*"]; } var validatedIncludeSpecs, validatedExcludeSpecs; // The exclude spec list is converted into a regular expression, which allows us to quickly // test whether a file or directory should be excluded before recursively traversing the // file system. if (includeSpecs) { validatedIncludeSpecs = validateSpecs(includeSpecs, errors, /*disallowTrailingRecursion*/ true, sourceFile, "include"); } if (excludeSpecs) { validatedExcludeSpecs = validateSpecs(excludeSpecs, errors, /*disallowTrailingRecursion*/ false, sourceFile, "exclude"); } return { filesSpecs: filesSpecs, includeSpecs: includeSpecs, excludeSpecs: excludeSpecs, validatedFilesSpec: ts.filter(filesSpecs, ts.isString), validatedIncludeSpecs: validatedIncludeSpecs, validatedExcludeSpecs: validatedExcludeSpecs, pathPatterns: undefined, // Initialized on first use }; } function getFileNames(basePath) { var fileNames = getFileNamesFromConfigSpecs(configFileSpecs, basePath, options, host, extraFileExtensions); if (shouldReportNoInputFiles(fileNames, canJsonReportNoInputFiles(raw), resolutionStack)) { errors.push(getErrorForNoInputFiles(configFileSpecs, configFileName)); } return fileNames; } function getProjectReferences(basePath) { var projectReferences; var referencesOfRaw = getPropFromRaw("references", function (element) { return typeof element === "object"; }, "object"); if (ts.isArray(referencesOfRaw)) { for (var _i = 0, referencesOfRaw_1 = referencesOfRaw; _i < referencesOfRaw_1.length; _i++) { var ref = referencesOfRaw_1[_i]; if (typeof ref.path !== "string") { createCompilerDiagnosticOnlyIfJson(ts.Diagnostics.Compiler_option_0_requires_a_value_of_type_1, "reference.path", "string"); } else { (projectReferences || (projectReferences = [])).push({ path: ts.getNormalizedAbsolutePath(ref.path, basePath), originalPath: ref.path, prepend: ref.prepend, circular: ref.circular }); } } } return projectReferences; } function toPropValue(specResult) { return ts.isArray(specResult) ? specResult : undefined; } function getSpecsFromRaw(prop) { return getPropFromRaw(prop, ts.isString, "string"); } function getPropFromRaw(prop, validateElement, elementTypeName) { if (ts.hasProperty(raw, prop) && !isNullOrUndefined(raw[prop])) { if (ts.isArray(raw[prop])) { var result = raw[prop]; if (!sourceFile && !ts.every(result, validateElement)) { errors.push(ts.createCompilerDiagnostic(ts.Diagnostics.Compiler_option_0_requires_a_value_of_type_1, prop, elementTypeName)); } return result; } else { createCompilerDiagnosticOnlyIfJson(ts.Diagnostics.Compiler_option_0_requires_a_value_of_type_1, prop, "Array"); return "not-array"; } } return "no-prop"; } function createCompilerDiagnosticOnlyIfJson(message, arg0, arg1) { if (!sourceFile) { errors.push(ts.createCompilerDiagnostic(message, arg0, arg1)); } } } function isErrorNoInputFiles(error) { return error.code === ts.Diagnostics.No_inputs_were_found_in_config_file_0_Specified_include_paths_were_1_and_exclude_paths_were_2.code; } function getErrorForNoInputFiles(_a, configFileName) { var includeSpecs = _a.includeSpecs, excludeSpecs = _a.excludeSpecs; return ts.createCompilerDiagnostic(ts.Diagnostics.No_inputs_were_found_in_config_file_0_Specified_include_paths_were_1_and_exclude_paths_were_2, configFileName || "tsconfig.json", JSON.stringify(includeSpecs || []), JSON.stringify(excludeSpecs || [])); } function shouldReportNoInputFiles(fileNames, canJsonReportNoInutFiles, resolutionStack) { return fileNames.length === 0 && canJsonReportNoInutFiles && (!resolutionStack || resolutionStack.length === 0); } /*@internal*/ function canJsonReportNoInputFiles(raw) { return !ts.hasProperty(raw, "files") && !ts.hasProperty(raw, "references"); } ts.canJsonReportNoInputFiles = canJsonReportNoInputFiles; /*@internal*/ function updateErrorForNoInputFiles(fileNames, configFileName, configFileSpecs, configParseDiagnostics, canJsonReportNoInutFiles) { var existingErrors = configParseDiagnostics.length; if (shouldReportNoInputFiles(fileNames, canJsonReportNoInutFiles)) { configParseDiagnostics.push(getErrorForNoInputFiles(configFileSpecs, configFileName)); } else { ts.filterMutate(configParseDiagnostics, function (error) { return !isErrorNoInputFiles(error); }); } return existingErrors !== configParseDiagnostics.length; } ts.updateErrorForNoInputFiles = updateErrorForNoInputFiles; function isSuccessfulParsedTsconfig(value) { return !!value.options; } /** * This *just* extracts options/include/exclude/files out of a config file. * It does *not* resolve the included files. */ function parseConfig(json, sourceFile, host, basePath, configFileName, resolutionStack, errors, extendedConfigCache) { var _a; basePath = ts.normalizeSlashes(basePath); var resolvedPath = ts.getNormalizedAbsolutePath(configFileName || "", basePath); if (resolutionStack.indexOf(resolvedPath) >= 0) { errors.push(ts.createCompilerDiagnostic(ts.Diagnostics.Circularity_detected_while_resolving_configuration_Colon_0, __spreadArray(__spreadArray([], resolutionStack, true), [resolvedPath], false).join(" -> "))); return { raw: json || convertToObject(sourceFile, errors) }; } var ownConfig = json ? parseOwnConfigOfJson(json, host, basePath, configFileName, errors) : parseOwnConfigOfJsonSourceFile(sourceFile, host, basePath, configFileName, errors); if ((_a = ownConfig.options) === null || _a === void 0 ? void 0 : _a.paths) { // If we end up needing to resolve relative paths from 'paths' relative to // the config file location, we'll need to know where that config file was. // Since 'paths' can be inherited from an extended config in another directory, // we wouldn't know which directory to use unless we store it here. ownConfig.options.pathsBasePath = basePath; } if (ownConfig.extendedConfigPath) { // copy the resolution stack so it is never reused between branches in potential diamond-problem scenarios. resolutionStack = resolutionStack.concat([resolvedPath]); var extendedConfig = getExtendedConfig(sourceFile, ownConfig.extendedConfigPath, host, resolutionStack, errors, extendedConfigCache); if (extendedConfig && isSuccessfulParsedTsconfig(extendedConfig)) { var baseRaw_1 = extendedConfig.raw; var raw_1 = ownConfig.raw; var relativeDifference_1; var setPropertyInRawIfNotUndefined = function (propertyName) { if (!raw_1[propertyName] && baseRaw_1[propertyName]) { raw_1[propertyName] = ts.map(baseRaw_1[propertyName], function (path) { return ts.isRootedDiskPath(path) ? path : ts.combinePaths(relativeDifference_1 || (relativeDifference_1 = ts.convertToRelativePath(ts.getDirectoryPath(ownConfig.extendedConfigPath), basePath, ts.createGetCanonicalFileName(host.useCaseSensitiveFileNames))), path); }); } }; setPropertyInRawIfNotUndefined("include"); setPropertyInRawIfNotUndefined("exclude"); setPropertyInRawIfNotUndefined("files"); if (raw_1.compileOnSave === undefined) { raw_1.compileOnSave = baseRaw_1.compileOnSave; } ownConfig.options = ts.assign({}, extendedConfig.options, ownConfig.options); ownConfig.watchOptions = ownConfig.watchOptions && extendedConfig.watchOptions ? ts.assign({}, extendedConfig.watchOptions, ownConfig.watchOptions) : ownConfig.watchOptions || extendedConfig.watchOptions; // TODO extend type typeAcquisition } } return ownConfig; } function parseOwnConfigOfJson(json, host, basePath, configFileName, errors) { if (ts.hasProperty(json, "excludes")) { errors.push(ts.createCompilerDiagnostic(ts.Diagnostics.Unknown_option_excludes_Did_you_mean_exclude)); } var options = convertCompilerOptionsFromJsonWorker(json.compilerOptions, basePath, errors, configFileName); // typingOptions has been deprecated and is only supported for backward compatibility purposes. // It should be removed in future releases - use typeAcquisition instead. var typeAcquisition = convertTypeAcquisitionFromJsonWorker(json.typeAcquisition || json.typingOptions, basePath, errors, configFileName); var watchOptions = convertWatchOptionsFromJsonWorker(json.watchOptions, basePath, errors); json.compileOnSave = convertCompileOnSaveOptionFromJson(json, basePath, errors); var extendedConfigPath; if (json.extends) { if (!ts.isString(json.extends)) { errors.push(ts.createCompilerDiagnostic(ts.Diagnostics.Compiler_option_0_requires_a_value_of_type_1, "extends", "string")); } else { var newBase = configFileName ? directoryOfCombinedPath(configFileName, basePath) : basePath; extendedConfigPath = getExtendsConfigPath(json.extends, host, newBase, errors, ts.createCompilerDiagnostic); } } return { raw: json, options: options, watchOptions: watchOptions, typeAcquisition: typeAcquisition, extendedConfigPath: extendedConfigPath }; } function parseOwnConfigOfJsonSourceFile(sourceFile, host, basePath, configFileName, errors) { var options = getDefaultCompilerOptions(configFileName); var typeAcquisition, typingOptionstypeAcquisition; var watchOptions; var extendedConfigPath; var rootCompilerOptions; var optionsIterator = { onSetValidOptionKeyValueInParent: function (parentOption, option, value) { var currentOption; switch (parentOption) { case "compilerOptions": currentOption = options; break; case "watchOptions": currentOption = (watchOptions || (watchOptions = {})); break; case "typeAcquisition": currentOption = (typeAcquisition || (typeAcquisition = getDefaultTypeAcquisition(configFileName))); break; case "typingOptions": currentOption = (typingOptionstypeAcquisition || (typingOptionstypeAcquisition = getDefaultTypeAcquisition(configFileName))); break; default: ts.Debug.fail("Unknown option"); } currentOption[option.name] = normalizeOptionValue(option, basePath, value); }, onSetValidOptionKeyValueInRoot: function (key, _keyNode, value, valueNode) { switch (key) { case "extends": var newBase = configFileName ? directoryOfCombinedPath(configFileName, basePath) : basePath; extendedConfigPath = getExtendsConfigPath(value, host, newBase, errors, function (message, arg0) { return ts.createDiagnosticForNodeInSourceFile(sourceFile, valueNode, message, arg0); }); return; } }, onSetUnknownOptionKeyValueInRoot: function (key, keyNode, _value, _valueNode) { if (key === "excludes") { errors.push(ts.createDiagnosticForNodeInSourceFile(sourceFile, keyNode, ts.Diagnostics.Unknown_option_excludes_Did_you_mean_exclude)); } if (ts.find(commandOptionsWithoutBuild, function (opt) { return opt.name === key; })) { rootCompilerOptions = ts.append(rootCompilerOptions, keyNode); } } }; var json = convertConfigFileToObject(sourceFile, errors, /*reportOptionsErrors*/ true, optionsIterator); if (!typeAcquisition) { if (typingOptionstypeAcquisition) { typeAcquisition = (typingOptionstypeAcquisition.enableAutoDiscovery !== undefined) ? { enable: typingOptionstypeAcquisition.enableAutoDiscovery, include: typingOptionstypeAcquisition.include, exclude: typingOptionstypeAcquisition.exclude } : typingOptionstypeAcquisition; } else { typeAcquisition = getDefaultTypeAcquisition(configFileName); } } if (rootCompilerOptions && json && json.compilerOptions === undefined) { errors.push(ts.createDiagnosticForNodeInSourceFile(sourceFile, rootCompilerOptions[0], ts.Diagnostics._0_should_be_set_inside_the_compilerOptions_object_of_the_config_json_file, ts.getTextOfPropertyName(rootCompilerOptions[0]))); } return { raw: json, options: options, watchOptions: watchOptions, typeAcquisition: typeAcquisition, extendedConfigPath: extendedConfigPath }; } function getExtendsConfigPath(extendedConfig, host, basePath, errors, createDiagnostic) { extendedConfig = ts.normalizeSlashes(extendedConfig); if (ts.isRootedDiskPath(extendedConfig) || ts.startsWith(extendedConfig, "./") || ts.startsWith(extendedConfig, "../")) { var extendedConfigPath = ts.getNormalizedAbsolutePath(extendedConfig, basePath); if (!host.fileExists(extendedConfigPath) && !ts.endsWith(extendedConfigPath, ".json" /* Extension.Json */)) { extendedConfigPath = "".concat(extendedConfigPath, ".json"); if (!host.fileExists(extendedConfigPath)) { errors.push(createDiagnostic(ts.Diagnostics.File_0_not_found, extendedConfig)); return undefined; } } return extendedConfigPath; } // If the path isn't a rooted or relative path, resolve like a module var resolved = ts.nodeModuleNameResolver(extendedConfig, ts.combinePaths(basePath, "tsconfig.json"), { moduleResolution: ts.ModuleResolutionKind.NodeJs }, host, /*cache*/ undefined, /*projectRefs*/ undefined, /*lookupConfig*/ true); if (resolved.resolvedModule) { return resolved.resolvedModule.resolvedFileName; } errors.push(createDiagnostic(ts.Diagnostics.File_0_not_found, extendedConfig)); return undefined; } function getExtendedConfig(sourceFile, extendedConfigPath, host, resolutionStack, errors, extendedConfigCache) { var _a; var path = host.useCaseSensitiveFileNames ? extendedConfigPath : ts.toFileNameLowerCase(extendedConfigPath); var value; var extendedResult; var extendedConfig; if (extendedConfigCache && (value = extendedConfigCache.get(path))) { (extendedResult = value.extendedResult, extendedConfig = value.extendedConfig); } else { extendedResult = readJsonConfigFile(extendedConfigPath, function (path) { return host.readFile(path); }); if (!extendedResult.parseDiagnostics.length) { extendedConfig = parseConfig(/*json*/ undefined, extendedResult, host, ts.getDirectoryPath(extendedConfigPath), ts.getBaseFileName(extendedConfigPath), resolutionStack, errors, extendedConfigCache); } if (extendedConfigCache) { extendedConfigCache.set(path, { extendedResult: extendedResult, extendedConfig: extendedConfig }); } } if (sourceFile) { sourceFile.extendedSourceFiles = [extendedResult.fileName]; if (extendedResult.extendedSourceFiles) { (_a = sourceFile.extendedSourceFiles).push.apply(_a, extendedResult.extendedSourceFiles); } } if (extendedResult.parseDiagnostics.length) { errors.push.apply(errors, extendedResult.parseDiagnostics); return undefined; } return extendedConfig; } function convertCompileOnSaveOptionFromJson(jsonOption, basePath, errors) { if (!ts.hasProperty(jsonOption, ts.compileOnSaveCommandLineOption.name)) { return false; } var result = convertJsonOption(ts.compileOnSaveCommandLineOption, jsonOption.compileOnSave, basePath, errors); return typeof result === "boolean" && result; } function convertCompilerOptionsFromJson(jsonOptions, basePath, configFileName) { var errors = []; var options = convertCompilerOptionsFromJsonWorker(jsonOptions, basePath, errors, configFileName); return { options: options, errors: errors }; } ts.convertCompilerOptionsFromJson = convertCompilerOptionsFromJson; function convertTypeAcquisitionFromJson(jsonOptions, basePath, configFileName) { var errors = []; var options = convertTypeAcquisitionFromJsonWorker(jsonOptions, basePath, errors, configFileName); return { options: options, errors: errors }; } ts.convertTypeAcquisitionFromJson = convertTypeAcquisitionFromJson; function getDefaultCompilerOptions(configFileName) { var options = configFileName && ts.getBaseFileName(configFileName) === "jsconfig.json" ? { allowJs: true, maxNodeModuleJsDepth: 2, allowSyntheticDefaultImports: true, skipLibCheck: true, noEmit: true } : {}; return options; } function convertCompilerOptionsFromJsonWorker(jsonOptions, basePath, errors, configFileName) { var options = getDefaultCompilerOptions(configFileName); convertOptionsFromJson(getCommandLineCompilerOptionsMap(), jsonOptions, basePath, options, ts.compilerOptionsDidYouMeanDiagnostics, errors); if (configFileName) { options.configFilePath = ts.normalizeSlashes(configFileName); } return options; } function getDefaultTypeAcquisition(configFileName) { return { enable: !!configFileName && ts.getBaseFileName(configFileName) === "jsconfig.json", include: [], exclude: [] }; } function convertTypeAcquisitionFromJsonWorker(jsonOptions, basePath, errors, configFileName) { var options = getDefaultTypeAcquisition(configFileName); var typeAcquisition = convertEnableAutoDiscoveryToEnable(jsonOptions); convertOptionsFromJson(getCommandLineTypeAcquisitionMap(), typeAcquisition, basePath, options, typeAcquisitionDidYouMeanDiagnostics, errors); return options; } function convertWatchOptionsFromJsonWorker(jsonOptions, basePath, errors) { return convertOptionsFromJson(getCommandLineWatchOptionsMap(), jsonOptions, basePath, /*defaultOptions*/ undefined, watchOptionsDidYouMeanDiagnostics, errors); } function convertOptionsFromJson(optionsNameMap, jsonOptions, basePath, defaultOptions, diagnostics, errors) { if (!jsonOptions) { return; } for (var id in jsonOptions) { var opt = optionsNameMap.get(id); if (opt) { (defaultOptions || (defaultOptions = {}))[opt.name] = convertJsonOption(opt, jsonOptions[id], basePath, errors); } else { errors.push(createUnknownOptionError(id, diagnostics, ts.createCompilerDiagnostic)); } } return defaultOptions; } /*@internal*/ function convertJsonOption(opt, value, basePath, errors) { if (isCompilerOptionsValue(opt, value)) { var optType = opt.type; if (optType === "list" && ts.isArray(value)) { return convertJsonOptionOfListType(opt, value, basePath, errors); } else if (!ts.isString(optType)) { return convertJsonOptionOfCustomType(opt, value, errors); } var validatedValue = validateJsonOptionValue(opt, value, errors); return isNullOrUndefined(validatedValue) ? validatedValue : normalizeNonListOptionValue(opt, basePath, validatedValue); } else { errors.push(ts.createCompilerDiagnostic(ts.Diagnostics.Compiler_option_0_requires_a_value_of_type_1, opt.name, getCompilerOptionValueTypeString(opt))); } } ts.convertJsonOption = convertJsonOption; function normalizeOptionValue(option, basePath, value) { if (isNullOrUndefined(value)) return undefined; if (option.type === "list") { var listOption_1 = option; if (listOption_1.element.isFilePath || !ts.isString(listOption_1.element.type)) { return ts.filter(ts.map(value, function (v) { return normalizeOptionValue(listOption_1.element, basePath, v); }), function (v) { return listOption_1.listPreserveFalsyValues ? true : !!v; }); } return value; } else if (!ts.isString(option.type)) { return option.type.get(ts.isString(value) ? value.toLowerCase() : value); } return normalizeNonListOptionValue(option, basePath, value); } function normalizeNonListOptionValue(option, basePath, value) { if (option.isFilePath) { value = ts.getNormalizedAbsolutePath(value, basePath); if (value === "") { value = "."; } } return value; } function validateJsonOptionValue(opt, value, errors) { var _a; if (isNullOrUndefined(value)) return undefined; var d = (_a = opt.extraValidation) === null || _a === void 0 ? void 0 : _a.call(opt, value); if (!d) return value; errors.push(ts.createCompilerDiagnostic.apply(void 0, d)); return undefined; } function convertJsonOptionOfCustomType(opt, value, errors) { if (isNullOrUndefined(value)) return undefined; var key = value.toLowerCase(); var val = opt.type.get(key); if (val !== undefined) { return validateJsonOptionValue(opt, val, errors); } else { errors.push(createCompilerDiagnosticForInvalidCustomType(opt)); } } function convertJsonOptionOfListType(option, values, basePath, errors) { return ts.filter(ts.map(values, function (v) { return convertJsonOption(option.element, v, basePath, errors); }), function (v) { return option.listPreserveFalsyValues ? true : !!v; }); } /** * Tests for a path that ends in a recursive directory wildcard. * Matches **, \**, **\, and \**\, but not a**b. * * NOTE: used \ in place of / above to avoid issues with multiline comments. * * Breakdown: * (^|\/) # matches either the beginning of the string or a directory separator. * \*\* # matches the recursive directory wildcard "**". * \/?$ # matches an optional trailing directory separator at the end of the string. */ var invalidTrailingRecursionPattern = /(^|\/)\*\*\/?$/; /** * Matches the portion of a wildcard path that does not contain wildcards. * Matches \a of \a\*, or \a\b\c of \a\b\c\?\d. * * NOTE: used \ in place of / above to avoid issues with multiline comments. * * Breakdown: * ^ # matches the beginning of the string * [^*?]* # matches any number of non-wildcard characters * (?=\/[^/]*[*?]) # lookahead that matches a directory separator followed by * # a path component that contains at least one wildcard character (* or ?). */ var wildcardDirectoryPattern = /^[^*?]*(?=\/[^/]*[*?])/; /** * Gets the file names from the provided config file specs that contain, files, include, exclude and * other properties needed to resolve the file names * @param configFileSpecs The config file specs extracted with file names to include, wildcards to include/exclude and other details * @param basePath The base path for any relative file specifications. * @param options Compiler options. * @param host The host used to resolve files and directories. * @param extraFileExtensions optionaly file extra file extension information from host */ /* @internal */ function getFileNamesFromConfigSpecs(configFileSpecs, basePath, options, host, extraFileExtensions) { if (extraFileExtensions === void 0) { extraFileExtensions = ts.emptyArray; } basePath = ts.normalizePath(basePath); var keyMapper = ts.createGetCanonicalFileName(host.useCaseSensitiveFileNames); // Literal file names (provided via the "files" array in tsconfig.json) are stored in a // file map with a possibly case insensitive key. We use this map later when when including // wildcard paths. var literalFileMap = new ts.Map(); // Wildcard paths (provided via the "includes" array in tsconfig.json) are stored in a // file map with a possibly case insensitive key. We use this map to store paths matched // via wildcard, and to handle extension priority. var wildcardFileMap = new ts.Map(); // Wildcard paths of json files (provided via the "includes" array in tsconfig.json) are stored in a // file map with a possibly case insensitive key. We use this map to store paths matched // via wildcard of *.json kind var wildCardJsonFileMap = new ts.Map(); var validatedFilesSpec = configFileSpecs.validatedFilesSpec, validatedIncludeSpecs = configFileSpecs.validatedIncludeSpecs, validatedExcludeSpecs = configFileSpecs.validatedExcludeSpecs; // Rather than re-query this for each file and filespec, we query the supported extensions // once and store it on the expansion context. var supportedExtensions = ts.getSupportedExtensions(options, extraFileExtensions); var supportedExtensionsWithJsonIfResolveJsonModule = ts.getSupportedExtensionsWithJsonIfResolveJsonModule(options, supportedExtensions); // Literal files are always included verbatim. An "include" or "exclude" specification cannot // remove a literal file. if (validatedFilesSpec) { for (var _i = 0, validatedFilesSpec_1 = validatedFilesSpec; _i < validatedFilesSpec_1.length; _i++) { var fileName = validatedFilesSpec_1[_i]; var file = ts.getNormalizedAbsolutePath(fileName, basePath); literalFileMap.set(keyMapper(file), file); } } var jsonOnlyIncludeRegexes; if (validatedIncludeSpecs && validatedIncludeSpecs.length > 0) { var _loop_6 = function (file) { if (ts.fileExtensionIs(file, ".json" /* Extension.Json */)) { // Valid only if *.json specified if (!jsonOnlyIncludeRegexes) { var includes = validatedIncludeSpecs.filter(function (s) { return ts.endsWith(s, ".json" /* Extension.Json */); }); var includeFilePatterns = ts.map(ts.getRegularExpressionsForWildcards(includes, basePath, "files"), function (pattern) { return "^".concat(pattern, "$"); }); jsonOnlyIncludeRegexes = includeFilePatterns ? includeFilePatterns.map(function (pattern) { return ts.getRegexFromPattern(pattern, host.useCaseSensitiveFileNames); }) : ts.emptyArray; } var includeIndex = ts.findIndex(jsonOnlyIncludeRegexes, function (re) { return re.test(file); }); if (includeIndex !== -1) { var key_1 = keyMapper(file); if (!literalFileMap.has(key_1) && !wildCardJsonFileMap.has(key_1)) { wildCardJsonFileMap.set(key_1, file); } } return "continue"; } // If we have already included a literal or wildcard path with a // higher priority extension, we should skip this file. // // This handles cases where we may encounter both .ts and // .d.ts (or .js if "allowJs" is enabled) in the same // directory when they are compilation outputs. if (hasFileWithHigherPriorityExtension(file, literalFileMap, wildcardFileMap, supportedExtensions, keyMapper)) { return "continue"; } // We may have included a wildcard path with a lower priority // extension due to the user-defined order of entries in the // "include" array. If there is a lower priority extension in the // same directory, we should remove it. removeWildcardFilesWithLowerPriorityExtension(file, wildcardFileMap, supportedExtensions, keyMapper); var key = keyMapper(file); if (!literalFileMap.has(key) && !wildcardFileMap.has(key)) { wildcardFileMap.set(key, file); } }; for (var _a = 0, _b = host.readDirectory(basePath, ts.flatten(supportedExtensionsWithJsonIfResolveJsonModule), validatedExcludeSpecs, validatedIncludeSpecs, /*depth*/ undefined); _a < _b.length; _a++) { var file = _b[_a]; _loop_6(file); } } var literalFiles = ts.arrayFrom(literalFileMap.values()); var wildcardFiles = ts.arrayFrom(wildcardFileMap.values()); return literalFiles.concat(wildcardFiles, ts.arrayFrom(wildCardJsonFileMap.values())); } ts.getFileNamesFromConfigSpecs = getFileNamesFromConfigSpecs; /* @internal */ function isExcludedFile(pathToCheck, spec, basePath, useCaseSensitiveFileNames, currentDirectory) { var validatedFilesSpec = spec.validatedFilesSpec, validatedIncludeSpecs = spec.validatedIncludeSpecs, validatedExcludeSpecs = spec.validatedExcludeSpecs; if (!ts.length(validatedIncludeSpecs) || !ts.length(validatedExcludeSpecs)) return false; basePath = ts.normalizePath(basePath); var keyMapper = ts.createGetCanonicalFileName(useCaseSensitiveFileNames); if (validatedFilesSpec) { for (var _i = 0, validatedFilesSpec_2 = validatedFilesSpec; _i < validatedFilesSpec_2.length; _i++) { var fileName = validatedFilesSpec_2[_i]; if (keyMapper(ts.getNormalizedAbsolutePath(fileName, basePath)) === pathToCheck) return false; } } return matchesExcludeWorker(pathToCheck, validatedExcludeSpecs, useCaseSensitiveFileNames, currentDirectory, basePath); } ts.isExcludedFile = isExcludedFile; function invalidDotDotAfterRecursiveWildcard(s) { // We used to use the regex /(^|\/)\*\*\/(.*\/)?\.\.($|\/)/ to check for this case, but // in v8, that has polynomial performance because the recursive wildcard match - **/ - // can be matched in many arbitrary positions when multiple are present, resulting // in bad backtracking (and we don't care which is matched - just that some /.. segment // comes after some **/ segment). var wildcardIndex = ts.startsWith(s, "**/") ? 0 : s.indexOf("/**/"); if (wildcardIndex === -1) { return false; } var lastDotIndex = ts.endsWith(s, "/..") ? s.length : s.lastIndexOf("/../"); return lastDotIndex > wildcardIndex; } /* @internal */ function matchesExclude(pathToCheck, excludeSpecs, useCaseSensitiveFileNames, currentDirectory) { return matchesExcludeWorker(pathToCheck, ts.filter(excludeSpecs, function (spec) { return !invalidDotDotAfterRecursiveWildcard(spec); }), useCaseSensitiveFileNames, currentDirectory); } ts.matchesExclude = matchesExclude; function matchesExcludeWorker(pathToCheck, excludeSpecs, useCaseSensitiveFileNames, currentDirectory, basePath) { var excludePattern = ts.getRegularExpressionForWildcard(excludeSpecs, ts.combinePaths(ts.normalizePath(currentDirectory), basePath), "exclude"); var excludeRegex = excludePattern && ts.getRegexFromPattern(excludePattern, useCaseSensitiveFileNames); if (!excludeRegex) return false; if (excludeRegex.test(pathToCheck)) return true; return !ts.hasExtension(pathToCheck) && excludeRegex.test(ts.ensureTrailingDirectorySeparator(pathToCheck)); } function validateSpecs(specs, errors, disallowTrailingRecursion, jsonSourceFile, specKey) { return specs.filter(function (spec) { if (!ts.isString(spec)) return false; var diag = specToDiagnostic(spec, disallowTrailingRecursion); if (diag !== undefined) { errors.push(createDiagnostic.apply(void 0, diag)); } return diag === undefined; }); function createDiagnostic(message, spec) { var element = ts.getTsConfigPropArrayElementValue(jsonSourceFile, specKey, spec); return element ? ts.createDiagnosticForNodeInSourceFile(jsonSourceFile, element, message, spec) : ts.createCompilerDiagnostic(message, spec); } } function specToDiagnostic(spec, disallowTrailingRecursion) { if (disallowTrailingRecursion && invalidTrailingRecursionPattern.test(spec)) { return [ts.Diagnostics.File_specification_cannot_end_in_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0, spec]; } else if (invalidDotDotAfterRecursiveWildcard(spec)) { return [ts.Diagnostics.File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0, spec]; } } /** * Gets directories in a set of include patterns that should be watched for changes. */ function getWildcardDirectories(_a, path, useCaseSensitiveFileNames) { var include = _a.validatedIncludeSpecs, exclude = _a.validatedExcludeSpecs; // We watch a directory recursively if it contains a wildcard anywhere in a directory segment // of the pattern: // // /a/b/**/d - Watch /a/b recursively to catch changes to any d in any subfolder recursively // /a/b/*/d - Watch /a/b recursively to catch any d in any immediate subfolder, even if a new subfolder is added // /a/b - Watch /a/b recursively to catch changes to anything in any recursive subfoler // // We watch a directory without recursion if it contains a wildcard in the file segment of // the pattern: // // /a/b/* - Watch /a/b directly to catch any new file // /a/b/a?z - Watch /a/b directly to catch any new file matching a?z var rawExcludeRegex = ts.getRegularExpressionForWildcard(exclude, path, "exclude"); var excludeRegex = rawExcludeRegex && new RegExp(rawExcludeRegex, useCaseSensitiveFileNames ? "" : "i"); var wildcardDirectories = {}; if (include !== undefined) { var recursiveKeys = []; for (var _i = 0, include_1 = include; _i < include_1.length; _i++) { var file = include_1[_i]; var spec = ts.normalizePath(ts.combinePaths(path, file)); if (excludeRegex && excludeRegex.test(spec)) { continue; } var match = getWildcardDirectoryFromSpec(spec, useCaseSensitiveFileNames); if (match) { var key = match.key, flags = match.flags; var existingFlags = wildcardDirectories[key]; if (existingFlags === undefined || existingFlags < flags) { wildcardDirectories[key] = flags; if (flags === 1 /* WatchDirectoryFlags.Recursive */) { recursiveKeys.push(key); } } } } // Remove any subpaths under an existing recursively watched directory. for (var key in wildcardDirectories) { if (ts.hasProperty(wildcardDirectories, key)) { for (var _b = 0, recursiveKeys_1 = recursiveKeys; _b < recursiveKeys_1.length; _b++) { var recursiveKey = recursiveKeys_1[_b]; if (key !== recursiveKey && ts.containsPath(recursiveKey, key, path, !useCaseSensitiveFileNames)) { delete wildcardDirectories[key]; } } } } } return wildcardDirectories; } function getWildcardDirectoryFromSpec(spec, useCaseSensitiveFileNames) { var match = wildcardDirectoryPattern.exec(spec); if (match) { // We check this with a few `indexOf` calls because 3 `indexOf`/`lastIndexOf` calls is // less algorithmically complex (roughly O(3n) worst-case) than the regex we used to use, // \/[^/]*?[*?][^/]*\/ which was polynominal in v8, since arbitrary sequences of wildcard // characters could match any of the central patterns, resulting in bad backtracking. var questionWildcardIndex = spec.indexOf("?"); var starWildcardIndex = spec.indexOf("*"); var lastDirectorySeperatorIndex = spec.lastIndexOf(ts.directorySeparator); return { key: useCaseSensitiveFileNames ? match[0] : ts.toFileNameLowerCase(match[0]), flags: (questionWildcardIndex !== -1 && questionWildcardIndex < lastDirectorySeperatorIndex) || (starWildcardIndex !== -1 && starWildcardIndex < lastDirectorySeperatorIndex) ? 1 /* WatchDirectoryFlags.Recursive */ : 0 /* WatchDirectoryFlags.None */ }; } if (ts.isImplicitGlob(spec.substring(spec.lastIndexOf(ts.directorySeparator) + 1))) { return { key: ts.removeTrailingDirectorySeparator(useCaseSensitiveFileNames ? spec : ts.toFileNameLowerCase(spec)), flags: 1 /* WatchDirectoryFlags.Recursive */ }; } return undefined; } /** * Determines whether a literal or wildcard file has already been included that has a higher * extension priority. * * @param file The path to the file. */ function hasFileWithHigherPriorityExtension(file, literalFiles, wildcardFiles, extensions, keyMapper) { var extensionGroup = ts.forEach(extensions, function (group) { return ts.fileExtensionIsOneOf(file, group) ? group : undefined; }); if (!extensionGroup) { return false; } for (var _i = 0, extensionGroup_1 = extensionGroup; _i < extensionGroup_1.length; _i++) { var ext = extensionGroup_1[_i]; if (ts.fileExtensionIs(file, ext)) { return false; } var higherPriorityPath = keyMapper(ts.changeExtension(file, ext)); if (literalFiles.has(higherPriorityPath) || wildcardFiles.has(higherPriorityPath)) { if (ext === ".d.ts" /* Extension.Dts */ && (ts.fileExtensionIs(file, ".js" /* Extension.Js */) || ts.fileExtensionIs(file, ".jsx" /* Extension.Jsx */))) { // LEGACY BEHAVIOR: An off-by-one bug somewhere in the extension priority system for wildcard module loading allowed declaration // files to be loaded alongside their js(x) counterparts. We regard this as generally undesirable, but retain the behavior to // prevent breakage. continue; } return true; } } return false; } /** * Removes files included via wildcard expansion with a lower extension priority that have * already been included. * * @param file The path to the file. */ function removeWildcardFilesWithLowerPriorityExtension(file, wildcardFiles, extensions, keyMapper) { var extensionGroup = ts.forEach(extensions, function (group) { return ts.fileExtensionIsOneOf(file, group) ? group : undefined; }); if (!extensionGroup) { return; } for (var i = extensionGroup.length - 1; i >= 0; i--) { var ext = extensionGroup[i]; if (ts.fileExtensionIs(file, ext)) { return; } var lowerPriorityPath = keyMapper(ts.changeExtension(file, ext)); wildcardFiles.delete(lowerPriorityPath); } } /** * Produces a cleaned version of compiler options with personally identifying info (aka, paths) removed. * Also converts enum values back to strings. */ /* @internal */ function convertCompilerOptionsForTelemetry(opts) { var out = {}; for (var key in opts) { if (opts.hasOwnProperty(key)) { var type = getOptionFromName(key); if (type !== undefined) { // Ignore unknown options out[key] = getOptionValueWithEmptyStrings(opts[key], type); } } } return out; } ts.convertCompilerOptionsForTelemetry = convertCompilerOptionsForTelemetry; function getOptionValueWithEmptyStrings(value, option) { switch (option.type) { case "object": // "paths". Can't get any useful information from the value since we blank out strings, so just return "". return ""; case "string": // Could be any arbitrary string -- use empty string instead. return ""; case "number": // Allow numbers, but be sure to check it's actually a number. return typeof value === "number" ? value : ""; case "boolean": return typeof value === "boolean" ? value : ""; case "list": var elementType_1 = option.element; return ts.isArray(value) ? value.map(function (v) { return getOptionValueWithEmptyStrings(v, elementType_1); }) : ""; default: return ts.forEachEntry(option.type, function (optionEnumValue, optionStringValue) { if (optionEnumValue === value) { return optionStringValue; } }); // TODO: GH#18217 } } function getDefaultValueForOption(option) { switch (option.type) { case "number": return 1; case "boolean": return true; case "string": var defaultValue = option.defaultValueDescription; return option.isFilePath ? "./".concat(defaultValue && typeof defaultValue === "string" ? defaultValue : "") : ""; case "list": return []; case "object": return {}; default: var iterResult = option.type.keys().next(); if (!iterResult.done) return iterResult.value; return ts.Debug.fail("Expected 'option.type' to have entries."); } } })(ts || (ts = {})); var ts; (function (ts) { function trace(host) { host.trace(ts.formatMessage.apply(undefined, arguments)); } ts.trace = trace; /* @internal */ function isTraceEnabled(compilerOptions, host) { return !!compilerOptions.traceResolution && host.trace !== undefined; } ts.isTraceEnabled = isTraceEnabled; function withPackageId(packageInfo, r) { var packageId; if (r && packageInfo) { var packageJsonContent = packageInfo.packageJsonContent; if (typeof packageJsonContent.name === "string" && typeof packageJsonContent.version === "string") { packageId = { name: packageJsonContent.name, subModuleName: r.path.slice(packageInfo.packageDirectory.length + ts.directorySeparator.length), version: packageJsonContent.version }; } } return r && { path: r.path, extension: r.ext, packageId: packageId }; } function noPackageId(r) { return withPackageId(/*packageInfo*/ undefined, r); } function removeIgnoredPackageId(r) { if (r) { ts.Debug.assert(r.packageId === undefined); return { path: r.path, ext: r.extension }; } } /** * Kinds of file that we are currently looking for. * Typically there is one pass with Extensions.TypeScript, then a second pass with Extensions.JavaScript. */ var Extensions; (function (Extensions) { Extensions[Extensions["TypeScript"] = 0] = "TypeScript"; Extensions[Extensions["JavaScript"] = 1] = "JavaScript"; Extensions[Extensions["Json"] = 2] = "Json"; Extensions[Extensions["TSConfig"] = 3] = "TSConfig"; Extensions[Extensions["DtsOnly"] = 4] = "DtsOnly"; Extensions[Extensions["TsOnly"] = 5] = "TsOnly"; })(Extensions || (Extensions = {})); /** Used with `Extensions.DtsOnly` to extract the path from TypeScript results. */ function resolvedTypeScriptOnly(resolved) { if (!resolved) { return undefined; } ts.Debug.assert(ts.extensionIsTS(resolved.extension)); return { fileName: resolved.path, packageId: resolved.packageId }; } function createResolvedModuleWithFailedLookupLocations(resolved, isExternalLibraryImport, failedLookupLocations, diagnostics, resultFromCache) { var _a; if (resultFromCache) { (_a = resultFromCache.failedLookupLocations).push.apply(_a, failedLookupLocations); return resultFromCache; } return { resolvedModule: resolved && { resolvedFileName: resolved.path, originalPath: resolved.originalPath === true ? undefined : resolved.originalPath, extension: resolved.extension, isExternalLibraryImport: isExternalLibraryImport, packageId: resolved.packageId }, failedLookupLocations: failedLookupLocations, resolutionDiagnostics: diagnostics }; } function readPackageJsonField(jsonContent, fieldName, typeOfTag, state) { if (!ts.hasProperty(jsonContent, fieldName)) { if (state.traceEnabled) { trace(state.host, ts.Diagnostics.package_json_does_not_have_a_0_field, fieldName); } return; } var value = jsonContent[fieldName]; if (typeof value !== typeOfTag || value === null) { // eslint-disable-line no-null/no-null if (state.traceEnabled) { // eslint-disable-next-line no-null/no-null trace(state.host, ts.Diagnostics.Expected_type_of_0_field_in_package_json_to_be_1_got_2, fieldName, typeOfTag, value === null ? "null" : typeof value); } return; } return value; } function readPackageJsonPathField(jsonContent, fieldName, baseDirectory, state) { var fileName = readPackageJsonField(jsonContent, fieldName, "string", state); if (fileName === undefined) { return; } if (!fileName) { if (state.traceEnabled) { trace(state.host, ts.Diagnostics.package_json_had_a_falsy_0_field, fieldName); } return; } var path = ts.normalizePath(ts.combinePaths(baseDirectory, fileName)); if (state.traceEnabled) { trace(state.host, ts.Diagnostics.package_json_has_0_field_1_that_references_2, fieldName, fileName, path); } return path; } function readPackageJsonTypesFields(jsonContent, baseDirectory, state) { return readPackageJsonPathField(jsonContent, "typings", baseDirectory, state) || readPackageJsonPathField(jsonContent, "types", baseDirectory, state); } function readPackageJsonTSConfigField(jsonContent, baseDirectory, state) { return readPackageJsonPathField(jsonContent, "tsconfig", baseDirectory, state); } function readPackageJsonMainField(jsonContent, baseDirectory, state) { return readPackageJsonPathField(jsonContent, "main", baseDirectory, state); } function readPackageJsonTypesVersionsField(jsonContent, state) { var typesVersions = readPackageJsonField(jsonContent, "typesVersions", "object", state); if (typesVersions === undefined) return; if (state.traceEnabled) { trace(state.host, ts.Diagnostics.package_json_has_a_typesVersions_field_with_version_specific_path_mappings); } return typesVersions; } function readPackageJsonTypesVersionPaths(jsonContent, state) { var typesVersions = readPackageJsonTypesVersionsField(jsonContent, state); if (typesVersions === undefined) return; if (state.traceEnabled) { for (var key in typesVersions) { if (ts.hasProperty(typesVersions, key) && !ts.VersionRange.tryParse(key)) { trace(state.host, ts.Diagnostics.package_json_has_a_typesVersions_entry_0_that_is_not_a_valid_semver_range, key); } } } var result = getPackageJsonTypesVersionsPaths(typesVersions); if (!result) { if (state.traceEnabled) { trace(state.host, ts.Diagnostics.package_json_does_not_have_a_typesVersions_entry_that_matches_version_0, ts.versionMajorMinor); } return; } var bestVersionKey = result.version, bestVersionPaths = result.paths; if (typeof bestVersionPaths !== "object") { if (state.traceEnabled) { trace(state.host, ts.Diagnostics.Expected_type_of_0_field_in_package_json_to_be_1_got_2, "typesVersions['".concat(bestVersionKey, "']"), "object", typeof bestVersionPaths); } return; } return result; } var typeScriptVersion; /* @internal */ function getPackageJsonTypesVersionsPaths(typesVersions) { if (!typeScriptVersion) typeScriptVersion = new ts.Version(ts.version); for (var key in typesVersions) { if (!ts.hasProperty(typesVersions, key)) continue; var keyRange = ts.VersionRange.tryParse(key); if (keyRange === undefined) { continue; } // return the first entry whose range matches the current compiler version. if (keyRange.test(typeScriptVersion)) { return { version: key, paths: typesVersions[key] }; } } } ts.getPackageJsonTypesVersionsPaths = getPackageJsonTypesVersionsPaths; function getEffectiveTypeRoots(options, host) { if (options.typeRoots) { return options.typeRoots; } var currentDirectory; if (options.configFilePath) { currentDirectory = ts.getDirectoryPath(options.configFilePath); } else if (host.getCurrentDirectory) { currentDirectory = host.getCurrentDirectory(); } if (currentDirectory !== undefined) { return getDefaultTypeRoots(currentDirectory, host); } } ts.getEffectiveTypeRoots = getEffectiveTypeRoots; /** * Returns the path to every node_modules/@types directory from some ancestor directory. * Returns undefined if there are none. */ function getDefaultTypeRoots(currentDirectory, host) { if (!host.directoryExists) { return [ts.combinePaths(currentDirectory, nodeModulesAtTypes)]; // And if it doesn't exist, tough. } var typeRoots; ts.forEachAncestorDirectory(ts.normalizePath(currentDirectory), function (directory) { var atTypes = ts.combinePaths(directory, nodeModulesAtTypes); if (host.directoryExists(atTypes)) { (typeRoots || (typeRoots = [])).push(atTypes); } return undefined; }); return typeRoots; } var nodeModulesAtTypes = ts.combinePaths("node_modules", "@types"); function arePathsEqual(path1, path2, host) { var useCaseSensitiveFileNames = typeof host.useCaseSensitiveFileNames === "function" ? host.useCaseSensitiveFileNames() : host.useCaseSensitiveFileNames; return ts.comparePaths(path1, path2, !useCaseSensitiveFileNames) === 0 /* Comparison.EqualTo */; } /** * @param {string | undefined} containingFile - file that contains type reference directive, can be undefined if containing file is unknown. * This is possible in case if resolution is performed for directives specified via 'types' parameter. In this case initial path for secondary lookups * is assumed to be the same as root directory of the project. */ function resolveTypeReferenceDirective(typeReferenceDirectiveName, containingFile, options, host, redirectedReference, cache, resolutionMode) { ts.Debug.assert(typeof typeReferenceDirectiveName === "string", "Non-string value passed to `ts.resolveTypeReferenceDirective`, likely by a wrapping package working with an outdated `resolveTypeReferenceDirectives` signature. This is probably not a problem in TS itself."); var traceEnabled = isTraceEnabled(options, host); if (redirectedReference) { options = redirectedReference.commandLine.options; } var containingDirectory = containingFile ? ts.getDirectoryPath(containingFile) : undefined; var perFolderCache = containingDirectory ? cache && cache.getOrCreateCacheForDirectory(containingDirectory, redirectedReference) : undefined; var result = perFolderCache && perFolderCache.get(typeReferenceDirectiveName, /*mode*/ resolutionMode); if (result) { if (traceEnabled) { trace(host, ts.Diagnostics.Resolving_type_reference_directive_0_containing_file_1, typeReferenceDirectiveName, containingFile); if (redirectedReference) trace(host, ts.Diagnostics.Using_compiler_options_of_project_reference_redirect_0, redirectedReference.sourceFile.fileName); trace(host, ts.Diagnostics.Resolution_for_type_reference_directive_0_was_found_in_cache_from_location_1, typeReferenceDirectiveName, containingDirectory); traceResult(result); } return result; } var typeRoots = getEffectiveTypeRoots(options, host); if (traceEnabled) { if (containingFile === undefined) { if (typeRoots === undefined) { trace(host, ts.Diagnostics.Resolving_type_reference_directive_0_containing_file_not_set_root_directory_not_set, typeReferenceDirectiveName); } else { trace(host, ts.Diagnostics.Resolving_type_reference_directive_0_containing_file_not_set_root_directory_1, typeReferenceDirectiveName, typeRoots); } } else { if (typeRoots === undefined) { trace(host, ts.Diagnostics.Resolving_type_reference_directive_0_containing_file_1_root_directory_not_set, typeReferenceDirectiveName, containingFile); } else { trace(host, ts.Diagnostics.Resolving_type_reference_directive_0_containing_file_1_root_directory_2, typeReferenceDirectiveName, containingFile, typeRoots); } } if (redirectedReference) { trace(host, ts.Diagnostics.Using_compiler_options_of_project_reference_redirect_0, redirectedReference.sourceFile.fileName); } } var failedLookupLocations = []; var features = getDefaultNodeResolutionFeatures(options); // Unlike `import` statements, whose mode-calculating APIs are all guaranteed to return `undefined` if we're in an un-mode-ed module resolution // setting, type references will return their target mode regardless of options because of how the parser works, so we guard against the mode being // set in a non-modal module resolution setting here. Do note that our behavior is not particularly well defined when these mode-overriding imports // are present in a non-modal project; while in theory we'd like to either ignore the mode or provide faithful modern resolution, depending on what we feel is best, // in practice, not every cache has the options available to intelligently make the choice to ignore the mode request, and it's unclear how modern "faithful modern // resolution" should be (`node16`? `nodenext`?). As such, witnessing a mode-overriding triple-slash reference in a non-modal module resolution // context should _probably_ be an error - and that should likely be handled by the `Program` (which is what we do). if (resolutionMode === ts.ModuleKind.ESNext && (ts.getEmitModuleResolutionKind(options) === ts.ModuleResolutionKind.Node16 || ts.getEmitModuleResolutionKind(options) === ts.ModuleResolutionKind.NodeNext)) { features |= NodeResolutionFeatures.EsmMode; } var conditions = features & NodeResolutionFeatures.Exports ? features & NodeResolutionFeatures.EsmMode ? ["node", "import", "types"] : ["node", "require", "types"] : []; var diagnostics = []; var moduleResolutionState = { compilerOptions: options, host: host, traceEnabled: traceEnabled, failedLookupLocations: failedLookupLocations, packageJsonInfoCache: cache, features: features, conditions: conditions, requestContainingDirectory: containingDirectory, reportDiagnostic: function (diag) { return void diagnostics.push(diag); }, }; var resolved = primaryLookup(); var primary = true; if (!resolved) { resolved = secondaryLookup(); primary = false; } var resolvedTypeReferenceDirective; if (resolved) { var fileName = resolved.fileName, packageId = resolved.packageId; var resolvedFileName = options.preserveSymlinks ? fileName : realPath(fileName, host, traceEnabled); resolvedTypeReferenceDirective = { primary: primary, resolvedFileName: resolvedFileName, originalPath: arePathsEqual(fileName, resolvedFileName, host) ? undefined : fileName, packageId: packageId, isExternalLibraryImport: pathContainsNodeModules(fileName), }; } result = { resolvedTypeReferenceDirective: resolvedTypeReferenceDirective, failedLookupLocations: failedLookupLocations, resolutionDiagnostics: diagnostics }; perFolderCache === null || perFolderCache === void 0 ? void 0 : perFolderCache.set(typeReferenceDirectiveName, /*mode*/ resolutionMode, result); if (traceEnabled) traceResult(result); return result; function traceResult(result) { var _a; if (!((_a = result.resolvedTypeReferenceDirective) === null || _a === void 0 ? void 0 : _a.resolvedFileName)) { trace(host, ts.Diagnostics.Type_reference_directive_0_was_not_resolved, typeReferenceDirectiveName); } else if (result.resolvedTypeReferenceDirective.packageId) { trace(host, ts.Diagnostics.Type_reference_directive_0_was_successfully_resolved_to_1_with_Package_ID_2_primary_Colon_3, typeReferenceDirectiveName, result.resolvedTypeReferenceDirective.resolvedFileName, ts.packageIdToString(result.resolvedTypeReferenceDirective.packageId), result.resolvedTypeReferenceDirective.primary); } else { trace(host, ts.Diagnostics.Type_reference_directive_0_was_successfully_resolved_to_1_primary_Colon_2, typeReferenceDirectiveName, result.resolvedTypeReferenceDirective.resolvedFileName, result.resolvedTypeReferenceDirective.primary); } } function primaryLookup() { // Check primary library paths if (typeRoots && typeRoots.length) { if (traceEnabled) { trace(host, ts.Diagnostics.Resolving_with_primary_search_path_0, typeRoots.join(", ")); } return ts.firstDefined(typeRoots, function (typeRoot) { var candidate = ts.combinePaths(typeRoot, typeReferenceDirectiveName); var candidateDirectory = ts.getDirectoryPath(candidate); var directoryExists = ts.directoryProbablyExists(candidateDirectory, host); if (!directoryExists && traceEnabled) { trace(host, ts.Diagnostics.Directory_0_does_not_exist_skipping_all_lookups_in_it, candidateDirectory); } return resolvedTypeScriptOnly(loadNodeModuleFromDirectory(Extensions.DtsOnly, candidate, !directoryExists, moduleResolutionState)); }); } else { if (traceEnabled) { trace(host, ts.Diagnostics.Root_directory_cannot_be_determined_skipping_primary_search_paths); } } } function secondaryLookup() { var initialLocationForSecondaryLookup = containingFile && ts.getDirectoryPath(containingFile); if (initialLocationForSecondaryLookup !== undefined) { // check secondary locations if (traceEnabled) { trace(host, ts.Diagnostics.Looking_up_in_node_modules_folder_initial_location_0, initialLocationForSecondaryLookup); } var result_4; if (!ts.isExternalModuleNameRelative(typeReferenceDirectiveName)) { var searchResult = loadModuleFromNearestNodeModulesDirectory(Extensions.DtsOnly, typeReferenceDirectiveName, initialLocationForSecondaryLookup, moduleResolutionState, /*cache*/ undefined, /*redirectedReference*/ undefined); result_4 = searchResult && searchResult.value; } else { var candidate = normalizePathForCJSResolution(initialLocationForSecondaryLookup, typeReferenceDirectiveName).path; result_4 = nodeLoadModuleByRelativeName(Extensions.DtsOnly, candidate, /*onlyRecordFailures*/ false, moduleResolutionState, /*considerPackageJson*/ true); } return resolvedTypeScriptOnly(result_4); } else { if (traceEnabled) { trace(host, ts.Diagnostics.Containing_file_is_not_specified_and_root_directory_cannot_be_determined_skipping_lookup_in_node_modules_folder); } } } } ts.resolveTypeReferenceDirective = resolveTypeReferenceDirective; function getDefaultNodeResolutionFeatures(options) { return ts.getEmitModuleResolutionKind(options) === ts.ModuleResolutionKind.Node16 ? NodeResolutionFeatures.Node16Default : ts.getEmitModuleResolutionKind(options) === ts.ModuleResolutionKind.NodeNext ? NodeResolutionFeatures.NodeNextDefault : NodeResolutionFeatures.None; } /** * @internal * Does not try `@types/${packageName}` - use a second pass if needed. */ function resolvePackageNameToPackageJson(packageName, containingDirectory, options, host, cache) { var moduleResolutionState = { compilerOptions: options, host: host, traceEnabled: isTraceEnabled(options, host), failedLookupLocations: [], packageJsonInfoCache: cache === null || cache === void 0 ? void 0 : cache.getPackageJsonInfoCache(), conditions: ts.emptyArray, features: NodeResolutionFeatures.None, requestContainingDirectory: containingDirectory, reportDiagnostic: ts.noop }; return ts.forEachAncestorDirectory(containingDirectory, function (ancestorDirectory) { if (ts.getBaseFileName(ancestorDirectory) !== "node_modules") { var nodeModulesFolder = ts.combinePaths(ancestorDirectory, "node_modules"); var candidate = ts.combinePaths(nodeModulesFolder, packageName); return getPackageJsonInfo(candidate, /*onlyRecordFailures*/ false, moduleResolutionState); } }); } ts.resolvePackageNameToPackageJson = resolvePackageNameToPackageJson; /** * Given a set of options, returns the set of type directive names * that should be included for this program automatically. * This list could either come from the config file, * or from enumerating the types root + initial secondary types lookup location. * More type directives might appear in the program later as a result of loading actual source files; * this list is only the set of defaults that are implicitly included. */ function getAutomaticTypeDirectiveNames(options, host) { // Use explicit type list from tsconfig.json if (options.types) { return options.types; } // Walk the primary type lookup locations var result = []; if (host.directoryExists && host.getDirectories) { var typeRoots = getEffectiveTypeRoots(options, host); if (typeRoots) { for (var _i = 0, typeRoots_1 = typeRoots; _i < typeRoots_1.length; _i++) { var root = typeRoots_1[_i]; if (host.directoryExists(root)) { for (var _a = 0, _b = host.getDirectories(root); _a < _b.length; _a++) { var typeDirectivePath = _b[_a]; var normalized = ts.normalizePath(typeDirectivePath); var packageJsonPath = ts.combinePaths(root, normalized, "package.json"); // `types-publisher` sometimes creates packages with `"typings": null` for packages that don't provide their own types. // See `createNotNeededPackageJSON` in the types-publisher` repo. // eslint-disable-next-line no-null/no-null var isNotNeededPackage = host.fileExists(packageJsonPath) && ts.readJson(packageJsonPath, host).typings === null; if (!isNotNeededPackage) { var baseFileName = ts.getBaseFileName(normalized); // At this stage, skip results with leading dot. if (baseFileName.charCodeAt(0) !== 46 /* CharacterCodes.dot */) { // Return just the type directive names result.push(baseFileName); } } } } } } } return result; } ts.getAutomaticTypeDirectiveNames = getAutomaticTypeDirectiveNames; /*@internal*/ function createCacheWithRedirects(options) { var ownMap = new ts.Map(); var redirectsMap = new ts.Map(); return { getOwnMap: getOwnMap, redirectsMap: redirectsMap, getOrCreateMapOfCacheRedirects: getOrCreateMapOfCacheRedirects, clear: clear, setOwnOptions: setOwnOptions, setOwnMap: setOwnMap }; function getOwnMap() { return ownMap; } function setOwnOptions(newOptions) { options = newOptions; } function setOwnMap(newOwnMap) { ownMap = newOwnMap; } function getOrCreateMapOfCacheRedirects(redirectedReference) { if (!redirectedReference) { return ownMap; } var path = redirectedReference.sourceFile.path; var redirects = redirectsMap.get(path); if (!redirects) { // Reuse map if redirected reference map uses same resolution redirects = !options || ts.optionsHaveModuleResolutionChanges(options, redirectedReference.commandLine.options) ? new ts.Map() : ownMap; redirectsMap.set(path, redirects); } return redirects; } function clear() { ownMap.clear(); redirectsMap.clear(); } } ts.createCacheWithRedirects = createCacheWithRedirects; function createPackageJsonInfoCache(currentDirectory, getCanonicalFileName) { var cache; return { getPackageJsonInfo: getPackageJsonInfo, setPackageJsonInfo: setPackageJsonInfo, clear: clear, entries: entries }; function getPackageJsonInfo(packageJsonPath) { return cache === null || cache === void 0 ? void 0 : cache.get(ts.toPath(packageJsonPath, currentDirectory, getCanonicalFileName)); } function setPackageJsonInfo(packageJsonPath, info) { (cache || (cache = new ts.Map())).set(ts.toPath(packageJsonPath, currentDirectory, getCanonicalFileName), info); } function clear() { cache = undefined; } function entries() { var iter = cache === null || cache === void 0 ? void 0 : cache.entries(); return iter ? ts.arrayFrom(iter) : []; } } function getOrCreateCache(cacheWithRedirects, redirectedReference, key, create) { var cache = cacheWithRedirects.getOrCreateMapOfCacheRedirects(redirectedReference); var result = cache.get(key); if (!result) { result = create(); cache.set(key, result); } return result; } function updateRedirectsMap(options, directoryToModuleNameMap, moduleNameToDirectoryMap) { if (!options.configFile) return; if (directoryToModuleNameMap.redirectsMap.size === 0) { // The own map will be for projectCompilerOptions ts.Debug.assert(!moduleNameToDirectoryMap || moduleNameToDirectoryMap.redirectsMap.size === 0); ts.Debug.assert(directoryToModuleNameMap.getOwnMap().size === 0); ts.Debug.assert(!moduleNameToDirectoryMap || moduleNameToDirectoryMap.getOwnMap().size === 0); directoryToModuleNameMap.redirectsMap.set(options.configFile.path, directoryToModuleNameMap.getOwnMap()); moduleNameToDirectoryMap === null || moduleNameToDirectoryMap === void 0 ? void 0 : moduleNameToDirectoryMap.redirectsMap.set(options.configFile.path, moduleNameToDirectoryMap.getOwnMap()); } else { // Set correct own map ts.Debug.assert(!moduleNameToDirectoryMap || moduleNameToDirectoryMap.redirectsMap.size > 0); var ref = { sourceFile: options.configFile, commandLine: { options: options } }; directoryToModuleNameMap.setOwnMap(directoryToModuleNameMap.getOrCreateMapOfCacheRedirects(ref)); moduleNameToDirectoryMap === null || moduleNameToDirectoryMap === void 0 ? void 0 : moduleNameToDirectoryMap.setOwnMap(moduleNameToDirectoryMap.getOrCreateMapOfCacheRedirects(ref)); } directoryToModuleNameMap.setOwnOptions(options); moduleNameToDirectoryMap === null || moduleNameToDirectoryMap === void 0 ? void 0 : moduleNameToDirectoryMap.setOwnOptions(options); } function createPerDirectoryResolutionCache(currentDirectory, getCanonicalFileName, directoryToModuleNameMap) { return { getOrCreateCacheForDirectory: getOrCreateCacheForDirectory, clear: clear, update: update, }; function clear() { directoryToModuleNameMap.clear(); } function update(options) { updateRedirectsMap(options, directoryToModuleNameMap); } function getOrCreateCacheForDirectory(directoryName, redirectedReference) { var path = ts.toPath(directoryName, currentDirectory, getCanonicalFileName); return getOrCreateCache(directoryToModuleNameMap, redirectedReference, path, function () { return createModeAwareCache(); }); } } /* @internal */ function createModeAwareCache() { var underlying = new ts.Map(); var memoizedReverseKeys = new ts.Map(); var cache = { get: function (specifier, mode) { return underlying.get(getUnderlyingCacheKey(specifier, mode)); }, set: function (specifier, mode, value) { underlying.set(getUnderlyingCacheKey(specifier, mode), value); return cache; }, delete: function (specifier, mode) { underlying.delete(getUnderlyingCacheKey(specifier, mode)); return cache; }, has: function (specifier, mode) { return underlying.has(getUnderlyingCacheKey(specifier, mode)); }, forEach: function (cb) { return underlying.forEach(function (elem, key) { var _a = memoizedReverseKeys.get(key), specifier = _a[0], mode = _a[1]; return cb(elem, specifier, mode); }); }, size: function () { return underlying.size; } }; return cache; function getUnderlyingCacheKey(specifier, mode) { var result = mode === undefined ? specifier : "".concat(mode, "|").concat(specifier); memoizedReverseKeys.set(result, [specifier, mode]); return result; } } ts.createModeAwareCache = createModeAwareCache; /* @internal */ function zipToModeAwareCache(file, keys, values) { ts.Debug.assert(keys.length === values.length); var map = createModeAwareCache(); for (var i = 0; i < keys.length; ++i) { var entry = keys[i]; // We lower-case all type references because npm automatically lowercases all packages. See GH#9824. var name = !ts.isString(entry) ? entry.fileName.toLowerCase() : entry; var mode = !ts.isString(entry) ? entry.resolutionMode || file.impliedNodeFormat : ts.getModeForResolutionAtIndex(file, i); map.set(name, mode, values[i]); } return map; } ts.zipToModeAwareCache = zipToModeAwareCache; function createModuleResolutionCache(currentDirectory, getCanonicalFileName, options, directoryToModuleNameMap, moduleNameToDirectoryMap) { var preDirectoryResolutionCache = createPerDirectoryResolutionCache(currentDirectory, getCanonicalFileName, directoryToModuleNameMap || (directoryToModuleNameMap = createCacheWithRedirects(options))); moduleNameToDirectoryMap || (moduleNameToDirectoryMap = createCacheWithRedirects(options)); var packageJsonInfoCache = createPackageJsonInfoCache(currentDirectory, getCanonicalFileName); return __assign(__assign(__assign({}, packageJsonInfoCache), preDirectoryResolutionCache), { getOrCreateCacheForModuleName: getOrCreateCacheForModuleName, clear: clear, update: update, getPackageJsonInfoCache: function () { return packageJsonInfoCache; } }); function clear() { preDirectoryResolutionCache.clear(); moduleNameToDirectoryMap.clear(); packageJsonInfoCache.clear(); } function update(options) { updateRedirectsMap(options, directoryToModuleNameMap, moduleNameToDirectoryMap); } function getOrCreateCacheForModuleName(nonRelativeModuleName, mode, redirectedReference) { ts.Debug.assert(!ts.isExternalModuleNameRelative(nonRelativeModuleName)); return getOrCreateCache(moduleNameToDirectoryMap, redirectedReference, mode === undefined ? nonRelativeModuleName : "".concat(mode, "|").concat(nonRelativeModuleName), createPerModuleNameCache); } function createPerModuleNameCache() { var directoryPathMap = new ts.Map(); return { get: get, set: set }; function get(directory) { return directoryPathMap.get(ts.toPath(directory, currentDirectory, getCanonicalFileName)); } /** * At first this function add entry directory -> module resolution result to the table. * Then it computes the set of parent folders for 'directory' that should have the same module resolution result * and for every parent folder in set it adds entry: parent -> module resolution. . * Lets say we first directory name: /a/b/c/d/e and resolution result is: /a/b/bar.ts. * Set of parent folders that should have the same result will be: * [ * /a/b/c/d, /a/b/c, /a/b * ] * this means that request for module resolution from file in any of these folder will be immediately found in cache. */ function set(directory, result) { var path = ts.toPath(directory, currentDirectory, getCanonicalFileName); // if entry is already in cache do nothing if (directoryPathMap.has(path)) { return; } directoryPathMap.set(path, result); var resolvedFileName = result.resolvedModule && (result.resolvedModule.originalPath || result.resolvedModule.resolvedFileName); // find common prefix between directory and resolved file name // this common prefix should be the shortest path that has the same resolution // directory: /a/b/c/d/e // resolvedFileName: /a/b/foo.d.ts // commonPrefix: /a/b // for failed lookups cache the result for every directory up to root var commonPrefix = resolvedFileName && getCommonPrefix(path, resolvedFileName); var current = path; while (current !== commonPrefix) { var parent = ts.getDirectoryPath(current); if (parent === current || directoryPathMap.has(parent)) { break; } directoryPathMap.set(parent, result); current = parent; } } function getCommonPrefix(directory, resolution) { var resolutionDirectory = ts.toPath(ts.getDirectoryPath(resolution), currentDirectory, getCanonicalFileName); // find first position where directory and resolution differs var i = 0; var limit = Math.min(directory.length, resolutionDirectory.length); while (i < limit && directory.charCodeAt(i) === resolutionDirectory.charCodeAt(i)) { i++; } if (i === directory.length && (resolutionDirectory.length === i || resolutionDirectory[i] === ts.directorySeparator)) { return directory; } var rootLength = ts.getRootLength(directory); if (i < rootLength) { return undefined; } var sep = directory.lastIndexOf(ts.directorySeparator, i - 1); if (sep === -1) { return undefined; } return directory.substr(0, Math.max(sep, rootLength)); } } } ts.createModuleResolutionCache = createModuleResolutionCache; function createTypeReferenceDirectiveResolutionCache(currentDirectory, getCanonicalFileName, options, packageJsonInfoCache, directoryToModuleNameMap) { var preDirectoryResolutionCache = createPerDirectoryResolutionCache(currentDirectory, getCanonicalFileName, directoryToModuleNameMap || (directoryToModuleNameMap = createCacheWithRedirects(options))); packageJsonInfoCache || (packageJsonInfoCache = createPackageJsonInfoCache(currentDirectory, getCanonicalFileName)); return __assign(__assign(__assign({}, packageJsonInfoCache), preDirectoryResolutionCache), { clear: clear }); function clear() { preDirectoryResolutionCache.clear(); packageJsonInfoCache.clear(); } } ts.createTypeReferenceDirectiveResolutionCache = createTypeReferenceDirectiveResolutionCache; function resolveModuleNameFromCache(moduleName, containingFile, cache, mode) { var containingDirectory = ts.getDirectoryPath(containingFile); var perFolderCache = cache && cache.getOrCreateCacheForDirectory(containingDirectory); if (!perFolderCache) return undefined; return perFolderCache.get(moduleName, mode); } ts.resolveModuleNameFromCache = resolveModuleNameFromCache; function resolveModuleName(moduleName, containingFile, compilerOptions, host, cache, redirectedReference, resolutionMode) { var traceEnabled = isTraceEnabled(compilerOptions, host); if (redirectedReference) { compilerOptions = redirectedReference.commandLine.options; } if (traceEnabled) { trace(host, ts.Diagnostics.Resolving_module_0_from_1, moduleName, containingFile); if (redirectedReference) { trace(host, ts.Diagnostics.Using_compiler_options_of_project_reference_redirect_0, redirectedReference.sourceFile.fileName); } } var containingDirectory = ts.getDirectoryPath(containingFile); var perFolderCache = cache && cache.getOrCreateCacheForDirectory(containingDirectory, redirectedReference); var result = perFolderCache && perFolderCache.get(moduleName, resolutionMode); if (result) { if (traceEnabled) { trace(host, ts.Diagnostics.Resolution_for_module_0_was_found_in_cache_from_location_1, moduleName, containingDirectory); } } else { var moduleResolution = compilerOptions.moduleResolution; if (moduleResolution === undefined) { switch (ts.getEmitModuleKind(compilerOptions)) { case ts.ModuleKind.CommonJS: moduleResolution = ts.ModuleResolutionKind.NodeJs; break; case ts.ModuleKind.Node16: moduleResolution = ts.ModuleResolutionKind.Node16; break; case ts.ModuleKind.NodeNext: moduleResolution = ts.ModuleResolutionKind.NodeNext; break; default: moduleResolution = ts.ModuleResolutionKind.Classic; break; } if (traceEnabled) { trace(host, ts.Diagnostics.Module_resolution_kind_is_not_specified_using_0, ts.ModuleResolutionKind[moduleResolution]); } } else { if (traceEnabled) { trace(host, ts.Diagnostics.Explicitly_specified_module_resolution_kind_Colon_0, ts.ModuleResolutionKind[moduleResolution]); } } ts.perfLogger.logStartResolveModule(moduleName /* , containingFile, ModuleResolutionKind[moduleResolution]*/); switch (moduleResolution) { case ts.ModuleResolutionKind.Node16: result = node16ModuleNameResolver(moduleName, containingFile, compilerOptions, host, cache, redirectedReference, resolutionMode); break; case ts.ModuleResolutionKind.NodeNext: result = nodeNextModuleNameResolver(moduleName, containingFile, compilerOptions, host, cache, redirectedReference, resolutionMode); break; case ts.ModuleResolutionKind.NodeJs: result = nodeModuleNameResolver(moduleName, containingFile, compilerOptions, host, cache, redirectedReference); break; case ts.ModuleResolutionKind.Classic: result = classicNameResolver(moduleName, containingFile, compilerOptions, host, cache, redirectedReference); break; default: return ts.Debug.fail("Unexpected moduleResolution: ".concat(moduleResolution)); } if (result && result.resolvedModule) ts.perfLogger.logInfoEvent("Module \"".concat(moduleName, "\" resolved to \"").concat(result.resolvedModule.resolvedFileName, "\"")); ts.perfLogger.logStopResolveModule((result && result.resolvedModule) ? "" + result.resolvedModule.resolvedFileName : "null"); if (perFolderCache) { perFolderCache.set(moduleName, resolutionMode, result); if (!ts.isExternalModuleNameRelative(moduleName)) { // put result in per-module name cache cache.getOrCreateCacheForModuleName(moduleName, resolutionMode, redirectedReference).set(containingDirectory, result); } } } if (traceEnabled) { if (result.resolvedModule) { if (result.resolvedModule.packageId) { trace(host, ts.Diagnostics.Module_name_0_was_successfully_resolved_to_1_with_Package_ID_2, moduleName, result.resolvedModule.resolvedFileName, ts.packageIdToString(result.resolvedModule.packageId)); } else { trace(host, ts.Diagnostics.Module_name_0_was_successfully_resolved_to_1, moduleName, result.resolvedModule.resolvedFileName); } } else { trace(host, ts.Diagnostics.Module_name_0_was_not_resolved, moduleName); } } return result; } ts.resolveModuleName = resolveModuleName; /** * Any module resolution kind can be augmented with optional settings: 'baseUrl', 'paths' and 'rootDirs' - they are used to * mitigate differences between design time structure of the project and its runtime counterpart so the same import name * can be resolved successfully by TypeScript compiler and runtime module loader. * If these settings are set then loading procedure will try to use them to resolve module name and it can of failure it will * fallback to standard resolution routine. * * - baseUrl - this setting controls how non-relative module names are resolved. If this setting is specified then non-relative * names will be resolved relative to baseUrl: i.e. if baseUrl is '/a/b' then candidate location to resolve module name 'c/d' will * be '/a/b/c/d' * - paths - this setting can only be used when baseUrl is specified. allows to tune how non-relative module names * will be resolved based on the content of the module name. * Structure of 'paths' compiler options * 'paths': { * pattern-1: [...substitutions], * pattern-2: [...substitutions], * ... * pattern-n: [...substitutions] * } * Pattern here is a string that can contain zero or one '*' character. During module resolution module name will be matched against * all patterns in the list. Matching for patterns that don't contain '*' means that module name must be equal to pattern respecting the case. * If pattern contains '*' then to match pattern "*" module name must start with the and end with . * denotes part of the module name between and . * If module name can be matches with multiple patterns then pattern with the longest prefix will be picked. * After selecting pattern we'll use list of substitutions to get candidate locations of the module and the try to load module * from the candidate location. * Substitution is a string that can contain zero or one '*'. To get candidate location from substitution we'll pick every * substitution in the list and replace '*' with string. If candidate location is not rooted it * will be converted to absolute using baseUrl. * For example: * baseUrl: /a/b/c * "paths": { * // match all module names * "*": [ * "*", // use matched name as is, * // will be looked as /a/b/c/ * * "folder1/*" // substitution will convert matched name to 'folder1/', * // since it is not rooted then final candidate location will be /a/b/c/folder1/ * ], * // match module names that start with 'components/' * "components/*": [ "/root/components/*" ] // substitution will convert /components/folder1/ to '/root/components/folder1/', * // it is rooted so it will be final candidate location * } * * 'rootDirs' allows the project to be spreaded across multiple locations and resolve modules with relative names as if * they were in the same location. For example lets say there are two files * '/local/src/content/file1.ts' * '/shared/components/contracts/src/content/protocols/file2.ts' * After bundling content of '/shared/components/contracts/src' will be merged with '/local/src' so * if file1 has the following import 'import {x} from "./protocols/file2"' it will be resolved successfully in runtime. * 'rootDirs' provides the way to tell compiler that in order to get the whole project it should behave as if content of all * root dirs were merged together. * I.e. for the example above 'rootDirs' will have two entries: [ '/local/src', '/shared/components/contracts/src' ]. * Compiler will first convert './protocols/file2' into absolute path relative to the location of containing file: * '/local/src/content/protocols/file2' and try to load it - failure. * Then it will search 'rootDirs' looking for a longest matching prefix of this absolute path and if such prefix is found - absolute path will * be converted to a path relative to found rootDir entry './content/protocols/file2' (*). As a last step compiler will check all remaining * entries in 'rootDirs', use them to build absolute path out of (*) and try to resolve module from this location. */ function tryLoadModuleUsingOptionalResolutionSettings(extensions, moduleName, containingDirectory, loader, state) { var resolved = tryLoadModuleUsingPathsIfEligible(extensions, moduleName, loader, state); if (resolved) return resolved.value; if (!ts.isExternalModuleNameRelative(moduleName)) { return tryLoadModuleUsingBaseUrl(extensions, moduleName, loader, state); } else { return tryLoadModuleUsingRootDirs(extensions, moduleName, containingDirectory, loader, state); } } function tryLoadModuleUsingPathsIfEligible(extensions, moduleName, loader, state) { var _a; var _b = state.compilerOptions, baseUrl = _b.baseUrl, paths = _b.paths, configFile = _b.configFile; if (paths && !ts.pathIsRelative(moduleName)) { if (state.traceEnabled) { if (baseUrl) { trace(state.host, ts.Diagnostics.baseUrl_option_is_set_to_0_using_this_value_to_resolve_non_relative_module_name_1, baseUrl, moduleName); } trace(state.host, ts.Diagnostics.paths_option_is_specified_looking_for_a_pattern_to_match_module_name_0, moduleName); } var baseDirectory = ts.getPathsBasePath(state.compilerOptions, state.host); // Always defined when 'paths' is defined var pathPatterns = (configFile === null || configFile === void 0 ? void 0 : configFile.configFileSpecs) ? (_a = configFile.configFileSpecs).pathPatterns || (_a.pathPatterns = ts.tryParsePatterns(paths)) : undefined; return tryLoadModuleUsingPaths(extensions, moduleName, baseDirectory, paths, pathPatterns, loader, /*onlyRecordFailures*/ false, state); } } function tryLoadModuleUsingRootDirs(extensions, moduleName, containingDirectory, loader, state) { if (!state.compilerOptions.rootDirs) { return undefined; } if (state.traceEnabled) { trace(state.host, ts.Diagnostics.rootDirs_option_is_set_using_it_to_resolve_relative_module_name_0, moduleName); } var candidate = ts.normalizePath(ts.combinePaths(containingDirectory, moduleName)); var matchedRootDir; var matchedNormalizedPrefix; for (var _i = 0, _a = state.compilerOptions.rootDirs; _i < _a.length; _i++) { var rootDir = _a[_i]; // rootDirs are expected to be absolute // in case of tsconfig.json this will happen automatically - compiler will expand relative names // using location of tsconfig.json as base location var normalizedRoot = ts.normalizePath(rootDir); if (!ts.endsWith(normalizedRoot, ts.directorySeparator)) { normalizedRoot += ts.directorySeparator; } var isLongestMatchingPrefix = ts.startsWith(candidate, normalizedRoot) && (matchedNormalizedPrefix === undefined || matchedNormalizedPrefix.length < normalizedRoot.length); if (state.traceEnabled) { trace(state.host, ts.Diagnostics.Checking_if_0_is_the_longest_matching_prefix_for_1_2, normalizedRoot, candidate, isLongestMatchingPrefix); } if (isLongestMatchingPrefix) { matchedNormalizedPrefix = normalizedRoot; matchedRootDir = rootDir; } } if (matchedNormalizedPrefix) { if (state.traceEnabled) { trace(state.host, ts.Diagnostics.Longest_matching_prefix_for_0_is_1, candidate, matchedNormalizedPrefix); } var suffix = candidate.substr(matchedNormalizedPrefix.length); // first - try to load from a initial location if (state.traceEnabled) { trace(state.host, ts.Diagnostics.Loading_0_from_the_root_dir_1_candidate_location_2, suffix, matchedNormalizedPrefix, candidate); } var resolvedFileName = loader(extensions, candidate, !ts.directoryProbablyExists(containingDirectory, state.host), state); if (resolvedFileName) { return resolvedFileName; } if (state.traceEnabled) { trace(state.host, ts.Diagnostics.Trying_other_entries_in_rootDirs); } // then try to resolve using remaining entries in rootDirs for (var _b = 0, _c = state.compilerOptions.rootDirs; _b < _c.length; _b++) { var rootDir = _c[_b]; if (rootDir === matchedRootDir) { // skip the initially matched entry continue; } var candidate_1 = ts.combinePaths(ts.normalizePath(rootDir), suffix); if (state.traceEnabled) { trace(state.host, ts.Diagnostics.Loading_0_from_the_root_dir_1_candidate_location_2, suffix, rootDir, candidate_1); } var baseDirectory = ts.getDirectoryPath(candidate_1); var resolvedFileName_1 = loader(extensions, candidate_1, !ts.directoryProbablyExists(baseDirectory, state.host), state); if (resolvedFileName_1) { return resolvedFileName_1; } } if (state.traceEnabled) { trace(state.host, ts.Diagnostics.Module_resolution_using_rootDirs_has_failed); } } return undefined; } function tryLoadModuleUsingBaseUrl(extensions, moduleName, loader, state) { var baseUrl = state.compilerOptions.baseUrl; if (!baseUrl) { return undefined; } if (state.traceEnabled) { trace(state.host, ts.Diagnostics.baseUrl_option_is_set_to_0_using_this_value_to_resolve_non_relative_module_name_1, baseUrl, moduleName); } var candidate = ts.normalizePath(ts.combinePaths(baseUrl, moduleName)); if (state.traceEnabled) { trace(state.host, ts.Diagnostics.Resolving_module_name_0_relative_to_base_url_1_2, moduleName, baseUrl, candidate); } return loader(extensions, candidate, !ts.directoryProbablyExists(ts.getDirectoryPath(candidate), state.host), state); } /** * Expose resolution logic to allow us to use Node module resolution logic from arbitrary locations. * No way to do this with `require()`: https://github.com/nodejs/node/issues/5963 * Throws an error if the module can't be resolved. */ /* @internal */ function resolveJSModule(moduleName, initialDir, host) { var _a = tryResolveJSModuleWorker(moduleName, initialDir, host), resolvedModule = _a.resolvedModule, failedLookupLocations = _a.failedLookupLocations; if (!resolvedModule) { throw new Error("Could not resolve JS module '".concat(moduleName, "' starting at '").concat(initialDir, "'. Looked in: ").concat(failedLookupLocations.join(", "))); } return resolvedModule.resolvedFileName; } ts.resolveJSModule = resolveJSModule; /* @internal */ var NodeResolutionFeatures; (function (NodeResolutionFeatures) { NodeResolutionFeatures[NodeResolutionFeatures["None"] = 0] = "None"; // resolving `#local` names in your own package.json NodeResolutionFeatures[NodeResolutionFeatures["Imports"] = 2] = "Imports"; // resolving `your-own-name` from your own package.json NodeResolutionFeatures[NodeResolutionFeatures["SelfName"] = 4] = "SelfName"; // respecting the `.exports` member of packages' package.json files and its (conditional) mappings of export names NodeResolutionFeatures[NodeResolutionFeatures["Exports"] = 8] = "Exports"; // allowing `*` in the LHS of an export to be followed by more content, eg `"./whatever/*.js"` // not supported in node 12 - https://github.com/nodejs/Release/issues/690 NodeResolutionFeatures[NodeResolutionFeatures["ExportsPatternTrailers"] = 16] = "ExportsPatternTrailers"; NodeResolutionFeatures[NodeResolutionFeatures["AllFeatures"] = 30] = "AllFeatures"; NodeResolutionFeatures[NodeResolutionFeatures["Node16Default"] = 30] = "Node16Default"; NodeResolutionFeatures[NodeResolutionFeatures["NodeNextDefault"] = 30] = "NodeNextDefault"; NodeResolutionFeatures[NodeResolutionFeatures["EsmMode"] = 32] = "EsmMode"; })(NodeResolutionFeatures || (NodeResolutionFeatures = {})); function node16ModuleNameResolver(moduleName, containingFile, compilerOptions, host, cache, redirectedReference, resolutionMode) { return nodeNextModuleNameResolverWorker(NodeResolutionFeatures.Node16Default, moduleName, containingFile, compilerOptions, host, cache, redirectedReference, resolutionMode); } function nodeNextModuleNameResolver(moduleName, containingFile, compilerOptions, host, cache, redirectedReference, resolutionMode) { return nodeNextModuleNameResolverWorker(NodeResolutionFeatures.NodeNextDefault, moduleName, containingFile, compilerOptions, host, cache, redirectedReference, resolutionMode); } var jsOnlyExtensions = [Extensions.JavaScript]; var tsExtensions = [Extensions.TypeScript, Extensions.JavaScript]; var tsPlusJsonExtensions = __spreadArray(__spreadArray([], tsExtensions, true), [Extensions.Json], false); var tsconfigExtensions = [Extensions.TSConfig]; function nodeNextModuleNameResolverWorker(features, moduleName, containingFile, compilerOptions, host, cache, redirectedReference, resolutionMode) { var containingDirectory = ts.getDirectoryPath(containingFile); // es module file or cjs-like input file, use a variant of the legacy cjs resolver that supports the selected modern features var esmMode = resolutionMode === ts.ModuleKind.ESNext ? NodeResolutionFeatures.EsmMode : 0; var extensions = compilerOptions.noDtsResolution ? [Extensions.TsOnly, Extensions.JavaScript] : tsExtensions; if (compilerOptions.resolveJsonModule) { extensions = __spreadArray(__spreadArray([], extensions, true), [Extensions.Json], false); } return nodeModuleNameResolverWorker(features | esmMode, moduleName, containingDirectory, compilerOptions, host, cache, extensions, redirectedReference); } function tryResolveJSModuleWorker(moduleName, initialDir, host) { return nodeModuleNameResolverWorker(NodeResolutionFeatures.None, moduleName, initialDir, { moduleResolution: ts.ModuleResolutionKind.NodeJs, allowJs: true }, host, /*cache*/ undefined, jsOnlyExtensions, /*redirectedReferences*/ undefined); } function nodeModuleNameResolver(moduleName, containingFile, compilerOptions, host, cache, redirectedReference, lookupConfig) { var extensions; if (lookupConfig) { extensions = tsconfigExtensions; } else if (compilerOptions.noDtsResolution) { extensions = [Extensions.TsOnly]; if (compilerOptions.allowJs) extensions.push(Extensions.JavaScript); if (compilerOptions.resolveJsonModule) extensions.push(Extensions.Json); } else { extensions = compilerOptions.resolveJsonModule ? tsPlusJsonExtensions : tsExtensions; } return nodeModuleNameResolverWorker(NodeResolutionFeatures.None, moduleName, ts.getDirectoryPath(containingFile), compilerOptions, host, cache, extensions, redirectedReference); } ts.nodeModuleNameResolver = nodeModuleNameResolver; function nodeModuleNameResolverWorker(features, moduleName, containingDirectory, compilerOptions, host, cache, extensions, redirectedReference) { var _a, _b; var traceEnabled = isTraceEnabled(compilerOptions, host); var failedLookupLocations = []; // conditions are only used by the node16/nodenext resolver - there's no priority order in the list, //it's essentially a set (priority is determined by object insertion order in the object we look at). var conditions = features & NodeResolutionFeatures.EsmMode ? ["node", "import", "types"] : ["node", "require", "types"]; if (compilerOptions.noDtsResolution) { conditions.pop(); } var diagnostics = []; var state = { compilerOptions: compilerOptions, host: host, traceEnabled: traceEnabled, failedLookupLocations: failedLookupLocations, packageJsonInfoCache: cache, features: features, conditions: conditions, requestContainingDirectory: containingDirectory, reportDiagnostic: function (diag) { return void diagnostics.push(diag); }, }; var result = ts.forEach(extensions, function (ext) { return tryResolve(ext); }); return createResolvedModuleWithFailedLookupLocations((_a = result === null || result === void 0 ? void 0 : result.value) === null || _a === void 0 ? void 0 : _a.resolved, (_b = result === null || result === void 0 ? void 0 : result.value) === null || _b === void 0 ? void 0 : _b.isExternalLibraryImport, failedLookupLocations, diagnostics, state.resultFromCache); function tryResolve(extensions) { var loader = function (extensions, candidate, onlyRecordFailures, state) { return nodeLoadModuleByRelativeName(extensions, candidate, onlyRecordFailures, state, /*considerPackageJson*/ true); }; var resolved = tryLoadModuleUsingOptionalResolutionSettings(extensions, moduleName, containingDirectory, loader, state); if (resolved) { return toSearchResult({ resolved: resolved, isExternalLibraryImport: pathContainsNodeModules(resolved.path) }); } if (!ts.isExternalModuleNameRelative(moduleName)) { var resolved_1; if (features & NodeResolutionFeatures.Imports && ts.startsWith(moduleName, "#")) { resolved_1 = loadModuleFromImports(extensions, moduleName, containingDirectory, state, cache, redirectedReference); } if (!resolved_1 && features & NodeResolutionFeatures.SelfName) { resolved_1 = loadModuleFromSelfNameReference(extensions, moduleName, containingDirectory, state, cache, redirectedReference); } if (!resolved_1) { if (traceEnabled) { trace(host, ts.Diagnostics.Loading_module_0_from_node_modules_folder_target_file_type_1, moduleName, Extensions[extensions]); } resolved_1 = loadModuleFromNearestNodeModulesDirectory(extensions, moduleName, containingDirectory, state, cache, redirectedReference); } if (!resolved_1) return undefined; var resolvedValue = resolved_1.value; if (!compilerOptions.preserveSymlinks && resolvedValue && !resolvedValue.originalPath) { var path = realPath(resolvedValue.path, host, traceEnabled); var originalPath = arePathsEqual(path, resolvedValue.path, host) ? undefined : resolvedValue.path; resolvedValue = __assign(__assign({}, resolvedValue), { path: path, originalPath: originalPath }); } // For node_modules lookups, get the real path so that multiple accesses to an `npm link`-ed module do not create duplicate files. return { value: resolvedValue && { resolved: resolvedValue, isExternalLibraryImport: true } }; } else { var _a = normalizePathForCJSResolution(containingDirectory, moduleName), candidate = _a.path, parts = _a.parts; var resolved_2 = nodeLoadModuleByRelativeName(extensions, candidate, /*onlyRecordFailures*/ false, state, /*considerPackageJson*/ true); // Treat explicit "node_modules" import as an external library import. return resolved_2 && toSearchResult({ resolved: resolved_2, isExternalLibraryImport: ts.contains(parts, "node_modules") }); } } } // If you import from "." inside a containing directory "/foo", the result of `normalizePath` // would be "/foo", but this loses the information that `foo` is a directory and we intended // to look inside of it. The Node CommonJS resolution algorithm doesn't call this out // (https://nodejs.org/api/modules.html#all-together), but it seems that module paths ending // in `.` are actually normalized to `./` before proceeding with the resolution algorithm. function normalizePathForCJSResolution(containingDirectory, moduleName) { var combined = ts.combinePaths(containingDirectory, moduleName); var parts = ts.getPathComponents(combined); var lastPart = ts.lastOrUndefined(parts); var path = lastPart === "." || lastPart === ".." ? ts.ensureTrailingDirectorySeparator(ts.normalizePath(combined)) : ts.normalizePath(combined); return { path: path, parts: parts }; } function realPath(path, host, traceEnabled) { if (!host.realpath) { return path; } var real = ts.normalizePath(host.realpath(path)); if (traceEnabled) { trace(host, ts.Diagnostics.Resolving_real_path_for_0_result_1, path, real); } ts.Debug.assert(host.fileExists(real), "".concat(path, " linked to nonexistent file ").concat(real)); return real; } function nodeLoadModuleByRelativeName(extensions, candidate, onlyRecordFailures, state, considerPackageJson) { if (state.traceEnabled) { trace(state.host, ts.Diagnostics.Loading_module_as_file_Slash_folder_candidate_module_location_0_target_file_type_1, candidate, Extensions[extensions]); } if (!ts.hasTrailingDirectorySeparator(candidate)) { if (!onlyRecordFailures) { var parentOfCandidate = ts.getDirectoryPath(candidate); if (!ts.directoryProbablyExists(parentOfCandidate, state.host)) { if (state.traceEnabled) { trace(state.host, ts.Diagnostics.Directory_0_does_not_exist_skipping_all_lookups_in_it, parentOfCandidate); } onlyRecordFailures = true; } } var resolvedFromFile = loadModuleFromFile(extensions, candidate, onlyRecordFailures, state); if (resolvedFromFile) { var packageDirectory = considerPackageJson ? parseNodeModuleFromPath(resolvedFromFile.path) : undefined; var packageInfo = packageDirectory ? getPackageJsonInfo(packageDirectory, /*onlyRecordFailures*/ false, state) : undefined; return withPackageId(packageInfo, resolvedFromFile); } } if (!onlyRecordFailures) { var candidateExists = ts.directoryProbablyExists(candidate, state.host); if (!candidateExists) { if (state.traceEnabled) { trace(state.host, ts.Diagnostics.Directory_0_does_not_exist_skipping_all_lookups_in_it, candidate); } onlyRecordFailures = true; } } // esm mode relative imports shouldn't do any directory lookups (either inside `package.json` // files or implicit `index.js`es). This is a notable depature from cjs norms, where `./foo/pkg` // could have been redirected by `./foo/pkg/package.json` to an arbitrary location! if (!(state.features & NodeResolutionFeatures.EsmMode)) { return loadNodeModuleFromDirectory(extensions, candidate, onlyRecordFailures, state, considerPackageJson); } return undefined; } /*@internal*/ ts.nodeModulesPathPart = "/node_modules/"; /*@internal*/ function pathContainsNodeModules(path) { return ts.stringContains(path, ts.nodeModulesPathPart); } ts.pathContainsNodeModules = pathContainsNodeModules; /** * This will be called on the successfully resolved path from `loadModuleFromFile`. * (Not needed for `loadModuleFromNodeModules` as that looks up the `package.json` as part of resolution.) * * packageDirectory is the directory of the package itself. * For `blah/node_modules/foo/index.d.ts` this is packageDirectory: "foo" * For `/node_modules/foo/bar.d.ts` this is packageDirectory: "foo" * For `/node_modules/@types/foo/bar/index.d.ts` this is packageDirectory: "@types/foo" * For `/node_modules/foo/bar/index.d.ts` this is packageDirectory: "foo" */ /* @internal */ function parseNodeModuleFromPath(resolved) { var path = ts.normalizePath(resolved); var idx = path.lastIndexOf(ts.nodeModulesPathPart); if (idx === -1) { return undefined; } var indexAfterNodeModules = idx + ts.nodeModulesPathPart.length; var indexAfterPackageName = moveToNextDirectorySeparatorIfAvailable(path, indexAfterNodeModules); if (path.charCodeAt(indexAfterNodeModules) === 64 /* CharacterCodes.at */) { indexAfterPackageName = moveToNextDirectorySeparatorIfAvailable(path, indexAfterPackageName); } return path.slice(0, indexAfterPackageName); } ts.parseNodeModuleFromPath = parseNodeModuleFromPath; function moveToNextDirectorySeparatorIfAvailable(path, prevSeparatorIndex) { var nextSeparatorIndex = path.indexOf(ts.directorySeparator, prevSeparatorIndex + 1); return nextSeparatorIndex === -1 ? prevSeparatorIndex : nextSeparatorIndex; } function loadModuleFromFileNoPackageId(extensions, candidate, onlyRecordFailures, state) { return noPackageId(loadModuleFromFile(extensions, candidate, onlyRecordFailures, state)); } /** * @param {boolean} onlyRecordFailures - if true then function won't try to actually load files but instead record all attempts as failures. This flag is necessary * in cases when we know upfront that all load attempts will fail (because containing folder does not exists) however we still need to record all failed lookup locations. */ function loadModuleFromFile(extensions, candidate, onlyRecordFailures, state) { if (extensions === Extensions.Json || extensions === Extensions.TSConfig) { var extensionLess = ts.tryRemoveExtension(candidate, ".json" /* Extension.Json */); var extension = extensionLess ? candidate.substring(extensionLess.length) : ""; return (extensionLess === undefined && extensions === Extensions.Json) ? undefined : tryAddingExtensions(extensionLess || candidate, extensions, extension, onlyRecordFailures, state); } // esm mode resolutions don't include automatic extension lookup (without additional flags, at least) if (!(state.features & NodeResolutionFeatures.EsmMode)) { // First, try adding an extension. An import of "foo" could be matched by a file "foo.ts", or "foo.js" by "foo.js.ts" var resolvedByAddingExtension = tryAddingExtensions(candidate, extensions, "", onlyRecordFailures, state); if (resolvedByAddingExtension) { return resolvedByAddingExtension; } } return loadModuleFromFileNoImplicitExtensions(extensions, candidate, onlyRecordFailures, state); } function loadModuleFromFileNoImplicitExtensions(extensions, candidate, onlyRecordFailures, state) { // If that didn't work, try stripping a ".js" or ".jsx" extension and replacing it with a TypeScript one; // e.g. "./foo.js" can be matched by "./foo.ts" or "./foo.d.ts" if (ts.hasJSFileExtension(candidate) || (ts.fileExtensionIs(candidate, ".json" /* Extension.Json */) && state.compilerOptions.resolveJsonModule)) { var extensionless = ts.removeFileExtension(candidate); var extension = candidate.substring(extensionless.length); if (state.traceEnabled) { trace(state.host, ts.Diagnostics.File_name_0_has_a_1_extension_stripping_it, candidate, extension); } return tryAddingExtensions(extensionless, extensions, extension, onlyRecordFailures, state); } } function loadJSOrExactTSFileName(extensions, candidate, onlyRecordFailures, state) { if ((extensions === Extensions.TypeScript || extensions === Extensions.DtsOnly) && ts.fileExtensionIsOneOf(candidate, ts.supportedTSExtensionsFlat)) { var result = tryFile(candidate, onlyRecordFailures, state); return result !== undefined ? { path: candidate, ext: ts.tryExtractTSExtension(candidate) } : undefined; } return loadModuleFromFileNoImplicitExtensions(extensions, candidate, onlyRecordFailures, state); } /** Try to return an existing file that adds one of the `extensions` to `candidate`. */ function tryAddingExtensions(candidate, extensions, originalExtension, onlyRecordFailures, state) { if (!onlyRecordFailures) { // check if containing folder exists - if it doesn't then just record failures for all supported extensions without disk probing var directory = ts.getDirectoryPath(candidate); if (directory) { onlyRecordFailures = !ts.directoryProbablyExists(directory, state.host); } } switch (extensions) { case Extensions.DtsOnly: switch (originalExtension) { case ".mjs" /* Extension.Mjs */: case ".mts" /* Extension.Mts */: case ".d.mts" /* Extension.Dmts */: return tryExtension(".d.mts" /* Extension.Dmts */); case ".cjs" /* Extension.Cjs */: case ".cts" /* Extension.Cts */: case ".d.cts" /* Extension.Dcts */: return tryExtension(".d.cts" /* Extension.Dcts */); case ".json" /* Extension.Json */: candidate += ".json" /* Extension.Json */; return tryExtension(".d.ts" /* Extension.Dts */); default: return tryExtension(".d.ts" /* Extension.Dts */); } case Extensions.TypeScript: case Extensions.TsOnly: var useDts = extensions === Extensions.TypeScript; switch (originalExtension) { case ".mjs" /* Extension.Mjs */: case ".mts" /* Extension.Mts */: case ".d.mts" /* Extension.Dmts */: return tryExtension(".mts" /* Extension.Mts */) || (useDts ? tryExtension(".d.mts" /* Extension.Dmts */) : undefined); case ".cjs" /* Extension.Cjs */: case ".cts" /* Extension.Cts */: case ".d.cts" /* Extension.Dcts */: return tryExtension(".cts" /* Extension.Cts */) || (useDts ? tryExtension(".d.cts" /* Extension.Dcts */) : undefined); case ".json" /* Extension.Json */: candidate += ".json" /* Extension.Json */; return useDts ? tryExtension(".d.ts" /* Extension.Dts */) : undefined; default: return tryExtension(".ts" /* Extension.Ts */) || tryExtension(".tsx" /* Extension.Tsx */) || (useDts ? tryExtension(".d.ts" /* Extension.Dts */) : undefined); } case Extensions.JavaScript: switch (originalExtension) { case ".mjs" /* Extension.Mjs */: case ".mts" /* Extension.Mts */: case ".d.mts" /* Extension.Dmts */: return tryExtension(".mjs" /* Extension.Mjs */); case ".cjs" /* Extension.Cjs */: case ".cts" /* Extension.Cts */: case ".d.cts" /* Extension.Dcts */: return tryExtension(".cjs" /* Extension.Cjs */); case ".json" /* Extension.Json */: return tryExtension(".json" /* Extension.Json */); default: return tryExtension(".js" /* Extension.Js */) || tryExtension(".jsx" /* Extension.Jsx */); } case Extensions.TSConfig: case Extensions.Json: return tryExtension(".json" /* Extension.Json */); } function tryExtension(ext) { var path = tryFile(candidate + ext, onlyRecordFailures, state); return path === undefined ? undefined : { path: path, ext: ext }; } } /** Return the file if it exists. */ function tryFile(fileName, onlyRecordFailures, state) { var _a, _b; if (!((_a = state.compilerOptions.moduleSuffixes) === null || _a === void 0 ? void 0 : _a.length)) { return tryFileLookup(fileName, onlyRecordFailures, state); } var ext = (_b = ts.tryGetExtensionFromPath(fileName)) !== null && _b !== void 0 ? _b : ""; var fileNameNoExtension = ext ? ts.removeExtension(fileName, ext) : fileName; return ts.forEach(state.compilerOptions.moduleSuffixes, function (suffix) { return tryFileLookup(fileNameNoExtension + suffix + ext, onlyRecordFailures, state); }); } function tryFileLookup(fileName, onlyRecordFailures, state) { if (!onlyRecordFailures) { if (state.host.fileExists(fileName)) { if (state.traceEnabled) { trace(state.host, ts.Diagnostics.File_0_exist_use_it_as_a_name_resolution_result, fileName); } return fileName; } else { if (state.traceEnabled) { trace(state.host, ts.Diagnostics.File_0_does_not_exist, fileName); } } } state.failedLookupLocations.push(fileName); return undefined; } function loadNodeModuleFromDirectory(extensions, candidate, onlyRecordFailures, state, considerPackageJson) { if (considerPackageJson === void 0) { considerPackageJson = true; } var packageInfo = considerPackageJson ? getPackageJsonInfo(candidate, onlyRecordFailures, state) : undefined; var packageJsonContent = packageInfo && packageInfo.packageJsonContent; var versionPaths = packageInfo && packageInfo.versionPaths; return withPackageId(packageInfo, loadNodeModuleFromDirectoryWorker(extensions, candidate, onlyRecordFailures, state, packageJsonContent, versionPaths)); } /* @internal */ function getEntrypointsFromPackageJsonInfo(packageJsonInfo, options, host, cache, resolveJs) { if (!resolveJs && packageJsonInfo.resolvedEntrypoints !== undefined) { // Cached value excludes resolutions to JS files - those could be // cached separately, but they're used rarely. return packageJsonInfo.resolvedEntrypoints; } var entrypoints; var extensions = resolveJs ? Extensions.JavaScript : Extensions.TypeScript; var features = getDefaultNodeResolutionFeatures(options); var requireState = { compilerOptions: options, host: host, traceEnabled: isTraceEnabled(options, host), failedLookupLocations: [], packageJsonInfoCache: cache === null || cache === void 0 ? void 0 : cache.getPackageJsonInfoCache(), conditions: ["node", "require", "types"], features: features, requestContainingDirectory: packageJsonInfo.packageDirectory, reportDiagnostic: ts.noop }; var requireResolution = loadNodeModuleFromDirectoryWorker(extensions, packageJsonInfo.packageDirectory, /*onlyRecordFailures*/ false, requireState, packageJsonInfo.packageJsonContent, packageJsonInfo.versionPaths); entrypoints = ts.append(entrypoints, requireResolution === null || requireResolution === void 0 ? void 0 : requireResolution.path); if (features & NodeResolutionFeatures.Exports && packageJsonInfo.packageJsonContent.exports) { for (var _i = 0, _a = [["node", "import", "types"], ["node", "require", "types"]]; _i < _a.length; _i++) { var conditions = _a[_i]; var exportState = __assign(__assign({}, requireState), { failedLookupLocations: [], conditions: conditions }); var exportResolutions = loadEntrypointsFromExportMap(packageJsonInfo, packageJsonInfo.packageJsonContent.exports, exportState, extensions); if (exportResolutions) { for (var _b = 0, exportResolutions_1 = exportResolutions; _b < exportResolutions_1.length; _b++) { var resolution = exportResolutions_1[_b]; entrypoints = ts.appendIfUnique(entrypoints, resolution.path); } } } } return packageJsonInfo.resolvedEntrypoints = entrypoints || false; } ts.getEntrypointsFromPackageJsonInfo = getEntrypointsFromPackageJsonInfo; function loadEntrypointsFromExportMap(scope, exports, state, extensions) { var entrypoints; if (ts.isArray(exports)) { for (var _i = 0, exports_1 = exports; _i < exports_1.length; _i++) { var target = exports_1[_i]; loadEntrypointsFromTargetExports(target); } } // eslint-disable-next-line no-null/no-null else if (typeof exports === "object" && exports !== null && allKeysStartWithDot(exports)) { for (var key in exports) { loadEntrypointsFromTargetExports(exports[key]); } } else { loadEntrypointsFromTargetExports(exports); } return entrypoints; function loadEntrypointsFromTargetExports(target) { var _a, _b; if (typeof target === "string" && ts.startsWith(target, "./") && target.indexOf("*") === -1) { var partsAfterFirst = ts.getPathComponents(target).slice(2); if (partsAfterFirst.indexOf("..") >= 0 || partsAfterFirst.indexOf(".") >= 0 || partsAfterFirst.indexOf("node_modules") >= 0) { return false; } var resolvedTarget = ts.combinePaths(scope.packageDirectory, target); var finalPath = ts.getNormalizedAbsolutePath(resolvedTarget, (_b = (_a = state.host).getCurrentDirectory) === null || _b === void 0 ? void 0 : _b.call(_a)); var result = loadJSOrExactTSFileName(extensions, finalPath, /*recordOnlyFailures*/ false, state); if (result) { entrypoints = ts.appendIfUnique(entrypoints, result, function (a, b) { return a.path === b.path; }); return true; } } else if (Array.isArray(target)) { for (var _i = 0, target_1 = target; _i < target_1.length; _i++) { var t = target_1[_i]; var success = loadEntrypointsFromTargetExports(t); if (success) { return true; } } } // eslint-disable-next-line no-null/no-null else if (typeof target === "object" && target !== null) { return ts.forEach(ts.getOwnKeys(target), function (key) { if (key === "default" || ts.contains(state.conditions, key) || isApplicableVersionedTypesKey(state.conditions, key)) { loadEntrypointsFromTargetExports(target[key]); return true; } }); } } } /** * A function for locating the package.json scope for a given path */ /*@internal*/ function getPackageScopeForPath(fileName, packageJsonInfoCache, host, options) { var state = { host: host, compilerOptions: options, traceEnabled: isTraceEnabled(options, host), failedLookupLocations: [], packageJsonInfoCache: packageJsonInfoCache, features: 0, conditions: [], requestContainingDirectory: undefined, reportDiagnostic: ts.noop }; var parts = ts.getPathComponents(fileName); parts.pop(); while (parts.length > 0) { var pkg = getPackageJsonInfo(ts.getPathFromPathComponents(parts), /*onlyRecordFailures*/ false, state); if (pkg) { return pkg; } parts.pop(); } return undefined; } ts.getPackageScopeForPath = getPackageScopeForPath; /*@internal*/ function getPackageJsonInfo(packageDirectory, onlyRecordFailures, state) { var _a, _b, _c; var host = state.host, traceEnabled = state.traceEnabled; var packageJsonPath = ts.combinePaths(packageDirectory, "package.json"); if (onlyRecordFailures) { state.failedLookupLocations.push(packageJsonPath); return undefined; } var existing = (_a = state.packageJsonInfoCache) === null || _a === void 0 ? void 0 : _a.getPackageJsonInfo(packageJsonPath); if (existing !== undefined) { if (typeof existing !== "boolean") { if (traceEnabled) trace(host, ts.Diagnostics.File_0_exists_according_to_earlier_cached_lookups, packageJsonPath); return existing; } else { if (existing && traceEnabled) trace(host, ts.Diagnostics.File_0_does_not_exist_according_to_earlier_cached_lookups, packageJsonPath); state.failedLookupLocations.push(packageJsonPath); return undefined; } } var directoryExists = ts.directoryProbablyExists(packageDirectory, host); if (directoryExists && host.fileExists(packageJsonPath)) { var packageJsonContent = ts.readJson(packageJsonPath, host); if (traceEnabled) { trace(host, ts.Diagnostics.Found_package_json_at_0, packageJsonPath); } var versionPaths = readPackageJsonTypesVersionPaths(packageJsonContent, state); var result = { packageDirectory: packageDirectory, packageJsonContent: packageJsonContent, versionPaths: versionPaths, resolvedEntrypoints: undefined }; (_b = state.packageJsonInfoCache) === null || _b === void 0 ? void 0 : _b.setPackageJsonInfo(packageJsonPath, result); return result; } else { if (directoryExists && traceEnabled) { trace(host, ts.Diagnostics.File_0_does_not_exist, packageJsonPath); } (_c = state.packageJsonInfoCache) === null || _c === void 0 ? void 0 : _c.setPackageJsonInfo(packageJsonPath, directoryExists); // record package json as one of failed lookup locations - in the future if this file will appear it will invalidate resolution results state.failedLookupLocations.push(packageJsonPath); } } ts.getPackageJsonInfo = getPackageJsonInfo; function loadNodeModuleFromDirectoryWorker(extensions, candidate, onlyRecordFailures, state, jsonContent, versionPaths) { var packageFile; if (jsonContent) { switch (extensions) { case Extensions.JavaScript: case Extensions.Json: case Extensions.TsOnly: packageFile = readPackageJsonMainField(jsonContent, candidate, state); break; case Extensions.TypeScript: // When resolving typescript modules, try resolving using main field as well packageFile = readPackageJsonTypesFields(jsonContent, candidate, state) || readPackageJsonMainField(jsonContent, candidate, state); break; case Extensions.DtsOnly: packageFile = readPackageJsonTypesFields(jsonContent, candidate, state); break; case Extensions.TSConfig: packageFile = readPackageJsonTSConfigField(jsonContent, candidate, state); break; default: return ts.Debug.assertNever(extensions); } } var loader = function (extensions, candidate, onlyRecordFailures, state) { var fromFile = tryFile(candidate, onlyRecordFailures, state); if (fromFile) { var resolved = resolvedIfExtensionMatches(extensions, fromFile); if (resolved) { return noPackageId(resolved); } if (state.traceEnabled) { trace(state.host, ts.Diagnostics.File_0_has_an_unsupported_extension_so_skipping_it, fromFile); } } // Even if extensions is DtsOnly, we can still look up a .ts file as a result of package.json "types" var nextExtensions = extensions === Extensions.DtsOnly ? Extensions.TypeScript : extensions; // Don't do package.json lookup recursively, because Node.js' package lookup doesn't. // Disable `EsmMode` for the resolution of the package path for cjs-mode packages (so the `main` field can omit extensions) // (technically it only emits a deprecation warning in esm packages right now, but that's probably // enough to mean we don't need to support it) var features = state.features; if ((jsonContent === null || jsonContent === void 0 ? void 0 : jsonContent.type) !== "module") { state.features &= ~NodeResolutionFeatures.EsmMode; } var result = nodeLoadModuleByRelativeName(nextExtensions, candidate, onlyRecordFailures, state, /*considerPackageJson*/ false); state.features = features; return result; }; var onlyRecordFailuresForPackageFile = packageFile ? !ts.directoryProbablyExists(ts.getDirectoryPath(packageFile), state.host) : undefined; var onlyRecordFailuresForIndex = onlyRecordFailures || !ts.directoryProbablyExists(candidate, state.host); var indexPath = ts.combinePaths(candidate, extensions === Extensions.TSConfig ? "tsconfig" : "index"); if (versionPaths && (!packageFile || ts.containsPath(candidate, packageFile))) { var moduleName = ts.getRelativePathFromDirectory(candidate, packageFile || indexPath, /*ignoreCase*/ false); if (state.traceEnabled) { trace(state.host, ts.Diagnostics.package_json_has_a_typesVersions_entry_0_that_matches_compiler_version_1_looking_for_a_pattern_to_match_module_name_2, versionPaths.version, ts.version, moduleName); } var result = tryLoadModuleUsingPaths(extensions, moduleName, candidate, versionPaths.paths, /*pathPatterns*/ undefined, loader, onlyRecordFailuresForPackageFile || onlyRecordFailuresForIndex, state); if (result) { return removeIgnoredPackageId(result.value); } } // It won't have a `packageId` set, because we disabled `considerPackageJson`. var packageFileResult = packageFile && removeIgnoredPackageId(loader(extensions, packageFile, onlyRecordFailuresForPackageFile, state)); if (packageFileResult) return packageFileResult; // esm mode resolutions don't do package `index` lookups if (!(state.features & NodeResolutionFeatures.EsmMode)) { return loadModuleFromFile(extensions, indexPath, onlyRecordFailuresForIndex, state); } } /** Resolve from an arbitrarily specified file. Return `undefined` if it has an unsupported extension. */ function resolvedIfExtensionMatches(extensions, path) { var ext = ts.tryGetExtensionFromPath(path); return ext !== undefined && extensionIsOk(extensions, ext) ? { path: path, ext: ext } : undefined; } /** True if `extension` is one of the supported `extensions`. */ function extensionIsOk(extensions, extension) { switch (extensions) { case Extensions.JavaScript: return extension === ".js" /* Extension.Js */ || extension === ".jsx" /* Extension.Jsx */ || extension === ".mjs" /* Extension.Mjs */ || extension === ".cjs" /* Extension.Cjs */; case Extensions.TSConfig: case Extensions.Json: return extension === ".json" /* Extension.Json */; case Extensions.TypeScript: return extension === ".ts" /* Extension.Ts */ || extension === ".tsx" /* Extension.Tsx */ || extension === ".mts" /* Extension.Mts */ || extension === ".cts" /* Extension.Cts */ || extension === ".d.ts" /* Extension.Dts */ || extension === ".d.mts" /* Extension.Dmts */ || extension === ".d.cts" /* Extension.Dcts */; case Extensions.TsOnly: return extension === ".ts" /* Extension.Ts */ || extension === ".tsx" /* Extension.Tsx */ || extension === ".mts" /* Extension.Mts */ || extension === ".cts" /* Extension.Cts */; case Extensions.DtsOnly: return extension === ".d.ts" /* Extension.Dts */ || extension === ".d.mts" /* Extension.Dmts */ || extension === ".d.cts" /* Extension.Dcts */; } } /* @internal */ function parsePackageName(moduleName) { var idx = moduleName.indexOf(ts.directorySeparator); if (moduleName[0] === "@") { idx = moduleName.indexOf(ts.directorySeparator, idx + 1); } return idx === -1 ? { packageName: moduleName, rest: "" } : { packageName: moduleName.slice(0, idx), rest: moduleName.slice(idx + 1) }; } ts.parsePackageName = parsePackageName; /* @internal */ function allKeysStartWithDot(obj) { return ts.every(ts.getOwnKeys(obj), function (k) { return ts.startsWith(k, "."); }); } ts.allKeysStartWithDot = allKeysStartWithDot; function noKeyStartsWithDot(obj) { return !ts.some(ts.getOwnKeys(obj), function (k) { return ts.startsWith(k, "."); }); } function loadModuleFromSelfNameReference(extensions, moduleName, directory, state, cache, redirectedReference) { var _a, _b; var useCaseSensitiveFileNames = typeof state.host.useCaseSensitiveFileNames === "function" ? state.host.useCaseSensitiveFileNames() : state.host.useCaseSensitiveFileNames; var directoryPath = ts.toPath(ts.combinePaths(directory, "dummy"), (_b = (_a = state.host).getCurrentDirectory) === null || _b === void 0 ? void 0 : _b.call(_a), ts.createGetCanonicalFileName(useCaseSensitiveFileNames === undefined ? true : useCaseSensitiveFileNames)); var scope = getPackageScopeForPath(directoryPath, state.packageJsonInfoCache, state.host, state.compilerOptions); if (!scope || !scope.packageJsonContent.exports) { return undefined; } if (typeof scope.packageJsonContent.name !== "string") { return undefined; } var parts = ts.getPathComponents(moduleName); // unrooted paths should have `""` as their 0th entry var nameParts = ts.getPathComponents(scope.packageJsonContent.name); if (!ts.every(nameParts, function (p, i) { return parts[i] === p; })) { return undefined; } var trailingParts = parts.slice(nameParts.length); return loadModuleFromExports(scope, extensions, !ts.length(trailingParts) ? "." : ".".concat(ts.directorySeparator).concat(trailingParts.join(ts.directorySeparator)), state, cache, redirectedReference); } function loadModuleFromExports(scope, extensions, subpath, state, cache, redirectedReference) { if (!scope.packageJsonContent.exports) { return undefined; } if (subpath === ".") { var mainExport = void 0; if (typeof scope.packageJsonContent.exports === "string" || Array.isArray(scope.packageJsonContent.exports) || (typeof scope.packageJsonContent.exports === "object" && noKeyStartsWithDot(scope.packageJsonContent.exports))) { mainExport = scope.packageJsonContent.exports; } else if (ts.hasProperty(scope.packageJsonContent.exports, ".")) { mainExport = scope.packageJsonContent.exports["."]; } if (mainExport) { var loadModuleFromTargetImportOrExport = getLoadModuleFromTargetImportOrExport(extensions, state, cache, redirectedReference, subpath, scope, /*isImports*/ false); return loadModuleFromTargetImportOrExport(mainExport, "", /*pattern*/ false); } } else if (allKeysStartWithDot(scope.packageJsonContent.exports)) { if (typeof scope.packageJsonContent.exports !== "object") { if (state.traceEnabled) { trace(state.host, ts.Diagnostics.Export_specifier_0_does_not_exist_in_package_json_scope_at_path_1, subpath, scope.packageDirectory); } return toSearchResult(/*value*/ undefined); } var result = loadModuleFromImportsOrExports(extensions, state, cache, redirectedReference, subpath, scope.packageJsonContent.exports, scope, /*isImports*/ false); if (result) { return result; } } if (state.traceEnabled) { trace(state.host, ts.Diagnostics.Export_specifier_0_does_not_exist_in_package_json_scope_at_path_1, subpath, scope.packageDirectory); } return toSearchResult(/*value*/ undefined); } function loadModuleFromImports(extensions, moduleName, directory, state, cache, redirectedReference) { var _a, _b; if (moduleName === "#" || ts.startsWith(moduleName, "#/")) { if (state.traceEnabled) { trace(state.host, ts.Diagnostics.Invalid_import_specifier_0_has_no_possible_resolutions, moduleName); } return toSearchResult(/*value*/ undefined); } var useCaseSensitiveFileNames = typeof state.host.useCaseSensitiveFileNames === "function" ? state.host.useCaseSensitiveFileNames() : state.host.useCaseSensitiveFileNames; var directoryPath = ts.toPath(ts.combinePaths(directory, "dummy"), (_b = (_a = state.host).getCurrentDirectory) === null || _b === void 0 ? void 0 : _b.call(_a), ts.createGetCanonicalFileName(useCaseSensitiveFileNames === undefined ? true : useCaseSensitiveFileNames)); var scope = getPackageScopeForPath(directoryPath, state.packageJsonInfoCache, state.host, state.compilerOptions); if (!scope) { if (state.traceEnabled) { trace(state.host, ts.Diagnostics.Directory_0_has_no_containing_package_json_scope_Imports_will_not_resolve, directoryPath); } return toSearchResult(/*value*/ undefined); } if (!scope.packageJsonContent.imports) { if (state.traceEnabled) { trace(state.host, ts.Diagnostics.package_json_scope_0_has_no_imports_defined, scope.packageDirectory); } return toSearchResult(/*value*/ undefined); } var result = loadModuleFromImportsOrExports(extensions, state, cache, redirectedReference, moduleName, scope.packageJsonContent.imports, scope, /*isImports*/ true); if (result) { return result; } if (state.traceEnabled) { trace(state.host, ts.Diagnostics.Import_specifier_0_does_not_exist_in_package_json_scope_at_path_1, moduleName, scope.packageDirectory); } return toSearchResult(/*value*/ undefined); } /** * From https://github.com/nodejs/node/blob/8f39f51cbbd3b2de14b9ee896e26421cc5b20121/lib/internal/modules/esm/resolve.js#L722 - * "longest" has some nuance as to what "longest" means in the presence of pattern trailers */ function comparePatternKeys(a, b) { var aPatternIndex = a.indexOf("*"); var bPatternIndex = b.indexOf("*"); var baseLenA = aPatternIndex === -1 ? a.length : aPatternIndex + 1; var baseLenB = bPatternIndex === -1 ? b.length : bPatternIndex + 1; if (baseLenA > baseLenB) return -1; if (baseLenB > baseLenA) return 1; if (aPatternIndex === -1) return 1; if (bPatternIndex === -1) return -1; if (a.length > b.length) return -1; if (b.length > a.length) return 1; return 0; } function loadModuleFromImportsOrExports(extensions, state, cache, redirectedReference, moduleName, lookupTable, scope, isImports) { var loadModuleFromTargetImportOrExport = getLoadModuleFromTargetImportOrExport(extensions, state, cache, redirectedReference, moduleName, scope, isImports); if (!ts.endsWith(moduleName, ts.directorySeparator) && moduleName.indexOf("*") === -1 && ts.hasProperty(lookupTable, moduleName)) { var target = lookupTable[moduleName]; return loadModuleFromTargetImportOrExport(target, /*subpath*/ "", /*pattern*/ false); } var expandingKeys = ts.sort(ts.filter(ts.getOwnKeys(lookupTable), function (k) { return k.indexOf("*") !== -1 || ts.endsWith(k, "/"); }), comparePatternKeys); for (var _i = 0, expandingKeys_1 = expandingKeys; _i < expandingKeys_1.length; _i++) { var potentialTarget = expandingKeys_1[_i]; if (state.features & NodeResolutionFeatures.ExportsPatternTrailers && matchesPatternWithTrailer(potentialTarget, moduleName)) { var target = lookupTable[potentialTarget]; var starPos = potentialTarget.indexOf("*"); var subpath = moduleName.substring(potentialTarget.substring(0, starPos).length, moduleName.length - (potentialTarget.length - 1 - starPos)); return loadModuleFromTargetImportOrExport(target, subpath, /*pattern*/ true); } else if (ts.endsWith(potentialTarget, "*") && ts.startsWith(moduleName, potentialTarget.substring(0, potentialTarget.length - 1))) { var target = lookupTable[potentialTarget]; var subpath = moduleName.substring(potentialTarget.length - 1); return loadModuleFromTargetImportOrExport(target, subpath, /*pattern*/ true); } else if (ts.startsWith(moduleName, potentialTarget)) { var target = lookupTable[potentialTarget]; var subpath = moduleName.substring(potentialTarget.length); return loadModuleFromTargetImportOrExport(target, subpath, /*pattern*/ false); } } function matchesPatternWithTrailer(target, name) { if (ts.endsWith(target, "*")) return false; // handled by next case in loop var starPos = target.indexOf("*"); if (starPos === -1) return false; // handled by last case in loop return ts.startsWith(name, target.substring(0, starPos)) && ts.endsWith(name, target.substring(starPos + 1)); } } /** * Gets the self-recursive function specialized to retrieving the targeted import/export element for the given resolution configuration */ function getLoadModuleFromTargetImportOrExport(extensions, state, cache, redirectedReference, moduleName, scope, isImports) { return loadModuleFromTargetImportOrExport; function loadModuleFromTargetImportOrExport(target, subpath, pattern) { if (typeof target === "string") { if (!pattern && subpath.length > 0 && !ts.endsWith(target, "/")) { if (state.traceEnabled) { trace(state.host, ts.Diagnostics.package_json_scope_0_has_invalid_type_for_target_of_specifier_1, scope.packageDirectory, moduleName); } return toSearchResult(/*value*/ undefined); } if (!ts.startsWith(target, "./")) { if (isImports && !ts.startsWith(target, "../") && !ts.startsWith(target, "/") && !ts.isRootedDiskPath(target)) { var combinedLookup = pattern ? target.replace(/\*/g, subpath) : target + subpath; var result = nodeModuleNameResolverWorker(state.features, combinedLookup, scope.packageDirectory + "/", state.compilerOptions, state.host, cache, [extensions], redirectedReference); return toSearchResult(result.resolvedModule ? { path: result.resolvedModule.resolvedFileName, extension: result.resolvedModule.extension, packageId: result.resolvedModule.packageId, originalPath: result.resolvedModule.originalPath } : undefined); } if (state.traceEnabled) { trace(state.host, ts.Diagnostics.package_json_scope_0_has_invalid_type_for_target_of_specifier_1, scope.packageDirectory, moduleName); } return toSearchResult(/*value*/ undefined); } var parts = ts.pathIsRelative(target) ? ts.getPathComponents(target).slice(1) : ts.getPathComponents(target); var partsAfterFirst = parts.slice(1); if (partsAfterFirst.indexOf("..") >= 0 || partsAfterFirst.indexOf(".") >= 0 || partsAfterFirst.indexOf("node_modules") >= 0) { if (state.traceEnabled) { trace(state.host, ts.Diagnostics.package_json_scope_0_has_invalid_type_for_target_of_specifier_1, scope.packageDirectory, moduleName); } return toSearchResult(/*value*/ undefined); } var resolvedTarget = ts.combinePaths(scope.packageDirectory, target); // TODO: Assert that `resolvedTarget` is actually within the package directory? That's what the spec says.... but I'm not sure we need // to be in the business of validating everyone's import and export map correctness. var subpathParts = ts.getPathComponents(subpath); if (subpathParts.indexOf("..") >= 0 || subpathParts.indexOf(".") >= 0 || subpathParts.indexOf("node_modules") >= 0) { if (state.traceEnabled) { trace(state.host, ts.Diagnostics.package_json_scope_0_has_invalid_type_for_target_of_specifier_1, scope.packageDirectory, moduleName); } return toSearchResult(/*value*/ undefined); } var finalPath = toAbsolutePath(pattern ? resolvedTarget.replace(/\*/g, subpath) : resolvedTarget + subpath); var inputLink = tryLoadInputFileForPath(finalPath, subpath, ts.combinePaths(scope.packageDirectory, "package.json"), isImports); if (inputLink) return inputLink; return toSearchResult(withPackageId(scope, loadJSOrExactTSFileName(extensions, finalPath, /*onlyRecordFailures*/ false, state))); } else if (typeof target === "object" && target !== null) { // eslint-disable-line no-null/no-null if (!Array.isArray(target)) { for (var _i = 0, _a = ts.getOwnKeys(target); _i < _a.length; _i++) { var key = _a[_i]; if (key === "default" || state.conditions.indexOf(key) >= 0 || isApplicableVersionedTypesKey(state.conditions, key)) { var subTarget = target[key]; var result = loadModuleFromTargetImportOrExport(subTarget, subpath, pattern); if (result) { return result; } } } return undefined; } else { if (!ts.length(target)) { if (state.traceEnabled) { trace(state.host, ts.Diagnostics.package_json_scope_0_has_invalid_type_for_target_of_specifier_1, scope.packageDirectory, moduleName); } return toSearchResult(/*value*/ undefined); } for (var _b = 0, target_2 = target; _b < target_2.length; _b++) { var elem = target_2[_b]; var result = loadModuleFromTargetImportOrExport(elem, subpath, pattern); if (result) { return result; } } } } else if (target === null) { // eslint-disable-line no-null/no-null if (state.traceEnabled) { trace(state.host, ts.Diagnostics.package_json_scope_0_explicitly_maps_specifier_1_to_null, scope.packageDirectory, moduleName); } return toSearchResult(/*value*/ undefined); } if (state.traceEnabled) { trace(state.host, ts.Diagnostics.package_json_scope_0_has_invalid_type_for_target_of_specifier_1, scope.packageDirectory, moduleName); } return toSearchResult(/*value*/ undefined); function toAbsolutePath(path) { var _a, _b; if (path === undefined) return path; return ts.hostGetCanonicalFileName({ useCaseSensitiveFileNames: useCaseSensitiveFileNames })(ts.getNormalizedAbsolutePath(path, (_b = (_a = state.host).getCurrentDirectory) === null || _b === void 0 ? void 0 : _b.call(_a))); } function combineDirectoryPath(root, dir) { return ts.ensureTrailingDirectorySeparator(ts.combinePaths(root, dir)); } function useCaseSensitiveFileNames() { return !state.host.useCaseSensitiveFileNames ? true : typeof state.host.useCaseSensitiveFileNames === "boolean" ? state.host.useCaseSensitiveFileNames : state.host.useCaseSensitiveFileNames(); } function tryLoadInputFileForPath(finalPath, entry, packagePath, isImports) { var _a, _b, _c, _d; // Replace any references to outputs for files in the program with the input files to support package self-names used with outDir // PROBLEM: We don't know how to calculate the output paths yet, because the "common source directory" we use as the base of the file structure // we reproduce into the output directory is based on the set of input files, which we're still in the process of traversing and resolving! // _Given that_, we have to guess what the base of the output directory is (obviously the user wrote the export map, so has some idea what it is!). // We are going to probe _so many_ possible paths. We limit where we'll do this to try to reduce the possibilities of false positive lookups. if ((extensions === Extensions.TypeScript || extensions === Extensions.JavaScript || extensions === Extensions.Json) && (state.compilerOptions.declarationDir || state.compilerOptions.outDir) && finalPath.indexOf("/node_modules/") === -1 && (state.compilerOptions.configFile ? ts.startsWith(toAbsolutePath(state.compilerOptions.configFile.fileName), scope.packageDirectory) : true)) { // So that all means we'll only try these guesses for files outside `node_modules` in a directory where the `package.json` and `tsconfig.json` are siblings. // Even with all that, we still don't know if the root of the output file structure will be (relative to the package file) // `.`, `./src` or any other deeper directory structure. (If project references are used, it's definitely `.` by fiat, so that should be pretty common.) var getCanonicalFileName = ts.hostGetCanonicalFileName({ useCaseSensitiveFileNames: useCaseSensitiveFileNames }); var commonSourceDirGuesses = []; // A `rootDir` compiler option strongly indicates the root location // A `composite` project is using project references and has it's common src dir set to `.`, so it shouldn't need to check any other locations if (state.compilerOptions.rootDir || (state.compilerOptions.composite && state.compilerOptions.configFilePath)) { var commonDir = toAbsolutePath(ts.getCommonSourceDirectory(state.compilerOptions, function () { return []; }, ((_b = (_a = state.host).getCurrentDirectory) === null || _b === void 0 ? void 0 : _b.call(_a)) || "", getCanonicalFileName)); commonSourceDirGuesses.push(commonDir); } else if (state.requestContainingDirectory) { // However without either of those set we're in the dark. Let's say you have // // ./tools/index.ts // ./src/index.ts // ./dist/index.js // ./package.json <-- references ./dist/index.js // ./tsconfig.json <-- loads ./src/index.ts // // How do we know `./src` is the common src dir, and not `./tools`, given only the `./dist` out dir and `./dist/index.js` filename? // Answer: We... don't. We know we're looking for an `index.ts` input file, but we have _no clue_ which subfolder it's supposed to be loaded from // without more context. // But we do have more context! Just a tiny bit more! We're resolving an import _for some other input file_! And that input file, too // must be inside the common source directory! So we propagate that tidbit of info all the way to here via state.requestContainingDirectory var requestingFile_1 = toAbsolutePath(ts.combinePaths(state.requestContainingDirectory, "index.ts")); // And we can try every folder above the common folder for the request folder and the config/package base directory // This technically can be wrong - we may load ./src/index.ts when ./src/sub/index.ts was right because we don't // know if only `./src/sub` files were loaded by the program; but this has the best chance to be right of just about anything // else we have. And, given that we're about to load `./src/index.ts` because we choose it as likely correct, there will then // be a file outside of `./src/sub` in the program (the file we resolved to), making us de-facto right. So this fallback lookup // logic may influence what files are pulled in by self-names, which in turn influences the output path shape, but it's all // internally consistent so the paths should be stable so long as we prefer the "most general" (meaning: top-most-level directory) possible results first. var commonDir = toAbsolutePath(ts.getCommonSourceDirectory(state.compilerOptions, function () { return [requestingFile_1, toAbsolutePath(packagePath)]; }, ((_d = (_c = state.host).getCurrentDirectory) === null || _d === void 0 ? void 0 : _d.call(_c)) || "", getCanonicalFileName)); commonSourceDirGuesses.push(commonDir); var fragment = ts.ensureTrailingDirectorySeparator(commonDir); while (fragment && fragment.length > 1) { var parts = ts.getPathComponents(fragment); parts.pop(); // remove a directory var commonDir_1 = ts.getPathFromPathComponents(parts); commonSourceDirGuesses.unshift(commonDir_1); fragment = ts.ensureTrailingDirectorySeparator(commonDir_1); } } if (commonSourceDirGuesses.length > 1) { state.reportDiagnostic(ts.createCompilerDiagnostic(isImports ? ts.Diagnostics.The_project_root_is_ambiguous_but_is_required_to_resolve_import_map_entry_0_in_file_1_Supply_the_rootDir_compiler_option_to_disambiguate : ts.Diagnostics.The_project_root_is_ambiguous_but_is_required_to_resolve_export_map_entry_0_in_file_1_Supply_the_rootDir_compiler_option_to_disambiguate, entry === "" ? "." : entry, // replace empty string with `.` - the reverse of the operation done when entries are built - so main entrypoint errors don't look weird packagePath)); } for (var _i = 0, commonSourceDirGuesses_1 = commonSourceDirGuesses; _i < commonSourceDirGuesses_1.length; _i++) { var commonSourceDirGuess = commonSourceDirGuesses_1[_i]; var candidateDirectories = getOutputDirectoriesForBaseDirectory(commonSourceDirGuess); for (var _e = 0, candidateDirectories_1 = candidateDirectories; _e < candidateDirectories_1.length; _e++) { var candidateDir = candidateDirectories_1[_e]; if (ts.startsWith(finalPath, candidateDir)) { // The matched export is looking up something in either the out declaration or js dir, now map the written path back into the source dir and source extension var pathFragment = finalPath.slice(candidateDir.length + 1); // +1 to also remove directory seperator var possibleInputBase = ts.combinePaths(commonSourceDirGuess, pathFragment); var jsAndDtsExtensions = [".mjs" /* Extension.Mjs */, ".cjs" /* Extension.Cjs */, ".js" /* Extension.Js */, ".json" /* Extension.Json */, ".d.mts" /* Extension.Dmts */, ".d.cts" /* Extension.Dcts */, ".d.ts" /* Extension.Dts */]; for (var _f = 0, jsAndDtsExtensions_1 = jsAndDtsExtensions; _f < jsAndDtsExtensions_1.length; _f++) { var ext = jsAndDtsExtensions_1[_f]; if (ts.fileExtensionIs(possibleInputBase, ext)) { var inputExts = ts.getPossibleOriginalInputExtensionForExtension(possibleInputBase); for (var _g = 0, inputExts_1 = inputExts; _g < inputExts_1.length; _g++) { var possibleExt = inputExts_1[_g]; var possibleInputWithInputExtension = ts.changeAnyExtension(possibleInputBase, possibleExt, ext, !useCaseSensitiveFileNames()); if ((extensions === Extensions.TypeScript && ts.hasJSFileExtension(possibleInputWithInputExtension)) || (extensions === Extensions.JavaScript && ts.hasTSFileExtension(possibleInputWithInputExtension))) { continue; } if (state.host.fileExists(possibleInputWithInputExtension)) { return toSearchResult(withPackageId(scope, loadJSOrExactTSFileName(extensions, possibleInputWithInputExtension, /*onlyRecordFailures*/ false, state))); } } } } } } } } return undefined; function getOutputDirectoriesForBaseDirectory(commonSourceDirGuess) { var _a, _b; // Config file ouput paths are processed to be relative to the host's current directory, while // otherwise the paths are resolved relative to the common source dir the compiler puts together var currentDir = state.compilerOptions.configFile ? ((_b = (_a = state.host).getCurrentDirectory) === null || _b === void 0 ? void 0 : _b.call(_a)) || "" : commonSourceDirGuess; var candidateDirectories = []; if (state.compilerOptions.declarationDir) { candidateDirectories.push(toAbsolutePath(combineDirectoryPath(currentDir, state.compilerOptions.declarationDir))); } if (state.compilerOptions.outDir && state.compilerOptions.outDir !== state.compilerOptions.declarationDir) { candidateDirectories.push(toAbsolutePath(combineDirectoryPath(currentDir, state.compilerOptions.outDir))); } return candidateDirectories; } } } } /* @internal */ function isApplicableVersionedTypesKey(conditions, key) { if (conditions.indexOf("types") === -1) return false; // only apply versioned types conditions if the types condition is applied if (!ts.startsWith(key, "types@")) return false; var range = ts.VersionRange.tryParse(key.substring("types@".length)); if (!range) return false; return range.test(ts.version); } ts.isApplicableVersionedTypesKey = isApplicableVersionedTypesKey; function loadModuleFromNearestNodeModulesDirectory(extensions, moduleName, directory, state, cache, redirectedReference) { return loadModuleFromNearestNodeModulesDirectoryWorker(extensions, moduleName, directory, state, /*typesScopeOnly*/ false, cache, redirectedReference); } function loadModuleFromNearestNodeModulesDirectoryTypesScope(moduleName, directory, state) { // Extensions parameter here doesn't actually matter, because typesOnly ensures we're just doing @types lookup, which is always DtsOnly. return loadModuleFromNearestNodeModulesDirectoryWorker(Extensions.DtsOnly, moduleName, directory, state, /*typesScopeOnly*/ true, /*cache*/ undefined, /*redirectedReference*/ undefined); } function loadModuleFromNearestNodeModulesDirectoryWorker(extensions, moduleName, directory, state, typesScopeOnly, cache, redirectedReference) { var perModuleNameCache = cache && cache.getOrCreateCacheForModuleName(moduleName, state.features === 0 ? undefined : state.features & NodeResolutionFeatures.EsmMode ? ts.ModuleKind.ESNext : ts.ModuleKind.CommonJS, redirectedReference); return ts.forEachAncestorDirectory(ts.normalizeSlashes(directory), function (ancestorDirectory) { if (ts.getBaseFileName(ancestorDirectory) !== "node_modules") { var resolutionFromCache = tryFindNonRelativeModuleNameInCache(perModuleNameCache, moduleName, ancestorDirectory, state); if (resolutionFromCache) { return resolutionFromCache; } return toSearchResult(loadModuleFromImmediateNodeModulesDirectory(extensions, moduleName, ancestorDirectory, state, typesScopeOnly, cache, redirectedReference)); } }); } function loadModuleFromImmediateNodeModulesDirectory(extensions, moduleName, directory, state, typesScopeOnly, cache, redirectedReference) { var nodeModulesFolder = ts.combinePaths(directory, "node_modules"); var nodeModulesFolderExists = ts.directoryProbablyExists(nodeModulesFolder, state.host); if (!nodeModulesFolderExists && state.traceEnabled) { trace(state.host, ts.Diagnostics.Directory_0_does_not_exist_skipping_all_lookups_in_it, nodeModulesFolder); } var packageResult = typesScopeOnly ? undefined : loadModuleFromSpecificNodeModulesDirectory(extensions, moduleName, nodeModulesFolder, nodeModulesFolderExists, state, cache, redirectedReference); if (packageResult) { return packageResult; } if (extensions === Extensions.TypeScript || extensions === Extensions.DtsOnly) { var nodeModulesAtTypes_1 = ts.combinePaths(nodeModulesFolder, "@types"); var nodeModulesAtTypesExists = nodeModulesFolderExists; if (nodeModulesFolderExists && !ts.directoryProbablyExists(nodeModulesAtTypes_1, state.host)) { if (state.traceEnabled) { trace(state.host, ts.Diagnostics.Directory_0_does_not_exist_skipping_all_lookups_in_it, nodeModulesAtTypes_1); } nodeModulesAtTypesExists = false; } return loadModuleFromSpecificNodeModulesDirectory(Extensions.DtsOnly, mangleScopedPackageNameWithTrace(moduleName, state), nodeModulesAtTypes_1, nodeModulesAtTypesExists, state, cache, redirectedReference); } } function loadModuleFromSpecificNodeModulesDirectory(extensions, moduleName, nodeModulesDirectory, nodeModulesDirectoryExists, state, cache, redirectedReference) { var candidate = ts.normalizePath(ts.combinePaths(nodeModulesDirectory, moduleName)); // First look for a nested package.json, as in `node_modules/foo/bar/package.json`. var packageInfo = getPackageJsonInfo(candidate, !nodeModulesDirectoryExists, state); // But only if we're not respecting export maps (if we are, we might redirect around this location) if (!(state.features & NodeResolutionFeatures.Exports)) { if (packageInfo) { var fromFile = loadModuleFromFile(extensions, candidate, !nodeModulesDirectoryExists, state); if (fromFile) { return noPackageId(fromFile); } var fromDirectory = loadNodeModuleFromDirectoryWorker(extensions, candidate, !nodeModulesDirectoryExists, state, packageInfo.packageJsonContent, packageInfo.versionPaths); return withPackageId(packageInfo, fromDirectory); } } var _a = parsePackageName(moduleName), packageName = _a.packageName, rest = _a.rest; var loader = function (extensions, candidate, onlyRecordFailures, state) { var _a; // package exports are higher priority than file/directory lookups (and, if there's exports present, blocks them) if (packageInfo && packageInfo.packageJsonContent.exports && state.features & NodeResolutionFeatures.Exports) { return (_a = loadModuleFromExports(packageInfo, extensions, ts.combinePaths(".", rest), state, cache, redirectedReference)) === null || _a === void 0 ? void 0 : _a.value; } var pathAndExtension = loadModuleFromFile(extensions, candidate, onlyRecordFailures, state) || loadNodeModuleFromDirectoryWorker(extensions, candidate, onlyRecordFailures, state, packageInfo && packageInfo.packageJsonContent, packageInfo && packageInfo.versionPaths); if (!pathAndExtension && packageInfo // eslint-disable-next-line no-null/no-null && (packageInfo.packageJsonContent.exports === undefined || packageInfo.packageJsonContent.exports === null) && state.features & NodeResolutionFeatures.EsmMode) { // EsmMode disables index lookup in `loadNodeModuleFromDirectoryWorker` generally, however non-relative package resolutions still assume // a default `index.js` entrypoint if no `main` or `exports` are present pathAndExtension = loadModuleFromFile(extensions, ts.combinePaths(candidate, "index.js"), onlyRecordFailures, state); } return withPackageId(packageInfo, pathAndExtension); }; if (rest !== "") { // If "rest" is empty, we just did this search above. var packageDirectory = ts.combinePaths(nodeModulesDirectory, packageName); // Don't use a "types" or "main" from here because we're not loading the root, but a subdirectory -- just here for the packageId and path mappings. packageInfo = getPackageJsonInfo(packageDirectory, !nodeModulesDirectoryExists, state); if (packageInfo && packageInfo.versionPaths) { if (state.traceEnabled) { trace(state.host, ts.Diagnostics.package_json_has_a_typesVersions_entry_0_that_matches_compiler_version_1_looking_for_a_pattern_to_match_module_name_2, packageInfo.versionPaths.version, ts.version, rest); } var packageDirectoryExists = nodeModulesDirectoryExists && ts.directoryProbablyExists(packageDirectory, state.host); var fromPaths = tryLoadModuleUsingPaths(extensions, rest, packageDirectory, packageInfo.versionPaths.paths, /*pathPatterns*/ undefined, loader, !packageDirectoryExists, state); if (fromPaths) { return fromPaths.value; } } } return loader(extensions, candidate, !nodeModulesDirectoryExists, state); } function tryLoadModuleUsingPaths(extensions, moduleName, baseDirectory, paths, pathPatterns, loader, onlyRecordFailures, state) { pathPatterns || (pathPatterns = ts.tryParsePatterns(paths)); var matchedPattern = ts.matchPatternOrExact(pathPatterns, moduleName); if (matchedPattern) { var matchedStar_1 = ts.isString(matchedPattern) ? undefined : ts.matchedText(matchedPattern, moduleName); var matchedPatternText = ts.isString(matchedPattern) ? matchedPattern : ts.patternText(matchedPattern); if (state.traceEnabled) { trace(state.host, ts.Diagnostics.Module_name_0_matched_pattern_1, moduleName, matchedPatternText); } var resolved = ts.forEach(paths[matchedPatternText], function (subst) { var path = matchedStar_1 ? subst.replace("*", matchedStar_1) : subst; // When baseUrl is not specified, the command line parser resolves relative paths to the config file location. var candidate = ts.normalizePath(ts.combinePaths(baseDirectory, path)); if (state.traceEnabled) { trace(state.host, ts.Diagnostics.Trying_substitution_0_candidate_module_location_Colon_1, subst, path); } // A path mapping may have an extension, in contrast to an import, which should omit it. var extension = ts.tryGetExtensionFromPath(subst); if (extension !== undefined) { var path_1 = tryFile(candidate, onlyRecordFailures, state); if (path_1 !== undefined) { return noPackageId({ path: path_1, ext: extension }); } } return loader(extensions, candidate, onlyRecordFailures || !ts.directoryProbablyExists(ts.getDirectoryPath(candidate), state.host), state); }); return { value: resolved }; } } /** Double underscores are used in DefinitelyTyped to delimit scoped packages. */ var mangledScopedPackageSeparator = "__"; /** For a scoped package, we must look in `@types/foo__bar` instead of `@types/@foo/bar`. */ function mangleScopedPackageNameWithTrace(packageName, state) { var mangled = mangleScopedPackageName(packageName); if (state.traceEnabled && mangled !== packageName) { trace(state.host, ts.Diagnostics.Scoped_package_detected_looking_in_0, mangled); } return mangled; } /* @internal */ function getTypesPackageName(packageName) { return "@types/".concat(mangleScopedPackageName(packageName)); } ts.getTypesPackageName = getTypesPackageName; /* @internal */ function mangleScopedPackageName(packageName) { if (ts.startsWith(packageName, "@")) { var replaceSlash = packageName.replace(ts.directorySeparator, mangledScopedPackageSeparator); if (replaceSlash !== packageName) { return replaceSlash.slice(1); // Take off the "@" } } return packageName; } ts.mangleScopedPackageName = mangleScopedPackageName; /* @internal */ function getPackageNameFromTypesPackageName(mangledName) { var withoutAtTypePrefix = ts.removePrefix(mangledName, "@types/"); if (withoutAtTypePrefix !== mangledName) { return unmangleScopedPackageName(withoutAtTypePrefix); } return mangledName; } ts.getPackageNameFromTypesPackageName = getPackageNameFromTypesPackageName; /* @internal */ function unmangleScopedPackageName(typesPackageName) { return ts.stringContains(typesPackageName, mangledScopedPackageSeparator) ? "@" + typesPackageName.replace(mangledScopedPackageSeparator, ts.directorySeparator) : typesPackageName; } ts.unmangleScopedPackageName = unmangleScopedPackageName; function tryFindNonRelativeModuleNameInCache(cache, moduleName, containingDirectory, state) { var result = cache && cache.get(containingDirectory); if (result) { if (state.traceEnabled) { trace(state.host, ts.Diagnostics.Resolution_for_module_0_was_found_in_cache_from_location_1, moduleName, containingDirectory); } state.resultFromCache = result; return { value: result.resolvedModule && { path: result.resolvedModule.resolvedFileName, originalPath: result.resolvedModule.originalPath || true, extension: result.resolvedModule.extension, packageId: result.resolvedModule.packageId } }; } } function classicNameResolver(moduleName, containingFile, compilerOptions, host, cache, redirectedReference) { var traceEnabled = isTraceEnabled(compilerOptions, host); var failedLookupLocations = []; var containingDirectory = ts.getDirectoryPath(containingFile); var diagnostics = []; var state = { compilerOptions: compilerOptions, host: host, traceEnabled: traceEnabled, failedLookupLocations: failedLookupLocations, packageJsonInfoCache: cache, features: NodeResolutionFeatures.None, conditions: [], requestContainingDirectory: containingDirectory, reportDiagnostic: function (diag) { return void diagnostics.push(diag); } }; var resolved = tryResolve(Extensions.TypeScript) || tryResolve(Extensions.JavaScript); // No originalPath because classic resolution doesn't resolve realPath return createResolvedModuleWithFailedLookupLocations(resolved && resolved.value, /*isExternalLibraryImport*/ false, failedLookupLocations, diagnostics, state.resultFromCache); function tryResolve(extensions) { var resolvedUsingSettings = tryLoadModuleUsingOptionalResolutionSettings(extensions, moduleName, containingDirectory, loadModuleFromFileNoPackageId, state); if (resolvedUsingSettings) { return { value: resolvedUsingSettings }; } if (!ts.isExternalModuleNameRelative(moduleName)) { var perModuleNameCache_1 = cache && cache.getOrCreateCacheForModuleName(moduleName, /*mode*/ undefined, redirectedReference); // Climb up parent directories looking for a module. var resolved_3 = ts.forEachAncestorDirectory(containingDirectory, function (directory) { var resolutionFromCache = tryFindNonRelativeModuleNameInCache(perModuleNameCache_1, moduleName, directory, state); if (resolutionFromCache) { return resolutionFromCache; } var searchName = ts.normalizePath(ts.combinePaths(directory, moduleName)); return toSearchResult(loadModuleFromFileNoPackageId(extensions, searchName, /*onlyRecordFailures*/ false, state)); }); if (resolved_3) { return resolved_3; } if (extensions === Extensions.TypeScript) { // If we didn't find the file normally, look it up in @types. return loadModuleFromNearestNodeModulesDirectoryTypesScope(moduleName, containingDirectory, state); } } else { var candidate = ts.normalizePath(ts.combinePaths(containingDirectory, moduleName)); return toSearchResult(loadModuleFromFileNoPackageId(extensions, candidate, /*onlyRecordFailures*/ false, state)); } } } ts.classicNameResolver = classicNameResolver; /** * A host may load a module from a global cache of typings. * This is the minumum code needed to expose that functionality; the rest is in the host. */ /* @internal */ function loadModuleFromGlobalCache(moduleName, projectName, compilerOptions, host, globalCache, packageJsonInfoCache) { var traceEnabled = isTraceEnabled(compilerOptions, host); if (traceEnabled) { trace(host, ts.Diagnostics.Auto_discovery_for_typings_is_enabled_in_project_0_Running_extra_resolution_pass_for_module_1_using_cache_location_2, projectName, moduleName, globalCache); } var failedLookupLocations = []; var diagnostics = []; var state = { compilerOptions: compilerOptions, host: host, traceEnabled: traceEnabled, failedLookupLocations: failedLookupLocations, packageJsonInfoCache: packageJsonInfoCache, features: NodeResolutionFeatures.None, conditions: [], requestContainingDirectory: undefined, reportDiagnostic: function (diag) { return void diagnostics.push(diag); } }; var resolved = loadModuleFromImmediateNodeModulesDirectory(Extensions.DtsOnly, moduleName, globalCache, state, /*typesScopeOnly*/ false, /*cache*/ undefined, /*redirectedReference*/ undefined); return createResolvedModuleWithFailedLookupLocations(resolved, /*isExternalLibraryImport*/ true, failedLookupLocations, diagnostics, state.resultFromCache); } ts.loadModuleFromGlobalCache = loadModuleFromGlobalCache; /** * Wraps value to SearchResult. * @returns undefined if value is undefined or { value } otherwise */ function toSearchResult(value) { return value !== undefined ? { value: value } : undefined; } })(ts || (ts = {})); /* @internal */ var ts; (function (ts) { var ModuleInstanceState; (function (ModuleInstanceState) { ModuleInstanceState[ModuleInstanceState["NonInstantiated"] = 0] = "NonInstantiated"; ModuleInstanceState[ModuleInstanceState["Instantiated"] = 1] = "Instantiated"; ModuleInstanceState[ModuleInstanceState["ConstEnumOnly"] = 2] = "ConstEnumOnly"; })(ModuleInstanceState = ts.ModuleInstanceState || (ts.ModuleInstanceState = {})); function getModuleInstanceState(node, visited) { if (node.body && !node.body.parent) { // getModuleInstanceStateForAliasTarget needs to walk up the parent chain, so parent pointers must be set on this tree already ts.setParent(node.body, node); ts.setParentRecursive(node.body, /*incremental*/ false); } return node.body ? getModuleInstanceStateCached(node.body, visited) : 1 /* ModuleInstanceState.Instantiated */; } ts.getModuleInstanceState = getModuleInstanceState; function getModuleInstanceStateCached(node, visited) { if (visited === void 0) { visited = new ts.Map(); } var nodeId = ts.getNodeId(node); if (visited.has(nodeId)) { return visited.get(nodeId) || 0 /* ModuleInstanceState.NonInstantiated */; } visited.set(nodeId, undefined); var result = getModuleInstanceStateWorker(node, visited); visited.set(nodeId, result); return result; } function getModuleInstanceStateWorker(node, visited) { // A module is uninstantiated if it contains only switch (node.kind) { // 1. interface declarations, type alias declarations case 258 /* SyntaxKind.InterfaceDeclaration */: case 259 /* SyntaxKind.TypeAliasDeclaration */: return 0 /* ModuleInstanceState.NonInstantiated */; // 2. const enum declarations case 260 /* SyntaxKind.EnumDeclaration */: if (ts.isEnumConst(node)) { return 2 /* ModuleInstanceState.ConstEnumOnly */; } break; // 3. non-exported import declarations case 266 /* SyntaxKind.ImportDeclaration */: case 265 /* SyntaxKind.ImportEqualsDeclaration */: if (!(ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */))) { return 0 /* ModuleInstanceState.NonInstantiated */; } break; // 4. Export alias declarations pointing at only uninstantiated modules or things uninstantiated modules contain case 272 /* SyntaxKind.ExportDeclaration */: var exportDeclaration = node; if (!exportDeclaration.moduleSpecifier && exportDeclaration.exportClause && exportDeclaration.exportClause.kind === 273 /* SyntaxKind.NamedExports */) { var state = 0 /* ModuleInstanceState.NonInstantiated */; for (var _i = 0, _a = exportDeclaration.exportClause.elements; _i < _a.length; _i++) { var specifier = _a[_i]; var specifierState = getModuleInstanceStateForAliasTarget(specifier, visited); if (specifierState > state) { state = specifierState; } if (state === 1 /* ModuleInstanceState.Instantiated */) { return state; } } return state; } break; // 5. other uninstantiated module declarations. case 262 /* SyntaxKind.ModuleBlock */: { var state_1 = 0 /* ModuleInstanceState.NonInstantiated */; ts.forEachChild(node, function (n) { var childState = getModuleInstanceStateCached(n, visited); switch (childState) { case 0 /* ModuleInstanceState.NonInstantiated */: // child is non-instantiated - continue searching return; case 2 /* ModuleInstanceState.ConstEnumOnly */: // child is const enum only - record state and continue searching state_1 = 2 /* ModuleInstanceState.ConstEnumOnly */; return; case 1 /* ModuleInstanceState.Instantiated */: // child is instantiated - record state and stop state_1 = 1 /* ModuleInstanceState.Instantiated */; return true; default: ts.Debug.assertNever(childState); } }); return state_1; } case 261 /* SyntaxKind.ModuleDeclaration */: return getModuleInstanceState(node, visited); case 79 /* SyntaxKind.Identifier */: // Only jsdoc typedef definition can exist in jsdoc namespace, and it should // be considered the same as type alias if (node.isInJSDocNamespace) { return 0 /* ModuleInstanceState.NonInstantiated */; } } return 1 /* ModuleInstanceState.Instantiated */; } function getModuleInstanceStateForAliasTarget(specifier, visited) { var name = specifier.propertyName || specifier.name; var p = specifier.parent; while (p) { if (ts.isBlock(p) || ts.isModuleBlock(p) || ts.isSourceFile(p)) { var statements = p.statements; var found = void 0; for (var _i = 0, statements_2 = statements; _i < statements_2.length; _i++) { var statement = statements_2[_i]; if (ts.nodeHasName(statement, name)) { if (!statement.parent) { ts.setParent(statement, p); ts.setParentRecursive(statement, /*incremental*/ false); } var state = getModuleInstanceStateCached(statement, visited); if (found === undefined || state > found) { found = state; } if (found === 1 /* ModuleInstanceState.Instantiated */) { return found; } } } if (found !== undefined) { return found; } } p = p.parent; } return 1 /* ModuleInstanceState.Instantiated */; // Couldn't locate, assume could refer to a value } var ContainerFlags; (function (ContainerFlags) { // The current node is not a container, and no container manipulation should happen before // recursing into it. ContainerFlags[ContainerFlags["None"] = 0] = "None"; // The current node is a container. It should be set as the current container (and block- // container) before recursing into it. The current node does not have locals. Examples: // // Classes, ObjectLiterals, TypeLiterals, Interfaces... ContainerFlags[ContainerFlags["IsContainer"] = 1] = "IsContainer"; // The current node is a block-scoped-container. It should be set as the current block- // container before recursing into it. Examples: // // Blocks (when not parented by functions), Catch clauses, For/For-in/For-of statements... ContainerFlags[ContainerFlags["IsBlockScopedContainer"] = 2] = "IsBlockScopedContainer"; // The current node is the container of a control flow path. The current control flow should // be saved and restored, and a new control flow initialized within the container. ContainerFlags[ContainerFlags["IsControlFlowContainer"] = 4] = "IsControlFlowContainer"; ContainerFlags[ContainerFlags["IsFunctionLike"] = 8] = "IsFunctionLike"; ContainerFlags[ContainerFlags["IsFunctionExpression"] = 16] = "IsFunctionExpression"; ContainerFlags[ContainerFlags["HasLocals"] = 32] = "HasLocals"; ContainerFlags[ContainerFlags["IsInterface"] = 64] = "IsInterface"; ContainerFlags[ContainerFlags["IsObjectLiteralOrClassExpressionMethodOrAccessor"] = 128] = "IsObjectLiteralOrClassExpressionMethodOrAccessor"; })(ContainerFlags || (ContainerFlags = {})); function initFlowNode(node) { ts.Debug.attachFlowNodeDebugInfo(node); return node; } var binder = createBinder(); function bindSourceFile(file, options) { ts.performance.mark("beforeBind"); ts.perfLogger.logStartBindFile("" + file.fileName); binder(file, options); ts.perfLogger.logStopBindFile(); ts.performance.mark("afterBind"); ts.performance.measure("Bind", "beforeBind", "afterBind"); } ts.bindSourceFile = bindSourceFile; function createBinder() { var file; var options; var languageVersion; var parent; var container; var thisParentContainer; // Container one level up var blockScopeContainer; var lastContainer; var delayedTypeAliases; var seenThisKeyword; // state used by control flow analysis var currentFlow; var currentBreakTarget; var currentContinueTarget; var currentReturnTarget; var currentTrueTarget; var currentFalseTarget; var currentExceptionTarget; var preSwitchCaseFlow; var activeLabelList; var hasExplicitReturn; // state used for emit helpers var emitFlags; // If this file is an external module, then it is automatically in strict-mode according to // ES6. If it is not an external module, then we'll determine if it is in strict mode or // not depending on if we see "use strict" in certain places or if we hit a class/namespace // or if compiler options contain alwaysStrict. var inStrictMode; // If we are binding an assignment pattern, we will bind certain expressions differently. var inAssignmentPattern = false; var symbolCount = 0; var Symbol; var classifiableNames; var unreachableFlow = { flags: 1 /* FlowFlags.Unreachable */ }; var reportedUnreachableFlow = { flags: 1 /* FlowFlags.Unreachable */ }; var bindBinaryExpressionFlow = createBindBinaryExpressionFlow(); /** * Inside the binder, we may create a diagnostic for an as-yet unbound node (with potentially no parent pointers, implying no accessible source file) * If so, the node _must_ be in the current file (as that's the only way anything could have traversed to it to yield it as the error node) * This version of `createDiagnosticForNode` uses the binder's context to account for this, and always yields correct diagnostics even in these situations. */ function createDiagnosticForNode(node, message, arg0, arg1, arg2) { return ts.createDiagnosticForNodeInSourceFile(ts.getSourceFileOfNode(node) || file, node, message, arg0, arg1, arg2); } function bindSourceFile(f, opts) { file = f; options = opts; languageVersion = ts.getEmitScriptTarget(options); inStrictMode = bindInStrictMode(file, opts); classifiableNames = new ts.Set(); symbolCount = 0; Symbol = ts.objectAllocator.getSymbolConstructor(); // Attach debugging information if necessary ts.Debug.attachFlowNodeDebugInfo(unreachableFlow); ts.Debug.attachFlowNodeDebugInfo(reportedUnreachableFlow); if (!file.locals) { ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("bind" /* tracing.Phase.Bind */, "bindSourceFile", { path: file.path }, /*separateBeginAndEnd*/ true); bind(file); ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); file.symbolCount = symbolCount; file.classifiableNames = classifiableNames; delayedBindJSDocTypedefTag(); } file = undefined; options = undefined; languageVersion = undefined; parent = undefined; container = undefined; thisParentContainer = undefined; blockScopeContainer = undefined; lastContainer = undefined; delayedTypeAliases = undefined; seenThisKeyword = false; currentFlow = undefined; currentBreakTarget = undefined; currentContinueTarget = undefined; currentReturnTarget = undefined; currentTrueTarget = undefined; currentFalseTarget = undefined; currentExceptionTarget = undefined; activeLabelList = undefined; hasExplicitReturn = false; inAssignmentPattern = false; emitFlags = 0 /* NodeFlags.None */; } return bindSourceFile; function bindInStrictMode(file, opts) { if (ts.getStrictOptionValue(opts, "alwaysStrict") && !file.isDeclarationFile) { // bind in strict mode source files with alwaysStrict option return true; } else { return !!file.externalModuleIndicator; } } function createSymbol(flags, name) { symbolCount++; return new Symbol(flags, name); } function addDeclarationToSymbol(symbol, node, symbolFlags) { symbol.flags |= symbolFlags; node.symbol = symbol; symbol.declarations = ts.appendIfUnique(symbol.declarations, node); if (symbolFlags & (32 /* SymbolFlags.Class */ | 384 /* SymbolFlags.Enum */ | 1536 /* SymbolFlags.Module */ | 3 /* SymbolFlags.Variable */) && !symbol.exports) { symbol.exports = ts.createSymbolTable(); } if (symbolFlags & (32 /* SymbolFlags.Class */ | 64 /* SymbolFlags.Interface */ | 2048 /* SymbolFlags.TypeLiteral */ | 4096 /* SymbolFlags.ObjectLiteral */) && !symbol.members) { symbol.members = ts.createSymbolTable(); } // On merge of const enum module with class or function, reset const enum only flag (namespaces will already recalculate) if (symbol.constEnumOnlyModule && (symbol.flags & (16 /* SymbolFlags.Function */ | 32 /* SymbolFlags.Class */ | 256 /* SymbolFlags.RegularEnum */))) { symbol.constEnumOnlyModule = false; } if (symbolFlags & 111551 /* SymbolFlags.Value */) { ts.setValueDeclaration(symbol, node); } } // Should not be called on a declaration with a computed property name, // unless it is a well known Symbol. function getDeclarationName(node) { if (node.kind === 271 /* SyntaxKind.ExportAssignment */) { return node.isExportEquals ? "export=" /* InternalSymbolName.ExportEquals */ : "default" /* InternalSymbolName.Default */; } var name = ts.getNameOfDeclaration(node); if (name) { if (ts.isAmbientModule(node)) { var moduleName = ts.getTextOfIdentifierOrLiteral(name); return (ts.isGlobalScopeAugmentation(node) ? "__global" : "\"".concat(moduleName, "\"")); } if (name.kind === 162 /* SyntaxKind.ComputedPropertyName */) { var nameExpression = name.expression; // treat computed property names where expression is string/numeric literal as just string/numeric literal if (ts.isStringOrNumericLiteralLike(nameExpression)) { return ts.escapeLeadingUnderscores(nameExpression.text); } if (ts.isSignedNumericLiteral(nameExpression)) { return ts.tokenToString(nameExpression.operator) + nameExpression.operand.text; } else { ts.Debug.fail("Only computed properties with literal names have declaration names"); } } if (ts.isPrivateIdentifier(name)) { // containingClass exists because private names only allowed inside classes var containingClass = ts.getContainingClass(node); if (!containingClass) { // we can get here in cases where there is already a parse error. return undefined; } var containingClassSymbol = containingClass.symbol; return ts.getSymbolNameForPrivateIdentifier(containingClassSymbol, name.escapedText); } return ts.isPropertyNameLiteral(name) ? ts.getEscapedTextOfIdentifierOrLiteral(name) : undefined; } switch (node.kind) { case 171 /* SyntaxKind.Constructor */: return "__constructor" /* InternalSymbolName.Constructor */; case 179 /* SyntaxKind.FunctionType */: case 174 /* SyntaxKind.CallSignature */: case 323 /* SyntaxKind.JSDocSignature */: return "__call" /* InternalSymbolName.Call */; case 180 /* SyntaxKind.ConstructorType */: case 175 /* SyntaxKind.ConstructSignature */: return "__new" /* InternalSymbolName.New */; case 176 /* SyntaxKind.IndexSignature */: return "__index" /* InternalSymbolName.Index */; case 272 /* SyntaxKind.ExportDeclaration */: return "__export" /* InternalSymbolName.ExportStar */; case 305 /* SyntaxKind.SourceFile */: // json file should behave as // module.exports = ... return "export=" /* InternalSymbolName.ExportEquals */; case 221 /* SyntaxKind.BinaryExpression */: if (ts.getAssignmentDeclarationKind(node) === 2 /* AssignmentDeclarationKind.ModuleExports */) { // module.exports = ... return "export=" /* InternalSymbolName.ExportEquals */; } ts.Debug.fail("Unknown binary declaration kind"); break; case 317 /* SyntaxKind.JSDocFunctionType */: return (ts.isJSDocConstructSignature(node) ? "__new" /* InternalSymbolName.New */ : "__call" /* InternalSymbolName.Call */); case 164 /* SyntaxKind.Parameter */: // Parameters with names are handled at the top of this function. Parameters // without names can only come from JSDocFunctionTypes. ts.Debug.assert(node.parent.kind === 317 /* SyntaxKind.JSDocFunctionType */, "Impossible parameter parent kind", function () { return "parent is: ".concat(ts.SyntaxKind ? ts.SyntaxKind[node.parent.kind] : node.parent.kind, ", expected JSDocFunctionType"); }); var functionType = node.parent; var index = functionType.parameters.indexOf(node); return "arg" + index; } } function getDisplayName(node) { return ts.isNamedDeclaration(node) ? ts.declarationNameToString(node.name) : ts.unescapeLeadingUnderscores(ts.Debug.checkDefined(getDeclarationName(node))); } /** * Declares a Symbol for the node and adds it to symbols. Reports errors for conflicting identifier names. * @param symbolTable - The symbol table which node will be added to. * @param parent - node's parent declaration. * @param node - The declaration to be added to the symbol table * @param includes - The SymbolFlags that node has in addition to its declaration type (eg: export, ambient, etc.) * @param excludes - The flags which node cannot be declared alongside in a symbol table. Used to report forbidden declarations. */ function declareSymbol(symbolTable, parent, node, includes, excludes, isReplaceableByMethod, isComputedName) { ts.Debug.assert(isComputedName || !ts.hasDynamicName(node)); var isDefaultExport = ts.hasSyntacticModifier(node, 512 /* ModifierFlags.Default */) || ts.isExportSpecifier(node) && node.name.escapedText === "default"; // The exported symbol for an export default function/class node is always named "default" var name = isComputedName ? "__computed" /* InternalSymbolName.Computed */ : isDefaultExport && parent ? "default" /* InternalSymbolName.Default */ : getDeclarationName(node); var symbol; if (name === undefined) { symbol = createSymbol(0 /* SymbolFlags.None */, "__missing" /* InternalSymbolName.Missing */); } else { // Check and see if the symbol table already has a symbol with this name. If not, // create a new symbol with this name and add it to the table. Note that we don't // give the new symbol any flags *yet*. This ensures that it will not conflict // with the 'excludes' flags we pass in. // // If we do get an existing symbol, see if it conflicts with the new symbol we're // creating. For example, a 'var' symbol and a 'class' symbol will conflict within // the same symbol table. If we have a conflict, report the issue on each // declaration we have for this symbol, and then create a new symbol for this // declaration. // // Note that when properties declared in Javascript constructors // (marked by isReplaceableByMethod) conflict with another symbol, the property loses. // Always. This allows the common Javascript pattern of overwriting a prototype method // with an bound instance method of the same type: `this.method = this.method.bind(this)` // // If we created a new symbol, either because we didn't have a symbol with this name // in the symbol table, or we conflicted with an existing symbol, then just add this // node as the sole declaration of the new symbol. // // Otherwise, we'll be merging into a compatible existing symbol (for example when // you have multiple 'vars' with the same name in the same container). In this case // just add this node into the declarations list of the symbol. symbol = symbolTable.get(name); if (includes & 2885600 /* SymbolFlags.Classifiable */) { classifiableNames.add(name); } if (!symbol) { symbolTable.set(name, symbol = createSymbol(0 /* SymbolFlags.None */, name)); if (isReplaceableByMethod) symbol.isReplaceableByMethod = true; } else if (isReplaceableByMethod && !symbol.isReplaceableByMethod) { // A symbol already exists, so don't add this as a declaration. return symbol; } else if (symbol.flags & excludes) { if (symbol.isReplaceableByMethod) { // Javascript constructor-declared symbols can be discarded in favor of // prototype symbols like methods. symbolTable.set(name, symbol = createSymbol(0 /* SymbolFlags.None */, name)); } else if (!(includes & 3 /* SymbolFlags.Variable */ && symbol.flags & 67108864 /* SymbolFlags.Assignment */)) { // Assignment declarations are allowed to merge with variables, no matter what other flags they have. if (ts.isNamedDeclaration(node)) { ts.setParent(node.name, node); } // Report errors every position with duplicate declaration // Report errors on previous encountered declarations var message_1 = symbol.flags & 2 /* SymbolFlags.BlockScopedVariable */ ? ts.Diagnostics.Cannot_redeclare_block_scoped_variable_0 : ts.Diagnostics.Duplicate_identifier_0; var messageNeedsName_1 = true; if (symbol.flags & 384 /* SymbolFlags.Enum */ || includes & 384 /* SymbolFlags.Enum */) { message_1 = ts.Diagnostics.Enum_declarations_can_only_merge_with_namespace_or_other_enum_declarations; messageNeedsName_1 = false; } var multipleDefaultExports_1 = false; if (ts.length(symbol.declarations)) { // If the current node is a default export of some sort, then check if // there are any other default exports that we need to error on. // We'll know whether we have other default exports depending on if `symbol` already has a declaration list set. if (isDefaultExport) { message_1 = ts.Diagnostics.A_module_cannot_have_multiple_default_exports; messageNeedsName_1 = false; multipleDefaultExports_1 = true; } else { // This is to properly report an error in the case "export default { }" is after export default of class declaration or function declaration. // Error on multiple export default in the following case: // 1. multiple export default of class declaration or function declaration by checking NodeFlags.Default // 2. multiple export default of export assignment. This one doesn't have NodeFlags.Default on (as export default doesn't considered as modifiers) if (symbol.declarations && symbol.declarations.length && (node.kind === 271 /* SyntaxKind.ExportAssignment */ && !node.isExportEquals)) { message_1 = ts.Diagnostics.A_module_cannot_have_multiple_default_exports; messageNeedsName_1 = false; multipleDefaultExports_1 = true; } } } var relatedInformation_1 = []; if (ts.isTypeAliasDeclaration(node) && ts.nodeIsMissing(node.type) && ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */) && symbol.flags & (2097152 /* SymbolFlags.Alias */ | 788968 /* SymbolFlags.Type */ | 1920 /* SymbolFlags.Namespace */)) { // export type T; - may have meant export type { T }? relatedInformation_1.push(createDiagnosticForNode(node, ts.Diagnostics.Did_you_mean_0, "export type { ".concat(ts.unescapeLeadingUnderscores(node.name.escapedText), " }"))); } var declarationName_1 = ts.getNameOfDeclaration(node) || node; ts.forEach(symbol.declarations, function (declaration, index) { var decl = ts.getNameOfDeclaration(declaration) || declaration; var diag = createDiagnosticForNode(decl, message_1, messageNeedsName_1 ? getDisplayName(declaration) : undefined); file.bindDiagnostics.push(multipleDefaultExports_1 ? ts.addRelatedInfo(diag, createDiagnosticForNode(declarationName_1, index === 0 ? ts.Diagnostics.Another_export_default_is_here : ts.Diagnostics.and_here)) : diag); if (multipleDefaultExports_1) { relatedInformation_1.push(createDiagnosticForNode(decl, ts.Diagnostics.The_first_export_default_is_here)); } }); var diag = createDiagnosticForNode(declarationName_1, message_1, messageNeedsName_1 ? getDisplayName(node) : undefined); file.bindDiagnostics.push(ts.addRelatedInfo.apply(void 0, __spreadArray([diag], relatedInformation_1, false))); symbol = createSymbol(0 /* SymbolFlags.None */, name); } } } addDeclarationToSymbol(symbol, node, includes); if (symbol.parent) { ts.Debug.assert(symbol.parent === parent, "Existing symbol parent should match new one"); } else { symbol.parent = parent; } return symbol; } function declareModuleMember(node, symbolFlags, symbolExcludes) { var hasExportModifier = !!(ts.getCombinedModifierFlags(node) & 1 /* ModifierFlags.Export */) || jsdocTreatAsExported(node); if (symbolFlags & 2097152 /* SymbolFlags.Alias */) { if (node.kind === 275 /* SyntaxKind.ExportSpecifier */ || (node.kind === 265 /* SyntaxKind.ImportEqualsDeclaration */ && hasExportModifier)) { return declareSymbol(container.symbol.exports, container.symbol, node, symbolFlags, symbolExcludes); } else { return declareSymbol(container.locals, /*parent*/ undefined, node, symbolFlags, symbolExcludes); } } else { // Exported module members are given 2 symbols: A local symbol that is classified with an ExportValue flag, // and an associated export symbol with all the correct flags set on it. There are 2 main reasons: // // 1. We treat locals and exports of the same name as mutually exclusive within a container. // That means the binder will issue a Duplicate Identifier error if you mix locals and exports // with the same name in the same container. // TODO: Make this a more specific error and decouple it from the exclusion logic. // 2. When we checkIdentifier in the checker, we set its resolved symbol to the local symbol, // but return the export symbol (by calling getExportSymbolOfValueSymbolIfExported). That way // when the emitter comes back to it, it knows not to qualify the name if it was found in a containing scope. // NOTE: Nested ambient modules always should go to to 'locals' table to prevent their automatic merge // during global merging in the checker. Why? The only case when ambient module is permitted inside another module is module augmentation // and this case is specially handled. Module augmentations should only be merged with original module definition // and should never be merged directly with other augmentation, and the latter case would be possible if automatic merge is allowed. if (ts.isJSDocTypeAlias(node)) ts.Debug.assert(ts.isInJSFile(node)); // We shouldn't add symbols for JSDoc nodes if not in a JS file. if (!ts.isAmbientModule(node) && (hasExportModifier || container.flags & 64 /* NodeFlags.ExportContext */)) { if (!container.locals || (ts.hasSyntacticModifier(node, 512 /* ModifierFlags.Default */) && !getDeclarationName(node))) { return declareSymbol(container.symbol.exports, container.symbol, node, symbolFlags, symbolExcludes); // No local symbol for an unnamed default! } var exportKind = symbolFlags & 111551 /* SymbolFlags.Value */ ? 1048576 /* SymbolFlags.ExportValue */ : 0; var local = declareSymbol(container.locals, /*parent*/ undefined, node, exportKind, symbolExcludes); local.exportSymbol = declareSymbol(container.symbol.exports, container.symbol, node, symbolFlags, symbolExcludes); node.localSymbol = local; return local; } else { return declareSymbol(container.locals, /*parent*/ undefined, node, symbolFlags, symbolExcludes); } } } function jsdocTreatAsExported(node) { if (node.parent && ts.isModuleDeclaration(node)) { node = node.parent; } if (!ts.isJSDocTypeAlias(node)) return false; // jsdoc typedef handling is a bit of a doozy, but to summarize, treat the typedef as exported if: // 1. It has an explicit name (since by default typedefs are always directly exported, either at the top level or in a container), or if (!ts.isJSDocEnumTag(node) && !!node.fullName) return true; // 2. The thing a nameless typedef pulls its name from is implicitly a direct export (either by assignment or actual export flag). var declName = ts.getNameOfDeclaration(node); if (!declName) return false; if (ts.isPropertyAccessEntityNameExpression(declName.parent) && isTopLevelNamespaceAssignment(declName.parent)) return true; if (ts.isDeclaration(declName.parent) && ts.getCombinedModifierFlags(declName.parent) & 1 /* ModifierFlags.Export */) return true; // This could potentially be simplified by having `delayedBindJSDocTypedefTag` pass in an override for `hasExportModifier`, since it should // already have calculated and branched on most of this. return false; } // All container nodes are kept on a linked list in declaration order. This list is used by // the getLocalNameOfContainer function in the type checker to validate that the local name // used for a container is unique. function bindContainer(node, containerFlags) { // Before we recurse into a node's children, we first save the existing parent, container // and block-container. Then after we pop out of processing the children, we restore // these saved values. var saveContainer = container; var saveThisParentContainer = thisParentContainer; var savedBlockScopeContainer = blockScopeContainer; // Depending on what kind of node this is, we may have to adjust the current container // and block-container. If the current node is a container, then it is automatically // considered the current block-container as well. Also, for containers that we know // may contain locals, we eagerly initialize the .locals field. We do this because // it's highly likely that the .locals will be needed to place some child in (for example, // a parameter, or variable declaration). // // However, we do not proactively create the .locals for block-containers because it's // totally normal and common for block-containers to never actually have a block-scoped // variable in them. We don't want to end up allocating an object for every 'block' we // run into when most of them won't be necessary. // // Finally, if this is a block-container, then we clear out any existing .locals object // it may contain within it. This happens in incremental scenarios. Because we can be // reusing a node from a previous compilation, that node may have had 'locals' created // for it. We must clear this so we don't accidentally move any stale data forward from // a previous compilation. if (containerFlags & 1 /* ContainerFlags.IsContainer */) { if (node.kind !== 214 /* SyntaxKind.ArrowFunction */) { thisParentContainer = container; } container = blockScopeContainer = node; if (containerFlags & 32 /* ContainerFlags.HasLocals */) { container.locals = ts.createSymbolTable(); } addToContainerChain(container); } else if (containerFlags & 2 /* ContainerFlags.IsBlockScopedContainer */) { blockScopeContainer = node; blockScopeContainer.locals = undefined; } if (containerFlags & 4 /* ContainerFlags.IsControlFlowContainer */) { var saveCurrentFlow = currentFlow; var saveBreakTarget = currentBreakTarget; var saveContinueTarget = currentContinueTarget; var saveReturnTarget = currentReturnTarget; var saveExceptionTarget = currentExceptionTarget; var saveActiveLabelList = activeLabelList; var saveHasExplicitReturn = hasExplicitReturn; var isImmediatelyInvoked = (containerFlags & 16 /* ContainerFlags.IsFunctionExpression */ && !ts.hasSyntacticModifier(node, 256 /* ModifierFlags.Async */) && !node.asteriskToken && !!ts.getImmediatelyInvokedFunctionExpression(node)) || node.kind === 170 /* SyntaxKind.ClassStaticBlockDeclaration */; // A non-async, non-generator IIFE is considered part of the containing control flow. Return statements behave // similarly to break statements that exit to a label just past the statement body. if (!isImmediatelyInvoked) { currentFlow = initFlowNode({ flags: 2 /* FlowFlags.Start */ }); if (containerFlags & (16 /* ContainerFlags.IsFunctionExpression */ | 128 /* ContainerFlags.IsObjectLiteralOrClassExpressionMethodOrAccessor */)) { currentFlow.node = node; } } // We create a return control flow graph for IIFEs and constructors. For constructors // we use the return control flow graph in strict property initialization checks. currentReturnTarget = isImmediatelyInvoked || node.kind === 171 /* SyntaxKind.Constructor */ || (ts.isInJSFile(node) && (node.kind === 256 /* SyntaxKind.FunctionDeclaration */ || node.kind === 213 /* SyntaxKind.FunctionExpression */)) ? createBranchLabel() : undefined; currentExceptionTarget = undefined; currentBreakTarget = undefined; currentContinueTarget = undefined; activeLabelList = undefined; hasExplicitReturn = false; bindChildren(node); // Reset all reachability check related flags on node (for incremental scenarios) node.flags &= ~2816 /* NodeFlags.ReachabilityAndEmitFlags */; if (!(currentFlow.flags & 1 /* FlowFlags.Unreachable */) && containerFlags & 8 /* ContainerFlags.IsFunctionLike */ && ts.nodeIsPresent(node.body)) { node.flags |= 256 /* NodeFlags.HasImplicitReturn */; if (hasExplicitReturn) node.flags |= 512 /* NodeFlags.HasExplicitReturn */; node.endFlowNode = currentFlow; } if (node.kind === 305 /* SyntaxKind.SourceFile */) { node.flags |= emitFlags; node.endFlowNode = currentFlow; } if (currentReturnTarget) { addAntecedent(currentReturnTarget, currentFlow); currentFlow = finishFlowLabel(currentReturnTarget); if (node.kind === 171 /* SyntaxKind.Constructor */ || node.kind === 170 /* SyntaxKind.ClassStaticBlockDeclaration */ || (ts.isInJSFile(node) && (node.kind === 256 /* SyntaxKind.FunctionDeclaration */ || node.kind === 213 /* SyntaxKind.FunctionExpression */))) { node.returnFlowNode = currentFlow; } } if (!isImmediatelyInvoked) { currentFlow = saveCurrentFlow; } currentBreakTarget = saveBreakTarget; currentContinueTarget = saveContinueTarget; currentReturnTarget = saveReturnTarget; currentExceptionTarget = saveExceptionTarget; activeLabelList = saveActiveLabelList; hasExplicitReturn = saveHasExplicitReturn; } else if (containerFlags & 64 /* ContainerFlags.IsInterface */) { seenThisKeyword = false; bindChildren(node); node.flags = seenThisKeyword ? node.flags | 128 /* NodeFlags.ContainsThis */ : node.flags & ~128 /* NodeFlags.ContainsThis */; } else { bindChildren(node); } container = saveContainer; thisParentContainer = saveThisParentContainer; blockScopeContainer = savedBlockScopeContainer; } function bindEachFunctionsFirst(nodes) { bindEach(nodes, function (n) { return n.kind === 256 /* SyntaxKind.FunctionDeclaration */ ? bind(n) : undefined; }); bindEach(nodes, function (n) { return n.kind !== 256 /* SyntaxKind.FunctionDeclaration */ ? bind(n) : undefined; }); } function bindEach(nodes, bindFunction) { if (bindFunction === void 0) { bindFunction = bind; } if (nodes === undefined) { return; } ts.forEach(nodes, bindFunction); } function bindEachChild(node) { ts.forEachChild(node, bind, bindEach); } function bindChildren(node) { var saveInAssignmentPattern = inAssignmentPattern; // Most nodes aren't valid in an assignment pattern, so we clear the value here // and set it before we descend into nodes that could actually be part of an assignment pattern. inAssignmentPattern = false; if (checkUnreachable(node)) { bindEachChild(node); bindJSDoc(node); inAssignmentPattern = saveInAssignmentPattern; return; } if (node.kind >= 237 /* SyntaxKind.FirstStatement */ && node.kind <= 253 /* SyntaxKind.LastStatement */ && !options.allowUnreachableCode) { node.flowNode = currentFlow; } switch (node.kind) { case 241 /* SyntaxKind.WhileStatement */: bindWhileStatement(node); break; case 240 /* SyntaxKind.DoStatement */: bindDoStatement(node); break; case 242 /* SyntaxKind.ForStatement */: bindForStatement(node); break; case 243 /* SyntaxKind.ForInStatement */: case 244 /* SyntaxKind.ForOfStatement */: bindForInOrForOfStatement(node); break; case 239 /* SyntaxKind.IfStatement */: bindIfStatement(node); break; case 247 /* SyntaxKind.ReturnStatement */: case 251 /* SyntaxKind.ThrowStatement */: bindReturnOrThrow(node); break; case 246 /* SyntaxKind.BreakStatement */: case 245 /* SyntaxKind.ContinueStatement */: bindBreakOrContinueStatement(node); break; case 252 /* SyntaxKind.TryStatement */: bindTryStatement(node); break; case 249 /* SyntaxKind.SwitchStatement */: bindSwitchStatement(node); break; case 263 /* SyntaxKind.CaseBlock */: bindCaseBlock(node); break; case 289 /* SyntaxKind.CaseClause */: bindCaseClause(node); break; case 238 /* SyntaxKind.ExpressionStatement */: bindExpressionStatement(node); break; case 250 /* SyntaxKind.LabeledStatement */: bindLabeledStatement(node); break; case 219 /* SyntaxKind.PrefixUnaryExpression */: bindPrefixUnaryExpressionFlow(node); break; case 220 /* SyntaxKind.PostfixUnaryExpression */: bindPostfixUnaryExpressionFlow(node); break; case 221 /* SyntaxKind.BinaryExpression */: if (ts.isDestructuringAssignment(node)) { // Carry over whether we are in an assignment pattern to // binary expressions that could actually be an initializer inAssignmentPattern = saveInAssignmentPattern; bindDestructuringAssignmentFlow(node); return; } bindBinaryExpressionFlow(node); break; case 215 /* SyntaxKind.DeleteExpression */: bindDeleteExpressionFlow(node); break; case 222 /* SyntaxKind.ConditionalExpression */: bindConditionalExpressionFlow(node); break; case 254 /* SyntaxKind.VariableDeclaration */: bindVariableDeclarationFlow(node); break; case 206 /* SyntaxKind.PropertyAccessExpression */: case 207 /* SyntaxKind.ElementAccessExpression */: bindAccessExpressionFlow(node); break; case 208 /* SyntaxKind.CallExpression */: bindCallExpressionFlow(node); break; case 230 /* SyntaxKind.NonNullExpression */: bindNonNullExpressionFlow(node); break; case 345 /* SyntaxKind.JSDocTypedefTag */: case 338 /* SyntaxKind.JSDocCallbackTag */: case 339 /* SyntaxKind.JSDocEnumTag */: bindJSDocTypeAlias(node); break; // In source files and blocks, bind functions first to match hoisting that occurs at runtime case 305 /* SyntaxKind.SourceFile */: { bindEachFunctionsFirst(node.statements); bind(node.endOfFileToken); break; } case 235 /* SyntaxKind.Block */: case 262 /* SyntaxKind.ModuleBlock */: bindEachFunctionsFirst(node.statements); break; case 203 /* SyntaxKind.BindingElement */: bindBindingElementFlow(node); break; case 205 /* SyntaxKind.ObjectLiteralExpression */: case 204 /* SyntaxKind.ArrayLiteralExpression */: case 296 /* SyntaxKind.PropertyAssignment */: case 225 /* SyntaxKind.SpreadElement */: // Carry over whether we are in an assignment pattern of Object and Array literals // as well as their children that are valid assignment targets. inAssignmentPattern = saveInAssignmentPattern; // falls through default: bindEachChild(node); break; } bindJSDoc(node); inAssignmentPattern = saveInAssignmentPattern; } function isNarrowingExpression(expr) { switch (expr.kind) { case 79 /* SyntaxKind.Identifier */: case 80 /* SyntaxKind.PrivateIdentifier */: case 108 /* SyntaxKind.ThisKeyword */: case 206 /* SyntaxKind.PropertyAccessExpression */: case 207 /* SyntaxKind.ElementAccessExpression */: return containsNarrowableReference(expr); case 208 /* SyntaxKind.CallExpression */: return hasNarrowableArgument(expr); case 212 /* SyntaxKind.ParenthesizedExpression */: case 230 /* SyntaxKind.NonNullExpression */: return isNarrowingExpression(expr.expression); case 221 /* SyntaxKind.BinaryExpression */: return isNarrowingBinaryExpression(expr); case 219 /* SyntaxKind.PrefixUnaryExpression */: return expr.operator === 53 /* SyntaxKind.ExclamationToken */ && isNarrowingExpression(expr.operand); case 216 /* SyntaxKind.TypeOfExpression */: return isNarrowingExpression(expr.expression); } return false; } function isNarrowableReference(expr) { return ts.isDottedName(expr) || (ts.isPropertyAccessExpression(expr) || ts.isNonNullExpression(expr) || ts.isParenthesizedExpression(expr)) && isNarrowableReference(expr.expression) || ts.isBinaryExpression(expr) && expr.operatorToken.kind === 27 /* SyntaxKind.CommaToken */ && isNarrowableReference(expr.right) || ts.isElementAccessExpression(expr) && (ts.isStringOrNumericLiteralLike(expr.argumentExpression) || ts.isEntityNameExpression(expr.argumentExpression)) && isNarrowableReference(expr.expression) || ts.isAssignmentExpression(expr) && isNarrowableReference(expr.left); } function containsNarrowableReference(expr) { return isNarrowableReference(expr) || ts.isOptionalChain(expr) && containsNarrowableReference(expr.expression); } function hasNarrowableArgument(expr) { if (expr.arguments) { for (var _i = 0, _a = expr.arguments; _i < _a.length; _i++) { var argument = _a[_i]; if (containsNarrowableReference(argument)) { return true; } } } if (expr.expression.kind === 206 /* SyntaxKind.PropertyAccessExpression */ && containsNarrowableReference(expr.expression.expression)) { return true; } return false; } function isNarrowingTypeofOperands(expr1, expr2) { return ts.isTypeOfExpression(expr1) && isNarrowableOperand(expr1.expression) && ts.isStringLiteralLike(expr2); } function isNarrowingBinaryExpression(expr) { switch (expr.operatorToken.kind) { case 63 /* SyntaxKind.EqualsToken */: case 75 /* SyntaxKind.BarBarEqualsToken */: case 76 /* SyntaxKind.AmpersandAmpersandEqualsToken */: case 77 /* SyntaxKind.QuestionQuestionEqualsToken */: return containsNarrowableReference(expr.left); case 34 /* SyntaxKind.EqualsEqualsToken */: case 35 /* SyntaxKind.ExclamationEqualsToken */: case 36 /* SyntaxKind.EqualsEqualsEqualsToken */: case 37 /* SyntaxKind.ExclamationEqualsEqualsToken */: return isNarrowableOperand(expr.left) || isNarrowableOperand(expr.right) || isNarrowingTypeofOperands(expr.right, expr.left) || isNarrowingTypeofOperands(expr.left, expr.right); case 102 /* SyntaxKind.InstanceOfKeyword */: return isNarrowableOperand(expr.left); case 101 /* SyntaxKind.InKeyword */: return isNarrowingExpression(expr.right); case 27 /* SyntaxKind.CommaToken */: return isNarrowingExpression(expr.right); } return false; } function isNarrowableOperand(expr) { switch (expr.kind) { case 212 /* SyntaxKind.ParenthesizedExpression */: return isNarrowableOperand(expr.expression); case 221 /* SyntaxKind.BinaryExpression */: switch (expr.operatorToken.kind) { case 63 /* SyntaxKind.EqualsToken */: return isNarrowableOperand(expr.left); case 27 /* SyntaxKind.CommaToken */: return isNarrowableOperand(expr.right); } } return containsNarrowableReference(expr); } function createBranchLabel() { return initFlowNode({ flags: 4 /* FlowFlags.BranchLabel */, antecedents: undefined }); } function createLoopLabel() { return initFlowNode({ flags: 8 /* FlowFlags.LoopLabel */, antecedents: undefined }); } function createReduceLabel(target, antecedents, antecedent) { return initFlowNode({ flags: 1024 /* FlowFlags.ReduceLabel */, target: target, antecedents: antecedents, antecedent: antecedent }); } function setFlowNodeReferenced(flow) { // On first reference we set the Referenced flag, thereafter we set the Shared flag flow.flags |= flow.flags & 2048 /* FlowFlags.Referenced */ ? 4096 /* FlowFlags.Shared */ : 2048 /* FlowFlags.Referenced */; } function addAntecedent(label, antecedent) { if (!(antecedent.flags & 1 /* FlowFlags.Unreachable */) && !ts.contains(label.antecedents, antecedent)) { (label.antecedents || (label.antecedents = [])).push(antecedent); setFlowNodeReferenced(antecedent); } } function createFlowCondition(flags, antecedent, expression) { if (antecedent.flags & 1 /* FlowFlags.Unreachable */) { return antecedent; } if (!expression) { return flags & 32 /* FlowFlags.TrueCondition */ ? antecedent : unreachableFlow; } if ((expression.kind === 110 /* SyntaxKind.TrueKeyword */ && flags & 64 /* FlowFlags.FalseCondition */ || expression.kind === 95 /* SyntaxKind.FalseKeyword */ && flags & 32 /* FlowFlags.TrueCondition */) && !ts.isExpressionOfOptionalChainRoot(expression) && !ts.isNullishCoalesce(expression.parent)) { return unreachableFlow; } if (!isNarrowingExpression(expression)) { return antecedent; } setFlowNodeReferenced(antecedent); return initFlowNode({ flags: flags, antecedent: antecedent, node: expression }); } function createFlowSwitchClause(antecedent, switchStatement, clauseStart, clauseEnd) { setFlowNodeReferenced(antecedent); return initFlowNode({ flags: 128 /* FlowFlags.SwitchClause */, antecedent: antecedent, switchStatement: switchStatement, clauseStart: clauseStart, clauseEnd: clauseEnd }); } function createFlowMutation(flags, antecedent, node) { setFlowNodeReferenced(antecedent); var result = initFlowNode({ flags: flags, antecedent: antecedent, node: node }); if (currentExceptionTarget) { addAntecedent(currentExceptionTarget, result); } return result; } function createFlowCall(antecedent, node) { setFlowNodeReferenced(antecedent); return initFlowNode({ flags: 512 /* FlowFlags.Call */, antecedent: antecedent, node: node }); } function finishFlowLabel(flow) { var antecedents = flow.antecedents; if (!antecedents) { return unreachableFlow; } if (antecedents.length === 1) { return antecedents[0]; } return flow; } function isStatementCondition(node) { var parent = node.parent; switch (parent.kind) { case 239 /* SyntaxKind.IfStatement */: case 241 /* SyntaxKind.WhileStatement */: case 240 /* SyntaxKind.DoStatement */: return parent.expression === node; case 242 /* SyntaxKind.ForStatement */: case 222 /* SyntaxKind.ConditionalExpression */: return parent.condition === node; } return false; } function isLogicalExpression(node) { while (true) { if (node.kind === 212 /* SyntaxKind.ParenthesizedExpression */) { node = node.expression; } else if (node.kind === 219 /* SyntaxKind.PrefixUnaryExpression */ && node.operator === 53 /* SyntaxKind.ExclamationToken */) { node = node.operand; } else { return node.kind === 221 /* SyntaxKind.BinaryExpression */ && (node.operatorToken.kind === 55 /* SyntaxKind.AmpersandAmpersandToken */ || node.operatorToken.kind === 56 /* SyntaxKind.BarBarToken */ || node.operatorToken.kind === 60 /* SyntaxKind.QuestionQuestionToken */); } } } function isLogicalAssignmentExpression(node) { node = ts.skipParentheses(node); return ts.isBinaryExpression(node) && ts.isLogicalOrCoalescingAssignmentOperator(node.operatorToken.kind); } function isTopLevelLogicalExpression(node) { while (ts.isParenthesizedExpression(node.parent) || ts.isPrefixUnaryExpression(node.parent) && node.parent.operator === 53 /* SyntaxKind.ExclamationToken */) { node = node.parent; } return !isStatementCondition(node) && !isLogicalExpression(node.parent) && !(ts.isOptionalChain(node.parent) && node.parent.expression === node); } function doWithConditionalBranches(action, value, trueTarget, falseTarget) { var savedTrueTarget = currentTrueTarget; var savedFalseTarget = currentFalseTarget; currentTrueTarget = trueTarget; currentFalseTarget = falseTarget; action(value); currentTrueTarget = savedTrueTarget; currentFalseTarget = savedFalseTarget; } function bindCondition(node, trueTarget, falseTarget) { doWithConditionalBranches(bind, node, trueTarget, falseTarget); if (!node || !isLogicalAssignmentExpression(node) && !isLogicalExpression(node) && !(ts.isOptionalChain(node) && ts.isOutermostOptionalChain(node))) { addAntecedent(trueTarget, createFlowCondition(32 /* FlowFlags.TrueCondition */, currentFlow, node)); addAntecedent(falseTarget, createFlowCondition(64 /* FlowFlags.FalseCondition */, currentFlow, node)); } } function bindIterativeStatement(node, breakTarget, continueTarget) { var saveBreakTarget = currentBreakTarget; var saveContinueTarget = currentContinueTarget; currentBreakTarget = breakTarget; currentContinueTarget = continueTarget; bind(node); currentBreakTarget = saveBreakTarget; currentContinueTarget = saveContinueTarget; } function setContinueTarget(node, target) { var label = activeLabelList; while (label && node.parent.kind === 250 /* SyntaxKind.LabeledStatement */) { label.continueTarget = target; label = label.next; node = node.parent; } return target; } function bindWhileStatement(node) { var preWhileLabel = setContinueTarget(node, createLoopLabel()); var preBodyLabel = createBranchLabel(); var postWhileLabel = createBranchLabel(); addAntecedent(preWhileLabel, currentFlow); currentFlow = preWhileLabel; bindCondition(node.expression, preBodyLabel, postWhileLabel); currentFlow = finishFlowLabel(preBodyLabel); bindIterativeStatement(node.statement, postWhileLabel, preWhileLabel); addAntecedent(preWhileLabel, currentFlow); currentFlow = finishFlowLabel(postWhileLabel); } function bindDoStatement(node) { var preDoLabel = createLoopLabel(); var preConditionLabel = setContinueTarget(node, createBranchLabel()); var postDoLabel = createBranchLabel(); addAntecedent(preDoLabel, currentFlow); currentFlow = preDoLabel; bindIterativeStatement(node.statement, postDoLabel, preConditionLabel); addAntecedent(preConditionLabel, currentFlow); currentFlow = finishFlowLabel(preConditionLabel); bindCondition(node.expression, preDoLabel, postDoLabel); currentFlow = finishFlowLabel(postDoLabel); } function bindForStatement(node) { var preLoopLabel = setContinueTarget(node, createLoopLabel()); var preBodyLabel = createBranchLabel(); var postLoopLabel = createBranchLabel(); bind(node.initializer); addAntecedent(preLoopLabel, currentFlow); currentFlow = preLoopLabel; bindCondition(node.condition, preBodyLabel, postLoopLabel); currentFlow = finishFlowLabel(preBodyLabel); bindIterativeStatement(node.statement, postLoopLabel, preLoopLabel); bind(node.incrementor); addAntecedent(preLoopLabel, currentFlow); currentFlow = finishFlowLabel(postLoopLabel); } function bindForInOrForOfStatement(node) { var preLoopLabel = setContinueTarget(node, createLoopLabel()); var postLoopLabel = createBranchLabel(); bind(node.expression); addAntecedent(preLoopLabel, currentFlow); currentFlow = preLoopLabel; if (node.kind === 244 /* SyntaxKind.ForOfStatement */) { bind(node.awaitModifier); } addAntecedent(postLoopLabel, currentFlow); bind(node.initializer); if (node.initializer.kind !== 255 /* SyntaxKind.VariableDeclarationList */) { bindAssignmentTargetFlow(node.initializer); } bindIterativeStatement(node.statement, postLoopLabel, preLoopLabel); addAntecedent(preLoopLabel, currentFlow); currentFlow = finishFlowLabel(postLoopLabel); } function bindIfStatement(node) { var thenLabel = createBranchLabel(); var elseLabel = createBranchLabel(); var postIfLabel = createBranchLabel(); bindCondition(node.expression, thenLabel, elseLabel); currentFlow = finishFlowLabel(thenLabel); bind(node.thenStatement); addAntecedent(postIfLabel, currentFlow); currentFlow = finishFlowLabel(elseLabel); bind(node.elseStatement); addAntecedent(postIfLabel, currentFlow); currentFlow = finishFlowLabel(postIfLabel); } function bindReturnOrThrow(node) { bind(node.expression); if (node.kind === 247 /* SyntaxKind.ReturnStatement */) { hasExplicitReturn = true; if (currentReturnTarget) { addAntecedent(currentReturnTarget, currentFlow); } } currentFlow = unreachableFlow; } function findActiveLabel(name) { for (var label = activeLabelList; label; label = label.next) { if (label.name === name) { return label; } } return undefined; } function bindBreakOrContinueFlow(node, breakTarget, continueTarget) { var flowLabel = node.kind === 246 /* SyntaxKind.BreakStatement */ ? breakTarget : continueTarget; if (flowLabel) { addAntecedent(flowLabel, currentFlow); currentFlow = unreachableFlow; } } function bindBreakOrContinueStatement(node) { bind(node.label); if (node.label) { var activeLabel = findActiveLabel(node.label.escapedText); if (activeLabel) { activeLabel.referenced = true; bindBreakOrContinueFlow(node, activeLabel.breakTarget, activeLabel.continueTarget); } } else { bindBreakOrContinueFlow(node, currentBreakTarget, currentContinueTarget); } } function bindTryStatement(node) { // We conservatively assume that *any* code in the try block can cause an exception, but we only need // to track code that causes mutations (because only mutations widen the possible control flow type of // a variable). The exceptionLabel is the target label for control flows that result from exceptions. // We add all mutation flow nodes as antecedents of this label such that we can analyze them as possible // antecedents of the start of catch or finally blocks. Furthermore, we add the current control flow to // represent exceptions that occur before any mutations. var saveReturnTarget = currentReturnTarget; var saveExceptionTarget = currentExceptionTarget; var normalExitLabel = createBranchLabel(); var returnLabel = createBranchLabel(); var exceptionLabel = createBranchLabel(); if (node.finallyBlock) { currentReturnTarget = returnLabel; } addAntecedent(exceptionLabel, currentFlow); currentExceptionTarget = exceptionLabel; bind(node.tryBlock); addAntecedent(normalExitLabel, currentFlow); if (node.catchClause) { // Start of catch clause is the target of exceptions from try block. currentFlow = finishFlowLabel(exceptionLabel); // The currentExceptionTarget now represents control flows from exceptions in the catch clause. // Effectively, in a try-catch-finally, if an exception occurs in the try block, the catch block // acts like a second try block. exceptionLabel = createBranchLabel(); addAntecedent(exceptionLabel, currentFlow); currentExceptionTarget = exceptionLabel; bind(node.catchClause); addAntecedent(normalExitLabel, currentFlow); } currentReturnTarget = saveReturnTarget; currentExceptionTarget = saveExceptionTarget; if (node.finallyBlock) { // Possible ways control can reach the finally block: // 1) Normal completion of try block of a try-finally or try-catch-finally // 2) Normal completion of catch block (following exception in try block) of a try-catch-finally // 3) Return in try or catch block of a try-finally or try-catch-finally // 4) Exception in try block of a try-finally // 5) Exception in catch block of a try-catch-finally // When analyzing a control flow graph that starts inside a finally block we want to consider all // five possibilities above. However, when analyzing a control flow graph that starts outside (past) // the finally block, we only want to consider the first two (if we're past a finally block then it // must have completed normally). Likewise, when analyzing a control flow graph from return statements // in try or catch blocks in an IIFE, we only want to consider the third. To make this possible, we // inject a ReduceLabel node into the control flow graph. This node contains an alternate reduced // set of antecedents for the pre-finally label. As control flow analysis passes by a ReduceLabel // node, the pre-finally label is temporarily switched to the reduced antecedent set. var finallyLabel = createBranchLabel(); finallyLabel.antecedents = ts.concatenate(ts.concatenate(normalExitLabel.antecedents, exceptionLabel.antecedents), returnLabel.antecedents); currentFlow = finallyLabel; bind(node.finallyBlock); if (currentFlow.flags & 1 /* FlowFlags.Unreachable */) { // If the end of the finally block is unreachable, the end of the entire try statement is unreachable. currentFlow = unreachableFlow; } else { // If we have an IIFE return target and return statements in the try or catch blocks, add a control // flow that goes back through the finally block and back through only the return statements. if (currentReturnTarget && returnLabel.antecedents) { addAntecedent(currentReturnTarget, createReduceLabel(finallyLabel, returnLabel.antecedents, currentFlow)); } // If we have an outer exception target (i.e. a containing try-finally or try-catch-finally), add a // control flow that goes back through the finally blok and back through each possible exception source. if (currentExceptionTarget && exceptionLabel.antecedents) { addAntecedent(currentExceptionTarget, createReduceLabel(finallyLabel, exceptionLabel.antecedents, currentFlow)); } // If the end of the finally block is reachable, but the end of the try and catch blocks are not, // convert the current flow to unreachable. For example, 'try { return 1; } finally { ... }' should // result in an unreachable current control flow. currentFlow = normalExitLabel.antecedents ? createReduceLabel(finallyLabel, normalExitLabel.antecedents, currentFlow) : unreachableFlow; } } else { currentFlow = finishFlowLabel(normalExitLabel); } } function bindSwitchStatement(node) { var postSwitchLabel = createBranchLabel(); bind(node.expression); var saveBreakTarget = currentBreakTarget; var savePreSwitchCaseFlow = preSwitchCaseFlow; currentBreakTarget = postSwitchLabel; preSwitchCaseFlow = currentFlow; bind(node.caseBlock); addAntecedent(postSwitchLabel, currentFlow); var hasDefault = ts.forEach(node.caseBlock.clauses, function (c) { return c.kind === 290 /* SyntaxKind.DefaultClause */; }); // We mark a switch statement as possibly exhaustive if it has no default clause and if all // case clauses have unreachable end points (e.g. they all return). Note, we no longer need // this property in control flow analysis, it's there only for backwards compatibility. node.possiblyExhaustive = !hasDefault && !postSwitchLabel.antecedents; if (!hasDefault) { addAntecedent(postSwitchLabel, createFlowSwitchClause(preSwitchCaseFlow, node, 0, 0)); } currentBreakTarget = saveBreakTarget; preSwitchCaseFlow = savePreSwitchCaseFlow; currentFlow = finishFlowLabel(postSwitchLabel); } function bindCaseBlock(node) { var clauses = node.clauses; var isNarrowingSwitch = isNarrowingExpression(node.parent.expression); var fallthroughFlow = unreachableFlow; for (var i = 0; i < clauses.length; i++) { var clauseStart = i; while (!clauses[i].statements.length && i + 1 < clauses.length) { bind(clauses[i]); i++; } var preCaseLabel = createBranchLabel(); addAntecedent(preCaseLabel, isNarrowingSwitch ? createFlowSwitchClause(preSwitchCaseFlow, node.parent, clauseStart, i + 1) : preSwitchCaseFlow); addAntecedent(preCaseLabel, fallthroughFlow); currentFlow = finishFlowLabel(preCaseLabel); var clause = clauses[i]; bind(clause); fallthroughFlow = currentFlow; if (!(currentFlow.flags & 1 /* FlowFlags.Unreachable */) && i !== clauses.length - 1 && options.noFallthroughCasesInSwitch) { clause.fallthroughFlowNode = currentFlow; } } } function bindCaseClause(node) { var saveCurrentFlow = currentFlow; currentFlow = preSwitchCaseFlow; bind(node.expression); currentFlow = saveCurrentFlow; bindEach(node.statements); } function bindExpressionStatement(node) { bind(node.expression); maybeBindExpressionFlowIfCall(node.expression); } function maybeBindExpressionFlowIfCall(node) { // A top level or comma expression call expression with a dotted function name and at least one argument // is potentially an assertion and is therefore included in the control flow. if (node.kind === 208 /* SyntaxKind.CallExpression */) { var call = node; if (call.expression.kind !== 106 /* SyntaxKind.SuperKeyword */ && ts.isDottedName(call.expression)) { currentFlow = createFlowCall(currentFlow, call); } } } function bindLabeledStatement(node) { var postStatementLabel = createBranchLabel(); activeLabelList = { next: activeLabelList, name: node.label.escapedText, breakTarget: postStatementLabel, continueTarget: undefined, referenced: false }; bind(node.label); bind(node.statement); if (!activeLabelList.referenced && !options.allowUnusedLabels) { errorOrSuggestionOnNode(ts.unusedLabelIsError(options), node.label, ts.Diagnostics.Unused_label); } activeLabelList = activeLabelList.next; addAntecedent(postStatementLabel, currentFlow); currentFlow = finishFlowLabel(postStatementLabel); } function bindDestructuringTargetFlow(node) { if (node.kind === 221 /* SyntaxKind.BinaryExpression */ && node.operatorToken.kind === 63 /* SyntaxKind.EqualsToken */) { bindAssignmentTargetFlow(node.left); } else { bindAssignmentTargetFlow(node); } } function bindAssignmentTargetFlow(node) { if (isNarrowableReference(node)) { currentFlow = createFlowMutation(16 /* FlowFlags.Assignment */, currentFlow, node); } else if (node.kind === 204 /* SyntaxKind.ArrayLiteralExpression */) { for (var _i = 0, _a = node.elements; _i < _a.length; _i++) { var e = _a[_i]; if (e.kind === 225 /* SyntaxKind.SpreadElement */) { bindAssignmentTargetFlow(e.expression); } else { bindDestructuringTargetFlow(e); } } } else if (node.kind === 205 /* SyntaxKind.ObjectLiteralExpression */) { for (var _b = 0, _c = node.properties; _b < _c.length; _b++) { var p = _c[_b]; if (p.kind === 296 /* SyntaxKind.PropertyAssignment */) { bindDestructuringTargetFlow(p.initializer); } else if (p.kind === 297 /* SyntaxKind.ShorthandPropertyAssignment */) { bindAssignmentTargetFlow(p.name); } else if (p.kind === 298 /* SyntaxKind.SpreadAssignment */) { bindAssignmentTargetFlow(p.expression); } } } } function bindLogicalLikeExpression(node, trueTarget, falseTarget) { var preRightLabel = createBranchLabel(); if (node.operatorToken.kind === 55 /* SyntaxKind.AmpersandAmpersandToken */ || node.operatorToken.kind === 76 /* SyntaxKind.AmpersandAmpersandEqualsToken */) { bindCondition(node.left, preRightLabel, falseTarget); } else { bindCondition(node.left, trueTarget, preRightLabel); } currentFlow = finishFlowLabel(preRightLabel); bind(node.operatorToken); if (ts.isLogicalOrCoalescingAssignmentOperator(node.operatorToken.kind)) { doWithConditionalBranches(bind, node.right, trueTarget, falseTarget); bindAssignmentTargetFlow(node.left); addAntecedent(trueTarget, createFlowCondition(32 /* FlowFlags.TrueCondition */, currentFlow, node)); addAntecedent(falseTarget, createFlowCondition(64 /* FlowFlags.FalseCondition */, currentFlow, node)); } else { bindCondition(node.right, trueTarget, falseTarget); } } function bindPrefixUnaryExpressionFlow(node) { if (node.operator === 53 /* SyntaxKind.ExclamationToken */) { var saveTrueTarget = currentTrueTarget; currentTrueTarget = currentFalseTarget; currentFalseTarget = saveTrueTarget; bindEachChild(node); currentFalseTarget = currentTrueTarget; currentTrueTarget = saveTrueTarget; } else { bindEachChild(node); if (node.operator === 45 /* SyntaxKind.PlusPlusToken */ || node.operator === 46 /* SyntaxKind.MinusMinusToken */) { bindAssignmentTargetFlow(node.operand); } } } function bindPostfixUnaryExpressionFlow(node) { bindEachChild(node); if (node.operator === 45 /* SyntaxKind.PlusPlusToken */ || node.operator === 46 /* SyntaxKind.MinusMinusToken */) { bindAssignmentTargetFlow(node.operand); } } function bindDestructuringAssignmentFlow(node) { if (inAssignmentPattern) { inAssignmentPattern = false; bind(node.operatorToken); bind(node.right); inAssignmentPattern = true; bind(node.left); } else { inAssignmentPattern = true; bind(node.left); inAssignmentPattern = false; bind(node.operatorToken); bind(node.right); } bindAssignmentTargetFlow(node.left); } function createBindBinaryExpressionFlow() { return ts.createBinaryExpressionTrampoline(onEnter, onLeft, onOperator, onRight, onExit, /*foldState*/ undefined); function onEnter(node, state) { if (state) { state.stackIndex++; // Emulate the work that `bind` does before reaching `bindChildren`. A normal call to // `bindBinaryExpressionFlow` will already have done this work. ts.setParent(node, parent); var saveInStrictMode = inStrictMode; bindWorker(node); var saveParent = parent; parent = node; state.skip = false; state.inStrictModeStack[state.stackIndex] = saveInStrictMode; state.parentStack[state.stackIndex] = saveParent; } else { state = { stackIndex: 0, skip: false, inStrictModeStack: [undefined], parentStack: [undefined] }; } // TODO: bindLogicalExpression is recursive - if we want to handle deeply nested `&&` expressions // we'll need to handle the `bindLogicalExpression` scenarios in this state machine, too // For now, though, since the common cases are chained `+`, leaving it recursive is fine var operator = node.operatorToken.kind; if (operator === 55 /* SyntaxKind.AmpersandAmpersandToken */ || operator === 56 /* SyntaxKind.BarBarToken */ || operator === 60 /* SyntaxKind.QuestionQuestionToken */ || ts.isLogicalOrCoalescingAssignmentOperator(operator)) { if (isTopLevelLogicalExpression(node)) { var postExpressionLabel = createBranchLabel(); bindLogicalLikeExpression(node, postExpressionLabel, postExpressionLabel); currentFlow = finishFlowLabel(postExpressionLabel); } else { bindLogicalLikeExpression(node, currentTrueTarget, currentFalseTarget); } state.skip = true; } return state; } function onLeft(left, state, node) { if (!state.skip) { var maybeBound = maybeBind(left); if (node.operatorToken.kind === 27 /* SyntaxKind.CommaToken */) { maybeBindExpressionFlowIfCall(left); } return maybeBound; } } function onOperator(operatorToken, state, _node) { if (!state.skip) { bind(operatorToken); } } function onRight(right, state, node) { if (!state.skip) { var maybeBound = maybeBind(right); if (node.operatorToken.kind === 27 /* SyntaxKind.CommaToken */) { maybeBindExpressionFlowIfCall(right); } return maybeBound; } } function onExit(node, state) { if (!state.skip) { var operator = node.operatorToken.kind; if (ts.isAssignmentOperator(operator) && !ts.isAssignmentTarget(node)) { bindAssignmentTargetFlow(node.left); if (operator === 63 /* SyntaxKind.EqualsToken */ && node.left.kind === 207 /* SyntaxKind.ElementAccessExpression */) { var elementAccess = node.left; if (isNarrowableOperand(elementAccess.expression)) { currentFlow = createFlowMutation(256 /* FlowFlags.ArrayMutation */, currentFlow, node); } } } } var savedInStrictMode = state.inStrictModeStack[state.stackIndex]; var savedParent = state.parentStack[state.stackIndex]; if (savedInStrictMode !== undefined) { inStrictMode = savedInStrictMode; } if (savedParent !== undefined) { parent = savedParent; } state.skip = false; state.stackIndex--; } function maybeBind(node) { if (node && ts.isBinaryExpression(node) && !ts.isDestructuringAssignment(node)) { return node; } bind(node); } } function bindDeleteExpressionFlow(node) { bindEachChild(node); if (node.expression.kind === 206 /* SyntaxKind.PropertyAccessExpression */) { bindAssignmentTargetFlow(node.expression); } } function bindConditionalExpressionFlow(node) { var trueLabel = createBranchLabel(); var falseLabel = createBranchLabel(); var postExpressionLabel = createBranchLabel(); bindCondition(node.condition, trueLabel, falseLabel); currentFlow = finishFlowLabel(trueLabel); bind(node.questionToken); bind(node.whenTrue); addAntecedent(postExpressionLabel, currentFlow); currentFlow = finishFlowLabel(falseLabel); bind(node.colonToken); bind(node.whenFalse); addAntecedent(postExpressionLabel, currentFlow); currentFlow = finishFlowLabel(postExpressionLabel); } function bindInitializedVariableFlow(node) { var name = !ts.isOmittedExpression(node) ? node.name : undefined; if (ts.isBindingPattern(name)) { for (var _i = 0, _a = name.elements; _i < _a.length; _i++) { var child = _a[_i]; bindInitializedVariableFlow(child); } } else { currentFlow = createFlowMutation(16 /* FlowFlags.Assignment */, currentFlow, node); } } function bindVariableDeclarationFlow(node) { bindEachChild(node); if (node.initializer || ts.isForInOrOfStatement(node.parent.parent)) { bindInitializedVariableFlow(node); } } function bindBindingElementFlow(node) { if (ts.isBindingPattern(node.name)) { // When evaluating a binding pattern, the initializer is evaluated before the binding pattern, per: // - https://tc39.es/ecma262/#sec-destructuring-binding-patterns-runtime-semantics-iteratorbindinginitialization // - `BindingElement: BindingPattern Initializer?` // - https://tc39.es/ecma262/#sec-runtime-semantics-keyedbindinginitialization // - `BindingElement: BindingPattern Initializer?` bindEach(node.decorators); bindEach(node.modifiers); bind(node.dotDotDotToken); bind(node.propertyName); bind(node.initializer); bind(node.name); } else { bindEachChild(node); } } function bindJSDocTypeAlias(node) { bind(node.tagName); if (node.kind !== 339 /* SyntaxKind.JSDocEnumTag */ && node.fullName) { // don't bind the type name yet; that's delayed until delayedBindJSDocTypedefTag ts.setParent(node.fullName, node); ts.setParentRecursive(node.fullName, /*incremental*/ false); } if (typeof node.comment !== "string") { bindEach(node.comment); } } function bindJSDocClassTag(node) { bindEachChild(node); var host = ts.getHostSignatureFromJSDoc(node); if (host && host.kind !== 169 /* SyntaxKind.MethodDeclaration */) { addDeclarationToSymbol(host.symbol, host, 32 /* SymbolFlags.Class */); } } function bindOptionalExpression(node, trueTarget, falseTarget) { doWithConditionalBranches(bind, node, trueTarget, falseTarget); if (!ts.isOptionalChain(node) || ts.isOutermostOptionalChain(node)) { addAntecedent(trueTarget, createFlowCondition(32 /* FlowFlags.TrueCondition */, currentFlow, node)); addAntecedent(falseTarget, createFlowCondition(64 /* FlowFlags.FalseCondition */, currentFlow, node)); } } function bindOptionalChainRest(node) { switch (node.kind) { case 206 /* SyntaxKind.PropertyAccessExpression */: bind(node.questionDotToken); bind(node.name); break; case 207 /* SyntaxKind.ElementAccessExpression */: bind(node.questionDotToken); bind(node.argumentExpression); break; case 208 /* SyntaxKind.CallExpression */: bind(node.questionDotToken); bindEach(node.typeArguments); bindEach(node.arguments); break; } } function bindOptionalChain(node, trueTarget, falseTarget) { // For an optional chain, we emulate the behavior of a logical expression: // // a?.b -> a && a.b // a?.b.c -> a && a.b.c // a?.b?.c -> a && a.b && a.b.c // a?.[x = 1] -> a && a[x = 1] // // To do this we descend through the chain until we reach the root of a chain (the expression with a `?.`) // and build it's CFA graph as if it were the first condition (`a && ...`). Then we bind the rest // of the node as part of the "true" branch, and continue to do so as we ascend back up to the outermost // chain node. We then treat the entire node as the right side of the expression. var preChainLabel = ts.isOptionalChainRoot(node) ? createBranchLabel() : undefined; bindOptionalExpression(node.expression, preChainLabel || trueTarget, falseTarget); if (preChainLabel) { currentFlow = finishFlowLabel(preChainLabel); } doWithConditionalBranches(bindOptionalChainRest, node, trueTarget, falseTarget); if (ts.isOutermostOptionalChain(node)) { addAntecedent(trueTarget, createFlowCondition(32 /* FlowFlags.TrueCondition */, currentFlow, node)); addAntecedent(falseTarget, createFlowCondition(64 /* FlowFlags.FalseCondition */, currentFlow, node)); } } function bindOptionalChainFlow(node) { if (isTopLevelLogicalExpression(node)) { var postExpressionLabel = createBranchLabel(); bindOptionalChain(node, postExpressionLabel, postExpressionLabel); currentFlow = finishFlowLabel(postExpressionLabel); } else { bindOptionalChain(node, currentTrueTarget, currentFalseTarget); } } function bindNonNullExpressionFlow(node) { if (ts.isOptionalChain(node)) { bindOptionalChainFlow(node); } else { bindEachChild(node); } } function bindAccessExpressionFlow(node) { if (ts.isOptionalChain(node)) { bindOptionalChainFlow(node); } else { bindEachChild(node); } } function bindCallExpressionFlow(node) { if (ts.isOptionalChain(node)) { bindOptionalChainFlow(node); } else { // If the target of the call expression is a function expression or arrow function we have // an immediately invoked function expression (IIFE). Initialize the flowNode property to // the current control flow (which includes evaluation of the IIFE arguments). var expr = ts.skipParentheses(node.expression); if (expr.kind === 213 /* SyntaxKind.FunctionExpression */ || expr.kind === 214 /* SyntaxKind.ArrowFunction */) { bindEach(node.typeArguments); bindEach(node.arguments); bind(node.expression); } else { bindEachChild(node); if (node.expression.kind === 106 /* SyntaxKind.SuperKeyword */) { currentFlow = createFlowCall(currentFlow, node); } } } if (node.expression.kind === 206 /* SyntaxKind.PropertyAccessExpression */) { var propertyAccess = node.expression; if (ts.isIdentifier(propertyAccess.name) && isNarrowableOperand(propertyAccess.expression) && ts.isPushOrUnshiftIdentifier(propertyAccess.name)) { currentFlow = createFlowMutation(256 /* FlowFlags.ArrayMutation */, currentFlow, node); } } } function getContainerFlags(node) { switch (node.kind) { case 226 /* SyntaxKind.ClassExpression */: case 257 /* SyntaxKind.ClassDeclaration */: case 260 /* SyntaxKind.EnumDeclaration */: case 205 /* SyntaxKind.ObjectLiteralExpression */: case 182 /* SyntaxKind.TypeLiteral */: case 322 /* SyntaxKind.JSDocTypeLiteral */: case 286 /* SyntaxKind.JsxAttributes */: return 1 /* ContainerFlags.IsContainer */; case 258 /* SyntaxKind.InterfaceDeclaration */: return 1 /* ContainerFlags.IsContainer */ | 64 /* ContainerFlags.IsInterface */; case 261 /* SyntaxKind.ModuleDeclaration */: case 259 /* SyntaxKind.TypeAliasDeclaration */: case 195 /* SyntaxKind.MappedType */: case 176 /* SyntaxKind.IndexSignature */: return 1 /* ContainerFlags.IsContainer */ | 32 /* ContainerFlags.HasLocals */; case 305 /* SyntaxKind.SourceFile */: return 1 /* ContainerFlags.IsContainer */ | 4 /* ContainerFlags.IsControlFlowContainer */ | 32 /* ContainerFlags.HasLocals */; case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 169 /* SyntaxKind.MethodDeclaration */: if (ts.isObjectLiteralOrClassExpressionMethodOrAccessor(node)) { return 1 /* ContainerFlags.IsContainer */ | 4 /* ContainerFlags.IsControlFlowContainer */ | 32 /* ContainerFlags.HasLocals */ | 8 /* ContainerFlags.IsFunctionLike */ | 128 /* ContainerFlags.IsObjectLiteralOrClassExpressionMethodOrAccessor */; } // falls through case 171 /* SyntaxKind.Constructor */: case 256 /* SyntaxKind.FunctionDeclaration */: case 168 /* SyntaxKind.MethodSignature */: case 174 /* SyntaxKind.CallSignature */: case 323 /* SyntaxKind.JSDocSignature */: case 317 /* SyntaxKind.JSDocFunctionType */: case 179 /* SyntaxKind.FunctionType */: case 175 /* SyntaxKind.ConstructSignature */: case 180 /* SyntaxKind.ConstructorType */: case 170 /* SyntaxKind.ClassStaticBlockDeclaration */: return 1 /* ContainerFlags.IsContainer */ | 4 /* ContainerFlags.IsControlFlowContainer */ | 32 /* ContainerFlags.HasLocals */ | 8 /* ContainerFlags.IsFunctionLike */; case 213 /* SyntaxKind.FunctionExpression */: case 214 /* SyntaxKind.ArrowFunction */: return 1 /* ContainerFlags.IsContainer */ | 4 /* ContainerFlags.IsControlFlowContainer */ | 32 /* ContainerFlags.HasLocals */ | 8 /* ContainerFlags.IsFunctionLike */ | 16 /* ContainerFlags.IsFunctionExpression */; case 262 /* SyntaxKind.ModuleBlock */: return 4 /* ContainerFlags.IsControlFlowContainer */; case 167 /* SyntaxKind.PropertyDeclaration */: return node.initializer ? 4 /* ContainerFlags.IsControlFlowContainer */ : 0; case 292 /* SyntaxKind.CatchClause */: case 242 /* SyntaxKind.ForStatement */: case 243 /* SyntaxKind.ForInStatement */: case 244 /* SyntaxKind.ForOfStatement */: case 263 /* SyntaxKind.CaseBlock */: return 2 /* ContainerFlags.IsBlockScopedContainer */; case 235 /* SyntaxKind.Block */: // do not treat blocks directly inside a function as a block-scoped-container. // Locals that reside in this block should go to the function locals. Otherwise 'x' // would not appear to be a redeclaration of a block scoped local in the following // example: // // function foo() { // var x; // let x; // } // // If we placed 'var x' into the function locals and 'let x' into the locals of // the block, then there would be no collision. // // By not creating a new block-scoped-container here, we ensure that both 'var x' // and 'let x' go into the Function-container's locals, and we do get a collision // conflict. return ts.isFunctionLike(node.parent) || ts.isClassStaticBlockDeclaration(node.parent) ? 0 /* ContainerFlags.None */ : 2 /* ContainerFlags.IsBlockScopedContainer */; } return 0 /* ContainerFlags.None */; } function addToContainerChain(next) { if (lastContainer) { lastContainer.nextContainer = next; } lastContainer = next; } function declareSymbolAndAddToSymbolTable(node, symbolFlags, symbolExcludes) { switch (container.kind) { // Modules, source files, and classes need specialized handling for how their // members are declared (for example, a member of a class will go into a specific // symbol table depending on if it is static or not). We defer to specialized // handlers to take care of declaring these child members. case 261 /* SyntaxKind.ModuleDeclaration */: return declareModuleMember(node, symbolFlags, symbolExcludes); case 305 /* SyntaxKind.SourceFile */: return declareSourceFileMember(node, symbolFlags, symbolExcludes); case 226 /* SyntaxKind.ClassExpression */: case 257 /* SyntaxKind.ClassDeclaration */: return declareClassMember(node, symbolFlags, symbolExcludes); case 260 /* SyntaxKind.EnumDeclaration */: return declareSymbol(container.symbol.exports, container.symbol, node, symbolFlags, symbolExcludes); case 182 /* SyntaxKind.TypeLiteral */: case 322 /* SyntaxKind.JSDocTypeLiteral */: case 205 /* SyntaxKind.ObjectLiteralExpression */: case 258 /* SyntaxKind.InterfaceDeclaration */: case 286 /* SyntaxKind.JsxAttributes */: // Interface/Object-types always have their children added to the 'members' of // their container. They are only accessible through an instance of their // container, and are never in scope otherwise (even inside the body of the // object / type / interface declaring them). An exception is type parameters, // which are in scope without qualification (similar to 'locals'). return declareSymbol(container.symbol.members, container.symbol, node, symbolFlags, symbolExcludes); case 179 /* SyntaxKind.FunctionType */: case 180 /* SyntaxKind.ConstructorType */: case 174 /* SyntaxKind.CallSignature */: case 175 /* SyntaxKind.ConstructSignature */: case 323 /* SyntaxKind.JSDocSignature */: case 176 /* SyntaxKind.IndexSignature */: case 169 /* SyntaxKind.MethodDeclaration */: case 168 /* SyntaxKind.MethodSignature */: case 171 /* SyntaxKind.Constructor */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 256 /* SyntaxKind.FunctionDeclaration */: case 213 /* SyntaxKind.FunctionExpression */: case 214 /* SyntaxKind.ArrowFunction */: case 317 /* SyntaxKind.JSDocFunctionType */: case 345 /* SyntaxKind.JSDocTypedefTag */: case 338 /* SyntaxKind.JSDocCallbackTag */: case 170 /* SyntaxKind.ClassStaticBlockDeclaration */: case 259 /* SyntaxKind.TypeAliasDeclaration */: case 195 /* SyntaxKind.MappedType */: // All the children of these container types are never visible through another // symbol (i.e. through another symbol's 'exports' or 'members'). Instead, // they're only accessed 'lexically' (i.e. from code that exists underneath // their container in the tree). To accomplish this, we simply add their declared // symbol to the 'locals' of the container. These symbols can then be found as // the type checker walks up the containers, checking them for matching names. return declareSymbol(container.locals, /*parent*/ undefined, node, symbolFlags, symbolExcludes); } } function declareClassMember(node, symbolFlags, symbolExcludes) { return ts.isStatic(node) ? declareSymbol(container.symbol.exports, container.symbol, node, symbolFlags, symbolExcludes) : declareSymbol(container.symbol.members, container.symbol, node, symbolFlags, symbolExcludes); } function declareSourceFileMember(node, symbolFlags, symbolExcludes) { return ts.isExternalModule(file) ? declareModuleMember(node, symbolFlags, symbolExcludes) : declareSymbol(file.locals, /*parent*/ undefined, node, symbolFlags, symbolExcludes); } function hasExportDeclarations(node) { var body = ts.isSourceFile(node) ? node : ts.tryCast(node.body, ts.isModuleBlock); return !!body && body.statements.some(function (s) { return ts.isExportDeclaration(s) || ts.isExportAssignment(s); }); } function setExportContextFlag(node) { // A declaration source file or ambient module declaration that contains no export declarations (but possibly regular // declarations with export modifiers) is an export context in which declarations are implicitly exported. if (node.flags & 16777216 /* NodeFlags.Ambient */ && !hasExportDeclarations(node)) { node.flags |= 64 /* NodeFlags.ExportContext */; } else { node.flags &= ~64 /* NodeFlags.ExportContext */; } } function bindModuleDeclaration(node) { setExportContextFlag(node); if (ts.isAmbientModule(node)) { if (ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */)) { errorOnFirstToken(node, ts.Diagnostics.export_modifier_cannot_be_applied_to_ambient_modules_and_module_augmentations_since_they_are_always_visible); } if (ts.isModuleAugmentationExternal(node)) { declareModuleSymbol(node); } else { var pattern = void 0; if (node.name.kind === 10 /* SyntaxKind.StringLiteral */) { var text = node.name.text; pattern = ts.tryParsePattern(text); if (pattern === undefined) { errorOnFirstToken(node.name, ts.Diagnostics.Pattern_0_can_have_at_most_one_Asterisk_character, text); } } var symbol = declareSymbolAndAddToSymbolTable(node, 512 /* SymbolFlags.ValueModule */, 110735 /* SymbolFlags.ValueModuleExcludes */); file.patternAmbientModules = ts.append(file.patternAmbientModules, pattern && !ts.isString(pattern) ? { pattern: pattern, symbol: symbol } : undefined); } } else { var state = declareModuleSymbol(node); if (state !== 0 /* ModuleInstanceState.NonInstantiated */) { var symbol = node.symbol; // if module was already merged with some function, class or non-const enum, treat it as non-const-enum-only symbol.constEnumOnlyModule = (!(symbol.flags & (16 /* SymbolFlags.Function */ | 32 /* SymbolFlags.Class */ | 256 /* SymbolFlags.RegularEnum */))) // Current must be `const enum` only && state === 2 /* ModuleInstanceState.ConstEnumOnly */ // Can't have been set to 'false' in a previous merged symbol. ('undefined' OK) && symbol.constEnumOnlyModule !== false; } } } function declareModuleSymbol(node) { var state = getModuleInstanceState(node); var instantiated = state !== 0 /* ModuleInstanceState.NonInstantiated */; declareSymbolAndAddToSymbolTable(node, instantiated ? 512 /* SymbolFlags.ValueModule */ : 1024 /* SymbolFlags.NamespaceModule */, instantiated ? 110735 /* SymbolFlags.ValueModuleExcludes */ : 0 /* SymbolFlags.NamespaceModuleExcludes */); return state; } function bindFunctionOrConstructorType(node) { // For a given function symbol "<...>(...) => T" we want to generate a symbol identical // to the one we would get for: { <...>(...): T } // // We do that by making an anonymous type literal symbol, and then setting the function // symbol as its sole member. To the rest of the system, this symbol will be indistinguishable // from an actual type literal symbol you would have gotten had you used the long form. var symbol = createSymbol(131072 /* SymbolFlags.Signature */, getDeclarationName(node)); // TODO: GH#18217 addDeclarationToSymbol(symbol, node, 131072 /* SymbolFlags.Signature */); var typeLiteralSymbol = createSymbol(2048 /* SymbolFlags.TypeLiteral */, "__type" /* InternalSymbolName.Type */); addDeclarationToSymbol(typeLiteralSymbol, node, 2048 /* SymbolFlags.TypeLiteral */); typeLiteralSymbol.members = ts.createSymbolTable(); typeLiteralSymbol.members.set(symbol.escapedName, symbol); } function bindObjectLiteralExpression(node) { var ElementKind; (function (ElementKind) { ElementKind[ElementKind["Property"] = 1] = "Property"; ElementKind[ElementKind["Accessor"] = 2] = "Accessor"; })(ElementKind || (ElementKind = {})); if (inStrictMode && !ts.isAssignmentTarget(node)) { var seen = new ts.Map(); for (var _i = 0, _a = node.properties; _i < _a.length; _i++) { var prop = _a[_i]; if (prop.kind === 298 /* SyntaxKind.SpreadAssignment */ || prop.name.kind !== 79 /* SyntaxKind.Identifier */) { continue; } var identifier = prop.name; // ECMA-262 11.1.5 Object Initializer // If previous is not undefined then throw a SyntaxError exception if any of the following conditions are true // a.This production is contained in strict code and IsDataDescriptor(previous) is true and // IsDataDescriptor(propId.descriptor) is true. // b.IsDataDescriptor(previous) is true and IsAccessorDescriptor(propId.descriptor) is true. // c.IsAccessorDescriptor(previous) is true and IsDataDescriptor(propId.descriptor) is true. // d.IsAccessorDescriptor(previous) is true and IsAccessorDescriptor(propId.descriptor) is true // and either both previous and propId.descriptor have[[Get]] fields or both previous and propId.descriptor have[[Set]] fields var currentKind = prop.kind === 296 /* SyntaxKind.PropertyAssignment */ || prop.kind === 297 /* SyntaxKind.ShorthandPropertyAssignment */ || prop.kind === 169 /* SyntaxKind.MethodDeclaration */ ? 1 /* ElementKind.Property */ : 2 /* ElementKind.Accessor */; var existingKind = seen.get(identifier.escapedText); if (!existingKind) { seen.set(identifier.escapedText, currentKind); continue; } } } return bindAnonymousDeclaration(node, 4096 /* SymbolFlags.ObjectLiteral */, "__object" /* InternalSymbolName.Object */); } function bindJsxAttributes(node) { return bindAnonymousDeclaration(node, 4096 /* SymbolFlags.ObjectLiteral */, "__jsxAttributes" /* InternalSymbolName.JSXAttributes */); } function bindJsxAttribute(node, symbolFlags, symbolExcludes) { return declareSymbolAndAddToSymbolTable(node, symbolFlags, symbolExcludes); } function bindAnonymousDeclaration(node, symbolFlags, name) { var symbol = createSymbol(symbolFlags, name); if (symbolFlags & (8 /* SymbolFlags.EnumMember */ | 106500 /* SymbolFlags.ClassMember */)) { symbol.parent = container.symbol; } addDeclarationToSymbol(symbol, node, symbolFlags); return symbol; } function bindBlockScopedDeclaration(node, symbolFlags, symbolExcludes) { switch (blockScopeContainer.kind) { case 261 /* SyntaxKind.ModuleDeclaration */: declareModuleMember(node, symbolFlags, symbolExcludes); break; case 305 /* SyntaxKind.SourceFile */: if (ts.isExternalOrCommonJsModule(container)) { declareModuleMember(node, symbolFlags, symbolExcludes); break; } // falls through default: if (!blockScopeContainer.locals) { blockScopeContainer.locals = ts.createSymbolTable(); addToContainerChain(blockScopeContainer); } declareSymbol(blockScopeContainer.locals, /*parent*/ undefined, node, symbolFlags, symbolExcludes); } } function delayedBindJSDocTypedefTag() { if (!delayedTypeAliases) { return; } var saveContainer = container; var saveLastContainer = lastContainer; var saveBlockScopeContainer = blockScopeContainer; var saveParent = parent; var saveCurrentFlow = currentFlow; for (var _i = 0, delayedTypeAliases_1 = delayedTypeAliases; _i < delayedTypeAliases_1.length; _i++) { var typeAlias = delayedTypeAliases_1[_i]; var host = typeAlias.parent.parent; container = ts.findAncestor(host.parent, function (n) { return !!(getContainerFlags(n) & 1 /* ContainerFlags.IsContainer */); }) || file; blockScopeContainer = ts.getEnclosingBlockScopeContainer(host) || file; currentFlow = initFlowNode({ flags: 2 /* FlowFlags.Start */ }); parent = typeAlias; bind(typeAlias.typeExpression); var declName = ts.getNameOfDeclaration(typeAlias); if ((ts.isJSDocEnumTag(typeAlias) || !typeAlias.fullName) && declName && ts.isPropertyAccessEntityNameExpression(declName.parent)) { // typedef anchored to an A.B.C assignment - we need to bind into B's namespace under name C var isTopLevel = isTopLevelNamespaceAssignment(declName.parent); if (isTopLevel) { bindPotentiallyMissingNamespaces(file.symbol, declName.parent, isTopLevel, !!ts.findAncestor(declName, function (d) { return ts.isPropertyAccessExpression(d) && d.name.escapedText === "prototype"; }), /*containerIsClass*/ false); var oldContainer = container; switch (ts.getAssignmentDeclarationPropertyAccessKind(declName.parent)) { case 1 /* AssignmentDeclarationKind.ExportsProperty */: case 2 /* AssignmentDeclarationKind.ModuleExports */: if (!ts.isExternalOrCommonJsModule(file)) { container = undefined; } else { container = file; } break; case 4 /* AssignmentDeclarationKind.ThisProperty */: container = declName.parent.expression; break; case 3 /* AssignmentDeclarationKind.PrototypeProperty */: container = declName.parent.expression.name; break; case 5 /* AssignmentDeclarationKind.Property */: container = isExportsOrModuleExportsOrAlias(file, declName.parent.expression) ? file : ts.isPropertyAccessExpression(declName.parent.expression) ? declName.parent.expression.name : declName.parent.expression; break; case 0 /* AssignmentDeclarationKind.None */: return ts.Debug.fail("Shouldn't have detected typedef or enum on non-assignment declaration"); } if (container) { declareModuleMember(typeAlias, 524288 /* SymbolFlags.TypeAlias */, 788968 /* SymbolFlags.TypeAliasExcludes */); } container = oldContainer; } } else if (ts.isJSDocEnumTag(typeAlias) || !typeAlias.fullName || typeAlias.fullName.kind === 79 /* SyntaxKind.Identifier */) { parent = typeAlias.parent; bindBlockScopedDeclaration(typeAlias, 524288 /* SymbolFlags.TypeAlias */, 788968 /* SymbolFlags.TypeAliasExcludes */); } else { bind(typeAlias.fullName); } } container = saveContainer; lastContainer = saveLastContainer; blockScopeContainer = saveBlockScopeContainer; parent = saveParent; currentFlow = saveCurrentFlow; } // The binder visits every node in the syntax tree so it is a convenient place to perform a single localized // check for reserved words used as identifiers in strict mode code, as well as `yield` or `await` in // [Yield] or [Await] contexts, respectively. function checkContextualIdentifier(node) { // Report error only if there are no parse errors in file if (!file.parseDiagnostics.length && !(node.flags & 16777216 /* NodeFlags.Ambient */) && !(node.flags & 8388608 /* NodeFlags.JSDoc */) && !ts.isIdentifierName(node)) { // strict mode identifiers if (inStrictMode && node.originalKeywordKind >= 117 /* SyntaxKind.FirstFutureReservedWord */ && node.originalKeywordKind <= 125 /* SyntaxKind.LastFutureReservedWord */) { file.bindDiagnostics.push(createDiagnosticForNode(node, getStrictModeIdentifierMessage(node), ts.declarationNameToString(node))); } else if (node.originalKeywordKind === 132 /* SyntaxKind.AwaitKeyword */) { if (ts.isExternalModule(file) && ts.isInTopLevelContext(node)) { file.bindDiagnostics.push(createDiagnosticForNode(node, ts.Diagnostics.Identifier_expected_0_is_a_reserved_word_at_the_top_level_of_a_module, ts.declarationNameToString(node))); } else if (node.flags & 32768 /* NodeFlags.AwaitContext */) { file.bindDiagnostics.push(createDiagnosticForNode(node, ts.Diagnostics.Identifier_expected_0_is_a_reserved_word_that_cannot_be_used_here, ts.declarationNameToString(node))); } } else if (node.originalKeywordKind === 125 /* SyntaxKind.YieldKeyword */ && node.flags & 8192 /* NodeFlags.YieldContext */) { file.bindDiagnostics.push(createDiagnosticForNode(node, ts.Diagnostics.Identifier_expected_0_is_a_reserved_word_that_cannot_be_used_here, ts.declarationNameToString(node))); } } } function getStrictModeIdentifierMessage(node) { // Provide specialized messages to help the user understand why we think they're in // strict mode. if (ts.getContainingClass(node)) { return ts.Diagnostics.Identifier_expected_0_is_a_reserved_word_in_strict_mode_Class_definitions_are_automatically_in_strict_mode; } if (file.externalModuleIndicator) { return ts.Diagnostics.Identifier_expected_0_is_a_reserved_word_in_strict_mode_Modules_are_automatically_in_strict_mode; } return ts.Diagnostics.Identifier_expected_0_is_a_reserved_word_in_strict_mode; } // The binder visits every node, so this is a good place to check for // the reserved private name (there is only one) function checkPrivateIdentifier(node) { if (node.escapedText === "#constructor") { // Report error only if there are no parse errors in file if (!file.parseDiagnostics.length) { file.bindDiagnostics.push(createDiagnosticForNode(node, ts.Diagnostics.constructor_is_a_reserved_word, ts.declarationNameToString(node))); } } } function checkStrictModeBinaryExpression(node) { if (inStrictMode && ts.isLeftHandSideExpression(node.left) && ts.isAssignmentOperator(node.operatorToken.kind)) { // ECMA 262 (Annex C) The identifier eval or arguments may not appear as the LeftHandSideExpression of an // Assignment operator(11.13) or of a PostfixExpression(11.3) checkStrictModeEvalOrArguments(node, node.left); } } function checkStrictModeCatchClause(node) { // It is a SyntaxError if a TryStatement with a Catch occurs within strict code and the Identifier of the // Catch production is eval or arguments if (inStrictMode && node.variableDeclaration) { checkStrictModeEvalOrArguments(node, node.variableDeclaration.name); } } function checkStrictModeDeleteExpression(node) { // Grammar checking if (inStrictMode && node.expression.kind === 79 /* SyntaxKind.Identifier */) { // When a delete operator occurs within strict mode code, a SyntaxError is thrown if its // UnaryExpression is a direct reference to a variable, function argument, or function name var span = ts.getErrorSpanForNode(file, node.expression); file.bindDiagnostics.push(ts.createFileDiagnostic(file, span.start, span.length, ts.Diagnostics.delete_cannot_be_called_on_an_identifier_in_strict_mode)); } } function isEvalOrArgumentsIdentifier(node) { return ts.isIdentifier(node) && (node.escapedText === "eval" || node.escapedText === "arguments"); } function checkStrictModeEvalOrArguments(contextNode, name) { if (name && name.kind === 79 /* SyntaxKind.Identifier */) { var identifier = name; if (isEvalOrArgumentsIdentifier(identifier)) { // We check first if the name is inside class declaration or class expression; if so give explicit message // otherwise report generic error message. var span = ts.getErrorSpanForNode(file, name); file.bindDiagnostics.push(ts.createFileDiagnostic(file, span.start, span.length, getStrictModeEvalOrArgumentsMessage(contextNode), ts.idText(identifier))); } } } function getStrictModeEvalOrArgumentsMessage(node) { // Provide specialized messages to help the user understand why we think they're in // strict mode. if (ts.getContainingClass(node)) { return ts.Diagnostics.Code_contained_in_a_class_is_evaluated_in_JavaScript_s_strict_mode_which_does_not_allow_this_use_of_0_For_more_information_see_https_Colon_Slash_Slashdeveloper_mozilla_org_Slashen_US_Slashdocs_SlashWeb_SlashJavaScript_SlashReference_SlashStrict_mode; } if (file.externalModuleIndicator) { return ts.Diagnostics.Invalid_use_of_0_Modules_are_automatically_in_strict_mode; } return ts.Diagnostics.Invalid_use_of_0_in_strict_mode; } function checkStrictModeFunctionName(node) { if (inStrictMode) { // It is a SyntaxError if the identifier eval or arguments appears within a FormalParameterList of a strict mode FunctionDeclaration or FunctionExpression (13.1)) checkStrictModeEvalOrArguments(node, node.name); } } function getStrictModeBlockScopeFunctionDeclarationMessage(node) { // Provide specialized messages to help the user understand why we think they're in // strict mode. if (ts.getContainingClass(node)) { return ts.Diagnostics.Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES3_or_ES5_Class_definitions_are_automatically_in_strict_mode; } if (file.externalModuleIndicator) { return ts.Diagnostics.Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES3_or_ES5_Modules_are_automatically_in_strict_mode; } return ts.Diagnostics.Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES3_or_ES5; } function checkStrictModeFunctionDeclaration(node) { if (languageVersion < 2 /* ScriptTarget.ES2015 */) { // Report error if function is not top level function declaration if (blockScopeContainer.kind !== 305 /* SyntaxKind.SourceFile */ && blockScopeContainer.kind !== 261 /* SyntaxKind.ModuleDeclaration */ && !ts.isFunctionLikeOrClassStaticBlockDeclaration(blockScopeContainer)) { // We check first if the name is inside class declaration or class expression; if so give explicit message // otherwise report generic error message. var errorSpan = ts.getErrorSpanForNode(file, node); file.bindDiagnostics.push(ts.createFileDiagnostic(file, errorSpan.start, errorSpan.length, getStrictModeBlockScopeFunctionDeclarationMessage(node))); } } } function checkStrictModeNumericLiteral(node) { if (languageVersion < 1 /* ScriptTarget.ES5 */ && inStrictMode && node.numericLiteralFlags & 32 /* TokenFlags.Octal */) { file.bindDiagnostics.push(createDiagnosticForNode(node, ts.Diagnostics.Octal_literals_are_not_allowed_in_strict_mode)); } } function checkStrictModePostfixUnaryExpression(node) { // Grammar checking // The identifier eval or arguments may not appear as the LeftHandSideExpression of an // Assignment operator(11.13) or of a PostfixExpression(11.3) or as the UnaryExpression // operated upon by a Prefix Increment(11.4.4) or a Prefix Decrement(11.4.5) operator. if (inStrictMode) { checkStrictModeEvalOrArguments(node, node.operand); } } function checkStrictModePrefixUnaryExpression(node) { // Grammar checking if (inStrictMode) { if (node.operator === 45 /* SyntaxKind.PlusPlusToken */ || node.operator === 46 /* SyntaxKind.MinusMinusToken */) { checkStrictModeEvalOrArguments(node, node.operand); } } } function checkStrictModeWithStatement(node) { // Grammar checking for withStatement if (inStrictMode) { errorOnFirstToken(node, ts.Diagnostics.with_statements_are_not_allowed_in_strict_mode); } } function checkStrictModeLabeledStatement(node) { // Grammar checking for labeledStatement if (inStrictMode && ts.getEmitScriptTarget(options) >= 2 /* ScriptTarget.ES2015 */) { if (ts.isDeclarationStatement(node.statement) || ts.isVariableStatement(node.statement)) { errorOnFirstToken(node.label, ts.Diagnostics.A_label_is_not_allowed_here); } } } function errorOnFirstToken(node, message, arg0, arg1, arg2) { var span = ts.getSpanOfTokenAtPosition(file, node.pos); file.bindDiagnostics.push(ts.createFileDiagnostic(file, span.start, span.length, message, arg0, arg1, arg2)); } function errorOrSuggestionOnNode(isError, node, message) { errorOrSuggestionOnRange(isError, node, node, message); } function errorOrSuggestionOnRange(isError, startNode, endNode, message) { addErrorOrSuggestionDiagnostic(isError, { pos: ts.getTokenPosOfNode(startNode, file), end: endNode.end }, message); } function addErrorOrSuggestionDiagnostic(isError, range, message) { var diag = ts.createFileDiagnostic(file, range.pos, range.end - range.pos, message); if (isError) { file.bindDiagnostics.push(diag); } else { file.bindSuggestionDiagnostics = ts.append(file.bindSuggestionDiagnostics, __assign(__assign({}, diag), { category: ts.DiagnosticCategory.Suggestion })); } } function bind(node) { if (!node) { return; } ts.setParent(node, parent); if (ts.tracing) node.tracingPath = file.path; var saveInStrictMode = inStrictMode; // Even though in the AST the jsdoc @typedef node belongs to the current node, // its symbol might be in the same scope with the current node's symbol. Consider: // // /** @typedef {string | number} MyType */ // function foo(); // // Here the current node is "foo", which is a container, but the scope of "MyType" should // not be inside "foo". Therefore we always bind @typedef before bind the parent node, // and skip binding this tag later when binding all the other jsdoc tags. // First we bind declaration nodes to a symbol if possible. We'll both create a symbol // and then potentially add the symbol to an appropriate symbol table. Possible // destination symbol tables are: // // 1) The 'exports' table of the current container's symbol. // 2) The 'members' table of the current container's symbol. // 3) The 'locals' table of the current container. // // However, not all symbols will end up in any of these tables. 'Anonymous' symbols // (like TypeLiterals for example) will not be put in any table. bindWorker(node); // Then we recurse into the children of the node to bind them as well. For certain // symbols we do specialized work when we recurse. For example, we'll keep track of // the current 'container' node when it changes. This helps us know which symbol table // a local should go into for example. Since terminal nodes are known not to have // children, as an optimization we don't process those. if (node.kind > 160 /* SyntaxKind.LastToken */) { var saveParent = parent; parent = node; var containerFlags = getContainerFlags(node); if (containerFlags === 0 /* ContainerFlags.None */) { bindChildren(node); } else { bindContainer(node, containerFlags); } parent = saveParent; } else { var saveParent = parent; if (node.kind === 1 /* SyntaxKind.EndOfFileToken */) parent = node; bindJSDoc(node); parent = saveParent; } inStrictMode = saveInStrictMode; } function bindJSDoc(node) { if (ts.hasJSDocNodes(node)) { if (ts.isInJSFile(node)) { for (var _i = 0, _a = node.jsDoc; _i < _a.length; _i++) { var j = _a[_i]; bind(j); } } else { for (var _b = 0, _c = node.jsDoc; _b < _c.length; _b++) { var j = _c[_b]; ts.setParent(j, node); ts.setParentRecursive(j, /*incremental*/ false); } } } } function updateStrictModeStatementList(statements) { if (!inStrictMode) { for (var _i = 0, statements_3 = statements; _i < statements_3.length; _i++) { var statement = statements_3[_i]; if (!ts.isPrologueDirective(statement)) { return; } if (isUseStrictPrologueDirective(statement)) { inStrictMode = true; return; } } } } /// Should be called only on prologue directives (isPrologueDirective(node) should be true) function isUseStrictPrologueDirective(node) { var nodeText = ts.getSourceTextOfNodeFromSourceFile(file, node.expression); // Note: the node text must be exactly "use strict" or 'use strict'. It is not ok for the // string to contain unicode escapes (as per ES5). return nodeText === '"use strict"' || nodeText === "'use strict'"; } function bindWorker(node) { switch (node.kind) { /* Strict mode checks */ case 79 /* SyntaxKind.Identifier */: // for typedef type names with namespaces, bind the new jsdoc type symbol here // because it requires all containing namespaces to be in effect, namely the // current "blockScopeContainer" needs to be set to its immediate namespace parent. if (node.isInJSDocNamespace) { var parentNode = node.parent; while (parentNode && !ts.isJSDocTypeAlias(parentNode)) { parentNode = parentNode.parent; } bindBlockScopedDeclaration(parentNode, 524288 /* SymbolFlags.TypeAlias */, 788968 /* SymbolFlags.TypeAliasExcludes */); break; } // falls through case 108 /* SyntaxKind.ThisKeyword */: if (currentFlow && (ts.isExpression(node) || parent.kind === 297 /* SyntaxKind.ShorthandPropertyAssignment */)) { node.flowNode = currentFlow; } return checkContextualIdentifier(node); case 161 /* SyntaxKind.QualifiedName */: if (currentFlow && ts.isPartOfTypeQuery(node)) { node.flowNode = currentFlow; } break; case 231 /* SyntaxKind.MetaProperty */: case 106 /* SyntaxKind.SuperKeyword */: node.flowNode = currentFlow; break; case 80 /* SyntaxKind.PrivateIdentifier */: return checkPrivateIdentifier(node); case 206 /* SyntaxKind.PropertyAccessExpression */: case 207 /* SyntaxKind.ElementAccessExpression */: var expr = node; if (currentFlow && isNarrowableReference(expr)) { expr.flowNode = currentFlow; } if (ts.isSpecialPropertyDeclaration(expr)) { bindSpecialPropertyDeclaration(expr); } if (ts.isInJSFile(expr) && file.commonJsModuleIndicator && ts.isModuleExportsAccessExpression(expr) && !lookupSymbolForName(blockScopeContainer, "module")) { declareSymbol(file.locals, /*parent*/ undefined, expr.expression, 1 /* SymbolFlags.FunctionScopedVariable */ | 134217728 /* SymbolFlags.ModuleExports */, 111550 /* SymbolFlags.FunctionScopedVariableExcludes */); } break; case 221 /* SyntaxKind.BinaryExpression */: var specialKind = ts.getAssignmentDeclarationKind(node); switch (specialKind) { case 1 /* AssignmentDeclarationKind.ExportsProperty */: bindExportsPropertyAssignment(node); break; case 2 /* AssignmentDeclarationKind.ModuleExports */: bindModuleExportsAssignment(node); break; case 3 /* AssignmentDeclarationKind.PrototypeProperty */: bindPrototypePropertyAssignment(node.left, node); break; case 6 /* AssignmentDeclarationKind.Prototype */: bindPrototypeAssignment(node); break; case 4 /* AssignmentDeclarationKind.ThisProperty */: bindThisPropertyAssignment(node); break; case 5 /* AssignmentDeclarationKind.Property */: var expression = node.left.expression; if (ts.isInJSFile(node) && ts.isIdentifier(expression)) { var symbol = lookupSymbolForName(blockScopeContainer, expression.escapedText); if (ts.isThisInitializedDeclaration(symbol === null || symbol === void 0 ? void 0 : symbol.valueDeclaration)) { bindThisPropertyAssignment(node); break; } } bindSpecialPropertyAssignment(node); break; case 0 /* AssignmentDeclarationKind.None */: // Nothing to do break; default: ts.Debug.fail("Unknown binary expression special property assignment kind"); } return checkStrictModeBinaryExpression(node); case 292 /* SyntaxKind.CatchClause */: return checkStrictModeCatchClause(node); case 215 /* SyntaxKind.DeleteExpression */: return checkStrictModeDeleteExpression(node); case 8 /* SyntaxKind.NumericLiteral */: return checkStrictModeNumericLiteral(node); case 220 /* SyntaxKind.PostfixUnaryExpression */: return checkStrictModePostfixUnaryExpression(node); case 219 /* SyntaxKind.PrefixUnaryExpression */: return checkStrictModePrefixUnaryExpression(node); case 248 /* SyntaxKind.WithStatement */: return checkStrictModeWithStatement(node); case 250 /* SyntaxKind.LabeledStatement */: return checkStrictModeLabeledStatement(node); case 192 /* SyntaxKind.ThisType */: seenThisKeyword = true; return; case 177 /* SyntaxKind.TypePredicate */: break; // Binding the children will handle everything case 163 /* SyntaxKind.TypeParameter */: return bindTypeParameter(node); case 164 /* SyntaxKind.Parameter */: return bindParameter(node); case 254 /* SyntaxKind.VariableDeclaration */: return bindVariableDeclarationOrBindingElement(node); case 203 /* SyntaxKind.BindingElement */: node.flowNode = currentFlow; return bindVariableDeclarationOrBindingElement(node); case 167 /* SyntaxKind.PropertyDeclaration */: case 166 /* SyntaxKind.PropertySignature */: return bindPropertyWorker(node); case 296 /* SyntaxKind.PropertyAssignment */: case 297 /* SyntaxKind.ShorthandPropertyAssignment */: return bindPropertyOrMethodOrAccessor(node, 4 /* SymbolFlags.Property */, 0 /* SymbolFlags.PropertyExcludes */); case 299 /* SyntaxKind.EnumMember */: return bindPropertyOrMethodOrAccessor(node, 8 /* SymbolFlags.EnumMember */, 900095 /* SymbolFlags.EnumMemberExcludes */); case 174 /* SyntaxKind.CallSignature */: case 175 /* SyntaxKind.ConstructSignature */: case 176 /* SyntaxKind.IndexSignature */: return declareSymbolAndAddToSymbolTable(node, 131072 /* SymbolFlags.Signature */, 0 /* SymbolFlags.None */); case 169 /* SyntaxKind.MethodDeclaration */: case 168 /* SyntaxKind.MethodSignature */: // If this is an ObjectLiteralExpression method, then it sits in the same space // as other properties in the object literal. So we use SymbolFlags.PropertyExcludes // so that it will conflict with any other object literal members with the same // name. return bindPropertyOrMethodOrAccessor(node, 8192 /* SymbolFlags.Method */ | (node.questionToken ? 16777216 /* SymbolFlags.Optional */ : 0 /* SymbolFlags.None */), ts.isObjectLiteralMethod(node) ? 0 /* SymbolFlags.PropertyExcludes */ : 103359 /* SymbolFlags.MethodExcludes */); case 256 /* SyntaxKind.FunctionDeclaration */: return bindFunctionDeclaration(node); case 171 /* SyntaxKind.Constructor */: return declareSymbolAndAddToSymbolTable(node, 16384 /* SymbolFlags.Constructor */, /*symbolExcludes:*/ 0 /* SymbolFlags.None */); case 172 /* SyntaxKind.GetAccessor */: return bindPropertyOrMethodOrAccessor(node, 32768 /* SymbolFlags.GetAccessor */, 46015 /* SymbolFlags.GetAccessorExcludes */); case 173 /* SyntaxKind.SetAccessor */: return bindPropertyOrMethodOrAccessor(node, 65536 /* SymbolFlags.SetAccessor */, 78783 /* SymbolFlags.SetAccessorExcludes */); case 179 /* SyntaxKind.FunctionType */: case 317 /* SyntaxKind.JSDocFunctionType */: case 323 /* SyntaxKind.JSDocSignature */: case 180 /* SyntaxKind.ConstructorType */: return bindFunctionOrConstructorType(node); case 182 /* SyntaxKind.TypeLiteral */: case 322 /* SyntaxKind.JSDocTypeLiteral */: case 195 /* SyntaxKind.MappedType */: return bindAnonymousTypeWorker(node); case 332 /* SyntaxKind.JSDocClassTag */: return bindJSDocClassTag(node); case 205 /* SyntaxKind.ObjectLiteralExpression */: return bindObjectLiteralExpression(node); case 213 /* SyntaxKind.FunctionExpression */: case 214 /* SyntaxKind.ArrowFunction */: return bindFunctionExpression(node); case 208 /* SyntaxKind.CallExpression */: var assignmentKind = ts.getAssignmentDeclarationKind(node); switch (assignmentKind) { case 7 /* AssignmentDeclarationKind.ObjectDefinePropertyValue */: return bindObjectDefinePropertyAssignment(node); case 8 /* AssignmentDeclarationKind.ObjectDefinePropertyExports */: return bindObjectDefinePropertyExport(node); case 9 /* AssignmentDeclarationKind.ObjectDefinePrototypeProperty */: return bindObjectDefinePrototypeProperty(node); case 0 /* AssignmentDeclarationKind.None */: break; // Nothing to do default: return ts.Debug.fail("Unknown call expression assignment declaration kind"); } if (ts.isInJSFile(node)) { bindCallExpression(node); } break; // Members of classes, interfaces, and modules case 226 /* SyntaxKind.ClassExpression */: case 257 /* SyntaxKind.ClassDeclaration */: // All classes are automatically in strict mode in ES6. inStrictMode = true; return bindClassLikeDeclaration(node); case 258 /* SyntaxKind.InterfaceDeclaration */: return bindBlockScopedDeclaration(node, 64 /* SymbolFlags.Interface */, 788872 /* SymbolFlags.InterfaceExcludes */); case 259 /* SyntaxKind.TypeAliasDeclaration */: return bindBlockScopedDeclaration(node, 524288 /* SymbolFlags.TypeAlias */, 788968 /* SymbolFlags.TypeAliasExcludes */); case 260 /* SyntaxKind.EnumDeclaration */: return bindEnumDeclaration(node); case 261 /* SyntaxKind.ModuleDeclaration */: return bindModuleDeclaration(node); // Jsx-attributes case 286 /* SyntaxKind.JsxAttributes */: return bindJsxAttributes(node); case 285 /* SyntaxKind.JsxAttribute */: return bindJsxAttribute(node, 4 /* SymbolFlags.Property */, 0 /* SymbolFlags.PropertyExcludes */); // Imports and exports case 265 /* SyntaxKind.ImportEqualsDeclaration */: case 268 /* SyntaxKind.NamespaceImport */: case 270 /* SyntaxKind.ImportSpecifier */: case 275 /* SyntaxKind.ExportSpecifier */: return declareSymbolAndAddToSymbolTable(node, 2097152 /* SymbolFlags.Alias */, 2097152 /* SymbolFlags.AliasExcludes */); case 264 /* SyntaxKind.NamespaceExportDeclaration */: return bindNamespaceExportDeclaration(node); case 267 /* SyntaxKind.ImportClause */: return bindImportClause(node); case 272 /* SyntaxKind.ExportDeclaration */: return bindExportDeclaration(node); case 271 /* SyntaxKind.ExportAssignment */: return bindExportAssignment(node); case 305 /* SyntaxKind.SourceFile */: updateStrictModeStatementList(node.statements); return bindSourceFileIfExternalModule(); case 235 /* SyntaxKind.Block */: if (!ts.isFunctionLikeOrClassStaticBlockDeclaration(node.parent)) { return; } // falls through case 262 /* SyntaxKind.ModuleBlock */: return updateStrictModeStatementList(node.statements); case 340 /* SyntaxKind.JSDocParameterTag */: if (node.parent.kind === 323 /* SyntaxKind.JSDocSignature */) { return bindParameter(node); } if (node.parent.kind !== 322 /* SyntaxKind.JSDocTypeLiteral */) { break; } // falls through case 347 /* SyntaxKind.JSDocPropertyTag */: var propTag = node; var flags = propTag.isBracketed || propTag.typeExpression && propTag.typeExpression.type.kind === 316 /* SyntaxKind.JSDocOptionalType */ ? 4 /* SymbolFlags.Property */ | 16777216 /* SymbolFlags.Optional */ : 4 /* SymbolFlags.Property */; return declareSymbolAndAddToSymbolTable(propTag, flags, 0 /* SymbolFlags.PropertyExcludes */); case 345 /* SyntaxKind.JSDocTypedefTag */: case 338 /* SyntaxKind.JSDocCallbackTag */: case 339 /* SyntaxKind.JSDocEnumTag */: return (delayedTypeAliases || (delayedTypeAliases = [])).push(node); } } function bindPropertyWorker(node) { return bindPropertyOrMethodOrAccessor(node, 4 /* SymbolFlags.Property */ | (node.questionToken ? 16777216 /* SymbolFlags.Optional */ : 0 /* SymbolFlags.None */), 0 /* SymbolFlags.PropertyExcludes */); } function bindAnonymousTypeWorker(node) { return bindAnonymousDeclaration(node, 2048 /* SymbolFlags.TypeLiteral */, "__type" /* InternalSymbolName.Type */); } function bindSourceFileIfExternalModule() { setExportContextFlag(file); if (ts.isExternalModule(file)) { bindSourceFileAsExternalModule(); } else if (ts.isJsonSourceFile(file)) { bindSourceFileAsExternalModule(); // Create symbol equivalent for the module.exports = {} var originalSymbol = file.symbol; declareSymbol(file.symbol.exports, file.symbol, file, 4 /* SymbolFlags.Property */, 67108863 /* SymbolFlags.All */); file.symbol = originalSymbol; } } function bindSourceFileAsExternalModule() { bindAnonymousDeclaration(file, 512 /* SymbolFlags.ValueModule */, "\"".concat(ts.removeFileExtension(file.fileName), "\"")); } function bindExportAssignment(node) { if (!container.symbol || !container.symbol.exports) { // Incorrect export assignment in some sort of block construct bindAnonymousDeclaration(node, 111551 /* SymbolFlags.Value */, getDeclarationName(node)); } else { var flags = ts.exportAssignmentIsAlias(node) // An export default clause with an EntityNameExpression or a class expression exports all meanings of that identifier or expression; ? 2097152 /* SymbolFlags.Alias */ // An export default clause with any other expression exports a value : 4 /* SymbolFlags.Property */; // If there is an `export default x;` alias declaration, can't `export default` anything else. // (In contrast, you can still have `export default function f() {}` and `export default interface I {}`.) var symbol = declareSymbol(container.symbol.exports, container.symbol, node, flags, 67108863 /* SymbolFlags.All */); if (node.isExportEquals) { // Will be an error later, since the module already has other exports. Just make sure this has a valueDeclaration set. ts.setValueDeclaration(symbol, node); } } } function bindNamespaceExportDeclaration(node) { if (node.modifiers && node.modifiers.length) { file.bindDiagnostics.push(createDiagnosticForNode(node, ts.Diagnostics.Modifiers_cannot_appear_here)); } var diag = !ts.isSourceFile(node.parent) ? ts.Diagnostics.Global_module_exports_may_only_appear_at_top_level : !ts.isExternalModule(node.parent) ? ts.Diagnostics.Global_module_exports_may_only_appear_in_module_files : !node.parent.isDeclarationFile ? ts.Diagnostics.Global_module_exports_may_only_appear_in_declaration_files : undefined; if (diag) { file.bindDiagnostics.push(createDiagnosticForNode(node, diag)); } else { file.symbol.globalExports = file.symbol.globalExports || ts.createSymbolTable(); declareSymbol(file.symbol.globalExports, file.symbol, node, 2097152 /* SymbolFlags.Alias */, 2097152 /* SymbolFlags.AliasExcludes */); } } function bindExportDeclaration(node) { if (!container.symbol || !container.symbol.exports) { // Export * in some sort of block construct bindAnonymousDeclaration(node, 8388608 /* SymbolFlags.ExportStar */, getDeclarationName(node)); } else if (!node.exportClause) { // All export * declarations are collected in an __export symbol declareSymbol(container.symbol.exports, container.symbol, node, 8388608 /* SymbolFlags.ExportStar */, 0 /* SymbolFlags.None */); } else if (ts.isNamespaceExport(node.exportClause)) { // declareSymbol walks up parents to find name text, parent _must_ be set // but won't be set by the normal binder walk until `bindChildren` later on. ts.setParent(node.exportClause, node); declareSymbol(container.symbol.exports, container.symbol, node.exportClause, 2097152 /* SymbolFlags.Alias */, 2097152 /* SymbolFlags.AliasExcludes */); } } function bindImportClause(node) { if (node.name) { declareSymbolAndAddToSymbolTable(node, 2097152 /* SymbolFlags.Alias */, 2097152 /* SymbolFlags.AliasExcludes */); } } function setCommonJsModuleIndicator(node) { if (file.externalModuleIndicator && file.externalModuleIndicator !== true) { return false; } if (!file.commonJsModuleIndicator) { file.commonJsModuleIndicator = node; if (!file.externalModuleIndicator) { bindSourceFileAsExternalModule(); } } return true; } function bindObjectDefinePropertyExport(node) { if (!setCommonJsModuleIndicator(node)) { return; } var symbol = forEachIdentifierInEntityName(node.arguments[0], /*parent*/ undefined, function (id, symbol) { if (symbol) { addDeclarationToSymbol(symbol, id, 1536 /* SymbolFlags.Module */ | 67108864 /* SymbolFlags.Assignment */); } return symbol; }); if (symbol) { var flags = 4 /* SymbolFlags.Property */ | 1048576 /* SymbolFlags.ExportValue */; declareSymbol(symbol.exports, symbol, node, flags, 0 /* SymbolFlags.None */); } } function bindExportsPropertyAssignment(node) { // When we create a property via 'exports.foo = bar', the 'exports.foo' property access // expression is the declaration if (!setCommonJsModuleIndicator(node)) { return; } var symbol = forEachIdentifierInEntityName(node.left.expression, /*parent*/ undefined, function (id, symbol) { if (symbol) { addDeclarationToSymbol(symbol, id, 1536 /* SymbolFlags.Module */ | 67108864 /* SymbolFlags.Assignment */); } return symbol; }); if (symbol) { var isAlias = ts.isAliasableExpression(node.right) && (ts.isExportsIdentifier(node.left.expression) || ts.isModuleExportsAccessExpression(node.left.expression)); var flags = isAlias ? 2097152 /* SymbolFlags.Alias */ : 4 /* SymbolFlags.Property */ | 1048576 /* SymbolFlags.ExportValue */; ts.setParent(node.left, node); declareSymbol(symbol.exports, symbol, node.left, flags, 0 /* SymbolFlags.None */); } } function bindModuleExportsAssignment(node) { // A common practice in node modules is to set 'export = module.exports = {}', this ensures that 'exports' // is still pointing to 'module.exports'. // We do not want to consider this as 'export=' since a module can have only one of these. // Similarly we do not want to treat 'module.exports = exports' as an 'export='. if (!setCommonJsModuleIndicator(node)) { return; } var assignedExpression = ts.getRightMostAssignedExpression(node.right); if (ts.isEmptyObjectLiteral(assignedExpression) || container === file && isExportsOrModuleExportsOrAlias(file, assignedExpression)) { return; } if (ts.isObjectLiteralExpression(assignedExpression) && ts.every(assignedExpression.properties, ts.isShorthandPropertyAssignment)) { ts.forEach(assignedExpression.properties, bindExportAssignedObjectMemberAlias); return; } // 'module.exports = expr' assignment var flags = ts.exportAssignmentIsAlias(node) ? 2097152 /* SymbolFlags.Alias */ : 4 /* SymbolFlags.Property */ | 1048576 /* SymbolFlags.ExportValue */ | 512 /* SymbolFlags.ValueModule */; var symbol = declareSymbol(file.symbol.exports, file.symbol, node, flags | 67108864 /* SymbolFlags.Assignment */, 0 /* SymbolFlags.None */); ts.setValueDeclaration(symbol, node); } function bindExportAssignedObjectMemberAlias(node) { declareSymbol(file.symbol.exports, file.symbol, node, 2097152 /* SymbolFlags.Alias */ | 67108864 /* SymbolFlags.Assignment */, 0 /* SymbolFlags.None */); } function bindThisPropertyAssignment(node) { ts.Debug.assert(ts.isInJSFile(node)); // private identifiers *must* be declared (even in JS files) var hasPrivateIdentifier = (ts.isBinaryExpression(node) && ts.isPropertyAccessExpression(node.left) && ts.isPrivateIdentifier(node.left.name)) || (ts.isPropertyAccessExpression(node) && ts.isPrivateIdentifier(node.name)); if (hasPrivateIdentifier) { return; } var thisContainer = ts.getThisContainer(node, /*includeArrowFunctions*/ false); switch (thisContainer.kind) { case 256 /* SyntaxKind.FunctionDeclaration */: case 213 /* SyntaxKind.FunctionExpression */: var constructorSymbol = thisContainer.symbol; // For `f.prototype.m = function() { this.x = 0; }`, `this.x = 0` should modify `f`'s members, not the function expression. if (ts.isBinaryExpression(thisContainer.parent) && thisContainer.parent.operatorToken.kind === 63 /* SyntaxKind.EqualsToken */) { var l = thisContainer.parent.left; if (ts.isBindableStaticAccessExpression(l) && ts.isPrototypeAccess(l.expression)) { constructorSymbol = lookupSymbolForPropertyAccess(l.expression.expression, thisParentContainer); } } if (constructorSymbol && constructorSymbol.valueDeclaration) { // Declare a 'member' if the container is an ES5 class or ES6 constructor constructorSymbol.members = constructorSymbol.members || ts.createSymbolTable(); // It's acceptable for multiple 'this' assignments of the same identifier to occur if (ts.hasDynamicName(node)) { bindDynamicallyNamedThisPropertyAssignment(node, constructorSymbol, constructorSymbol.members); } else { declareSymbol(constructorSymbol.members, constructorSymbol, node, 4 /* SymbolFlags.Property */ | 67108864 /* SymbolFlags.Assignment */, 0 /* SymbolFlags.PropertyExcludes */ & ~4 /* SymbolFlags.Property */); } addDeclarationToSymbol(constructorSymbol, constructorSymbol.valueDeclaration, 32 /* SymbolFlags.Class */); } break; case 171 /* SyntaxKind.Constructor */: case 167 /* SyntaxKind.PropertyDeclaration */: case 169 /* SyntaxKind.MethodDeclaration */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 170 /* SyntaxKind.ClassStaticBlockDeclaration */: // this.foo assignment in a JavaScript class // Bind this property to the containing class var containingClass = thisContainer.parent; var symbolTable = ts.isStatic(thisContainer) ? containingClass.symbol.exports : containingClass.symbol.members; if (ts.hasDynamicName(node)) { bindDynamicallyNamedThisPropertyAssignment(node, containingClass.symbol, symbolTable); } else { declareSymbol(symbolTable, containingClass.symbol, node, 4 /* SymbolFlags.Property */ | 67108864 /* SymbolFlags.Assignment */, 0 /* SymbolFlags.None */, /*isReplaceableByMethod*/ true); } break; case 305 /* SyntaxKind.SourceFile */: // this.property = assignment in a source file -- declare symbol in exports for a module, in locals for a script if (ts.hasDynamicName(node)) { break; } else if (thisContainer.commonJsModuleIndicator) { declareSymbol(thisContainer.symbol.exports, thisContainer.symbol, node, 4 /* SymbolFlags.Property */ | 1048576 /* SymbolFlags.ExportValue */, 0 /* SymbolFlags.None */); } else { declareSymbolAndAddToSymbolTable(node, 1 /* SymbolFlags.FunctionScopedVariable */, 111550 /* SymbolFlags.FunctionScopedVariableExcludes */); } break; default: ts.Debug.failBadSyntaxKind(thisContainer); } } function bindDynamicallyNamedThisPropertyAssignment(node, symbol, symbolTable) { declareSymbol(symbolTable, symbol, node, 4 /* SymbolFlags.Property */, 0 /* SymbolFlags.None */, /*isReplaceableByMethod*/ true, /*isComputedName*/ true); addLateBoundAssignmentDeclarationToSymbol(node, symbol); } function addLateBoundAssignmentDeclarationToSymbol(node, symbol) { if (symbol) { (symbol.assignmentDeclarationMembers || (symbol.assignmentDeclarationMembers = new ts.Map())).set(ts.getNodeId(node), node); } } function bindSpecialPropertyDeclaration(node) { if (node.expression.kind === 108 /* SyntaxKind.ThisKeyword */) { bindThisPropertyAssignment(node); } else if (ts.isBindableStaticAccessExpression(node) && node.parent.parent.kind === 305 /* SyntaxKind.SourceFile */) { if (ts.isPrototypeAccess(node.expression)) { bindPrototypePropertyAssignment(node, node.parent); } else { bindStaticPropertyAssignment(node); } } } /** For `x.prototype = { p, ... }`, declare members p,... if `x` is function/class/{}, or not declared. */ function bindPrototypeAssignment(node) { ts.setParent(node.left, node); ts.setParent(node.right, node); bindPropertyAssignment(node.left.expression, node.left, /*isPrototypeProperty*/ false, /*containerIsClass*/ true); } function bindObjectDefinePrototypeProperty(node) { var namespaceSymbol = lookupSymbolForPropertyAccess(node.arguments[0].expression); if (namespaceSymbol && namespaceSymbol.valueDeclaration) { // Ensure the namespace symbol becomes class-like addDeclarationToSymbol(namespaceSymbol, namespaceSymbol.valueDeclaration, 32 /* SymbolFlags.Class */); } bindPotentiallyNewExpandoMemberToNamespace(node, namespaceSymbol, /*isPrototypeProperty*/ true); } /** * For `x.prototype.y = z`, declare a member `y` on `x` if `x` is a function or class, or not declared. * Note that jsdoc preceding an ExpressionStatement like `x.prototype.y;` is also treated as a declaration. */ function bindPrototypePropertyAssignment(lhs, parent) { // Look up the function in the local scope, since prototype assignments should // follow the function declaration var classPrototype = lhs.expression; var constructorFunction = classPrototype.expression; // Fix up parent pointers since we're going to use these nodes before we bind into them ts.setParent(constructorFunction, classPrototype); ts.setParent(classPrototype, lhs); ts.setParent(lhs, parent); bindPropertyAssignment(constructorFunction, lhs, /*isPrototypeProperty*/ true, /*containerIsClass*/ true); } function bindObjectDefinePropertyAssignment(node) { var namespaceSymbol = lookupSymbolForPropertyAccess(node.arguments[0]); var isToplevel = node.parent.parent.kind === 305 /* SyntaxKind.SourceFile */; namespaceSymbol = bindPotentiallyMissingNamespaces(namespaceSymbol, node.arguments[0], isToplevel, /*isPrototypeProperty*/ false, /*containerIsClass*/ false); bindPotentiallyNewExpandoMemberToNamespace(node, namespaceSymbol, /*isPrototypeProperty*/ false); } function bindSpecialPropertyAssignment(node) { var _a; // Class declarations in Typescript do not allow property declarations var parentSymbol = lookupSymbolForPropertyAccess(node.left.expression, container) || lookupSymbolForPropertyAccess(node.left.expression, blockScopeContainer); if (!ts.isInJSFile(node) && !ts.isFunctionSymbol(parentSymbol)) { return; } var rootExpr = ts.getLeftmostAccessExpression(node.left); if (ts.isIdentifier(rootExpr) && ((_a = lookupSymbolForName(container, rootExpr.escapedText)) === null || _a === void 0 ? void 0 : _a.flags) & 2097152 /* SymbolFlags.Alias */) { return; } // Fix up parent pointers since we're going to use these nodes before we bind into them ts.setParent(node.left, node); ts.setParent(node.right, node); if (ts.isIdentifier(node.left.expression) && container === file && isExportsOrModuleExportsOrAlias(file, node.left.expression)) { // This can be an alias for the 'exports' or 'module.exports' names, e.g. // var util = module.exports; // util.property = function ... bindExportsPropertyAssignment(node); } else if (ts.hasDynamicName(node)) { bindAnonymousDeclaration(node, 4 /* SymbolFlags.Property */ | 67108864 /* SymbolFlags.Assignment */, "__computed" /* InternalSymbolName.Computed */); var sym = bindPotentiallyMissingNamespaces(parentSymbol, node.left.expression, isTopLevelNamespaceAssignment(node.left), /*isPrototype*/ false, /*containerIsClass*/ false); addLateBoundAssignmentDeclarationToSymbol(node, sym); } else { bindStaticPropertyAssignment(ts.cast(node.left, ts.isBindableStaticNameExpression)); } } /** * For nodes like `x.y = z`, declare a member 'y' on 'x' if x is a function (or IIFE) or class or {}, or not declared. * Also works for expression statements preceded by JSDoc, like / ** @type number * / x.y; */ function bindStaticPropertyAssignment(node) { ts.Debug.assert(!ts.isIdentifier(node)); ts.setParent(node.expression, node); bindPropertyAssignment(node.expression, node, /*isPrototypeProperty*/ false, /*containerIsClass*/ false); } function bindPotentiallyMissingNamespaces(namespaceSymbol, entityName, isToplevel, isPrototypeProperty, containerIsClass) { if ((namespaceSymbol === null || namespaceSymbol === void 0 ? void 0 : namespaceSymbol.flags) & 2097152 /* SymbolFlags.Alias */) { return namespaceSymbol; } if (isToplevel && !isPrototypeProperty) { // make symbols or add declarations for intermediate containers var flags_2 = 1536 /* SymbolFlags.Module */ | 67108864 /* SymbolFlags.Assignment */; var excludeFlags_1 = 110735 /* SymbolFlags.ValueModuleExcludes */ & ~67108864 /* SymbolFlags.Assignment */; namespaceSymbol = forEachIdentifierInEntityName(entityName, namespaceSymbol, function (id, symbol, parent) { if (symbol) { addDeclarationToSymbol(symbol, id, flags_2); return symbol; } else { var table = parent ? parent.exports : file.jsGlobalAugmentations || (file.jsGlobalAugmentations = ts.createSymbolTable()); return declareSymbol(table, parent, id, flags_2, excludeFlags_1); } }); } if (containerIsClass && namespaceSymbol && namespaceSymbol.valueDeclaration) { addDeclarationToSymbol(namespaceSymbol, namespaceSymbol.valueDeclaration, 32 /* SymbolFlags.Class */); } return namespaceSymbol; } function bindPotentiallyNewExpandoMemberToNamespace(declaration, namespaceSymbol, isPrototypeProperty) { if (!namespaceSymbol || !isExpandoSymbol(namespaceSymbol)) { return; } // Set up the members collection if it doesn't exist already var symbolTable = isPrototypeProperty ? (namespaceSymbol.members || (namespaceSymbol.members = ts.createSymbolTable())) : (namespaceSymbol.exports || (namespaceSymbol.exports = ts.createSymbolTable())); var includes = 0 /* SymbolFlags.None */; var excludes = 0 /* SymbolFlags.None */; // Method-like if (ts.isFunctionLikeDeclaration(ts.getAssignedExpandoInitializer(declaration))) { includes = 8192 /* SymbolFlags.Method */; excludes = 103359 /* SymbolFlags.MethodExcludes */; } // Maybe accessor-like else if (ts.isCallExpression(declaration) && ts.isBindableObjectDefinePropertyCall(declaration)) { if (ts.some(declaration.arguments[2].properties, function (p) { var id = ts.getNameOfDeclaration(p); return !!id && ts.isIdentifier(id) && ts.idText(id) === "set"; })) { // We mix in `SymbolFLags.Property` so in the checker `getTypeOfVariableParameterOrProperty` is used for this // symbol, instead of `getTypeOfAccessor` (which will assert as there is no real accessor declaration) includes |= 65536 /* SymbolFlags.SetAccessor */ | 4 /* SymbolFlags.Property */; excludes |= 78783 /* SymbolFlags.SetAccessorExcludes */; } if (ts.some(declaration.arguments[2].properties, function (p) { var id = ts.getNameOfDeclaration(p); return !!id && ts.isIdentifier(id) && ts.idText(id) === "get"; })) { includes |= 32768 /* SymbolFlags.GetAccessor */ | 4 /* SymbolFlags.Property */; excludes |= 46015 /* SymbolFlags.GetAccessorExcludes */; } } if (includes === 0 /* SymbolFlags.None */) { includes = 4 /* SymbolFlags.Property */; excludes = 0 /* SymbolFlags.PropertyExcludes */; } declareSymbol(symbolTable, namespaceSymbol, declaration, includes | 67108864 /* SymbolFlags.Assignment */, excludes & ~67108864 /* SymbolFlags.Assignment */); } function isTopLevelNamespaceAssignment(propertyAccess) { return ts.isBinaryExpression(propertyAccess.parent) ? getParentOfBinaryExpression(propertyAccess.parent).parent.kind === 305 /* SyntaxKind.SourceFile */ : propertyAccess.parent.parent.kind === 305 /* SyntaxKind.SourceFile */; } function bindPropertyAssignment(name, propertyAccess, isPrototypeProperty, containerIsClass) { var namespaceSymbol = lookupSymbolForPropertyAccess(name, container) || lookupSymbolForPropertyAccess(name, blockScopeContainer); var isToplevel = isTopLevelNamespaceAssignment(propertyAccess); namespaceSymbol = bindPotentiallyMissingNamespaces(namespaceSymbol, propertyAccess.expression, isToplevel, isPrototypeProperty, containerIsClass); bindPotentiallyNewExpandoMemberToNamespace(propertyAccess, namespaceSymbol, isPrototypeProperty); } /** * Javascript expando values are: * - Functions * - classes * - namespaces * - variables initialized with function expressions * - with class expressions * - with empty object literals * - with non-empty object literals if assigned to the prototype property */ function isExpandoSymbol(symbol) { if (symbol.flags & (16 /* SymbolFlags.Function */ | 32 /* SymbolFlags.Class */ | 1024 /* SymbolFlags.NamespaceModule */)) { return true; } var node = symbol.valueDeclaration; if (node && ts.isCallExpression(node)) { return !!ts.getAssignedExpandoInitializer(node); } var init = !node ? undefined : ts.isVariableDeclaration(node) ? node.initializer : ts.isBinaryExpression(node) ? node.right : ts.isPropertyAccessExpression(node) && ts.isBinaryExpression(node.parent) ? node.parent.right : undefined; init = init && ts.getRightMostAssignedExpression(init); if (init) { var isPrototypeAssignment = ts.isPrototypeAccess(ts.isVariableDeclaration(node) ? node.name : ts.isBinaryExpression(node) ? node.left : node); return !!ts.getExpandoInitializer(ts.isBinaryExpression(init) && (init.operatorToken.kind === 56 /* SyntaxKind.BarBarToken */ || init.operatorToken.kind === 60 /* SyntaxKind.QuestionQuestionToken */) ? init.right : init, isPrototypeAssignment); } return false; } function getParentOfBinaryExpression(expr) { while (ts.isBinaryExpression(expr.parent)) { expr = expr.parent; } return expr.parent; } function lookupSymbolForPropertyAccess(node, lookupContainer) { if (lookupContainer === void 0) { lookupContainer = container; } if (ts.isIdentifier(node)) { return lookupSymbolForName(lookupContainer, node.escapedText); } else { var symbol = lookupSymbolForPropertyAccess(node.expression); return symbol && symbol.exports && symbol.exports.get(ts.getElementOrPropertyAccessName(node)); } } function forEachIdentifierInEntityName(e, parent, action) { if (isExportsOrModuleExportsOrAlias(file, e)) { return file.symbol; } else if (ts.isIdentifier(e)) { return action(e, lookupSymbolForPropertyAccess(e), parent); } else { var s = forEachIdentifierInEntityName(e.expression, parent, action); var name = ts.getNameOrArgument(e); // unreachable if (ts.isPrivateIdentifier(name)) { ts.Debug.fail("unexpected PrivateIdentifier"); } return action(name, s && s.exports && s.exports.get(ts.getElementOrPropertyAccessName(e)), s); } } function bindCallExpression(node) { // We're only inspecting call expressions to detect CommonJS modules, so we can skip // this check if we've already seen the module indicator if (!file.commonJsModuleIndicator && ts.isRequireCall(node, /*checkArgumentIsStringLiteralLike*/ false)) { setCommonJsModuleIndicator(node); } } function bindClassLikeDeclaration(node) { if (node.kind === 257 /* SyntaxKind.ClassDeclaration */) { bindBlockScopedDeclaration(node, 32 /* SymbolFlags.Class */, 899503 /* SymbolFlags.ClassExcludes */); } else { var bindingName = node.name ? node.name.escapedText : "__class" /* InternalSymbolName.Class */; bindAnonymousDeclaration(node, 32 /* SymbolFlags.Class */, bindingName); // Add name of class expression into the map for semantic classifier if (node.name) { classifiableNames.add(node.name.escapedText); } } var symbol = node.symbol; // TypeScript 1.0 spec (April 2014): 8.4 // Every class automatically contains a static property member named 'prototype', the // type of which is an instantiation of the class type with type Any supplied as a type // argument for each type parameter. It is an error to explicitly declare a static // property member with the name 'prototype'. // // Note: we check for this here because this class may be merging into a module. The // module might have an exported variable called 'prototype'. We can't allow that as // that would clash with the built-in 'prototype' for the class. var prototypeSymbol = createSymbol(4 /* SymbolFlags.Property */ | 4194304 /* SymbolFlags.Prototype */, "prototype"); var symbolExport = symbol.exports.get(prototypeSymbol.escapedName); if (symbolExport) { if (node.name) { ts.setParent(node.name, node); } file.bindDiagnostics.push(createDiagnosticForNode(symbolExport.declarations[0], ts.Diagnostics.Duplicate_identifier_0, ts.symbolName(prototypeSymbol))); } symbol.exports.set(prototypeSymbol.escapedName, prototypeSymbol); prototypeSymbol.parent = symbol; } function bindEnumDeclaration(node) { return ts.isEnumConst(node) ? bindBlockScopedDeclaration(node, 128 /* SymbolFlags.ConstEnum */, 899967 /* SymbolFlags.ConstEnumExcludes */) : bindBlockScopedDeclaration(node, 256 /* SymbolFlags.RegularEnum */, 899327 /* SymbolFlags.RegularEnumExcludes */); } function bindVariableDeclarationOrBindingElement(node) { if (inStrictMode) { checkStrictModeEvalOrArguments(node, node.name); } if (!ts.isBindingPattern(node.name)) { var possibleVariableDecl = node.kind === 254 /* SyntaxKind.VariableDeclaration */ ? node : node.parent.parent; if (ts.isInJSFile(node) && ts.isVariableDeclarationInitializedToBareOrAccessedRequire(possibleVariableDecl) && !ts.getJSDocTypeTag(node) && !(ts.getCombinedModifierFlags(node) & 1 /* ModifierFlags.Export */)) { declareSymbolAndAddToSymbolTable(node, 2097152 /* SymbolFlags.Alias */, 2097152 /* SymbolFlags.AliasExcludes */); } else if (ts.isBlockOrCatchScoped(node)) { bindBlockScopedDeclaration(node, 2 /* SymbolFlags.BlockScopedVariable */, 111551 /* SymbolFlags.BlockScopedVariableExcludes */); } else if (ts.isParameterDeclaration(node)) { // It is safe to walk up parent chain to find whether the node is a destructuring parameter declaration // because its parent chain has already been set up, since parents are set before descending into children. // // If node is a binding element in parameter declaration, we need to use ParameterExcludes. // Using ParameterExcludes flag allows the compiler to report an error on duplicate identifiers in Parameter Declaration // For example: // function foo([a,a]) {} // Duplicate Identifier error // function bar(a,a) {} // Duplicate Identifier error, parameter declaration in this case is handled in bindParameter // // which correctly set excluded symbols declareSymbolAndAddToSymbolTable(node, 1 /* SymbolFlags.FunctionScopedVariable */, 111551 /* SymbolFlags.ParameterExcludes */); } else { declareSymbolAndAddToSymbolTable(node, 1 /* SymbolFlags.FunctionScopedVariable */, 111550 /* SymbolFlags.FunctionScopedVariableExcludes */); } } } function bindParameter(node) { if (node.kind === 340 /* SyntaxKind.JSDocParameterTag */ && container.kind !== 323 /* SyntaxKind.JSDocSignature */) { return; } if (inStrictMode && !(node.flags & 16777216 /* NodeFlags.Ambient */)) { // It is a SyntaxError if the identifier eval or arguments appears within a FormalParameterList of a // strict mode FunctionLikeDeclaration or FunctionExpression(13.1) checkStrictModeEvalOrArguments(node, node.name); } if (ts.isBindingPattern(node.name)) { bindAnonymousDeclaration(node, 1 /* SymbolFlags.FunctionScopedVariable */, "__" + node.parent.parameters.indexOf(node)); } else { declareSymbolAndAddToSymbolTable(node, 1 /* SymbolFlags.FunctionScopedVariable */, 111551 /* SymbolFlags.ParameterExcludes */); } // If this is a property-parameter, then also declare the property symbol into the // containing class. if (ts.isParameterPropertyDeclaration(node, node.parent)) { var classDeclaration = node.parent.parent; declareSymbol(classDeclaration.symbol.members, classDeclaration.symbol, node, 4 /* SymbolFlags.Property */ | (node.questionToken ? 16777216 /* SymbolFlags.Optional */ : 0 /* SymbolFlags.None */), 0 /* SymbolFlags.PropertyExcludes */); } } function bindFunctionDeclaration(node) { if (!file.isDeclarationFile && !(node.flags & 16777216 /* NodeFlags.Ambient */)) { if (ts.isAsyncFunction(node)) { emitFlags |= 2048 /* NodeFlags.HasAsyncFunctions */; } } checkStrictModeFunctionName(node); if (inStrictMode) { checkStrictModeFunctionDeclaration(node); bindBlockScopedDeclaration(node, 16 /* SymbolFlags.Function */, 110991 /* SymbolFlags.FunctionExcludes */); } else { declareSymbolAndAddToSymbolTable(node, 16 /* SymbolFlags.Function */, 110991 /* SymbolFlags.FunctionExcludes */); } } function bindFunctionExpression(node) { if (!file.isDeclarationFile && !(node.flags & 16777216 /* NodeFlags.Ambient */)) { if (ts.isAsyncFunction(node)) { emitFlags |= 2048 /* NodeFlags.HasAsyncFunctions */; } } if (currentFlow) { node.flowNode = currentFlow; } checkStrictModeFunctionName(node); var bindingName = node.name ? node.name.escapedText : "__function" /* InternalSymbolName.Function */; return bindAnonymousDeclaration(node, 16 /* SymbolFlags.Function */, bindingName); } function bindPropertyOrMethodOrAccessor(node, symbolFlags, symbolExcludes) { if (!file.isDeclarationFile && !(node.flags & 16777216 /* NodeFlags.Ambient */) && ts.isAsyncFunction(node)) { emitFlags |= 2048 /* NodeFlags.HasAsyncFunctions */; } if (currentFlow && ts.isObjectLiteralOrClassExpressionMethodOrAccessor(node)) { node.flowNode = currentFlow; } return ts.hasDynamicName(node) ? bindAnonymousDeclaration(node, symbolFlags, "__computed" /* InternalSymbolName.Computed */) : declareSymbolAndAddToSymbolTable(node, symbolFlags, symbolExcludes); } function getInferTypeContainer(node) { var extendsType = ts.findAncestor(node, function (n) { return n.parent && ts.isConditionalTypeNode(n.parent) && n.parent.extendsType === n; }); return extendsType && extendsType.parent; } function bindTypeParameter(node) { if (ts.isJSDocTemplateTag(node.parent)) { var container_1 = ts.getEffectiveContainerForJSDocTemplateTag(node.parent); if (container_1) { if (!container_1.locals) { container_1.locals = ts.createSymbolTable(); } declareSymbol(container_1.locals, /*parent*/ undefined, node, 262144 /* SymbolFlags.TypeParameter */, 526824 /* SymbolFlags.TypeParameterExcludes */); } else { declareSymbolAndAddToSymbolTable(node, 262144 /* SymbolFlags.TypeParameter */, 526824 /* SymbolFlags.TypeParameterExcludes */); } } else if (node.parent.kind === 190 /* SyntaxKind.InferType */) { var container_2 = getInferTypeContainer(node.parent); if (container_2) { if (!container_2.locals) { container_2.locals = ts.createSymbolTable(); } declareSymbol(container_2.locals, /*parent*/ undefined, node, 262144 /* SymbolFlags.TypeParameter */, 526824 /* SymbolFlags.TypeParameterExcludes */); } else { bindAnonymousDeclaration(node, 262144 /* SymbolFlags.TypeParameter */, getDeclarationName(node)); // TODO: GH#18217 } } else { declareSymbolAndAddToSymbolTable(node, 262144 /* SymbolFlags.TypeParameter */, 526824 /* SymbolFlags.TypeParameterExcludes */); } } // reachability checks function shouldReportErrorOnModuleDeclaration(node) { var instanceState = getModuleInstanceState(node); return instanceState === 1 /* ModuleInstanceState.Instantiated */ || (instanceState === 2 /* ModuleInstanceState.ConstEnumOnly */ && ts.shouldPreserveConstEnums(options)); } function checkUnreachable(node) { if (!(currentFlow.flags & 1 /* FlowFlags.Unreachable */)) { return false; } if (currentFlow === unreachableFlow) { var reportError = // report error on all statements except empty ones (ts.isStatementButNotDeclaration(node) && node.kind !== 236 /* SyntaxKind.EmptyStatement */) || // report error on class declarations node.kind === 257 /* SyntaxKind.ClassDeclaration */ || // report error on instantiated modules or const-enums only modules if preserveConstEnums is set (node.kind === 261 /* SyntaxKind.ModuleDeclaration */ && shouldReportErrorOnModuleDeclaration(node)); if (reportError) { currentFlow = reportedUnreachableFlow; if (!options.allowUnreachableCode) { // unreachable code is reported if // - user has explicitly asked about it AND // - statement is in not ambient context (statements in ambient context is already an error // so we should not report extras) AND // - node is not variable statement OR // - node is block scoped variable statement OR // - node is not block scoped variable statement and at least one variable declaration has initializer // Rationale: we don't want to report errors on non-initialized var's since they are hoisted // On the other side we do want to report errors on non-initialized 'lets' because of TDZ var isError_1 = ts.unreachableCodeIsError(options) && !(node.flags & 16777216 /* NodeFlags.Ambient */) && (!ts.isVariableStatement(node) || !!(ts.getCombinedNodeFlags(node.declarationList) & 3 /* NodeFlags.BlockScoped */) || node.declarationList.declarations.some(function (d) { return !!d.initializer; })); eachUnreachableRange(node, function (start, end) { return errorOrSuggestionOnRange(isError_1, start, end, ts.Diagnostics.Unreachable_code_detected); }); } } } return true; } } function eachUnreachableRange(node, cb) { if (ts.isStatement(node) && isExecutableStatement(node) && ts.isBlock(node.parent)) { var statements = node.parent.statements; var slice_1 = ts.sliceAfter(statements, node); ts.getRangesWhere(slice_1, isExecutableStatement, function (start, afterEnd) { return cb(slice_1[start], slice_1[afterEnd - 1]); }); } else { cb(node, node); } } // As opposed to a pure declaration like an `interface` function isExecutableStatement(s) { // Don't remove statements that can validly be used before they appear. return !ts.isFunctionDeclaration(s) && !isPurelyTypeDeclaration(s) && !ts.isEnumDeclaration(s) && // `var x;` may declare a variable used above !(ts.isVariableStatement(s) && !(ts.getCombinedNodeFlags(s) & (1 /* NodeFlags.Let */ | 2 /* NodeFlags.Const */)) && s.declarationList.declarations.some(function (d) { return !d.initializer; })); } function isPurelyTypeDeclaration(s) { switch (s.kind) { case 258 /* SyntaxKind.InterfaceDeclaration */: case 259 /* SyntaxKind.TypeAliasDeclaration */: return true; case 261 /* SyntaxKind.ModuleDeclaration */: return getModuleInstanceState(s) !== 1 /* ModuleInstanceState.Instantiated */; case 260 /* SyntaxKind.EnumDeclaration */: return ts.hasSyntacticModifier(s, 2048 /* ModifierFlags.Const */); default: return false; } } function isExportsOrModuleExportsOrAlias(sourceFile, node) { var i = 0; var q = [node]; while (q.length && i < 100) { i++; node = q.shift(); if (ts.isExportsIdentifier(node) || ts.isModuleExportsAccessExpression(node)) { return true; } else if (ts.isIdentifier(node)) { var symbol = lookupSymbolForName(sourceFile, node.escapedText); if (!!symbol && !!symbol.valueDeclaration && ts.isVariableDeclaration(symbol.valueDeclaration) && !!symbol.valueDeclaration.initializer) { var init = symbol.valueDeclaration.initializer; q.push(init); if (ts.isAssignmentExpression(init, /*excludeCompoundAssignment*/ true)) { q.push(init.left); q.push(init.right); } } } } return false; } ts.isExportsOrModuleExportsOrAlias = isExportsOrModuleExportsOrAlias; function lookupSymbolForName(container, name) { var local = container.locals && container.locals.get(name); if (local) { return local.exportSymbol || local; } if (ts.isSourceFile(container) && container.jsGlobalAugmentations && container.jsGlobalAugmentations.has(name)) { return container.jsGlobalAugmentations.get(name); } return container.symbol && container.symbol.exports && container.symbol.exports.get(name); } })(ts || (ts = {})); /** @internal */ var ts; (function (ts) { function createGetSymbolWalker(getRestTypeOfSignature, getTypePredicateOfSignature, getReturnTypeOfSignature, getBaseTypes, resolveStructuredTypeMembers, getTypeOfSymbol, getResolvedSymbol, getConstraintOfTypeParameter, getFirstIdentifier, getTypeArguments) { return getSymbolWalker; function getSymbolWalker(accept) { if (accept === void 0) { accept = function () { return true; }; } var visitedTypes = []; // Sparse array from id to type var visitedSymbols = []; // Sparse array from id to symbol return { walkType: function (type) { try { visitType(type); return { visitedTypes: ts.getOwnValues(visitedTypes), visitedSymbols: ts.getOwnValues(visitedSymbols) }; } finally { ts.clear(visitedTypes); ts.clear(visitedSymbols); } }, walkSymbol: function (symbol) { try { visitSymbol(symbol); return { visitedTypes: ts.getOwnValues(visitedTypes), visitedSymbols: ts.getOwnValues(visitedSymbols) }; } finally { ts.clear(visitedTypes); ts.clear(visitedSymbols); } }, }; function visitType(type) { if (!type) { return; } if (visitedTypes[type.id]) { return; } visitedTypes[type.id] = type; // Reuse visitSymbol to visit the type's symbol, // but be sure to bail on recuring into the type if accept declines the symbol. var shouldBail = visitSymbol(type.symbol); if (shouldBail) return; // Visit the type's related types, if any if (type.flags & 524288 /* TypeFlags.Object */) { var objectType = type; var objectFlags = objectType.objectFlags; if (objectFlags & 4 /* ObjectFlags.Reference */) { visitTypeReference(type); } if (objectFlags & 32 /* ObjectFlags.Mapped */) { visitMappedType(type); } if (objectFlags & (1 /* ObjectFlags.Class */ | 2 /* ObjectFlags.Interface */)) { visitInterfaceType(type); } if (objectFlags & (8 /* ObjectFlags.Tuple */ | 16 /* ObjectFlags.Anonymous */)) { visitObjectType(objectType); } } if (type.flags & 262144 /* TypeFlags.TypeParameter */) { visitTypeParameter(type); } if (type.flags & 3145728 /* TypeFlags.UnionOrIntersection */) { visitUnionOrIntersectionType(type); } if (type.flags & 4194304 /* TypeFlags.Index */) { visitIndexType(type); } if (type.flags & 8388608 /* TypeFlags.IndexedAccess */) { visitIndexedAccessType(type); } } function visitTypeReference(type) { visitType(type.target); ts.forEach(getTypeArguments(type), visitType); } function visitTypeParameter(type) { visitType(getConstraintOfTypeParameter(type)); } function visitUnionOrIntersectionType(type) { ts.forEach(type.types, visitType); } function visitIndexType(type) { visitType(type.type); } function visitIndexedAccessType(type) { visitType(type.objectType); visitType(type.indexType); visitType(type.constraint); } function visitMappedType(type) { visitType(type.typeParameter); visitType(type.constraintType); visitType(type.templateType); visitType(type.modifiersType); } function visitSignature(signature) { var typePredicate = getTypePredicateOfSignature(signature); if (typePredicate) { visitType(typePredicate.type); } ts.forEach(signature.typeParameters, visitType); for (var _i = 0, _a = signature.parameters; _i < _a.length; _i++) { var parameter = _a[_i]; visitSymbol(parameter); } visitType(getRestTypeOfSignature(signature)); visitType(getReturnTypeOfSignature(signature)); } function visitInterfaceType(interfaceT) { visitObjectType(interfaceT); ts.forEach(interfaceT.typeParameters, visitType); ts.forEach(getBaseTypes(interfaceT), visitType); visitType(interfaceT.thisType); } function visitObjectType(type) { var resolved = resolveStructuredTypeMembers(type); for (var _i = 0, _a = resolved.indexInfos; _i < _a.length; _i++) { var info = _a[_i]; visitType(info.keyType); visitType(info.type); } for (var _b = 0, _c = resolved.callSignatures; _b < _c.length; _b++) { var signature = _c[_b]; visitSignature(signature); } for (var _d = 0, _e = resolved.constructSignatures; _d < _e.length; _d++) { var signature = _e[_d]; visitSignature(signature); } for (var _f = 0, _g = resolved.properties; _f < _g.length; _f++) { var p = _g[_f]; visitSymbol(p); } } function visitSymbol(symbol) { if (!symbol) { return false; } var symbolId = ts.getSymbolId(symbol); if (visitedSymbols[symbolId]) { return false; } visitedSymbols[symbolId] = symbol; if (!accept(symbol)) { return true; } var t = getTypeOfSymbol(symbol); visitType(t); // Should handle members on classes and such if (symbol.exports) { symbol.exports.forEach(visitSymbol); } ts.forEach(symbol.declarations, function (d) { // Type queries are too far resolved when we just visit the symbol's type // (their type resolved directly to the member deeply referenced) // So to get the intervening symbols, we need to check if there's a type // query node on any of the symbol's declarations and get symbols there if (d.type && d.type.kind === 181 /* SyntaxKind.TypeQuery */) { var query = d.type; var entity = getResolvedSymbol(getFirstIdentifier(query.exprName)); visitSymbol(entity); } }); return false; } } } ts.createGetSymbolWalker = createGetSymbolWalker; })(ts || (ts = {})); /* @internal */ var ts; (function (ts) { var ambientModuleSymbolRegex = /^".+"$/; var anon = "(anonymous)"; var nextSymbolId = 1; var nextNodeId = 1; var nextMergeId = 1; var nextFlowId = 1; var IterationUse; (function (IterationUse) { IterationUse[IterationUse["AllowsSyncIterablesFlag"] = 1] = "AllowsSyncIterablesFlag"; IterationUse[IterationUse["AllowsAsyncIterablesFlag"] = 2] = "AllowsAsyncIterablesFlag"; IterationUse[IterationUse["AllowsStringInputFlag"] = 4] = "AllowsStringInputFlag"; IterationUse[IterationUse["ForOfFlag"] = 8] = "ForOfFlag"; IterationUse[IterationUse["YieldStarFlag"] = 16] = "YieldStarFlag"; IterationUse[IterationUse["SpreadFlag"] = 32] = "SpreadFlag"; IterationUse[IterationUse["DestructuringFlag"] = 64] = "DestructuringFlag"; IterationUse[IterationUse["PossiblyOutOfBounds"] = 128] = "PossiblyOutOfBounds"; // Spread, Destructuring, Array element assignment IterationUse[IterationUse["Element"] = 1] = "Element"; IterationUse[IterationUse["Spread"] = 33] = "Spread"; IterationUse[IterationUse["Destructuring"] = 65] = "Destructuring"; IterationUse[IterationUse["ForOf"] = 13] = "ForOf"; IterationUse[IterationUse["ForAwaitOf"] = 15] = "ForAwaitOf"; IterationUse[IterationUse["YieldStar"] = 17] = "YieldStar"; IterationUse[IterationUse["AsyncYieldStar"] = 19] = "AsyncYieldStar"; IterationUse[IterationUse["GeneratorReturnType"] = 1] = "GeneratorReturnType"; IterationUse[IterationUse["AsyncGeneratorReturnType"] = 2] = "AsyncGeneratorReturnType"; })(IterationUse || (IterationUse = {})); var IterationTypeKind; (function (IterationTypeKind) { IterationTypeKind[IterationTypeKind["Yield"] = 0] = "Yield"; IterationTypeKind[IterationTypeKind["Return"] = 1] = "Return"; IterationTypeKind[IterationTypeKind["Next"] = 2] = "Next"; })(IterationTypeKind || (IterationTypeKind = {})); var WideningKind; (function (WideningKind) { WideningKind[WideningKind["Normal"] = 0] = "Normal"; WideningKind[WideningKind["FunctionReturn"] = 1] = "FunctionReturn"; WideningKind[WideningKind["GeneratorNext"] = 2] = "GeneratorNext"; WideningKind[WideningKind["GeneratorYield"] = 3] = "GeneratorYield"; })(WideningKind || (WideningKind = {})); var TypeFacts; (function (TypeFacts) { TypeFacts[TypeFacts["None"] = 0] = "None"; TypeFacts[TypeFacts["TypeofEQString"] = 1] = "TypeofEQString"; TypeFacts[TypeFacts["TypeofEQNumber"] = 2] = "TypeofEQNumber"; TypeFacts[TypeFacts["TypeofEQBigInt"] = 4] = "TypeofEQBigInt"; TypeFacts[TypeFacts["TypeofEQBoolean"] = 8] = "TypeofEQBoolean"; TypeFacts[TypeFacts["TypeofEQSymbol"] = 16] = "TypeofEQSymbol"; TypeFacts[TypeFacts["TypeofEQObject"] = 32] = "TypeofEQObject"; TypeFacts[TypeFacts["TypeofEQFunction"] = 64] = "TypeofEQFunction"; TypeFacts[TypeFacts["TypeofEQHostObject"] = 128] = "TypeofEQHostObject"; TypeFacts[TypeFacts["TypeofNEString"] = 256] = "TypeofNEString"; TypeFacts[TypeFacts["TypeofNENumber"] = 512] = "TypeofNENumber"; TypeFacts[TypeFacts["TypeofNEBigInt"] = 1024] = "TypeofNEBigInt"; TypeFacts[TypeFacts["TypeofNEBoolean"] = 2048] = "TypeofNEBoolean"; TypeFacts[TypeFacts["TypeofNESymbol"] = 4096] = "TypeofNESymbol"; TypeFacts[TypeFacts["TypeofNEObject"] = 8192] = "TypeofNEObject"; TypeFacts[TypeFacts["TypeofNEFunction"] = 16384] = "TypeofNEFunction"; TypeFacts[TypeFacts["TypeofNEHostObject"] = 32768] = "TypeofNEHostObject"; TypeFacts[TypeFacts["EQUndefined"] = 65536] = "EQUndefined"; TypeFacts[TypeFacts["EQNull"] = 131072] = "EQNull"; TypeFacts[TypeFacts["EQUndefinedOrNull"] = 262144] = "EQUndefinedOrNull"; TypeFacts[TypeFacts["NEUndefined"] = 524288] = "NEUndefined"; TypeFacts[TypeFacts["NENull"] = 1048576] = "NENull"; TypeFacts[TypeFacts["NEUndefinedOrNull"] = 2097152] = "NEUndefinedOrNull"; TypeFacts[TypeFacts["Truthy"] = 4194304] = "Truthy"; TypeFacts[TypeFacts["Falsy"] = 8388608] = "Falsy"; TypeFacts[TypeFacts["All"] = 16777215] = "All"; // The following members encode facts about particular kinds of types for use in the getTypeFacts function. // The presence of a particular fact means that the given test is true for some (and possibly all) values // of that kind of type. TypeFacts[TypeFacts["BaseStringStrictFacts"] = 3735041] = "BaseStringStrictFacts"; TypeFacts[TypeFacts["BaseStringFacts"] = 12582401] = "BaseStringFacts"; TypeFacts[TypeFacts["StringStrictFacts"] = 16317953] = "StringStrictFacts"; TypeFacts[TypeFacts["StringFacts"] = 16776705] = "StringFacts"; TypeFacts[TypeFacts["EmptyStringStrictFacts"] = 12123649] = "EmptyStringStrictFacts"; TypeFacts[TypeFacts["EmptyStringFacts"] = 12582401] = "EmptyStringFacts"; TypeFacts[TypeFacts["NonEmptyStringStrictFacts"] = 7929345] = "NonEmptyStringStrictFacts"; TypeFacts[TypeFacts["NonEmptyStringFacts"] = 16776705] = "NonEmptyStringFacts"; TypeFacts[TypeFacts["BaseNumberStrictFacts"] = 3734786] = "BaseNumberStrictFacts"; TypeFacts[TypeFacts["BaseNumberFacts"] = 12582146] = "BaseNumberFacts"; TypeFacts[TypeFacts["NumberStrictFacts"] = 16317698] = "NumberStrictFacts"; TypeFacts[TypeFacts["NumberFacts"] = 16776450] = "NumberFacts"; TypeFacts[TypeFacts["ZeroNumberStrictFacts"] = 12123394] = "ZeroNumberStrictFacts"; TypeFacts[TypeFacts["ZeroNumberFacts"] = 12582146] = "ZeroNumberFacts"; TypeFacts[TypeFacts["NonZeroNumberStrictFacts"] = 7929090] = "NonZeroNumberStrictFacts"; TypeFacts[TypeFacts["NonZeroNumberFacts"] = 16776450] = "NonZeroNumberFacts"; TypeFacts[TypeFacts["BaseBigIntStrictFacts"] = 3734276] = "BaseBigIntStrictFacts"; TypeFacts[TypeFacts["BaseBigIntFacts"] = 12581636] = "BaseBigIntFacts"; TypeFacts[TypeFacts["BigIntStrictFacts"] = 16317188] = "BigIntStrictFacts"; TypeFacts[TypeFacts["BigIntFacts"] = 16775940] = "BigIntFacts"; TypeFacts[TypeFacts["ZeroBigIntStrictFacts"] = 12122884] = "ZeroBigIntStrictFacts"; TypeFacts[TypeFacts["ZeroBigIntFacts"] = 12581636] = "ZeroBigIntFacts"; TypeFacts[TypeFacts["NonZeroBigIntStrictFacts"] = 7928580] = "NonZeroBigIntStrictFacts"; TypeFacts[TypeFacts["NonZeroBigIntFacts"] = 16775940] = "NonZeroBigIntFacts"; TypeFacts[TypeFacts["BaseBooleanStrictFacts"] = 3733256] = "BaseBooleanStrictFacts"; TypeFacts[TypeFacts["BaseBooleanFacts"] = 12580616] = "BaseBooleanFacts"; TypeFacts[TypeFacts["BooleanStrictFacts"] = 16316168] = "BooleanStrictFacts"; TypeFacts[TypeFacts["BooleanFacts"] = 16774920] = "BooleanFacts"; TypeFacts[TypeFacts["FalseStrictFacts"] = 12121864] = "FalseStrictFacts"; TypeFacts[TypeFacts["FalseFacts"] = 12580616] = "FalseFacts"; TypeFacts[TypeFacts["TrueStrictFacts"] = 7927560] = "TrueStrictFacts"; TypeFacts[TypeFacts["TrueFacts"] = 16774920] = "TrueFacts"; TypeFacts[TypeFacts["SymbolStrictFacts"] = 7925520] = "SymbolStrictFacts"; TypeFacts[TypeFacts["SymbolFacts"] = 16772880] = "SymbolFacts"; TypeFacts[TypeFacts["ObjectStrictFacts"] = 7888800] = "ObjectStrictFacts"; TypeFacts[TypeFacts["ObjectFacts"] = 16736160] = "ObjectFacts"; TypeFacts[TypeFacts["FunctionStrictFacts"] = 7880640] = "FunctionStrictFacts"; TypeFacts[TypeFacts["FunctionFacts"] = 16728000] = "FunctionFacts"; TypeFacts[TypeFacts["UndefinedFacts"] = 9830144] = "UndefinedFacts"; TypeFacts[TypeFacts["NullFacts"] = 9363232] = "NullFacts"; TypeFacts[TypeFacts["EmptyObjectStrictFacts"] = 16318463] = "EmptyObjectStrictFacts"; TypeFacts[TypeFacts["AllTypeofNE"] = 556800] = "AllTypeofNE"; TypeFacts[TypeFacts["EmptyObjectFacts"] = 16777215] = "EmptyObjectFacts"; // Masks TypeFacts[TypeFacts["OrFactsMask"] = 8256] = "OrFactsMask"; TypeFacts[TypeFacts["AndFactsMask"] = 16768959] = "AndFactsMask"; })(TypeFacts || (TypeFacts = {})); var typeofEQFacts = new ts.Map(ts.getEntries({ string: 1 /* TypeFacts.TypeofEQString */, number: 2 /* TypeFacts.TypeofEQNumber */, bigint: 4 /* TypeFacts.TypeofEQBigInt */, boolean: 8 /* TypeFacts.TypeofEQBoolean */, symbol: 16 /* TypeFacts.TypeofEQSymbol */, undefined: 65536 /* TypeFacts.EQUndefined */, object: 32 /* TypeFacts.TypeofEQObject */, function: 64 /* TypeFacts.TypeofEQFunction */ })); var typeofNEFacts = new ts.Map(ts.getEntries({ string: 256 /* TypeFacts.TypeofNEString */, number: 512 /* TypeFacts.TypeofNENumber */, bigint: 1024 /* TypeFacts.TypeofNEBigInt */, boolean: 2048 /* TypeFacts.TypeofNEBoolean */, symbol: 4096 /* TypeFacts.TypeofNESymbol */, undefined: 524288 /* TypeFacts.NEUndefined */, object: 8192 /* TypeFacts.TypeofNEObject */, function: 16384 /* TypeFacts.TypeofNEFunction */ })); var TypeSystemPropertyName; (function (TypeSystemPropertyName) { TypeSystemPropertyName[TypeSystemPropertyName["Type"] = 0] = "Type"; TypeSystemPropertyName[TypeSystemPropertyName["ResolvedBaseConstructorType"] = 1] = "ResolvedBaseConstructorType"; TypeSystemPropertyName[TypeSystemPropertyName["DeclaredType"] = 2] = "DeclaredType"; TypeSystemPropertyName[TypeSystemPropertyName["ResolvedReturnType"] = 3] = "ResolvedReturnType"; TypeSystemPropertyName[TypeSystemPropertyName["ImmediateBaseConstraint"] = 4] = "ImmediateBaseConstraint"; TypeSystemPropertyName[TypeSystemPropertyName["EnumTagType"] = 5] = "EnumTagType"; TypeSystemPropertyName[TypeSystemPropertyName["ResolvedTypeArguments"] = 6] = "ResolvedTypeArguments"; TypeSystemPropertyName[TypeSystemPropertyName["ResolvedBaseTypes"] = 7] = "ResolvedBaseTypes"; TypeSystemPropertyName[TypeSystemPropertyName["WriteType"] = 8] = "WriteType"; })(TypeSystemPropertyName || (TypeSystemPropertyName = {})); var CheckMode; (function (CheckMode) { CheckMode[CheckMode["Normal"] = 0] = "Normal"; CheckMode[CheckMode["Contextual"] = 1] = "Contextual"; CheckMode[CheckMode["Inferential"] = 2] = "Inferential"; CheckMode[CheckMode["SkipContextSensitive"] = 4] = "SkipContextSensitive"; CheckMode[CheckMode["SkipGenericFunctions"] = 8] = "SkipGenericFunctions"; CheckMode[CheckMode["IsForSignatureHelp"] = 16] = "IsForSignatureHelp"; CheckMode[CheckMode["IsForStringLiteralArgumentCompletions"] = 32] = "IsForStringLiteralArgumentCompletions"; CheckMode[CheckMode["RestBindingElement"] = 64] = "RestBindingElement"; // e.g. in `const { a, ...rest } = foo`, when checking the type of `foo` to determine the type of `rest`, // we need to preserve generic types instead of substituting them for constraints })(CheckMode || (CheckMode = {})); var SignatureCheckMode; (function (SignatureCheckMode) { SignatureCheckMode[SignatureCheckMode["BivariantCallback"] = 1] = "BivariantCallback"; SignatureCheckMode[SignatureCheckMode["StrictCallback"] = 2] = "StrictCallback"; SignatureCheckMode[SignatureCheckMode["IgnoreReturnTypes"] = 4] = "IgnoreReturnTypes"; SignatureCheckMode[SignatureCheckMode["StrictArity"] = 8] = "StrictArity"; SignatureCheckMode[SignatureCheckMode["Callback"] = 3] = "Callback"; })(SignatureCheckMode || (SignatureCheckMode = {})); var IntersectionState; (function (IntersectionState) { IntersectionState[IntersectionState["None"] = 0] = "None"; IntersectionState[IntersectionState["Source"] = 1] = "Source"; IntersectionState[IntersectionState["Target"] = 2] = "Target"; IntersectionState[IntersectionState["PropertyCheck"] = 4] = "PropertyCheck"; IntersectionState[IntersectionState["InPropertyCheck"] = 8] = "InPropertyCheck"; })(IntersectionState || (IntersectionState = {})); var RecursionFlags; (function (RecursionFlags) { RecursionFlags[RecursionFlags["None"] = 0] = "None"; RecursionFlags[RecursionFlags["Source"] = 1] = "Source"; RecursionFlags[RecursionFlags["Target"] = 2] = "Target"; RecursionFlags[RecursionFlags["Both"] = 3] = "Both"; })(RecursionFlags || (RecursionFlags = {})); var MappedTypeModifiers; (function (MappedTypeModifiers) { MappedTypeModifiers[MappedTypeModifiers["IncludeReadonly"] = 1] = "IncludeReadonly"; MappedTypeModifiers[MappedTypeModifiers["ExcludeReadonly"] = 2] = "ExcludeReadonly"; MappedTypeModifiers[MappedTypeModifiers["IncludeOptional"] = 4] = "IncludeOptional"; MappedTypeModifiers[MappedTypeModifiers["ExcludeOptional"] = 8] = "ExcludeOptional"; })(MappedTypeModifiers || (MappedTypeModifiers = {})); var ExpandingFlags; (function (ExpandingFlags) { ExpandingFlags[ExpandingFlags["None"] = 0] = "None"; ExpandingFlags[ExpandingFlags["Source"] = 1] = "Source"; ExpandingFlags[ExpandingFlags["Target"] = 2] = "Target"; ExpandingFlags[ExpandingFlags["Both"] = 3] = "Both"; })(ExpandingFlags || (ExpandingFlags = {})); var MembersOrExportsResolutionKind; (function (MembersOrExportsResolutionKind) { MembersOrExportsResolutionKind["resolvedExports"] = "resolvedExports"; MembersOrExportsResolutionKind["resolvedMembers"] = "resolvedMembers"; })(MembersOrExportsResolutionKind || (MembersOrExportsResolutionKind = {})); var UnusedKind; (function (UnusedKind) { UnusedKind[UnusedKind["Local"] = 0] = "Local"; UnusedKind[UnusedKind["Parameter"] = 1] = "Parameter"; })(UnusedKind || (UnusedKind = {})); var isNotOverloadAndNotAccessor = ts.and(isNotOverload, isNotAccessor); var DeclarationMeaning; (function (DeclarationMeaning) { DeclarationMeaning[DeclarationMeaning["GetAccessor"] = 1] = "GetAccessor"; DeclarationMeaning[DeclarationMeaning["SetAccessor"] = 2] = "SetAccessor"; DeclarationMeaning[DeclarationMeaning["PropertyAssignment"] = 4] = "PropertyAssignment"; DeclarationMeaning[DeclarationMeaning["Method"] = 8] = "Method"; DeclarationMeaning[DeclarationMeaning["PrivateStatic"] = 16] = "PrivateStatic"; DeclarationMeaning[DeclarationMeaning["GetOrSetAccessor"] = 3] = "GetOrSetAccessor"; DeclarationMeaning[DeclarationMeaning["PropertyAssignmentOrMethod"] = 12] = "PropertyAssignmentOrMethod"; })(DeclarationMeaning || (DeclarationMeaning = {})); var DeclarationSpaces; (function (DeclarationSpaces) { DeclarationSpaces[DeclarationSpaces["None"] = 0] = "None"; DeclarationSpaces[DeclarationSpaces["ExportValue"] = 1] = "ExportValue"; DeclarationSpaces[DeclarationSpaces["ExportType"] = 2] = "ExportType"; DeclarationSpaces[DeclarationSpaces["ExportNamespace"] = 4] = "ExportNamespace"; })(DeclarationSpaces || (DeclarationSpaces = {})); var MinArgumentCountFlags; (function (MinArgumentCountFlags) { MinArgumentCountFlags[MinArgumentCountFlags["None"] = 0] = "None"; MinArgumentCountFlags[MinArgumentCountFlags["StrongArityForUntypedJS"] = 1] = "StrongArityForUntypedJS"; MinArgumentCountFlags[MinArgumentCountFlags["VoidIsNonOptional"] = 2] = "VoidIsNonOptional"; })(MinArgumentCountFlags || (MinArgumentCountFlags = {})); var IntrinsicTypeKind; (function (IntrinsicTypeKind) { IntrinsicTypeKind[IntrinsicTypeKind["Uppercase"] = 0] = "Uppercase"; IntrinsicTypeKind[IntrinsicTypeKind["Lowercase"] = 1] = "Lowercase"; IntrinsicTypeKind[IntrinsicTypeKind["Capitalize"] = 2] = "Capitalize"; IntrinsicTypeKind[IntrinsicTypeKind["Uncapitalize"] = 3] = "Uncapitalize"; })(IntrinsicTypeKind || (IntrinsicTypeKind = {})); var intrinsicTypeKinds = new ts.Map(ts.getEntries({ Uppercase: 0 /* IntrinsicTypeKind.Uppercase */, Lowercase: 1 /* IntrinsicTypeKind.Lowercase */, Capitalize: 2 /* IntrinsicTypeKind.Capitalize */, Uncapitalize: 3 /* IntrinsicTypeKind.Uncapitalize */ })); function SymbolLinks() { } function NodeLinks() { this.flags = 0; } function getNodeId(node) { if (!node.id) { node.id = nextNodeId; nextNodeId++; } return node.id; } ts.getNodeId = getNodeId; function getSymbolId(symbol) { if (!symbol.id) { symbol.id = nextSymbolId; nextSymbolId++; } return symbol.id; } ts.getSymbolId = getSymbolId; function isInstantiatedModule(node, preserveConstEnums) { var moduleState = ts.getModuleInstanceState(node); return moduleState === 1 /* ModuleInstanceState.Instantiated */ || (preserveConstEnums && moduleState === 2 /* ModuleInstanceState.ConstEnumOnly */); } ts.isInstantiatedModule = isInstantiatedModule; function createTypeChecker(host) { var getPackagesMap = ts.memoize(function () { // A package name maps to true when we detect it has .d.ts files. // This is useful as an approximation of whether a package bundles its own types. // Note: we only look at files already found by module resolution, // so there may be files we did not consider. var map = new ts.Map(); host.getSourceFiles().forEach(function (sf) { if (!sf.resolvedModules) return; sf.resolvedModules.forEach(function (r) { if (r && r.packageId) map.set(r.packageId.name, r.extension === ".d.ts" /* Extension.Dts */ || !!map.get(r.packageId.name)); }); }); return map; }); var deferredDiagnosticsCallbacks = []; var addLazyDiagnostic = function (arg) { deferredDiagnosticsCallbacks.push(arg); }; // Cancellation that controls whether or not we can cancel in the middle of type checking. // In general cancelling is *not* safe for the type checker. We might be in the middle of // computing something, and we will leave our internals in an inconsistent state. Callers // who set the cancellation token should catch if a cancellation exception occurs, and // should throw away and create a new TypeChecker. // // Currently we only support setting the cancellation token when getting diagnostics. This // is because diagnostics can be quite expensive, and we want to allow hosts to bail out if // they no longer need the information (for example, if the user started editing again). var cancellationToken; var requestedExternalEmitHelpers; var externalHelpersModule; var Symbol = ts.objectAllocator.getSymbolConstructor(); var Type = ts.objectAllocator.getTypeConstructor(); var Signature = ts.objectAllocator.getSignatureConstructor(); var typeCount = 0; var symbolCount = 0; var enumCount = 0; var totalInstantiationCount = 0; var instantiationCount = 0; var instantiationDepth = 0; var inlineLevel = 0; var currentNode; var varianceTypeParameter; var emptySymbols = ts.createSymbolTable(); var arrayVariances = [1 /* VarianceFlags.Covariant */]; var compilerOptions = host.getCompilerOptions(); var languageVersion = ts.getEmitScriptTarget(compilerOptions); var moduleKind = ts.getEmitModuleKind(compilerOptions); var useDefineForClassFields = ts.getUseDefineForClassFields(compilerOptions); var allowSyntheticDefaultImports = ts.getAllowSyntheticDefaultImports(compilerOptions); var strictNullChecks = ts.getStrictOptionValue(compilerOptions, "strictNullChecks"); var strictFunctionTypes = ts.getStrictOptionValue(compilerOptions, "strictFunctionTypes"); var strictBindCallApply = ts.getStrictOptionValue(compilerOptions, "strictBindCallApply"); var strictPropertyInitialization = ts.getStrictOptionValue(compilerOptions, "strictPropertyInitialization"); var noImplicitAny = ts.getStrictOptionValue(compilerOptions, "noImplicitAny"); var noImplicitThis = ts.getStrictOptionValue(compilerOptions, "noImplicitThis"); var useUnknownInCatchVariables = ts.getStrictOptionValue(compilerOptions, "useUnknownInCatchVariables"); var keyofStringsOnly = !!compilerOptions.keyofStringsOnly; var freshObjectLiteralFlag = compilerOptions.suppressExcessPropertyErrors ? 0 : 8192 /* ObjectFlags.FreshLiteral */; var exactOptionalPropertyTypes = compilerOptions.exactOptionalPropertyTypes; var checkBinaryExpression = createCheckBinaryExpression(); var emitResolver = createResolver(); var nodeBuilder = createNodeBuilder(); var globals = ts.createSymbolTable(); var undefinedSymbol = createSymbol(4 /* SymbolFlags.Property */, "undefined"); undefinedSymbol.declarations = []; var globalThisSymbol = createSymbol(1536 /* SymbolFlags.Module */, "globalThis", 8 /* CheckFlags.Readonly */); globalThisSymbol.exports = globals; globalThisSymbol.declarations = []; globals.set(globalThisSymbol.escapedName, globalThisSymbol); var argumentsSymbol = createSymbol(4 /* SymbolFlags.Property */, "arguments"); var requireSymbol = createSymbol(4 /* SymbolFlags.Property */, "require"); /** This will be set during calls to `getResolvedSignature` where services determines an apparent number of arguments greater than what is actually provided. */ var apparentArgumentCount; // for public members that accept a Node or one of its subtypes, we must guard against // synthetic nodes created during transformations by calling `getParseTreeNode`. // for most of these, we perform the guard only on `checker` to avoid any possible // extra cost of calling `getParseTreeNode` when calling these functions from inside the // checker. var checker = { getNodeCount: function () { return ts.sum(host.getSourceFiles(), "nodeCount"); }, getIdentifierCount: function () { return ts.sum(host.getSourceFiles(), "identifierCount"); }, getSymbolCount: function () { return ts.sum(host.getSourceFiles(), "symbolCount") + symbolCount; }, getTypeCount: function () { return typeCount; }, getInstantiationCount: function () { return totalInstantiationCount; }, getRelationCacheSizes: function () { return ({ assignable: assignableRelation.size, identity: identityRelation.size, subtype: subtypeRelation.size, strictSubtype: strictSubtypeRelation.size, }); }, isUndefinedSymbol: function (symbol) { return symbol === undefinedSymbol; }, isArgumentsSymbol: function (symbol) { return symbol === argumentsSymbol; }, isUnknownSymbol: function (symbol) { return symbol === unknownSymbol; }, getMergedSymbol: getMergedSymbol, getDiagnostics: getDiagnostics, getGlobalDiagnostics: getGlobalDiagnostics, getRecursionIdentity: getRecursionIdentity, getUnmatchedProperties: getUnmatchedProperties, getTypeOfSymbolAtLocation: function (symbol, locationIn) { var location = ts.getParseTreeNode(locationIn); return location ? getTypeOfSymbolAtLocation(symbol, location) : errorType; }, getTypeOfSymbol: getTypeOfSymbol, getSymbolsOfParameterPropertyDeclaration: function (parameterIn, parameterName) { var parameter = ts.getParseTreeNode(parameterIn, ts.isParameter); if (parameter === undefined) return ts.Debug.fail("Cannot get symbols of a synthetic parameter that cannot be resolved to a parse-tree node."); return getSymbolsOfParameterPropertyDeclaration(parameter, ts.escapeLeadingUnderscores(parameterName)); }, getDeclaredTypeOfSymbol: getDeclaredTypeOfSymbol, getPropertiesOfType: getPropertiesOfType, getPropertyOfType: function (type, name) { return getPropertyOfType(type, ts.escapeLeadingUnderscores(name)); }, getPrivateIdentifierPropertyOfType: function (leftType, name, location) { var node = ts.getParseTreeNode(location); if (!node) { return undefined; } var propName = ts.escapeLeadingUnderscores(name); var lexicallyScopedIdentifier = lookupSymbolForPrivateIdentifierDeclaration(propName, node); return lexicallyScopedIdentifier ? getPrivateIdentifierPropertyOfType(leftType, lexicallyScopedIdentifier) : undefined; }, getTypeOfPropertyOfType: function (type, name) { return getTypeOfPropertyOfType(type, ts.escapeLeadingUnderscores(name)); }, getIndexInfoOfType: function (type, kind) { return getIndexInfoOfType(type, kind === 0 /* IndexKind.String */ ? stringType : numberType); }, getIndexInfosOfType: getIndexInfosOfType, getSignaturesOfType: getSignaturesOfType, getIndexTypeOfType: function (type, kind) { return getIndexTypeOfType(type, kind === 0 /* IndexKind.String */ ? stringType : numberType); }, getIndexType: function (type) { return getIndexType(type); }, getBaseTypes: getBaseTypes, getBaseTypeOfLiteralType: getBaseTypeOfLiteralType, getWidenedType: getWidenedType, getTypeFromTypeNode: function (nodeIn) { var node = ts.getParseTreeNode(nodeIn, ts.isTypeNode); return node ? getTypeFromTypeNode(node) : errorType; }, getParameterType: getTypeAtPosition, getParameterIdentifierNameAtPosition: getParameterIdentifierNameAtPosition, getPromisedTypeOfPromise: getPromisedTypeOfPromise, getAwaitedType: function (type) { return getAwaitedType(type); }, getReturnTypeOfSignature: getReturnTypeOfSignature, isNullableType: isNullableType, getNullableType: getNullableType, getNonNullableType: getNonNullableType, getNonOptionalType: removeOptionalTypeMarker, getTypeArguments: getTypeArguments, typeToTypeNode: nodeBuilder.typeToTypeNode, indexInfoToIndexSignatureDeclaration: nodeBuilder.indexInfoToIndexSignatureDeclaration, signatureToSignatureDeclaration: nodeBuilder.signatureToSignatureDeclaration, symbolToEntityName: nodeBuilder.symbolToEntityName, symbolToExpression: nodeBuilder.symbolToExpression, symbolToTypeParameterDeclarations: nodeBuilder.symbolToTypeParameterDeclarations, symbolToParameterDeclaration: nodeBuilder.symbolToParameterDeclaration, typeParameterToDeclaration: nodeBuilder.typeParameterToDeclaration, getSymbolsInScope: function (locationIn, meaning) { var location = ts.getParseTreeNode(locationIn); return location ? getSymbolsInScope(location, meaning) : []; }, getSymbolAtLocation: function (nodeIn) { var node = ts.getParseTreeNode(nodeIn); // set ignoreErrors: true because any lookups invoked by the API shouldn't cause any new errors return node ? getSymbolAtLocation(node, /*ignoreErrors*/ true) : undefined; }, getIndexInfosAtLocation: function (nodeIn) { var node = ts.getParseTreeNode(nodeIn); return node ? getIndexInfosAtLocation(node) : undefined; }, getShorthandAssignmentValueSymbol: function (nodeIn) { var node = ts.getParseTreeNode(nodeIn); return node ? getShorthandAssignmentValueSymbol(node) : undefined; }, getExportSpecifierLocalTargetSymbol: function (nodeIn) { var node = ts.getParseTreeNode(nodeIn, ts.isExportSpecifier); return node ? getExportSpecifierLocalTargetSymbol(node) : undefined; }, getExportSymbolOfSymbol: function (symbol) { return getMergedSymbol(symbol.exportSymbol || symbol); }, getTypeAtLocation: function (nodeIn) { var node = ts.getParseTreeNode(nodeIn); return node ? getTypeOfNode(node) : errorType; }, getTypeOfAssignmentPattern: function (nodeIn) { var node = ts.getParseTreeNode(nodeIn, ts.isAssignmentPattern); return node && getTypeOfAssignmentPattern(node) || errorType; }, getPropertySymbolOfDestructuringAssignment: function (locationIn) { var location = ts.getParseTreeNode(locationIn, ts.isIdentifier); return location ? getPropertySymbolOfDestructuringAssignment(location) : undefined; }, signatureToString: function (signature, enclosingDeclaration, flags, kind) { return signatureToString(signature, ts.getParseTreeNode(enclosingDeclaration), flags, kind); }, typeToString: function (type, enclosingDeclaration, flags) { return typeToString(type, ts.getParseTreeNode(enclosingDeclaration), flags); }, symbolToString: function (symbol, enclosingDeclaration, meaning, flags) { return symbolToString(symbol, ts.getParseTreeNode(enclosingDeclaration), meaning, flags); }, typePredicateToString: function (predicate, enclosingDeclaration, flags) { return typePredicateToString(predicate, ts.getParseTreeNode(enclosingDeclaration), flags); }, writeSignature: function (signature, enclosingDeclaration, flags, kind, writer) { return signatureToString(signature, ts.getParseTreeNode(enclosingDeclaration), flags, kind, writer); }, writeType: function (type, enclosingDeclaration, flags, writer) { return typeToString(type, ts.getParseTreeNode(enclosingDeclaration), flags, writer); }, writeSymbol: function (symbol, enclosingDeclaration, meaning, flags, writer) { return symbolToString(symbol, ts.getParseTreeNode(enclosingDeclaration), meaning, flags, writer); }, writeTypePredicate: function (predicate, enclosingDeclaration, flags, writer) { return typePredicateToString(predicate, ts.getParseTreeNode(enclosingDeclaration), flags, writer); }, getAugmentedPropertiesOfType: getAugmentedPropertiesOfType, getRootSymbols: getRootSymbols, getSymbolOfExpando: getSymbolOfExpando, getContextualType: function (nodeIn, contextFlags) { var node = ts.getParseTreeNode(nodeIn, ts.isExpression); if (!node) { return undefined; } if (contextFlags & 4 /* ContextFlags.Completions */) { return runWithInferenceBlockedFromSourceNode(node, function () { return getContextualType(node, contextFlags); }); } return getContextualType(node, contextFlags); }, getContextualTypeForObjectLiteralElement: function (nodeIn) { var node = ts.getParseTreeNode(nodeIn, ts.isObjectLiteralElementLike); return node ? getContextualTypeForObjectLiteralElement(node) : undefined; }, getContextualTypeForArgumentAtIndex: function (nodeIn, argIndex) { var node = ts.getParseTreeNode(nodeIn, ts.isCallLikeExpression); return node && getContextualTypeForArgumentAtIndex(node, argIndex); }, getContextualTypeForJsxAttribute: function (nodeIn) { var node = ts.getParseTreeNode(nodeIn, ts.isJsxAttributeLike); return node && getContextualTypeForJsxAttribute(node); }, isContextSensitive: isContextSensitive, getTypeOfPropertyOfContextualType: getTypeOfPropertyOfContextualType, getFullyQualifiedName: getFullyQualifiedName, getResolvedSignature: function (node, candidatesOutArray, argumentCount) { return getResolvedSignatureWorker(node, candidatesOutArray, argumentCount, 0 /* CheckMode.Normal */); }, getResolvedSignatureForStringLiteralCompletions: function (call, editingArgument, candidatesOutArray) { return getResolvedSignatureWorker(call, candidatesOutArray, /*argumentCount*/ undefined, 32 /* CheckMode.IsForStringLiteralArgumentCompletions */, editingArgument); }, getResolvedSignatureForSignatureHelp: function (node, candidatesOutArray, argumentCount) { return getResolvedSignatureWorker(node, candidatesOutArray, argumentCount, 16 /* CheckMode.IsForSignatureHelp */); }, getExpandedParameters: getExpandedParameters, hasEffectiveRestParameter: hasEffectiveRestParameter, containsArgumentsReference: containsArgumentsReference, getConstantValue: function (nodeIn) { var node = ts.getParseTreeNode(nodeIn, canHaveConstantValue); return node ? getConstantValue(node) : undefined; }, isValidPropertyAccess: function (nodeIn, propertyName) { var node = ts.getParseTreeNode(nodeIn, ts.isPropertyAccessOrQualifiedNameOrImportTypeNode); return !!node && isValidPropertyAccess(node, ts.escapeLeadingUnderscores(propertyName)); }, isValidPropertyAccessForCompletions: function (nodeIn, type, property) { var node = ts.getParseTreeNode(nodeIn, ts.isPropertyAccessExpression); return !!node && isValidPropertyAccessForCompletions(node, type, property); }, getSignatureFromDeclaration: function (declarationIn) { var declaration = ts.getParseTreeNode(declarationIn, ts.isFunctionLike); return declaration ? getSignatureFromDeclaration(declaration) : undefined; }, isImplementationOfOverload: function (nodeIn) { var node = ts.getParseTreeNode(nodeIn, ts.isFunctionLike); return node ? isImplementationOfOverload(node) : undefined; }, getImmediateAliasedSymbol: getImmediateAliasedSymbol, getAliasedSymbol: resolveAlias, getEmitResolver: getEmitResolver, getExportsOfModule: getExportsOfModuleAsArray, getExportsAndPropertiesOfModule: getExportsAndPropertiesOfModule, forEachExportAndPropertyOfModule: forEachExportAndPropertyOfModule, getSymbolWalker: ts.createGetSymbolWalker(getRestTypeOfSignature, getTypePredicateOfSignature, getReturnTypeOfSignature, getBaseTypes, resolveStructuredTypeMembers, getTypeOfSymbol, getResolvedSymbol, getConstraintOfTypeParameter, ts.getFirstIdentifier, getTypeArguments), getAmbientModules: getAmbientModules, getJsxIntrinsicTagNamesAt: getJsxIntrinsicTagNamesAt, isOptionalParameter: function (nodeIn) { var node = ts.getParseTreeNode(nodeIn, ts.isParameter); return node ? isOptionalParameter(node) : false; }, tryGetMemberInModuleExports: function (name, symbol) { return tryGetMemberInModuleExports(ts.escapeLeadingUnderscores(name), symbol); }, tryGetMemberInModuleExportsAndProperties: function (name, symbol) { return tryGetMemberInModuleExportsAndProperties(ts.escapeLeadingUnderscores(name), symbol); }, tryFindAmbientModule: function (moduleName) { return tryFindAmbientModule(moduleName, /*withAugmentations*/ true); }, tryFindAmbientModuleWithoutAugmentations: function (moduleName) { // we deliberately exclude augmentations // since we are only interested in declarations of the module itself return tryFindAmbientModule(moduleName, /*withAugmentations*/ false); }, getApparentType: getApparentType, getUnionType: getUnionType, isTypeAssignableTo: isTypeAssignableTo, createAnonymousType: createAnonymousType, createSignature: createSignature, createSymbol: createSymbol, createIndexInfo: createIndexInfo, getAnyType: function () { return anyType; }, getStringType: function () { return stringType; }, getNumberType: function () { return numberType; }, createPromiseType: createPromiseType, createArrayType: createArrayType, getElementTypeOfArrayType: getElementTypeOfArrayType, getBooleanType: function () { return booleanType; }, getFalseType: function (fresh) { return fresh ? falseType : regularFalseType; }, getTrueType: function (fresh) { return fresh ? trueType : regularTrueType; }, getVoidType: function () { return voidType; }, getUndefinedType: function () { return undefinedType; }, getNullType: function () { return nullType; }, getESSymbolType: function () { return esSymbolType; }, getNeverType: function () { return neverType; }, getOptionalType: function () { return optionalType; }, getPromiseType: function () { return getGlobalPromiseType(/*reportErrors*/ false); }, getPromiseLikeType: function () { return getGlobalPromiseLikeType(/*reportErrors*/ false); }, isSymbolAccessible: isSymbolAccessible, isArrayType: isArrayType, isTupleType: isTupleType, isArrayLikeType: isArrayLikeType, isTypeInvalidDueToUnionDiscriminant: isTypeInvalidDueToUnionDiscriminant, getExactOptionalProperties: getExactOptionalProperties, getAllPossiblePropertiesOfTypes: getAllPossiblePropertiesOfTypes, getSuggestedSymbolForNonexistentProperty: getSuggestedSymbolForNonexistentProperty, getSuggestionForNonexistentProperty: getSuggestionForNonexistentProperty, getSuggestedSymbolForNonexistentJSXAttribute: getSuggestedSymbolForNonexistentJSXAttribute, getSuggestedSymbolForNonexistentSymbol: function (location, name, meaning) { return getSuggestedSymbolForNonexistentSymbol(location, ts.escapeLeadingUnderscores(name), meaning); }, getSuggestionForNonexistentSymbol: function (location, name, meaning) { return getSuggestionForNonexistentSymbol(location, ts.escapeLeadingUnderscores(name), meaning); }, getSuggestedSymbolForNonexistentModule: getSuggestedSymbolForNonexistentModule, getSuggestionForNonexistentExport: getSuggestionForNonexistentExport, getSuggestedSymbolForNonexistentClassMember: getSuggestedSymbolForNonexistentClassMember, getBaseConstraintOfType: getBaseConstraintOfType, getDefaultFromTypeParameter: function (type) { return type && type.flags & 262144 /* TypeFlags.TypeParameter */ ? getDefaultFromTypeParameter(type) : undefined; }, resolveName: function (name, location, meaning, excludeGlobals) { return resolveName(location, ts.escapeLeadingUnderscores(name), meaning, /*nameNotFoundMessage*/ undefined, /*nameArg*/ undefined, /*isUse*/ false, excludeGlobals); }, getJsxNamespace: function (n) { return ts.unescapeLeadingUnderscores(getJsxNamespace(n)); }, getJsxFragmentFactory: function (n) { var jsxFragmentFactory = getJsxFragmentFactoryEntity(n); return jsxFragmentFactory && ts.unescapeLeadingUnderscores(ts.getFirstIdentifier(jsxFragmentFactory).escapedText); }, getAccessibleSymbolChain: getAccessibleSymbolChain, getTypePredicateOfSignature: getTypePredicateOfSignature, resolveExternalModuleName: function (moduleSpecifierIn) { var moduleSpecifier = ts.getParseTreeNode(moduleSpecifierIn, ts.isExpression); return moduleSpecifier && resolveExternalModuleName(moduleSpecifier, moduleSpecifier, /*ignoreErrors*/ true); }, resolveExternalModuleSymbol: resolveExternalModuleSymbol, tryGetThisTypeAt: function (nodeIn, includeGlobalThis) { var node = ts.getParseTreeNode(nodeIn); return node && tryGetThisTypeAt(node, includeGlobalThis); }, getTypeArgumentConstraint: function (nodeIn) { var node = ts.getParseTreeNode(nodeIn, ts.isTypeNode); return node && getTypeArgumentConstraint(node); }, getSuggestionDiagnostics: function (fileIn, ct) { var file = ts.getParseTreeNode(fileIn, ts.isSourceFile) || ts.Debug.fail("Could not determine parsed source file."); if (ts.skipTypeChecking(file, compilerOptions, host)) { return ts.emptyArray; } var diagnostics; try { // Record the cancellation token so it can be checked later on during checkSourceElement. // Do this in a finally block so we can ensure that it gets reset back to nothing after // this call is done. cancellationToken = ct; // Ensure file is type checked, with _eager_ diagnostic production, so identifiers are registered as potentially unused checkSourceFileWithEagerDiagnostics(file); ts.Debug.assert(!!(getNodeLinks(file).flags & 1 /* NodeCheckFlags.TypeChecked */)); diagnostics = ts.addRange(diagnostics, suggestionDiagnostics.getDiagnostics(file.fileName)); checkUnusedIdentifiers(getPotentiallyUnusedIdentifiers(file), function (containingNode, kind, diag) { if (!ts.containsParseError(containingNode) && !unusedIsError(kind, !!(containingNode.flags & 16777216 /* NodeFlags.Ambient */))) { (diagnostics || (diagnostics = [])).push(__assign(__assign({}, diag), { category: ts.DiagnosticCategory.Suggestion })); } }); return diagnostics || ts.emptyArray; } finally { cancellationToken = undefined; } }, runWithCancellationToken: function (token, callback) { try { cancellationToken = token; return callback(checker); } finally { cancellationToken = undefined; } }, getLocalTypeParametersOfClassOrInterfaceOrTypeAlias: getLocalTypeParametersOfClassOrInterfaceOrTypeAlias, isDeclarationVisible: isDeclarationVisible, isPropertyAccessible: isPropertyAccessible, getTypeOnlyAliasDeclaration: getTypeOnlyAliasDeclaration, getMemberOverrideModifierStatus: getMemberOverrideModifierStatus, }; function runWithInferenceBlockedFromSourceNode(node, fn) { var containingCall = ts.findAncestor(node, ts.isCallLikeExpression); var containingCallResolvedSignature = containingCall && getNodeLinks(containingCall).resolvedSignature; if (containingCall) { var toMarkSkip = node; do { getNodeLinks(toMarkSkip).skipDirectInference = true; toMarkSkip = toMarkSkip.parent; } while (toMarkSkip && toMarkSkip !== containingCall); getNodeLinks(containingCall).resolvedSignature = undefined; } var result = fn(); if (containingCall) { var toMarkSkip = node; do { getNodeLinks(toMarkSkip).skipDirectInference = undefined; toMarkSkip = toMarkSkip.parent; } while (toMarkSkip && toMarkSkip !== containingCall); getNodeLinks(containingCall).resolvedSignature = containingCallResolvedSignature; } return result; } function getResolvedSignatureWorker(nodeIn, candidatesOutArray, argumentCount, checkMode, editingArgument) { var node = ts.getParseTreeNode(nodeIn, ts.isCallLikeExpression); apparentArgumentCount = argumentCount; var res = !node ? undefined : editingArgument ? runWithInferenceBlockedFromSourceNode(editingArgument, function () { return getResolvedSignature(node, candidatesOutArray, checkMode); }) : getResolvedSignature(node, candidatesOutArray, checkMode); apparentArgumentCount = undefined; return res; } var tupleTypes = new ts.Map(); var unionTypes = new ts.Map(); var intersectionTypes = new ts.Map(); var stringLiteralTypes = new ts.Map(); var numberLiteralTypes = new ts.Map(); var bigIntLiteralTypes = new ts.Map(); var enumLiteralTypes = new ts.Map(); var indexedAccessTypes = new ts.Map(); var templateLiteralTypes = new ts.Map(); var stringMappingTypes = new ts.Map(); var substitutionTypes = new ts.Map(); var subtypeReductionCache = new ts.Map(); var evolvingArrayTypes = []; var undefinedProperties = new ts.Map(); var markerTypes = new ts.Set(); var unknownSymbol = createSymbol(4 /* SymbolFlags.Property */, "unknown"); var resolvingSymbol = createSymbol(0, "__resolving__" /* InternalSymbolName.Resolving */); var unresolvedSymbols = new ts.Map(); var errorTypes = new ts.Map(); var anyType = createIntrinsicType(1 /* TypeFlags.Any */, "any"); var autoType = createIntrinsicType(1 /* TypeFlags.Any */, "any"); var wildcardType = createIntrinsicType(1 /* TypeFlags.Any */, "any"); var errorType = createIntrinsicType(1 /* TypeFlags.Any */, "error"); var unresolvedType = createIntrinsicType(1 /* TypeFlags.Any */, "unresolved"); var nonInferrableAnyType = createIntrinsicType(1 /* TypeFlags.Any */, "any", 65536 /* ObjectFlags.ContainsWideningType */); var intrinsicMarkerType = createIntrinsicType(1 /* TypeFlags.Any */, "intrinsic"); var unknownType = createIntrinsicType(2 /* TypeFlags.Unknown */, "unknown"); var nonNullUnknownType = createIntrinsicType(2 /* TypeFlags.Unknown */, "unknown"); var undefinedType = createIntrinsicType(32768 /* TypeFlags.Undefined */, "undefined"); var undefinedWideningType = strictNullChecks ? undefinedType : createIntrinsicType(32768 /* TypeFlags.Undefined */, "undefined", 65536 /* ObjectFlags.ContainsWideningType */); var optionalType = createIntrinsicType(32768 /* TypeFlags.Undefined */, "undefined"); var missingType = exactOptionalPropertyTypes ? createIntrinsicType(32768 /* TypeFlags.Undefined */, "undefined") : undefinedType; var nullType = createIntrinsicType(65536 /* TypeFlags.Null */, "null"); var nullWideningType = strictNullChecks ? nullType : createIntrinsicType(65536 /* TypeFlags.Null */, "null", 65536 /* ObjectFlags.ContainsWideningType */); var stringType = createIntrinsicType(4 /* TypeFlags.String */, "string"); var numberType = createIntrinsicType(8 /* TypeFlags.Number */, "number"); var bigintType = createIntrinsicType(64 /* TypeFlags.BigInt */, "bigint"); var falseType = createIntrinsicType(512 /* TypeFlags.BooleanLiteral */, "false"); var regularFalseType = createIntrinsicType(512 /* TypeFlags.BooleanLiteral */, "false"); var trueType = createIntrinsicType(512 /* TypeFlags.BooleanLiteral */, "true"); var regularTrueType = createIntrinsicType(512 /* TypeFlags.BooleanLiteral */, "true"); trueType.regularType = regularTrueType; trueType.freshType = trueType; regularTrueType.regularType = regularTrueType; regularTrueType.freshType = trueType; falseType.regularType = regularFalseType; falseType.freshType = falseType; regularFalseType.regularType = regularFalseType; regularFalseType.freshType = falseType; var booleanType = getUnionType([regularFalseType, regularTrueType]); var esSymbolType = createIntrinsicType(4096 /* TypeFlags.ESSymbol */, "symbol"); var voidType = createIntrinsicType(16384 /* TypeFlags.Void */, "void"); var neverType = createIntrinsicType(131072 /* TypeFlags.Never */, "never"); var silentNeverType = createIntrinsicType(131072 /* TypeFlags.Never */, "never"); var nonInferrableType = createIntrinsicType(131072 /* TypeFlags.Never */, "never", 262144 /* ObjectFlags.NonInferrableType */); var implicitNeverType = createIntrinsicType(131072 /* TypeFlags.Never */, "never"); var unreachableNeverType = createIntrinsicType(131072 /* TypeFlags.Never */, "never"); var nonPrimitiveType = createIntrinsicType(67108864 /* TypeFlags.NonPrimitive */, "object"); var stringOrNumberType = getUnionType([stringType, numberType]); var stringNumberSymbolType = getUnionType([stringType, numberType, esSymbolType]); var keyofConstraintType = keyofStringsOnly ? stringType : stringNumberSymbolType; var numberOrBigIntType = getUnionType([numberType, bigintType]); var templateConstraintType = getUnionType([stringType, numberType, booleanType, bigintType, nullType, undefinedType]); var numericStringType = getTemplateLiteralType(["", ""], [numberType]); // The `${number}` type var restrictiveMapper = makeFunctionTypeMapper(function (t) { return t.flags & 262144 /* TypeFlags.TypeParameter */ ? getRestrictiveTypeParameter(t) : t; }); var permissiveMapper = makeFunctionTypeMapper(function (t) { return t.flags & 262144 /* TypeFlags.TypeParameter */ ? wildcardType : t; }); var uniqueLiteralType = createIntrinsicType(131072 /* TypeFlags.Never */, "never"); // `uniqueLiteralType` is a special `never` flagged by union reduction to behave as a literal var uniqueLiteralMapper = makeFunctionTypeMapper(function (t) { return t.flags & 262144 /* TypeFlags.TypeParameter */ ? uniqueLiteralType : t; }); // replace all type parameters with the unique literal type (disregarding constraints) var emptyObjectType = createAnonymousType(undefined, emptySymbols, ts.emptyArray, ts.emptyArray, ts.emptyArray); var emptyJsxObjectType = createAnonymousType(undefined, emptySymbols, ts.emptyArray, ts.emptyArray, ts.emptyArray); emptyJsxObjectType.objectFlags |= 2048 /* ObjectFlags.JsxAttributes */; var emptyTypeLiteralSymbol = createSymbol(2048 /* SymbolFlags.TypeLiteral */, "__type" /* InternalSymbolName.Type */); emptyTypeLiteralSymbol.members = ts.createSymbolTable(); var emptyTypeLiteralType = createAnonymousType(emptyTypeLiteralSymbol, emptySymbols, ts.emptyArray, ts.emptyArray, ts.emptyArray); var emptyGenericType = createAnonymousType(undefined, emptySymbols, ts.emptyArray, ts.emptyArray, ts.emptyArray); emptyGenericType.instantiations = new ts.Map(); var anyFunctionType = createAnonymousType(undefined, emptySymbols, ts.emptyArray, ts.emptyArray, ts.emptyArray); // The anyFunctionType contains the anyFunctionType by definition. The flag is further propagated // in getPropagatingFlagsOfTypes, and it is checked in inferFromTypes. anyFunctionType.objectFlags |= 262144 /* ObjectFlags.NonInferrableType */; var noConstraintType = createAnonymousType(undefined, emptySymbols, ts.emptyArray, ts.emptyArray, ts.emptyArray); var circularConstraintType = createAnonymousType(undefined, emptySymbols, ts.emptyArray, ts.emptyArray, ts.emptyArray); var resolvingDefaultType = createAnonymousType(undefined, emptySymbols, ts.emptyArray, ts.emptyArray, ts.emptyArray); var markerSuperType = createTypeParameter(); var markerSubType = createTypeParameter(); markerSubType.constraint = markerSuperType; var markerOtherType = createTypeParameter(); var noTypePredicate = createTypePredicate(1 /* TypePredicateKind.Identifier */, "<>", 0, anyType); var anySignature = createSignature(undefined, undefined, undefined, ts.emptyArray, anyType, /*resolvedTypePredicate*/ undefined, 0, 0 /* SignatureFlags.None */); var unknownSignature = createSignature(undefined, undefined, undefined, ts.emptyArray, errorType, /*resolvedTypePredicate*/ undefined, 0, 0 /* SignatureFlags.None */); var resolvingSignature = createSignature(undefined, undefined, undefined, ts.emptyArray, anyType, /*resolvedTypePredicate*/ undefined, 0, 0 /* SignatureFlags.None */); var silentNeverSignature = createSignature(undefined, undefined, undefined, ts.emptyArray, silentNeverType, /*resolvedTypePredicate*/ undefined, 0, 0 /* SignatureFlags.None */); var enumNumberIndexInfo = createIndexInfo(numberType, stringType, /*isReadonly*/ true); var iterationTypesCache = new ts.Map(); // cache for common IterationTypes instances var noIterationTypes = { get yieldType() { return ts.Debug.fail("Not supported"); }, get returnType() { return ts.Debug.fail("Not supported"); }, get nextType() { return ts.Debug.fail("Not supported"); }, }; var anyIterationTypes = createIterationTypes(anyType, anyType, anyType); var anyIterationTypesExceptNext = createIterationTypes(anyType, anyType, unknownType); var defaultIterationTypes = createIterationTypes(neverType, anyType, undefinedType); // default iteration types for `Iterator`. var asyncIterationTypesResolver = { iterableCacheKey: "iterationTypesOfAsyncIterable", iteratorCacheKey: "iterationTypesOfAsyncIterator", iteratorSymbolName: "asyncIterator", getGlobalIteratorType: getGlobalAsyncIteratorType, getGlobalIterableType: getGlobalAsyncIterableType, getGlobalIterableIteratorType: getGlobalAsyncIterableIteratorType, getGlobalGeneratorType: getGlobalAsyncGeneratorType, resolveIterationType: getAwaitedType, mustHaveANextMethodDiagnostic: ts.Diagnostics.An_async_iterator_must_have_a_next_method, mustBeAMethodDiagnostic: ts.Diagnostics.The_0_property_of_an_async_iterator_must_be_a_method, mustHaveAValueDiagnostic: ts.Diagnostics.The_type_returned_by_the_0_method_of_an_async_iterator_must_be_a_promise_for_a_type_with_a_value_property, }; var syncIterationTypesResolver = { iterableCacheKey: "iterationTypesOfIterable", iteratorCacheKey: "iterationTypesOfIterator", iteratorSymbolName: "iterator", getGlobalIteratorType: getGlobalIteratorType, getGlobalIterableType: getGlobalIterableType, getGlobalIterableIteratorType: getGlobalIterableIteratorType, getGlobalGeneratorType: getGlobalGeneratorType, resolveIterationType: function (type, _errorNode) { return type; }, mustHaveANextMethodDiagnostic: ts.Diagnostics.An_iterator_must_have_a_next_method, mustBeAMethodDiagnostic: ts.Diagnostics.The_0_property_of_an_iterator_must_be_a_method, mustHaveAValueDiagnostic: ts.Diagnostics.The_type_returned_by_the_0_method_of_an_iterator_must_have_a_value_property, }; /** Key is "/path/to/a.ts|/path/to/b.ts". */ var amalgamatedDuplicates; var reverseMappedCache = new ts.Map(); var inInferTypeForHomomorphicMappedType = false; var ambientModulesCache; /** * List of every ambient module with a "*" wildcard. * Unlike other ambient modules, these can't be stored in `globals` because symbol tables only deal with exact matches. * This is only used if there is no exact match. */ var patternAmbientModules; var patternAmbientModuleAugmentations; var globalObjectType; var globalFunctionType; var globalCallableFunctionType; var globalNewableFunctionType; var globalArrayType; var globalReadonlyArrayType; var globalStringType; var globalNumberType; var globalBooleanType; var globalRegExpType; var globalThisType; var anyArrayType; var autoArrayType; var anyReadonlyArrayType; var deferredGlobalNonNullableTypeAlias; // The library files are only loaded when the feature is used. // This allows users to just specify library files they want to used through --lib // and they will not get an error from not having unrelated library files var deferredGlobalESSymbolConstructorSymbol; var deferredGlobalESSymbolConstructorTypeSymbol; var deferredGlobalESSymbolType; var deferredGlobalTypedPropertyDescriptorType; var deferredGlobalPromiseType; var deferredGlobalPromiseLikeType; var deferredGlobalPromiseConstructorSymbol; var deferredGlobalPromiseConstructorLikeType; var deferredGlobalIterableType; var deferredGlobalIteratorType; var deferredGlobalIterableIteratorType; var deferredGlobalGeneratorType; var deferredGlobalIteratorYieldResultType; var deferredGlobalIteratorReturnResultType; var deferredGlobalAsyncIterableType; var deferredGlobalAsyncIteratorType; var deferredGlobalAsyncIterableIteratorType; var deferredGlobalAsyncGeneratorType; var deferredGlobalTemplateStringsArrayType; var deferredGlobalImportMetaType; var deferredGlobalImportMetaExpressionType; var deferredGlobalImportCallOptionsType; var deferredGlobalExtractSymbol; var deferredGlobalOmitSymbol; var deferredGlobalAwaitedSymbol; var deferredGlobalBigIntType; var allPotentiallyUnusedIdentifiers = new ts.Map(); // key is file name var flowLoopStart = 0; var flowLoopCount = 0; var sharedFlowCount = 0; var flowAnalysisDisabled = false; var flowInvocationCount = 0; var lastFlowNode; var lastFlowNodeReachable; var flowTypeCache; var emptyStringType = getStringLiteralType(""); var zeroType = getNumberLiteralType(0); var zeroBigIntType = getBigIntLiteralType({ negative: false, base10Value: "0" }); var resolutionTargets = []; var resolutionResults = []; var resolutionPropertyNames = []; var suggestionCount = 0; var maximumSuggestionCount = 10; var mergedSymbols = []; var symbolLinks = []; var nodeLinks = []; var flowLoopCaches = []; var flowLoopNodes = []; var flowLoopKeys = []; var flowLoopTypes = []; var sharedFlowNodes = []; var sharedFlowTypes = []; var flowNodeReachable = []; var flowNodePostSuper = []; var potentialThisCollisions = []; var potentialNewTargetCollisions = []; var potentialWeakMapSetCollisions = []; var potentialReflectCollisions = []; var awaitedTypeStack = []; var diagnostics = ts.createDiagnosticCollection(); var suggestionDiagnostics = ts.createDiagnosticCollection(); var typeofTypesByName = new ts.Map(ts.getEntries({ string: stringType, number: numberType, bigint: bigintType, boolean: booleanType, symbol: esSymbolType, undefined: undefinedType })); var typeofType = createTypeofType(); var _jsxNamespace; var _jsxFactoryEntity; var outofbandVarianceMarkerHandler; var subtypeRelation = new ts.Map(); var strictSubtypeRelation = new ts.Map(); var assignableRelation = new ts.Map(); var comparableRelation = new ts.Map(); var identityRelation = new ts.Map(); var enumRelation = new ts.Map(); var builtinGlobals = ts.createSymbolTable(); builtinGlobals.set(undefinedSymbol.escapedName, undefinedSymbol); // Extensions suggested for path imports when module resolution is node16 or higher. // The first element of each tuple is the extension a file has. // The second element of each tuple is the extension that should be used in a path import. // e.g. if we want to import file `foo.mts`, we should write `import {} from "./foo.mjs". var suggestedExtensions = [ [".mts", ".mjs"], [".ts", ".js"], [".cts", ".cjs"], [".mjs", ".mjs"], [".js", ".js"], [".cjs", ".cjs"], [".tsx", compilerOptions.jsx === 1 /* JsxEmit.Preserve */ ? ".jsx" : ".js"], [".jsx", ".jsx"], [".json", ".json"], ]; initializeTypeChecker(); return checker; function getJsxNamespace(location) { if (location) { var file = ts.getSourceFileOfNode(location); if (file) { if (ts.isJsxOpeningFragment(location)) { if (file.localJsxFragmentNamespace) { return file.localJsxFragmentNamespace; } var jsxFragmentPragma = file.pragmas.get("jsxfrag"); if (jsxFragmentPragma) { var chosenPragma = ts.isArray(jsxFragmentPragma) ? jsxFragmentPragma[0] : jsxFragmentPragma; file.localJsxFragmentFactory = ts.parseIsolatedEntityName(chosenPragma.arguments.factory, languageVersion); ts.visitNode(file.localJsxFragmentFactory, markAsSynthetic); if (file.localJsxFragmentFactory) { return file.localJsxFragmentNamespace = ts.getFirstIdentifier(file.localJsxFragmentFactory).escapedText; } } var entity = getJsxFragmentFactoryEntity(location); if (entity) { file.localJsxFragmentFactory = entity; return file.localJsxFragmentNamespace = ts.getFirstIdentifier(entity).escapedText; } } else { var localJsxNamespace = getLocalJsxNamespace(file); if (localJsxNamespace) { return file.localJsxNamespace = localJsxNamespace; } } } } if (!_jsxNamespace) { _jsxNamespace = "React"; if (compilerOptions.jsxFactory) { _jsxFactoryEntity = ts.parseIsolatedEntityName(compilerOptions.jsxFactory, languageVersion); ts.visitNode(_jsxFactoryEntity, markAsSynthetic); if (_jsxFactoryEntity) { _jsxNamespace = ts.getFirstIdentifier(_jsxFactoryEntity).escapedText; } } else if (compilerOptions.reactNamespace) { _jsxNamespace = ts.escapeLeadingUnderscores(compilerOptions.reactNamespace); } } if (!_jsxFactoryEntity) { _jsxFactoryEntity = ts.factory.createQualifiedName(ts.factory.createIdentifier(ts.unescapeLeadingUnderscores(_jsxNamespace)), "createElement"); } return _jsxNamespace; } function getLocalJsxNamespace(file) { if (file.localJsxNamespace) { return file.localJsxNamespace; } var jsxPragma = file.pragmas.get("jsx"); if (jsxPragma) { var chosenPragma = ts.isArray(jsxPragma) ? jsxPragma[0] : jsxPragma; file.localJsxFactory = ts.parseIsolatedEntityName(chosenPragma.arguments.factory, languageVersion); ts.visitNode(file.localJsxFactory, markAsSynthetic); if (file.localJsxFactory) { return file.localJsxNamespace = ts.getFirstIdentifier(file.localJsxFactory).escapedText; } } } function markAsSynthetic(node) { ts.setTextRangePosEnd(node, -1, -1); return ts.visitEachChild(node, markAsSynthetic, ts.nullTransformationContext); } function getEmitResolver(sourceFile, cancellationToken) { // Ensure we have all the type information in place for this file so that all the // emitter questions of this resolver will return the right information. getDiagnostics(sourceFile, cancellationToken); return emitResolver; } function lookupOrIssueError(location, message, arg0, arg1, arg2, arg3) { var diagnostic = location ? ts.createDiagnosticForNode(location, message, arg0, arg1, arg2, arg3) : ts.createCompilerDiagnostic(message, arg0, arg1, arg2, arg3); var existing = diagnostics.lookup(diagnostic); if (existing) { return existing; } else { diagnostics.add(diagnostic); return diagnostic; } } function errorSkippedOn(key, location, message, arg0, arg1, arg2, arg3) { var diagnostic = error(location, message, arg0, arg1, arg2, arg3); diagnostic.skippedOn = key; return diagnostic; } function createError(location, message, arg0, arg1, arg2, arg3) { return location ? ts.createDiagnosticForNode(location, message, arg0, arg1, arg2, arg3) : ts.createCompilerDiagnostic(message, arg0, arg1, arg2, arg3); } function error(location, message, arg0, arg1, arg2, arg3) { var diagnostic = createError(location, message, arg0, arg1, arg2, arg3); diagnostics.add(diagnostic); return diagnostic; } function addErrorOrSuggestion(isError, diagnostic) { if (isError) { diagnostics.add(diagnostic); } else { suggestionDiagnostics.add(__assign(__assign({}, diagnostic), { category: ts.DiagnosticCategory.Suggestion })); } } function errorOrSuggestion(isError, location, message, arg0, arg1, arg2, arg3) { // Pseudo-synthesized input node if (location.pos < 0 || location.end < 0) { if (!isError) { return; // Drop suggestions (we have no span to suggest on) } // Issue errors globally var file = ts.getSourceFileOfNode(location); addErrorOrSuggestion(isError, "message" in message ? ts.createFileDiagnostic(file, 0, 0, message, arg0, arg1, arg2, arg3) : ts.createDiagnosticForFileFromMessageChain(file, message)); // eslint-disable-line no-in-operator return; } addErrorOrSuggestion(isError, "message" in message ? ts.createDiagnosticForNode(location, message, arg0, arg1, arg2, arg3) : ts.createDiagnosticForNodeFromMessageChain(location, message)); // eslint-disable-line no-in-operator } function errorAndMaybeSuggestAwait(location, maybeMissingAwait, message, arg0, arg1, arg2, arg3) { var diagnostic = error(location, message, arg0, arg1, arg2, arg3); if (maybeMissingAwait) { var related = ts.createDiagnosticForNode(location, ts.Diagnostics.Did_you_forget_to_use_await); ts.addRelatedInfo(diagnostic, related); } return diagnostic; } function addDeprecatedSuggestionWorker(declarations, diagnostic) { var deprecatedTag = Array.isArray(declarations) ? ts.forEach(declarations, ts.getJSDocDeprecatedTag) : ts.getJSDocDeprecatedTag(declarations); if (deprecatedTag) { ts.addRelatedInfo(diagnostic, ts.createDiagnosticForNode(deprecatedTag, ts.Diagnostics.The_declaration_was_marked_as_deprecated_here)); } // We call `addRelatedInfo()` before adding the diagnostic to prevent duplicates. suggestionDiagnostics.add(diagnostic); return diagnostic; } function isDeprecatedSymbol(symbol) { return !!(getDeclarationNodeFlagsFromSymbol(symbol) & 268435456 /* NodeFlags.Deprecated */); } function addDeprecatedSuggestion(location, declarations, deprecatedEntity) { var diagnostic = ts.createDiagnosticForNode(location, ts.Diagnostics._0_is_deprecated, deprecatedEntity); return addDeprecatedSuggestionWorker(declarations, diagnostic); } function addDeprecatedSuggestionWithSignature(location, declaration, deprecatedEntity, signatureString) { var diagnostic = deprecatedEntity ? ts.createDiagnosticForNode(location, ts.Diagnostics.The_signature_0_of_1_is_deprecated, signatureString, deprecatedEntity) : ts.createDiagnosticForNode(location, ts.Diagnostics._0_is_deprecated, signatureString); return addDeprecatedSuggestionWorker(declaration, diagnostic); } function createSymbol(flags, name, checkFlags) { symbolCount++; var symbol = new Symbol(flags | 33554432 /* SymbolFlags.Transient */, name); symbol.checkFlags = checkFlags || 0; return symbol; } function getExcludedSymbolFlags(flags) { var result = 0; if (flags & 2 /* SymbolFlags.BlockScopedVariable */) result |= 111551 /* SymbolFlags.BlockScopedVariableExcludes */; if (flags & 1 /* SymbolFlags.FunctionScopedVariable */) result |= 111550 /* SymbolFlags.FunctionScopedVariableExcludes */; if (flags & 4 /* SymbolFlags.Property */) result |= 0 /* SymbolFlags.PropertyExcludes */; if (flags & 8 /* SymbolFlags.EnumMember */) result |= 900095 /* SymbolFlags.EnumMemberExcludes */; if (flags & 16 /* SymbolFlags.Function */) result |= 110991 /* SymbolFlags.FunctionExcludes */; if (flags & 32 /* SymbolFlags.Class */) result |= 899503 /* SymbolFlags.ClassExcludes */; if (flags & 64 /* SymbolFlags.Interface */) result |= 788872 /* SymbolFlags.InterfaceExcludes */; if (flags & 256 /* SymbolFlags.RegularEnum */) result |= 899327 /* SymbolFlags.RegularEnumExcludes */; if (flags & 128 /* SymbolFlags.ConstEnum */) result |= 899967 /* SymbolFlags.ConstEnumExcludes */; if (flags & 512 /* SymbolFlags.ValueModule */) result |= 110735 /* SymbolFlags.ValueModuleExcludes */; if (flags & 8192 /* SymbolFlags.Method */) result |= 103359 /* SymbolFlags.MethodExcludes */; if (flags & 32768 /* SymbolFlags.GetAccessor */) result |= 46015 /* SymbolFlags.GetAccessorExcludes */; if (flags & 65536 /* SymbolFlags.SetAccessor */) result |= 78783 /* SymbolFlags.SetAccessorExcludes */; if (flags & 262144 /* SymbolFlags.TypeParameter */) result |= 526824 /* SymbolFlags.TypeParameterExcludes */; if (flags & 524288 /* SymbolFlags.TypeAlias */) result |= 788968 /* SymbolFlags.TypeAliasExcludes */; if (flags & 2097152 /* SymbolFlags.Alias */) result |= 2097152 /* SymbolFlags.AliasExcludes */; return result; } function recordMergedSymbol(target, source) { if (!source.mergeId) { source.mergeId = nextMergeId; nextMergeId++; } mergedSymbols[source.mergeId] = target; } function cloneSymbol(symbol) { var result = createSymbol(symbol.flags, symbol.escapedName); result.declarations = symbol.declarations ? symbol.declarations.slice() : []; result.parent = symbol.parent; if (symbol.valueDeclaration) result.valueDeclaration = symbol.valueDeclaration; if (symbol.constEnumOnlyModule) result.constEnumOnlyModule = true; if (symbol.members) result.members = new ts.Map(symbol.members); if (symbol.exports) result.exports = new ts.Map(symbol.exports); recordMergedSymbol(result, symbol); return result; } /** * Note: if target is transient, then it is mutable, and mergeSymbol with both mutate and return it. * If target is not transient, mergeSymbol will produce a transient clone, mutate that and return it. */ function mergeSymbol(target, source, unidirectional) { if (unidirectional === void 0) { unidirectional = false; } if (!(target.flags & getExcludedSymbolFlags(source.flags)) || (source.flags | target.flags) & 67108864 /* SymbolFlags.Assignment */) { if (source === target) { // This can happen when an export assigned namespace exports something also erroneously exported at the top level // See `declarationFileNoCrashOnExtraExportModifier` for an example return target; } if (!(target.flags & 33554432 /* SymbolFlags.Transient */)) { var resolvedTarget = resolveSymbol(target); if (resolvedTarget === unknownSymbol) { return source; } target = cloneSymbol(resolvedTarget); } // Javascript static-property-assignment declarations always merge, even though they are also values if (source.flags & 512 /* SymbolFlags.ValueModule */ && target.flags & 512 /* SymbolFlags.ValueModule */ && target.constEnumOnlyModule && !source.constEnumOnlyModule) { // reset flag when merging instantiated module into value module that has only const enums target.constEnumOnlyModule = false; } target.flags |= source.flags; if (source.valueDeclaration) { ts.setValueDeclaration(target, source.valueDeclaration); } ts.addRange(target.declarations, source.declarations); if (source.members) { if (!target.members) target.members = ts.createSymbolTable(); mergeSymbolTable(target.members, source.members, unidirectional); } if (source.exports) { if (!target.exports) target.exports = ts.createSymbolTable(); mergeSymbolTable(target.exports, source.exports, unidirectional); } if (!unidirectional) { recordMergedSymbol(target, source); } } else if (target.flags & 1024 /* SymbolFlags.NamespaceModule */) { // Do not report an error when merging `var globalThis` with the built-in `globalThis`, // as we will already report a "Declaration name conflicts..." error, and this error // won't make much sense. if (target !== globalThisSymbol) { error(source.declarations && ts.getNameOfDeclaration(source.declarations[0]), ts.Diagnostics.Cannot_augment_module_0_with_value_exports_because_it_resolves_to_a_non_module_entity, symbolToString(target)); } } else { // error var isEitherEnum = !!(target.flags & 384 /* SymbolFlags.Enum */ || source.flags & 384 /* SymbolFlags.Enum */); var isEitherBlockScoped_1 = !!(target.flags & 2 /* SymbolFlags.BlockScopedVariable */ || source.flags & 2 /* SymbolFlags.BlockScopedVariable */); var message = isEitherEnum ? ts.Diagnostics.Enum_declarations_can_only_merge_with_namespace_or_other_enum_declarations : isEitherBlockScoped_1 ? ts.Diagnostics.Cannot_redeclare_block_scoped_variable_0 : ts.Diagnostics.Duplicate_identifier_0; var sourceSymbolFile = source.declarations && ts.getSourceFileOfNode(source.declarations[0]); var targetSymbolFile = target.declarations && ts.getSourceFileOfNode(target.declarations[0]); var isSourcePlainJs = ts.isPlainJsFile(sourceSymbolFile, compilerOptions.checkJs); var isTargetPlainJs = ts.isPlainJsFile(targetSymbolFile, compilerOptions.checkJs); var symbolName_1 = symbolToString(source); // Collect top-level duplicate identifier errors into one mapping, so we can then merge their diagnostics if there are a bunch if (sourceSymbolFile && targetSymbolFile && amalgamatedDuplicates && !isEitherEnum && sourceSymbolFile !== targetSymbolFile) { var firstFile_1 = ts.comparePaths(sourceSymbolFile.path, targetSymbolFile.path) === -1 /* Comparison.LessThan */ ? sourceSymbolFile : targetSymbolFile; var secondFile_1 = firstFile_1 === sourceSymbolFile ? targetSymbolFile : sourceSymbolFile; var filesDuplicates = ts.getOrUpdate(amalgamatedDuplicates, "".concat(firstFile_1.path, "|").concat(secondFile_1.path), function () { return ({ firstFile: firstFile_1, secondFile: secondFile_1, conflictingSymbols: new ts.Map() }); }); var conflictingSymbolInfo = ts.getOrUpdate(filesDuplicates.conflictingSymbols, symbolName_1, function () { return ({ isBlockScoped: isEitherBlockScoped_1, firstFileLocations: [], secondFileLocations: [] }); }); if (!isSourcePlainJs) addDuplicateLocations(conflictingSymbolInfo.firstFileLocations, source); if (!isTargetPlainJs) addDuplicateLocations(conflictingSymbolInfo.secondFileLocations, target); } else { if (!isSourcePlainJs) addDuplicateDeclarationErrorsForSymbols(source, message, symbolName_1, target); if (!isTargetPlainJs) addDuplicateDeclarationErrorsForSymbols(target, message, symbolName_1, source); } } return target; function addDuplicateLocations(locs, symbol) { if (symbol.declarations) { for (var _i = 0, _a = symbol.declarations; _i < _a.length; _i++) { var decl = _a[_i]; ts.pushIfUnique(locs, decl); } } } } function addDuplicateDeclarationErrorsForSymbols(target, message, symbolName, source) { ts.forEach(target.declarations, function (node) { addDuplicateDeclarationError(node, message, symbolName, source.declarations); }); } function addDuplicateDeclarationError(node, message, symbolName, relatedNodes) { var errorNode = (ts.getExpandoInitializer(node, /*isPrototypeAssignment*/ false) ? ts.getNameOfExpando(node) : ts.getNameOfDeclaration(node)) || node; var err = lookupOrIssueError(errorNode, message, symbolName); var _loop_7 = function (relatedNode) { var adjustedNode = (ts.getExpandoInitializer(relatedNode, /*isPrototypeAssignment*/ false) ? ts.getNameOfExpando(relatedNode) : ts.getNameOfDeclaration(relatedNode)) || relatedNode; if (adjustedNode === errorNode) return "continue"; err.relatedInformation = err.relatedInformation || []; var leadingMessage = ts.createDiagnosticForNode(adjustedNode, ts.Diagnostics._0_was_also_declared_here, symbolName); var followOnMessage = ts.createDiagnosticForNode(adjustedNode, ts.Diagnostics.and_here); if (ts.length(err.relatedInformation) >= 5 || ts.some(err.relatedInformation, function (r) { return ts.compareDiagnostics(r, followOnMessage) === 0 /* Comparison.EqualTo */ || ts.compareDiagnostics(r, leadingMessage) === 0 /* Comparison.EqualTo */; })) return "continue"; ts.addRelatedInfo(err, !ts.length(err.relatedInformation) ? leadingMessage : followOnMessage); }; for (var _i = 0, _a = relatedNodes || ts.emptyArray; _i < _a.length; _i++) { var relatedNode = _a[_i]; _loop_7(relatedNode); } } function combineSymbolTables(first, second) { if (!(first === null || first === void 0 ? void 0 : first.size)) return second; if (!(second === null || second === void 0 ? void 0 : second.size)) return first; var combined = ts.createSymbolTable(); mergeSymbolTable(combined, first); mergeSymbolTable(combined, second); return combined; } function mergeSymbolTable(target, source, unidirectional) { if (unidirectional === void 0) { unidirectional = false; } source.forEach(function (sourceSymbol, id) { var targetSymbol = target.get(id); target.set(id, targetSymbol ? mergeSymbol(targetSymbol, sourceSymbol, unidirectional) : sourceSymbol); }); } function mergeModuleAugmentation(moduleName) { var _a, _b, _c; var moduleAugmentation = moduleName.parent; if (((_a = moduleAugmentation.symbol.declarations) === null || _a === void 0 ? void 0 : _a[0]) !== moduleAugmentation) { // this is a combined symbol for multiple augmentations within the same file. // its symbol already has accumulated information for all declarations // so we need to add it just once - do the work only for first declaration ts.Debug.assert(moduleAugmentation.symbol.declarations.length > 1); return; } if (ts.isGlobalScopeAugmentation(moduleAugmentation)) { mergeSymbolTable(globals, moduleAugmentation.symbol.exports); } else { // find a module that about to be augmented // do not validate names of augmentations that are defined in ambient context var moduleNotFoundError = !(moduleName.parent.parent.flags & 16777216 /* NodeFlags.Ambient */) ? ts.Diagnostics.Invalid_module_name_in_augmentation_module_0_cannot_be_found : undefined; var mainModule_1 = resolveExternalModuleNameWorker(moduleName, moduleName, moduleNotFoundError, /*isForAugmentation*/ true); if (!mainModule_1) { return; } // obtain item referenced by 'export=' mainModule_1 = resolveExternalModuleSymbol(mainModule_1); if (mainModule_1.flags & 1920 /* SymbolFlags.Namespace */) { // If we're merging an augmentation to a pattern ambient module, we want to // perform the merge unidirectionally from the augmentation ('a.foo') to // the pattern ('*.foo'), so that 'getMergedSymbol()' on a.foo gives you // all the exports both from the pattern and from the augmentation, but // 'getMergedSymbol()' on *.foo only gives you exports from *.foo. if (ts.some(patternAmbientModules, function (module) { return mainModule_1 === module.symbol; })) { var merged = mergeSymbol(moduleAugmentation.symbol, mainModule_1, /*unidirectional*/ true); if (!patternAmbientModuleAugmentations) { patternAmbientModuleAugmentations = new ts.Map(); } // moduleName will be a StringLiteral since this is not `declare global`. patternAmbientModuleAugmentations.set(moduleName.text, merged); } else { if (((_b = mainModule_1.exports) === null || _b === void 0 ? void 0 : _b.get("__export" /* InternalSymbolName.ExportStar */)) && ((_c = moduleAugmentation.symbol.exports) === null || _c === void 0 ? void 0 : _c.size)) { // We may need to merge the module augmentation's exports into the target symbols of the resolved exports var resolvedExports = getResolvedMembersOrExportsOfSymbol(mainModule_1, "resolvedExports" /* MembersOrExportsResolutionKind.resolvedExports */); for (var _i = 0, _d = ts.arrayFrom(moduleAugmentation.symbol.exports.entries()); _i < _d.length; _i++) { var _e = _d[_i], key = _e[0], value = _e[1]; if (resolvedExports.has(key) && !mainModule_1.exports.has(key)) { mergeSymbol(resolvedExports.get(key), value); } } } mergeSymbol(mainModule_1, moduleAugmentation.symbol); } } else { // moduleName will be a StringLiteral since this is not `declare global`. error(moduleName, ts.Diagnostics.Cannot_augment_module_0_because_it_resolves_to_a_non_module_entity, moduleName.text); } } } function addToSymbolTable(target, source, message) { source.forEach(function (sourceSymbol, id) { var targetSymbol = target.get(id); if (targetSymbol) { // Error on redeclarations ts.forEach(targetSymbol.declarations, addDeclarationDiagnostic(ts.unescapeLeadingUnderscores(id), message)); } else { target.set(id, sourceSymbol); } }); function addDeclarationDiagnostic(id, message) { return function (declaration) { return diagnostics.add(ts.createDiagnosticForNode(declaration, message, id)); }; } } function getSymbolLinks(symbol) { if (symbol.flags & 33554432 /* SymbolFlags.Transient */) return symbol; var id = getSymbolId(symbol); return symbolLinks[id] || (symbolLinks[id] = new SymbolLinks()); } function getNodeLinks(node) { var nodeId = getNodeId(node); return nodeLinks[nodeId] || (nodeLinks[nodeId] = new NodeLinks()); } function isGlobalSourceFile(node) { return node.kind === 305 /* SyntaxKind.SourceFile */ && !ts.isExternalOrCommonJsModule(node); } function getSymbol(symbols, name, meaning) { if (meaning) { var symbol = getMergedSymbol(symbols.get(name)); if (symbol) { ts.Debug.assert((ts.getCheckFlags(symbol) & 1 /* CheckFlags.Instantiated */) === 0, "Should never get an instantiated symbol here."); if (symbol.flags & meaning) { return symbol; } if (symbol.flags & 2097152 /* SymbolFlags.Alias */) { var target = resolveAlias(symbol); // Unknown symbol means an error occurred in alias resolution, treat it as positive answer to avoid cascading errors if (target === unknownSymbol || target.flags & meaning) { return symbol; } } } } // return undefined if we can't find a symbol. } /** * Get symbols that represent parameter-property-declaration as parameter and as property declaration * @param parameter a parameterDeclaration node * @param parameterName a name of the parameter to get the symbols for. * @return a tuple of two symbols */ function getSymbolsOfParameterPropertyDeclaration(parameter, parameterName) { var constructorDeclaration = parameter.parent; var classDeclaration = parameter.parent.parent; var parameterSymbol = getSymbol(constructorDeclaration.locals, parameterName, 111551 /* SymbolFlags.Value */); var propertySymbol = getSymbol(getMembersOfSymbol(classDeclaration.symbol), parameterName, 111551 /* SymbolFlags.Value */); if (parameterSymbol && propertySymbol) { return [parameterSymbol, propertySymbol]; } return ts.Debug.fail("There should exist two symbols, one as property declaration and one as parameter declaration"); } function isBlockScopedNameDeclaredBeforeUse(declaration, usage) { var declarationFile = ts.getSourceFileOfNode(declaration); var useFile = ts.getSourceFileOfNode(usage); var declContainer = ts.getEnclosingBlockScopeContainer(declaration); if (declarationFile !== useFile) { if ((moduleKind && (declarationFile.externalModuleIndicator || useFile.externalModuleIndicator)) || (!ts.outFile(compilerOptions)) || isInTypeQuery(usage) || declaration.flags & 16777216 /* NodeFlags.Ambient */) { // nodes are in different files and order cannot be determined return true; } // declaration is after usage // can be legal if usage is deferred (i.e. inside function or in initializer of instance property) if (isUsedInFunctionOrInstanceProperty(usage, declaration)) { return true; } var sourceFiles = host.getSourceFiles(); return sourceFiles.indexOf(declarationFile) <= sourceFiles.indexOf(useFile); } if (declaration.pos <= usage.pos && !(ts.isPropertyDeclaration(declaration) && ts.isThisProperty(usage.parent) && !declaration.initializer && !declaration.exclamationToken)) { // declaration is before usage if (declaration.kind === 203 /* SyntaxKind.BindingElement */) { // still might be illegal if declaration and usage are both binding elements (eg var [a = b, b = b] = [1, 2]) var errorBindingElement = ts.getAncestor(usage, 203 /* SyntaxKind.BindingElement */); if (errorBindingElement) { return ts.findAncestor(errorBindingElement, ts.isBindingElement) !== ts.findAncestor(declaration, ts.isBindingElement) || declaration.pos < errorBindingElement.pos; } // or it might be illegal if usage happens before parent variable is declared (eg var [a] = a) return isBlockScopedNameDeclaredBeforeUse(ts.getAncestor(declaration, 254 /* SyntaxKind.VariableDeclaration */), usage); } else if (declaration.kind === 254 /* SyntaxKind.VariableDeclaration */) { // still might be illegal if usage is in the initializer of the variable declaration (eg var a = a) return !isImmediatelyUsedInInitializerOfBlockScopedVariable(declaration, usage); } else if (ts.isClassDeclaration(declaration)) { // still might be illegal if the usage is within a computed property name in the class (eg class A { static p = "a"; [A.p]() {} }) return !ts.findAncestor(usage, function (n) { return ts.isComputedPropertyName(n) && n.parent.parent === declaration; }); } else if (ts.isPropertyDeclaration(declaration)) { // still might be illegal if a self-referencing property initializer (eg private x = this.x) return !isPropertyImmediatelyReferencedWithinDeclaration(declaration, usage, /*stopAtAnyPropertyDeclaration*/ false); } else if (ts.isParameterPropertyDeclaration(declaration, declaration.parent)) { // foo = this.bar is illegal in esnext+useDefineForClassFields when bar is a parameter property return !(ts.getEmitScriptTarget(compilerOptions) === 99 /* ScriptTarget.ESNext */ && useDefineForClassFields && ts.getContainingClass(declaration) === ts.getContainingClass(usage) && isUsedInFunctionOrInstanceProperty(usage, declaration)); } return true; } // declaration is after usage, but it can still be legal if usage is deferred: // 1. inside an export specifier // 2. inside a function // 3. inside an instance property initializer, a reference to a non-instance property // (except when target: "esnext" and useDefineForClassFields: true and the reference is to a parameter property) // 4. inside a static property initializer, a reference to a static method in the same class // 5. inside a TS export= declaration (since we will move the export statement during emit to avoid TDZ) // or if usage is in a type context: // 1. inside a type query (typeof in type position) // 2. inside a jsdoc comment if (usage.parent.kind === 275 /* SyntaxKind.ExportSpecifier */ || (usage.parent.kind === 271 /* SyntaxKind.ExportAssignment */ && usage.parent.isExportEquals)) { // export specifiers do not use the variable, they only make it available for use return true; } // When resolving symbols for exports, the `usage` location passed in can be the export site directly if (usage.kind === 271 /* SyntaxKind.ExportAssignment */ && usage.isExportEquals) { return true; } if (!!(usage.flags & 8388608 /* NodeFlags.JSDoc */) || isInTypeQuery(usage) || usageInTypeDeclaration()) { return true; } if (isUsedInFunctionOrInstanceProperty(usage, declaration)) { if (ts.getEmitScriptTarget(compilerOptions) === 99 /* ScriptTarget.ESNext */ && useDefineForClassFields && ts.getContainingClass(declaration) && (ts.isPropertyDeclaration(declaration) || ts.isParameterPropertyDeclaration(declaration, declaration.parent))) { return !isPropertyImmediatelyReferencedWithinDeclaration(declaration, usage, /*stopAtAnyPropertyDeclaration*/ true); } else { return true; } } return false; function usageInTypeDeclaration() { return !!ts.findAncestor(usage, function (node) { return ts.isInterfaceDeclaration(node) || ts.isTypeAliasDeclaration(node); }); } function isImmediatelyUsedInInitializerOfBlockScopedVariable(declaration, usage) { switch (declaration.parent.parent.kind) { case 237 /* SyntaxKind.VariableStatement */: case 242 /* SyntaxKind.ForStatement */: case 244 /* SyntaxKind.ForOfStatement */: // variable statement/for/for-of statement case, // use site should not be inside variable declaration (initializer of declaration or binding element) if (isSameScopeDescendentOf(usage, declaration, declContainer)) { return true; } break; } // ForIn/ForOf case - use site should not be used in expression part var grandparent = declaration.parent.parent; return ts.isForInOrOfStatement(grandparent) && isSameScopeDescendentOf(usage, grandparent.expression, declContainer); } function isUsedInFunctionOrInstanceProperty(usage, declaration) { return !!ts.findAncestor(usage, function (current) { if (current === declContainer) { return "quit"; } if (ts.isFunctionLike(current)) { return true; } if (ts.isClassStaticBlockDeclaration(current)) { return declaration.pos < usage.pos; } var propertyDeclaration = ts.tryCast(current.parent, ts.isPropertyDeclaration); if (propertyDeclaration) { var initializerOfProperty = propertyDeclaration.initializer === current; if (initializerOfProperty) { if (ts.isStatic(current.parent)) { if (declaration.kind === 169 /* SyntaxKind.MethodDeclaration */) { return true; } if (ts.isPropertyDeclaration(declaration) && ts.getContainingClass(usage) === ts.getContainingClass(declaration)) { var propName = declaration.name; if (ts.isIdentifier(propName) || ts.isPrivateIdentifier(propName)) { var type = getTypeOfSymbol(getSymbolOfNode(declaration)); var staticBlocks = ts.filter(declaration.parent.members, ts.isClassStaticBlockDeclaration); if (isPropertyInitializedInStaticBlocks(propName, type, staticBlocks, declaration.parent.pos, current.pos)) { return true; } } } } else { var isDeclarationInstanceProperty = declaration.kind === 167 /* SyntaxKind.PropertyDeclaration */ && !ts.isStatic(declaration); if (!isDeclarationInstanceProperty || ts.getContainingClass(usage) !== ts.getContainingClass(declaration)) { return true; } } } } return false; }); } /** stopAtAnyPropertyDeclaration is used for detecting ES-standard class field use-before-def errors */ function isPropertyImmediatelyReferencedWithinDeclaration(declaration, usage, stopAtAnyPropertyDeclaration) { // always legal if usage is after declaration if (usage.end > declaration.end) { return false; } // still might be legal if usage is deferred (e.g. x: any = () => this.x) // otherwise illegal if immediately referenced within the declaration (e.g. x: any = this.x) var ancestorChangingReferenceScope = ts.findAncestor(usage, function (node) { if (node === declaration) { return "quit"; } switch (node.kind) { case 214 /* SyntaxKind.ArrowFunction */: return true; case 167 /* SyntaxKind.PropertyDeclaration */: // even when stopping at any property declaration, they need to come from the same class return stopAtAnyPropertyDeclaration && (ts.isPropertyDeclaration(declaration) && node.parent === declaration.parent || ts.isParameterPropertyDeclaration(declaration, declaration.parent) && node.parent === declaration.parent.parent) ? "quit" : true; case 235 /* SyntaxKind.Block */: switch (node.parent.kind) { case 172 /* SyntaxKind.GetAccessor */: case 169 /* SyntaxKind.MethodDeclaration */: case 173 /* SyntaxKind.SetAccessor */: return true; default: return false; } default: return false; } }); return ancestorChangingReferenceScope === undefined; } } function useOuterVariableScopeInParameter(result, location, lastLocation) { var target = ts.getEmitScriptTarget(compilerOptions); var functionLocation = location; if (ts.isParameter(lastLocation) && functionLocation.body && result.valueDeclaration && result.valueDeclaration.pos >= functionLocation.body.pos && result.valueDeclaration.end <= functionLocation.body.end) { // check for several cases where we introduce temporaries that require moving the name/initializer of the parameter to the body // - static field in a class expression // - optional chaining pre-es2020 // - nullish coalesce pre-es2020 // - spread assignment in binding pattern pre-es2017 if (target >= 2 /* ScriptTarget.ES2015 */) { var links = getNodeLinks(functionLocation); if (links.declarationRequiresScopeChange === undefined) { links.declarationRequiresScopeChange = ts.forEach(functionLocation.parameters, requiresScopeChange) || false; } return !links.declarationRequiresScopeChange; } } return false; function requiresScopeChange(node) { return requiresScopeChangeWorker(node.name) || !!node.initializer && requiresScopeChangeWorker(node.initializer); } function requiresScopeChangeWorker(node) { switch (node.kind) { case 214 /* SyntaxKind.ArrowFunction */: case 213 /* SyntaxKind.FunctionExpression */: case 256 /* SyntaxKind.FunctionDeclaration */: case 171 /* SyntaxKind.Constructor */: // do not descend into these return false; case 169 /* SyntaxKind.MethodDeclaration */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 296 /* SyntaxKind.PropertyAssignment */: return requiresScopeChangeWorker(node.name); case 167 /* SyntaxKind.PropertyDeclaration */: // static properties in classes introduce temporary variables if (ts.hasStaticModifier(node)) { return target < 99 /* ScriptTarget.ESNext */ || !useDefineForClassFields; } return requiresScopeChangeWorker(node.name); default: // null coalesce and optional chain pre-es2020 produce temporary variables if (ts.isNullishCoalesce(node) || ts.isOptionalChain(node)) { return target < 7 /* ScriptTarget.ES2020 */; } if (ts.isBindingElement(node) && node.dotDotDotToken && ts.isObjectBindingPattern(node.parent)) { return target < 4 /* ScriptTarget.ES2017 */; } if (ts.isTypeNode(node)) return false; return ts.forEachChild(node, requiresScopeChangeWorker) || false; } } } function isConstAssertion(location) { return (ts.isAssertionExpression(location) && ts.isConstTypeReference(location.type)) || (ts.isJSDocTypeTag(location) && ts.isConstTypeReference(location.typeExpression)); } /** * Resolve a given name for a given meaning at a given location. An error is reported if the name was not found and * the nameNotFoundMessage argument is not undefined. Returns the resolved symbol, or undefined if no symbol with * the given name can be found. * * @param isUse If true, this will count towards --noUnusedLocals / --noUnusedParameters. */ function resolveName(location, name, meaning, nameNotFoundMessage, nameArg, isUse, excludeGlobals, getSpellingSuggstions) { if (excludeGlobals === void 0) { excludeGlobals = false; } if (getSpellingSuggstions === void 0) { getSpellingSuggstions = true; } return resolveNameHelper(location, name, meaning, nameNotFoundMessage, nameArg, isUse, excludeGlobals, getSpellingSuggstions, getSymbol); } function resolveNameHelper(location, name, meaning, nameNotFoundMessage, nameArg, isUse, excludeGlobals, getSpellingSuggestions, lookup) { var _a, _b, _c; var originalLocation = location; // needed for did-you-mean error reporting, which gathers candidates starting from the original location var result; var lastLocation; var lastSelfReferenceLocation; var propertyWithInvalidInitializer; var associatedDeclarationForContainingInitializerOrBindingName; var withinDeferredContext = false; var errorLocation = location; var grandparent; var isInExternalModule = false; loop: while (location) { if (name === "const" && isConstAssertion(location)) { // `const` in an `as const` has no symbol, but issues no error because there is no *actual* lookup of the type // (it refers to the constant type of the expression instead) return undefined; } // Locals of a source file are not in scope (because they get merged into the global symbol table) if (location.locals && !isGlobalSourceFile(location)) { if (result = lookup(location.locals, name, meaning)) { var useResult = true; if (ts.isFunctionLike(location) && lastLocation && lastLocation !== location.body) { // symbol lookup restrictions for function-like declarations // - Type parameters of a function are in scope in the entire function declaration, including the parameter // list and return type. However, local types are only in scope in the function body. // - parameters are only in the scope of function body // This restriction does not apply to JSDoc comment types because they are parented // at a higher level than type parameters would normally be if (meaning & result.flags & 788968 /* SymbolFlags.Type */ && lastLocation.kind !== 320 /* SyntaxKind.JSDoc */) { useResult = result.flags & 262144 /* SymbolFlags.TypeParameter */ // type parameters are visible in parameter list, return type and type parameter list ? lastLocation === location.type || lastLocation.kind === 164 /* SyntaxKind.Parameter */ || lastLocation.kind === 340 /* SyntaxKind.JSDocParameterTag */ || lastLocation.kind === 341 /* SyntaxKind.JSDocReturnTag */ || lastLocation.kind === 163 /* SyntaxKind.TypeParameter */ // local types not visible outside the function body : false; } if (meaning & result.flags & 3 /* SymbolFlags.Variable */) { // expression inside parameter will lookup as normal variable scope when targeting es2015+ if (useOuterVariableScopeInParameter(result, location, lastLocation)) { useResult = false; } else if (result.flags & 1 /* SymbolFlags.FunctionScopedVariable */) { // parameters are visible only inside function body, parameter list and return type // technically for parameter list case here we might mix parameters and variables declared in function, // however it is detected separately when checking initializers of parameters // to make sure that they reference no variables declared after them. useResult = lastLocation.kind === 164 /* SyntaxKind.Parameter */ || (lastLocation === location.type && !!ts.findAncestor(result.valueDeclaration, ts.isParameter)); } } } else if (location.kind === 189 /* SyntaxKind.ConditionalType */) { // A type parameter declared using 'infer T' in a conditional type is visible only in // the true branch of the conditional type. useResult = lastLocation === location.trueType; } if (useResult) { break loop; } else { result = undefined; } } } withinDeferredContext = withinDeferredContext || getIsDeferredContext(location, lastLocation); switch (location.kind) { case 305 /* SyntaxKind.SourceFile */: if (!ts.isExternalOrCommonJsModule(location)) break; isInExternalModule = true; // falls through case 261 /* SyntaxKind.ModuleDeclaration */: var moduleExports = ((_a = getSymbolOfNode(location)) === null || _a === void 0 ? void 0 : _a.exports) || emptySymbols; if (location.kind === 305 /* SyntaxKind.SourceFile */ || (ts.isModuleDeclaration(location) && location.flags & 16777216 /* NodeFlags.Ambient */ && !ts.isGlobalScopeAugmentation(location))) { // It's an external module. First see if the module has an export default and if the local // name of that export default matches. if (result = moduleExports.get("default" /* InternalSymbolName.Default */)) { var localSymbol = ts.getLocalSymbolForExportDefault(result); if (localSymbol && (result.flags & meaning) && localSymbol.escapedName === name) { break loop; } result = undefined; } // Because of module/namespace merging, a module's exports are in scope, // yet we never want to treat an export specifier as putting a member in scope. // Therefore, if the name we find is purely an export specifier, it is not actually considered in scope. // Two things to note about this: // 1. We have to check this without calling getSymbol. The problem with calling getSymbol // on an export specifier is that it might find the export specifier itself, and try to // resolve it as an alias. This will cause the checker to consider the export specifier // a circular alias reference when it might not be. // 2. We check === SymbolFlags.Alias in order to check that the symbol is *purely* // an alias. If we used &, we'd be throwing out symbols that have non alias aspects, // which is not the desired behavior. var moduleExport = moduleExports.get(name); if (moduleExport && moduleExport.flags === 2097152 /* SymbolFlags.Alias */ && (ts.getDeclarationOfKind(moduleExport, 275 /* SyntaxKind.ExportSpecifier */) || ts.getDeclarationOfKind(moduleExport, 274 /* SyntaxKind.NamespaceExport */))) { break; } } // ES6 exports are also visible locally (except for 'default'), but commonjs exports are not (except typedefs) if (name !== "default" /* InternalSymbolName.Default */ && (result = lookup(moduleExports, name, meaning & 2623475 /* SymbolFlags.ModuleMember */))) { if (ts.isSourceFile(location) && location.commonJsModuleIndicator && !((_b = result.declarations) === null || _b === void 0 ? void 0 : _b.some(ts.isJSDocTypeAlias))) { result = undefined; } else { break loop; } } break; case 260 /* SyntaxKind.EnumDeclaration */: if (result = lookup(((_c = getSymbolOfNode(location)) === null || _c === void 0 ? void 0 : _c.exports) || emptySymbols, name, meaning & 8 /* SymbolFlags.EnumMember */)) { break loop; } break; case 167 /* SyntaxKind.PropertyDeclaration */: // TypeScript 1.0 spec (April 2014): 8.4.1 // Initializer expressions for instance member variables are evaluated in the scope // of the class constructor body but are not permitted to reference parameters or // local variables of the constructor. This effectively means that entities from outer scopes // by the same name as a constructor parameter or local variable are inaccessible // in initializer expressions for instance member variables. if (!ts.isStatic(location)) { var ctor = findConstructorDeclaration(location.parent); if (ctor && ctor.locals) { if (lookup(ctor.locals, name, meaning & 111551 /* SymbolFlags.Value */)) { // Remember the property node, it will be used later to report appropriate error propertyWithInvalidInitializer = location; } } } break; case 257 /* SyntaxKind.ClassDeclaration */: case 226 /* SyntaxKind.ClassExpression */: case 258 /* SyntaxKind.InterfaceDeclaration */: // The below is used to lookup type parameters within a class or interface, as they are added to the class/interface locals // These can never be latebound, so the symbol's raw members are sufficient. `getMembersOfNode` cannot be used, as it would // trigger resolving late-bound names, which we may already be in the process of doing while we're here! if (result = lookup(getSymbolOfNode(location).members || emptySymbols, name, meaning & 788968 /* SymbolFlags.Type */)) { if (!isTypeParameterSymbolDeclaredInContainer(result, location)) { // ignore type parameters not declared in this container result = undefined; break; } if (lastLocation && ts.isStatic(lastLocation)) { // TypeScript 1.0 spec (April 2014): 3.4.1 // The scope of a type parameter extends over the entire declaration with which the type // parameter list is associated, with the exception of static member declarations in classes. error(errorLocation, ts.Diagnostics.Static_members_cannot_reference_class_type_parameters); return undefined; } break loop; } if (location.kind === 226 /* SyntaxKind.ClassExpression */ && meaning & 32 /* SymbolFlags.Class */) { var className = location.name; if (className && name === className.escapedText) { result = location.symbol; break loop; } } break; case 228 /* SyntaxKind.ExpressionWithTypeArguments */: // The type parameters of a class are not in scope in the base class expression. if (lastLocation === location.expression && location.parent.token === 94 /* SyntaxKind.ExtendsKeyword */) { var container = location.parent.parent; if (ts.isClassLike(container) && (result = lookup(getSymbolOfNode(container).members, name, meaning & 788968 /* SymbolFlags.Type */))) { if (nameNotFoundMessage) { error(errorLocation, ts.Diagnostics.Base_class_expressions_cannot_reference_class_type_parameters); } return undefined; } } break; // It is not legal to reference a class's own type parameters from a computed property name that // belongs to the class. For example: // // function foo() { return '' } // class C { // <-- Class's own type parameter T // [foo()]() { } // <-- Reference to T from class's own computed property // } // case 162 /* SyntaxKind.ComputedPropertyName */: grandparent = location.parent.parent; if (ts.isClassLike(grandparent) || grandparent.kind === 258 /* SyntaxKind.InterfaceDeclaration */) { // A reference to this grandparent's type parameters would be an error if (result = lookup(getSymbolOfNode(grandparent).members, name, meaning & 788968 /* SymbolFlags.Type */)) { error(errorLocation, ts.Diagnostics.A_computed_property_name_cannot_reference_a_type_parameter_from_its_containing_type); return undefined; } } break; case 214 /* SyntaxKind.ArrowFunction */: // when targeting ES6 or higher there is no 'arguments' in an arrow function // for lower compile targets the resolved symbol is used to emit an error if (ts.getEmitScriptTarget(compilerOptions) >= 2 /* ScriptTarget.ES2015 */) { break; } // falls through case 169 /* SyntaxKind.MethodDeclaration */: case 171 /* SyntaxKind.Constructor */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 256 /* SyntaxKind.FunctionDeclaration */: if (meaning & 3 /* SymbolFlags.Variable */ && name === "arguments") { result = argumentsSymbol; break loop; } break; case 213 /* SyntaxKind.FunctionExpression */: if (meaning & 3 /* SymbolFlags.Variable */ && name === "arguments") { result = argumentsSymbol; break loop; } if (meaning & 16 /* SymbolFlags.Function */) { var functionName = location.name; if (functionName && name === functionName.escapedText) { result = location.symbol; break loop; } } break; case 165 /* SyntaxKind.Decorator */: // Decorators are resolved at the class declaration. Resolving at the parameter // or member would result in looking up locals in the method. // // function y() {} // class C { // method(@y x, y) {} // <-- decorator y should be resolved at the class declaration, not the parameter. // } // if (location.parent && location.parent.kind === 164 /* SyntaxKind.Parameter */) { location = location.parent; } // // function y() {} // class C { // @y method(x, y) {} // <-- decorator y should be resolved at the class declaration, not the method. // } // // class Decorators are resolved outside of the class to avoid referencing type parameters of that class. // // type T = number; // declare function y(x: T): any; // @param(1 as T) // <-- T should resolve to the type alias outside of class C // class C {} if (location.parent && (ts.isClassElement(location.parent) || location.parent.kind === 257 /* SyntaxKind.ClassDeclaration */)) { location = location.parent; } break; case 345 /* SyntaxKind.JSDocTypedefTag */: case 338 /* SyntaxKind.JSDocCallbackTag */: case 339 /* SyntaxKind.JSDocEnumTag */: // js type aliases do not resolve names from their host, so skip past it var root = ts.getJSDocRoot(location); if (root) { location = root.parent; } break; case 164 /* SyntaxKind.Parameter */: if (lastLocation && (lastLocation === location.initializer || lastLocation === location.name && ts.isBindingPattern(lastLocation))) { if (!associatedDeclarationForContainingInitializerOrBindingName) { associatedDeclarationForContainingInitializerOrBindingName = location; } } break; case 203 /* SyntaxKind.BindingElement */: if (lastLocation && (lastLocation === location.initializer || lastLocation === location.name && ts.isBindingPattern(lastLocation))) { if (ts.isParameterDeclaration(location) && !associatedDeclarationForContainingInitializerOrBindingName) { associatedDeclarationForContainingInitializerOrBindingName = location; } } break; case 190 /* SyntaxKind.InferType */: if (meaning & 262144 /* SymbolFlags.TypeParameter */) { var parameterName = location.typeParameter.name; if (parameterName && name === parameterName.escapedText) { result = location.typeParameter.symbol; break loop; } } break; } if (isSelfReferenceLocation(location)) { lastSelfReferenceLocation = location; } lastLocation = location; location = ts.isJSDocTemplateTag(location) ? ts.getEffectiveContainerForJSDocTemplateTag(location) || location.parent : ts.isJSDocParameterTag(location) || ts.isJSDocReturnTag(location) ? ts.getHostSignatureFromJSDoc(location) || location.parent : location.parent; } // We just climbed up parents looking for the name, meaning that we started in a descendant node of `lastLocation`. // If `result === lastSelfReferenceLocation.symbol`, that means that we are somewhere inside `lastSelfReferenceLocation` looking up a name, and resolving to `lastLocation` itself. // That means that this is a self-reference of `lastLocation`, and shouldn't count this when considering whether `lastLocation` is used. if (isUse && result && (!lastSelfReferenceLocation || result !== lastSelfReferenceLocation.symbol)) { result.isReferenced |= meaning; } if (!result) { if (lastLocation) { ts.Debug.assert(lastLocation.kind === 305 /* SyntaxKind.SourceFile */); if (lastLocation.commonJsModuleIndicator && name === "exports" && meaning & lastLocation.symbol.flags) { return lastLocation.symbol; } } if (!excludeGlobals) { result = lookup(globals, name, meaning); } } if (!result) { if (originalLocation && ts.isInJSFile(originalLocation) && originalLocation.parent) { if (ts.isRequireCall(originalLocation.parent, /*checkArgumentIsStringLiteralLike*/ false)) { return requireSymbol; } } } if (!result) { if (nameNotFoundMessage) { addLazyDiagnostic(function () { if (!errorLocation || !checkAndReportErrorForMissingPrefix(errorLocation, name, nameArg) && // TODO: GH#18217 !checkAndReportErrorForExtendingInterface(errorLocation) && !checkAndReportErrorForUsingTypeAsNamespace(errorLocation, name, meaning) && !checkAndReportErrorForExportingPrimitiveType(errorLocation, name) && !checkAndReportErrorForUsingTypeAsValue(errorLocation, name, meaning) && !checkAndReportErrorForUsingNamespaceModuleAsValue(errorLocation, name, meaning) && !checkAndReportErrorForUsingValueAsType(errorLocation, name, meaning)) { var suggestion = void 0; if (getSpellingSuggestions && suggestionCount < maximumSuggestionCount) { suggestion = getSuggestedSymbolForNonexistentSymbol(originalLocation, name, meaning); var isGlobalScopeAugmentationDeclaration = (suggestion === null || suggestion === void 0 ? void 0 : suggestion.valueDeclaration) && ts.isAmbientModule(suggestion.valueDeclaration) && ts.isGlobalScopeAugmentation(suggestion.valueDeclaration); if (isGlobalScopeAugmentationDeclaration) { suggestion = undefined; } if (suggestion) { var suggestionName = symbolToString(suggestion); var isUncheckedJS = isUncheckedJSSuggestion(originalLocation, suggestion, /*excludeClasses*/ false); var message = meaning === 1920 /* SymbolFlags.Namespace */ || nameArg && typeof nameArg !== "string" && ts.nodeIsSynthesized(nameArg) ? ts.Diagnostics.Cannot_find_namespace_0_Did_you_mean_1 : isUncheckedJS ? ts.Diagnostics.Could_not_find_name_0_Did_you_mean_1 : ts.Diagnostics.Cannot_find_name_0_Did_you_mean_1; var diagnostic = createError(errorLocation, message, diagnosticName(nameArg), suggestionName); addErrorOrSuggestion(!isUncheckedJS, diagnostic); if (suggestion.valueDeclaration) { ts.addRelatedInfo(diagnostic, ts.createDiagnosticForNode(suggestion.valueDeclaration, ts.Diagnostics._0_is_declared_here, suggestionName)); } } } if (!suggestion) { if (nameArg) { var lib = getSuggestedLibForNonExistentName(nameArg); if (lib) { error(errorLocation, nameNotFoundMessage, diagnosticName(nameArg), lib); } else { error(errorLocation, nameNotFoundMessage, diagnosticName(nameArg)); } } } suggestionCount++; } }); } return undefined; } if (propertyWithInvalidInitializer && !(ts.getEmitScriptTarget(compilerOptions) === 99 /* ScriptTarget.ESNext */ && useDefineForClassFields)) { // We have a match, but the reference occurred within a property initializer and the identifier also binds // to a local variable in the constructor where the code will be emitted. Note that this is actually allowed // with ESNext+useDefineForClassFields because the scope semantics are different. var propertyName = propertyWithInvalidInitializer.name; error(errorLocation, ts.Diagnostics.Initializer_of_instance_member_variable_0_cannot_reference_identifier_1_declared_in_the_constructor, ts.declarationNameToString(propertyName), diagnosticName(nameArg)); return undefined; } // Perform extra checks only if error reporting was requested if (nameNotFoundMessage) { addLazyDiagnostic(function () { // Only check for block-scoped variable if we have an error location and are looking for the // name with variable meaning // For example, // declare module foo { // interface bar {} // } // const foo/*1*/: foo/*2*/.bar; // The foo at /*1*/ and /*2*/ will share same symbol with two meanings: // block-scoped variable and namespace module. However, only when we // try to resolve name in /*1*/ which is used in variable position, // we want to check for block-scoped if (errorLocation && (meaning & 2 /* SymbolFlags.BlockScopedVariable */ || ((meaning & 32 /* SymbolFlags.Class */ || meaning & 384 /* SymbolFlags.Enum */) && (meaning & 111551 /* SymbolFlags.Value */) === 111551 /* SymbolFlags.Value */))) { var exportOrLocalSymbol = getExportSymbolOfValueSymbolIfExported(result); if (exportOrLocalSymbol.flags & 2 /* SymbolFlags.BlockScopedVariable */ || exportOrLocalSymbol.flags & 32 /* SymbolFlags.Class */ || exportOrLocalSymbol.flags & 384 /* SymbolFlags.Enum */) { checkResolvedBlockScopedVariable(exportOrLocalSymbol, errorLocation); } } // If we're in an external module, we can't reference value symbols created from UMD export declarations if (result && isInExternalModule && (meaning & 111551 /* SymbolFlags.Value */) === 111551 /* SymbolFlags.Value */ && !(originalLocation.flags & 8388608 /* NodeFlags.JSDoc */)) { var merged = getMergedSymbol(result); if (ts.length(merged.declarations) && ts.every(merged.declarations, function (d) { return ts.isNamespaceExportDeclaration(d) || ts.isSourceFile(d) && !!d.symbol.globalExports; })) { errorOrSuggestion(!compilerOptions.allowUmdGlobalAccess, errorLocation, ts.Diagnostics._0_refers_to_a_UMD_global_but_the_current_file_is_a_module_Consider_adding_an_import_instead, ts.unescapeLeadingUnderscores(name)); } } // If we're in a parameter initializer or binding name, we can't reference the values of the parameter whose initializer we're within or parameters to the right if (result && associatedDeclarationForContainingInitializerOrBindingName && !withinDeferredContext && (meaning & 111551 /* SymbolFlags.Value */) === 111551 /* SymbolFlags.Value */) { var candidate = getMergedSymbol(getLateBoundSymbol(result)); var root = ts.getRootDeclaration(associatedDeclarationForContainingInitializerOrBindingName); // A parameter initializer or binding pattern initializer within a parameter cannot refer to itself if (candidate === getSymbolOfNode(associatedDeclarationForContainingInitializerOrBindingName)) { error(errorLocation, ts.Diagnostics.Parameter_0_cannot_reference_itself, ts.declarationNameToString(associatedDeclarationForContainingInitializerOrBindingName.name)); } // And it cannot refer to any declarations which come after it else if (candidate.valueDeclaration && candidate.valueDeclaration.pos > associatedDeclarationForContainingInitializerOrBindingName.pos && root.parent.locals && lookup(root.parent.locals, candidate.escapedName, meaning) === candidate) { error(errorLocation, ts.Diagnostics.Parameter_0_cannot_reference_identifier_1_declared_after_it, ts.declarationNameToString(associatedDeclarationForContainingInitializerOrBindingName.name), ts.declarationNameToString(errorLocation)); } } if (result && errorLocation && meaning & 111551 /* SymbolFlags.Value */ && result.flags & 2097152 /* SymbolFlags.Alias */ && !(result.flags & 111551 /* SymbolFlags.Value */) && !ts.isValidTypeOnlyAliasUseSite(errorLocation)) { var typeOnlyDeclaration = getTypeOnlyAliasDeclaration(result); if (typeOnlyDeclaration) { var message = typeOnlyDeclaration.kind === 275 /* SyntaxKind.ExportSpecifier */ ? ts.Diagnostics._0_cannot_be_used_as_a_value_because_it_was_exported_using_export_type : ts.Diagnostics._0_cannot_be_used_as_a_value_because_it_was_imported_using_import_type; var unescapedName = ts.unescapeLeadingUnderscores(name); addTypeOnlyDeclarationRelatedInfo(error(errorLocation, message, unescapedName), typeOnlyDeclaration, unescapedName); } } }); } return result; } function addTypeOnlyDeclarationRelatedInfo(diagnostic, typeOnlyDeclaration, unescapedName) { if (!typeOnlyDeclaration) return diagnostic; return ts.addRelatedInfo(diagnostic, ts.createDiagnosticForNode(typeOnlyDeclaration, typeOnlyDeclaration.kind === 275 /* SyntaxKind.ExportSpecifier */ ? ts.Diagnostics._0_was_exported_here : ts.Diagnostics._0_was_imported_here, unescapedName)); } function getIsDeferredContext(location, lastLocation) { if (location.kind !== 214 /* SyntaxKind.ArrowFunction */ && location.kind !== 213 /* SyntaxKind.FunctionExpression */) { // initializers in instance property declaration of class like entities are executed in constructor and thus deferred return ts.isTypeQueryNode(location) || ((ts.isFunctionLikeDeclaration(location) || (location.kind === 167 /* SyntaxKind.PropertyDeclaration */ && !ts.isStatic(location))) && (!lastLocation || lastLocation !== location.name)); // A name is evaluated within the enclosing scope - so it shouldn't count as deferred } if (lastLocation && lastLocation === location.name) { return false; } // generator functions and async functions are not inlined in control flow when immediately invoked if (location.asteriskToken || ts.hasSyntacticModifier(location, 256 /* ModifierFlags.Async */)) { return true; } return !ts.getImmediatelyInvokedFunctionExpression(location); } function isSelfReferenceLocation(node) { switch (node.kind) { case 256 /* SyntaxKind.FunctionDeclaration */: case 257 /* SyntaxKind.ClassDeclaration */: case 258 /* SyntaxKind.InterfaceDeclaration */: case 260 /* SyntaxKind.EnumDeclaration */: case 259 /* SyntaxKind.TypeAliasDeclaration */: case 261 /* SyntaxKind.ModuleDeclaration */: // For `namespace N { N; }` return true; default: return false; } } function diagnosticName(nameArg) { return ts.isString(nameArg) ? ts.unescapeLeadingUnderscores(nameArg) : ts.declarationNameToString(nameArg); } function isTypeParameterSymbolDeclaredInContainer(symbol, container) { if (symbol.declarations) { for (var _i = 0, _a = symbol.declarations; _i < _a.length; _i++) { var decl = _a[_i]; if (decl.kind === 163 /* SyntaxKind.TypeParameter */) { var parent = ts.isJSDocTemplateTag(decl.parent) ? ts.getJSDocHost(decl.parent) : decl.parent; if (parent === container) { return !(ts.isJSDocTemplateTag(decl.parent) && ts.find(decl.parent.parent.tags, ts.isJSDocTypeAlias)); // TODO: GH#18217 } } } } return false; } function checkAndReportErrorForMissingPrefix(errorLocation, name, nameArg) { if (!ts.isIdentifier(errorLocation) || errorLocation.escapedText !== name || isTypeReferenceIdentifier(errorLocation) || isInTypeQuery(errorLocation)) { return false; } var container = ts.getThisContainer(errorLocation, /*includeArrowFunctions*/ false); var location = container; while (location) { if (ts.isClassLike(location.parent)) { var classSymbol = getSymbolOfNode(location.parent); if (!classSymbol) { break; } // Check to see if a static member exists. var constructorType = getTypeOfSymbol(classSymbol); if (getPropertyOfType(constructorType, name)) { error(errorLocation, ts.Diagnostics.Cannot_find_name_0_Did_you_mean_the_static_member_1_0, diagnosticName(nameArg), symbolToString(classSymbol)); return true; } // No static member is present. // Check if we're in an instance method and look for a relevant instance member. if (location === container && !ts.isStatic(location)) { var instanceType = getDeclaredTypeOfSymbol(classSymbol).thisType; // TODO: GH#18217 if (getPropertyOfType(instanceType, name)) { error(errorLocation, ts.Diagnostics.Cannot_find_name_0_Did_you_mean_the_instance_member_this_0, diagnosticName(nameArg)); return true; } } } location = location.parent; } return false; } function checkAndReportErrorForExtendingInterface(errorLocation) { var expression = getEntityNameForExtendingInterface(errorLocation); if (expression && resolveEntityName(expression, 64 /* SymbolFlags.Interface */, /*ignoreErrors*/ true)) { error(errorLocation, ts.Diagnostics.Cannot_extend_an_interface_0_Did_you_mean_implements, ts.getTextOfNode(expression)); return true; } return false; } /** * Climbs up parents to an ExpressionWithTypeArguments, and returns its expression, * but returns undefined if that expression is not an EntityNameExpression. */ function getEntityNameForExtendingInterface(node) { switch (node.kind) { case 79 /* SyntaxKind.Identifier */: case 206 /* SyntaxKind.PropertyAccessExpression */: return node.parent ? getEntityNameForExtendingInterface(node.parent) : undefined; case 228 /* SyntaxKind.ExpressionWithTypeArguments */: if (ts.isEntityNameExpression(node.expression)) { return node.expression; } // falls through default: return undefined; } } function checkAndReportErrorForUsingTypeAsNamespace(errorLocation, name, meaning) { var namespaceMeaning = 1920 /* SymbolFlags.Namespace */ | (ts.isInJSFile(errorLocation) ? 111551 /* SymbolFlags.Value */ : 0); if (meaning === namespaceMeaning) { var symbol = resolveSymbol(resolveName(errorLocation, name, 788968 /* SymbolFlags.Type */ & ~namespaceMeaning, /*nameNotFoundMessage*/ undefined, /*nameArg*/ undefined, /*isUse*/ false)); var parent = errorLocation.parent; if (symbol) { if (ts.isQualifiedName(parent)) { ts.Debug.assert(parent.left === errorLocation, "Should only be resolving left side of qualified name as a namespace"); var propName = parent.right.escapedText; var propType = getPropertyOfType(getDeclaredTypeOfSymbol(symbol), propName); if (propType) { error(parent, ts.Diagnostics.Cannot_access_0_1_because_0_is_a_type_but_not_a_namespace_Did_you_mean_to_retrieve_the_type_of_the_property_1_in_0_with_0_1, ts.unescapeLeadingUnderscores(name), ts.unescapeLeadingUnderscores(propName)); return true; } } error(errorLocation, ts.Diagnostics._0_only_refers_to_a_type_but_is_being_used_as_a_namespace_here, ts.unescapeLeadingUnderscores(name)); return true; } } return false; } function checkAndReportErrorForUsingValueAsType(errorLocation, name, meaning) { if (meaning & (788968 /* SymbolFlags.Type */ & ~1920 /* SymbolFlags.Namespace */)) { var symbol = resolveSymbol(resolveName(errorLocation, name, ~788968 /* SymbolFlags.Type */ & 111551 /* SymbolFlags.Value */, /*nameNotFoundMessage*/ undefined, /*nameArg*/ undefined, /*isUse*/ false)); if (symbol && !(symbol.flags & 1920 /* SymbolFlags.Namespace */)) { error(errorLocation, ts.Diagnostics._0_refers_to_a_value_but_is_being_used_as_a_type_here_Did_you_mean_typeof_0, ts.unescapeLeadingUnderscores(name)); return true; } } return false; } function isPrimitiveTypeName(name) { return name === "any" || name === "string" || name === "number" || name === "boolean" || name === "never" || name === "unknown"; } function checkAndReportErrorForExportingPrimitiveType(errorLocation, name) { if (isPrimitiveTypeName(name) && errorLocation.parent.kind === 275 /* SyntaxKind.ExportSpecifier */) { error(errorLocation, ts.Diagnostics.Cannot_export_0_Only_local_declarations_can_be_exported_from_a_module, name); return true; } return false; } function checkAndReportErrorForUsingTypeAsValue(errorLocation, name, meaning) { if (meaning & (111551 /* SymbolFlags.Value */ & ~1024 /* SymbolFlags.NamespaceModule */)) { if (isPrimitiveTypeName(name)) { error(errorLocation, ts.Diagnostics._0_only_refers_to_a_type_but_is_being_used_as_a_value_here, ts.unescapeLeadingUnderscores(name)); return true; } var symbol = resolveSymbol(resolveName(errorLocation, name, 788968 /* SymbolFlags.Type */ & ~111551 /* SymbolFlags.Value */, /*nameNotFoundMessage*/ undefined, /*nameArg*/ undefined, /*isUse*/ false)); if (symbol && !(symbol.flags & 1024 /* SymbolFlags.NamespaceModule */)) { var rawName = ts.unescapeLeadingUnderscores(name); if (isES2015OrLaterConstructorName(name)) { error(errorLocation, ts.Diagnostics._0_only_refers_to_a_type_but_is_being_used_as_a_value_here_Do_you_need_to_change_your_target_library_Try_changing_the_lib_compiler_option_to_es2015_or_later, rawName); } else if (maybeMappedType(errorLocation, symbol)) { error(errorLocation, ts.Diagnostics._0_only_refers_to_a_type_but_is_being_used_as_a_value_here_Did_you_mean_to_use_1_in_0, rawName, rawName === "K" ? "P" : "K"); } else { error(errorLocation, ts.Diagnostics._0_only_refers_to_a_type_but_is_being_used_as_a_value_here, rawName); } return true; } } return false; } function maybeMappedType(node, symbol) { var container = ts.findAncestor(node.parent, function (n) { return ts.isComputedPropertyName(n) || ts.isPropertySignature(n) ? false : ts.isTypeLiteralNode(n) || "quit"; }); if (container && container.members.length === 1) { var type = getDeclaredTypeOfSymbol(symbol); return !!(type.flags & 1048576 /* TypeFlags.Union */) && allTypesAssignableToKind(type, 384 /* TypeFlags.StringOrNumberLiteral */, /*strict*/ true); } return false; } function isES2015OrLaterConstructorName(n) { switch (n) { case "Promise": case "Symbol": case "Map": case "WeakMap": case "Set": case "WeakSet": return true; } return false; } function checkAndReportErrorForUsingNamespaceModuleAsValue(errorLocation, name, meaning) { if (meaning & (111551 /* SymbolFlags.Value */ & ~1024 /* SymbolFlags.NamespaceModule */ & ~788968 /* SymbolFlags.Type */)) { var symbol = resolveSymbol(resolveName(errorLocation, name, 1024 /* SymbolFlags.NamespaceModule */ & ~111551 /* SymbolFlags.Value */, /*nameNotFoundMessage*/ undefined, /*nameArg*/ undefined, /*isUse*/ false)); if (symbol) { error(errorLocation, ts.Diagnostics.Cannot_use_namespace_0_as_a_value, ts.unescapeLeadingUnderscores(name)); return true; } } else if (meaning & (788968 /* SymbolFlags.Type */ & ~1024 /* SymbolFlags.NamespaceModule */ & ~111551 /* SymbolFlags.Value */)) { var symbol = resolveSymbol(resolveName(errorLocation, name, (512 /* SymbolFlags.ValueModule */ | 1024 /* SymbolFlags.NamespaceModule */) & ~788968 /* SymbolFlags.Type */, /*nameNotFoundMessage*/ undefined, /*nameArg*/ undefined, /*isUse*/ false)); if (symbol) { error(errorLocation, ts.Diagnostics.Cannot_use_namespace_0_as_a_type, ts.unescapeLeadingUnderscores(name)); return true; } } return false; } function checkResolvedBlockScopedVariable(result, errorLocation) { var _a; ts.Debug.assert(!!(result.flags & 2 /* SymbolFlags.BlockScopedVariable */ || result.flags & 32 /* SymbolFlags.Class */ || result.flags & 384 /* SymbolFlags.Enum */)); if (result.flags & (16 /* SymbolFlags.Function */ | 1 /* SymbolFlags.FunctionScopedVariable */ | 67108864 /* SymbolFlags.Assignment */) && result.flags & 32 /* SymbolFlags.Class */) { // constructor functions aren't block scoped return; } // Block-scoped variables cannot be used before their definition var declaration = (_a = result.declarations) === null || _a === void 0 ? void 0 : _a.find(function (d) { return ts.isBlockOrCatchScoped(d) || ts.isClassLike(d) || (d.kind === 260 /* SyntaxKind.EnumDeclaration */); }); if (declaration === undefined) return ts.Debug.fail("checkResolvedBlockScopedVariable could not find block-scoped declaration"); if (!(declaration.flags & 16777216 /* NodeFlags.Ambient */) && !isBlockScopedNameDeclaredBeforeUse(declaration, errorLocation)) { var diagnosticMessage = void 0; var declarationName = ts.declarationNameToString(ts.getNameOfDeclaration(declaration)); if (result.flags & 2 /* SymbolFlags.BlockScopedVariable */) { diagnosticMessage = error(errorLocation, ts.Diagnostics.Block_scoped_variable_0_used_before_its_declaration, declarationName); } else if (result.flags & 32 /* SymbolFlags.Class */) { diagnosticMessage = error(errorLocation, ts.Diagnostics.Class_0_used_before_its_declaration, declarationName); } else if (result.flags & 256 /* SymbolFlags.RegularEnum */) { diagnosticMessage = error(errorLocation, ts.Diagnostics.Enum_0_used_before_its_declaration, declarationName); } else { ts.Debug.assert(!!(result.flags & 128 /* SymbolFlags.ConstEnum */)); if (ts.shouldPreserveConstEnums(compilerOptions)) { diagnosticMessage = error(errorLocation, ts.Diagnostics.Enum_0_used_before_its_declaration, declarationName); } } if (diagnosticMessage) { ts.addRelatedInfo(diagnosticMessage, ts.createDiagnosticForNode(declaration, ts.Diagnostics._0_is_declared_here, declarationName)); } } } /* Starting from 'initial' node walk up the parent chain until 'stopAt' node is reached. * If at any point current node is equal to 'parent' node - return true. * If current node is an IIFE, continue walking up. * Return false if 'stopAt' node is reached or isFunctionLike(current) === true. */ function isSameScopeDescendentOf(initial, parent, stopAt) { return !!parent && !!ts.findAncestor(initial, function (n) { return n === parent || (n === stopAt || ts.isFunctionLike(n) && !ts.getImmediatelyInvokedFunctionExpression(n) ? "quit" : false); }); } function getAnyImportSyntax(node) { switch (node.kind) { case 265 /* SyntaxKind.ImportEqualsDeclaration */: return node; case 267 /* SyntaxKind.ImportClause */: return node.parent; case 268 /* SyntaxKind.NamespaceImport */: return node.parent.parent; case 270 /* SyntaxKind.ImportSpecifier */: return node.parent.parent.parent; default: return undefined; } } function getDeclarationOfAliasSymbol(symbol) { return symbol.declarations && ts.findLast(symbol.declarations, isAliasSymbolDeclaration); } /** * An alias symbol is created by one of the following declarations: * import = ... * import from ... * import * as from ... * import { x as } from ... * export { x as } from ... * export * as ns from ... * export = * export default * module.exports = * {} * {name: } * const { x } = require ... */ function isAliasSymbolDeclaration(node) { return node.kind === 265 /* SyntaxKind.ImportEqualsDeclaration */ || node.kind === 264 /* SyntaxKind.NamespaceExportDeclaration */ || node.kind === 267 /* SyntaxKind.ImportClause */ && !!node.name || node.kind === 268 /* SyntaxKind.NamespaceImport */ || node.kind === 274 /* SyntaxKind.NamespaceExport */ || node.kind === 270 /* SyntaxKind.ImportSpecifier */ || node.kind === 275 /* SyntaxKind.ExportSpecifier */ || node.kind === 271 /* SyntaxKind.ExportAssignment */ && ts.exportAssignmentIsAlias(node) || ts.isBinaryExpression(node) && ts.getAssignmentDeclarationKind(node) === 2 /* AssignmentDeclarationKind.ModuleExports */ && ts.exportAssignmentIsAlias(node) || ts.isAccessExpression(node) && ts.isBinaryExpression(node.parent) && node.parent.left === node && node.parent.operatorToken.kind === 63 /* SyntaxKind.EqualsToken */ && isAliasableOrJsExpression(node.parent.right) || node.kind === 297 /* SyntaxKind.ShorthandPropertyAssignment */ || node.kind === 296 /* SyntaxKind.PropertyAssignment */ && isAliasableOrJsExpression(node.initializer) || node.kind === 254 /* SyntaxKind.VariableDeclaration */ && ts.isVariableDeclarationInitializedToBareOrAccessedRequire(node) || node.kind === 203 /* SyntaxKind.BindingElement */ && ts.isVariableDeclarationInitializedToBareOrAccessedRequire(node.parent.parent); } function isAliasableOrJsExpression(e) { return ts.isAliasableExpression(e) || ts.isFunctionExpression(e) && isJSConstructor(e); } function getTargetOfImportEqualsDeclaration(node, dontResolveAlias) { var commonJSPropertyAccess = getCommonJSPropertyAccess(node); if (commonJSPropertyAccess) { var name = ts.getLeftmostAccessExpression(commonJSPropertyAccess.expression).arguments[0]; return ts.isIdentifier(commonJSPropertyAccess.name) ? resolveSymbol(getPropertyOfType(resolveExternalModuleTypeByLiteral(name), commonJSPropertyAccess.name.escapedText)) : undefined; } if (ts.isVariableDeclaration(node) || node.moduleReference.kind === 277 /* SyntaxKind.ExternalModuleReference */) { var immediate = resolveExternalModuleName(node, ts.getExternalModuleRequireArgument(node) || ts.getExternalModuleImportEqualsDeclarationExpression(node)); var resolved_4 = resolveExternalModuleSymbol(immediate); markSymbolOfAliasDeclarationIfTypeOnly(node, immediate, resolved_4, /*overwriteEmpty*/ false); return resolved_4; } var resolved = getSymbolOfPartOfRightHandSideOfImportEquals(node.moduleReference, dontResolveAlias); checkAndReportErrorForResolvingImportAliasToTypeOnlySymbol(node, resolved); return resolved; } function checkAndReportErrorForResolvingImportAliasToTypeOnlySymbol(node, resolved) { if (markSymbolOfAliasDeclarationIfTypeOnly(node, /*immediateTarget*/ undefined, resolved, /*overwriteEmpty*/ false) && !node.isTypeOnly) { var typeOnlyDeclaration = getTypeOnlyAliasDeclaration(getSymbolOfNode(node)); var isExport = typeOnlyDeclaration.kind === 275 /* SyntaxKind.ExportSpecifier */; var message = isExport ? ts.Diagnostics.An_import_alias_cannot_reference_a_declaration_that_was_exported_using_export_type : ts.Diagnostics.An_import_alias_cannot_reference_a_declaration_that_was_imported_using_import_type; var relatedMessage = isExport ? ts.Diagnostics._0_was_exported_here : ts.Diagnostics._0_was_imported_here; var name = ts.unescapeLeadingUnderscores(typeOnlyDeclaration.name.escapedText); ts.addRelatedInfo(error(node.moduleReference, message), ts.createDiagnosticForNode(typeOnlyDeclaration, relatedMessage, name)); } } function resolveExportByName(moduleSymbol, name, sourceNode, dontResolveAlias) { var exportValue = moduleSymbol.exports.get("export=" /* InternalSymbolName.ExportEquals */); var exportSymbol = exportValue ? getPropertyOfType(getTypeOfSymbol(exportValue), name) : moduleSymbol.exports.get(name); var resolved = resolveSymbol(exportSymbol, dontResolveAlias); markSymbolOfAliasDeclarationIfTypeOnly(sourceNode, exportSymbol, resolved, /*overwriteEmpty*/ false); return resolved; } function isSyntacticDefault(node) { return ((ts.isExportAssignment(node) && !node.isExportEquals) || ts.hasSyntacticModifier(node, 512 /* ModifierFlags.Default */) || ts.isExportSpecifier(node)); } function getUsageModeForExpression(usage) { return ts.isStringLiteralLike(usage) ? ts.getModeForUsageLocation(ts.getSourceFileOfNode(usage), usage) : undefined; } function isESMFormatImportImportingCommonjsFormatFile(usageMode, targetMode) { return usageMode === ts.ModuleKind.ESNext && targetMode === ts.ModuleKind.CommonJS; } function isOnlyImportedAsDefault(usage) { var usageMode = getUsageModeForExpression(usage); return usageMode === ts.ModuleKind.ESNext && ts.endsWith(usage.text, ".json" /* Extension.Json */); } function canHaveSyntheticDefault(file, moduleSymbol, dontResolveAlias, usage) { var usageMode = file && getUsageModeForExpression(usage); if (file && usageMode !== undefined) { var result = isESMFormatImportImportingCommonjsFormatFile(usageMode, file.impliedNodeFormat); if (usageMode === ts.ModuleKind.ESNext || result) { return result; } // fallthrough on cjs usages so we imply defaults for interop'd imports, too } if (!allowSyntheticDefaultImports) { return false; } // Declaration files (and ambient modules) if (!file || file.isDeclarationFile) { // Definitely cannot have a synthetic default if they have a syntactic default member specified var defaultExportSymbol = resolveExportByName(moduleSymbol, "default" /* InternalSymbolName.Default */, /*sourceNode*/ undefined, /*dontResolveAlias*/ true); // Dont resolve alias because we want the immediately exported symbol's declaration if (defaultExportSymbol && ts.some(defaultExportSymbol.declarations, isSyntacticDefault)) { return false; } // It _might_ still be incorrect to assume there is no __esModule marker on the import at runtime, even if there is no `default` member // So we check a bit more, if (resolveExportByName(moduleSymbol, ts.escapeLeadingUnderscores("__esModule"), /*sourceNode*/ undefined, dontResolveAlias)) { // If there is an `__esModule` specified in the declaration (meaning someone explicitly added it or wrote it in their code), // it definitely is a module and does not have a synthetic default return false; } // There are _many_ declaration files not written with esmodules in mind that still get compiled into a format with __esModule set // Meaning there may be no default at runtime - however to be on the permissive side, we allow access to a synthetic default member // as there is no marker to indicate if the accompanying JS has `__esModule` or not, or is even native esm return true; } // TypeScript files never have a synthetic default (as they are always emitted with an __esModule marker) _unless_ they contain an export= statement if (!ts.isSourceFileJS(file)) { return hasExportAssignmentSymbol(moduleSymbol); } // JS files have a synthetic default if they do not contain ES2015+ module syntax (export = is not valid in js) _and_ do not have an __esModule marker return typeof file.externalModuleIndicator !== "object" && !resolveExportByName(moduleSymbol, ts.escapeLeadingUnderscores("__esModule"), /*sourceNode*/ undefined, dontResolveAlias); } function getTargetOfImportClause(node, dontResolveAlias) { var _a; var moduleSymbol = resolveExternalModuleName(node, node.parent.moduleSpecifier); if (moduleSymbol) { var exportDefaultSymbol = void 0; if (ts.isShorthandAmbientModuleSymbol(moduleSymbol)) { exportDefaultSymbol = moduleSymbol; } else { exportDefaultSymbol = resolveExportByName(moduleSymbol, "default" /* InternalSymbolName.Default */, node, dontResolveAlias); } var file = (_a = moduleSymbol.declarations) === null || _a === void 0 ? void 0 : _a.find(ts.isSourceFile); var hasDefaultOnly = isOnlyImportedAsDefault(node.parent.moduleSpecifier); var hasSyntheticDefault = canHaveSyntheticDefault(file, moduleSymbol, dontResolveAlias, node.parent.moduleSpecifier); if (!exportDefaultSymbol && !hasSyntheticDefault && !hasDefaultOnly) { if (hasExportAssignmentSymbol(moduleSymbol)) { var compilerOptionName = moduleKind >= ts.ModuleKind.ES2015 ? "allowSyntheticDefaultImports" : "esModuleInterop"; var exportEqualsSymbol = moduleSymbol.exports.get("export=" /* InternalSymbolName.ExportEquals */); var exportAssignment = exportEqualsSymbol.valueDeclaration; var err = error(node.name, ts.Diagnostics.Module_0_can_only_be_default_imported_using_the_1_flag, symbolToString(moduleSymbol), compilerOptionName); if (exportAssignment) { ts.addRelatedInfo(err, ts.createDiagnosticForNode(exportAssignment, ts.Diagnostics.This_module_is_declared_with_using_export_and_can_only_be_used_with_a_default_import_when_using_the_0_flag, compilerOptionName)); } } else { reportNonDefaultExport(moduleSymbol, node); } } else if (hasSyntheticDefault || hasDefaultOnly) { // per emit behavior, a synthetic default overrides a "real" .default member if `__esModule` is not present var resolved = resolveExternalModuleSymbol(moduleSymbol, dontResolveAlias) || resolveSymbol(moduleSymbol, dontResolveAlias); markSymbolOfAliasDeclarationIfTypeOnly(node, moduleSymbol, resolved, /*overwriteTypeOnly*/ false); return resolved; } markSymbolOfAliasDeclarationIfTypeOnly(node, exportDefaultSymbol, /*finalTarget*/ undefined, /*overwriteTypeOnly*/ false); return exportDefaultSymbol; } } function reportNonDefaultExport(moduleSymbol, node) { var _a, _b, _c; if ((_a = moduleSymbol.exports) === null || _a === void 0 ? void 0 : _a.has(node.symbol.escapedName)) { error(node.name, ts.Diagnostics.Module_0_has_no_default_export_Did_you_mean_to_use_import_1_from_0_instead, symbolToString(moduleSymbol), symbolToString(node.symbol)); } else { var diagnostic = error(node.name, ts.Diagnostics.Module_0_has_no_default_export, symbolToString(moduleSymbol)); var exportStar = (_b = moduleSymbol.exports) === null || _b === void 0 ? void 0 : _b.get("__export" /* InternalSymbolName.ExportStar */); if (exportStar) { var defaultExport = (_c = exportStar.declarations) === null || _c === void 0 ? void 0 : _c.find(function (decl) { var _a, _b; return !!(ts.isExportDeclaration(decl) && decl.moduleSpecifier && ((_b = (_a = resolveExternalModuleName(decl, decl.moduleSpecifier)) === null || _a === void 0 ? void 0 : _a.exports) === null || _b === void 0 ? void 0 : _b.has("default" /* InternalSymbolName.Default */))); }); if (defaultExport) { ts.addRelatedInfo(diagnostic, ts.createDiagnosticForNode(defaultExport, ts.Diagnostics.export_Asterisk_does_not_re_export_a_default)); } } } } function getTargetOfNamespaceImport(node, dontResolveAlias) { var moduleSpecifier = node.parent.parent.moduleSpecifier; var immediate = resolveExternalModuleName(node, moduleSpecifier); var resolved = resolveESModuleSymbol(immediate, moduleSpecifier, dontResolveAlias, /*suppressUsageError*/ false); markSymbolOfAliasDeclarationIfTypeOnly(node, immediate, resolved, /*overwriteEmpty*/ false); return resolved; } function getTargetOfNamespaceExport(node, dontResolveAlias) { var moduleSpecifier = node.parent.moduleSpecifier; var immediate = moduleSpecifier && resolveExternalModuleName(node, moduleSpecifier); var resolved = moduleSpecifier && resolveESModuleSymbol(immediate, moduleSpecifier, dontResolveAlias, /*suppressUsageError*/ false); markSymbolOfAliasDeclarationIfTypeOnly(node, immediate, resolved, /*overwriteEmpty*/ false); return resolved; } // This function creates a synthetic symbol that combines the value side of one symbol with the // type/namespace side of another symbol. Consider this example: // // declare module graphics { // interface Point { // x: number; // y: number; // } // } // declare var graphics: { // Point: new (x: number, y: number) => graphics.Point; // } // declare module "graphics" { // export = graphics; // } // // An 'import { Point } from "graphics"' needs to create a symbol that combines the value side 'Point' // property with the type/namespace side interface 'Point'. function combineValueAndTypeSymbols(valueSymbol, typeSymbol) { if (valueSymbol === unknownSymbol && typeSymbol === unknownSymbol) { return unknownSymbol; } if (valueSymbol.flags & (788968 /* SymbolFlags.Type */ | 1920 /* SymbolFlags.Namespace */)) { return valueSymbol; } var result = createSymbol(valueSymbol.flags | typeSymbol.flags, valueSymbol.escapedName); result.declarations = ts.deduplicate(ts.concatenate(valueSymbol.declarations, typeSymbol.declarations), ts.equateValues); result.parent = valueSymbol.parent || typeSymbol.parent; if (valueSymbol.valueDeclaration) result.valueDeclaration = valueSymbol.valueDeclaration; if (typeSymbol.members) result.members = new ts.Map(typeSymbol.members); if (valueSymbol.exports) result.exports = new ts.Map(valueSymbol.exports); return result; } function getExportOfModule(symbol, name, specifier, dontResolveAlias) { if (symbol.flags & 1536 /* SymbolFlags.Module */) { var exportSymbol = getExportsOfSymbol(symbol).get(name.escapedText); var resolved = resolveSymbol(exportSymbol, dontResolveAlias); markSymbolOfAliasDeclarationIfTypeOnly(specifier, exportSymbol, resolved, /*overwriteEmpty*/ false); return resolved; } } function getPropertyOfVariable(symbol, name) { if (symbol.flags & 3 /* SymbolFlags.Variable */) { var typeAnnotation = symbol.valueDeclaration.type; if (typeAnnotation) { return resolveSymbol(getPropertyOfType(getTypeFromTypeNode(typeAnnotation), name)); } } } function getExternalModuleMember(node, specifier, dontResolveAlias) { var _a, _b; if (dontResolveAlias === void 0) { dontResolveAlias = false; } var moduleSpecifier = ts.getExternalModuleRequireArgument(node) || node.moduleSpecifier; var moduleSymbol = resolveExternalModuleName(node, moduleSpecifier); // TODO: GH#18217 var name = !ts.isPropertyAccessExpression(specifier) && specifier.propertyName || specifier.name; if (!ts.isIdentifier(name)) { return undefined; } var suppressInteropError = name.escapedText === "default" /* InternalSymbolName.Default */ && !!(compilerOptions.allowSyntheticDefaultImports || ts.getESModuleInterop(compilerOptions)); var targetSymbol = resolveESModuleSymbol(moduleSymbol, moduleSpecifier, /*dontResolveAlias*/ false, suppressInteropError); if (targetSymbol) { if (name.escapedText) { if (ts.isShorthandAmbientModuleSymbol(moduleSymbol)) { return moduleSymbol; } var symbolFromVariable = void 0; // First check if module was specified with "export=". If so, get the member from the resolved type if (moduleSymbol && moduleSymbol.exports && moduleSymbol.exports.get("export=" /* InternalSymbolName.ExportEquals */)) { symbolFromVariable = getPropertyOfType(getTypeOfSymbol(targetSymbol), name.escapedText, /*skipObjectFunctionPropertyAugment*/ true); } else { symbolFromVariable = getPropertyOfVariable(targetSymbol, name.escapedText); } // if symbolFromVariable is export - get its final target symbolFromVariable = resolveSymbol(symbolFromVariable, dontResolveAlias); var symbolFromModule = getExportOfModule(targetSymbol, name, specifier, dontResolveAlias); if (symbolFromModule === undefined && name.escapedText === "default" /* InternalSymbolName.Default */) { var file = (_a = moduleSymbol.declarations) === null || _a === void 0 ? void 0 : _a.find(ts.isSourceFile); if (isOnlyImportedAsDefault(moduleSpecifier) || canHaveSyntheticDefault(file, moduleSymbol, dontResolveAlias, moduleSpecifier)) { symbolFromModule = resolveExternalModuleSymbol(moduleSymbol, dontResolveAlias) || resolveSymbol(moduleSymbol, dontResolveAlias); } } var symbol = symbolFromModule && symbolFromVariable && symbolFromModule !== symbolFromVariable ? combineValueAndTypeSymbols(symbolFromVariable, symbolFromModule) : symbolFromModule || symbolFromVariable; if (!symbol) { var moduleName = getFullyQualifiedName(moduleSymbol, node); var declarationName = ts.declarationNameToString(name); var suggestion = getSuggestedSymbolForNonexistentModule(name, targetSymbol); if (suggestion !== undefined) { var suggestionName = symbolToString(suggestion); var diagnostic = error(name, ts.Diagnostics._0_has_no_exported_member_named_1_Did_you_mean_2, moduleName, declarationName, suggestionName); if (suggestion.valueDeclaration) { ts.addRelatedInfo(diagnostic, ts.createDiagnosticForNode(suggestion.valueDeclaration, ts.Diagnostics._0_is_declared_here, suggestionName)); } } else { if ((_b = moduleSymbol.exports) === null || _b === void 0 ? void 0 : _b.has("default" /* InternalSymbolName.Default */)) { error(name, ts.Diagnostics.Module_0_has_no_exported_member_1_Did_you_mean_to_use_import_1_from_0_instead, moduleName, declarationName); } else { reportNonExportedMember(node, name, declarationName, moduleSymbol, moduleName); } } } return symbol; } } } function reportNonExportedMember(node, name, declarationName, moduleSymbol, moduleName) { var _a, _b; var localSymbol = (_b = (_a = moduleSymbol.valueDeclaration) === null || _a === void 0 ? void 0 : _a.locals) === null || _b === void 0 ? void 0 : _b.get(name.escapedText); var exports = moduleSymbol.exports; if (localSymbol) { var exportedEqualsSymbol = exports === null || exports === void 0 ? void 0 : exports.get("export=" /* InternalSymbolName.ExportEquals */); if (exportedEqualsSymbol) { getSymbolIfSameReference(exportedEqualsSymbol, localSymbol) ? reportInvalidImportEqualsExportMember(node, name, declarationName, moduleName) : error(name, ts.Diagnostics.Module_0_has_no_exported_member_1, moduleName, declarationName); } else { var exportedSymbol = exports ? ts.find(symbolsToArray(exports), function (symbol) { return !!getSymbolIfSameReference(symbol, localSymbol); }) : undefined; var diagnostic = exportedSymbol ? error(name, ts.Diagnostics.Module_0_declares_1_locally_but_it_is_exported_as_2, moduleName, declarationName, symbolToString(exportedSymbol)) : error(name, ts.Diagnostics.Module_0_declares_1_locally_but_it_is_not_exported, moduleName, declarationName); if (localSymbol.declarations) { ts.addRelatedInfo.apply(void 0, __spreadArray([diagnostic], ts.map(localSymbol.declarations, function (decl, index) { return ts.createDiagnosticForNode(decl, index === 0 ? ts.Diagnostics._0_is_declared_here : ts.Diagnostics.and_here, declarationName); }), false)); } } } else { error(name, ts.Diagnostics.Module_0_has_no_exported_member_1, moduleName, declarationName); } } function reportInvalidImportEqualsExportMember(node, name, declarationName, moduleName) { if (moduleKind >= ts.ModuleKind.ES2015) { var message = ts.getESModuleInterop(compilerOptions) ? ts.Diagnostics._0_can_only_be_imported_by_using_a_default_import : ts.Diagnostics._0_can_only_be_imported_by_turning_on_the_esModuleInterop_flag_and_using_a_default_import; error(name, message, declarationName); } else { if (ts.isInJSFile(node)) { var message = ts.getESModuleInterop(compilerOptions) ? ts.Diagnostics._0_can_only_be_imported_by_using_a_require_call_or_by_using_a_default_import : ts.Diagnostics._0_can_only_be_imported_by_using_a_require_call_or_by_turning_on_the_esModuleInterop_flag_and_using_a_default_import; error(name, message, declarationName); } else { var message = ts.getESModuleInterop(compilerOptions) ? ts.Diagnostics._0_can_only_be_imported_by_using_import_1_require_2_or_a_default_import : ts.Diagnostics._0_can_only_be_imported_by_using_import_1_require_2_or_by_turning_on_the_esModuleInterop_flag_and_using_a_default_import; error(name, message, declarationName, declarationName, moduleName); } } } function getTargetOfImportSpecifier(node, dontResolveAlias) { var root = ts.isBindingElement(node) ? ts.getRootDeclaration(node) : node.parent.parent.parent; var commonJSPropertyAccess = getCommonJSPropertyAccess(root); var resolved = getExternalModuleMember(root, commonJSPropertyAccess || node, dontResolveAlias); var name = node.propertyName || node.name; if (commonJSPropertyAccess && resolved && ts.isIdentifier(name)) { return resolveSymbol(getPropertyOfType(getTypeOfSymbol(resolved), name.escapedText), dontResolveAlias); } markSymbolOfAliasDeclarationIfTypeOnly(node, /*immediateTarget*/ undefined, resolved, /*overwriteEmpty*/ false); return resolved; } function getCommonJSPropertyAccess(node) { if (ts.isVariableDeclaration(node) && node.initializer && ts.isPropertyAccessExpression(node.initializer)) { return node.initializer; } } function getTargetOfNamespaceExportDeclaration(node, dontResolveAlias) { var resolved = resolveExternalModuleSymbol(node.parent.symbol, dontResolveAlias); markSymbolOfAliasDeclarationIfTypeOnly(node, /*immediateTarget*/ undefined, resolved, /*overwriteEmpty*/ false); return resolved; } function getTargetOfExportSpecifier(node, meaning, dontResolveAlias) { var resolved = node.parent.parent.moduleSpecifier ? getExternalModuleMember(node.parent.parent, node, dontResolveAlias) : resolveEntityName(node.propertyName || node.name, meaning, /*ignoreErrors*/ false, dontResolveAlias); markSymbolOfAliasDeclarationIfTypeOnly(node, /*immediateTarget*/ undefined, resolved, /*overwriteEmpty*/ false); return resolved; } function getTargetOfExportAssignment(node, dontResolveAlias) { var expression = ts.isExportAssignment(node) ? node.expression : node.right; var resolved = getTargetOfAliasLikeExpression(expression, dontResolveAlias); markSymbolOfAliasDeclarationIfTypeOnly(node, /*immediateTarget*/ undefined, resolved, /*overwriteEmpty*/ false); return resolved; } function getTargetOfAliasLikeExpression(expression, dontResolveAlias) { if (ts.isClassExpression(expression)) { return checkExpressionCached(expression).symbol; } if (!ts.isEntityName(expression) && !ts.isEntityNameExpression(expression)) { return undefined; } var aliasLike = resolveEntityName(expression, 111551 /* SymbolFlags.Value */ | 788968 /* SymbolFlags.Type */ | 1920 /* SymbolFlags.Namespace */, /*ignoreErrors*/ true, dontResolveAlias); if (aliasLike) { return aliasLike; } checkExpressionCached(expression); return getNodeLinks(expression).resolvedSymbol; } function getTargetOfPropertyAssignment(node, dontRecursivelyResolve) { var expression = node.initializer; return getTargetOfAliasLikeExpression(expression, dontRecursivelyResolve); } function getTargetOfAccessExpression(node, dontRecursivelyResolve) { if (!(ts.isBinaryExpression(node.parent) && node.parent.left === node && node.parent.operatorToken.kind === 63 /* SyntaxKind.EqualsToken */)) { return undefined; } return getTargetOfAliasLikeExpression(node.parent.right, dontRecursivelyResolve); } function getTargetOfAliasDeclaration(node, dontRecursivelyResolve) { if (dontRecursivelyResolve === void 0) { dontRecursivelyResolve = false; } switch (node.kind) { case 265 /* SyntaxKind.ImportEqualsDeclaration */: case 254 /* SyntaxKind.VariableDeclaration */: return getTargetOfImportEqualsDeclaration(node, dontRecursivelyResolve); case 267 /* SyntaxKind.ImportClause */: return getTargetOfImportClause(node, dontRecursivelyResolve); case 268 /* SyntaxKind.NamespaceImport */: return getTargetOfNamespaceImport(node, dontRecursivelyResolve); case 274 /* SyntaxKind.NamespaceExport */: return getTargetOfNamespaceExport(node, dontRecursivelyResolve); case 270 /* SyntaxKind.ImportSpecifier */: case 203 /* SyntaxKind.BindingElement */: return getTargetOfImportSpecifier(node, dontRecursivelyResolve); case 275 /* SyntaxKind.ExportSpecifier */: return getTargetOfExportSpecifier(node, 111551 /* SymbolFlags.Value */ | 788968 /* SymbolFlags.Type */ | 1920 /* SymbolFlags.Namespace */, dontRecursivelyResolve); case 271 /* SyntaxKind.ExportAssignment */: case 221 /* SyntaxKind.BinaryExpression */: return getTargetOfExportAssignment(node, dontRecursivelyResolve); case 264 /* SyntaxKind.NamespaceExportDeclaration */: return getTargetOfNamespaceExportDeclaration(node, dontRecursivelyResolve); case 297 /* SyntaxKind.ShorthandPropertyAssignment */: return resolveEntityName(node.name, 111551 /* SymbolFlags.Value */ | 788968 /* SymbolFlags.Type */ | 1920 /* SymbolFlags.Namespace */, /*ignoreErrors*/ true, dontRecursivelyResolve); case 296 /* SyntaxKind.PropertyAssignment */: return getTargetOfPropertyAssignment(node, dontRecursivelyResolve); case 207 /* SyntaxKind.ElementAccessExpression */: case 206 /* SyntaxKind.PropertyAccessExpression */: return getTargetOfAccessExpression(node, dontRecursivelyResolve); default: return ts.Debug.fail(); } } /** * Indicates that a symbol is an alias that does not merge with a local declaration. * OR Is a JSContainer which may merge an alias with a local declaration */ function isNonLocalAlias(symbol, excludes) { if (excludes === void 0) { excludes = 111551 /* SymbolFlags.Value */ | 788968 /* SymbolFlags.Type */ | 1920 /* SymbolFlags.Namespace */; } if (!symbol) return false; return (symbol.flags & (2097152 /* SymbolFlags.Alias */ | excludes)) === 2097152 /* SymbolFlags.Alias */ || !!(symbol.flags & 2097152 /* SymbolFlags.Alias */ && symbol.flags & 67108864 /* SymbolFlags.Assignment */); } function resolveSymbol(symbol, dontResolveAlias) { return !dontResolveAlias && isNonLocalAlias(symbol) ? resolveAlias(symbol) : symbol; } function resolveAlias(symbol) { ts.Debug.assert((symbol.flags & 2097152 /* SymbolFlags.Alias */) !== 0, "Should only get Alias here."); var links = getSymbolLinks(symbol); if (!links.aliasTarget) { links.aliasTarget = resolvingSymbol; var node = getDeclarationOfAliasSymbol(symbol); if (!node) return ts.Debug.fail(); var target = getTargetOfAliasDeclaration(node); if (links.aliasTarget === resolvingSymbol) { links.aliasTarget = target || unknownSymbol; } else { error(node, ts.Diagnostics.Circular_definition_of_import_alias_0, symbolToString(symbol)); } } else if (links.aliasTarget === resolvingSymbol) { links.aliasTarget = unknownSymbol; } return links.aliasTarget; } function tryResolveAlias(symbol) { var links = getSymbolLinks(symbol); if (links.aliasTarget !== resolvingSymbol) { return resolveAlias(symbol); } return undefined; } /** * Marks a symbol as type-only if its declaration is syntactically type-only. * If it is not itself marked type-only, but resolves to a type-only alias * somewhere in its resolution chain, save a reference to the type-only alias declaration * so the alias _not_ marked type-only can be identified as _transitively_ type-only. * * This function is called on each alias declaration that could be type-only or resolve to * another type-only alias during `resolveAlias`, so that later, when an alias is used in a * JS-emitting expression, we can quickly determine if that symbol is effectively type-only * and issue an error if so. * * @param aliasDeclaration The alias declaration not marked as type-only * @param immediateTarget The symbol to which the alias declaration immediately resolves * @param finalTarget The symbol to which the alias declaration ultimately resolves * @param overwriteEmpty Checks `resolvesToSymbol` for type-only declarations even if `aliasDeclaration` * has already been marked as not resolving to a type-only alias. Used when recursively resolving qualified * names of import aliases, e.g. `import C = a.b.C`. If namespace `a` is not found to be type-only, the * import declaration will initially be marked as not resolving to a type-only symbol. But, namespace `b` * must still be checked for a type-only marker, overwriting the previous negative result if found. */ function markSymbolOfAliasDeclarationIfTypeOnly(aliasDeclaration, immediateTarget, finalTarget, overwriteEmpty) { if (!aliasDeclaration || ts.isPropertyAccessExpression(aliasDeclaration)) return false; // If the declaration itself is type-only, mark it and return. // No need to check what it resolves to. var sourceSymbol = getSymbolOfNode(aliasDeclaration); if (ts.isTypeOnlyImportOrExportDeclaration(aliasDeclaration)) { var links_1 = getSymbolLinks(sourceSymbol); links_1.typeOnlyDeclaration = aliasDeclaration; return true; } var links = getSymbolLinks(sourceSymbol); return markSymbolOfAliasDeclarationIfTypeOnlyWorker(links, immediateTarget, overwriteEmpty) || markSymbolOfAliasDeclarationIfTypeOnlyWorker(links, finalTarget, overwriteEmpty); } function markSymbolOfAliasDeclarationIfTypeOnlyWorker(aliasDeclarationLinks, target, overwriteEmpty) { var _a, _b, _c; if (target && (aliasDeclarationLinks.typeOnlyDeclaration === undefined || overwriteEmpty && aliasDeclarationLinks.typeOnlyDeclaration === false)) { var exportSymbol = (_b = (_a = target.exports) === null || _a === void 0 ? void 0 : _a.get("export=" /* InternalSymbolName.ExportEquals */)) !== null && _b !== void 0 ? _b : target; var typeOnly = exportSymbol.declarations && ts.find(exportSymbol.declarations, ts.isTypeOnlyImportOrExportDeclaration); aliasDeclarationLinks.typeOnlyDeclaration = (_c = typeOnly !== null && typeOnly !== void 0 ? typeOnly : getSymbolLinks(exportSymbol).typeOnlyDeclaration) !== null && _c !== void 0 ? _c : false; } return !!aliasDeclarationLinks.typeOnlyDeclaration; } /** Indicates that a symbol directly or indirectly resolves to a type-only import or export. */ function getTypeOnlyAliasDeclaration(symbol) { if (!(symbol.flags & 2097152 /* SymbolFlags.Alias */)) { return undefined; } var links = getSymbolLinks(symbol); return links.typeOnlyDeclaration || undefined; } function markExportAsReferenced(node) { var symbol = getSymbolOfNode(node); var target = resolveAlias(symbol); if (target) { var markAlias = target === unknownSymbol || ((target.flags & 111551 /* SymbolFlags.Value */) && !isConstEnumOrConstEnumOnlyModule(target) && !getTypeOnlyAliasDeclaration(symbol)); if (markAlias) { markAliasSymbolAsReferenced(symbol); } } } // When an alias symbol is referenced, we need to mark the entity it references as referenced and in turn repeat that until // we reach a non-alias or an exported entity (which is always considered referenced). We do this by checking the target of // the alias as an expression (which recursively takes us back here if the target references another alias). function markAliasSymbolAsReferenced(symbol) { var links = getSymbolLinks(symbol); if (!links.referenced) { links.referenced = true; var node = getDeclarationOfAliasSymbol(symbol); if (!node) return ts.Debug.fail(); // We defer checking of the reference of an `import =` until the import itself is referenced, // This way a chain of imports can be elided if ultimately the final input is only used in a type // position. if (ts.isInternalModuleImportEqualsDeclaration(node)) { var target = resolveSymbol(symbol); if (target === unknownSymbol || target.flags & 111551 /* SymbolFlags.Value */) { // import foo = checkExpressionCached(node.moduleReference); } } } } // Aliases that resolve to const enums are not marked as referenced because they are not emitted, // but their usage in value positions must be tracked to determine if the import can be type-only. function markConstEnumAliasAsReferenced(symbol) { var links = getSymbolLinks(symbol); if (!links.constEnumReferenced) { links.constEnumReferenced = true; } } // This function is only for imports with entity names function getSymbolOfPartOfRightHandSideOfImportEquals(entityName, dontResolveAlias) { // There are three things we might try to look for. In the following examples, // the search term is enclosed in |...|: // // import a = |b|; // Namespace // import a = |b.c|; // Value, type, namespace // import a = |b.c|.d; // Namespace if (entityName.kind === 79 /* SyntaxKind.Identifier */ && ts.isRightSideOfQualifiedNameOrPropertyAccess(entityName)) { entityName = entityName.parent; } // Check for case 1 and 3 in the above example if (entityName.kind === 79 /* SyntaxKind.Identifier */ || entityName.parent.kind === 161 /* SyntaxKind.QualifiedName */) { return resolveEntityName(entityName, 1920 /* SymbolFlags.Namespace */, /*ignoreErrors*/ false, dontResolveAlias); } else { // Case 2 in above example // entityName.kind could be a QualifiedName or a Missing identifier ts.Debug.assert(entityName.parent.kind === 265 /* SyntaxKind.ImportEqualsDeclaration */); return resolveEntityName(entityName, 111551 /* SymbolFlags.Value */ | 788968 /* SymbolFlags.Type */ | 1920 /* SymbolFlags.Namespace */, /*ignoreErrors*/ false, dontResolveAlias); } } function getFullyQualifiedName(symbol, containingLocation) { return symbol.parent ? getFullyQualifiedName(symbol.parent, containingLocation) + "." + symbolToString(symbol) : symbolToString(symbol, containingLocation, /*meaning*/ undefined, 16 /* SymbolFormatFlags.DoNotIncludeSymbolChain */ | 4 /* SymbolFormatFlags.AllowAnyNodeKind */); } function getContainingQualifiedNameNode(node) { while (ts.isQualifiedName(node.parent)) { node = node.parent; } return node; } function tryGetQualifiedNameAsValue(node) { var left = ts.getFirstIdentifier(node); var symbol = resolveName(left, left.escapedText, 111551 /* SymbolFlags.Value */, undefined, left, /*isUse*/ true); if (!symbol) { return undefined; } while (ts.isQualifiedName(left.parent)) { var type = getTypeOfSymbol(symbol); symbol = getPropertyOfType(type, left.parent.right.escapedText); if (!symbol) { return undefined; } left = left.parent; } return symbol; } /** * Resolves a qualified name and any involved aliases. */ function resolveEntityName(name, meaning, ignoreErrors, dontResolveAlias, location) { if (ts.nodeIsMissing(name)) { return undefined; } var namespaceMeaning = 1920 /* SymbolFlags.Namespace */ | (ts.isInJSFile(name) ? meaning & 111551 /* SymbolFlags.Value */ : 0); var symbol; if (name.kind === 79 /* SyntaxKind.Identifier */) { var message = meaning === namespaceMeaning || ts.nodeIsSynthesized(name) ? ts.Diagnostics.Cannot_find_namespace_0 : getCannotFindNameDiagnosticForName(ts.getFirstIdentifier(name)); var symbolFromJSPrototype = ts.isInJSFile(name) && !ts.nodeIsSynthesized(name) ? resolveEntityNameFromAssignmentDeclaration(name, meaning) : undefined; symbol = getMergedSymbol(resolveName(location || name, name.escapedText, meaning, ignoreErrors || symbolFromJSPrototype ? undefined : message, name, /*isUse*/ true, false)); if (!symbol) { return getMergedSymbol(symbolFromJSPrototype); } } else if (name.kind === 161 /* SyntaxKind.QualifiedName */ || name.kind === 206 /* SyntaxKind.PropertyAccessExpression */) { var left = name.kind === 161 /* SyntaxKind.QualifiedName */ ? name.left : name.expression; var right = name.kind === 161 /* SyntaxKind.QualifiedName */ ? name.right : name.name; var namespace = resolveEntityName(left, namespaceMeaning, ignoreErrors, /*dontResolveAlias*/ false, location); if (!namespace || ts.nodeIsMissing(right)) { return undefined; } else if (namespace === unknownSymbol) { return namespace; } if (namespace.valueDeclaration && ts.isInJSFile(namespace.valueDeclaration) && ts.isVariableDeclaration(namespace.valueDeclaration) && namespace.valueDeclaration.initializer && isCommonJsRequire(namespace.valueDeclaration.initializer)) { var moduleName = namespace.valueDeclaration.initializer.arguments[0]; var moduleSym = resolveExternalModuleName(moduleName, moduleName); if (moduleSym) { var resolvedModuleSymbol = resolveExternalModuleSymbol(moduleSym); if (resolvedModuleSymbol) { namespace = resolvedModuleSymbol; } } } symbol = getMergedSymbol(getSymbol(getExportsOfSymbol(namespace), right.escapedText, meaning)); if (!symbol) { if (!ignoreErrors) { var namespaceName = getFullyQualifiedName(namespace); var declarationName = ts.declarationNameToString(right); var suggestionForNonexistentModule = getSuggestedSymbolForNonexistentModule(right, namespace); if (suggestionForNonexistentModule) { error(right, ts.Diagnostics._0_has_no_exported_member_named_1_Did_you_mean_2, namespaceName, declarationName, symbolToString(suggestionForNonexistentModule)); return undefined; } var containingQualifiedName = ts.isQualifiedName(name) && getContainingQualifiedNameNode(name); var canSuggestTypeof = globalObjectType // <-- can't pull on types if global types aren't initialized yet && (meaning & 788968 /* SymbolFlags.Type */) && containingQualifiedName && !ts.isTypeOfExpression(containingQualifiedName.parent) && tryGetQualifiedNameAsValue(containingQualifiedName); if (canSuggestTypeof) { error(containingQualifiedName, ts.Diagnostics._0_refers_to_a_value_but_is_being_used_as_a_type_here_Did_you_mean_typeof_0, ts.entityNameToString(containingQualifiedName)); return undefined; } if (meaning & 1920 /* SymbolFlags.Namespace */ && ts.isQualifiedName(name.parent)) { var exportedTypeSymbol = getMergedSymbol(getSymbol(getExportsOfSymbol(namespace), right.escapedText, 788968 /* SymbolFlags.Type */)); if (exportedTypeSymbol) { error(name.parent.right, ts.Diagnostics.Cannot_access_0_1_because_0_is_a_type_but_not_a_namespace_Did_you_mean_to_retrieve_the_type_of_the_property_1_in_0_with_0_1, symbolToString(exportedTypeSymbol), ts.unescapeLeadingUnderscores(name.parent.right.escapedText)); return undefined; } } error(right, ts.Diagnostics.Namespace_0_has_no_exported_member_1, namespaceName, declarationName); } return undefined; } } else { throw ts.Debug.assertNever(name, "Unknown entity name kind."); } ts.Debug.assert((ts.getCheckFlags(symbol) & 1 /* CheckFlags.Instantiated */) === 0, "Should never get an instantiated symbol here."); if (!ts.nodeIsSynthesized(name) && ts.isEntityName(name) && (symbol.flags & 2097152 /* SymbolFlags.Alias */ || name.parent.kind === 271 /* SyntaxKind.ExportAssignment */)) { markSymbolOfAliasDeclarationIfTypeOnly(ts.getAliasDeclarationFromName(name), symbol, /*finalTarget*/ undefined, /*overwriteEmpty*/ true); } return (symbol.flags & meaning) || dontResolveAlias ? symbol : resolveAlias(symbol); } /** * 1. For prototype-property methods like `A.prototype.m = function () ...`, try to resolve names in the scope of `A` too. * Note that prototype-property assignment to locations outside the current file (eg globals) doesn't work, so * name resolution won't work either. * 2. For property assignments like `{ x: function f () { } }`, try to resolve names in the scope of `f` too. */ function resolveEntityNameFromAssignmentDeclaration(name, meaning) { if (isJSDocTypeReference(name.parent)) { var secondaryLocation = getAssignmentDeclarationLocation(name.parent); if (secondaryLocation) { return resolveName(secondaryLocation, name.escapedText, meaning, /*nameNotFoundMessage*/ undefined, name, /*isUse*/ true); } } } function getAssignmentDeclarationLocation(node) { var typeAlias = ts.findAncestor(node, function (node) { return !(ts.isJSDocNode(node) || node.flags & 8388608 /* NodeFlags.JSDoc */) ? "quit" : ts.isJSDocTypeAlias(node); }); if (typeAlias) { return; } var host = ts.getJSDocHost(node); if (host && ts.isExpressionStatement(host) && ts.isPrototypePropertyAssignment(host.expression)) { // /** @param {K} p */ X.prototype.m = function () { } <-- look for K on X's declaration var symbol = getSymbolOfNode(host.expression.left); if (symbol) { return getDeclarationOfJSPrototypeContainer(symbol); } } if (host && ts.isFunctionExpression(host) && ts.isPrototypePropertyAssignment(host.parent) && ts.isExpressionStatement(host.parent.parent)) { // X.prototype.m = /** @param {K} p */ function () { } <-- look for K on X's declaration var symbol = getSymbolOfNode(host.parent.left); if (symbol) { return getDeclarationOfJSPrototypeContainer(symbol); } } if (host && (ts.isObjectLiteralMethod(host) || ts.isPropertyAssignment(host)) && ts.isBinaryExpression(host.parent.parent) && ts.getAssignmentDeclarationKind(host.parent.parent) === 6 /* AssignmentDeclarationKind.Prototype */) { // X.prototype = { /** @param {K} p */m() { } } <-- look for K on X's declaration var symbol = getSymbolOfNode(host.parent.parent.left); if (symbol) { return getDeclarationOfJSPrototypeContainer(symbol); } } var sig = ts.getEffectiveJSDocHost(node); if (sig && ts.isFunctionLike(sig)) { var symbol = getSymbolOfNode(sig); return symbol && symbol.valueDeclaration; } } function getDeclarationOfJSPrototypeContainer(symbol) { var decl = symbol.parent.valueDeclaration; if (!decl) { return undefined; } var initializer = ts.isAssignmentDeclaration(decl) ? ts.getAssignedExpandoInitializer(decl) : ts.hasOnlyExpressionInitializer(decl) ? ts.getDeclaredExpandoInitializer(decl) : undefined; return initializer || decl; } /** * Get the real symbol of a declaration with an expando initializer. * * Normally, declarations have an associated symbol, but when a declaration has an expando * initializer, the expando's symbol is the one that has all the members merged into it. */ function getExpandoSymbol(symbol) { var decl = symbol.valueDeclaration; if (!decl || !ts.isInJSFile(decl) || symbol.flags & 524288 /* SymbolFlags.TypeAlias */ || ts.getExpandoInitializer(decl, /*isPrototypeAssignment*/ false)) { return undefined; } var init = ts.isVariableDeclaration(decl) ? ts.getDeclaredExpandoInitializer(decl) : ts.getAssignedExpandoInitializer(decl); if (init) { var initSymbol = getSymbolOfNode(init); if (initSymbol) { return mergeJSSymbols(initSymbol, symbol); } } } function resolveExternalModuleName(location, moduleReferenceExpression, ignoreErrors) { var isClassic = ts.getEmitModuleResolutionKind(compilerOptions) === ts.ModuleResolutionKind.Classic; var errorMessage = isClassic ? ts.Diagnostics.Cannot_find_module_0_Did_you_mean_to_set_the_moduleResolution_option_to_node_or_to_add_aliases_to_the_paths_option : ts.Diagnostics.Cannot_find_module_0_or_its_corresponding_type_declarations; return resolveExternalModuleNameWorker(location, moduleReferenceExpression, ignoreErrors ? undefined : errorMessage); } function resolveExternalModuleNameWorker(location, moduleReferenceExpression, moduleNotFoundError, isForAugmentation) { if (isForAugmentation === void 0) { isForAugmentation = false; } return ts.isStringLiteralLike(moduleReferenceExpression) ? resolveExternalModule(location, moduleReferenceExpression.text, moduleNotFoundError, moduleReferenceExpression, isForAugmentation) : undefined; } function resolveExternalModule(location, moduleReference, moduleNotFoundError, errorNode, isForAugmentation) { var _a, _b, _c, _d, _e, _f, _g, _h; if (isForAugmentation === void 0) { isForAugmentation = false; } if (ts.startsWith(moduleReference, "@types/")) { var diag = ts.Diagnostics.Cannot_import_type_declaration_files_Consider_importing_0_instead_of_1; var withoutAtTypePrefix = ts.removePrefix(moduleReference, "@types/"); error(errorNode, diag, withoutAtTypePrefix, moduleReference); } var ambientModule = tryFindAmbientModule(moduleReference, /*withAugmentations*/ true); if (ambientModule) { return ambientModule; } var currentSourceFile = ts.getSourceFileOfNode(location); var contextSpecifier = ts.isStringLiteralLike(location) ? location : ((_a = ts.findAncestor(location, ts.isImportCall)) === null || _a === void 0 ? void 0 : _a.arguments[0]) || ((_b = ts.findAncestor(location, ts.isImportDeclaration)) === null || _b === void 0 ? void 0 : _b.moduleSpecifier) || ((_c = ts.findAncestor(location, ts.isExternalModuleImportEqualsDeclaration)) === null || _c === void 0 ? void 0 : _c.moduleReference.expression) || ((_d = ts.findAncestor(location, ts.isExportDeclaration)) === null || _d === void 0 ? void 0 : _d.moduleSpecifier) || ((_e = (ts.isModuleDeclaration(location) ? location : location.parent && ts.isModuleDeclaration(location.parent) && location.parent.name === location ? location.parent : undefined)) === null || _e === void 0 ? void 0 : _e.name) || ((_f = (ts.isLiteralImportTypeNode(location) ? location : undefined)) === null || _f === void 0 ? void 0 : _f.argument.literal); var mode = contextSpecifier && ts.isStringLiteralLike(contextSpecifier) ? ts.getModeForUsageLocation(currentSourceFile, contextSpecifier) : currentSourceFile.impliedNodeFormat; var resolvedModule = ts.getResolvedModule(currentSourceFile, moduleReference, mode); var resolutionDiagnostic = resolvedModule && ts.getResolutionDiagnostic(compilerOptions, resolvedModule); var sourceFile = resolvedModule && (!resolutionDiagnostic || resolutionDiagnostic === ts.Diagnostics.Module_0_was_resolved_to_1_but_jsx_is_not_set) && host.getSourceFile(resolvedModule.resolvedFileName); if (sourceFile) { // If there's a resolutionDiagnostic we need to report it even if a sourceFile is found. if (resolutionDiagnostic) { error(errorNode, resolutionDiagnostic, moduleReference, resolvedModule.resolvedFileName); } if (sourceFile.symbol) { if (resolvedModule.isExternalLibraryImport && !ts.resolutionExtensionIsTSOrJson(resolvedModule.extension)) { errorOnImplicitAnyModule(/*isError*/ false, errorNode, resolvedModule, moduleReference); } if (ts.getEmitModuleResolutionKind(compilerOptions) === ts.ModuleResolutionKind.Node16 || ts.getEmitModuleResolutionKind(compilerOptions) === ts.ModuleResolutionKind.NodeNext) { var isSyncImport = (currentSourceFile.impliedNodeFormat === ts.ModuleKind.CommonJS && !ts.findAncestor(location, ts.isImportCall)) || !!ts.findAncestor(location, ts.isImportEqualsDeclaration); var overrideClauseHost = ts.findAncestor(location, function (l) { return ts.isImportTypeNode(l) || ts.isExportDeclaration(l) || ts.isImportDeclaration(l); }); var overrideClause = overrideClauseHost && ts.isImportTypeNode(overrideClauseHost) ? (_g = overrideClauseHost.assertions) === null || _g === void 0 ? void 0 : _g.assertClause : overrideClauseHost === null || overrideClauseHost === void 0 ? void 0 : overrideClauseHost.assertClause; // An override clause will take effect for type-only imports and import types, and allows importing the types across formats, regardless of // normal mode restrictions if (isSyncImport && sourceFile.impliedNodeFormat === ts.ModuleKind.ESNext && !ts.getResolutionModeOverrideForClause(overrideClause)) { error(errorNode, ts.Diagnostics.Module_0_cannot_be_imported_using_this_construct_The_specifier_only_resolves_to_an_ES_module_which_cannot_be_imported_synchronously_Use_dynamic_import_instead, moduleReference); } } // merged symbol is module declaration symbol combined with all augmentations return getMergedSymbol(sourceFile.symbol); } if (moduleNotFoundError) { // report errors only if it was requested error(errorNode, ts.Diagnostics.File_0_is_not_a_module, sourceFile.fileName); } return undefined; } if (patternAmbientModules) { var pattern = ts.findBestPatternMatch(patternAmbientModules, function (_) { return _.pattern; }, moduleReference); if (pattern) { // If the module reference matched a pattern ambient module ('*.foo') but there's also a // module augmentation by the specific name requested ('a.foo'), we store the merged symbol // by the augmentation name ('a.foo'), because asking for *.foo should not give you exports // from a.foo. var augmentation = patternAmbientModuleAugmentations && patternAmbientModuleAugmentations.get(moduleReference); if (augmentation) { return getMergedSymbol(augmentation); } return getMergedSymbol(pattern.symbol); } } // May be an untyped module. If so, ignore resolutionDiagnostic. if (resolvedModule && !ts.resolutionExtensionIsTSOrJson(resolvedModule.extension) && resolutionDiagnostic === undefined || resolutionDiagnostic === ts.Diagnostics.Could_not_find_a_declaration_file_for_module_0_1_implicitly_has_an_any_type) { if (isForAugmentation) { var diag = ts.Diagnostics.Invalid_module_name_in_augmentation_Module_0_resolves_to_an_untyped_module_at_1_which_cannot_be_augmented; error(errorNode, diag, moduleReference, resolvedModule.resolvedFileName); } else { errorOnImplicitAnyModule(/*isError*/ noImplicitAny && !!moduleNotFoundError, errorNode, resolvedModule, moduleReference); } // Failed imports and untyped modules are both treated in an untyped manner; only difference is whether we give a diagnostic first. return undefined; } if (moduleNotFoundError) { // See if this was possibly a projectReference redirect if (resolvedModule) { var redirect = host.getProjectReferenceRedirect(resolvedModule.resolvedFileName); if (redirect) { error(errorNode, ts.Diagnostics.Output_file_0_has_not_been_built_from_source_file_1, redirect, resolvedModule.resolvedFileName); return undefined; } } if (resolutionDiagnostic) { error(errorNode, resolutionDiagnostic, moduleReference, resolvedModule.resolvedFileName); } else { var tsExtension = ts.tryExtractTSExtension(moduleReference); var isExtensionlessRelativePathImport = ts.pathIsRelative(moduleReference) && !ts.hasExtension(moduleReference); var moduleResolutionKind = ts.getEmitModuleResolutionKind(compilerOptions); var resolutionIsNode16OrNext = moduleResolutionKind === ts.ModuleResolutionKind.Node16 || moduleResolutionKind === ts.ModuleResolutionKind.NodeNext; if (tsExtension) { var diag = ts.Diagnostics.An_import_path_cannot_end_with_a_0_extension_Consider_importing_1_instead; var importSourceWithoutExtension = ts.removeExtension(moduleReference, tsExtension); var replacedImportSource = importSourceWithoutExtension; /** * Direct users to import source with .js extension if outputting an ES module. * @see https://github.com/microsoft/TypeScript/issues/42151 */ if (moduleKind >= ts.ModuleKind.ES2015) { replacedImportSource += tsExtension === ".mts" /* Extension.Mts */ ? ".mjs" : tsExtension === ".cts" /* Extension.Cts */ ? ".cjs" : ".js"; } error(errorNode, diag, tsExtension, replacedImportSource); } else if (!compilerOptions.resolveJsonModule && ts.fileExtensionIs(moduleReference, ".json" /* Extension.Json */) && ts.getEmitModuleResolutionKind(compilerOptions) !== ts.ModuleResolutionKind.Classic && ts.hasJsonModuleEmitEnabled(compilerOptions)) { error(errorNode, ts.Diagnostics.Cannot_find_module_0_Consider_using_resolveJsonModule_to_import_module_with_json_extension, moduleReference); } else if (mode === ts.ModuleKind.ESNext && resolutionIsNode16OrNext && isExtensionlessRelativePathImport) { var absoluteRef_1 = ts.getNormalizedAbsolutePath(moduleReference, ts.getDirectoryPath(currentSourceFile.path)); var suggestedExt = (_h = suggestedExtensions.find(function (_a) { var actualExt = _a[0], _importExt = _a[1]; return host.fileExists(absoluteRef_1 + actualExt); })) === null || _h === void 0 ? void 0 : _h[1]; if (suggestedExt) { error(errorNode, ts.Diagnostics.Relative_import_paths_need_explicit_file_extensions_in_EcmaScript_imports_when_moduleResolution_is_node16_or_nodenext_Did_you_mean_0, moduleReference + suggestedExt); } else { error(errorNode, ts.Diagnostics.Relative_import_paths_need_explicit_file_extensions_in_EcmaScript_imports_when_moduleResolution_is_node16_or_nodenext_Consider_adding_an_extension_to_the_import_path); } } else { error(errorNode, moduleNotFoundError, moduleReference); } } } return undefined; } function errorOnImplicitAnyModule(isError, errorNode, _a, moduleReference) { var packageId = _a.packageId, resolvedFileName = _a.resolvedFileName; var errorInfo = !ts.isExternalModuleNameRelative(moduleReference) && packageId ? typesPackageExists(packageId.name) ? ts.chainDiagnosticMessages( /*details*/ undefined, ts.Diagnostics.If_the_0_package_actually_exposes_this_module_consider_sending_a_pull_request_to_amend_https_Colon_Slash_Slashgithub_com_SlashDefinitelyTyped_SlashDefinitelyTyped_Slashtree_Slashmaster_Slashtypes_Slash_1, packageId.name, ts.mangleScopedPackageName(packageId.name)) : packageBundlesTypes(packageId.name) ? ts.chainDiagnosticMessages( /*details*/ undefined, ts.Diagnostics.If_the_0_package_actually_exposes_this_module_try_adding_a_new_declaration_d_ts_file_containing_declare_module_1, packageId.name, moduleReference) : ts.chainDiagnosticMessages( /*details*/ undefined, ts.Diagnostics.Try_npm_i_save_dev_types_Slash_1_if_it_exists_or_add_a_new_declaration_d_ts_file_containing_declare_module_0, moduleReference, ts.mangleScopedPackageName(packageId.name)) : undefined; errorOrSuggestion(isError, errorNode, ts.chainDiagnosticMessages(errorInfo, ts.Diagnostics.Could_not_find_a_declaration_file_for_module_0_1_implicitly_has_an_any_type, moduleReference, resolvedFileName)); } function typesPackageExists(packageName) { return getPackagesMap().has(ts.getTypesPackageName(packageName)); } function packageBundlesTypes(packageName) { return !!getPackagesMap().get(packageName); } function resolveExternalModuleSymbol(moduleSymbol, dontResolveAlias) { if (moduleSymbol === null || moduleSymbol === void 0 ? void 0 : moduleSymbol.exports) { var exportEquals = resolveSymbol(moduleSymbol.exports.get("export=" /* InternalSymbolName.ExportEquals */), dontResolveAlias); var exported = getCommonJsExportEquals(getMergedSymbol(exportEquals), getMergedSymbol(moduleSymbol)); return getMergedSymbol(exported) || moduleSymbol; } return undefined; } function getCommonJsExportEquals(exported, moduleSymbol) { if (!exported || exported === unknownSymbol || exported === moduleSymbol || moduleSymbol.exports.size === 1 || exported.flags & 2097152 /* SymbolFlags.Alias */) { return exported; } var links = getSymbolLinks(exported); if (links.cjsExportMerged) { return links.cjsExportMerged; } var merged = exported.flags & 33554432 /* SymbolFlags.Transient */ ? exported : cloneSymbol(exported); merged.flags = merged.flags | 512 /* SymbolFlags.ValueModule */; if (merged.exports === undefined) { merged.exports = ts.createSymbolTable(); } moduleSymbol.exports.forEach(function (s, name) { if (name === "export=" /* InternalSymbolName.ExportEquals */) return; merged.exports.set(name, merged.exports.has(name) ? mergeSymbol(merged.exports.get(name), s) : s); }); getSymbolLinks(merged).cjsExportMerged = merged; return links.cjsExportMerged = merged; } // An external module with an 'export =' declaration may be referenced as an ES6 module provided the 'export =' // references a symbol that is at least declared as a module or a variable. The target of the 'export =' may // combine other declarations with the module or variable (e.g. a class/module, function/module, interface/variable). function resolveESModuleSymbol(moduleSymbol, referencingLocation, dontResolveAlias, suppressInteropError) { var _a; var symbol = resolveExternalModuleSymbol(moduleSymbol, dontResolveAlias); if (!dontResolveAlias && symbol) { if (!suppressInteropError && !(symbol.flags & (1536 /* SymbolFlags.Module */ | 3 /* SymbolFlags.Variable */)) && !ts.getDeclarationOfKind(symbol, 305 /* SyntaxKind.SourceFile */)) { var compilerOptionName = moduleKind >= ts.ModuleKind.ES2015 ? "allowSyntheticDefaultImports" : "esModuleInterop"; error(referencingLocation, ts.Diagnostics.This_module_can_only_be_referenced_with_ECMAScript_imports_Slashexports_by_turning_on_the_0_flag_and_referencing_its_default_export, compilerOptionName); return symbol; } var referenceParent = referencingLocation.parent; if ((ts.isImportDeclaration(referenceParent) && ts.getNamespaceDeclarationNode(referenceParent)) || ts.isImportCall(referenceParent)) { var reference = ts.isImportCall(referenceParent) ? referenceParent.arguments[0] : referenceParent.moduleSpecifier; var type = getTypeOfSymbol(symbol); var defaultOnlyType = getTypeWithSyntheticDefaultOnly(type, symbol, moduleSymbol, reference); if (defaultOnlyType) { return cloneTypeAsModuleType(symbol, defaultOnlyType, referenceParent); } var targetFile = (_a = moduleSymbol === null || moduleSymbol === void 0 ? void 0 : moduleSymbol.declarations) === null || _a === void 0 ? void 0 : _a.find(ts.isSourceFile); var isEsmCjsRef = targetFile && isESMFormatImportImportingCommonjsFormatFile(getUsageModeForExpression(reference), targetFile.impliedNodeFormat); if (ts.getESModuleInterop(compilerOptions) || isEsmCjsRef) { var sigs = getSignaturesOfStructuredType(type, 0 /* SignatureKind.Call */); if (!sigs || !sigs.length) { sigs = getSignaturesOfStructuredType(type, 1 /* SignatureKind.Construct */); } if ((sigs && sigs.length) || getPropertyOfType(type, "default" /* InternalSymbolName.Default */, /*skipObjectFunctionPropertyAugment*/ true) || isEsmCjsRef) { var moduleType = getTypeWithSyntheticDefaultImportType(type, symbol, moduleSymbol, reference); return cloneTypeAsModuleType(symbol, moduleType, referenceParent); } } } } return symbol; } /** * Create a new symbol which has the module's type less the call and construct signatures */ function cloneTypeAsModuleType(symbol, moduleType, referenceParent) { var result = createSymbol(symbol.flags, symbol.escapedName); result.declarations = symbol.declarations ? symbol.declarations.slice() : []; result.parent = symbol.parent; result.target = symbol; result.originatingImport = referenceParent; if (symbol.valueDeclaration) result.valueDeclaration = symbol.valueDeclaration; if (symbol.constEnumOnlyModule) result.constEnumOnlyModule = true; if (symbol.members) result.members = new ts.Map(symbol.members); if (symbol.exports) result.exports = new ts.Map(symbol.exports); var resolvedModuleType = resolveStructuredTypeMembers(moduleType); // Should already be resolved from the signature checks above result.type = createAnonymousType(result, resolvedModuleType.members, ts.emptyArray, ts.emptyArray, resolvedModuleType.indexInfos); return result; } function hasExportAssignmentSymbol(moduleSymbol) { return moduleSymbol.exports.get("export=" /* InternalSymbolName.ExportEquals */) !== undefined; } function getExportsOfModuleAsArray(moduleSymbol) { return symbolsToArray(getExportsOfModule(moduleSymbol)); } function getExportsAndPropertiesOfModule(moduleSymbol) { var exports = getExportsOfModuleAsArray(moduleSymbol); var exportEquals = resolveExternalModuleSymbol(moduleSymbol); if (exportEquals !== moduleSymbol) { var type = getTypeOfSymbol(exportEquals); if (shouldTreatPropertiesOfExternalModuleAsExports(type)) { ts.addRange(exports, getPropertiesOfType(type)); } } return exports; } function forEachExportAndPropertyOfModule(moduleSymbol, cb) { var exports = getExportsOfModule(moduleSymbol); exports.forEach(function (symbol, key) { if (!isReservedMemberName(key)) { cb(symbol, key); } }); var exportEquals = resolveExternalModuleSymbol(moduleSymbol); if (exportEquals !== moduleSymbol) { var type = getTypeOfSymbol(exportEquals); if (shouldTreatPropertiesOfExternalModuleAsExports(type)) { forEachPropertyOfType(type, function (symbol, escapedName) { cb(symbol, escapedName); }); } } } function tryGetMemberInModuleExports(memberName, moduleSymbol) { var symbolTable = getExportsOfModule(moduleSymbol); if (symbolTable) { return symbolTable.get(memberName); } } function tryGetMemberInModuleExportsAndProperties(memberName, moduleSymbol) { var symbol = tryGetMemberInModuleExports(memberName, moduleSymbol); if (symbol) { return symbol; } var exportEquals = resolveExternalModuleSymbol(moduleSymbol); if (exportEquals === moduleSymbol) { return undefined; } var type = getTypeOfSymbol(exportEquals); return shouldTreatPropertiesOfExternalModuleAsExports(type) ? getPropertyOfType(type, memberName) : undefined; } function shouldTreatPropertiesOfExternalModuleAsExports(resolvedExternalModuleType) { return !(resolvedExternalModuleType.flags & 131068 /* TypeFlags.Primitive */ || ts.getObjectFlags(resolvedExternalModuleType) & 1 /* ObjectFlags.Class */ || // `isArrayOrTupleLikeType` is too expensive to use in this auto-imports hot path isArrayType(resolvedExternalModuleType) || isTupleType(resolvedExternalModuleType)); } function getExportsOfSymbol(symbol) { return symbol.flags & 6256 /* SymbolFlags.LateBindingContainer */ ? getResolvedMembersOrExportsOfSymbol(symbol, "resolvedExports" /* MembersOrExportsResolutionKind.resolvedExports */) : symbol.flags & 1536 /* SymbolFlags.Module */ ? getExportsOfModule(symbol) : symbol.exports || emptySymbols; } function getExportsOfModule(moduleSymbol) { var links = getSymbolLinks(moduleSymbol); return links.resolvedExports || (links.resolvedExports = getExportsOfModuleWorker(moduleSymbol)); } /** * Extends one symbol table with another while collecting information on name collisions for error message generation into the `lookupTable` argument * Not passing `lookupTable` and `exportNode` disables this collection, and just extends the tables */ function extendExportSymbols(target, source, lookupTable, exportNode) { if (!source) return; source.forEach(function (sourceSymbol, id) { if (id === "default" /* InternalSymbolName.Default */) return; var targetSymbol = target.get(id); if (!targetSymbol) { target.set(id, sourceSymbol); if (lookupTable && exportNode) { lookupTable.set(id, { specifierText: ts.getTextOfNode(exportNode.moduleSpecifier) }); } } else if (lookupTable && exportNode && targetSymbol && resolveSymbol(targetSymbol) !== resolveSymbol(sourceSymbol)) { var collisionTracker = lookupTable.get(id); if (!collisionTracker.exportsWithDuplicate) { collisionTracker.exportsWithDuplicate = [exportNode]; } else { collisionTracker.exportsWithDuplicate.push(exportNode); } } }); } function getExportsOfModuleWorker(moduleSymbol) { var visitedSymbols = []; // A module defined by an 'export=' consists of one export that needs to be resolved moduleSymbol = resolveExternalModuleSymbol(moduleSymbol); return visit(moduleSymbol) || emptySymbols; // The ES6 spec permits export * declarations in a module to circularly reference the module itself. For example, // module 'a' can 'export * from "b"' and 'b' can 'export * from "a"' without error. function visit(symbol) { if (!(symbol && symbol.exports && ts.pushIfUnique(visitedSymbols, symbol))) { return; } var symbols = new ts.Map(symbol.exports); // All export * declarations are collected in an __export symbol by the binder var exportStars = symbol.exports.get("__export" /* InternalSymbolName.ExportStar */); if (exportStars) { var nestedSymbols = ts.createSymbolTable(); var lookupTable_1 = new ts.Map(); if (exportStars.declarations) { for (var _i = 0, _a = exportStars.declarations; _i < _a.length; _i++) { var node = _a[_i]; var resolvedModule = resolveExternalModuleName(node, node.moduleSpecifier); var exportedSymbols = visit(resolvedModule); extendExportSymbols(nestedSymbols, exportedSymbols, lookupTable_1, node); } } lookupTable_1.forEach(function (_a, id) { var exportsWithDuplicate = _a.exportsWithDuplicate; // It's not an error if the file with multiple `export *`s with duplicate names exports a member with that name itself if (id === "export=" || !(exportsWithDuplicate && exportsWithDuplicate.length) || symbols.has(id)) { return; } for (var _i = 0, exportsWithDuplicate_1 = exportsWithDuplicate; _i < exportsWithDuplicate_1.length; _i++) { var node = exportsWithDuplicate_1[_i]; diagnostics.add(ts.createDiagnosticForNode(node, ts.Diagnostics.Module_0_has_already_exported_a_member_named_1_Consider_explicitly_re_exporting_to_resolve_the_ambiguity, lookupTable_1.get(id).specifierText, ts.unescapeLeadingUnderscores(id))); } }); extendExportSymbols(symbols, nestedSymbols); } return symbols; } } function getMergedSymbol(symbol) { var merged; return symbol && symbol.mergeId && (merged = mergedSymbols[symbol.mergeId]) ? merged : symbol; } function getSymbolOfNode(node) { return getMergedSymbol(node.symbol && getLateBoundSymbol(node.symbol)); } function getParentOfSymbol(symbol) { return getMergedSymbol(symbol.parent && getLateBoundSymbol(symbol.parent)); } function getAlternativeContainingModules(symbol, enclosingDeclaration) { var containingFile = ts.getSourceFileOfNode(enclosingDeclaration); var id = getNodeId(containingFile); var links = getSymbolLinks(symbol); var results; if (links.extendedContainersByFile && (results = links.extendedContainersByFile.get(id))) { return results; } if (containingFile && containingFile.imports) { // Try to make an import using an import already in the enclosing file, if possible for (var _i = 0, _a = containingFile.imports; _i < _a.length; _i++) { var importRef = _a[_i]; if (ts.nodeIsSynthesized(importRef)) continue; // Synthetic names can't be resolved by `resolveExternalModuleName` - they'll cause a debug assert if they error var resolvedModule = resolveExternalModuleName(enclosingDeclaration, importRef, /*ignoreErrors*/ true); if (!resolvedModule) continue; var ref = getAliasForSymbolInContainer(resolvedModule, symbol); if (!ref) continue; results = ts.append(results, resolvedModule); } if (ts.length(results)) { (links.extendedContainersByFile || (links.extendedContainersByFile = new ts.Map())).set(id, results); return results; } } if (links.extendedContainers) { return links.extendedContainers; } // No results from files already being imported by this file - expand search (expensive, but not location-specific, so cached) var otherFiles = host.getSourceFiles(); for (var _b = 0, otherFiles_1 = otherFiles; _b < otherFiles_1.length; _b++) { var file = otherFiles_1[_b]; if (!ts.isExternalModule(file)) continue; var sym = getSymbolOfNode(file); var ref = getAliasForSymbolInContainer(sym, symbol); if (!ref) continue; results = ts.append(results, sym); } return links.extendedContainers = results || ts.emptyArray; } /** * Attempts to find the symbol corresponding to the container a symbol is in - usually this * is just its' `.parent`, but for locals, this value is `undefined` */ function getContainersOfSymbol(symbol, enclosingDeclaration, meaning) { var container = getParentOfSymbol(symbol); // Type parameters end up in the `members` lists but are not externally visible if (container && !(symbol.flags & 262144 /* SymbolFlags.TypeParameter */)) { var additionalContainers = ts.mapDefined(container.declarations, fileSymbolIfFileSymbolExportEqualsContainer); var reexportContainers = enclosingDeclaration && getAlternativeContainingModules(symbol, enclosingDeclaration); var objectLiteralContainer = getVariableDeclarationOfObjectLiteral(container, meaning); if (enclosingDeclaration && container.flags & getQualifiedLeftMeaning(meaning) && getAccessibleSymbolChain(container, enclosingDeclaration, 1920 /* SymbolFlags.Namespace */, /*externalOnly*/ false)) { return ts.append(ts.concatenate(ts.concatenate([container], additionalContainers), reexportContainers), objectLiteralContainer); // This order expresses a preference for the real container if it is in scope } // we potentially have a symbol which is a member of the instance side of something - look for a variable in scope with the container's type // which may be acting like a namespace (eg, `Symbol` acts like a namespace when looking up `Symbol.toStringTag`) var firstVariableMatch = !(container.flags & getQualifiedLeftMeaning(meaning)) && container.flags & 788968 /* SymbolFlags.Type */ && getDeclaredTypeOfSymbol(container).flags & 524288 /* TypeFlags.Object */ && meaning === 111551 /* SymbolFlags.Value */ ? forEachSymbolTableInScope(enclosingDeclaration, function (t) { return ts.forEachEntry(t, function (s) { if (s.flags & getQualifiedLeftMeaning(meaning) && getTypeOfSymbol(s) === getDeclaredTypeOfSymbol(container)) { return s; } }); }) : undefined; var res = firstVariableMatch ? __spreadArray(__spreadArray([firstVariableMatch], additionalContainers, true), [container], false) : __spreadArray(__spreadArray([], additionalContainers, true), [container], false); res = ts.append(res, objectLiteralContainer); res = ts.addRange(res, reexportContainers); return res; } var candidates = ts.mapDefined(symbol.declarations, function (d) { if (!ts.isAmbientModule(d) && d.parent) { // direct children of a module if (hasNonGlobalAugmentationExternalModuleSymbol(d.parent)) { return getSymbolOfNode(d.parent); } // export ='d member of an ambient module if (ts.isModuleBlock(d.parent) && d.parent.parent && resolveExternalModuleSymbol(getSymbolOfNode(d.parent.parent)) === symbol) { return getSymbolOfNode(d.parent.parent); } } if (ts.isClassExpression(d) && ts.isBinaryExpression(d.parent) && d.parent.operatorToken.kind === 63 /* SyntaxKind.EqualsToken */ && ts.isAccessExpression(d.parent.left) && ts.isEntityNameExpression(d.parent.left.expression)) { if (ts.isModuleExportsAccessExpression(d.parent.left) || ts.isExportsIdentifier(d.parent.left.expression)) { return getSymbolOfNode(ts.getSourceFileOfNode(d)); } checkExpressionCached(d.parent.left.expression); return getNodeLinks(d.parent.left.expression).resolvedSymbol; } }); if (!ts.length(candidates)) { return undefined; } return ts.mapDefined(candidates, function (candidate) { return getAliasForSymbolInContainer(candidate, symbol) ? candidate : undefined; }); function fileSymbolIfFileSymbolExportEqualsContainer(d) { return container && getFileSymbolIfFileSymbolExportEqualsContainer(d, container); } } function getVariableDeclarationOfObjectLiteral(symbol, meaning) { // If we're trying to reference some object literal in, eg `var a = { x: 1 }`, the symbol for the literal, `__object`, is distinct // from the symbol of the declaration it is being assigned to. Since we can use the declaration to refer to the literal, however, // we'd like to make that connection here - potentially causing us to paint the declaration's visibility, and therefore the literal. var firstDecl = !!ts.length(symbol.declarations) && ts.first(symbol.declarations); if (meaning & 111551 /* SymbolFlags.Value */ && firstDecl && firstDecl.parent && ts.isVariableDeclaration(firstDecl.parent)) { if (ts.isObjectLiteralExpression(firstDecl) && firstDecl === firstDecl.parent.initializer || ts.isTypeLiteralNode(firstDecl) && firstDecl === firstDecl.parent.type) { return getSymbolOfNode(firstDecl.parent); } } } function getFileSymbolIfFileSymbolExportEqualsContainer(d, container) { var fileSymbol = getExternalModuleContainer(d); var exported = fileSymbol && fileSymbol.exports && fileSymbol.exports.get("export=" /* InternalSymbolName.ExportEquals */); return exported && getSymbolIfSameReference(exported, container) ? fileSymbol : undefined; } function getAliasForSymbolInContainer(container, symbol) { if (container === getParentOfSymbol(symbol)) { // fast path, `symbol` is either already the alias or isn't aliased return symbol; } // Check if container is a thing with an `export=` which points directly at `symbol`, and if so, return // the container itself as the alias for the symbol var exportEquals = container.exports && container.exports.get("export=" /* InternalSymbolName.ExportEquals */); if (exportEquals && getSymbolIfSameReference(exportEquals, symbol)) { return container; } var exports = getExportsOfSymbol(container); var quick = exports.get(symbol.escapedName); if (quick && getSymbolIfSameReference(quick, symbol)) { return quick; } return ts.forEachEntry(exports, function (exported) { if (getSymbolIfSameReference(exported, symbol)) { return exported; } }); } /** * Checks if two symbols, through aliasing and/or merging, refer to the same thing */ function getSymbolIfSameReference(s1, s2) { if (getMergedSymbol(resolveSymbol(getMergedSymbol(s1))) === getMergedSymbol(resolveSymbol(getMergedSymbol(s2)))) { return s1; } } function getExportSymbolOfValueSymbolIfExported(symbol) { return getMergedSymbol(symbol && (symbol.flags & 1048576 /* SymbolFlags.ExportValue */) !== 0 && symbol.exportSymbol || symbol); } function symbolIsValue(symbol) { return !!(symbol.flags & 111551 /* SymbolFlags.Value */ || symbol.flags & 2097152 /* SymbolFlags.Alias */ && resolveAlias(symbol).flags & 111551 /* SymbolFlags.Value */ && !getTypeOnlyAliasDeclaration(symbol)); } function findConstructorDeclaration(node) { var members = node.members; for (var _i = 0, members_3 = members; _i < members_3.length; _i++) { var member = members_3[_i]; if (member.kind === 171 /* SyntaxKind.Constructor */ && ts.nodeIsPresent(member.body)) { return member; } } } function createType(flags) { var result = new Type(checker, flags); typeCount++; result.id = typeCount; ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.recordType(result); return result; } function createOriginType(flags) { return new Type(checker, flags); } function createIntrinsicType(kind, intrinsicName, objectFlags) { if (objectFlags === void 0) { objectFlags = 0; } var type = createType(kind); type.intrinsicName = intrinsicName; type.objectFlags = objectFlags; return type; } function createObjectType(objectFlags, symbol) { var type = createType(524288 /* TypeFlags.Object */); type.objectFlags = objectFlags; type.symbol = symbol; type.members = undefined; type.properties = undefined; type.callSignatures = undefined; type.constructSignatures = undefined; type.indexInfos = undefined; return type; } function createTypeofType() { return getUnionType(ts.arrayFrom(typeofEQFacts.keys(), getStringLiteralType)); } function createTypeParameter(symbol) { var type = createType(262144 /* TypeFlags.TypeParameter */); if (symbol) type.symbol = symbol; return type; } // A reserved member name starts with two underscores, but the third character cannot be an underscore, // @, or #. A third underscore indicates an escaped form of an identifier that started // with at least two underscores. The @ character indicates that the name is denoted by a well known ES // Symbol instance and the # character indicates that the name is a PrivateIdentifier. function isReservedMemberName(name) { return name.charCodeAt(0) === 95 /* CharacterCodes._ */ && name.charCodeAt(1) === 95 /* CharacterCodes._ */ && name.charCodeAt(2) !== 95 /* CharacterCodes._ */ && name.charCodeAt(2) !== 64 /* CharacterCodes.at */ && name.charCodeAt(2) !== 35 /* CharacterCodes.hash */; } function getNamedMembers(members) { var result; members.forEach(function (symbol, id) { if (isNamedMember(symbol, id)) { (result || (result = [])).push(symbol); } }); return result || ts.emptyArray; } function isNamedMember(member, escapedName) { return !isReservedMemberName(escapedName) && symbolIsValue(member); } function getNamedOrIndexSignatureMembers(members) { var result = getNamedMembers(members); var index = getIndexSymbolFromSymbolTable(members); return index ? ts.concatenate(result, [index]) : result; } function setStructuredTypeMembers(type, members, callSignatures, constructSignatures, indexInfos) { var resolved = type; resolved.members = members; resolved.properties = ts.emptyArray; resolved.callSignatures = callSignatures; resolved.constructSignatures = constructSignatures; resolved.indexInfos = indexInfos; // This can loop back to getPropertyOfType() which would crash if `callSignatures` & `constructSignatures` are not initialized. if (members !== emptySymbols) resolved.properties = getNamedMembers(members); return resolved; } function createAnonymousType(symbol, members, callSignatures, constructSignatures, indexInfos) { return setStructuredTypeMembers(createObjectType(16 /* ObjectFlags.Anonymous */, symbol), members, callSignatures, constructSignatures, indexInfos); } function getResolvedTypeWithoutAbstractConstructSignatures(type) { if (type.constructSignatures.length === 0) return type; if (type.objectTypeWithoutAbstractConstructSignatures) return type.objectTypeWithoutAbstractConstructSignatures; var constructSignatures = ts.filter(type.constructSignatures, function (signature) { return !(signature.flags & 4 /* SignatureFlags.Abstract */); }); if (type.constructSignatures === constructSignatures) return type; var typeCopy = createAnonymousType(type.symbol, type.members, type.callSignatures, ts.some(constructSignatures) ? constructSignatures : ts.emptyArray, type.indexInfos); type.objectTypeWithoutAbstractConstructSignatures = typeCopy; typeCopy.objectTypeWithoutAbstractConstructSignatures = typeCopy; return typeCopy; } function forEachSymbolTableInScope(enclosingDeclaration, callback) { var result; var _loop_8 = function (location) { // Locals of a source file are not in scope (because they get merged into the global symbol table) if (location.locals && !isGlobalSourceFile(location)) { if (result = callback(location.locals, /*ignoreQualification*/ undefined, /*isLocalNameLookup*/ true, location)) { return { value: result }; } } switch (location.kind) { case 305 /* SyntaxKind.SourceFile */: if (!ts.isExternalOrCommonJsModule(location)) { break; } // falls through case 261 /* SyntaxKind.ModuleDeclaration */: var sym = getSymbolOfNode(location); // `sym` may not have exports if this module declaration is backed by the symbol for a `const` that's being rewritten // into a namespace - in such cases, it's best to just let the namespace appear empty (the const members couldn't have referred // to one another anyway) if (result = callback((sym === null || sym === void 0 ? void 0 : sym.exports) || emptySymbols, /*ignoreQualification*/ undefined, /*isLocalNameLookup*/ true, location)) { return { value: result }; } break; case 257 /* SyntaxKind.ClassDeclaration */: case 226 /* SyntaxKind.ClassExpression */: case 258 /* SyntaxKind.InterfaceDeclaration */: // Type parameters are bound into `members` lists so they can merge across declarations // This is troublesome, since in all other respects, they behave like locals :cries: // TODO: the below is shared with similar code in `resolveName` - in fact, rephrasing all this symbol // lookup logic in terms of `resolveName` would be nice // The below is used to lookup type parameters within a class or interface, as they are added to the class/interface locals // These can never be latebound, so the symbol's raw members are sufficient. `getMembersOfNode` cannot be used, as it would // trigger resolving late-bound names, which we may already be in the process of doing while we're here! var table_1; // TODO: Should this filtered table be cached in some way? (getSymbolOfNode(location).members || emptySymbols).forEach(function (memberSymbol, key) { if (memberSymbol.flags & (788968 /* SymbolFlags.Type */ & ~67108864 /* SymbolFlags.Assignment */)) { (table_1 || (table_1 = ts.createSymbolTable())).set(key, memberSymbol); } }); if (table_1 && (result = callback(table_1, /*ignoreQualification*/ undefined, /*isLocalNameLookup*/ false, location))) { return { value: result }; } break; } }; for (var location = enclosingDeclaration; location; location = location.parent) { var state_2 = _loop_8(location); if (typeof state_2 === "object") return state_2.value; } return callback(globals, /*ignoreQualification*/ undefined, /*isLocalNameLookup*/ true); } function getQualifiedLeftMeaning(rightMeaning) { // If we are looking in value space, the parent meaning is value, other wise it is namespace return rightMeaning === 111551 /* SymbolFlags.Value */ ? 111551 /* SymbolFlags.Value */ : 1920 /* SymbolFlags.Namespace */; } function getAccessibleSymbolChain(symbol, enclosingDeclaration, meaning, useOnlyExternalAliasing, visitedSymbolTablesMap) { if (visitedSymbolTablesMap === void 0) { visitedSymbolTablesMap = new ts.Map(); } if (!(symbol && !isPropertyOrMethodDeclarationSymbol(symbol))) { return undefined; } var links = getSymbolLinks(symbol); var cache = (links.accessibleChainCache || (links.accessibleChainCache = new ts.Map())); // Go from enclosingDeclaration to the first scope we check, so the cache is keyed off the scope and thus shared more var firstRelevantLocation = forEachSymbolTableInScope(enclosingDeclaration, function (_, __, ___, node) { return node; }); var key = "".concat(useOnlyExternalAliasing ? 0 : 1, "|").concat(firstRelevantLocation && getNodeId(firstRelevantLocation), "|").concat(meaning); if (cache.has(key)) { return cache.get(key); } var id = getSymbolId(symbol); var visitedSymbolTables = visitedSymbolTablesMap.get(id); if (!visitedSymbolTables) { visitedSymbolTablesMap.set(id, visitedSymbolTables = []); } var result = forEachSymbolTableInScope(enclosingDeclaration, getAccessibleSymbolChainFromSymbolTable); cache.set(key, result); return result; /** * @param {ignoreQualification} boolean Set when a symbol is being looked for through the exports of another symbol (meaning we have a route to qualify it already) */ function getAccessibleSymbolChainFromSymbolTable(symbols, ignoreQualification, isLocalNameLookup) { if (!ts.pushIfUnique(visitedSymbolTables, symbols)) { return undefined; } var result = trySymbolTable(symbols, ignoreQualification, isLocalNameLookup); visitedSymbolTables.pop(); return result; } function canQualifySymbol(symbolFromSymbolTable, meaning) { // If the symbol is equivalent and doesn't need further qualification, this symbol is accessible return !needsQualification(symbolFromSymbolTable, enclosingDeclaration, meaning) || // If symbol needs qualification, make sure that parent is accessible, if it is then this symbol is accessible too !!getAccessibleSymbolChain(symbolFromSymbolTable.parent, enclosingDeclaration, getQualifiedLeftMeaning(meaning), useOnlyExternalAliasing, visitedSymbolTablesMap); } function isAccessible(symbolFromSymbolTable, resolvedAliasSymbol, ignoreQualification) { return (symbol === (resolvedAliasSymbol || symbolFromSymbolTable) || getMergedSymbol(symbol) === getMergedSymbol(resolvedAliasSymbol || symbolFromSymbolTable)) && // if the symbolFromSymbolTable is not external module (it could be if it was determined as ambient external module and would be in globals table) // and if symbolFromSymbolTable or alias resolution matches the symbol, // check the symbol can be qualified, it is only then this symbol is accessible !ts.some(symbolFromSymbolTable.declarations, hasNonGlobalAugmentationExternalModuleSymbol) && (ignoreQualification || canQualifySymbol(getMergedSymbol(symbolFromSymbolTable), meaning)); } function trySymbolTable(symbols, ignoreQualification, isLocalNameLookup) { // If symbol is directly available by its name in the symbol table if (isAccessible(symbols.get(symbol.escapedName), /*resolvedAliasSymbol*/ undefined, ignoreQualification)) { return [symbol]; } // Check if symbol is any of the aliases in scope var result = ts.forEachEntry(symbols, function (symbolFromSymbolTable) { if (symbolFromSymbolTable.flags & 2097152 /* SymbolFlags.Alias */ && symbolFromSymbolTable.escapedName !== "export=" /* InternalSymbolName.ExportEquals */ && symbolFromSymbolTable.escapedName !== "default" /* InternalSymbolName.Default */ && !(ts.isUMDExportSymbol(symbolFromSymbolTable) && enclosingDeclaration && ts.isExternalModule(ts.getSourceFileOfNode(enclosingDeclaration))) // If `!useOnlyExternalAliasing`, we can use any type of alias to get the name && (!useOnlyExternalAliasing || ts.some(symbolFromSymbolTable.declarations, ts.isExternalModuleImportEqualsDeclaration)) // If we're looking up a local name to reference directly, omit namespace reexports, otherwise when we're trawling through an export list to make a dotted name, we can keep it && (isLocalNameLookup ? !ts.some(symbolFromSymbolTable.declarations, ts.isNamespaceReexportDeclaration) : true) // While exports are generally considered to be in scope, export-specifier declared symbols are _not_ // See similar comment in `resolveName` for details && (ignoreQualification || !ts.getDeclarationOfKind(symbolFromSymbolTable, 275 /* SyntaxKind.ExportSpecifier */))) { var resolvedImportedSymbol = resolveAlias(symbolFromSymbolTable); var candidate = getCandidateListForSymbol(symbolFromSymbolTable, resolvedImportedSymbol, ignoreQualification); if (candidate) { return candidate; } } if (symbolFromSymbolTable.escapedName === symbol.escapedName && symbolFromSymbolTable.exportSymbol) { if (isAccessible(getMergedSymbol(symbolFromSymbolTable.exportSymbol), /*aliasSymbol*/ undefined, ignoreQualification)) { return [symbol]; } } }); // If there's no result and we're looking at the global symbol table, treat `globalThis` like an alias and try to lookup thru that return result || (symbols === globals ? getCandidateListForSymbol(globalThisSymbol, globalThisSymbol, ignoreQualification) : undefined); } function getCandidateListForSymbol(symbolFromSymbolTable, resolvedImportedSymbol, ignoreQualification) { if (isAccessible(symbolFromSymbolTable, resolvedImportedSymbol, ignoreQualification)) { return [symbolFromSymbolTable]; } // Look in the exported members, if we can find accessibleSymbolChain, symbol is accessible using this chain // but only if the symbolFromSymbolTable can be qualified var candidateTable = getExportsOfSymbol(resolvedImportedSymbol); var accessibleSymbolsFromExports = candidateTable && getAccessibleSymbolChainFromSymbolTable(candidateTable, /*ignoreQualification*/ true); if (accessibleSymbolsFromExports && canQualifySymbol(symbolFromSymbolTable, getQualifiedLeftMeaning(meaning))) { return [symbolFromSymbolTable].concat(accessibleSymbolsFromExports); } } } function needsQualification(symbol, enclosingDeclaration, meaning) { var qualify = false; forEachSymbolTableInScope(enclosingDeclaration, function (symbolTable) { // If symbol of this name is not available in the symbol table we are ok var symbolFromSymbolTable = getMergedSymbol(symbolTable.get(symbol.escapedName)); if (!symbolFromSymbolTable) { // Continue to the next symbol table return false; } // If the symbol with this name is present it should refer to the symbol if (symbolFromSymbolTable === symbol) { // No need to qualify return true; } // Qualify if the symbol from symbol table has same meaning as expected symbolFromSymbolTable = (symbolFromSymbolTable.flags & 2097152 /* SymbolFlags.Alias */ && !ts.getDeclarationOfKind(symbolFromSymbolTable, 275 /* SyntaxKind.ExportSpecifier */)) ? resolveAlias(symbolFromSymbolTable) : symbolFromSymbolTable; if (symbolFromSymbolTable.flags & meaning) { qualify = true; return true; } // Continue to the next symbol table return false; }); return qualify; } function isPropertyOrMethodDeclarationSymbol(symbol) { if (symbol.declarations && symbol.declarations.length) { for (var _i = 0, _a = symbol.declarations; _i < _a.length; _i++) { var declaration = _a[_i]; switch (declaration.kind) { case 167 /* SyntaxKind.PropertyDeclaration */: case 169 /* SyntaxKind.MethodDeclaration */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: continue; default: return false; } } return true; } return false; } function isTypeSymbolAccessible(typeSymbol, enclosingDeclaration) { var access = isSymbolAccessibleWorker(typeSymbol, enclosingDeclaration, 788968 /* SymbolFlags.Type */, /*shouldComputeAliasesToMakeVisible*/ false, /*allowModules*/ true); return access.accessibility === 0 /* SymbolAccessibility.Accessible */; } function isValueSymbolAccessible(typeSymbol, enclosingDeclaration) { var access = isSymbolAccessibleWorker(typeSymbol, enclosingDeclaration, 111551 /* SymbolFlags.Value */, /*shouldComputeAliasesToMakeVisible*/ false, /*allowModules*/ true); return access.accessibility === 0 /* SymbolAccessibility.Accessible */; } function isSymbolAccessibleByFlags(typeSymbol, enclosingDeclaration, flags) { var access = isSymbolAccessibleWorker(typeSymbol, enclosingDeclaration, flags, /*shouldComputeAliasesToMakeVisible*/ false, /*allowModules*/ false); return access.accessibility === 0 /* SymbolAccessibility.Accessible */; } function isAnySymbolAccessible(symbols, enclosingDeclaration, initialSymbol, meaning, shouldComputeAliasesToMakeVisible, allowModules) { if (!ts.length(symbols)) return; var hadAccessibleChain; var earlyModuleBail = false; for (var _i = 0, _a = symbols; _i < _a.length; _i++) { var symbol = _a[_i]; // Symbol is accessible if it by itself is accessible var accessibleSymbolChain = getAccessibleSymbolChain(symbol, enclosingDeclaration, meaning, /*useOnlyExternalAliasing*/ false); if (accessibleSymbolChain) { hadAccessibleChain = symbol; var hasAccessibleDeclarations = hasVisibleDeclarations(accessibleSymbolChain[0], shouldComputeAliasesToMakeVisible); if (hasAccessibleDeclarations) { return hasAccessibleDeclarations; } } if (allowModules) { if (ts.some(symbol.declarations, hasNonGlobalAugmentationExternalModuleSymbol)) { if (shouldComputeAliasesToMakeVisible) { earlyModuleBail = true; // Generally speaking, we want to use the aliases that already exist to refer to a module, if present // In order to do so, we need to find those aliases in order to retain them in declaration emit; so // if we are in declaration emit, we cannot use the fast path for module visibility until we've exhausted // all other visibility options (in order to capture the possible aliases used to reference the module) continue; } // Any meaning of a module symbol is always accessible via an `import` type return { accessibility: 0 /* SymbolAccessibility.Accessible */ }; } } // If we haven't got the accessible symbol, it doesn't mean the symbol is actually inaccessible. // It could be a qualified symbol and hence verify the path // e.g.: // module m { // export class c { // } // } // const x: typeof m.c // In the above example when we start with checking if typeof m.c symbol is accessible, // we are going to see if c can be accessed in scope directly. // But it can't, hence the accessible is going to be undefined, but that doesn't mean m.c is inaccessible // It is accessible if the parent m is accessible because then m.c can be accessed through qualification var containers = getContainersOfSymbol(symbol, enclosingDeclaration, meaning); var parentResult = isAnySymbolAccessible(containers, enclosingDeclaration, initialSymbol, initialSymbol === symbol ? getQualifiedLeftMeaning(meaning) : meaning, shouldComputeAliasesToMakeVisible, allowModules); if (parentResult) { return parentResult; } } if (earlyModuleBail) { return { accessibility: 0 /* SymbolAccessibility.Accessible */ }; } if (hadAccessibleChain) { return { accessibility: 1 /* SymbolAccessibility.NotAccessible */, errorSymbolName: symbolToString(initialSymbol, enclosingDeclaration, meaning), errorModuleName: hadAccessibleChain !== initialSymbol ? symbolToString(hadAccessibleChain, enclosingDeclaration, 1920 /* SymbolFlags.Namespace */) : undefined, }; } } /** * Check if the given symbol in given enclosing declaration is accessible and mark all associated alias to be visible if requested * * @param symbol a Symbol to check if accessible * @param enclosingDeclaration a Node containing reference to the symbol * @param meaning a SymbolFlags to check if such meaning of the symbol is accessible * @param shouldComputeAliasToMakeVisible a boolean value to indicate whether to return aliases to be mark visible in case the symbol is accessible */ function isSymbolAccessible(symbol, enclosingDeclaration, meaning, shouldComputeAliasesToMakeVisible) { return isSymbolAccessibleWorker(symbol, enclosingDeclaration, meaning, shouldComputeAliasesToMakeVisible, /*allowModules*/ true); } function isSymbolAccessibleWorker(symbol, enclosingDeclaration, meaning, shouldComputeAliasesToMakeVisible, allowModules) { if (symbol && enclosingDeclaration) { var result = isAnySymbolAccessible([symbol], enclosingDeclaration, symbol, meaning, shouldComputeAliasesToMakeVisible, allowModules); if (result) { return result; } // This could be a symbol that is not exported in the external module // or it could be a symbol from different external module that is not aliased and hence cannot be named var symbolExternalModule = ts.forEach(symbol.declarations, getExternalModuleContainer); if (symbolExternalModule) { var enclosingExternalModule = getExternalModuleContainer(enclosingDeclaration); if (symbolExternalModule !== enclosingExternalModule) { // name from different external module that is not visible return { accessibility: 2 /* SymbolAccessibility.CannotBeNamed */, errorSymbolName: symbolToString(symbol, enclosingDeclaration, meaning), errorModuleName: symbolToString(symbolExternalModule), errorNode: ts.isInJSFile(enclosingDeclaration) ? enclosingDeclaration : undefined, }; } } // Just a local name that is not accessible return { accessibility: 1 /* SymbolAccessibility.NotAccessible */, errorSymbolName: symbolToString(symbol, enclosingDeclaration, meaning), }; } return { accessibility: 0 /* SymbolAccessibility.Accessible */ }; } function getExternalModuleContainer(declaration) { var node = ts.findAncestor(declaration, hasExternalModuleSymbol); return node && getSymbolOfNode(node); } function hasExternalModuleSymbol(declaration) { return ts.isAmbientModule(declaration) || (declaration.kind === 305 /* SyntaxKind.SourceFile */ && ts.isExternalOrCommonJsModule(declaration)); } function hasNonGlobalAugmentationExternalModuleSymbol(declaration) { return ts.isModuleWithStringLiteralName(declaration) || (declaration.kind === 305 /* SyntaxKind.SourceFile */ && ts.isExternalOrCommonJsModule(declaration)); } function hasVisibleDeclarations(symbol, shouldComputeAliasToMakeVisible) { var aliasesToMakeVisible; if (!ts.every(ts.filter(symbol.declarations, function (d) { return d.kind !== 79 /* SyntaxKind.Identifier */; }), getIsDeclarationVisible)) { return undefined; } return { accessibility: 0 /* SymbolAccessibility.Accessible */, aliasesToMakeVisible: aliasesToMakeVisible }; function getIsDeclarationVisible(declaration) { var _a, _b; if (!isDeclarationVisible(declaration)) { // Mark the unexported alias as visible if its parent is visible // because these kind of aliases can be used to name types in declaration file var anyImportSyntax = getAnyImportSyntax(declaration); if (anyImportSyntax && !ts.hasSyntacticModifier(anyImportSyntax, 1 /* ModifierFlags.Export */) && // import clause without export isDeclarationVisible(anyImportSyntax.parent)) { return addVisibleAlias(declaration, anyImportSyntax); } else if (ts.isVariableDeclaration(declaration) && ts.isVariableStatement(declaration.parent.parent) && !ts.hasSyntacticModifier(declaration.parent.parent, 1 /* ModifierFlags.Export */) && // unexported variable statement isDeclarationVisible(declaration.parent.parent.parent)) { return addVisibleAlias(declaration, declaration.parent.parent); } else if (ts.isLateVisibilityPaintedStatement(declaration) // unexported top-level statement && !ts.hasSyntacticModifier(declaration, 1 /* ModifierFlags.Export */) && isDeclarationVisible(declaration.parent)) { return addVisibleAlias(declaration, declaration); } else if (symbol.flags & 2097152 /* SymbolFlags.Alias */ && ts.isBindingElement(declaration) && ts.isInJSFile(declaration) && ((_a = declaration.parent) === null || _a === void 0 ? void 0 : _a.parent) // exported import-like top-level JS require statement && ts.isVariableDeclaration(declaration.parent.parent) && ((_b = declaration.parent.parent.parent) === null || _b === void 0 ? void 0 : _b.parent) && ts.isVariableStatement(declaration.parent.parent.parent.parent) && !ts.hasSyntacticModifier(declaration.parent.parent.parent.parent, 1 /* ModifierFlags.Export */) && declaration.parent.parent.parent.parent.parent // check if the thing containing the variable statement is visible (ie, the file) && isDeclarationVisible(declaration.parent.parent.parent.parent.parent)) { return addVisibleAlias(declaration, declaration.parent.parent.parent.parent); } // Declaration is not visible return false; } return true; } function addVisibleAlias(declaration, aliasingStatement) { // In function "buildTypeDisplay" where we decide whether to write type-alias or serialize types, // we want to just check if type- alias is accessible or not but we don't care about emitting those alias at that time // since we will do the emitting later in trackSymbol. if (shouldComputeAliasToMakeVisible) { getNodeLinks(declaration).isVisible = true; aliasesToMakeVisible = ts.appendIfUnique(aliasesToMakeVisible, aliasingStatement); } return true; } } function isEntityNameVisible(entityName, enclosingDeclaration) { // get symbol of the first identifier of the entityName var meaning; if (entityName.parent.kind === 181 /* SyntaxKind.TypeQuery */ || entityName.parent.kind === 228 /* SyntaxKind.ExpressionWithTypeArguments */ && !ts.isPartOfTypeNode(entityName.parent) || entityName.parent.kind === 162 /* SyntaxKind.ComputedPropertyName */) { // Typeof value meaning = 111551 /* SymbolFlags.Value */ | 1048576 /* SymbolFlags.ExportValue */; } else if (entityName.kind === 161 /* SyntaxKind.QualifiedName */ || entityName.kind === 206 /* SyntaxKind.PropertyAccessExpression */ || entityName.parent.kind === 265 /* SyntaxKind.ImportEqualsDeclaration */) { // Left identifier from type reference or TypeAlias // Entity name of the import declaration meaning = 1920 /* SymbolFlags.Namespace */; } else { // Type Reference or TypeAlias entity = Identifier meaning = 788968 /* SymbolFlags.Type */; } var firstIdentifier = ts.getFirstIdentifier(entityName); var symbol = resolveName(enclosingDeclaration, firstIdentifier.escapedText, meaning, /*nodeNotFoundErrorMessage*/ undefined, /*nameArg*/ undefined, /*isUse*/ false); if (symbol && symbol.flags & 262144 /* SymbolFlags.TypeParameter */ && meaning & 788968 /* SymbolFlags.Type */) { return { accessibility: 0 /* SymbolAccessibility.Accessible */ }; } // Verify if the symbol is accessible return (symbol && hasVisibleDeclarations(symbol, /*shouldComputeAliasToMakeVisible*/ true)) || { accessibility: 1 /* SymbolAccessibility.NotAccessible */, errorSymbolName: ts.getTextOfNode(firstIdentifier), errorNode: firstIdentifier }; } function symbolToString(symbol, enclosingDeclaration, meaning, flags, writer) { if (flags === void 0) { flags = 4 /* SymbolFormatFlags.AllowAnyNodeKind */; } var nodeFlags = 70221824 /* NodeBuilderFlags.IgnoreErrors */; if (flags & 2 /* SymbolFormatFlags.UseOnlyExternalAliasing */) { nodeFlags |= 128 /* NodeBuilderFlags.UseOnlyExternalAliasing */; } if (flags & 1 /* SymbolFormatFlags.WriteTypeParametersOrArguments */) { nodeFlags |= 512 /* NodeBuilderFlags.WriteTypeParametersInQualifiedName */; } if (flags & 8 /* SymbolFormatFlags.UseAliasDefinedOutsideCurrentScope */) { nodeFlags |= 16384 /* NodeBuilderFlags.UseAliasDefinedOutsideCurrentScope */; } if (flags & 16 /* SymbolFormatFlags.DoNotIncludeSymbolChain */) { nodeFlags |= 134217728 /* NodeBuilderFlags.DoNotIncludeSymbolChain */; } var builder = flags & 4 /* SymbolFormatFlags.AllowAnyNodeKind */ ? nodeBuilder.symbolToExpression : nodeBuilder.symbolToEntityName; return writer ? symbolToStringWorker(writer).getText() : ts.usingSingleLineStringWriter(symbolToStringWorker); function symbolToStringWorker(writer) { var entity = builder(symbol, meaning, enclosingDeclaration, nodeFlags); // TODO: GH#18217 // add neverAsciiEscape for GH#39027 var printer = (enclosingDeclaration === null || enclosingDeclaration === void 0 ? void 0 : enclosingDeclaration.kind) === 305 /* SyntaxKind.SourceFile */ ? ts.createPrinter({ removeComments: true, neverAsciiEscape: true }) : ts.createPrinter({ removeComments: true }); var sourceFile = enclosingDeclaration && ts.getSourceFileOfNode(enclosingDeclaration); printer.writeNode(4 /* EmitHint.Unspecified */, entity, /*sourceFile*/ sourceFile, writer); return writer; } } function signatureToString(signature, enclosingDeclaration, flags, kind, writer) { if (flags === void 0) { flags = 0 /* TypeFormatFlags.None */; } return writer ? signatureToStringWorker(writer).getText() : ts.usingSingleLineStringWriter(signatureToStringWorker); function signatureToStringWorker(writer) { var sigOutput; if (flags & 262144 /* TypeFormatFlags.WriteArrowStyleSignature */) { sigOutput = kind === 1 /* SignatureKind.Construct */ ? 180 /* SyntaxKind.ConstructorType */ : 179 /* SyntaxKind.FunctionType */; } else { sigOutput = kind === 1 /* SignatureKind.Construct */ ? 175 /* SyntaxKind.ConstructSignature */ : 174 /* SyntaxKind.CallSignature */; } var sig = nodeBuilder.signatureToSignatureDeclaration(signature, sigOutput, enclosingDeclaration, toNodeBuilderFlags(flags) | 70221824 /* NodeBuilderFlags.IgnoreErrors */ | 512 /* NodeBuilderFlags.WriteTypeParametersInQualifiedName */); var printer = ts.createPrinter({ removeComments: true, omitTrailingSemicolon: true }); var sourceFile = enclosingDeclaration && ts.getSourceFileOfNode(enclosingDeclaration); printer.writeNode(4 /* EmitHint.Unspecified */, sig, /*sourceFile*/ sourceFile, ts.getTrailingSemicolonDeferringWriter(writer)); // TODO: GH#18217 return writer; } } function typeToString(type, enclosingDeclaration, flags, writer) { if (flags === void 0) { flags = 1048576 /* TypeFormatFlags.AllowUniqueESSymbolType */ | 16384 /* TypeFormatFlags.UseAliasDefinedOutsideCurrentScope */; } if (writer === void 0) { writer = ts.createTextWriter(""); } var noTruncation = compilerOptions.noErrorTruncation || flags & 1 /* TypeFormatFlags.NoTruncation */; var typeNode = nodeBuilder.typeToTypeNode(type, enclosingDeclaration, toNodeBuilderFlags(flags) | 70221824 /* NodeBuilderFlags.IgnoreErrors */ | (noTruncation ? 1 /* NodeBuilderFlags.NoTruncation */ : 0), writer); if (typeNode === undefined) return ts.Debug.fail("should always get typenode"); // The unresolved type gets a synthesized comment on `any` to hint to users that it's not a plain `any`. // Otherwise, we always strip comments out. var options = { removeComments: type !== unresolvedType }; var printer = ts.createPrinter(options); var sourceFile = enclosingDeclaration && ts.getSourceFileOfNode(enclosingDeclaration); printer.writeNode(4 /* EmitHint.Unspecified */, typeNode, /*sourceFile*/ sourceFile, writer); var result = writer.getText(); var maxLength = noTruncation ? ts.noTruncationMaximumTruncationLength * 2 : ts.defaultMaximumTruncationLength * 2; if (maxLength && result && result.length >= maxLength) { return result.substr(0, maxLength - "...".length) + "..."; } return result; } function getTypeNamesForErrorDisplay(left, right) { var leftStr = symbolValueDeclarationIsContextSensitive(left.symbol) ? typeToString(left, left.symbol.valueDeclaration) : typeToString(left); var rightStr = symbolValueDeclarationIsContextSensitive(right.symbol) ? typeToString(right, right.symbol.valueDeclaration) : typeToString(right); if (leftStr === rightStr) { leftStr = getTypeNameForErrorDisplay(left); rightStr = getTypeNameForErrorDisplay(right); } return [leftStr, rightStr]; } function getTypeNameForErrorDisplay(type) { return typeToString(type, /*enclosingDeclaration*/ undefined, 64 /* TypeFormatFlags.UseFullyQualifiedType */); } function symbolValueDeclarationIsContextSensitive(symbol) { return symbol && !!symbol.valueDeclaration && ts.isExpression(symbol.valueDeclaration) && !isContextSensitive(symbol.valueDeclaration); } function toNodeBuilderFlags(flags) { if (flags === void 0) { flags = 0 /* TypeFormatFlags.None */; } return flags & 814775659 /* TypeFormatFlags.NodeBuilderFlagsMask */; } function isClassInstanceSide(type) { return !!type.symbol && !!(type.symbol.flags & 32 /* SymbolFlags.Class */) && (type === getDeclaredTypeOfClassOrInterface(type.symbol) || (!!(type.flags & 524288 /* TypeFlags.Object */) && !!(ts.getObjectFlags(type) & 16777216 /* ObjectFlags.IsClassInstanceClone */))); } function createNodeBuilder() { return { typeToTypeNode: function (type, enclosingDeclaration, flags, tracker) { return withContext(enclosingDeclaration, flags, tracker, function (context) { return typeToTypeNodeHelper(type, context); }); }, indexInfoToIndexSignatureDeclaration: function (indexInfo, enclosingDeclaration, flags, tracker) { return withContext(enclosingDeclaration, flags, tracker, function (context) { return indexInfoToIndexSignatureDeclarationHelper(indexInfo, context, /*typeNode*/ undefined); }); }, signatureToSignatureDeclaration: function (signature, kind, enclosingDeclaration, flags, tracker) { return withContext(enclosingDeclaration, flags, tracker, function (context) { return signatureToSignatureDeclarationHelper(signature, kind, context); }); }, symbolToEntityName: function (symbol, meaning, enclosingDeclaration, flags, tracker) { return withContext(enclosingDeclaration, flags, tracker, function (context) { return symbolToName(symbol, context, meaning, /*expectsIdentifier*/ false); }); }, symbolToExpression: function (symbol, meaning, enclosingDeclaration, flags, tracker) { return withContext(enclosingDeclaration, flags, tracker, function (context) { return symbolToExpression(symbol, context, meaning); }); }, symbolToTypeParameterDeclarations: function (symbol, enclosingDeclaration, flags, tracker) { return withContext(enclosingDeclaration, flags, tracker, function (context) { return typeParametersToTypeParameterDeclarations(symbol, context); }); }, symbolToParameterDeclaration: function (symbol, enclosingDeclaration, flags, tracker) { return withContext(enclosingDeclaration, flags, tracker, function (context) { return symbolToParameterDeclaration(symbol, context); }); }, typeParameterToDeclaration: function (parameter, enclosingDeclaration, flags, tracker) { return withContext(enclosingDeclaration, flags, tracker, function (context) { return typeParameterToDeclaration(parameter, context); }); }, symbolTableToDeclarationStatements: function (symbolTable, enclosingDeclaration, flags, tracker, bundled) { return withContext(enclosingDeclaration, flags, tracker, function (context) { return symbolTableToDeclarationStatements(symbolTable, context, bundled); }); }, }; function withContext(enclosingDeclaration, flags, tracker, cb) { var _a, _b; ts.Debug.assert(enclosingDeclaration === undefined || (enclosingDeclaration.flags & 8 /* NodeFlags.Synthesized */) === 0); var context = { enclosingDeclaration: enclosingDeclaration, flags: flags || 0 /* NodeBuilderFlags.None */, // If no full tracker is provided, fake up a dummy one with a basic limited-functionality moduleResolverHost tracker: tracker && tracker.trackSymbol ? tracker : { trackSymbol: function () { return false; }, moduleResolverHost: flags & 134217728 /* NodeBuilderFlags.DoNotIncludeSymbolChain */ ? { getCommonSourceDirectory: !!host.getCommonSourceDirectory ? function () { return host.getCommonSourceDirectory(); } : function () { return ""; }, getCurrentDirectory: function () { return host.getCurrentDirectory(); }, getSymlinkCache: ts.maybeBind(host, host.getSymlinkCache), getPackageJsonInfoCache: function () { var _a; return (_a = host.getPackageJsonInfoCache) === null || _a === void 0 ? void 0 : _a.call(host); }, useCaseSensitiveFileNames: ts.maybeBind(host, host.useCaseSensitiveFileNames), redirectTargetsMap: host.redirectTargetsMap, getProjectReferenceRedirect: function (fileName) { return host.getProjectReferenceRedirect(fileName); }, isSourceOfProjectReferenceRedirect: function (fileName) { return host.isSourceOfProjectReferenceRedirect(fileName); }, fileExists: function (fileName) { return host.fileExists(fileName); }, getFileIncludeReasons: function () { return host.getFileIncludeReasons(); }, readFile: host.readFile ? (function (fileName) { return host.readFile(fileName); }) : undefined, } : undefined }, encounteredError: false, reportedDiagnostic: false, visitedTypes: undefined, symbolDepth: undefined, inferTypeParameters: undefined, approximateLength: 0 }; context.tracker = wrapSymbolTrackerToReportForContext(context, context.tracker); var resultingNode = cb(context); if (context.truncating && context.flags & 1 /* NodeBuilderFlags.NoTruncation */) { (_b = (_a = context.tracker) === null || _a === void 0 ? void 0 : _a.reportTruncationError) === null || _b === void 0 ? void 0 : _b.call(_a); } return context.encounteredError ? undefined : resultingNode; } function wrapSymbolTrackerToReportForContext(context, tracker) { var oldTrackSymbol = tracker.trackSymbol; return __assign(__assign({}, tracker), { reportCyclicStructureError: wrapReportedDiagnostic(tracker.reportCyclicStructureError), reportInaccessibleThisError: wrapReportedDiagnostic(tracker.reportInaccessibleThisError), reportInaccessibleUniqueSymbolError: wrapReportedDiagnostic(tracker.reportInaccessibleUniqueSymbolError), reportLikelyUnsafeImportRequiredError: wrapReportedDiagnostic(tracker.reportLikelyUnsafeImportRequiredError), reportNonlocalAugmentation: wrapReportedDiagnostic(tracker.reportNonlocalAugmentation), reportPrivateInBaseOfClassExpression: wrapReportedDiagnostic(tracker.reportPrivateInBaseOfClassExpression), reportNonSerializableProperty: wrapReportedDiagnostic(tracker.reportNonSerializableProperty), trackSymbol: oldTrackSymbol && (function () { var args = []; for (var _i = 0; _i < arguments.length; _i++) { args[_i] = arguments[_i]; } var result = oldTrackSymbol.apply(void 0, args); if (result) { context.reportedDiagnostic = true; } return result; }) }); function wrapReportedDiagnostic(method) { if (!method) { return method; } return (function () { var args = []; for (var _i = 0; _i < arguments.length; _i++) { args[_i] = arguments[_i]; } context.reportedDiagnostic = true; return method.apply(void 0, args); }); } } function checkTruncationLength(context) { if (context.truncating) return context.truncating; return context.truncating = context.approximateLength > ((context.flags & 1 /* NodeBuilderFlags.NoTruncation */) ? ts.noTruncationMaximumTruncationLength : ts.defaultMaximumTruncationLength); } function typeToTypeNodeHelper(type, context) { if (cancellationToken && cancellationToken.throwIfCancellationRequested) { cancellationToken.throwIfCancellationRequested(); } var inTypeAlias = context.flags & 8388608 /* NodeBuilderFlags.InTypeAlias */; context.flags &= ~8388608 /* NodeBuilderFlags.InTypeAlias */; if (!type) { if (!(context.flags & 262144 /* NodeBuilderFlags.AllowEmptyUnionOrIntersection */)) { context.encounteredError = true; return undefined; // TODO: GH#18217 } context.approximateLength += 3; return ts.factory.createKeywordTypeNode(130 /* SyntaxKind.AnyKeyword */); } if (!(context.flags & 536870912 /* NodeBuilderFlags.NoTypeReduction */)) { type = getReducedType(type); } if (type.flags & 1 /* TypeFlags.Any */) { if (type.aliasSymbol) { return ts.factory.createTypeReferenceNode(symbolToEntityNameNode(type.aliasSymbol), mapToTypeNodes(type.aliasTypeArguments, context)); } if (type === unresolvedType) { return ts.addSyntheticLeadingComment(ts.factory.createKeywordTypeNode(130 /* SyntaxKind.AnyKeyword */), 3 /* SyntaxKind.MultiLineCommentTrivia */, "unresolved"); } context.approximateLength += 3; return ts.factory.createKeywordTypeNode(type === intrinsicMarkerType ? 138 /* SyntaxKind.IntrinsicKeyword */ : 130 /* SyntaxKind.AnyKeyword */); } if (type.flags & 2 /* TypeFlags.Unknown */) { return ts.factory.createKeywordTypeNode(155 /* SyntaxKind.UnknownKeyword */); } if (type.flags & 4 /* TypeFlags.String */) { context.approximateLength += 6; return ts.factory.createKeywordTypeNode(150 /* SyntaxKind.StringKeyword */); } if (type.flags & 8 /* TypeFlags.Number */) { context.approximateLength += 6; return ts.factory.createKeywordTypeNode(147 /* SyntaxKind.NumberKeyword */); } if (type.flags & 64 /* TypeFlags.BigInt */) { context.approximateLength += 6; return ts.factory.createKeywordTypeNode(158 /* SyntaxKind.BigIntKeyword */); } if (type.flags & 16 /* TypeFlags.Boolean */ && !type.aliasSymbol) { context.approximateLength += 7; return ts.factory.createKeywordTypeNode(133 /* SyntaxKind.BooleanKeyword */); } if (type.flags & 1024 /* TypeFlags.EnumLiteral */ && !(type.flags & 1048576 /* TypeFlags.Union */)) { var parentSymbol = getParentOfSymbol(type.symbol); var parentName = symbolToTypeNode(parentSymbol, context, 788968 /* SymbolFlags.Type */); if (getDeclaredTypeOfSymbol(parentSymbol) === type) { return parentName; } var memberName = ts.symbolName(type.symbol); if (ts.isIdentifierText(memberName, 0 /* ScriptTarget.ES3 */)) { return appendReferenceToType(parentName, ts.factory.createTypeReferenceNode(memberName, /*typeArguments*/ undefined)); } if (ts.isImportTypeNode(parentName)) { parentName.isTypeOf = true; // mutably update, node is freshly manufactured anyhow return ts.factory.createIndexedAccessTypeNode(parentName, ts.factory.createLiteralTypeNode(ts.factory.createStringLiteral(memberName))); } else if (ts.isTypeReferenceNode(parentName)) { return ts.factory.createIndexedAccessTypeNode(ts.factory.createTypeQueryNode(parentName.typeName), ts.factory.createLiteralTypeNode(ts.factory.createStringLiteral(memberName))); } else { return ts.Debug.fail("Unhandled type node kind returned from `symbolToTypeNode`."); } } if (type.flags & 1056 /* TypeFlags.EnumLike */) { return symbolToTypeNode(type.symbol, context, 788968 /* SymbolFlags.Type */); } if (type.flags & 128 /* TypeFlags.StringLiteral */) { context.approximateLength += (type.value.length + 2); return ts.factory.createLiteralTypeNode(ts.setEmitFlags(ts.factory.createStringLiteral(type.value, !!(context.flags & 268435456 /* NodeBuilderFlags.UseSingleQuotesForStringLiteralType */)), 16777216 /* EmitFlags.NoAsciiEscaping */)); } if (type.flags & 256 /* TypeFlags.NumberLiteral */) { var value = type.value; context.approximateLength += ("" + value).length; return ts.factory.createLiteralTypeNode(value < 0 ? ts.factory.createPrefixUnaryExpression(40 /* SyntaxKind.MinusToken */, ts.factory.createNumericLiteral(-value)) : ts.factory.createNumericLiteral(value)); } if (type.flags & 2048 /* TypeFlags.BigIntLiteral */) { context.approximateLength += (ts.pseudoBigIntToString(type.value).length) + 1; return ts.factory.createLiteralTypeNode((ts.factory.createBigIntLiteral(type.value))); } if (type.flags & 512 /* TypeFlags.BooleanLiteral */) { context.approximateLength += type.intrinsicName.length; return ts.factory.createLiteralTypeNode(type.intrinsicName === "true" ? ts.factory.createTrue() : ts.factory.createFalse()); } if (type.flags & 8192 /* TypeFlags.UniqueESSymbol */) { if (!(context.flags & 1048576 /* NodeBuilderFlags.AllowUniqueESSymbolType */)) { if (isValueSymbolAccessible(type.symbol, context.enclosingDeclaration)) { context.approximateLength += 6; return symbolToTypeNode(type.symbol, context, 111551 /* SymbolFlags.Value */); } if (context.tracker.reportInaccessibleUniqueSymbolError) { context.tracker.reportInaccessibleUniqueSymbolError(); } } context.approximateLength += 13; return ts.factory.createTypeOperatorNode(154 /* SyntaxKind.UniqueKeyword */, ts.factory.createKeywordTypeNode(151 /* SyntaxKind.SymbolKeyword */)); } if (type.flags & 16384 /* TypeFlags.Void */) { context.approximateLength += 4; return ts.factory.createKeywordTypeNode(114 /* SyntaxKind.VoidKeyword */); } if (type.flags & 32768 /* TypeFlags.Undefined */) { context.approximateLength += 9; return ts.factory.createKeywordTypeNode(153 /* SyntaxKind.UndefinedKeyword */); } if (type.flags & 65536 /* TypeFlags.Null */) { context.approximateLength += 4; return ts.factory.createLiteralTypeNode(ts.factory.createNull()); } if (type.flags & 131072 /* TypeFlags.Never */) { context.approximateLength += 5; return ts.factory.createKeywordTypeNode(143 /* SyntaxKind.NeverKeyword */); } if (type.flags & 4096 /* TypeFlags.ESSymbol */) { context.approximateLength += 6; return ts.factory.createKeywordTypeNode(151 /* SyntaxKind.SymbolKeyword */); } if (type.flags & 67108864 /* TypeFlags.NonPrimitive */) { context.approximateLength += 6; return ts.factory.createKeywordTypeNode(148 /* SyntaxKind.ObjectKeyword */); } if (ts.isThisTypeParameter(type)) { if (context.flags & 4194304 /* NodeBuilderFlags.InObjectTypeLiteral */) { if (!context.encounteredError && !(context.flags & 32768 /* NodeBuilderFlags.AllowThisInObjectLiteral */)) { context.encounteredError = true; } if (context.tracker.reportInaccessibleThisError) { context.tracker.reportInaccessibleThisError(); } } context.approximateLength += 4; return ts.factory.createThisTypeNode(); } if (!inTypeAlias && type.aliasSymbol && (context.flags & 16384 /* NodeBuilderFlags.UseAliasDefinedOutsideCurrentScope */ || isTypeSymbolAccessible(type.aliasSymbol, context.enclosingDeclaration))) { var typeArgumentNodes = mapToTypeNodes(type.aliasTypeArguments, context); if (isReservedMemberName(type.aliasSymbol.escapedName) && !(type.aliasSymbol.flags & 32 /* SymbolFlags.Class */)) return ts.factory.createTypeReferenceNode(ts.factory.createIdentifier(""), typeArgumentNodes); return symbolToTypeNode(type.aliasSymbol, context, 788968 /* SymbolFlags.Type */, typeArgumentNodes); } var objectFlags = ts.getObjectFlags(type); if (objectFlags & 4 /* ObjectFlags.Reference */) { ts.Debug.assert(!!(type.flags & 524288 /* TypeFlags.Object */)); return type.node ? visitAndTransformType(type, typeReferenceToTypeNode) : typeReferenceToTypeNode(type); } if (type.flags & 262144 /* TypeFlags.TypeParameter */ || objectFlags & 3 /* ObjectFlags.ClassOrInterface */) { if (type.flags & 262144 /* TypeFlags.TypeParameter */ && ts.contains(context.inferTypeParameters, type)) { context.approximateLength += (ts.symbolName(type.symbol).length + 6); var constraintNode = void 0; var constraint = getConstraintOfTypeParameter(type); if (constraint) { // If the infer type has a constraint that is not the same as the constraint // we would have normally inferred based on context, we emit the constraint // using `infer T extends ?`. We omit inferred constraints from type references // as they may be elided. var inferredConstraint = getInferredTypeParameterConstraint(type, /*omitTypeReferences*/ true); if (!(inferredConstraint && isTypeIdenticalTo(constraint, inferredConstraint))) { context.approximateLength += 9; constraintNode = constraint && typeToTypeNodeHelper(constraint, context); } } return ts.factory.createInferTypeNode(typeParameterToDeclarationWithConstraint(type, context, constraintNode)); } if (context.flags & 4 /* NodeBuilderFlags.GenerateNamesForShadowedTypeParams */ && type.flags & 262144 /* TypeFlags.TypeParameter */ && !isTypeSymbolAccessible(type.symbol, context.enclosingDeclaration)) { var name_2 = typeParameterToName(type, context); context.approximateLength += ts.idText(name_2).length; return ts.factory.createTypeReferenceNode(ts.factory.createIdentifier(ts.idText(name_2)), /*typeArguments*/ undefined); } // Ignore constraint/default when creating a usage (as opposed to declaration) of a type parameter. if (type.symbol) { return symbolToTypeNode(type.symbol, context, 788968 /* SymbolFlags.Type */); } var name = (type === markerSuperType || type === markerSubType) && varianceTypeParameter && varianceTypeParameter.symbol ? (type === markerSubType ? "sub-" : "super-") + ts.symbolName(varianceTypeParameter.symbol) : "?"; return ts.factory.createTypeReferenceNode(ts.factory.createIdentifier(name), /*typeArguments*/ undefined); } if (type.flags & 1048576 /* TypeFlags.Union */ && type.origin) { type = type.origin; } if (type.flags & (1048576 /* TypeFlags.Union */ | 2097152 /* TypeFlags.Intersection */)) { var types = type.flags & 1048576 /* TypeFlags.Union */ ? formatUnionTypes(type.types) : type.types; if (ts.length(types) === 1) { return typeToTypeNodeHelper(types[0], context); } var typeNodes = mapToTypeNodes(types, context, /*isBareList*/ true); if (typeNodes && typeNodes.length > 0) { return type.flags & 1048576 /* TypeFlags.Union */ ? ts.factory.createUnionTypeNode(typeNodes) : ts.factory.createIntersectionTypeNode(typeNodes); } else { if (!context.encounteredError && !(context.flags & 262144 /* NodeBuilderFlags.AllowEmptyUnionOrIntersection */)) { context.encounteredError = true; } return undefined; // TODO: GH#18217 } } if (objectFlags & (16 /* ObjectFlags.Anonymous */ | 32 /* ObjectFlags.Mapped */)) { ts.Debug.assert(!!(type.flags & 524288 /* TypeFlags.Object */)); // The type is an object literal type. return createAnonymousTypeNode(type); } if (type.flags & 4194304 /* TypeFlags.Index */) { var indexedType = type.type; context.approximateLength += 6; var indexTypeNode = typeToTypeNodeHelper(indexedType, context); return ts.factory.createTypeOperatorNode(140 /* SyntaxKind.KeyOfKeyword */, indexTypeNode); } if (type.flags & 134217728 /* TypeFlags.TemplateLiteral */) { var texts_1 = type.texts; var types_1 = type.types; var templateHead = ts.factory.createTemplateHead(texts_1[0]); var templateSpans = ts.factory.createNodeArray(ts.map(types_1, function (t, i) { return ts.factory.createTemplateLiteralTypeSpan(typeToTypeNodeHelper(t, context), (i < types_1.length - 1 ? ts.factory.createTemplateMiddle : ts.factory.createTemplateTail)(texts_1[i + 1])); })); context.approximateLength += 2; return ts.factory.createTemplateLiteralType(templateHead, templateSpans); } if (type.flags & 268435456 /* TypeFlags.StringMapping */) { var typeNode = typeToTypeNodeHelper(type.type, context); return symbolToTypeNode(type.symbol, context, 788968 /* SymbolFlags.Type */, [typeNode]); } if (type.flags & 8388608 /* TypeFlags.IndexedAccess */) { var objectTypeNode = typeToTypeNodeHelper(type.objectType, context); var indexTypeNode = typeToTypeNodeHelper(type.indexType, context); context.approximateLength += 2; return ts.factory.createIndexedAccessTypeNode(objectTypeNode, indexTypeNode); } if (type.flags & 16777216 /* TypeFlags.Conditional */) { return visitAndTransformType(type, function (type) { return conditionalTypeToTypeNode(type); }); } if (type.flags & 33554432 /* TypeFlags.Substitution */) { return typeToTypeNodeHelper(type.baseType, context); } return ts.Debug.fail("Should be unreachable."); function conditionalTypeToTypeNode(type) { var checkTypeNode = typeToTypeNodeHelper(type.checkType, context); context.approximateLength += 15; if (context.flags & 4 /* NodeBuilderFlags.GenerateNamesForShadowedTypeParams */ && type.root.isDistributive && !(type.checkType.flags & 262144 /* TypeFlags.TypeParameter */)) { var newParam = createTypeParameter(createSymbol(262144 /* SymbolFlags.TypeParameter */, "T")); var name = typeParameterToName(newParam, context); var newTypeVariable = ts.factory.createTypeReferenceNode(name); context.approximateLength += 37; // 15 each for two added conditionals, 7 for an added infer type var newMapper = prependTypeMapping(type.root.checkType, newParam, type.combinedMapper || type.mapper); var saveInferTypeParameters_1 = context.inferTypeParameters; context.inferTypeParameters = type.root.inferTypeParameters; var extendsTypeNode_1 = typeToTypeNodeHelper(instantiateType(type.root.extendsType, newMapper), context); context.inferTypeParameters = saveInferTypeParameters_1; var trueTypeNode_1 = typeToTypeNodeOrCircularityElision(instantiateType(getTypeFromTypeNode(type.root.node.trueType), newMapper)); var falseTypeNode_1 = typeToTypeNodeOrCircularityElision(instantiateType(getTypeFromTypeNode(type.root.node.falseType), newMapper)); // outermost conditional makes `T` a type parameter, allowing the inner conditionals to be distributive // second conditional makes `T` have `T & checkType` substitution, so it is correctly usable as the checkType // inner conditional runs the check the user provided on the check type (distributively) and returns the result // checkType extends infer T ? T extends checkType ? T extends extendsType ? trueType : falseType : never : never; // this is potentially simplifiable to // checkType extends infer T ? T extends checkType & extendsType ? trueType : falseType : never; // but that may confuse users who read the output more. // On the other hand, // checkType extends infer T extends checkType ? T extends extendsType ? trueType : falseType : never; // may also work with `infer ... extends ...` in, but would produce declarations only compatible with the latest TS. return ts.factory.createConditionalTypeNode(checkTypeNode, ts.factory.createInferTypeNode(ts.factory.createTypeParameterDeclaration(/*modifiers*/ undefined, ts.factory.cloneNode(newTypeVariable.typeName))), ts.factory.createConditionalTypeNode(ts.factory.createTypeReferenceNode(ts.factory.cloneNode(name)), typeToTypeNodeHelper(type.checkType, context), ts.factory.createConditionalTypeNode(newTypeVariable, extendsTypeNode_1, trueTypeNode_1, falseTypeNode_1), ts.factory.createKeywordTypeNode(143 /* SyntaxKind.NeverKeyword */)), ts.factory.createKeywordTypeNode(143 /* SyntaxKind.NeverKeyword */)); } var saveInferTypeParameters = context.inferTypeParameters; context.inferTypeParameters = type.root.inferTypeParameters; var extendsTypeNode = typeToTypeNodeHelper(type.extendsType, context); context.inferTypeParameters = saveInferTypeParameters; var trueTypeNode = typeToTypeNodeOrCircularityElision(getTrueTypeFromConditionalType(type)); var falseTypeNode = typeToTypeNodeOrCircularityElision(getFalseTypeFromConditionalType(type)); return ts.factory.createConditionalTypeNode(checkTypeNode, extendsTypeNode, trueTypeNode, falseTypeNode); } function typeToTypeNodeOrCircularityElision(type) { var _a, _b, _c; if (type.flags & 1048576 /* TypeFlags.Union */) { if ((_a = context.visitedTypes) === null || _a === void 0 ? void 0 : _a.has(getTypeId(type))) { if (!(context.flags & 131072 /* NodeBuilderFlags.AllowAnonymousIdentifier */)) { context.encounteredError = true; (_c = (_b = context.tracker) === null || _b === void 0 ? void 0 : _b.reportCyclicStructureError) === null || _c === void 0 ? void 0 : _c.call(_b); } return createElidedInformationPlaceholder(context); } return visitAndTransformType(type, function (type) { return typeToTypeNodeHelper(type, context); }); } return typeToTypeNodeHelper(type, context); } function createMappedTypeNodeFromType(type) { ts.Debug.assert(!!(type.flags & 524288 /* TypeFlags.Object */)); var readonlyToken = type.declaration.readonlyToken ? ts.factory.createToken(type.declaration.readonlyToken.kind) : undefined; var questionToken = type.declaration.questionToken ? ts.factory.createToken(type.declaration.questionToken.kind) : undefined; var appropriateConstraintTypeNode; var newTypeVariable; if (isMappedTypeWithKeyofConstraintDeclaration(type)) { // We have a { [P in keyof T]: X } // We do this to ensure we retain the toplevel keyof-ness of the type which may be lost due to keyof distribution during `getConstraintTypeFromMappedType` if (!(getModifiersTypeFromMappedType(type).flags & 262144 /* TypeFlags.TypeParameter */) && context.flags & 4 /* NodeBuilderFlags.GenerateNamesForShadowedTypeParams */) { var newParam = createTypeParameter(createSymbol(262144 /* SymbolFlags.TypeParameter */, "T")); var name = typeParameterToName(newParam, context); newTypeVariable = ts.factory.createTypeReferenceNode(name); } appropriateConstraintTypeNode = ts.factory.createTypeOperatorNode(140 /* SyntaxKind.KeyOfKeyword */, newTypeVariable || typeToTypeNodeHelper(getModifiersTypeFromMappedType(type), context)); } else { appropriateConstraintTypeNode = typeToTypeNodeHelper(getConstraintTypeFromMappedType(type), context); } var typeParameterNode = typeParameterToDeclarationWithConstraint(getTypeParameterFromMappedType(type), context, appropriateConstraintTypeNode); var nameTypeNode = type.declaration.nameType ? typeToTypeNodeHelper(getNameTypeFromMappedType(type), context) : undefined; var templateTypeNode = typeToTypeNodeHelper(removeMissingType(getTemplateTypeFromMappedType(type), !!(getMappedTypeModifiers(type) & 4 /* MappedTypeModifiers.IncludeOptional */)), context); var mappedTypeNode = ts.factory.createMappedTypeNode(readonlyToken, typeParameterNode, nameTypeNode, questionToken, templateTypeNode, /*members*/ undefined); context.approximateLength += 10; var result = ts.setEmitFlags(mappedTypeNode, 1 /* EmitFlags.SingleLine */); if (isMappedTypeWithKeyofConstraintDeclaration(type) && !(getModifiersTypeFromMappedType(type).flags & 262144 /* TypeFlags.TypeParameter */) && context.flags & 4 /* NodeBuilderFlags.GenerateNamesForShadowedTypeParams */) { // homomorphic mapped type with a non-homomorphic naive inlining // wrap it with a conditional like `SomeModifiersType extends infer U ? {..the mapped type...} : never` to ensure the resulting // type stays homomorphic return ts.factory.createConditionalTypeNode(typeToTypeNodeHelper(getModifiersTypeFromMappedType(type), context), ts.factory.createInferTypeNode(ts.factory.createTypeParameterDeclaration(/*modifiers*/ undefined, ts.factory.cloneNode(newTypeVariable.typeName))), result, ts.factory.createKeywordTypeNode(143 /* SyntaxKind.NeverKeyword */)); } return result; } function createAnonymousTypeNode(type) { var _a; var typeId = type.id; var symbol = type.symbol; if (symbol) { var isInstanceType = isClassInstanceSide(type) ? 788968 /* SymbolFlags.Type */ : 111551 /* SymbolFlags.Value */; if (isJSConstructor(symbol.valueDeclaration)) { // Instance and static types share the same symbol; only add 'typeof' for the static side. return symbolToTypeNode(symbol, context, isInstanceType); } // Always use 'typeof T' for type of class, enum, and module objects else if (symbol.flags & 32 /* SymbolFlags.Class */ && !getBaseTypeVariableOfClass(symbol) && !(symbol.valueDeclaration && symbol.valueDeclaration.kind === 226 /* SyntaxKind.ClassExpression */ && context.flags & 2048 /* NodeBuilderFlags.WriteClassExpressionAsTypeLiteral */) || symbol.flags & (384 /* SymbolFlags.Enum */ | 512 /* SymbolFlags.ValueModule */) || shouldWriteTypeOfFunctionSymbol()) { return symbolToTypeNode(symbol, context, isInstanceType); } else if ((_a = context.visitedTypes) === null || _a === void 0 ? void 0 : _a.has(typeId)) { // If type is an anonymous type literal in a type alias declaration, use type alias name var typeAlias = getTypeAliasForTypeLiteral(type); if (typeAlias) { // The specified symbol flags need to be reinterpreted as type flags return symbolToTypeNode(typeAlias, context, 788968 /* SymbolFlags.Type */); } else { return createElidedInformationPlaceholder(context); } } else { return visitAndTransformType(type, createTypeNodeFromObjectType); } } else { // Anonymous types without a symbol are never circular. return createTypeNodeFromObjectType(type); } function shouldWriteTypeOfFunctionSymbol() { var _a; var isStaticMethodSymbol = !!(symbol.flags & 8192 /* SymbolFlags.Method */) && // typeof static method ts.some(symbol.declarations, function (declaration) { return ts.isStatic(declaration); }); var isNonLocalFunctionSymbol = !!(symbol.flags & 16 /* SymbolFlags.Function */) && (symbol.parent || // is exported function symbol ts.forEach(symbol.declarations, function (declaration) { return declaration.parent.kind === 305 /* SyntaxKind.SourceFile */ || declaration.parent.kind === 262 /* SyntaxKind.ModuleBlock */; })); if (isStaticMethodSymbol || isNonLocalFunctionSymbol) { // typeof is allowed only for static/non local functions return (!!(context.flags & 4096 /* NodeBuilderFlags.UseTypeOfFunction */) || ((_a = context.visitedTypes) === null || _a === void 0 ? void 0 : _a.has(typeId))) && // it is type of the symbol uses itself recursively (!(context.flags & 8 /* NodeBuilderFlags.UseStructuralFallback */) || isValueSymbolAccessible(symbol, context.enclosingDeclaration)); // And the build is going to succeed without visibility error or there is no structural fallback allowed } } } function visitAndTransformType(type, transform) { var _a, _b; var typeId = type.id; var isConstructorObject = ts.getObjectFlags(type) & 16 /* ObjectFlags.Anonymous */ && type.symbol && type.symbol.flags & 32 /* SymbolFlags.Class */; var id = ts.getObjectFlags(type) & 4 /* ObjectFlags.Reference */ && type.node ? "N" + getNodeId(type.node) : type.flags & 16777216 /* TypeFlags.Conditional */ ? "N" + getNodeId(type.root.node) : type.symbol ? (isConstructorObject ? "+" : "") + getSymbolId(type.symbol) : undefined; // Since instantiations of the same anonymous type have the same symbol, tracking symbols instead // of types allows us to catch circular references to instantiations of the same anonymous type if (!context.visitedTypes) { context.visitedTypes = new ts.Set(); } if (id && !context.symbolDepth) { context.symbolDepth = new ts.Map(); } var links = context.enclosingDeclaration && getNodeLinks(context.enclosingDeclaration); var key = "".concat(getTypeId(type), "|").concat(context.flags); if (links) { links.serializedTypes || (links.serializedTypes = new ts.Map()); } var cachedResult = (_a = links === null || links === void 0 ? void 0 : links.serializedTypes) === null || _a === void 0 ? void 0 : _a.get(key); if (cachedResult) { if (cachedResult.truncating) { context.truncating = true; } context.approximateLength += cachedResult.addedLength; return deepCloneOrReuseNode(cachedResult); } var depth; if (id) { depth = context.symbolDepth.get(id) || 0; if (depth > 10) { return createElidedInformationPlaceholder(context); } context.symbolDepth.set(id, depth + 1); } context.visitedTypes.add(typeId); var startLength = context.approximateLength; var result = transform(type); var addedLength = context.approximateLength - startLength; if (!context.reportedDiagnostic && !context.encounteredError) { if (context.truncating) { result.truncating = true; } result.addedLength = addedLength; (_b = links === null || links === void 0 ? void 0 : links.serializedTypes) === null || _b === void 0 ? void 0 : _b.set(key, result); } context.visitedTypes.delete(typeId); if (id) { context.symbolDepth.set(id, depth); } return result; function deepCloneOrReuseNode(node) { if (!ts.nodeIsSynthesized(node) && ts.getParseTreeNode(node) === node) { return node; } return ts.setTextRange(ts.factory.cloneNode(ts.visitEachChild(node, deepCloneOrReuseNode, ts.nullTransformationContext, deepCloneOrReuseNodes)), node); } function deepCloneOrReuseNodes(nodes, visitor, test, start, count) { if (nodes && nodes.length === 0) { // Ensure we explicitly make a copy of an empty array; visitNodes will not do this unless the array has elements, // which can lead to us reusing the same empty NodeArray more than once within the same AST during type noding. return ts.setTextRange(ts.factory.createNodeArray(/*nodes*/ undefined, nodes.hasTrailingComma), nodes); } return ts.visitNodes(nodes, visitor, test, start, count); } } function createTypeNodeFromObjectType(type) { if (isGenericMappedType(type) || type.containsError) { return createMappedTypeNodeFromType(type); } var resolved = resolveStructuredTypeMembers(type); if (!resolved.properties.length && !resolved.indexInfos.length) { if (!resolved.callSignatures.length && !resolved.constructSignatures.length) { context.approximateLength += 2; return ts.setEmitFlags(ts.factory.createTypeLiteralNode(/*members*/ undefined), 1 /* EmitFlags.SingleLine */); } if (resolved.callSignatures.length === 1 && !resolved.constructSignatures.length) { var signature = resolved.callSignatures[0]; var signatureNode = signatureToSignatureDeclarationHelper(signature, 179 /* SyntaxKind.FunctionType */, context); return signatureNode; } if (resolved.constructSignatures.length === 1 && !resolved.callSignatures.length) { var signature = resolved.constructSignatures[0]; var signatureNode = signatureToSignatureDeclarationHelper(signature, 180 /* SyntaxKind.ConstructorType */, context); return signatureNode; } } var abstractSignatures = ts.filter(resolved.constructSignatures, function (signature) { return !!(signature.flags & 4 /* SignatureFlags.Abstract */); }); if (ts.some(abstractSignatures)) { var types = ts.map(abstractSignatures, getOrCreateTypeFromSignature); // count the number of type elements excluding abstract constructors var typeElementCount = resolved.callSignatures.length + (resolved.constructSignatures.length - abstractSignatures.length) + resolved.indexInfos.length + // exclude `prototype` when writing a class expression as a type literal, as per // the logic in `createTypeNodesFromResolvedType`. (context.flags & 2048 /* NodeBuilderFlags.WriteClassExpressionAsTypeLiteral */ ? ts.countWhere(resolved.properties, function (p) { return !(p.flags & 4194304 /* SymbolFlags.Prototype */); }) : ts.length(resolved.properties)); // don't include an empty object literal if there were no other static-side // properties to write, i.e. `abstract class C { }` becomes `abstract new () => {}` // and not `(abstract new () => {}) & {}` if (typeElementCount) { // create a copy of the object type without any abstract construct signatures. types.push(getResolvedTypeWithoutAbstractConstructSignatures(resolved)); } return typeToTypeNodeHelper(getIntersectionType(types), context); } var savedFlags = context.flags; context.flags |= 4194304 /* NodeBuilderFlags.InObjectTypeLiteral */; var members = createTypeNodesFromResolvedType(resolved); context.flags = savedFlags; var typeLiteralNode = ts.factory.createTypeLiteralNode(members); context.approximateLength += 2; ts.setEmitFlags(typeLiteralNode, (context.flags & 1024 /* NodeBuilderFlags.MultilineObjectLiterals */) ? 0 : 1 /* EmitFlags.SingleLine */); return typeLiteralNode; } function typeReferenceToTypeNode(type) { var typeArguments = getTypeArguments(type); if (type.target === globalArrayType || type.target === globalReadonlyArrayType) { if (context.flags & 2 /* NodeBuilderFlags.WriteArrayAsGenericType */) { var typeArgumentNode = typeToTypeNodeHelper(typeArguments[0], context); return ts.factory.createTypeReferenceNode(type.target === globalArrayType ? "Array" : "ReadonlyArray", [typeArgumentNode]); } var elementType = typeToTypeNodeHelper(typeArguments[0], context); var arrayType = ts.factory.createArrayTypeNode(elementType); return type.target === globalArrayType ? arrayType : ts.factory.createTypeOperatorNode(145 /* SyntaxKind.ReadonlyKeyword */, arrayType); } else if (type.target.objectFlags & 8 /* ObjectFlags.Tuple */) { typeArguments = ts.sameMap(typeArguments, function (t, i) { return removeMissingType(t, !!(type.target.elementFlags[i] & 2 /* ElementFlags.Optional */)); }); if (typeArguments.length > 0) { var arity = getTypeReferenceArity(type); var tupleConstituentNodes = mapToTypeNodes(typeArguments.slice(0, arity), context); if (tupleConstituentNodes) { if (type.target.labeledElementDeclarations) { for (var i = 0; i < tupleConstituentNodes.length; i++) { var flags = type.target.elementFlags[i]; tupleConstituentNodes[i] = ts.factory.createNamedTupleMember(flags & 12 /* ElementFlags.Variable */ ? ts.factory.createToken(25 /* SyntaxKind.DotDotDotToken */) : undefined, ts.factory.createIdentifier(ts.unescapeLeadingUnderscores(getTupleElementLabel(type.target.labeledElementDeclarations[i]))), flags & 2 /* ElementFlags.Optional */ ? ts.factory.createToken(57 /* SyntaxKind.QuestionToken */) : undefined, flags & 4 /* ElementFlags.Rest */ ? ts.factory.createArrayTypeNode(tupleConstituentNodes[i]) : tupleConstituentNodes[i]); } } else { for (var i = 0; i < Math.min(arity, tupleConstituentNodes.length); i++) { var flags = type.target.elementFlags[i]; tupleConstituentNodes[i] = flags & 12 /* ElementFlags.Variable */ ? ts.factory.createRestTypeNode(flags & 4 /* ElementFlags.Rest */ ? ts.factory.createArrayTypeNode(tupleConstituentNodes[i]) : tupleConstituentNodes[i]) : flags & 2 /* ElementFlags.Optional */ ? ts.factory.createOptionalTypeNode(tupleConstituentNodes[i]) : tupleConstituentNodes[i]; } } var tupleTypeNode = ts.setEmitFlags(ts.factory.createTupleTypeNode(tupleConstituentNodes), 1 /* EmitFlags.SingleLine */); return type.target.readonly ? ts.factory.createTypeOperatorNode(145 /* SyntaxKind.ReadonlyKeyword */, tupleTypeNode) : tupleTypeNode; } } if (context.encounteredError || (context.flags & 524288 /* NodeBuilderFlags.AllowEmptyTuple */)) { var tupleTypeNode = ts.setEmitFlags(ts.factory.createTupleTypeNode([]), 1 /* EmitFlags.SingleLine */); return type.target.readonly ? ts.factory.createTypeOperatorNode(145 /* SyntaxKind.ReadonlyKeyword */, tupleTypeNode) : tupleTypeNode; } context.encounteredError = true; return undefined; // TODO: GH#18217 } else if (context.flags & 2048 /* NodeBuilderFlags.WriteClassExpressionAsTypeLiteral */ && type.symbol.valueDeclaration && ts.isClassLike(type.symbol.valueDeclaration) && !isValueSymbolAccessible(type.symbol, context.enclosingDeclaration)) { return createAnonymousTypeNode(type); } else { var outerTypeParameters = type.target.outerTypeParameters; var i = 0; var resultType = void 0; if (outerTypeParameters) { var length_2 = outerTypeParameters.length; while (i < length_2) { // Find group of type arguments for type parameters with the same declaring container. var start = i; var parent = getParentSymbolOfTypeParameter(outerTypeParameters[i]); do { i++; } while (i < length_2 && getParentSymbolOfTypeParameter(outerTypeParameters[i]) === parent); // When type parameters are their own type arguments for the whole group (i.e. we have // the default outer type arguments), we don't show the group. if (!ts.rangeEquals(outerTypeParameters, typeArguments, start, i)) { var typeArgumentSlice = mapToTypeNodes(typeArguments.slice(start, i), context); var flags_3 = context.flags; context.flags |= 16 /* NodeBuilderFlags.ForbidIndexedAccessSymbolReferences */; var ref = symbolToTypeNode(parent, context, 788968 /* SymbolFlags.Type */, typeArgumentSlice); context.flags = flags_3; resultType = !resultType ? ref : appendReferenceToType(resultType, ref); } } } var typeArgumentNodes = void 0; if (typeArguments.length > 0) { var typeParameterCount = (type.target.typeParameters || ts.emptyArray).length; typeArgumentNodes = mapToTypeNodes(typeArguments.slice(i, typeParameterCount), context); } var flags = context.flags; context.flags |= 16 /* NodeBuilderFlags.ForbidIndexedAccessSymbolReferences */; var finalRef = symbolToTypeNode(type.symbol, context, 788968 /* SymbolFlags.Type */, typeArgumentNodes); context.flags = flags; return !resultType ? finalRef : appendReferenceToType(resultType, finalRef); } } function appendReferenceToType(root, ref) { if (ts.isImportTypeNode(root)) { // first shift type arguments var typeArguments = root.typeArguments; var qualifier = root.qualifier; if (qualifier) { if (ts.isIdentifier(qualifier)) { qualifier = ts.factory.updateIdentifier(qualifier, typeArguments); } else { qualifier = ts.factory.updateQualifiedName(qualifier, qualifier.left, ts.factory.updateIdentifier(qualifier.right, typeArguments)); } } typeArguments = ref.typeArguments; // then move qualifiers var ids = getAccessStack(ref); for (var _i = 0, ids_1 = ids; _i < ids_1.length; _i++) { var id = ids_1[_i]; qualifier = qualifier ? ts.factory.createQualifiedName(qualifier, id) : id; } return ts.factory.updateImportTypeNode(root, root.argument, qualifier, typeArguments, root.isTypeOf); } else { // first shift type arguments var typeArguments = root.typeArguments; var typeName = root.typeName; if (ts.isIdentifier(typeName)) { typeName = ts.factory.updateIdentifier(typeName, typeArguments); } else { typeName = ts.factory.updateQualifiedName(typeName, typeName.left, ts.factory.updateIdentifier(typeName.right, typeArguments)); } typeArguments = ref.typeArguments; // then move qualifiers var ids = getAccessStack(ref); for (var _a = 0, ids_2 = ids; _a < ids_2.length; _a++) { var id = ids_2[_a]; typeName = ts.factory.createQualifiedName(typeName, id); } return ts.factory.updateTypeReferenceNode(root, typeName, typeArguments); } } function getAccessStack(ref) { var state = ref.typeName; var ids = []; while (!ts.isIdentifier(state)) { ids.unshift(state.right); state = state.left; } ids.unshift(state); return ids; } function createTypeNodesFromResolvedType(resolvedType) { if (checkTruncationLength(context)) { return [ts.factory.createPropertySignature(/*modifiers*/ undefined, "...", /*questionToken*/ undefined, /*type*/ undefined)]; } var typeElements = []; for (var _i = 0, _a = resolvedType.callSignatures; _i < _a.length; _i++) { var signature = _a[_i]; typeElements.push(signatureToSignatureDeclarationHelper(signature, 174 /* SyntaxKind.CallSignature */, context)); } for (var _b = 0, _c = resolvedType.constructSignatures; _b < _c.length; _b++) { var signature = _c[_b]; if (signature.flags & 4 /* SignatureFlags.Abstract */) continue; typeElements.push(signatureToSignatureDeclarationHelper(signature, 175 /* SyntaxKind.ConstructSignature */, context)); } for (var _d = 0, _e = resolvedType.indexInfos; _d < _e.length; _d++) { var info = _e[_d]; typeElements.push(indexInfoToIndexSignatureDeclarationHelper(info, context, resolvedType.objectFlags & 1024 /* ObjectFlags.ReverseMapped */ ? createElidedInformationPlaceholder(context) : undefined)); } var properties = resolvedType.properties; if (!properties) { return typeElements; } var i = 0; for (var _f = 0, properties_1 = properties; _f < properties_1.length; _f++) { var propertySymbol = properties_1[_f]; i++; if (context.flags & 2048 /* NodeBuilderFlags.WriteClassExpressionAsTypeLiteral */) { if (propertySymbol.flags & 4194304 /* SymbolFlags.Prototype */) { continue; } if (ts.getDeclarationModifierFlagsFromSymbol(propertySymbol) & (8 /* ModifierFlags.Private */ | 16 /* ModifierFlags.Protected */) && context.tracker.reportPrivateInBaseOfClassExpression) { context.tracker.reportPrivateInBaseOfClassExpression(ts.unescapeLeadingUnderscores(propertySymbol.escapedName)); } } if (checkTruncationLength(context) && (i + 2 < properties.length - 1)) { typeElements.push(ts.factory.createPropertySignature(/*modifiers*/ undefined, "... ".concat(properties.length - i, " more ..."), /*questionToken*/ undefined, /*type*/ undefined)); addPropertyToElementList(properties[properties.length - 1], context, typeElements); break; } addPropertyToElementList(propertySymbol, context, typeElements); } return typeElements.length ? typeElements : undefined; } } function createElidedInformationPlaceholder(context) { context.approximateLength += 3; if (!(context.flags & 1 /* NodeBuilderFlags.NoTruncation */)) { return ts.factory.createTypeReferenceNode(ts.factory.createIdentifier("..."), /*typeArguments*/ undefined); } return ts.factory.createKeywordTypeNode(130 /* SyntaxKind.AnyKeyword */); } function shouldUsePlaceholderForProperty(propertySymbol, context) { var _a; // Use placeholders for reverse mapped types we've either already descended into, or which // are nested reverse mappings within a mapping over a non-anonymous type. The later is a restriction mostly just to // reduce the blowup in printback size from doing, eg, a deep reverse mapping over `Window`. // Since anonymous types usually come from expressions, this allows us to preserve the output // for deep mappings which likely come from expressions, while truncating those parts which // come from mappings over library functions. return !!(ts.getCheckFlags(propertySymbol) & 8192 /* CheckFlags.ReverseMapped */) && (ts.contains(context.reverseMappedStack, propertySymbol) || (((_a = context.reverseMappedStack) === null || _a === void 0 ? void 0 : _a[0]) && !(ts.getObjectFlags(ts.last(context.reverseMappedStack).propertyType) & 16 /* ObjectFlags.Anonymous */))); } function addPropertyToElementList(propertySymbol, context, typeElements) { var _a, _b; var propertyIsReverseMapped = !!(ts.getCheckFlags(propertySymbol) & 8192 /* CheckFlags.ReverseMapped */); var propertyType = shouldUsePlaceholderForProperty(propertySymbol, context) ? anyType : getNonMissingTypeOfSymbol(propertySymbol); var saveEnclosingDeclaration = context.enclosingDeclaration; context.enclosingDeclaration = undefined; if (context.tracker.trackSymbol && ts.getCheckFlags(propertySymbol) & 4096 /* CheckFlags.Late */ && isLateBoundName(propertySymbol.escapedName)) { if (propertySymbol.declarations) { var decl = ts.first(propertySymbol.declarations); if (hasLateBindableName(decl)) { if (ts.isBinaryExpression(decl)) { var name = ts.getNameOfDeclaration(decl); if (name && ts.isElementAccessExpression(name) && ts.isPropertyAccessEntityNameExpression(name.argumentExpression)) { trackComputedName(name.argumentExpression, saveEnclosingDeclaration, context); } } else { trackComputedName(decl.name.expression, saveEnclosingDeclaration, context); } } } else if ((_a = context.tracker) === null || _a === void 0 ? void 0 : _a.reportNonSerializableProperty) { context.tracker.reportNonSerializableProperty(symbolToString(propertySymbol)); } } context.enclosingDeclaration = propertySymbol.valueDeclaration || ((_b = propertySymbol.declarations) === null || _b === void 0 ? void 0 : _b[0]) || saveEnclosingDeclaration; var propertyName = getPropertyNameNodeForSymbol(propertySymbol, context); context.enclosingDeclaration = saveEnclosingDeclaration; context.approximateLength += (ts.symbolName(propertySymbol).length + 1); var optionalToken = propertySymbol.flags & 16777216 /* SymbolFlags.Optional */ ? ts.factory.createToken(57 /* SyntaxKind.QuestionToken */) : undefined; if (propertySymbol.flags & (16 /* SymbolFlags.Function */ | 8192 /* SymbolFlags.Method */) && !getPropertiesOfObjectType(propertyType).length && !isReadonlySymbol(propertySymbol)) { var signatures = getSignaturesOfType(filterType(propertyType, function (t) { return !(t.flags & 32768 /* TypeFlags.Undefined */); }), 0 /* SignatureKind.Call */); for (var _i = 0, signatures_1 = signatures; _i < signatures_1.length; _i++) { var signature = signatures_1[_i]; var methodDeclaration = signatureToSignatureDeclarationHelper(signature, 168 /* SyntaxKind.MethodSignature */, context, { name: propertyName, questionToken: optionalToken }); typeElements.push(preserveCommentsOn(methodDeclaration)); } } else { var propertyTypeNode = void 0; if (shouldUsePlaceholderForProperty(propertySymbol, context)) { propertyTypeNode = createElidedInformationPlaceholder(context); } else { if (propertyIsReverseMapped) { context.reverseMappedStack || (context.reverseMappedStack = []); context.reverseMappedStack.push(propertySymbol); } propertyTypeNode = propertyType ? serializeTypeForDeclaration(context, propertyType, propertySymbol, saveEnclosingDeclaration) : ts.factory.createKeywordTypeNode(130 /* SyntaxKind.AnyKeyword */); if (propertyIsReverseMapped) { context.reverseMappedStack.pop(); } } var modifiers = isReadonlySymbol(propertySymbol) ? [ts.factory.createToken(145 /* SyntaxKind.ReadonlyKeyword */)] : undefined; if (modifiers) { context.approximateLength += 9; } var propertySignature = ts.factory.createPropertySignature(modifiers, propertyName, optionalToken, propertyTypeNode); typeElements.push(preserveCommentsOn(propertySignature)); } function preserveCommentsOn(node) { var _a; if (ts.some(propertySymbol.declarations, function (d) { return d.kind === 347 /* SyntaxKind.JSDocPropertyTag */; })) { var d = (_a = propertySymbol.declarations) === null || _a === void 0 ? void 0 : _a.find(function (d) { return d.kind === 347 /* SyntaxKind.JSDocPropertyTag */; }); var commentText = ts.getTextOfJSDocComment(d.comment); if (commentText) { ts.setSyntheticLeadingComments(node, [{ kind: 3 /* SyntaxKind.MultiLineCommentTrivia */, text: "*\n * " + commentText.replace(/\n/g, "\n * ") + "\n ", pos: -1, end: -1, hasTrailingNewLine: true }]); } } else if (propertySymbol.valueDeclaration) { // Copy comments to node for declaration emit ts.setCommentRange(node, propertySymbol.valueDeclaration); } return node; } } function mapToTypeNodes(types, context, isBareList) { if (ts.some(types)) { if (checkTruncationLength(context)) { if (!isBareList) { return [ts.factory.createTypeReferenceNode("...", /*typeArguments*/ undefined)]; } else if (types.length > 2) { return [ typeToTypeNodeHelper(types[0], context), ts.factory.createTypeReferenceNode("... ".concat(types.length - 2, " more ..."), /*typeArguments*/ undefined), typeToTypeNodeHelper(types[types.length - 1], context) ]; } } var mayHaveNameCollisions = !(context.flags & 64 /* NodeBuilderFlags.UseFullyQualifiedType */); /** Map from type reference identifier text to [type, index in `result` where the type node is] */ var seenNames = mayHaveNameCollisions ? ts.createUnderscoreEscapedMultiMap() : undefined; var result_5 = []; var i = 0; for (var _i = 0, types_2 = types; _i < types_2.length; _i++) { var type = types_2[_i]; i++; if (checkTruncationLength(context) && (i + 2 < types.length - 1)) { result_5.push(ts.factory.createTypeReferenceNode("... ".concat(types.length - i, " more ..."), /*typeArguments*/ undefined)); var typeNode_1 = typeToTypeNodeHelper(types[types.length - 1], context); if (typeNode_1) { result_5.push(typeNode_1); } break; } context.approximateLength += 2; // Account for whitespace + separator var typeNode = typeToTypeNodeHelper(type, context); if (typeNode) { result_5.push(typeNode); if (seenNames && ts.isIdentifierTypeReference(typeNode)) { seenNames.add(typeNode.typeName.escapedText, [type, result_5.length - 1]); } } } if (seenNames) { // To avoid printing types like `[Foo, Foo]` or `Bar & Bar` where // occurrences of the same name actually come from different // namespaces, go through the single-identifier type reference nodes // we just generated, and see if any names were generated more than // once while referring to different types. If so, regenerate the // type node for each entry by that name with the // `UseFullyQualifiedType` flag enabled. var saveContextFlags = context.flags; context.flags |= 64 /* NodeBuilderFlags.UseFullyQualifiedType */; seenNames.forEach(function (types) { if (!ts.arrayIsHomogeneous(types, function (_a, _b) { var a = _a[0]; var b = _b[0]; return typesAreSameReference(a, b); })) { for (var _i = 0, types_3 = types; _i < types_3.length; _i++) { var _a = types_3[_i], type = _a[0], resultIndex = _a[1]; result_5[resultIndex] = typeToTypeNodeHelper(type, context); } } }); context.flags = saveContextFlags; } return result_5; } } function typesAreSameReference(a, b) { return a === b || !!a.symbol && a.symbol === b.symbol || !!a.aliasSymbol && a.aliasSymbol === b.aliasSymbol; } function indexInfoToIndexSignatureDeclarationHelper(indexInfo, context, typeNode) { var name = ts.getNameFromIndexInfo(indexInfo) || "x"; var indexerTypeNode = typeToTypeNodeHelper(indexInfo.keyType, context); var indexingParameter = ts.factory.createParameterDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, name, /*questionToken*/ undefined, indexerTypeNode, /*initializer*/ undefined); if (!typeNode) { typeNode = typeToTypeNodeHelper(indexInfo.type || anyType, context); } if (!indexInfo.type && !(context.flags & 2097152 /* NodeBuilderFlags.AllowEmptyIndexInfoType */)) { context.encounteredError = true; } context.approximateLength += (name.length + 4); return ts.factory.createIndexSignature( /*decorators*/ undefined, indexInfo.isReadonly ? [ts.factory.createToken(145 /* SyntaxKind.ReadonlyKeyword */)] : undefined, [indexingParameter], typeNode); } function signatureToSignatureDeclarationHelper(signature, kind, context, options) { var _a, _b, _c, _d; var suppressAny = context.flags & 256 /* NodeBuilderFlags.SuppressAnyReturnType */; if (suppressAny) context.flags &= ~256 /* NodeBuilderFlags.SuppressAnyReturnType */; // suppress only toplevel `any`s context.approximateLength += 3; // Usually a signature contributes a few more characters than this, but 3 is the minimum var typeParameters; var typeArguments; if (context.flags & 32 /* NodeBuilderFlags.WriteTypeArgumentsOfSignature */ && signature.target && signature.mapper && signature.target.typeParameters) { typeArguments = signature.target.typeParameters.map(function (parameter) { return typeToTypeNodeHelper(instantiateType(parameter, signature.mapper), context); }); } else { typeParameters = signature.typeParameters && signature.typeParameters.map(function (parameter) { return typeParameterToDeclaration(parameter, context); }); } var expandedParams = getExpandedParameters(signature, /*skipUnionExpanding*/ true)[0]; // If the expanded parameter list had a variadic in a non-trailing position, don't expand it var parameters = (ts.some(expandedParams, function (p) { return p !== expandedParams[expandedParams.length - 1] && !!(ts.getCheckFlags(p) & 32768 /* CheckFlags.RestParameter */); }) ? signature.parameters : expandedParams).map(function (parameter) { return symbolToParameterDeclaration(parameter, context, kind === 171 /* SyntaxKind.Constructor */, options === null || options === void 0 ? void 0 : options.privateSymbolVisitor, options === null || options === void 0 ? void 0 : options.bundledImports); }); var thisParameter = tryGetThisParameterDeclaration(signature, context); if (thisParameter) { parameters.unshift(thisParameter); } var returnTypeNode; var typePredicate = getTypePredicateOfSignature(signature); if (typePredicate) { var assertsModifier = typePredicate.kind === 2 /* TypePredicateKind.AssertsThis */ || typePredicate.kind === 3 /* TypePredicateKind.AssertsIdentifier */ ? ts.factory.createToken(128 /* SyntaxKind.AssertsKeyword */) : undefined; var parameterName = typePredicate.kind === 1 /* TypePredicateKind.Identifier */ || typePredicate.kind === 3 /* TypePredicateKind.AssertsIdentifier */ ? ts.setEmitFlags(ts.factory.createIdentifier(typePredicate.parameterName), 16777216 /* EmitFlags.NoAsciiEscaping */) : ts.factory.createThisTypeNode(); var typeNode = typePredicate.type && typeToTypeNodeHelper(typePredicate.type, context); returnTypeNode = ts.factory.createTypePredicateNode(assertsModifier, parameterName, typeNode); } else { var returnType = getReturnTypeOfSignature(signature); if (returnType && !(suppressAny && isTypeAny(returnType))) { returnTypeNode = serializeReturnTypeForSignature(context, returnType, signature, options === null || options === void 0 ? void 0 : options.privateSymbolVisitor, options === null || options === void 0 ? void 0 : options.bundledImports); } else if (!suppressAny) { returnTypeNode = ts.factory.createKeywordTypeNode(130 /* SyntaxKind.AnyKeyword */); } } var modifiers = options === null || options === void 0 ? void 0 : options.modifiers; if ((kind === 180 /* SyntaxKind.ConstructorType */) && signature.flags & 4 /* SignatureFlags.Abstract */) { var flags = ts.modifiersToFlags(modifiers); modifiers = ts.factory.createModifiersFromModifierFlags(flags | 128 /* ModifierFlags.Abstract */); } var node = kind === 174 /* SyntaxKind.CallSignature */ ? ts.factory.createCallSignature(typeParameters, parameters, returnTypeNode) : kind === 175 /* SyntaxKind.ConstructSignature */ ? ts.factory.createConstructSignature(typeParameters, parameters, returnTypeNode) : kind === 168 /* SyntaxKind.MethodSignature */ ? ts.factory.createMethodSignature(modifiers, (_a = options === null || options === void 0 ? void 0 : options.name) !== null && _a !== void 0 ? _a : ts.factory.createIdentifier(""), options === null || options === void 0 ? void 0 : options.questionToken, typeParameters, parameters, returnTypeNode) : kind === 169 /* SyntaxKind.MethodDeclaration */ ? ts.factory.createMethodDeclaration(/*decorators*/ undefined, modifiers, /*asteriskToken*/ undefined, (_b = options === null || options === void 0 ? void 0 : options.name) !== null && _b !== void 0 ? _b : ts.factory.createIdentifier(""), /*questionToken*/ undefined, typeParameters, parameters, returnTypeNode, /*body*/ undefined) : kind === 171 /* SyntaxKind.Constructor */ ? ts.factory.createConstructorDeclaration(/*decorators*/ undefined, modifiers, parameters, /*body*/ undefined) : kind === 172 /* SyntaxKind.GetAccessor */ ? ts.factory.createGetAccessorDeclaration(/*decorators*/ undefined, modifiers, (_c = options === null || options === void 0 ? void 0 : options.name) !== null && _c !== void 0 ? _c : ts.factory.createIdentifier(""), parameters, returnTypeNode, /*body*/ undefined) : kind === 173 /* SyntaxKind.SetAccessor */ ? ts.factory.createSetAccessorDeclaration(/*decorators*/ undefined, modifiers, (_d = options === null || options === void 0 ? void 0 : options.name) !== null && _d !== void 0 ? _d : ts.factory.createIdentifier(""), parameters, /*body*/ undefined) : kind === 176 /* SyntaxKind.IndexSignature */ ? ts.factory.createIndexSignature(/*decorators*/ undefined, modifiers, parameters, returnTypeNode) : kind === 317 /* SyntaxKind.JSDocFunctionType */ ? ts.factory.createJSDocFunctionType(parameters, returnTypeNode) : kind === 179 /* SyntaxKind.FunctionType */ ? ts.factory.createFunctionTypeNode(typeParameters, parameters, returnTypeNode !== null && returnTypeNode !== void 0 ? returnTypeNode : ts.factory.createTypeReferenceNode(ts.factory.createIdentifier(""))) : kind === 180 /* SyntaxKind.ConstructorType */ ? ts.factory.createConstructorTypeNode(modifiers, typeParameters, parameters, returnTypeNode !== null && returnTypeNode !== void 0 ? returnTypeNode : ts.factory.createTypeReferenceNode(ts.factory.createIdentifier(""))) : kind === 256 /* SyntaxKind.FunctionDeclaration */ ? ts.factory.createFunctionDeclaration(/*decorators*/ undefined, modifiers, /*asteriskToken*/ undefined, (options === null || options === void 0 ? void 0 : options.name) ? ts.cast(options.name, ts.isIdentifier) : ts.factory.createIdentifier(""), typeParameters, parameters, returnTypeNode, /*body*/ undefined) : kind === 213 /* SyntaxKind.FunctionExpression */ ? ts.factory.createFunctionExpression(modifiers, /*asteriskToken*/ undefined, (options === null || options === void 0 ? void 0 : options.name) ? ts.cast(options.name, ts.isIdentifier) : ts.factory.createIdentifier(""), typeParameters, parameters, returnTypeNode, ts.factory.createBlock([])) : kind === 214 /* SyntaxKind.ArrowFunction */ ? ts.factory.createArrowFunction(modifiers, typeParameters, parameters, returnTypeNode, /*equalsGreaterThanToken*/ undefined, ts.factory.createBlock([])) : ts.Debug.assertNever(kind); if (typeArguments) { node.typeArguments = ts.factory.createNodeArray(typeArguments); } return node; } function tryGetThisParameterDeclaration(signature, context) { if (signature.thisParameter) { return symbolToParameterDeclaration(signature.thisParameter, context); } if (signature.declaration) { var thisTag = ts.getJSDocThisTag(signature.declaration); if (thisTag && thisTag.typeExpression) { return ts.factory.createParameterDeclaration( /* decorators */ undefined, /* modifiers */ undefined, /* dotDotDotToken */ undefined, "this", /* questionToken */ undefined, typeToTypeNodeHelper(getTypeFromTypeNode(thisTag.typeExpression), context)); } } } function typeParameterToDeclarationWithConstraint(type, context, constraintNode) { var savedContextFlags = context.flags; context.flags &= ~512 /* NodeBuilderFlags.WriteTypeParametersInQualifiedName */; // Avoids potential infinite loop when building for a claimspace with a generic var modifiers = ts.factory.createModifiersFromModifierFlags(getVarianceModifiers(type)); var name = typeParameterToName(type, context); var defaultParameter = getDefaultFromTypeParameter(type); var defaultParameterNode = defaultParameter && typeToTypeNodeHelper(defaultParameter, context); context.flags = savedContextFlags; return ts.factory.createTypeParameterDeclaration(modifiers, name, constraintNode, defaultParameterNode); } function typeParameterToDeclaration(type, context, constraint) { if (constraint === void 0) { constraint = getConstraintOfTypeParameter(type); } var constraintNode = constraint && typeToTypeNodeHelper(constraint, context); return typeParameterToDeclarationWithConstraint(type, context, constraintNode); } function symbolToParameterDeclaration(parameterSymbol, context, preserveModifierFlags, privateSymbolVisitor, bundledImports) { var parameterDeclaration = ts.getDeclarationOfKind(parameterSymbol, 164 /* SyntaxKind.Parameter */); if (!parameterDeclaration && !ts.isTransientSymbol(parameterSymbol)) { parameterDeclaration = ts.getDeclarationOfKind(parameterSymbol, 340 /* SyntaxKind.JSDocParameterTag */); } var parameterType = getTypeOfSymbol(parameterSymbol); if (parameterDeclaration && isRequiredInitializedParameter(parameterDeclaration)) { parameterType = getOptionalType(parameterType); } var parameterTypeNode = serializeTypeForDeclaration(context, parameterType, parameterSymbol, context.enclosingDeclaration, privateSymbolVisitor, bundledImports); var modifiers = !(context.flags & 8192 /* NodeBuilderFlags.OmitParameterModifiers */) && preserveModifierFlags && parameterDeclaration && parameterDeclaration.modifiers ? parameterDeclaration.modifiers.map(ts.factory.cloneNode) : undefined; var isRest = parameterDeclaration && ts.isRestParameter(parameterDeclaration) || ts.getCheckFlags(parameterSymbol) & 32768 /* CheckFlags.RestParameter */; var dotDotDotToken = isRest ? ts.factory.createToken(25 /* SyntaxKind.DotDotDotToken */) : undefined; var name = parameterDeclaration ? parameterDeclaration.name ? parameterDeclaration.name.kind === 79 /* SyntaxKind.Identifier */ ? ts.setEmitFlags(ts.factory.cloneNode(parameterDeclaration.name), 16777216 /* EmitFlags.NoAsciiEscaping */) : parameterDeclaration.name.kind === 161 /* SyntaxKind.QualifiedName */ ? ts.setEmitFlags(ts.factory.cloneNode(parameterDeclaration.name.right), 16777216 /* EmitFlags.NoAsciiEscaping */) : cloneBindingName(parameterDeclaration.name) : ts.symbolName(parameterSymbol) : ts.symbolName(parameterSymbol); var isOptional = parameterDeclaration && isOptionalParameter(parameterDeclaration) || ts.getCheckFlags(parameterSymbol) & 16384 /* CheckFlags.OptionalParameter */; var questionToken = isOptional ? ts.factory.createToken(57 /* SyntaxKind.QuestionToken */) : undefined; var parameterNode = ts.factory.createParameterDeclaration( /*decorators*/ undefined, modifiers, dotDotDotToken, name, questionToken, parameterTypeNode, /*initializer*/ undefined); context.approximateLength += ts.symbolName(parameterSymbol).length + 3; return parameterNode; function cloneBindingName(node) { return elideInitializerAndSetEmitFlags(node); function elideInitializerAndSetEmitFlags(node) { if (context.tracker.trackSymbol && ts.isComputedPropertyName(node) && isLateBindableName(node)) { trackComputedName(node.expression, context.enclosingDeclaration, context); } var visited = ts.visitEachChild(node, elideInitializerAndSetEmitFlags, ts.nullTransformationContext, /*nodesVisitor*/ undefined, elideInitializerAndSetEmitFlags); if (ts.isBindingElement(visited)) { visited = ts.factory.updateBindingElement(visited, visited.dotDotDotToken, visited.propertyName, visited.name, /*initializer*/ undefined); } if (!ts.nodeIsSynthesized(visited)) { visited = ts.factory.cloneNode(visited); } return ts.setEmitFlags(visited, 1 /* EmitFlags.SingleLine */ | 16777216 /* EmitFlags.NoAsciiEscaping */); } } } function trackComputedName(accessExpression, enclosingDeclaration, context) { if (!context.tracker.trackSymbol) return; // get symbol of the first identifier of the entityName var firstIdentifier = ts.getFirstIdentifier(accessExpression); var name = resolveName(firstIdentifier, firstIdentifier.escapedText, 111551 /* SymbolFlags.Value */ | 1048576 /* SymbolFlags.ExportValue */, /*nodeNotFoundErrorMessage*/ undefined, /*nameArg*/ undefined, /*isUse*/ true); if (name) { context.tracker.trackSymbol(name, enclosingDeclaration, 111551 /* SymbolFlags.Value */); } } function lookupSymbolChain(symbol, context, meaning, yieldModuleSymbol) { context.tracker.trackSymbol(symbol, context.enclosingDeclaration, meaning); // TODO: GH#18217 return lookupSymbolChainWorker(symbol, context, meaning, yieldModuleSymbol); } function lookupSymbolChainWorker(symbol, context, meaning, yieldModuleSymbol) { // Try to get qualified name if the symbol is not a type parameter and there is an enclosing declaration. var chain; var isTypeParameter = symbol.flags & 262144 /* SymbolFlags.TypeParameter */; if (!isTypeParameter && (context.enclosingDeclaration || context.flags & 64 /* NodeBuilderFlags.UseFullyQualifiedType */) && !(context.flags & 134217728 /* NodeBuilderFlags.DoNotIncludeSymbolChain */)) { chain = ts.Debug.checkDefined(getSymbolChain(symbol, meaning, /*endOfChain*/ true)); ts.Debug.assert(chain && chain.length > 0); } else { chain = [symbol]; } return chain; /** @param endOfChain Set to false for recursive calls; non-recursive calls should always output something. */ function getSymbolChain(symbol, meaning, endOfChain) { var accessibleSymbolChain = getAccessibleSymbolChain(symbol, context.enclosingDeclaration, meaning, !!(context.flags & 128 /* NodeBuilderFlags.UseOnlyExternalAliasing */)); var parentSpecifiers; if (!accessibleSymbolChain || needsQualification(accessibleSymbolChain[0], context.enclosingDeclaration, accessibleSymbolChain.length === 1 ? meaning : getQualifiedLeftMeaning(meaning))) { // Go up and add our parent. var parents_1 = getContainersOfSymbol(accessibleSymbolChain ? accessibleSymbolChain[0] : symbol, context.enclosingDeclaration, meaning); if (ts.length(parents_1)) { parentSpecifiers = parents_1.map(function (symbol) { return ts.some(symbol.declarations, hasNonGlobalAugmentationExternalModuleSymbol) ? getSpecifierForModuleSymbol(symbol, context) : undefined; }); var indices = parents_1.map(function (_, i) { return i; }); indices.sort(sortByBestName); var sortedParents = indices.map(function (i) { return parents_1[i]; }); for (var _i = 0, sortedParents_1 = sortedParents; _i < sortedParents_1.length; _i++) { var parent = sortedParents_1[_i]; var parentChain = getSymbolChain(parent, getQualifiedLeftMeaning(meaning), /*endOfChain*/ false); if (parentChain) { if (parent.exports && parent.exports.get("export=" /* InternalSymbolName.ExportEquals */) && getSymbolIfSameReference(parent.exports.get("export=" /* InternalSymbolName.ExportEquals */), symbol)) { // parentChain root _is_ symbol - symbol is a module export=, so it kinda looks like it's own parent // No need to lookup an alias for the symbol in itself accessibleSymbolChain = parentChain; break; } accessibleSymbolChain = parentChain.concat(accessibleSymbolChain || [getAliasForSymbolInContainer(parent, symbol) || symbol]); break; } } } } if (accessibleSymbolChain) { return accessibleSymbolChain; } if ( // If this is the last part of outputting the symbol, always output. The cases apply only to parent symbols. endOfChain || // If a parent symbol is an anonymous type, don't write it. !(symbol.flags & (2048 /* SymbolFlags.TypeLiteral */ | 4096 /* SymbolFlags.ObjectLiteral */))) { // If a parent symbol is an external module, don't write it. (We prefer just `x` vs `"foo/bar".x`.) if (!endOfChain && !yieldModuleSymbol && !!ts.forEach(symbol.declarations, hasNonGlobalAugmentationExternalModuleSymbol)) { return; } return [symbol]; } function sortByBestName(a, b) { var specifierA = parentSpecifiers[a]; var specifierB = parentSpecifiers[b]; if (specifierA && specifierB) { var isBRelative = ts.pathIsRelative(specifierB); if (ts.pathIsRelative(specifierA) === isBRelative) { // Both relative or both non-relative, sort by number of parts return ts.moduleSpecifiers.countPathComponents(specifierA) - ts.moduleSpecifiers.countPathComponents(specifierB); } if (isBRelative) { // A is non-relative, B is relative: prefer A return -1; } // A is relative, B is non-relative: prefer B return 1; } return 0; } } } function typeParametersToTypeParameterDeclarations(symbol, context) { var typeParameterNodes; var targetSymbol = getTargetSymbol(symbol); if (targetSymbol.flags & (32 /* SymbolFlags.Class */ | 64 /* SymbolFlags.Interface */ | 524288 /* SymbolFlags.TypeAlias */)) { typeParameterNodes = ts.factory.createNodeArray(ts.map(getLocalTypeParametersOfClassOrInterfaceOrTypeAlias(symbol), function (tp) { return typeParameterToDeclaration(tp, context); })); } return typeParameterNodes; } function lookupTypeParameterNodes(chain, index, context) { var _a; ts.Debug.assert(chain && 0 <= index && index < chain.length); var symbol = chain[index]; var symbolId = getSymbolId(symbol); if ((_a = context.typeParameterSymbolList) === null || _a === void 0 ? void 0 : _a.has(symbolId)) { return undefined; } (context.typeParameterSymbolList || (context.typeParameterSymbolList = new ts.Set())).add(symbolId); var typeParameterNodes; if (context.flags & 512 /* NodeBuilderFlags.WriteTypeParametersInQualifiedName */ && index < (chain.length - 1)) { var parentSymbol = symbol; var nextSymbol_1 = chain[index + 1]; if (ts.getCheckFlags(nextSymbol_1) & 1 /* CheckFlags.Instantiated */) { var params = getTypeParametersOfClassOrInterface(parentSymbol.flags & 2097152 /* SymbolFlags.Alias */ ? resolveAlias(parentSymbol) : parentSymbol); typeParameterNodes = mapToTypeNodes(ts.map(params, function (t) { return getMappedType(t, nextSymbol_1.mapper); }), context); } else { typeParameterNodes = typeParametersToTypeParameterDeclarations(symbol, context); } } return typeParameterNodes; } /** * Given A[B][C][D], finds A[B] */ function getTopmostIndexedAccessType(top) { if (ts.isIndexedAccessTypeNode(top.objectType)) { return getTopmostIndexedAccessType(top.objectType); } return top; } function getSpecifierForModuleSymbol(symbol, context, overrideImportMode) { var _a; var file = ts.getDeclarationOfKind(symbol, 305 /* SyntaxKind.SourceFile */); if (!file) { var equivalentFileSymbol = ts.firstDefined(symbol.declarations, function (d) { return getFileSymbolIfFileSymbolExportEqualsContainer(d, symbol); }); if (equivalentFileSymbol) { file = ts.getDeclarationOfKind(equivalentFileSymbol, 305 /* SyntaxKind.SourceFile */); } } if (file && file.moduleName !== undefined) { // Use the amd name if it is available return file.moduleName; } if (!file) { if (context.tracker.trackReferencedAmbientModule) { var ambientDecls = ts.filter(symbol.declarations, ts.isAmbientModule); if (ts.length(ambientDecls)) { for (var _i = 0, _b = ambientDecls; _i < _b.length; _i++) { var decl = _b[_i]; context.tracker.trackReferencedAmbientModule(decl, symbol); } } } if (ambientModuleSymbolRegex.test(symbol.escapedName)) { return symbol.escapedName.substring(1, symbol.escapedName.length - 1); } } if (!context.enclosingDeclaration || !context.tracker.moduleResolverHost) { // If there's no context declaration, we can't lookup a non-ambient specifier, so we just use the symbol name if (ambientModuleSymbolRegex.test(symbol.escapedName)) { return symbol.escapedName.substring(1, symbol.escapedName.length - 1); } return ts.getSourceFileOfNode(ts.getNonAugmentationDeclaration(symbol)).fileName; // A resolver may not be provided for baselines and errors - in those cases we use the fileName in full } var contextFile = ts.getSourceFileOfNode(ts.getOriginalNode(context.enclosingDeclaration)); var resolutionMode = overrideImportMode || (contextFile === null || contextFile === void 0 ? void 0 : contextFile.impliedNodeFormat); var cacheKey = getSpecifierCacheKey(contextFile.path, resolutionMode); var links = getSymbolLinks(symbol); var specifier = links.specifierCache && links.specifierCache.get(cacheKey); if (!specifier) { var isBundle_1 = !!ts.outFile(compilerOptions); // For declaration bundles, we need to generate absolute paths relative to the common source dir for imports, // just like how the declaration emitter does for the ambient module declarations - we can easily accomplish this // using the `baseUrl` compiler option (which we would otherwise never use in declaration emit) and a non-relative // specifier preference var moduleResolverHost = context.tracker.moduleResolverHost; var specifierCompilerOptions = isBundle_1 ? __assign(__assign({}, compilerOptions), { baseUrl: moduleResolverHost.getCommonSourceDirectory() }) : compilerOptions; specifier = ts.first(ts.moduleSpecifiers.getModuleSpecifiers(symbol, checker, specifierCompilerOptions, contextFile, moduleResolverHost, { importModuleSpecifierPreference: isBundle_1 ? "non-relative" : "project-relative", importModuleSpecifierEnding: isBundle_1 ? "minimal" : resolutionMode === ts.ModuleKind.ESNext ? "js" : undefined, }, { overrideImportMode: overrideImportMode })); (_a = links.specifierCache) !== null && _a !== void 0 ? _a : (links.specifierCache = new ts.Map()); links.specifierCache.set(cacheKey, specifier); } return specifier; function getSpecifierCacheKey(path, mode) { return mode === undefined ? path : "".concat(mode, "|").concat(path); } } function symbolToEntityNameNode(symbol) { var identifier = ts.factory.createIdentifier(ts.unescapeLeadingUnderscores(symbol.escapedName)); return symbol.parent ? ts.factory.createQualifiedName(symbolToEntityNameNode(symbol.parent), identifier) : identifier; } function symbolToTypeNode(symbol, context, meaning, overrideTypeArguments) { var _a, _b, _c, _d; var chain = lookupSymbolChain(symbol, context, meaning, !(context.flags & 16384 /* NodeBuilderFlags.UseAliasDefinedOutsideCurrentScope */)); // If we're using aliases outside the current scope, dont bother with the module var isTypeOf = meaning === 111551 /* SymbolFlags.Value */; if (ts.some(chain[0].declarations, hasNonGlobalAugmentationExternalModuleSymbol)) { // module is root, must use `ImportTypeNode` var nonRootParts = chain.length > 1 ? createAccessFromSymbolChain(chain, chain.length - 1, 1) : undefined; var typeParameterNodes = overrideTypeArguments || lookupTypeParameterNodes(chain, 0, context); var contextFile = ts.getSourceFileOfNode(ts.getOriginalNode(context.enclosingDeclaration)); var targetFile = ts.getSourceFileOfModule(chain[0]); var specifier = void 0; var assertion = void 0; if (ts.getEmitModuleResolutionKind(compilerOptions) === ts.ModuleResolutionKind.Node16 || ts.getEmitModuleResolutionKind(compilerOptions) === ts.ModuleResolutionKind.NodeNext) { // An `import` type directed at an esm format file is only going to resolve in esm mode - set the esm mode assertion if ((targetFile === null || targetFile === void 0 ? void 0 : targetFile.impliedNodeFormat) === ts.ModuleKind.ESNext && targetFile.impliedNodeFormat !== (contextFile === null || contextFile === void 0 ? void 0 : contextFile.impliedNodeFormat)) { specifier = getSpecifierForModuleSymbol(chain[0], context, ts.ModuleKind.ESNext); assertion = ts.factory.createImportTypeAssertionContainer(ts.factory.createAssertClause(ts.factory.createNodeArray([ ts.factory.createAssertEntry(ts.factory.createStringLiteral("resolution-mode"), ts.factory.createStringLiteral("import")) ]))); (_b = (_a = context.tracker).reportImportTypeNodeResolutionModeOverride) === null || _b === void 0 ? void 0 : _b.call(_a); } } if (!specifier) { specifier = getSpecifierForModuleSymbol(chain[0], context); } if (!(context.flags & 67108864 /* NodeBuilderFlags.AllowNodeModulesRelativePaths */) && ts.getEmitModuleResolutionKind(compilerOptions) !== ts.ModuleResolutionKind.Classic && specifier.indexOf("/node_modules/") >= 0) { var oldSpecifier = specifier; if (ts.getEmitModuleResolutionKind(compilerOptions) === ts.ModuleResolutionKind.Node16 || ts.getEmitModuleResolutionKind(compilerOptions) === ts.ModuleResolutionKind.NodeNext) { // We might be able to write a portable import type using a mode override; try specifier generation again, but with a different mode set var swappedMode = (contextFile === null || contextFile === void 0 ? void 0 : contextFile.impliedNodeFormat) === ts.ModuleKind.ESNext ? ts.ModuleKind.CommonJS : ts.ModuleKind.ESNext; specifier = getSpecifierForModuleSymbol(chain[0], context, swappedMode); if (specifier.indexOf("/node_modules/") >= 0) { // Still unreachable :( specifier = oldSpecifier; } else { assertion = ts.factory.createImportTypeAssertionContainer(ts.factory.createAssertClause(ts.factory.createNodeArray([ ts.factory.createAssertEntry(ts.factory.createStringLiteral("resolution-mode"), ts.factory.createStringLiteral(swappedMode === ts.ModuleKind.ESNext ? "import" : "require")) ]))); (_d = (_c = context.tracker).reportImportTypeNodeResolutionModeOverride) === null || _d === void 0 ? void 0 : _d.call(_c); } } if (!assertion) { // If ultimately we can only name the symbol with a reference that dives into a `node_modules` folder, we should error // since declaration files with these kinds of references are liable to fail when published :( context.encounteredError = true; if (context.tracker.reportLikelyUnsafeImportRequiredError) { context.tracker.reportLikelyUnsafeImportRequiredError(oldSpecifier); } } } var lit = ts.factory.createLiteralTypeNode(ts.factory.createStringLiteral(specifier)); if (context.tracker.trackExternalModuleSymbolOfImportTypeNode) context.tracker.trackExternalModuleSymbolOfImportTypeNode(chain[0]); context.approximateLength += specifier.length + 10; // specifier + import("") if (!nonRootParts || ts.isEntityName(nonRootParts)) { if (nonRootParts) { var lastId = ts.isIdentifier(nonRootParts) ? nonRootParts : nonRootParts.right; lastId.typeArguments = undefined; } return ts.factory.createImportTypeNode(lit, assertion, nonRootParts, typeParameterNodes, isTypeOf); } else { var splitNode = getTopmostIndexedAccessType(nonRootParts); var qualifier = splitNode.objectType.typeName; return ts.factory.createIndexedAccessTypeNode(ts.factory.createImportTypeNode(lit, assertion, qualifier, typeParameterNodes, isTypeOf), splitNode.indexType); } } var entityName = createAccessFromSymbolChain(chain, chain.length - 1, 0); if (ts.isIndexedAccessTypeNode(entityName)) { return entityName; // Indexed accesses can never be `typeof` } if (isTypeOf) { return ts.factory.createTypeQueryNode(entityName); } else { var lastId = ts.isIdentifier(entityName) ? entityName : entityName.right; var lastTypeArgs = lastId.typeArguments; lastId.typeArguments = undefined; return ts.factory.createTypeReferenceNode(entityName, lastTypeArgs); } function createAccessFromSymbolChain(chain, index, stopper) { var typeParameterNodes = index === (chain.length - 1) ? overrideTypeArguments : lookupTypeParameterNodes(chain, index, context); var symbol = chain[index]; var parent = chain[index - 1]; var symbolName; if (index === 0) { context.flags |= 16777216 /* NodeBuilderFlags.InInitialEntityName */; symbolName = getNameOfSymbolAsWritten(symbol, context); context.approximateLength += (symbolName ? symbolName.length : 0) + 1; context.flags ^= 16777216 /* NodeBuilderFlags.InInitialEntityName */; } else { if (parent && getExportsOfSymbol(parent)) { var exports_2 = getExportsOfSymbol(parent); ts.forEachEntry(exports_2, function (ex, name) { if (getSymbolIfSameReference(ex, symbol) && !isLateBoundName(name) && name !== "export=" /* InternalSymbolName.ExportEquals */) { symbolName = ts.unescapeLeadingUnderscores(name); return true; } }); } } if (symbolName === undefined) { var name = ts.firstDefined(symbol.declarations, ts.getNameOfDeclaration); if (name && ts.isComputedPropertyName(name) && ts.isEntityName(name.expression)) { var LHS = createAccessFromSymbolChain(chain, index - 1, stopper); if (ts.isEntityName(LHS)) { return ts.factory.createIndexedAccessTypeNode(ts.factory.createParenthesizedType(ts.factory.createTypeQueryNode(LHS)), ts.factory.createTypeQueryNode(name.expression)); } return LHS; } symbolName = getNameOfSymbolAsWritten(symbol, context); } context.approximateLength += symbolName.length + 1; if (!(context.flags & 16 /* NodeBuilderFlags.ForbidIndexedAccessSymbolReferences */) && parent && getMembersOfSymbol(parent) && getMembersOfSymbol(parent).get(symbol.escapedName) && getSymbolIfSameReference(getMembersOfSymbol(parent).get(symbol.escapedName), symbol)) { // Should use an indexed access var LHS = createAccessFromSymbolChain(chain, index - 1, stopper); if (ts.isIndexedAccessTypeNode(LHS)) { return ts.factory.createIndexedAccessTypeNode(LHS, ts.factory.createLiteralTypeNode(ts.factory.createStringLiteral(symbolName))); } else { return ts.factory.createIndexedAccessTypeNode(ts.factory.createTypeReferenceNode(LHS, typeParameterNodes), ts.factory.createLiteralTypeNode(ts.factory.createStringLiteral(symbolName))); } } var identifier = ts.setEmitFlags(ts.factory.createIdentifier(symbolName, typeParameterNodes), 16777216 /* EmitFlags.NoAsciiEscaping */); identifier.symbol = symbol; if (index > stopper) { var LHS = createAccessFromSymbolChain(chain, index - 1, stopper); if (!ts.isEntityName(LHS)) { return ts.Debug.fail("Impossible construct - an export of an indexed access cannot be reachable"); } return ts.factory.createQualifiedName(LHS, identifier); } return identifier; } } function typeParameterShadowsNameInScope(escapedName, context, type) { var result = resolveName(context.enclosingDeclaration, escapedName, 788968 /* SymbolFlags.Type */, /*nameNotFoundArg*/ undefined, escapedName, /*isUse*/ false); if (result) { if (result.flags & 262144 /* SymbolFlags.TypeParameter */ && result === type.symbol) { return false; } return true; } return false; } function typeParameterToName(type, context) { var _a, _b; if (context.flags & 4 /* NodeBuilderFlags.GenerateNamesForShadowedTypeParams */ && context.typeParameterNames) { var cached = context.typeParameterNames.get(getTypeId(type)); if (cached) { return cached; } } var result = symbolToName(type.symbol, context, 788968 /* SymbolFlags.Type */, /*expectsIdentifier*/ true); if (!(result.kind & 79 /* SyntaxKind.Identifier */)) { return ts.factory.createIdentifier("(Missing type parameter)"); } if (context.flags & 4 /* NodeBuilderFlags.GenerateNamesForShadowedTypeParams */) { var rawtext = result.escapedText; var i = ((_a = context.typeParameterNamesByTextNextNameCount) === null || _a === void 0 ? void 0 : _a.get(rawtext)) || 0; var text = rawtext; while (((_b = context.typeParameterNamesByText) === null || _b === void 0 ? void 0 : _b.has(text)) || typeParameterShadowsNameInScope(text, context, type)) { i++; text = "".concat(rawtext, "_").concat(i); } if (text !== rawtext) { result = ts.factory.createIdentifier(text, result.typeArguments); } // avoiding iterations of the above loop turns out to be worth it when `i` starts to get large, so we cache the max // `i` we've used thus far, to save work later (context.typeParameterNamesByTextNextNameCount || (context.typeParameterNamesByTextNextNameCount = new ts.Map())).set(rawtext, i); (context.typeParameterNames || (context.typeParameterNames = new ts.Map())).set(getTypeId(type), result); (context.typeParameterNamesByText || (context.typeParameterNamesByText = new ts.Set())).add(rawtext); } return result; } function symbolToName(symbol, context, meaning, expectsIdentifier) { var chain = lookupSymbolChain(symbol, context, meaning); if (expectsIdentifier && chain.length !== 1 && !context.encounteredError && !(context.flags & 65536 /* NodeBuilderFlags.AllowQualifiedNameInPlaceOfIdentifier */)) { context.encounteredError = true; } return createEntityNameFromSymbolChain(chain, chain.length - 1); function createEntityNameFromSymbolChain(chain, index) { var typeParameterNodes = lookupTypeParameterNodes(chain, index, context); var symbol = chain[index]; if (index === 0) { context.flags |= 16777216 /* NodeBuilderFlags.InInitialEntityName */; } var symbolName = getNameOfSymbolAsWritten(symbol, context); if (index === 0) { context.flags ^= 16777216 /* NodeBuilderFlags.InInitialEntityName */; } var identifier = ts.setEmitFlags(ts.factory.createIdentifier(symbolName, typeParameterNodes), 16777216 /* EmitFlags.NoAsciiEscaping */); identifier.symbol = symbol; return index > 0 ? ts.factory.createQualifiedName(createEntityNameFromSymbolChain(chain, index - 1), identifier) : identifier; } } function symbolToExpression(symbol, context, meaning) { var chain = lookupSymbolChain(symbol, context, meaning); return createExpressionFromSymbolChain(chain, chain.length - 1); function createExpressionFromSymbolChain(chain, index) { var typeParameterNodes = lookupTypeParameterNodes(chain, index, context); var symbol = chain[index]; if (index === 0) { context.flags |= 16777216 /* NodeBuilderFlags.InInitialEntityName */; } var symbolName = getNameOfSymbolAsWritten(symbol, context); if (index === 0) { context.flags ^= 16777216 /* NodeBuilderFlags.InInitialEntityName */; } var firstChar = symbolName.charCodeAt(0); if (ts.isSingleOrDoubleQuote(firstChar) && ts.some(symbol.declarations, hasNonGlobalAugmentationExternalModuleSymbol)) { return ts.factory.createStringLiteral(getSpecifierForModuleSymbol(symbol, context)); } var canUsePropertyAccess = firstChar === 35 /* CharacterCodes.hash */ ? symbolName.length > 1 && ts.isIdentifierStart(symbolName.charCodeAt(1), languageVersion) : ts.isIdentifierStart(firstChar, languageVersion); if (index === 0 || canUsePropertyAccess) { var identifier = ts.setEmitFlags(ts.factory.createIdentifier(symbolName, typeParameterNodes), 16777216 /* EmitFlags.NoAsciiEscaping */); identifier.symbol = symbol; return index > 0 ? ts.factory.createPropertyAccessExpression(createExpressionFromSymbolChain(chain, index - 1), identifier) : identifier; } else { if (firstChar === 91 /* CharacterCodes.openBracket */) { symbolName = symbolName.substring(1, symbolName.length - 1); firstChar = symbolName.charCodeAt(0); } var expression = void 0; if (ts.isSingleOrDoubleQuote(firstChar) && !(symbol.flags & 8 /* SymbolFlags.EnumMember */)) { expression = ts.factory.createStringLiteral(ts.stripQuotes(symbolName).replace(/\\./g, function (s) { return s.substring(1); }), firstChar === 39 /* CharacterCodes.singleQuote */); } else if (("" + +symbolName) === symbolName) { expression = ts.factory.createNumericLiteral(+symbolName); } if (!expression) { expression = ts.setEmitFlags(ts.factory.createIdentifier(symbolName, typeParameterNodes), 16777216 /* EmitFlags.NoAsciiEscaping */); expression.symbol = symbol; } return ts.factory.createElementAccessExpression(createExpressionFromSymbolChain(chain, index - 1), expression); } } } function isStringNamed(d) { var name = ts.getNameOfDeclaration(d); return !!name && ts.isStringLiteral(name); } function isSingleQuotedStringNamed(d) { var name = ts.getNameOfDeclaration(d); return !!(name && ts.isStringLiteral(name) && (name.singleQuote || !ts.nodeIsSynthesized(name) && ts.startsWith(ts.getTextOfNode(name, /*includeTrivia*/ false), "'"))); } function getPropertyNameNodeForSymbol(symbol, context) { var singleQuote = !!ts.length(symbol.declarations) && ts.every(symbol.declarations, isSingleQuotedStringNamed); var fromNameType = getPropertyNameNodeForSymbolFromNameType(symbol, context, singleQuote); if (fromNameType) { return fromNameType; } var rawName = ts.unescapeLeadingUnderscores(symbol.escapedName); var stringNamed = !!ts.length(symbol.declarations) && ts.every(symbol.declarations, isStringNamed); return ts.createPropertyNameNodeForIdentifierOrLiteral(rawName, ts.getEmitScriptTarget(compilerOptions), singleQuote, stringNamed); } // See getNameForSymbolFromNameType for a stringy equivalent function getPropertyNameNodeForSymbolFromNameType(symbol, context, singleQuote) { var nameType = getSymbolLinks(symbol).nameType; if (nameType) { if (nameType.flags & 384 /* TypeFlags.StringOrNumberLiteral */) { var name = "" + nameType.value; if (!ts.isIdentifierText(name, ts.getEmitScriptTarget(compilerOptions)) && !ts.isNumericLiteralName(name)) { return ts.factory.createStringLiteral(name, !!singleQuote); } if (ts.isNumericLiteralName(name) && ts.startsWith(name, "-")) { return ts.factory.createComputedPropertyName(ts.factory.createNumericLiteral(+name)); } return ts.createPropertyNameNodeForIdentifierOrLiteral(name, ts.getEmitScriptTarget(compilerOptions)); } if (nameType.flags & 8192 /* TypeFlags.UniqueESSymbol */) { return ts.factory.createComputedPropertyName(symbolToExpression(nameType.symbol, context, 111551 /* SymbolFlags.Value */)); } } } function cloneNodeBuilderContext(context) { var initial = __assign({}, context); // Make type parameters created within this context not consume the name outside this context // The symbol serializer ends up creating many sibling scopes that all need "separate" contexts when // it comes to naming things - within a normal `typeToTypeNode` call, the node builder only ever descends // through the type tree, so the only cases where we could have used distinct sibling scopes was when there // were multiple generic overloads with similar generated type parameter names // The effect: // When we write out // export const x: (x: T) => T // export const y: (x: T) => T // we write it out like that, rather than as // export const x: (x: T) => T // export const y: (x: T_1) => T_1 if (initial.typeParameterNames) { initial.typeParameterNames = new ts.Map(initial.typeParameterNames); } if (initial.typeParameterNamesByText) { initial.typeParameterNamesByText = new ts.Set(initial.typeParameterNamesByText); } if (initial.typeParameterSymbolList) { initial.typeParameterSymbolList = new ts.Set(initial.typeParameterSymbolList); } initial.tracker = wrapSymbolTrackerToReportForContext(initial, initial.tracker); return initial; } function getDeclarationWithTypeAnnotation(symbol, enclosingDeclaration) { return symbol.declarations && ts.find(symbol.declarations, function (s) { return !!ts.getEffectiveTypeAnnotationNode(s) && (!enclosingDeclaration || !!ts.findAncestor(s, function (n) { return n === enclosingDeclaration; })); }); } function existingTypeNodeIsNotReferenceOrIsReferenceWithCompatibleTypeArgumentCount(existing, type) { return !(ts.getObjectFlags(type) & 4 /* ObjectFlags.Reference */) || !ts.isTypeReferenceNode(existing) || ts.length(existing.typeArguments) >= getMinTypeArgumentCount(type.target.typeParameters); } /** * Unlike `typeToTypeNodeHelper`, this handles setting up the `AllowUniqueESSymbolType` flag * so a `unique symbol` is returned when appropriate for the input symbol, rather than `typeof sym` */ function serializeTypeForDeclaration(context, type, symbol, enclosingDeclaration, includePrivateSymbol, bundled) { if (!isErrorType(type) && enclosingDeclaration) { var declWithExistingAnnotation = getDeclarationWithTypeAnnotation(symbol, enclosingDeclaration); if (declWithExistingAnnotation && !ts.isFunctionLikeDeclaration(declWithExistingAnnotation) && !ts.isGetAccessorDeclaration(declWithExistingAnnotation)) { // try to reuse the existing annotation var existing = ts.getEffectiveTypeAnnotationNode(declWithExistingAnnotation); if (typeNodeIsEquivalentToType(existing, declWithExistingAnnotation, type) && existingTypeNodeIsNotReferenceOrIsReferenceWithCompatibleTypeArgumentCount(existing, type)) { var result_6 = serializeExistingTypeNode(context, existing, includePrivateSymbol, bundled); if (result_6) { return result_6; } } } } var oldFlags = context.flags; if (type.flags & 8192 /* TypeFlags.UniqueESSymbol */ && type.symbol === symbol && (!context.enclosingDeclaration || ts.some(symbol.declarations, function (d) { return ts.getSourceFileOfNode(d) === ts.getSourceFileOfNode(context.enclosingDeclaration); }))) { context.flags |= 1048576 /* NodeBuilderFlags.AllowUniqueESSymbolType */; } var result = typeToTypeNodeHelper(type, context); context.flags = oldFlags; return result; } function typeNodeIsEquivalentToType(typeNode, annotatedDeclaration, type) { var typeFromTypeNode = getTypeFromTypeNode(typeNode); if (typeFromTypeNode === type) { return true; } if (ts.isParameter(annotatedDeclaration) && annotatedDeclaration.questionToken) { return getTypeWithFacts(type, 524288 /* TypeFacts.NEUndefined */) === typeFromTypeNode; } return false; } function serializeReturnTypeForSignature(context, type, signature, includePrivateSymbol, bundled) { if (!isErrorType(type) && context.enclosingDeclaration) { var annotation = signature.declaration && ts.getEffectiveReturnTypeNode(signature.declaration); if (!!ts.findAncestor(annotation, function (n) { return n === context.enclosingDeclaration; }) && annotation) { var annotated = getTypeFromTypeNode(annotation); var thisInstantiated = annotated.flags & 262144 /* TypeFlags.TypeParameter */ && annotated.isThisType ? instantiateType(annotated, signature.mapper) : annotated; if (thisInstantiated === type && existingTypeNodeIsNotReferenceOrIsReferenceWithCompatibleTypeArgumentCount(annotation, type)) { var result = serializeExistingTypeNode(context, annotation, includePrivateSymbol, bundled); if (result) { return result; } } } } return typeToTypeNodeHelper(type, context); } function trackExistingEntityName(node, context, includePrivateSymbol) { var _a, _b; var introducesError = false; var leftmost = ts.getFirstIdentifier(node); if (ts.isInJSFile(node) && (ts.isExportsIdentifier(leftmost) || ts.isModuleExportsAccessExpression(leftmost.parent) || (ts.isQualifiedName(leftmost.parent) && ts.isModuleIdentifier(leftmost.parent.left) && ts.isExportsIdentifier(leftmost.parent.right)))) { introducesError = true; return { introducesError: introducesError, node: node }; } var sym = resolveEntityName(leftmost, 67108863 /* SymbolFlags.All */, /*ignoreErrors*/ true, /*dontResolveALias*/ true); if (sym) { if (isSymbolAccessible(sym, context.enclosingDeclaration, 67108863 /* SymbolFlags.All */, /*shouldComputeAliasesToMakeVisible*/ false).accessibility !== 0 /* SymbolAccessibility.Accessible */) { introducesError = true; } else { (_b = (_a = context.tracker) === null || _a === void 0 ? void 0 : _a.trackSymbol) === null || _b === void 0 ? void 0 : _b.call(_a, sym, context.enclosingDeclaration, 67108863 /* SymbolFlags.All */); includePrivateSymbol === null || includePrivateSymbol === void 0 ? void 0 : includePrivateSymbol(sym); } if (ts.isIdentifier(node)) { var type = getDeclaredTypeOfSymbol(sym); var name = sym.flags & 262144 /* SymbolFlags.TypeParameter */ && !isTypeSymbolAccessible(type.symbol, context.enclosingDeclaration) ? typeParameterToName(type, context) : ts.factory.cloneNode(node); name.symbol = sym; // for quickinfo, which uses identifier symbol information return { introducesError: introducesError, node: ts.setEmitFlags(ts.setOriginalNode(name, node), 16777216 /* EmitFlags.NoAsciiEscaping */) }; } } return { introducesError: introducesError, node: node }; } function serializeExistingTypeNode(context, existing, includePrivateSymbol, bundled) { if (cancellationToken && cancellationToken.throwIfCancellationRequested) { cancellationToken.throwIfCancellationRequested(); } var hadError = false; var file = ts.getSourceFileOfNode(existing); var transformed = ts.visitNode(existing, visitExistingNodeTreeSymbols); if (hadError) { return undefined; } return transformed === existing ? ts.setTextRange(ts.factory.cloneNode(existing), existing) : transformed; function visitExistingNodeTreeSymbols(node) { // We don't _actually_ support jsdoc namepath types, emit `any` instead if (ts.isJSDocAllType(node) || node.kind === 319 /* SyntaxKind.JSDocNamepathType */) { return ts.factory.createKeywordTypeNode(130 /* SyntaxKind.AnyKeyword */); } if (ts.isJSDocUnknownType(node)) { return ts.factory.createKeywordTypeNode(155 /* SyntaxKind.UnknownKeyword */); } if (ts.isJSDocNullableType(node)) { return ts.factory.createUnionTypeNode([ts.visitNode(node.type, visitExistingNodeTreeSymbols), ts.factory.createLiteralTypeNode(ts.factory.createNull())]); } if (ts.isJSDocOptionalType(node)) { return ts.factory.createUnionTypeNode([ts.visitNode(node.type, visitExistingNodeTreeSymbols), ts.factory.createKeywordTypeNode(153 /* SyntaxKind.UndefinedKeyword */)]); } if (ts.isJSDocNonNullableType(node)) { return ts.visitNode(node.type, visitExistingNodeTreeSymbols); } if (ts.isJSDocVariadicType(node)) { return ts.factory.createArrayTypeNode(ts.visitNode(node.type, visitExistingNodeTreeSymbols)); } if (ts.isJSDocTypeLiteral(node)) { return ts.factory.createTypeLiteralNode(ts.map(node.jsDocPropertyTags, function (t) { var name = ts.isIdentifier(t.name) ? t.name : t.name.right; var typeViaParent = getTypeOfPropertyOfType(getTypeFromTypeNode(node), name.escapedText); var overrideTypeNode = typeViaParent && t.typeExpression && getTypeFromTypeNode(t.typeExpression.type) !== typeViaParent ? typeToTypeNodeHelper(typeViaParent, context) : undefined; return ts.factory.createPropertySignature( /*modifiers*/ undefined, name, t.isBracketed || t.typeExpression && ts.isJSDocOptionalType(t.typeExpression.type) ? ts.factory.createToken(57 /* SyntaxKind.QuestionToken */) : undefined, overrideTypeNode || (t.typeExpression && ts.visitNode(t.typeExpression.type, visitExistingNodeTreeSymbols)) || ts.factory.createKeywordTypeNode(130 /* SyntaxKind.AnyKeyword */)); })); } if (ts.isTypeReferenceNode(node) && ts.isIdentifier(node.typeName) && node.typeName.escapedText === "") { return ts.setOriginalNode(ts.factory.createKeywordTypeNode(130 /* SyntaxKind.AnyKeyword */), node); } if ((ts.isExpressionWithTypeArguments(node) || ts.isTypeReferenceNode(node)) && ts.isJSDocIndexSignature(node)) { return ts.factory.createTypeLiteralNode([ts.factory.createIndexSignature( /*decorators*/ undefined, /*modifiers*/ undefined, [ts.factory.createParameterDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*dotdotdotToken*/ undefined, "x", /*questionToken*/ undefined, ts.visitNode(node.typeArguments[0], visitExistingNodeTreeSymbols))], ts.visitNode(node.typeArguments[1], visitExistingNodeTreeSymbols))]); } if (ts.isJSDocFunctionType(node)) { if (ts.isJSDocConstructSignature(node)) { var newTypeNode_1; return ts.factory.createConstructorTypeNode(node.modifiers, ts.visitNodes(node.typeParameters, visitExistingNodeTreeSymbols), ts.mapDefined(node.parameters, function (p, i) { return p.name && ts.isIdentifier(p.name) && p.name.escapedText === "new" ? (newTypeNode_1 = p.type, undefined) : ts.factory.createParameterDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, getEffectiveDotDotDotForParameter(p), getNameForJSDocFunctionParameter(p, i), p.questionToken, ts.visitNode(p.type, visitExistingNodeTreeSymbols), /*initializer*/ undefined); }), ts.visitNode(newTypeNode_1 || node.type, visitExistingNodeTreeSymbols) || ts.factory.createKeywordTypeNode(130 /* SyntaxKind.AnyKeyword */)); } else { return ts.factory.createFunctionTypeNode(ts.visitNodes(node.typeParameters, visitExistingNodeTreeSymbols), ts.map(node.parameters, function (p, i) { return ts.factory.createParameterDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, getEffectiveDotDotDotForParameter(p), getNameForJSDocFunctionParameter(p, i), p.questionToken, ts.visitNode(p.type, visitExistingNodeTreeSymbols), /*initializer*/ undefined); }), ts.visitNode(node.type, visitExistingNodeTreeSymbols) || ts.factory.createKeywordTypeNode(130 /* SyntaxKind.AnyKeyword */)); } } if (ts.isTypeReferenceNode(node) && ts.isInJSDoc(node) && (!existingTypeNodeIsNotReferenceOrIsReferenceWithCompatibleTypeArgumentCount(node, getTypeFromTypeNode(node)) || getIntendedTypeFromJSDocTypeReference(node) || unknownSymbol === resolveTypeReferenceName(node, 788968 /* SymbolFlags.Type */, /*ignoreErrors*/ true))) { return ts.setOriginalNode(typeToTypeNodeHelper(getTypeFromTypeNode(node), context), node); } if (ts.isLiteralImportTypeNode(node)) { var nodeSymbol = getNodeLinks(node).resolvedSymbol; if (ts.isInJSDoc(node) && nodeSymbol && ( // The import type resolved using jsdoc fallback logic (!node.isTypeOf && !(nodeSymbol.flags & 788968 /* SymbolFlags.Type */)) || // The import type had type arguments autofilled by js fallback logic !(ts.length(node.typeArguments) >= getMinTypeArgumentCount(getLocalTypeParametersOfClassOrInterfaceOrTypeAlias(nodeSymbol))))) { return ts.setOriginalNode(typeToTypeNodeHelper(getTypeFromTypeNode(node), context), node); } return ts.factory.updateImportTypeNode(node, ts.factory.updateLiteralTypeNode(node.argument, rewriteModuleSpecifier(node, node.argument.literal)), node.qualifier, ts.visitNodes(node.typeArguments, visitExistingNodeTreeSymbols, ts.isTypeNode), node.isTypeOf); } if (ts.isEntityName(node) || ts.isEntityNameExpression(node)) { var _a = trackExistingEntityName(node, context, includePrivateSymbol), introducesError = _a.introducesError, result = _a.node; hadError = hadError || introducesError; if (result !== node) { return result; } } if (file && ts.isTupleTypeNode(node) && (ts.getLineAndCharacterOfPosition(file, node.pos).line === ts.getLineAndCharacterOfPosition(file, node.end).line)) { ts.setEmitFlags(node, 1 /* EmitFlags.SingleLine */); } return ts.visitEachChild(node, visitExistingNodeTreeSymbols, ts.nullTransformationContext); function getEffectiveDotDotDotForParameter(p) { return p.dotDotDotToken || (p.type && ts.isJSDocVariadicType(p.type) ? ts.factory.createToken(25 /* SyntaxKind.DotDotDotToken */) : undefined); } /** Note that `new:T` parameters are not handled, but should be before calling this function. */ function getNameForJSDocFunctionParameter(p, index) { return p.name && ts.isIdentifier(p.name) && p.name.escapedText === "this" ? "this" : getEffectiveDotDotDotForParameter(p) ? "args" : "arg".concat(index); } function rewriteModuleSpecifier(parent, lit) { if (bundled) { if (context.tracker && context.tracker.moduleResolverHost) { var targetFile = getExternalModuleFileFromDeclaration(parent); if (targetFile) { var getCanonicalFileName = ts.createGetCanonicalFileName(!!host.useCaseSensitiveFileNames); var resolverHost = { getCanonicalFileName: getCanonicalFileName, getCurrentDirectory: function () { return context.tracker.moduleResolverHost.getCurrentDirectory(); }, getCommonSourceDirectory: function () { return context.tracker.moduleResolverHost.getCommonSourceDirectory(); } }; var newName = ts.getResolvedExternalModuleName(resolverHost, targetFile); return ts.factory.createStringLiteral(newName); } } } else { if (context.tracker && context.tracker.trackExternalModuleSymbolOfImportTypeNode) { var moduleSym = resolveExternalModuleNameWorker(lit, lit, /*moduleNotFoundError*/ undefined); if (moduleSym) { context.tracker.trackExternalModuleSymbolOfImportTypeNode(moduleSym); } } } return lit; } } } function symbolTableToDeclarationStatements(symbolTable, context, bundled) { var serializePropertySymbolForClass = makeSerializePropertySymbol(ts.factory.createPropertyDeclaration, 169 /* SyntaxKind.MethodDeclaration */, /*useAcessors*/ true); var serializePropertySymbolForInterfaceWorker = makeSerializePropertySymbol(function (_decorators, mods, name, question, type) { return ts.factory.createPropertySignature(mods, name, question, type); }, 168 /* SyntaxKind.MethodSignature */, /*useAcessors*/ false); // TODO: Use `setOriginalNode` on original declaration names where possible so these declarations see some kind of // declaration mapping // We save the enclosing declaration off here so it's not adjusted by well-meaning declaration // emit codepaths which want to apply more specific contexts (so we can still refer to the root real declaration // we're trying to emit from later on) var enclosingDeclaration = context.enclosingDeclaration; var results = []; var visitedSymbols = new ts.Set(); var deferredPrivatesStack = []; var oldcontext = context; context = __assign(__assign({}, oldcontext), { usedSymbolNames: new ts.Set(oldcontext.usedSymbolNames), remappedSymbolNames: new ts.Map(), tracker: __assign(__assign({}, oldcontext.tracker), { trackSymbol: function (sym, decl, meaning) { var accessibleResult = isSymbolAccessible(sym, decl, meaning, /*computeAliases*/ false); if (accessibleResult.accessibility === 0 /* SymbolAccessibility.Accessible */) { // Lookup the root symbol of the chain of refs we'll use to access it and serialize it var chain = lookupSymbolChainWorker(sym, context, meaning); if (!(sym.flags & 4 /* SymbolFlags.Property */)) { includePrivateSymbol(chain[0]); } } else if (oldcontext.tracker && oldcontext.tracker.trackSymbol) { return oldcontext.tracker.trackSymbol(sym, decl, meaning); } return false; } }) }); context.tracker = wrapSymbolTrackerToReportForContext(context, context.tracker); ts.forEachEntry(symbolTable, function (symbol, name) { var baseName = ts.unescapeLeadingUnderscores(name); void getInternalSymbolName(symbol, baseName); // Called to cache values into `usedSymbolNames` and `remappedSymbolNames` }); var addingDeclare = !bundled; var exportEquals = symbolTable.get("export=" /* InternalSymbolName.ExportEquals */); if (exportEquals && symbolTable.size > 1 && exportEquals.flags & 2097152 /* SymbolFlags.Alias */) { symbolTable = ts.createSymbolTable(); // Remove extraneous elements from root symbol table (they'll be mixed back in when the target of the `export=` is looked up) symbolTable.set("export=" /* InternalSymbolName.ExportEquals */, exportEquals); } visitSymbolTable(symbolTable); return mergeRedundantStatements(results); function isIdentifierAndNotUndefined(node) { return !!node && node.kind === 79 /* SyntaxKind.Identifier */; } function getNamesOfDeclaration(statement) { if (ts.isVariableStatement(statement)) { return ts.filter(ts.map(statement.declarationList.declarations, ts.getNameOfDeclaration), isIdentifierAndNotUndefined); } return ts.filter([ts.getNameOfDeclaration(statement)], isIdentifierAndNotUndefined); } function flattenExportAssignedNamespace(statements) { var exportAssignment = ts.find(statements, ts.isExportAssignment); var nsIndex = ts.findIndex(statements, ts.isModuleDeclaration); var ns = nsIndex !== -1 ? statements[nsIndex] : undefined; if (ns && exportAssignment && exportAssignment.isExportEquals && ts.isIdentifier(exportAssignment.expression) && ts.isIdentifier(ns.name) && ts.idText(ns.name) === ts.idText(exportAssignment.expression) && ns.body && ts.isModuleBlock(ns.body)) { // Pass 0: Correct situations where a module has both an `export = ns` and multiple top-level exports by stripping the export modifiers from // the top-level exports and exporting them in the targeted ns, as can occur when a js file has both typedefs and `module.export` assignments var excessExports = ts.filter(statements, function (s) { return !!(ts.getEffectiveModifierFlags(s) & 1 /* ModifierFlags.Export */); }); var name_3 = ns.name; var body = ns.body; if (ts.length(excessExports)) { ns = ts.factory.updateModuleDeclaration(ns, ns.decorators, ns.modifiers, ns.name, body = ts.factory.updateModuleBlock(body, ts.factory.createNodeArray(__spreadArray(__spreadArray([], ns.body.statements, true), [ts.factory.createExportDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*isTypeOnly*/ false, ts.factory.createNamedExports(ts.map(ts.flatMap(excessExports, function (e) { return getNamesOfDeclaration(e); }), function (id) { return ts.factory.createExportSpecifier(/*isTypeOnly*/ false, /*alias*/ undefined, id); })), /*moduleSpecifier*/ undefined)], false)))); statements = __spreadArray(__spreadArray(__spreadArray([], statements.slice(0, nsIndex), true), [ns], false), statements.slice(nsIndex + 1), true); } // Pass 1: Flatten `export namespace _exports {} export = _exports;` so long as the `export=` only points at a single namespace declaration if (!ts.find(statements, function (s) { return s !== ns && ts.nodeHasName(s, name_3); })) { results = []; // If the namespace contains no export assignments or declarations, and no declarations flagged with `export`, then _everything_ is exported - // to respect this as the top level, we need to add an `export` modifier to everything var mixinExportFlag_1 = !ts.some(body.statements, function (s) { return ts.hasSyntacticModifier(s, 1 /* ModifierFlags.Export */) || ts.isExportAssignment(s) || ts.isExportDeclaration(s); }); ts.forEach(body.statements, function (s) { addResult(s, mixinExportFlag_1 ? 1 /* ModifierFlags.Export */ : 0 /* ModifierFlags.None */); // Recalculates the ambient (and export, if applicable from above) flag }); statements = __spreadArray(__spreadArray([], ts.filter(statements, function (s) { return s !== ns && s !== exportAssignment; }), true), results, true); } } return statements; } function mergeExportDeclarations(statements) { // Pass 2: Combine all `export {}` declarations var exports = ts.filter(statements, function (d) { return ts.isExportDeclaration(d) && !d.moduleSpecifier && !!d.exportClause && ts.isNamedExports(d.exportClause); }); if (ts.length(exports) > 1) { var nonExports = ts.filter(statements, function (d) { return !ts.isExportDeclaration(d) || !!d.moduleSpecifier || !d.exportClause; }); statements = __spreadArray(__spreadArray([], nonExports, true), [ts.factory.createExportDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*isTypeOnly*/ false, ts.factory.createNamedExports(ts.flatMap(exports, function (e) { return ts.cast(e.exportClause, ts.isNamedExports).elements; })), /*moduleSpecifier*/ undefined)], false); } // Pass 2b: Also combine all `export {} from "..."` declarations as needed var reexports = ts.filter(statements, function (d) { return ts.isExportDeclaration(d) && !!d.moduleSpecifier && !!d.exportClause && ts.isNamedExports(d.exportClause); }); if (ts.length(reexports) > 1) { var groups = ts.group(reexports, function (decl) { return ts.isStringLiteral(decl.moduleSpecifier) ? ">" + decl.moduleSpecifier.text : ">"; }); if (groups.length !== reexports.length) { var _loop_9 = function (group_1) { if (group_1.length > 1) { // remove group members from statements and then merge group members and add back to statements statements = __spreadArray(__spreadArray([], ts.filter(statements, function (s) { return group_1.indexOf(s) === -1; }), true), [ ts.factory.createExportDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*isTypeOnly*/ false, ts.factory.createNamedExports(ts.flatMap(group_1, function (e) { return ts.cast(e.exportClause, ts.isNamedExports).elements; })), group_1[0].moduleSpecifier) ], false); } }; for (var _i = 0, groups_1 = groups; _i < groups_1.length; _i++) { var group_1 = groups_1[_i]; _loop_9(group_1); } } } return statements; } function inlineExportModifiers(statements) { // Pass 3: Move all `export {}`'s to `export` modifiers where possible var index = ts.findIndex(statements, function (d) { return ts.isExportDeclaration(d) && !d.moduleSpecifier && !d.assertClause && !!d.exportClause && ts.isNamedExports(d.exportClause); }); if (index >= 0) { var exportDecl = statements[index]; var replacements = ts.mapDefined(exportDecl.exportClause.elements, function (e) { if (!e.propertyName) { // export {name} - look thru `statements` for `name`, and if all results can take an `export` modifier, do so and filter it var indices = ts.indicesOf(statements); var associatedIndices = ts.filter(indices, function (i) { return ts.nodeHasName(statements[i], e.name); }); if (ts.length(associatedIndices) && ts.every(associatedIndices, function (i) { return canHaveExportModifier(statements[i]); })) { for (var _i = 0, associatedIndices_1 = associatedIndices; _i < associatedIndices_1.length; _i++) { var index_1 = associatedIndices_1[_i]; statements[index_1] = addExportModifier(statements[index_1]); } return undefined; } } return e; }); if (!ts.length(replacements)) { // all clauses removed, remove the export declaration ts.orderedRemoveItemAt(statements, index); } else { // some items filtered, others not - update the export declaration statements[index] = ts.factory.updateExportDeclaration(exportDecl, exportDecl.decorators, exportDecl.modifiers, exportDecl.isTypeOnly, ts.factory.updateNamedExports(exportDecl.exportClause, replacements), exportDecl.moduleSpecifier, exportDecl.assertClause); } } return statements; } function mergeRedundantStatements(statements) { statements = flattenExportAssignedNamespace(statements); statements = mergeExportDeclarations(statements); statements = inlineExportModifiers(statements); // Not a cleanup, but as a final step: If there is a mix of `export` and non-`export` declarations, but no `export =` or `export {}` add a `export {};` so // declaration privacy is respected. if (enclosingDeclaration && ((ts.isSourceFile(enclosingDeclaration) && ts.isExternalOrCommonJsModule(enclosingDeclaration)) || ts.isModuleDeclaration(enclosingDeclaration)) && (!ts.some(statements, ts.isExternalModuleIndicator) || (!ts.hasScopeMarker(statements) && ts.some(statements, ts.needsScopeMarker)))) { statements.push(ts.createEmptyExports(ts.factory)); } return statements; } function canHaveExportModifier(node) { return ts.isEnumDeclaration(node) || ts.isVariableStatement(node) || ts.isFunctionDeclaration(node) || ts.isClassDeclaration(node) || (ts.isModuleDeclaration(node) && !ts.isExternalModuleAugmentation(node) && !ts.isGlobalScopeAugmentation(node)) || ts.isInterfaceDeclaration(node) || isTypeDeclaration(node); } function addExportModifier(node) { var flags = (ts.getEffectiveModifierFlags(node) | 1 /* ModifierFlags.Export */) & ~2 /* ModifierFlags.Ambient */; return ts.factory.updateModifiers(node, flags); } function removeExportModifier(node) { var flags = ts.getEffectiveModifierFlags(node) & ~1 /* ModifierFlags.Export */; return ts.factory.updateModifiers(node, flags); } function visitSymbolTable(symbolTable, suppressNewPrivateContext, propertyAsAlias) { if (!suppressNewPrivateContext) { deferredPrivatesStack.push(new ts.Map()); } symbolTable.forEach(function (symbol) { serializeSymbol(symbol, /*isPrivate*/ false, !!propertyAsAlias); }); if (!suppressNewPrivateContext) { // deferredPrivates will be filled up by visiting the symbol table // And will continue to iterate as elements are added while visited `deferredPrivates` // (As that's how a map iterator is defined to work) deferredPrivatesStack[deferredPrivatesStack.length - 1].forEach(function (symbol) { serializeSymbol(symbol, /*isPrivate*/ true, !!propertyAsAlias); }); deferredPrivatesStack.pop(); } } function serializeSymbol(symbol, isPrivate, propertyAsAlias) { // cache visited list based on merged symbol, since we want to use the unmerged top-level symbol, but // still skip reserializing it if we encounter the merged product later on var visitedSym = getMergedSymbol(symbol); if (visitedSymbols.has(getSymbolId(visitedSym))) { return; // Already printed } visitedSymbols.add(getSymbolId(visitedSym)); // Only actually serialize symbols within the correct enclosing declaration, otherwise do nothing with the out-of-context symbol var skipMembershipCheck = !isPrivate; // We only call this on exported symbols when we know they're in the correct scope if (skipMembershipCheck || (!!ts.length(symbol.declarations) && ts.some(symbol.declarations, function (d) { return !!ts.findAncestor(d, function (n) { return n === enclosingDeclaration; }); }))) { var oldContext = context; context = cloneNodeBuilderContext(context); var result = serializeSymbolWorker(symbol, isPrivate, propertyAsAlias); if (context.reportedDiagnostic) { oldcontext.reportedDiagnostic = context.reportedDiagnostic; // hoist diagnostic result into outer context } context = oldContext; return result; } } // Synthesize declarations for a symbol - might be an Interface, a Class, a Namespace, a Type, a Variable (const, let, or var), an Alias // or a merge of some number of those. // An interesting challenge is ensuring that when classes merge with namespaces and interfaces, is keeping // each symbol in only one of the representations // Also, synthesizing a default export of some kind // If it's an alias: emit `export default ref` // If it's a property: emit `export default _default` with a `_default` prop // If it's a class/interface/function: emit a class/interface/function with a `default` modifier // These forms can merge, eg (`export default 12; export default interface A {}`) function serializeSymbolWorker(symbol, isPrivate, propertyAsAlias) { var _a, _b, _c, _d; var symbolName = ts.unescapeLeadingUnderscores(symbol.escapedName); var isDefault = symbol.escapedName === "default" /* InternalSymbolName.Default */; if (isPrivate && !(context.flags & 131072 /* NodeBuilderFlags.AllowAnonymousIdentifier */) && ts.isStringANonContextualKeyword(symbolName) && !isDefault) { // Oh no. We cannot use this symbol's name as it's name... It's likely some jsdoc had an invalid name like `export` or `default` :( context.encounteredError = true; // TODO: Issue error via symbol tracker? return; // If we need to emit a private with a keyword name, we're done for, since something else will try to refer to it by that name } var needsPostExportDefault = isDefault && !!(symbol.flags & -113 /* SymbolFlags.ExportDoesNotSupportDefaultModifier */ || (symbol.flags & 16 /* SymbolFlags.Function */ && ts.length(getPropertiesOfType(getTypeOfSymbol(symbol))))) && !(symbol.flags & 2097152 /* SymbolFlags.Alias */); // An alias symbol should preclude needing to make an alias ourselves var needsExportDeclaration = !needsPostExportDefault && !isPrivate && ts.isStringANonContextualKeyword(symbolName) && !isDefault; // `serializeVariableOrProperty` will handle adding the export declaration if it is run (since `getInternalSymbolName` will create the name mapping), so we need to ensuer we unset `needsExportDeclaration` if it is if (needsPostExportDefault || needsExportDeclaration) { isPrivate = true; } var modifierFlags = (!isPrivate ? 1 /* ModifierFlags.Export */ : 0) | (isDefault && !needsPostExportDefault ? 512 /* ModifierFlags.Default */ : 0); var isConstMergedWithNS = symbol.flags & 1536 /* SymbolFlags.Module */ && symbol.flags & (2 /* SymbolFlags.BlockScopedVariable */ | 1 /* SymbolFlags.FunctionScopedVariable */ | 4 /* SymbolFlags.Property */) && symbol.escapedName !== "export=" /* InternalSymbolName.ExportEquals */; var isConstMergedWithNSPrintableAsSignatureMerge = isConstMergedWithNS && isTypeRepresentableAsFunctionNamespaceMerge(getTypeOfSymbol(symbol), symbol); if (symbol.flags & (16 /* SymbolFlags.Function */ | 8192 /* SymbolFlags.Method */) || isConstMergedWithNSPrintableAsSignatureMerge) { serializeAsFunctionNamespaceMerge(getTypeOfSymbol(symbol), symbol, getInternalSymbolName(symbol, symbolName), modifierFlags); } if (symbol.flags & 524288 /* SymbolFlags.TypeAlias */) { serializeTypeAlias(symbol, symbolName, modifierFlags); } // Need to skip over export= symbols below - json source files get a single `Property` flagged // symbol of name `export=` which needs to be handled like an alias. It's not great, but it is what it is. if (symbol.flags & (2 /* SymbolFlags.BlockScopedVariable */ | 1 /* SymbolFlags.FunctionScopedVariable */ | 4 /* SymbolFlags.Property */) && symbol.escapedName !== "export=" /* InternalSymbolName.ExportEquals */ && !(symbol.flags & 4194304 /* SymbolFlags.Prototype */) && !(symbol.flags & 32 /* SymbolFlags.Class */) && !isConstMergedWithNSPrintableAsSignatureMerge) { if (propertyAsAlias) { var createdExport = serializeMaybeAliasAssignment(symbol); if (createdExport) { needsExportDeclaration = false; needsPostExportDefault = false; } } else { var type = getTypeOfSymbol(symbol); var localName = getInternalSymbolName(symbol, symbolName); if (!(symbol.flags & 16 /* SymbolFlags.Function */) && isTypeRepresentableAsFunctionNamespaceMerge(type, symbol)) { // If the type looks like a function declaration + ns could represent it, and it's type is sourced locally, rewrite it into a function declaration + ns serializeAsFunctionNamespaceMerge(type, symbol, localName, modifierFlags); } else { // A Class + Property merge is made for a `module.exports.Member = class {}`, and it doesn't serialize well as either a class _or_ a property symbol - in fact, _it behaves like an alias!_ // `var` is `FunctionScopedVariable`, `const` and `let` are `BlockScopedVariable`, and `module.exports.thing =` is `Property` var flags = !(symbol.flags & 2 /* SymbolFlags.BlockScopedVariable */) ? ((_a = symbol.parent) === null || _a === void 0 ? void 0 : _a.valueDeclaration) && ts.isSourceFile((_b = symbol.parent) === null || _b === void 0 ? void 0 : _b.valueDeclaration) ? 2 /* NodeFlags.Const */ : undefined : isConstVariable(symbol) ? 2 /* NodeFlags.Const */ : 1 /* NodeFlags.Let */; var name = (needsPostExportDefault || !(symbol.flags & 4 /* SymbolFlags.Property */)) ? localName : getUnusedName(localName, symbol); var textRange = symbol.declarations && ts.find(symbol.declarations, function (d) { return ts.isVariableDeclaration(d); }); if (textRange && ts.isVariableDeclarationList(textRange.parent) && textRange.parent.declarations.length === 1) { textRange = textRange.parent.parent; } var propertyAccessRequire = (_c = symbol.declarations) === null || _c === void 0 ? void 0 : _c.find(ts.isPropertyAccessExpression); if (propertyAccessRequire && ts.isBinaryExpression(propertyAccessRequire.parent) && ts.isIdentifier(propertyAccessRequire.parent.right) && ((_d = type.symbol) === null || _d === void 0 ? void 0 : _d.valueDeclaration) && ts.isSourceFile(type.symbol.valueDeclaration)) { var alias = localName === propertyAccessRequire.parent.right.escapedText ? undefined : propertyAccessRequire.parent.right; addResult(ts.factory.createExportDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*isTypeOnly*/ false, ts.factory.createNamedExports([ts.factory.createExportSpecifier(/*isTypeOnly*/ false, alias, localName)])), 0 /* ModifierFlags.None */); context.tracker.trackSymbol(type.symbol, context.enclosingDeclaration, 111551 /* SymbolFlags.Value */); } else { var statement = ts.setTextRange(ts.factory.createVariableStatement(/*modifiers*/ undefined, ts.factory.createVariableDeclarationList([ ts.factory.createVariableDeclaration(name, /*exclamationToken*/ undefined, serializeTypeForDeclaration(context, type, symbol, enclosingDeclaration, includePrivateSymbol, bundled)) ], flags)), textRange); addResult(statement, name !== localName ? modifierFlags & ~1 /* ModifierFlags.Export */ : modifierFlags); if (name !== localName && !isPrivate) { // We rename the variable declaration we generate for Property symbols since they may have a name which // conflicts with a local declaration. For example, given input: // ``` // function g() {} // module.exports.g = g // ``` // In such a situation, we have a local variable named `g`, and a separate exported variable named `g`. // Naively, we would emit // ``` // function g() {} // export const g: typeof g; // ``` // That's obviously incorrect - the `g` in the type annotation needs to refer to the local `g`, but // the export declaration shadows it. // To work around that, we instead write // ``` // function g() {} // const g_1: typeof g; // export { g_1 as g }; // ``` // To create an export named `g` that does _not_ shadow the local `g` addResult(ts.factory.createExportDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*isTypeOnly*/ false, ts.factory.createNamedExports([ts.factory.createExportSpecifier(/*isTypeOnly*/ false, name, localName)])), 0 /* ModifierFlags.None */); needsExportDeclaration = false; needsPostExportDefault = false; } } } } } if (symbol.flags & 384 /* SymbolFlags.Enum */) { serializeEnum(symbol, symbolName, modifierFlags); } if (symbol.flags & 32 /* SymbolFlags.Class */) { if (symbol.flags & 4 /* SymbolFlags.Property */ && symbol.valueDeclaration && ts.isBinaryExpression(symbol.valueDeclaration.parent) && ts.isClassExpression(symbol.valueDeclaration.parent.right)) { // Looks like a `module.exports.Sub = class {}` - if we serialize `symbol` as a class, the result will have no members, // since the classiness is actually from the target of the effective alias the symbol is. yes. A BlockScopedVariable|Class|Property // _really_ acts like an Alias, and none of a BlockScopedVariable, Class, or Property. This is the travesty of JS binding today. serializeAsAlias(symbol, getInternalSymbolName(symbol, symbolName), modifierFlags); } else { serializeAsClass(symbol, getInternalSymbolName(symbol, symbolName), modifierFlags); } } if ((symbol.flags & (512 /* SymbolFlags.ValueModule */ | 1024 /* SymbolFlags.NamespaceModule */) && (!isConstMergedWithNS || isTypeOnlyNamespace(symbol))) || isConstMergedWithNSPrintableAsSignatureMerge) { serializeModule(symbol, symbolName, modifierFlags); } // The class meaning serialization should handle serializing all interface members if (symbol.flags & 64 /* SymbolFlags.Interface */ && !(symbol.flags & 32 /* SymbolFlags.Class */)) { serializeInterface(symbol, symbolName, modifierFlags); } if (symbol.flags & 2097152 /* SymbolFlags.Alias */) { serializeAsAlias(symbol, getInternalSymbolName(symbol, symbolName), modifierFlags); } if (symbol.flags & 4 /* SymbolFlags.Property */ && symbol.escapedName === "export=" /* InternalSymbolName.ExportEquals */) { serializeMaybeAliasAssignment(symbol); } if (symbol.flags & 8388608 /* SymbolFlags.ExportStar */) { // synthesize export * from "moduleReference" // Straightforward - only one thing to do - make an export declaration if (symbol.declarations) { for (var _i = 0, _e = symbol.declarations; _i < _e.length; _i++) { var node = _e[_i]; var resolvedModule = resolveExternalModuleName(node, node.moduleSpecifier); if (!resolvedModule) continue; addResult(ts.factory.createExportDeclaration(/*decorators*/ undefined, /*modifiers*/ undefined, /*isTypeOnly*/ false, /*exportClause*/ undefined, ts.factory.createStringLiteral(getSpecifierForModuleSymbol(resolvedModule, context))), 0 /* ModifierFlags.None */); } } } if (needsPostExportDefault) { addResult(ts.factory.createExportAssignment(/*decorators*/ undefined, /*modifiers*/ undefined, /*isExportAssignment*/ false, ts.factory.createIdentifier(getInternalSymbolName(symbol, symbolName))), 0 /* ModifierFlags.None */); } else if (needsExportDeclaration) { addResult(ts.factory.createExportDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*isTypeOnly*/ false, ts.factory.createNamedExports([ts.factory.createExportSpecifier(/*isTypeOnly*/ false, getInternalSymbolName(symbol, symbolName), symbolName)])), 0 /* ModifierFlags.None */); } } function includePrivateSymbol(symbol) { if (ts.some(symbol.declarations, ts.isParameterDeclaration)) return; ts.Debug.assertIsDefined(deferredPrivatesStack[deferredPrivatesStack.length - 1]); getUnusedName(ts.unescapeLeadingUnderscores(symbol.escapedName), symbol); // Call to cache unique name for symbol // Blanket moving (import) aliases into the root private context should work, since imports are not valid within namespaces // (so they must have been in the root to begin with if they were real imports) cjs `require` aliases (an upcoming feature) // will throw a wrench in this, since those may have been nested, but we'll need to synthesize them in the outer scope // anyway, as that's the only place the import they translate to is valid. In such a case, we might need to use a unique name // for the moved import; which hopefully the above `getUnusedName` call should produce. var isExternalImportAlias = !!(symbol.flags & 2097152 /* SymbolFlags.Alias */) && !ts.some(symbol.declarations, function (d) { return !!ts.findAncestor(d, ts.isExportDeclaration) || ts.isNamespaceExport(d) || (ts.isImportEqualsDeclaration(d) && !ts.isExternalModuleReference(d.moduleReference)); }); deferredPrivatesStack[isExternalImportAlias ? 0 : (deferredPrivatesStack.length - 1)].set(getSymbolId(symbol), symbol); } function isExportingScope(enclosingDeclaration) { return ((ts.isSourceFile(enclosingDeclaration) && (ts.isExternalOrCommonJsModule(enclosingDeclaration) || ts.isJsonSourceFile(enclosingDeclaration))) || (ts.isAmbientModule(enclosingDeclaration) && !ts.isGlobalScopeAugmentation(enclosingDeclaration))); } // Prepends a `declare` and/or `export` modifier if the context requires it, and then adds `node` to `result` and returns `node` function addResult(node, additionalModifierFlags) { if (ts.canHaveModifiers(node)) { var newModifierFlags = 0 /* ModifierFlags.None */; var enclosingDeclaration_1 = context.enclosingDeclaration && (ts.isJSDocTypeAlias(context.enclosingDeclaration) ? ts.getSourceFileOfNode(context.enclosingDeclaration) : context.enclosingDeclaration); if (additionalModifierFlags & 1 /* ModifierFlags.Export */ && enclosingDeclaration_1 && (isExportingScope(enclosingDeclaration_1) || ts.isModuleDeclaration(enclosingDeclaration_1)) && canHaveExportModifier(node)) { // Classes, namespaces, variables, functions, interfaces, and types should all be `export`ed in a module context if not private newModifierFlags |= 1 /* ModifierFlags.Export */; } if (addingDeclare && !(newModifierFlags & 1 /* ModifierFlags.Export */) && (!enclosingDeclaration_1 || !(enclosingDeclaration_1.flags & 16777216 /* NodeFlags.Ambient */)) && (ts.isEnumDeclaration(node) || ts.isVariableStatement(node) || ts.isFunctionDeclaration(node) || ts.isClassDeclaration(node) || ts.isModuleDeclaration(node))) { // Classes, namespaces, variables, enums, and functions all need `declare` modifiers to be valid in a declaration file top-level scope newModifierFlags |= 2 /* ModifierFlags.Ambient */; } if ((additionalModifierFlags & 512 /* ModifierFlags.Default */) && (ts.isClassDeclaration(node) || ts.isInterfaceDeclaration(node) || ts.isFunctionDeclaration(node))) { newModifierFlags |= 512 /* ModifierFlags.Default */; } if (newModifierFlags) { node = ts.factory.updateModifiers(node, newModifierFlags | ts.getEffectiveModifierFlags(node)); } } results.push(node); } function serializeTypeAlias(symbol, symbolName, modifierFlags) { var _a; var aliasType = getDeclaredTypeOfTypeAlias(symbol); var typeParams = getSymbolLinks(symbol).typeParameters; var typeParamDecls = ts.map(typeParams, function (p) { return typeParameterToDeclaration(p, context); }); var jsdocAliasDecl = (_a = symbol.declarations) === null || _a === void 0 ? void 0 : _a.find(ts.isJSDocTypeAlias); var commentText = ts.getTextOfJSDocComment(jsdocAliasDecl ? jsdocAliasDecl.comment || jsdocAliasDecl.parent.comment : undefined); var oldFlags = context.flags; context.flags |= 8388608 /* NodeBuilderFlags.InTypeAlias */; var oldEnclosingDecl = context.enclosingDeclaration; context.enclosingDeclaration = jsdocAliasDecl; var typeNode = jsdocAliasDecl && jsdocAliasDecl.typeExpression && ts.isJSDocTypeExpression(jsdocAliasDecl.typeExpression) && serializeExistingTypeNode(context, jsdocAliasDecl.typeExpression.type, includePrivateSymbol, bundled) || typeToTypeNodeHelper(aliasType, context); addResult(ts.setSyntheticLeadingComments(ts.factory.createTypeAliasDeclaration(/*decorators*/ undefined, /*modifiers*/ undefined, getInternalSymbolName(symbol, symbolName), typeParamDecls, typeNode), !commentText ? [] : [{ kind: 3 /* SyntaxKind.MultiLineCommentTrivia */, text: "*\n * " + commentText.replace(/\n/g, "\n * ") + "\n ", pos: -1, end: -1, hasTrailingNewLine: true }]), modifierFlags); context.flags = oldFlags; context.enclosingDeclaration = oldEnclosingDecl; } function serializeInterface(symbol, symbolName, modifierFlags) { var interfaceType = getDeclaredTypeOfClassOrInterface(symbol); var localParams = getLocalTypeParametersOfClassOrInterfaceOrTypeAlias(symbol); var typeParamDecls = ts.map(localParams, function (p) { return typeParameterToDeclaration(p, context); }); var baseTypes = getBaseTypes(interfaceType); var baseType = ts.length(baseTypes) ? getIntersectionType(baseTypes) : undefined; var members = ts.flatMap(getPropertiesOfType(interfaceType), function (p) { return serializePropertySymbolForInterface(p, baseType); }); var callSignatures = serializeSignatures(0 /* SignatureKind.Call */, interfaceType, baseType, 174 /* SyntaxKind.CallSignature */); var constructSignatures = serializeSignatures(1 /* SignatureKind.Construct */, interfaceType, baseType, 175 /* SyntaxKind.ConstructSignature */); var indexSignatures = serializeIndexSignatures(interfaceType, baseType); var heritageClauses = !ts.length(baseTypes) ? undefined : [ts.factory.createHeritageClause(94 /* SyntaxKind.ExtendsKeyword */, ts.mapDefined(baseTypes, function (b) { return trySerializeAsTypeReference(b, 111551 /* SymbolFlags.Value */); }))]; addResult(ts.factory.createInterfaceDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, getInternalSymbolName(symbol, symbolName), typeParamDecls, heritageClauses, __spreadArray(__spreadArray(__spreadArray(__spreadArray([], indexSignatures, true), constructSignatures, true), callSignatures, true), members, true)), modifierFlags); } function getNamespaceMembersForSerialization(symbol) { return !symbol.exports ? [] : ts.filter(ts.arrayFrom(symbol.exports.values()), isNamespaceMember); } function isTypeOnlyNamespace(symbol) { return ts.every(getNamespaceMembersForSerialization(symbol), function (m) { return !(resolveSymbol(m).flags & 111551 /* SymbolFlags.Value */); }); } function serializeModule(symbol, symbolName, modifierFlags) { var members = getNamespaceMembersForSerialization(symbol); // Split NS members up by declaration - members whose parent symbol is the ns symbol vs those whose is not (but were added in later via merging) var locationMap = ts.arrayToMultiMap(members, function (m) { return m.parent && m.parent === symbol ? "real" : "merged"; }); var realMembers = locationMap.get("real") || ts.emptyArray; var mergedMembers = locationMap.get("merged") || ts.emptyArray; // TODO: `suppressNewPrivateContext` is questionable -we need to simply be emitting privates in whatever scope they were declared in, rather // than whatever scope we traverse to them in. That's a bit of a complex rewrite, since we're not _actually_ tracking privates at all in advance, // so we don't even have placeholders to fill in. if (ts.length(realMembers)) { var localName = getInternalSymbolName(symbol, symbolName); serializeAsNamespaceDeclaration(realMembers, localName, modifierFlags, !!(symbol.flags & (16 /* SymbolFlags.Function */ | 67108864 /* SymbolFlags.Assignment */))); } if (ts.length(mergedMembers)) { var containingFile_1 = ts.getSourceFileOfNode(context.enclosingDeclaration); var localName = getInternalSymbolName(symbol, symbolName); var nsBody = ts.factory.createModuleBlock([ts.factory.createExportDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*isTypeOnly*/ false, ts.factory.createNamedExports(ts.mapDefined(ts.filter(mergedMembers, function (n) { return n.escapedName !== "export=" /* InternalSymbolName.ExportEquals */; }), function (s) { var _a, _b; var name = ts.unescapeLeadingUnderscores(s.escapedName); var localName = getInternalSymbolName(s, name); var aliasDecl = s.declarations && getDeclarationOfAliasSymbol(s); if (containingFile_1 && (aliasDecl ? containingFile_1 !== ts.getSourceFileOfNode(aliasDecl) : !ts.some(s.declarations, function (d) { return ts.getSourceFileOfNode(d) === containingFile_1; }))) { (_b = (_a = context.tracker) === null || _a === void 0 ? void 0 : _a.reportNonlocalAugmentation) === null || _b === void 0 ? void 0 : _b.call(_a, containingFile_1, symbol, s); return undefined; } var target = aliasDecl && getTargetOfAliasDeclaration(aliasDecl, /*dontRecursivelyResolve*/ true); includePrivateSymbol(target || s); var targetName = target ? getInternalSymbolName(target, ts.unescapeLeadingUnderscores(target.escapedName)) : localName; return ts.factory.createExportSpecifier(/*isTypeOnly*/ false, name === targetName ? undefined : targetName, name); })))]); addResult(ts.factory.createModuleDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, ts.factory.createIdentifier(localName), nsBody, 16 /* NodeFlags.Namespace */), 0 /* ModifierFlags.None */); } } function serializeEnum(symbol, symbolName, modifierFlags) { addResult(ts.factory.createEnumDeclaration( /*decorators*/ undefined, ts.factory.createModifiersFromModifierFlags(isConstEnumSymbol(symbol) ? 2048 /* ModifierFlags.Const */ : 0), getInternalSymbolName(symbol, symbolName), ts.map(ts.filter(getPropertiesOfType(getTypeOfSymbol(symbol)), function (p) { return !!(p.flags & 8 /* SymbolFlags.EnumMember */); }), function (p) { // TODO: Handle computed names // I hate that to get the initialized value we need to walk back to the declarations here; but there's no // other way to get the possible const value of an enum member that I'm aware of, as the value is cached // _on the declaration_, not on the declaration's symbol... var initializedValue = p.declarations && p.declarations[0] && ts.isEnumMember(p.declarations[0]) ? getConstantValue(p.declarations[0]) : undefined; return ts.factory.createEnumMember(ts.unescapeLeadingUnderscores(p.escapedName), initializedValue === undefined ? undefined : typeof initializedValue === "string" ? ts.factory.createStringLiteral(initializedValue) : ts.factory.createNumericLiteral(initializedValue)); })), modifierFlags); } function serializeAsFunctionNamespaceMerge(type, symbol, localName, modifierFlags) { var signatures = getSignaturesOfType(type, 0 /* SignatureKind.Call */); for (var _i = 0, signatures_2 = signatures; _i < signatures_2.length; _i++) { var sig = signatures_2[_i]; // Each overload becomes a separate function declaration, in order var decl = signatureToSignatureDeclarationHelper(sig, 256 /* SyntaxKind.FunctionDeclaration */, context, { name: ts.factory.createIdentifier(localName), privateSymbolVisitor: includePrivateSymbol, bundledImports: bundled }); addResult(ts.setTextRange(decl, getSignatureTextRangeLocation(sig)), modifierFlags); } // Module symbol emit will take care of module-y members, provided it has exports if (!(symbol.flags & (512 /* SymbolFlags.ValueModule */ | 1024 /* SymbolFlags.NamespaceModule */) && !!symbol.exports && !!symbol.exports.size)) { var props = ts.filter(getPropertiesOfType(type), isNamespaceMember); serializeAsNamespaceDeclaration(props, localName, modifierFlags, /*suppressNewPrivateContext*/ true); } } function getSignatureTextRangeLocation(signature) { if (signature.declaration && signature.declaration.parent) { if (ts.isBinaryExpression(signature.declaration.parent) && ts.getAssignmentDeclarationKind(signature.declaration.parent) === 5 /* AssignmentDeclarationKind.Property */) { return signature.declaration.parent; } // for expressions assigned to `var`s, use the `var` as the text range if (ts.isVariableDeclaration(signature.declaration.parent) && signature.declaration.parent.parent) { return signature.declaration.parent.parent; } } return signature.declaration; } function serializeAsNamespaceDeclaration(props, localName, modifierFlags, suppressNewPrivateContext) { if (ts.length(props)) { var localVsRemoteMap = ts.arrayToMultiMap(props, function (p) { return !ts.length(p.declarations) || ts.some(p.declarations, function (d) { return ts.getSourceFileOfNode(d) === ts.getSourceFileOfNode(context.enclosingDeclaration); }) ? "local" : "remote"; }); var localProps = localVsRemoteMap.get("local") || ts.emptyArray; // handle remote props first - we need to make an `import` declaration that points at the module containing each remote // prop in the outermost scope (TODO: a namespace within a namespace would need to be appropriately handled by this) // Example: // import Foo_1 = require("./exporter"); // export namespace ns { // import Foo = Foo_1.Foo; // export { Foo }; // export const c: number; // } // This is needed because in JS, statements like `const x = require("./f")` support both type and value lookup, even if they're // normally just value lookup (so it functions kinda like an alias even when it's not an alias) // _Usually_, we'll simply print the top-level as an alias instead of a `var` in such situations, however is is theoretically // possible to encounter a situation where a type has members from both the current file and other files - in those situations, // emit akin to the above would be needed. // Add a namespace // Create namespace as non-synthetic so it is usable as an enclosing declaration var fakespace = ts.parseNodeFactory.createModuleDeclaration(/*decorators*/ undefined, /*modifiers*/ undefined, ts.factory.createIdentifier(localName), ts.factory.createModuleBlock([]), 16 /* NodeFlags.Namespace */); ts.setParent(fakespace, enclosingDeclaration); fakespace.locals = ts.createSymbolTable(props); fakespace.symbol = props[0].parent; var oldResults = results; results = []; var oldAddingDeclare = addingDeclare; addingDeclare = false; var subcontext = __assign(__assign({}, context), { enclosingDeclaration: fakespace }); var oldContext = context; context = subcontext; // TODO: implement handling for the localVsRemoteMap.get("remote") - should be difficult to trigger (see comment above), as only interesting cross-file js merges should make this possible visitSymbolTable(ts.createSymbolTable(localProps), suppressNewPrivateContext, /*propertyAsAlias*/ true); context = oldContext; addingDeclare = oldAddingDeclare; var declarations = results; results = oldResults; // replace namespace with synthetic version var defaultReplaced = ts.map(declarations, function (d) { return ts.isExportAssignment(d) && !d.isExportEquals && ts.isIdentifier(d.expression) ? ts.factory.createExportDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*isTypeOnly*/ false, ts.factory.createNamedExports([ts.factory.createExportSpecifier(/*isTypeOnly*/ false, d.expression, ts.factory.createIdentifier("default" /* InternalSymbolName.Default */))])) : d; }); var exportModifierStripped = ts.every(defaultReplaced, function (d) { return ts.hasSyntacticModifier(d, 1 /* ModifierFlags.Export */); }) ? ts.map(defaultReplaced, removeExportModifier) : defaultReplaced; fakespace = ts.factory.updateModuleDeclaration(fakespace, fakespace.decorators, fakespace.modifiers, fakespace.name, ts.factory.createModuleBlock(exportModifierStripped)); addResult(fakespace, modifierFlags); // namespaces can never be default exported } } function isNamespaceMember(p) { return !!(p.flags & (788968 /* SymbolFlags.Type */ | 1920 /* SymbolFlags.Namespace */ | 2097152 /* SymbolFlags.Alias */)) || !(p.flags & 4194304 /* SymbolFlags.Prototype */ || p.escapedName === "prototype" || p.valueDeclaration && ts.isStatic(p.valueDeclaration) && ts.isClassLike(p.valueDeclaration.parent)); } function sanitizeJSDocImplements(clauses) { var result = ts.mapDefined(clauses, function (e) { var _a; var oldEnclosing = context.enclosingDeclaration; context.enclosingDeclaration = e; var expr = e.expression; if (ts.isEntityNameExpression(expr)) { if (ts.isIdentifier(expr) && ts.idText(expr) === "") { return cleanup(/*result*/ undefined); // Empty heritage clause, should be an error, but prefer emitting no heritage clauses to reemitting the empty one } var introducesError = void 0; (_a = trackExistingEntityName(expr, context, includePrivateSymbol), introducesError = _a.introducesError, expr = _a.node); if (introducesError) { return cleanup(/*result*/ undefined); } } return cleanup(ts.factory.createExpressionWithTypeArguments(expr, ts.map(e.typeArguments, function (a) { return serializeExistingTypeNode(context, a, includePrivateSymbol, bundled) || typeToTypeNodeHelper(getTypeFromTypeNode(a), context); }))); function cleanup(result) { context.enclosingDeclaration = oldEnclosing; return result; } }); if (result.length === clauses.length) { return result; } return undefined; } function serializeAsClass(symbol, localName, modifierFlags) { var _a, _b; var originalDecl = (_a = symbol.declarations) === null || _a === void 0 ? void 0 : _a.find(ts.isClassLike); var oldEnclosing = context.enclosingDeclaration; context.enclosingDeclaration = originalDecl || oldEnclosing; var localParams = getLocalTypeParametersOfClassOrInterfaceOrTypeAlias(symbol); var typeParamDecls = ts.map(localParams, function (p) { return typeParameterToDeclaration(p, context); }); var classType = getDeclaredTypeOfClassOrInterface(symbol); var baseTypes = getBaseTypes(classType); var originalImplements = originalDecl && ts.getEffectiveImplementsTypeNodes(originalDecl); var implementsExpressions = originalImplements && sanitizeJSDocImplements(originalImplements) || ts.mapDefined(getImplementsTypes(classType), serializeImplementedType); var staticType = getTypeOfSymbol(symbol); var isClass = !!((_b = staticType.symbol) === null || _b === void 0 ? void 0 : _b.valueDeclaration) && ts.isClassLike(staticType.symbol.valueDeclaration); var staticBaseType = isClass ? getBaseConstructorTypeOfClass(staticType) : anyType; var heritageClauses = __spreadArray(__spreadArray([], !ts.length(baseTypes) ? [] : [ts.factory.createHeritageClause(94 /* SyntaxKind.ExtendsKeyword */, ts.map(baseTypes, function (b) { return serializeBaseType(b, staticBaseType, localName); }))], true), !ts.length(implementsExpressions) ? [] : [ts.factory.createHeritageClause(117 /* SyntaxKind.ImplementsKeyword */, implementsExpressions)], true); var symbolProps = getNonInterhitedProperties(classType, baseTypes, getPropertiesOfType(classType)); var publicSymbolProps = ts.filter(symbolProps, function (s) { // `valueDeclaration` could be undefined if inherited from // a union/intersection base type, but inherited properties // don't matter here. var valueDecl = s.valueDeclaration; return !!valueDecl && !(ts.isNamedDeclaration(valueDecl) && ts.isPrivateIdentifier(valueDecl.name)); }); var hasPrivateIdentifier = ts.some(symbolProps, function (s) { // `valueDeclaration` could be undefined if inherited from // a union/intersection base type, but inherited properties // don't matter here. var valueDecl = s.valueDeclaration; return !!valueDecl && ts.isNamedDeclaration(valueDecl) && ts.isPrivateIdentifier(valueDecl.name); }); // Boil down all private properties into a single one. var privateProperties = hasPrivateIdentifier ? [ts.factory.createPropertyDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, ts.factory.createPrivateIdentifier("#private"), /*questionOrExclamationToken*/ undefined, /*type*/ undefined, /*initializer*/ undefined)] : ts.emptyArray; var publicProperties = ts.flatMap(publicSymbolProps, function (p) { return serializePropertySymbolForClass(p, /*isStatic*/ false, baseTypes[0]); }); // Consider static members empty if symbol also has function or module meaning - function namespacey emit will handle statics var staticMembers = ts.flatMap(ts.filter(getPropertiesOfType(staticType), function (p) { return !(p.flags & 4194304 /* SymbolFlags.Prototype */) && p.escapedName !== "prototype" && !isNamespaceMember(p); }), function (p) { return serializePropertySymbolForClass(p, /*isStatic*/ true, staticBaseType); }); // When we encounter an `X.prototype.y` assignment in a JS file, we bind `X` as a class regardless as to whether // the value is ever initialized with a class or function-like value. For cases where `X` could never be // created via `new`, we will inject a `private constructor()` declaration to indicate it is not createable. var isNonConstructableClassLikeInJsFile = !isClass && !!symbol.valueDeclaration && ts.isInJSFile(symbol.valueDeclaration) && !ts.some(getSignaturesOfType(staticType, 1 /* SignatureKind.Construct */)); var constructors = isNonConstructableClassLikeInJsFile ? [ts.factory.createConstructorDeclaration(/*decorators*/ undefined, ts.factory.createModifiersFromModifierFlags(8 /* ModifierFlags.Private */), [], /*body*/ undefined)] : serializeSignatures(1 /* SignatureKind.Construct */, staticType, staticBaseType, 171 /* SyntaxKind.Constructor */); var indexSignatures = serializeIndexSignatures(classType, baseTypes[0]); context.enclosingDeclaration = oldEnclosing; addResult(ts.setTextRange(ts.factory.createClassDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, localName, typeParamDecls, heritageClauses, __spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray([], indexSignatures, true), staticMembers, true), constructors, true), publicProperties, true), privateProperties, true)), symbol.declarations && ts.filter(symbol.declarations, function (d) { return ts.isClassDeclaration(d) || ts.isClassExpression(d); })[0]), modifierFlags); } function getSomeTargetNameFromDeclarations(declarations) { return ts.firstDefined(declarations, function (d) { if (ts.isImportSpecifier(d) || ts.isExportSpecifier(d)) { return ts.idText(d.propertyName || d.name); } if (ts.isBinaryExpression(d) || ts.isExportAssignment(d)) { var expression = ts.isExportAssignment(d) ? d.expression : d.right; if (ts.isPropertyAccessExpression(expression)) { return ts.idText(expression.name); } } if (isAliasSymbolDeclaration(d)) { // This is... heuristic, at best. But it's probably better than always printing the name of the shorthand ambient module. var name = ts.getNameOfDeclaration(d); if (name && ts.isIdentifier(name)) { return ts.idText(name); } } return undefined; }); } function serializeAsAlias(symbol, localName, modifierFlags) { var _a, _b, _c, _d, _e; // synthesize an alias, eg `export { symbolName as Name }` // need to mark the alias `symbol` points at // as something we need to serialize as a private declaration as well var node = getDeclarationOfAliasSymbol(symbol); if (!node) return ts.Debug.fail(); var target = getMergedSymbol(getTargetOfAliasDeclaration(node, /*dontRecursivelyResolve*/ true)); if (!target) { return; } // If `target` refers to a shorthand module symbol, the name we're trying to pull out isn;t recoverable from the target symbol // In such a scenario, we must fall back to looking for an alias declaration on `symbol` and pulling the target name from that var verbatimTargetName = ts.isShorthandAmbientModuleSymbol(target) && getSomeTargetNameFromDeclarations(symbol.declarations) || ts.unescapeLeadingUnderscores(target.escapedName); if (verbatimTargetName === "export=" /* InternalSymbolName.ExportEquals */ && (ts.getESModuleInterop(compilerOptions) || compilerOptions.allowSyntheticDefaultImports)) { // target refers to an `export=` symbol that was hoisted into a synthetic default - rename here to match verbatimTargetName = "default" /* InternalSymbolName.Default */; } var targetName = getInternalSymbolName(target, verbatimTargetName); includePrivateSymbol(target); // the target may be within the same scope - attempt to serialize it first switch (node.kind) { case 203 /* SyntaxKind.BindingElement */: if (((_b = (_a = node.parent) === null || _a === void 0 ? void 0 : _a.parent) === null || _b === void 0 ? void 0 : _b.kind) === 254 /* SyntaxKind.VariableDeclaration */) { // const { SomeClass } = require('./lib'); var specifier_1 = getSpecifierForModuleSymbol(target.parent || target, context); // './lib' var propertyName = node.propertyName; addResult(ts.factory.createImportDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, ts.factory.createImportClause(/*isTypeOnly*/ false, /*name*/ undefined, ts.factory.createNamedImports([ts.factory.createImportSpecifier( /*isTypeOnly*/ false, propertyName && ts.isIdentifier(propertyName) ? ts.factory.createIdentifier(ts.idText(propertyName)) : undefined, ts.factory.createIdentifier(localName))])), ts.factory.createStringLiteral(specifier_1), /*importClause*/ undefined), 0 /* ModifierFlags.None */); break; } // We don't know how to serialize this (nested?) binding element ts.Debug.failBadSyntaxKind(((_c = node.parent) === null || _c === void 0 ? void 0 : _c.parent) || node, "Unhandled binding element grandparent kind in declaration serialization"); break; case 297 /* SyntaxKind.ShorthandPropertyAssignment */: if (((_e = (_d = node.parent) === null || _d === void 0 ? void 0 : _d.parent) === null || _e === void 0 ? void 0 : _e.kind) === 221 /* SyntaxKind.BinaryExpression */) { // module.exports = { SomeClass } serializeExportSpecifier(ts.unescapeLeadingUnderscores(symbol.escapedName), targetName); } break; case 254 /* SyntaxKind.VariableDeclaration */: // commonjs require: const x = require('y') if (ts.isPropertyAccessExpression(node.initializer)) { // const x = require('y').z var initializer = node.initializer; // require('y').z var uniqueName = ts.factory.createUniqueName(localName); // _x var specifier_2 = getSpecifierForModuleSymbol(target.parent || target, context); // 'y' // import _x = require('y'); addResult(ts.factory.createImportEqualsDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*isTypeOnly*/ false, uniqueName, ts.factory.createExternalModuleReference(ts.factory.createStringLiteral(specifier_2))), 0 /* ModifierFlags.None */); // import x = _x.z addResult(ts.factory.createImportEqualsDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*isTypeOnly*/ false, ts.factory.createIdentifier(localName), ts.factory.createQualifiedName(uniqueName, initializer.name)), modifierFlags); break; } // else fall through and treat commonjs require just like import= case 265 /* SyntaxKind.ImportEqualsDeclaration */: // This _specifically_ only exists to handle json declarations - where we make aliases, but since // we emit no declarations for the json document, must not refer to it in the declarations if (target.escapedName === "export=" /* InternalSymbolName.ExportEquals */ && ts.some(target.declarations, ts.isJsonSourceFile)) { serializeMaybeAliasAssignment(symbol); break; } // Could be a local `import localName = ns.member` or // an external `import localName = require("whatever")` var isLocalImport = !(target.flags & 512 /* SymbolFlags.ValueModule */) && !ts.isVariableDeclaration(node); addResult(ts.factory.createImportEqualsDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*isTypeOnly*/ false, ts.factory.createIdentifier(localName), isLocalImport ? symbolToName(target, context, 67108863 /* SymbolFlags.All */, /*expectsIdentifier*/ false) : ts.factory.createExternalModuleReference(ts.factory.createStringLiteral(getSpecifierForModuleSymbol(target, context)))), isLocalImport ? modifierFlags : 0 /* ModifierFlags.None */); break; case 264 /* SyntaxKind.NamespaceExportDeclaration */: // export as namespace foo // TODO: Not part of a file's local or export symbol tables // Is bound into file.symbol.globalExports instead, which we don't currently traverse addResult(ts.factory.createNamespaceExportDeclaration(ts.idText(node.name)), 0 /* ModifierFlags.None */); break; case 267 /* SyntaxKind.ImportClause */: addResult(ts.factory.createImportDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, ts.factory.createImportClause(/*isTypeOnly*/ false, ts.factory.createIdentifier(localName), /*namedBindings*/ undefined), // We use `target.parent || target` below as `target.parent` is unset when the target is a module which has been export assigned // And then made into a default by the `esModuleInterop` or `allowSyntheticDefaultImports` flag // In such cases, the `target` refers to the module itself already ts.factory.createStringLiteral(getSpecifierForModuleSymbol(target.parent || target, context)), /*assertClause*/ undefined), 0 /* ModifierFlags.None */); break; case 268 /* SyntaxKind.NamespaceImport */: addResult(ts.factory.createImportDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, ts.factory.createImportClause(/*isTypeOnly*/ false, /*importClause*/ undefined, ts.factory.createNamespaceImport(ts.factory.createIdentifier(localName))), ts.factory.createStringLiteral(getSpecifierForModuleSymbol(target, context)), /*assertClause*/ undefined), 0 /* ModifierFlags.None */); break; case 274 /* SyntaxKind.NamespaceExport */: addResult(ts.factory.createExportDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*isTypeOnly*/ false, ts.factory.createNamespaceExport(ts.factory.createIdentifier(localName)), ts.factory.createStringLiteral(getSpecifierForModuleSymbol(target, context))), 0 /* ModifierFlags.None */); break; case 270 /* SyntaxKind.ImportSpecifier */: addResult(ts.factory.createImportDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, ts.factory.createImportClause( /*isTypeOnly*/ false, /*importClause*/ undefined, ts.factory.createNamedImports([ ts.factory.createImportSpecifier( /*isTypeOnly*/ false, localName !== verbatimTargetName ? ts.factory.createIdentifier(verbatimTargetName) : undefined, ts.factory.createIdentifier(localName)) ])), ts.factory.createStringLiteral(getSpecifierForModuleSymbol(target.parent || target, context)), /*assertClause*/ undefined), 0 /* ModifierFlags.None */); break; case 275 /* SyntaxKind.ExportSpecifier */: // does not use localName because the symbol name in this case refers to the name in the exports table, // which we must exactly preserve var specifier = node.parent.parent.moduleSpecifier; // targetName is only used when the target is local, as otherwise the target is an alias that points at // another file serializeExportSpecifier(ts.unescapeLeadingUnderscores(symbol.escapedName), specifier ? verbatimTargetName : targetName, specifier && ts.isStringLiteralLike(specifier) ? ts.factory.createStringLiteral(specifier.text) : undefined); break; case 271 /* SyntaxKind.ExportAssignment */: serializeMaybeAliasAssignment(symbol); break; case 221 /* SyntaxKind.BinaryExpression */: case 206 /* SyntaxKind.PropertyAccessExpression */: case 207 /* SyntaxKind.ElementAccessExpression */: // Could be best encoded as though an export specifier or as though an export assignment // If name is default or export=, do an export assignment // Otherwise do an export specifier if (symbol.escapedName === "default" /* InternalSymbolName.Default */ || symbol.escapedName === "export=" /* InternalSymbolName.ExportEquals */) { serializeMaybeAliasAssignment(symbol); } else { serializeExportSpecifier(localName, targetName); } break; default: return ts.Debug.failBadSyntaxKind(node, "Unhandled alias declaration kind in symbol serializer!"); } } function serializeExportSpecifier(localName, targetName, specifier) { addResult(ts.factory.createExportDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*isTypeOnly*/ false, ts.factory.createNamedExports([ts.factory.createExportSpecifier(/*isTypeOnly*/ false, localName !== targetName ? targetName : undefined, localName)]), specifier), 0 /* ModifierFlags.None */); } /** * Returns `true` if an export assignment or declaration was produced for the symbol */ function serializeMaybeAliasAssignment(symbol) { if (symbol.flags & 4194304 /* SymbolFlags.Prototype */) { return false; } var name = ts.unescapeLeadingUnderscores(symbol.escapedName); var isExportEquals = name === "export=" /* InternalSymbolName.ExportEquals */; var isDefault = name === "default" /* InternalSymbolName.Default */; var isExportAssignmentCompatibleSymbolName = isExportEquals || isDefault; // synthesize export = ref // ref should refer to either be a locally scoped symbol which we need to emit, or // a reference to another namespace/module which we may need to emit an `import` statement for var aliasDecl = symbol.declarations && getDeclarationOfAliasSymbol(symbol); // serialize what the alias points to, preserve the declaration's initializer var target = aliasDecl && getTargetOfAliasDeclaration(aliasDecl, /*dontRecursivelyResolve*/ true); // If the target resolves and resolves to a thing defined in this file, emit as an alias, otherwise emit as a const if (target && ts.length(target.declarations) && ts.some(target.declarations, function (d) { return ts.getSourceFileOfNode(d) === ts.getSourceFileOfNode(enclosingDeclaration); })) { // In case `target` refers to a namespace member, look at the declaration and serialize the leftmost symbol in it // eg, `namespace A { export class B {} }; exports = A.B;` // Technically, this is all that's required in the case where the assignment is an entity name expression var expr = aliasDecl && ((ts.isExportAssignment(aliasDecl) || ts.isBinaryExpression(aliasDecl)) ? ts.getExportAssignmentExpression(aliasDecl) : ts.getPropertyAssignmentAliasLikeExpression(aliasDecl)); var first_1 = expr && ts.isEntityNameExpression(expr) ? getFirstNonModuleExportsIdentifier(expr) : undefined; var referenced = first_1 && resolveEntityName(first_1, 67108863 /* SymbolFlags.All */, /*ignoreErrors*/ true, /*dontResolveAlias*/ true, enclosingDeclaration); if (referenced || target) { includePrivateSymbol(referenced || target); } // We disable the context's symbol tracker for the duration of this name serialization // as, by virtue of being here, the name is required to print something, and we don't want to // issue a visibility error on it. Only anonymous classes that an alias points at _would_ issue // a visibility error here (as they're not visible within any scope), but we want to hoist them // into the containing scope anyway, so we want to skip the visibility checks. var oldTrack = context.tracker.trackSymbol; context.tracker.trackSymbol = function () { return false; }; if (isExportAssignmentCompatibleSymbolName) { results.push(ts.factory.createExportAssignment( /*decorators*/ undefined, /*modifiers*/ undefined, isExportEquals, symbolToExpression(target, context, 67108863 /* SymbolFlags.All */))); } else { if (first_1 === expr && first_1) { // serialize as `export {target as name}` serializeExportSpecifier(name, ts.idText(first_1)); } else if (expr && ts.isClassExpression(expr)) { serializeExportSpecifier(name, getInternalSymbolName(target, ts.symbolName(target))); } else { // serialize as `import _Ref = t.arg.et; export { _Ref as name }` var varName = getUnusedName(name, symbol); addResult(ts.factory.createImportEqualsDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*isTypeOnly*/ false, ts.factory.createIdentifier(varName), symbolToName(target, context, 67108863 /* SymbolFlags.All */, /*expectsIdentifier*/ false)), 0 /* ModifierFlags.None */); serializeExportSpecifier(name, varName); } } context.tracker.trackSymbol = oldTrack; return true; } else { // serialize as an anonymous property declaration var varName = getUnusedName(name, symbol); // We have to use `getWidenedType` here since the object within a json file is unwidened within the file // (Unwidened types can only exist in expression contexts and should never be serialized) var typeToSerialize = getWidenedType(getTypeOfSymbol(getMergedSymbol(symbol))); if (isTypeRepresentableAsFunctionNamespaceMerge(typeToSerialize, symbol)) { // If there are no index signatures and `typeToSerialize` is an object type, emit as a namespace instead of a const serializeAsFunctionNamespaceMerge(typeToSerialize, symbol, varName, isExportAssignmentCompatibleSymbolName ? 0 /* ModifierFlags.None */ : 1 /* ModifierFlags.Export */); } else { var statement = ts.factory.createVariableStatement(/*modifiers*/ undefined, ts.factory.createVariableDeclarationList([ ts.factory.createVariableDeclaration(varName, /*exclamationToken*/ undefined, serializeTypeForDeclaration(context, typeToSerialize, symbol, enclosingDeclaration, includePrivateSymbol, bundled)) ], 2 /* NodeFlags.Const */)); // Inlined JSON types exported with [module.]exports= will already emit an export=, so should use `declare`. // Otherwise, the type itself should be exported. addResult(statement, target && target.flags & 4 /* SymbolFlags.Property */ && target.escapedName === "export=" /* InternalSymbolName.ExportEquals */ ? 2 /* ModifierFlags.Ambient */ : name === varName ? 1 /* ModifierFlags.Export */ : 0 /* ModifierFlags.None */); } if (isExportAssignmentCompatibleSymbolName) { results.push(ts.factory.createExportAssignment( /*decorators*/ undefined, /*modifiers*/ undefined, isExportEquals, ts.factory.createIdentifier(varName))); return true; } else if (name !== varName) { serializeExportSpecifier(name, varName); return true; } return false; } } function isTypeRepresentableAsFunctionNamespaceMerge(typeToSerialize, hostSymbol) { // Only object types which are not constructable, or indexable, whose members all come from the // context source file, and whose property names are all valid identifiers and not late-bound, _and_ // whose input is not type annotated (if the input symbol has an annotation we can reuse, we should prefer it) var ctxSrc = ts.getSourceFileOfNode(context.enclosingDeclaration); return ts.getObjectFlags(typeToSerialize) & (16 /* ObjectFlags.Anonymous */ | 32 /* ObjectFlags.Mapped */) && !ts.length(getIndexInfosOfType(typeToSerialize)) && !isClassInstanceSide(typeToSerialize) && // While a class instance is potentially representable as a NS, prefer printing a reference to the instance type and serializing the class !!(ts.length(ts.filter(getPropertiesOfType(typeToSerialize), isNamespaceMember)) || ts.length(getSignaturesOfType(typeToSerialize, 0 /* SignatureKind.Call */))) && !ts.length(getSignaturesOfType(typeToSerialize, 1 /* SignatureKind.Construct */)) && // TODO: could probably serialize as function + ns + class, now that that's OK !getDeclarationWithTypeAnnotation(hostSymbol, enclosingDeclaration) && !(typeToSerialize.symbol && ts.some(typeToSerialize.symbol.declarations, function (d) { return ts.getSourceFileOfNode(d) !== ctxSrc; })) && !ts.some(getPropertiesOfType(typeToSerialize), function (p) { return isLateBoundName(p.escapedName); }) && !ts.some(getPropertiesOfType(typeToSerialize), function (p) { return ts.some(p.declarations, function (d) { return ts.getSourceFileOfNode(d) !== ctxSrc; }); }) && ts.every(getPropertiesOfType(typeToSerialize), function (p) { return ts.isIdentifierText(ts.symbolName(p), languageVersion); }); } function makeSerializePropertySymbol(createProperty, methodKind, useAccessors) { return function serializePropertySymbol(p, isStatic, baseType) { var _a, _b, _c, _d, _e; var modifierFlags = ts.getDeclarationModifierFlagsFromSymbol(p); var isPrivate = !!(modifierFlags & 8 /* ModifierFlags.Private */); if (isStatic && (p.flags & (788968 /* SymbolFlags.Type */ | 1920 /* SymbolFlags.Namespace */ | 2097152 /* SymbolFlags.Alias */))) { // Only value-only-meaning symbols can be correctly encoded as class statics, type/namespace/alias meaning symbols // need to be merged namespace members return []; } if (p.flags & 4194304 /* SymbolFlags.Prototype */ || (baseType && getPropertyOfType(baseType, p.escapedName) && isReadonlySymbol(getPropertyOfType(baseType, p.escapedName)) === isReadonlySymbol(p) && (p.flags & 16777216 /* SymbolFlags.Optional */) === (getPropertyOfType(baseType, p.escapedName).flags & 16777216 /* SymbolFlags.Optional */) && isTypeIdenticalTo(getTypeOfSymbol(p), getTypeOfPropertyOfType(baseType, p.escapedName)))) { return []; } var flag = (modifierFlags & ~256 /* ModifierFlags.Async */) | (isStatic ? 32 /* ModifierFlags.Static */ : 0); var name = getPropertyNameNodeForSymbol(p, context); var firstPropertyLikeDecl = (_a = p.declarations) === null || _a === void 0 ? void 0 : _a.find(ts.or(ts.isPropertyDeclaration, ts.isAccessor, ts.isVariableDeclaration, ts.isPropertySignature, ts.isBinaryExpression, ts.isPropertyAccessExpression)); if (p.flags & 98304 /* SymbolFlags.Accessor */ && useAccessors) { var result = []; if (p.flags & 65536 /* SymbolFlags.SetAccessor */) { result.push(ts.setTextRange(ts.factory.createSetAccessorDeclaration( /*decorators*/ undefined, ts.factory.createModifiersFromModifierFlags(flag), name, [ts.factory.createParameterDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, "arg", /*questionToken*/ undefined, isPrivate ? undefined : serializeTypeForDeclaration(context, getTypeOfSymbol(p), p, enclosingDeclaration, includePrivateSymbol, bundled))], /*body*/ undefined), ((_b = p.declarations) === null || _b === void 0 ? void 0 : _b.find(ts.isSetAccessor)) || firstPropertyLikeDecl)); } if (p.flags & 32768 /* SymbolFlags.GetAccessor */) { var isPrivate_1 = modifierFlags & 8 /* ModifierFlags.Private */; result.push(ts.setTextRange(ts.factory.createGetAccessorDeclaration( /*decorators*/ undefined, ts.factory.createModifiersFromModifierFlags(flag), name, [], isPrivate_1 ? undefined : serializeTypeForDeclaration(context, getTypeOfSymbol(p), p, enclosingDeclaration, includePrivateSymbol, bundled), /*body*/ undefined), ((_c = p.declarations) === null || _c === void 0 ? void 0 : _c.find(ts.isGetAccessor)) || firstPropertyLikeDecl)); } return result; } // This is an else/if as accessors and properties can't merge in TS, but might in JS // If this happens, we assume the accessor takes priority, as it imposes more constraints else if (p.flags & (4 /* SymbolFlags.Property */ | 3 /* SymbolFlags.Variable */ | 98304 /* SymbolFlags.Accessor */)) { return ts.setTextRange(createProperty( /*decorators*/ undefined, ts.factory.createModifiersFromModifierFlags((isReadonlySymbol(p) ? 64 /* ModifierFlags.Readonly */ : 0) | flag), name, p.flags & 16777216 /* SymbolFlags.Optional */ ? ts.factory.createToken(57 /* SyntaxKind.QuestionToken */) : undefined, isPrivate ? undefined : serializeTypeForDeclaration(context, getTypeOfSymbol(p), p, enclosingDeclaration, includePrivateSymbol, bundled), // TODO: https://github.com/microsoft/TypeScript/pull/32372#discussion_r328386357 // interface members can't have initializers, however class members _can_ /*initializer*/ undefined), ((_d = p.declarations) === null || _d === void 0 ? void 0 : _d.find(ts.or(ts.isPropertyDeclaration, ts.isVariableDeclaration))) || firstPropertyLikeDecl); } if (p.flags & (8192 /* SymbolFlags.Method */ | 16 /* SymbolFlags.Function */)) { var type = getTypeOfSymbol(p); var signatures = getSignaturesOfType(type, 0 /* SignatureKind.Call */); if (flag & 8 /* ModifierFlags.Private */) { return ts.setTextRange(createProperty( /*decorators*/ undefined, ts.factory.createModifiersFromModifierFlags((isReadonlySymbol(p) ? 64 /* ModifierFlags.Readonly */ : 0) | flag), name, p.flags & 16777216 /* SymbolFlags.Optional */ ? ts.factory.createToken(57 /* SyntaxKind.QuestionToken */) : undefined, /*type*/ undefined, /*initializer*/ undefined), ((_e = p.declarations) === null || _e === void 0 ? void 0 : _e.find(ts.isFunctionLikeDeclaration)) || signatures[0] && signatures[0].declaration || p.declarations && p.declarations[0]); } var results_1 = []; for (var _i = 0, signatures_3 = signatures; _i < signatures_3.length; _i++) { var sig = signatures_3[_i]; // Each overload becomes a separate method declaration, in order var decl = signatureToSignatureDeclarationHelper(sig, methodKind, context, { name: name, questionToken: p.flags & 16777216 /* SymbolFlags.Optional */ ? ts.factory.createToken(57 /* SyntaxKind.QuestionToken */) : undefined, modifiers: flag ? ts.factory.createModifiersFromModifierFlags(flag) : undefined }); var location = sig.declaration && ts.isPrototypePropertyAssignment(sig.declaration.parent) ? sig.declaration.parent : sig.declaration; results_1.push(ts.setTextRange(decl, location)); } return results_1; } // The `Constructor`'s symbol isn't in the class's properties lists, obviously, since it's a signature on the static return ts.Debug.fail("Unhandled class member kind! ".concat(p.__debugFlags || p.flags)); }; } function serializePropertySymbolForInterface(p, baseType) { return serializePropertySymbolForInterfaceWorker(p, /*isStatic*/ false, baseType); } function serializeSignatures(kind, input, baseType, outputKind) { var signatures = getSignaturesOfType(input, kind); if (kind === 1 /* SignatureKind.Construct */) { if (!baseType && ts.every(signatures, function (s) { return ts.length(s.parameters) === 0; })) { return []; // No base type, every constructor is empty - elide the extraneous `constructor()` } if (baseType) { // If there is a base type, if every signature in the class is identical to a signature in the baseType, elide all the declarations var baseSigs = getSignaturesOfType(baseType, 1 /* SignatureKind.Construct */); if (!ts.length(baseSigs) && ts.every(signatures, function (s) { return ts.length(s.parameters) === 0; })) { return []; // Base had no explicit signatures, if all our signatures are also implicit, return an empty list } if (baseSigs.length === signatures.length) { var failed = false; for (var i = 0; i < baseSigs.length; i++) { if (!compareSignaturesIdentical(signatures[i], baseSigs[i], /*partialMatch*/ false, /*ignoreThisTypes*/ false, /*ignoreReturnTypes*/ true, compareTypesIdentical)) { failed = true; break; } } if (!failed) { return []; // Every signature was identical - elide constructor list as it is inherited } } } var privateProtected = 0; for (var _i = 0, signatures_4 = signatures; _i < signatures_4.length; _i++) { var s = signatures_4[_i]; if (s.declaration) { privateProtected |= ts.getSelectedEffectiveModifierFlags(s.declaration, 8 /* ModifierFlags.Private */ | 16 /* ModifierFlags.Protected */); } } if (privateProtected) { return [ts.setTextRange(ts.factory.createConstructorDeclaration( /*decorators*/ undefined, ts.factory.createModifiersFromModifierFlags(privateProtected), /*parameters*/ [], /*body*/ undefined), signatures[0].declaration)]; } } var results = []; for (var _a = 0, signatures_5 = signatures; _a < signatures_5.length; _a++) { var sig = signatures_5[_a]; // Each overload becomes a separate constructor declaration, in order var decl = signatureToSignatureDeclarationHelper(sig, outputKind, context); results.push(ts.setTextRange(decl, sig.declaration)); } return results; } function serializeIndexSignatures(input, baseType) { var results = []; for (var _i = 0, _a = getIndexInfosOfType(input); _i < _a.length; _i++) { var info = _a[_i]; if (baseType) { var baseInfo = getIndexInfoOfType(baseType, info.keyType); if (baseInfo) { if (isTypeIdenticalTo(info.type, baseInfo.type)) { continue; // elide identical index signatures } } } results.push(indexInfoToIndexSignatureDeclarationHelper(info, context, /*typeNode*/ undefined)); } return results; } function serializeBaseType(t, staticType, rootName) { var ref = trySerializeAsTypeReference(t, 111551 /* SymbolFlags.Value */); if (ref) { return ref; } var tempName = getUnusedName("".concat(rootName, "_base")); var statement = ts.factory.createVariableStatement(/*modifiers*/ undefined, ts.factory.createVariableDeclarationList([ ts.factory.createVariableDeclaration(tempName, /*exclamationToken*/ undefined, typeToTypeNodeHelper(staticType, context)) ], 2 /* NodeFlags.Const */)); addResult(statement, 0 /* ModifierFlags.None */); return ts.factory.createExpressionWithTypeArguments(ts.factory.createIdentifier(tempName), /*typeArgs*/ undefined); } function trySerializeAsTypeReference(t, flags) { var typeArgs; var reference; // We don't use `isValueSymbolAccessible` below. since that considers alternative containers (like modules) // which we can't write out in a syntactically valid way as an expression if (t.target && isSymbolAccessibleByFlags(t.target.symbol, enclosingDeclaration, flags)) { typeArgs = ts.map(getTypeArguments(t), function (t) { return typeToTypeNodeHelper(t, context); }); reference = symbolToExpression(t.target.symbol, context, 788968 /* SymbolFlags.Type */); } else if (t.symbol && isSymbolAccessibleByFlags(t.symbol, enclosingDeclaration, flags)) { reference = symbolToExpression(t.symbol, context, 788968 /* SymbolFlags.Type */); } if (reference) { return ts.factory.createExpressionWithTypeArguments(reference, typeArgs); } } function serializeImplementedType(t) { var ref = trySerializeAsTypeReference(t, 788968 /* SymbolFlags.Type */); if (ref) { return ref; } if (t.symbol) { return ts.factory.createExpressionWithTypeArguments(symbolToExpression(t.symbol, context, 788968 /* SymbolFlags.Type */), /*typeArgs*/ undefined); } } function getUnusedName(input, symbol) { var _a, _b; var id = symbol ? getSymbolId(symbol) : undefined; if (id) { if (context.remappedSymbolNames.has(id)) { return context.remappedSymbolNames.get(id); } } if (symbol) { input = getNameCandidateWorker(symbol, input); } var i = 0; var original = input; while ((_a = context.usedSymbolNames) === null || _a === void 0 ? void 0 : _a.has(input)) { i++; input = "".concat(original, "_").concat(i); } (_b = context.usedSymbolNames) === null || _b === void 0 ? void 0 : _b.add(input); if (id) { context.remappedSymbolNames.set(id, input); } return input; } function getNameCandidateWorker(symbol, localName) { if (localName === "default" /* InternalSymbolName.Default */ || localName === "__class" /* InternalSymbolName.Class */ || localName === "__function" /* InternalSymbolName.Function */) { var flags = context.flags; context.flags |= 16777216 /* NodeBuilderFlags.InInitialEntityName */; var nameCandidate = getNameOfSymbolAsWritten(symbol, context); context.flags = flags; localName = nameCandidate.length > 0 && ts.isSingleOrDoubleQuote(nameCandidate.charCodeAt(0)) ? ts.stripQuotes(nameCandidate) : nameCandidate; } if (localName === "default" /* InternalSymbolName.Default */) { localName = "_default"; } else if (localName === "export=" /* InternalSymbolName.ExportEquals */) { localName = "_exports"; } localName = ts.isIdentifierText(localName, languageVersion) && !ts.isStringANonContextualKeyword(localName) ? localName : "_" + localName.replace(/[^a-zA-Z0-9]/g, "_"); return localName; } function getInternalSymbolName(symbol, localName) { var id = getSymbolId(symbol); if (context.remappedSymbolNames.has(id)) { return context.remappedSymbolNames.get(id); } localName = getNameCandidateWorker(symbol, localName); // The result of this is going to be used as the symbol's name - lock it in, so `getUnusedName` will also pick it up context.remappedSymbolNames.set(id, localName); return localName; } } } function typePredicateToString(typePredicate, enclosingDeclaration, flags, writer) { if (flags === void 0) { flags = 16384 /* TypeFormatFlags.UseAliasDefinedOutsideCurrentScope */; } return writer ? typePredicateToStringWorker(writer).getText() : ts.usingSingleLineStringWriter(typePredicateToStringWorker); function typePredicateToStringWorker(writer) { var predicate = ts.factory.createTypePredicateNode(typePredicate.kind === 2 /* TypePredicateKind.AssertsThis */ || typePredicate.kind === 3 /* TypePredicateKind.AssertsIdentifier */ ? ts.factory.createToken(128 /* SyntaxKind.AssertsKeyword */) : undefined, typePredicate.kind === 1 /* TypePredicateKind.Identifier */ || typePredicate.kind === 3 /* TypePredicateKind.AssertsIdentifier */ ? ts.factory.createIdentifier(typePredicate.parameterName) : ts.factory.createThisTypeNode(), typePredicate.type && nodeBuilder.typeToTypeNode(typePredicate.type, enclosingDeclaration, toNodeBuilderFlags(flags) | 70221824 /* NodeBuilderFlags.IgnoreErrors */ | 512 /* NodeBuilderFlags.WriteTypeParametersInQualifiedName */) // TODO: GH#18217 ); var printer = ts.createPrinter({ removeComments: true }); var sourceFile = enclosingDeclaration && ts.getSourceFileOfNode(enclosingDeclaration); printer.writeNode(4 /* EmitHint.Unspecified */, predicate, /*sourceFile*/ sourceFile, writer); return writer; } } function formatUnionTypes(types) { var result = []; var flags = 0; for (var i = 0; i < types.length; i++) { var t = types[i]; flags |= t.flags; if (!(t.flags & 98304 /* TypeFlags.Nullable */)) { if (t.flags & (512 /* TypeFlags.BooleanLiteral */ | 1024 /* TypeFlags.EnumLiteral */)) { var baseType = t.flags & 512 /* TypeFlags.BooleanLiteral */ ? booleanType : getBaseTypeOfEnumLiteralType(t); if (baseType.flags & 1048576 /* TypeFlags.Union */) { var count = baseType.types.length; if (i + count <= types.length && getRegularTypeOfLiteralType(types[i + count - 1]) === getRegularTypeOfLiteralType(baseType.types[count - 1])) { result.push(baseType); i += count - 1; continue; } } } result.push(t); } } if (flags & 65536 /* TypeFlags.Null */) result.push(nullType); if (flags & 32768 /* TypeFlags.Undefined */) result.push(undefinedType); return result || types; } function visibilityToString(flags) { if (flags === 8 /* ModifierFlags.Private */) { return "private"; } if (flags === 16 /* ModifierFlags.Protected */) { return "protected"; } return "public"; } function getTypeAliasForTypeLiteral(type) { if (type.symbol && type.symbol.flags & 2048 /* SymbolFlags.TypeLiteral */ && type.symbol.declarations) { var node = ts.walkUpParenthesizedTypes(type.symbol.declarations[0].parent); if (node.kind === 259 /* SyntaxKind.TypeAliasDeclaration */) { return getSymbolOfNode(node); } } return undefined; } function isTopLevelInExternalModuleAugmentation(node) { return node && node.parent && node.parent.kind === 262 /* SyntaxKind.ModuleBlock */ && ts.isExternalModuleAugmentation(node.parent.parent); } function isDefaultBindingContext(location) { return location.kind === 305 /* SyntaxKind.SourceFile */ || ts.isAmbientModule(location); } function getNameOfSymbolFromNameType(symbol, context) { var nameType = getSymbolLinks(symbol).nameType; if (nameType) { if (nameType.flags & 384 /* TypeFlags.StringOrNumberLiteral */) { var name = "" + nameType.value; if (!ts.isIdentifierText(name, ts.getEmitScriptTarget(compilerOptions)) && !ts.isNumericLiteralName(name)) { return "\"".concat(ts.escapeString(name, 34 /* CharacterCodes.doubleQuote */), "\""); } if (ts.isNumericLiteralName(name) && ts.startsWith(name, "-")) { return "[".concat(name, "]"); } return name; } if (nameType.flags & 8192 /* TypeFlags.UniqueESSymbol */) { return "[".concat(getNameOfSymbolAsWritten(nameType.symbol, context), "]"); } } } /** * Gets a human-readable name for a symbol. * Should *not* be used for the right-hand side of a `.` -- use `symbolName(symbol)` for that instead. * * Unlike `symbolName(symbol)`, this will include quotes if the name is from a string literal. * It will also use a representation of a number as written instead of a decimal form, e.g. `0o11` instead of `9`. */ function getNameOfSymbolAsWritten(symbol, context) { if (context && symbol.escapedName === "default" /* InternalSymbolName.Default */ && !(context.flags & 16384 /* NodeBuilderFlags.UseAliasDefinedOutsideCurrentScope */) && // If it's not the first part of an entity name, it must print as `default` (!(context.flags & 16777216 /* NodeBuilderFlags.InInitialEntityName */) || // if the symbol is synthesized, it will only be referenced externally it must print as `default` !symbol.declarations || // if not in the same binding context (source file, module declaration), it must print as `default` (context.enclosingDeclaration && ts.findAncestor(symbol.declarations[0], isDefaultBindingContext) !== ts.findAncestor(context.enclosingDeclaration, isDefaultBindingContext)))) { return "default"; } if (symbol.declarations && symbol.declarations.length) { var declaration = ts.firstDefined(symbol.declarations, function (d) { return ts.getNameOfDeclaration(d) ? d : undefined; }); // Try using a declaration with a name, first var name_4 = declaration && ts.getNameOfDeclaration(declaration); if (declaration && name_4) { if (ts.isCallExpression(declaration) && ts.isBindableObjectDefinePropertyCall(declaration)) { return ts.symbolName(symbol); } if (ts.isComputedPropertyName(name_4) && !(ts.getCheckFlags(symbol) & 4096 /* CheckFlags.Late */)) { var nameType = getSymbolLinks(symbol).nameType; if (nameType && nameType.flags & 384 /* TypeFlags.StringOrNumberLiteral */) { // Computed property name isn't late bound, but has a well-known name type - use name type to generate a symbol name var result = getNameOfSymbolFromNameType(symbol, context); if (result !== undefined) { return result; } } } return ts.declarationNameToString(name_4); } if (!declaration) { declaration = symbol.declarations[0]; // Declaration may be nameless, but we'll try anyway } if (declaration.parent && declaration.parent.kind === 254 /* SyntaxKind.VariableDeclaration */) { return ts.declarationNameToString(declaration.parent.name); } switch (declaration.kind) { case 226 /* SyntaxKind.ClassExpression */: case 213 /* SyntaxKind.FunctionExpression */: case 214 /* SyntaxKind.ArrowFunction */: if (context && !context.encounteredError && !(context.flags & 131072 /* NodeBuilderFlags.AllowAnonymousIdentifier */)) { context.encounteredError = true; } return declaration.kind === 226 /* SyntaxKind.ClassExpression */ ? "(Anonymous class)" : "(Anonymous function)"; } } var name = getNameOfSymbolFromNameType(symbol, context); return name !== undefined ? name : ts.symbolName(symbol); } function isDeclarationVisible(node) { if (node) { var links = getNodeLinks(node); if (links.isVisible === undefined) { links.isVisible = !!determineIfDeclarationIsVisible(); } return links.isVisible; } return false; function determineIfDeclarationIsVisible() { switch (node.kind) { case 338 /* SyntaxKind.JSDocCallbackTag */: case 345 /* SyntaxKind.JSDocTypedefTag */: case 339 /* SyntaxKind.JSDocEnumTag */: // Top-level jsdoc type aliases are considered exported // First parent is comment node, second is hosting declaration or token; we only care about those tokens or declarations whose parent is a source file return !!(node.parent && node.parent.parent && node.parent.parent.parent && ts.isSourceFile(node.parent.parent.parent)); case 203 /* SyntaxKind.BindingElement */: return isDeclarationVisible(node.parent.parent); case 254 /* SyntaxKind.VariableDeclaration */: if (ts.isBindingPattern(node.name) && !node.name.elements.length) { // If the binding pattern is empty, this variable declaration is not visible return false; } // falls through case 261 /* SyntaxKind.ModuleDeclaration */: case 257 /* SyntaxKind.ClassDeclaration */: case 258 /* SyntaxKind.InterfaceDeclaration */: case 259 /* SyntaxKind.TypeAliasDeclaration */: case 256 /* SyntaxKind.FunctionDeclaration */: case 260 /* SyntaxKind.EnumDeclaration */: case 265 /* SyntaxKind.ImportEqualsDeclaration */: // external module augmentation is always visible if (ts.isExternalModuleAugmentation(node)) { return true; } var parent = getDeclarationContainer(node); // If the node is not exported or it is not ambient module element (except import declaration) if (!(ts.getCombinedModifierFlags(node) & 1 /* ModifierFlags.Export */) && !(node.kind !== 265 /* SyntaxKind.ImportEqualsDeclaration */ && parent.kind !== 305 /* SyntaxKind.SourceFile */ && parent.flags & 16777216 /* NodeFlags.Ambient */)) { return isGlobalSourceFile(parent); } // Exported members/ambient module elements (exception import declaration) are visible if parent is visible return isDeclarationVisible(parent); case 167 /* SyntaxKind.PropertyDeclaration */: case 166 /* SyntaxKind.PropertySignature */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 169 /* SyntaxKind.MethodDeclaration */: case 168 /* SyntaxKind.MethodSignature */: if (ts.hasEffectiveModifier(node, 8 /* ModifierFlags.Private */ | 16 /* ModifierFlags.Protected */)) { // Private/protected properties/methods are not visible return false; } // Public properties/methods are visible if its parents are visible, so: // falls through case 171 /* SyntaxKind.Constructor */: case 175 /* SyntaxKind.ConstructSignature */: case 174 /* SyntaxKind.CallSignature */: case 176 /* SyntaxKind.IndexSignature */: case 164 /* SyntaxKind.Parameter */: case 262 /* SyntaxKind.ModuleBlock */: case 179 /* SyntaxKind.FunctionType */: case 180 /* SyntaxKind.ConstructorType */: case 182 /* SyntaxKind.TypeLiteral */: case 178 /* SyntaxKind.TypeReference */: case 183 /* SyntaxKind.ArrayType */: case 184 /* SyntaxKind.TupleType */: case 187 /* SyntaxKind.UnionType */: case 188 /* SyntaxKind.IntersectionType */: case 191 /* SyntaxKind.ParenthesizedType */: case 197 /* SyntaxKind.NamedTupleMember */: return isDeclarationVisible(node.parent); // Default binding, import specifier and namespace import is visible // only on demand so by default it is not visible case 267 /* SyntaxKind.ImportClause */: case 268 /* SyntaxKind.NamespaceImport */: case 270 /* SyntaxKind.ImportSpecifier */: return false; // Type parameters are always visible case 163 /* SyntaxKind.TypeParameter */: // Source file and namespace export are always visible // falls through case 305 /* SyntaxKind.SourceFile */: case 264 /* SyntaxKind.NamespaceExportDeclaration */: return true; // Export assignments do not create name bindings outside the module case 271 /* SyntaxKind.ExportAssignment */: return false; default: return false; } } } function collectLinkedAliases(node, setVisibility) { var exportSymbol; if (node.parent && node.parent.kind === 271 /* SyntaxKind.ExportAssignment */) { exportSymbol = resolveName(node, node.escapedText, 111551 /* SymbolFlags.Value */ | 788968 /* SymbolFlags.Type */ | 1920 /* SymbolFlags.Namespace */ | 2097152 /* SymbolFlags.Alias */, /*nameNotFoundMessage*/ undefined, node, /*isUse*/ false); } else if (node.parent.kind === 275 /* SyntaxKind.ExportSpecifier */) { exportSymbol = getTargetOfExportSpecifier(node.parent, 111551 /* SymbolFlags.Value */ | 788968 /* SymbolFlags.Type */ | 1920 /* SymbolFlags.Namespace */ | 2097152 /* SymbolFlags.Alias */); } var result; var visited; if (exportSymbol) { visited = new ts.Set(); visited.add(getSymbolId(exportSymbol)); buildVisibleNodeList(exportSymbol.declarations); } return result; function buildVisibleNodeList(declarations) { ts.forEach(declarations, function (declaration) { var resultNode = getAnyImportSyntax(declaration) || declaration; if (setVisibility) { getNodeLinks(declaration).isVisible = true; } else { result = result || []; ts.pushIfUnique(result, resultNode); } if (ts.isInternalModuleImportEqualsDeclaration(declaration)) { // Add the referenced top container visible var internalModuleReference = declaration.moduleReference; var firstIdentifier = ts.getFirstIdentifier(internalModuleReference); var importSymbol = resolveName(declaration, firstIdentifier.escapedText, 111551 /* SymbolFlags.Value */ | 788968 /* SymbolFlags.Type */ | 1920 /* SymbolFlags.Namespace */, undefined, undefined, /*isUse*/ false); if (importSymbol && visited) { if (ts.tryAddToSet(visited, getSymbolId(importSymbol))) { buildVisibleNodeList(importSymbol.declarations); } } } }); } } /** * Push an entry on the type resolution stack. If an entry with the given target and the given property name * is already on the stack, and no entries in between already have a type, then a circularity has occurred. * In this case, the result values of the existing entry and all entries pushed after it are changed to false, * and the value false is returned. Otherwise, the new entry is just pushed onto the stack, and true is returned. * In order to see if the same query has already been done before, the target object and the propertyName both * must match the one passed in. * * @param target The symbol, type, or signature whose type is being queried * @param propertyName The property name that should be used to query the target for its type */ function pushTypeResolution(target, propertyName) { var resolutionCycleStartIndex = findResolutionCycleStartIndex(target, propertyName); if (resolutionCycleStartIndex >= 0) { // A cycle was found var length_3 = resolutionTargets.length; for (var i = resolutionCycleStartIndex; i < length_3; i++) { resolutionResults[i] = false; } return false; } resolutionTargets.push(target); resolutionResults.push(/*items*/ true); resolutionPropertyNames.push(propertyName); return true; } function findResolutionCycleStartIndex(target, propertyName) { for (var i = resolutionTargets.length - 1; i >= 0; i--) { if (hasType(resolutionTargets[i], resolutionPropertyNames[i])) { return -1; } if (resolutionTargets[i] === target && resolutionPropertyNames[i] === propertyName) { return i; } } return -1; } function hasType(target, propertyName) { switch (propertyName) { case 0 /* TypeSystemPropertyName.Type */: return !!getSymbolLinks(target).type; case 5 /* TypeSystemPropertyName.EnumTagType */: return !!(getNodeLinks(target).resolvedEnumType); case 2 /* TypeSystemPropertyName.DeclaredType */: return !!getSymbolLinks(target).declaredType; case 1 /* TypeSystemPropertyName.ResolvedBaseConstructorType */: return !!target.resolvedBaseConstructorType; case 3 /* TypeSystemPropertyName.ResolvedReturnType */: return !!target.resolvedReturnType; case 4 /* TypeSystemPropertyName.ImmediateBaseConstraint */: return !!target.immediateBaseConstraint; case 6 /* TypeSystemPropertyName.ResolvedTypeArguments */: return !!target.resolvedTypeArguments; case 7 /* TypeSystemPropertyName.ResolvedBaseTypes */: return !!target.baseTypesResolved; case 8 /* TypeSystemPropertyName.WriteType */: return !!getSymbolLinks(target).writeType; } return ts.Debug.assertNever(propertyName); } /** * Pop an entry from the type resolution stack and return its associated result value. The result value will * be true if no circularities were detected, or false if a circularity was found. */ function popTypeResolution() { resolutionTargets.pop(); resolutionPropertyNames.pop(); return resolutionResults.pop(); } function getDeclarationContainer(node) { return ts.findAncestor(ts.getRootDeclaration(node), function (node) { switch (node.kind) { case 254 /* SyntaxKind.VariableDeclaration */: case 255 /* SyntaxKind.VariableDeclarationList */: case 270 /* SyntaxKind.ImportSpecifier */: case 269 /* SyntaxKind.NamedImports */: case 268 /* SyntaxKind.NamespaceImport */: case 267 /* SyntaxKind.ImportClause */: return false; default: return true; } }).parent; } function getTypeOfPrototypeProperty(prototype) { // TypeScript 1.0 spec (April 2014): 8.4 // Every class automatically contains a static property member named 'prototype', // the type of which is an instantiation of the class type with type Any supplied as a type argument for each type parameter. // It is an error to explicitly declare a static property member with the name 'prototype'. var classType = getDeclaredTypeOfSymbol(getParentOfSymbol(prototype)); return classType.typeParameters ? createTypeReference(classType, ts.map(classType.typeParameters, function (_) { return anyType; })) : classType; } // Return the type of the given property in the given type, or undefined if no such property exists function getTypeOfPropertyOfType(type, name) { var prop = getPropertyOfType(type, name); return prop ? getTypeOfSymbol(prop) : undefined; } function getTypeOfPropertyOrIndexSignature(type, name) { var _a; return getTypeOfPropertyOfType(type, name) || ((_a = getApplicableIndexInfoForName(type, name)) === null || _a === void 0 ? void 0 : _a.type) || unknownType; } function isTypeAny(type) { return type && (type.flags & 1 /* TypeFlags.Any */) !== 0; } function isErrorType(type) { // The only 'any' types that have alias symbols are those manufactured by getTypeFromTypeAliasReference for // a reference to an unresolved symbol. We want those to behave like the errorType. return type === errorType || !!(type.flags & 1 /* TypeFlags.Any */ && type.aliasSymbol); } // Return the type of a binding element parent. We check SymbolLinks first to see if a type has been // assigned by contextual typing. function getTypeForBindingElementParent(node, checkMode) { if (checkMode !== 0 /* CheckMode.Normal */) { return getTypeForVariableLikeDeclaration(node, /*includeOptionality*/ false, checkMode); } var symbol = getSymbolOfNode(node); return symbol && getSymbolLinks(symbol).type || getTypeForVariableLikeDeclaration(node, /*includeOptionality*/ false, checkMode); } function getRestType(source, properties, symbol) { source = filterType(source, function (t) { return !(t.flags & 98304 /* TypeFlags.Nullable */); }); if (source.flags & 131072 /* TypeFlags.Never */) { return emptyObjectType; } if (source.flags & 1048576 /* TypeFlags.Union */) { return mapType(source, function (t) { return getRestType(t, properties, symbol); }); } var omitKeyType = getUnionType(ts.map(properties, getLiteralTypeFromPropertyName)); var spreadableProperties = []; var unspreadableToRestKeys = []; for (var _i = 0, _a = getPropertiesOfType(source); _i < _a.length; _i++) { var prop = _a[_i]; var literalTypeFromProperty = getLiteralTypeFromProperty(prop, 8576 /* TypeFlags.StringOrNumberLiteralOrUnique */); if (!isTypeAssignableTo(literalTypeFromProperty, omitKeyType) && !(ts.getDeclarationModifierFlagsFromSymbol(prop) & (8 /* ModifierFlags.Private */ | 16 /* ModifierFlags.Protected */)) && isSpreadableProperty(prop)) { spreadableProperties.push(prop); } else { unspreadableToRestKeys.push(literalTypeFromProperty); } } if (isGenericObjectType(source) || isGenericIndexType(omitKeyType)) { if (unspreadableToRestKeys.length) { // If the type we're spreading from has properties that cannot // be spread into the rest type (e.g. getters, methods), ensure // they are explicitly omitted, as they would in the non-generic case. omitKeyType = getUnionType(__spreadArray([omitKeyType], unspreadableToRestKeys, true)); } if (omitKeyType.flags & 131072 /* TypeFlags.Never */) { return source; } var omitTypeAlias = getGlobalOmitSymbol(); if (!omitTypeAlias) { return errorType; } return getTypeAliasInstantiation(omitTypeAlias, [source, omitKeyType]); } var members = ts.createSymbolTable(); for (var _b = 0, spreadableProperties_1 = spreadableProperties; _b < spreadableProperties_1.length; _b++) { var prop = spreadableProperties_1[_b]; members.set(prop.escapedName, getSpreadSymbol(prop, /*readonly*/ false)); } var result = createAnonymousType(symbol, members, ts.emptyArray, ts.emptyArray, getIndexInfosOfType(source)); result.objectFlags |= 4194304 /* ObjectFlags.ObjectRestType */; return result; } function isGenericTypeWithUndefinedConstraint(type) { return !!(type.flags & 465829888 /* TypeFlags.Instantiable */) && maybeTypeOfKind(getBaseConstraintOfType(type) || unknownType, 32768 /* TypeFlags.Undefined */); } function getNonUndefinedType(type) { var typeOrConstraint = someType(type, isGenericTypeWithUndefinedConstraint) ? mapType(type, function (t) { return t.flags & 465829888 /* TypeFlags.Instantiable */ ? getBaseConstraintOrType(t) : t; }) : type; return getTypeWithFacts(typeOrConstraint, 524288 /* TypeFacts.NEUndefined */); } // Determine the control flow type associated with a destructuring declaration or assignment. The following // forms of destructuring are possible: // let { x } = obj; // BindingElement // let [ x ] = obj; // BindingElement // { x } = obj; // ShorthandPropertyAssignment // { x: v } = obj; // PropertyAssignment // [ x ] = obj; // Expression // We construct a synthetic element access expression corresponding to 'obj.x' such that the control // flow analyzer doesn't have to handle all the different syntactic forms. function getFlowTypeOfDestructuring(node, declaredType) { var reference = getSyntheticElementAccess(node); return reference ? getFlowTypeOfReference(reference, declaredType) : declaredType; } function getSyntheticElementAccess(node) { var parentAccess = getParentElementAccess(node); if (parentAccess && parentAccess.flowNode) { var propName = getDestructuringPropertyName(node); if (propName) { var literal = ts.setTextRange(ts.parseNodeFactory.createStringLiteral(propName), node); var lhsExpr = ts.isLeftHandSideExpression(parentAccess) ? parentAccess : ts.parseNodeFactory.createParenthesizedExpression(parentAccess); var result = ts.setTextRange(ts.parseNodeFactory.createElementAccessExpression(lhsExpr, literal), node); ts.setParent(literal, result); ts.setParent(result, node); if (lhsExpr !== parentAccess) { ts.setParent(lhsExpr, result); } result.flowNode = parentAccess.flowNode; return result; } } } function getParentElementAccess(node) { var ancestor = node.parent.parent; switch (ancestor.kind) { case 203 /* SyntaxKind.BindingElement */: case 296 /* SyntaxKind.PropertyAssignment */: return getSyntheticElementAccess(ancestor); case 204 /* SyntaxKind.ArrayLiteralExpression */: return getSyntheticElementAccess(node.parent); case 254 /* SyntaxKind.VariableDeclaration */: return ancestor.initializer; case 221 /* SyntaxKind.BinaryExpression */: return ancestor.right; } } function getDestructuringPropertyName(node) { var parent = node.parent; if (node.kind === 203 /* SyntaxKind.BindingElement */ && parent.kind === 201 /* SyntaxKind.ObjectBindingPattern */) { return getLiteralPropertyNameText(node.propertyName || node.name); } if (node.kind === 296 /* SyntaxKind.PropertyAssignment */ || node.kind === 297 /* SyntaxKind.ShorthandPropertyAssignment */) { return getLiteralPropertyNameText(node.name); } return "" + parent.elements.indexOf(node); } function getLiteralPropertyNameText(name) { var type = getLiteralTypeFromPropertyName(name); return type.flags & (128 /* TypeFlags.StringLiteral */ | 256 /* TypeFlags.NumberLiteral */) ? "" + type.value : undefined; } /** Return the inferred type for a binding element */ function getTypeForBindingElement(declaration) { var checkMode = declaration.dotDotDotToken ? 64 /* CheckMode.RestBindingElement */ : 0 /* CheckMode.Normal */; var parentType = getTypeForBindingElementParent(declaration.parent.parent, checkMode); return parentType && getBindingElementTypeFromParentType(declaration, parentType); } function getBindingElementTypeFromParentType(declaration, parentType) { // If an any type was inferred for parent, infer that for the binding element if (isTypeAny(parentType)) { return parentType; } var pattern = declaration.parent; // Relax null check on ambient destructuring parameters, since the parameters have no implementation and are just documentation if (strictNullChecks && declaration.flags & 16777216 /* NodeFlags.Ambient */ && ts.isParameterDeclaration(declaration)) { parentType = getNonNullableType(parentType); } // Filter `undefined` from the type we check against if the parent has an initializer and that initializer is not possibly `undefined` else if (strictNullChecks && pattern.parent.initializer && !(getTypeFacts(getTypeOfInitializer(pattern.parent.initializer)) & 65536 /* TypeFacts.EQUndefined */)) { parentType = getTypeWithFacts(parentType, 524288 /* TypeFacts.NEUndefined */); } var type; if (pattern.kind === 201 /* SyntaxKind.ObjectBindingPattern */) { if (declaration.dotDotDotToken) { parentType = getReducedType(parentType); if (parentType.flags & 2 /* TypeFlags.Unknown */ || !isValidSpreadType(parentType)) { error(declaration, ts.Diagnostics.Rest_types_may_only_be_created_from_object_types); return errorType; } var literalMembers = []; for (var _i = 0, _a = pattern.elements; _i < _a.length; _i++) { var element = _a[_i]; if (!element.dotDotDotToken) { literalMembers.push(element.propertyName || element.name); } } type = getRestType(parentType, literalMembers, declaration.symbol); } else { // Use explicitly specified property name ({ p: xxx } form), or otherwise the implied name ({ p } form) var name = declaration.propertyName || declaration.name; var indexType = getLiteralTypeFromPropertyName(name); var declaredType = getIndexedAccessType(parentType, indexType, 32 /* AccessFlags.ExpressionPosition */, name); type = getFlowTypeOfDestructuring(declaration, declaredType); } } else { // This elementType will be used if the specific property corresponding to this index is not // present (aka the tuple element property). This call also checks that the parentType is in // fact an iterable or array (depending on target language). var elementType = checkIteratedTypeOrElementType(65 /* IterationUse.Destructuring */ | (declaration.dotDotDotToken ? 0 : 128 /* IterationUse.PossiblyOutOfBounds */), parentType, undefinedType, pattern); var index_2 = pattern.elements.indexOf(declaration); if (declaration.dotDotDotToken) { // If the parent is a tuple type, the rest element has a tuple type of the // remaining tuple element types. Otherwise, the rest element has an array type with same // element type as the parent type. type = everyType(parentType, isTupleType) ? mapType(parentType, function (t) { return sliceTupleType(t, index_2); }) : createArrayType(elementType); } else if (isArrayLikeType(parentType)) { var indexType = getNumberLiteralType(index_2); var accessFlags = 32 /* AccessFlags.ExpressionPosition */ | (hasDefaultValue(declaration) ? 16 /* AccessFlags.NoTupleBoundsCheck */ : 0); var declaredType = getIndexedAccessTypeOrUndefined(parentType, indexType, accessFlags, declaration.name) || errorType; type = getFlowTypeOfDestructuring(declaration, declaredType); } else { type = elementType; } } if (!declaration.initializer) { return type; } if (ts.getEffectiveTypeAnnotationNode(ts.walkUpBindingElementsAndPatterns(declaration))) { // In strict null checking mode, if a default value of a non-undefined type is specified, remove // undefined from the final type. return strictNullChecks && !(getFalsyFlags(checkDeclarationInitializer(declaration, 0 /* CheckMode.Normal */)) & 32768 /* TypeFlags.Undefined */) ? getNonUndefinedType(type) : type; } return widenTypeInferredFromInitializer(declaration, getUnionType([getNonUndefinedType(type), checkDeclarationInitializer(declaration, 0 /* CheckMode.Normal */)], 2 /* UnionReduction.Subtype */)); } function getTypeForDeclarationFromJSDocComment(declaration) { var jsdocType = ts.getJSDocType(declaration); if (jsdocType) { return getTypeFromTypeNode(jsdocType); } return undefined; } function isNullOrUndefined(node) { var expr = ts.skipParentheses(node, /*excludeJSDocTypeAssertions*/ true); return expr.kind === 104 /* SyntaxKind.NullKeyword */ || expr.kind === 79 /* SyntaxKind.Identifier */ && getResolvedSymbol(expr) === undefinedSymbol; } function isEmptyArrayLiteral(node) { var expr = ts.skipParentheses(node, /*excludeJSDocTypeAssertions*/ true); return expr.kind === 204 /* SyntaxKind.ArrayLiteralExpression */ && expr.elements.length === 0; } function addOptionality(type, isProperty, isOptional) { if (isProperty === void 0) { isProperty = false; } if (isOptional === void 0) { isOptional = true; } return strictNullChecks && isOptional ? getOptionalType(type, isProperty) : type; } // Return the inferred type for a variable, parameter, or property declaration function getTypeForVariableLikeDeclaration(declaration, includeOptionality, checkMode) { // A variable declared in a for..in statement is of type string, or of type keyof T when the // right hand expression is of a type parameter type. if (ts.isVariableDeclaration(declaration) && declaration.parent.parent.kind === 243 /* SyntaxKind.ForInStatement */) { var indexType = getIndexType(getNonNullableTypeIfNeeded(checkExpression(declaration.parent.parent.expression, /*checkMode*/ checkMode))); return indexType.flags & (262144 /* TypeFlags.TypeParameter */ | 4194304 /* TypeFlags.Index */) ? getExtractStringType(indexType) : stringType; } if (ts.isVariableDeclaration(declaration) && declaration.parent.parent.kind === 244 /* SyntaxKind.ForOfStatement */) { // checkRightHandSideOfForOf will return undefined if the for-of expression type was // missing properties/signatures required to get its iteratedType (like // [Symbol.iterator] or next). This may be because we accessed properties from anyType, // or it may have led to an error inside getElementTypeOfIterable. var forOfStatement = declaration.parent.parent; return checkRightHandSideOfForOf(forOfStatement) || anyType; } if (ts.isBindingPattern(declaration.parent)) { return getTypeForBindingElement(declaration); } var isProperty = ts.isPropertyDeclaration(declaration) || ts.isPropertySignature(declaration); var isOptional = includeOptionality && (isProperty && !!declaration.questionToken || ts.isParameter(declaration) && (!!declaration.questionToken || isJSDocOptionalParameter(declaration)) || isOptionalJSDocPropertyLikeTag(declaration)); // Use type from type annotation if one is present var declaredType = tryGetTypeFromEffectiveTypeNode(declaration); if (declaredType) { return addOptionality(declaredType, isProperty, isOptional); } if ((noImplicitAny || ts.isInJSFile(declaration)) && ts.isVariableDeclaration(declaration) && !ts.isBindingPattern(declaration.name) && !(ts.getCombinedModifierFlags(declaration) & 1 /* ModifierFlags.Export */) && !(declaration.flags & 16777216 /* NodeFlags.Ambient */)) { // If --noImplicitAny is on or the declaration is in a Javascript file, // use control flow tracked 'any' type for non-ambient, non-exported var or let variables with no // initializer or a 'null' or 'undefined' initializer. if (!(ts.getCombinedNodeFlags(declaration) & 2 /* NodeFlags.Const */) && (!declaration.initializer || isNullOrUndefined(declaration.initializer))) { return autoType; } // Use control flow tracked 'any[]' type for non-ambient, non-exported variables with an empty array // literal initializer. if (declaration.initializer && isEmptyArrayLiteral(declaration.initializer)) { return autoArrayType; } } if (ts.isParameter(declaration)) { var func = declaration.parent; // For a parameter of a set accessor, use the type of the get accessor if one is present if (func.kind === 173 /* SyntaxKind.SetAccessor */ && hasBindableName(func)) { var getter = ts.getDeclarationOfKind(getSymbolOfNode(declaration.parent), 172 /* SyntaxKind.GetAccessor */); if (getter) { var getterSignature = getSignatureFromDeclaration(getter); var thisParameter = getAccessorThisParameter(func); if (thisParameter && declaration === thisParameter) { // Use the type from the *getter* ts.Debug.assert(!thisParameter.type); return getTypeOfSymbol(getterSignature.thisParameter); } return getReturnTypeOfSignature(getterSignature); } } if (ts.isInJSFile(declaration)) { var type_1 = getParameterTypeOfTypeTag(func, declaration); if (type_1) return type_1; } // Use contextual parameter type if one is available var type = declaration.symbol.escapedName === "this" /* InternalSymbolName.This */ ? getContextualThisParameterType(func) : getContextuallyTypedParameterType(declaration); if (type) { return addOptionality(type, /*isProperty*/ false, isOptional); } } // Use the type of the initializer expression if one is present and the declaration is // not a parameter of a contextually typed function if (ts.hasOnlyExpressionInitializer(declaration) && !!declaration.initializer) { if (ts.isInJSFile(declaration) && !ts.isParameter(declaration)) { var containerObjectType = getJSContainerObjectType(declaration, getSymbolOfNode(declaration), ts.getDeclaredExpandoInitializer(declaration)); if (containerObjectType) { return containerObjectType; } } var type = widenTypeInferredFromInitializer(declaration, checkDeclarationInitializer(declaration, checkMode)); return addOptionality(type, isProperty, isOptional); } if (ts.isPropertyDeclaration(declaration) && (noImplicitAny || ts.isInJSFile(declaration))) { // We have a property declaration with no type annotation or initializer, in noImplicitAny mode or a .js file. // Use control flow analysis of this.xxx assignments in the constructor or static block to determine the type of the property. if (!ts.hasStaticModifier(declaration)) { var constructor = findConstructorDeclaration(declaration.parent); var type = constructor ? getFlowTypeInConstructor(declaration.symbol, constructor) : ts.getEffectiveModifierFlags(declaration) & 2 /* ModifierFlags.Ambient */ ? getTypeOfPropertyInBaseClass(declaration.symbol) : undefined; return type && addOptionality(type, /*isProperty*/ true, isOptional); } else { var staticBlocks = ts.filter(declaration.parent.members, ts.isClassStaticBlockDeclaration); var type = staticBlocks.length ? getFlowTypeInStaticBlocks(declaration.symbol, staticBlocks) : ts.getEffectiveModifierFlags(declaration) & 2 /* ModifierFlags.Ambient */ ? getTypeOfPropertyInBaseClass(declaration.symbol) : undefined; return type && addOptionality(type, /*isProperty*/ true, isOptional); } } if (ts.isJsxAttribute(declaration)) { // if JSX attribute doesn't have initializer, by default the attribute will have boolean value of true. // I.e is sugar for return trueType; } // If the declaration specifies a binding pattern and is not a parameter of a contextually // typed function, use the type implied by the binding pattern if (ts.isBindingPattern(declaration.name)) { return getTypeFromBindingPattern(declaration.name, /*includePatternInType*/ false, /*reportErrors*/ true); } // No type specified and nothing can be inferred return undefined; } function isConstructorDeclaredProperty(symbol) { // A property is considered a constructor declared property when all declaration sites are this.xxx assignments, // when no declaration sites have JSDoc type annotations, and when at least one declaration site is in the body of // a class constructor. if (symbol.valueDeclaration && ts.isBinaryExpression(symbol.valueDeclaration)) { var links = getSymbolLinks(symbol); if (links.isConstructorDeclaredProperty === undefined) { links.isConstructorDeclaredProperty = false; links.isConstructorDeclaredProperty = !!getDeclaringConstructor(symbol) && ts.every(symbol.declarations, function (declaration) { return ts.isBinaryExpression(declaration) && isPossiblyAliasedThisProperty(declaration) && (declaration.left.kind !== 207 /* SyntaxKind.ElementAccessExpression */ || ts.isStringOrNumericLiteralLike(declaration.left.argumentExpression)) && !getAnnotatedTypeForAssignmentDeclaration(/*declaredType*/ undefined, declaration, symbol, declaration); }); } return links.isConstructorDeclaredProperty; } return false; } function isAutoTypedProperty(symbol) { // A property is auto-typed when its declaration has no type annotation or initializer and we're in // noImplicitAny mode or a .js file. var declaration = symbol.valueDeclaration; return declaration && ts.isPropertyDeclaration(declaration) && !ts.getEffectiveTypeAnnotationNode(declaration) && !declaration.initializer && (noImplicitAny || ts.isInJSFile(declaration)); } function getDeclaringConstructor(symbol) { if (!symbol.declarations) { return; } for (var _i = 0, _a = symbol.declarations; _i < _a.length; _i++) { var declaration = _a[_i]; var container = ts.getThisContainer(declaration, /*includeArrowFunctions*/ false); if (container && (container.kind === 171 /* SyntaxKind.Constructor */ || isJSConstructor(container))) { return container; } } ; } /** Create a synthetic property access flow node after the last statement of the file */ function getFlowTypeFromCommonJSExport(symbol) { var file = ts.getSourceFileOfNode(symbol.declarations[0]); var accessName = ts.unescapeLeadingUnderscores(symbol.escapedName); var areAllModuleExports = symbol.declarations.every(function (d) { return ts.isInJSFile(d) && ts.isAccessExpression(d) && ts.isModuleExportsAccessExpression(d.expression); }); var reference = areAllModuleExports ? ts.factory.createPropertyAccessExpression(ts.factory.createPropertyAccessExpression(ts.factory.createIdentifier("module"), ts.factory.createIdentifier("exports")), accessName) : ts.factory.createPropertyAccessExpression(ts.factory.createIdentifier("exports"), accessName); if (areAllModuleExports) { ts.setParent(reference.expression.expression, reference.expression); } ts.setParent(reference.expression, reference); ts.setParent(reference, file); reference.flowNode = file.endFlowNode; return getFlowTypeOfReference(reference, autoType, undefinedType); } function getFlowTypeInStaticBlocks(symbol, staticBlocks) { var accessName = ts.startsWith(symbol.escapedName, "__#") ? ts.factory.createPrivateIdentifier(symbol.escapedName.split("@")[1]) : ts.unescapeLeadingUnderscores(symbol.escapedName); for (var _i = 0, staticBlocks_1 = staticBlocks; _i < staticBlocks_1.length; _i++) { var staticBlock = staticBlocks_1[_i]; var reference = ts.factory.createPropertyAccessExpression(ts.factory.createThis(), accessName); ts.setParent(reference.expression, reference); ts.setParent(reference, staticBlock); reference.flowNode = staticBlock.returnFlowNode; var flowType = getFlowTypeOfProperty(reference, symbol); if (noImplicitAny && (flowType === autoType || flowType === autoArrayType)) { error(symbol.valueDeclaration, ts.Diagnostics.Member_0_implicitly_has_an_1_type, symbolToString(symbol), typeToString(flowType)); } // We don't infer a type if assignments are only null or undefined. if (everyType(flowType, isNullableType)) { continue; } return convertAutoToAny(flowType); } } function getFlowTypeInConstructor(symbol, constructor) { var accessName = ts.startsWith(symbol.escapedName, "__#") ? ts.factory.createPrivateIdentifier(symbol.escapedName.split("@")[1]) : ts.unescapeLeadingUnderscores(symbol.escapedName); var reference = ts.factory.createPropertyAccessExpression(ts.factory.createThis(), accessName); ts.setParent(reference.expression, reference); ts.setParent(reference, constructor); reference.flowNode = constructor.returnFlowNode; var flowType = getFlowTypeOfProperty(reference, symbol); if (noImplicitAny && (flowType === autoType || flowType === autoArrayType)) { error(symbol.valueDeclaration, ts.Diagnostics.Member_0_implicitly_has_an_1_type, symbolToString(symbol), typeToString(flowType)); } // We don't infer a type if assignments are only null or undefined. return everyType(flowType, isNullableType) ? undefined : convertAutoToAny(flowType); } function getFlowTypeOfProperty(reference, prop) { var initialType = (prop === null || prop === void 0 ? void 0 : prop.valueDeclaration) && (!isAutoTypedProperty(prop) || ts.getEffectiveModifierFlags(prop.valueDeclaration) & 2 /* ModifierFlags.Ambient */) && getTypeOfPropertyInBaseClass(prop) || undefinedType; return getFlowTypeOfReference(reference, autoType, initialType); } function getWidenedTypeForAssignmentDeclaration(symbol, resolvedSymbol) { // function/class/{} initializers are themselves containers, so they won't merge in the same way as other initializers var container = ts.getAssignedExpandoInitializer(symbol.valueDeclaration); if (container) { var tag = ts.getJSDocTypeTag(container); if (tag && tag.typeExpression) { return getTypeFromTypeNode(tag.typeExpression); } var containerObjectType = symbol.valueDeclaration && getJSContainerObjectType(symbol.valueDeclaration, symbol, container); return containerObjectType || getWidenedLiteralType(checkExpressionCached(container)); } var type; var definedInConstructor = false; var definedInMethod = false; // We use control flow analysis to determine the type of the property if the property qualifies as a constructor // declared property and the resulting control flow type isn't just undefined or null. if (isConstructorDeclaredProperty(symbol)) { type = getFlowTypeInConstructor(symbol, getDeclaringConstructor(symbol)); } if (!type) { var types = void 0; if (symbol.declarations) { var jsdocType = void 0; for (var _i = 0, _a = symbol.declarations; _i < _a.length; _i++) { var declaration = _a[_i]; var expression = (ts.isBinaryExpression(declaration) || ts.isCallExpression(declaration)) ? declaration : ts.isAccessExpression(declaration) ? ts.isBinaryExpression(declaration.parent) ? declaration.parent : declaration : undefined; if (!expression) { continue; // Non-assignment declaration merged in (eg, an Identifier to mark the thing as a namespace) - skip over it and pull type info from elsewhere } var kind = ts.isAccessExpression(expression) ? ts.getAssignmentDeclarationPropertyAccessKind(expression) : ts.getAssignmentDeclarationKind(expression); if (kind === 4 /* AssignmentDeclarationKind.ThisProperty */ || ts.isBinaryExpression(expression) && isPossiblyAliasedThisProperty(expression, kind)) { if (isDeclarationInConstructor(expression)) { definedInConstructor = true; } else { definedInMethod = true; } } if (!ts.isCallExpression(expression)) { jsdocType = getAnnotatedTypeForAssignmentDeclaration(jsdocType, expression, symbol, declaration); } if (!jsdocType) { (types || (types = [])).push((ts.isBinaryExpression(expression) || ts.isCallExpression(expression)) ? getInitializerTypeFromAssignmentDeclaration(symbol, resolvedSymbol, expression, kind) : neverType); } } type = jsdocType; } if (!type) { if (!ts.length(types)) { return errorType; // No types from any declarations :( } var constructorTypes = definedInConstructor && symbol.declarations ? getConstructorDefinedThisAssignmentTypes(types, symbol.declarations) : undefined; // use only the constructor types unless they were only assigned null | undefined (including widening variants) if (definedInMethod) { var propType = getTypeOfPropertyInBaseClass(symbol); if (propType) { (constructorTypes || (constructorTypes = [])).push(propType); definedInConstructor = true; } } var sourceTypes = ts.some(constructorTypes, function (t) { return !!(t.flags & ~98304 /* TypeFlags.Nullable */); }) ? constructorTypes : types; // TODO: GH#18217 type = getUnionType(sourceTypes); } } var widened = getWidenedType(addOptionality(type, /*isProperty*/ false, definedInMethod && !definedInConstructor)); if (symbol.valueDeclaration && filterType(widened, function (t) { return !!(t.flags & ~98304 /* TypeFlags.Nullable */); }) === neverType) { reportImplicitAny(symbol.valueDeclaration, anyType); return anyType; } return widened; } function getJSContainerObjectType(decl, symbol, init) { var _a, _b; if (!ts.isInJSFile(decl) || !init || !ts.isObjectLiteralExpression(init) || init.properties.length) { return undefined; } var exports = ts.createSymbolTable(); while (ts.isBinaryExpression(decl) || ts.isPropertyAccessExpression(decl)) { var s_2 = getSymbolOfNode(decl); if ((_a = s_2 === null || s_2 === void 0 ? void 0 : s_2.exports) === null || _a === void 0 ? void 0 : _a.size) { mergeSymbolTable(exports, s_2.exports); } decl = ts.isBinaryExpression(decl) ? decl.parent : decl.parent.parent; } var s = getSymbolOfNode(decl); if ((_b = s === null || s === void 0 ? void 0 : s.exports) === null || _b === void 0 ? void 0 : _b.size) { mergeSymbolTable(exports, s.exports); } var type = createAnonymousType(symbol, exports, ts.emptyArray, ts.emptyArray, ts.emptyArray); type.objectFlags |= 4096 /* ObjectFlags.JSLiteral */; return type; } function getAnnotatedTypeForAssignmentDeclaration(declaredType, expression, symbol, declaration) { var _a; var typeNode = ts.getEffectiveTypeAnnotationNode(expression.parent); if (typeNode) { var type = getWidenedType(getTypeFromTypeNode(typeNode)); if (!declaredType) { return type; } else if (!isErrorType(declaredType) && !isErrorType(type) && !isTypeIdenticalTo(declaredType, type)) { errorNextVariableOrPropertyDeclarationMustHaveSameType(/*firstDeclaration*/ undefined, declaredType, declaration, type); } } if ((_a = symbol.parent) === null || _a === void 0 ? void 0 : _a.valueDeclaration) { var typeNode_2 = ts.getEffectiveTypeAnnotationNode(symbol.parent.valueDeclaration); if (typeNode_2) { var annotationSymbol = getPropertyOfType(getTypeFromTypeNode(typeNode_2), symbol.escapedName); if (annotationSymbol) { return getNonMissingTypeOfSymbol(annotationSymbol); } } } return declaredType; } /** If we don't have an explicit JSDoc type, get the type from the initializer. */ function getInitializerTypeFromAssignmentDeclaration(symbol, resolvedSymbol, expression, kind) { if (ts.isCallExpression(expression)) { if (resolvedSymbol) { return getTypeOfSymbol(resolvedSymbol); // This shouldn't happen except under some hopefully forbidden merges of export assignments and object define assignments } var objectLitType = checkExpressionCached(expression.arguments[2]); var valueType = getTypeOfPropertyOfType(objectLitType, "value"); if (valueType) { return valueType; } var getFunc = getTypeOfPropertyOfType(objectLitType, "get"); if (getFunc) { var getSig = getSingleCallSignature(getFunc); if (getSig) { return getReturnTypeOfSignature(getSig); } } var setFunc = getTypeOfPropertyOfType(objectLitType, "set"); if (setFunc) { var setSig = getSingleCallSignature(setFunc); if (setSig) { return getTypeOfFirstParameterOfSignature(setSig); } } return anyType; } if (containsSameNamedThisProperty(expression.left, expression.right)) { return anyType; } var isDirectExport = kind === 1 /* AssignmentDeclarationKind.ExportsProperty */ && (ts.isPropertyAccessExpression(expression.left) || ts.isElementAccessExpression(expression.left)) && (ts.isModuleExportsAccessExpression(expression.left.expression) || (ts.isIdentifier(expression.left.expression) && ts.isExportsIdentifier(expression.left.expression))); var type = resolvedSymbol ? getTypeOfSymbol(resolvedSymbol) : isDirectExport ? getRegularTypeOfLiteralType(checkExpressionCached(expression.right)) : getWidenedLiteralType(checkExpressionCached(expression.right)); if (type.flags & 524288 /* TypeFlags.Object */ && kind === 2 /* AssignmentDeclarationKind.ModuleExports */ && symbol.escapedName === "export=" /* InternalSymbolName.ExportEquals */) { var exportedType = resolveStructuredTypeMembers(type); var members_4 = ts.createSymbolTable(); ts.copyEntries(exportedType.members, members_4); var initialSize = members_4.size; if (resolvedSymbol && !resolvedSymbol.exports) { resolvedSymbol.exports = ts.createSymbolTable(); } (resolvedSymbol || symbol).exports.forEach(function (s, name) { var _a; var exportedMember = members_4.get(name); if (exportedMember && exportedMember !== s) { if (s.flags & 111551 /* SymbolFlags.Value */ && exportedMember.flags & 111551 /* SymbolFlags.Value */) { // If the member has an additional value-like declaration, union the types from the two declarations, // but issue an error if they occurred in two different files. The purpose is to support a JS file with // a pattern like: // // module.exports = { a: true }; // module.exports.a = 3; // // but we may have a JS file with `module.exports = { a: true }` along with a TypeScript module augmentation // declaring an `export const a: number`. In that case, we issue a duplicate identifier error, because // it's unclear what that's supposed to mean, so it's probably a mistake. if (s.valueDeclaration && exportedMember.valueDeclaration && ts.getSourceFileOfNode(s.valueDeclaration) !== ts.getSourceFileOfNode(exportedMember.valueDeclaration)) { var unescapedName = ts.unescapeLeadingUnderscores(s.escapedName); var exportedMemberName = ((_a = ts.tryCast(exportedMember.valueDeclaration, ts.isNamedDeclaration)) === null || _a === void 0 ? void 0 : _a.name) || exportedMember.valueDeclaration; ts.addRelatedInfo(error(s.valueDeclaration, ts.Diagnostics.Duplicate_identifier_0, unescapedName), ts.createDiagnosticForNode(exportedMemberName, ts.Diagnostics._0_was_also_declared_here, unescapedName)); ts.addRelatedInfo(error(exportedMemberName, ts.Diagnostics.Duplicate_identifier_0, unescapedName), ts.createDiagnosticForNode(s.valueDeclaration, ts.Diagnostics._0_was_also_declared_here, unescapedName)); } var union = createSymbol(s.flags | exportedMember.flags, name); union.type = getUnionType([getTypeOfSymbol(s), getTypeOfSymbol(exportedMember)]); union.valueDeclaration = exportedMember.valueDeclaration; union.declarations = ts.concatenate(exportedMember.declarations, s.declarations); members_4.set(name, union); } else { members_4.set(name, mergeSymbol(s, exportedMember)); } } else { members_4.set(name, s); } }); var result = createAnonymousType(initialSize !== members_4.size ? undefined : exportedType.symbol, // Only set the type's symbol if it looks to be the same as the original type members_4, exportedType.callSignatures, exportedType.constructSignatures, exportedType.indexInfos); result.objectFlags |= (ts.getObjectFlags(type) & 4096 /* ObjectFlags.JSLiteral */); // Propagate JSLiteral flag if (result.symbol && result.symbol.flags & 32 /* SymbolFlags.Class */ && type === getDeclaredTypeOfClassOrInterface(result.symbol)) { result.objectFlags |= 16777216 /* ObjectFlags.IsClassInstanceClone */; // Propagate the knowledge that this type is equivalent to the symbol's class instance type } return result; } if (isEmptyArrayLiteralType(type)) { reportImplicitAny(expression, anyArrayType); return anyArrayType; } return type; } function containsSameNamedThisProperty(thisProperty, expression) { return ts.isPropertyAccessExpression(thisProperty) && thisProperty.expression.kind === 108 /* SyntaxKind.ThisKeyword */ && ts.forEachChildRecursively(expression, function (n) { return isMatchingReference(thisProperty, n); }); } function isDeclarationInConstructor(expression) { var thisContainer = ts.getThisContainer(expression, /*includeArrowFunctions*/ false); // Properties defined in a constructor (or base constructor, or javascript constructor function) don't get undefined added. // Function expressions that are assigned to the prototype count as methods. return thisContainer.kind === 171 /* SyntaxKind.Constructor */ || thisContainer.kind === 256 /* SyntaxKind.FunctionDeclaration */ || (thisContainer.kind === 213 /* SyntaxKind.FunctionExpression */ && !ts.isPrototypePropertyAssignment(thisContainer.parent)); } function getConstructorDefinedThisAssignmentTypes(types, declarations) { ts.Debug.assert(types.length === declarations.length); return types.filter(function (_, i) { var declaration = declarations[i]; var expression = ts.isBinaryExpression(declaration) ? declaration : ts.isBinaryExpression(declaration.parent) ? declaration.parent : undefined; return expression && isDeclarationInConstructor(expression); }); } // Return the type implied by a binding pattern element. This is the type of the initializer of the element if // one is present. Otherwise, if the element is itself a binding pattern, it is the type implied by the binding // pattern. Otherwise, it is the type any. function getTypeFromBindingElement(element, includePatternInType, reportErrors) { if (element.initializer) { // The type implied by a binding pattern is independent of context, so we check the initializer with no // contextual type or, if the element itself is a binding pattern, with the type implied by that binding // pattern. var contextualType = ts.isBindingPattern(element.name) ? getTypeFromBindingPattern(element.name, /*includePatternInType*/ true, /*reportErrors*/ false) : unknownType; return addOptionality(widenTypeInferredFromInitializer(element, checkDeclarationInitializer(element, 0 /* CheckMode.Normal */, contextualType))); } if (ts.isBindingPattern(element.name)) { return getTypeFromBindingPattern(element.name, includePatternInType, reportErrors); } if (reportErrors && !declarationBelongsToPrivateAmbientMember(element)) { reportImplicitAny(element, anyType); } // When we're including the pattern in the type (an indication we're obtaining a contextual type), we // use the non-inferrable any type. Inference will never directly infer this type, but it is possible // to infer a type that contains it, e.g. for a binding pattern like [foo] or { foo }. In such cases, // widening of the binding pattern type substitutes a regular any for the non-inferrable any. return includePatternInType ? nonInferrableAnyType : anyType; } // Return the type implied by an object binding pattern function getTypeFromObjectBindingPattern(pattern, includePatternInType, reportErrors) { var members = ts.createSymbolTable(); var stringIndexInfo; var objectFlags = 128 /* ObjectFlags.ObjectLiteral */ | 131072 /* ObjectFlags.ContainsObjectOrArrayLiteral */; ts.forEach(pattern.elements, function (e) { var name = e.propertyName || e.name; if (e.dotDotDotToken) { stringIndexInfo = createIndexInfo(stringType, anyType, /*isReadonly*/ false); return; } var exprType = getLiteralTypeFromPropertyName(name); if (!isTypeUsableAsPropertyName(exprType)) { // do not include computed properties in the implied type objectFlags |= 512 /* ObjectFlags.ObjectLiteralPatternWithComputedProperties */; return; } var text = getPropertyNameFromType(exprType); var flags = 4 /* SymbolFlags.Property */ | (e.initializer ? 16777216 /* SymbolFlags.Optional */ : 0); var symbol = createSymbol(flags, text); symbol.type = getTypeFromBindingElement(e, includePatternInType, reportErrors); symbol.bindingElement = e; members.set(symbol.escapedName, symbol); }); var result = createAnonymousType(undefined, members, ts.emptyArray, ts.emptyArray, stringIndexInfo ? [stringIndexInfo] : ts.emptyArray); result.objectFlags |= objectFlags; if (includePatternInType) { result.pattern = pattern; result.objectFlags |= 131072 /* ObjectFlags.ContainsObjectOrArrayLiteral */; } return result; } // Return the type implied by an array binding pattern function getTypeFromArrayBindingPattern(pattern, includePatternInType, reportErrors) { var elements = pattern.elements; var lastElement = ts.lastOrUndefined(elements); var restElement = lastElement && lastElement.kind === 203 /* SyntaxKind.BindingElement */ && lastElement.dotDotDotToken ? lastElement : undefined; if (elements.length === 0 || elements.length === 1 && restElement) { return languageVersion >= 2 /* ScriptTarget.ES2015 */ ? createIterableType(anyType) : anyArrayType; } var elementTypes = ts.map(elements, function (e) { return ts.isOmittedExpression(e) ? anyType : getTypeFromBindingElement(e, includePatternInType, reportErrors); }); var minLength = ts.findLastIndex(elements, function (e) { return !(e === restElement || ts.isOmittedExpression(e) || hasDefaultValue(e)); }, elements.length - 1) + 1; var elementFlags = ts.map(elements, function (e, i) { return e === restElement ? 4 /* ElementFlags.Rest */ : i >= minLength ? 2 /* ElementFlags.Optional */ : 1 /* ElementFlags.Required */; }); var result = createTupleType(elementTypes, elementFlags); if (includePatternInType) { result = cloneTypeReference(result); result.pattern = pattern; result.objectFlags |= 131072 /* ObjectFlags.ContainsObjectOrArrayLiteral */; } return result; } // Return the type implied by a binding pattern. This is the type implied purely by the binding pattern itself // and without regard to its context (i.e. without regard any type annotation or initializer associated with the // declaration in which the binding pattern is contained). For example, the implied type of [x, y] is [any, any] // and the implied type of { x, y: z = 1 } is { x: any; y: number; }. The type implied by a binding pattern is // used as the contextual type of an initializer associated with the binding pattern. Also, for a destructuring // parameter with no type annotation or initializer, the type implied by the binding pattern becomes the type of // the parameter. function getTypeFromBindingPattern(pattern, includePatternInType, reportErrors) { if (includePatternInType === void 0) { includePatternInType = false; } if (reportErrors === void 0) { reportErrors = false; } return pattern.kind === 201 /* SyntaxKind.ObjectBindingPattern */ ? getTypeFromObjectBindingPattern(pattern, includePatternInType, reportErrors) : getTypeFromArrayBindingPattern(pattern, includePatternInType, reportErrors); } // Return the type associated with a variable, parameter, or property declaration. In the simple case this is the type // specified in a type annotation or inferred from an initializer. However, in the case of a destructuring declaration it // is a bit more involved. For example: // // var [x, s = ""] = [1, "one"]; // // Here, the array literal [1, "one"] is contextually typed by the type [any, string], which is the implied type of the // binding pattern [x, s = ""]. Because the contextual type is a tuple type, the resulting type of [1, "one"] is the // tuple type [number, string]. Thus, the type inferred for 'x' is number and the type inferred for 's' is string. function getWidenedTypeForVariableLikeDeclaration(declaration, reportErrors) { return widenTypeForVariableLikeDeclaration(getTypeForVariableLikeDeclaration(declaration, /*includeOptionality*/ true, 0 /* CheckMode.Normal */), declaration, reportErrors); } function isGlobalSymbolConstructor(node) { var symbol = getSymbolOfNode(node); var globalSymbol = getGlobalESSymbolConstructorTypeSymbol(/*reportErrors*/ false); return globalSymbol && symbol && symbol === globalSymbol; } function widenTypeForVariableLikeDeclaration(type, declaration, reportErrors) { if (type) { // TODO: If back compat with pre-3.0/4.0 libs isn't required, remove the following SymbolConstructor special case transforming `symbol` into `unique symbol` if (type.flags & 4096 /* TypeFlags.ESSymbol */ && isGlobalSymbolConstructor(declaration.parent)) { type = getESSymbolLikeTypeForNode(declaration); } if (reportErrors) { reportErrorsFromWidening(declaration, type); } // always widen a 'unique symbol' type if the type was created for a different declaration. if (type.flags & 8192 /* TypeFlags.UniqueESSymbol */ && (ts.isBindingElement(declaration) || !declaration.type) && type.symbol !== getSymbolOfNode(declaration)) { type = esSymbolType; } return getWidenedType(type); } // Rest parameters default to type any[], other parameters default to type any type = ts.isParameter(declaration) && declaration.dotDotDotToken ? anyArrayType : anyType; // Report implicit any errors unless this is a private property within an ambient declaration if (reportErrors) { if (!declarationBelongsToPrivateAmbientMember(declaration)) { reportImplicitAny(declaration, type); } } return type; } function declarationBelongsToPrivateAmbientMember(declaration) { var root = ts.getRootDeclaration(declaration); var memberDeclaration = root.kind === 164 /* SyntaxKind.Parameter */ ? root.parent : root; return isPrivateWithinAmbient(memberDeclaration); } function tryGetTypeFromEffectiveTypeNode(node) { var typeNode = ts.getEffectiveTypeAnnotationNode(node); if (typeNode) { return getTypeFromTypeNode(typeNode); } } function getTypeOfVariableOrParameterOrProperty(symbol) { var links = getSymbolLinks(symbol); if (!links.type) { var type = getTypeOfVariableOrParameterOrPropertyWorker(symbol); // For a contextually typed parameter it is possible that a type has already // been assigned (in assignTypeToParameterAndFixTypeParameters), and we want // to preserve this type. if (!links.type) { links.type = type; } } return links.type; } function getTypeOfVariableOrParameterOrPropertyWorker(symbol) { // Handle prototype property if (symbol.flags & 4194304 /* SymbolFlags.Prototype */) { return getTypeOfPrototypeProperty(symbol); } // CommonsJS require and module both have type any. if (symbol === requireSymbol) { return anyType; } if (symbol.flags & 134217728 /* SymbolFlags.ModuleExports */ && symbol.valueDeclaration) { var fileSymbol = getSymbolOfNode(ts.getSourceFileOfNode(symbol.valueDeclaration)); var result = createSymbol(fileSymbol.flags, "exports"); result.declarations = fileSymbol.declarations ? fileSymbol.declarations.slice() : []; result.parent = symbol; result.target = fileSymbol; if (fileSymbol.valueDeclaration) result.valueDeclaration = fileSymbol.valueDeclaration; if (fileSymbol.members) result.members = new ts.Map(fileSymbol.members); if (fileSymbol.exports) result.exports = new ts.Map(fileSymbol.exports); var members = ts.createSymbolTable(); members.set("exports", result); return createAnonymousType(symbol, members, ts.emptyArray, ts.emptyArray, ts.emptyArray); } // Handle catch clause variables ts.Debug.assertIsDefined(symbol.valueDeclaration); var declaration = symbol.valueDeclaration; if (ts.isCatchClauseVariableDeclarationOrBindingElement(declaration)) { var typeNode = ts.getEffectiveTypeAnnotationNode(declaration); if (typeNode === undefined) { return useUnknownInCatchVariables ? unknownType : anyType; } var type_2 = getTypeOfNode(typeNode); // an errorType will make `checkTryStatement` issue an error return isTypeAny(type_2) || type_2 === unknownType ? type_2 : errorType; } // Handle export default expressions if (ts.isSourceFile(declaration) && ts.isJsonSourceFile(declaration)) { if (!declaration.statements.length) { return emptyObjectType; } return getWidenedType(getWidenedLiteralType(checkExpression(declaration.statements[0].expression))); } if (ts.isAccessor(declaration)) { // Binding of certain patterns in JS code will occasionally mark symbols as both properties // and accessors. Here we dispatch to accessor resolution if needed. return getTypeOfAccessors(symbol); } // Handle variable, parameter or property if (!pushTypeResolution(symbol, 0 /* TypeSystemPropertyName.Type */)) { // Symbol is property of some kind that is merged with something - should use `getTypeOfFuncClassEnumModule` and not `getTypeOfVariableOrParameterOrProperty` if (symbol.flags & 512 /* SymbolFlags.ValueModule */ && !(symbol.flags & 67108864 /* SymbolFlags.Assignment */)) { return getTypeOfFuncClassEnumModule(symbol); } return reportCircularityError(symbol); } var type; if (declaration.kind === 271 /* SyntaxKind.ExportAssignment */) { type = widenTypeForVariableLikeDeclaration(tryGetTypeFromEffectiveTypeNode(declaration) || checkExpressionCached(declaration.expression), declaration); } else if (ts.isBinaryExpression(declaration) || (ts.isInJSFile(declaration) && (ts.isCallExpression(declaration) || (ts.isPropertyAccessExpression(declaration) || ts.isBindableStaticElementAccessExpression(declaration)) && ts.isBinaryExpression(declaration.parent)))) { type = getWidenedTypeForAssignmentDeclaration(symbol); } else if (ts.isPropertyAccessExpression(declaration) || ts.isElementAccessExpression(declaration) || ts.isIdentifier(declaration) || ts.isStringLiteralLike(declaration) || ts.isNumericLiteral(declaration) || ts.isClassDeclaration(declaration) || ts.isFunctionDeclaration(declaration) || (ts.isMethodDeclaration(declaration) && !ts.isObjectLiteralMethod(declaration)) || ts.isMethodSignature(declaration) || ts.isSourceFile(declaration)) { // Symbol is property of some kind that is merged with something - should use `getTypeOfFuncClassEnumModule` and not `getTypeOfVariableOrParameterOrProperty` if (symbol.flags & (16 /* SymbolFlags.Function */ | 8192 /* SymbolFlags.Method */ | 32 /* SymbolFlags.Class */ | 384 /* SymbolFlags.Enum */ | 512 /* SymbolFlags.ValueModule */)) { return getTypeOfFuncClassEnumModule(symbol); } type = ts.isBinaryExpression(declaration.parent) ? getWidenedTypeForAssignmentDeclaration(symbol) : tryGetTypeFromEffectiveTypeNode(declaration) || anyType; } else if (ts.isPropertyAssignment(declaration)) { type = tryGetTypeFromEffectiveTypeNode(declaration) || checkPropertyAssignment(declaration); } else if (ts.isJsxAttribute(declaration)) { type = tryGetTypeFromEffectiveTypeNode(declaration) || checkJsxAttribute(declaration); } else if (ts.isShorthandPropertyAssignment(declaration)) { type = tryGetTypeFromEffectiveTypeNode(declaration) || checkExpressionForMutableLocation(declaration.name, 0 /* CheckMode.Normal */); } else if (ts.isObjectLiteralMethod(declaration)) { type = tryGetTypeFromEffectiveTypeNode(declaration) || checkObjectLiteralMethod(declaration, 0 /* CheckMode.Normal */); } else if (ts.isParameter(declaration) || ts.isPropertyDeclaration(declaration) || ts.isPropertySignature(declaration) || ts.isVariableDeclaration(declaration) || ts.isBindingElement(declaration) || ts.isJSDocPropertyLikeTag(declaration)) { type = getWidenedTypeForVariableLikeDeclaration(declaration, /*includeOptionality*/ true); } // getTypeOfSymbol dispatches some JS merges incorrectly because their symbol flags are not mutually exclusive. // Re-dispatch based on valueDeclaration.kind instead. else if (ts.isEnumDeclaration(declaration)) { type = getTypeOfFuncClassEnumModule(symbol); } else if (ts.isEnumMember(declaration)) { type = getTypeOfEnumMember(symbol); } else { return ts.Debug.fail("Unhandled declaration kind! " + ts.Debug.formatSyntaxKind(declaration.kind) + " for " + ts.Debug.formatSymbol(symbol)); } if (!popTypeResolution()) { // Symbol is property of some kind that is merged with something - should use `getTypeOfFuncClassEnumModule` and not `getTypeOfVariableOrParameterOrProperty` if (symbol.flags & 512 /* SymbolFlags.ValueModule */ && !(symbol.flags & 67108864 /* SymbolFlags.Assignment */)) { return getTypeOfFuncClassEnumModule(symbol); } return reportCircularityError(symbol); } return type; } function getAnnotatedAccessorTypeNode(accessor) { if (accessor) { if (accessor.kind === 172 /* SyntaxKind.GetAccessor */) { var getterTypeAnnotation = ts.getEffectiveReturnTypeNode(accessor); return getterTypeAnnotation; } else { var setterTypeAnnotation = ts.getEffectiveSetAccessorTypeAnnotationNode(accessor); return setterTypeAnnotation; } } return undefined; } function getAnnotatedAccessorType(accessor) { var node = getAnnotatedAccessorTypeNode(accessor); return node && getTypeFromTypeNode(node); } function getAnnotatedAccessorThisParameter(accessor) { var parameter = getAccessorThisParameter(accessor); return parameter && parameter.symbol; } function getThisTypeOfDeclaration(declaration) { return getThisTypeOfSignature(getSignatureFromDeclaration(declaration)); } function getTypeOfAccessors(symbol) { var links = getSymbolLinks(symbol); if (!links.type) { if (!pushTypeResolution(symbol, 0 /* TypeSystemPropertyName.Type */)) { return errorType; } var getter = ts.getDeclarationOfKind(symbol, 172 /* SyntaxKind.GetAccessor */); var setter = ts.getDeclarationOfKind(symbol, 173 /* SyntaxKind.SetAccessor */); // We try to resolve a getter type annotation, a setter type annotation, or a getter function // body return type inference, in that order. var type = getter && ts.isInJSFile(getter) && getTypeForDeclarationFromJSDocComment(getter) || getAnnotatedAccessorType(getter) || getAnnotatedAccessorType(setter) || getter && getter.body && getReturnTypeFromBody(getter); if (!type) { if (setter && !isPrivateWithinAmbient(setter)) { errorOrSuggestion(noImplicitAny, setter, ts.Diagnostics.Property_0_implicitly_has_type_any_because_its_set_accessor_lacks_a_parameter_type_annotation, symbolToString(symbol)); } else if (getter && !isPrivateWithinAmbient(getter)) { errorOrSuggestion(noImplicitAny, getter, ts.Diagnostics.Property_0_implicitly_has_type_any_because_its_get_accessor_lacks_a_return_type_annotation, symbolToString(symbol)); } type = anyType; } if (!popTypeResolution()) { if (getAnnotatedAccessorTypeNode(getter)) { error(getter, ts.Diagnostics._0_is_referenced_directly_or_indirectly_in_its_own_type_annotation, symbolToString(symbol)); } else if (getAnnotatedAccessorTypeNode(setter)) { error(setter, ts.Diagnostics._0_is_referenced_directly_or_indirectly_in_its_own_type_annotation, symbolToString(symbol)); } else if (getter && noImplicitAny) { error(getter, ts.Diagnostics._0_implicitly_has_return_type_any_because_it_does_not_have_a_return_type_annotation_and_is_referenced_directly_or_indirectly_in_one_of_its_return_expressions, symbolToString(symbol)); } type = anyType; } links.type = type; } return links.type; } function getWriteTypeOfAccessors(symbol) { var links = getSymbolLinks(symbol); if (!links.writeType) { if (!pushTypeResolution(symbol, 8 /* TypeSystemPropertyName.WriteType */)) { return errorType; } var setter = ts.getDeclarationOfKind(symbol, 173 /* SyntaxKind.SetAccessor */); var writeType = getAnnotatedAccessorType(setter); if (!popTypeResolution()) { if (getAnnotatedAccessorTypeNode(setter)) { error(setter, ts.Diagnostics._0_is_referenced_directly_or_indirectly_in_its_own_type_annotation, symbolToString(symbol)); } writeType = anyType; } // Absent an explicit setter type annotation we use the read type of the accessor. links.writeType = writeType || getTypeOfAccessors(symbol); } return links.writeType; } function getBaseTypeVariableOfClass(symbol) { var baseConstructorType = getBaseConstructorTypeOfClass(getDeclaredTypeOfClassOrInterface(symbol)); return baseConstructorType.flags & 8650752 /* TypeFlags.TypeVariable */ ? baseConstructorType : baseConstructorType.flags & 2097152 /* TypeFlags.Intersection */ ? ts.find(baseConstructorType.types, function (t) { return !!(t.flags & 8650752 /* TypeFlags.TypeVariable */); }) : undefined; } function getTypeOfFuncClassEnumModule(symbol) { var links = getSymbolLinks(symbol); var originalLinks = links; if (!links.type) { var expando = symbol.valueDeclaration && getSymbolOfExpando(symbol.valueDeclaration, /*allowDeclaration*/ false); if (expando) { var merged = mergeJSSymbols(symbol, expando); if (merged) { // note:we overwrite links because we just cloned the symbol symbol = links = merged; } } originalLinks.type = links.type = getTypeOfFuncClassEnumModuleWorker(symbol); } return links.type; } function getTypeOfFuncClassEnumModuleWorker(symbol) { var declaration = symbol.valueDeclaration; if (symbol.flags & 1536 /* SymbolFlags.Module */ && ts.isShorthandAmbientModuleSymbol(symbol)) { return anyType; } else if (declaration && (declaration.kind === 221 /* SyntaxKind.BinaryExpression */ || ts.isAccessExpression(declaration) && declaration.parent.kind === 221 /* SyntaxKind.BinaryExpression */)) { return getWidenedTypeForAssignmentDeclaration(symbol); } else if (symbol.flags & 512 /* SymbolFlags.ValueModule */ && declaration && ts.isSourceFile(declaration) && declaration.commonJsModuleIndicator) { var resolvedModule = resolveExternalModuleSymbol(symbol); if (resolvedModule !== symbol) { if (!pushTypeResolution(symbol, 0 /* TypeSystemPropertyName.Type */)) { return errorType; } var exportEquals = getMergedSymbol(symbol.exports.get("export=" /* InternalSymbolName.ExportEquals */)); var type_3 = getWidenedTypeForAssignmentDeclaration(exportEquals, exportEquals === resolvedModule ? undefined : resolvedModule); if (!popTypeResolution()) { return reportCircularityError(symbol); } return type_3; } } var type = createObjectType(16 /* ObjectFlags.Anonymous */, symbol); if (symbol.flags & 32 /* SymbolFlags.Class */) { var baseTypeVariable = getBaseTypeVariableOfClass(symbol); return baseTypeVariable ? getIntersectionType([type, baseTypeVariable]) : type; } else { return strictNullChecks && symbol.flags & 16777216 /* SymbolFlags.Optional */ ? getOptionalType(type) : type; } } function getTypeOfEnumMember(symbol) { var links = getSymbolLinks(symbol); return links.type || (links.type = getDeclaredTypeOfEnumMember(symbol)); } function getTypeOfAlias(symbol) { var links = getSymbolLinks(symbol); if (!links.type) { var targetSymbol = resolveAlias(symbol); var exportSymbol = symbol.declarations && getTargetOfAliasDeclaration(getDeclarationOfAliasSymbol(symbol), /*dontResolveAlias*/ true); var declaredType = ts.firstDefined(exportSymbol === null || exportSymbol === void 0 ? void 0 : exportSymbol.declarations, function (d) { return ts.isExportAssignment(d) ? tryGetTypeFromEffectiveTypeNode(d) : undefined; }); // It only makes sense to get the type of a value symbol. If the result of resolving // the alias is not a value, then it has no type. To get the type associated with a // type symbol, call getDeclaredTypeOfSymbol. // This check is important because without it, a call to getTypeOfSymbol could end // up recursively calling getTypeOfAlias, causing a stack overflow. links.type = (exportSymbol === null || exportSymbol === void 0 ? void 0 : exportSymbol.declarations) && isDuplicatedCommonJSExport(exportSymbol.declarations) && symbol.declarations.length ? getFlowTypeFromCommonJSExport(exportSymbol) : isDuplicatedCommonJSExport(symbol.declarations) ? autoType : declaredType ? declaredType : targetSymbol.flags & 111551 /* SymbolFlags.Value */ ? getTypeOfSymbol(targetSymbol) : errorType; } return links.type; } function getTypeOfInstantiatedSymbol(symbol) { var links = getSymbolLinks(symbol); return links.type || (links.type = instantiateType(getTypeOfSymbol(links.target), links.mapper)); } function getWriteTypeOfInstantiatedSymbol(symbol) { var links = getSymbolLinks(symbol); return links.writeType || (links.writeType = instantiateType(getWriteTypeOfSymbol(links.target), links.mapper)); } function reportCircularityError(symbol) { var declaration = symbol.valueDeclaration; // Check if variable has type annotation that circularly references the variable itself if (ts.getEffectiveTypeAnnotationNode(declaration)) { error(symbol.valueDeclaration, ts.Diagnostics._0_is_referenced_directly_or_indirectly_in_its_own_type_annotation, symbolToString(symbol)); return errorType; } // Check if variable has initializer that circularly references the variable itself if (noImplicitAny && (declaration.kind !== 164 /* SyntaxKind.Parameter */ || declaration.initializer)) { error(symbol.valueDeclaration, ts.Diagnostics._0_implicitly_has_type_any_because_it_does_not_have_a_type_annotation_and_is_referenced_directly_or_indirectly_in_its_own_initializer, symbolToString(symbol)); } // Circularities could also result from parameters in function expressions that end up // having themselves as contextual types following type argument inference. In those cases // we have already reported an implicit any error so we don't report anything here. return anyType; } function getTypeOfSymbolWithDeferredType(symbol) { var links = getSymbolLinks(symbol); if (!links.type) { ts.Debug.assertIsDefined(links.deferralParent); ts.Debug.assertIsDefined(links.deferralConstituents); links.type = links.deferralParent.flags & 1048576 /* TypeFlags.Union */ ? getUnionType(links.deferralConstituents) : getIntersectionType(links.deferralConstituents); } return links.type; } function getWriteTypeOfSymbolWithDeferredType(symbol) { var links = getSymbolLinks(symbol); if (!links.writeType && links.deferralWriteConstituents) { ts.Debug.assertIsDefined(links.deferralParent); ts.Debug.assertIsDefined(links.deferralConstituents); links.writeType = links.deferralParent.flags & 1048576 /* TypeFlags.Union */ ? getUnionType(links.deferralWriteConstituents) : getIntersectionType(links.deferralWriteConstituents); } return links.writeType; } /** * Distinct write types come only from set accessors, but synthetic union and intersection * properties deriving from set accessors will either pre-compute or defer the union or * intersection of the writeTypes of their constituents. */ function getWriteTypeOfSymbol(symbol) { var checkFlags = ts.getCheckFlags(symbol); if (symbol.flags & 4 /* SymbolFlags.Property */) { return checkFlags & 2 /* CheckFlags.SyntheticProperty */ ? checkFlags & 65536 /* CheckFlags.DeferredType */ ? getWriteTypeOfSymbolWithDeferredType(symbol) || getTypeOfSymbolWithDeferredType(symbol) : symbol.writeType || symbol.type : getTypeOfSymbol(symbol); } if (symbol.flags & 98304 /* SymbolFlags.Accessor */) { return checkFlags & 1 /* CheckFlags.Instantiated */ ? getWriteTypeOfInstantiatedSymbol(symbol) : getWriteTypeOfAccessors(symbol); } return getTypeOfSymbol(symbol); } function getTypeOfSymbol(symbol) { var checkFlags = ts.getCheckFlags(symbol); if (checkFlags & 65536 /* CheckFlags.DeferredType */) { return getTypeOfSymbolWithDeferredType(symbol); } if (checkFlags & 1 /* CheckFlags.Instantiated */) { return getTypeOfInstantiatedSymbol(symbol); } if (checkFlags & 262144 /* CheckFlags.Mapped */) { return getTypeOfMappedSymbol(symbol); } if (checkFlags & 8192 /* CheckFlags.ReverseMapped */) { return getTypeOfReverseMappedSymbol(symbol); } if (symbol.flags & (3 /* SymbolFlags.Variable */ | 4 /* SymbolFlags.Property */)) { return getTypeOfVariableOrParameterOrProperty(symbol); } if (symbol.flags & (16 /* SymbolFlags.Function */ | 8192 /* SymbolFlags.Method */ | 32 /* SymbolFlags.Class */ | 384 /* SymbolFlags.Enum */ | 512 /* SymbolFlags.ValueModule */)) { return getTypeOfFuncClassEnumModule(symbol); } if (symbol.flags & 8 /* SymbolFlags.EnumMember */) { return getTypeOfEnumMember(symbol); } if (symbol.flags & 98304 /* SymbolFlags.Accessor */) { return getTypeOfAccessors(symbol); } if (symbol.flags & 2097152 /* SymbolFlags.Alias */) { return getTypeOfAlias(symbol); } return errorType; } function getNonMissingTypeOfSymbol(symbol) { return removeMissingType(getTypeOfSymbol(symbol), !!(symbol.flags & 16777216 /* SymbolFlags.Optional */)); } function isReferenceToType(type, target) { return type !== undefined && target !== undefined && (ts.getObjectFlags(type) & 4 /* ObjectFlags.Reference */) !== 0 && type.target === target; } function getTargetType(type) { return ts.getObjectFlags(type) & 4 /* ObjectFlags.Reference */ ? type.target : type; } // TODO: GH#18217 If `checkBase` is undefined, we should not call this because this will always return false. function hasBaseType(type, checkBase) { return check(type); function check(type) { if (ts.getObjectFlags(type) & (3 /* ObjectFlags.ClassOrInterface */ | 4 /* ObjectFlags.Reference */)) { var target = getTargetType(type); return target === checkBase || ts.some(getBaseTypes(target), check); } else if (type.flags & 2097152 /* TypeFlags.Intersection */) { return ts.some(type.types, check); } return false; } } // Appends the type parameters given by a list of declarations to a set of type parameters and returns the resulting set. // The function allocates a new array if the input type parameter set is undefined, but otherwise it modifies the set // in-place and returns the same array. function appendTypeParameters(typeParameters, declarations) { for (var _i = 0, declarations_2 = declarations; _i < declarations_2.length; _i++) { var declaration = declarations_2[_i]; typeParameters = ts.appendIfUnique(typeParameters, getDeclaredTypeOfTypeParameter(getSymbolOfNode(declaration))); } return typeParameters; } // Return the outer type parameters of a node or undefined if the node has no outer type parameters. function getOuterTypeParameters(node, includeThisTypes) { while (true) { node = node.parent; // TODO: GH#18217 Use SourceFile kind check instead if (node && ts.isBinaryExpression(node)) { // prototype assignments get the outer type parameters of their constructor function var assignmentKind = ts.getAssignmentDeclarationKind(node); if (assignmentKind === 6 /* AssignmentDeclarationKind.Prototype */ || assignmentKind === 3 /* AssignmentDeclarationKind.PrototypeProperty */) { var symbol = getSymbolOfNode(node.left); if (symbol && symbol.parent && !ts.findAncestor(symbol.parent.valueDeclaration, function (d) { return node === d; })) { node = symbol.parent.valueDeclaration; } } } if (!node) { return undefined; } switch (node.kind) { case 257 /* SyntaxKind.ClassDeclaration */: case 226 /* SyntaxKind.ClassExpression */: case 258 /* SyntaxKind.InterfaceDeclaration */: case 174 /* SyntaxKind.CallSignature */: case 175 /* SyntaxKind.ConstructSignature */: case 168 /* SyntaxKind.MethodSignature */: case 179 /* SyntaxKind.FunctionType */: case 180 /* SyntaxKind.ConstructorType */: case 317 /* SyntaxKind.JSDocFunctionType */: case 256 /* SyntaxKind.FunctionDeclaration */: case 169 /* SyntaxKind.MethodDeclaration */: case 213 /* SyntaxKind.FunctionExpression */: case 214 /* SyntaxKind.ArrowFunction */: case 259 /* SyntaxKind.TypeAliasDeclaration */: case 344 /* SyntaxKind.JSDocTemplateTag */: case 345 /* SyntaxKind.JSDocTypedefTag */: case 339 /* SyntaxKind.JSDocEnumTag */: case 338 /* SyntaxKind.JSDocCallbackTag */: case 195 /* SyntaxKind.MappedType */: case 189 /* SyntaxKind.ConditionalType */: { var outerTypeParameters = getOuterTypeParameters(node, includeThisTypes); if (node.kind === 195 /* SyntaxKind.MappedType */) { return ts.append(outerTypeParameters, getDeclaredTypeOfTypeParameter(getSymbolOfNode(node.typeParameter))); } else if (node.kind === 189 /* SyntaxKind.ConditionalType */) { return ts.concatenate(outerTypeParameters, getInferTypeParameters(node)); } var outerAndOwnTypeParameters = appendTypeParameters(outerTypeParameters, ts.getEffectiveTypeParameterDeclarations(node)); var thisType = includeThisTypes && (node.kind === 257 /* SyntaxKind.ClassDeclaration */ || node.kind === 226 /* SyntaxKind.ClassExpression */ || node.kind === 258 /* SyntaxKind.InterfaceDeclaration */ || isJSConstructor(node)) && getDeclaredTypeOfClassOrInterface(getSymbolOfNode(node)).thisType; return thisType ? ts.append(outerAndOwnTypeParameters, thisType) : outerAndOwnTypeParameters; } case 340 /* SyntaxKind.JSDocParameterTag */: var paramSymbol = ts.getParameterSymbolFromJSDoc(node); if (paramSymbol) { node = paramSymbol.valueDeclaration; } break; case 320 /* SyntaxKind.JSDoc */: { var outerTypeParameters = getOuterTypeParameters(node, includeThisTypes); return node.tags ? appendTypeParameters(outerTypeParameters, ts.flatMap(node.tags, function (t) { return ts.isJSDocTemplateTag(t) ? t.typeParameters : undefined; })) : outerTypeParameters; } } } } // The outer type parameters are those defined by enclosing generic classes, methods, or functions. function getOuterTypeParametersOfClassOrInterface(symbol) { var declaration = symbol.flags & 32 /* SymbolFlags.Class */ ? symbol.valueDeclaration : ts.getDeclarationOfKind(symbol, 258 /* SyntaxKind.InterfaceDeclaration */); ts.Debug.assert(!!declaration, "Class was missing valueDeclaration -OR- non-class had no interface declarations"); return getOuterTypeParameters(declaration); } // The local type parameters are the combined set of type parameters from all declarations of the class, // interface, or type alias. function getLocalTypeParametersOfClassOrInterfaceOrTypeAlias(symbol) { if (!symbol.declarations) { return; } var result; for (var _i = 0, _a = symbol.declarations; _i < _a.length; _i++) { var node = _a[_i]; if (node.kind === 258 /* SyntaxKind.InterfaceDeclaration */ || node.kind === 257 /* SyntaxKind.ClassDeclaration */ || node.kind === 226 /* SyntaxKind.ClassExpression */ || isJSConstructor(node) || ts.isTypeAlias(node)) { var declaration = node; result = appendTypeParameters(result, ts.getEffectiveTypeParameterDeclarations(declaration)); } } return result; } // The full set of type parameters for a generic class or interface type consists of its outer type parameters plus // its locally declared type parameters. function getTypeParametersOfClassOrInterface(symbol) { return ts.concatenate(getOuterTypeParametersOfClassOrInterface(symbol), getLocalTypeParametersOfClassOrInterfaceOrTypeAlias(symbol)); } // A type is a mixin constructor if it has a single construct signature taking no type parameters and a single // rest parameter of type any[]. function isMixinConstructorType(type) { var signatures = getSignaturesOfType(type, 1 /* SignatureKind.Construct */); if (signatures.length === 1) { var s = signatures[0]; if (!s.typeParameters && s.parameters.length === 1 && signatureHasRestParameter(s)) { var paramType = getTypeOfParameter(s.parameters[0]); return isTypeAny(paramType) || getElementTypeOfArrayType(paramType) === anyType; } } return false; } function isConstructorType(type) { if (getSignaturesOfType(type, 1 /* SignatureKind.Construct */).length > 0) { return true; } if (type.flags & 8650752 /* TypeFlags.TypeVariable */) { var constraint = getBaseConstraintOfType(type); return !!constraint && isMixinConstructorType(constraint); } return false; } function getBaseTypeNodeOfClass(type) { var decl = ts.getClassLikeDeclarationOfSymbol(type.symbol); return decl && ts.getEffectiveBaseTypeNode(decl); } function getConstructorsForTypeArguments(type, typeArgumentNodes, location) { var typeArgCount = ts.length(typeArgumentNodes); var isJavascript = ts.isInJSFile(location); return ts.filter(getSignaturesOfType(type, 1 /* SignatureKind.Construct */), function (sig) { return (isJavascript || typeArgCount >= getMinTypeArgumentCount(sig.typeParameters)) && typeArgCount <= ts.length(sig.typeParameters); }); } function getInstantiatedConstructorsForTypeArguments(type, typeArgumentNodes, location) { var signatures = getConstructorsForTypeArguments(type, typeArgumentNodes, location); var typeArguments = ts.map(typeArgumentNodes, getTypeFromTypeNode); return ts.sameMap(signatures, function (sig) { return ts.some(sig.typeParameters) ? getSignatureInstantiation(sig, typeArguments, ts.isInJSFile(location)) : sig; }); } /** * The base constructor of a class can resolve to * * undefinedType if the class has no extends clause, * * unknownType if an error occurred during resolution of the extends expression, * * nullType if the extends expression is the null value, * * anyType if the extends expression has type any, or * * an object type with at least one construct signature. */ function getBaseConstructorTypeOfClass(type) { if (!type.resolvedBaseConstructorType) { var decl = ts.getClassLikeDeclarationOfSymbol(type.symbol); var extended = decl && ts.getEffectiveBaseTypeNode(decl); var baseTypeNode = getBaseTypeNodeOfClass(type); if (!baseTypeNode) { return type.resolvedBaseConstructorType = undefinedType; } if (!pushTypeResolution(type, 1 /* TypeSystemPropertyName.ResolvedBaseConstructorType */)) { return errorType; } var baseConstructorType = checkExpression(baseTypeNode.expression); if (extended && baseTypeNode !== extended) { ts.Debug.assert(!extended.typeArguments); // Because this is in a JS file, and baseTypeNode is in an @extends tag checkExpression(extended.expression); } if (baseConstructorType.flags & (524288 /* TypeFlags.Object */ | 2097152 /* TypeFlags.Intersection */)) { // Resolving the members of a class requires us to resolve the base class of that class. // We force resolution here such that we catch circularities now. resolveStructuredTypeMembers(baseConstructorType); } if (!popTypeResolution()) { error(type.symbol.valueDeclaration, ts.Diagnostics._0_is_referenced_directly_or_indirectly_in_its_own_base_expression, symbolToString(type.symbol)); return type.resolvedBaseConstructorType = errorType; } if (!(baseConstructorType.flags & 1 /* TypeFlags.Any */) && baseConstructorType !== nullWideningType && !isConstructorType(baseConstructorType)) { var err = error(baseTypeNode.expression, ts.Diagnostics.Type_0_is_not_a_constructor_function_type, typeToString(baseConstructorType)); if (baseConstructorType.flags & 262144 /* TypeFlags.TypeParameter */) { var constraint = getConstraintFromTypeParameter(baseConstructorType); var ctorReturn = unknownType; if (constraint) { var ctorSig = getSignaturesOfType(constraint, 1 /* SignatureKind.Construct */); if (ctorSig[0]) { ctorReturn = getReturnTypeOfSignature(ctorSig[0]); } } if (baseConstructorType.symbol.declarations) { ts.addRelatedInfo(err, ts.createDiagnosticForNode(baseConstructorType.symbol.declarations[0], ts.Diagnostics.Did_you_mean_for_0_to_be_constrained_to_type_new_args_Colon_any_1, symbolToString(baseConstructorType.symbol), typeToString(ctorReturn))); } } return type.resolvedBaseConstructorType = errorType; } type.resolvedBaseConstructorType = baseConstructorType; } return type.resolvedBaseConstructorType; } function getImplementsTypes(type) { var resolvedImplementsTypes = ts.emptyArray; if (type.symbol.declarations) { for (var _i = 0, _a = type.symbol.declarations; _i < _a.length; _i++) { var declaration = _a[_i]; var implementsTypeNodes = ts.getEffectiveImplementsTypeNodes(declaration); if (!implementsTypeNodes) continue; for (var _b = 0, implementsTypeNodes_1 = implementsTypeNodes; _b < implementsTypeNodes_1.length; _b++) { var node = implementsTypeNodes_1[_b]; var implementsType = getTypeFromTypeNode(node); if (!isErrorType(implementsType)) { if (resolvedImplementsTypes === ts.emptyArray) { resolvedImplementsTypes = [implementsType]; } else { resolvedImplementsTypes.push(implementsType); } } } } } return resolvedImplementsTypes; } function reportCircularBaseType(node, type) { error(node, ts.Diagnostics.Type_0_recursively_references_itself_as_a_base_type, typeToString(type, /*enclosingDeclaration*/ undefined, 2 /* TypeFormatFlags.WriteArrayAsGenericType */)); } function getBaseTypes(type) { if (!type.baseTypesResolved) { if (pushTypeResolution(type, 7 /* TypeSystemPropertyName.ResolvedBaseTypes */)) { if (type.objectFlags & 8 /* ObjectFlags.Tuple */) { type.resolvedBaseTypes = [getTupleBaseType(type)]; } else if (type.symbol.flags & (32 /* SymbolFlags.Class */ | 64 /* SymbolFlags.Interface */)) { if (type.symbol.flags & 32 /* SymbolFlags.Class */) { resolveBaseTypesOfClass(type); } if (type.symbol.flags & 64 /* SymbolFlags.Interface */) { resolveBaseTypesOfInterface(type); } } else { ts.Debug.fail("type must be class or interface"); } if (!popTypeResolution() && type.symbol.declarations) { for (var _i = 0, _a = type.symbol.declarations; _i < _a.length; _i++) { var declaration = _a[_i]; if (declaration.kind === 257 /* SyntaxKind.ClassDeclaration */ || declaration.kind === 258 /* SyntaxKind.InterfaceDeclaration */) { reportCircularBaseType(declaration, type); } } } } type.baseTypesResolved = true; } return type.resolvedBaseTypes; } function getTupleBaseType(type) { var elementTypes = ts.sameMap(type.typeParameters, function (t, i) { return type.elementFlags[i] & 8 /* ElementFlags.Variadic */ ? getIndexedAccessType(t, numberType) : t; }); return createArrayType(getUnionType(elementTypes || ts.emptyArray), type.readonly); } function resolveBaseTypesOfClass(type) { type.resolvedBaseTypes = ts.resolvingEmptyArray; var baseConstructorType = getApparentType(getBaseConstructorTypeOfClass(type)); if (!(baseConstructorType.flags & (524288 /* TypeFlags.Object */ | 2097152 /* TypeFlags.Intersection */ | 1 /* TypeFlags.Any */))) { return type.resolvedBaseTypes = ts.emptyArray; } var baseTypeNode = getBaseTypeNodeOfClass(type); var baseType; var originalBaseType = baseConstructorType.symbol ? getDeclaredTypeOfSymbol(baseConstructorType.symbol) : undefined; if (baseConstructorType.symbol && baseConstructorType.symbol.flags & 32 /* SymbolFlags.Class */ && areAllOuterTypeParametersApplied(originalBaseType)) { // When base constructor type is a class with no captured type arguments we know that the constructors all have the same type parameters as the // class and all return the instance type of the class. There is no need for further checks and we can apply the // type arguments in the same manner as a type reference to get the same error reporting experience. baseType = getTypeFromClassOrInterfaceReference(baseTypeNode, baseConstructorType.symbol); } else if (baseConstructorType.flags & 1 /* TypeFlags.Any */) { baseType = baseConstructorType; } else { // The class derives from a "class-like" constructor function, check that we have at least one construct signature // with a matching number of type parameters and use the return type of the first instantiated signature. Elsewhere // we check that all instantiated signatures return the same type. var constructors = getInstantiatedConstructorsForTypeArguments(baseConstructorType, baseTypeNode.typeArguments, baseTypeNode); if (!constructors.length) { error(baseTypeNode.expression, ts.Diagnostics.No_base_constructor_has_the_specified_number_of_type_arguments); return type.resolvedBaseTypes = ts.emptyArray; } baseType = getReturnTypeOfSignature(constructors[0]); } if (isErrorType(baseType)) { return type.resolvedBaseTypes = ts.emptyArray; } var reducedBaseType = getReducedType(baseType); if (!isValidBaseType(reducedBaseType)) { var elaboration = elaborateNeverIntersection(/*errorInfo*/ undefined, baseType); var diagnostic = ts.chainDiagnosticMessages(elaboration, ts.Diagnostics.Base_constructor_return_type_0_is_not_an_object_type_or_intersection_of_object_types_with_statically_known_members, typeToString(reducedBaseType)); diagnostics.add(ts.createDiagnosticForNodeFromMessageChain(baseTypeNode.expression, diagnostic)); return type.resolvedBaseTypes = ts.emptyArray; } if (type === reducedBaseType || hasBaseType(reducedBaseType, type)) { error(type.symbol.valueDeclaration, ts.Diagnostics.Type_0_recursively_references_itself_as_a_base_type, typeToString(type, /*enclosingDeclaration*/ undefined, 2 /* TypeFormatFlags.WriteArrayAsGenericType */)); return type.resolvedBaseTypes = ts.emptyArray; } if (type.resolvedBaseTypes === ts.resolvingEmptyArray) { // Circular reference, likely through instantiation of default parameters // (otherwise there'd be an error from hasBaseType) - this is fine, but `.members` should be reset // as `getIndexedAccessType` via `instantiateType` via `getTypeFromClassOrInterfaceReference` forces a // partial instantiation of the members without the base types fully resolved type.members = undefined; } return type.resolvedBaseTypes = [reducedBaseType]; } function areAllOuterTypeParametersApplied(type) { // An unapplied type parameter has its symbol still the same as the matching argument symbol. // Since parameters are applied outer-to-inner, only the last outer parameter needs to be checked. var outerTypeParameters = type.outerTypeParameters; if (outerTypeParameters) { var last_1 = outerTypeParameters.length - 1; var typeArguments = getTypeArguments(type); return outerTypeParameters[last_1].symbol !== typeArguments[last_1].symbol; } return true; } // A valid base type is `any`, an object type or intersection of object types. function isValidBaseType(type) { if (type.flags & 262144 /* TypeFlags.TypeParameter */) { var constraint = getBaseConstraintOfType(type); if (constraint) { return isValidBaseType(constraint); } } // TODO: Given that we allow type parmeters here now, is this `!isGenericMappedType(type)` check really needed? // There's no reason a `T` should be allowed while a `Readonly` should not. return !!(type.flags & (524288 /* TypeFlags.Object */ | 67108864 /* TypeFlags.NonPrimitive */ | 1 /* TypeFlags.Any */) && !isGenericMappedType(type) || type.flags & 2097152 /* TypeFlags.Intersection */ && ts.every(type.types, isValidBaseType)); } function resolveBaseTypesOfInterface(type) { type.resolvedBaseTypes = type.resolvedBaseTypes || ts.emptyArray; if (type.symbol.declarations) { for (var _i = 0, _a = type.symbol.declarations; _i < _a.length; _i++) { var declaration = _a[_i]; if (declaration.kind === 258 /* SyntaxKind.InterfaceDeclaration */ && ts.getInterfaceBaseTypeNodes(declaration)) { for (var _b = 0, _c = ts.getInterfaceBaseTypeNodes(declaration); _b < _c.length; _b++) { var node = _c[_b]; var baseType = getReducedType(getTypeFromTypeNode(node)); if (!isErrorType(baseType)) { if (isValidBaseType(baseType)) { if (type !== baseType && !hasBaseType(baseType, type)) { if (type.resolvedBaseTypes === ts.emptyArray) { type.resolvedBaseTypes = [baseType]; } else { type.resolvedBaseTypes.push(baseType); } } else { reportCircularBaseType(declaration, type); } } else { error(node, ts.Diagnostics.An_interface_can_only_extend_an_object_type_or_intersection_of_object_types_with_statically_known_members); } } } } } } } /** * Returns true if the interface given by the symbol is free of "this" references. * * Specifically, the result is true if the interface itself contains no references * to "this" in its body, if all base types are interfaces, * and if none of the base interfaces have a "this" type. */ function isThislessInterface(symbol) { if (!symbol.declarations) { return true; } for (var _i = 0, _a = symbol.declarations; _i < _a.length; _i++) { var declaration = _a[_i]; if (declaration.kind === 258 /* SyntaxKind.InterfaceDeclaration */) { if (declaration.flags & 128 /* NodeFlags.ContainsThis */) { return false; } var baseTypeNodes = ts.getInterfaceBaseTypeNodes(declaration); if (baseTypeNodes) { for (var _b = 0, baseTypeNodes_1 = baseTypeNodes; _b < baseTypeNodes_1.length; _b++) { var node = baseTypeNodes_1[_b]; if (ts.isEntityNameExpression(node.expression)) { var baseSymbol = resolveEntityName(node.expression, 788968 /* SymbolFlags.Type */, /*ignoreErrors*/ true); if (!baseSymbol || !(baseSymbol.flags & 64 /* SymbolFlags.Interface */) || getDeclaredTypeOfClassOrInterface(baseSymbol).thisType) { return false; } } } } } } return true; } function getDeclaredTypeOfClassOrInterface(symbol) { var links = getSymbolLinks(symbol); var originalLinks = links; if (!links.declaredType) { var kind = symbol.flags & 32 /* SymbolFlags.Class */ ? 1 /* ObjectFlags.Class */ : 2 /* ObjectFlags.Interface */; var merged = mergeJSSymbols(symbol, symbol.valueDeclaration && getAssignedClassSymbol(symbol.valueDeclaration)); if (merged) { // note:we overwrite links because we just cloned the symbol symbol = links = merged; } var type = originalLinks.declaredType = links.declaredType = createObjectType(kind, symbol); var outerTypeParameters = getOuterTypeParametersOfClassOrInterface(symbol); var localTypeParameters = getLocalTypeParametersOfClassOrInterfaceOrTypeAlias(symbol); // A class or interface is generic if it has type parameters or a "this" type. We always give classes a "this" type // because it is not feasible to analyze all members to determine if the "this" type escapes the class (in particular, // property types inferred from initializers and method return types inferred from return statements are very hard // to exhaustively analyze). We give interfaces a "this" type if we can't definitely determine that they are free of // "this" references. if (outerTypeParameters || localTypeParameters || kind === 1 /* ObjectFlags.Class */ || !isThislessInterface(symbol)) { type.objectFlags |= 4 /* ObjectFlags.Reference */; type.typeParameters = ts.concatenate(outerTypeParameters, localTypeParameters); type.outerTypeParameters = outerTypeParameters; type.localTypeParameters = localTypeParameters; type.instantiations = new ts.Map(); type.instantiations.set(getTypeListId(type.typeParameters), type); type.target = type; type.resolvedTypeArguments = type.typeParameters; type.thisType = createTypeParameter(symbol); type.thisType.isThisType = true; type.thisType.constraint = type; } } return links.declaredType; } function getDeclaredTypeOfTypeAlias(symbol) { var _a; var links = getSymbolLinks(symbol); if (!links.declaredType) { // Note that we use the links object as the target here because the symbol object is used as the unique // identity for resolution of the 'type' property in SymbolLinks. if (!pushTypeResolution(symbol, 2 /* TypeSystemPropertyName.DeclaredType */)) { return errorType; } var declaration = ts.Debug.checkDefined((_a = symbol.declarations) === null || _a === void 0 ? void 0 : _a.find(ts.isTypeAlias), "Type alias symbol with no valid declaration found"); var typeNode = ts.isJSDocTypeAlias(declaration) ? declaration.typeExpression : declaration.type; // If typeNode is missing, we will error in checkJSDocTypedefTag. var type = typeNode ? getTypeFromTypeNode(typeNode) : errorType; if (popTypeResolution()) { var typeParameters = getLocalTypeParametersOfClassOrInterfaceOrTypeAlias(symbol); if (typeParameters) { // Initialize the instantiation cache for generic type aliases. The declared type corresponds to // an instantiation of the type alias with the type parameters supplied as type arguments. links.typeParameters = typeParameters; links.instantiations = new ts.Map(); links.instantiations.set(getTypeListId(typeParameters), type); } } else { type = errorType; if (declaration.kind === 339 /* SyntaxKind.JSDocEnumTag */) { error(declaration.typeExpression.type, ts.Diagnostics.Type_alias_0_circularly_references_itself, symbolToString(symbol)); } else { error(ts.isNamedDeclaration(declaration) ? declaration.name : declaration || declaration, ts.Diagnostics.Type_alias_0_circularly_references_itself, symbolToString(symbol)); } } links.declaredType = type; } return links.declaredType; } function isStringConcatExpression(expr) { if (ts.isStringLiteralLike(expr)) { return true; } else if (expr.kind === 221 /* SyntaxKind.BinaryExpression */) { return isStringConcatExpression(expr.left) && isStringConcatExpression(expr.right); } return false; } function isLiteralEnumMember(member) { var expr = member.initializer; if (!expr) { return !(member.flags & 16777216 /* NodeFlags.Ambient */); } switch (expr.kind) { case 10 /* SyntaxKind.StringLiteral */: case 8 /* SyntaxKind.NumericLiteral */: case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: return true; case 219 /* SyntaxKind.PrefixUnaryExpression */: return expr.operator === 40 /* SyntaxKind.MinusToken */ && expr.operand.kind === 8 /* SyntaxKind.NumericLiteral */; case 79 /* SyntaxKind.Identifier */: return ts.nodeIsMissing(expr) || !!getSymbolOfNode(member.parent).exports.get(expr.escapedText); case 221 /* SyntaxKind.BinaryExpression */: return isStringConcatExpression(expr); default: return false; } } function getEnumKind(symbol) { var links = getSymbolLinks(symbol); if (links.enumKind !== undefined) { return links.enumKind; } var hasNonLiteralMember = false; if (symbol.declarations) { for (var _i = 0, _a = symbol.declarations; _i < _a.length; _i++) { var declaration = _a[_i]; if (declaration.kind === 260 /* SyntaxKind.EnumDeclaration */) { for (var _b = 0, _c = declaration.members; _b < _c.length; _b++) { var member = _c[_b]; if (member.initializer && ts.isStringLiteralLike(member.initializer)) { return links.enumKind = 1 /* EnumKind.Literal */; } if (!isLiteralEnumMember(member)) { hasNonLiteralMember = true; } } } } } return links.enumKind = hasNonLiteralMember ? 0 /* EnumKind.Numeric */ : 1 /* EnumKind.Literal */; } function getBaseTypeOfEnumLiteralType(type) { return type.flags & 1024 /* TypeFlags.EnumLiteral */ && !(type.flags & 1048576 /* TypeFlags.Union */) ? getDeclaredTypeOfSymbol(getParentOfSymbol(type.symbol)) : type; } function getDeclaredTypeOfEnum(symbol) { var links = getSymbolLinks(symbol); if (links.declaredType) { return links.declaredType; } if (getEnumKind(symbol) === 1 /* EnumKind.Literal */) { enumCount++; var memberTypeList = []; if (symbol.declarations) { for (var _i = 0, _a = symbol.declarations; _i < _a.length; _i++) { var declaration = _a[_i]; if (declaration.kind === 260 /* SyntaxKind.EnumDeclaration */) { for (var _b = 0, _c = declaration.members; _b < _c.length; _b++) { var member = _c[_b]; var value = getEnumMemberValue(member); var memberType = getFreshTypeOfLiteralType(getEnumLiteralType(value !== undefined ? value : 0, enumCount, getSymbolOfNode(member))); getSymbolLinks(getSymbolOfNode(member)).declaredType = memberType; memberTypeList.push(getRegularTypeOfLiteralType(memberType)); } } } } if (memberTypeList.length) { var enumType_1 = getUnionType(memberTypeList, 1 /* UnionReduction.Literal */, symbol, /*aliasTypeArguments*/ undefined); if (enumType_1.flags & 1048576 /* TypeFlags.Union */) { enumType_1.flags |= 1024 /* TypeFlags.EnumLiteral */; enumType_1.symbol = symbol; } return links.declaredType = enumType_1; } } var enumType = createType(32 /* TypeFlags.Enum */); enumType.symbol = symbol; return links.declaredType = enumType; } function getDeclaredTypeOfEnumMember(symbol) { var links = getSymbolLinks(symbol); if (!links.declaredType) { var enumType = getDeclaredTypeOfEnum(getParentOfSymbol(symbol)); if (!links.declaredType) { links.declaredType = enumType; } } return links.declaredType; } function getDeclaredTypeOfTypeParameter(symbol) { var links = getSymbolLinks(symbol); return links.declaredType || (links.declaredType = createTypeParameter(symbol)); } function getDeclaredTypeOfAlias(symbol) { var links = getSymbolLinks(symbol); return links.declaredType || (links.declaredType = getDeclaredTypeOfSymbol(resolveAlias(symbol))); } function getDeclaredTypeOfSymbol(symbol) { return tryGetDeclaredTypeOfSymbol(symbol) || errorType; } function tryGetDeclaredTypeOfSymbol(symbol) { if (symbol.flags & (32 /* SymbolFlags.Class */ | 64 /* SymbolFlags.Interface */)) { return getDeclaredTypeOfClassOrInterface(symbol); } if (symbol.flags & 524288 /* SymbolFlags.TypeAlias */) { return getDeclaredTypeOfTypeAlias(symbol); } if (symbol.flags & 262144 /* SymbolFlags.TypeParameter */) { return getDeclaredTypeOfTypeParameter(symbol); } if (symbol.flags & 384 /* SymbolFlags.Enum */) { return getDeclaredTypeOfEnum(symbol); } if (symbol.flags & 8 /* SymbolFlags.EnumMember */) { return getDeclaredTypeOfEnumMember(symbol); } if (symbol.flags & 2097152 /* SymbolFlags.Alias */) { return getDeclaredTypeOfAlias(symbol); } return undefined; } /** * A type is free of this references if it's the any, string, number, boolean, symbol, or void keyword, a string * literal type, an array with an element type that is free of this references, or a type reference that is * free of this references. */ function isThislessType(node) { switch (node.kind) { case 130 /* SyntaxKind.AnyKeyword */: case 155 /* SyntaxKind.UnknownKeyword */: case 150 /* SyntaxKind.StringKeyword */: case 147 /* SyntaxKind.NumberKeyword */: case 158 /* SyntaxKind.BigIntKeyword */: case 133 /* SyntaxKind.BooleanKeyword */: case 151 /* SyntaxKind.SymbolKeyword */: case 148 /* SyntaxKind.ObjectKeyword */: case 114 /* SyntaxKind.VoidKeyword */: case 153 /* SyntaxKind.UndefinedKeyword */: case 143 /* SyntaxKind.NeverKeyword */: case 196 /* SyntaxKind.LiteralType */: return true; case 183 /* SyntaxKind.ArrayType */: return isThislessType(node.elementType); case 178 /* SyntaxKind.TypeReference */: return !node.typeArguments || node.typeArguments.every(isThislessType); } return false; } /** A type parameter is thisless if its constraint is thisless, or if it has no constraint. */ function isThislessTypeParameter(node) { var constraint = ts.getEffectiveConstraintOfTypeParameter(node); return !constraint || isThislessType(constraint); } /** * A variable-like declaration is free of this references if it has a type annotation * that is thisless, or if it has no type annotation and no initializer (and is thus of type any). */ function isThislessVariableLikeDeclaration(node) { var typeNode = ts.getEffectiveTypeAnnotationNode(node); return typeNode ? isThislessType(typeNode) : !ts.hasInitializer(node); } /** * A function-like declaration is considered free of `this` references if it has a return type * annotation that is free of this references and if each parameter is thisless and if * each type parameter (if present) is thisless. */ function isThislessFunctionLikeDeclaration(node) { var returnType = ts.getEffectiveReturnTypeNode(node); var typeParameters = ts.getEffectiveTypeParameterDeclarations(node); return (node.kind === 171 /* SyntaxKind.Constructor */ || (!!returnType && isThislessType(returnType))) && node.parameters.every(isThislessVariableLikeDeclaration) && typeParameters.every(isThislessTypeParameter); } /** * Returns true if the class or interface member given by the symbol is free of "this" references. The * function may return false for symbols that are actually free of "this" references because it is not * feasible to perform a complete analysis in all cases. In particular, property members with types * inferred from their initializers and function members with inferred return types are conservatively * assumed not to be free of "this" references. */ function isThisless(symbol) { if (symbol.declarations && symbol.declarations.length === 1) { var declaration = symbol.declarations[0]; if (declaration) { switch (declaration.kind) { case 167 /* SyntaxKind.PropertyDeclaration */: case 166 /* SyntaxKind.PropertySignature */: return isThislessVariableLikeDeclaration(declaration); case 169 /* SyntaxKind.MethodDeclaration */: case 168 /* SyntaxKind.MethodSignature */: case 171 /* SyntaxKind.Constructor */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: return isThislessFunctionLikeDeclaration(declaration); } } } return false; } // The mappingThisOnly flag indicates that the only type parameter being mapped is "this". When the flag is true, // we check symbols to see if we can quickly conclude they are free of "this" references, thus needing no instantiation. function createInstantiatedSymbolTable(symbols, mapper, mappingThisOnly) { var result = ts.createSymbolTable(); for (var _i = 0, symbols_2 = symbols; _i < symbols_2.length; _i++) { var symbol = symbols_2[_i]; result.set(symbol.escapedName, mappingThisOnly && isThisless(symbol) ? symbol : instantiateSymbol(symbol, mapper)); } return result; } function addInheritedMembers(symbols, baseSymbols) { for (var _i = 0, baseSymbols_1 = baseSymbols; _i < baseSymbols_1.length; _i++) { var s = baseSymbols_1[_i]; if (!symbols.has(s.escapedName) && !isStaticPrivateIdentifierProperty(s)) { symbols.set(s.escapedName, s); } } } function isStaticPrivateIdentifierProperty(s) { return !!s.valueDeclaration && ts.isPrivateIdentifierClassElementDeclaration(s.valueDeclaration) && ts.isStatic(s.valueDeclaration); } function resolveDeclaredMembers(type) { if (!type.declaredProperties) { var symbol = type.symbol; var members = getMembersOfSymbol(symbol); type.declaredProperties = getNamedMembers(members); // Start with signatures at empty array in case of recursive types type.declaredCallSignatures = ts.emptyArray; type.declaredConstructSignatures = ts.emptyArray; type.declaredIndexInfos = ts.emptyArray; type.declaredCallSignatures = getSignaturesOfSymbol(members.get("__call" /* InternalSymbolName.Call */)); type.declaredConstructSignatures = getSignaturesOfSymbol(members.get("__new" /* InternalSymbolName.New */)); type.declaredIndexInfos = getIndexInfosOfSymbol(symbol); } return type; } /** * Indicates whether a type can be used as a property name. */ function isTypeUsableAsPropertyName(type) { return !!(type.flags & 8576 /* TypeFlags.StringOrNumberLiteralOrUnique */); } /** * Indicates whether a declaration name is definitely late-bindable. * A declaration name is only late-bindable if: * - It is a `ComputedPropertyName`. * - Its expression is an `Identifier` or either a `PropertyAccessExpression` an * `ElementAccessExpression` consisting only of these same three types of nodes. * - The type of its expression is a string or numeric literal type, or is a `unique symbol` type. */ function isLateBindableName(node) { if (!ts.isComputedPropertyName(node) && !ts.isElementAccessExpression(node)) { return false; } var expr = ts.isComputedPropertyName(node) ? node.expression : node.argumentExpression; return ts.isEntityNameExpression(expr) && isTypeUsableAsPropertyName(ts.isComputedPropertyName(node) ? checkComputedPropertyName(node) : checkExpressionCached(expr)); } function isLateBoundName(name) { return name.charCodeAt(0) === 95 /* CharacterCodes._ */ && name.charCodeAt(1) === 95 /* CharacterCodes._ */ && name.charCodeAt(2) === 64 /* CharacterCodes.at */; } /** * Indicates whether a declaration has a late-bindable dynamic name. */ function hasLateBindableName(node) { var name = ts.getNameOfDeclaration(node); return !!name && isLateBindableName(name); } /** * Indicates whether a declaration has an early-bound name or a dynamic name that can be late-bound. */ function hasBindableName(node) { return !ts.hasDynamicName(node) || hasLateBindableName(node); } /** * Indicates whether a declaration name is a dynamic name that cannot be late-bound. */ function isNonBindableDynamicName(node) { return ts.isDynamicName(node) && !isLateBindableName(node); } /** * Gets the symbolic name for a member from its type. */ function getPropertyNameFromType(type) { if (type.flags & 8192 /* TypeFlags.UniqueESSymbol */) { return type.escapedName; } if (type.flags & (128 /* TypeFlags.StringLiteral */ | 256 /* TypeFlags.NumberLiteral */)) { return ts.escapeLeadingUnderscores("" + type.value); } return ts.Debug.fail(); } /** * Adds a declaration to a late-bound dynamic member. This performs the same function for * late-bound members that `addDeclarationToSymbol` in binder.ts performs for early-bound * members. */ function addDeclarationToLateBoundSymbol(symbol, member, symbolFlags) { ts.Debug.assert(!!(ts.getCheckFlags(symbol) & 4096 /* CheckFlags.Late */), "Expected a late-bound symbol."); symbol.flags |= symbolFlags; getSymbolLinks(member.symbol).lateSymbol = symbol; if (!symbol.declarations) { symbol.declarations = [member]; } else if (!member.symbol.isReplaceableByMethod) { symbol.declarations.push(member); } if (symbolFlags & 111551 /* SymbolFlags.Value */) { if (!symbol.valueDeclaration || symbol.valueDeclaration.kind !== member.kind) { symbol.valueDeclaration = member; } } } /** * Performs late-binding of a dynamic member. This performs the same function for * late-bound members that `declareSymbol` in binder.ts performs for early-bound * members. * * If a symbol is a dynamic name from a computed property, we perform an additional "late" * binding phase to attempt to resolve the name for the symbol from the type of the computed * property's expression. If the type of the expression is a string-literal, numeric-literal, * or unique symbol type, we can use that type as the name of the symbol. * * For example, given: * * const x = Symbol(); * * interface I { * [x]: number; * } * * The binder gives the property `[x]: number` a special symbol with the name "__computed". * In the late-binding phase we can type-check the expression `x` and see that it has a * unique symbol type which we can then use as the name of the member. This allows users * to define custom symbols that can be used in the members of an object type. * * @param parent The containing symbol for the member. * @param earlySymbols The early-bound symbols of the parent. * @param lateSymbols The late-bound symbols of the parent. * @param decl The member to bind. */ function lateBindMember(parent, earlySymbols, lateSymbols, decl) { ts.Debug.assert(!!decl.symbol, "The member is expected to have a symbol."); var links = getNodeLinks(decl); if (!links.resolvedSymbol) { // In the event we attempt to resolve the late-bound name of this member recursively, // fall back to the early-bound name of this member. links.resolvedSymbol = decl.symbol; var declName = ts.isBinaryExpression(decl) ? decl.left : decl.name; var type = ts.isElementAccessExpression(declName) ? checkExpressionCached(declName.argumentExpression) : checkComputedPropertyName(declName); if (isTypeUsableAsPropertyName(type)) { var memberName = getPropertyNameFromType(type); var symbolFlags = decl.symbol.flags; // Get or add a late-bound symbol for the member. This allows us to merge late-bound accessor declarations. var lateSymbol = lateSymbols.get(memberName); if (!lateSymbol) lateSymbols.set(memberName, lateSymbol = createSymbol(0 /* SymbolFlags.None */, memberName, 4096 /* CheckFlags.Late */)); // Report an error if a late-bound member has the same name as an early-bound member, // or if we have another early-bound symbol declaration with the same name and // conflicting flags. var earlySymbol = earlySymbols && earlySymbols.get(memberName); if (lateSymbol.flags & getExcludedSymbolFlags(symbolFlags) || earlySymbol) { // If we have an existing early-bound member, combine its declarations so that we can // report an error at each declaration. var declarations = earlySymbol ? ts.concatenate(earlySymbol.declarations, lateSymbol.declarations) : lateSymbol.declarations; var name_5 = !(type.flags & 8192 /* TypeFlags.UniqueESSymbol */) && ts.unescapeLeadingUnderscores(memberName) || ts.declarationNameToString(declName); ts.forEach(declarations, function (declaration) { return error(ts.getNameOfDeclaration(declaration) || declaration, ts.Diagnostics.Property_0_was_also_declared_here, name_5); }); error(declName || decl, ts.Diagnostics.Duplicate_property_0, name_5); lateSymbol = createSymbol(0 /* SymbolFlags.None */, memberName, 4096 /* CheckFlags.Late */); } lateSymbol.nameType = type; addDeclarationToLateBoundSymbol(lateSymbol, decl, symbolFlags); if (lateSymbol.parent) { ts.Debug.assert(lateSymbol.parent === parent, "Existing symbol parent should match new one"); } else { lateSymbol.parent = parent; } return links.resolvedSymbol = lateSymbol; } } return links.resolvedSymbol; } function getResolvedMembersOrExportsOfSymbol(symbol, resolutionKind) { var links = getSymbolLinks(symbol); if (!links[resolutionKind]) { var isStatic_1 = resolutionKind === "resolvedExports" /* MembersOrExportsResolutionKind.resolvedExports */; var earlySymbols = !isStatic_1 ? symbol.members : symbol.flags & 1536 /* SymbolFlags.Module */ ? getExportsOfModuleWorker(symbol) : symbol.exports; // In the event we recursively resolve the members/exports of the symbol, we // set the initial value of resolvedMembers/resolvedExports to the early-bound // members/exports of the symbol. links[resolutionKind] = earlySymbols || emptySymbols; // fill in any as-yet-unresolved late-bound members. var lateSymbols = ts.createSymbolTable(); for (var _i = 0, _a = symbol.declarations || ts.emptyArray; _i < _a.length; _i++) { var decl = _a[_i]; var members = ts.getMembersOfDeclaration(decl); if (members) { for (var _b = 0, members_5 = members; _b < members_5.length; _b++) { var member = members_5[_b]; if (isStatic_1 === ts.hasStaticModifier(member) && hasLateBindableName(member)) { lateBindMember(symbol, earlySymbols, lateSymbols, member); } } } } var assignments = symbol.assignmentDeclarationMembers; if (assignments) { var decls = ts.arrayFrom(assignments.values()); for (var _c = 0, decls_1 = decls; _c < decls_1.length; _c++) { var member = decls_1[_c]; var assignmentKind = ts.getAssignmentDeclarationKind(member); var isInstanceMember = assignmentKind === 3 /* AssignmentDeclarationKind.PrototypeProperty */ || ts.isBinaryExpression(member) && isPossiblyAliasedThisProperty(member, assignmentKind) || assignmentKind === 9 /* AssignmentDeclarationKind.ObjectDefinePrototypeProperty */ || assignmentKind === 6 /* AssignmentDeclarationKind.Prototype */; // A straight `Prototype` assignment probably can never have a computed name if (isStatic_1 === !isInstanceMember && hasLateBindableName(member)) { lateBindMember(symbol, earlySymbols, lateSymbols, member); } } } links[resolutionKind] = combineSymbolTables(earlySymbols, lateSymbols) || emptySymbols; } return links[resolutionKind]; } /** * Gets a SymbolTable containing both the early- and late-bound members of a symbol. * * For a description of late-binding, see `lateBindMember`. */ function getMembersOfSymbol(symbol) { return symbol.flags & 6256 /* SymbolFlags.LateBindingContainer */ ? getResolvedMembersOrExportsOfSymbol(symbol, "resolvedMembers" /* MembersOrExportsResolutionKind.resolvedMembers */) : symbol.members || emptySymbols; } /** * If a symbol is the dynamic name of the member of an object type, get the late-bound * symbol of the member. * * For a description of late-binding, see `lateBindMember`. */ function getLateBoundSymbol(symbol) { if (symbol.flags & 106500 /* SymbolFlags.ClassMember */ && symbol.escapedName === "__computed" /* InternalSymbolName.Computed */) { var links = getSymbolLinks(symbol); if (!links.lateSymbol && ts.some(symbol.declarations, hasLateBindableName)) { // force late binding of members/exports. This will set the late-bound symbol var parent = getMergedSymbol(symbol.parent); if (ts.some(symbol.declarations, ts.hasStaticModifier)) { getExportsOfSymbol(parent); } else { getMembersOfSymbol(parent); } } return links.lateSymbol || (links.lateSymbol = symbol); } return symbol; } function getTypeWithThisArgument(type, thisArgument, needApparentType) { if (ts.getObjectFlags(type) & 4 /* ObjectFlags.Reference */) { var target = type.target; var typeArguments = getTypeArguments(type); if (ts.length(target.typeParameters) === ts.length(typeArguments)) { var ref = createTypeReference(target, ts.concatenate(typeArguments, [thisArgument || target.thisType])); return needApparentType ? getApparentType(ref) : ref; } } else if (type.flags & 2097152 /* TypeFlags.Intersection */) { var types = ts.sameMap(type.types, function (t) { return getTypeWithThisArgument(t, thisArgument, needApparentType); }); return types !== type.types ? getIntersectionType(types) : type; } return needApparentType ? getApparentType(type) : type; } function resolveObjectTypeMembers(type, source, typeParameters, typeArguments) { var mapper; var members; var callSignatures; var constructSignatures; var indexInfos; if (ts.rangeEquals(typeParameters, typeArguments, 0, typeParameters.length)) { members = source.symbol ? getMembersOfSymbol(source.symbol) : ts.createSymbolTable(source.declaredProperties); callSignatures = source.declaredCallSignatures; constructSignatures = source.declaredConstructSignatures; indexInfos = source.declaredIndexInfos; } else { mapper = createTypeMapper(typeParameters, typeArguments); members = createInstantiatedSymbolTable(source.declaredProperties, mapper, /*mappingThisOnly*/ typeParameters.length === 1); callSignatures = instantiateSignatures(source.declaredCallSignatures, mapper); constructSignatures = instantiateSignatures(source.declaredConstructSignatures, mapper); indexInfos = instantiateIndexInfos(source.declaredIndexInfos, mapper); } var baseTypes = getBaseTypes(source); if (baseTypes.length) { if (source.symbol && members === getMembersOfSymbol(source.symbol)) { members = ts.createSymbolTable(source.declaredProperties); } setStructuredTypeMembers(type, members, callSignatures, constructSignatures, indexInfos); var thisArgument = ts.lastOrUndefined(typeArguments); for (var _i = 0, baseTypes_1 = baseTypes; _i < baseTypes_1.length; _i++) { var baseType = baseTypes_1[_i]; var instantiatedBaseType = thisArgument ? getTypeWithThisArgument(instantiateType(baseType, mapper), thisArgument) : baseType; addInheritedMembers(members, getPropertiesOfType(instantiatedBaseType)); callSignatures = ts.concatenate(callSignatures, getSignaturesOfType(instantiatedBaseType, 0 /* SignatureKind.Call */)); constructSignatures = ts.concatenate(constructSignatures, getSignaturesOfType(instantiatedBaseType, 1 /* SignatureKind.Construct */)); var inheritedIndexInfos = instantiatedBaseType !== anyType ? getIndexInfosOfType(instantiatedBaseType) : [createIndexInfo(stringType, anyType, /*isReadonly*/ false)]; indexInfos = ts.concatenate(indexInfos, ts.filter(inheritedIndexInfos, function (info) { return !findIndexInfo(indexInfos, info.keyType); })); } } setStructuredTypeMembers(type, members, callSignatures, constructSignatures, indexInfos); } function resolveClassOrInterfaceMembers(type) { resolveObjectTypeMembers(type, resolveDeclaredMembers(type), ts.emptyArray, ts.emptyArray); } function resolveTypeReferenceMembers(type) { var source = resolveDeclaredMembers(type.target); var typeParameters = ts.concatenate(source.typeParameters, [source.thisType]); var typeArguments = getTypeArguments(type); var paddedTypeArguments = typeArguments.length === typeParameters.length ? typeArguments : ts.concatenate(typeArguments, [type]); resolveObjectTypeMembers(type, source, typeParameters, paddedTypeArguments); } function createSignature(declaration, typeParameters, thisParameter, parameters, resolvedReturnType, resolvedTypePredicate, minArgumentCount, flags) { var sig = new Signature(checker, flags); sig.declaration = declaration; sig.typeParameters = typeParameters; sig.parameters = parameters; sig.thisParameter = thisParameter; sig.resolvedReturnType = resolvedReturnType; sig.resolvedTypePredicate = resolvedTypePredicate; sig.minArgumentCount = minArgumentCount; sig.resolvedMinArgumentCount = undefined; sig.target = undefined; sig.mapper = undefined; sig.compositeSignatures = undefined; sig.compositeKind = undefined; return sig; } function cloneSignature(sig) { var result = createSignature(sig.declaration, sig.typeParameters, sig.thisParameter, sig.parameters, /*resolvedReturnType*/ undefined, /*resolvedTypePredicate*/ undefined, sig.minArgumentCount, sig.flags & 39 /* SignatureFlags.PropagatingFlags */); result.target = sig.target; result.mapper = sig.mapper; result.compositeSignatures = sig.compositeSignatures; result.compositeKind = sig.compositeKind; return result; } function createUnionSignature(signature, unionSignatures) { var result = cloneSignature(signature); result.compositeSignatures = unionSignatures; result.compositeKind = 1048576 /* TypeFlags.Union */; result.target = undefined; result.mapper = undefined; return result; } function getOptionalCallSignature(signature, callChainFlags) { if ((signature.flags & 24 /* SignatureFlags.CallChainFlags */) === callChainFlags) { return signature; } if (!signature.optionalCallSignatureCache) { signature.optionalCallSignatureCache = {}; } var key = callChainFlags === 8 /* SignatureFlags.IsInnerCallChain */ ? "inner" : "outer"; return signature.optionalCallSignatureCache[key] || (signature.optionalCallSignatureCache[key] = createOptionalCallSignature(signature, callChainFlags)); } function createOptionalCallSignature(signature, callChainFlags) { ts.Debug.assert(callChainFlags === 8 /* SignatureFlags.IsInnerCallChain */ || callChainFlags === 16 /* SignatureFlags.IsOuterCallChain */, "An optional call signature can either be for an inner call chain or an outer call chain, but not both."); var result = cloneSignature(signature); result.flags |= callChainFlags; return result; } function getExpandedParameters(sig, skipUnionExpanding) { if (signatureHasRestParameter(sig)) { var restIndex_1 = sig.parameters.length - 1; var restType = getTypeOfSymbol(sig.parameters[restIndex_1]); if (isTupleType(restType)) { return [expandSignatureParametersWithTupleMembers(restType, restIndex_1)]; } else if (!skipUnionExpanding && restType.flags & 1048576 /* TypeFlags.Union */ && ts.every(restType.types, isTupleType)) { return ts.map(restType.types, function (t) { return expandSignatureParametersWithTupleMembers(t, restIndex_1); }); } } return [sig.parameters]; function expandSignatureParametersWithTupleMembers(restType, restIndex) { var elementTypes = getTypeArguments(restType); var associatedNames = restType.target.labeledElementDeclarations; var restParams = ts.map(elementTypes, function (t, i) { // Lookup the label from the individual tuple passed in before falling back to the signature `rest` parameter name var tupleLabelName = !!associatedNames && getTupleElementLabel(associatedNames[i]); var name = tupleLabelName || getParameterNameAtPosition(sig, restIndex + i, restType); var flags = restType.target.elementFlags[i]; var checkFlags = flags & 12 /* ElementFlags.Variable */ ? 32768 /* CheckFlags.RestParameter */ : flags & 2 /* ElementFlags.Optional */ ? 16384 /* CheckFlags.OptionalParameter */ : 0; var symbol = createSymbol(1 /* SymbolFlags.FunctionScopedVariable */, name, checkFlags); symbol.type = flags & 4 /* ElementFlags.Rest */ ? createArrayType(t) : t; return symbol; }); return ts.concatenate(sig.parameters.slice(0, restIndex), restParams); } } function getDefaultConstructSignatures(classType) { var baseConstructorType = getBaseConstructorTypeOfClass(classType); var baseSignatures = getSignaturesOfType(baseConstructorType, 1 /* SignatureKind.Construct */); var declaration = ts.getClassLikeDeclarationOfSymbol(classType.symbol); var isAbstract = !!declaration && ts.hasSyntacticModifier(declaration, 128 /* ModifierFlags.Abstract */); if (baseSignatures.length === 0) { return [createSignature(undefined, classType.localTypeParameters, undefined, ts.emptyArray, classType, /*resolvedTypePredicate*/ undefined, 0, isAbstract ? 4 /* SignatureFlags.Abstract */ : 0 /* SignatureFlags.None */)]; } var baseTypeNode = getBaseTypeNodeOfClass(classType); var isJavaScript = ts.isInJSFile(baseTypeNode); var typeArguments = typeArgumentsFromTypeReferenceNode(baseTypeNode); var typeArgCount = ts.length(typeArguments); var result = []; for (var _i = 0, baseSignatures_1 = baseSignatures; _i < baseSignatures_1.length; _i++) { var baseSig = baseSignatures_1[_i]; var minTypeArgumentCount = getMinTypeArgumentCount(baseSig.typeParameters); var typeParamCount = ts.length(baseSig.typeParameters); if (isJavaScript || typeArgCount >= minTypeArgumentCount && typeArgCount <= typeParamCount) { var sig = typeParamCount ? createSignatureInstantiation(baseSig, fillMissingTypeArguments(typeArguments, baseSig.typeParameters, minTypeArgumentCount, isJavaScript)) : cloneSignature(baseSig); sig.typeParameters = classType.localTypeParameters; sig.resolvedReturnType = classType; sig.flags = isAbstract ? sig.flags | 4 /* SignatureFlags.Abstract */ : sig.flags & ~4 /* SignatureFlags.Abstract */; result.push(sig); } } return result; } function findMatchingSignature(signatureList, signature, partialMatch, ignoreThisTypes, ignoreReturnTypes) { for (var _i = 0, signatureList_1 = signatureList; _i < signatureList_1.length; _i++) { var s = signatureList_1[_i]; if (compareSignaturesIdentical(s, signature, partialMatch, ignoreThisTypes, ignoreReturnTypes, partialMatch ? compareTypesSubtypeOf : compareTypesIdentical)) { return s; } } } function findMatchingSignatures(signatureLists, signature, listIndex) { if (signature.typeParameters) { // We require an exact match for generic signatures, so we only return signatures from the first // signature list and only if they have exact matches in the other signature lists. if (listIndex > 0) { return undefined; } for (var i = 1; i < signatureLists.length; i++) { if (!findMatchingSignature(signatureLists[i], signature, /*partialMatch*/ false, /*ignoreThisTypes*/ false, /*ignoreReturnTypes*/ false)) { return undefined; } } return [signature]; } var result; for (var i = 0; i < signatureLists.length; i++) { // Allow matching non-generic signatures to have excess parameters and different return types. // Prefer matching this types if possible. var match = i === listIndex ? signature : findMatchingSignature(signatureLists[i], signature, /*partialMatch*/ true, /*ignoreThisTypes*/ false, /*ignoreReturnTypes*/ true); if (!match) { return undefined; } result = ts.appendIfUnique(result, match); } return result; } // The signatures of a union type are those signatures that are present in each of the constituent types. // Generic signatures must match exactly, but non-generic signatures are allowed to have extra optional // parameters and may differ in return types. When signatures differ in return types, the resulting return // type is the union of the constituent return types. function getUnionSignatures(signatureLists) { var result; var indexWithLengthOverOne; for (var i = 0; i < signatureLists.length; i++) { if (signatureLists[i].length === 0) return ts.emptyArray; if (signatureLists[i].length > 1) { indexWithLengthOverOne = indexWithLengthOverOne === undefined ? i : -1; // -1 is a signal there are multiple overload sets } for (var _i = 0, _a = signatureLists[i]; _i < _a.length; _i++) { var signature = _a[_i]; // Only process signatures with parameter lists that aren't already in the result list if (!result || !findMatchingSignature(result, signature, /*partialMatch*/ false, /*ignoreThisTypes*/ false, /*ignoreReturnTypes*/ true)) { var unionSignatures = findMatchingSignatures(signatureLists, signature, i); if (unionSignatures) { var s = signature; // Union the result types when more than one signature matches if (unionSignatures.length > 1) { var thisParameter = signature.thisParameter; var firstThisParameterOfUnionSignatures = ts.forEach(unionSignatures, function (sig) { return sig.thisParameter; }); if (firstThisParameterOfUnionSignatures) { var thisType = getIntersectionType(ts.mapDefined(unionSignatures, function (sig) { return sig.thisParameter && getTypeOfSymbol(sig.thisParameter); })); thisParameter = createSymbolWithType(firstThisParameterOfUnionSignatures, thisType); } s = createUnionSignature(signature, unionSignatures); s.thisParameter = thisParameter; } (result || (result = [])).push(s); } } } } if (!ts.length(result) && indexWithLengthOverOne !== -1) { // No sufficiently similar signature existed to subsume all the other signatures in the union - time to see if we can make a single // signature that handles all over them. We only do this when there are overloads in only one constituent. // (Overloads are conditional in nature and having overloads in multiple constituents would necessitate making a power set of // signatures from the type, whose ordering would be non-obvious) var masterList = signatureLists[indexWithLengthOverOne !== undefined ? indexWithLengthOverOne : 0]; var results = masterList.slice(); var _loop_10 = function (signatures) { if (signatures !== masterList) { var signature_1 = signatures[0]; ts.Debug.assert(!!signature_1, "getUnionSignatures bails early on empty signature lists and should not have empty lists on second pass"); results = !!signature_1.typeParameters && ts.some(results, function (s) { return !!s.typeParameters && !compareTypeParametersIdentical(signature_1.typeParameters, s.typeParameters); }) ? undefined : ts.map(results, function (sig) { return combineSignaturesOfUnionMembers(sig, signature_1); }); if (!results) { return "break"; } } }; for (var _b = 0, signatureLists_1 = signatureLists; _b < signatureLists_1.length; _b++) { var signatures = signatureLists_1[_b]; var state_3 = _loop_10(signatures); if (state_3 === "break") break; } result = results; } return result || ts.emptyArray; } function compareTypeParametersIdentical(sourceParams, targetParams) { if (ts.length(sourceParams) !== ts.length(targetParams)) { return false; } if (!sourceParams || !targetParams) { return true; } var mapper = createTypeMapper(targetParams, sourceParams); for (var i = 0; i < sourceParams.length; i++) { var source = sourceParams[i]; var target = targetParams[i]; if (source === target) continue; // We instantiate the target type parameter constraints into the source types so we can recognize `` as the same as `` if (!isTypeIdenticalTo(getConstraintFromTypeParameter(source) || unknownType, instantiateType(getConstraintFromTypeParameter(target) || unknownType, mapper))) return false; // We don't compare defaults - we just use the type parameter defaults from the first signature that seems to match. // It might make sense to combine these defaults in the future, but doing so intelligently requires knowing // if the parameter is used covariantly or contravariantly (so we intersect if it's used like a parameter or union if used like a return type) // and, since it's just an inference _default_, just picking one arbitrarily works OK. } return true; } function combineUnionThisParam(left, right, mapper) { if (!left || !right) { return left || right; } // A signature `this` type might be a read or a write position... It's very possible that it should be invariant // and we should refuse to merge signatures if there are `this` types and they do not match. However, so as to be // permissive when calling, for now, we'll intersect the `this` types just like we do for param types in union signatures. var thisType = getIntersectionType([getTypeOfSymbol(left), instantiateType(getTypeOfSymbol(right), mapper)]); return createSymbolWithType(left, thisType); } function combineUnionParameters(left, right, mapper) { var leftCount = getParameterCount(left); var rightCount = getParameterCount(right); var longest = leftCount >= rightCount ? left : right; var shorter = longest === left ? right : left; var longestCount = longest === left ? leftCount : rightCount; var eitherHasEffectiveRest = (hasEffectiveRestParameter(left) || hasEffectiveRestParameter(right)); var needsExtraRestElement = eitherHasEffectiveRest && !hasEffectiveRestParameter(longest); var params = new Array(longestCount + (needsExtraRestElement ? 1 : 0)); for (var i = 0; i < longestCount; i++) { var longestParamType = tryGetTypeAtPosition(longest, i); if (longest === right) { longestParamType = instantiateType(longestParamType, mapper); } var shorterParamType = tryGetTypeAtPosition(shorter, i) || unknownType; if (shorter === right) { shorterParamType = instantiateType(shorterParamType, mapper); } var unionParamType = getIntersectionType([longestParamType, shorterParamType]); var isRestParam = eitherHasEffectiveRest && !needsExtraRestElement && i === (longestCount - 1); var isOptional = i >= getMinArgumentCount(longest) && i >= getMinArgumentCount(shorter); var leftName = i >= leftCount ? undefined : getParameterNameAtPosition(left, i); var rightName = i >= rightCount ? undefined : getParameterNameAtPosition(right, i); var paramName = leftName === rightName ? leftName : !leftName ? rightName : !rightName ? leftName : undefined; var paramSymbol = createSymbol(1 /* SymbolFlags.FunctionScopedVariable */ | (isOptional && !isRestParam ? 16777216 /* SymbolFlags.Optional */ : 0), paramName || "arg".concat(i)); paramSymbol.type = isRestParam ? createArrayType(unionParamType) : unionParamType; params[i] = paramSymbol; } if (needsExtraRestElement) { var restParamSymbol = createSymbol(1 /* SymbolFlags.FunctionScopedVariable */, "args"); restParamSymbol.type = createArrayType(getTypeAtPosition(shorter, longestCount)); if (shorter === right) { restParamSymbol.type = instantiateType(restParamSymbol.type, mapper); } params[longestCount] = restParamSymbol; } return params; } function combineSignaturesOfUnionMembers(left, right) { var typeParams = left.typeParameters || right.typeParameters; var paramMapper; if (left.typeParameters && right.typeParameters) { paramMapper = createTypeMapper(right.typeParameters, left.typeParameters); // We just use the type parameter defaults from the first signature } var declaration = left.declaration; var params = combineUnionParameters(left, right, paramMapper); var thisParam = combineUnionThisParam(left.thisParameter, right.thisParameter, paramMapper); var minArgCount = Math.max(left.minArgumentCount, right.minArgumentCount); var result = createSignature(declaration, typeParams, thisParam, params, /*resolvedReturnType*/ undefined, /*resolvedTypePredicate*/ undefined, minArgCount, (left.flags | right.flags) & 39 /* SignatureFlags.PropagatingFlags */); result.compositeKind = 1048576 /* TypeFlags.Union */; result.compositeSignatures = ts.concatenate(left.compositeKind !== 2097152 /* TypeFlags.Intersection */ && left.compositeSignatures || [left], [right]); if (paramMapper) { result.mapper = left.compositeKind !== 2097152 /* TypeFlags.Intersection */ && left.mapper && left.compositeSignatures ? combineTypeMappers(left.mapper, paramMapper) : paramMapper; } return result; } function getUnionIndexInfos(types) { var sourceInfos = getIndexInfosOfType(types[0]); if (sourceInfos) { var result = []; var _loop_11 = function (info) { var indexType = info.keyType; if (ts.every(types, function (t) { return !!getIndexInfoOfType(t, indexType); })) { result.push(createIndexInfo(indexType, getUnionType(ts.map(types, function (t) { return getIndexTypeOfType(t, indexType); })), ts.some(types, function (t) { return getIndexInfoOfType(t, indexType).isReadonly; }))); } }; for (var _i = 0, sourceInfos_1 = sourceInfos; _i < sourceInfos_1.length; _i++) { var info = sourceInfos_1[_i]; _loop_11(info); } return result; } return ts.emptyArray; } function resolveUnionTypeMembers(type) { // The members and properties collections are empty for union types. To get all properties of a union // type use getPropertiesOfType (only the language service uses this). var callSignatures = getUnionSignatures(ts.map(type.types, function (t) { return t === globalFunctionType ? [unknownSignature] : getSignaturesOfType(t, 0 /* SignatureKind.Call */); })); var constructSignatures = getUnionSignatures(ts.map(type.types, function (t) { return getSignaturesOfType(t, 1 /* SignatureKind.Construct */); })); var indexInfos = getUnionIndexInfos(type.types); setStructuredTypeMembers(type, emptySymbols, callSignatures, constructSignatures, indexInfos); } function intersectTypes(type1, type2) { return !type1 ? type2 : !type2 ? type1 : getIntersectionType([type1, type2]); } function findMixins(types) { var constructorTypeCount = ts.countWhere(types, function (t) { return getSignaturesOfType(t, 1 /* SignatureKind.Construct */).length > 0; }); var mixinFlags = ts.map(types, isMixinConstructorType); if (constructorTypeCount > 0 && constructorTypeCount === ts.countWhere(mixinFlags, function (b) { return b; })) { var firstMixinIndex = mixinFlags.indexOf(/*searchElement*/ true); mixinFlags[firstMixinIndex] = false; } return mixinFlags; } function includeMixinType(type, types, mixinFlags, index) { var mixedTypes = []; for (var i = 0; i < types.length; i++) { if (i === index) { mixedTypes.push(type); } else if (mixinFlags[i]) { mixedTypes.push(getReturnTypeOfSignature(getSignaturesOfType(types[i], 1 /* SignatureKind.Construct */)[0])); } } return getIntersectionType(mixedTypes); } function resolveIntersectionTypeMembers(type) { // The members and properties collections are empty for intersection types. To get all properties of an // intersection type use getPropertiesOfType (only the language service uses this). var callSignatures; var constructSignatures; var indexInfos; var types = type.types; var mixinFlags = findMixins(types); var mixinCount = ts.countWhere(mixinFlags, function (b) { return b; }); var _loop_12 = function (i) { var t = type.types[i]; // When an intersection type contains mixin constructor types, the construct signatures from // those types are discarded and their return types are mixed into the return types of all // other construct signatures in the intersection type. For example, the intersection type // '{ new(...args: any[]) => A } & { new(s: string) => B }' has a single construct signature // 'new(s: string) => A & B'. if (!mixinFlags[i]) { var signatures = getSignaturesOfType(t, 1 /* SignatureKind.Construct */); if (signatures.length && mixinCount > 0) { signatures = ts.map(signatures, function (s) { var clone = cloneSignature(s); clone.resolvedReturnType = includeMixinType(getReturnTypeOfSignature(s), types, mixinFlags, i); return clone; }); } constructSignatures = appendSignatures(constructSignatures, signatures); } callSignatures = appendSignatures(callSignatures, getSignaturesOfType(t, 0 /* SignatureKind.Call */)); indexInfos = ts.reduceLeft(getIndexInfosOfType(t), function (infos, newInfo) { return appendIndexInfo(infos, newInfo, /*union*/ false); }, indexInfos); }; for (var i = 0; i < types.length; i++) { _loop_12(i); } setStructuredTypeMembers(type, emptySymbols, callSignatures || ts.emptyArray, constructSignatures || ts.emptyArray, indexInfos || ts.emptyArray); } function appendSignatures(signatures, newSignatures) { var _loop_13 = function (sig) { if (!signatures || ts.every(signatures, function (s) { return !compareSignaturesIdentical(s, sig, /*partialMatch*/ false, /*ignoreThisTypes*/ false, /*ignoreReturnTypes*/ false, compareTypesIdentical); })) { signatures = ts.append(signatures, sig); } }; for (var _i = 0, newSignatures_1 = newSignatures; _i < newSignatures_1.length; _i++) { var sig = newSignatures_1[_i]; _loop_13(sig); } return signatures; } function appendIndexInfo(indexInfos, newInfo, union) { if (indexInfos) { for (var i = 0; i < indexInfos.length; i++) { var info = indexInfos[i]; if (info.keyType === newInfo.keyType) { indexInfos[i] = createIndexInfo(info.keyType, union ? getUnionType([info.type, newInfo.type]) : getIntersectionType([info.type, newInfo.type]), union ? info.isReadonly || newInfo.isReadonly : info.isReadonly && newInfo.isReadonly); return indexInfos; } } } return ts.append(indexInfos, newInfo); } /** * Converts an AnonymousType to a ResolvedType. */ function resolveAnonymousTypeMembers(type) { if (type.target) { setStructuredTypeMembers(type, emptySymbols, ts.emptyArray, ts.emptyArray, ts.emptyArray); var members_6 = createInstantiatedSymbolTable(getPropertiesOfObjectType(type.target), type.mapper, /*mappingThisOnly*/ false); var callSignatures = instantiateSignatures(getSignaturesOfType(type.target, 0 /* SignatureKind.Call */), type.mapper); var constructSignatures = instantiateSignatures(getSignaturesOfType(type.target, 1 /* SignatureKind.Construct */), type.mapper); var indexInfos_1 = instantiateIndexInfos(getIndexInfosOfType(type.target), type.mapper); setStructuredTypeMembers(type, members_6, callSignatures, constructSignatures, indexInfos_1); return; } var symbol = getMergedSymbol(type.symbol); if (symbol.flags & 2048 /* SymbolFlags.TypeLiteral */) { setStructuredTypeMembers(type, emptySymbols, ts.emptyArray, ts.emptyArray, ts.emptyArray); var members_7 = getMembersOfSymbol(symbol); var callSignatures = getSignaturesOfSymbol(members_7.get("__call" /* InternalSymbolName.Call */)); var constructSignatures = getSignaturesOfSymbol(members_7.get("__new" /* InternalSymbolName.New */)); var indexInfos_2 = getIndexInfosOfSymbol(symbol); setStructuredTypeMembers(type, members_7, callSignatures, constructSignatures, indexInfos_2); return; } // Combinations of function, class, enum and module var members = emptySymbols; var indexInfos; if (symbol.exports) { members = getExportsOfSymbol(symbol); if (symbol === globalThisSymbol) { var varsOnly_1 = new ts.Map(); members.forEach(function (p) { var _a; if (!(p.flags & 418 /* SymbolFlags.BlockScoped */) && !(p.flags & 512 /* SymbolFlags.ValueModule */ && ((_a = p.declarations) === null || _a === void 0 ? void 0 : _a.length) && ts.every(p.declarations, ts.isAmbientModule))) { varsOnly_1.set(p.escapedName, p); } }); members = varsOnly_1; } } var baseConstructorIndexInfo; setStructuredTypeMembers(type, members, ts.emptyArray, ts.emptyArray, ts.emptyArray); if (symbol.flags & 32 /* SymbolFlags.Class */) { var classType = getDeclaredTypeOfClassOrInterface(symbol); var baseConstructorType = getBaseConstructorTypeOfClass(classType); if (baseConstructorType.flags & (524288 /* TypeFlags.Object */ | 2097152 /* TypeFlags.Intersection */ | 8650752 /* TypeFlags.TypeVariable */)) { members = ts.createSymbolTable(getNamedOrIndexSignatureMembers(members)); addInheritedMembers(members, getPropertiesOfType(baseConstructorType)); } else if (baseConstructorType === anyType) { baseConstructorIndexInfo = createIndexInfo(stringType, anyType, /*isReadonly*/ false); } } var indexSymbol = getIndexSymbolFromSymbolTable(members); if (indexSymbol) { indexInfos = getIndexInfosOfIndexSymbol(indexSymbol); } else { if (baseConstructorIndexInfo) { indexInfos = ts.append(indexInfos, baseConstructorIndexInfo); } if (symbol.flags & 384 /* SymbolFlags.Enum */ && (getDeclaredTypeOfSymbol(symbol).flags & 32 /* TypeFlags.Enum */ || ts.some(type.properties, function (prop) { return !!(getTypeOfSymbol(prop).flags & 296 /* TypeFlags.NumberLike */); }))) { indexInfos = ts.append(indexInfos, enumNumberIndexInfo); } } setStructuredTypeMembers(type, members, ts.emptyArray, ts.emptyArray, indexInfos || ts.emptyArray); // We resolve the members before computing the signatures because a signature may use // typeof with a qualified name expression that circularly references the type we are // in the process of resolving (see issue #6072). The temporarily empty signature list // will never be observed because a qualified name can't reference signatures. if (symbol.flags & (16 /* SymbolFlags.Function */ | 8192 /* SymbolFlags.Method */)) { type.callSignatures = getSignaturesOfSymbol(symbol); } // And likewise for construct signatures for classes if (symbol.flags & 32 /* SymbolFlags.Class */) { var classType_1 = getDeclaredTypeOfClassOrInterface(symbol); var constructSignatures = symbol.members ? getSignaturesOfSymbol(symbol.members.get("__constructor" /* InternalSymbolName.Constructor */)) : ts.emptyArray; if (symbol.flags & 16 /* SymbolFlags.Function */) { constructSignatures = ts.addRange(constructSignatures.slice(), ts.mapDefined(type.callSignatures, function (sig) { return isJSConstructor(sig.declaration) ? createSignature(sig.declaration, sig.typeParameters, sig.thisParameter, sig.parameters, classType_1, /*resolvedTypePredicate*/ undefined, sig.minArgumentCount, sig.flags & 39 /* SignatureFlags.PropagatingFlags */) : undefined; })); } if (!constructSignatures.length) { constructSignatures = getDefaultConstructSignatures(classType_1); } type.constructSignatures = constructSignatures; } } function replaceIndexedAccess(instantiable, type, replacement) { // map type.indexType to 0 // map type.objectType to `[TReplacement]` // thus making the indexed access `[TReplacement][0]` or `TReplacement` return instantiateType(instantiable, createTypeMapper([type.indexType, type.objectType], [getNumberLiteralType(0), createTupleType([replacement])])); } function resolveReverseMappedTypeMembers(type) { var indexInfo = getIndexInfoOfType(type.source, stringType); var modifiers = getMappedTypeModifiers(type.mappedType); var readonlyMask = modifiers & 1 /* MappedTypeModifiers.IncludeReadonly */ ? false : true; var optionalMask = modifiers & 4 /* MappedTypeModifiers.IncludeOptional */ ? 0 : 16777216 /* SymbolFlags.Optional */; var indexInfos = indexInfo ? [createIndexInfo(stringType, inferReverseMappedType(indexInfo.type, type.mappedType, type.constraintType), readonlyMask && indexInfo.isReadonly)] : ts.emptyArray; var members = ts.createSymbolTable(); for (var _i = 0, _a = getPropertiesOfType(type.source); _i < _a.length; _i++) { var prop = _a[_i]; var checkFlags = 8192 /* CheckFlags.ReverseMapped */ | (readonlyMask && isReadonlySymbol(prop) ? 8 /* CheckFlags.Readonly */ : 0); var inferredProp = createSymbol(4 /* SymbolFlags.Property */ | prop.flags & optionalMask, prop.escapedName, checkFlags); inferredProp.declarations = prop.declarations; inferredProp.nameType = getSymbolLinks(prop).nameType; inferredProp.propertyType = getTypeOfSymbol(prop); if (type.constraintType.type.flags & 8388608 /* TypeFlags.IndexedAccess */ && type.constraintType.type.objectType.flags & 262144 /* TypeFlags.TypeParameter */ && type.constraintType.type.indexType.flags & 262144 /* TypeFlags.TypeParameter */) { // A reverse mapping of `{[K in keyof T[K_1]]: T[K_1]}` is the same as that of `{[K in keyof T]: T}`, since all we care about is // inferring to the "type parameter" (or indexed access) shared by the constraint and template. So, to reduce the number of // type identities produced, we simplify such indexed access occurences var newTypeParam = type.constraintType.type.objectType; var newMappedType = replaceIndexedAccess(type.mappedType, type.constraintType.type, newTypeParam); inferredProp.mappedType = newMappedType; inferredProp.constraintType = getIndexType(newTypeParam); } else { inferredProp.mappedType = type.mappedType; inferredProp.constraintType = type.constraintType; } members.set(prop.escapedName, inferredProp); } setStructuredTypeMembers(type, members, ts.emptyArray, ts.emptyArray, indexInfos); } // Return the lower bound of the key type in a mapped type. Intuitively, the lower // bound includes those keys that are known to always be present, for example because // because of constraints on type parameters (e.g. 'keyof T' for a constrained T). function getLowerBoundOfKeyType(type) { if (type.flags & 4194304 /* TypeFlags.Index */) { var t = getApparentType(type.type); return isGenericTupleType(t) ? getKnownKeysOfTupleType(t) : getIndexType(t); } if (type.flags & 16777216 /* TypeFlags.Conditional */) { if (type.root.isDistributive) { var checkType = type.checkType; var constraint = getLowerBoundOfKeyType(checkType); if (constraint !== checkType) { return getConditionalTypeInstantiation(type, prependTypeMapping(type.root.checkType, constraint, type.mapper)); } } return type; } if (type.flags & 1048576 /* TypeFlags.Union */) { return mapType(type, getLowerBoundOfKeyType); } if (type.flags & 2097152 /* TypeFlags.Intersection */) { return getIntersectionType(ts.sameMap(type.types, getLowerBoundOfKeyType)); } return type; } function getIsLateCheckFlag(s) { return ts.getCheckFlags(s) & 4096 /* CheckFlags.Late */; } function forEachMappedTypePropertyKeyTypeAndIndexSignatureKeyType(type, include, stringsOnly, cb) { for (var _i = 0, _a = getPropertiesOfType(type); _i < _a.length; _i++) { var prop = _a[_i]; cb(getLiteralTypeFromProperty(prop, include)); } if (type.flags & 1 /* TypeFlags.Any */) { cb(stringType); } else { for (var _b = 0, _c = getIndexInfosOfType(type); _b < _c.length; _b++) { var info = _c[_b]; if (!stringsOnly || info.keyType.flags & (4 /* TypeFlags.String */ | 134217728 /* TypeFlags.TemplateLiteral */)) { cb(info.keyType); } } } } /** Resolve the members of a mapped type { [P in K]: T } */ function resolveMappedTypeMembers(type) { var members = ts.createSymbolTable(); var indexInfos; // Resolve upfront such that recursive references see an empty object type. setStructuredTypeMembers(type, emptySymbols, ts.emptyArray, ts.emptyArray, ts.emptyArray); // In { [P in K]: T }, we refer to P as the type parameter type, K as the constraint type, // and T as the template type. var typeParameter = getTypeParameterFromMappedType(type); var constraintType = getConstraintTypeFromMappedType(type); var nameType = getNameTypeFromMappedType(type.target || type); var templateType = getTemplateTypeFromMappedType(type.target || type); var modifiersType = getApparentType(getModifiersTypeFromMappedType(type)); // The 'T' in 'keyof T' var templateModifiers = getMappedTypeModifiers(type); var include = keyofStringsOnly ? 128 /* TypeFlags.StringLiteral */ : 8576 /* TypeFlags.StringOrNumberLiteralOrUnique */; if (isMappedTypeWithKeyofConstraintDeclaration(type)) { // We have a { [P in keyof T]: X } forEachMappedTypePropertyKeyTypeAndIndexSignatureKeyType(modifiersType, include, keyofStringsOnly, addMemberForKeyType); } else { forEachType(getLowerBoundOfKeyType(constraintType), addMemberForKeyType); } setStructuredTypeMembers(type, members, ts.emptyArray, ts.emptyArray, indexInfos || ts.emptyArray); function addMemberForKeyType(keyType) { var propNameType = nameType ? instantiateType(nameType, appendTypeMapping(type.mapper, typeParameter, keyType)) : keyType; forEachType(propNameType, function (t) { return addMemberForKeyTypeWorker(keyType, t); }); } function addMemberForKeyTypeWorker(keyType, propNameType) { // If the current iteration type constituent is a string literal type, create a property. // Otherwise, for type string create a string index signature. if (isTypeUsableAsPropertyName(propNameType)) { var propName = getPropertyNameFromType(propNameType); // String enum members from separate enums with identical values // are distinct types with the same property name. Make the resulting // property symbol's name type be the union of those enum member types. var existingProp = members.get(propName); if (existingProp) { existingProp.nameType = getUnionType([existingProp.nameType, propNameType]); existingProp.keyType = getUnionType([existingProp.keyType, keyType]); } else { var modifiersProp = isTypeUsableAsPropertyName(keyType) ? getPropertyOfType(modifiersType, getPropertyNameFromType(keyType)) : undefined; var isOptional = !!(templateModifiers & 4 /* MappedTypeModifiers.IncludeOptional */ || !(templateModifiers & 8 /* MappedTypeModifiers.ExcludeOptional */) && modifiersProp && modifiersProp.flags & 16777216 /* SymbolFlags.Optional */); var isReadonly = !!(templateModifiers & 1 /* MappedTypeModifiers.IncludeReadonly */ || !(templateModifiers & 2 /* MappedTypeModifiers.ExcludeReadonly */) && modifiersProp && isReadonlySymbol(modifiersProp)); var stripOptional = strictNullChecks && !isOptional && modifiersProp && modifiersProp.flags & 16777216 /* SymbolFlags.Optional */; var lateFlag = modifiersProp ? getIsLateCheckFlag(modifiersProp) : 0; var prop = createSymbol(4 /* SymbolFlags.Property */ | (isOptional ? 16777216 /* SymbolFlags.Optional */ : 0), propName, lateFlag | 262144 /* CheckFlags.Mapped */ | (isReadonly ? 8 /* CheckFlags.Readonly */ : 0) | (stripOptional ? 524288 /* CheckFlags.StripOptional */ : 0)); prop.mappedType = type; prop.nameType = propNameType; prop.keyType = keyType; if (modifiersProp) { prop.syntheticOrigin = modifiersProp; // If the mapped type has an `as XXX` clause, the property name likely won't match the declaration name and // multiple properties may map to the same name. Thus, we attach no declarations to the symbol. prop.declarations = nameType ? undefined : modifiersProp.declarations; } members.set(propName, prop); } } else if (isValidIndexKeyType(propNameType) || propNameType.flags & (1 /* TypeFlags.Any */ | 32 /* TypeFlags.Enum */)) { var indexKeyType = propNameType.flags & (1 /* TypeFlags.Any */ | 4 /* TypeFlags.String */) ? stringType : propNameType.flags & (8 /* TypeFlags.Number */ | 32 /* TypeFlags.Enum */) ? numberType : propNameType; var propType = instantiateType(templateType, appendTypeMapping(type.mapper, typeParameter, keyType)); var indexInfo = createIndexInfo(indexKeyType, propType, !!(templateModifiers & 1 /* MappedTypeModifiers.IncludeReadonly */)); indexInfos = appendIndexInfo(indexInfos, indexInfo, /*union*/ true); } } } function getTypeOfMappedSymbol(symbol) { if (!symbol.type) { var mappedType = symbol.mappedType; if (!pushTypeResolution(symbol, 0 /* TypeSystemPropertyName.Type */)) { mappedType.containsError = true; return errorType; } var templateType = getTemplateTypeFromMappedType(mappedType.target || mappedType); var mapper = appendTypeMapping(mappedType.mapper, getTypeParameterFromMappedType(mappedType), symbol.keyType); var propType = instantiateType(templateType, mapper); // When creating an optional property in strictNullChecks mode, if 'undefined' isn't assignable to the // type, we include 'undefined' in the type. Similarly, when creating a non-optional property in strictNullChecks // mode, if the underlying property is optional we remove 'undefined' from the type. var type = strictNullChecks && symbol.flags & 16777216 /* SymbolFlags.Optional */ && !maybeTypeOfKind(propType, 32768 /* TypeFlags.Undefined */ | 16384 /* TypeFlags.Void */) ? getOptionalType(propType, /*isProperty*/ true) : symbol.checkFlags & 524288 /* CheckFlags.StripOptional */ ? removeMissingOrUndefinedType(propType) : propType; if (!popTypeResolution()) { error(currentNode, ts.Diagnostics.Type_of_property_0_circularly_references_itself_in_mapped_type_1, symbolToString(symbol), typeToString(mappedType)); type = errorType; } symbol.type = type; } return symbol.type; } function getTypeParameterFromMappedType(type) { return type.typeParameter || (type.typeParameter = getDeclaredTypeOfTypeParameter(getSymbolOfNode(type.declaration.typeParameter))); } function getConstraintTypeFromMappedType(type) { return type.constraintType || (type.constraintType = getConstraintOfTypeParameter(getTypeParameterFromMappedType(type)) || errorType); } function getNameTypeFromMappedType(type) { return type.declaration.nameType ? type.nameType || (type.nameType = instantiateType(getTypeFromTypeNode(type.declaration.nameType), type.mapper)) : undefined; } function getTemplateTypeFromMappedType(type) { return type.templateType || (type.templateType = type.declaration.type ? instantiateType(addOptionality(getTypeFromTypeNode(type.declaration.type), /*isProperty*/ true, !!(getMappedTypeModifiers(type) & 4 /* MappedTypeModifiers.IncludeOptional */)), type.mapper) : errorType); } function getConstraintDeclarationForMappedType(type) { return ts.getEffectiveConstraintOfTypeParameter(type.declaration.typeParameter); } function isMappedTypeWithKeyofConstraintDeclaration(type) { var constraintDeclaration = getConstraintDeclarationForMappedType(type); // TODO: GH#18217 return constraintDeclaration.kind === 193 /* SyntaxKind.TypeOperator */ && constraintDeclaration.operator === 140 /* SyntaxKind.KeyOfKeyword */; } function getModifiersTypeFromMappedType(type) { if (!type.modifiersType) { if (isMappedTypeWithKeyofConstraintDeclaration(type)) { // If the constraint declaration is a 'keyof T' node, the modifiers type is T. We check // AST nodes here because, when T is a non-generic type, the logic below eagerly resolves // 'keyof T' to a literal union type and we can't recover T from that type. type.modifiersType = instantiateType(getTypeFromTypeNode(getConstraintDeclarationForMappedType(type).type), type.mapper); } else { // Otherwise, get the declared constraint type, and if the constraint type is a type parameter, // get the constraint of that type parameter. If the resulting type is an indexed type 'keyof T', // the modifiers type is T. Otherwise, the modifiers type is unknown. var declaredType = getTypeFromMappedTypeNode(type.declaration); var constraint = getConstraintTypeFromMappedType(declaredType); var extendedConstraint = constraint && constraint.flags & 262144 /* TypeFlags.TypeParameter */ ? getConstraintOfTypeParameter(constraint) : constraint; type.modifiersType = extendedConstraint && extendedConstraint.flags & 4194304 /* TypeFlags.Index */ ? instantiateType(extendedConstraint.type, type.mapper) : unknownType; } } return type.modifiersType; } function getMappedTypeModifiers(type) { var declaration = type.declaration; return (declaration.readonlyToken ? declaration.readonlyToken.kind === 40 /* SyntaxKind.MinusToken */ ? 2 /* MappedTypeModifiers.ExcludeReadonly */ : 1 /* MappedTypeModifiers.IncludeReadonly */ : 0) | (declaration.questionToken ? declaration.questionToken.kind === 40 /* SyntaxKind.MinusToken */ ? 8 /* MappedTypeModifiers.ExcludeOptional */ : 4 /* MappedTypeModifiers.IncludeOptional */ : 0); } function getMappedTypeOptionality(type) { var modifiers = getMappedTypeModifiers(type); return modifiers & 8 /* MappedTypeModifiers.ExcludeOptional */ ? -1 : modifiers & 4 /* MappedTypeModifiers.IncludeOptional */ ? 1 : 0; } function getCombinedMappedTypeOptionality(type) { var optionality = getMappedTypeOptionality(type); var modifiersType = getModifiersTypeFromMappedType(type); return optionality || (isGenericMappedType(modifiersType) ? getMappedTypeOptionality(modifiersType) : 0); } function isPartialMappedType(type) { return !!(ts.getObjectFlags(type) & 32 /* ObjectFlags.Mapped */ && getMappedTypeModifiers(type) & 4 /* MappedTypeModifiers.IncludeOptional */); } function isGenericMappedType(type) { return !!(ts.getObjectFlags(type) & 32 /* ObjectFlags.Mapped */) && isGenericIndexType(getConstraintTypeFromMappedType(type)); } function resolveStructuredTypeMembers(type) { if (!type.members) { if (type.flags & 524288 /* TypeFlags.Object */) { if (type.objectFlags & 4 /* ObjectFlags.Reference */) { resolveTypeReferenceMembers(type); } else if (type.objectFlags & 3 /* ObjectFlags.ClassOrInterface */) { resolveClassOrInterfaceMembers(type); } else if (type.objectFlags & 1024 /* ObjectFlags.ReverseMapped */) { resolveReverseMappedTypeMembers(type); } else if (type.objectFlags & 16 /* ObjectFlags.Anonymous */) { resolveAnonymousTypeMembers(type); } else if (type.objectFlags & 32 /* ObjectFlags.Mapped */) { resolveMappedTypeMembers(type); } } else if (type.flags & 1048576 /* TypeFlags.Union */) { resolveUnionTypeMembers(type); } else if (type.flags & 2097152 /* TypeFlags.Intersection */) { resolveIntersectionTypeMembers(type); } } return type; } /** Return properties of an object type or an empty array for other types */ function getPropertiesOfObjectType(type) { if (type.flags & 524288 /* TypeFlags.Object */) { return resolveStructuredTypeMembers(type).properties; } return ts.emptyArray; } /** If the given type is an object type and that type has a property by the given name, * return the symbol for that property. Otherwise return undefined. */ function getPropertyOfObjectType(type, name) { if (type.flags & 524288 /* TypeFlags.Object */) { var resolved = resolveStructuredTypeMembers(type); var symbol = resolved.members.get(name); if (symbol && symbolIsValue(symbol)) { return symbol; } } } function getPropertiesOfUnionOrIntersectionType(type) { if (!type.resolvedProperties) { var members = ts.createSymbolTable(); for (var _i = 0, _a = type.types; _i < _a.length; _i++) { var current = _a[_i]; for (var _b = 0, _c = getPropertiesOfType(current); _b < _c.length; _b++) { var prop = _c[_b]; if (!members.has(prop.escapedName)) { var combinedProp = getPropertyOfUnionOrIntersectionType(type, prop.escapedName); if (combinedProp) { members.set(prop.escapedName, combinedProp); } } } // The properties of a union type are those that are present in all constituent types, so // we only need to check the properties of the first type without index signature if (type.flags & 1048576 /* TypeFlags.Union */ && getIndexInfosOfType(current).length === 0) { break; } } type.resolvedProperties = getNamedMembers(members); } return type.resolvedProperties; } function getPropertiesOfType(type) { type = getReducedApparentType(type); return type.flags & 3145728 /* TypeFlags.UnionOrIntersection */ ? getPropertiesOfUnionOrIntersectionType(type) : getPropertiesOfObjectType(type); } function forEachPropertyOfType(type, action) { type = getReducedApparentType(type); if (type.flags & 3670016 /* TypeFlags.StructuredType */) { resolveStructuredTypeMembers(type).members.forEach(function (symbol, escapedName) { if (isNamedMember(symbol, escapedName)) { action(symbol, escapedName); } }); } } function isTypeInvalidDueToUnionDiscriminant(contextualType, obj) { var list = obj.properties; return list.some(function (property) { var nameType = property.name && getLiteralTypeFromPropertyName(property.name); var name = nameType && isTypeUsableAsPropertyName(nameType) ? getPropertyNameFromType(nameType) : undefined; var expected = name === undefined ? undefined : getTypeOfPropertyOfType(contextualType, name); return !!expected && isLiteralType(expected) && !isTypeAssignableTo(getTypeOfNode(property), expected); }); } function getAllPossiblePropertiesOfTypes(types) { var unionType = getUnionType(types); if (!(unionType.flags & 1048576 /* TypeFlags.Union */)) { return getAugmentedPropertiesOfType(unionType); } var props = ts.createSymbolTable(); for (var _i = 0, types_4 = types; _i < types_4.length; _i++) { var memberType = types_4[_i]; for (var _a = 0, _b = getAugmentedPropertiesOfType(memberType); _a < _b.length; _a++) { var escapedName = _b[_a].escapedName; if (!props.has(escapedName)) { var prop = createUnionOrIntersectionProperty(unionType, escapedName); // May be undefined if the property is private if (prop) props.set(escapedName, prop); } } } return ts.arrayFrom(props.values()); } function getConstraintOfType(type) { return type.flags & 262144 /* TypeFlags.TypeParameter */ ? getConstraintOfTypeParameter(type) : type.flags & 8388608 /* TypeFlags.IndexedAccess */ ? getConstraintOfIndexedAccess(type) : type.flags & 16777216 /* TypeFlags.Conditional */ ? getConstraintOfConditionalType(type) : getBaseConstraintOfType(type); } function getConstraintOfTypeParameter(typeParameter) { return hasNonCircularBaseConstraint(typeParameter) ? getConstraintFromTypeParameter(typeParameter) : undefined; } function getConstraintOfIndexedAccess(type) { return hasNonCircularBaseConstraint(type) ? getConstraintFromIndexedAccess(type) : undefined; } function getSimplifiedTypeOrConstraint(type) { var simplified = getSimplifiedType(type, /*writing*/ false); return simplified !== type ? simplified : getConstraintOfType(type); } function getConstraintFromIndexedAccess(type) { if (isMappedTypeGenericIndexedAccess(type)) { // For indexed access types of the form { [P in K]: E }[X], where K is non-generic and X is generic, // we substitute an instantiation of E where P is replaced with X. return substituteIndexedMappedType(type.objectType, type.indexType); } var indexConstraint = getSimplifiedTypeOrConstraint(type.indexType); if (indexConstraint && indexConstraint !== type.indexType) { var indexedAccess = getIndexedAccessTypeOrUndefined(type.objectType, indexConstraint, type.accessFlags); if (indexedAccess) { return indexedAccess; } } var objectConstraint = getSimplifiedTypeOrConstraint(type.objectType); if (objectConstraint && objectConstraint !== type.objectType) { return getIndexedAccessTypeOrUndefined(objectConstraint, type.indexType, type.accessFlags); } return undefined; } function getDefaultConstraintOfConditionalType(type) { if (!type.resolvedDefaultConstraint) { // An `any` branch of a conditional type would normally be viral - specifically, without special handling here, // a conditional type with a single branch of type `any` would be assignable to anything, since it's constraint would simplify to // just `any`. This result is _usually_ unwanted - so instead here we elide an `any` branch from the constraint type, // in effect treating `any` like `never` rather than `unknown` in this location. var trueConstraint = getInferredTrueTypeFromConditionalType(type); var falseConstraint = getFalseTypeFromConditionalType(type); type.resolvedDefaultConstraint = isTypeAny(trueConstraint) ? falseConstraint : isTypeAny(falseConstraint) ? trueConstraint : getUnionType([trueConstraint, falseConstraint]); } return type.resolvedDefaultConstraint; } function getConstraintOfDistributiveConditionalType(type) { // Check if we have a conditional type of the form 'T extends U ? X : Y', where T is a constrained // type parameter. If so, create an instantiation of the conditional type where T is replaced // with its constraint. We do this because if the constraint is a union type it will be distributed // over the conditional type and possibly reduced. For example, 'T extends undefined ? never : T' // removes 'undefined' from T. // We skip returning a distributive constraint for a restrictive instantiation of a conditional type // as the constraint for all type params (check type included) have been replace with `unknown`, which // is going to produce even more false positive/negative results than the distribute constraint already does. // Please note: the distributive constraint is a kludge for emulating what a negated type could to do filter // a union - once negated types exist and are applied to the conditional false branch, this "constraint" // likely doesn't need to exist. if (type.root.isDistributive && type.restrictiveInstantiation !== type) { var simplified = getSimplifiedType(type.checkType, /*writing*/ false); var constraint = simplified === type.checkType ? getConstraintOfType(simplified) : simplified; if (constraint && constraint !== type.checkType) { var instantiated = getConditionalTypeInstantiation(type, prependTypeMapping(type.root.checkType, constraint, type.mapper)); if (!(instantiated.flags & 131072 /* TypeFlags.Never */)) { return instantiated; } } } return undefined; } function getConstraintFromConditionalType(type) { return getConstraintOfDistributiveConditionalType(type) || getDefaultConstraintOfConditionalType(type); } function getConstraintOfConditionalType(type) { return hasNonCircularBaseConstraint(type) ? getConstraintFromConditionalType(type) : undefined; } function getEffectiveConstraintOfIntersection(types, targetIsUnion) { var constraints; var hasDisjointDomainType = false; for (var _i = 0, types_5 = types; _i < types_5.length; _i++) { var t = types_5[_i]; if (t.flags & 465829888 /* TypeFlags.Instantiable */) { // We keep following constraints as long as we have an instantiable type that is known // not to be circular or infinite (hence we stop on index access types). var constraint = getConstraintOfType(t); while (constraint && constraint.flags & (262144 /* TypeFlags.TypeParameter */ | 4194304 /* TypeFlags.Index */ | 16777216 /* TypeFlags.Conditional */)) { constraint = getConstraintOfType(constraint); } if (constraint) { constraints = ts.append(constraints, constraint); if (targetIsUnion) { constraints = ts.append(constraints, t); } } } else if (t.flags & 469892092 /* TypeFlags.DisjointDomains */) { hasDisjointDomainType = true; } } // If the target is a union type or if we are intersecting with types belonging to one of the // disjoint domains, we may end up producing a constraint that hasn't been examined before. if (constraints && (targetIsUnion || hasDisjointDomainType)) { if (hasDisjointDomainType) { // We add any types belong to one of the disjoint domains because they might cause the final // intersection operation to reduce the union constraints. for (var _a = 0, types_6 = types; _a < types_6.length; _a++) { var t = types_6[_a]; if (t.flags & 469892092 /* TypeFlags.DisjointDomains */) { constraints = ts.append(constraints, t); } } } return getIntersectionType(constraints); } return undefined; } function getBaseConstraintOfType(type) { if (type.flags & (58982400 /* TypeFlags.InstantiableNonPrimitive */ | 3145728 /* TypeFlags.UnionOrIntersection */ | 134217728 /* TypeFlags.TemplateLiteral */ | 268435456 /* TypeFlags.StringMapping */)) { var constraint = getResolvedBaseConstraint(type); return constraint !== noConstraintType && constraint !== circularConstraintType ? constraint : undefined; } return type.flags & 4194304 /* TypeFlags.Index */ ? keyofConstraintType : undefined; } /** * This is similar to `getBaseConstraintOfType` except it returns the input type if there's no base constraint, instead of `undefined` * It also doesn't map indexes to `string`, as where this is used this would be unneeded (and likely undesirable) */ function getBaseConstraintOrType(type) { return getBaseConstraintOfType(type) || type; } function hasNonCircularBaseConstraint(type) { return getResolvedBaseConstraint(type) !== circularConstraintType; } /** * Return the resolved base constraint of a type variable. The noConstraintType singleton is returned if the * type variable has no constraint, and the circularConstraintType singleton is returned if the constraint * circularly references the type variable. */ function getResolvedBaseConstraint(type) { if (type.resolvedBaseConstraint) { return type.resolvedBaseConstraint; } var stack = []; return type.resolvedBaseConstraint = getTypeWithThisArgument(getImmediateBaseConstraint(type), type); function getImmediateBaseConstraint(t) { if (!t.immediateBaseConstraint) { if (!pushTypeResolution(t, 4 /* TypeSystemPropertyName.ImmediateBaseConstraint */)) { return circularConstraintType; } var result = void 0; // We always explore at least 10 levels of nested constraints. Thereafter, we continue to explore // up to 50 levels of nested constraints provided there are no "deeply nested" types on the stack // (i.e. no types for which five instantiations have been recorded on the stack). If we reach 50 // levels of nesting, we are presumably exploring a repeating pattern with a long cycle that hasn't // yet triggered the deeply nested limiter. We have no test cases that actually get to 50 levels of // nesting, so it is effectively just a safety stop. var identity_1 = getRecursionIdentity(t); if (stack.length < 10 || stack.length < 50 && !ts.contains(stack, identity_1)) { stack.push(identity_1); result = computeBaseConstraint(getSimplifiedType(t, /*writing*/ false)); stack.pop(); } if (!popTypeResolution()) { if (t.flags & 262144 /* TypeFlags.TypeParameter */) { var errorNode = getConstraintDeclaration(t); if (errorNode) { var diagnostic = error(errorNode, ts.Diagnostics.Type_parameter_0_has_a_circular_constraint, typeToString(t)); if (currentNode && !ts.isNodeDescendantOf(errorNode, currentNode) && !ts.isNodeDescendantOf(currentNode, errorNode)) { ts.addRelatedInfo(diagnostic, ts.createDiagnosticForNode(currentNode, ts.Diagnostics.Circularity_originates_in_type_at_this_location)); } } } result = circularConstraintType; } t.immediateBaseConstraint = result || noConstraintType; } return t.immediateBaseConstraint; } function getBaseConstraint(t) { var c = getImmediateBaseConstraint(t); return c !== noConstraintType && c !== circularConstraintType ? c : undefined; } function computeBaseConstraint(t) { if (t.flags & 262144 /* TypeFlags.TypeParameter */) { var constraint = getConstraintFromTypeParameter(t); return t.isThisType || !constraint ? constraint : getBaseConstraint(constraint); } if (t.flags & 3145728 /* TypeFlags.UnionOrIntersection */) { var types = t.types; var baseTypes = []; var different = false; for (var _i = 0, types_7 = types; _i < types_7.length; _i++) { var type_4 = types_7[_i]; var baseType = getBaseConstraint(type_4); if (baseType) { if (baseType !== type_4) { different = true; } baseTypes.push(baseType); } else { different = true; } } if (!different) { return t; } return t.flags & 1048576 /* TypeFlags.Union */ && baseTypes.length === types.length ? getUnionType(baseTypes) : t.flags & 2097152 /* TypeFlags.Intersection */ && baseTypes.length ? getIntersectionType(baseTypes) : undefined; } if (t.flags & 4194304 /* TypeFlags.Index */) { return keyofConstraintType; } if (t.flags & 134217728 /* TypeFlags.TemplateLiteral */) { var types = t.types; var constraints = ts.mapDefined(types, getBaseConstraint); return constraints.length === types.length ? getTemplateLiteralType(t.texts, constraints) : stringType; } if (t.flags & 268435456 /* TypeFlags.StringMapping */) { var constraint = getBaseConstraint(t.type); return constraint ? getStringMappingType(t.symbol, constraint) : stringType; } if (t.flags & 8388608 /* TypeFlags.IndexedAccess */) { if (isMappedTypeGenericIndexedAccess(t)) { // For indexed access types of the form { [P in K]: E }[X], where K is non-generic and X is generic, // we substitute an instantiation of E where P is replaced with X. return getBaseConstraint(substituteIndexedMappedType(t.objectType, t.indexType)); } var baseObjectType = getBaseConstraint(t.objectType); var baseIndexType = getBaseConstraint(t.indexType); var baseIndexedAccess = baseObjectType && baseIndexType && getIndexedAccessTypeOrUndefined(baseObjectType, baseIndexType, t.accessFlags); return baseIndexedAccess && getBaseConstraint(baseIndexedAccess); } if (t.flags & 16777216 /* TypeFlags.Conditional */) { var constraint = getConstraintFromConditionalType(t); return constraint && getBaseConstraint(constraint); } if (t.flags & 33554432 /* TypeFlags.Substitution */) { return getBaseConstraint(t.substitute); } return t; } } function getApparentTypeOfIntersectionType(type) { return type.resolvedApparentType || (type.resolvedApparentType = getTypeWithThisArgument(type, type, /*apparentType*/ true)); } function getResolvedTypeParameterDefault(typeParameter) { if (!typeParameter.default) { if (typeParameter.target) { var targetDefault = getResolvedTypeParameterDefault(typeParameter.target); typeParameter.default = targetDefault ? instantiateType(targetDefault, typeParameter.mapper) : noConstraintType; } else { // To block recursion, set the initial value to the resolvingDefaultType. typeParameter.default = resolvingDefaultType; var defaultDeclaration = typeParameter.symbol && ts.forEach(typeParameter.symbol.declarations, function (decl) { return ts.isTypeParameterDeclaration(decl) && decl.default; }); var defaultType = defaultDeclaration ? getTypeFromTypeNode(defaultDeclaration) : noConstraintType; if (typeParameter.default === resolvingDefaultType) { // If we have not been called recursively, set the correct default type. typeParameter.default = defaultType; } } } else if (typeParameter.default === resolvingDefaultType) { // If we are called recursively for this type parameter, mark the default as circular. typeParameter.default = circularConstraintType; } return typeParameter.default; } /** * Gets the default type for a type parameter. * * If the type parameter is the result of an instantiation, this gets the instantiated * default type of its target. If the type parameter has no default type or the default is * circular, `undefined` is returned. */ function getDefaultFromTypeParameter(typeParameter) { var defaultType = getResolvedTypeParameterDefault(typeParameter); return defaultType !== noConstraintType && defaultType !== circularConstraintType ? defaultType : undefined; } function hasNonCircularTypeParameterDefault(typeParameter) { return getResolvedTypeParameterDefault(typeParameter) !== circularConstraintType; } /** * Indicates whether the declaration of a typeParameter has a default type. */ function hasTypeParameterDefault(typeParameter) { return !!(typeParameter.symbol && ts.forEach(typeParameter.symbol.declarations, function (decl) { return ts.isTypeParameterDeclaration(decl) && decl.default; })); } function getApparentTypeOfMappedType(type) { return type.resolvedApparentType || (type.resolvedApparentType = getResolvedApparentTypeOfMappedType(type)); } function getResolvedApparentTypeOfMappedType(type) { var typeVariable = getHomomorphicTypeVariable(type); if (typeVariable && !type.declaration.nameType) { var constraint = getConstraintOfTypeParameter(typeVariable); if (constraint && isArrayOrTupleType(constraint)) { return instantiateType(type, prependTypeMapping(typeVariable, constraint, type.mapper)); } } return type; } function isMappedTypeGenericIndexedAccess(type) { var objectType; return !!(type.flags & 8388608 /* TypeFlags.IndexedAccess */ && ts.getObjectFlags(objectType = type.objectType) & 32 /* ObjectFlags.Mapped */ && !isGenericMappedType(objectType) && isGenericIndexType(type.indexType) && !(getMappedTypeModifiers(objectType) & 8 /* MappedTypeModifiers.ExcludeOptional */) && !objectType.declaration.nameType); } /** * For a type parameter, return the base constraint of the type parameter. For the string, number, * boolean, and symbol primitive types, return the corresponding object types. Otherwise return the * type itself. */ function getApparentType(type) { var t = !(type.flags & 465829888 /* TypeFlags.Instantiable */) ? type : getBaseConstraintOfType(type) || unknownType; return ts.getObjectFlags(t) & 32 /* ObjectFlags.Mapped */ ? getApparentTypeOfMappedType(t) : t.flags & 2097152 /* TypeFlags.Intersection */ ? getApparentTypeOfIntersectionType(t) : t.flags & 402653316 /* TypeFlags.StringLike */ ? globalStringType : t.flags & 296 /* TypeFlags.NumberLike */ ? globalNumberType : t.flags & 2112 /* TypeFlags.BigIntLike */ ? getGlobalBigIntType() : t.flags & 528 /* TypeFlags.BooleanLike */ ? globalBooleanType : t.flags & 12288 /* TypeFlags.ESSymbolLike */ ? getGlobalESSymbolType() : t.flags & 67108864 /* TypeFlags.NonPrimitive */ ? emptyObjectType : t.flags & 4194304 /* TypeFlags.Index */ ? keyofConstraintType : t.flags & 2 /* TypeFlags.Unknown */ && !strictNullChecks ? emptyObjectType : t; } function getReducedApparentType(type) { // Since getApparentType may return a non-reduced union or intersection type, we need to perform // type reduction both before and after obtaining the apparent type. For example, given a type parameter // 'T extends A | B', the type 'T & X' becomes 'A & X | B & X' after obtaining the apparent type, and // that type may need further reduction to remove empty intersections. return getReducedType(getApparentType(getReducedType(type))); } function createUnionOrIntersectionProperty(containingType, name, skipObjectFunctionPropertyAugment) { var _a, _b; var singleProp; var propSet; var indexTypes; var isUnion = containingType.flags & 1048576 /* TypeFlags.Union */; // Flags we want to propagate to the result if they exist in all source symbols var optionalFlag = isUnion ? 0 /* SymbolFlags.None */ : 16777216 /* SymbolFlags.Optional */; var syntheticFlag = 4 /* CheckFlags.SyntheticMethod */; var checkFlags = isUnion ? 0 : 8 /* CheckFlags.Readonly */; var mergedInstantiations = false; for (var _i = 0, _c = containingType.types; _i < _c.length; _i++) { var current = _c[_i]; var type = getApparentType(current); if (!(isErrorType(type) || type.flags & 131072 /* TypeFlags.Never */)) { var prop = getPropertyOfType(type, name, skipObjectFunctionPropertyAugment); var modifiers = prop ? ts.getDeclarationModifierFlagsFromSymbol(prop) : 0; if (prop) { if (isUnion) { optionalFlag |= (prop.flags & 16777216 /* SymbolFlags.Optional */); } else { optionalFlag &= prop.flags; } if (!singleProp) { singleProp = prop; } else if (prop !== singleProp) { var isInstantiation = (getTargetSymbol(prop) || prop) === (getTargetSymbol(singleProp) || singleProp); // If the symbols are instances of one another with identical types - consider the symbols // equivalent and just use the first one, which thus allows us to avoid eliding private // members when intersecting a (this-)instantiations of a class with it's raw base or another instance if (isInstantiation && compareProperties(singleProp, prop, function (a, b) { return a === b ? -1 /* Ternary.True */ : 0 /* Ternary.False */; }) === -1 /* Ternary.True */) { // If we merged instantiations of a generic type, we replicate the symbol parent resetting behavior we used // to do when we recorded multiple distinct symbols so that we still get, eg, `Array.length` printed // back and not `Array.length` when we're looking at a `.length` access on a `string[] | number[]` mergedInstantiations = !!singleProp.parent && !!ts.length(getLocalTypeParametersOfClassOrInterfaceOrTypeAlias(singleProp.parent)); } else { if (!propSet) { propSet = new ts.Map(); propSet.set(getSymbolId(singleProp), singleProp); } var id = getSymbolId(prop); if (!propSet.has(id)) { propSet.set(id, prop); } } } if (isUnion && isReadonlySymbol(prop)) { checkFlags |= 8 /* CheckFlags.Readonly */; } else if (!isUnion && !isReadonlySymbol(prop)) { checkFlags &= ~8 /* CheckFlags.Readonly */; } checkFlags |= (!(modifiers & 24 /* ModifierFlags.NonPublicAccessibilityModifier */) ? 256 /* CheckFlags.ContainsPublic */ : 0) | (modifiers & 16 /* ModifierFlags.Protected */ ? 512 /* CheckFlags.ContainsProtected */ : 0) | (modifiers & 8 /* ModifierFlags.Private */ ? 1024 /* CheckFlags.ContainsPrivate */ : 0) | (modifiers & 32 /* ModifierFlags.Static */ ? 2048 /* CheckFlags.ContainsStatic */ : 0); if (!isPrototypeProperty(prop)) { syntheticFlag = 2 /* CheckFlags.SyntheticProperty */; } } else if (isUnion) { var indexInfo = !isLateBoundName(name) && getApplicableIndexInfoForName(type, name); if (indexInfo) { checkFlags |= 32 /* CheckFlags.WritePartial */ | (indexInfo.isReadonly ? 8 /* CheckFlags.Readonly */ : 0); indexTypes = ts.append(indexTypes, isTupleType(type) ? getRestTypeOfTupleType(type) || undefinedType : indexInfo.type); } else if (isObjectLiteralType(type) && !(ts.getObjectFlags(type) & 2097152 /* ObjectFlags.ContainsSpread */)) { checkFlags |= 32 /* CheckFlags.WritePartial */; indexTypes = ts.append(indexTypes, undefinedType); } else { checkFlags |= 16 /* CheckFlags.ReadPartial */; } } } } if (!singleProp || isUnion && (propSet || checkFlags & 48 /* CheckFlags.Partial */) && checkFlags & (1024 /* CheckFlags.ContainsPrivate */ | 512 /* CheckFlags.ContainsProtected */)) { // No property was found, or, in a union, a property has a private or protected declaration in one // constituent, but is missing or has a different declaration in another constituent. return undefined; } if (!propSet && !(checkFlags & 16 /* CheckFlags.ReadPartial */) && !indexTypes) { if (mergedInstantiations) { // No symbol from a union/intersection should have a `.parent` set (since unions/intersections don't act as symbol parents) // Unless that parent is "reconstituted" from the "first value declaration" on the symbol (which is likely different than its instantiated parent!) // They also have a `.containingType` set, which affects some services endpoints behavior, like `getRootSymbol` var clone_1 = createSymbolWithType(singleProp, singleProp.type); clone_1.parent = (_b = (_a = singleProp.valueDeclaration) === null || _a === void 0 ? void 0 : _a.symbol) === null || _b === void 0 ? void 0 : _b.parent; clone_1.containingType = containingType; clone_1.mapper = singleProp.mapper; return clone_1; } else { return singleProp; } } var props = propSet ? ts.arrayFrom(propSet.values()) : [singleProp]; var declarations; var firstType; var nameType; var propTypes = []; var writeTypes; var firstValueDeclaration; var hasNonUniformValueDeclaration = false; for (var _d = 0, props_1 = props; _d < props_1.length; _d++) { var prop = props_1[_d]; if (!firstValueDeclaration) { firstValueDeclaration = prop.valueDeclaration; } else if (prop.valueDeclaration && prop.valueDeclaration !== firstValueDeclaration) { hasNonUniformValueDeclaration = true; } declarations = ts.addRange(declarations, prop.declarations); var type = getTypeOfSymbol(prop); if (!firstType) { firstType = type; nameType = getSymbolLinks(prop).nameType; } var writeType = getWriteTypeOfSymbol(prop); if (writeTypes || writeType !== type) { writeTypes = ts.append(!writeTypes ? propTypes.slice() : writeTypes, writeType); } else if (type !== firstType) { checkFlags |= 64 /* CheckFlags.HasNonUniformType */; } if (isLiteralType(type) || isPatternLiteralType(type) || type === uniqueLiteralType) { checkFlags |= 128 /* CheckFlags.HasLiteralType */; } if (type.flags & 131072 /* TypeFlags.Never */ && type !== uniqueLiteralType) { checkFlags |= 131072 /* CheckFlags.HasNeverType */; } propTypes.push(type); } ts.addRange(propTypes, indexTypes); var result = createSymbol(4 /* SymbolFlags.Property */ | optionalFlag, name, syntheticFlag | checkFlags); result.containingType = containingType; if (!hasNonUniformValueDeclaration && firstValueDeclaration) { result.valueDeclaration = firstValueDeclaration; // Inherit information about parent type. if (firstValueDeclaration.symbol.parent) { result.parent = firstValueDeclaration.symbol.parent; } } result.declarations = declarations; result.nameType = nameType; if (propTypes.length > 2) { // When `propTypes` has the potential to explode in size when normalized, defer normalization until absolutely needed result.checkFlags |= 65536 /* CheckFlags.DeferredType */; result.deferralParent = containingType; result.deferralConstituents = propTypes; result.deferralWriteConstituents = writeTypes; } else { result.type = isUnion ? getUnionType(propTypes) : getIntersectionType(propTypes); if (writeTypes) { result.writeType = isUnion ? getUnionType(writeTypes) : getIntersectionType(writeTypes); } } return result; } // Return the symbol for a given property in a union or intersection type, or undefined if the property // does not exist in any constituent type. Note that the returned property may only be present in some // constituents, in which case the isPartial flag is set when the containing type is union type. We need // these partial properties when identifying discriminant properties, but otherwise they are filtered out // and do not appear to be present in the union type. function getUnionOrIntersectionProperty(type, name, skipObjectFunctionPropertyAugment) { var _a, _b; var property = ((_a = type.propertyCacheWithoutObjectFunctionPropertyAugment) === null || _a === void 0 ? void 0 : _a.get(name)) || !skipObjectFunctionPropertyAugment ? (_b = type.propertyCache) === null || _b === void 0 ? void 0 : _b.get(name) : undefined; if (!property) { property = createUnionOrIntersectionProperty(type, name, skipObjectFunctionPropertyAugment); if (property) { var properties = skipObjectFunctionPropertyAugment ? type.propertyCacheWithoutObjectFunctionPropertyAugment || (type.propertyCacheWithoutObjectFunctionPropertyAugment = ts.createSymbolTable()) : type.propertyCache || (type.propertyCache = ts.createSymbolTable()); properties.set(name, property); } } return property; } function getPropertyOfUnionOrIntersectionType(type, name, skipObjectFunctionPropertyAugment) { var property = getUnionOrIntersectionProperty(type, name, skipObjectFunctionPropertyAugment); // We need to filter out partial properties in union types return property && !(ts.getCheckFlags(property) & 16 /* CheckFlags.ReadPartial */) ? property : undefined; } /** * Return the reduced form of the given type. For a union type, it is a union of the normalized constituent types. * For an intersection of types containing one or more mututally exclusive discriminant properties, it is 'never'. * For all other types, it is simply the type itself. Discriminant properties are considered mutually exclusive when * no constituent property has type 'never', but the intersection of the constituent property types is 'never'. */ function getReducedType(type) { if (type.flags & 1048576 /* TypeFlags.Union */ && type.objectFlags & 16777216 /* ObjectFlags.ContainsIntersections */) { return type.resolvedReducedType || (type.resolvedReducedType = getReducedUnionType(type)); } else if (type.flags & 2097152 /* TypeFlags.Intersection */) { if (!(type.objectFlags & 16777216 /* ObjectFlags.IsNeverIntersectionComputed */)) { type.objectFlags |= 16777216 /* ObjectFlags.IsNeverIntersectionComputed */ | (ts.some(getPropertiesOfUnionOrIntersectionType(type), isNeverReducedProperty) ? 33554432 /* ObjectFlags.IsNeverIntersection */ : 0); } return type.objectFlags & 33554432 /* ObjectFlags.IsNeverIntersection */ ? neverType : type; } return type; } function getReducedUnionType(unionType) { var reducedTypes = ts.sameMap(unionType.types, getReducedType); if (reducedTypes === unionType.types) { return unionType; } var reduced = getUnionType(reducedTypes); if (reduced.flags & 1048576 /* TypeFlags.Union */) { reduced.resolvedReducedType = reduced; } return reduced; } function isNeverReducedProperty(prop) { return isDiscriminantWithNeverType(prop) || isConflictingPrivateProperty(prop); } function isDiscriminantWithNeverType(prop) { // Return true for a synthetic non-optional property with non-uniform types, where at least one is // a literal type and none is never, that reduces to never. return !(prop.flags & 16777216 /* SymbolFlags.Optional */) && (ts.getCheckFlags(prop) & (192 /* CheckFlags.Discriminant */ | 131072 /* CheckFlags.HasNeverType */)) === 192 /* CheckFlags.Discriminant */ && !!(getTypeOfSymbol(prop).flags & 131072 /* TypeFlags.Never */); } function isConflictingPrivateProperty(prop) { // Return true for a synthetic property with multiple declarations, at least one of which is private. return !prop.valueDeclaration && !!(ts.getCheckFlags(prop) & 1024 /* CheckFlags.ContainsPrivate */); } function elaborateNeverIntersection(errorInfo, type) { if (type.flags & 2097152 /* TypeFlags.Intersection */ && ts.getObjectFlags(type) & 33554432 /* ObjectFlags.IsNeverIntersection */) { var neverProp = ts.find(getPropertiesOfUnionOrIntersectionType(type), isDiscriminantWithNeverType); if (neverProp) { return ts.chainDiagnosticMessages(errorInfo, ts.Diagnostics.The_intersection_0_was_reduced_to_never_because_property_1_has_conflicting_types_in_some_constituents, typeToString(type, /*enclosingDeclaration*/ undefined, 536870912 /* TypeFormatFlags.NoTypeReduction */), symbolToString(neverProp)); } var privateProp = ts.find(getPropertiesOfUnionOrIntersectionType(type), isConflictingPrivateProperty); if (privateProp) { return ts.chainDiagnosticMessages(errorInfo, ts.Diagnostics.The_intersection_0_was_reduced_to_never_because_property_1_exists_in_multiple_constituents_and_is_private_in_some, typeToString(type, /*enclosingDeclaration*/ undefined, 536870912 /* TypeFormatFlags.NoTypeReduction */), symbolToString(privateProp)); } } return errorInfo; } /** * Return the symbol for the property with the given name in the given type. Creates synthetic union properties when * necessary, maps primitive types and type parameters are to their apparent types, and augments with properties from * Object and Function as appropriate. * * @param type a type to look up property from * @param name a name of property to look up in a given type */ function getPropertyOfType(type, name, skipObjectFunctionPropertyAugment) { type = getReducedApparentType(type); if (type.flags & 524288 /* TypeFlags.Object */) { var resolved = resolveStructuredTypeMembers(type); var symbol = resolved.members.get(name); if (symbol && symbolIsValue(symbol)) { return symbol; } if (skipObjectFunctionPropertyAugment) return undefined; var functionType = resolved === anyFunctionType ? globalFunctionType : resolved.callSignatures.length ? globalCallableFunctionType : resolved.constructSignatures.length ? globalNewableFunctionType : undefined; if (functionType) { var symbol_1 = getPropertyOfObjectType(functionType, name); if (symbol_1) { return symbol_1; } } return getPropertyOfObjectType(globalObjectType, name); } if (type.flags & 3145728 /* TypeFlags.UnionOrIntersection */) { return getPropertyOfUnionOrIntersectionType(type, name, skipObjectFunctionPropertyAugment); } return undefined; } function getSignaturesOfStructuredType(type, kind) { if (type.flags & 3670016 /* TypeFlags.StructuredType */) { var resolved = resolveStructuredTypeMembers(type); return kind === 0 /* SignatureKind.Call */ ? resolved.callSignatures : resolved.constructSignatures; } return ts.emptyArray; } /** * Return the signatures of the given kind in the given type. Creates synthetic union signatures when necessary and * maps primitive types and type parameters are to their apparent types. */ function getSignaturesOfType(type, kind) { return getSignaturesOfStructuredType(getReducedApparentType(type), kind); } function findIndexInfo(indexInfos, keyType) { return ts.find(indexInfos, function (info) { return info.keyType === keyType; }); } function findApplicableIndexInfo(indexInfos, keyType) { // Index signatures for type 'string' are considered only when no other index signatures apply. var stringIndexInfo; var applicableInfo; var applicableInfos; for (var _i = 0, indexInfos_3 = indexInfos; _i < indexInfos_3.length; _i++) { var info = indexInfos_3[_i]; if (info.keyType === stringType) { stringIndexInfo = info; } else if (isApplicableIndexType(keyType, info.keyType)) { if (!applicableInfo) { applicableInfo = info; } else { (applicableInfos || (applicableInfos = [applicableInfo])).push(info); } } } // When more than one index signature is applicable we create a synthetic IndexInfo. Instead of computing // the intersected key type, we just use unknownType for the key type as nothing actually depends on the // keyType property of the returned IndexInfo. return applicableInfos ? createIndexInfo(unknownType, getIntersectionType(ts.map(applicableInfos, function (info) { return info.type; })), ts.reduceLeft(applicableInfos, function (isReadonly, info) { return isReadonly && info.isReadonly; }, /*initial*/ true)) : applicableInfo ? applicableInfo : stringIndexInfo && isApplicableIndexType(keyType, stringType) ? stringIndexInfo : undefined; } function isApplicableIndexType(source, target) { // A 'string' index signature applies to types assignable to 'string' or 'number', and a 'number' index // signature applies to types assignable to 'number', `${number}` and numeric string literal types. return isTypeAssignableTo(source, target) || target === stringType && isTypeAssignableTo(source, numberType) || target === numberType && (source === numericStringType || !!(source.flags & 128 /* TypeFlags.StringLiteral */) && ts.isNumericLiteralName(source.value)); } function getIndexInfosOfStructuredType(type) { if (type.flags & 3670016 /* TypeFlags.StructuredType */) { var resolved = resolveStructuredTypeMembers(type); return resolved.indexInfos; } return ts.emptyArray; } function getIndexInfosOfType(type) { return getIndexInfosOfStructuredType(getReducedApparentType(type)); } // Return the indexing info of the given kind in the given type. Creates synthetic union index types when necessary and // maps primitive types and type parameters are to their apparent types. function getIndexInfoOfType(type, keyType) { return findIndexInfo(getIndexInfosOfType(type), keyType); } // Return the index type of the given kind in the given type. Creates synthetic union index types when necessary and // maps primitive types and type parameters are to their apparent types. function getIndexTypeOfType(type, keyType) { var _a; return (_a = getIndexInfoOfType(type, keyType)) === null || _a === void 0 ? void 0 : _a.type; } function getApplicableIndexInfos(type, keyType) { return getIndexInfosOfType(type).filter(function (info) { return isApplicableIndexType(keyType, info.keyType); }); } function getApplicableIndexInfo(type, keyType) { return findApplicableIndexInfo(getIndexInfosOfType(type), keyType); } function getApplicableIndexInfoForName(type, name) { return getApplicableIndexInfo(type, isLateBoundName(name) ? esSymbolType : getStringLiteralType(ts.unescapeLeadingUnderscores(name))); } // Return list of type parameters with duplicates removed (duplicate identifier errors are generated in the actual // type checking functions). function getTypeParametersFromDeclaration(declaration) { var result; for (var _i = 0, _a = ts.getEffectiveTypeParameterDeclarations(declaration); _i < _a.length; _i++) { var node = _a[_i]; result = ts.appendIfUnique(result, getDeclaredTypeOfTypeParameter(node.symbol)); } return result; } function symbolsToArray(symbols) { var result = []; symbols.forEach(function (symbol, id) { if (!isReservedMemberName(id)) { result.push(symbol); } }); return result; } function isJSDocOptionalParameter(node) { return ts.isInJSFile(node) && ( // node.type should only be a JSDocOptionalType when node is a parameter of a JSDocFunctionType node.type && node.type.kind === 316 /* SyntaxKind.JSDocOptionalType */ || ts.getJSDocParameterTags(node).some(function (_a) { var isBracketed = _a.isBracketed, typeExpression = _a.typeExpression; return isBracketed || !!typeExpression && typeExpression.type.kind === 316 /* SyntaxKind.JSDocOptionalType */; })); } function tryFindAmbientModule(moduleName, withAugmentations) { if (ts.isExternalModuleNameRelative(moduleName)) { return undefined; } var symbol = getSymbol(globals, '"' + moduleName + '"', 512 /* SymbolFlags.ValueModule */); // merged symbol is module declaration symbol combined with all augmentations return symbol && withAugmentations ? getMergedSymbol(symbol) : symbol; } function isOptionalParameter(node) { if (ts.hasQuestionToken(node) || isOptionalJSDocPropertyLikeTag(node) || isJSDocOptionalParameter(node)) { return true; } if (node.initializer) { var signature = getSignatureFromDeclaration(node.parent); var parameterIndex = node.parent.parameters.indexOf(node); ts.Debug.assert(parameterIndex >= 0); // Only consider syntactic or instantiated parameters as optional, not `void` parameters as this function is used // in grammar checks and checking for `void` too early results in parameter types widening too early // and causes some noImplicitAny errors to be lost. return parameterIndex >= getMinArgumentCount(signature, 1 /* MinArgumentCountFlags.StrongArityForUntypedJS */ | 2 /* MinArgumentCountFlags.VoidIsNonOptional */); } var iife = ts.getImmediatelyInvokedFunctionExpression(node.parent); if (iife) { return !node.type && !node.dotDotDotToken && node.parent.parameters.indexOf(node) >= iife.arguments.length; } return false; } function isOptionalPropertyDeclaration(node) { return ts.isPropertyDeclaration(node) && node.questionToken; } function isOptionalJSDocPropertyLikeTag(node) { if (!ts.isJSDocPropertyLikeTag(node)) { return false; } var isBracketed = node.isBracketed, typeExpression = node.typeExpression; return isBracketed || !!typeExpression && typeExpression.type.kind === 316 /* SyntaxKind.JSDocOptionalType */; } function createTypePredicate(kind, parameterName, parameterIndex, type) { return { kind: kind, parameterName: parameterName, parameterIndex: parameterIndex, type: type }; } /** * Gets the minimum number of type arguments needed to satisfy all non-optional type * parameters. */ function getMinTypeArgumentCount(typeParameters) { var minTypeArgumentCount = 0; if (typeParameters) { for (var i = 0; i < typeParameters.length; i++) { if (!hasTypeParameterDefault(typeParameters[i])) { minTypeArgumentCount = i + 1; } } } return minTypeArgumentCount; } function fillMissingTypeArguments(typeArguments, typeParameters, minTypeArgumentCount, isJavaScriptImplicitAny) { var numTypeParameters = ts.length(typeParameters); if (!numTypeParameters) { return []; } var numTypeArguments = ts.length(typeArguments); if (isJavaScriptImplicitAny || (numTypeArguments >= minTypeArgumentCount && numTypeArguments <= numTypeParameters)) { var result = typeArguments ? typeArguments.slice() : []; // Map invalid forward references in default types to the error type for (var i = numTypeArguments; i < numTypeParameters; i++) { result[i] = errorType; } var baseDefaultType = getDefaultTypeArgumentType(isJavaScriptImplicitAny); for (var i = numTypeArguments; i < numTypeParameters; i++) { var defaultType = getDefaultFromTypeParameter(typeParameters[i]); if (isJavaScriptImplicitAny && defaultType && (isTypeIdenticalTo(defaultType, unknownType) || isTypeIdenticalTo(defaultType, emptyObjectType))) { defaultType = anyType; } result[i] = defaultType ? instantiateType(defaultType, createTypeMapper(typeParameters, result)) : baseDefaultType; } result.length = typeParameters.length; return result; } return typeArguments && typeArguments.slice(); } function getSignatureFromDeclaration(declaration) { var links = getNodeLinks(declaration); if (!links.resolvedSignature) { var parameters = []; var flags = 0 /* SignatureFlags.None */; var minArgumentCount = 0; var thisParameter = void 0; var hasThisParameter = false; var iife = ts.getImmediatelyInvokedFunctionExpression(declaration); var isJSConstructSignature = ts.isJSDocConstructSignature(declaration); var isUntypedSignatureInJSFile = !iife && ts.isInJSFile(declaration) && ts.isValueSignatureDeclaration(declaration) && !ts.hasJSDocParameterTags(declaration) && !ts.getJSDocType(declaration); if (isUntypedSignatureInJSFile) { flags |= 32 /* SignatureFlags.IsUntypedSignatureInJSFile */; } // If this is a JSDoc construct signature, then skip the first parameter in the // parameter list. The first parameter represents the return type of the construct // signature. for (var i = isJSConstructSignature ? 1 : 0; i < declaration.parameters.length; i++) { var param = declaration.parameters[i]; var paramSymbol = param.symbol; var type = ts.isJSDocParameterTag(param) ? (param.typeExpression && param.typeExpression.type) : param.type; // Include parameter symbol instead of property symbol in the signature if (paramSymbol && !!(paramSymbol.flags & 4 /* SymbolFlags.Property */) && !ts.isBindingPattern(param.name)) { var resolvedSymbol = resolveName(param, paramSymbol.escapedName, 111551 /* SymbolFlags.Value */, undefined, undefined, /*isUse*/ false); paramSymbol = resolvedSymbol; } if (i === 0 && paramSymbol.escapedName === "this" /* InternalSymbolName.This */) { hasThisParameter = true; thisParameter = param.symbol; } else { parameters.push(paramSymbol); } if (type && type.kind === 196 /* SyntaxKind.LiteralType */) { flags |= 2 /* SignatureFlags.HasLiteralTypes */; } // Record a new minimum argument count if this is not an optional parameter var isOptionalParameter_1 = isOptionalJSDocPropertyLikeTag(param) || param.initializer || param.questionToken || ts.isRestParameter(param) || iife && parameters.length > iife.arguments.length && !type || isJSDocOptionalParameter(param); if (!isOptionalParameter_1) { minArgumentCount = parameters.length; } } // If only one accessor includes a this-type annotation, the other behaves as if it had the same type annotation if ((declaration.kind === 172 /* SyntaxKind.GetAccessor */ || declaration.kind === 173 /* SyntaxKind.SetAccessor */) && hasBindableName(declaration) && (!hasThisParameter || !thisParameter)) { var otherKind = declaration.kind === 172 /* SyntaxKind.GetAccessor */ ? 173 /* SyntaxKind.SetAccessor */ : 172 /* SyntaxKind.GetAccessor */; var other = ts.getDeclarationOfKind(getSymbolOfNode(declaration), otherKind); if (other) { thisParameter = getAnnotatedAccessorThisParameter(other); } } var classType = declaration.kind === 171 /* SyntaxKind.Constructor */ ? getDeclaredTypeOfClassOrInterface(getMergedSymbol(declaration.parent.symbol)) : undefined; var typeParameters = classType ? classType.localTypeParameters : getTypeParametersFromDeclaration(declaration); if (ts.hasRestParameter(declaration) || ts.isInJSFile(declaration) && maybeAddJsSyntheticRestParameter(declaration, parameters)) { flags |= 1 /* SignatureFlags.HasRestParameter */; } if (ts.isConstructorTypeNode(declaration) && ts.hasSyntacticModifier(declaration, 128 /* ModifierFlags.Abstract */) || ts.isConstructorDeclaration(declaration) && ts.hasSyntacticModifier(declaration.parent, 128 /* ModifierFlags.Abstract */)) { flags |= 4 /* SignatureFlags.Abstract */; } links.resolvedSignature = createSignature(declaration, typeParameters, thisParameter, parameters, /*resolvedReturnType*/ undefined, /*resolvedTypePredicate*/ undefined, minArgumentCount, flags); } return links.resolvedSignature; } /** * A JS function gets a synthetic rest parameter if it references `arguments` AND: * 1. It has no parameters but at least one `@param` with a type that starts with `...` * OR * 2. It has at least one parameter, and the last parameter has a matching `@param` with a type that starts with `...` */ function maybeAddJsSyntheticRestParameter(declaration, parameters) { if (ts.isJSDocSignature(declaration) || !containsArgumentsReference(declaration)) { return false; } var lastParam = ts.lastOrUndefined(declaration.parameters); var lastParamTags = lastParam ? ts.getJSDocParameterTags(lastParam) : ts.getJSDocTags(declaration).filter(ts.isJSDocParameterTag); var lastParamVariadicType = ts.firstDefined(lastParamTags, function (p) { return p.typeExpression && ts.isJSDocVariadicType(p.typeExpression.type) ? p.typeExpression.type : undefined; }); var syntheticArgsSymbol = createSymbol(3 /* SymbolFlags.Variable */, "args", 32768 /* CheckFlags.RestParameter */); if (lastParamVariadicType) { // Parameter has effective annotation, lock in type syntheticArgsSymbol.type = createArrayType(getTypeFromTypeNode(lastParamVariadicType.type)); } else { // Parameter has no annotation // By using a `DeferredType` symbol, we allow the type of this rest arg to be overriden by contextual type assignment so long as its type hasn't been // cached by `getTypeOfSymbol` yet. syntheticArgsSymbol.checkFlags |= 65536 /* CheckFlags.DeferredType */; syntheticArgsSymbol.deferralParent = neverType; syntheticArgsSymbol.deferralConstituents = [anyArrayType]; syntheticArgsSymbol.deferralWriteConstituents = [anyArrayType]; } if (lastParamVariadicType) { // Replace the last parameter with a rest parameter. parameters.pop(); } parameters.push(syntheticArgsSymbol); return true; } function getSignatureOfTypeTag(node) { // should be attached to a function declaration or expression if (!(ts.isInJSFile(node) && ts.isFunctionLikeDeclaration(node))) return undefined; var typeTag = ts.getJSDocTypeTag(node); return (typeTag === null || typeTag === void 0 ? void 0 : typeTag.typeExpression) && getSingleCallSignature(getTypeFromTypeNode(typeTag.typeExpression)); } function getParameterTypeOfTypeTag(func, parameter) { var signature = getSignatureOfTypeTag(func); if (!signature) return undefined; var pos = func.parameters.indexOf(parameter); return parameter.dotDotDotToken ? getRestTypeAtPosition(signature, pos) : getTypeAtPosition(signature, pos); } function getReturnTypeOfTypeTag(node) { var signature = getSignatureOfTypeTag(node); return signature && getReturnTypeOfSignature(signature); } function containsArgumentsReference(declaration) { var links = getNodeLinks(declaration); if (links.containsArgumentsReference === undefined) { if (links.flags & 8192 /* NodeCheckFlags.CaptureArguments */) { links.containsArgumentsReference = true; } else { links.containsArgumentsReference = traverse(declaration.body); } } return links.containsArgumentsReference; function traverse(node) { if (!node) return false; switch (node.kind) { case 79 /* SyntaxKind.Identifier */: return node.escapedText === argumentsSymbol.escapedName && getReferencedValueSymbol(node) === argumentsSymbol; case 167 /* SyntaxKind.PropertyDeclaration */: case 169 /* SyntaxKind.MethodDeclaration */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: return node.name.kind === 162 /* SyntaxKind.ComputedPropertyName */ && traverse(node.name); case 206 /* SyntaxKind.PropertyAccessExpression */: case 207 /* SyntaxKind.ElementAccessExpression */: return traverse(node.expression); case 296 /* SyntaxKind.PropertyAssignment */: return traverse(node.initializer); default: return !ts.nodeStartsNewLexicalEnvironment(node) && !ts.isPartOfTypeNode(node) && !!ts.forEachChild(node, traverse); } } } function getSignaturesOfSymbol(symbol) { if (!symbol || !symbol.declarations) return ts.emptyArray; var result = []; for (var i = 0; i < symbol.declarations.length; i++) { var decl = symbol.declarations[i]; if (!ts.isFunctionLike(decl)) continue; // Don't include signature if node is the implementation of an overloaded function. A node is considered // an implementation node if it has a body and the previous node is of the same kind and immediately // precedes the implementation node (i.e. has the same parent and ends where the implementation starts). if (i > 0 && decl.body) { var previous = symbol.declarations[i - 1]; if (decl.parent === previous.parent && decl.kind === previous.kind && decl.pos === previous.end) { continue; } } result.push(getSignatureFromDeclaration(decl)); } return result; } function resolveExternalModuleTypeByLiteral(name) { var moduleSym = resolveExternalModuleName(name, name); if (moduleSym) { var resolvedModuleSymbol = resolveExternalModuleSymbol(moduleSym); if (resolvedModuleSymbol) { return getTypeOfSymbol(resolvedModuleSymbol); } } return anyType; } function getThisTypeOfSignature(signature) { if (signature.thisParameter) { return getTypeOfSymbol(signature.thisParameter); } } function getTypePredicateOfSignature(signature) { if (!signature.resolvedTypePredicate) { if (signature.target) { var targetTypePredicate = getTypePredicateOfSignature(signature.target); signature.resolvedTypePredicate = targetTypePredicate ? instantiateTypePredicate(targetTypePredicate, signature.mapper) : noTypePredicate; } else if (signature.compositeSignatures) { signature.resolvedTypePredicate = getUnionOrIntersectionTypePredicate(signature.compositeSignatures, signature.compositeKind) || noTypePredicate; } else { var type = signature.declaration && ts.getEffectiveReturnTypeNode(signature.declaration); var jsdocPredicate = void 0; if (!type && ts.isInJSFile(signature.declaration)) { var jsdocSignature = getSignatureOfTypeTag(signature.declaration); if (jsdocSignature && signature !== jsdocSignature) { jsdocPredicate = getTypePredicateOfSignature(jsdocSignature); } } signature.resolvedTypePredicate = type && ts.isTypePredicateNode(type) ? createTypePredicateFromTypePredicateNode(type, signature) : jsdocPredicate || noTypePredicate; } ts.Debug.assert(!!signature.resolvedTypePredicate); } return signature.resolvedTypePredicate === noTypePredicate ? undefined : signature.resolvedTypePredicate; } function createTypePredicateFromTypePredicateNode(node, signature) { var parameterName = node.parameterName; var type = node.type && getTypeFromTypeNode(node.type); return parameterName.kind === 192 /* SyntaxKind.ThisType */ ? createTypePredicate(node.assertsModifier ? 2 /* TypePredicateKind.AssertsThis */ : 0 /* TypePredicateKind.This */, /*parameterName*/ undefined, /*parameterIndex*/ undefined, type) : createTypePredicate(node.assertsModifier ? 3 /* TypePredicateKind.AssertsIdentifier */ : 1 /* TypePredicateKind.Identifier */, parameterName.escapedText, ts.findIndex(signature.parameters, function (p) { return p.escapedName === parameterName.escapedText; }), type); } function getUnionOrIntersectionType(types, kind, unionReduction) { return kind !== 2097152 /* TypeFlags.Intersection */ ? getUnionType(types, unionReduction) : getIntersectionType(types); } function getReturnTypeOfSignature(signature) { if (!signature.resolvedReturnType) { if (!pushTypeResolution(signature, 3 /* TypeSystemPropertyName.ResolvedReturnType */)) { return errorType; } var type = signature.target ? instantiateType(getReturnTypeOfSignature(signature.target), signature.mapper) : signature.compositeSignatures ? instantiateType(getUnionOrIntersectionType(ts.map(signature.compositeSignatures, getReturnTypeOfSignature), signature.compositeKind, 2 /* UnionReduction.Subtype */), signature.mapper) : getReturnTypeFromAnnotation(signature.declaration) || (ts.nodeIsMissing(signature.declaration.body) ? anyType : getReturnTypeFromBody(signature.declaration)); if (signature.flags & 8 /* SignatureFlags.IsInnerCallChain */) { type = addOptionalTypeMarker(type); } else if (signature.flags & 16 /* SignatureFlags.IsOuterCallChain */) { type = getOptionalType(type); } if (!popTypeResolution()) { if (signature.declaration) { var typeNode = ts.getEffectiveReturnTypeNode(signature.declaration); if (typeNode) { error(typeNode, ts.Diagnostics.Return_type_annotation_circularly_references_itself); } else if (noImplicitAny) { var declaration = signature.declaration; var name = ts.getNameOfDeclaration(declaration); if (name) { error(name, ts.Diagnostics._0_implicitly_has_return_type_any_because_it_does_not_have_a_return_type_annotation_and_is_referenced_directly_or_indirectly_in_one_of_its_return_expressions, ts.declarationNameToString(name)); } else { error(declaration, ts.Diagnostics.Function_implicitly_has_return_type_any_because_it_does_not_have_a_return_type_annotation_and_is_referenced_directly_or_indirectly_in_one_of_its_return_expressions); } } } type = anyType; } signature.resolvedReturnType = type; } return signature.resolvedReturnType; } function getReturnTypeFromAnnotation(declaration) { if (declaration.kind === 171 /* SyntaxKind.Constructor */) { return getDeclaredTypeOfClassOrInterface(getMergedSymbol(declaration.parent.symbol)); } if (ts.isJSDocConstructSignature(declaration)) { return getTypeFromTypeNode(declaration.parameters[0].type); // TODO: GH#18217 } var typeNode = ts.getEffectiveReturnTypeNode(declaration); if (typeNode) { return getTypeFromTypeNode(typeNode); } if (declaration.kind === 172 /* SyntaxKind.GetAccessor */ && hasBindableName(declaration)) { var jsDocType = ts.isInJSFile(declaration) && getTypeForDeclarationFromJSDocComment(declaration); if (jsDocType) { return jsDocType; } var setter = ts.getDeclarationOfKind(getSymbolOfNode(declaration), 173 /* SyntaxKind.SetAccessor */); var setterType = getAnnotatedAccessorType(setter); if (setterType) { return setterType; } } return getReturnTypeOfTypeTag(declaration); } function isResolvingReturnTypeOfSignature(signature) { return !signature.resolvedReturnType && findResolutionCycleStartIndex(signature, 3 /* TypeSystemPropertyName.ResolvedReturnType */) >= 0; } function getRestTypeOfSignature(signature) { return tryGetRestTypeOfSignature(signature) || anyType; } function tryGetRestTypeOfSignature(signature) { if (signatureHasRestParameter(signature)) { var sigRestType = getTypeOfSymbol(signature.parameters[signature.parameters.length - 1]); var restType = isTupleType(sigRestType) ? getRestTypeOfTupleType(sigRestType) : sigRestType; return restType && getIndexTypeOfType(restType, numberType); } return undefined; } function getSignatureInstantiation(signature, typeArguments, isJavascript, inferredTypeParameters) { var instantiatedSignature = getSignatureInstantiationWithoutFillingInTypeArguments(signature, fillMissingTypeArguments(typeArguments, signature.typeParameters, getMinTypeArgumentCount(signature.typeParameters), isJavascript)); if (inferredTypeParameters) { var returnSignature = getSingleCallOrConstructSignature(getReturnTypeOfSignature(instantiatedSignature)); if (returnSignature) { var newReturnSignature = cloneSignature(returnSignature); newReturnSignature.typeParameters = inferredTypeParameters; var newInstantiatedSignature = cloneSignature(instantiatedSignature); newInstantiatedSignature.resolvedReturnType = getOrCreateTypeFromSignature(newReturnSignature); return newInstantiatedSignature; } } return instantiatedSignature; } function getSignatureInstantiationWithoutFillingInTypeArguments(signature, typeArguments) { var instantiations = signature.instantiations || (signature.instantiations = new ts.Map()); var id = getTypeListId(typeArguments); var instantiation = instantiations.get(id); if (!instantiation) { instantiations.set(id, instantiation = createSignatureInstantiation(signature, typeArguments)); } return instantiation; } function createSignatureInstantiation(signature, typeArguments) { return instantiateSignature(signature, createSignatureTypeMapper(signature, typeArguments), /*eraseTypeParameters*/ true); } function createSignatureTypeMapper(signature, typeArguments) { return createTypeMapper(signature.typeParameters, typeArguments); } function getErasedSignature(signature) { return signature.typeParameters ? signature.erasedSignatureCache || (signature.erasedSignatureCache = createErasedSignature(signature)) : signature; } function createErasedSignature(signature) { // Create an instantiation of the signature where all type arguments are the any type. return instantiateSignature(signature, createTypeEraser(signature.typeParameters), /*eraseTypeParameters*/ true); } function getCanonicalSignature(signature) { return signature.typeParameters ? signature.canonicalSignatureCache || (signature.canonicalSignatureCache = createCanonicalSignature(signature)) : signature; } function createCanonicalSignature(signature) { // Create an instantiation of the signature where each unconstrained type parameter is replaced with // its original. When a generic class or interface is instantiated, each generic method in the class or // interface is instantiated with a fresh set of cloned type parameters (which we need to handle scenarios // where different generations of the same type parameter are in scope). This leads to a lot of new type // identities, and potentially a lot of work comparing those identities, so here we create an instantiation // that uses the original type identities for all unconstrained type parameters. return getSignatureInstantiation(signature, ts.map(signature.typeParameters, function (tp) { return tp.target && !getConstraintOfTypeParameter(tp.target) ? tp.target : tp; }), ts.isInJSFile(signature.declaration)); } function getBaseSignature(signature) { var typeParameters = signature.typeParameters; if (typeParameters) { if (signature.baseSignatureCache) { return signature.baseSignatureCache; } var typeEraser = createTypeEraser(typeParameters); var baseConstraintMapper_1 = createTypeMapper(typeParameters, ts.map(typeParameters, function (tp) { return getConstraintOfTypeParameter(tp) || unknownType; })); var baseConstraints = ts.map(typeParameters, function (tp) { return instantiateType(tp, baseConstraintMapper_1) || unknownType; }); // Run N type params thru the immediate constraint mapper up to N times // This way any noncircular interdependent type parameters are definitely resolved to their external dependencies for (var i = 0; i < typeParameters.length - 1; i++) { baseConstraints = instantiateTypes(baseConstraints, baseConstraintMapper_1); } // and then apply a type eraser to remove any remaining circularly dependent type parameters baseConstraints = instantiateTypes(baseConstraints, typeEraser); return signature.baseSignatureCache = instantiateSignature(signature, createTypeMapper(typeParameters, baseConstraints), /*eraseTypeParameters*/ true); } return signature; } function getOrCreateTypeFromSignature(signature) { var _a; // There are two ways to declare a construct signature, one is by declaring a class constructor // using the constructor keyword, and the other is declaring a bare construct signature in an // object type literal or interface (using the new keyword). Each way of declaring a constructor // will result in a different declaration kind. if (!signature.isolatedSignatureType) { var kind = (_a = signature.declaration) === null || _a === void 0 ? void 0 : _a.kind; // If declaration is undefined, it is likely to be the signature of the default constructor. var isConstructor = kind === undefined || kind === 171 /* SyntaxKind.Constructor */ || kind === 175 /* SyntaxKind.ConstructSignature */ || kind === 180 /* SyntaxKind.ConstructorType */; var type = createObjectType(16 /* ObjectFlags.Anonymous */); type.members = emptySymbols; type.properties = ts.emptyArray; type.callSignatures = !isConstructor ? [signature] : ts.emptyArray; type.constructSignatures = isConstructor ? [signature] : ts.emptyArray; type.indexInfos = ts.emptyArray; signature.isolatedSignatureType = type; } return signature.isolatedSignatureType; } function getIndexSymbol(symbol) { return symbol.members ? getIndexSymbolFromSymbolTable(symbol.members) : undefined; } function getIndexSymbolFromSymbolTable(symbolTable) { return symbolTable.get("__index" /* InternalSymbolName.Index */); } function createIndexInfo(keyType, type, isReadonly, declaration) { return { keyType: keyType, type: type, isReadonly: isReadonly, declaration: declaration }; } function getIndexInfosOfSymbol(symbol) { var indexSymbol = getIndexSymbol(symbol); return indexSymbol ? getIndexInfosOfIndexSymbol(indexSymbol) : ts.emptyArray; } function getIndexInfosOfIndexSymbol(indexSymbol) { if (indexSymbol.declarations) { var indexInfos_4 = []; var _loop_14 = function (declaration) { if (declaration.parameters.length === 1) { var parameter = declaration.parameters[0]; if (parameter.type) { forEachType(getTypeFromTypeNode(parameter.type), function (keyType) { if (isValidIndexKeyType(keyType) && !findIndexInfo(indexInfos_4, keyType)) { indexInfos_4.push(createIndexInfo(keyType, declaration.type ? getTypeFromTypeNode(declaration.type) : anyType, ts.hasEffectiveModifier(declaration, 64 /* ModifierFlags.Readonly */), declaration)); } }); } } }; for (var _i = 0, _a = indexSymbol.declarations; _i < _a.length; _i++) { var declaration = _a[_i]; _loop_14(declaration); } return indexInfos_4; } return ts.emptyArray; } function isValidIndexKeyType(type) { return !!(type.flags & (4 /* TypeFlags.String */ | 8 /* TypeFlags.Number */ | 4096 /* TypeFlags.ESSymbol */)) || isPatternLiteralType(type) || !!(type.flags & 2097152 /* TypeFlags.Intersection */) && !isGenericType(type) && ts.some(type.types, isValidIndexKeyType); } function getConstraintDeclaration(type) { return ts.mapDefined(ts.filter(type.symbol && type.symbol.declarations, ts.isTypeParameterDeclaration), ts.getEffectiveConstraintOfTypeParameter)[0]; } function getInferredTypeParameterConstraint(typeParameter, omitTypeReferences) { var _a; var inferences; if ((_a = typeParameter.symbol) === null || _a === void 0 ? void 0 : _a.declarations) { for (var _i = 0, _b = typeParameter.symbol.declarations; _i < _b.length; _i++) { var declaration = _b[_i]; if (declaration.parent.kind === 190 /* SyntaxKind.InferType */) { // When an 'infer T' declaration is immediately contained in a type reference node // (such as 'Foo'), T's constraint is inferred from the constraint of the // corresponding type parameter in 'Foo'. When multiple 'infer T' declarations are // present, we form an intersection of the inferred constraint types. var _c = ts.walkUpParenthesizedTypesAndGetParentAndChild(declaration.parent.parent), _d = _c[0], childTypeParameter = _d === void 0 ? declaration.parent : _d, grandParent = _c[1]; if (grandParent.kind === 178 /* SyntaxKind.TypeReference */ && !omitTypeReferences) { var typeReference = grandParent; var typeParameters = getTypeParametersForTypeReference(typeReference); if (typeParameters) { var index = typeReference.typeArguments.indexOf(childTypeParameter); if (index < typeParameters.length) { var declaredConstraint = getConstraintOfTypeParameter(typeParameters[index]); if (declaredConstraint) { // Type parameter constraints can reference other type parameters so // constraints need to be instantiated. If instantiation produces the // type parameter itself, we discard that inference. For example, in // type Foo = [T, U]; // type Bar = T extends Foo ? Foo : T; // the instantiated constraint for U is X, so we discard that inference. var mapper = createTypeMapper(typeParameters, getEffectiveTypeArguments(typeReference, typeParameters)); var constraint = instantiateType(declaredConstraint, mapper); if (constraint !== typeParameter) { inferences = ts.append(inferences, constraint); } } } } } // When an 'infer T' declaration is immediately contained in a rest parameter declaration, a rest type // or a named rest tuple element, we infer an 'unknown[]' constraint. else if (grandParent.kind === 164 /* SyntaxKind.Parameter */ && grandParent.dotDotDotToken || grandParent.kind === 186 /* SyntaxKind.RestType */ || grandParent.kind === 197 /* SyntaxKind.NamedTupleMember */ && grandParent.dotDotDotToken) { inferences = ts.append(inferences, createArrayType(unknownType)); } // When an 'infer T' declaration is immediately contained in a string template type, we infer a 'string' // constraint. else if (grandParent.kind === 199 /* SyntaxKind.TemplateLiteralTypeSpan */) { inferences = ts.append(inferences, stringType); } // When an 'infer T' declaration is in the constraint position of a mapped type, we infer a 'keyof any' // constraint. else if (grandParent.kind === 163 /* SyntaxKind.TypeParameter */ && grandParent.parent.kind === 195 /* SyntaxKind.MappedType */) { inferences = ts.append(inferences, keyofConstraintType); } // When an 'infer T' declaration is the template of a mapped type, and that mapped type is the extends // clause of a conditional whose check type is also a mapped type, give it a constraint equal to the template // of the check type's mapped type else if (grandParent.kind === 195 /* SyntaxKind.MappedType */ && grandParent.type && ts.skipParentheses(grandParent.type) === declaration.parent && grandParent.parent.kind === 189 /* SyntaxKind.ConditionalType */ && grandParent.parent.extendsType === grandParent && grandParent.parent.checkType.kind === 195 /* SyntaxKind.MappedType */ && grandParent.parent.checkType.type) { var checkMappedType_1 = grandParent.parent.checkType; var nodeType = getTypeFromTypeNode(checkMappedType_1.type); inferences = ts.append(inferences, instantiateType(nodeType, makeUnaryTypeMapper(getDeclaredTypeOfTypeParameter(getSymbolOfNode(checkMappedType_1.typeParameter)), checkMappedType_1.typeParameter.constraint ? getTypeFromTypeNode(checkMappedType_1.typeParameter.constraint) : keyofConstraintType))); } } } } return inferences && getIntersectionType(inferences); } /** This is a worker function. Use getConstraintOfTypeParameter which guards against circular constraints. */ function getConstraintFromTypeParameter(typeParameter) { if (!typeParameter.constraint) { if (typeParameter.target) { var targetConstraint = getConstraintOfTypeParameter(typeParameter.target); typeParameter.constraint = targetConstraint ? instantiateType(targetConstraint, typeParameter.mapper) : noConstraintType; } else { var constraintDeclaration = getConstraintDeclaration(typeParameter); if (!constraintDeclaration) { typeParameter.constraint = getInferredTypeParameterConstraint(typeParameter) || noConstraintType; } else { var type = getTypeFromTypeNode(constraintDeclaration); if (type.flags & 1 /* TypeFlags.Any */ && !isErrorType(type)) { // Allow errorType to propegate to keep downstream errors suppressed // use keyofConstraintType as the base constraint for mapped type key constraints (unknown isn;t assignable to that, but `any` was), // use unknown otherwise type = constraintDeclaration.parent.parent.kind === 195 /* SyntaxKind.MappedType */ ? keyofConstraintType : unknownType; } typeParameter.constraint = type; } } } return typeParameter.constraint === noConstraintType ? undefined : typeParameter.constraint; } function getParentSymbolOfTypeParameter(typeParameter) { var tp = ts.getDeclarationOfKind(typeParameter.symbol, 163 /* SyntaxKind.TypeParameter */); var host = ts.isJSDocTemplateTag(tp.parent) ? ts.getEffectiveContainerForJSDocTemplateTag(tp.parent) : tp.parent; return host && getSymbolOfNode(host); } function getTypeListId(types) { var result = ""; if (types) { var length_4 = types.length; var i = 0; while (i < length_4) { var startId = types[i].id; var count = 1; while (i + count < length_4 && types[i + count].id === startId + count) { count++; } if (result.length) { result += ","; } result += startId; if (count > 1) { result += ":" + count; } i += count; } } return result; } function getAliasId(aliasSymbol, aliasTypeArguments) { return aliasSymbol ? "@".concat(getSymbolId(aliasSymbol)) + (aliasTypeArguments ? ":".concat(getTypeListId(aliasTypeArguments)) : "") : ""; } // This function is used to propagate certain flags when creating new object type references and union types. // It is only necessary to do so if a constituent type might be the undefined type, the null type, the type // of an object literal or the anyFunctionType. This is because there are operations in the type checker // that care about the presence of such types at arbitrary depth in a containing type. function getPropagatingFlagsOfTypes(types, excludeKinds) { var result = 0; for (var _i = 0, types_8 = types; _i < types_8.length; _i++) { var type = types_8[_i]; if (!(type.flags & excludeKinds)) { result |= ts.getObjectFlags(type); } } return result & 458752 /* ObjectFlags.PropagatingFlags */; } function createTypeReference(target, typeArguments) { var id = getTypeListId(typeArguments); var type = target.instantiations.get(id); if (!type) { type = createObjectType(4 /* ObjectFlags.Reference */, target.symbol); target.instantiations.set(id, type); type.objectFlags |= typeArguments ? getPropagatingFlagsOfTypes(typeArguments, /*excludeKinds*/ 0) : 0; type.target = target; type.resolvedTypeArguments = typeArguments; } return type; } function cloneTypeReference(source) { var type = createType(source.flags); type.symbol = source.symbol; type.objectFlags = source.objectFlags; type.target = source.target; type.resolvedTypeArguments = source.resolvedTypeArguments; return type; } function createDeferredTypeReference(target, node, mapper, aliasSymbol, aliasTypeArguments) { if (!aliasSymbol) { aliasSymbol = getAliasSymbolForTypeNode(node); var localAliasTypeArguments = getTypeArgumentsForAliasSymbol(aliasSymbol); aliasTypeArguments = mapper ? instantiateTypes(localAliasTypeArguments, mapper) : localAliasTypeArguments; } var type = createObjectType(4 /* ObjectFlags.Reference */, target.symbol); type.target = target; type.node = node; type.mapper = mapper; type.aliasSymbol = aliasSymbol; type.aliasTypeArguments = aliasTypeArguments; return type; } function getTypeArguments(type) { var _a, _b; if (!type.resolvedTypeArguments) { if (!pushTypeResolution(type, 6 /* TypeSystemPropertyName.ResolvedTypeArguments */)) { return ((_a = type.target.localTypeParameters) === null || _a === void 0 ? void 0 : _a.map(function () { return errorType; })) || ts.emptyArray; } var node = type.node; var typeArguments = !node ? ts.emptyArray : node.kind === 178 /* SyntaxKind.TypeReference */ ? ts.concatenate(type.target.outerTypeParameters, getEffectiveTypeArguments(node, type.target.localTypeParameters)) : node.kind === 183 /* SyntaxKind.ArrayType */ ? [getTypeFromTypeNode(node.elementType)] : ts.map(node.elements, getTypeFromTypeNode); if (popTypeResolution()) { type.resolvedTypeArguments = type.mapper ? instantiateTypes(typeArguments, type.mapper) : typeArguments; } else { type.resolvedTypeArguments = ((_b = type.target.localTypeParameters) === null || _b === void 0 ? void 0 : _b.map(function () { return errorType; })) || ts.emptyArray; error(type.node || currentNode, type.target.symbol ? ts.Diagnostics.Type_arguments_for_0_circularly_reference_themselves : ts.Diagnostics.Tuple_type_arguments_circularly_reference_themselves, type.target.symbol && symbolToString(type.target.symbol)); } } return type.resolvedTypeArguments; } function getTypeReferenceArity(type) { return ts.length(type.target.typeParameters); } /** * Get type from type-reference that reference to class or interface */ function getTypeFromClassOrInterfaceReference(node, symbol) { var type = getDeclaredTypeOfSymbol(getMergedSymbol(symbol)); var typeParameters = type.localTypeParameters; if (typeParameters) { var numTypeArguments = ts.length(node.typeArguments); var minTypeArgumentCount = getMinTypeArgumentCount(typeParameters); var isJs = ts.isInJSFile(node); var isJsImplicitAny = !noImplicitAny && isJs; if (!isJsImplicitAny && (numTypeArguments < minTypeArgumentCount || numTypeArguments > typeParameters.length)) { var missingAugmentsTag = isJs && ts.isExpressionWithTypeArguments(node) && !ts.isJSDocAugmentsTag(node.parent); var diag = minTypeArgumentCount === typeParameters.length ? missingAugmentsTag ? ts.Diagnostics.Expected_0_type_arguments_provide_these_with_an_extends_tag : ts.Diagnostics.Generic_type_0_requires_1_type_argument_s : missingAugmentsTag ? ts.Diagnostics.Expected_0_1_type_arguments_provide_these_with_an_extends_tag : ts.Diagnostics.Generic_type_0_requires_between_1_and_2_type_arguments; var typeStr = typeToString(type, /*enclosingDeclaration*/ undefined, 2 /* TypeFormatFlags.WriteArrayAsGenericType */); error(node, diag, typeStr, minTypeArgumentCount, typeParameters.length); if (!isJs) { // TODO: Adopt same permissive behavior in TS as in JS to reduce follow-on editing experience failures (requires editing fillMissingTypeArguments) return errorType; } } if (node.kind === 178 /* SyntaxKind.TypeReference */ && isDeferredTypeReferenceNode(node, ts.length(node.typeArguments) !== typeParameters.length)) { return createDeferredTypeReference(type, node, /*mapper*/ undefined); } // In a type reference, the outer type parameters of the referenced class or interface are automatically // supplied as type arguments and the type reference only specifies arguments for the local type parameters // of the class or interface. var typeArguments = ts.concatenate(type.outerTypeParameters, fillMissingTypeArguments(typeArgumentsFromTypeReferenceNode(node), typeParameters, minTypeArgumentCount, isJs)); return createTypeReference(type, typeArguments); } return checkNoTypeArguments(node, symbol) ? type : errorType; } function getTypeAliasInstantiation(symbol, typeArguments, aliasSymbol, aliasTypeArguments) { var type = getDeclaredTypeOfSymbol(symbol); if (type === intrinsicMarkerType && intrinsicTypeKinds.has(symbol.escapedName) && typeArguments && typeArguments.length === 1) { return getStringMappingType(symbol, typeArguments[0]); } var links = getSymbolLinks(symbol); var typeParameters = links.typeParameters; var id = getTypeListId(typeArguments) + getAliasId(aliasSymbol, aliasTypeArguments); var instantiation = links.instantiations.get(id); if (!instantiation) { links.instantiations.set(id, instantiation = instantiateTypeWithAlias(type, createTypeMapper(typeParameters, fillMissingTypeArguments(typeArguments, typeParameters, getMinTypeArgumentCount(typeParameters), ts.isInJSFile(symbol.valueDeclaration))), aliasSymbol, aliasTypeArguments)); } return instantiation; } /** * Get type from reference to type alias. When a type alias is generic, the declared type of the type alias may include * references to the type parameters of the alias. We replace those with the actual type arguments by instantiating the * declared type. Instantiations are cached using the type identities of the type arguments as the key. */ function getTypeFromTypeAliasReference(node, symbol) { if (ts.getCheckFlags(symbol) & 1048576 /* CheckFlags.Unresolved */) { var typeArguments = typeArgumentsFromTypeReferenceNode(node); var id = getAliasId(symbol, typeArguments); var errorType_1 = errorTypes.get(id); if (!errorType_1) { errorType_1 = createIntrinsicType(1 /* TypeFlags.Any */, "error"); errorType_1.aliasSymbol = symbol; errorType_1.aliasTypeArguments = typeArguments; errorTypes.set(id, errorType_1); } return errorType_1; } var type = getDeclaredTypeOfSymbol(symbol); var typeParameters = getSymbolLinks(symbol).typeParameters; if (typeParameters) { var numTypeArguments = ts.length(node.typeArguments); var minTypeArgumentCount = getMinTypeArgumentCount(typeParameters); if (numTypeArguments < minTypeArgumentCount || numTypeArguments > typeParameters.length) { error(node, minTypeArgumentCount === typeParameters.length ? ts.Diagnostics.Generic_type_0_requires_1_type_argument_s : ts.Diagnostics.Generic_type_0_requires_between_1_and_2_type_arguments, symbolToString(symbol), minTypeArgumentCount, typeParameters.length); return errorType; } // We refrain from associating a local type alias with an instantiation of a top-level type alias // because the local alias may end up being referenced in an inferred return type where it is not // accessible--which in turn may lead to a large structural expansion of the type when generating // a .d.ts file. See #43622 for an example. var aliasSymbol = getAliasSymbolForTypeNode(node); var newAliasSymbol = aliasSymbol && (isLocalTypeAlias(symbol) || !isLocalTypeAlias(aliasSymbol)) ? aliasSymbol : undefined; return getTypeAliasInstantiation(symbol, typeArgumentsFromTypeReferenceNode(node), newAliasSymbol, getTypeArgumentsForAliasSymbol(newAliasSymbol)); } return checkNoTypeArguments(node, symbol) ? type : errorType; } function isLocalTypeAlias(symbol) { var _a; var declaration = (_a = symbol.declarations) === null || _a === void 0 ? void 0 : _a.find(ts.isTypeAlias); return !!(declaration && ts.getContainingFunction(declaration)); } function getTypeReferenceName(node) { switch (node.kind) { case 178 /* SyntaxKind.TypeReference */: return node.typeName; case 228 /* SyntaxKind.ExpressionWithTypeArguments */: // We only support expressions that are simple qualified names. For other // expressions this produces undefined. var expr = node.expression; if (ts.isEntityNameExpression(expr)) { return expr; } // fall through; } return undefined; } function getSymbolPath(symbol) { return symbol.parent ? "".concat(getSymbolPath(symbol.parent), ".").concat(symbol.escapedName) : symbol.escapedName; } function getUnresolvedSymbolForEntityName(name) { var identifier = name.kind === 161 /* SyntaxKind.QualifiedName */ ? name.right : name.kind === 206 /* SyntaxKind.PropertyAccessExpression */ ? name.name : name; var text = identifier.escapedText; if (text) { var parentSymbol = name.kind === 161 /* SyntaxKind.QualifiedName */ ? getUnresolvedSymbolForEntityName(name.left) : name.kind === 206 /* SyntaxKind.PropertyAccessExpression */ ? getUnresolvedSymbolForEntityName(name.expression) : undefined; var path = parentSymbol ? "".concat(getSymbolPath(parentSymbol), ".").concat(text) : text; var result = unresolvedSymbols.get(path); if (!result) { unresolvedSymbols.set(path, result = createSymbol(524288 /* SymbolFlags.TypeAlias */, text, 1048576 /* CheckFlags.Unresolved */)); result.parent = parentSymbol; result.declaredType = unresolvedType; } return result; } return unknownSymbol; } function resolveTypeReferenceName(typeReference, meaning, ignoreErrors) { var name = getTypeReferenceName(typeReference); if (!name) { return unknownSymbol; } var symbol = resolveEntityName(name, meaning, ignoreErrors); return symbol && symbol !== unknownSymbol ? symbol : ignoreErrors ? unknownSymbol : getUnresolvedSymbolForEntityName(name); } function getTypeReferenceType(node, symbol) { if (symbol === unknownSymbol) { return errorType; } symbol = getExpandoSymbol(symbol) || symbol; if (symbol.flags & (32 /* SymbolFlags.Class */ | 64 /* SymbolFlags.Interface */)) { return getTypeFromClassOrInterfaceReference(node, symbol); } if (symbol.flags & 524288 /* SymbolFlags.TypeAlias */) { return getTypeFromTypeAliasReference(node, symbol); } // Get type from reference to named type that cannot be generic (enum or type parameter) var res = tryGetDeclaredTypeOfSymbol(symbol); if (res) { return checkNoTypeArguments(node, symbol) ? getRegularTypeOfLiteralType(res) : errorType; } if (symbol.flags & 111551 /* SymbolFlags.Value */ && isJSDocTypeReference(node)) { var jsdocType = getTypeFromJSDocValueReference(node, symbol); if (jsdocType) { return jsdocType; } else { // Resolve the type reference as a Type for the purpose of reporting errors. resolveTypeReferenceName(node, 788968 /* SymbolFlags.Type */); return getTypeOfSymbol(symbol); } } return errorType; } /** * A JSdoc TypeReference may be to a value, but resolve it as a type anyway. * Example: import('./b').ConstructorFunction */ function getTypeFromJSDocValueReference(node, symbol) { var links = getNodeLinks(node); if (!links.resolvedJSDocType) { var valueType = getTypeOfSymbol(symbol); var typeType = valueType; if (symbol.valueDeclaration) { var isImportTypeWithQualifier = node.kind === 200 /* SyntaxKind.ImportType */ && node.qualifier; // valueType might not have a symbol, eg, {import('./b').STRING_LITERAL} if (valueType.symbol && valueType.symbol !== symbol && isImportTypeWithQualifier) { typeType = getTypeReferenceType(node, valueType.symbol); } } links.resolvedJSDocType = typeType; } return links.resolvedJSDocType; } function getSubstitutionType(baseType, substitute) { if (substitute.flags & 3 /* TypeFlags.AnyOrUnknown */ || substitute === baseType) { return baseType; } var id = "".concat(getTypeId(baseType), ">").concat(getTypeId(substitute)); var cached = substitutionTypes.get(id); if (cached) { return cached; } var result = createType(33554432 /* TypeFlags.Substitution */); result.baseType = baseType; result.substitute = substitute; substitutionTypes.set(id, result); return result; } function isUnaryTupleTypeNode(node) { return node.kind === 184 /* SyntaxKind.TupleType */ && node.elements.length === 1; } function getImpliedConstraint(type, checkNode, extendsNode) { return isUnaryTupleTypeNode(checkNode) && isUnaryTupleTypeNode(extendsNode) ? getImpliedConstraint(type, checkNode.elements[0], extendsNode.elements[0]) : getActualTypeVariable(getTypeFromTypeNode(checkNode)) === getActualTypeVariable(type) ? getTypeFromTypeNode(extendsNode) : undefined; } function getConditionalFlowTypeOfType(type, node) { var constraints; var covariant = true; while (node && !ts.isStatement(node) && node.kind !== 320 /* SyntaxKind.JSDoc */) { var parent = node.parent; // only consider variance flipped by parameter locations - `keyof` types would usually be considered variance inverting, but // often get used in indexed accesses where they behave sortof invariantly, but our checking is lax if (parent.kind === 164 /* SyntaxKind.Parameter */) { covariant = !covariant; } // Always substitute on type parameters, regardless of variance, since even // in contravariant positions, they may rely on substituted constraints to be valid if ((covariant || type.flags & 8650752 /* TypeFlags.TypeVariable */) && parent.kind === 189 /* SyntaxKind.ConditionalType */ && node === parent.trueType) { var constraint = getImpliedConstraint(type, parent.checkType, parent.extendsType); if (constraint) { constraints = ts.append(constraints, constraint); } } // Given a homomorphic mapped type { [K in keyof T]: XXX }, where T is constrained to an array or tuple type, in the // template type XXX, K has an added constraint of number | `${number}`. else if (type.flags & 262144 /* TypeFlags.TypeParameter */ && parent.kind === 195 /* SyntaxKind.MappedType */ && node === parent.type) { var mappedType = getTypeFromTypeNode(parent); if (getTypeParameterFromMappedType(mappedType) === getActualTypeVariable(type)) { var typeParameter = getHomomorphicTypeVariable(mappedType); if (typeParameter) { var constraint = getConstraintOfTypeParameter(typeParameter); if (constraint && everyType(constraint, isArrayOrTupleType)) { constraints = ts.append(constraints, getUnionType([numberType, numericStringType])); } } } } node = parent; } return constraints ? getSubstitutionType(type, getIntersectionType(ts.append(constraints, type))) : type; } function isJSDocTypeReference(node) { return !!(node.flags & 8388608 /* NodeFlags.JSDoc */) && (node.kind === 178 /* SyntaxKind.TypeReference */ || node.kind === 200 /* SyntaxKind.ImportType */); } function checkNoTypeArguments(node, symbol) { if (node.typeArguments) { error(node, ts.Diagnostics.Type_0_is_not_generic, symbol ? symbolToString(symbol) : node.typeName ? ts.declarationNameToString(node.typeName) : anon); return false; } return true; } function getIntendedTypeFromJSDocTypeReference(node) { if (ts.isIdentifier(node.typeName)) { var typeArgs = node.typeArguments; switch (node.typeName.escapedText) { case "String": checkNoTypeArguments(node); return stringType; case "Number": checkNoTypeArguments(node); return numberType; case "Boolean": checkNoTypeArguments(node); return booleanType; case "Void": checkNoTypeArguments(node); return voidType; case "Undefined": checkNoTypeArguments(node); return undefinedType; case "Null": checkNoTypeArguments(node); return nullType; case "Function": case "function": checkNoTypeArguments(node); return globalFunctionType; case "array": return (!typeArgs || !typeArgs.length) && !noImplicitAny ? anyArrayType : undefined; case "promise": return (!typeArgs || !typeArgs.length) && !noImplicitAny ? createPromiseType(anyType) : undefined; case "Object": if (typeArgs && typeArgs.length === 2) { if (ts.isJSDocIndexSignature(node)) { var indexed = getTypeFromTypeNode(typeArgs[0]); var target = getTypeFromTypeNode(typeArgs[1]); var indexInfo = indexed === stringType || indexed === numberType ? [createIndexInfo(indexed, target, /*isReadonly*/ false)] : ts.emptyArray; return createAnonymousType(undefined, emptySymbols, ts.emptyArray, ts.emptyArray, indexInfo); } return anyType; } checkNoTypeArguments(node); return !noImplicitAny ? anyType : undefined; } } } function getTypeFromJSDocNullableTypeNode(node) { var type = getTypeFromTypeNode(node.type); return strictNullChecks ? getNullableType(type, 65536 /* TypeFlags.Null */) : type; } function getTypeFromTypeReference(node) { var links = getNodeLinks(node); if (!links.resolvedType) { // handle LS queries on the `const` in `x as const` by resolving to the type of `x` if (ts.isConstTypeReference(node) && ts.isAssertionExpression(node.parent)) { links.resolvedSymbol = unknownSymbol; return links.resolvedType = checkExpressionCached(node.parent.expression); } var symbol = void 0; var type = void 0; var meaning = 788968 /* SymbolFlags.Type */; if (isJSDocTypeReference(node)) { type = getIntendedTypeFromJSDocTypeReference(node); if (!type) { symbol = resolveTypeReferenceName(node, meaning, /*ignoreErrors*/ true); if (symbol === unknownSymbol) { symbol = resolveTypeReferenceName(node, meaning | 111551 /* SymbolFlags.Value */); } else { resolveTypeReferenceName(node, meaning); // Resolve again to mark errors, if any } type = getTypeReferenceType(node, symbol); } } if (!type) { symbol = resolveTypeReferenceName(node, meaning); type = getTypeReferenceType(node, symbol); } // Cache both the resolved symbol and the resolved type. The resolved symbol is needed when we check the // type reference in checkTypeReferenceNode. links.resolvedSymbol = symbol; links.resolvedType = type; } return links.resolvedType; } function typeArgumentsFromTypeReferenceNode(node) { return ts.map(node.typeArguments, getTypeFromTypeNode); } function getTypeFromTypeQueryNode(node) { var links = getNodeLinks(node); if (!links.resolvedType) { // TypeScript 1.0 spec (April 2014): 3.6.3 // The expression is processed as an identifier expression (section 4.3) // or property access expression(section 4.10), // the widened type(section 3.9) of which becomes the result. var type = checkExpressionWithTypeArguments(node); links.resolvedType = getRegularTypeOfLiteralType(getWidenedType(type)); } return links.resolvedType; } function getTypeOfGlobalSymbol(symbol, arity) { function getTypeDeclaration(symbol) { var declarations = symbol.declarations; if (declarations) { for (var _i = 0, declarations_3 = declarations; _i < declarations_3.length; _i++) { var declaration = declarations_3[_i]; switch (declaration.kind) { case 257 /* SyntaxKind.ClassDeclaration */: case 258 /* SyntaxKind.InterfaceDeclaration */: case 260 /* SyntaxKind.EnumDeclaration */: return declaration; } } } } if (!symbol) { return arity ? emptyGenericType : emptyObjectType; } var type = getDeclaredTypeOfSymbol(symbol); if (!(type.flags & 524288 /* TypeFlags.Object */)) { error(getTypeDeclaration(symbol), ts.Diagnostics.Global_type_0_must_be_a_class_or_interface_type, ts.symbolName(symbol)); return arity ? emptyGenericType : emptyObjectType; } if (ts.length(type.typeParameters) !== arity) { error(getTypeDeclaration(symbol), ts.Diagnostics.Global_type_0_must_have_1_type_parameter_s, ts.symbolName(symbol), arity); return arity ? emptyGenericType : emptyObjectType; } return type; } function getGlobalValueSymbol(name, reportErrors) { return getGlobalSymbol(name, 111551 /* SymbolFlags.Value */, reportErrors ? ts.Diagnostics.Cannot_find_global_value_0 : undefined); } function getGlobalTypeSymbol(name, reportErrors) { return getGlobalSymbol(name, 788968 /* SymbolFlags.Type */, reportErrors ? ts.Diagnostics.Cannot_find_global_type_0 : undefined); } function getGlobalTypeAliasSymbol(name, arity, reportErrors) { var symbol = getGlobalSymbol(name, 788968 /* SymbolFlags.Type */, reportErrors ? ts.Diagnostics.Cannot_find_global_type_0 : undefined); if (symbol) { // Resolve the declared type of the symbol. This resolves type parameters for the type // alias so that we can check arity. getDeclaredTypeOfSymbol(symbol); if (ts.length(getSymbolLinks(symbol).typeParameters) !== arity) { var decl = symbol.declarations && ts.find(symbol.declarations, ts.isTypeAliasDeclaration); error(decl, ts.Diagnostics.Global_type_0_must_have_1_type_parameter_s, ts.symbolName(symbol), arity); return undefined; } } return symbol; } function getGlobalSymbol(name, meaning, diagnostic) { // Don't track references for global symbols anyway, so value if `isReference` is arbitrary return resolveName(undefined, name, meaning, diagnostic, name, /*isUse*/ false, /*excludeGlobals*/ false, /*getSpellingSuggestions*/ false); } function getGlobalType(name, arity, reportErrors) { var symbol = getGlobalTypeSymbol(name, reportErrors); return symbol || reportErrors ? getTypeOfGlobalSymbol(symbol, arity) : undefined; } function getGlobalTypedPropertyDescriptorType() { // We always report an error, so store a result in the event we could not resolve the symbol to prevent reporting it multiple times return deferredGlobalTypedPropertyDescriptorType || (deferredGlobalTypedPropertyDescriptorType = getGlobalType("TypedPropertyDescriptor", /*arity*/ 1, /*reportErrors*/ true) || emptyGenericType); } function getGlobalTemplateStringsArrayType() { // We always report an error, so store a result in the event we could not resolve the symbol to prevent reporting it multiple times return deferredGlobalTemplateStringsArrayType || (deferredGlobalTemplateStringsArrayType = getGlobalType("TemplateStringsArray", /*arity*/ 0, /*reportErrors*/ true) || emptyObjectType); } function getGlobalImportMetaType() { // We always report an error, so store a result in the event we could not resolve the symbol to prevent reporting it multiple times return deferredGlobalImportMetaType || (deferredGlobalImportMetaType = getGlobalType("ImportMeta", /*arity*/ 0, /*reportErrors*/ true) || emptyObjectType); } function getGlobalImportMetaExpressionType() { if (!deferredGlobalImportMetaExpressionType) { // Create a synthetic type `ImportMetaExpression { meta: MetaProperty }` var symbol = createSymbol(0 /* SymbolFlags.None */, "ImportMetaExpression"); var importMetaType = getGlobalImportMetaType(); var metaPropertySymbol = createSymbol(4 /* SymbolFlags.Property */, "meta", 8 /* CheckFlags.Readonly */); metaPropertySymbol.parent = symbol; metaPropertySymbol.type = importMetaType; var members = ts.createSymbolTable([metaPropertySymbol]); symbol.members = members; deferredGlobalImportMetaExpressionType = createAnonymousType(symbol, members, ts.emptyArray, ts.emptyArray, ts.emptyArray); } return deferredGlobalImportMetaExpressionType; } function getGlobalImportCallOptionsType(reportErrors) { return (deferredGlobalImportCallOptionsType || (deferredGlobalImportCallOptionsType = getGlobalType("ImportCallOptions", /*arity*/ 0, reportErrors))) || emptyObjectType; } function getGlobalESSymbolConstructorSymbol(reportErrors) { return deferredGlobalESSymbolConstructorSymbol || (deferredGlobalESSymbolConstructorSymbol = getGlobalValueSymbol("Symbol", reportErrors)); } function getGlobalESSymbolConstructorTypeSymbol(reportErrors) { return deferredGlobalESSymbolConstructorTypeSymbol || (deferredGlobalESSymbolConstructorTypeSymbol = getGlobalTypeSymbol("SymbolConstructor", reportErrors)); } function getGlobalESSymbolType() { return (deferredGlobalESSymbolType || (deferredGlobalESSymbolType = getGlobalType("Symbol", /*arity*/ 0, /*reportErrors*/ false))) || emptyObjectType; } function getGlobalPromiseType(reportErrors) { return (deferredGlobalPromiseType || (deferredGlobalPromiseType = getGlobalType("Promise", /*arity*/ 1, reportErrors))) || emptyGenericType; } function getGlobalPromiseLikeType(reportErrors) { return (deferredGlobalPromiseLikeType || (deferredGlobalPromiseLikeType = getGlobalType("PromiseLike", /*arity*/ 1, reportErrors))) || emptyGenericType; } function getGlobalPromiseConstructorSymbol(reportErrors) { return deferredGlobalPromiseConstructorSymbol || (deferredGlobalPromiseConstructorSymbol = getGlobalValueSymbol("Promise", reportErrors)); } function getGlobalPromiseConstructorLikeType(reportErrors) { return (deferredGlobalPromiseConstructorLikeType || (deferredGlobalPromiseConstructorLikeType = getGlobalType("PromiseConstructorLike", /*arity*/ 0, reportErrors))) || emptyObjectType; } function getGlobalAsyncIterableType(reportErrors) { return (deferredGlobalAsyncIterableType || (deferredGlobalAsyncIterableType = getGlobalType("AsyncIterable", /*arity*/ 1, reportErrors))) || emptyGenericType; } function getGlobalAsyncIteratorType(reportErrors) { return (deferredGlobalAsyncIteratorType || (deferredGlobalAsyncIteratorType = getGlobalType("AsyncIterator", /*arity*/ 3, reportErrors))) || emptyGenericType; } function getGlobalAsyncIterableIteratorType(reportErrors) { return (deferredGlobalAsyncIterableIteratorType || (deferredGlobalAsyncIterableIteratorType = getGlobalType("AsyncIterableIterator", /*arity*/ 1, reportErrors))) || emptyGenericType; } function getGlobalAsyncGeneratorType(reportErrors) { return (deferredGlobalAsyncGeneratorType || (deferredGlobalAsyncGeneratorType = getGlobalType("AsyncGenerator", /*arity*/ 3, reportErrors))) || emptyGenericType; } function getGlobalIterableType(reportErrors) { return (deferredGlobalIterableType || (deferredGlobalIterableType = getGlobalType("Iterable", /*arity*/ 1, reportErrors))) || emptyGenericType; } function getGlobalIteratorType(reportErrors) { return (deferredGlobalIteratorType || (deferredGlobalIteratorType = getGlobalType("Iterator", /*arity*/ 3, reportErrors))) || emptyGenericType; } function getGlobalIterableIteratorType(reportErrors) { return (deferredGlobalIterableIteratorType || (deferredGlobalIterableIteratorType = getGlobalType("IterableIterator", /*arity*/ 1, reportErrors))) || emptyGenericType; } function getGlobalGeneratorType(reportErrors) { return (deferredGlobalGeneratorType || (deferredGlobalGeneratorType = getGlobalType("Generator", /*arity*/ 3, reportErrors))) || emptyGenericType; } function getGlobalIteratorYieldResultType(reportErrors) { return (deferredGlobalIteratorYieldResultType || (deferredGlobalIteratorYieldResultType = getGlobalType("IteratorYieldResult", /*arity*/ 1, reportErrors))) || emptyGenericType; } function getGlobalIteratorReturnResultType(reportErrors) { return (deferredGlobalIteratorReturnResultType || (deferredGlobalIteratorReturnResultType = getGlobalType("IteratorReturnResult", /*arity*/ 1, reportErrors))) || emptyGenericType; } function getGlobalTypeOrUndefined(name, arity) { if (arity === void 0) { arity = 0; } var symbol = getGlobalSymbol(name, 788968 /* SymbolFlags.Type */, /*diagnostic*/ undefined); return symbol && getTypeOfGlobalSymbol(symbol, arity); } function getGlobalExtractSymbol() { // We always report an error, so cache a result in the event we could not resolve the symbol to prevent reporting it multiple times deferredGlobalExtractSymbol || (deferredGlobalExtractSymbol = getGlobalTypeAliasSymbol("Extract", /*arity*/ 2, /*reportErrors*/ true) || unknownSymbol); return deferredGlobalExtractSymbol === unknownSymbol ? undefined : deferredGlobalExtractSymbol; } function getGlobalOmitSymbol() { // We always report an error, so cache a result in the event we could not resolve the symbol to prevent reporting it multiple times deferredGlobalOmitSymbol || (deferredGlobalOmitSymbol = getGlobalTypeAliasSymbol("Omit", /*arity*/ 2, /*reportErrors*/ true) || unknownSymbol); return deferredGlobalOmitSymbol === unknownSymbol ? undefined : deferredGlobalOmitSymbol; } function getGlobalAwaitedSymbol(reportErrors) { // Only cache `unknownSymbol` if we are reporting errors so that we don't report the error more than once. deferredGlobalAwaitedSymbol || (deferredGlobalAwaitedSymbol = getGlobalTypeAliasSymbol("Awaited", /*arity*/ 1, reportErrors) || (reportErrors ? unknownSymbol : undefined)); return deferredGlobalAwaitedSymbol === unknownSymbol ? undefined : deferredGlobalAwaitedSymbol; } function getGlobalBigIntType() { return (deferredGlobalBigIntType || (deferredGlobalBigIntType = getGlobalType("BigInt", /*arity*/ 0, /*reportErrors*/ false))) || emptyObjectType; } /** * Instantiates a global type that is generic with some element type, and returns that instantiation. */ function createTypeFromGenericGlobalType(genericGlobalType, typeArguments) { return genericGlobalType !== emptyGenericType ? createTypeReference(genericGlobalType, typeArguments) : emptyObjectType; } function createTypedPropertyDescriptorType(propertyType) { return createTypeFromGenericGlobalType(getGlobalTypedPropertyDescriptorType(), [propertyType]); } function createIterableType(iteratedType) { return createTypeFromGenericGlobalType(getGlobalIterableType(/*reportErrors*/ true), [iteratedType]); } function createArrayType(elementType, readonly) { return createTypeFromGenericGlobalType(readonly ? globalReadonlyArrayType : globalArrayType, [elementType]); } function getTupleElementFlags(node) { switch (node.kind) { case 185 /* SyntaxKind.OptionalType */: return 2 /* ElementFlags.Optional */; case 186 /* SyntaxKind.RestType */: return getRestTypeElementFlags(node); case 197 /* SyntaxKind.NamedTupleMember */: return node.questionToken ? 2 /* ElementFlags.Optional */ : node.dotDotDotToken ? getRestTypeElementFlags(node) : 1 /* ElementFlags.Required */; default: return 1 /* ElementFlags.Required */; } } function getRestTypeElementFlags(node) { return getArrayElementTypeNode(node.type) ? 4 /* ElementFlags.Rest */ : 8 /* ElementFlags.Variadic */; } function getArrayOrTupleTargetType(node) { var readonly = isReadonlyTypeOperator(node.parent); var elementType = getArrayElementTypeNode(node); if (elementType) { return readonly ? globalReadonlyArrayType : globalArrayType; } var elementFlags = ts.map(node.elements, getTupleElementFlags); var missingName = ts.some(node.elements, function (e) { return e.kind !== 197 /* SyntaxKind.NamedTupleMember */; }); return getTupleTargetType(elementFlags, readonly, /*associatedNames*/ missingName ? undefined : node.elements); } // Return true if the given type reference node is directly aliased or if it needs to be deferred // because it is possibly contained in a circular chain of eagerly resolved types. function isDeferredTypeReferenceNode(node, hasDefaultTypeArguments) { return !!getAliasSymbolForTypeNode(node) || isResolvedByTypeAlias(node) && (node.kind === 183 /* SyntaxKind.ArrayType */ ? mayResolveTypeAlias(node.elementType) : node.kind === 184 /* SyntaxKind.TupleType */ ? ts.some(node.elements, mayResolveTypeAlias) : hasDefaultTypeArguments || ts.some(node.typeArguments, mayResolveTypeAlias)); } // Return true when the given node is transitively contained in type constructs that eagerly // resolve their constituent types. We include SyntaxKind.TypeReference because type arguments // of type aliases are eagerly resolved. function isResolvedByTypeAlias(node) { var parent = node.parent; switch (parent.kind) { case 191 /* SyntaxKind.ParenthesizedType */: case 197 /* SyntaxKind.NamedTupleMember */: case 178 /* SyntaxKind.TypeReference */: case 187 /* SyntaxKind.UnionType */: case 188 /* SyntaxKind.IntersectionType */: case 194 /* SyntaxKind.IndexedAccessType */: case 189 /* SyntaxKind.ConditionalType */: case 193 /* SyntaxKind.TypeOperator */: case 183 /* SyntaxKind.ArrayType */: case 184 /* SyntaxKind.TupleType */: return isResolvedByTypeAlias(parent); case 259 /* SyntaxKind.TypeAliasDeclaration */: return true; } return false; } // Return true if resolving the given node (i.e. getTypeFromTypeNode) possibly causes resolution // of a type alias. function mayResolveTypeAlias(node) { switch (node.kind) { case 178 /* SyntaxKind.TypeReference */: return isJSDocTypeReference(node) || !!(resolveTypeReferenceName(node, 788968 /* SymbolFlags.Type */).flags & 524288 /* SymbolFlags.TypeAlias */); case 181 /* SyntaxKind.TypeQuery */: return true; case 193 /* SyntaxKind.TypeOperator */: return node.operator !== 154 /* SyntaxKind.UniqueKeyword */ && mayResolveTypeAlias(node.type); case 191 /* SyntaxKind.ParenthesizedType */: case 185 /* SyntaxKind.OptionalType */: case 197 /* SyntaxKind.NamedTupleMember */: case 316 /* SyntaxKind.JSDocOptionalType */: case 314 /* SyntaxKind.JSDocNullableType */: case 315 /* SyntaxKind.JSDocNonNullableType */: case 309 /* SyntaxKind.JSDocTypeExpression */: return mayResolveTypeAlias(node.type); case 186 /* SyntaxKind.RestType */: return node.type.kind !== 183 /* SyntaxKind.ArrayType */ || mayResolveTypeAlias(node.type.elementType); case 187 /* SyntaxKind.UnionType */: case 188 /* SyntaxKind.IntersectionType */: return ts.some(node.types, mayResolveTypeAlias); case 194 /* SyntaxKind.IndexedAccessType */: return mayResolveTypeAlias(node.objectType) || mayResolveTypeAlias(node.indexType); case 189 /* SyntaxKind.ConditionalType */: return mayResolveTypeAlias(node.checkType) || mayResolveTypeAlias(node.extendsType) || mayResolveTypeAlias(node.trueType) || mayResolveTypeAlias(node.falseType); } return false; } function getTypeFromArrayOrTupleTypeNode(node) { var links = getNodeLinks(node); if (!links.resolvedType) { var target = getArrayOrTupleTargetType(node); if (target === emptyGenericType) { links.resolvedType = emptyObjectType; } else if (!(node.kind === 184 /* SyntaxKind.TupleType */ && ts.some(node.elements, function (e) { return !!(getTupleElementFlags(e) & 8 /* ElementFlags.Variadic */); })) && isDeferredTypeReferenceNode(node)) { links.resolvedType = node.kind === 184 /* SyntaxKind.TupleType */ && node.elements.length === 0 ? target : createDeferredTypeReference(target, node, /*mapper*/ undefined); } else { var elementTypes = node.kind === 183 /* SyntaxKind.ArrayType */ ? [getTypeFromTypeNode(node.elementType)] : ts.map(node.elements, getTypeFromTypeNode); links.resolvedType = createNormalizedTypeReference(target, elementTypes); } } return links.resolvedType; } function isReadonlyTypeOperator(node) { return ts.isTypeOperatorNode(node) && node.operator === 145 /* SyntaxKind.ReadonlyKeyword */; } function createTupleType(elementTypes, elementFlags, readonly, namedMemberDeclarations) { if (readonly === void 0) { readonly = false; } var tupleTarget = getTupleTargetType(elementFlags || ts.map(elementTypes, function (_) { return 1 /* ElementFlags.Required */; }), readonly, namedMemberDeclarations); return tupleTarget === emptyGenericType ? emptyObjectType : elementTypes.length ? createNormalizedTypeReference(tupleTarget, elementTypes) : tupleTarget; } function getTupleTargetType(elementFlags, readonly, namedMemberDeclarations) { if (elementFlags.length === 1 && elementFlags[0] & 4 /* ElementFlags.Rest */) { // [...X[]] is equivalent to just X[] return readonly ? globalReadonlyArrayType : globalArrayType; } var key = ts.map(elementFlags, function (f) { return f & 1 /* ElementFlags.Required */ ? "#" : f & 2 /* ElementFlags.Optional */ ? "?" : f & 4 /* ElementFlags.Rest */ ? "." : "*"; }).join() + (readonly ? "R" : "") + (namedMemberDeclarations && namedMemberDeclarations.length ? "," + ts.map(namedMemberDeclarations, getNodeId).join(",") : ""); var type = tupleTypes.get(key); if (!type) { tupleTypes.set(key, type = createTupleTargetType(elementFlags, readonly, namedMemberDeclarations)); } return type; } // We represent tuple types as type references to synthesized generic interface types created by // this function. The types are of the form: // // interface Tuple extends Array { 0: T0, 1: T1, 2: T2, ... } // // Note that the generic type created by this function has no symbol associated with it. The same // is true for each of the synthesized type parameters. function createTupleTargetType(elementFlags, readonly, namedMemberDeclarations) { var arity = elementFlags.length; var minLength = ts.countWhere(elementFlags, function (f) { return !!(f & (1 /* ElementFlags.Required */ | 8 /* ElementFlags.Variadic */)); }); var typeParameters; var properties = []; var combinedFlags = 0; if (arity) { typeParameters = new Array(arity); for (var i = 0; i < arity; i++) { var typeParameter = typeParameters[i] = createTypeParameter(); var flags = elementFlags[i]; combinedFlags |= flags; if (!(combinedFlags & 12 /* ElementFlags.Variable */)) { var property = createSymbol(4 /* SymbolFlags.Property */ | (flags & 2 /* ElementFlags.Optional */ ? 16777216 /* SymbolFlags.Optional */ : 0), "" + i, readonly ? 8 /* CheckFlags.Readonly */ : 0); property.tupleLabelDeclaration = namedMemberDeclarations === null || namedMemberDeclarations === void 0 ? void 0 : namedMemberDeclarations[i]; property.type = typeParameter; properties.push(property); } } } var fixedLength = properties.length; var lengthSymbol = createSymbol(4 /* SymbolFlags.Property */, "length", readonly ? 8 /* CheckFlags.Readonly */ : 0); if (combinedFlags & 12 /* ElementFlags.Variable */) { lengthSymbol.type = numberType; } else { var literalTypes = []; for (var i = minLength; i <= arity; i++) literalTypes.push(getNumberLiteralType(i)); lengthSymbol.type = getUnionType(literalTypes); } properties.push(lengthSymbol); var type = createObjectType(8 /* ObjectFlags.Tuple */ | 4 /* ObjectFlags.Reference */); type.typeParameters = typeParameters; type.outerTypeParameters = undefined; type.localTypeParameters = typeParameters; type.instantiations = new ts.Map(); type.instantiations.set(getTypeListId(type.typeParameters), type); type.target = type; type.resolvedTypeArguments = type.typeParameters; type.thisType = createTypeParameter(); type.thisType.isThisType = true; type.thisType.constraint = type; type.declaredProperties = properties; type.declaredCallSignatures = ts.emptyArray; type.declaredConstructSignatures = ts.emptyArray; type.declaredIndexInfos = ts.emptyArray; type.elementFlags = elementFlags; type.minLength = minLength; type.fixedLength = fixedLength; type.hasRestElement = !!(combinedFlags & 12 /* ElementFlags.Variable */); type.combinedFlags = combinedFlags; type.readonly = readonly; type.labeledElementDeclarations = namedMemberDeclarations; return type; } function createNormalizedTypeReference(target, typeArguments) { return target.objectFlags & 8 /* ObjectFlags.Tuple */ ? createNormalizedTupleType(target, typeArguments) : createTypeReference(target, typeArguments); } function createNormalizedTupleType(target, elementTypes) { var _a, _b, _c; if (!(target.combinedFlags & 14 /* ElementFlags.NonRequired */)) { // No need to normalize when we only have regular required elements return createTypeReference(target, elementTypes); } if (target.combinedFlags & 8 /* ElementFlags.Variadic */) { // Transform [A, ...(X | Y | Z)] into [A, ...X] | [A, ...Y] | [A, ...Z] var unionIndex_1 = ts.findIndex(elementTypes, function (t, i) { return !!(target.elementFlags[i] & 8 /* ElementFlags.Variadic */ && t.flags & (131072 /* TypeFlags.Never */ | 1048576 /* TypeFlags.Union */)); }); if (unionIndex_1 >= 0) { return checkCrossProductUnion(ts.map(elementTypes, function (t, i) { return target.elementFlags[i] & 8 /* ElementFlags.Variadic */ ? t : unknownType; })) ? mapType(elementTypes[unionIndex_1], function (t) { return createNormalizedTupleType(target, ts.replaceElement(elementTypes, unionIndex_1, t)); }) : errorType; } } // We have optional, rest, or variadic elements that may need normalizing. Normalization ensures that all variadic // elements are generic and that the tuple type has one of the following layouts, disregarding variadic elements: // (1) Zero or more required elements, followed by zero or more optional elements, followed by zero or one rest element. // (2) Zero or more required elements, followed by a rest element, followed by zero or more required elements. // In either layout, zero or more generic variadic elements may be present at any location. var expandedTypes = []; var expandedFlags = []; var expandedDeclarations = []; var lastRequiredIndex = -1; var firstRestIndex = -1; var lastOptionalOrRestIndex = -1; var _loop_15 = function (i) { var type = elementTypes[i]; var flags = target.elementFlags[i]; if (flags & 8 /* ElementFlags.Variadic */) { if (type.flags & 58982400 /* TypeFlags.InstantiableNonPrimitive */ || isGenericMappedType(type)) { // Generic variadic elements stay as they are. addElement(type, 8 /* ElementFlags.Variadic */, (_a = target.labeledElementDeclarations) === null || _a === void 0 ? void 0 : _a[i]); } else if (isTupleType(type)) { var elements = getTypeArguments(type); if (elements.length + expandedTypes.length >= 10000) { error(currentNode, ts.isPartOfTypeNode(currentNode) ? ts.Diagnostics.Type_produces_a_tuple_type_that_is_too_large_to_represent : ts.Diagnostics.Expression_produces_a_tuple_type_that_is_too_large_to_represent); return { value: errorType }; } // Spread variadic elements with tuple types into the resulting tuple. ts.forEach(elements, function (t, n) { var _a; return addElement(t, type.target.elementFlags[n], (_a = type.target.labeledElementDeclarations) === null || _a === void 0 ? void 0 : _a[n]); }); } else { // Treat everything else as an array type and create a rest element. addElement(isArrayLikeType(type) && getIndexTypeOfType(type, numberType) || errorType, 4 /* ElementFlags.Rest */, (_b = target.labeledElementDeclarations) === null || _b === void 0 ? void 0 : _b[i]); } } else { // Copy other element kinds with no change. addElement(type, flags, (_c = target.labeledElementDeclarations) === null || _c === void 0 ? void 0 : _c[i]); } }; for (var i = 0; i < elementTypes.length; i++) { var state_4 = _loop_15(i); if (typeof state_4 === "object") return state_4.value; } // Turn optional elements preceding the last required element into required elements for (var i = 0; i < lastRequiredIndex; i++) { if (expandedFlags[i] & 2 /* ElementFlags.Optional */) expandedFlags[i] = 1 /* ElementFlags.Required */; } if (firstRestIndex >= 0 && firstRestIndex < lastOptionalOrRestIndex) { // Turn elements between first rest and last optional/rest into a single rest element expandedTypes[firstRestIndex] = getUnionType(ts.sameMap(expandedTypes.slice(firstRestIndex, lastOptionalOrRestIndex + 1), function (t, i) { return expandedFlags[firstRestIndex + i] & 8 /* ElementFlags.Variadic */ ? getIndexedAccessType(t, numberType) : t; })); expandedTypes.splice(firstRestIndex + 1, lastOptionalOrRestIndex - firstRestIndex); expandedFlags.splice(firstRestIndex + 1, lastOptionalOrRestIndex - firstRestIndex); expandedDeclarations === null || expandedDeclarations === void 0 ? void 0 : expandedDeclarations.splice(firstRestIndex + 1, lastOptionalOrRestIndex - firstRestIndex); } var tupleTarget = getTupleTargetType(expandedFlags, target.readonly, expandedDeclarations); return tupleTarget === emptyGenericType ? emptyObjectType : expandedFlags.length ? createTypeReference(tupleTarget, expandedTypes) : tupleTarget; function addElement(type, flags, declaration) { if (flags & 1 /* ElementFlags.Required */) { lastRequiredIndex = expandedFlags.length; } if (flags & 4 /* ElementFlags.Rest */ && firstRestIndex < 0) { firstRestIndex = expandedFlags.length; } if (flags & (2 /* ElementFlags.Optional */ | 4 /* ElementFlags.Rest */)) { lastOptionalOrRestIndex = expandedFlags.length; } expandedTypes.push(type); expandedFlags.push(flags); if (expandedDeclarations && declaration) { expandedDeclarations.push(declaration); } else { expandedDeclarations = undefined; } } } function sliceTupleType(type, index, endSkipCount) { if (endSkipCount === void 0) { endSkipCount = 0; } var target = type.target; var endIndex = getTypeReferenceArity(type) - endSkipCount; return index > target.fixedLength ? getRestArrayTypeOfTupleType(type) || createTupleType(ts.emptyArray) : createTupleType(getTypeArguments(type).slice(index, endIndex), target.elementFlags.slice(index, endIndex), /*readonly*/ false, target.labeledElementDeclarations && target.labeledElementDeclarations.slice(index, endIndex)); } function getKnownKeysOfTupleType(type) { return getUnionType(ts.append(ts.arrayOf(type.target.fixedLength, function (i) { return getStringLiteralType("" + i); }), getIndexType(type.target.readonly ? globalReadonlyArrayType : globalArrayType))); } // Return count of starting consecutive tuple elements of the given kind(s) function getStartElementCount(type, flags) { var index = ts.findIndex(type.elementFlags, function (f) { return !(f & flags); }); return index >= 0 ? index : type.elementFlags.length; } // Return count of ending consecutive tuple elements of the given kind(s) function getEndElementCount(type, flags) { return type.elementFlags.length - ts.findLastIndex(type.elementFlags, function (f) { return !(f & flags); }) - 1; } function getTypeFromOptionalTypeNode(node) { return addOptionality(getTypeFromTypeNode(node.type), /*isProperty*/ true); } function getTypeId(type) { return type.id; } function containsType(types, type) { return ts.binarySearch(types, type, getTypeId, ts.compareValues) >= 0; } function insertType(types, type) { var index = ts.binarySearch(types, type, getTypeId, ts.compareValues); if (index < 0) { types.splice(~index, 0, type); return true; } return false; } function addTypeToUnion(typeSet, includes, type) { var flags = type.flags; if (flags & 1048576 /* TypeFlags.Union */) { return addTypesToUnion(typeSet, includes | (isNamedUnionType(type) ? 1048576 /* TypeFlags.Union */ : 0), type.types); } // We ignore 'never' types in unions if (!(flags & 131072 /* TypeFlags.Never */)) { includes |= flags & 205258751 /* TypeFlags.IncludesMask */; if (flags & 465829888 /* TypeFlags.Instantiable */) includes |= 33554432 /* TypeFlags.IncludesInstantiable */; if (type === wildcardType) includes |= 8388608 /* TypeFlags.IncludesWildcard */; if (!strictNullChecks && flags & 98304 /* TypeFlags.Nullable */) { if (!(ts.getObjectFlags(type) & 65536 /* ObjectFlags.ContainsWideningType */)) includes |= 4194304 /* TypeFlags.IncludesNonWideningType */; } else { var len = typeSet.length; var index = len && type.id > typeSet[len - 1].id ? ~len : ts.binarySearch(typeSet, type, getTypeId, ts.compareValues); if (index < 0) { typeSet.splice(~index, 0, type); } } } return includes; } // Add the given types to the given type set. Order is preserved, duplicates are removed, // and nested types of the given kind are flattened into the set. function addTypesToUnion(typeSet, includes, types) { for (var _i = 0, types_9 = types; _i < types_9.length; _i++) { var type = types_9[_i]; includes = addTypeToUnion(typeSet, includes, type); } return includes; } function removeSubtypes(types, hasObjectTypes) { // [] and [T] immediately reduce to [] and [T] respectively if (types.length < 2) { return types; } var id = getTypeListId(types); var match = subtypeReductionCache.get(id); if (match) { return match; } // We assume that redundant primitive types have already been removed from the types array and that there // are no any and unknown types in the array. Thus, the only possible supertypes for primitive types are empty // object types, and if none of those are present we can exclude primitive types from the subtype check. var hasEmptyObject = hasObjectTypes && ts.some(types, function (t) { return !!(t.flags & 524288 /* TypeFlags.Object */) && !isGenericMappedType(t) && isEmptyResolvedType(resolveStructuredTypeMembers(t)); }); var len = types.length; var i = len; var count = 0; while (i > 0) { i--; var source = types[i]; if (hasEmptyObject || source.flags & 469499904 /* TypeFlags.StructuredOrInstantiable */) { // Find the first property with a unit type, if any. When constituents have a property by the same name // but of a different unit type, we can quickly disqualify them from subtype checks. This helps subtype // reduction of large discriminated union types. var keyProperty = source.flags & (524288 /* TypeFlags.Object */ | 2097152 /* TypeFlags.Intersection */ | 58982400 /* TypeFlags.InstantiableNonPrimitive */) ? ts.find(getPropertiesOfType(source), function (p) { return isUnitType(getTypeOfSymbol(p)); }) : undefined; var keyPropertyType = keyProperty && getRegularTypeOfLiteralType(getTypeOfSymbol(keyProperty)); for (var _i = 0, types_10 = types; _i < types_10.length; _i++) { var target = types_10[_i]; if (source !== target) { if (count === 100000) { // After 100000 subtype checks we estimate the remaining amount of work by assuming the // same ratio of checks per element. If the estimated number of remaining type checks is // greater than 1M we deem the union type too complex to represent. This for example // caps union types at 1000 unique object types. var estimatedCount = (count / (len - i)) * len; if (estimatedCount > 1000000) { ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.instant("checkTypes" /* tracing.Phase.CheckTypes */, "removeSubtypes_DepthLimit", { typeIds: types.map(function (t) { return t.id; }) }); error(currentNode, ts.Diagnostics.Expression_produces_a_union_type_that_is_too_complex_to_represent); return undefined; } } count++; if (keyProperty && target.flags & (524288 /* TypeFlags.Object */ | 2097152 /* TypeFlags.Intersection */ | 58982400 /* TypeFlags.InstantiableNonPrimitive */)) { var t = getTypeOfPropertyOfType(target, keyProperty.escapedName); if (t && isUnitType(t) && getRegularTypeOfLiteralType(t) !== keyPropertyType) { continue; } } if (isTypeRelatedTo(source, target, strictSubtypeRelation) && (!(ts.getObjectFlags(getTargetType(source)) & 1 /* ObjectFlags.Class */) || !(ts.getObjectFlags(getTargetType(target)) & 1 /* ObjectFlags.Class */) || isTypeDerivedFrom(source, target))) { ts.orderedRemoveItemAt(types, i); break; } } } } } subtypeReductionCache.set(id, types); return types; } function removeRedundantLiteralTypes(types, includes, reduceVoidUndefined) { var i = types.length; while (i > 0) { i--; var t = types[i]; var flags = t.flags; var remove = flags & (128 /* TypeFlags.StringLiteral */ | 134217728 /* TypeFlags.TemplateLiteral */ | 268435456 /* TypeFlags.StringMapping */) && includes & 4 /* TypeFlags.String */ || flags & 256 /* TypeFlags.NumberLiteral */ && includes & 8 /* TypeFlags.Number */ || flags & 2048 /* TypeFlags.BigIntLiteral */ && includes & 64 /* TypeFlags.BigInt */ || flags & 8192 /* TypeFlags.UniqueESSymbol */ && includes & 4096 /* TypeFlags.ESSymbol */ || reduceVoidUndefined && flags & 32768 /* TypeFlags.Undefined */ && includes & 16384 /* TypeFlags.Void */ || isFreshLiteralType(t) && containsType(types, t.regularType); if (remove) { ts.orderedRemoveItemAt(types, i); } } } function removeStringLiteralsMatchedByTemplateLiterals(types) { var templates = ts.filter(types, isPatternLiteralType); if (templates.length) { var i = types.length; var _loop_16 = function () { i--; var t = types[i]; if (t.flags & 128 /* TypeFlags.StringLiteral */ && ts.some(templates, function (template) { return isTypeMatchedByTemplateLiteralType(t, template); })) { ts.orderedRemoveItemAt(types, i); } }; while (i > 0) { _loop_16(); } } } function isNamedUnionType(type) { return !!(type.flags & 1048576 /* TypeFlags.Union */ && (type.aliasSymbol || type.origin)); } function addNamedUnions(namedUnions, types) { for (var _i = 0, types_11 = types; _i < types_11.length; _i++) { var t = types_11[_i]; if (t.flags & 1048576 /* TypeFlags.Union */) { var origin = t.origin; if (t.aliasSymbol || origin && !(origin.flags & 1048576 /* TypeFlags.Union */)) { ts.pushIfUnique(namedUnions, t); } else if (origin && origin.flags & 1048576 /* TypeFlags.Union */) { addNamedUnions(namedUnions, origin.types); } } } } function createOriginUnionOrIntersectionType(flags, types) { var result = createOriginType(flags); result.types = types; return result; } // We sort and deduplicate the constituent types based on object identity. If the subtypeReduction // flag is specified we also reduce the constituent type set to only include types that aren't subtypes // of other types. Subtype reduction is expensive for large union types and is possible only when union // types are known not to circularly reference themselves (as is the case with union types created by // expression constructs such as array literals and the || and ?: operators). Named types can // circularly reference themselves and therefore cannot be subtype reduced during their declaration. // For example, "type Item = string | (() => Item" is a named type that circularly references itself. function getUnionType(types, unionReduction, aliasSymbol, aliasTypeArguments, origin) { if (unionReduction === void 0) { unionReduction = 1 /* UnionReduction.Literal */; } if (types.length === 0) { return neverType; } if (types.length === 1) { return types[0]; } var typeSet = []; var includes = addTypesToUnion(typeSet, 0, types); if (unionReduction !== 0 /* UnionReduction.None */) { if (includes & 3 /* TypeFlags.AnyOrUnknown */) { return includes & 1 /* TypeFlags.Any */ ? includes & 8388608 /* TypeFlags.IncludesWildcard */ ? wildcardType : anyType : includes & 65536 /* TypeFlags.Null */ || containsType(typeSet, unknownType) ? unknownType : nonNullUnknownType; } if (exactOptionalPropertyTypes && includes & 32768 /* TypeFlags.Undefined */) { var missingIndex = ts.binarySearch(typeSet, missingType, getTypeId, ts.compareValues); if (missingIndex >= 0 && containsType(typeSet, undefinedType)) { ts.orderedRemoveItemAt(typeSet, missingIndex); } } if (includes & (2944 /* TypeFlags.Literal */ | 8192 /* TypeFlags.UniqueESSymbol */ | 134217728 /* TypeFlags.TemplateLiteral */ | 268435456 /* TypeFlags.StringMapping */) || includes & 16384 /* TypeFlags.Void */ && includes & 32768 /* TypeFlags.Undefined */) { removeRedundantLiteralTypes(typeSet, includes, !!(unionReduction & 2 /* UnionReduction.Subtype */)); } if (includes & 128 /* TypeFlags.StringLiteral */ && includes & 134217728 /* TypeFlags.TemplateLiteral */) { removeStringLiteralsMatchedByTemplateLiterals(typeSet); } if (unionReduction === 2 /* UnionReduction.Subtype */) { typeSet = removeSubtypes(typeSet, !!(includes & 524288 /* TypeFlags.Object */)); if (!typeSet) { return errorType; } } if (typeSet.length === 0) { return includes & 65536 /* TypeFlags.Null */ ? includes & 4194304 /* TypeFlags.IncludesNonWideningType */ ? nullType : nullWideningType : includes & 32768 /* TypeFlags.Undefined */ ? includes & 4194304 /* TypeFlags.IncludesNonWideningType */ ? undefinedType : undefinedWideningType : neverType; } } if (!origin && includes & 1048576 /* TypeFlags.Union */) { var namedUnions = []; addNamedUnions(namedUnions, types); var reducedTypes = []; var _loop_17 = function (t) { if (!ts.some(namedUnions, function (union) { return containsType(union.types, t); })) { reducedTypes.push(t); } }; for (var _i = 0, typeSet_1 = typeSet; _i < typeSet_1.length; _i++) { var t = typeSet_1[_i]; _loop_17(t); } if (!aliasSymbol && namedUnions.length === 1 && reducedTypes.length === 0) { return namedUnions[0]; } // We create a denormalized origin type only when the union was created from one or more named unions // (unions with alias symbols or origins) and when there is no overlap between those named unions. var namedTypesCount = ts.reduceLeft(namedUnions, function (sum, union) { return sum + union.types.length; }, 0); if (namedTypesCount + reducedTypes.length === typeSet.length) { for (var _a = 0, namedUnions_1 = namedUnions; _a < namedUnions_1.length; _a++) { var t = namedUnions_1[_a]; insertType(reducedTypes, t); } origin = createOriginUnionOrIntersectionType(1048576 /* TypeFlags.Union */, reducedTypes); } } var objectFlags = (includes & 36323363 /* TypeFlags.NotPrimitiveUnion */ ? 0 : 32768 /* ObjectFlags.PrimitiveUnion */) | (includes & 2097152 /* TypeFlags.Intersection */ ? 16777216 /* ObjectFlags.ContainsIntersections */ : 0); return getUnionTypeFromSortedList(typeSet, objectFlags, aliasSymbol, aliasTypeArguments, origin); } function getUnionOrIntersectionTypePredicate(signatures, kind) { var first; var types = []; for (var _i = 0, signatures_6 = signatures; _i < signatures_6.length; _i++) { var sig = signatures_6[_i]; var pred = getTypePredicateOfSignature(sig); if (!pred || pred.kind === 2 /* TypePredicateKind.AssertsThis */ || pred.kind === 3 /* TypePredicateKind.AssertsIdentifier */) { if (kind !== 2097152 /* TypeFlags.Intersection */) { continue; } else { return; // intersections demand all members be type predicates for the result to have a predicate } } if (first) { if (!typePredicateKindsMatch(first, pred)) { // No common type predicate. return undefined; } } else { first = pred; } types.push(pred.type); } if (!first) { // No signatures had a type predicate. return undefined; } var compositeType = getUnionOrIntersectionType(types, kind); return createTypePredicate(first.kind, first.parameterName, first.parameterIndex, compositeType); } function typePredicateKindsMatch(a, b) { return a.kind === b.kind && a.parameterIndex === b.parameterIndex; } // This function assumes the constituent type list is sorted and deduplicated. function getUnionTypeFromSortedList(types, objectFlags, aliasSymbol, aliasTypeArguments, origin) { if (types.length === 0) { return neverType; } if (types.length === 1) { return types[0]; } var typeKey = !origin ? getTypeListId(types) : origin.flags & 1048576 /* TypeFlags.Union */ ? "|".concat(getTypeListId(origin.types)) : origin.flags & 2097152 /* TypeFlags.Intersection */ ? "&".concat(getTypeListId(origin.types)) : "#".concat(origin.type.id, "|").concat(getTypeListId(types)); // origin type id alone is insufficient, as `keyof x` may resolve to multiple WIP values while `x` is still resolving var id = typeKey + getAliasId(aliasSymbol, aliasTypeArguments); var type = unionTypes.get(id); if (!type) { type = createType(1048576 /* TypeFlags.Union */); type.objectFlags = objectFlags | getPropagatingFlagsOfTypes(types, /*excludeKinds*/ 98304 /* TypeFlags.Nullable */); type.types = types; type.origin = origin; type.aliasSymbol = aliasSymbol; type.aliasTypeArguments = aliasTypeArguments; if (types.length === 2 && types[0].flags & 512 /* TypeFlags.BooleanLiteral */ && types[1].flags & 512 /* TypeFlags.BooleanLiteral */) { type.flags |= 16 /* TypeFlags.Boolean */; type.intrinsicName = "boolean"; } unionTypes.set(id, type); } return type; } function getTypeFromUnionTypeNode(node) { var links = getNodeLinks(node); if (!links.resolvedType) { var aliasSymbol = getAliasSymbolForTypeNode(node); links.resolvedType = getUnionType(ts.map(node.types, getTypeFromTypeNode), 1 /* UnionReduction.Literal */, aliasSymbol, getTypeArgumentsForAliasSymbol(aliasSymbol)); } return links.resolvedType; } function addTypeToIntersection(typeSet, includes, type) { var flags = type.flags; if (flags & 2097152 /* TypeFlags.Intersection */) { return addTypesToIntersection(typeSet, includes, type.types); } if (isEmptyAnonymousObjectType(type)) { if (!(includes & 16777216 /* TypeFlags.IncludesEmptyObject */)) { includes |= 16777216 /* TypeFlags.IncludesEmptyObject */; typeSet.set(type.id.toString(), type); } } else { if (flags & 3 /* TypeFlags.AnyOrUnknown */) { if (type === wildcardType) includes |= 8388608 /* TypeFlags.IncludesWildcard */; } else if (strictNullChecks || !(flags & 98304 /* TypeFlags.Nullable */)) { if (exactOptionalPropertyTypes && type === missingType) { includes |= 262144 /* TypeFlags.IncludesMissingType */; type = undefinedType; } if (!typeSet.has(type.id.toString())) { if (type.flags & 109440 /* TypeFlags.Unit */ && includes & 109440 /* TypeFlags.Unit */) { // We have seen two distinct unit types which means we should reduce to an // empty intersection. Adding TypeFlags.NonPrimitive causes that to happen. includes |= 67108864 /* TypeFlags.NonPrimitive */; } typeSet.set(type.id.toString(), type); } } includes |= flags & 205258751 /* TypeFlags.IncludesMask */; } return includes; } // Add the given types to the given type set. Order is preserved, freshness is removed from literal // types, duplicates are removed, and nested types of the given kind are flattened into the set. function addTypesToIntersection(typeSet, includes, types) { for (var _i = 0, types_12 = types; _i < types_12.length; _i++) { var type = types_12[_i]; includes = addTypeToIntersection(typeSet, includes, getRegularTypeOfLiteralType(type)); } return includes; } function removeRedundantPrimitiveTypes(types, includes) { var i = types.length; while (i > 0) { i--; var t = types[i]; var remove = t.flags & 4 /* TypeFlags.String */ && includes & (128 /* TypeFlags.StringLiteral */ | 134217728 /* TypeFlags.TemplateLiteral */ | 268435456 /* TypeFlags.StringMapping */) || t.flags & 8 /* TypeFlags.Number */ && includes & 256 /* TypeFlags.NumberLiteral */ || t.flags & 64 /* TypeFlags.BigInt */ && includes & 2048 /* TypeFlags.BigIntLiteral */ || t.flags & 4096 /* TypeFlags.ESSymbol */ && includes & 8192 /* TypeFlags.UniqueESSymbol */; if (remove) { ts.orderedRemoveItemAt(types, i); } } } // Check that the given type has a match in every union. A given type is matched by // an identical type, and a literal type is additionally matched by its corresponding // primitive type. function eachUnionContains(unionTypes, type) { for (var _i = 0, unionTypes_1 = unionTypes; _i < unionTypes_1.length; _i++) { var u = unionTypes_1[_i]; if (!containsType(u.types, type)) { var primitive = type.flags & 128 /* TypeFlags.StringLiteral */ ? stringType : type.flags & 256 /* TypeFlags.NumberLiteral */ ? numberType : type.flags & 2048 /* TypeFlags.BigIntLiteral */ ? bigintType : type.flags & 8192 /* TypeFlags.UniqueESSymbol */ ? esSymbolType : undefined; if (!primitive || !containsType(u.types, primitive)) { return false; } } } return true; } /** * Returns `true` if the intersection of the template literals and string literals is the empty set, eg `get${string}` & "setX", and should reduce to `never` */ function extractRedundantTemplateLiterals(types) { var i = types.length; var literals = ts.filter(types, function (t) { return !!(t.flags & 128 /* TypeFlags.StringLiteral */); }); while (i > 0) { i--; var t = types[i]; if (!(t.flags & 134217728 /* TypeFlags.TemplateLiteral */)) continue; for (var _i = 0, literals_1 = literals; _i < literals_1.length; _i++) { var t2 = literals_1[_i]; if (isTypeSubtypeOf(t2, t)) { // eg, ``get${T}` & "getX"` is just `"getX"` ts.orderedRemoveItemAt(types, i); break; } else if (isPatternLiteralType(t)) { return true; } } } return false; } function eachIsUnionContaining(types, flag) { return ts.every(types, function (t) { return !!(t.flags & 1048576 /* TypeFlags.Union */) && ts.some(t.types, function (tt) { return !!(tt.flags & flag); }); }); } function removeFromEach(types, flag) { for (var i = 0; i < types.length; i++) { types[i] = filterType(types[i], function (t) { return !(t.flags & flag); }); } } // If the given list of types contains more than one union of primitive types, replace the // first with a union containing an intersection of those primitive types, then remove the // other unions and return true. Otherwise, do nothing and return false. function intersectUnionsOfPrimitiveTypes(types) { var unionTypes; var index = ts.findIndex(types, function (t) { return !!(ts.getObjectFlags(t) & 32768 /* ObjectFlags.PrimitiveUnion */); }); if (index < 0) { return false; } var i = index + 1; // Remove all but the first union of primitive types and collect them in // the unionTypes array. while (i < types.length) { var t = types[i]; if (ts.getObjectFlags(t) & 32768 /* ObjectFlags.PrimitiveUnion */) { (unionTypes || (unionTypes = [types[index]])).push(t); ts.orderedRemoveItemAt(types, i); } else { i++; } } // Return false if there was only one union of primitive types if (!unionTypes) { return false; } // We have more than one union of primitive types, now intersect them. For each // type in each union we check if the type is matched in every union and if so // we include it in the result. var checked = []; var result = []; for (var _i = 0, unionTypes_2 = unionTypes; _i < unionTypes_2.length; _i++) { var u = unionTypes_2[_i]; for (var _a = 0, _b = u.types; _a < _b.length; _a++) { var t = _b[_a]; if (insertType(checked, t)) { if (eachUnionContains(unionTypes, t)) { insertType(result, t); } } } } // Finally replace the first union with the result types[index] = getUnionTypeFromSortedList(result, 32768 /* ObjectFlags.PrimitiveUnion */); return true; } function createIntersectionType(types, aliasSymbol, aliasTypeArguments) { var result = createType(2097152 /* TypeFlags.Intersection */); result.objectFlags = getPropagatingFlagsOfTypes(types, /*excludeKinds*/ 98304 /* TypeFlags.Nullable */); result.types = types; result.aliasSymbol = aliasSymbol; result.aliasTypeArguments = aliasTypeArguments; return result; } // We normalize combinations of intersection and union types based on the distributive property of the '&' // operator. Specifically, because X & (A | B) is equivalent to X & A | X & B, we can transform intersection // types with union type constituents into equivalent union types with intersection type constituents and // effectively ensure that union types are always at the top level in type representations. // // We do not perform structural deduplication on intersection types. Intersection types are created only by the & // type operator and we can't reduce those because we want to support recursive intersection types. For example, // a type alias of the form "type List = T & { next: List }" cannot be reduced during its declaration. // Also, unlike union types, the order of the constituent types is preserved in order that overload resolution // for intersections of types with signatures can be deterministic. function getIntersectionType(types, aliasSymbol, aliasTypeArguments) { var typeMembershipMap = new ts.Map(); var includes = addTypesToIntersection(typeMembershipMap, 0, types); var typeSet = ts.arrayFrom(typeMembershipMap.values()); // An intersection type is considered empty if it contains // the type never, or // more than one unit type or, // an object type and a nullable type (null or undefined), or // a string-like type and a type known to be non-string-like, or // a number-like type and a type known to be non-number-like, or // a symbol-like type and a type known to be non-symbol-like, or // a void-like type and a type known to be non-void-like, or // a non-primitive type and a type known to be primitive. if (includes & 131072 /* TypeFlags.Never */) { return ts.contains(typeSet, silentNeverType) ? silentNeverType : neverType; } if (strictNullChecks && includes & 98304 /* TypeFlags.Nullable */ && includes & (524288 /* TypeFlags.Object */ | 67108864 /* TypeFlags.NonPrimitive */ | 16777216 /* TypeFlags.IncludesEmptyObject */) || includes & 67108864 /* TypeFlags.NonPrimitive */ && includes & (469892092 /* TypeFlags.DisjointDomains */ & ~67108864 /* TypeFlags.NonPrimitive */) || includes & 402653316 /* TypeFlags.StringLike */ && includes & (469892092 /* TypeFlags.DisjointDomains */ & ~402653316 /* TypeFlags.StringLike */) || includes & 296 /* TypeFlags.NumberLike */ && includes & (469892092 /* TypeFlags.DisjointDomains */ & ~296 /* TypeFlags.NumberLike */) || includes & 2112 /* TypeFlags.BigIntLike */ && includes & (469892092 /* TypeFlags.DisjointDomains */ & ~2112 /* TypeFlags.BigIntLike */) || includes & 12288 /* TypeFlags.ESSymbolLike */ && includes & (469892092 /* TypeFlags.DisjointDomains */ & ~12288 /* TypeFlags.ESSymbolLike */) || includes & 49152 /* TypeFlags.VoidLike */ && includes & (469892092 /* TypeFlags.DisjointDomains */ & ~49152 /* TypeFlags.VoidLike */)) { return neverType; } if (includes & 134217728 /* TypeFlags.TemplateLiteral */ && includes & 128 /* TypeFlags.StringLiteral */ && extractRedundantTemplateLiterals(typeSet)) { return neverType; } if (includes & 1 /* TypeFlags.Any */) { return includes & 8388608 /* TypeFlags.IncludesWildcard */ ? wildcardType : anyType; } if (!strictNullChecks && includes & 98304 /* TypeFlags.Nullable */) { return includes & 32768 /* TypeFlags.Undefined */ ? undefinedType : nullType; } if (includes & 4 /* TypeFlags.String */ && includes & (128 /* TypeFlags.StringLiteral */ | 134217728 /* TypeFlags.TemplateLiteral */ | 268435456 /* TypeFlags.StringMapping */) || includes & 8 /* TypeFlags.Number */ && includes & 256 /* TypeFlags.NumberLiteral */ || includes & 64 /* TypeFlags.BigInt */ && includes & 2048 /* TypeFlags.BigIntLiteral */ || includes & 4096 /* TypeFlags.ESSymbol */ && includes & 8192 /* TypeFlags.UniqueESSymbol */) { removeRedundantPrimitiveTypes(typeSet, includes); } if (includes & 16777216 /* TypeFlags.IncludesEmptyObject */ && includes & 524288 /* TypeFlags.Object */) { ts.orderedRemoveItemAt(typeSet, ts.findIndex(typeSet, isEmptyAnonymousObjectType)); } if (includes & 262144 /* TypeFlags.IncludesMissingType */) { typeSet[typeSet.indexOf(undefinedType)] = missingType; } if (typeSet.length === 0) { return unknownType; } if (typeSet.length === 1) { return typeSet[0]; } var id = getTypeListId(typeSet) + getAliasId(aliasSymbol, aliasTypeArguments); var result = intersectionTypes.get(id); if (!result) { if (includes & 1048576 /* TypeFlags.Union */) { if (intersectUnionsOfPrimitiveTypes(typeSet)) { // When the intersection creates a reduced set (which might mean that *all* union types have // disappeared), we restart the operation to get a new set of combined flags. Once we have // reduced we'll never reduce again, so this occurs at most once. result = getIntersectionType(typeSet, aliasSymbol, aliasTypeArguments); } else if (eachIsUnionContaining(typeSet, 32768 /* TypeFlags.Undefined */)) { var undefinedOrMissingType = exactOptionalPropertyTypes && ts.some(typeSet, function (t) { return containsType(t.types, missingType); }) ? missingType : undefinedType; removeFromEach(typeSet, 32768 /* TypeFlags.Undefined */); result = getUnionType([getIntersectionType(typeSet), undefinedOrMissingType], 1 /* UnionReduction.Literal */, aliasSymbol, aliasTypeArguments); } else if (eachIsUnionContaining(typeSet, 65536 /* TypeFlags.Null */)) { removeFromEach(typeSet, 65536 /* TypeFlags.Null */); result = getUnionType([getIntersectionType(typeSet), nullType], 1 /* UnionReduction.Literal */, aliasSymbol, aliasTypeArguments); } else { // We are attempting to construct a type of the form X & (A | B) & (C | D). Transform this into a type of // the form X & A & C | X & A & D | X & B & C | X & B & D. If the estimated size of the resulting union type // exceeds 100000 constituents, report an error. if (!checkCrossProductUnion(typeSet)) { return errorType; } var constituents = getCrossProductIntersections(typeSet); // We attach a denormalized origin type when at least one constituent of the cross-product union is an // intersection (i.e. when the intersection didn't just reduce one or more unions to smaller unions). var origin = ts.some(constituents, function (t) { return !!(t.flags & 2097152 /* TypeFlags.Intersection */); }) ? createOriginUnionOrIntersectionType(2097152 /* TypeFlags.Intersection */, typeSet) : undefined; result = getUnionType(constituents, 1 /* UnionReduction.Literal */, aliasSymbol, aliasTypeArguments, origin); } } else { result = createIntersectionType(typeSet, aliasSymbol, aliasTypeArguments); } intersectionTypes.set(id, result); } return result; } function getCrossProductUnionSize(types) { return ts.reduceLeft(types, function (n, t) { return t.flags & 1048576 /* TypeFlags.Union */ ? n * t.types.length : t.flags & 131072 /* TypeFlags.Never */ ? 0 : n; }, 1); } function checkCrossProductUnion(types) { var size = getCrossProductUnionSize(types); if (size >= 100000) { ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.instant("checkTypes" /* tracing.Phase.CheckTypes */, "checkCrossProductUnion_DepthLimit", { typeIds: types.map(function (t) { return t.id; }), size: size }); error(currentNode, ts.Diagnostics.Expression_produces_a_union_type_that_is_too_complex_to_represent); return false; } return true; } function getCrossProductIntersections(types) { var count = getCrossProductUnionSize(types); var intersections = []; for (var i = 0; i < count; i++) { var constituents = types.slice(); var n = i; for (var j = types.length - 1; j >= 0; j--) { if (types[j].flags & 1048576 /* TypeFlags.Union */) { var sourceTypes = types[j].types; var length_5 = sourceTypes.length; constituents[j] = sourceTypes[n % length_5]; n = Math.floor(n / length_5); } } var t = getIntersectionType(constituents); if (!(t.flags & 131072 /* TypeFlags.Never */)) intersections.push(t); } return intersections; } function getTypeFromIntersectionTypeNode(node) { var links = getNodeLinks(node); if (!links.resolvedType) { var aliasSymbol = getAliasSymbolForTypeNode(node); links.resolvedType = getIntersectionType(ts.map(node.types, getTypeFromTypeNode), aliasSymbol, getTypeArgumentsForAliasSymbol(aliasSymbol)); } return links.resolvedType; } function createIndexType(type, stringsOnly) { var result = createType(4194304 /* TypeFlags.Index */); result.type = type; result.stringsOnly = stringsOnly; return result; } function createOriginIndexType(type) { var result = createOriginType(4194304 /* TypeFlags.Index */); result.type = type; return result; } function getIndexTypeForGenericType(type, stringsOnly) { return stringsOnly ? type.resolvedStringIndexType || (type.resolvedStringIndexType = createIndexType(type, /*stringsOnly*/ true)) : type.resolvedIndexType || (type.resolvedIndexType = createIndexType(type, /*stringsOnly*/ false)); } /** * This roughly mirrors `resolveMappedTypeMembers` in the nongeneric case, except only reports a union of the keys calculated, * rather than manufacturing the properties. We can't just fetch the `constraintType` since that would ignore mappings * and mapping the `constraintType` directly ignores how mapped types map _properties_ and not keys (thus ignoring subtype * reduction in the constraintType) when possible. * @param noIndexSignatures Indicates if _string_ index signatures should be elided. (other index signatures are always reported) */ function getIndexTypeForMappedType(type, stringsOnly, noIndexSignatures) { var typeParameter = getTypeParameterFromMappedType(type); var constraintType = getConstraintTypeFromMappedType(type); var nameType = getNameTypeFromMappedType(type.target || type); if (!nameType && !noIndexSignatures) { // no mapping and no filtering required, just quickly bail to returning the constraint in the common case return constraintType; } var keyTypes = []; if (isMappedTypeWithKeyofConstraintDeclaration(type)) { // We have a { [P in keyof T]: X } // `getApparentType` on the T in a generic mapped type can trigger a circularity // (conditionals and `infer` types create a circular dependency in the constraint resolution) // so we only eagerly manifest the keys if the constraint is nongeneric if (!isGenericIndexType(constraintType)) { var modifiersType = getApparentType(getModifiersTypeFromMappedType(type)); // The 'T' in 'keyof T' forEachMappedTypePropertyKeyTypeAndIndexSignatureKeyType(modifiersType, 8576 /* TypeFlags.StringOrNumberLiteralOrUnique */, stringsOnly, addMemberForKeyType); } else { // we have a generic index and a homomorphic mapping (but a distributive key remapping) - we need to defer the whole `keyof whatever` for later // since it's not safe to resolve the shape of modifier type return getIndexTypeForGenericType(type, stringsOnly); } } else { forEachType(getLowerBoundOfKeyType(constraintType), addMemberForKeyType); } if (isGenericIndexType(constraintType)) { // include the generic component in the resulting type forEachType(constraintType, addMemberForKeyType); } // we had to pick apart the constraintType to potentially map/filter it - compare the final resulting list with the original constraintType, // so we can return the union that preserves aliases/origin data if possible var result = noIndexSignatures ? filterType(getUnionType(keyTypes), function (t) { return !(t.flags & (1 /* TypeFlags.Any */ | 4 /* TypeFlags.String */)); }) : getUnionType(keyTypes); if (result.flags & 1048576 /* TypeFlags.Union */ && constraintType.flags & 1048576 /* TypeFlags.Union */ && getTypeListId(result.types) === getTypeListId(constraintType.types)) { return constraintType; } return result; function addMemberForKeyType(keyType) { var propNameType = nameType ? instantiateType(nameType, appendTypeMapping(type.mapper, typeParameter, keyType)) : keyType; // `keyof` currently always returns `string | number` for concrete `string` index signatures - the below ternary keeps that behavior for mapped types // See `getLiteralTypeFromProperties` where there's a similar ternary to cause the same behavior. keyTypes.push(propNameType === stringType ? stringOrNumberType : propNameType); } } // Ordinarily we reduce a keyof M, where M is a mapped type { [P in K as N

]: X }, to simply N. This however presumes // that N distributes over union types, i.e. that N is equivalent to N | N | N. Specifically, we only // want to perform the reduction when the name type of a mapped type is distributive with respect to the type variable // introduced by the 'in' clause of the mapped type. Note that non-generic types are considered to be distributive because // they're the same type regardless of what's being distributed over. function hasDistributiveNameType(mappedType) { var typeVariable = getTypeParameterFromMappedType(mappedType); return isDistributive(getNameTypeFromMappedType(mappedType) || typeVariable); function isDistributive(type) { return type.flags & (3 /* TypeFlags.AnyOrUnknown */ | 131068 /* TypeFlags.Primitive */ | 131072 /* TypeFlags.Never */ | 262144 /* TypeFlags.TypeParameter */ | 524288 /* TypeFlags.Object */ | 67108864 /* TypeFlags.NonPrimitive */) ? true : type.flags & 16777216 /* TypeFlags.Conditional */ ? type.root.isDistributive && type.checkType === typeVariable : type.flags & (3145728 /* TypeFlags.UnionOrIntersection */ | 134217728 /* TypeFlags.TemplateLiteral */) ? ts.every(type.types, isDistributive) : type.flags & 8388608 /* TypeFlags.IndexedAccess */ ? isDistributive(type.objectType) && isDistributive(type.indexType) : type.flags & 33554432 /* TypeFlags.Substitution */ ? isDistributive(type.substitute) : type.flags & 268435456 /* TypeFlags.StringMapping */ ? isDistributive(type.type) : false; } } function getLiteralTypeFromPropertyName(name) { if (ts.isPrivateIdentifier(name)) { return neverType; } return ts.isIdentifier(name) ? getStringLiteralType(ts.unescapeLeadingUnderscores(name.escapedText)) : getRegularTypeOfLiteralType(ts.isComputedPropertyName(name) ? checkComputedPropertyName(name) : checkExpression(name)); } function getLiteralTypeFromProperty(prop, include, includeNonPublic) { if (includeNonPublic || !(ts.getDeclarationModifierFlagsFromSymbol(prop) & 24 /* ModifierFlags.NonPublicAccessibilityModifier */)) { var type = getSymbolLinks(getLateBoundSymbol(prop)).nameType; if (!type) { var name = ts.getNameOfDeclaration(prop.valueDeclaration); type = prop.escapedName === "default" /* InternalSymbolName.Default */ ? getStringLiteralType("default") : name && getLiteralTypeFromPropertyName(name) || (!ts.isKnownSymbol(prop) ? getStringLiteralType(ts.symbolName(prop)) : undefined); } if (type && type.flags & include) { return type; } } return neverType; } function isKeyTypeIncluded(keyType, include) { return !!(keyType.flags & include || keyType.flags & 2097152 /* TypeFlags.Intersection */ && ts.some(keyType.types, function (t) { return isKeyTypeIncluded(t, include); })); } function getLiteralTypeFromProperties(type, include, includeOrigin) { var origin = includeOrigin && (ts.getObjectFlags(type) & (3 /* ObjectFlags.ClassOrInterface */ | 4 /* ObjectFlags.Reference */) || type.aliasSymbol) ? createOriginIndexType(type) : undefined; var propertyTypes = ts.map(getPropertiesOfType(type), function (prop) { return getLiteralTypeFromProperty(prop, include); }); var indexKeyTypes = ts.map(getIndexInfosOfType(type), function (info) { return info !== enumNumberIndexInfo && isKeyTypeIncluded(info.keyType, include) ? info.keyType === stringType && include & 8 /* TypeFlags.Number */ ? stringOrNumberType : info.keyType : neverType; }); return getUnionType(ts.concatenate(propertyTypes, indexKeyTypes), 1 /* UnionReduction.Literal */, /*aliasSymbol*/ undefined, /*aliasTypeArguments*/ undefined, origin); } /** * A union type which is reducible upon instantiation (meaning some members are removed under certain instantiations) * must be kept generic, as that instantiation information needs to flow through the type system. By replacing all * type parameters in the union with a special never type that is treated as a literal in `getReducedType`, we can cause the `getReducedType` logic * to reduce the resulting type if possible (since only intersections with conflicting literal-typed properties are reducible). */ function isPossiblyReducibleByInstantiation(type) { return ts.some(type.types, function (t) { var uniqueFilled = getUniqueLiteralFilledInstantiation(t); return getReducedType(uniqueFilled) !== uniqueFilled; }); } function getIndexType(type, stringsOnly, noIndexSignatures) { if (stringsOnly === void 0) { stringsOnly = keyofStringsOnly; } type = getReducedType(type); return type.flags & 1048576 /* TypeFlags.Union */ ? isPossiblyReducibleByInstantiation(type) ? getIndexTypeForGenericType(type, stringsOnly) : getIntersectionType(ts.map(type.types, function (t) { return getIndexType(t, stringsOnly, noIndexSignatures); })) : type.flags & 2097152 /* TypeFlags.Intersection */ ? getUnionType(ts.map(type.types, function (t) { return getIndexType(t, stringsOnly, noIndexSignatures); })) : type.flags & 58982400 /* TypeFlags.InstantiableNonPrimitive */ || isGenericTupleType(type) || isGenericMappedType(type) && !hasDistributiveNameType(type) ? getIndexTypeForGenericType(type, stringsOnly) : ts.getObjectFlags(type) & 32 /* ObjectFlags.Mapped */ ? getIndexTypeForMappedType(type, stringsOnly, noIndexSignatures) : type === wildcardType ? wildcardType : type.flags & 2 /* TypeFlags.Unknown */ ? neverType : type.flags & (1 /* TypeFlags.Any */ | 131072 /* TypeFlags.Never */) ? keyofConstraintType : getLiteralTypeFromProperties(type, (noIndexSignatures ? 128 /* TypeFlags.StringLiteral */ : 402653316 /* TypeFlags.StringLike */) | (stringsOnly ? 0 : 296 /* TypeFlags.NumberLike */ | 12288 /* TypeFlags.ESSymbolLike */), stringsOnly === keyofStringsOnly && !noIndexSignatures); } function getExtractStringType(type) { if (keyofStringsOnly) { return type; } var extractTypeAlias = getGlobalExtractSymbol(); return extractTypeAlias ? getTypeAliasInstantiation(extractTypeAlias, [type, stringType]) : stringType; } function getIndexTypeOrString(type) { var indexType = getExtractStringType(getIndexType(type)); return indexType.flags & 131072 /* TypeFlags.Never */ ? stringType : indexType; } function getTypeFromTypeOperatorNode(node) { var links = getNodeLinks(node); if (!links.resolvedType) { switch (node.operator) { case 140 /* SyntaxKind.KeyOfKeyword */: links.resolvedType = getIndexType(getTypeFromTypeNode(node.type)); break; case 154 /* SyntaxKind.UniqueKeyword */: links.resolvedType = node.type.kind === 151 /* SyntaxKind.SymbolKeyword */ ? getESSymbolLikeTypeForNode(ts.walkUpParenthesizedTypes(node.parent)) : errorType; break; case 145 /* SyntaxKind.ReadonlyKeyword */: links.resolvedType = getTypeFromTypeNode(node.type); break; default: throw ts.Debug.assertNever(node.operator); } } return links.resolvedType; } function getTypeFromTemplateTypeNode(node) { var links = getNodeLinks(node); if (!links.resolvedType) { links.resolvedType = getTemplateLiteralType(__spreadArray([node.head.text], ts.map(node.templateSpans, function (span) { return span.literal.text; }), true), ts.map(node.templateSpans, function (span) { return getTypeFromTypeNode(span.type); })); } return links.resolvedType; } function getTemplateLiteralType(texts, types) { var unionIndex = ts.findIndex(types, function (t) { return !!(t.flags & (131072 /* TypeFlags.Never */ | 1048576 /* TypeFlags.Union */)); }); if (unionIndex >= 0) { return checkCrossProductUnion(types) ? mapType(types[unionIndex], function (t) { return getTemplateLiteralType(texts, ts.replaceElement(types, unionIndex, t)); }) : errorType; } if (ts.contains(types, wildcardType)) { return wildcardType; } var newTypes = []; var newTexts = []; var text = texts[0]; if (!addSpans(texts, types)) { return stringType; } if (newTypes.length === 0) { return getStringLiteralType(text); } newTexts.push(text); if (ts.every(newTexts, function (t) { return t === ""; }) && ts.every(newTypes, function (t) { return !!(t.flags & 4 /* TypeFlags.String */); })) { return stringType; } var id = "".concat(getTypeListId(newTypes), "|").concat(ts.map(newTexts, function (t) { return t.length; }).join(","), "|").concat(newTexts.join("")); var type = templateLiteralTypes.get(id); if (!type) { templateLiteralTypes.set(id, type = createTemplateLiteralType(newTexts, newTypes)); } return type; function addSpans(texts, types) { var isTextsArray = ts.isArray(texts); for (var i = 0; i < types.length; i++) { var t = types[i]; var addText = isTextsArray ? texts[i + 1] : texts; if (t.flags & (2944 /* TypeFlags.Literal */ | 65536 /* TypeFlags.Null */ | 32768 /* TypeFlags.Undefined */)) { text += getTemplateStringForType(t) || ""; text += addText; if (!isTextsArray) return true; } else if (t.flags & 134217728 /* TypeFlags.TemplateLiteral */) { text += t.texts[0]; if (!addSpans(t.texts, t.types)) return false; text += addText; if (!isTextsArray) return true; } else if (isGenericIndexType(t) || isPatternLiteralPlaceholderType(t)) { newTypes.push(t); newTexts.push(text); text = addText; } else if (t.flags & 2097152 /* TypeFlags.Intersection */) { var added = addSpans(texts[i + 1], t.types); if (!added) return false; } else if (isTextsArray) { return false; } } return true; } } function getTemplateStringForType(type) { return type.flags & 128 /* TypeFlags.StringLiteral */ ? type.value : type.flags & 256 /* TypeFlags.NumberLiteral */ ? "" + type.value : type.flags & 2048 /* TypeFlags.BigIntLiteral */ ? ts.pseudoBigIntToString(type.value) : type.flags & (512 /* TypeFlags.BooleanLiteral */ | 98304 /* TypeFlags.Nullable */) ? type.intrinsicName : undefined; } function createTemplateLiteralType(texts, types) { var type = createType(134217728 /* TypeFlags.TemplateLiteral */); type.texts = texts; type.types = types; return type; } function getStringMappingType(symbol, type) { return type.flags & (1048576 /* TypeFlags.Union */ | 131072 /* TypeFlags.Never */) ? mapType(type, function (t) { return getStringMappingType(symbol, t); }) : isGenericIndexType(type) ? getStringMappingTypeForGenericType(symbol, type) : type.flags & 128 /* TypeFlags.StringLiteral */ ? getStringLiteralType(applyStringMapping(symbol, type.value)) : type; } function applyStringMapping(symbol, str) { switch (intrinsicTypeKinds.get(symbol.escapedName)) { case 0 /* IntrinsicTypeKind.Uppercase */: return str.toUpperCase(); case 1 /* IntrinsicTypeKind.Lowercase */: return str.toLowerCase(); case 2 /* IntrinsicTypeKind.Capitalize */: return str.charAt(0).toUpperCase() + str.slice(1); case 3 /* IntrinsicTypeKind.Uncapitalize */: return str.charAt(0).toLowerCase() + str.slice(1); } return str; } function getStringMappingTypeForGenericType(symbol, type) { var id = "".concat(getSymbolId(symbol), ",").concat(getTypeId(type)); var result = stringMappingTypes.get(id); if (!result) { stringMappingTypes.set(id, result = createStringMappingType(symbol, type)); } return result; } function createStringMappingType(symbol, type) { var result = createType(268435456 /* TypeFlags.StringMapping */); result.symbol = symbol; result.type = type; return result; } function createIndexedAccessType(objectType, indexType, accessFlags, aliasSymbol, aliasTypeArguments) { var type = createType(8388608 /* TypeFlags.IndexedAccess */); type.objectType = objectType; type.indexType = indexType; type.accessFlags = accessFlags; type.aliasSymbol = aliasSymbol; type.aliasTypeArguments = aliasTypeArguments; return type; } /** * Returns if a type is or consists of a JSLiteral object type * In addition to objects which are directly literals, * * unions where every element is a jsliteral * * intersections where at least one element is a jsliteral * * and instantiable types constrained to a jsliteral * Should all count as literals and not print errors on access or assignment of possibly existing properties. * This mirrors the behavior of the index signature propagation, to which this behaves similarly (but doesn't affect assignability or inference). */ function isJSLiteralType(type) { if (noImplicitAny) { return false; // Flag is meaningless under `noImplicitAny` mode } if (ts.getObjectFlags(type) & 4096 /* ObjectFlags.JSLiteral */) { return true; } if (type.flags & 1048576 /* TypeFlags.Union */) { return ts.every(type.types, isJSLiteralType); } if (type.flags & 2097152 /* TypeFlags.Intersection */) { return ts.some(type.types, isJSLiteralType); } if (type.flags & 465829888 /* TypeFlags.Instantiable */) { var constraint = getResolvedBaseConstraint(type); return constraint !== type && isJSLiteralType(constraint); } return false; } function getPropertyNameFromIndex(indexType, accessNode) { return isTypeUsableAsPropertyName(indexType) ? getPropertyNameFromType(indexType) : accessNode && ts.isPropertyName(accessNode) ? // late bound names are handled in the first branch, so here we only need to handle normal names ts.getPropertyNameForPropertyNameNode(accessNode) : undefined; } function isUncalledFunctionReference(node, symbol) { if (symbol.flags & (16 /* SymbolFlags.Function */ | 8192 /* SymbolFlags.Method */)) { var parent = ts.findAncestor(node.parent, function (n) { return !ts.isAccessExpression(n); }) || node.parent; if (ts.isCallLikeExpression(parent)) { return ts.isCallOrNewExpression(parent) && ts.isIdentifier(node) && hasMatchingArgument(parent, node); } return ts.every(symbol.declarations, function (d) { return !ts.isFunctionLike(d) || !!(ts.getCombinedNodeFlags(d) & 268435456 /* NodeFlags.Deprecated */); }); } return true; } function getPropertyTypeForIndexType(originalObjectType, objectType, indexType, fullIndexType, accessNode, accessFlags) { var _a; var accessExpression = accessNode && accessNode.kind === 207 /* SyntaxKind.ElementAccessExpression */ ? accessNode : undefined; var propName = accessNode && ts.isPrivateIdentifier(accessNode) ? undefined : getPropertyNameFromIndex(indexType, accessNode); if (propName !== undefined) { if (accessFlags & 256 /* AccessFlags.Contextual */) { return getTypeOfPropertyOfContextualType(objectType, propName) || anyType; } var prop = getPropertyOfType(objectType, propName); if (prop) { if (accessFlags & 64 /* AccessFlags.ReportDeprecated */ && accessNode && prop.declarations && isDeprecatedSymbol(prop) && isUncalledFunctionReference(accessNode, prop)) { var deprecatedNode = (_a = accessExpression === null || accessExpression === void 0 ? void 0 : accessExpression.argumentExpression) !== null && _a !== void 0 ? _a : (ts.isIndexedAccessTypeNode(accessNode) ? accessNode.indexType : accessNode); addDeprecatedSuggestion(deprecatedNode, prop.declarations, propName); } if (accessExpression) { markPropertyAsReferenced(prop, accessExpression, isSelfTypeAccess(accessExpression.expression, objectType.symbol)); if (isAssignmentToReadonlyEntity(accessExpression, prop, ts.getAssignmentTargetKind(accessExpression))) { error(accessExpression.argumentExpression, ts.Diagnostics.Cannot_assign_to_0_because_it_is_a_read_only_property, symbolToString(prop)); return undefined; } if (accessFlags & 8 /* AccessFlags.CacheSymbol */) { getNodeLinks(accessNode).resolvedSymbol = prop; } if (isThisPropertyAccessInConstructor(accessExpression, prop)) { return autoType; } } var propType = getTypeOfSymbol(prop); return accessExpression && ts.getAssignmentTargetKind(accessExpression) !== 1 /* AssignmentKind.Definite */ ? getFlowTypeOfReference(accessExpression, propType) : propType; } if (everyType(objectType, isTupleType) && ts.isNumericLiteralName(propName) && +propName >= 0) { if (accessNode && everyType(objectType, function (t) { return !t.target.hasRestElement; }) && !(accessFlags & 16 /* AccessFlags.NoTupleBoundsCheck */)) { var indexNode = getIndexNodeForAccessExpression(accessNode); if (isTupleType(objectType)) { error(indexNode, ts.Diagnostics.Tuple_type_0_of_length_1_has_no_element_at_index_2, typeToString(objectType), getTypeReferenceArity(objectType), ts.unescapeLeadingUnderscores(propName)); } else { error(indexNode, ts.Diagnostics.Property_0_does_not_exist_on_type_1, ts.unescapeLeadingUnderscores(propName), typeToString(objectType)); } } errorIfWritingToReadonlyIndex(getIndexInfoOfType(objectType, numberType)); return mapType(objectType, function (t) { var restType = getRestTypeOfTupleType(t) || undefinedType; return accessFlags & 1 /* AccessFlags.IncludeUndefined */ ? getUnionType([restType, undefinedType]) : restType; }); } } if (!(indexType.flags & 98304 /* TypeFlags.Nullable */) && isTypeAssignableToKind(indexType, 402653316 /* TypeFlags.StringLike */ | 296 /* TypeFlags.NumberLike */ | 12288 /* TypeFlags.ESSymbolLike */)) { if (objectType.flags & (1 /* TypeFlags.Any */ | 131072 /* TypeFlags.Never */)) { return objectType; } // If no index signature is applicable, we default to the string index signature. In effect, this means the string // index signature applies even when accessing with a symbol-like type. var indexInfo = getApplicableIndexInfo(objectType, indexType) || getIndexInfoOfType(objectType, stringType); if (indexInfo) { if (accessFlags & 2 /* AccessFlags.NoIndexSignatures */ && indexInfo.keyType !== numberType) { if (accessExpression) { error(accessExpression, ts.Diagnostics.Type_0_cannot_be_used_to_index_type_1, typeToString(indexType), typeToString(originalObjectType)); } return undefined; } if (accessNode && indexInfo.keyType === stringType && !isTypeAssignableToKind(indexType, 4 /* TypeFlags.String */ | 8 /* TypeFlags.Number */)) { var indexNode = getIndexNodeForAccessExpression(accessNode); error(indexNode, ts.Diagnostics.Type_0_cannot_be_used_as_an_index_type, typeToString(indexType)); return accessFlags & 1 /* AccessFlags.IncludeUndefined */ ? getUnionType([indexInfo.type, undefinedType]) : indexInfo.type; } errorIfWritingToReadonlyIndex(indexInfo); return accessFlags & 1 /* AccessFlags.IncludeUndefined */ ? getUnionType([indexInfo.type, undefinedType]) : indexInfo.type; } if (indexType.flags & 131072 /* TypeFlags.Never */) { return neverType; } if (isJSLiteralType(objectType)) { return anyType; } if (accessExpression && !isConstEnumObjectType(objectType)) { if (isObjectLiteralType(objectType)) { if (noImplicitAny && indexType.flags & (128 /* TypeFlags.StringLiteral */ | 256 /* TypeFlags.NumberLiteral */)) { diagnostics.add(ts.createDiagnosticForNode(accessExpression, ts.Diagnostics.Property_0_does_not_exist_on_type_1, indexType.value, typeToString(objectType))); return undefinedType; } else if (indexType.flags & (8 /* TypeFlags.Number */ | 4 /* TypeFlags.String */)) { var types = ts.map(objectType.properties, function (property) { return getTypeOfSymbol(property); }); return getUnionType(ts.append(types, undefinedType)); } } if (objectType.symbol === globalThisSymbol && propName !== undefined && globalThisSymbol.exports.has(propName) && (globalThisSymbol.exports.get(propName).flags & 418 /* SymbolFlags.BlockScoped */)) { error(accessExpression, ts.Diagnostics.Property_0_does_not_exist_on_type_1, ts.unescapeLeadingUnderscores(propName), typeToString(objectType)); } else if (noImplicitAny && !compilerOptions.suppressImplicitAnyIndexErrors && !(accessFlags & 128 /* AccessFlags.SuppressNoImplicitAnyError */)) { if (propName !== undefined && typeHasStaticProperty(propName, objectType)) { var typeName = typeToString(objectType); error(accessExpression, ts.Diagnostics.Property_0_does_not_exist_on_type_1_Did_you_mean_to_access_the_static_member_2_instead, propName, typeName, typeName + "[" + ts.getTextOfNode(accessExpression.argumentExpression) + "]"); } else if (getIndexTypeOfType(objectType, numberType)) { error(accessExpression.argumentExpression, ts.Diagnostics.Element_implicitly_has_an_any_type_because_index_expression_is_not_of_type_number); } else { var suggestion = void 0; if (propName !== undefined && (suggestion = getSuggestionForNonexistentProperty(propName, objectType))) { if (suggestion !== undefined) { error(accessExpression.argumentExpression, ts.Diagnostics.Property_0_does_not_exist_on_type_1_Did_you_mean_2, propName, typeToString(objectType), suggestion); } } else { var suggestion_1 = getSuggestionForNonexistentIndexSignature(objectType, accessExpression, indexType); if (suggestion_1 !== undefined) { error(accessExpression, ts.Diagnostics.Element_implicitly_has_an_any_type_because_type_0_has_no_index_signature_Did_you_mean_to_call_1, typeToString(objectType), suggestion_1); } else { var errorInfo = void 0; if (indexType.flags & 1024 /* TypeFlags.EnumLiteral */) { errorInfo = ts.chainDiagnosticMessages(/* details */ undefined, ts.Diagnostics.Property_0_does_not_exist_on_type_1, "[" + typeToString(indexType) + "]", typeToString(objectType)); } else if (indexType.flags & 8192 /* TypeFlags.UniqueESSymbol */) { var symbolName_2 = getFullyQualifiedName(indexType.symbol, accessExpression); errorInfo = ts.chainDiagnosticMessages(/* details */ undefined, ts.Diagnostics.Property_0_does_not_exist_on_type_1, "[" + symbolName_2 + "]", typeToString(objectType)); } else if (indexType.flags & 128 /* TypeFlags.StringLiteral */) { errorInfo = ts.chainDiagnosticMessages(/* details */ undefined, ts.Diagnostics.Property_0_does_not_exist_on_type_1, indexType.value, typeToString(objectType)); } else if (indexType.flags & 256 /* TypeFlags.NumberLiteral */) { errorInfo = ts.chainDiagnosticMessages(/* details */ undefined, ts.Diagnostics.Property_0_does_not_exist_on_type_1, indexType.value, typeToString(objectType)); } else if (indexType.flags & (8 /* TypeFlags.Number */ | 4 /* TypeFlags.String */)) { errorInfo = ts.chainDiagnosticMessages(/* details */ undefined, ts.Diagnostics.No_index_signature_with_a_parameter_of_type_0_was_found_on_type_1, typeToString(indexType), typeToString(objectType)); } errorInfo = ts.chainDiagnosticMessages(errorInfo, ts.Diagnostics.Element_implicitly_has_an_any_type_because_expression_of_type_0_can_t_be_used_to_index_type_1, typeToString(fullIndexType), typeToString(objectType)); diagnostics.add(ts.createDiagnosticForNodeFromMessageChain(accessExpression, errorInfo)); } } } } return undefined; } } if (isJSLiteralType(objectType)) { return anyType; } if (accessNode) { var indexNode = getIndexNodeForAccessExpression(accessNode); if (indexType.flags & (128 /* TypeFlags.StringLiteral */ | 256 /* TypeFlags.NumberLiteral */)) { error(indexNode, ts.Diagnostics.Property_0_does_not_exist_on_type_1, "" + indexType.value, typeToString(objectType)); } else if (indexType.flags & (4 /* TypeFlags.String */ | 8 /* TypeFlags.Number */)) { error(indexNode, ts.Diagnostics.Type_0_has_no_matching_index_signature_for_type_1, typeToString(objectType), typeToString(indexType)); } else { error(indexNode, ts.Diagnostics.Type_0_cannot_be_used_as_an_index_type, typeToString(indexType)); } } if (isTypeAny(indexType)) { return indexType; } return undefined; function errorIfWritingToReadonlyIndex(indexInfo) { if (indexInfo && indexInfo.isReadonly && accessExpression && (ts.isAssignmentTarget(accessExpression) || ts.isDeleteTarget(accessExpression))) { error(accessExpression, ts.Diagnostics.Index_signature_in_type_0_only_permits_reading, typeToString(objectType)); } } } function getIndexNodeForAccessExpression(accessNode) { return accessNode.kind === 207 /* SyntaxKind.ElementAccessExpression */ ? accessNode.argumentExpression : accessNode.kind === 194 /* SyntaxKind.IndexedAccessType */ ? accessNode.indexType : accessNode.kind === 162 /* SyntaxKind.ComputedPropertyName */ ? accessNode.expression : accessNode; } function isPatternLiteralPlaceholderType(type) { return !!(type.flags & (1 /* TypeFlags.Any */ | 4 /* TypeFlags.String */ | 8 /* TypeFlags.Number */ | 64 /* TypeFlags.BigInt */)); } function isPatternLiteralType(type) { return !!(type.flags & 134217728 /* TypeFlags.TemplateLiteral */) && ts.every(type.types, isPatternLiteralPlaceholderType); } function isGenericType(type) { return !!getGenericObjectFlags(type); } function isGenericObjectType(type) { return !!(getGenericObjectFlags(type) & 4194304 /* ObjectFlags.IsGenericObjectType */); } function isGenericIndexType(type) { return !!(getGenericObjectFlags(type) & 8388608 /* ObjectFlags.IsGenericIndexType */); } function getGenericObjectFlags(type) { if (type.flags & 3145728 /* TypeFlags.UnionOrIntersection */) { if (!(type.objectFlags & 2097152 /* ObjectFlags.IsGenericTypeComputed */)) { type.objectFlags |= 2097152 /* ObjectFlags.IsGenericTypeComputed */ | ts.reduceLeft(type.types, function (flags, t) { return flags | getGenericObjectFlags(t); }, 0); } return type.objectFlags & 12582912 /* ObjectFlags.IsGenericType */; } if (type.flags & 33554432 /* TypeFlags.Substitution */) { if (!(type.objectFlags & 2097152 /* ObjectFlags.IsGenericTypeComputed */)) { type.objectFlags |= 2097152 /* ObjectFlags.IsGenericTypeComputed */ | getGenericObjectFlags(type.substitute) | getGenericObjectFlags(type.baseType); } return type.objectFlags & 12582912 /* ObjectFlags.IsGenericType */; } return (type.flags & 58982400 /* TypeFlags.InstantiableNonPrimitive */ || isGenericMappedType(type) || isGenericTupleType(type) ? 4194304 /* ObjectFlags.IsGenericObjectType */ : 0) | (type.flags & (58982400 /* TypeFlags.InstantiableNonPrimitive */ | 4194304 /* TypeFlags.Index */ | 134217728 /* TypeFlags.TemplateLiteral */ | 268435456 /* TypeFlags.StringMapping */) && !isPatternLiteralType(type) ? 8388608 /* ObjectFlags.IsGenericIndexType */ : 0); } function getSimplifiedType(type, writing) { return type.flags & 8388608 /* TypeFlags.IndexedAccess */ ? getSimplifiedIndexedAccessType(type, writing) : type.flags & 16777216 /* TypeFlags.Conditional */ ? getSimplifiedConditionalType(type, writing) : type; } function distributeIndexOverObjectType(objectType, indexType, writing) { // (T | U)[K] -> T[K] | U[K] (reading) // (T | U)[K] -> T[K] & U[K] (writing) // (T & U)[K] -> T[K] & U[K] if (objectType.flags & 3145728 /* TypeFlags.UnionOrIntersection */) { var types = ts.map(objectType.types, function (t) { return getSimplifiedType(getIndexedAccessType(t, indexType), writing); }); return objectType.flags & 2097152 /* TypeFlags.Intersection */ || writing ? getIntersectionType(types) : getUnionType(types); } } function distributeObjectOverIndexType(objectType, indexType, writing) { // T[A | B] -> T[A] | T[B] (reading) // T[A | B] -> T[A] & T[B] (writing) if (indexType.flags & 1048576 /* TypeFlags.Union */) { var types = ts.map(indexType.types, function (t) { return getSimplifiedType(getIndexedAccessType(objectType, t), writing); }); return writing ? getIntersectionType(types) : getUnionType(types); } } // Transform an indexed access to a simpler form, if possible. Return the simpler form, or return // the type itself if no transformation is possible. The writing flag indicates that the type is // the target of an assignment. function getSimplifiedIndexedAccessType(type, writing) { var cache = writing ? "simplifiedForWriting" : "simplifiedForReading"; if (type[cache]) { return type[cache] === circularConstraintType ? type : type[cache]; } type[cache] = circularConstraintType; // We recursively simplify the object type as it may in turn be an indexed access type. For example, with // '{ [P in T]: { [Q in U]: number } }[T][U]' we want to first simplify the inner indexed access type. var objectType = getSimplifiedType(type.objectType, writing); var indexType = getSimplifiedType(type.indexType, writing); // T[A | B] -> T[A] | T[B] (reading) // T[A | B] -> T[A] & T[B] (writing) var distributedOverIndex = distributeObjectOverIndexType(objectType, indexType, writing); if (distributedOverIndex) { return type[cache] = distributedOverIndex; } // Only do the inner distributions if the index can no longer be instantiated to cause index distribution again if (!(indexType.flags & 465829888 /* TypeFlags.Instantiable */)) { // (T | U)[K] -> T[K] | U[K] (reading) // (T | U)[K] -> T[K] & U[K] (writing) // (T & U)[K] -> T[K] & U[K] var distributedOverObject = distributeIndexOverObjectType(objectType, indexType, writing); if (distributedOverObject) { return type[cache] = distributedOverObject; } } // So ultimately (reading): // ((A & B) | C)[K1 | K2] -> ((A & B) | C)[K1] | ((A & B) | C)[K2] -> (A & B)[K1] | C[K1] | (A & B)[K2] | C[K2] -> (A[K1] & B[K1]) | C[K1] | (A[K2] & B[K2]) | C[K2] // A generic tuple type indexed by a number exists only when the index type doesn't select a // fixed element. We simplify to either the combined type of all elements (when the index type // the actual number type) or to the combined type of all non-fixed elements. if (isGenericTupleType(objectType) && indexType.flags & 296 /* TypeFlags.NumberLike */) { var elementType = getElementTypeOfSliceOfTupleType(objectType, indexType.flags & 8 /* TypeFlags.Number */ ? 0 : objectType.target.fixedLength, /*endSkipCount*/ 0, writing); if (elementType) { return type[cache] = elementType; } } // If the object type is a mapped type { [P in K]: E }, where K is generic, or { [P in K as N]: E }, where // K is generic and N is assignable to P, instantiate E using a mapper that substitutes the index type for P. // For example, for an index access { [P in K]: Box }[X], we construct the type Box. if (isGenericMappedType(objectType)) { var nameType = getNameTypeFromMappedType(objectType); if (!nameType || isTypeAssignableTo(nameType, getTypeParameterFromMappedType(objectType))) { return type[cache] = mapType(substituteIndexedMappedType(objectType, type.indexType), function (t) { return getSimplifiedType(t, writing); }); } } return type[cache] = type; } function getSimplifiedConditionalType(type, writing) { var checkType = type.checkType; var extendsType = type.extendsType; var trueType = getTrueTypeFromConditionalType(type); var falseType = getFalseTypeFromConditionalType(type); // Simplifications for types of the form `T extends U ? T : never` and `T extends U ? never : T`. if (falseType.flags & 131072 /* TypeFlags.Never */ && getActualTypeVariable(trueType) === getActualTypeVariable(checkType)) { if (checkType.flags & 1 /* TypeFlags.Any */ || isTypeAssignableTo(getRestrictiveInstantiation(checkType), getRestrictiveInstantiation(extendsType))) { // Always true return getSimplifiedType(trueType, writing); } else if (isIntersectionEmpty(checkType, extendsType)) { // Always false return neverType; } } else if (trueType.flags & 131072 /* TypeFlags.Never */ && getActualTypeVariable(falseType) === getActualTypeVariable(checkType)) { if (!(checkType.flags & 1 /* TypeFlags.Any */) && isTypeAssignableTo(getRestrictiveInstantiation(checkType), getRestrictiveInstantiation(extendsType))) { // Always true return neverType; } else if (checkType.flags & 1 /* TypeFlags.Any */ || isIntersectionEmpty(checkType, extendsType)) { // Always false return getSimplifiedType(falseType, writing); } } return type; } /** * Invokes union simplification logic to determine if an intersection is considered empty as a union constituent */ function isIntersectionEmpty(type1, type2) { return !!(getUnionType([intersectTypes(type1, type2), neverType]).flags & 131072 /* TypeFlags.Never */); } function substituteIndexedMappedType(objectType, index) { var mapper = createTypeMapper([getTypeParameterFromMappedType(objectType)], [index]); var templateMapper = combineTypeMappers(objectType.mapper, mapper); return instantiateType(getTemplateTypeFromMappedType(objectType), templateMapper); } function getIndexedAccessType(objectType, indexType, accessFlags, accessNode, aliasSymbol, aliasTypeArguments) { if (accessFlags === void 0) { accessFlags = 0 /* AccessFlags.None */; } return getIndexedAccessTypeOrUndefined(objectType, indexType, accessFlags, accessNode, aliasSymbol, aliasTypeArguments) || (accessNode ? errorType : unknownType); } function indexTypeLessThan(indexType, limit) { return everyType(indexType, function (t) { if (t.flags & 384 /* TypeFlags.StringOrNumberLiteral */) { var propName = getPropertyNameFromType(t); if (ts.isNumericLiteralName(propName)) { var index = +propName; return index >= 0 && index < limit; } } return false; }); } function getIndexedAccessTypeOrUndefined(objectType, indexType, accessFlags, accessNode, aliasSymbol, aliasTypeArguments) { if (accessFlags === void 0) { accessFlags = 0 /* AccessFlags.None */; } if (objectType === wildcardType || indexType === wildcardType) { return wildcardType; } // If the object type has a string index signature and no other members we know that the result will // always be the type of that index signature and we can simplify accordingly. if (isStringIndexSignatureOnlyType(objectType) && !(indexType.flags & 98304 /* TypeFlags.Nullable */) && isTypeAssignableToKind(indexType, 4 /* TypeFlags.String */ | 8 /* TypeFlags.Number */)) { indexType = stringType; } // In noUncheckedIndexedAccess mode, indexed access operations that occur in an expression in a read position and resolve to // an index signature have 'undefined' included in their type. if (compilerOptions.noUncheckedIndexedAccess && accessFlags & 32 /* AccessFlags.ExpressionPosition */) accessFlags |= 1 /* AccessFlags.IncludeUndefined */; // If the index type is generic, or if the object type is generic and doesn't originate in an expression and // the operation isn't exclusively indexing the fixed (non-variadic) portion of a tuple type, we are performing // a higher-order index access where we cannot meaningfully access the properties of the object type. Note that // for a generic T and a non-generic K, we eagerly resolve T[K] if it originates in an expression. This is to // preserve backwards compatibility. For example, an element access 'this["foo"]' has always been resolved // eagerly using the constraint type of 'this' at the given location. if (isGenericIndexType(indexType) || (accessNode && accessNode.kind !== 194 /* SyntaxKind.IndexedAccessType */ ? isGenericTupleType(objectType) && !indexTypeLessThan(indexType, objectType.target.fixedLength) : isGenericObjectType(objectType) && !(isTupleType(objectType) && indexTypeLessThan(indexType, objectType.target.fixedLength)))) { if (objectType.flags & 3 /* TypeFlags.AnyOrUnknown */) { return objectType; } // Defer the operation by creating an indexed access type. var persistentAccessFlags = accessFlags & 1 /* AccessFlags.Persistent */; var id = objectType.id + "," + indexType.id + "," + persistentAccessFlags + getAliasId(aliasSymbol, aliasTypeArguments); var type = indexedAccessTypes.get(id); if (!type) { indexedAccessTypes.set(id, type = createIndexedAccessType(objectType, indexType, persistentAccessFlags, aliasSymbol, aliasTypeArguments)); } return type; } // In the following we resolve T[K] to the type of the property in T selected by K. // We treat boolean as different from other unions to improve errors; // skipping straight to getPropertyTypeForIndexType gives errors with 'boolean' instead of 'true'. var apparentObjectType = getReducedApparentType(objectType); if (indexType.flags & 1048576 /* TypeFlags.Union */ && !(indexType.flags & 16 /* TypeFlags.Boolean */)) { var propTypes = []; var wasMissingProp = false; for (var _i = 0, _a = indexType.types; _i < _a.length; _i++) { var t = _a[_i]; var propType = getPropertyTypeForIndexType(objectType, apparentObjectType, t, indexType, accessNode, accessFlags | (wasMissingProp ? 128 /* AccessFlags.SuppressNoImplicitAnyError */ : 0)); if (propType) { propTypes.push(propType); } else if (!accessNode) { // If there's no error node, we can immeditely stop, since error reporting is off return undefined; } else { // Otherwise we set a flag and return at the end of the loop so we still mark all errors wasMissingProp = true; } } if (wasMissingProp) { return undefined; } return accessFlags & 4 /* AccessFlags.Writing */ ? getIntersectionType(propTypes, aliasSymbol, aliasTypeArguments) : getUnionType(propTypes, 1 /* UnionReduction.Literal */, aliasSymbol, aliasTypeArguments); } return getPropertyTypeForIndexType(objectType, apparentObjectType, indexType, indexType, accessNode, accessFlags | 8 /* AccessFlags.CacheSymbol */ | 64 /* AccessFlags.ReportDeprecated */); } function getTypeFromIndexedAccessTypeNode(node) { var links = getNodeLinks(node); if (!links.resolvedType) { var objectType = getTypeFromTypeNode(node.objectType); var indexType = getTypeFromTypeNode(node.indexType); var potentialAlias = getAliasSymbolForTypeNode(node); var resolved = getIndexedAccessType(objectType, indexType, 0 /* AccessFlags.None */, node, potentialAlias, getTypeArgumentsForAliasSymbol(potentialAlias)); links.resolvedType = resolved.flags & 8388608 /* TypeFlags.IndexedAccess */ && resolved.objectType === objectType && resolved.indexType === indexType ? getConditionalFlowTypeOfType(resolved, node) : resolved; } return links.resolvedType; } function getTypeFromMappedTypeNode(node) { var links = getNodeLinks(node); if (!links.resolvedType) { var type = createObjectType(32 /* ObjectFlags.Mapped */, node.symbol); type.declaration = node; type.aliasSymbol = getAliasSymbolForTypeNode(node); type.aliasTypeArguments = getTypeArgumentsForAliasSymbol(type.aliasSymbol); links.resolvedType = type; // Eagerly resolve the constraint type which forces an error if the constraint type circularly // references itself through one or more type aliases. getConstraintTypeFromMappedType(type); } return links.resolvedType; } function getActualTypeVariable(type) { if (type.flags & 33554432 /* TypeFlags.Substitution */) { return type.baseType; } if (type.flags & 8388608 /* TypeFlags.IndexedAccess */ && (type.objectType.flags & 33554432 /* TypeFlags.Substitution */ || type.indexType.flags & 33554432 /* TypeFlags.Substitution */)) { return getIndexedAccessType(getActualTypeVariable(type.objectType), getActualTypeVariable(type.indexType)); } return type; } function maybeCloneTypeParameter(p) { var constraint = getConstraintOfTypeParameter(p); return constraint && (isGenericObjectType(constraint) || isGenericIndexType(constraint)) ? cloneTypeParameter(p) : p; } function isTypicalNondistributiveConditional(root) { return !root.isDistributive && isSingletonTupleType(root.node.checkType) && isSingletonTupleType(root.node.extendsType); } function isSingletonTupleType(node) { return ts.isTupleTypeNode(node) && ts.length(node.elements) === 1 && !ts.isOptionalTypeNode(node.elements[0]) && !ts.isRestTypeNode(node.elements[0]) && !(ts.isNamedTupleMember(node.elements[0]) && (node.elements[0].questionToken || node.elements[0].dotDotDotToken)); } /** * We syntactually check for common nondistributive conditional shapes and unwrap them into * the intended comparison - we do this so we can check if the unwrapped types are generic or * not and appropriately defer condition calculation */ function unwrapNondistributiveConditionalTuple(root, type) { return isTypicalNondistributiveConditional(root) && isTupleType(type) ? getTypeArguments(type)[0] : type; } function getConditionalType(root, mapper, aliasSymbol, aliasTypeArguments) { var result; var extraTypes; var tailCount = 0; var _loop_18 = function () { if (tailCount === 1000) { error(currentNode, ts.Diagnostics.Type_instantiation_is_excessively_deep_and_possibly_infinite); result = errorType; return "break"; } var isUnwrapped = isTypicalNondistributiveConditional(root); var checkType = instantiateType(unwrapNondistributiveConditionalTuple(root, getActualTypeVariable(root.checkType)), mapper); var checkTypeInstantiable = isGenericType(checkType); var extendsType = instantiateType(unwrapNondistributiveConditionalTuple(root, root.extendsType), mapper); if (checkType === wildcardType || extendsType === wildcardType) { return { value: wildcardType }; } var combinedMapper = void 0; if (root.inferTypeParameters) { // When we're looking at making an inference for an infer type, when we get its constraint, it'll automagically be // instantiated with the context, so it doesn't need the mapper for the inference contex - however the constraint // may refer to another _root_, _uncloned_ `infer` type parameter [1], or to something mapped by `mapper` [2]. // [1] Eg, if we have `Foo` and `Foo` - `B` is constrained to `T`, which, in turn, has been instantiated // as `number` // Conversely, if we have `Foo`, `B` is still constrained to `T` and `T` is instantiated as `A` // [2] Eg, if we have `Foo` and `Foo` where `Q` is mapped by `mapper` into `number` - `B` is constrained to `T` // which is in turn instantiated as `Q`, which is in turn instantiated as `number`. // So we need to: // * Clone the type parameters so their constraints can be instantiated in the context of `mapper` (otherwise theyd only get inference context information) // * Set the clones to both map the conditional's enclosing `mapper` and the original params // * instantiate the extends type with the clones // * incorporate all of the component mappers into the combined mapper for the true and false members // This means we have three mappers that need applying: // * The original `mapper` used to create this conditional // * The mapper that maps the old root type parameter to the clone (`freshMapper`) // * The mapper that maps the clone to its inference result (`context.mapper`) var freshParams = ts.sameMap(root.inferTypeParameters, maybeCloneTypeParameter); var freshMapper = freshParams !== root.inferTypeParameters ? createTypeMapper(root.inferTypeParameters, freshParams) : undefined; var context = createInferenceContext(freshParams, /*signature*/ undefined, 0 /* InferenceFlags.None */); if (freshMapper) { var freshCombinedMapper = combineTypeMappers(mapper, freshMapper); for (var _i = 0, freshParams_1 = freshParams; _i < freshParams_1.length; _i++) { var p = freshParams_1[_i]; if (root.inferTypeParameters.indexOf(p) === -1) { p.mapper = freshCombinedMapper; } } } // We skip inference of the possible `infer` types unles the `extendsType` _is_ an infer type // if it was, it's trivial to say that extendsType = checkType, however such a pattern is used to // "reset" the type being build up during constraint calculation and avoid making an apparently "infinite" constraint // so in those cases we refain from performing inference and retain the uninfered type parameter if (!checkTypeInstantiable || !ts.some(root.inferTypeParameters, function (t) { return t === extendsType; })) { // We don't want inferences from constraints as they may cause us to eagerly resolve the // conditional type instead of deferring resolution. Also, we always want strict function // types rules (i.e. proper contravariance) for inferences. inferTypes(context.inferences, checkType, instantiateType(extendsType, freshMapper), 512 /* InferencePriority.NoConstraints */ | 1024 /* InferencePriority.AlwaysStrict */); } var innerMapper = combineTypeMappers(freshMapper, context.mapper); // It's possible for 'infer T' type paramteters to be given uninstantiated constraints when the // those type parameters are used in type references (see getInferredTypeParameterConstraint). For // that reason we need context.mapper to be first in the combined mapper. See #42636 for examples. combinedMapper = mapper ? combineTypeMappers(innerMapper, mapper) : innerMapper; } // Instantiate the extends type including inferences for 'infer T' type parameters var inferredExtendsType = combinedMapper ? instantiateType(unwrapNondistributiveConditionalTuple(root, root.extendsType), combinedMapper) : extendsType; // We attempt to resolve the conditional type only when the check and extends types are non-generic if (!checkTypeInstantiable && !isGenericType(inferredExtendsType)) { // Return falseType for a definitely false extends check. We check an instantiations of the two // types with type parameters mapped to the wildcard type, the most permissive instantiations // possible (the wildcard type is assignable to and from all types). If those are not related, // then no instantiations will be and we can just return the false branch type. if (!(inferredExtendsType.flags & 3 /* TypeFlags.AnyOrUnknown */) && ((checkType.flags & 1 /* TypeFlags.Any */ && !isUnwrapped) || !isTypeAssignableTo(getPermissiveInstantiation(checkType), getPermissiveInstantiation(inferredExtendsType)))) { // Return union of trueType and falseType for 'any' since it matches anything if (checkType.flags & 1 /* TypeFlags.Any */ && !isUnwrapped) { (extraTypes || (extraTypes = [])).push(instantiateType(getTypeFromTypeNode(root.node.trueType), combinedMapper || mapper)); } // If falseType is an immediately nested conditional type that isn't distributive or has an // identical checkType, switch to that type and loop. var falseType_1 = getTypeFromTypeNode(root.node.falseType); if (falseType_1.flags & 16777216 /* TypeFlags.Conditional */) { var newRoot = falseType_1.root; if (newRoot.node.parent === root.node && (!newRoot.isDistributive || newRoot.checkType === root.checkType)) { root = newRoot; return "continue"; } if (canTailRecurse(falseType_1, mapper)) { return "continue"; } } result = instantiateType(falseType_1, mapper); return "break"; } // Return trueType for a definitely true extends check. We check instantiations of the two // types with type parameters mapped to their restrictive form, i.e. a form of the type parameter // that has no constraint. This ensures that, for example, the type // type Foo = T extends { x: string } ? string : number // doesn't immediately resolve to 'string' instead of being deferred. if (inferredExtendsType.flags & 3 /* TypeFlags.AnyOrUnknown */ || isTypeAssignableTo(getRestrictiveInstantiation(checkType), getRestrictiveInstantiation(inferredExtendsType))) { var trueType_1 = getTypeFromTypeNode(root.node.trueType); var trueMapper = combinedMapper || mapper; if (canTailRecurse(trueType_1, trueMapper)) { return "continue"; } result = instantiateType(trueType_1, trueMapper); return "break"; } } // Return a deferred type for a check that is neither definitely true nor definitely false result = createType(16777216 /* TypeFlags.Conditional */); result.root = root; result.checkType = instantiateType(root.checkType, mapper); result.extendsType = instantiateType(root.extendsType, mapper); result.mapper = mapper; result.combinedMapper = combinedMapper; result.aliasSymbol = aliasSymbol || root.aliasSymbol; result.aliasTypeArguments = aliasSymbol ? aliasTypeArguments : instantiateTypes(root.aliasTypeArguments, mapper); // TODO: GH#18217 return "break"; }; // We loop here for an immediately nested conditional type in the false position, effectively treating // types of the form 'A extends B ? X : C extends D ? Y : E extends F ? Z : ...' as a single construct for // purposes of resolution. We also loop here when resolution of a conditional type ends in resolution of // another (or, through recursion, possibly the same) conditional type. In the potentially tail-recursive // cases we increment the tail recursion counter and stop after 1000 iterations. while (true) { var state_5 = _loop_18(); if (typeof state_5 === "object") return state_5.value; if (state_5 === "break") break; } return extraTypes ? getUnionType(ts.append(extraTypes, result)) : result; // We tail-recurse for generic conditional types that (a) have not already been evaluated and cached, and // (b) are non distributive, have a check type that is unaffected by instantiation, or have a non-union check // type. Note that recursion is possible only through aliased conditional types, so we only increment the tail // recursion counter for those. function canTailRecurse(newType, newMapper) { if (newType.flags & 16777216 /* TypeFlags.Conditional */ && newMapper) { var newRoot = newType.root; if (newRoot.outerTypeParameters) { var typeParamMapper_1 = combineTypeMappers(newType.mapper, newMapper); var typeArguments = ts.map(newRoot.outerTypeParameters, function (t) { return getMappedType(t, typeParamMapper_1); }); var newRootMapper = createTypeMapper(newRoot.outerTypeParameters, typeArguments); var newCheckType = newRoot.isDistributive ? getMappedType(newRoot.checkType, newRootMapper) : undefined; if (!newCheckType || newCheckType === newRoot.checkType || !(newCheckType.flags & (1048576 /* TypeFlags.Union */ | 131072 /* TypeFlags.Never */))) { root = newRoot; mapper = newRootMapper; aliasSymbol = undefined; aliasTypeArguments = undefined; if (newRoot.aliasSymbol) { tailCount++; } return true; } } } return false; } } function getTrueTypeFromConditionalType(type) { return type.resolvedTrueType || (type.resolvedTrueType = instantiateType(getTypeFromTypeNode(type.root.node.trueType), type.mapper)); } function getFalseTypeFromConditionalType(type) { return type.resolvedFalseType || (type.resolvedFalseType = instantiateType(getTypeFromTypeNode(type.root.node.falseType), type.mapper)); } function getInferredTrueTypeFromConditionalType(type) { return type.resolvedInferredTrueType || (type.resolvedInferredTrueType = type.combinedMapper ? instantiateType(getTypeFromTypeNode(type.root.node.trueType), type.combinedMapper) : getTrueTypeFromConditionalType(type)); } function getInferTypeParameters(node) { var result; if (node.locals) { node.locals.forEach(function (symbol) { if (symbol.flags & 262144 /* SymbolFlags.TypeParameter */) { result = ts.append(result, getDeclaredTypeOfSymbol(symbol)); } }); } return result; } function isDistributionDependent(root) { return root.isDistributive && (isTypeParameterPossiblyReferenced(root.checkType, root.node.trueType) || isTypeParameterPossiblyReferenced(root.checkType, root.node.falseType)); } function getTypeFromConditionalTypeNode(node) { var links = getNodeLinks(node); if (!links.resolvedType) { var checkType = getTypeFromTypeNode(node.checkType); var aliasSymbol = getAliasSymbolForTypeNode(node); var aliasTypeArguments = getTypeArgumentsForAliasSymbol(aliasSymbol); var allOuterTypeParameters = getOuterTypeParameters(node, /*includeThisTypes*/ true); var outerTypeParameters = aliasTypeArguments ? allOuterTypeParameters : ts.filter(allOuterTypeParameters, function (tp) { return isTypeParameterPossiblyReferenced(tp, node); }); var root = { node: node, checkType: checkType, extendsType: getTypeFromTypeNode(node.extendsType), isDistributive: !!(checkType.flags & 262144 /* TypeFlags.TypeParameter */), inferTypeParameters: getInferTypeParameters(node), outerTypeParameters: outerTypeParameters, instantiations: undefined, aliasSymbol: aliasSymbol, aliasTypeArguments: aliasTypeArguments }; links.resolvedType = getConditionalType(root, /*mapper*/ undefined); if (outerTypeParameters) { root.instantiations = new ts.Map(); root.instantiations.set(getTypeListId(outerTypeParameters), links.resolvedType); } } return links.resolvedType; } function getTypeFromInferTypeNode(node) { var links = getNodeLinks(node); if (!links.resolvedType) { links.resolvedType = getDeclaredTypeOfTypeParameter(getSymbolOfNode(node.typeParameter)); } return links.resolvedType; } function getIdentifierChain(node) { if (ts.isIdentifier(node)) { return [node]; } else { return ts.append(getIdentifierChain(node.left), node.right); } } function getTypeFromImportTypeNode(node) { var links = getNodeLinks(node); if (!links.resolvedType) { if (node.isTypeOf && node.typeArguments) { // Only the non-typeof form can make use of type arguments error(node, ts.Diagnostics.Type_arguments_cannot_be_used_here); links.resolvedSymbol = unknownSymbol; return links.resolvedType = errorType; } if (!ts.isLiteralImportTypeNode(node)) { error(node.argument, ts.Diagnostics.String_literal_expected); links.resolvedSymbol = unknownSymbol; return links.resolvedType = errorType; } var targetMeaning = node.isTypeOf ? 111551 /* SymbolFlags.Value */ : node.flags & 8388608 /* NodeFlags.JSDoc */ ? 111551 /* SymbolFlags.Value */ | 788968 /* SymbolFlags.Type */ : 788968 /* SymbolFlags.Type */; // TODO: Future work: support unions/generics/whatever via a deferred import-type var innerModuleSymbol = resolveExternalModuleName(node, node.argument.literal); if (!innerModuleSymbol) { links.resolvedSymbol = unknownSymbol; return links.resolvedType = errorType; } var moduleSymbol = resolveExternalModuleSymbol(innerModuleSymbol, /*dontResolveAlias*/ false); if (!ts.nodeIsMissing(node.qualifier)) { var nameStack = getIdentifierChain(node.qualifier); var currentNamespace = moduleSymbol; var current = void 0; while (current = nameStack.shift()) { var meaning = nameStack.length ? 1920 /* SymbolFlags.Namespace */ : targetMeaning; // typeof a.b.c is normally resolved using `checkExpression` which in turn defers to `checkQualifiedName` // That, in turn, ultimately uses `getPropertyOfType` on the type of the symbol, which differs slightly from // the `exports` lookup process that only looks up namespace members which is used for most type references var mergedResolvedSymbol = getMergedSymbol(resolveSymbol(currentNamespace)); var next = node.isTypeOf ? getPropertyOfType(getTypeOfSymbol(mergedResolvedSymbol), current.escapedText) : getSymbol(getExportsOfSymbol(mergedResolvedSymbol), current.escapedText, meaning); if (!next) { error(current, ts.Diagnostics.Namespace_0_has_no_exported_member_1, getFullyQualifiedName(currentNamespace), ts.declarationNameToString(current)); return links.resolvedType = errorType; } getNodeLinks(current).resolvedSymbol = next; getNodeLinks(current.parent).resolvedSymbol = next; currentNamespace = next; } links.resolvedType = resolveImportSymbolType(node, links, currentNamespace, targetMeaning); } else { if (moduleSymbol.flags & targetMeaning) { links.resolvedType = resolveImportSymbolType(node, links, moduleSymbol, targetMeaning); } else { var errorMessage = targetMeaning === 111551 /* SymbolFlags.Value */ ? ts.Diagnostics.Module_0_does_not_refer_to_a_value_but_is_used_as_a_value_here : ts.Diagnostics.Module_0_does_not_refer_to_a_type_but_is_used_as_a_type_here_Did_you_mean_typeof_import_0; error(node, errorMessage, node.argument.literal.text); links.resolvedSymbol = unknownSymbol; links.resolvedType = errorType; } } } return links.resolvedType; } function resolveImportSymbolType(node, links, symbol, meaning) { var resolvedSymbol = resolveSymbol(symbol); links.resolvedSymbol = resolvedSymbol; if (meaning === 111551 /* SymbolFlags.Value */) { return getTypeOfSymbol(symbol); // intentionally doesn't use resolved symbol so type is cached as expected on the alias } else { return getTypeReferenceType(node, resolvedSymbol); // getTypeReferenceType doesn't handle aliases - it must get the resolved symbol } } function getTypeFromTypeLiteralOrFunctionOrConstructorTypeNode(node) { var links = getNodeLinks(node); if (!links.resolvedType) { // Deferred resolution of members is handled by resolveObjectTypeMembers var aliasSymbol = getAliasSymbolForTypeNode(node); if (getMembersOfSymbol(node.symbol).size === 0 && !aliasSymbol) { links.resolvedType = emptyTypeLiteralType; } else { var type = createObjectType(16 /* ObjectFlags.Anonymous */, node.symbol); type.aliasSymbol = aliasSymbol; type.aliasTypeArguments = getTypeArgumentsForAliasSymbol(aliasSymbol); if (ts.isJSDocTypeLiteral(node) && node.isArrayType) { type = createArrayType(type); } links.resolvedType = type; } } return links.resolvedType; } function getAliasSymbolForTypeNode(node) { var host = node.parent; while (ts.isParenthesizedTypeNode(host) || ts.isJSDocTypeExpression(host) || ts.isTypeOperatorNode(host) && host.operator === 145 /* SyntaxKind.ReadonlyKeyword */) { host = host.parent; } return ts.isTypeAlias(host) ? getSymbolOfNode(host) : undefined; } function getTypeArgumentsForAliasSymbol(symbol) { return symbol ? getLocalTypeParametersOfClassOrInterfaceOrTypeAlias(symbol) : undefined; } function isNonGenericObjectType(type) { return !!(type.flags & 524288 /* TypeFlags.Object */) && !isGenericMappedType(type); } function isEmptyObjectTypeOrSpreadsIntoEmptyObject(type) { return isEmptyObjectType(type) || !!(type.flags & (65536 /* TypeFlags.Null */ | 32768 /* TypeFlags.Undefined */ | 528 /* TypeFlags.BooleanLike */ | 296 /* TypeFlags.NumberLike */ | 2112 /* TypeFlags.BigIntLike */ | 402653316 /* TypeFlags.StringLike */ | 1056 /* TypeFlags.EnumLike */ | 67108864 /* TypeFlags.NonPrimitive */ | 4194304 /* TypeFlags.Index */)); } function tryMergeUnionOfObjectTypeAndEmptyObject(type, readonly) { if (!(type.flags & 1048576 /* TypeFlags.Union */)) { return type; } if (ts.every(type.types, isEmptyObjectTypeOrSpreadsIntoEmptyObject)) { return ts.find(type.types, isEmptyObjectType) || emptyObjectType; } var firstType = ts.find(type.types, function (t) { return !isEmptyObjectTypeOrSpreadsIntoEmptyObject(t); }); if (!firstType) { return type; } var secondType = ts.find(type.types, function (t) { return t !== firstType && !isEmptyObjectTypeOrSpreadsIntoEmptyObject(t); }); if (secondType) { return type; } return getAnonymousPartialType(firstType); function getAnonymousPartialType(type) { // gets the type as if it had been spread, but where everything in the spread is made optional var members = ts.createSymbolTable(); for (var _i = 0, _a = getPropertiesOfType(type); _i < _a.length; _i++) { var prop = _a[_i]; if (ts.getDeclarationModifierFlagsFromSymbol(prop) & (8 /* ModifierFlags.Private */ | 16 /* ModifierFlags.Protected */)) { // do nothing, skip privates } else if (isSpreadableProperty(prop)) { var isSetonlyAccessor = prop.flags & 65536 /* SymbolFlags.SetAccessor */ && !(prop.flags & 32768 /* SymbolFlags.GetAccessor */); var flags = 4 /* SymbolFlags.Property */ | 16777216 /* SymbolFlags.Optional */; var result = createSymbol(flags, prop.escapedName, getIsLateCheckFlag(prop) | (readonly ? 8 /* CheckFlags.Readonly */ : 0)); result.type = isSetonlyAccessor ? undefinedType : addOptionality(getTypeOfSymbol(prop), /*isProperty*/ true); result.declarations = prop.declarations; result.nameType = getSymbolLinks(prop).nameType; result.syntheticOrigin = prop; members.set(prop.escapedName, result); } } var spread = createAnonymousType(type.symbol, members, ts.emptyArray, ts.emptyArray, getIndexInfosOfType(type)); spread.objectFlags |= 128 /* ObjectFlags.ObjectLiteral */ | 131072 /* ObjectFlags.ContainsObjectOrArrayLiteral */; return spread; } } /** * Since the source of spread types are object literals, which are not binary, * this function should be called in a left folding style, with left = previous result of getSpreadType * and right = the new element to be spread. */ function getSpreadType(left, right, symbol, objectFlags, readonly) { if (left.flags & 1 /* TypeFlags.Any */ || right.flags & 1 /* TypeFlags.Any */) { return anyType; } if (left.flags & 2 /* TypeFlags.Unknown */ || right.flags & 2 /* TypeFlags.Unknown */) { return unknownType; } if (left.flags & 131072 /* TypeFlags.Never */) { return right; } if (right.flags & 131072 /* TypeFlags.Never */) { return left; } left = tryMergeUnionOfObjectTypeAndEmptyObject(left, readonly); if (left.flags & 1048576 /* TypeFlags.Union */) { return checkCrossProductUnion([left, right]) ? mapType(left, function (t) { return getSpreadType(t, right, symbol, objectFlags, readonly); }) : errorType; } right = tryMergeUnionOfObjectTypeAndEmptyObject(right, readonly); if (right.flags & 1048576 /* TypeFlags.Union */) { return checkCrossProductUnion([left, right]) ? mapType(right, function (t) { return getSpreadType(left, t, symbol, objectFlags, readonly); }) : errorType; } if (right.flags & (528 /* TypeFlags.BooleanLike */ | 296 /* TypeFlags.NumberLike */ | 2112 /* TypeFlags.BigIntLike */ | 402653316 /* TypeFlags.StringLike */ | 1056 /* TypeFlags.EnumLike */ | 67108864 /* TypeFlags.NonPrimitive */ | 4194304 /* TypeFlags.Index */)) { return left; } if (isGenericObjectType(left) || isGenericObjectType(right)) { if (isEmptyObjectType(left)) { return right; } // When the left type is an intersection, we may need to merge the last constituent of the // intersection with the right type. For example when the left type is 'T & { a: string }' // and the right type is '{ b: string }' we produce 'T & { a: string, b: string }'. if (left.flags & 2097152 /* TypeFlags.Intersection */) { var types = left.types; var lastLeft = types[types.length - 1]; if (isNonGenericObjectType(lastLeft) && isNonGenericObjectType(right)) { return getIntersectionType(ts.concatenate(types.slice(0, types.length - 1), [getSpreadType(lastLeft, right, symbol, objectFlags, readonly)])); } } return getIntersectionType([left, right]); } var members = ts.createSymbolTable(); var skippedPrivateMembers = new ts.Set(); var indexInfos = left === emptyObjectType ? getIndexInfosOfType(right) : getUnionIndexInfos([left, right]); for (var _i = 0, _a = getPropertiesOfType(right); _i < _a.length; _i++) { var rightProp = _a[_i]; if (ts.getDeclarationModifierFlagsFromSymbol(rightProp) & (8 /* ModifierFlags.Private */ | 16 /* ModifierFlags.Protected */)) { skippedPrivateMembers.add(rightProp.escapedName); } else if (isSpreadableProperty(rightProp)) { members.set(rightProp.escapedName, getSpreadSymbol(rightProp, readonly)); } } for (var _b = 0, _c = getPropertiesOfType(left); _b < _c.length; _b++) { var leftProp = _c[_b]; if (skippedPrivateMembers.has(leftProp.escapedName) || !isSpreadableProperty(leftProp)) { continue; } if (members.has(leftProp.escapedName)) { var rightProp = members.get(leftProp.escapedName); var rightType = getTypeOfSymbol(rightProp); if (rightProp.flags & 16777216 /* SymbolFlags.Optional */) { var declarations = ts.concatenate(leftProp.declarations, rightProp.declarations); var flags = 4 /* SymbolFlags.Property */ | (leftProp.flags & 16777216 /* SymbolFlags.Optional */); var result = createSymbol(flags, leftProp.escapedName); result.type = getUnionType([getTypeOfSymbol(leftProp), removeMissingOrUndefinedType(rightType)], 2 /* UnionReduction.Subtype */); result.leftSpread = leftProp; result.rightSpread = rightProp; result.declarations = declarations; result.nameType = getSymbolLinks(leftProp).nameType; members.set(leftProp.escapedName, result); } } else { members.set(leftProp.escapedName, getSpreadSymbol(leftProp, readonly)); } } var spread = createAnonymousType(symbol, members, ts.emptyArray, ts.emptyArray, ts.sameMap(indexInfos, function (info) { return getIndexInfoWithReadonly(info, readonly); })); spread.objectFlags |= 128 /* ObjectFlags.ObjectLiteral */ | 131072 /* ObjectFlags.ContainsObjectOrArrayLiteral */ | 2097152 /* ObjectFlags.ContainsSpread */ | objectFlags; return spread; } /** We approximate own properties as non-methods plus methods that are inside the object literal */ function isSpreadableProperty(prop) { var _a; return !ts.some(prop.declarations, ts.isPrivateIdentifierClassElementDeclaration) && (!(prop.flags & (8192 /* SymbolFlags.Method */ | 32768 /* SymbolFlags.GetAccessor */ | 65536 /* SymbolFlags.SetAccessor */)) || !((_a = prop.declarations) === null || _a === void 0 ? void 0 : _a.some(function (decl) { return ts.isClassLike(decl.parent); }))); } function getSpreadSymbol(prop, readonly) { var isSetonlyAccessor = prop.flags & 65536 /* SymbolFlags.SetAccessor */ && !(prop.flags & 32768 /* SymbolFlags.GetAccessor */); if (!isSetonlyAccessor && readonly === isReadonlySymbol(prop)) { return prop; } var flags = 4 /* SymbolFlags.Property */ | (prop.flags & 16777216 /* SymbolFlags.Optional */); var result = createSymbol(flags, prop.escapedName, getIsLateCheckFlag(prop) | (readonly ? 8 /* CheckFlags.Readonly */ : 0)); result.type = isSetonlyAccessor ? undefinedType : getTypeOfSymbol(prop); result.declarations = prop.declarations; result.nameType = getSymbolLinks(prop).nameType; result.syntheticOrigin = prop; return result; } function getIndexInfoWithReadonly(info, readonly) { return info.isReadonly !== readonly ? createIndexInfo(info.keyType, info.type, readonly, info.declaration) : info; } function createLiteralType(flags, value, symbol, regularType) { var type = createType(flags); type.symbol = symbol; type.value = value; type.regularType = regularType || type; return type; } function getFreshTypeOfLiteralType(type) { if (type.flags & 2944 /* TypeFlags.Literal */) { if (!type.freshType) { var freshType = createLiteralType(type.flags, type.value, type.symbol, type); freshType.freshType = freshType; type.freshType = freshType; } return type.freshType; } return type; } function getRegularTypeOfLiteralType(type) { return type.flags & 2944 /* TypeFlags.Literal */ ? type.regularType : type.flags & 1048576 /* TypeFlags.Union */ ? (type.regularType || (type.regularType = mapType(type, getRegularTypeOfLiteralType))) : type; } function isFreshLiteralType(type) { return !!(type.flags & 2944 /* TypeFlags.Literal */) && type.freshType === type; } function getStringLiteralType(value) { var type; return stringLiteralTypes.get(value) || (stringLiteralTypes.set(value, type = createLiteralType(128 /* TypeFlags.StringLiteral */, value)), type); } function getNumberLiteralType(value) { var type; return numberLiteralTypes.get(value) || (numberLiteralTypes.set(value, type = createLiteralType(256 /* TypeFlags.NumberLiteral */, value)), type); } function getBigIntLiteralType(value) { var type; var key = ts.pseudoBigIntToString(value); return bigIntLiteralTypes.get(key) || (bigIntLiteralTypes.set(key, type = createLiteralType(2048 /* TypeFlags.BigIntLiteral */, value)), type); } function getEnumLiteralType(value, enumId, symbol) { var type; var qualifier = typeof value === "string" ? "@" : "#"; var key = enumId + qualifier + value; var flags = 1024 /* TypeFlags.EnumLiteral */ | (typeof value === "string" ? 128 /* TypeFlags.StringLiteral */ : 256 /* TypeFlags.NumberLiteral */); return enumLiteralTypes.get(key) || (enumLiteralTypes.set(key, type = createLiteralType(flags, value, symbol)), type); } function getTypeFromLiteralTypeNode(node) { if (node.literal.kind === 104 /* SyntaxKind.NullKeyword */) { return nullType; } var links = getNodeLinks(node); if (!links.resolvedType) { links.resolvedType = getRegularTypeOfLiteralType(checkExpression(node.literal)); } return links.resolvedType; } function createUniqueESSymbolType(symbol) { var type = createType(8192 /* TypeFlags.UniqueESSymbol */); type.symbol = symbol; type.escapedName = "__@".concat(type.symbol.escapedName, "@").concat(getSymbolId(type.symbol)); return type; } function getESSymbolLikeTypeForNode(node) { if (ts.isValidESSymbolDeclaration(node)) { var symbol = ts.isCommonJsExportPropertyAssignment(node) ? getSymbolOfNode(node.left) : getSymbolOfNode(node); if (symbol) { var links = getSymbolLinks(symbol); return links.uniqueESSymbolType || (links.uniqueESSymbolType = createUniqueESSymbolType(symbol)); } } return esSymbolType; } function getThisType(node) { var container = ts.getThisContainer(node, /*includeArrowFunctions*/ false); var parent = container && container.parent; if (parent && (ts.isClassLike(parent) || parent.kind === 258 /* SyntaxKind.InterfaceDeclaration */)) { if (!ts.isStatic(container) && (!ts.isConstructorDeclaration(container) || ts.isNodeDescendantOf(node, container.body))) { return getDeclaredTypeOfClassOrInterface(getSymbolOfNode(parent)).thisType; } } // inside x.prototype = { ... } if (parent && ts.isObjectLiteralExpression(parent) && ts.isBinaryExpression(parent.parent) && ts.getAssignmentDeclarationKind(parent.parent) === 6 /* AssignmentDeclarationKind.Prototype */) { return getDeclaredTypeOfClassOrInterface(getSymbolOfNode(parent.parent.left).parent).thisType; } // /** @return {this} */ // x.prototype.m = function() { ... } var host = node.flags & 8388608 /* NodeFlags.JSDoc */ ? ts.getHostSignatureFromJSDoc(node) : undefined; if (host && ts.isFunctionExpression(host) && ts.isBinaryExpression(host.parent) && ts.getAssignmentDeclarationKind(host.parent) === 3 /* AssignmentDeclarationKind.PrototypeProperty */) { return getDeclaredTypeOfClassOrInterface(getSymbolOfNode(host.parent.left).parent).thisType; } // inside constructor function C() { ... } if (isJSConstructor(container) && ts.isNodeDescendantOf(node, container.body)) { return getDeclaredTypeOfClassOrInterface(getSymbolOfNode(container)).thisType; } error(node, ts.Diagnostics.A_this_type_is_available_only_in_a_non_static_member_of_a_class_or_interface); return errorType; } function getTypeFromThisTypeNode(node) { var links = getNodeLinks(node); if (!links.resolvedType) { links.resolvedType = getThisType(node); } return links.resolvedType; } function getTypeFromRestTypeNode(node) { return getTypeFromTypeNode(getArrayElementTypeNode(node.type) || node.type); } function getArrayElementTypeNode(node) { switch (node.kind) { case 191 /* SyntaxKind.ParenthesizedType */: return getArrayElementTypeNode(node.type); case 184 /* SyntaxKind.TupleType */: if (node.elements.length === 1) { node = node.elements[0]; if (node.kind === 186 /* SyntaxKind.RestType */ || node.kind === 197 /* SyntaxKind.NamedTupleMember */ && node.dotDotDotToken) { return getArrayElementTypeNode(node.type); } } break; case 183 /* SyntaxKind.ArrayType */: return node.elementType; } return undefined; } function getTypeFromNamedTupleTypeNode(node) { var links = getNodeLinks(node); return links.resolvedType || (links.resolvedType = node.dotDotDotToken ? getTypeFromRestTypeNode(node) : addOptionality(getTypeFromTypeNode(node.type), /*isProperty*/ true, !!node.questionToken)); } function getTypeFromTypeNode(node) { return getConditionalFlowTypeOfType(getTypeFromTypeNodeWorker(node), node); } function getTypeFromTypeNodeWorker(node) { switch (node.kind) { case 130 /* SyntaxKind.AnyKeyword */: case 312 /* SyntaxKind.JSDocAllType */: case 313 /* SyntaxKind.JSDocUnknownType */: return anyType; case 155 /* SyntaxKind.UnknownKeyword */: return unknownType; case 150 /* SyntaxKind.StringKeyword */: return stringType; case 147 /* SyntaxKind.NumberKeyword */: return numberType; case 158 /* SyntaxKind.BigIntKeyword */: return bigintType; case 133 /* SyntaxKind.BooleanKeyword */: return booleanType; case 151 /* SyntaxKind.SymbolKeyword */: return esSymbolType; case 114 /* SyntaxKind.VoidKeyword */: return voidType; case 153 /* SyntaxKind.UndefinedKeyword */: return undefinedType; case 104 /* SyntaxKind.NullKeyword */: // TODO(rbuckton): `NullKeyword` is no longer a `TypeNode`, but we defensively allow it here because of incorrect casts in the Language Service. return nullType; case 143 /* SyntaxKind.NeverKeyword */: return neverType; case 148 /* SyntaxKind.ObjectKeyword */: return node.flags & 262144 /* NodeFlags.JavaScriptFile */ && !noImplicitAny ? anyType : nonPrimitiveType; case 138 /* SyntaxKind.IntrinsicKeyword */: return intrinsicMarkerType; case 192 /* SyntaxKind.ThisType */: case 108 /* SyntaxKind.ThisKeyword */: // TODO(rbuckton): `ThisKeyword` is no longer a `TypeNode`, but we defensively allow it here because of incorrect casts in the Language Service and because of `isPartOfTypeNode`. return getTypeFromThisTypeNode(node); case 196 /* SyntaxKind.LiteralType */: return getTypeFromLiteralTypeNode(node); case 178 /* SyntaxKind.TypeReference */: return getTypeFromTypeReference(node); case 177 /* SyntaxKind.TypePredicate */: return node.assertsModifier ? voidType : booleanType; case 228 /* SyntaxKind.ExpressionWithTypeArguments */: return getTypeFromTypeReference(node); case 181 /* SyntaxKind.TypeQuery */: return getTypeFromTypeQueryNode(node); case 183 /* SyntaxKind.ArrayType */: case 184 /* SyntaxKind.TupleType */: return getTypeFromArrayOrTupleTypeNode(node); case 185 /* SyntaxKind.OptionalType */: return getTypeFromOptionalTypeNode(node); case 187 /* SyntaxKind.UnionType */: return getTypeFromUnionTypeNode(node); case 188 /* SyntaxKind.IntersectionType */: return getTypeFromIntersectionTypeNode(node); case 314 /* SyntaxKind.JSDocNullableType */: return getTypeFromJSDocNullableTypeNode(node); case 316 /* SyntaxKind.JSDocOptionalType */: return addOptionality(getTypeFromTypeNode(node.type)); case 197 /* SyntaxKind.NamedTupleMember */: return getTypeFromNamedTupleTypeNode(node); case 191 /* SyntaxKind.ParenthesizedType */: case 315 /* SyntaxKind.JSDocNonNullableType */: case 309 /* SyntaxKind.JSDocTypeExpression */: return getTypeFromTypeNode(node.type); case 186 /* SyntaxKind.RestType */: return getTypeFromRestTypeNode(node); case 318 /* SyntaxKind.JSDocVariadicType */: return getTypeFromJSDocVariadicType(node); case 179 /* SyntaxKind.FunctionType */: case 180 /* SyntaxKind.ConstructorType */: case 182 /* SyntaxKind.TypeLiteral */: case 322 /* SyntaxKind.JSDocTypeLiteral */: case 317 /* SyntaxKind.JSDocFunctionType */: case 323 /* SyntaxKind.JSDocSignature */: return getTypeFromTypeLiteralOrFunctionOrConstructorTypeNode(node); case 193 /* SyntaxKind.TypeOperator */: return getTypeFromTypeOperatorNode(node); case 194 /* SyntaxKind.IndexedAccessType */: return getTypeFromIndexedAccessTypeNode(node); case 195 /* SyntaxKind.MappedType */: return getTypeFromMappedTypeNode(node); case 189 /* SyntaxKind.ConditionalType */: return getTypeFromConditionalTypeNode(node); case 190 /* SyntaxKind.InferType */: return getTypeFromInferTypeNode(node); case 198 /* SyntaxKind.TemplateLiteralType */: return getTypeFromTemplateTypeNode(node); case 200 /* SyntaxKind.ImportType */: return getTypeFromImportTypeNode(node); // This function assumes that an identifier, qualified name, or property access expression is a type expression // Callers should first ensure this by calling `isPartOfTypeNode` // TODO(rbuckton): These aren't valid TypeNodes, but we treat them as such because of `isPartOfTypeNode`, which returns `true` for things that aren't `TypeNode`s. case 79 /* SyntaxKind.Identifier */: case 161 /* SyntaxKind.QualifiedName */: case 206 /* SyntaxKind.PropertyAccessExpression */: var symbol = getSymbolAtLocation(node); return symbol ? getDeclaredTypeOfSymbol(symbol) : errorType; default: return errorType; } } function instantiateList(items, mapper, instantiator) { if (items && items.length) { for (var i = 0; i < items.length; i++) { var item = items[i]; var mapped = instantiator(item, mapper); if (item !== mapped) { var result = i === 0 ? [] : items.slice(0, i); result.push(mapped); for (i++; i < items.length; i++) { result.push(instantiator(items[i], mapper)); } return result; } } } return items; } function instantiateTypes(types, mapper) { return instantiateList(types, mapper, instantiateType); } function instantiateSignatures(signatures, mapper) { return instantiateList(signatures, mapper, instantiateSignature); } function instantiateIndexInfos(indexInfos, mapper) { return instantiateList(indexInfos, mapper, instantiateIndexInfo); } function createTypeMapper(sources, targets) { return sources.length === 1 ? makeUnaryTypeMapper(sources[0], targets ? targets[0] : anyType) : makeArrayTypeMapper(sources, targets); } function getMappedType(type, mapper) { switch (mapper.kind) { case 0 /* TypeMapKind.Simple */: return type === mapper.source ? mapper.target : type; case 1 /* TypeMapKind.Array */: var sources = mapper.sources; var targets = mapper.targets; for (var i = 0; i < sources.length; i++) { if (type === sources[i]) { return targets ? targets[i] : anyType; } } return type; case 2 /* TypeMapKind.Function */: return mapper.func(type); case 3 /* TypeMapKind.Composite */: case 4 /* TypeMapKind.Merged */: var t1 = getMappedType(type, mapper.mapper1); return t1 !== type && mapper.kind === 3 /* TypeMapKind.Composite */ ? instantiateType(t1, mapper.mapper2) : getMappedType(t1, mapper.mapper2); } } function makeUnaryTypeMapper(source, target) { return { kind: 0 /* TypeMapKind.Simple */, source: source, target: target }; } function makeArrayTypeMapper(sources, targets) { return { kind: 1 /* TypeMapKind.Array */, sources: sources, targets: targets }; } function makeFunctionTypeMapper(func) { return { kind: 2 /* TypeMapKind.Function */, func: func }; } function makeCompositeTypeMapper(kind, mapper1, mapper2) { return { kind: kind, mapper1: mapper1, mapper2: mapper2 }; } function createTypeEraser(sources) { return createTypeMapper(sources, /*targets*/ undefined); } /** * Maps forward-references to later types parameters to the empty object type. * This is used during inference when instantiating type parameter defaults. */ function createBackreferenceMapper(context, index) { return makeFunctionTypeMapper(function (t) { return ts.findIndex(context.inferences, function (info) { return info.typeParameter === t; }) >= index ? unknownType : t; }); } function combineTypeMappers(mapper1, mapper2) { return mapper1 ? makeCompositeTypeMapper(3 /* TypeMapKind.Composite */, mapper1, mapper2) : mapper2; } function mergeTypeMappers(mapper1, mapper2) { return mapper1 ? makeCompositeTypeMapper(4 /* TypeMapKind.Merged */, mapper1, mapper2) : mapper2; } function prependTypeMapping(source, target, mapper) { return !mapper ? makeUnaryTypeMapper(source, target) : makeCompositeTypeMapper(4 /* TypeMapKind.Merged */, makeUnaryTypeMapper(source, target), mapper); } function appendTypeMapping(mapper, source, target) { return !mapper ? makeUnaryTypeMapper(source, target) : makeCompositeTypeMapper(4 /* TypeMapKind.Merged */, mapper, makeUnaryTypeMapper(source, target)); } function getRestrictiveTypeParameter(tp) { return tp.constraint === unknownType ? tp : tp.restrictiveInstantiation || (tp.restrictiveInstantiation = createTypeParameter(tp.symbol), tp.restrictiveInstantiation.constraint = unknownType, tp.restrictiveInstantiation); } function cloneTypeParameter(typeParameter) { var result = createTypeParameter(typeParameter.symbol); result.target = typeParameter; return result; } function instantiateTypePredicate(predicate, mapper) { return createTypePredicate(predicate.kind, predicate.parameterName, predicate.parameterIndex, instantiateType(predicate.type, mapper)); } function instantiateSignature(signature, mapper, eraseTypeParameters) { var freshTypeParameters; if (signature.typeParameters && !eraseTypeParameters) { // First create a fresh set of type parameters, then include a mapping from the old to the // new type parameters in the mapper function. Finally store this mapper in the new type // parameters such that we can use it when instantiating constraints. freshTypeParameters = ts.map(signature.typeParameters, cloneTypeParameter); mapper = combineTypeMappers(createTypeMapper(signature.typeParameters, freshTypeParameters), mapper); for (var _i = 0, freshTypeParameters_1 = freshTypeParameters; _i < freshTypeParameters_1.length; _i++) { var tp = freshTypeParameters_1[_i]; tp.mapper = mapper; } } // Don't compute resolvedReturnType and resolvedTypePredicate now, // because using `mapper` now could trigger inferences to become fixed. (See `createInferenceContext`.) // See GH#17600. var result = createSignature(signature.declaration, freshTypeParameters, signature.thisParameter && instantiateSymbol(signature.thisParameter, mapper), instantiateList(signature.parameters, mapper, instantiateSymbol), /*resolvedReturnType*/ undefined, /*resolvedTypePredicate*/ undefined, signature.minArgumentCount, signature.flags & 39 /* SignatureFlags.PropagatingFlags */); result.target = signature; result.mapper = mapper; return result; } function instantiateSymbol(symbol, mapper) { var links = getSymbolLinks(symbol); if (links.type && !couldContainTypeVariables(links.type)) { // If the type of the symbol is already resolved, and if that type could not possibly // be affected by instantiation, simply return the symbol itself. return symbol; } if (ts.getCheckFlags(symbol) & 1 /* CheckFlags.Instantiated */) { // If symbol being instantiated is itself a instantiation, fetch the original target and combine the // type mappers. This ensures that original type identities are properly preserved and that aliases // always reference a non-aliases. symbol = links.target; mapper = combineTypeMappers(links.mapper, mapper); } // Keep the flags from the symbol we're instantiating. Mark that is instantiated, and // also transient so that we can just store data on it directly. var result = createSymbol(symbol.flags, symbol.escapedName, 1 /* CheckFlags.Instantiated */ | ts.getCheckFlags(symbol) & (8 /* CheckFlags.Readonly */ | 4096 /* CheckFlags.Late */ | 16384 /* CheckFlags.OptionalParameter */ | 32768 /* CheckFlags.RestParameter */)); result.declarations = symbol.declarations; result.parent = symbol.parent; result.target = symbol; result.mapper = mapper; if (symbol.valueDeclaration) { result.valueDeclaration = symbol.valueDeclaration; } if (links.nameType) { result.nameType = links.nameType; } return result; } function getObjectTypeInstantiation(type, mapper, aliasSymbol, aliasTypeArguments) { var declaration = type.objectFlags & 4 /* ObjectFlags.Reference */ ? type.node : type.objectFlags & 8388608 /* ObjectFlags.InstantiationExpressionType */ ? type.node : type.symbol.declarations[0]; var links = getNodeLinks(declaration); var target = type.objectFlags & 4 /* ObjectFlags.Reference */ ? links.resolvedType : type.objectFlags & 64 /* ObjectFlags.Instantiated */ ? type.target : type; var typeParameters = links.outerTypeParameters; if (!typeParameters) { // The first time an anonymous type is instantiated we compute and store a list of the type // parameters that are in scope (and therefore potentially referenced). For type literals that // aren't the right hand side of a generic type alias declaration we optimize by reducing the // set of type parameters to those that are possibly referenced in the literal. var outerTypeParameters = getOuterTypeParameters(declaration, /*includeThisTypes*/ true); if (isJSConstructor(declaration)) { var templateTagParameters = getTypeParametersFromDeclaration(declaration); outerTypeParameters = ts.addRange(outerTypeParameters, templateTagParameters); } typeParameters = outerTypeParameters || ts.emptyArray; var allDeclarations_1 = type.objectFlags & (4 /* ObjectFlags.Reference */ | 8388608 /* ObjectFlags.InstantiationExpressionType */) ? [declaration] : type.symbol.declarations; typeParameters = (target.objectFlags & (4 /* ObjectFlags.Reference */ | 8388608 /* ObjectFlags.InstantiationExpressionType */) || target.symbol.flags & 8192 /* SymbolFlags.Method */ || target.symbol.flags & 2048 /* SymbolFlags.TypeLiteral */) && !target.aliasTypeArguments ? ts.filter(typeParameters, function (tp) { return ts.some(allDeclarations_1, function (d) { return isTypeParameterPossiblyReferenced(tp, d); }); }) : typeParameters; links.outerTypeParameters = typeParameters; } if (typeParameters.length) { // We are instantiating an anonymous type that has one or more type parameters in scope. Apply the // mapper to the type parameters to produce the effective list of type arguments, and compute the // instantiation cache key from the type IDs of the type arguments. var combinedMapper_1 = combineTypeMappers(type.mapper, mapper); var typeArguments = ts.map(typeParameters, function (t) { return getMappedType(t, combinedMapper_1); }); var newAliasSymbol = aliasSymbol || type.aliasSymbol; var newAliasTypeArguments = aliasSymbol ? aliasTypeArguments : instantiateTypes(type.aliasTypeArguments, mapper); var id = getTypeListId(typeArguments) + getAliasId(newAliasSymbol, newAliasTypeArguments); if (!target.instantiations) { target.instantiations = new ts.Map(); target.instantiations.set(getTypeListId(typeParameters) + getAliasId(target.aliasSymbol, target.aliasTypeArguments), target); } var result = target.instantiations.get(id); if (!result) { var newMapper = createTypeMapper(typeParameters, typeArguments); result = target.objectFlags & 4 /* ObjectFlags.Reference */ ? createDeferredTypeReference(type.target, type.node, newMapper, newAliasSymbol, newAliasTypeArguments) : target.objectFlags & 32 /* ObjectFlags.Mapped */ ? instantiateMappedType(target, newMapper, newAliasSymbol, newAliasTypeArguments) : instantiateAnonymousType(target, newMapper, newAliasSymbol, newAliasTypeArguments); target.instantiations.set(id, result); } return result; } return type; } function maybeTypeParameterReference(node) { return !(node.parent.kind === 178 /* SyntaxKind.TypeReference */ && node.parent.typeArguments && node === node.parent.typeName || node.parent.kind === 200 /* SyntaxKind.ImportType */ && node.parent.typeArguments && node === node.parent.qualifier); } function isTypeParameterPossiblyReferenced(tp, node) { // If the type parameter doesn't have exactly one declaration, if there are invening statement blocks // between the node and the type parameter declaration, if the node contains actual references to the // type parameter, or if the node contains type queries, we consider the type parameter possibly referenced. if (tp.symbol && tp.symbol.declarations && tp.symbol.declarations.length === 1) { var container = tp.symbol.declarations[0].parent; for (var n = node; n !== container; n = n.parent) { if (!n || n.kind === 235 /* SyntaxKind.Block */ || n.kind === 189 /* SyntaxKind.ConditionalType */ && ts.forEachChild(n.extendsType, containsReference)) { return true; } } return containsReference(node); } return true; function containsReference(node) { switch (node.kind) { case 192 /* SyntaxKind.ThisType */: return !!tp.isThisType; case 79 /* SyntaxKind.Identifier */: return !tp.isThisType && ts.isPartOfTypeNode(node) && maybeTypeParameterReference(node) && getTypeFromTypeNodeWorker(node) === tp; // use worker because we're looking for === equality case 181 /* SyntaxKind.TypeQuery */: return true; case 169 /* SyntaxKind.MethodDeclaration */: case 168 /* SyntaxKind.MethodSignature */: return !node.type && !!node.body || ts.some(node.typeParameters, containsReference) || ts.some(node.parameters, containsReference) || !!node.type && containsReference(node.type); } return !!ts.forEachChild(node, containsReference); } } function getHomomorphicTypeVariable(type) { var constraintType = getConstraintTypeFromMappedType(type); if (constraintType.flags & 4194304 /* TypeFlags.Index */) { var typeVariable = getActualTypeVariable(constraintType.type); if (typeVariable.flags & 262144 /* TypeFlags.TypeParameter */) { return typeVariable; } } return undefined; } function instantiateMappedType(type, mapper, aliasSymbol, aliasTypeArguments) { // For a homomorphic mapped type { [P in keyof T]: X }, where T is some type variable, the mapping // operation depends on T as follows: // * If T is a primitive type no mapping is performed and the result is simply T. // * If T is a union type we distribute the mapped type over the union. // * If T is an array we map to an array where the element type has been transformed. // * If T is a tuple we map to a tuple where the element types have been transformed. // * Otherwise we map to an object type where the type of each property has been transformed. // For example, when T is instantiated to a union type A | B, we produce { [P in keyof A]: X } | // { [P in keyof B]: X }, and when when T is instantiated to a union type A | undefined, we produce // { [P in keyof A]: X } | undefined. var typeVariable = getHomomorphicTypeVariable(type); if (typeVariable) { var mappedTypeVariable = instantiateType(typeVariable, mapper); if (typeVariable !== mappedTypeVariable) { return mapTypeWithAlias(getReducedType(mappedTypeVariable), function (t) { if (t.flags & (3 /* TypeFlags.AnyOrUnknown */ | 58982400 /* TypeFlags.InstantiableNonPrimitive */ | 524288 /* TypeFlags.Object */ | 2097152 /* TypeFlags.Intersection */) && t !== wildcardType && !isErrorType(t)) { if (!type.declaration.nameType) { var constraint = void 0; if (isArrayType(t) || t.flags & 1 /* TypeFlags.Any */ && findResolutionCycleStartIndex(typeVariable, 4 /* TypeSystemPropertyName.ImmediateBaseConstraint */) < 0 && (constraint = getConstraintOfTypeParameter(typeVariable)) && everyType(constraint, isArrayOrTupleType)) { return instantiateMappedArrayType(t, type, prependTypeMapping(typeVariable, t, mapper)); } if (isGenericTupleType(t)) { return instantiateMappedGenericTupleType(t, type, typeVariable, mapper); } if (isTupleType(t)) { return instantiateMappedTupleType(t, type, prependTypeMapping(typeVariable, t, mapper)); } } return instantiateAnonymousType(type, prependTypeMapping(typeVariable, t, mapper)); } return t; }, aliasSymbol, aliasTypeArguments); } } // If the constraint type of the instantiation is the wildcard type, return the wildcard type. return instantiateType(getConstraintTypeFromMappedType(type), mapper) === wildcardType ? wildcardType : instantiateAnonymousType(type, mapper, aliasSymbol, aliasTypeArguments); } function getModifiedReadonlyState(state, modifiers) { return modifiers & 1 /* MappedTypeModifiers.IncludeReadonly */ ? true : modifiers & 2 /* MappedTypeModifiers.ExcludeReadonly */ ? false : state; } function instantiateMappedGenericTupleType(tupleType, mappedType, typeVariable, mapper) { // When a tuple type is generic (i.e. when it contains variadic elements), we want to eagerly map the // non-generic elements and defer mapping the generic elements. In order to facilitate this, we transform // M<[A, B?, ...T, ...C[]] into [...M<[A]>, ...M<[B?]>, ...M, ...M] and then rely on tuple type // normalization to resolve the non-generic parts of the resulting tuple. var elementFlags = tupleType.target.elementFlags; var elementTypes = ts.map(getTypeArguments(tupleType), function (t, i) { var singleton = elementFlags[i] & 8 /* ElementFlags.Variadic */ ? t : elementFlags[i] & 4 /* ElementFlags.Rest */ ? createArrayType(t) : createTupleType([t], [elementFlags[i]]); // The singleton is never a generic tuple type, so it is safe to recurse here. return instantiateMappedType(mappedType, prependTypeMapping(typeVariable, singleton, mapper)); }); var newReadonly = getModifiedReadonlyState(tupleType.target.readonly, getMappedTypeModifiers(mappedType)); return createTupleType(elementTypes, ts.map(elementTypes, function (_) { return 8 /* ElementFlags.Variadic */; }), newReadonly); } function instantiateMappedArrayType(arrayType, mappedType, mapper) { var elementType = instantiateMappedTypeTemplate(mappedType, numberType, /*isOptional*/ true, mapper); return isErrorType(elementType) ? errorType : createArrayType(elementType, getModifiedReadonlyState(isReadonlyArrayType(arrayType), getMappedTypeModifiers(mappedType))); } function instantiateMappedTupleType(tupleType, mappedType, mapper) { var elementFlags = tupleType.target.elementFlags; var elementTypes = ts.map(getTypeArguments(tupleType), function (_, i) { return instantiateMappedTypeTemplate(mappedType, getStringLiteralType("" + i), !!(elementFlags[i] & 2 /* ElementFlags.Optional */), mapper); }); var modifiers = getMappedTypeModifiers(mappedType); var newTupleModifiers = modifiers & 4 /* MappedTypeModifiers.IncludeOptional */ ? ts.map(elementFlags, function (f) { return f & 1 /* ElementFlags.Required */ ? 2 /* ElementFlags.Optional */ : f; }) : modifiers & 8 /* MappedTypeModifiers.ExcludeOptional */ ? ts.map(elementFlags, function (f) { return f & 2 /* ElementFlags.Optional */ ? 1 /* ElementFlags.Required */ : f; }) : elementFlags; var newReadonly = getModifiedReadonlyState(tupleType.target.readonly, modifiers); return ts.contains(elementTypes, errorType) ? errorType : createTupleType(elementTypes, newTupleModifiers, newReadonly, tupleType.target.labeledElementDeclarations); } function instantiateMappedTypeTemplate(type, key, isOptional, mapper) { var templateMapper = appendTypeMapping(mapper, getTypeParameterFromMappedType(type), key); var propType = instantiateType(getTemplateTypeFromMappedType(type.target || type), templateMapper); var modifiers = getMappedTypeModifiers(type); return strictNullChecks && modifiers & 4 /* MappedTypeModifiers.IncludeOptional */ && !maybeTypeOfKind(propType, 32768 /* TypeFlags.Undefined */ | 16384 /* TypeFlags.Void */) ? getOptionalType(propType, /*isProperty*/ true) : strictNullChecks && modifiers & 8 /* MappedTypeModifiers.ExcludeOptional */ && isOptional ? getTypeWithFacts(propType, 524288 /* TypeFacts.NEUndefined */) : propType; } function instantiateAnonymousType(type, mapper, aliasSymbol, aliasTypeArguments) { var result = createObjectType(type.objectFlags | 64 /* ObjectFlags.Instantiated */, type.symbol); if (type.objectFlags & 32 /* ObjectFlags.Mapped */) { result.declaration = type.declaration; // C.f. instantiateSignature var origTypeParameter = getTypeParameterFromMappedType(type); var freshTypeParameter = cloneTypeParameter(origTypeParameter); result.typeParameter = freshTypeParameter; mapper = combineTypeMappers(makeUnaryTypeMapper(origTypeParameter, freshTypeParameter), mapper); freshTypeParameter.mapper = mapper; } if (type.objectFlags & 8388608 /* ObjectFlags.InstantiationExpressionType */) { result.node = type.node; } result.target = type; result.mapper = mapper; result.aliasSymbol = aliasSymbol || type.aliasSymbol; result.aliasTypeArguments = aliasSymbol ? aliasTypeArguments : instantiateTypes(type.aliasTypeArguments, mapper); return result; } function getConditionalTypeInstantiation(type, mapper, aliasSymbol, aliasTypeArguments) { var root = type.root; if (root.outerTypeParameters) { // We are instantiating a conditional type that has one or more type parameters in scope. Apply the // mapper to the type parameters to produce the effective list of type arguments, and compute the // instantiation cache key from the type IDs of the type arguments. var typeArguments = ts.map(root.outerTypeParameters, function (t) { return getMappedType(t, mapper); }); var id = getTypeListId(typeArguments) + getAliasId(aliasSymbol, aliasTypeArguments); var result = root.instantiations.get(id); if (!result) { var newMapper_1 = createTypeMapper(root.outerTypeParameters, typeArguments); var checkType_1 = root.checkType; var distributionType = root.isDistributive ? getMappedType(checkType_1, newMapper_1) : undefined; // Distributive conditional types are distributed over union types. For example, when the // distributive conditional type T extends U ? X : Y is instantiated with A | B for T, the // result is (A extends U ? X : Y) | (B extends U ? X : Y). result = distributionType && checkType_1 !== distributionType && distributionType.flags & (1048576 /* TypeFlags.Union */ | 131072 /* TypeFlags.Never */) ? mapTypeWithAlias(getReducedType(distributionType), function (t) { return getConditionalType(root, prependTypeMapping(checkType_1, t, newMapper_1)); }, aliasSymbol, aliasTypeArguments) : getConditionalType(root, newMapper_1, aliasSymbol, aliasTypeArguments); root.instantiations.set(id, result); } return result; } return type; } function instantiateType(type, mapper) { return type && mapper ? instantiateTypeWithAlias(type, mapper, /*aliasSymbol*/ undefined, /*aliasTypeArguments*/ undefined) : type; } function instantiateTypeWithAlias(type, mapper, aliasSymbol, aliasTypeArguments) { if (!couldContainTypeVariables(type)) { return type; } if (instantiationDepth === 100 || instantiationCount >= 5000000) { // We have reached 100 recursive type instantiations, or 5M type instantiations caused by the same statement // or expression. There is a very high likelyhood we're dealing with a combination of infinite generic types // that perpetually generate new type identities, so we stop the recursion here by yielding the error type. ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.instant("checkTypes" /* tracing.Phase.CheckTypes */, "instantiateType_DepthLimit", { typeId: type.id, instantiationDepth: instantiationDepth, instantiationCount: instantiationCount }); error(currentNode, ts.Diagnostics.Type_instantiation_is_excessively_deep_and_possibly_infinite); return errorType; } totalInstantiationCount++; instantiationCount++; instantiationDepth++; var result = instantiateTypeWorker(type, mapper, aliasSymbol, aliasTypeArguments); instantiationDepth--; return result; } function instantiateTypeWorker(type, mapper, aliasSymbol, aliasTypeArguments) { var flags = type.flags; if (flags & 262144 /* TypeFlags.TypeParameter */) { return getMappedType(type, mapper); } if (flags & 524288 /* TypeFlags.Object */) { var objectFlags = type.objectFlags; if (objectFlags & (4 /* ObjectFlags.Reference */ | 16 /* ObjectFlags.Anonymous */ | 32 /* ObjectFlags.Mapped */)) { if (objectFlags & 4 /* ObjectFlags.Reference */ && !type.node) { var resolvedTypeArguments = type.resolvedTypeArguments; var newTypeArguments = instantiateTypes(resolvedTypeArguments, mapper); return newTypeArguments !== resolvedTypeArguments ? createNormalizedTypeReference(type.target, newTypeArguments) : type; } if (objectFlags & 1024 /* ObjectFlags.ReverseMapped */) { return instantiateReverseMappedType(type, mapper); } return getObjectTypeInstantiation(type, mapper, aliasSymbol, aliasTypeArguments); } return type; } if (flags & 3145728 /* TypeFlags.UnionOrIntersection */) { var origin = type.flags & 1048576 /* TypeFlags.Union */ ? type.origin : undefined; var types = origin && origin.flags & 3145728 /* TypeFlags.UnionOrIntersection */ ? origin.types : type.types; var newTypes = instantiateTypes(types, mapper); if (newTypes === types && aliasSymbol === type.aliasSymbol) { return type; } var newAliasSymbol = aliasSymbol || type.aliasSymbol; var newAliasTypeArguments = aliasSymbol ? aliasTypeArguments : instantiateTypes(type.aliasTypeArguments, mapper); return flags & 2097152 /* TypeFlags.Intersection */ || origin && origin.flags & 2097152 /* TypeFlags.Intersection */ ? getIntersectionType(newTypes, newAliasSymbol, newAliasTypeArguments) : getUnionType(newTypes, 1 /* UnionReduction.Literal */, newAliasSymbol, newAliasTypeArguments); } if (flags & 4194304 /* TypeFlags.Index */) { return getIndexType(instantiateType(type.type, mapper)); } if (flags & 134217728 /* TypeFlags.TemplateLiteral */) { return getTemplateLiteralType(type.texts, instantiateTypes(type.types, mapper)); } if (flags & 268435456 /* TypeFlags.StringMapping */) { return getStringMappingType(type.symbol, instantiateType(type.type, mapper)); } if (flags & 8388608 /* TypeFlags.IndexedAccess */) { var newAliasSymbol = aliasSymbol || type.aliasSymbol; var newAliasTypeArguments = aliasSymbol ? aliasTypeArguments : instantiateTypes(type.aliasTypeArguments, mapper); return getIndexedAccessType(instantiateType(type.objectType, mapper), instantiateType(type.indexType, mapper), type.accessFlags, /*accessNode*/ undefined, newAliasSymbol, newAliasTypeArguments); } if (flags & 16777216 /* TypeFlags.Conditional */) { return getConditionalTypeInstantiation(type, combineTypeMappers(type.mapper, mapper), aliasSymbol, aliasTypeArguments); } if (flags & 33554432 /* TypeFlags.Substitution */) { var maybeVariable = instantiateType(type.baseType, mapper); if (maybeVariable.flags & 8650752 /* TypeFlags.TypeVariable */) { return getSubstitutionType(maybeVariable, instantiateType(type.substitute, mapper)); } else { var sub = instantiateType(type.substitute, mapper); if (sub.flags & 3 /* TypeFlags.AnyOrUnknown */ || isTypeAssignableTo(getRestrictiveInstantiation(maybeVariable), getRestrictiveInstantiation(sub))) { return maybeVariable; } return sub; } } return type; } function instantiateReverseMappedType(type, mapper) { var innerMappedType = instantiateType(type.mappedType, mapper); if (!(ts.getObjectFlags(innerMappedType) & 32 /* ObjectFlags.Mapped */)) { return type; } var innerIndexType = instantiateType(type.constraintType, mapper); if (!(innerIndexType.flags & 4194304 /* TypeFlags.Index */)) { return type; } var instantiated = inferTypeForHomomorphicMappedType(instantiateType(type.source, mapper), innerMappedType, innerIndexType); if (instantiated) { return instantiated; } return type; // Nested invocation of `inferTypeForHomomorphicMappedType` or the `source` instantiated into something unmappable } function getUniqueLiteralFilledInstantiation(type) { return type.flags & (131068 /* TypeFlags.Primitive */ | 3 /* TypeFlags.AnyOrUnknown */ | 131072 /* TypeFlags.Never */) ? type : type.uniqueLiteralFilledInstantiation || (type.uniqueLiteralFilledInstantiation = instantiateType(type, uniqueLiteralMapper)); } function getPermissiveInstantiation(type) { return type.flags & (131068 /* TypeFlags.Primitive */ | 3 /* TypeFlags.AnyOrUnknown */ | 131072 /* TypeFlags.Never */) ? type : type.permissiveInstantiation || (type.permissiveInstantiation = instantiateType(type, permissiveMapper)); } function getRestrictiveInstantiation(type) { if (type.flags & (131068 /* TypeFlags.Primitive */ | 3 /* TypeFlags.AnyOrUnknown */ | 131072 /* TypeFlags.Never */)) { return type; } if (type.restrictiveInstantiation) { return type.restrictiveInstantiation; } type.restrictiveInstantiation = instantiateType(type, restrictiveMapper); // We set the following so we don't attempt to set the restrictive instance of a restrictive instance // which is redundant - we'll produce new type identities, but all type params have already been mapped. // This also gives us a way to detect restrictive instances upon comparisons and _disable_ the "distributeive constraint" // assignability check for them, which is distinctly unsafe, as once you have a restrctive instance, all the type parameters // are constrained to `unknown` and produce tons of false positives/negatives! type.restrictiveInstantiation.restrictiveInstantiation = type.restrictiveInstantiation; return type.restrictiveInstantiation; } function instantiateIndexInfo(info, mapper) { return createIndexInfo(info.keyType, instantiateType(info.type, mapper), info.isReadonly, info.declaration); } // Returns true if the given expression contains (at any level of nesting) a function or arrow expression // that is subject to contextual typing. function isContextSensitive(node) { ts.Debug.assert(node.kind !== 169 /* SyntaxKind.MethodDeclaration */ || ts.isObjectLiteralMethod(node)); switch (node.kind) { case 213 /* SyntaxKind.FunctionExpression */: case 214 /* SyntaxKind.ArrowFunction */: case 169 /* SyntaxKind.MethodDeclaration */: case 256 /* SyntaxKind.FunctionDeclaration */: // Function declarations can have context when annotated with a jsdoc @type return isContextSensitiveFunctionLikeDeclaration(node); case 205 /* SyntaxKind.ObjectLiteralExpression */: return ts.some(node.properties, isContextSensitive); case 204 /* SyntaxKind.ArrayLiteralExpression */: return ts.some(node.elements, isContextSensitive); case 222 /* SyntaxKind.ConditionalExpression */: return isContextSensitive(node.whenTrue) || isContextSensitive(node.whenFalse); case 221 /* SyntaxKind.BinaryExpression */: return (node.operatorToken.kind === 56 /* SyntaxKind.BarBarToken */ || node.operatorToken.kind === 60 /* SyntaxKind.QuestionQuestionToken */) && (isContextSensitive(node.left) || isContextSensitive(node.right)); case 296 /* SyntaxKind.PropertyAssignment */: return isContextSensitive(node.initializer); case 212 /* SyntaxKind.ParenthesizedExpression */: return isContextSensitive(node.expression); case 286 /* SyntaxKind.JsxAttributes */: return ts.some(node.properties, isContextSensitive) || ts.isJsxOpeningElement(node.parent) && ts.some(node.parent.parent.children, isContextSensitive); case 285 /* SyntaxKind.JsxAttribute */: { // If there is no initializer, JSX attribute has a boolean value of true which is not context sensitive. var initializer = node.initializer; return !!initializer && isContextSensitive(initializer); } case 288 /* SyntaxKind.JsxExpression */: { // It is possible to that node.expression is undefined (e.g

) var expression = node.expression; return !!expression && isContextSensitive(expression); } } return false; } function isContextSensitiveFunctionLikeDeclaration(node) { return (!ts.isFunctionDeclaration(node) || ts.isInJSFile(node) && !!getTypeForDeclarationFromJSDocComment(node)) && (ts.hasContextSensitiveParameters(node) || hasContextSensitiveReturnExpression(node)); } function hasContextSensitiveReturnExpression(node) { // TODO(anhans): A block should be context-sensitive if it has a context-sensitive return value. return !node.typeParameters && !ts.getEffectiveReturnTypeNode(node) && !!node.body && node.body.kind !== 235 /* SyntaxKind.Block */ && isContextSensitive(node.body); } function isContextSensitiveFunctionOrObjectLiteralMethod(func) { return (ts.isInJSFile(func) && ts.isFunctionDeclaration(func) || ts.isFunctionExpressionOrArrowFunction(func) || ts.isObjectLiteralMethod(func)) && isContextSensitiveFunctionLikeDeclaration(func); } function getTypeWithoutSignatures(type) { if (type.flags & 524288 /* TypeFlags.Object */) { var resolved = resolveStructuredTypeMembers(type); if (resolved.constructSignatures.length || resolved.callSignatures.length) { var result = createObjectType(16 /* ObjectFlags.Anonymous */, type.symbol); result.members = resolved.members; result.properties = resolved.properties; result.callSignatures = ts.emptyArray; result.constructSignatures = ts.emptyArray; result.indexInfos = ts.emptyArray; return result; } } else if (type.flags & 2097152 /* TypeFlags.Intersection */) { return getIntersectionType(ts.map(type.types, getTypeWithoutSignatures)); } return type; } // TYPE CHECKING function isTypeIdenticalTo(source, target) { return isTypeRelatedTo(source, target, identityRelation); } function compareTypesIdentical(source, target) { return isTypeRelatedTo(source, target, identityRelation) ? -1 /* Ternary.True */ : 0 /* Ternary.False */; } function compareTypesAssignable(source, target) { return isTypeRelatedTo(source, target, assignableRelation) ? -1 /* Ternary.True */ : 0 /* Ternary.False */; } function compareTypesSubtypeOf(source, target) { return isTypeRelatedTo(source, target, subtypeRelation) ? -1 /* Ternary.True */ : 0 /* Ternary.False */; } function isTypeSubtypeOf(source, target) { return isTypeRelatedTo(source, target, subtypeRelation); } function isTypeAssignableTo(source, target) { return isTypeRelatedTo(source, target, assignableRelation); } // An object type S is considered to be derived from an object type T if // S is a union type and every constituent of S is derived from T, // T is a union type and S is derived from at least one constituent of T, or // S is a type variable with a base constraint that is derived from T, // T is one of the global types Object and Function and S is a subtype of T, or // T occurs directly or indirectly in an 'extends' clause of S. // Note that this check ignores type parameters and only considers the // inheritance hierarchy. function isTypeDerivedFrom(source, target) { return source.flags & 1048576 /* TypeFlags.Union */ ? ts.every(source.types, function (t) { return isTypeDerivedFrom(t, target); }) : target.flags & 1048576 /* TypeFlags.Union */ ? ts.some(target.types, function (t) { return isTypeDerivedFrom(source, t); }) : source.flags & 58982400 /* TypeFlags.InstantiableNonPrimitive */ ? isTypeDerivedFrom(getBaseConstraintOfType(source) || unknownType, target) : target === globalObjectType ? !!(source.flags & (524288 /* TypeFlags.Object */ | 67108864 /* TypeFlags.NonPrimitive */)) : target === globalFunctionType ? !!(source.flags & 524288 /* TypeFlags.Object */) && isFunctionObjectType(source) : hasBaseType(source, getTargetType(target)) || (isArrayType(target) && !isReadonlyArrayType(target) && isTypeDerivedFrom(source, globalReadonlyArrayType)); } /** * This is *not* a bi-directional relationship. * If one needs to check both directions for comparability, use a second call to this function or 'checkTypeComparableTo'. * * A type S is comparable to a type T if some (but not necessarily all) of the possible values of S are also possible values of T. * It is used to check following cases: * - the types of the left and right sides of equality/inequality operators (`===`, `!==`, `==`, `!=`). * - the types of `case` clause expressions and their respective `switch` expressions. * - the type of an expression in a type assertion with the type being asserted. */ function isTypeComparableTo(source, target) { return isTypeRelatedTo(source, target, comparableRelation); } function areTypesComparable(type1, type2) { return isTypeComparableTo(type1, type2) || isTypeComparableTo(type2, type1); } function checkTypeAssignableTo(source, target, errorNode, headMessage, containingMessageChain, errorOutputObject) { return checkTypeRelatedTo(source, target, assignableRelation, errorNode, headMessage, containingMessageChain, errorOutputObject); } /** * Like `checkTypeAssignableTo`, but if it would issue an error, instead performs structural comparisons of the types using the given expression node to * attempt to issue more specific errors on, for example, specific object literal properties or tuple members. */ function checkTypeAssignableToAndOptionallyElaborate(source, target, errorNode, expr, headMessage, containingMessageChain) { return checkTypeRelatedToAndOptionallyElaborate(source, target, assignableRelation, errorNode, expr, headMessage, containingMessageChain, /*errorOutputContainer*/ undefined); } function checkTypeRelatedToAndOptionallyElaborate(source, target, relation, errorNode, expr, headMessage, containingMessageChain, errorOutputContainer) { if (isTypeRelatedTo(source, target, relation)) return true; if (!errorNode || !elaborateError(expr, source, target, relation, headMessage, containingMessageChain, errorOutputContainer)) { return checkTypeRelatedTo(source, target, relation, errorNode, headMessage, containingMessageChain, errorOutputContainer); } return false; } function isOrHasGenericConditional(type) { return !!(type.flags & 16777216 /* TypeFlags.Conditional */ || (type.flags & 2097152 /* TypeFlags.Intersection */ && ts.some(type.types, isOrHasGenericConditional))); } function elaborateError(node, source, target, relation, headMessage, containingMessageChain, errorOutputContainer) { if (!node || isOrHasGenericConditional(target)) return false; if (!checkTypeRelatedTo(source, target, relation, /*errorNode*/ undefined) && elaborateDidYouMeanToCallOrConstruct(node, source, target, relation, headMessage, containingMessageChain, errorOutputContainer)) { return true; } switch (node.kind) { case 288 /* SyntaxKind.JsxExpression */: case 212 /* SyntaxKind.ParenthesizedExpression */: return elaborateError(node.expression, source, target, relation, headMessage, containingMessageChain, errorOutputContainer); case 221 /* SyntaxKind.BinaryExpression */: switch (node.operatorToken.kind) { case 63 /* SyntaxKind.EqualsToken */: case 27 /* SyntaxKind.CommaToken */: return elaborateError(node.right, source, target, relation, headMessage, containingMessageChain, errorOutputContainer); } break; case 205 /* SyntaxKind.ObjectLiteralExpression */: return elaborateObjectLiteral(node, source, target, relation, containingMessageChain, errorOutputContainer); case 204 /* SyntaxKind.ArrayLiteralExpression */: return elaborateArrayLiteral(node, source, target, relation, containingMessageChain, errorOutputContainer); case 286 /* SyntaxKind.JsxAttributes */: return elaborateJsxComponents(node, source, target, relation, containingMessageChain, errorOutputContainer); case 214 /* SyntaxKind.ArrowFunction */: return elaborateArrowFunction(node, source, target, relation, containingMessageChain, errorOutputContainer); } return false; } function elaborateDidYouMeanToCallOrConstruct(node, source, target, relation, headMessage, containingMessageChain, errorOutputContainer) { var callSignatures = getSignaturesOfType(source, 0 /* SignatureKind.Call */); var constructSignatures = getSignaturesOfType(source, 1 /* SignatureKind.Construct */); for (var _i = 0, _a = [constructSignatures, callSignatures]; _i < _a.length; _i++) { var signatures = _a[_i]; if (ts.some(signatures, function (s) { var returnType = getReturnTypeOfSignature(s); return !(returnType.flags & (1 /* TypeFlags.Any */ | 131072 /* TypeFlags.Never */)) && checkTypeRelatedTo(returnType, target, relation, /*errorNode*/ undefined); })) { var resultObj = errorOutputContainer || {}; checkTypeAssignableTo(source, target, node, headMessage, containingMessageChain, resultObj); var diagnostic = resultObj.errors[resultObj.errors.length - 1]; ts.addRelatedInfo(diagnostic, ts.createDiagnosticForNode(node, signatures === constructSignatures ? ts.Diagnostics.Did_you_mean_to_use_new_with_this_expression : ts.Diagnostics.Did_you_mean_to_call_this_expression)); return true; } } return false; } function elaborateArrowFunction(node, source, target, relation, containingMessageChain, errorOutputContainer) { // Don't elaborate blocks if (ts.isBlock(node.body)) { return false; } // Or functions with annotated parameter types if (ts.some(node.parameters, ts.hasType)) { return false; } var sourceSig = getSingleCallSignature(source); if (!sourceSig) { return false; } var targetSignatures = getSignaturesOfType(target, 0 /* SignatureKind.Call */); if (!ts.length(targetSignatures)) { return false; } var returnExpression = node.body; var sourceReturn = getReturnTypeOfSignature(sourceSig); var targetReturn = getUnionType(ts.map(targetSignatures, getReturnTypeOfSignature)); if (!checkTypeRelatedTo(sourceReturn, targetReturn, relation, /*errorNode*/ undefined)) { var elaborated = returnExpression && elaborateError(returnExpression, sourceReturn, targetReturn, relation, /*headMessage*/ undefined, containingMessageChain, errorOutputContainer); if (elaborated) { return elaborated; } var resultObj = errorOutputContainer || {}; checkTypeRelatedTo(sourceReturn, targetReturn, relation, returnExpression, /*message*/ undefined, containingMessageChain, resultObj); if (resultObj.errors) { if (target.symbol && ts.length(target.symbol.declarations)) { ts.addRelatedInfo(resultObj.errors[resultObj.errors.length - 1], ts.createDiagnosticForNode(target.symbol.declarations[0], ts.Diagnostics.The_expected_type_comes_from_the_return_type_of_this_signature)); } if ((ts.getFunctionFlags(node) & 2 /* FunctionFlags.Async */) === 0 // exclude cases where source itself is promisy - this way we don't make a suggestion when relating // an IPromise and a Promise that are slightly different && !getTypeOfPropertyOfType(sourceReturn, "then") && checkTypeRelatedTo(createPromiseType(sourceReturn), targetReturn, relation, /*errorNode*/ undefined)) { ts.addRelatedInfo(resultObj.errors[resultObj.errors.length - 1], ts.createDiagnosticForNode(node, ts.Diagnostics.Did_you_mean_to_mark_this_function_as_async)); } return true; } } return false; } function getBestMatchIndexedAccessTypeOrUndefined(source, target, nameType) { var idx = getIndexedAccessTypeOrUndefined(target, nameType); if (idx) { return idx; } if (target.flags & 1048576 /* TypeFlags.Union */) { var best = getBestMatchingType(source, target); if (best) { return getIndexedAccessTypeOrUndefined(best, nameType); } } } function checkExpressionForMutableLocationWithContextualType(next, sourcePropType) { next.contextualType = sourcePropType; try { return checkExpressionForMutableLocation(next, 1 /* CheckMode.Contextual */, sourcePropType); } finally { next.contextualType = undefined; } } /** * For every element returned from the iterator, checks that element to issue an error on a property of that element's type * If that element would issue an error, we first attempt to dive into that element's inner expression and issue a more specific error by recuring into `elaborateError` * Otherwise, we issue an error on _every_ element which fail the assignability check */ function elaborateElementwise(iterator, source, target, relation, containingMessageChain, errorOutputContainer) { // Assignability failure - check each prop individually, and if that fails, fall back on the bad error span var reportedError = false; for (var status = iterator.next(); !status.done; status = iterator.next()) { var _a = status.value, prop = _a.errorNode, next = _a.innerExpression, nameType = _a.nameType, errorMessage = _a.errorMessage; var targetPropType = getBestMatchIndexedAccessTypeOrUndefined(source, target, nameType); if (!targetPropType || targetPropType.flags & 8388608 /* TypeFlags.IndexedAccess */) continue; // Don't elaborate on indexes on generic variables var sourcePropType = getIndexedAccessTypeOrUndefined(source, nameType); if (!sourcePropType) continue; var propName = getPropertyNameFromIndex(nameType, /*accessNode*/ undefined); if (!checkTypeRelatedTo(sourcePropType, targetPropType, relation, /*errorNode*/ undefined)) { var elaborated = next && elaborateError(next, sourcePropType, targetPropType, relation, /*headMessage*/ undefined, containingMessageChain, errorOutputContainer); reportedError = true; if (!elaborated) { // Issue error on the prop itself, since the prop couldn't elaborate the error var resultObj = errorOutputContainer || {}; // Use the expression type, if available var specificSource = next ? checkExpressionForMutableLocationWithContextualType(next, sourcePropType) : sourcePropType; if (exactOptionalPropertyTypes && isExactOptionalPropertyMismatch(specificSource, targetPropType)) { var diag = ts.createDiagnosticForNode(prop, ts.Diagnostics.Type_0_is_not_assignable_to_type_1_with_exactOptionalPropertyTypes_Colon_true_Consider_adding_undefined_to_the_type_of_the_target, typeToString(specificSource), typeToString(targetPropType)); diagnostics.add(diag); resultObj.errors = [diag]; } else { var targetIsOptional = !!(propName && (getPropertyOfType(target, propName) || unknownSymbol).flags & 16777216 /* SymbolFlags.Optional */); var sourceIsOptional = !!(propName && (getPropertyOfType(source, propName) || unknownSymbol).flags & 16777216 /* SymbolFlags.Optional */); targetPropType = removeMissingType(targetPropType, targetIsOptional); sourcePropType = removeMissingType(sourcePropType, targetIsOptional && sourceIsOptional); var result = checkTypeRelatedTo(specificSource, targetPropType, relation, prop, errorMessage, containingMessageChain, resultObj); if (result && specificSource !== sourcePropType) { // If for whatever reason the expression type doesn't yield an error, make sure we still issue an error on the sourcePropType checkTypeRelatedTo(sourcePropType, targetPropType, relation, prop, errorMessage, containingMessageChain, resultObj); } } if (resultObj.errors) { var reportedDiag = resultObj.errors[resultObj.errors.length - 1]; var propertyName = isTypeUsableAsPropertyName(nameType) ? getPropertyNameFromType(nameType) : undefined; var targetProp = propertyName !== undefined ? getPropertyOfType(target, propertyName) : undefined; var issuedElaboration = false; if (!targetProp) { var indexInfo = getApplicableIndexInfo(target, nameType); if (indexInfo && indexInfo.declaration && !ts.getSourceFileOfNode(indexInfo.declaration).hasNoDefaultLib) { issuedElaboration = true; ts.addRelatedInfo(reportedDiag, ts.createDiagnosticForNode(indexInfo.declaration, ts.Diagnostics.The_expected_type_comes_from_this_index_signature)); } } if (!issuedElaboration && (targetProp && ts.length(targetProp.declarations) || target.symbol && ts.length(target.symbol.declarations))) { var targetNode = targetProp && ts.length(targetProp.declarations) ? targetProp.declarations[0] : target.symbol.declarations[0]; if (!ts.getSourceFileOfNode(targetNode).hasNoDefaultLib) { ts.addRelatedInfo(reportedDiag, ts.createDiagnosticForNode(targetNode, ts.Diagnostics.The_expected_type_comes_from_property_0_which_is_declared_here_on_type_1, propertyName && !(nameType.flags & 8192 /* TypeFlags.UniqueESSymbol */) ? ts.unescapeLeadingUnderscores(propertyName) : typeToString(nameType), typeToString(target))); } } } } } } return reportedError; } function generateJsxAttributes(node) { var _i, _a, prop; return __generator(this, function (_b) { switch (_b.label) { case 0: if (!ts.length(node.properties)) return [2 /*return*/]; _i = 0, _a = node.properties; _b.label = 1; case 1: if (!(_i < _a.length)) return [3 /*break*/, 4]; prop = _a[_i]; if (ts.isJsxSpreadAttribute(prop) || isHyphenatedJsxName(ts.idText(prop.name))) return [3 /*break*/, 3]; return [4 /*yield*/, { errorNode: prop.name, innerExpression: prop.initializer, nameType: getStringLiteralType(ts.idText(prop.name)) }]; case 2: _b.sent(); _b.label = 3; case 3: _i++; return [3 /*break*/, 1]; case 4: return [2 /*return*/]; } }); } function generateJsxChildren(node, getInvalidTextDiagnostic) { var memberOffset, i, child, nameType, elem; return __generator(this, function (_a) { switch (_a.label) { case 0: if (!ts.length(node.children)) return [2 /*return*/]; memberOffset = 0; i = 0; _a.label = 1; case 1: if (!(i < node.children.length)) return [3 /*break*/, 5]; child = node.children[i]; nameType = getNumberLiteralType(i - memberOffset); elem = getElaborationElementForJsxChild(child, nameType, getInvalidTextDiagnostic); if (!elem) return [3 /*break*/, 3]; return [4 /*yield*/, elem]; case 2: _a.sent(); return [3 /*break*/, 4]; case 3: memberOffset++; _a.label = 4; case 4: i++; return [3 /*break*/, 1]; case 5: return [2 /*return*/]; } }); } function getElaborationElementForJsxChild(child, nameType, getInvalidTextDiagnostic) { switch (child.kind) { case 288 /* SyntaxKind.JsxExpression */: // child is of the type of the expression return { errorNode: child, innerExpression: child.expression, nameType: nameType }; case 11 /* SyntaxKind.JsxText */: if (child.containsOnlyTriviaWhiteSpaces) { break; // Whitespace only jsx text isn't real jsx text } // child is a string return { errorNode: child, innerExpression: undefined, nameType: nameType, errorMessage: getInvalidTextDiagnostic() }; case 278 /* SyntaxKind.JsxElement */: case 279 /* SyntaxKind.JsxSelfClosingElement */: case 282 /* SyntaxKind.JsxFragment */: // child is of type JSX.Element return { errorNode: child, innerExpression: child, nameType: nameType }; default: return ts.Debug.assertNever(child, "Found invalid jsx child"); } } function elaborateJsxComponents(node, source, target, relation, containingMessageChain, errorOutputContainer) { var result = elaborateElementwise(generateJsxAttributes(node), source, target, relation, containingMessageChain, errorOutputContainer); var invalidTextDiagnostic; if (ts.isJsxOpeningElement(node.parent) && ts.isJsxElement(node.parent.parent)) { var containingElement = node.parent.parent; var childPropName = getJsxElementChildrenPropertyName(getJsxNamespaceAt(node)); var childrenPropName = childPropName === undefined ? "children" : ts.unescapeLeadingUnderscores(childPropName); var childrenNameType = getStringLiteralType(childrenPropName); var childrenTargetType = getIndexedAccessType(target, childrenNameType); var validChildren = ts.getSemanticJsxChildren(containingElement.children); if (!ts.length(validChildren)) { return result; } var moreThanOneRealChildren = ts.length(validChildren) > 1; var arrayLikeTargetParts = filterType(childrenTargetType, isArrayOrTupleLikeType); var nonArrayLikeTargetParts = filterType(childrenTargetType, function (t) { return !isArrayOrTupleLikeType(t); }); if (moreThanOneRealChildren) { if (arrayLikeTargetParts !== neverType) { var realSource = createTupleType(checkJsxChildren(containingElement, 0 /* CheckMode.Normal */)); var children = generateJsxChildren(containingElement, getInvalidTextualChildDiagnostic); result = elaborateElementwise(children, realSource, arrayLikeTargetParts, relation, containingMessageChain, errorOutputContainer) || result; } else if (!isTypeRelatedTo(getIndexedAccessType(source, childrenNameType), childrenTargetType, relation)) { // arity mismatch result = true; var diag = error(containingElement.openingElement.tagName, ts.Diagnostics.This_JSX_tag_s_0_prop_expects_a_single_child_of_type_1_but_multiple_children_were_provided, childrenPropName, typeToString(childrenTargetType)); if (errorOutputContainer && errorOutputContainer.skipLogging) { (errorOutputContainer.errors || (errorOutputContainer.errors = [])).push(diag); } } } else { if (nonArrayLikeTargetParts !== neverType) { var child = validChildren[0]; var elem_1 = getElaborationElementForJsxChild(child, childrenNameType, getInvalidTextualChildDiagnostic); if (elem_1) { result = elaborateElementwise((function () { return __generator(this, function (_a) { switch (_a.label) { case 0: return [4 /*yield*/, elem_1]; case 1: _a.sent(); return [2 /*return*/]; } }); })(), source, target, relation, containingMessageChain, errorOutputContainer) || result; } } else if (!isTypeRelatedTo(getIndexedAccessType(source, childrenNameType), childrenTargetType, relation)) { // arity mismatch result = true; var diag = error(containingElement.openingElement.tagName, ts.Diagnostics.This_JSX_tag_s_0_prop_expects_type_1_which_requires_multiple_children_but_only_a_single_child_was_provided, childrenPropName, typeToString(childrenTargetType)); if (errorOutputContainer && errorOutputContainer.skipLogging) { (errorOutputContainer.errors || (errorOutputContainer.errors = [])).push(diag); } } } } return result; function getInvalidTextualChildDiagnostic() { if (!invalidTextDiagnostic) { var tagNameText = ts.getTextOfNode(node.parent.tagName); var childPropName = getJsxElementChildrenPropertyName(getJsxNamespaceAt(node)); var childrenPropName = childPropName === undefined ? "children" : ts.unescapeLeadingUnderscores(childPropName); var childrenTargetType = getIndexedAccessType(target, getStringLiteralType(childrenPropName)); var diagnostic = ts.Diagnostics._0_components_don_t_accept_text_as_child_elements_Text_in_JSX_has_the_type_string_but_the_expected_type_of_1_is_2; invalidTextDiagnostic = __assign(__assign({}, diagnostic), { key: "!!ALREADY FORMATTED!!", message: ts.formatMessage(/*_dummy*/ undefined, diagnostic, tagNameText, childrenPropName, typeToString(childrenTargetType)) }); } return invalidTextDiagnostic; } } function generateLimitedTupleElements(node, target) { var len, i, elem, nameType; return __generator(this, function (_a) { switch (_a.label) { case 0: len = ts.length(node.elements); if (!len) return [2 /*return*/]; i = 0; _a.label = 1; case 1: if (!(i < len)) return [3 /*break*/, 4]; // Skip elements which do not exist in the target - a length error on the tuple overall is likely better than an error on a mismatched index signature if (isTupleLikeType(target) && !getPropertyOfType(target, ("" + i))) return [3 /*break*/, 3]; elem = node.elements[i]; if (ts.isOmittedExpression(elem)) return [3 /*break*/, 3]; nameType = getNumberLiteralType(i); return [4 /*yield*/, { errorNode: elem, innerExpression: elem, nameType: nameType }]; case 2: _a.sent(); _a.label = 3; case 3: i++; return [3 /*break*/, 1]; case 4: return [2 /*return*/]; } }); } function elaborateArrayLiteral(node, source, target, relation, containingMessageChain, errorOutputContainer) { if (target.flags & 131068 /* TypeFlags.Primitive */) return false; if (isTupleLikeType(source)) { return elaborateElementwise(generateLimitedTupleElements(node, target), source, target, relation, containingMessageChain, errorOutputContainer); } // recreate a tuple from the elements, if possible // Since we're re-doing the expression type, we need to reapply the contextual type var oldContext = node.contextualType; node.contextualType = target; try { var tupleizedType = checkArrayLiteral(node, 1 /* CheckMode.Contextual */, /*forceTuple*/ true); node.contextualType = oldContext; if (isTupleLikeType(tupleizedType)) { return elaborateElementwise(generateLimitedTupleElements(node, target), tupleizedType, target, relation, containingMessageChain, errorOutputContainer); } return false; } finally { node.contextualType = oldContext; } } function generateObjectLiteralElements(node) { var _i, _a, prop, type, _b; return __generator(this, function (_c) { switch (_c.label) { case 0: if (!ts.length(node.properties)) return [2 /*return*/]; _i = 0, _a = node.properties; _c.label = 1; case 1: if (!(_i < _a.length)) return [3 /*break*/, 8]; prop = _a[_i]; if (ts.isSpreadAssignment(prop)) return [3 /*break*/, 7]; type = getLiteralTypeFromProperty(getSymbolOfNode(prop), 8576 /* TypeFlags.StringOrNumberLiteralOrUnique */); if (!type || (type.flags & 131072 /* TypeFlags.Never */)) { return [3 /*break*/, 7]; } _b = prop.kind; switch (_b) { case 173 /* SyntaxKind.SetAccessor */: return [3 /*break*/, 2]; case 172 /* SyntaxKind.GetAccessor */: return [3 /*break*/, 2]; case 169 /* SyntaxKind.MethodDeclaration */: return [3 /*break*/, 2]; case 297 /* SyntaxKind.ShorthandPropertyAssignment */: return [3 /*break*/, 2]; case 296 /* SyntaxKind.PropertyAssignment */: return [3 /*break*/, 4]; } return [3 /*break*/, 6]; case 2: return [4 /*yield*/, { errorNode: prop.name, innerExpression: undefined, nameType: type }]; case 3: _c.sent(); return [3 /*break*/, 7]; case 4: return [4 /*yield*/, { errorNode: prop.name, innerExpression: prop.initializer, nameType: type, errorMessage: ts.isComputedNonLiteralName(prop.name) ? ts.Diagnostics.Type_of_computed_property_s_value_is_0_which_is_not_assignable_to_type_1 : undefined }]; case 5: _c.sent(); return [3 /*break*/, 7]; case 6: ts.Debug.assertNever(prop); _c.label = 7; case 7: _i++; return [3 /*break*/, 1]; case 8: return [2 /*return*/]; } }); } function elaborateObjectLiteral(node, source, target, relation, containingMessageChain, errorOutputContainer) { if (target.flags & 131068 /* TypeFlags.Primitive */) return false; return elaborateElementwise(generateObjectLiteralElements(node), source, target, relation, containingMessageChain, errorOutputContainer); } /** * This is *not* a bi-directional relationship. * If one needs to check both directions for comparability, use a second call to this function or 'isTypeComparableTo'. */ function checkTypeComparableTo(source, target, errorNode, headMessage, containingMessageChain) { return checkTypeRelatedTo(source, target, comparableRelation, errorNode, headMessage, containingMessageChain); } function isSignatureAssignableTo(source, target, ignoreReturnTypes) { return compareSignaturesRelated(source, target, ignoreReturnTypes ? 4 /* SignatureCheckMode.IgnoreReturnTypes */ : 0, /*reportErrors*/ false, /*errorReporter*/ undefined, /*errorReporter*/ undefined, compareTypesAssignable, /*reportUnreliableMarkers*/ undefined) !== 0 /* Ternary.False */; } /** * Returns true if `s` is `(...args: any[]) => any` or `(this: any, ...args: any[]) => any` */ function isAnySignature(s) { return !s.typeParameters && (!s.thisParameter || isTypeAny(getTypeOfParameter(s.thisParameter))) && s.parameters.length === 1 && signatureHasRestParameter(s) && (getTypeOfParameter(s.parameters[0]) === anyArrayType || isTypeAny(getTypeOfParameter(s.parameters[0]))) && isTypeAny(getReturnTypeOfSignature(s)); } /** * See signatureRelatedTo, compareSignaturesIdentical */ function compareSignaturesRelated(source, target, checkMode, reportErrors, errorReporter, incompatibleErrorReporter, compareTypes, reportUnreliableMarkers) { // TODO (drosen): De-duplicate code between related functions. if (source === target) { return -1 /* Ternary.True */; } if (isAnySignature(target)) { return -1 /* Ternary.True */; } var targetCount = getParameterCount(target); var sourceHasMoreParameters = !hasEffectiveRestParameter(target) && (checkMode & 8 /* SignatureCheckMode.StrictArity */ ? hasEffectiveRestParameter(source) || getParameterCount(source) > targetCount : getMinArgumentCount(source) > targetCount); if (sourceHasMoreParameters) { return 0 /* Ternary.False */; } if (source.typeParameters && source.typeParameters !== target.typeParameters) { target = getCanonicalSignature(target); source = instantiateSignatureInContextOf(source, target, /*inferenceContext*/ undefined, compareTypes); } var sourceCount = getParameterCount(source); var sourceRestType = getNonArrayRestType(source); var targetRestType = getNonArrayRestType(target); if (sourceRestType || targetRestType) { void instantiateType(sourceRestType || targetRestType, reportUnreliableMarkers); } var kind = target.declaration ? target.declaration.kind : 0 /* SyntaxKind.Unknown */; var strictVariance = !(checkMode & 3 /* SignatureCheckMode.Callback */) && strictFunctionTypes && kind !== 169 /* SyntaxKind.MethodDeclaration */ && kind !== 168 /* SyntaxKind.MethodSignature */ && kind !== 171 /* SyntaxKind.Constructor */; var result = -1 /* Ternary.True */; var sourceThisType = getThisTypeOfSignature(source); if (sourceThisType && sourceThisType !== voidType) { var targetThisType = getThisTypeOfSignature(target); if (targetThisType) { // void sources are assignable to anything. var related = !strictVariance && compareTypes(sourceThisType, targetThisType, /*reportErrors*/ false) || compareTypes(targetThisType, sourceThisType, reportErrors); if (!related) { if (reportErrors) { errorReporter(ts.Diagnostics.The_this_types_of_each_signature_are_incompatible); } return 0 /* Ternary.False */; } result &= related; } } var paramCount = sourceRestType || targetRestType ? Math.min(sourceCount, targetCount) : Math.max(sourceCount, targetCount); var restIndex = sourceRestType || targetRestType ? paramCount - 1 : -1; for (var i = 0; i < paramCount; i++) { var sourceType = i === restIndex ? getRestTypeAtPosition(source, i) : tryGetTypeAtPosition(source, i); var targetType = i === restIndex ? getRestTypeAtPosition(target, i) : tryGetTypeAtPosition(target, i); if (sourceType && targetType) { // In order to ensure that any generic type Foo is at least co-variant with respect to T no matter // how Foo uses T, we need to relate parameters bi-variantly (given that parameters are input positions, // they naturally relate only contra-variantly). However, if the source and target parameters both have // function types with a single call signature, we know we are relating two callback parameters. In // that case it is sufficient to only relate the parameters of the signatures co-variantly because, // similar to return values, callback parameters are output positions. This means that a Promise, // where T is used only in callback parameter positions, will be co-variant (as opposed to bi-variant) // with respect to T. var sourceSig = checkMode & 3 /* SignatureCheckMode.Callback */ ? undefined : getSingleCallSignature(getNonNullableType(sourceType)); var targetSig = checkMode & 3 /* SignatureCheckMode.Callback */ ? undefined : getSingleCallSignature(getNonNullableType(targetType)); var callbacks = sourceSig && targetSig && !getTypePredicateOfSignature(sourceSig) && !getTypePredicateOfSignature(targetSig) && (getFalsyFlags(sourceType) & 98304 /* TypeFlags.Nullable */) === (getFalsyFlags(targetType) & 98304 /* TypeFlags.Nullable */); var related = callbacks ? compareSignaturesRelated(targetSig, sourceSig, (checkMode & 8 /* SignatureCheckMode.StrictArity */) | (strictVariance ? 2 /* SignatureCheckMode.StrictCallback */ : 1 /* SignatureCheckMode.BivariantCallback */), reportErrors, errorReporter, incompatibleErrorReporter, compareTypes, reportUnreliableMarkers) : !(checkMode & 3 /* SignatureCheckMode.Callback */) && !strictVariance && compareTypes(sourceType, targetType, /*reportErrors*/ false) || compareTypes(targetType, sourceType, reportErrors); // With strict arity, (x: number | undefined) => void is a subtype of (x?: number | undefined) => void if (related && checkMode & 8 /* SignatureCheckMode.StrictArity */ && i >= getMinArgumentCount(source) && i < getMinArgumentCount(target) && compareTypes(sourceType, targetType, /*reportErrors*/ false)) { related = 0 /* Ternary.False */; } if (!related) { if (reportErrors) { errorReporter(ts.Diagnostics.Types_of_parameters_0_and_1_are_incompatible, ts.unescapeLeadingUnderscores(getParameterNameAtPosition(source, i)), ts.unescapeLeadingUnderscores(getParameterNameAtPosition(target, i))); } return 0 /* Ternary.False */; } result &= related; } } if (!(checkMode & 4 /* SignatureCheckMode.IgnoreReturnTypes */)) { // If a signature resolution is already in-flight, skip issuing a circularity error // here and just use the `any` type directly var targetReturnType = isResolvingReturnTypeOfSignature(target) ? anyType : target.declaration && isJSConstructor(target.declaration) ? getDeclaredTypeOfClassOrInterface(getMergedSymbol(target.declaration.symbol)) : getReturnTypeOfSignature(target); if (targetReturnType === voidType || targetReturnType === anyType) { return result; } var sourceReturnType = isResolvingReturnTypeOfSignature(source) ? anyType : source.declaration && isJSConstructor(source.declaration) ? getDeclaredTypeOfClassOrInterface(getMergedSymbol(source.declaration.symbol)) : getReturnTypeOfSignature(source); // The following block preserves behavior forbidding boolean returning functions from being assignable to type guard returning functions var targetTypePredicate = getTypePredicateOfSignature(target); if (targetTypePredicate) { var sourceTypePredicate = getTypePredicateOfSignature(source); if (sourceTypePredicate) { result &= compareTypePredicateRelatedTo(sourceTypePredicate, targetTypePredicate, reportErrors, errorReporter, compareTypes); } else if (ts.isIdentifierTypePredicate(targetTypePredicate)) { if (reportErrors) { errorReporter(ts.Diagnostics.Signature_0_must_be_a_type_predicate, signatureToString(source)); } return 0 /* Ternary.False */; } } else { // When relating callback signatures, we still need to relate return types bi-variantly as otherwise // the containing type wouldn't be co-variant. For example, interface Foo { add(cb: () => T): void } // wouldn't be co-variant for T without this rule. result &= checkMode & 1 /* SignatureCheckMode.BivariantCallback */ && compareTypes(targetReturnType, sourceReturnType, /*reportErrors*/ false) || compareTypes(sourceReturnType, targetReturnType, reportErrors); if (!result && reportErrors && incompatibleErrorReporter) { incompatibleErrorReporter(sourceReturnType, targetReturnType); } } } return result; } function compareTypePredicateRelatedTo(source, target, reportErrors, errorReporter, compareTypes) { if (source.kind !== target.kind) { if (reportErrors) { errorReporter(ts.Diagnostics.A_this_based_type_guard_is_not_compatible_with_a_parameter_based_type_guard); errorReporter(ts.Diagnostics.Type_predicate_0_is_not_assignable_to_1, typePredicateToString(source), typePredicateToString(target)); } return 0 /* Ternary.False */; } if (source.kind === 1 /* TypePredicateKind.Identifier */ || source.kind === 3 /* TypePredicateKind.AssertsIdentifier */) { if (source.parameterIndex !== target.parameterIndex) { if (reportErrors) { errorReporter(ts.Diagnostics.Parameter_0_is_not_in_the_same_position_as_parameter_1, source.parameterName, target.parameterName); errorReporter(ts.Diagnostics.Type_predicate_0_is_not_assignable_to_1, typePredicateToString(source), typePredicateToString(target)); } return 0 /* Ternary.False */; } } var related = source.type === target.type ? -1 /* Ternary.True */ : source.type && target.type ? compareTypes(source.type, target.type, reportErrors) : 0 /* Ternary.False */; if (related === 0 /* Ternary.False */ && reportErrors) { errorReporter(ts.Diagnostics.Type_predicate_0_is_not_assignable_to_1, typePredicateToString(source), typePredicateToString(target)); } return related; } function isImplementationCompatibleWithOverload(implementation, overload) { var erasedSource = getErasedSignature(implementation); var erasedTarget = getErasedSignature(overload); // First see if the return types are compatible in either direction. var sourceReturnType = getReturnTypeOfSignature(erasedSource); var targetReturnType = getReturnTypeOfSignature(erasedTarget); if (targetReturnType === voidType || isTypeRelatedTo(targetReturnType, sourceReturnType, assignableRelation) || isTypeRelatedTo(sourceReturnType, targetReturnType, assignableRelation)) { return isSignatureAssignableTo(erasedSource, erasedTarget, /*ignoreReturnTypes*/ true); } return false; } function isEmptyResolvedType(t) { return t !== anyFunctionType && t.properties.length === 0 && t.callSignatures.length === 0 && t.constructSignatures.length === 0 && t.indexInfos.length === 0; } function isEmptyObjectType(type) { return type.flags & 524288 /* TypeFlags.Object */ ? !isGenericMappedType(type) && isEmptyResolvedType(resolveStructuredTypeMembers(type)) : type.flags & 67108864 /* TypeFlags.NonPrimitive */ ? true : type.flags & 1048576 /* TypeFlags.Union */ ? ts.some(type.types, isEmptyObjectType) : type.flags & 2097152 /* TypeFlags.Intersection */ ? ts.every(type.types, isEmptyObjectType) : false; } function isEmptyAnonymousObjectType(type) { return !!(ts.getObjectFlags(type) & 16 /* ObjectFlags.Anonymous */ && (type.members && isEmptyResolvedType(type) || type.symbol && type.symbol.flags & 2048 /* SymbolFlags.TypeLiteral */ && getMembersOfSymbol(type.symbol).size === 0)); } function isStringIndexSignatureOnlyType(type) { return type.flags & 524288 /* TypeFlags.Object */ && !isGenericMappedType(type) && getPropertiesOfType(type).length === 0 && getIndexInfosOfType(type).length === 1 && !!getIndexInfoOfType(type, stringType) || type.flags & 3145728 /* TypeFlags.UnionOrIntersection */ && ts.every(type.types, isStringIndexSignatureOnlyType) || false; } function isEnumTypeRelatedTo(sourceSymbol, targetSymbol, errorReporter) { if (sourceSymbol === targetSymbol) { return true; } var id = getSymbolId(sourceSymbol) + "," + getSymbolId(targetSymbol); var entry = enumRelation.get(id); if (entry !== undefined && !(!(entry & 4 /* RelationComparisonResult.Reported */) && entry & 2 /* RelationComparisonResult.Failed */ && errorReporter)) { return !!(entry & 1 /* RelationComparisonResult.Succeeded */); } if (sourceSymbol.escapedName !== targetSymbol.escapedName || !(sourceSymbol.flags & 256 /* SymbolFlags.RegularEnum */) || !(targetSymbol.flags & 256 /* SymbolFlags.RegularEnum */)) { enumRelation.set(id, 2 /* RelationComparisonResult.Failed */ | 4 /* RelationComparisonResult.Reported */); return false; } var targetEnumType = getTypeOfSymbol(targetSymbol); for (var _i = 0, _a = getPropertiesOfType(getTypeOfSymbol(sourceSymbol)); _i < _a.length; _i++) { var property = _a[_i]; if (property.flags & 8 /* SymbolFlags.EnumMember */) { var targetProperty = getPropertyOfType(targetEnumType, property.escapedName); if (!targetProperty || !(targetProperty.flags & 8 /* SymbolFlags.EnumMember */)) { if (errorReporter) { errorReporter(ts.Diagnostics.Property_0_is_missing_in_type_1, ts.symbolName(property), typeToString(getDeclaredTypeOfSymbol(targetSymbol), /*enclosingDeclaration*/ undefined, 64 /* TypeFormatFlags.UseFullyQualifiedType */)); enumRelation.set(id, 2 /* RelationComparisonResult.Failed */ | 4 /* RelationComparisonResult.Reported */); } else { enumRelation.set(id, 2 /* RelationComparisonResult.Failed */); } return false; } } } enumRelation.set(id, 1 /* RelationComparisonResult.Succeeded */); return true; } function isSimpleTypeRelatedTo(source, target, relation, errorReporter) { var s = source.flags; var t = target.flags; if (t & 3 /* TypeFlags.AnyOrUnknown */ || s & 131072 /* TypeFlags.Never */ || source === wildcardType) return true; if (t & 131072 /* TypeFlags.Never */) return false; if (s & 402653316 /* TypeFlags.StringLike */ && t & 4 /* TypeFlags.String */) return true; if (s & 128 /* TypeFlags.StringLiteral */ && s & 1024 /* TypeFlags.EnumLiteral */ && t & 128 /* TypeFlags.StringLiteral */ && !(t & 1024 /* TypeFlags.EnumLiteral */) && source.value === target.value) return true; if (s & 296 /* TypeFlags.NumberLike */ && t & 8 /* TypeFlags.Number */) return true; if (s & 256 /* TypeFlags.NumberLiteral */ && s & 1024 /* TypeFlags.EnumLiteral */ && t & 256 /* TypeFlags.NumberLiteral */ && !(t & 1024 /* TypeFlags.EnumLiteral */) && source.value === target.value) return true; if (s & 2112 /* TypeFlags.BigIntLike */ && t & 64 /* TypeFlags.BigInt */) return true; if (s & 528 /* TypeFlags.BooleanLike */ && t & 16 /* TypeFlags.Boolean */) return true; if (s & 12288 /* TypeFlags.ESSymbolLike */ && t & 4096 /* TypeFlags.ESSymbol */) return true; if (s & 32 /* TypeFlags.Enum */ && t & 32 /* TypeFlags.Enum */ && isEnumTypeRelatedTo(source.symbol, target.symbol, errorReporter)) return true; if (s & 1024 /* TypeFlags.EnumLiteral */ && t & 1024 /* TypeFlags.EnumLiteral */) { if (s & 1048576 /* TypeFlags.Union */ && t & 1048576 /* TypeFlags.Union */ && isEnumTypeRelatedTo(source.symbol, target.symbol, errorReporter)) return true; if (s & 2944 /* TypeFlags.Literal */ && t & 2944 /* TypeFlags.Literal */ && source.value === target.value && isEnumTypeRelatedTo(getParentOfSymbol(source.symbol), getParentOfSymbol(target.symbol), errorReporter)) return true; } // In non-strictNullChecks mode, `undefined` and `null` are assignable to anything except `never`. // Since unions and intersections may reduce to `never`, we exclude them here. if (s & 32768 /* TypeFlags.Undefined */ && (!strictNullChecks && !(t & 3145728 /* TypeFlags.UnionOrIntersection */) || t & (32768 /* TypeFlags.Undefined */ | 16384 /* TypeFlags.Void */))) return true; if (s & 65536 /* TypeFlags.Null */ && (!strictNullChecks && !(t & 3145728 /* TypeFlags.UnionOrIntersection */) || t & 65536 /* TypeFlags.Null */)) return true; if (s & 524288 /* TypeFlags.Object */ && t & 67108864 /* TypeFlags.NonPrimitive */) return true; if (relation === assignableRelation || relation === comparableRelation) { if (s & 1 /* TypeFlags.Any */) return true; // Type number or any numeric literal type is assignable to any numeric enum type or any // numeric enum literal type. This rule exists for backwards compatibility reasons because // bit-flag enum types sometimes look like literal enum types with numeric literal values. if (s & (8 /* TypeFlags.Number */ | 256 /* TypeFlags.NumberLiteral */) && !(s & 1024 /* TypeFlags.EnumLiteral */) && (t & 32 /* TypeFlags.Enum */ || relation === assignableRelation && t & 256 /* TypeFlags.NumberLiteral */ && t & 1024 /* TypeFlags.EnumLiteral */)) return true; } return false; } function isTypeRelatedTo(source, target, relation) { if (isFreshLiteralType(source)) { source = source.regularType; } if (isFreshLiteralType(target)) { target = target.regularType; } if (source === target) { return true; } if (relation !== identityRelation) { if (relation === comparableRelation && !(target.flags & 131072 /* TypeFlags.Never */) && isSimpleTypeRelatedTo(target, source, relation) || isSimpleTypeRelatedTo(source, target, relation)) { return true; } } else if (!((source.flags | target.flags) & (3145728 /* TypeFlags.UnionOrIntersection */ | 8388608 /* TypeFlags.IndexedAccess */ | 16777216 /* TypeFlags.Conditional */ | 33554432 /* TypeFlags.Substitution */))) { // We have excluded types that may simplify to other forms, so types must have identical flags if (source.flags !== target.flags) return false; if (source.flags & 67358815 /* TypeFlags.Singleton */) return true; } if (source.flags & 524288 /* TypeFlags.Object */ && target.flags & 524288 /* TypeFlags.Object */) { var related = relation.get(getRelationKey(source, target, 0 /* IntersectionState.None */, relation, /*ignoreConstraints*/ false)); if (related !== undefined) { return !!(related & 1 /* RelationComparisonResult.Succeeded */); } } if (source.flags & 469499904 /* TypeFlags.StructuredOrInstantiable */ || target.flags & 469499904 /* TypeFlags.StructuredOrInstantiable */) { return checkTypeRelatedTo(source, target, relation, /*errorNode*/ undefined); } return false; } function isIgnoredJsxProperty(source, sourceProp) { return ts.getObjectFlags(source) & 2048 /* ObjectFlags.JsxAttributes */ && isHyphenatedJsxName(sourceProp.escapedName); } function getNormalizedType(type, writing) { while (true) { var t = isFreshLiteralType(type) ? type.regularType : ts.getObjectFlags(type) & 4 /* ObjectFlags.Reference */ && type.node ? createTypeReference(type.target, getTypeArguments(type)) : type.flags & 3145728 /* TypeFlags.UnionOrIntersection */ ? getReducedType(type) : type.flags & 33554432 /* TypeFlags.Substitution */ ? writing ? type.baseType : type.substitute : type.flags & 25165824 /* TypeFlags.Simplifiable */ ? getSimplifiedType(type, writing) : type; t = getSingleBaseForNonAugmentingSubtype(t) || t; if (t === type) break; type = t; } return type; } /** * Checks if 'source' is related to 'target' (e.g.: is a assignable to). * @param source The left-hand-side of the relation. * @param target The right-hand-side of the relation. * @param relation The relation considered. One of 'identityRelation', 'subtypeRelation', 'assignableRelation', or 'comparableRelation'. * Used as both to determine which checks are performed and as a cache of previously computed results. * @param errorNode The suggested node upon which all errors will be reported, if defined. This may or may not be the actual node used. * @param headMessage If the error chain should be prepended by a head message, then headMessage will be used. * @param containingMessageChain A chain of errors to prepend any new errors found. * @param errorOutputContainer Return the diagnostic. Do not log if 'skipLogging' is truthy. */ function checkTypeRelatedTo(source, target, relation, errorNode, headMessage, containingMessageChain, errorOutputContainer) { var errorInfo; var relatedInfo; var maybeKeys; var sourceStack; var targetStack; var maybeCount = 0; var sourceDepth = 0; var targetDepth = 0; var expandingFlags = 0 /* ExpandingFlags.None */; var overflow = false; var overrideNextErrorInfo = 0; // How many `reportRelationError` calls should be skipped in the elaboration pyramid var lastSkippedInfo; var incompatibleStack; var inPropertyCheck = false; ts.Debug.assert(relation !== identityRelation || !errorNode, "no error reporting in identity checking"); var result = isRelatedTo(source, target, 3 /* RecursionFlags.Both */, /*reportErrors*/ !!errorNode, headMessage); if (incompatibleStack) { reportIncompatibleStack(); } if (overflow) { ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.instant("checkTypes" /* tracing.Phase.CheckTypes */, "checkTypeRelatedTo_DepthLimit", { sourceId: source.id, targetId: target.id, depth: sourceDepth, targetDepth: targetDepth }); var diag = error(errorNode || currentNode, ts.Diagnostics.Excessive_stack_depth_comparing_types_0_and_1, typeToString(source), typeToString(target)); if (errorOutputContainer) { (errorOutputContainer.errors || (errorOutputContainer.errors = [])).push(diag); } } else if (errorInfo) { if (containingMessageChain) { var chain = containingMessageChain(); if (chain) { ts.concatenateDiagnosticMessageChains(chain, errorInfo); errorInfo = chain; } } var relatedInformation = void 0; // Check if we should issue an extra diagnostic to produce a quickfix for a slightly incorrect import statement if (headMessage && errorNode && !result && source.symbol) { var links = getSymbolLinks(source.symbol); if (links.originatingImport && !ts.isImportCall(links.originatingImport)) { var helpfulRetry = checkTypeRelatedTo(getTypeOfSymbol(links.target), target, relation, /*errorNode*/ undefined); if (helpfulRetry) { // Likely an incorrect import. Issue a helpful diagnostic to produce a quickfix to change the import var diag_1 = ts.createDiagnosticForNode(links.originatingImport, ts.Diagnostics.Type_originates_at_this_import_A_namespace_style_import_cannot_be_called_or_constructed_and_will_cause_a_failure_at_runtime_Consider_using_a_default_import_or_import_require_here_instead); relatedInformation = ts.append(relatedInformation, diag_1); // Cause the error to appear with the error that triggered it } } } var diag = ts.createDiagnosticForNodeFromMessageChain(errorNode, errorInfo, relatedInformation); if (relatedInfo) { ts.addRelatedInfo.apply(void 0, __spreadArray([diag], relatedInfo, false)); } if (errorOutputContainer) { (errorOutputContainer.errors || (errorOutputContainer.errors = [])).push(diag); } if (!errorOutputContainer || !errorOutputContainer.skipLogging) { diagnostics.add(diag); } } if (errorNode && errorOutputContainer && errorOutputContainer.skipLogging && result === 0 /* Ternary.False */) { ts.Debug.assert(!!errorOutputContainer.errors, "missed opportunity to interact with error."); } return result !== 0 /* Ternary.False */; function resetErrorInfo(saved) { errorInfo = saved.errorInfo; lastSkippedInfo = saved.lastSkippedInfo; incompatibleStack = saved.incompatibleStack; overrideNextErrorInfo = saved.overrideNextErrorInfo; relatedInfo = saved.relatedInfo; } function captureErrorCalculationState() { return { errorInfo: errorInfo, lastSkippedInfo: lastSkippedInfo, incompatibleStack: incompatibleStack === null || incompatibleStack === void 0 ? void 0 : incompatibleStack.slice(), overrideNextErrorInfo: overrideNextErrorInfo, relatedInfo: relatedInfo === null || relatedInfo === void 0 ? void 0 : relatedInfo.slice(), }; } function reportIncompatibleError(message, arg0, arg1, arg2, arg3) { overrideNextErrorInfo++; // Suppress the next relation error lastSkippedInfo = undefined; // Reset skipped info cache (incompatibleStack || (incompatibleStack = [])).push([message, arg0, arg1, arg2, arg3]); } function reportIncompatibleStack() { var stack = incompatibleStack || []; incompatibleStack = undefined; var info = lastSkippedInfo; lastSkippedInfo = undefined; if (stack.length === 1) { reportError.apply(void 0, stack[0]); if (info) { // Actually do the last relation error reportRelationError.apply(void 0, __spreadArray([/*headMessage*/ undefined], info, false)); } return; } // The first error will be the innermost, while the last will be the outermost - so by popping off the end, // we can build from left to right var path = ""; var secondaryRootErrors = []; while (stack.length) { var _a = stack.pop(), msg = _a[0], args = _a.slice(1); switch (msg.code) { case ts.Diagnostics.Types_of_property_0_are_incompatible.code: { // Parenthesize a `new` if there is one if (path.indexOf("new ") === 0) { path = "(".concat(path, ")"); } var str = "" + args[0]; // If leading, just print back the arg (irrespective of if it's a valid identifier) if (path.length === 0) { path = "".concat(str); } // Otherwise write a dotted name if possible else if (ts.isIdentifierText(str, ts.getEmitScriptTarget(compilerOptions))) { path = "".concat(path, ".").concat(str); } // Failing that, check if the name is already a computed name else if (str[0] === "[" && str[str.length - 1] === "]") { path = "".concat(path).concat(str); } // And finally write out a computed name as a last resort else { path = "".concat(path, "[").concat(str, "]"); } break; } case ts.Diagnostics.Call_signature_return_types_0_and_1_are_incompatible.code: case ts.Diagnostics.Construct_signature_return_types_0_and_1_are_incompatible.code: case ts.Diagnostics.Call_signatures_with_no_arguments_have_incompatible_return_types_0_and_1.code: case ts.Diagnostics.Construct_signatures_with_no_arguments_have_incompatible_return_types_0_and_1.code: { if (path.length === 0) { // Don't flatten signature compatability errors at the start of a chain - instead prefer // to unify (the with no arguments bit is excessive for printback) and print them back var mappedMsg = msg; if (msg.code === ts.Diagnostics.Call_signatures_with_no_arguments_have_incompatible_return_types_0_and_1.code) { mappedMsg = ts.Diagnostics.Call_signature_return_types_0_and_1_are_incompatible; } else if (msg.code === ts.Diagnostics.Construct_signatures_with_no_arguments_have_incompatible_return_types_0_and_1.code) { mappedMsg = ts.Diagnostics.Construct_signature_return_types_0_and_1_are_incompatible; } secondaryRootErrors.unshift([mappedMsg, args[0], args[1]]); } else { var prefix = (msg.code === ts.Diagnostics.Construct_signature_return_types_0_and_1_are_incompatible.code || msg.code === ts.Diagnostics.Construct_signatures_with_no_arguments_have_incompatible_return_types_0_and_1.code) ? "new " : ""; var params = (msg.code === ts.Diagnostics.Call_signatures_with_no_arguments_have_incompatible_return_types_0_and_1.code || msg.code === ts.Diagnostics.Construct_signatures_with_no_arguments_have_incompatible_return_types_0_and_1.code) ? "" : "..."; path = "".concat(prefix).concat(path, "(").concat(params, ")"); } break; } case ts.Diagnostics.Type_at_position_0_in_source_is_not_compatible_with_type_at_position_1_in_target.code: { secondaryRootErrors.unshift([ts.Diagnostics.Type_at_position_0_in_source_is_not_compatible_with_type_at_position_1_in_target, args[0], args[1]]); break; } case ts.Diagnostics.Type_at_positions_0_through_1_in_source_is_not_compatible_with_type_at_position_2_in_target.code: { secondaryRootErrors.unshift([ts.Diagnostics.Type_at_positions_0_through_1_in_source_is_not_compatible_with_type_at_position_2_in_target, args[0], args[1], args[2]]); break; } default: return ts.Debug.fail("Unhandled Diagnostic: ".concat(msg.code)); } } if (path) { reportError(path[path.length - 1] === ")" ? ts.Diagnostics.The_types_returned_by_0_are_incompatible_between_these_types : ts.Diagnostics.The_types_of_0_are_incompatible_between_these_types, path); } else { // Remove the innermost secondary error as it will duplicate the error already reported by `reportRelationError` on entry secondaryRootErrors.shift(); } for (var _i = 0, secondaryRootErrors_1 = secondaryRootErrors; _i < secondaryRootErrors_1.length; _i++) { var _b = secondaryRootErrors_1[_i], msg = _b[0], args = _b.slice(1); var originalValue = msg.elidedInCompatabilityPyramid; msg.elidedInCompatabilityPyramid = false; // Temporarily override elision to ensure error is reported reportError.apply(void 0, __spreadArray([msg], args, false)); msg.elidedInCompatabilityPyramid = originalValue; } if (info) { // Actually do the last relation error reportRelationError.apply(void 0, __spreadArray([/*headMessage*/ undefined], info, false)); } } function reportError(message, arg0, arg1, arg2, arg3) { ts.Debug.assert(!!errorNode); if (incompatibleStack) reportIncompatibleStack(); if (message.elidedInCompatabilityPyramid) return; errorInfo = ts.chainDiagnosticMessages(errorInfo, message, arg0, arg1, arg2, arg3); } function associateRelatedInfo(info) { ts.Debug.assert(!!errorInfo); if (!relatedInfo) { relatedInfo = [info]; } else { relatedInfo.push(info); } } function reportRelationError(message, source, target) { if (incompatibleStack) reportIncompatibleStack(); var _a = getTypeNamesForErrorDisplay(source, target), sourceType = _a[0], targetType = _a[1]; var generalizedSource = source; var generalizedSourceType = sourceType; if (isLiteralType(source) && !typeCouldHaveTopLevelSingletonTypes(target)) { generalizedSource = getBaseTypeOfLiteralType(source); ts.Debug.assert(!isTypeAssignableTo(generalizedSource, target), "generalized source shouldn't be assignable"); generalizedSourceType = getTypeNameForErrorDisplay(generalizedSource); } if (target.flags & 262144 /* TypeFlags.TypeParameter */ && target !== markerSuperType && target !== markerSubType) { var constraint = getBaseConstraintOfType(target); var needsOriginalSource = void 0; if (constraint && (isTypeAssignableTo(generalizedSource, constraint) || (needsOriginalSource = isTypeAssignableTo(source, constraint)))) { reportError(ts.Diagnostics._0_is_assignable_to_the_constraint_of_type_1_but_1_could_be_instantiated_with_a_different_subtype_of_constraint_2, needsOriginalSource ? sourceType : generalizedSourceType, targetType, typeToString(constraint)); } else { errorInfo = undefined; reportError(ts.Diagnostics._0_could_be_instantiated_with_an_arbitrary_type_which_could_be_unrelated_to_1, targetType, generalizedSourceType); } } if (!message) { if (relation === comparableRelation) { message = ts.Diagnostics.Type_0_is_not_comparable_to_type_1; } else if (sourceType === targetType) { message = ts.Diagnostics.Type_0_is_not_assignable_to_type_1_Two_different_types_with_this_name_exist_but_they_are_unrelated; } else if (exactOptionalPropertyTypes && getExactOptionalUnassignableProperties(source, target).length) { message = ts.Diagnostics.Type_0_is_not_assignable_to_type_1_with_exactOptionalPropertyTypes_Colon_true_Consider_adding_undefined_to_the_types_of_the_target_s_properties; } else { if (source.flags & 128 /* TypeFlags.StringLiteral */ && target.flags & 1048576 /* TypeFlags.Union */) { var suggestedType = getSuggestedTypeForNonexistentStringLiteralType(source, target); if (suggestedType) { reportError(ts.Diagnostics.Type_0_is_not_assignable_to_type_1_Did_you_mean_2, generalizedSourceType, targetType, typeToString(suggestedType)); return; } } message = ts.Diagnostics.Type_0_is_not_assignable_to_type_1; } } else if (message === ts.Diagnostics.Argument_of_type_0_is_not_assignable_to_parameter_of_type_1 && exactOptionalPropertyTypes && getExactOptionalUnassignableProperties(source, target).length) { message = ts.Diagnostics.Argument_of_type_0_is_not_assignable_to_parameter_of_type_1_with_exactOptionalPropertyTypes_Colon_true_Consider_adding_undefined_to_the_types_of_the_target_s_properties; } reportError(message, generalizedSourceType, targetType); } function tryElaborateErrorsForPrimitivesAndObjects(source, target) { var sourceType = symbolValueDeclarationIsContextSensitive(source.symbol) ? typeToString(source, source.symbol.valueDeclaration) : typeToString(source); var targetType = symbolValueDeclarationIsContextSensitive(target.symbol) ? typeToString(target, target.symbol.valueDeclaration) : typeToString(target); if ((globalStringType === source && stringType === target) || (globalNumberType === source && numberType === target) || (globalBooleanType === source && booleanType === target) || (getGlobalESSymbolType() === source && esSymbolType === target)) { reportError(ts.Diagnostics._0_is_a_primitive_but_1_is_a_wrapper_object_Prefer_using_0_when_possible, targetType, sourceType); } } /** * Try and elaborate array and tuple errors. Returns false * if we have found an elaboration, or we should ignore * any other elaborations when relating the `source` and * `target` types. */ function tryElaborateArrayLikeErrors(source, target, reportErrors) { /** * The spec for elaboration is: * - If the source is a readonly tuple and the target is a mutable array or tuple, elaborate on mutability and skip property elaborations. * - If the source is a tuple then skip property elaborations if the target is an array or tuple. * - If the source is a readonly array and the target is a mutable array or tuple, elaborate on mutability and skip property elaborations. * - If the source an array then skip property elaborations if the target is a tuple. */ if (isTupleType(source)) { if (source.target.readonly && isMutableArrayOrTuple(target)) { if (reportErrors) { reportError(ts.Diagnostics.The_type_0_is_readonly_and_cannot_be_assigned_to_the_mutable_type_1, typeToString(source), typeToString(target)); } return false; } return isArrayOrTupleType(target); } if (isReadonlyArrayType(source) && isMutableArrayOrTuple(target)) { if (reportErrors) { reportError(ts.Diagnostics.The_type_0_is_readonly_and_cannot_be_assigned_to_the_mutable_type_1, typeToString(source), typeToString(target)); } return false; } if (isTupleType(target)) { return isArrayType(source); } return true; } function isRelatedToWorker(source, target, reportErrors) { return isRelatedTo(source, target, 3 /* RecursionFlags.Both */, reportErrors); } /** * Compare two types and return * * Ternary.True if they are related with no assumptions, * * Ternary.Maybe if they are related with assumptions of other relationships, or * * Ternary.False if they are not related. */ function isRelatedTo(originalSource, originalTarget, recursionFlags, reportErrors, headMessage, intersectionState) { if (recursionFlags === void 0) { recursionFlags = 3 /* RecursionFlags.Both */; } if (reportErrors === void 0) { reportErrors = false; } if (intersectionState === void 0) { intersectionState = 0 /* IntersectionState.None */; } // Before normalization: if `source` is type an object type, and `target` is primitive, // skip all the checks we don't need and just return `isSimpleTypeRelatedTo` result if (originalSource.flags & 524288 /* TypeFlags.Object */ && originalTarget.flags & 131068 /* TypeFlags.Primitive */) { if (isSimpleTypeRelatedTo(originalSource, originalTarget, relation, reportErrors ? reportError : undefined)) { return -1 /* Ternary.True */; } if (reportErrors) { reportErrorResults(originalSource, originalTarget, originalSource, originalTarget, headMessage); } return 0 /* Ternary.False */; } // Normalize the source and target types: Turn fresh literal types into regular literal types, // turn deferred type references into regular type references, simplify indexed access and // conditional types, and resolve substitution types to either the substitution (on the source // side) or the type variable (on the target side). var source = getNormalizedType(originalSource, /*writing*/ false); var target = getNormalizedType(originalTarget, /*writing*/ true); if (source === target) return -1 /* Ternary.True */; if (relation === identityRelation) { if (source.flags !== target.flags) return 0 /* Ternary.False */; if (source.flags & 67358815 /* TypeFlags.Singleton */) return -1 /* Ternary.True */; traceUnionsOrIntersectionsTooLarge(source, target); return recursiveTypeRelatedTo(source, target, /*reportErrors*/ false, 0 /* IntersectionState.None */, recursionFlags); } // We fastpath comparing a type parameter to exactly its constraint, as this is _super_ common, // and otherwise, for type parameters in large unions, causes us to need to compare the union to itself, // as we break down the _target_ union first, _then_ get the source constraint - so for every // member of the target, we attempt to find a match in the source. This avoids that in cases where // the target is exactly the constraint. if (source.flags & 262144 /* TypeFlags.TypeParameter */ && getConstraintOfType(source) === target) { return -1 /* Ternary.True */; } // See if we're relating a definitely non-nullable type to a union that includes null and/or undefined // plus a single non-nullable type. If so, remove null and/or undefined from the target type. if (source.flags & 470302716 /* TypeFlags.DefinitelyNonNullable */ && target.flags & 1048576 /* TypeFlags.Union */) { var types = target.types; var candidate = types.length === 2 && types[0].flags & 98304 /* TypeFlags.Nullable */ ? types[1] : types.length === 3 && types[0].flags & 98304 /* TypeFlags.Nullable */ && types[1].flags & 98304 /* TypeFlags.Nullable */ ? types[2] : undefined; if (candidate && !(candidate.flags & 98304 /* TypeFlags.Nullable */)) { target = getNormalizedType(candidate, /*writing*/ true); if (source === target) return -1 /* Ternary.True */; } } if (relation === comparableRelation && !(target.flags & 131072 /* TypeFlags.Never */) && isSimpleTypeRelatedTo(target, source, relation) || isSimpleTypeRelatedTo(source, target, relation, reportErrors ? reportError : undefined)) return -1 /* Ternary.True */; if (source.flags & 469499904 /* TypeFlags.StructuredOrInstantiable */ || target.flags & 469499904 /* TypeFlags.StructuredOrInstantiable */) { var isPerformingExcessPropertyChecks = !(intersectionState & 2 /* IntersectionState.Target */) && (isObjectLiteralType(source) && ts.getObjectFlags(source) & 8192 /* ObjectFlags.FreshLiteral */); if (isPerformingExcessPropertyChecks) { if (hasExcessProperties(source, target, reportErrors)) { if (reportErrors) { reportRelationError(headMessage, source, originalTarget.aliasSymbol ? originalTarget : target); } return 0 /* Ternary.False */; } } var isPerformingCommonPropertyChecks = relation !== comparableRelation && !(intersectionState & 2 /* IntersectionState.Target */) && source.flags & (131068 /* TypeFlags.Primitive */ | 524288 /* TypeFlags.Object */ | 2097152 /* TypeFlags.Intersection */) && source !== globalObjectType && target.flags & (524288 /* TypeFlags.Object */ | 2097152 /* TypeFlags.Intersection */) && isWeakType(target) && (getPropertiesOfType(source).length > 0 || typeHasCallOrConstructSignatures(source)); var isComparingJsxAttributes = !!(ts.getObjectFlags(source) & 2048 /* ObjectFlags.JsxAttributes */); if (isPerformingCommonPropertyChecks && !hasCommonProperties(source, target, isComparingJsxAttributes)) { if (reportErrors) { var sourceString = typeToString(originalSource.aliasSymbol ? originalSource : source); var targetString = typeToString(originalTarget.aliasSymbol ? originalTarget : target); var calls = getSignaturesOfType(source, 0 /* SignatureKind.Call */); var constructs = getSignaturesOfType(source, 1 /* SignatureKind.Construct */); if (calls.length > 0 && isRelatedTo(getReturnTypeOfSignature(calls[0]), target, 1 /* RecursionFlags.Source */, /*reportErrors*/ false) || constructs.length > 0 && isRelatedTo(getReturnTypeOfSignature(constructs[0]), target, 1 /* RecursionFlags.Source */, /*reportErrors*/ false)) { reportError(ts.Diagnostics.Value_of_type_0_has_no_properties_in_common_with_type_1_Did_you_mean_to_call_it, sourceString, targetString); } else { reportError(ts.Diagnostics.Type_0_has_no_properties_in_common_with_type_1, sourceString, targetString); } } return 0 /* Ternary.False */; } traceUnionsOrIntersectionsTooLarge(source, target); var skipCaching = source.flags & 1048576 /* TypeFlags.Union */ && source.types.length < 4 && !(target.flags & 1048576 /* TypeFlags.Union */) || target.flags & 1048576 /* TypeFlags.Union */ && target.types.length < 4 && !(source.flags & 469499904 /* TypeFlags.StructuredOrInstantiable */); var result_7 = skipCaching ? unionOrIntersectionRelatedTo(source, target, reportErrors, intersectionState) : recursiveTypeRelatedTo(source, target, reportErrors, intersectionState, recursionFlags); // For certain combinations involving intersections and optional, excess, or mismatched properties we need // an extra property check where the intersection is viewed as a single object. The following are motivating // examples that all should be errors, but aren't without this extra property check: // // let obj: { a: { x: string } } & { c: number } = { a: { x: 'hello', y: 2 }, c: 5 }; // Nested excess property // // declare let wrong: { a: { y: string } }; // let weak: { a?: { x?: number } } & { c?: string } = wrong; // Nested weak object type // // function foo(x: { a?: string }, y: T & { a: boolean }) { // x = y; // Mismatched property in source intersection // } // // We suppress recursive intersection property checks because they can generate lots of work when relating // recursive intersections that are structurally similar but not exactly identical. See #37854. if (result_7 && !inPropertyCheck && (target.flags & 2097152 /* TypeFlags.Intersection */ && (isPerformingExcessPropertyChecks || isPerformingCommonPropertyChecks) || isNonGenericObjectType(target) && !isArrayOrTupleType(target) && source.flags & 2097152 /* TypeFlags.Intersection */ && getApparentType(source).flags & 3670016 /* TypeFlags.StructuredType */ && !ts.some(source.types, function (t) { return !!(ts.getObjectFlags(t) & 262144 /* ObjectFlags.NonInferrableType */); }))) { inPropertyCheck = true; result_7 &= recursiveTypeRelatedTo(source, target, reportErrors, 4 /* IntersectionState.PropertyCheck */, recursionFlags); inPropertyCheck = false; } if (result_7) { return result_7; } } if (reportErrors) { reportErrorResults(originalSource, originalTarget, source, target, headMessage); } return 0 /* Ternary.False */; } function reportErrorResults(originalSource, originalTarget, source, target, headMessage) { var sourceHasBase = !!getSingleBaseForNonAugmentingSubtype(originalSource); var targetHasBase = !!getSingleBaseForNonAugmentingSubtype(originalTarget); source = (originalSource.aliasSymbol || sourceHasBase) ? originalSource : source; target = (originalTarget.aliasSymbol || targetHasBase) ? originalTarget : target; var maybeSuppress = overrideNextErrorInfo > 0; if (maybeSuppress) { overrideNextErrorInfo--; } if (source.flags & 524288 /* TypeFlags.Object */ && target.flags & 524288 /* TypeFlags.Object */) { var currentError = errorInfo; tryElaborateArrayLikeErrors(source, target, /*reportErrors*/ true); if (errorInfo !== currentError) { maybeSuppress = !!errorInfo; } } if (source.flags & 524288 /* TypeFlags.Object */ && target.flags & 131068 /* TypeFlags.Primitive */) { tryElaborateErrorsForPrimitivesAndObjects(source, target); } else if (source.symbol && source.flags & 524288 /* TypeFlags.Object */ && globalObjectType === source) { reportError(ts.Diagnostics.The_Object_type_is_assignable_to_very_few_other_types_Did_you_mean_to_use_the_any_type_instead); } else if (ts.getObjectFlags(source) & 2048 /* ObjectFlags.JsxAttributes */ && target.flags & 2097152 /* TypeFlags.Intersection */) { var targetTypes = target.types; var intrinsicAttributes = getJsxType(JsxNames.IntrinsicAttributes, errorNode); var intrinsicClassAttributes = getJsxType(JsxNames.IntrinsicClassAttributes, errorNode); if (!isErrorType(intrinsicAttributes) && !isErrorType(intrinsicClassAttributes) && (ts.contains(targetTypes, intrinsicAttributes) || ts.contains(targetTypes, intrinsicClassAttributes))) { // do not report top error return; } } else { errorInfo = elaborateNeverIntersection(errorInfo, originalTarget); } if (!headMessage && maybeSuppress) { lastSkippedInfo = [source, target]; // Used by, eg, missing property checking to replace the top-level message with a more informative one return; } reportRelationError(headMessage, source, target); } function traceUnionsOrIntersectionsTooLarge(source, target) { if (!ts.tracing) { return; } if ((source.flags & 3145728 /* TypeFlags.UnionOrIntersection */) && (target.flags & 3145728 /* TypeFlags.UnionOrIntersection */)) { var sourceUnionOrIntersection = source; var targetUnionOrIntersection = target; if (sourceUnionOrIntersection.objectFlags & targetUnionOrIntersection.objectFlags & 32768 /* ObjectFlags.PrimitiveUnion */) { // There's a fast path for comparing primitive unions return; } var sourceSize = sourceUnionOrIntersection.types.length; var targetSize = targetUnionOrIntersection.types.length; if (sourceSize * targetSize > 1E6) { ts.tracing.instant("checkTypes" /* tracing.Phase.CheckTypes */, "traceUnionsOrIntersectionsTooLarge_DepthLimit", { sourceId: source.id, sourceSize: sourceSize, targetId: target.id, targetSize: targetSize, pos: errorNode === null || errorNode === void 0 ? void 0 : errorNode.pos, end: errorNode === null || errorNode === void 0 ? void 0 : errorNode.end }); } } } function getTypeOfPropertyInTypes(types, name) { var appendPropType = function (propTypes, type) { var _a; type = getApparentType(type); var prop = type.flags & 3145728 /* TypeFlags.UnionOrIntersection */ ? getPropertyOfUnionOrIntersectionType(type, name) : getPropertyOfObjectType(type, name); var propType = prop && getTypeOfSymbol(prop) || ((_a = getApplicableIndexInfoForName(type, name)) === null || _a === void 0 ? void 0 : _a.type) || undefinedType; return ts.append(propTypes, propType); }; return getUnionType(ts.reduceLeft(types, appendPropType, /*initial*/ undefined) || ts.emptyArray); } function hasExcessProperties(source, target, reportErrors) { var _a; if (!isExcessPropertyCheckTarget(target) || !noImplicitAny && ts.getObjectFlags(target) & 4096 /* ObjectFlags.JSLiteral */) { return false; // Disable excess property checks on JS literals to simulate having an implicit "index signature" - but only outside of noImplicitAny } var isComparingJsxAttributes = !!(ts.getObjectFlags(source) & 2048 /* ObjectFlags.JsxAttributes */); if ((relation === assignableRelation || relation === comparableRelation) && (isTypeSubsetOf(globalObjectType, target) || (!isComparingJsxAttributes && isEmptyObjectType(target)))) { return false; } var reducedTarget = target; var checkTypes; if (target.flags & 1048576 /* TypeFlags.Union */) { reducedTarget = findMatchingDiscriminantType(source, target, isRelatedTo) || filterPrimitivesIfContainsNonPrimitive(target); checkTypes = reducedTarget.flags & 1048576 /* TypeFlags.Union */ ? reducedTarget.types : [reducedTarget]; } var _loop_19 = function (prop) { if (shouldCheckAsExcessProperty(prop, source.symbol) && !isIgnoredJsxProperty(source, prop)) { if (!isKnownProperty(reducedTarget, prop.escapedName, isComparingJsxAttributes)) { if (reportErrors) { // Report error in terms of object types in the target as those are the only ones // we check in isKnownProperty. var errorTarget = filterType(reducedTarget, isExcessPropertyCheckTarget); // We know *exactly* where things went wrong when comparing the types. // Use this property as the error node as this will be more helpful in // reasoning about what went wrong. if (!errorNode) return { value: ts.Debug.fail() }; if (ts.isJsxAttributes(errorNode) || ts.isJsxOpeningLikeElement(errorNode) || ts.isJsxOpeningLikeElement(errorNode.parent)) { // JsxAttributes has an object-literal flag and undergo same type-assignablity check as normal object-literal. // However, using an object-literal error message will be very confusing to the users so we give different a message. if (prop.valueDeclaration && ts.isJsxAttribute(prop.valueDeclaration) && ts.getSourceFileOfNode(errorNode) === ts.getSourceFileOfNode(prop.valueDeclaration.name)) { // Note that extraneous children (as in `extra`) don't pass this check, // since `children` is a SyntaxKind.PropertySignature instead of a SyntaxKind.JsxAttribute. errorNode = prop.valueDeclaration.name; } var propName = symbolToString(prop); var suggestionSymbol = getSuggestedSymbolForNonexistentJSXAttribute(propName, errorTarget); var suggestion = suggestionSymbol ? symbolToString(suggestionSymbol) : undefined; if (suggestion) { reportError(ts.Diagnostics.Property_0_does_not_exist_on_type_1_Did_you_mean_2, propName, typeToString(errorTarget), suggestion); } else { reportError(ts.Diagnostics.Property_0_does_not_exist_on_type_1, propName, typeToString(errorTarget)); } } else { // use the property's value declaration if the property is assigned inside the literal itself var objectLiteralDeclaration_1 = ((_a = source.symbol) === null || _a === void 0 ? void 0 : _a.declarations) && ts.firstOrUndefined(source.symbol.declarations); var suggestion = void 0; if (prop.valueDeclaration && ts.findAncestor(prop.valueDeclaration, function (d) { return d === objectLiteralDeclaration_1; }) && ts.getSourceFileOfNode(objectLiteralDeclaration_1) === ts.getSourceFileOfNode(errorNode)) { var propDeclaration = prop.valueDeclaration; ts.Debug.assertNode(propDeclaration, ts.isObjectLiteralElementLike); errorNode = propDeclaration; var name = propDeclaration.name; if (ts.isIdentifier(name)) { suggestion = getSuggestionForNonexistentProperty(name, errorTarget); } } if (suggestion !== undefined) { reportError(ts.Diagnostics.Object_literal_may_only_specify_known_properties_but_0_does_not_exist_in_type_1_Did_you_mean_to_write_2, symbolToString(prop), typeToString(errorTarget), suggestion); } else { reportError(ts.Diagnostics.Object_literal_may_only_specify_known_properties_and_0_does_not_exist_in_type_1, symbolToString(prop), typeToString(errorTarget)); } } } return { value: true }; } if (checkTypes && !isRelatedTo(getTypeOfSymbol(prop), getTypeOfPropertyInTypes(checkTypes, prop.escapedName), 3 /* RecursionFlags.Both */, reportErrors)) { if (reportErrors) { reportIncompatibleError(ts.Diagnostics.Types_of_property_0_are_incompatible, symbolToString(prop)); } return { value: true }; } } }; for (var _i = 0, _b = getPropertiesOfType(source); _i < _b.length; _i++) { var prop = _b[_i]; var state_6 = _loop_19(prop); if (typeof state_6 === "object") return state_6.value; } return false; } function shouldCheckAsExcessProperty(prop, container) { return prop.valueDeclaration && container.valueDeclaration && prop.valueDeclaration.parent === container.valueDeclaration; } function unionOrIntersectionRelatedTo(source, target, reportErrors, intersectionState) { // Note that these checks are specifically ordered to produce correct results. In particular, // we need to deconstruct unions before intersections (because unions are always at the top), // and we need to handle "each" relations before "some" relations for the same kind of type. if (source.flags & 1048576 /* TypeFlags.Union */) { return relation === comparableRelation ? someTypeRelatedToType(source, target, reportErrors && !(source.flags & 131068 /* TypeFlags.Primitive */), intersectionState) : eachTypeRelatedToType(source, target, reportErrors && !(source.flags & 131068 /* TypeFlags.Primitive */), intersectionState); } if (target.flags & 1048576 /* TypeFlags.Union */) { return typeRelatedToSomeType(getRegularTypeOfObjectLiteral(source), target, reportErrors && !(source.flags & 131068 /* TypeFlags.Primitive */) && !(target.flags & 131068 /* TypeFlags.Primitive */)); } if (target.flags & 2097152 /* TypeFlags.Intersection */) { return typeRelatedToEachType(getRegularTypeOfObjectLiteral(source), target, reportErrors, 2 /* IntersectionState.Target */); } // Source is an intersection. For the comparable relation, if the target is a primitive type we hoist the // constraints of all non-primitive types in the source into a new intersection. We do this because the // intersection may further constrain the constraints of the non-primitive types. For example, given a type // parameter 'T extends 1 | 2', the intersection 'T & 1' should be reduced to '1' such that it doesn't // appear to be comparable to '2'. if (relation === comparableRelation && target.flags & 131068 /* TypeFlags.Primitive */) { var constraints = ts.sameMap(source.types, getBaseConstraintOrType); if (constraints !== source.types) { source = getIntersectionType(constraints); if (!(source.flags & 2097152 /* TypeFlags.Intersection */)) { return isRelatedTo(source, target, 1 /* RecursionFlags.Source */, /*reportErrors*/ false); } } } // Check to see if any constituents of the intersection are immediately related to the target. // Don't report errors though. Elaborating on whether a source constituent is related to the target is // not actually useful and leads to some confusing error messages. Instead, we rely on the caller // checking whether the full intersection viewed as an object is related to the target. return someTypeRelatedToType(source, target, /*reportErrors*/ false, 1 /* IntersectionState.Source */); } function eachTypeRelatedToSomeType(source, target) { var result = -1 /* Ternary.True */; var sourceTypes = source.types; for (var _i = 0, sourceTypes_1 = sourceTypes; _i < sourceTypes_1.length; _i++) { var sourceType = sourceTypes_1[_i]; var related = typeRelatedToSomeType(sourceType, target, /*reportErrors*/ false); if (!related) { return 0 /* Ternary.False */; } result &= related; } return result; } function typeRelatedToSomeType(source, target, reportErrors) { var targetTypes = target.types; if (target.flags & 1048576 /* TypeFlags.Union */) { if (containsType(targetTypes, source)) { return -1 /* Ternary.True */; } var match = getMatchingUnionConstituentForType(target, source); if (match) { var related = isRelatedTo(source, match, 2 /* RecursionFlags.Target */, /*reportErrors*/ false); if (related) { return related; } } } for (var _i = 0, targetTypes_1 = targetTypes; _i < targetTypes_1.length; _i++) { var type = targetTypes_1[_i]; var related = isRelatedTo(source, type, 2 /* RecursionFlags.Target */, /*reportErrors*/ false); if (related) { return related; } } if (reportErrors) { // Elaborate only if we can find a best matching type in the target union var bestMatchingType = getBestMatchingType(source, target, isRelatedTo); if (bestMatchingType) { isRelatedTo(source, bestMatchingType, 2 /* RecursionFlags.Target */, /*reportErrors*/ true); } } return 0 /* Ternary.False */; } function typeRelatedToEachType(source, target, reportErrors, intersectionState) { var result = -1 /* Ternary.True */; var targetTypes = target.types; for (var _i = 0, targetTypes_2 = targetTypes; _i < targetTypes_2.length; _i++) { var targetType = targetTypes_2[_i]; var related = isRelatedTo(source, targetType, 2 /* RecursionFlags.Target */, reportErrors, /*headMessage*/ undefined, intersectionState); if (!related) { return 0 /* Ternary.False */; } result &= related; } return result; } function someTypeRelatedToType(source, target, reportErrors, intersectionState) { var sourceTypes = source.types; if (source.flags & 1048576 /* TypeFlags.Union */ && containsType(sourceTypes, target)) { return -1 /* Ternary.True */; } var len = sourceTypes.length; for (var i = 0; i < len; i++) { var related = isRelatedTo(sourceTypes[i], target, 1 /* RecursionFlags.Source */, reportErrors && i === len - 1, /*headMessage*/ undefined, intersectionState); if (related) { return related; } } return 0 /* Ternary.False */; } function getUndefinedStrippedTargetIfNeeded(source, target) { // As a builtin type, `undefined` is a very low type ID - making it almsot always first, making this a very fast check to see // if we need to strip `undefined` from the target if (source.flags & 1048576 /* TypeFlags.Union */ && target.flags & 1048576 /* TypeFlags.Union */ && !(source.types[0].flags & 32768 /* TypeFlags.Undefined */) && target.types[0].flags & 32768 /* TypeFlags.Undefined */) { return extractTypesOfKind(target, ~32768 /* TypeFlags.Undefined */); } return target; } function eachTypeRelatedToType(source, target, reportErrors, intersectionState) { var result = -1 /* Ternary.True */; var sourceTypes = source.types; // We strip `undefined` from the target if the `source` trivially doesn't contain it for our correspondence-checking fastpath // since `undefined` is frequently added by optionality and would otherwise spoil a potentially useful correspondence var undefinedStrippedTarget = getUndefinedStrippedTargetIfNeeded(source, target); for (var i = 0; i < sourceTypes.length; i++) { var sourceType = sourceTypes[i]; if (undefinedStrippedTarget.flags & 1048576 /* TypeFlags.Union */ && sourceTypes.length >= undefinedStrippedTarget.types.length && sourceTypes.length % undefinedStrippedTarget.types.length === 0) { // many unions are mappings of one another; in such cases, simply comparing members at the same index can shortcut the comparison // such unions will have identical lengths, and their corresponding elements will match up. Another common scenario is where a large // union has a union of objects intersected with it. In such cases, if the input was, eg `("a" | "b" | "c") & (string | boolean | {} | {whatever})`, // the result will have the structure `"a" | "b" | "c" | "a" & {} | "b" & {} | "c" & {} | "a" & {whatever} | "b" & {whatever} | "c" & {whatever}` // - the resulting union has a length which is a multiple of the original union, and the elements correspond modulo the length of the original union var related_1 = isRelatedTo(sourceType, undefinedStrippedTarget.types[i % undefinedStrippedTarget.types.length], 3 /* RecursionFlags.Both */, /*reportErrors*/ false, /*headMessage*/ undefined, intersectionState); if (related_1) { result &= related_1; continue; } } var related = isRelatedTo(sourceType, target, 1 /* RecursionFlags.Source */, reportErrors, /*headMessage*/ undefined, intersectionState); if (!related) { return 0 /* Ternary.False */; } result &= related; } return result; } function typeArgumentsRelatedTo(sources, targets, variances, reportErrors, intersectionState) { if (sources === void 0) { sources = ts.emptyArray; } if (targets === void 0) { targets = ts.emptyArray; } if (variances === void 0) { variances = ts.emptyArray; } if (sources.length !== targets.length && relation === identityRelation) { return 0 /* Ternary.False */; } var length = sources.length <= targets.length ? sources.length : targets.length; var result = -1 /* Ternary.True */; for (var i = 0; i < length; i++) { // When variance information isn't available we default to covariance. This happens // in the process of computing variance information for recursive types and when // comparing 'this' type arguments. var varianceFlags = i < variances.length ? variances[i] : 1 /* VarianceFlags.Covariant */; var variance = varianceFlags & 7 /* VarianceFlags.VarianceMask */; // We ignore arguments for independent type parameters (because they're never witnessed). if (variance !== 4 /* VarianceFlags.Independent */) { var s = sources[i]; var t = targets[i]; var related = -1 /* Ternary.True */; if (varianceFlags & 8 /* VarianceFlags.Unmeasurable */) { // Even an `Unmeasurable` variance works out without a structural check if the source and target are _identical_. // We can't simply assume invariance, because `Unmeasurable` marks nonlinear relations, for example, a relation tained by // the `-?` modifier in a mapped type (where, no matter how the inputs are related, the outputs still might not be) related = relation === identityRelation ? isRelatedTo(s, t, 3 /* RecursionFlags.Both */, /*reportErrors*/ false) : compareTypesIdentical(s, t); } else if (variance === 1 /* VarianceFlags.Covariant */) { related = isRelatedTo(s, t, 3 /* RecursionFlags.Both */, reportErrors, /*headMessage*/ undefined, intersectionState); } else if (variance === 2 /* VarianceFlags.Contravariant */) { related = isRelatedTo(t, s, 3 /* RecursionFlags.Both */, reportErrors, /*headMessage*/ undefined, intersectionState); } else if (variance === 3 /* VarianceFlags.Bivariant */) { // In the bivariant case we first compare contravariantly without reporting // errors. Then, if that doesn't succeed, we compare covariantly with error // reporting. Thus, error elaboration will be based on the the covariant check, // which is generally easier to reason about. related = isRelatedTo(t, s, 3 /* RecursionFlags.Both */, /*reportErrors*/ false); if (!related) { related = isRelatedTo(s, t, 3 /* RecursionFlags.Both */, reportErrors, /*headMessage*/ undefined, intersectionState); } } else { // In the invariant case we first compare covariantly, and only when that // succeeds do we proceed to compare contravariantly. Thus, error elaboration // will typically be based on the covariant check. related = isRelatedTo(s, t, 3 /* RecursionFlags.Both */, reportErrors, /*headMessage*/ undefined, intersectionState); if (related) { related &= isRelatedTo(t, s, 3 /* RecursionFlags.Both */, reportErrors, /*headMessage*/ undefined, intersectionState); } } if (!related) { return 0 /* Ternary.False */; } result &= related; } } return result; } // Determine if possibly recursive types are related. First, check if the result is already available in the global cache. // Second, check if we have already started a comparison of the given two types in which case we assume the result to be true. // Third, check if both types are part of deeply nested chains of generic type instantiations and if so assume the types are // equal and infinitely expanding. Fourth, if we have reached a depth of 100 nested comparisons, assume we have runaway recursion // and issue an error. Otherwise, actually compare the structure of the two types. function recursiveTypeRelatedTo(source, target, reportErrors, intersectionState, recursionFlags) { if (overflow) { return 0 /* Ternary.False */; } var keyIntersectionState = intersectionState | (inPropertyCheck ? 8 /* IntersectionState.InPropertyCheck */ : 0); var id = getRelationKey(source, target, keyIntersectionState, relation, /*ingnoreConstraints*/ false); var entry = relation.get(id); if (entry !== undefined) { if (reportErrors && entry & 2 /* RelationComparisonResult.Failed */ && !(entry & 4 /* RelationComparisonResult.Reported */)) { // We are elaborating errors and the cached result is an unreported failure. The result will be reported // as a failure, and should be updated as a reported failure by the bottom of this function. } else { if (outofbandVarianceMarkerHandler) { // We're in the middle of variance checking - integrate any unmeasurable/unreliable flags from this cached component var saved = entry & 24 /* RelationComparisonResult.ReportsMask */; if (saved & 8 /* RelationComparisonResult.ReportsUnmeasurable */) { instantiateType(source, makeFunctionTypeMapper(reportUnmeasurableMarkers)); } if (saved & 16 /* RelationComparisonResult.ReportsUnreliable */) { instantiateType(source, makeFunctionTypeMapper(reportUnreliableMarkers)); } } return entry & 1 /* RelationComparisonResult.Succeeded */ ? -1 /* Ternary.True */ : 0 /* Ternary.False */; } } if (!maybeKeys) { maybeKeys = []; sourceStack = []; targetStack = []; } else { // A key that starts with "*" is an indication that we have type references that reference constrained // type parameters. For such keys we also check against the key we would have gotten if all type parameters // were unconstrained. var broadestEquivalentId = id.startsWith("*") ? getRelationKey(source, target, keyIntersectionState, relation, /*ignoreConstraints*/ true) : undefined; for (var i = 0; i < maybeCount; i++) { // If source and target are already being compared, consider them related with assumptions if (id === maybeKeys[i] || broadestEquivalentId && broadestEquivalentId === maybeKeys[i]) { return 3 /* Ternary.Maybe */; } } if (sourceDepth === 100 || targetDepth === 100) { overflow = true; return 0 /* Ternary.False */; } } var maybeStart = maybeCount; maybeKeys[maybeCount] = id; maybeCount++; var saveExpandingFlags = expandingFlags; if (recursionFlags & 1 /* RecursionFlags.Source */) { sourceStack[sourceDepth] = source; sourceDepth++; if (!(expandingFlags & 1 /* ExpandingFlags.Source */) && isDeeplyNestedType(source, sourceStack, sourceDepth)) expandingFlags |= 1 /* ExpandingFlags.Source */; } if (recursionFlags & 2 /* RecursionFlags.Target */) { targetStack[targetDepth] = target; targetDepth++; if (!(expandingFlags & 2 /* ExpandingFlags.Target */) && isDeeplyNestedType(target, targetStack, targetDepth)) expandingFlags |= 2 /* ExpandingFlags.Target */; } var originalHandler; var propagatingVarianceFlags = 0; if (outofbandVarianceMarkerHandler) { originalHandler = outofbandVarianceMarkerHandler; outofbandVarianceMarkerHandler = function (onlyUnreliable) { propagatingVarianceFlags |= onlyUnreliable ? 16 /* RelationComparisonResult.ReportsUnreliable */ : 8 /* RelationComparisonResult.ReportsUnmeasurable */; return originalHandler(onlyUnreliable); }; } var result; if (expandingFlags === 3 /* ExpandingFlags.Both */) { ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.instant("checkTypes" /* tracing.Phase.CheckTypes */, "recursiveTypeRelatedTo_DepthLimit", { sourceId: source.id, sourceIdStack: sourceStack.map(function (t) { return t.id; }), targetId: target.id, targetIdStack: targetStack.map(function (t) { return t.id; }), depth: sourceDepth, targetDepth: targetDepth }); result = 3 /* Ternary.Maybe */; } else { ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("checkTypes" /* tracing.Phase.CheckTypes */, "structuredTypeRelatedTo", { sourceId: source.id, targetId: target.id }); result = structuredTypeRelatedTo(source, target, reportErrors, intersectionState); ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); } if (outofbandVarianceMarkerHandler) { outofbandVarianceMarkerHandler = originalHandler; } if (recursionFlags & 1 /* RecursionFlags.Source */) { sourceDepth--; } if (recursionFlags & 2 /* RecursionFlags.Target */) { targetDepth--; } expandingFlags = saveExpandingFlags; if (result) { if (result === -1 /* Ternary.True */ || (sourceDepth === 0 && targetDepth === 0)) { if (result === -1 /* Ternary.True */ || result === 3 /* Ternary.Maybe */) { // If result is definitely true, record all maybe keys as having succeeded. Also, record Ternary.Maybe // results as having succeeded once we reach depth 0, but never record Ternary.Unknown results. for (var i = maybeStart; i < maybeCount; i++) { relation.set(maybeKeys[i], 1 /* RelationComparisonResult.Succeeded */ | propagatingVarianceFlags); } } maybeCount = maybeStart; } } else { // A false result goes straight into global cache (when something is false under // assumptions it will also be false without assumptions) relation.set(id, (reportErrors ? 4 /* RelationComparisonResult.Reported */ : 0) | 2 /* RelationComparisonResult.Failed */ | propagatingVarianceFlags); maybeCount = maybeStart; } return result; } function structuredTypeRelatedTo(source, target, reportErrors, intersectionState) { if (intersectionState & 4 /* IntersectionState.PropertyCheck */) { return propertiesRelatedTo(source, target, reportErrors, /*excludedProperties*/ undefined, 0 /* IntersectionState.None */); } var result; var originalErrorInfo; var varianceCheckFailed = false; var saveErrorInfo = captureErrorCalculationState(); var sourceFlags = source.flags; var targetFlags = target.flags; if (relation === identityRelation) { // We've already checked that source.flags and target.flags are identical if (sourceFlags & 3145728 /* TypeFlags.UnionOrIntersection */) { var result_8 = eachTypeRelatedToSomeType(source, target); if (result_8) { result_8 &= eachTypeRelatedToSomeType(target, source); } return result_8; } if (sourceFlags & 4194304 /* TypeFlags.Index */) { return isRelatedTo(source.type, target.type, 3 /* RecursionFlags.Both */, /*reportErrors*/ false); } if (sourceFlags & 8388608 /* TypeFlags.IndexedAccess */) { if (result = isRelatedTo(source.objectType, target.objectType, 3 /* RecursionFlags.Both */, /*reportErrors*/ false)) { if (result &= isRelatedTo(source.indexType, target.indexType, 3 /* RecursionFlags.Both */, /*reportErrors*/ false)) { return result; } } } if (sourceFlags & 16777216 /* TypeFlags.Conditional */) { if (source.root.isDistributive === target.root.isDistributive) { if (result = isRelatedTo(source.checkType, target.checkType, 3 /* RecursionFlags.Both */, /*reportErrors*/ false)) { if (result &= isRelatedTo(source.extendsType, target.extendsType, 3 /* RecursionFlags.Both */, /*reportErrors*/ false)) { if (result &= isRelatedTo(getTrueTypeFromConditionalType(source), getTrueTypeFromConditionalType(target), 3 /* RecursionFlags.Both */, /*reportErrors*/ false)) { if (result &= isRelatedTo(getFalseTypeFromConditionalType(source), getFalseTypeFromConditionalType(target), 3 /* RecursionFlags.Both */, /*reportErrors*/ false)) { return result; } } } } } } if (sourceFlags & 33554432 /* TypeFlags.Substitution */) { return isRelatedTo(source.substitute, target.substitute, 3 /* RecursionFlags.Both */, /*reportErrors*/ false); } if (!(sourceFlags & 524288 /* TypeFlags.Object */)) { return 0 /* Ternary.False */; } } else if (sourceFlags & 3145728 /* TypeFlags.UnionOrIntersection */ || targetFlags & 3145728 /* TypeFlags.UnionOrIntersection */) { if (result = unionOrIntersectionRelatedTo(source, target, reportErrors, intersectionState)) { return result; } if (source.flags & 2097152 /* TypeFlags.Intersection */ || source.flags & 262144 /* TypeFlags.TypeParameter */ && target.flags & 1048576 /* TypeFlags.Union */) { // The combined constraint of an intersection type is the intersection of the constraints of // the constituents. When an intersection type contains instantiable types with union type // constraints, there are situations where we need to examine the combined constraint. One is // when the target is a union type. Another is when the intersection contains types belonging // to one of the disjoint domains. For example, given type variables T and U, each with the // constraint 'string | number', the combined constraint of 'T & U' is 'string | number' and // we need to check this constraint against a union on the target side. Also, given a type // variable V constrained to 'string | number', 'V & number' has a combined constraint of // 'string & number | number & number' which reduces to just 'number'. // This also handles type parameters, as a type parameter with a union constraint compared against a union // needs to have its constraint hoisted into an intersection with said type parameter, this way // the type param can be compared with itself in the target (with the influence of its constraint to match other parts) // For example, if `T extends 1 | 2` and `U extends 2 | 3` and we compare `T & U` to `T & U & (1 | 2 | 3)` var constraint = getEffectiveConstraintOfIntersection(source.flags & 2097152 /* TypeFlags.Intersection */ ? source.types : [source], !!(target.flags & 1048576 /* TypeFlags.Union */)); if (constraint && everyType(constraint, function (c) { return c !== source; })) { // Skip comparison if expansion contains the source itself // TODO: Stack errors so we get a pyramid for the "normal" comparison above, _and_ a second for this if (result = isRelatedTo(constraint, target, 1 /* RecursionFlags.Source */, /*reportErrors*/ false, /*headMessage*/ undefined, intersectionState)) { resetErrorInfo(saveErrorInfo); return result; } } } // The ordered decomposition above doesn't handle all cases. Specifically, we also need to handle: // Source is instantiable (e.g. source has union or intersection constraint). // Source is an object, target is a union (e.g. { a, b: boolean } <=> { a, b: true } | { a, b: false }). // Source is an intersection, target is an object (e.g. { a } & { b } <=> { a, b }). // Source is an intersection, target is a union (e.g. { a } & { b: boolean } <=> { a, b: true } | { a, b: false }). // Source is an intersection, target instantiable (e.g. string & { tag } <=> T["a"] constrained to string & { tag }). if (!(sourceFlags & 465829888 /* TypeFlags.Instantiable */ || sourceFlags & 524288 /* TypeFlags.Object */ && targetFlags & 1048576 /* TypeFlags.Union */ || sourceFlags & 2097152 /* TypeFlags.Intersection */ && targetFlags & (524288 /* TypeFlags.Object */ | 1048576 /* TypeFlags.Union */ | 465829888 /* TypeFlags.Instantiable */))) { return 0 /* Ternary.False */; } } // We limit alias variance probing to only object and conditional types since their alias behavior // is more predictable than other, interned types, which may or may not have an alias depending on // the order in which things were checked. if (sourceFlags & (524288 /* TypeFlags.Object */ | 16777216 /* TypeFlags.Conditional */) && source.aliasSymbol && source.aliasTypeArguments && source.aliasSymbol === target.aliasSymbol && !(isMarkerType(source) || isMarkerType(target))) { var variances = getAliasVariances(source.aliasSymbol); if (variances === ts.emptyArray) { return 1 /* Ternary.Unknown */; } var varianceResult = relateVariances(source.aliasTypeArguments, target.aliasTypeArguments, variances, intersectionState); if (varianceResult !== undefined) { return varianceResult; } } // For a generic type T and a type U that is assignable to T, [...U] is assignable to T, U is assignable to readonly [...T], // and U is assignable to [...T] when U is constrained to a mutable array or tuple type. if (isSingleElementGenericTupleType(source) && !source.target.readonly && (result = isRelatedTo(getTypeArguments(source)[0], target, 1 /* RecursionFlags.Source */)) || isSingleElementGenericTupleType(target) && (target.target.readonly || isMutableArrayOrTuple(getBaseConstraintOfType(source) || source)) && (result = isRelatedTo(source, getTypeArguments(target)[0], 2 /* RecursionFlags.Target */))) { return result; } if (targetFlags & 262144 /* TypeFlags.TypeParameter */) { // A source type { [P in Q]: X } is related to a target type T if keyof T is related to Q and X is related to T[Q]. if (ts.getObjectFlags(source) & 32 /* ObjectFlags.Mapped */ && !source.declaration.nameType && isRelatedTo(getIndexType(target), getConstraintTypeFromMappedType(source), 3 /* RecursionFlags.Both */)) { if (!(getMappedTypeModifiers(source) & 4 /* MappedTypeModifiers.IncludeOptional */)) { var templateType = getTemplateTypeFromMappedType(source); var indexedAccessType = getIndexedAccessType(target, getTypeParameterFromMappedType(source)); if (result = isRelatedTo(templateType, indexedAccessType, 3 /* RecursionFlags.Both */, reportErrors)) { return result; } } } } else if (targetFlags & 4194304 /* TypeFlags.Index */) { var targetType_1 = target.type; // A keyof S is related to a keyof T if T is related to S. if (sourceFlags & 4194304 /* TypeFlags.Index */) { if (result = isRelatedTo(targetType_1, source.type, 3 /* RecursionFlags.Both */, /*reportErrors*/ false)) { return result; } } if (isTupleType(targetType_1)) { // An index type can have a tuple type target when the tuple type contains variadic elements. // Check if the source is related to the known keys of the tuple type. if (result = isRelatedTo(source, getKnownKeysOfTupleType(targetType_1), 2 /* RecursionFlags.Target */, reportErrors)) { return result; } } else { // A type S is assignable to keyof T if S is assignable to keyof C, where C is the // simplified form of T or, if T doesn't simplify, the constraint of T. var constraint = getSimplifiedTypeOrConstraint(targetType_1); if (constraint) { // We require Ternary.True here such that circular constraints don't cause // false positives. For example, given 'T extends { [K in keyof T]: string }', // 'keyof T' has itself as its constraint and produces a Ternary.Maybe when // related to other types. if (isRelatedTo(source, getIndexType(constraint, target.stringsOnly), 2 /* RecursionFlags.Target */, reportErrors) === -1 /* Ternary.True */) { return -1 /* Ternary.True */; } } else if (isGenericMappedType(targetType_1)) { // generic mapped types that don't simplify or have a constraint still have a very simple set of keys we can compare against // - their nameType or constraintType. // In many ways, this comparison is a deferred version of what `getIndexTypeForMappedType` does to actually resolve the keys for _non_-generic types var nameType_1 = getNameTypeFromMappedType(targetType_1); var constraintType = getConstraintTypeFromMappedType(targetType_1); var targetKeys = void 0; if (nameType_1 && isMappedTypeWithKeyofConstraintDeclaration(targetType_1)) { // we need to get the apparent mappings and union them with the generic mappings, since some properties may be // missing from the `constraintType` which will otherwise be mapped in the object var modifiersType = getApparentType(getModifiersTypeFromMappedType(targetType_1)); var mappedKeys_1 = []; forEachMappedTypePropertyKeyTypeAndIndexSignatureKeyType(modifiersType, 8576 /* TypeFlags.StringOrNumberLiteralOrUnique */, /*stringsOnly*/ false, function (t) { return void mappedKeys_1.push(instantiateType(nameType_1, appendTypeMapping(targetType_1.mapper, getTypeParameterFromMappedType(targetType_1), t))); }); // We still need to include the non-apparent (and thus still generic) keys in the target side of the comparison (in case they're in the source side) targetKeys = getUnionType(__spreadArray(__spreadArray([], mappedKeys_1, true), [nameType_1], false)); } else { targetKeys = nameType_1 || constraintType; } if (isRelatedTo(source, targetKeys, 2 /* RecursionFlags.Target */, reportErrors) === -1 /* Ternary.True */) { return -1 /* Ternary.True */; } } } } else if (targetFlags & 8388608 /* TypeFlags.IndexedAccess */) { if (sourceFlags & 8388608 /* TypeFlags.IndexedAccess */) { // Relate components directly before falling back to constraint relationships // A type S[K] is related to a type T[J] if S is related to T and K is related to J. if (result = isRelatedTo(source.objectType, target.objectType, 3 /* RecursionFlags.Both */, reportErrors)) { result &= isRelatedTo(source.indexType, target.indexType, 3 /* RecursionFlags.Both */, reportErrors); } if (result) { resetErrorInfo(saveErrorInfo); return result; } if (reportErrors) { originalErrorInfo = errorInfo; } } // A type S is related to a type T[K] if S is related to C, where C is the base // constraint of T[K] for writing. if (relation === assignableRelation || relation === comparableRelation) { var objectType = target.objectType; var indexType = target.indexType; var baseObjectType = getBaseConstraintOfType(objectType) || objectType; var baseIndexType = getBaseConstraintOfType(indexType) || indexType; if (!isGenericObjectType(baseObjectType) && !isGenericIndexType(baseIndexType)) { var accessFlags = 4 /* AccessFlags.Writing */ | (baseObjectType !== objectType ? 2 /* AccessFlags.NoIndexSignatures */ : 0); var constraint = getIndexedAccessTypeOrUndefined(baseObjectType, baseIndexType, accessFlags); if (constraint) { if (reportErrors && originalErrorInfo) { // create a new chain for the constraint error resetErrorInfo(saveErrorInfo); } if (result = isRelatedTo(source, constraint, 2 /* RecursionFlags.Target */, reportErrors)) { return result; } // prefer the shorter chain of the constraint comparison chain, and the direct comparison chain if (reportErrors && originalErrorInfo && errorInfo) { errorInfo = countMessageChainBreadth([originalErrorInfo]) <= countMessageChainBreadth([errorInfo]) ? originalErrorInfo : errorInfo; } } } } if (reportErrors) { originalErrorInfo = undefined; } } else if (isGenericMappedType(target) && relation !== identityRelation) { // Check if source type `S` is related to target type `{ [P in Q]: T }` or `{ [P in Q as R]: T}`. var keysRemapped = !!target.declaration.nameType; var templateType = getTemplateTypeFromMappedType(target); var modifiers = getMappedTypeModifiers(target); if (!(modifiers & 8 /* MappedTypeModifiers.ExcludeOptional */)) { // If the mapped type has shape `{ [P in Q]: T[P] }`, // source `S` is related to target if `T` = `S`, i.e. `S` is related to `{ [P in Q]: S[P] }`. if (!keysRemapped && templateType.flags & 8388608 /* TypeFlags.IndexedAccess */ && templateType.objectType === source && templateType.indexType === getTypeParameterFromMappedType(target)) { return -1 /* Ternary.True */; } if (!isGenericMappedType(source)) { // If target has shape `{ [P in Q as R]: T}`, then its keys have type `R`. // If target has shape `{ [P in Q]: T }`, then its keys have type `Q`. var targetKeys = keysRemapped ? getNameTypeFromMappedType(target) : getConstraintTypeFromMappedType(target); // Type of the keys of source type `S`, i.e. `keyof S`. var sourceKeys = getIndexType(source, /*stringsOnly*/ undefined, /*noIndexSignatures*/ true); var includeOptional = modifiers & 4 /* MappedTypeModifiers.IncludeOptional */; var filteredByApplicability = includeOptional ? intersectTypes(targetKeys, sourceKeys) : undefined; // A source type `S` is related to a target type `{ [P in Q]: T }` if `Q` is related to `keyof S` and `S[Q]` is related to `T`. // A source type `S` is related to a target type `{ [P in Q as R]: T }` if `R` is related to `keyof S` and `S[R]` is related to `T. // A source type `S` is related to a target type `{ [P in Q]?: T }` if some constituent `Q'` of `Q` is related to `keyof S` and `S[Q']` is related to `T`. // A source type `S` is related to a target type `{ [P in Q as R]?: T }` if some constituent `R'` of `R` is related to `keyof S` and `S[R']` is related to `T`. if (includeOptional ? !(filteredByApplicability.flags & 131072 /* TypeFlags.Never */) : isRelatedTo(targetKeys, sourceKeys, 3 /* RecursionFlags.Both */)) { var templateType_1 = getTemplateTypeFromMappedType(target); var typeParameter = getTypeParameterFromMappedType(target); // Fastpath: When the template type has the form `Obj[P]` where `P` is the mapped type parameter, directly compare source `S` with `Obj` // to avoid creating the (potentially very large) number of new intermediate types made by manufacturing `S[P]`. var nonNullComponent = extractTypesOfKind(templateType_1, ~98304 /* TypeFlags.Nullable */); if (!keysRemapped && nonNullComponent.flags & 8388608 /* TypeFlags.IndexedAccess */ && nonNullComponent.indexType === typeParameter) { if (result = isRelatedTo(source, nonNullComponent.objectType, 2 /* RecursionFlags.Target */, reportErrors)) { return result; } } else { // We need to compare the type of a property on the source type `S` to the type of the same property on the target type, // so we need to construct an indexing type representing a property, and then use indexing type to index the source type for comparison. // If the target type has shape `{ [P in Q]: T }`, then a property of the target has type `P`. // If the target type has shape `{ [P in Q]?: T }`, then a property of the target has type `P`, // but the property is optional, so we only want to compare properties `P` that are common between `keyof S` and `Q`. // If the target type has shape `{ [P in Q as R]: T }`, then a property of the target has type `R`. // If the target type has shape `{ [P in Q as R]?: T }`, then a property of the target has type `R`, // but the property is optional, so we only want to compare properties `R` that are common between `keyof S` and `R`. var indexingType = keysRemapped ? (filteredByApplicability || targetKeys) : filteredByApplicability ? getIntersectionType([filteredByApplicability, typeParameter]) : typeParameter; var indexedAccessType = getIndexedAccessType(source, indexingType); // Compare `S[indexingType]` to `T`, where `T` is the type of a property of the target type. if (result = isRelatedTo(indexedAccessType, templateType_1, 3 /* RecursionFlags.Both */, reportErrors)) { return result; } } } originalErrorInfo = errorInfo; resetErrorInfo(saveErrorInfo); } } } else if (targetFlags & 16777216 /* TypeFlags.Conditional */) { // If we reach 10 levels of nesting for the same conditional type, assume it is an infinitely expanding recursive // conditional type and bail out with a Ternary.Maybe result. if (isDeeplyNestedType(target, targetStack, targetDepth, 10)) { resetErrorInfo(saveErrorInfo); return 3 /* Ternary.Maybe */; } var c = target; // We check for a relationship to a conditional type target only when the conditional type has no // 'infer' positions and is not distributive or is distributive but doesn't reference the check type // parameter in either of the result types. if (!c.root.inferTypeParameters && !isDistributionDependent(c.root)) { // Check if the conditional is always true or always false but still deferred for distribution purposes. var skipTrue = !isTypeAssignableTo(getPermissiveInstantiation(c.checkType), getPermissiveInstantiation(c.extendsType)); var skipFalse = !skipTrue && isTypeAssignableTo(getRestrictiveInstantiation(c.checkType), getRestrictiveInstantiation(c.extendsType)); // TODO: Find a nice way to include potential conditional type breakdowns in error output, if they seem good (they usually don't) if (result = skipTrue ? -1 /* Ternary.True */ : isRelatedTo(source, getTrueTypeFromConditionalType(c), 2 /* RecursionFlags.Target */, /*reportErrors*/ false)) { result &= skipFalse ? -1 /* Ternary.True */ : isRelatedTo(source, getFalseTypeFromConditionalType(c), 2 /* RecursionFlags.Target */, /*reportErrors*/ false); if (result) { resetErrorInfo(saveErrorInfo); return result; } } } } else if (targetFlags & 134217728 /* TypeFlags.TemplateLiteral */) { if (sourceFlags & 134217728 /* TypeFlags.TemplateLiteral */) { if (relation === comparableRelation) { return templateLiteralTypesDefinitelyUnrelated(source, target) ? 0 /* Ternary.False */ : -1 /* Ternary.True */; } // Report unreliable variance for type variables referenced in template literal type placeholders. // For example, `foo-${number}` is related to `foo-${string}` even though number isn't related to string. instantiateType(source, makeFunctionTypeMapper(reportUnreliableMarkers)); } if (isTypeMatchedByTemplateLiteralType(source, target)) { return -1 /* Ternary.True */; } } if (sourceFlags & 8650752 /* TypeFlags.TypeVariable */) { // IndexedAccess comparisons are handled above in the `targetFlags & TypeFlage.IndexedAccess` branch if (!(sourceFlags & 8388608 /* TypeFlags.IndexedAccess */ && targetFlags & 8388608 /* TypeFlags.IndexedAccess */)) { var constraint = getConstraintOfType(source); if (!constraint || (sourceFlags & 262144 /* TypeFlags.TypeParameter */ && constraint.flags & 1 /* TypeFlags.Any */)) { // A type variable with no constraint is not related to the non-primitive object type. if (result = isRelatedTo(emptyObjectType, extractTypesOfKind(target, ~67108864 /* TypeFlags.NonPrimitive */), 3 /* RecursionFlags.Both */)) { resetErrorInfo(saveErrorInfo); return result; } } // hi-speed no-this-instantiation check (less accurate, but avoids costly `this`-instantiation when the constraint will suffice), see #28231 for report on why this is needed else if (result = isRelatedTo(constraint, target, 1 /* RecursionFlags.Source */, /*reportErrors*/ false, /*headMessage*/ undefined, intersectionState)) { resetErrorInfo(saveErrorInfo); return result; } // slower, fuller, this-instantiated check (necessary when comparing raw `this` types from base classes), see `subclassWithPolymorphicThisIsAssignable.ts` test for example else if (result = isRelatedTo(getTypeWithThisArgument(constraint, source), target, 1 /* RecursionFlags.Source */, reportErrors && !(targetFlags & sourceFlags & 262144 /* TypeFlags.TypeParameter */), /*headMessage*/ undefined, intersectionState)) { resetErrorInfo(saveErrorInfo); return result; } if (isMappedTypeGenericIndexedAccess(source)) { // For an indexed access type { [P in K]: E}[X], above we have already explored an instantiation of E with X // substituted for P. We also want to explore type { [P in K]: E }[C], where C is the constraint of X. var indexConstraint = getConstraintOfType(source.indexType); if (indexConstraint) { if (result = isRelatedTo(getIndexedAccessType(source.objectType, indexConstraint), target, 1 /* RecursionFlags.Source */, reportErrors)) { resetErrorInfo(saveErrorInfo); return result; } } } } } else if (sourceFlags & 4194304 /* TypeFlags.Index */) { if (result = isRelatedTo(keyofConstraintType, target, 1 /* RecursionFlags.Source */, reportErrors)) { resetErrorInfo(saveErrorInfo); return result; } } else if (sourceFlags & 134217728 /* TypeFlags.TemplateLiteral */ && !(targetFlags & 524288 /* TypeFlags.Object */)) { if (!(targetFlags & 134217728 /* TypeFlags.TemplateLiteral */)) { var constraint = getBaseConstraintOfType(source); if (constraint && constraint !== source && (result = isRelatedTo(constraint, target, 1 /* RecursionFlags.Source */, reportErrors))) { resetErrorInfo(saveErrorInfo); return result; } } } else if (sourceFlags & 268435456 /* TypeFlags.StringMapping */) { if (targetFlags & 268435456 /* TypeFlags.StringMapping */ && source.symbol === target.symbol) { if (result = isRelatedTo(source.type, target.type, 3 /* RecursionFlags.Both */, reportErrors)) { resetErrorInfo(saveErrorInfo); return result; } } else { var constraint = getBaseConstraintOfType(source); if (constraint && (result = isRelatedTo(constraint, target, 1 /* RecursionFlags.Source */, reportErrors))) { resetErrorInfo(saveErrorInfo); return result; } } } else if (sourceFlags & 16777216 /* TypeFlags.Conditional */) { // If we reach 10 levels of nesting for the same conditional type, assume it is an infinitely expanding recursive // conditional type and bail out with a Ternary.Maybe result. if (isDeeplyNestedType(source, sourceStack, sourceDepth, 10)) { resetErrorInfo(saveErrorInfo); return 3 /* Ternary.Maybe */; } if (targetFlags & 16777216 /* TypeFlags.Conditional */) { // Two conditional types 'T1 extends U1 ? X1 : Y1' and 'T2 extends U2 ? X2 : Y2' are related if // one of T1 and T2 is related to the other, U1 and U2 are identical types, X1 is related to X2, // and Y1 is related to Y2. var sourceParams = source.root.inferTypeParameters; var sourceExtends = source.extendsType; var mapper = void 0; if (sourceParams) { // If the source has infer type parameters, we instantiate them in the context of the target var ctx = createInferenceContext(sourceParams, /*signature*/ undefined, 0 /* InferenceFlags.None */, isRelatedToWorker); inferTypes(ctx.inferences, target.extendsType, sourceExtends, 512 /* InferencePriority.NoConstraints */ | 1024 /* InferencePriority.AlwaysStrict */); sourceExtends = instantiateType(sourceExtends, ctx.mapper); mapper = ctx.mapper; } if (isTypeIdenticalTo(sourceExtends, target.extendsType) && (isRelatedTo(source.checkType, target.checkType, 3 /* RecursionFlags.Both */) || isRelatedTo(target.checkType, source.checkType, 3 /* RecursionFlags.Both */))) { if (result = isRelatedTo(instantiateType(getTrueTypeFromConditionalType(source), mapper), getTrueTypeFromConditionalType(target), 3 /* RecursionFlags.Both */, reportErrors)) { result &= isRelatedTo(getFalseTypeFromConditionalType(source), getFalseTypeFromConditionalType(target), 3 /* RecursionFlags.Both */, reportErrors); } if (result) { resetErrorInfo(saveErrorInfo); return result; } } } else { // conditionals aren't related to one another via distributive constraint as it is much too inaccurate and allows way // more assignments than are desirable (since it maps the source check type to its constraint, it loses information) var distributiveConstraint = hasNonCircularBaseConstraint(source) ? getConstraintOfDistributiveConditionalType(source) : undefined; if (distributiveConstraint) { if (result = isRelatedTo(distributiveConstraint, target, 1 /* RecursionFlags.Source */, reportErrors)) { resetErrorInfo(saveErrorInfo); return result; } } } // conditionals _can_ be related to one another via normal constraint, as, eg, `A extends B ? O : never` should be assignable to `O` // when `O` is a conditional (`never` is trivially assignable to `O`, as is `O`!). var defaultConstraint = getDefaultConstraintOfConditionalType(source); if (defaultConstraint) { if (result = isRelatedTo(defaultConstraint, target, 1 /* RecursionFlags.Source */, reportErrors)) { resetErrorInfo(saveErrorInfo); return result; } } } else { // An empty object type is related to any mapped type that includes a '?' modifier. if (relation !== subtypeRelation && relation !== strictSubtypeRelation && isPartialMappedType(target) && isEmptyObjectType(source)) { return -1 /* Ternary.True */; } if (isGenericMappedType(target)) { if (isGenericMappedType(source)) { if (result = mappedTypeRelatedTo(source, target, reportErrors)) { resetErrorInfo(saveErrorInfo); return result; } } return 0 /* Ternary.False */; } var sourceIsPrimitive = !!(sourceFlags & 131068 /* TypeFlags.Primitive */); if (relation !== identityRelation) { source = getApparentType(source); sourceFlags = source.flags; } else if (isGenericMappedType(source)) { return 0 /* Ternary.False */; } if (ts.getObjectFlags(source) & 4 /* ObjectFlags.Reference */ && ts.getObjectFlags(target) & 4 /* ObjectFlags.Reference */ && source.target === target.target && !isTupleType(source) && !(isMarkerType(source) || isMarkerType(target))) { // When strictNullChecks is disabled, the element type of the empty array literal is undefinedWideningType, // and an empty array literal wouldn't be assignable to a `never[]` without this check. if (isEmptyArrayLiteralType(source)) { return -1 /* Ternary.True */; } // We have type references to the same generic type, and the type references are not marker // type references (which are intended by be compared structurally). Obtain the variance // information for the type parameters and relate the type arguments accordingly. var variances = getVariances(source.target); // We return Ternary.Maybe for a recursive invocation of getVariances (signalled by emptyArray). This // effectively means we measure variance only from type parameter occurrences that aren't nested in // recursive instantiations of the generic type. if (variances === ts.emptyArray) { return 1 /* Ternary.Unknown */; } var varianceResult = relateVariances(getTypeArguments(source), getTypeArguments(target), variances, intersectionState); if (varianceResult !== undefined) { return varianceResult; } } else if (isReadonlyArrayType(target) ? isArrayOrTupleType(source) : isArrayType(target) && isTupleType(source) && !source.target.readonly) { if (relation !== identityRelation) { return isRelatedTo(getIndexTypeOfType(source, numberType) || anyType, getIndexTypeOfType(target, numberType) || anyType, 3 /* RecursionFlags.Both */, reportErrors); } else { // By flags alone, we know that the `target` is a readonly array while the source is a normal array or tuple // or `target` is an array and source is a tuple - in both cases the types cannot be identical, by construction return 0 /* Ternary.False */; } } // Consider a fresh empty object literal type "closed" under the subtype relationship - this way `{} <- {[idx: string]: any} <- fresh({})` // and not `{} <- fresh({}) <- {[idx: string]: any}` else if ((relation === subtypeRelation || relation === strictSubtypeRelation) && isEmptyObjectType(target) && ts.getObjectFlags(target) & 8192 /* ObjectFlags.FreshLiteral */ && !isEmptyObjectType(source)) { return 0 /* Ternary.False */; } // Even if relationship doesn't hold for unions, intersections, or generic type references, // it may hold in a structural comparison. // In a check of the form X = A & B, we will have previously checked if A relates to X or B relates // to X. Failing both of those we want to check if the aggregation of A and B's members structurally // relates to X. Thus, we include intersection types on the source side here. if (sourceFlags & (524288 /* TypeFlags.Object */ | 2097152 /* TypeFlags.Intersection */) && targetFlags & 524288 /* TypeFlags.Object */) { // Report structural errors only if we haven't reported any errors yet var reportStructuralErrors = reportErrors && errorInfo === saveErrorInfo.errorInfo && !sourceIsPrimitive; result = propertiesRelatedTo(source, target, reportStructuralErrors, /*excludedProperties*/ undefined, intersectionState); if (result) { result &= signaturesRelatedTo(source, target, 0 /* SignatureKind.Call */, reportStructuralErrors); if (result) { result &= signaturesRelatedTo(source, target, 1 /* SignatureKind.Construct */, reportStructuralErrors); if (result) { result &= indexSignaturesRelatedTo(source, target, sourceIsPrimitive, reportStructuralErrors, intersectionState); } } } if (varianceCheckFailed && result) { errorInfo = originalErrorInfo || errorInfo || saveErrorInfo.errorInfo; // Use variance error (there is no structural one) and return false } else if (result) { return result; } } // If S is an object type and T is a discriminated union, S may be related to T if // there exists a constituent of T for every combination of the discriminants of S // with respect to T. We do not report errors here, as we will use the existing // error result from checking each constituent of the union. if (sourceFlags & (524288 /* TypeFlags.Object */ | 2097152 /* TypeFlags.Intersection */) && targetFlags & 1048576 /* TypeFlags.Union */) { var objectOnlyTarget = extractTypesOfKind(target, 524288 /* TypeFlags.Object */ | 2097152 /* TypeFlags.Intersection */ | 33554432 /* TypeFlags.Substitution */); if (objectOnlyTarget.flags & 1048576 /* TypeFlags.Union */) { var result_9 = typeRelatedToDiscriminatedType(source, objectOnlyTarget); if (result_9) { return result_9; } } } } return 0 /* Ternary.False */; function countMessageChainBreadth(info) { if (!info) return 0; return ts.reduceLeft(info, function (value, chain) { return value + 1 + countMessageChainBreadth(chain.next); }, 0); } function relateVariances(sourceTypeArguments, targetTypeArguments, variances, intersectionState) { if (result = typeArgumentsRelatedTo(sourceTypeArguments, targetTypeArguments, variances, reportErrors, intersectionState)) { return result; } if (ts.some(variances, function (v) { return !!(v & 24 /* VarianceFlags.AllowsStructuralFallback */); })) { // If some type parameter was `Unmeasurable` or `Unreliable`, and we couldn't pass by assuming it was identical, then we // have to allow a structural fallback check // We elide the variance-based error elaborations, since those might not be too helpful, since we'll potentially // be assuming identity of the type parameter. originalErrorInfo = undefined; resetErrorInfo(saveErrorInfo); return undefined; } var allowStructuralFallback = targetTypeArguments && hasCovariantVoidArgument(targetTypeArguments, variances); varianceCheckFailed = !allowStructuralFallback; // The type arguments did not relate appropriately, but it may be because we have no variance // information (in which case typeArgumentsRelatedTo defaulted to covariance for all type // arguments). It might also be the case that the target type has a 'void' type argument for // a covariant type parameter that is only used in return positions within the generic type // (in which case any type argument is permitted on the source side). In those cases we proceed // with a structural comparison. Otherwise, we know for certain the instantiations aren't // related and we can return here. if (variances !== ts.emptyArray && !allowStructuralFallback) { // In some cases generic types that are covariant in regular type checking mode become // invariant in --strictFunctionTypes mode because one or more type parameters are used in // both co- and contravariant positions. In order to make it easier to diagnose *why* such // types are invariant, if any of the type parameters are invariant we reset the reported // errors and instead force a structural comparison (which will include elaborations that // reveal the reason). // We can switch on `reportErrors` here, since varianceCheckFailed guarantees we return `False`, // we can return `False` early here to skip calculating the structural error message we don't need. if (varianceCheckFailed && !(reportErrors && ts.some(variances, function (v) { return (v & 7 /* VarianceFlags.VarianceMask */) === 0 /* VarianceFlags.Invariant */; }))) { return 0 /* Ternary.False */; } // We remember the original error information so we can restore it in case the structural // comparison unexpectedly succeeds. This can happen when the structural comparison result // is a Ternary.Maybe for example caused by the recursion depth limiter. originalErrorInfo = errorInfo; resetErrorInfo(saveErrorInfo); } } } function reportUnmeasurableMarkers(p) { if (outofbandVarianceMarkerHandler && (p === markerSuperType || p === markerSubType || p === markerOtherType)) { outofbandVarianceMarkerHandler(/*onlyUnreliable*/ false); } return p; } function reportUnreliableMarkers(p) { if (outofbandVarianceMarkerHandler && (p === markerSuperType || p === markerSubType || p === markerOtherType)) { outofbandVarianceMarkerHandler(/*onlyUnreliable*/ true); } return p; } // A type [P in S]: X is related to a type [Q in T]: Y if T is related to S and X' is // related to Y, where X' is an instantiation of X in which P is replaced with Q. Notice // that S and T are contra-variant whereas X and Y are co-variant. function mappedTypeRelatedTo(source, target, reportErrors) { var modifiersRelated = relation === comparableRelation || (relation === identityRelation ? getMappedTypeModifiers(source) === getMappedTypeModifiers(target) : getCombinedMappedTypeOptionality(source) <= getCombinedMappedTypeOptionality(target)); if (modifiersRelated) { var result_10; var targetConstraint = getConstraintTypeFromMappedType(target); var sourceConstraint = instantiateType(getConstraintTypeFromMappedType(source), makeFunctionTypeMapper(getCombinedMappedTypeOptionality(source) < 0 ? reportUnmeasurableMarkers : reportUnreliableMarkers)); if (result_10 = isRelatedTo(targetConstraint, sourceConstraint, 3 /* RecursionFlags.Both */, reportErrors)) { var mapper = createTypeMapper([getTypeParameterFromMappedType(source)], [getTypeParameterFromMappedType(target)]); if (instantiateType(getNameTypeFromMappedType(source), mapper) === instantiateType(getNameTypeFromMappedType(target), mapper)) { return result_10 & isRelatedTo(instantiateType(getTemplateTypeFromMappedType(source), mapper), getTemplateTypeFromMappedType(target), 3 /* RecursionFlags.Both */, reportErrors); } } } return 0 /* Ternary.False */; } function typeRelatedToDiscriminatedType(source, target) { // 1. Generate the combinations of discriminant properties & types 'source' can satisfy. // a. If the number of combinations is above a set limit, the comparison is too complex. // 2. Filter 'target' to the subset of types whose discriminants exist in the matrix. // a. If 'target' does not satisfy all discriminants in the matrix, 'source' is not related. // 3. For each type in the filtered 'target', determine if all non-discriminant properties of // 'target' are related to a property in 'source'. // // NOTE: See ~/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithDiscriminatedUnion.ts // for examples. var sourceProperties = getPropertiesOfType(source); var sourcePropertiesFiltered = findDiscriminantProperties(sourceProperties, target); if (!sourcePropertiesFiltered) return 0 /* Ternary.False */; // Though we could compute the number of combinations as we generate // the matrix, this would incur additional memory overhead due to // array allocations. To reduce this overhead, we first compute // the number of combinations to ensure we will not surpass our // fixed limit before incurring the cost of any allocations: var numCombinations = 1; for (var _i = 0, sourcePropertiesFiltered_1 = sourcePropertiesFiltered; _i < sourcePropertiesFiltered_1.length; _i++) { var sourceProperty = sourcePropertiesFiltered_1[_i]; numCombinations *= countTypes(getNonMissingTypeOfSymbol(sourceProperty)); if (numCombinations > 25) { // We've reached the complexity limit. ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.instant("checkTypes" /* tracing.Phase.CheckTypes */, "typeRelatedToDiscriminatedType_DepthLimit", { sourceId: source.id, targetId: target.id, numCombinations: numCombinations }); return 0 /* Ternary.False */; } } // Compute the set of types for each discriminant property. var sourceDiscriminantTypes = new Array(sourcePropertiesFiltered.length); var excludedProperties = new ts.Set(); for (var i = 0; i < sourcePropertiesFiltered.length; i++) { var sourceProperty = sourcePropertiesFiltered[i]; var sourcePropertyType = getNonMissingTypeOfSymbol(sourceProperty); sourceDiscriminantTypes[i] = sourcePropertyType.flags & 1048576 /* TypeFlags.Union */ ? sourcePropertyType.types : [sourcePropertyType]; excludedProperties.add(sourceProperty.escapedName); } // Match each combination of the cartesian product of discriminant properties to one or more // constituents of 'target'. If any combination does not have a match then 'source' is not relatable. var discriminantCombinations = ts.cartesianProduct(sourceDiscriminantTypes); var matchingTypes = []; var _loop_20 = function (combination) { var hasMatch = false; outer: for (var _c = 0, _d = target.types; _c < _d.length; _c++) { var type = _d[_c]; var _loop_21 = function (i) { var sourceProperty = sourcePropertiesFiltered[i]; var targetProperty = getPropertyOfType(type, sourceProperty.escapedName); if (!targetProperty) return "continue-outer"; if (sourceProperty === targetProperty) return "continue"; // We compare the source property to the target in the context of a single discriminant type. var related = propertyRelatedTo(source, target, sourceProperty, targetProperty, function (_) { return combination[i]; }, /*reportErrors*/ false, 0 /* IntersectionState.None */, /*skipOptional*/ strictNullChecks || relation === comparableRelation); // If the target property could not be found, or if the properties were not related, // then this constituent is not a match. if (!related) { return "continue-outer"; } }; for (var i = 0; i < sourcePropertiesFiltered.length; i++) { var state_8 = _loop_21(i); switch (state_8) { case "continue-outer": continue outer; } } ts.pushIfUnique(matchingTypes, type, ts.equateValues); hasMatch = true; } if (!hasMatch) { return { value: 0 /* Ternary.False */ }; } }; for (var _a = 0, discriminantCombinations_1 = discriminantCombinations; _a < discriminantCombinations_1.length; _a++) { var combination = discriminantCombinations_1[_a]; var state_7 = _loop_20(combination); if (typeof state_7 === "object") return state_7.value; } // Compare the remaining non-discriminant properties of each match. var result = -1 /* Ternary.True */; for (var _b = 0, matchingTypes_1 = matchingTypes; _b < matchingTypes_1.length; _b++) { var type = matchingTypes_1[_b]; result &= propertiesRelatedTo(source, type, /*reportErrors*/ false, excludedProperties, 0 /* IntersectionState.None */); if (result) { result &= signaturesRelatedTo(source, type, 0 /* SignatureKind.Call */, /*reportStructuralErrors*/ false); if (result) { result &= signaturesRelatedTo(source, type, 1 /* SignatureKind.Construct */, /*reportStructuralErrors*/ false); if (result && !(isTupleType(source) && isTupleType(type))) { // Comparing numeric index types when both `source` and `type` are tuples is unnecessary as the // element types should be sufficiently covered by `propertiesRelatedTo`. It also causes problems // with index type assignability as the types for the excluded discriminants are still included // in the index type. result &= indexSignaturesRelatedTo(source, type, /*sourceIsPrimitive*/ false, /*reportStructuralErrors*/ false, 0 /* IntersectionState.None */); } } } if (!result) { return result; } } return result; } function excludeProperties(properties, excludedProperties) { if (!excludedProperties || properties.length === 0) return properties; var result; for (var i = 0; i < properties.length; i++) { if (!excludedProperties.has(properties[i].escapedName)) { if (result) { result.push(properties[i]); } } else if (!result) { result = properties.slice(0, i); } } return result || properties; } function isPropertySymbolTypeRelated(sourceProp, targetProp, getTypeOfSourceProperty, reportErrors, intersectionState) { var targetIsOptional = strictNullChecks && !!(ts.getCheckFlags(targetProp) & 48 /* CheckFlags.Partial */); var effectiveTarget = addOptionality(getNonMissingTypeOfSymbol(targetProp), /*isProperty*/ false, targetIsOptional); var effectiveSource = getTypeOfSourceProperty(sourceProp); return isRelatedTo(effectiveSource, effectiveTarget, 3 /* RecursionFlags.Both */, reportErrors, /*headMessage*/ undefined, intersectionState); } function propertyRelatedTo(source, target, sourceProp, targetProp, getTypeOfSourceProperty, reportErrors, intersectionState, skipOptional) { var sourcePropFlags = ts.getDeclarationModifierFlagsFromSymbol(sourceProp); var targetPropFlags = ts.getDeclarationModifierFlagsFromSymbol(targetProp); if (sourcePropFlags & 8 /* ModifierFlags.Private */ || targetPropFlags & 8 /* ModifierFlags.Private */) { if (sourceProp.valueDeclaration !== targetProp.valueDeclaration) { if (reportErrors) { if (sourcePropFlags & 8 /* ModifierFlags.Private */ && targetPropFlags & 8 /* ModifierFlags.Private */) { reportError(ts.Diagnostics.Types_have_separate_declarations_of_a_private_property_0, symbolToString(targetProp)); } else { reportError(ts.Diagnostics.Property_0_is_private_in_type_1_but_not_in_type_2, symbolToString(targetProp), typeToString(sourcePropFlags & 8 /* ModifierFlags.Private */ ? source : target), typeToString(sourcePropFlags & 8 /* ModifierFlags.Private */ ? target : source)); } } return 0 /* Ternary.False */; } } else if (targetPropFlags & 16 /* ModifierFlags.Protected */) { if (!isValidOverrideOf(sourceProp, targetProp)) { if (reportErrors) { reportError(ts.Diagnostics.Property_0_is_protected_but_type_1_is_not_a_class_derived_from_2, symbolToString(targetProp), typeToString(getDeclaringClass(sourceProp) || source), typeToString(getDeclaringClass(targetProp) || target)); } return 0 /* Ternary.False */; } } else if (sourcePropFlags & 16 /* ModifierFlags.Protected */) { if (reportErrors) { reportError(ts.Diagnostics.Property_0_is_protected_in_type_1_but_public_in_type_2, symbolToString(targetProp), typeToString(source), typeToString(target)); } return 0 /* Ternary.False */; } // Ensure {readonly a: whatever} is not a subtype of {a: whatever}, // while {a: whatever} is a subtype of {readonly a: whatever}. // This ensures the subtype relationship is ordered, and preventing declaration order // from deciding which type "wins" in union subtype reduction. // They're still assignable to one another, since `readonly` doesn't affect assignability. // This is only applied during the strictSubtypeRelation -- currently used in subtype reduction if (relation === strictSubtypeRelation && isReadonlySymbol(sourceProp) && !isReadonlySymbol(targetProp)) { return 0 /* Ternary.False */; } // If the target comes from a partial union prop, allow `undefined` in the target type var related = isPropertySymbolTypeRelated(sourceProp, targetProp, getTypeOfSourceProperty, reportErrors, intersectionState); if (!related) { if (reportErrors) { reportIncompatibleError(ts.Diagnostics.Types_of_property_0_are_incompatible, symbolToString(targetProp)); } return 0 /* Ternary.False */; } // When checking for comparability, be more lenient with optional properties. if (!skipOptional && sourceProp.flags & 16777216 /* SymbolFlags.Optional */ && !(targetProp.flags & 16777216 /* SymbolFlags.Optional */)) { // TypeScript 1.0 spec (April 2014): 3.8.3 // S is a subtype of a type T, and T is a supertype of S if ... // S' and T are object types and, for each member M in T.. // M is a property and S' contains a property N where // if M is a required property, N is also a required property // (M - property in T) // (N - property in S) if (reportErrors) { reportError(ts.Diagnostics.Property_0_is_optional_in_type_1_but_required_in_type_2, symbolToString(targetProp), typeToString(source), typeToString(target)); } return 0 /* Ternary.False */; } return related; } function reportUnmatchedProperty(source, target, unmatchedProperty, requireOptionalProperties) { var shouldSkipElaboration = false; // give specific error in case where private names have the same description if (unmatchedProperty.valueDeclaration && ts.isNamedDeclaration(unmatchedProperty.valueDeclaration) && ts.isPrivateIdentifier(unmatchedProperty.valueDeclaration.name) && source.symbol && source.symbol.flags & 32 /* SymbolFlags.Class */) { var privateIdentifierDescription = unmatchedProperty.valueDeclaration.name.escapedText; var symbolTableKey = ts.getSymbolNameForPrivateIdentifier(source.symbol, privateIdentifierDescription); if (symbolTableKey && getPropertyOfType(source, symbolTableKey)) { var sourceName = ts.factory.getDeclarationName(source.symbol.valueDeclaration); var targetName = ts.factory.getDeclarationName(target.symbol.valueDeclaration); reportError(ts.Diagnostics.Property_0_in_type_1_refers_to_a_different_member_that_cannot_be_accessed_from_within_type_2, diagnosticName(privateIdentifierDescription), diagnosticName(sourceName.escapedText === "" ? anon : sourceName), diagnosticName(targetName.escapedText === "" ? anon : targetName)); return; } } var props = ts.arrayFrom(getUnmatchedProperties(source, target, requireOptionalProperties, /*matchDiscriminantProperties*/ false)); if (!headMessage || (headMessage.code !== ts.Diagnostics.Class_0_incorrectly_implements_interface_1.code && headMessage.code !== ts.Diagnostics.Class_0_incorrectly_implements_class_1_Did_you_mean_to_extend_1_and_inherit_its_members_as_a_subclass.code)) { shouldSkipElaboration = true; // Retain top-level error for interface implementing issues, otherwise omit it } if (props.length === 1) { var propName = symbolToString(unmatchedProperty); reportError.apply(void 0, __spreadArray([ts.Diagnostics.Property_0_is_missing_in_type_1_but_required_in_type_2, propName], getTypeNamesForErrorDisplay(source, target), false)); if (ts.length(unmatchedProperty.declarations)) { associateRelatedInfo(ts.createDiagnosticForNode(unmatchedProperty.declarations[0], ts.Diagnostics._0_is_declared_here, propName)); } if (shouldSkipElaboration && errorInfo) { overrideNextErrorInfo++; } } else if (tryElaborateArrayLikeErrors(source, target, /*reportErrors*/ false)) { if (props.length > 5) { // arbitrary cutoff for too-long list form reportError(ts.Diagnostics.Type_0_is_missing_the_following_properties_from_type_1_Colon_2_and_3_more, typeToString(source), typeToString(target), ts.map(props.slice(0, 4), function (p) { return symbolToString(p); }).join(", "), props.length - 4); } else { reportError(ts.Diagnostics.Type_0_is_missing_the_following_properties_from_type_1_Colon_2, typeToString(source), typeToString(target), ts.map(props, function (p) { return symbolToString(p); }).join(", ")); } if (shouldSkipElaboration && errorInfo) { overrideNextErrorInfo++; } } // No array like or unmatched property error - just issue top level error (errorInfo = undefined) } function propertiesRelatedTo(source, target, reportErrors, excludedProperties, intersectionState) { if (relation === identityRelation) { return propertiesIdenticalTo(source, target, excludedProperties); } var result = -1 /* Ternary.True */; if (isTupleType(target)) { if (isArrayOrTupleType(source)) { if (!target.target.readonly && (isReadonlyArrayType(source) || isTupleType(source) && source.target.readonly)) { return 0 /* Ternary.False */; } var sourceArity = getTypeReferenceArity(source); var targetArity = getTypeReferenceArity(target); var sourceRestFlag = isTupleType(source) ? source.target.combinedFlags & 4 /* ElementFlags.Rest */ : 4 /* ElementFlags.Rest */; var targetRestFlag = target.target.combinedFlags & 4 /* ElementFlags.Rest */; var sourceMinLength = isTupleType(source) ? source.target.minLength : 0; var targetMinLength = target.target.minLength; if (!sourceRestFlag && sourceArity < targetMinLength) { if (reportErrors) { reportError(ts.Diagnostics.Source_has_0_element_s_but_target_requires_1, sourceArity, targetMinLength); } return 0 /* Ternary.False */; } if (!targetRestFlag && targetArity < sourceMinLength) { if (reportErrors) { reportError(ts.Diagnostics.Source_has_0_element_s_but_target_allows_only_1, sourceMinLength, targetArity); } return 0 /* Ternary.False */; } if (!targetRestFlag && (sourceRestFlag || targetArity < sourceArity)) { if (reportErrors) { if (sourceMinLength < targetMinLength) { reportError(ts.Diagnostics.Target_requires_0_element_s_but_source_may_have_fewer, targetMinLength); } else { reportError(ts.Diagnostics.Target_allows_only_0_element_s_but_source_may_have_more, targetArity); } } return 0 /* Ternary.False */; } var sourceTypeArguments = getTypeArguments(source); var targetTypeArguments = getTypeArguments(target); var startCount = Math.min(isTupleType(source) ? getStartElementCount(source.target, 11 /* ElementFlags.NonRest */) : 0, getStartElementCount(target.target, 11 /* ElementFlags.NonRest */)); var endCount = Math.min(isTupleType(source) ? getEndElementCount(source.target, 11 /* ElementFlags.NonRest */) : 0, targetRestFlag ? getEndElementCount(target.target, 11 /* ElementFlags.NonRest */) : 0); var canExcludeDiscriminants = !!excludedProperties; for (var i = 0; i < targetArity; i++) { var sourceIndex = i < targetArity - endCount ? i : i + sourceArity - targetArity; var sourceFlags = isTupleType(source) && (i < startCount || i >= targetArity - endCount) ? source.target.elementFlags[sourceIndex] : 4 /* ElementFlags.Rest */; var targetFlags = target.target.elementFlags[i]; if (targetFlags & 8 /* ElementFlags.Variadic */ && !(sourceFlags & 8 /* ElementFlags.Variadic */)) { if (reportErrors) { reportError(ts.Diagnostics.Source_provides_no_match_for_variadic_element_at_position_0_in_target, i); } return 0 /* Ternary.False */; } if (sourceFlags & 8 /* ElementFlags.Variadic */ && !(targetFlags & 12 /* ElementFlags.Variable */)) { if (reportErrors) { reportError(ts.Diagnostics.Variadic_element_at_position_0_in_source_does_not_match_element_at_position_1_in_target, sourceIndex, i); } return 0 /* Ternary.False */; } if (targetFlags & 1 /* ElementFlags.Required */ && !(sourceFlags & 1 /* ElementFlags.Required */)) { if (reportErrors) { reportError(ts.Diagnostics.Source_provides_no_match_for_required_element_at_position_0_in_target, i); } return 0 /* Ternary.False */; } // We can only exclude discriminant properties if we have not yet encountered a variable-length element. if (canExcludeDiscriminants) { if (sourceFlags & 12 /* ElementFlags.Variable */ || targetFlags & 12 /* ElementFlags.Variable */) { canExcludeDiscriminants = false; } if (canExcludeDiscriminants && (excludedProperties === null || excludedProperties === void 0 ? void 0 : excludedProperties.has(("" + i)))) { continue; } } var sourceType = !isTupleType(source) ? sourceTypeArguments[0] : i < startCount || i >= targetArity - endCount ? removeMissingType(sourceTypeArguments[sourceIndex], !!(sourceFlags & targetFlags & 2 /* ElementFlags.Optional */)) : getElementTypeOfSliceOfTupleType(source, startCount, endCount) || neverType; var targetType = targetTypeArguments[i]; var targetCheckType = sourceFlags & 8 /* ElementFlags.Variadic */ && targetFlags & 4 /* ElementFlags.Rest */ ? createArrayType(targetType) : removeMissingType(targetType, !!(targetFlags & 2 /* ElementFlags.Optional */)); var related = isRelatedTo(sourceType, targetCheckType, 3 /* RecursionFlags.Both */, reportErrors, /*headMessage*/ undefined, intersectionState); if (!related) { if (reportErrors && (targetArity > 1 || sourceArity > 1)) { if (i < startCount || i >= targetArity - endCount || sourceArity - startCount - endCount === 1) { reportIncompatibleError(ts.Diagnostics.Type_at_position_0_in_source_is_not_compatible_with_type_at_position_1_in_target, sourceIndex, i); } else { reportIncompatibleError(ts.Diagnostics.Type_at_positions_0_through_1_in_source_is_not_compatible_with_type_at_position_2_in_target, startCount, sourceArity - endCount - 1, i); } } return 0 /* Ternary.False */; } result &= related; } return result; } if (target.target.combinedFlags & 12 /* ElementFlags.Variable */) { return 0 /* Ternary.False */; } } var requireOptionalProperties = (relation === subtypeRelation || relation === strictSubtypeRelation) && !isObjectLiteralType(source) && !isEmptyArrayLiteralType(source) && !isTupleType(source); var unmatchedProperty = getUnmatchedProperty(source, target, requireOptionalProperties, /*matchDiscriminantProperties*/ false); if (unmatchedProperty) { if (reportErrors && shouldReportUnmatchedPropertyError(source, target)) { reportUnmatchedProperty(source, target, unmatchedProperty, requireOptionalProperties); } return 0 /* Ternary.False */; } if (isObjectLiteralType(target)) { for (var _i = 0, _a = excludeProperties(getPropertiesOfType(source), excludedProperties); _i < _a.length; _i++) { var sourceProp = _a[_i]; if (!getPropertyOfObjectType(target, sourceProp.escapedName)) { var sourceType = getTypeOfSymbol(sourceProp); if (!(sourceType.flags & 32768 /* TypeFlags.Undefined */)) { if (reportErrors) { reportError(ts.Diagnostics.Property_0_does_not_exist_on_type_1, symbolToString(sourceProp), typeToString(target)); } return 0 /* Ternary.False */; } } } } // We only call this for union target types when we're attempting to do excess property checking - in those cases, we want to get _all possible props_ // from the target union, across all members var properties = getPropertiesOfType(target); var numericNamesOnly = isTupleType(source) && isTupleType(target); for (var _b = 0, _c = excludeProperties(properties, excludedProperties); _b < _c.length; _b++) { var targetProp = _c[_b]; var name = targetProp.escapedName; if (!(targetProp.flags & 4194304 /* SymbolFlags.Prototype */) && (!numericNamesOnly || ts.isNumericLiteralName(name) || name === "length")) { var sourceProp = getPropertyOfType(source, name); if (sourceProp && sourceProp !== targetProp) { var related = propertyRelatedTo(source, target, sourceProp, targetProp, getNonMissingTypeOfSymbol, reportErrors, intersectionState, relation === comparableRelation); if (!related) { return 0 /* Ternary.False */; } result &= related; } } } return result; } function propertiesIdenticalTo(source, target, excludedProperties) { if (!(source.flags & 524288 /* TypeFlags.Object */ && target.flags & 524288 /* TypeFlags.Object */)) { return 0 /* Ternary.False */; } var sourceProperties = excludeProperties(getPropertiesOfObjectType(source), excludedProperties); var targetProperties = excludeProperties(getPropertiesOfObjectType(target), excludedProperties); if (sourceProperties.length !== targetProperties.length) { return 0 /* Ternary.False */; } var result = -1 /* Ternary.True */; for (var _i = 0, sourceProperties_1 = sourceProperties; _i < sourceProperties_1.length; _i++) { var sourceProp = sourceProperties_1[_i]; var targetProp = getPropertyOfObjectType(target, sourceProp.escapedName); if (!targetProp) { return 0 /* Ternary.False */; } var related = compareProperties(sourceProp, targetProp, isRelatedTo); if (!related) { return 0 /* Ternary.False */; } result &= related; } return result; } function signaturesRelatedTo(source, target, kind, reportErrors) { var _a, _b; if (relation === identityRelation) { return signaturesIdenticalTo(source, target, kind); } if (target === anyFunctionType || source === anyFunctionType) { return -1 /* Ternary.True */; } var sourceIsJSConstructor = source.symbol && isJSConstructor(source.symbol.valueDeclaration); var targetIsJSConstructor = target.symbol && isJSConstructor(target.symbol.valueDeclaration); var sourceSignatures = getSignaturesOfType(source, (sourceIsJSConstructor && kind === 1 /* SignatureKind.Construct */) ? 0 /* SignatureKind.Call */ : kind); var targetSignatures = getSignaturesOfType(target, (targetIsJSConstructor && kind === 1 /* SignatureKind.Construct */) ? 0 /* SignatureKind.Call */ : kind); if (kind === 1 /* SignatureKind.Construct */ && sourceSignatures.length && targetSignatures.length) { var sourceIsAbstract = !!(sourceSignatures[0].flags & 4 /* SignatureFlags.Abstract */); var targetIsAbstract = !!(targetSignatures[0].flags & 4 /* SignatureFlags.Abstract */); if (sourceIsAbstract && !targetIsAbstract) { // An abstract constructor type is not assignable to a non-abstract constructor type // as it would otherwise be possible to new an abstract class. Note that the assignability // check we perform for an extends clause excludes construct signatures from the target, // so this check never proceeds. if (reportErrors) { reportError(ts.Diagnostics.Cannot_assign_an_abstract_constructor_type_to_a_non_abstract_constructor_type); } return 0 /* Ternary.False */; } if (!constructorVisibilitiesAreCompatible(sourceSignatures[0], targetSignatures[0], reportErrors)) { return 0 /* Ternary.False */; } } var result = -1 /* Ternary.True */; var incompatibleReporter = kind === 1 /* SignatureKind.Construct */ ? reportIncompatibleConstructSignatureReturn : reportIncompatibleCallSignatureReturn; var sourceObjectFlags = ts.getObjectFlags(source); var targetObjectFlags = ts.getObjectFlags(target); if (sourceObjectFlags & 64 /* ObjectFlags.Instantiated */ && targetObjectFlags & 64 /* ObjectFlags.Instantiated */ && source.symbol === target.symbol || sourceObjectFlags & 4 /* ObjectFlags.Reference */ && targetObjectFlags & 4 /* ObjectFlags.Reference */ && source.target === target.target) { // We have instantiations of the same anonymous type (which typically will be the type of a // method). Simply do a pairwise comparison of the signatures in the two signature lists instead // of the much more expensive N * M comparison matrix we explore below. We erase type parameters // as they are known to always be the same. for (var i = 0; i < targetSignatures.length; i++) { var related = signatureRelatedTo(sourceSignatures[i], targetSignatures[i], /*erase*/ true, reportErrors, incompatibleReporter(sourceSignatures[i], targetSignatures[i])); if (!related) { return 0 /* Ternary.False */; } result &= related; } } else if (sourceSignatures.length === 1 && targetSignatures.length === 1) { // For simple functions (functions with a single signature) we only erase type parameters for // the comparable relation. Otherwise, if the source signature is generic, we instantiate it // in the context of the target signature before checking the relationship. Ideally we'd do // this regardless of the number of signatures, but the potential costs are prohibitive due // to the quadratic nature of the logic below. var eraseGenerics = relation === comparableRelation || !!compilerOptions.noStrictGenericChecks; var sourceSignature = ts.first(sourceSignatures); var targetSignature = ts.first(targetSignatures); result = signatureRelatedTo(sourceSignature, targetSignature, eraseGenerics, reportErrors, incompatibleReporter(sourceSignature, targetSignature)); if (!result && reportErrors && kind === 1 /* SignatureKind.Construct */ && (sourceObjectFlags & targetObjectFlags) && (((_a = targetSignature.declaration) === null || _a === void 0 ? void 0 : _a.kind) === 171 /* SyntaxKind.Constructor */ || ((_b = sourceSignature.declaration) === null || _b === void 0 ? void 0 : _b.kind) === 171 /* SyntaxKind.Constructor */)) { var constructSignatureToString = function (signature) { return signatureToString(signature, /*enclosingDeclaration*/ undefined, 262144 /* TypeFormatFlags.WriteArrowStyleSignature */, kind); }; reportError(ts.Diagnostics.Type_0_is_not_assignable_to_type_1, constructSignatureToString(sourceSignature), constructSignatureToString(targetSignature)); reportError(ts.Diagnostics.Types_of_construct_signatures_are_incompatible); return result; } } else { outer: for (var _i = 0, targetSignatures_1 = targetSignatures; _i < targetSignatures_1.length; _i++) { var t = targetSignatures_1[_i]; var saveErrorInfo = captureErrorCalculationState(); // Only elaborate errors from the first failure var shouldElaborateErrors = reportErrors; for (var _c = 0, sourceSignatures_1 = sourceSignatures; _c < sourceSignatures_1.length; _c++) { var s = sourceSignatures_1[_c]; var related = signatureRelatedTo(s, t, /*erase*/ true, shouldElaborateErrors, incompatibleReporter(s, t)); if (related) { result &= related; resetErrorInfo(saveErrorInfo); continue outer; } shouldElaborateErrors = false; } if (shouldElaborateErrors) { reportError(ts.Diagnostics.Type_0_provides_no_match_for_the_signature_1, typeToString(source), signatureToString(t, /*enclosingDeclaration*/ undefined, /*flags*/ undefined, kind)); } return 0 /* Ternary.False */; } } return result; } function shouldReportUnmatchedPropertyError(source, target) { var typeCallSignatures = getSignaturesOfStructuredType(source, 0 /* SignatureKind.Call */); var typeConstructSignatures = getSignaturesOfStructuredType(source, 1 /* SignatureKind.Construct */); var typeProperties = getPropertiesOfObjectType(source); if ((typeCallSignatures.length || typeConstructSignatures.length) && !typeProperties.length) { if ((getSignaturesOfType(target, 0 /* SignatureKind.Call */).length && typeCallSignatures.length) || (getSignaturesOfType(target, 1 /* SignatureKind.Construct */).length && typeConstructSignatures.length)) { return true; // target has similar signature kinds to source, still focus on the unmatched property } return false; } return true; } function reportIncompatibleCallSignatureReturn(siga, sigb) { if (siga.parameters.length === 0 && sigb.parameters.length === 0) { return function (source, target) { return reportIncompatibleError(ts.Diagnostics.Call_signatures_with_no_arguments_have_incompatible_return_types_0_and_1, typeToString(source), typeToString(target)); }; } return function (source, target) { return reportIncompatibleError(ts.Diagnostics.Call_signature_return_types_0_and_1_are_incompatible, typeToString(source), typeToString(target)); }; } function reportIncompatibleConstructSignatureReturn(siga, sigb) { if (siga.parameters.length === 0 && sigb.parameters.length === 0) { return function (source, target) { return reportIncompatibleError(ts.Diagnostics.Construct_signatures_with_no_arguments_have_incompatible_return_types_0_and_1, typeToString(source), typeToString(target)); }; } return function (source, target) { return reportIncompatibleError(ts.Diagnostics.Construct_signature_return_types_0_and_1_are_incompatible, typeToString(source), typeToString(target)); }; } /** * See signatureAssignableTo, compareSignaturesIdentical */ function signatureRelatedTo(source, target, erase, reportErrors, incompatibleReporter) { return compareSignaturesRelated(erase ? getErasedSignature(source) : source, erase ? getErasedSignature(target) : target, relation === strictSubtypeRelation ? 8 /* SignatureCheckMode.StrictArity */ : 0, reportErrors, reportError, incompatibleReporter, isRelatedToWorker, makeFunctionTypeMapper(reportUnreliableMarkers)); } function signaturesIdenticalTo(source, target, kind) { var sourceSignatures = getSignaturesOfType(source, kind); var targetSignatures = getSignaturesOfType(target, kind); if (sourceSignatures.length !== targetSignatures.length) { return 0 /* Ternary.False */; } var result = -1 /* Ternary.True */; for (var i = 0; i < sourceSignatures.length; i++) { var related = compareSignaturesIdentical(sourceSignatures[i], targetSignatures[i], /*partialMatch*/ false, /*ignoreThisTypes*/ false, /*ignoreReturnTypes*/ false, isRelatedTo); if (!related) { return 0 /* Ternary.False */; } result &= related; } return result; } function membersRelatedToIndexInfo(source, targetInfo, reportErrors) { var result = -1 /* Ternary.True */; var keyType = targetInfo.keyType; var props = source.flags & 2097152 /* TypeFlags.Intersection */ ? getPropertiesOfUnionOrIntersectionType(source) : getPropertiesOfObjectType(source); for (var _i = 0, props_2 = props; _i < props_2.length; _i++) { var prop = props_2[_i]; // Skip over ignored JSX and symbol-named members if (isIgnoredJsxProperty(source, prop)) { continue; } if (isApplicableIndexType(getLiteralTypeFromProperty(prop, 8576 /* TypeFlags.StringOrNumberLiteralOrUnique */), keyType)) { var propType = getNonMissingTypeOfSymbol(prop); var type = exactOptionalPropertyTypes || propType.flags & 32768 /* TypeFlags.Undefined */ || keyType === numberType || !(prop.flags & 16777216 /* SymbolFlags.Optional */) ? propType : getTypeWithFacts(propType, 524288 /* TypeFacts.NEUndefined */); var related = isRelatedTo(type, targetInfo.type, 3 /* RecursionFlags.Both */, reportErrors); if (!related) { if (reportErrors) { reportError(ts.Diagnostics.Property_0_is_incompatible_with_index_signature, symbolToString(prop)); } return 0 /* Ternary.False */; } result &= related; } } for (var _a = 0, _b = getIndexInfosOfType(source); _a < _b.length; _a++) { var info = _b[_a]; if (isApplicableIndexType(info.keyType, keyType)) { var related = indexInfoRelatedTo(info, targetInfo, reportErrors); if (!related) { return 0 /* Ternary.False */; } result &= related; } } return result; } function indexInfoRelatedTo(sourceInfo, targetInfo, reportErrors) { var related = isRelatedTo(sourceInfo.type, targetInfo.type, 3 /* RecursionFlags.Both */, reportErrors); if (!related && reportErrors) { if (sourceInfo.keyType === targetInfo.keyType) { reportError(ts.Diagnostics._0_index_signatures_are_incompatible, typeToString(sourceInfo.keyType)); } else { reportError(ts.Diagnostics._0_and_1_index_signatures_are_incompatible, typeToString(sourceInfo.keyType), typeToString(targetInfo.keyType)); } } return related; } function indexSignaturesRelatedTo(source, target, sourceIsPrimitive, reportErrors, intersectionState) { if (relation === identityRelation) { return indexSignaturesIdenticalTo(source, target); } var indexInfos = getIndexInfosOfType(target); var targetHasStringIndex = ts.some(indexInfos, function (info) { return info.keyType === stringType; }); var result = -1 /* Ternary.True */; for (var _i = 0, indexInfos_5 = indexInfos; _i < indexInfos_5.length; _i++) { var targetInfo = indexInfos_5[_i]; var related = !sourceIsPrimitive && targetHasStringIndex && targetInfo.type.flags & 1 /* TypeFlags.Any */ ? -1 /* Ternary.True */ : isGenericMappedType(source) && targetHasStringIndex ? isRelatedTo(getTemplateTypeFromMappedType(source), targetInfo.type, 3 /* RecursionFlags.Both */, reportErrors) : typeRelatedToIndexInfo(source, targetInfo, reportErrors, intersectionState); if (!related) { return 0 /* Ternary.False */; } result &= related; } return result; } function typeRelatedToIndexInfo(source, targetInfo, reportErrors, intersectionState) { var sourceInfo = getApplicableIndexInfo(source, targetInfo.keyType); if (sourceInfo) { return indexInfoRelatedTo(sourceInfo, targetInfo, reportErrors); } if (!(intersectionState & 1 /* IntersectionState.Source */) && isObjectTypeWithInferableIndex(source)) { // Intersection constituents are never considered to have an inferred index signature return membersRelatedToIndexInfo(source, targetInfo, reportErrors); } if (reportErrors) { reportError(ts.Diagnostics.Index_signature_for_type_0_is_missing_in_type_1, typeToString(targetInfo.keyType), typeToString(source)); } return 0 /* Ternary.False */; } function indexSignaturesIdenticalTo(source, target) { var sourceInfos = getIndexInfosOfType(source); var targetInfos = getIndexInfosOfType(target); if (sourceInfos.length !== targetInfos.length) { return 0 /* Ternary.False */; } for (var _i = 0, targetInfos_1 = targetInfos; _i < targetInfos_1.length; _i++) { var targetInfo = targetInfos_1[_i]; var sourceInfo = getIndexInfoOfType(source, targetInfo.keyType); if (!(sourceInfo && isRelatedTo(sourceInfo.type, targetInfo.type, 3 /* RecursionFlags.Both */) && sourceInfo.isReadonly === targetInfo.isReadonly)) { return 0 /* Ternary.False */; } } return -1 /* Ternary.True */; } function constructorVisibilitiesAreCompatible(sourceSignature, targetSignature, reportErrors) { if (!sourceSignature.declaration || !targetSignature.declaration) { return true; } var sourceAccessibility = ts.getSelectedEffectiveModifierFlags(sourceSignature.declaration, 24 /* ModifierFlags.NonPublicAccessibilityModifier */); var targetAccessibility = ts.getSelectedEffectiveModifierFlags(targetSignature.declaration, 24 /* ModifierFlags.NonPublicAccessibilityModifier */); // A public, protected and private signature is assignable to a private signature. if (targetAccessibility === 8 /* ModifierFlags.Private */) { return true; } // A public and protected signature is assignable to a protected signature. if (targetAccessibility === 16 /* ModifierFlags.Protected */ && sourceAccessibility !== 8 /* ModifierFlags.Private */) { return true; } // Only a public signature is assignable to public signature. if (targetAccessibility !== 16 /* ModifierFlags.Protected */ && !sourceAccessibility) { return true; } if (reportErrors) { reportError(ts.Diagnostics.Cannot_assign_a_0_constructor_type_to_a_1_constructor_type, visibilityToString(sourceAccessibility), visibilityToString(targetAccessibility)); } return false; } } function typeCouldHaveTopLevelSingletonTypes(type) { // Okay, yes, 'boolean' is a union of 'true | false', but that's not useful // in error reporting scenarios. If you need to use this function but that detail matters, // feel free to add a flag. if (type.flags & 16 /* TypeFlags.Boolean */) { return false; } if (type.flags & 3145728 /* TypeFlags.UnionOrIntersection */) { return !!ts.forEach(type.types, typeCouldHaveTopLevelSingletonTypes); } if (type.flags & 465829888 /* TypeFlags.Instantiable */) { var constraint = getConstraintOfType(type); if (constraint && constraint !== type) { return typeCouldHaveTopLevelSingletonTypes(constraint); } } return isUnitType(type) || !!(type.flags & 134217728 /* TypeFlags.TemplateLiteral */); } function getExactOptionalUnassignableProperties(source, target) { if (isTupleType(source) && isTupleType(target)) return ts.emptyArray; return getPropertiesOfType(target) .filter(function (targetProp) { return isExactOptionalPropertyMismatch(getTypeOfPropertyOfType(source, targetProp.escapedName), getTypeOfSymbol(targetProp)); }); } function isExactOptionalPropertyMismatch(source, target) { return !!source && !!target && maybeTypeOfKind(source, 32768 /* TypeFlags.Undefined */) && !!containsMissingType(target); } function getExactOptionalProperties(type) { return getPropertiesOfType(type).filter(function (targetProp) { return containsMissingType(getTypeOfSymbol(targetProp)); }); } function getBestMatchingType(source, target, isRelatedTo) { if (isRelatedTo === void 0) { isRelatedTo = compareTypesAssignable; } return findMatchingDiscriminantType(source, target, isRelatedTo, /*skipPartial*/ true) || findMatchingTypeReferenceOrTypeAliasReference(source, target) || findBestTypeForObjectLiteral(source, target) || findBestTypeForInvokable(source, target) || findMostOverlappyType(source, target); } function discriminateTypeByDiscriminableItems(target, discriminators, related, defaultValue, skipPartial) { // undefined=unknown, true=discriminated, false=not discriminated // The state of each type progresses from left to right. Discriminated types stop at 'true'. var discriminable = target.types.map(function (_) { return undefined; }); for (var _i = 0, discriminators_1 = discriminators; _i < discriminators_1.length; _i++) { var _a = discriminators_1[_i], getDiscriminatingType = _a[0], propertyName = _a[1]; var targetProp = getUnionOrIntersectionProperty(target, propertyName); if (skipPartial && targetProp && ts.getCheckFlags(targetProp) & 16 /* CheckFlags.ReadPartial */) { continue; } var i = 0; for (var _b = 0, _c = target.types; _b < _c.length; _b++) { var type = _c[_b]; var targetType = getTypeOfPropertyOfType(type, propertyName); if (targetType && related(getDiscriminatingType(), targetType)) { discriminable[i] = discriminable[i] === undefined ? true : discriminable[i]; } else { discriminable[i] = false; } i++; } } var match = discriminable.indexOf(/*searchElement*/ true); if (match === -1) { return defaultValue; } // make sure exactly 1 matches before returning it var nextMatch = discriminable.indexOf(/*searchElement*/ true, match + 1); while (nextMatch !== -1) { if (!isTypeIdenticalTo(target.types[match], target.types[nextMatch])) { return defaultValue; } nextMatch = discriminable.indexOf(/*searchElement*/ true, nextMatch + 1); } return target.types[match]; } /** * A type is 'weak' if it is an object type with at least one optional property * and no required properties, call/construct signatures or index signatures */ function isWeakType(type) { if (type.flags & 524288 /* TypeFlags.Object */) { var resolved = resolveStructuredTypeMembers(type); return resolved.callSignatures.length === 0 && resolved.constructSignatures.length === 0 && resolved.indexInfos.length === 0 && resolved.properties.length > 0 && ts.every(resolved.properties, function (p) { return !!(p.flags & 16777216 /* SymbolFlags.Optional */); }); } if (type.flags & 2097152 /* TypeFlags.Intersection */) { return ts.every(type.types, isWeakType); } return false; } function hasCommonProperties(source, target, isComparingJsxAttributes) { for (var _i = 0, _a = getPropertiesOfType(source); _i < _a.length; _i++) { var prop = _a[_i]; if (isKnownProperty(target, prop.escapedName, isComparingJsxAttributes)) { return true; } } return false; } function getVariances(type) { // Arrays and tuples are known to be covariant, no need to spend time computing this. return type === globalArrayType || type === globalReadonlyArrayType || type.objectFlags & 8 /* ObjectFlags.Tuple */ ? arrayVariances : getVariancesWorker(type.symbol, type.typeParameters); } function getAliasVariances(symbol) { return getVariancesWorker(symbol, getSymbolLinks(symbol).typeParameters); } // Return an array containing the variance of each type parameter. The variance is effectively // a digest of the type comparisons that occur for each type argument when instantiations of the // generic type are structurally compared. We infer the variance information by comparing // instantiations of the generic type for type arguments with known relations. The function // returns the emptyArray singleton when invoked recursively for the given generic type. function getVariancesWorker(symbol, typeParameters) { if (typeParameters === void 0) { typeParameters = ts.emptyArray; } var links = getSymbolLinks(symbol); if (!links.variances) { ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("checkTypes" /* tracing.Phase.CheckTypes */, "getVariancesWorker", { arity: typeParameters.length, id: getTypeId(getDeclaredTypeOfSymbol(symbol)) }); links.variances = ts.emptyArray; var variances = []; var _loop_22 = function (tp) { var modifiers = getVarianceModifiers(tp); var variance = modifiers & 65536 /* ModifierFlags.Out */ ? modifiers & 32768 /* ModifierFlags.In */ ? 0 /* VarianceFlags.Invariant */ : 1 /* VarianceFlags.Covariant */ : modifiers & 32768 /* ModifierFlags.In */ ? 2 /* VarianceFlags.Contravariant */ : undefined; if (variance === undefined) { var unmeasurable_1 = false; var unreliable_1 = false; var oldHandler = outofbandVarianceMarkerHandler; outofbandVarianceMarkerHandler = function (onlyUnreliable) { return onlyUnreliable ? unreliable_1 = true : unmeasurable_1 = true; }; // We first compare instantiations where the type parameter is replaced with // marker types that have a known subtype relationship. From this we can infer // invariance, covariance, contravariance or bivariance. var typeWithSuper = createMarkerType(symbol, tp, markerSuperType); var typeWithSub = createMarkerType(symbol, tp, markerSubType); variance = (isTypeAssignableTo(typeWithSub, typeWithSuper) ? 1 /* VarianceFlags.Covariant */ : 0) | (isTypeAssignableTo(typeWithSuper, typeWithSub) ? 2 /* VarianceFlags.Contravariant */ : 0); // If the instantiations appear to be related bivariantly it may be because the // type parameter is independent (i.e. it isn't witnessed anywhere in the generic // type). To determine this we compare instantiations where the type parameter is // replaced with marker types that are known to be unrelated. if (variance === 3 /* VarianceFlags.Bivariant */ && isTypeAssignableTo(createMarkerType(symbol, tp, markerOtherType), typeWithSuper)) { variance = 4 /* VarianceFlags.Independent */; } outofbandVarianceMarkerHandler = oldHandler; if (unmeasurable_1 || unreliable_1) { if (unmeasurable_1) { variance |= 8 /* VarianceFlags.Unmeasurable */; } if (unreliable_1) { variance |= 16 /* VarianceFlags.Unreliable */; } } } variances.push(variance); }; for (var _i = 0, typeParameters_1 = typeParameters; _i < typeParameters_1.length; _i++) { var tp = typeParameters_1[_i]; _loop_22(tp); } links.variances = variances; ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); } return links.variances; } function createMarkerType(symbol, source, target) { var mapper = makeUnaryTypeMapper(source, target); var type = getDeclaredTypeOfSymbol(symbol); if (isErrorType(type)) { return type; } var result = symbol.flags & 524288 /* SymbolFlags.TypeAlias */ ? getTypeAliasInstantiation(symbol, instantiateTypes(getSymbolLinks(symbol).typeParameters, mapper)) : createTypeReference(type, instantiateTypes(type.typeParameters, mapper)); markerTypes.add(getTypeId(result)); return result; } function isMarkerType(type) { return markerTypes.has(getTypeId(type)); } function getVarianceModifiers(tp) { var _a, _b; return (ts.some((_a = tp.symbol) === null || _a === void 0 ? void 0 : _a.declarations, function (d) { return ts.hasSyntacticModifier(d, 32768 /* ModifierFlags.In */); }) ? 32768 /* ModifierFlags.In */ : 0) | (ts.some((_b = tp.symbol) === null || _b === void 0 ? void 0 : _b.declarations, function (d) { return ts.hasSyntacticModifier(d, 65536 /* ModifierFlags.Out */); }) ? 65536 /* ModifierFlags.Out */ : 0); } // Return true if the given type reference has a 'void' type argument for a covariant type parameter. // See comment at call in recursiveTypeRelatedTo for when this case matters. function hasCovariantVoidArgument(typeArguments, variances) { for (var i = 0; i < variances.length; i++) { if ((variances[i] & 7 /* VarianceFlags.VarianceMask */) === 1 /* VarianceFlags.Covariant */ && typeArguments[i].flags & 16384 /* TypeFlags.Void */) { return true; } } return false; } function isUnconstrainedTypeParameter(type) { return type.flags & 262144 /* TypeFlags.TypeParameter */ && !getConstraintOfTypeParameter(type); } function isNonDeferredTypeReference(type) { return !!(ts.getObjectFlags(type) & 4 /* ObjectFlags.Reference */) && !type.node; } function isTypeReferenceWithGenericArguments(type) { return isNonDeferredTypeReference(type) && ts.some(getTypeArguments(type), function (t) { return !!(t.flags & 262144 /* TypeFlags.TypeParameter */) || isTypeReferenceWithGenericArguments(t); }); } function getGenericTypeReferenceRelationKey(source, target, postFix, ignoreConstraints) { var typeParameters = []; var constraintMarker = ""; var sourceId = getTypeReferenceId(source, 0); var targetId = getTypeReferenceId(target, 0); return "".concat(constraintMarker).concat(sourceId, ",").concat(targetId).concat(postFix); // getTypeReferenceId(A) returns "111=0-12=1" // where A.id=111 and number.id=12 function getTypeReferenceId(type, depth) { if (depth === void 0) { depth = 0; } var result = "" + type.target.id; for (var _i = 0, _a = getTypeArguments(type); _i < _a.length; _i++) { var t = _a[_i]; if (t.flags & 262144 /* TypeFlags.TypeParameter */) { if (ignoreConstraints || isUnconstrainedTypeParameter(t)) { var index = typeParameters.indexOf(t); if (index < 0) { index = typeParameters.length; typeParameters.push(t); } result += "=" + index; continue; } // We mark type references that reference constrained type parameters such that we know to obtain // and look for a "broadest equivalent key" in the cache. constraintMarker = "*"; } else if (depth < 4 && isTypeReferenceWithGenericArguments(t)) { result += "<" + getTypeReferenceId(t, depth + 1) + ">"; continue; } result += "-" + t.id; } return result; } } /** * To improve caching, the relation key for two generic types uses the target's id plus ids of the type parameters. * For other cases, the types ids are used. */ function getRelationKey(source, target, intersectionState, relation, ignoreConstraints) { if (relation === identityRelation && source.id > target.id) { var temp = source; source = target; target = temp; } var postFix = intersectionState ? ":" + intersectionState : ""; return isTypeReferenceWithGenericArguments(source) && isTypeReferenceWithGenericArguments(target) ? getGenericTypeReferenceRelationKey(source, target, postFix, ignoreConstraints) : "".concat(source.id, ",").concat(target.id).concat(postFix); } // Invoke the callback for each underlying property symbol of the given symbol and return the first // value that isn't undefined. function forEachProperty(prop, callback) { if (ts.getCheckFlags(prop) & 6 /* CheckFlags.Synthetic */) { for (var _i = 0, _a = prop.containingType.types; _i < _a.length; _i++) { var t = _a[_i]; var p = getPropertyOfType(t, prop.escapedName); var result = p && forEachProperty(p, callback); if (result) { return result; } } return undefined; } return callback(prop); } // Return the declaring class type of a property or undefined if property not declared in class function getDeclaringClass(prop) { return prop.parent && prop.parent.flags & 32 /* SymbolFlags.Class */ ? getDeclaredTypeOfSymbol(getParentOfSymbol(prop)) : undefined; } // Return the inherited type of the given property or undefined if property doesn't exist in a base class. function getTypeOfPropertyInBaseClass(property) { var classType = getDeclaringClass(property); var baseClassType = classType && getBaseTypes(classType)[0]; return baseClassType && getTypeOfPropertyOfType(baseClassType, property.escapedName); } // Return true if some underlying source property is declared in a class that derives // from the given base class. function isPropertyInClassDerivedFrom(prop, baseClass) { return forEachProperty(prop, function (sp) { var sourceClass = getDeclaringClass(sp); return sourceClass ? hasBaseType(sourceClass, baseClass) : false; }); } // Return true if source property is a valid override of protected parts of target property. function isValidOverrideOf(sourceProp, targetProp) { return !forEachProperty(targetProp, function (tp) { return ts.getDeclarationModifierFlagsFromSymbol(tp) & 16 /* ModifierFlags.Protected */ ? !isPropertyInClassDerivedFrom(sourceProp, getDeclaringClass(tp)) : false; }); } // Return true if the given class derives from each of the declaring classes of the protected // constituents of the given property. function isClassDerivedFromDeclaringClasses(checkClass, prop, writing) { return forEachProperty(prop, function (p) { return ts.getDeclarationModifierFlagsFromSymbol(p, writing) & 16 /* ModifierFlags.Protected */ ? !hasBaseType(checkClass, getDeclaringClass(p)) : false; }) ? undefined : checkClass; } // Return true if the given type is deeply nested. We consider this to be the case when structural type comparisons // for maxDepth or more occurrences or instantiations of the type have been recorded on the given stack. It is possible, // though highly unlikely, for this test to be true in a situation where a chain of instantiations is not infinitely // expanding. Effectively, we will generate a false positive when two types are structurally equal to at least maxDepth // levels, but unequal at some level beyond that. // In addition, this will also detect when an indexed access has been chained off of maxDepth more times (which is // essentially the dual of the structural comparison), and likewise mark the type as deeply nested, potentially adding // false positives for finite but deeply expanding indexed accesses (eg, for `Q[P1][P2][P3][P4][P5]`). // It also detects when a recursive type reference has expanded maxDepth or more times, e.g. if the true branch of // `type A = null extends T ? [A>] : [T]` // has expanded into `[A>>>>>]`. In such cases we need // to terminate the expansion, and we do so here. function isDeeplyNestedType(type, stack, depth, maxDepth) { if (maxDepth === void 0) { maxDepth = 3; } if (depth >= maxDepth) { var identity_2 = getRecursionIdentity(type); var count = 0; var lastTypeId = 0; for (var i = 0; i < depth; i++) { var t = stack[i]; if (getRecursionIdentity(t) === identity_2) { // We only count occurrences with a higher type id than the previous occurrence, since higher // type ids are an indicator of newer instantiations caused by recursion. if (t.id >= lastTypeId) { count++; if (count >= maxDepth) { return true; } } lastTypeId = t.id; } } } return false; } // The recursion identity of a type is an object identity that is shared among multiple instantiations of the type. // We track recursion identities in order to identify deeply nested and possibly infinite type instantiations with // the same origin. For example, when type parameters are in scope in an object type such as { x: T }, all // instantiations of that type have the same recursion identity. The default recursion identity is the object // identity of the type, meaning that every type is unique. Generally, types with constituents that could circularly // reference the type have a recursion identity that differs from the object identity. function getRecursionIdentity(type) { // Object and array literals are known not to contain recursive references and don't need a recursion identity. if (type.flags & 524288 /* TypeFlags.Object */ && !isObjectOrArrayLiteralType(type)) { if (ts.getObjectFlags(type) && 4 /* ObjectFlags.Reference */ && type.node) { // Deferred type references are tracked through their associated AST node. This gives us finer // granularity than using their associated target because each manifest type reference has a // unique AST node. return type.node; } if (type.symbol && !(ts.getObjectFlags(type) & 16 /* ObjectFlags.Anonymous */ && type.symbol.flags & 32 /* SymbolFlags.Class */)) { // We track all object types that have an associated symbol (representing the origin of the type), but // exclude the static side of classes from this check since it shares its symbol with the instance side. return type.symbol; } if (isTupleType(type)) { // Tuple types are tracked through their target type return type.target; } } if (type.flags & 262144 /* TypeFlags.TypeParameter */) { return type.symbol; } if (type.flags & 8388608 /* TypeFlags.IndexedAccess */) { // Identity is the leftmost object type in a chain of indexed accesses, eg, in A[P][Q] it is A do { type = type.objectType; } while (type.flags & 8388608 /* TypeFlags.IndexedAccess */); return type; } if (type.flags & 16777216 /* TypeFlags.Conditional */) { // The root object represents the origin of the conditional type return type.root; } return type; } function isPropertyIdenticalTo(sourceProp, targetProp) { return compareProperties(sourceProp, targetProp, compareTypesIdentical) !== 0 /* Ternary.False */; } function compareProperties(sourceProp, targetProp, compareTypes) { // Two members are considered identical when // - they are public properties with identical names, optionality, and types, // - they are private or protected properties originating in the same declaration and having identical types if (sourceProp === targetProp) { return -1 /* Ternary.True */; } var sourcePropAccessibility = ts.getDeclarationModifierFlagsFromSymbol(sourceProp) & 24 /* ModifierFlags.NonPublicAccessibilityModifier */; var targetPropAccessibility = ts.getDeclarationModifierFlagsFromSymbol(targetProp) & 24 /* ModifierFlags.NonPublicAccessibilityModifier */; if (sourcePropAccessibility !== targetPropAccessibility) { return 0 /* Ternary.False */; } if (sourcePropAccessibility) { if (getTargetSymbol(sourceProp) !== getTargetSymbol(targetProp)) { return 0 /* Ternary.False */; } } else { if ((sourceProp.flags & 16777216 /* SymbolFlags.Optional */) !== (targetProp.flags & 16777216 /* SymbolFlags.Optional */)) { return 0 /* Ternary.False */; } } if (isReadonlySymbol(sourceProp) !== isReadonlySymbol(targetProp)) { return 0 /* Ternary.False */; } return compareTypes(getTypeOfSymbol(sourceProp), getTypeOfSymbol(targetProp)); } function isMatchingSignature(source, target, partialMatch) { var sourceParameterCount = getParameterCount(source); var targetParameterCount = getParameterCount(target); var sourceMinArgumentCount = getMinArgumentCount(source); var targetMinArgumentCount = getMinArgumentCount(target); var sourceHasRestParameter = hasEffectiveRestParameter(source); var targetHasRestParameter = hasEffectiveRestParameter(target); // A source signature matches a target signature if the two signatures have the same number of required, // optional, and rest parameters. if (sourceParameterCount === targetParameterCount && sourceMinArgumentCount === targetMinArgumentCount && sourceHasRestParameter === targetHasRestParameter) { return true; } // A source signature partially matches a target signature if the target signature has no fewer required // parameters if (partialMatch && sourceMinArgumentCount <= targetMinArgumentCount) { return true; } return false; } /** * See signatureRelatedTo, compareSignaturesIdentical */ function compareSignaturesIdentical(source, target, partialMatch, ignoreThisTypes, ignoreReturnTypes, compareTypes) { // TODO (drosen): De-duplicate code between related functions. if (source === target) { return -1 /* Ternary.True */; } if (!(isMatchingSignature(source, target, partialMatch))) { return 0 /* Ternary.False */; } // Check that the two signatures have the same number of type parameters. if (ts.length(source.typeParameters) !== ts.length(target.typeParameters)) { return 0 /* Ternary.False */; } // Check that type parameter constraints and defaults match. If they do, instantiate the source // signature with the type parameters of the target signature and continue the comparison. if (target.typeParameters) { var mapper = createTypeMapper(source.typeParameters, target.typeParameters); for (var i = 0; i < target.typeParameters.length; i++) { var s = source.typeParameters[i]; var t = target.typeParameters[i]; if (!(s === t || compareTypes(instantiateType(getConstraintFromTypeParameter(s), mapper) || unknownType, getConstraintFromTypeParameter(t) || unknownType) && compareTypes(instantiateType(getDefaultFromTypeParameter(s), mapper) || unknownType, getDefaultFromTypeParameter(t) || unknownType))) { return 0 /* Ternary.False */; } } source = instantiateSignature(source, mapper, /*eraseTypeParameters*/ true); } var result = -1 /* Ternary.True */; if (!ignoreThisTypes) { var sourceThisType = getThisTypeOfSignature(source); if (sourceThisType) { var targetThisType = getThisTypeOfSignature(target); if (targetThisType) { var related = compareTypes(sourceThisType, targetThisType); if (!related) { return 0 /* Ternary.False */; } result &= related; } } } var targetLen = getParameterCount(target); for (var i = 0; i < targetLen; i++) { var s = getTypeAtPosition(source, i); var t = getTypeAtPosition(target, i); var related = compareTypes(t, s); if (!related) { return 0 /* Ternary.False */; } result &= related; } if (!ignoreReturnTypes) { var sourceTypePredicate = getTypePredicateOfSignature(source); var targetTypePredicate = getTypePredicateOfSignature(target); result &= sourceTypePredicate || targetTypePredicate ? compareTypePredicatesIdentical(sourceTypePredicate, targetTypePredicate, compareTypes) : compareTypes(getReturnTypeOfSignature(source), getReturnTypeOfSignature(target)); } return result; } function compareTypePredicatesIdentical(source, target, compareTypes) { return !(source && target && typePredicateKindsMatch(source, target)) ? 0 /* Ternary.False */ : source.type === target.type ? -1 /* Ternary.True */ : source.type && target.type ? compareTypes(source.type, target.type) : 0 /* Ternary.False */; } function literalTypesWithSameBaseType(types) { var commonBaseType; for (var _i = 0, types_13 = types; _i < types_13.length; _i++) { var t = types_13[_i]; var baseType = getBaseTypeOfLiteralType(t); if (!commonBaseType) { commonBaseType = baseType; } if (baseType === t || baseType !== commonBaseType) { return false; } } return true; } // When the candidate types are all literal types with the same base type, return a union // of those literal types. Otherwise, return the leftmost type for which no type to the // right is a supertype. function getSupertypeOrUnion(types) { if (types.length === 1) { return types[0]; } return literalTypesWithSameBaseType(types) ? getUnionType(types) : ts.reduceLeft(types, function (s, t) { return isTypeSubtypeOf(s, t) ? t : s; }); } function getCommonSupertype(types) { if (!strictNullChecks) { return getSupertypeOrUnion(types); } var primaryTypes = ts.filter(types, function (t) { return !(t.flags & 98304 /* TypeFlags.Nullable */); }); return primaryTypes.length ? getNullableType(getSupertypeOrUnion(primaryTypes), getFalsyFlagsOfTypes(types) & 98304 /* TypeFlags.Nullable */) : getUnionType(types, 2 /* UnionReduction.Subtype */); } // Return the leftmost type for which no type to the right is a subtype. function getCommonSubtype(types) { return ts.reduceLeft(types, function (s, t) { return isTypeSubtypeOf(t, s) ? t : s; }); } function isArrayType(type) { return !!(ts.getObjectFlags(type) & 4 /* ObjectFlags.Reference */) && (type.target === globalArrayType || type.target === globalReadonlyArrayType); } function isReadonlyArrayType(type) { return !!(ts.getObjectFlags(type) & 4 /* ObjectFlags.Reference */) && type.target === globalReadonlyArrayType; } function isArrayOrTupleType(type) { return isArrayType(type) || isTupleType(type); } function isMutableArrayOrTuple(type) { return isArrayType(type) && !isReadonlyArrayType(type) || isTupleType(type) && !type.target.readonly; } function getElementTypeOfArrayType(type) { return isArrayType(type) ? getTypeArguments(type)[0] : undefined; } function isArrayLikeType(type) { // A type is array-like if it is a reference to the global Array or global ReadonlyArray type, // or if it is not the undefined or null type and if it is assignable to ReadonlyArray return isArrayType(type) || !(type.flags & 98304 /* TypeFlags.Nullable */) && isTypeAssignableTo(type, anyReadonlyArrayType); } function getSingleBaseForNonAugmentingSubtype(type) { if (!(ts.getObjectFlags(type) & 4 /* ObjectFlags.Reference */) || !(ts.getObjectFlags(type.target) & 3 /* ObjectFlags.ClassOrInterface */)) { return undefined; } if (ts.getObjectFlags(type) & 33554432 /* ObjectFlags.IdenticalBaseTypeCalculated */) { return ts.getObjectFlags(type) & 67108864 /* ObjectFlags.IdenticalBaseTypeExists */ ? type.cachedEquivalentBaseType : undefined; } type.objectFlags |= 33554432 /* ObjectFlags.IdenticalBaseTypeCalculated */; var target = type.target; if (ts.getObjectFlags(target) & 1 /* ObjectFlags.Class */) { var baseTypeNode = getBaseTypeNodeOfClass(target); // A base type expression may circularly reference the class itself (e.g. as an argument to function call), so we only // check for base types specified as simple qualified names. if (baseTypeNode && baseTypeNode.expression.kind !== 79 /* SyntaxKind.Identifier */ && baseTypeNode.expression.kind !== 206 /* SyntaxKind.PropertyAccessExpression */) { return undefined; } } var bases = getBaseTypes(target); if (bases.length !== 1) { return undefined; } if (getMembersOfSymbol(type.symbol).size) { return undefined; // If the interface has any members, they may subtype members in the base, so we should do a full structural comparison } var instantiatedBase = !ts.length(target.typeParameters) ? bases[0] : instantiateType(bases[0], createTypeMapper(target.typeParameters, getTypeArguments(type).slice(0, target.typeParameters.length))); if (ts.length(getTypeArguments(type)) > ts.length(target.typeParameters)) { instantiatedBase = getTypeWithThisArgument(instantiatedBase, ts.last(getTypeArguments(type))); } type.objectFlags |= 67108864 /* ObjectFlags.IdenticalBaseTypeExists */; return type.cachedEquivalentBaseType = instantiatedBase; } function isEmptyLiteralType(type) { return strictNullChecks ? type === implicitNeverType : type === undefinedWideningType; } function isEmptyArrayLiteralType(type) { var elementType = getElementTypeOfArrayType(type); return !!elementType && isEmptyLiteralType(elementType); } function isTupleLikeType(type) { return isTupleType(type) || !!getPropertyOfType(type, "0"); } function isArrayOrTupleLikeType(type) { return isArrayLikeType(type) || isTupleLikeType(type); } function getTupleElementType(type, index) { var propType = getTypeOfPropertyOfType(type, "" + index); if (propType) { return propType; } if (everyType(type, isTupleType)) { return mapType(type, function (t) { return getRestTypeOfTupleType(t) || undefinedType; }); } return undefined; } function isNeitherUnitTypeNorNever(type) { return !(type.flags & (109440 /* TypeFlags.Unit */ | 131072 /* TypeFlags.Never */)); } function isUnitType(type) { return !!(type.flags & 109440 /* TypeFlags.Unit */); } function isUnitLikeType(type) { return type.flags & 2097152 /* TypeFlags.Intersection */ ? ts.some(type.types, isUnitType) : !!(type.flags & 109440 /* TypeFlags.Unit */); } function extractUnitType(type) { return type.flags & 2097152 /* TypeFlags.Intersection */ ? ts.find(type.types, isUnitType) || type : type; } function isLiteralType(type) { return type.flags & 16 /* TypeFlags.Boolean */ ? true : type.flags & 1048576 /* TypeFlags.Union */ ? type.flags & 1024 /* TypeFlags.EnumLiteral */ ? true : ts.every(type.types, isUnitType) : isUnitType(type); } function getBaseTypeOfLiteralType(type) { return type.flags & 1024 /* TypeFlags.EnumLiteral */ ? getBaseTypeOfEnumLiteralType(type) : type.flags & (128 /* TypeFlags.StringLiteral */ | 134217728 /* TypeFlags.TemplateLiteral */ | 268435456 /* TypeFlags.StringMapping */) ? stringType : type.flags & 256 /* TypeFlags.NumberLiteral */ ? numberType : type.flags & 2048 /* TypeFlags.BigIntLiteral */ ? bigintType : type.flags & 512 /* TypeFlags.BooleanLiteral */ ? booleanType : type.flags & 1048576 /* TypeFlags.Union */ ? mapType(type, getBaseTypeOfLiteralType) : type; } function getWidenedLiteralType(type) { return type.flags & 1024 /* TypeFlags.EnumLiteral */ && isFreshLiteralType(type) ? getBaseTypeOfEnumLiteralType(type) : type.flags & 128 /* TypeFlags.StringLiteral */ && isFreshLiteralType(type) ? stringType : type.flags & 256 /* TypeFlags.NumberLiteral */ && isFreshLiteralType(type) ? numberType : type.flags & 2048 /* TypeFlags.BigIntLiteral */ && isFreshLiteralType(type) ? bigintType : type.flags & 512 /* TypeFlags.BooleanLiteral */ && isFreshLiteralType(type) ? booleanType : type.flags & 1048576 /* TypeFlags.Union */ ? mapType(type, getWidenedLiteralType) : type; } function getWidenedUniqueESSymbolType(type) { return type.flags & 8192 /* TypeFlags.UniqueESSymbol */ ? esSymbolType : type.flags & 1048576 /* TypeFlags.Union */ ? mapType(type, getWidenedUniqueESSymbolType) : type; } function getWidenedLiteralLikeTypeForContextualType(type, contextualType) { if (!isLiteralOfContextualType(type, contextualType)) { type = getWidenedUniqueESSymbolType(getWidenedLiteralType(type)); } return type; } function getWidenedLiteralLikeTypeForContextualReturnTypeIfNeeded(type, contextualSignatureReturnType, isAsync) { if (type && isUnitType(type)) { var contextualType = !contextualSignatureReturnType ? undefined : isAsync ? getPromisedTypeOfPromise(contextualSignatureReturnType) : contextualSignatureReturnType; type = getWidenedLiteralLikeTypeForContextualType(type, contextualType); } return type; } function getWidenedLiteralLikeTypeForContextualIterationTypeIfNeeded(type, contextualSignatureReturnType, kind, isAsyncGenerator) { if (type && isUnitType(type)) { var contextualType = !contextualSignatureReturnType ? undefined : getIterationTypeOfGeneratorFunctionReturnType(kind, contextualSignatureReturnType, isAsyncGenerator); type = getWidenedLiteralLikeTypeForContextualType(type, contextualType); } return type; } /** * Check if a Type was written as a tuple type literal. * Prefer using isTupleLikeType() unless the use of `elementTypes`/`getTypeArguments` is required. */ function isTupleType(type) { return !!(ts.getObjectFlags(type) & 4 /* ObjectFlags.Reference */ && type.target.objectFlags & 8 /* ObjectFlags.Tuple */); } function isGenericTupleType(type) { return isTupleType(type) && !!(type.target.combinedFlags & 8 /* ElementFlags.Variadic */); } function isSingleElementGenericTupleType(type) { return isGenericTupleType(type) && type.target.elementFlags.length === 1; } function getRestTypeOfTupleType(type) { return getElementTypeOfSliceOfTupleType(type, type.target.fixedLength); } function getRestArrayTypeOfTupleType(type) { var restType = getRestTypeOfTupleType(type); return restType && createArrayType(restType); } function getElementTypeOfSliceOfTupleType(type, index, endSkipCount, writing) { if (endSkipCount === void 0) { endSkipCount = 0; } if (writing === void 0) { writing = false; } var length = getTypeReferenceArity(type) - endSkipCount; if (index < length) { var typeArguments = getTypeArguments(type); var elementTypes = []; for (var i = index; i < length; i++) { var t = typeArguments[i]; elementTypes.push(type.target.elementFlags[i] & 8 /* ElementFlags.Variadic */ ? getIndexedAccessType(t, numberType) : t); } return writing ? getIntersectionType(elementTypes) : getUnionType(elementTypes); } return undefined; } function isTupleTypeStructureMatching(t1, t2) { return getTypeReferenceArity(t1) === getTypeReferenceArity(t2) && ts.every(t1.target.elementFlags, function (f, i) { return (f & 12 /* ElementFlags.Variable */) === (t2.target.elementFlags[i] & 12 /* ElementFlags.Variable */); }); } function isZeroBigInt(_a) { var value = _a.value; return value.base10Value === "0"; } function getFalsyFlagsOfTypes(types) { var result = 0; for (var _i = 0, types_14 = types; _i < types_14.length; _i++) { var t = types_14[_i]; result |= getFalsyFlags(t); } return result; } // Returns the String, Number, Boolean, StringLiteral, NumberLiteral, BooleanLiteral, Void, Undefined, or Null // flags for the string, number, boolean, "", 0, false, void, undefined, or null types respectively. Returns // no flags for all other types (including non-falsy literal types). function getFalsyFlags(type) { return type.flags & 1048576 /* TypeFlags.Union */ ? getFalsyFlagsOfTypes(type.types) : type.flags & 128 /* TypeFlags.StringLiteral */ ? type.value === "" ? 128 /* TypeFlags.StringLiteral */ : 0 : type.flags & 256 /* TypeFlags.NumberLiteral */ ? type.value === 0 ? 256 /* TypeFlags.NumberLiteral */ : 0 : type.flags & 2048 /* TypeFlags.BigIntLiteral */ ? isZeroBigInt(type) ? 2048 /* TypeFlags.BigIntLiteral */ : 0 : type.flags & 512 /* TypeFlags.BooleanLiteral */ ? (type === falseType || type === regularFalseType) ? 512 /* TypeFlags.BooleanLiteral */ : 0 : type.flags & 117724 /* TypeFlags.PossiblyFalsy */; } function removeDefinitelyFalsyTypes(type) { return getFalsyFlags(type) & 117632 /* TypeFlags.DefinitelyFalsy */ ? filterType(type, function (t) { return !(getFalsyFlags(t) & 117632 /* TypeFlags.DefinitelyFalsy */); }) : type; } function extractDefinitelyFalsyTypes(type) { return mapType(type, getDefinitelyFalsyPartOfType); } function getDefinitelyFalsyPartOfType(type) { return type.flags & 4 /* TypeFlags.String */ ? emptyStringType : type.flags & 8 /* TypeFlags.Number */ ? zeroType : type.flags & 64 /* TypeFlags.BigInt */ ? zeroBigIntType : type === regularFalseType || type === falseType || type.flags & (16384 /* TypeFlags.Void */ | 32768 /* TypeFlags.Undefined */ | 65536 /* TypeFlags.Null */ | 3 /* TypeFlags.AnyOrUnknown */) || type.flags & 128 /* TypeFlags.StringLiteral */ && type.value === "" || type.flags & 256 /* TypeFlags.NumberLiteral */ && type.value === 0 || type.flags & 2048 /* TypeFlags.BigIntLiteral */ && isZeroBigInt(type) ? type : neverType; } /** * Add undefined or null or both to a type if they are missing. * @param type - type to add undefined and/or null to if not present * @param flags - Either TypeFlags.Undefined or TypeFlags.Null, or both */ function getNullableType(type, flags) { var missing = (flags & ~type.flags) & (32768 /* TypeFlags.Undefined */ | 65536 /* TypeFlags.Null */); return missing === 0 ? type : missing === 32768 /* TypeFlags.Undefined */ ? getUnionType([type, undefinedType]) : missing === 65536 /* TypeFlags.Null */ ? getUnionType([type, nullType]) : getUnionType([type, undefinedType, nullType]); } function getOptionalType(type, isProperty) { if (isProperty === void 0) { isProperty = false; } ts.Debug.assert(strictNullChecks); return type.flags & 32768 /* TypeFlags.Undefined */ ? type : getUnionType([type, isProperty ? missingType : undefinedType]); } function getGlobalNonNullableTypeInstantiation(type) { // First reduce away any constituents that are assignable to 'undefined' or 'null'. This not only eliminates // 'undefined' and 'null', but also higher-order types such as a type parameter 'U extends undefined | null' // that isn't eliminated by a NonNullable instantiation. var reducedType = getTypeWithFacts(type, 2097152 /* TypeFacts.NEUndefinedOrNull */); if (!deferredGlobalNonNullableTypeAlias) { deferredGlobalNonNullableTypeAlias = getGlobalSymbol("NonNullable", 524288 /* SymbolFlags.TypeAlias */, /*diagnostic*/ undefined) || unknownSymbol; } // If the NonNullable type is available, return an instantiation. Otherwise just return the reduced type. return deferredGlobalNonNullableTypeAlias !== unknownSymbol ? getTypeAliasInstantiation(deferredGlobalNonNullableTypeAlias, [reducedType]) : reducedType; } function getNonNullableType(type) { return strictNullChecks ? getGlobalNonNullableTypeInstantiation(type) : type; } function addOptionalTypeMarker(type) { return strictNullChecks ? getUnionType([type, optionalType]) : type; } function removeOptionalTypeMarker(type) { return strictNullChecks ? removeType(type, optionalType) : type; } function propagateOptionalTypeMarker(type, node, wasOptional) { return wasOptional ? ts.isOutermostOptionalChain(node) ? getOptionalType(type) : addOptionalTypeMarker(type) : type; } function getOptionalExpressionType(exprType, expression) { return ts.isExpressionOfOptionalChainRoot(expression) ? getNonNullableType(exprType) : ts.isOptionalChain(expression) ? removeOptionalTypeMarker(exprType) : exprType; } function removeMissingType(type, isOptional) { return exactOptionalPropertyTypes && isOptional ? removeType(type, missingType) : type; } function containsMissingType(type) { return exactOptionalPropertyTypes && (type === missingType || type.flags & 1048576 /* TypeFlags.Union */ && containsType(type.types, missingType)); } function removeMissingOrUndefinedType(type) { return exactOptionalPropertyTypes ? removeType(type, missingType) : getTypeWithFacts(type, 524288 /* TypeFacts.NEUndefined */); } /** * Is source potentially coercible to target type under `==`. * Assumes that `source` is a constituent of a union, hence * the boolean literal flag on the LHS, but not on the RHS. * * This does not fully replicate the semantics of `==`. The * intention is to catch cases that are clearly not right. * * Comparing (string | number) to number should not remove the * string element. * * Comparing (string | number) to 1 will remove the string * element, though this is not sound. This is a pragmatic * choice. * * @see narrowTypeByEquality * * @param source * @param target */ function isCoercibleUnderDoubleEquals(source, target) { return ((source.flags & (8 /* TypeFlags.Number */ | 4 /* TypeFlags.String */ | 512 /* TypeFlags.BooleanLiteral */)) !== 0) && ((target.flags & (8 /* TypeFlags.Number */ | 4 /* TypeFlags.String */ | 16 /* TypeFlags.Boolean */)) !== 0); } /** * Return true if type was inferred from an object literal, written as an object type literal, or is the shape of a module * with no call or construct signatures. */ function isObjectTypeWithInferableIndex(type) { return type.flags & 2097152 /* TypeFlags.Intersection */ ? ts.every(type.types, isObjectTypeWithInferableIndex) : !!(type.symbol && (type.symbol.flags & (4096 /* SymbolFlags.ObjectLiteral */ | 2048 /* SymbolFlags.TypeLiteral */ | 384 /* SymbolFlags.Enum */ | 512 /* SymbolFlags.ValueModule */)) !== 0 && !(type.symbol.flags & 32 /* SymbolFlags.Class */) && !typeHasCallOrConstructSignatures(type)) || !!(ts.getObjectFlags(type) & 1024 /* ObjectFlags.ReverseMapped */ && isObjectTypeWithInferableIndex(type.source)); } function createSymbolWithType(source, type) { var symbol = createSymbol(source.flags, source.escapedName, ts.getCheckFlags(source) & 8 /* CheckFlags.Readonly */); symbol.declarations = source.declarations; symbol.parent = source.parent; symbol.type = type; symbol.target = source; if (source.valueDeclaration) { symbol.valueDeclaration = source.valueDeclaration; } var nameType = getSymbolLinks(source).nameType; if (nameType) { symbol.nameType = nameType; } return symbol; } function transformTypeOfMembers(type, f) { var members = ts.createSymbolTable(); for (var _i = 0, _a = getPropertiesOfObjectType(type); _i < _a.length; _i++) { var property = _a[_i]; var original = getTypeOfSymbol(property); var updated = f(original); members.set(property.escapedName, updated === original ? property : createSymbolWithType(property, updated)); } return members; } /** * If the the provided object literal is subject to the excess properties check, * create a new that is exempt. Recursively mark object literal members as exempt. * Leave signatures alone since they are not subject to the check. */ function getRegularTypeOfObjectLiteral(type) { if (!(isObjectLiteralType(type) && ts.getObjectFlags(type) & 8192 /* ObjectFlags.FreshLiteral */)) { return type; } var regularType = type.regularType; if (regularType) { return regularType; } var resolved = type; var members = transformTypeOfMembers(type, getRegularTypeOfObjectLiteral); var regularNew = createAnonymousType(resolved.symbol, members, resolved.callSignatures, resolved.constructSignatures, resolved.indexInfos); regularNew.flags = resolved.flags; regularNew.objectFlags |= resolved.objectFlags & ~8192 /* ObjectFlags.FreshLiteral */; type.regularType = regularNew; return regularNew; } function createWideningContext(parent, propertyName, siblings) { return { parent: parent, propertyName: propertyName, siblings: siblings, resolvedProperties: undefined }; } function getSiblingsOfContext(context) { if (!context.siblings) { var siblings_1 = []; for (var _i = 0, _a = getSiblingsOfContext(context.parent); _i < _a.length; _i++) { var type = _a[_i]; if (isObjectLiteralType(type)) { var prop = getPropertyOfObjectType(type, context.propertyName); if (prop) { forEachType(getTypeOfSymbol(prop), function (t) { siblings_1.push(t); }); } } } context.siblings = siblings_1; } return context.siblings; } function getPropertiesOfContext(context) { if (!context.resolvedProperties) { var names = new ts.Map(); for (var _i = 0, _a = getSiblingsOfContext(context); _i < _a.length; _i++) { var t = _a[_i]; if (isObjectLiteralType(t) && !(ts.getObjectFlags(t) & 2097152 /* ObjectFlags.ContainsSpread */)) { for (var _b = 0, _c = getPropertiesOfType(t); _b < _c.length; _b++) { var prop = _c[_b]; names.set(prop.escapedName, prop); } } } context.resolvedProperties = ts.arrayFrom(names.values()); } return context.resolvedProperties; } function getWidenedProperty(prop, context) { if (!(prop.flags & 4 /* SymbolFlags.Property */)) { // Since get accessors already widen their return value there is no need to // widen accessor based properties here. return prop; } var original = getTypeOfSymbol(prop); var propContext = context && createWideningContext(context, prop.escapedName, /*siblings*/ undefined); var widened = getWidenedTypeWithContext(original, propContext); return widened === original ? prop : createSymbolWithType(prop, widened); } function getUndefinedProperty(prop) { var cached = undefinedProperties.get(prop.escapedName); if (cached) { return cached; } var result = createSymbolWithType(prop, missingType); result.flags |= 16777216 /* SymbolFlags.Optional */; undefinedProperties.set(prop.escapedName, result); return result; } function getWidenedTypeOfObjectLiteral(type, context) { var members = ts.createSymbolTable(); for (var _i = 0, _a = getPropertiesOfObjectType(type); _i < _a.length; _i++) { var prop = _a[_i]; members.set(prop.escapedName, getWidenedProperty(prop, context)); } if (context) { for (var _b = 0, _c = getPropertiesOfContext(context); _b < _c.length; _b++) { var prop = _c[_b]; if (!members.has(prop.escapedName)) { members.set(prop.escapedName, getUndefinedProperty(prop)); } } } var result = createAnonymousType(type.symbol, members, ts.emptyArray, ts.emptyArray, ts.sameMap(getIndexInfosOfType(type), function (info) { return createIndexInfo(info.keyType, getWidenedType(info.type), info.isReadonly); })); result.objectFlags |= (ts.getObjectFlags(type) & (4096 /* ObjectFlags.JSLiteral */ | 262144 /* ObjectFlags.NonInferrableType */)); // Retain js literal flag through widening return result; } function getWidenedType(type) { return getWidenedTypeWithContext(type, /*context*/ undefined); } function getWidenedTypeWithContext(type, context) { if (ts.getObjectFlags(type) & 196608 /* ObjectFlags.RequiresWidening */) { if (context === undefined && type.widened) { return type.widened; } var result = void 0; if (type.flags & (1 /* TypeFlags.Any */ | 98304 /* TypeFlags.Nullable */)) { result = anyType; } else if (isObjectLiteralType(type)) { result = getWidenedTypeOfObjectLiteral(type, context); } else if (type.flags & 1048576 /* TypeFlags.Union */) { var unionContext_1 = context || createWideningContext(/*parent*/ undefined, /*propertyName*/ undefined, type.types); var widenedTypes = ts.sameMap(type.types, function (t) { return t.flags & 98304 /* TypeFlags.Nullable */ ? t : getWidenedTypeWithContext(t, unionContext_1); }); // Widening an empty object literal transitions from a highly restrictive type to // a highly inclusive one. For that reason we perform subtype reduction here if the // union includes empty object types (e.g. reducing {} | string to just {}). result = getUnionType(widenedTypes, ts.some(widenedTypes, isEmptyObjectType) ? 2 /* UnionReduction.Subtype */ : 1 /* UnionReduction.Literal */); } else if (type.flags & 2097152 /* TypeFlags.Intersection */) { result = getIntersectionType(ts.sameMap(type.types, getWidenedType)); } else if (isArrayOrTupleType(type)) { result = createTypeReference(type.target, ts.sameMap(getTypeArguments(type), getWidenedType)); } if (result && context === undefined) { type.widened = result; } return result || type; } return type; } /** * Reports implicit any errors that occur as a result of widening 'null' and 'undefined' * to 'any'. A call to reportWideningErrorsInType is normally accompanied by a call to * getWidenedType. But in some cases getWidenedType is called without reporting errors * (type argument inference is an example). * * The return value indicates whether an error was in fact reported. The particular circumstances * are on a best effort basis. Currently, if the null or undefined that causes widening is inside * an object literal property (arbitrarily deeply), this function reports an error. If no error is * reported, reportImplicitAnyError is a suitable fallback to report a general error. */ function reportWideningErrorsInType(type) { var errorReported = false; if (ts.getObjectFlags(type) & 65536 /* ObjectFlags.ContainsWideningType */) { if (type.flags & 1048576 /* TypeFlags.Union */) { if (ts.some(type.types, isEmptyObjectType)) { errorReported = true; } else { for (var _i = 0, _a = type.types; _i < _a.length; _i++) { var t = _a[_i]; if (reportWideningErrorsInType(t)) { errorReported = true; } } } } if (isArrayOrTupleType(type)) { for (var _b = 0, _c = getTypeArguments(type); _b < _c.length; _b++) { var t = _c[_b]; if (reportWideningErrorsInType(t)) { errorReported = true; } } } if (isObjectLiteralType(type)) { for (var _d = 0, _e = getPropertiesOfObjectType(type); _d < _e.length; _d++) { var p = _e[_d]; var t = getTypeOfSymbol(p); if (ts.getObjectFlags(t) & 65536 /* ObjectFlags.ContainsWideningType */) { if (!reportWideningErrorsInType(t)) { error(p.valueDeclaration, ts.Diagnostics.Object_literal_s_property_0_implicitly_has_an_1_type, symbolToString(p), typeToString(getWidenedType(t))); } errorReported = true; } } } } return errorReported; } function reportImplicitAny(declaration, type, wideningKind) { var typeAsString = typeToString(getWidenedType(type)); if (ts.isInJSFile(declaration) && !ts.isCheckJsEnabledForFile(ts.getSourceFileOfNode(declaration), compilerOptions)) { // Only report implicit any errors/suggestions in TS and ts-check JS files return; } var diagnostic; switch (declaration.kind) { case 221 /* SyntaxKind.BinaryExpression */: case 167 /* SyntaxKind.PropertyDeclaration */: case 166 /* SyntaxKind.PropertySignature */: diagnostic = noImplicitAny ? ts.Diagnostics.Member_0_implicitly_has_an_1_type : ts.Diagnostics.Member_0_implicitly_has_an_1_type_but_a_better_type_may_be_inferred_from_usage; break; case 164 /* SyntaxKind.Parameter */: var param = declaration; if (ts.isIdentifier(param.name) && (ts.isCallSignatureDeclaration(param.parent) || ts.isMethodSignature(param.parent) || ts.isFunctionTypeNode(param.parent)) && param.parent.parameters.indexOf(param) > -1 && (resolveName(param, param.name.escapedText, 788968 /* SymbolFlags.Type */, undefined, param.name.escapedText, /*isUse*/ true) || param.name.originalKeywordKind && ts.isTypeNodeKind(param.name.originalKeywordKind))) { var newName = "arg" + param.parent.parameters.indexOf(param); var typeName = ts.declarationNameToString(param.name) + (param.dotDotDotToken ? "[]" : ""); errorOrSuggestion(noImplicitAny, declaration, ts.Diagnostics.Parameter_has_a_name_but_no_type_Did_you_mean_0_Colon_1, newName, typeName); return; } diagnostic = declaration.dotDotDotToken ? noImplicitAny ? ts.Diagnostics.Rest_parameter_0_implicitly_has_an_any_type : ts.Diagnostics.Rest_parameter_0_implicitly_has_an_any_type_but_a_better_type_may_be_inferred_from_usage : noImplicitAny ? ts.Diagnostics.Parameter_0_implicitly_has_an_1_type : ts.Diagnostics.Parameter_0_implicitly_has_an_1_type_but_a_better_type_may_be_inferred_from_usage; break; case 203 /* SyntaxKind.BindingElement */: diagnostic = ts.Diagnostics.Binding_element_0_implicitly_has_an_1_type; if (!noImplicitAny) { // Don't issue a suggestion for binding elements since the codefix doesn't yet support them. return; } break; case 317 /* SyntaxKind.JSDocFunctionType */: error(declaration, ts.Diagnostics.Function_type_which_lacks_return_type_annotation_implicitly_has_an_0_return_type, typeAsString); return; case 256 /* SyntaxKind.FunctionDeclaration */: case 169 /* SyntaxKind.MethodDeclaration */: case 168 /* SyntaxKind.MethodSignature */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 213 /* SyntaxKind.FunctionExpression */: case 214 /* SyntaxKind.ArrowFunction */: if (noImplicitAny && !declaration.name) { if (wideningKind === 3 /* WideningKind.GeneratorYield */) { error(declaration, ts.Diagnostics.Generator_implicitly_has_yield_type_0_because_it_does_not_yield_any_values_Consider_supplying_a_return_type_annotation, typeAsString); } else { error(declaration, ts.Diagnostics.Function_expression_which_lacks_return_type_annotation_implicitly_has_an_0_return_type, typeAsString); } return; } diagnostic = !noImplicitAny ? ts.Diagnostics._0_implicitly_has_an_1_return_type_but_a_better_type_may_be_inferred_from_usage : wideningKind === 3 /* WideningKind.GeneratorYield */ ? ts.Diagnostics._0_which_lacks_return_type_annotation_implicitly_has_an_1_yield_type : ts.Diagnostics._0_which_lacks_return_type_annotation_implicitly_has_an_1_return_type; break; case 195 /* SyntaxKind.MappedType */: if (noImplicitAny) { error(declaration, ts.Diagnostics.Mapped_object_type_implicitly_has_an_any_template_type); } return; default: diagnostic = noImplicitAny ? ts.Diagnostics.Variable_0_implicitly_has_an_1_type : ts.Diagnostics.Variable_0_implicitly_has_an_1_type_but_a_better_type_may_be_inferred_from_usage; } errorOrSuggestion(noImplicitAny, declaration, diagnostic, ts.declarationNameToString(ts.getNameOfDeclaration(declaration)), typeAsString); } function reportErrorsFromWidening(declaration, type, wideningKind) { addLazyDiagnostic(function () { if (noImplicitAny && ts.getObjectFlags(type) & 65536 /* ObjectFlags.ContainsWideningType */ && (!wideningKind || !getContextualSignatureForFunctionLikeDeclaration(declaration))) { // Report implicit any error within type if possible, otherwise report error on declaration if (!reportWideningErrorsInType(type)) { reportImplicitAny(declaration, type, wideningKind); } } }); } function applyToParameterTypes(source, target, callback) { var sourceCount = getParameterCount(source); var targetCount = getParameterCount(target); var sourceRestType = getEffectiveRestType(source); var targetRestType = getEffectiveRestType(target); var targetNonRestCount = targetRestType ? targetCount - 1 : targetCount; var paramCount = sourceRestType ? targetNonRestCount : Math.min(sourceCount, targetNonRestCount); var sourceThisType = getThisTypeOfSignature(source); if (sourceThisType) { var targetThisType = getThisTypeOfSignature(target); if (targetThisType) { callback(sourceThisType, targetThisType); } } for (var i = 0; i < paramCount; i++) { callback(getTypeAtPosition(source, i), getTypeAtPosition(target, i)); } if (targetRestType) { callback(getRestTypeAtPosition(source, paramCount), targetRestType); } } function applyToReturnTypes(source, target, callback) { var sourceTypePredicate = getTypePredicateOfSignature(source); var targetTypePredicate = getTypePredicateOfSignature(target); if (sourceTypePredicate && targetTypePredicate && typePredicateKindsMatch(sourceTypePredicate, targetTypePredicate) && sourceTypePredicate.type && targetTypePredicate.type) { callback(sourceTypePredicate.type, targetTypePredicate.type); } else { callback(getReturnTypeOfSignature(source), getReturnTypeOfSignature(target)); } } function createInferenceContext(typeParameters, signature, flags, compareTypes) { return createInferenceContextWorker(typeParameters.map(createInferenceInfo), signature, flags, compareTypes || compareTypesAssignable); } function cloneInferenceContext(context, extraFlags) { if (extraFlags === void 0) { extraFlags = 0; } return context && createInferenceContextWorker(ts.map(context.inferences, cloneInferenceInfo), context.signature, context.flags | extraFlags, context.compareTypes); } function createInferenceContextWorker(inferences, signature, flags, compareTypes) { var context = { inferences: inferences, signature: signature, flags: flags, compareTypes: compareTypes, mapper: makeFunctionTypeMapper(function (t) { return mapToInferredType(context, t, /*fix*/ true); }), nonFixingMapper: makeFunctionTypeMapper(function (t) { return mapToInferredType(context, t, /*fix*/ false); }), }; return context; } function mapToInferredType(context, t, fix) { var inferences = context.inferences; for (var i = 0; i < inferences.length; i++) { var inference = inferences[i]; if (t === inference.typeParameter) { if (fix && !inference.isFixed) { // Before we commit to a particular inference (and thus lock out any further inferences), // we infer from any intra-expression inference sites we have collected. inferFromIntraExpressionSites(context); clearCachedInferences(inferences); inference.isFixed = true; } return getInferredType(context, i); } } return t; } function clearCachedInferences(inferences) { for (var _i = 0, inferences_1 = inferences; _i < inferences_1.length; _i++) { var inference = inferences_1[_i]; if (!inference.isFixed) { inference.inferredType = undefined; } } } function addIntraExpressionInferenceSite(context, node, type) { var _a; ((_a = context.intraExpressionInferenceSites) !== null && _a !== void 0 ? _a : (context.intraExpressionInferenceSites = [])).push({ node: node, type: type }); } // We collect intra-expression inference sites within object and array literals to handle cases where // inferred types flow between context sensitive element expressions. For example: // // declare function foo(arg: [(n: number) => T, (x: T) => void]): void; // foo([_a => 0, n => n.toFixed()]); // // Above, both arrow functions in the tuple argument are context sensitive, thus both are omitted from the // pass that collects inferences from the non-context sensitive parts of the arguments. In the subsequent // pass where nothing is omitted, we need to commit to an inference for T in order to contextually type the // parameter in the second arrow function, but we want to first infer from the return type of the first // arrow function. This happens automatically when the arrow functions are discrete arguments (because we // infer from each argument before processing the next), but when the arrow functions are elements of an // object or array literal, we need to perform intra-expression inferences early. function inferFromIntraExpressionSites(context) { if (context.intraExpressionInferenceSites) { for (var _i = 0, _a = context.intraExpressionInferenceSites; _i < _a.length; _i++) { var _b = _a[_i], node = _b.node, type = _b.type; var contextualType = node.kind === 169 /* SyntaxKind.MethodDeclaration */ ? getContextualTypeForObjectLiteralMethod(node, 2 /* ContextFlags.NoConstraints */) : getContextualType(node, 2 /* ContextFlags.NoConstraints */); if (contextualType) { inferTypes(context.inferences, type, contextualType); } } context.intraExpressionInferenceSites = undefined; } } function createInferenceInfo(typeParameter) { return { typeParameter: typeParameter, candidates: undefined, contraCandidates: undefined, inferredType: undefined, priority: undefined, topLevel: true, isFixed: false, impliedArity: undefined }; } function cloneInferenceInfo(inference) { return { typeParameter: inference.typeParameter, candidates: inference.candidates && inference.candidates.slice(), contraCandidates: inference.contraCandidates && inference.contraCandidates.slice(), inferredType: inference.inferredType, priority: inference.priority, topLevel: inference.topLevel, isFixed: inference.isFixed, impliedArity: inference.impliedArity }; } function cloneInferredPartOfContext(context) { var inferences = ts.filter(context.inferences, hasInferenceCandidates); return inferences.length ? createInferenceContextWorker(ts.map(inferences, cloneInferenceInfo), context.signature, context.flags, context.compareTypes) : undefined; } function getMapperFromContext(context) { return context && context.mapper; } // Return true if the given type could possibly reference a type parameter for which // we perform type inference (i.e. a type parameter of a generic function). We cache // results for union and intersection types for performance reasons. function couldContainTypeVariables(type) { var objectFlags = ts.getObjectFlags(type); if (objectFlags & 524288 /* ObjectFlags.CouldContainTypeVariablesComputed */) { return !!(objectFlags & 1048576 /* ObjectFlags.CouldContainTypeVariables */); } var result = !!(type.flags & 465829888 /* TypeFlags.Instantiable */ || type.flags & 524288 /* TypeFlags.Object */ && !isNonGenericTopLevelType(type) && (objectFlags & 4 /* ObjectFlags.Reference */ && (type.node || ts.forEach(getTypeArguments(type), couldContainTypeVariables)) || objectFlags & 16 /* ObjectFlags.Anonymous */ && type.symbol && type.symbol.flags & (16 /* SymbolFlags.Function */ | 8192 /* SymbolFlags.Method */ | 32 /* SymbolFlags.Class */ | 2048 /* SymbolFlags.TypeLiteral */ | 4096 /* SymbolFlags.ObjectLiteral */) && type.symbol.declarations || objectFlags & (32 /* ObjectFlags.Mapped */ | 1024 /* ObjectFlags.ReverseMapped */ | 4194304 /* ObjectFlags.ObjectRestType */ | 8388608 /* ObjectFlags.InstantiationExpressionType */)) || type.flags & 3145728 /* TypeFlags.UnionOrIntersection */ && !(type.flags & 1024 /* TypeFlags.EnumLiteral */) && !isNonGenericTopLevelType(type) && ts.some(type.types, couldContainTypeVariables)); if (type.flags & 3899393 /* TypeFlags.ObjectFlagsType */) { type.objectFlags |= 524288 /* ObjectFlags.CouldContainTypeVariablesComputed */ | (result ? 1048576 /* ObjectFlags.CouldContainTypeVariables */ : 0); } return result; } function isNonGenericTopLevelType(type) { if (type.aliasSymbol && !type.aliasTypeArguments) { var declaration = ts.getDeclarationOfKind(type.aliasSymbol, 259 /* SyntaxKind.TypeAliasDeclaration */); return !!(declaration && ts.findAncestor(declaration.parent, function (n) { return n.kind === 305 /* SyntaxKind.SourceFile */ ? true : n.kind === 261 /* SyntaxKind.ModuleDeclaration */ ? false : "quit"; })); } return false; } function isTypeParameterAtTopLevel(type, typeParameter) { return !!(type === typeParameter || type.flags & 3145728 /* TypeFlags.UnionOrIntersection */ && ts.some(type.types, function (t) { return isTypeParameterAtTopLevel(t, typeParameter); }) || type.flags & 16777216 /* TypeFlags.Conditional */ && (getTrueTypeFromConditionalType(type) === typeParameter || getFalseTypeFromConditionalType(type) === typeParameter)); } /** Create an object with properties named in the string literal type. Every property has type `any` */ function createEmptyObjectTypeFromStringLiteral(type) { var members = ts.createSymbolTable(); forEachType(type, function (t) { if (!(t.flags & 128 /* TypeFlags.StringLiteral */)) { return; } var name = ts.escapeLeadingUnderscores(t.value); var literalProp = createSymbol(4 /* SymbolFlags.Property */, name); literalProp.type = anyType; if (t.symbol) { literalProp.declarations = t.symbol.declarations; literalProp.valueDeclaration = t.symbol.valueDeclaration; } members.set(name, literalProp); }); var indexInfos = type.flags & 4 /* TypeFlags.String */ ? [createIndexInfo(stringType, emptyObjectType, /*isReadonly*/ false)] : ts.emptyArray; return createAnonymousType(undefined, members, ts.emptyArray, ts.emptyArray, indexInfos); } /** * Infer a suitable input type for a homomorphic mapped type { [P in keyof T]: X }. We construct * an object type with the same set of properties as the source type, where the type of each * property is computed by inferring from the source property type to X for the type * variable T[P] (i.e. we treat the type T[P] as the type variable we're inferring for). */ function inferTypeForHomomorphicMappedType(source, target, constraint) { if (inInferTypeForHomomorphicMappedType) { return undefined; } var key = source.id + "," + target.id + "," + constraint.id; if (reverseMappedCache.has(key)) { return reverseMappedCache.get(key); } inInferTypeForHomomorphicMappedType = true; var type = createReverseMappedType(source, target, constraint); inInferTypeForHomomorphicMappedType = false; reverseMappedCache.set(key, type); return type; } // We consider a type to be partially inferable if it isn't marked non-inferable or if it is // an object literal type with at least one property of an inferable type. For example, an object // literal { a: 123, b: x => true } is marked non-inferable because it contains a context sensitive // arrow function, but is considered partially inferable because property 'a' has an inferable type. function isPartiallyInferableType(type) { return !(ts.getObjectFlags(type) & 262144 /* ObjectFlags.NonInferrableType */) || isObjectLiteralType(type) && ts.some(getPropertiesOfType(type), function (prop) { return isPartiallyInferableType(getTypeOfSymbol(prop)); }) || isTupleType(type) && ts.some(getTypeArguments(type), isPartiallyInferableType); } function createReverseMappedType(source, target, constraint) { // We consider a source type reverse mappable if it has a string index signature or if // it has one or more properties and is of a partially inferable type. if (!(getIndexInfoOfType(source, stringType) || getPropertiesOfType(source).length !== 0 && isPartiallyInferableType(source))) { return undefined; } // For arrays and tuples we infer new arrays and tuples where the reverse mapping has been // applied to the element type(s). if (isArrayType(source)) { return createArrayType(inferReverseMappedType(getTypeArguments(source)[0], target, constraint), isReadonlyArrayType(source)); } if (isTupleType(source)) { var elementTypes = ts.map(getTypeArguments(source), function (t) { return inferReverseMappedType(t, target, constraint); }); var elementFlags = getMappedTypeModifiers(target) & 4 /* MappedTypeModifiers.IncludeOptional */ ? ts.sameMap(source.target.elementFlags, function (f) { return f & 2 /* ElementFlags.Optional */ ? 1 /* ElementFlags.Required */ : f; }) : source.target.elementFlags; return createTupleType(elementTypes, elementFlags, source.target.readonly, source.target.labeledElementDeclarations); } // For all other object types we infer a new object type where the reverse mapping has been // applied to the type of each property. var reversed = createObjectType(1024 /* ObjectFlags.ReverseMapped */ | 16 /* ObjectFlags.Anonymous */, /*symbol*/ undefined); reversed.source = source; reversed.mappedType = target; reversed.constraintType = constraint; return reversed; } function getTypeOfReverseMappedSymbol(symbol) { var links = getSymbolLinks(symbol); if (!links.type) { links.type = inferReverseMappedType(symbol.propertyType, symbol.mappedType, symbol.constraintType); } return links.type; } function inferReverseMappedType(sourceType, target, constraint) { var typeParameter = getIndexedAccessType(constraint.type, getTypeParameterFromMappedType(target)); var templateType = getTemplateTypeFromMappedType(target); var inference = createInferenceInfo(typeParameter); inferTypes([inference], sourceType, templateType); return getTypeFromInference(inference) || unknownType; } function getUnmatchedProperties(source, target, requireOptionalProperties, matchDiscriminantProperties) { var properties, _i, properties_2, targetProp, sourceProp, targetType, sourceType; return __generator(this, function (_a) { switch (_a.label) { case 0: properties = getPropertiesOfType(target); _i = 0, properties_2 = properties; _a.label = 1; case 1: if (!(_i < properties_2.length)) return [3 /*break*/, 6]; targetProp = properties_2[_i]; // TODO: remove this when we support static private identifier fields and find other solutions to get privateNamesAndStaticFields test to pass if (isStaticPrivateIdentifierProperty(targetProp)) { return [3 /*break*/, 5]; } if (!(requireOptionalProperties || !(targetProp.flags & 16777216 /* SymbolFlags.Optional */ || ts.getCheckFlags(targetProp) & 48 /* CheckFlags.Partial */))) return [3 /*break*/, 5]; sourceProp = getPropertyOfType(source, targetProp.escapedName); if (!!sourceProp) return [3 /*break*/, 3]; return [4 /*yield*/, targetProp]; case 2: _a.sent(); return [3 /*break*/, 5]; case 3: if (!matchDiscriminantProperties) return [3 /*break*/, 5]; targetType = getTypeOfSymbol(targetProp); if (!(targetType.flags & 109440 /* TypeFlags.Unit */)) return [3 /*break*/, 5]; sourceType = getTypeOfSymbol(sourceProp); if (!!(sourceType.flags & 1 /* TypeFlags.Any */ || getRegularTypeOfLiteralType(sourceType) === getRegularTypeOfLiteralType(targetType))) return [3 /*break*/, 5]; return [4 /*yield*/, targetProp]; case 4: _a.sent(); _a.label = 5; case 5: _i++; return [3 /*break*/, 1]; case 6: return [2 /*return*/]; } }); } function getUnmatchedProperty(source, target, requireOptionalProperties, matchDiscriminantProperties) { var result = getUnmatchedProperties(source, target, requireOptionalProperties, matchDiscriminantProperties).next(); if (!result.done) return result.value; } function tupleTypesDefinitelyUnrelated(source, target) { return !(target.target.combinedFlags & 8 /* ElementFlags.Variadic */) && target.target.minLength > source.target.minLength || !target.target.hasRestElement && (source.target.hasRestElement || target.target.fixedLength < source.target.fixedLength); } function typesDefinitelyUnrelated(source, target) { // Two tuple types with incompatible arities are definitely unrelated. // Two object types that each have a property that is unmatched in the other are definitely unrelated. return isTupleType(source) && isTupleType(target) ? tupleTypesDefinitelyUnrelated(source, target) : !!getUnmatchedProperty(source, target, /*requireOptionalProperties*/ false, /*matchDiscriminantProperties*/ true) && !!getUnmatchedProperty(target, source, /*requireOptionalProperties*/ false, /*matchDiscriminantProperties*/ false); } function getTypeFromInference(inference) { return inference.candidates ? getUnionType(inference.candidates, 2 /* UnionReduction.Subtype */) : inference.contraCandidates ? getIntersectionType(inference.contraCandidates) : undefined; } function hasSkipDirectInferenceFlag(node) { return !!getNodeLinks(node).skipDirectInference; } function isFromInferenceBlockedSource(type) { return !!(type.symbol && ts.some(type.symbol.declarations, hasSkipDirectInferenceFlag)); } function templateLiteralTypesDefinitelyUnrelated(source, target) { // Two template literal types with diffences in their starting or ending text spans are definitely unrelated. var sourceStart = source.texts[0]; var targetStart = target.texts[0]; var sourceEnd = source.texts[source.texts.length - 1]; var targetEnd = target.texts[target.texts.length - 1]; var startLen = Math.min(sourceStart.length, targetStart.length); var endLen = Math.min(sourceEnd.length, targetEnd.length); return sourceStart.slice(0, startLen) !== targetStart.slice(0, startLen) || sourceEnd.slice(sourceEnd.length - endLen) !== targetEnd.slice(targetEnd.length - endLen); } function isValidBigIntString(s) { var scanner = ts.createScanner(99 /* ScriptTarget.ESNext */, /*skipTrivia*/ false); var success = true; scanner.setOnError(function () { return success = false; }); scanner.setText(s + "n"); var result = scanner.scan(); if (result === 40 /* SyntaxKind.MinusToken */) { result = scanner.scan(); } var flags = scanner.getTokenFlags(); // validate that // * scanning proceeded without error // * a bigint can be scanned, and that when it is scanned, it is // * the full length of the input string (so the scanner is one character beyond the augmented input length) // * it does not contain a numeric seperator (the `BigInt` constructor does not accept a numeric seperator in its input) return success && result === 9 /* SyntaxKind.BigIntLiteral */ && scanner.getTextPos() === (s.length + 1) && !(flags & 512 /* TokenFlags.ContainsSeparator */); } function isValidTypeForTemplateLiteralPlaceholder(source, target) { if (source === target || target.flags & (1 /* TypeFlags.Any */ | 4 /* TypeFlags.String */)) { return true; } if (source.flags & 128 /* TypeFlags.StringLiteral */) { var value = source.value; return !!(target.flags & 8 /* TypeFlags.Number */ && value !== "" && isFinite(+value) || target.flags & 64 /* TypeFlags.BigInt */ && value !== "" && isValidBigIntString(value) || target.flags & (512 /* TypeFlags.BooleanLiteral */ | 98304 /* TypeFlags.Nullable */) && value === target.intrinsicName); } if (source.flags & 134217728 /* TypeFlags.TemplateLiteral */) { var texts = source.texts; return texts.length === 2 && texts[0] === "" && texts[1] === "" && isTypeAssignableTo(source.types[0], target); } return isTypeAssignableTo(source, target); } function inferTypesFromTemplateLiteralType(source, target) { return source.flags & 128 /* TypeFlags.StringLiteral */ ? inferFromLiteralPartsToTemplateLiteral([source.value], ts.emptyArray, target) : source.flags & 134217728 /* TypeFlags.TemplateLiteral */ ? ts.arraysEqual(source.texts, target.texts) ? ts.map(source.types, getStringLikeTypeForType) : inferFromLiteralPartsToTemplateLiteral(source.texts, source.types, target) : undefined; } function isTypeMatchedByTemplateLiteralType(source, target) { var inferences = inferTypesFromTemplateLiteralType(source, target); return !!inferences && ts.every(inferences, function (r, i) { return isValidTypeForTemplateLiteralPlaceholder(r, target.types[i]); }); } function getStringLikeTypeForType(type) { return type.flags & (1 /* TypeFlags.Any */ | 402653316 /* TypeFlags.StringLike */) ? type : getTemplateLiteralType(["", ""], [type]); } // This function infers from the text parts and type parts of a source literal to a target template literal. The number // of text parts is always one more than the number of type parts, and a source string literal is treated as a source // with one text part and zero type parts. The function returns an array of inferred string or template literal types // corresponding to the placeholders in the target template literal, or undefined if the source doesn't match the target. // // We first check that the starting source text part matches the starting target text part, and that the ending source // text part ends matches the ending target text part. We then iterate through the remaining target text parts, finding // a match for each in the source and inferring string or template literal types created from the segments of the source // that occur between the matches. During this iteration, seg holds the index of the current text part in the sourceTexts // array and pos holds the current character position in the current text part. // // Consider inference from type `<<${string}>.<${number}-${number}>>` to type `<${string}.${string}>`, i.e. // sourceTexts = ['<<', '>.<', '-', '>>'] // sourceTypes = [string, number, number] // target.texts = ['<', '.', '>'] // We first match '<' in the target to the start of '<<' in the source and '>' in the target to the end of '>>' in // the source. The first match for the '.' in target occurs at character 1 in the source text part at index 1, and thus // the first inference is the template literal type `<${string}>`. The remainder of the source makes up the second // inference, the template literal type `<${number}-${number}>`. function inferFromLiteralPartsToTemplateLiteral(sourceTexts, sourceTypes, target) { var lastSourceIndex = sourceTexts.length - 1; var sourceStartText = sourceTexts[0]; var sourceEndText = sourceTexts[lastSourceIndex]; var targetTexts = target.texts; var lastTargetIndex = targetTexts.length - 1; var targetStartText = targetTexts[0]; var targetEndText = targetTexts[lastTargetIndex]; if (lastSourceIndex === 0 && sourceStartText.length < targetStartText.length + targetEndText.length || !sourceStartText.startsWith(targetStartText) || !sourceEndText.endsWith(targetEndText)) return undefined; var remainingEndText = sourceEndText.slice(0, sourceEndText.length - targetEndText.length); var matches = []; var seg = 0; var pos = targetStartText.length; for (var i = 1; i < lastTargetIndex; i++) { var delim = targetTexts[i]; if (delim.length > 0) { var s = seg; var p = pos; while (true) { p = getSourceText(s).indexOf(delim, p); if (p >= 0) break; s++; if (s === sourceTexts.length) return undefined; p = 0; } addMatch(s, p); pos += delim.length; } else if (pos < getSourceText(seg).length) { addMatch(seg, pos + 1); } else if (seg < lastSourceIndex) { addMatch(seg + 1, 0); } else { return undefined; } } addMatch(lastSourceIndex, getSourceText(lastSourceIndex).length); return matches; function getSourceText(index) { return index < lastSourceIndex ? sourceTexts[index] : remainingEndText; } function addMatch(s, p) { var matchType = s === seg ? getStringLiteralType(getSourceText(s).slice(pos, p)) : getTemplateLiteralType(__spreadArray(__spreadArray([sourceTexts[seg].slice(pos)], sourceTexts.slice(seg + 1, s), true), [getSourceText(s).slice(0, p)], false), sourceTypes.slice(seg, s)); matches.push(matchType); seg = s; pos = p; } } function inferTypes(inferences, originalSource, originalTarget, priority, contravariant) { if (priority === void 0) { priority = 0; } if (contravariant === void 0) { contravariant = false; } var bivariant = false; var propagationType; var inferencePriority = 2048 /* InferencePriority.MaxValue */; var allowComplexConstraintInference = true; var visited; var sourceStack; var targetStack; var expandingFlags = 0 /* ExpandingFlags.None */; inferFromTypes(originalSource, originalTarget); function inferFromTypes(source, target) { if (!couldContainTypeVariables(target)) { return; } if (source === wildcardType) { // We are inferring from an 'any' type. We want to infer this type for every type parameter // referenced in the target type, so we record it as the propagation type and infer from the // target to itself. Then, as we find candidates we substitute the propagation type. var savePropagationType = propagationType; propagationType = source; inferFromTypes(target, target); propagationType = savePropagationType; return; } if (source.aliasSymbol && source.aliasTypeArguments && source.aliasSymbol === target.aliasSymbol) { // Source and target are types originating in the same generic type alias declaration. // Simply infer from source type arguments to target type arguments. inferFromTypeArguments(source.aliasTypeArguments, target.aliasTypeArguments, getAliasVariances(source.aliasSymbol)); return; } if (source === target && source.flags & 3145728 /* TypeFlags.UnionOrIntersection */) { // When source and target are the same union or intersection type, just relate each constituent // type to itself. for (var _i = 0, _a = source.types; _i < _a.length; _i++) { var t = _a[_i]; inferFromTypes(t, t); } return; } if (target.flags & 1048576 /* TypeFlags.Union */) { // First, infer between identically matching source and target constituents and remove the // matching types. var _b = inferFromMatchingTypes(source.flags & 1048576 /* TypeFlags.Union */ ? source.types : [source], target.types, isTypeOrBaseIdenticalTo), tempSources = _b[0], tempTargets = _b[1]; // Next, infer between closely matching source and target constituents and remove // the matching types. Types closely match when they are instantiations of the same // object type or instantiations of the same type alias. var _c = inferFromMatchingTypes(tempSources, tempTargets, isTypeCloselyMatchedBy), sources = _c[0], targets = _c[1]; if (targets.length === 0) { return; } target = getUnionType(targets); if (sources.length === 0) { // All source constituents have been matched and there is nothing further to infer from. // However, simply making no inferences is undesirable because it could ultimately mean // inferring a type parameter constraint. Instead, make a lower priority inference from // the full source to whatever remains in the target. For example, when inferring from // string to 'string | T', make a lower priority inference of string for T. inferWithPriority(source, target, 1 /* InferencePriority.NakedTypeVariable */); return; } source = getUnionType(sources); } else if (target.flags & 2097152 /* TypeFlags.Intersection */ && ts.some(target.types, function (t) { return !!getInferenceInfoForType(t) || (isGenericMappedType(t) && !!getInferenceInfoForType(getHomomorphicTypeVariable(t) || neverType)); })) { // We reduce intersection types only when they contain naked type parameters. For example, when // inferring from 'string[] & { extra: any }' to 'string[] & T' we want to remove string[] and // infer { extra: any } for T. But when inferring to 'string[] & Iterable' we want to keep the // string[] on the source side and infer string for T. // Likewise, we consider a homomorphic mapped type constrainted to the target type parameter as similar to a "naked type variable" // in such scenarios. if (!(source.flags & 1048576 /* TypeFlags.Union */)) { // Infer between identically matching source and target constituents and remove the matching types. var _d = inferFromMatchingTypes(source.flags & 2097152 /* TypeFlags.Intersection */ ? source.types : [source], target.types, isTypeIdenticalTo), sources = _d[0], targets = _d[1]; if (sources.length === 0 || targets.length === 0) { return; } source = getIntersectionType(sources); target = getIntersectionType(targets); } } else if (target.flags & (8388608 /* TypeFlags.IndexedAccess */ | 33554432 /* TypeFlags.Substitution */)) { target = getActualTypeVariable(target); } if (target.flags & 8650752 /* TypeFlags.TypeVariable */) { // If target is a type parameter, make an inference, unless the source type contains // the anyFunctionType (the wildcard type that's used to avoid contextually typing functions). // Because the anyFunctionType is internal, it should not be exposed to the user by adding // it as an inference candidate. Hopefully, a better candidate will come along that does // not contain anyFunctionType when we come back to this argument for its second round // of inference. Also, we exclude inferences for silentNeverType (which is used as a wildcard // when constructing types from type parameters that had no inference candidates). if (source === nonInferrableAnyType || source === silentNeverType || (priority & 128 /* InferencePriority.ReturnType */ && (source === autoType || source === autoArrayType)) || isFromInferenceBlockedSource(source)) { return; } var inference = getInferenceInfoForType(target); if (inference) { if (ts.getObjectFlags(source) & 262144 /* ObjectFlags.NonInferrableType */) { return; } if (!inference.isFixed) { if (inference.priority === undefined || priority < inference.priority) { inference.candidates = undefined; inference.contraCandidates = undefined; inference.topLevel = true; inference.priority = priority; } if (priority === inference.priority) { var candidate = propagationType || source; // We make contravariant inferences only if we are in a pure contravariant position, // i.e. only if we have not descended into a bivariant position. if (contravariant && !bivariant) { if (!ts.contains(inference.contraCandidates, candidate)) { inference.contraCandidates = ts.append(inference.contraCandidates, candidate); clearCachedInferences(inferences); } } else if (!ts.contains(inference.candidates, candidate)) { inference.candidates = ts.append(inference.candidates, candidate); clearCachedInferences(inferences); } } if (!(priority & 128 /* InferencePriority.ReturnType */) && target.flags & 262144 /* TypeFlags.TypeParameter */ && inference.topLevel && !isTypeParameterAtTopLevel(originalTarget, target)) { inference.topLevel = false; clearCachedInferences(inferences); } } inferencePriority = Math.min(inferencePriority, priority); return; } // Infer to the simplified version of an indexed access, if possible, to (hopefully) expose more bare type parameters to the inference engine var simplified = getSimplifiedType(target, /*writing*/ false); if (simplified !== target) { inferFromTypes(source, simplified); } else if (target.flags & 8388608 /* TypeFlags.IndexedAccess */) { var indexType = getSimplifiedType(target.indexType, /*writing*/ false); // Generally simplifications of instantiable indexes are avoided to keep relationship checking correct, however if our target is an access, we can consider // that key of that access to be "instantiated", since we're looking to find the infernce goal in any way we can. if (indexType.flags & 465829888 /* TypeFlags.Instantiable */) { var simplified_1 = distributeIndexOverObjectType(getSimplifiedType(target.objectType, /*writing*/ false), indexType, /*writing*/ false); if (simplified_1 && simplified_1 !== target) { inferFromTypes(source, simplified_1); } } } } if (ts.getObjectFlags(source) & 4 /* ObjectFlags.Reference */ && ts.getObjectFlags(target) & 4 /* ObjectFlags.Reference */ && (source.target === target.target || isArrayType(source) && isArrayType(target)) && !(source.node && target.node)) { // If source and target are references to the same generic type, infer from type arguments inferFromTypeArguments(getTypeArguments(source), getTypeArguments(target), getVariances(source.target)); } else if (source.flags & 4194304 /* TypeFlags.Index */ && target.flags & 4194304 /* TypeFlags.Index */) { contravariant = !contravariant; inferFromTypes(source.type, target.type); contravariant = !contravariant; } else if ((isLiteralType(source) || source.flags & 4 /* TypeFlags.String */) && target.flags & 4194304 /* TypeFlags.Index */) { var empty = createEmptyObjectTypeFromStringLiteral(source); contravariant = !contravariant; inferWithPriority(empty, target.type, 256 /* InferencePriority.LiteralKeyof */); contravariant = !contravariant; } else if (source.flags & 8388608 /* TypeFlags.IndexedAccess */ && target.flags & 8388608 /* TypeFlags.IndexedAccess */) { inferFromTypes(source.objectType, target.objectType); inferFromTypes(source.indexType, target.indexType); } else if (source.flags & 268435456 /* TypeFlags.StringMapping */ && target.flags & 268435456 /* TypeFlags.StringMapping */) { if (source.symbol === target.symbol) { inferFromTypes(source.type, target.type); } } else if (source.flags & 33554432 /* TypeFlags.Substitution */) { inferFromTypes(source.baseType, target); var oldPriority = priority; priority |= 4 /* InferencePriority.SubstituteSource */; inferFromTypes(source.substitute, target); // Make substitute inference at a lower priority priority = oldPriority; } else if (target.flags & 16777216 /* TypeFlags.Conditional */) { invokeOnce(source, target, inferToConditionalType); } else if (target.flags & 3145728 /* TypeFlags.UnionOrIntersection */) { inferToMultipleTypes(source, target.types, target.flags); } else if (source.flags & 1048576 /* TypeFlags.Union */) { // Source is a union or intersection type, infer from each constituent type var sourceTypes = source.types; for (var _e = 0, sourceTypes_2 = sourceTypes; _e < sourceTypes_2.length; _e++) { var sourceType = sourceTypes_2[_e]; inferFromTypes(sourceType, target); } } else if (target.flags & 134217728 /* TypeFlags.TemplateLiteral */) { inferToTemplateLiteralType(source, target); } else { source = getReducedType(source); if (!(priority & 512 /* InferencePriority.NoConstraints */ && source.flags & (2097152 /* TypeFlags.Intersection */ | 465829888 /* TypeFlags.Instantiable */))) { var apparentSource = getApparentType(source); // getApparentType can return _any_ type, since an indexed access or conditional may simplify to any other type. // If that occurs and it doesn't simplify to an object or intersection, we'll need to restart `inferFromTypes` // with the simplified source. if (apparentSource !== source && allowComplexConstraintInference && !(apparentSource.flags & (524288 /* TypeFlags.Object */ | 2097152 /* TypeFlags.Intersection */))) { // TODO: The `allowComplexConstraintInference` flag is a hack! This forbids inference from complex constraints within constraints! // This isn't required algorithmically, but rather is used to lower the memory burden caused by performing inference // that is _too good_ in projects with complicated constraints (eg, fp-ts). In such cases, if we did not limit ourselves // here, we might produce more valid inferences for types, causing us to do more checks and perform more instantiations // (in addition to the extra stack depth here) which, in turn, can push the already close process over its limit. // TL;DR: If we ever become generally more memory efficient (or our resource budget ever increases), we should just // remove this `allowComplexConstraintInference` flag. allowComplexConstraintInference = false; return inferFromTypes(apparentSource, target); } source = apparentSource; } if (source.flags & (524288 /* TypeFlags.Object */ | 2097152 /* TypeFlags.Intersection */)) { invokeOnce(source, target, inferFromObjectTypes); } } } function inferWithPriority(source, target, newPriority) { var savePriority = priority; priority |= newPriority; inferFromTypes(source, target); priority = savePriority; } function invokeOnce(source, target, action) { var key = source.id + "," + target.id; var status = visited && visited.get(key); if (status !== undefined) { inferencePriority = Math.min(inferencePriority, status); return; } (visited || (visited = new ts.Map())).set(key, -1 /* InferencePriority.Circularity */); var saveInferencePriority = inferencePriority; inferencePriority = 2048 /* InferencePriority.MaxValue */; // We stop inferring and report a circularity if we encounter duplicate recursion identities on both // the source side and the target side. var saveExpandingFlags = expandingFlags; var sourceIdentity = getRecursionIdentity(source); var targetIdentity = getRecursionIdentity(target); if (ts.contains(sourceStack, sourceIdentity)) expandingFlags |= 1 /* ExpandingFlags.Source */; if (ts.contains(targetStack, targetIdentity)) expandingFlags |= 2 /* ExpandingFlags.Target */; if (expandingFlags !== 3 /* ExpandingFlags.Both */) { (sourceStack || (sourceStack = [])).push(sourceIdentity); (targetStack || (targetStack = [])).push(targetIdentity); action(source, target); targetStack.pop(); sourceStack.pop(); } else { inferencePriority = -1 /* InferencePriority.Circularity */; } expandingFlags = saveExpandingFlags; visited.set(key, inferencePriority); inferencePriority = Math.min(inferencePriority, saveInferencePriority); } function inferFromMatchingTypes(sources, targets, matches) { var matchedSources; var matchedTargets; for (var _i = 0, targets_1 = targets; _i < targets_1.length; _i++) { var t = targets_1[_i]; for (var _a = 0, sources_1 = sources; _a < sources_1.length; _a++) { var s = sources_1[_a]; if (matches(s, t)) { inferFromTypes(s, t); matchedSources = ts.appendIfUnique(matchedSources, s); matchedTargets = ts.appendIfUnique(matchedTargets, t); } } } return [ matchedSources ? ts.filter(sources, function (t) { return !ts.contains(matchedSources, t); }) : sources, matchedTargets ? ts.filter(targets, function (t) { return !ts.contains(matchedTargets, t); }) : targets, ]; } function inferFromTypeArguments(sourceTypes, targetTypes, variances) { var count = sourceTypes.length < targetTypes.length ? sourceTypes.length : targetTypes.length; for (var i = 0; i < count; i++) { if (i < variances.length && (variances[i] & 7 /* VarianceFlags.VarianceMask */) === 2 /* VarianceFlags.Contravariant */) { inferFromContravariantTypes(sourceTypes[i], targetTypes[i]); } else { inferFromTypes(sourceTypes[i], targetTypes[i]); } } } function inferFromContravariantTypes(source, target) { if (strictFunctionTypes || priority & 1024 /* InferencePriority.AlwaysStrict */) { contravariant = !contravariant; inferFromTypes(source, target); contravariant = !contravariant; } else { inferFromTypes(source, target); } } function getInferenceInfoForType(type) { if (type.flags & 8650752 /* TypeFlags.TypeVariable */) { for (var _i = 0, inferences_2 = inferences; _i < inferences_2.length; _i++) { var inference = inferences_2[_i]; if (type === inference.typeParameter) { return inference; } } } return undefined; } function getSingleTypeVariableFromIntersectionTypes(types) { var typeVariable; for (var _i = 0, types_15 = types; _i < types_15.length; _i++) { var type = types_15[_i]; var t = type.flags & 2097152 /* TypeFlags.Intersection */ && ts.find(type.types, function (t) { return !!getInferenceInfoForType(t); }); if (!t || typeVariable && t !== typeVariable) { return undefined; } typeVariable = t; } return typeVariable; } function inferToMultipleTypes(source, targets, targetFlags) { var typeVariableCount = 0; if (targetFlags & 1048576 /* TypeFlags.Union */) { var nakedTypeVariable = void 0; var sources = source.flags & 1048576 /* TypeFlags.Union */ ? source.types : [source]; var matched_1 = new Array(sources.length); var inferenceCircularity = false; // First infer to types that are not naked type variables. For each source type we // track whether inferences were made from that particular type to some target with // equal priority (i.e. of equal quality) to what we would infer for a naked type // parameter. for (var _i = 0, targets_2 = targets; _i < targets_2.length; _i++) { var t = targets_2[_i]; if (getInferenceInfoForType(t)) { nakedTypeVariable = t; typeVariableCount++; } else { for (var i = 0; i < sources.length; i++) { var saveInferencePriority = inferencePriority; inferencePriority = 2048 /* InferencePriority.MaxValue */; inferFromTypes(sources[i], t); if (inferencePriority === priority) matched_1[i] = true; inferenceCircularity = inferenceCircularity || inferencePriority === -1 /* InferencePriority.Circularity */; inferencePriority = Math.min(inferencePriority, saveInferencePriority); } } } if (typeVariableCount === 0) { // If every target is an intersection of types containing a single naked type variable, // make a lower priority inference to that type variable. This handles inferring from // 'A | B' to 'T & (X | Y)' where we want to infer 'A | B' for T. var intersectionTypeVariable = getSingleTypeVariableFromIntersectionTypes(targets); if (intersectionTypeVariable) { inferWithPriority(source, intersectionTypeVariable, 1 /* InferencePriority.NakedTypeVariable */); } return; } // If the target has a single naked type variable and no inference circularities were // encountered above (meaning we explored the types fully), create a union of the source // types from which no inferences have been made so far and infer from that union to the // naked type variable. if (typeVariableCount === 1 && !inferenceCircularity) { var unmatched = ts.flatMap(sources, function (s, i) { return matched_1[i] ? undefined : s; }); if (unmatched.length) { inferFromTypes(getUnionType(unmatched), nakedTypeVariable); return; } } } else { // We infer from types that are not naked type variables first so that inferences we // make from nested naked type variables and given slightly higher priority by virtue // of being first in the candidates array. for (var _a = 0, targets_3 = targets; _a < targets_3.length; _a++) { var t = targets_3[_a]; if (getInferenceInfoForType(t)) { typeVariableCount++; } else { inferFromTypes(source, t); } } } // Inferences directly to naked type variables are given lower priority as they are // less specific. For example, when inferring from Promise to T | Promise, // we want to infer string for T, not Promise | string. For intersection types // we only infer to single naked type variables. if (targetFlags & 2097152 /* TypeFlags.Intersection */ ? typeVariableCount === 1 : typeVariableCount > 0) { for (var _b = 0, targets_4 = targets; _b < targets_4.length; _b++) { var t = targets_4[_b]; if (getInferenceInfoForType(t)) { inferWithPriority(source, t, 1 /* InferencePriority.NakedTypeVariable */); } } } } function inferToMappedType(source, target, constraintType) { if (constraintType.flags & 1048576 /* TypeFlags.Union */) { var result = false; for (var _i = 0, _a = constraintType.types; _i < _a.length; _i++) { var type = _a[_i]; result = inferToMappedType(source, target, type) || result; } return result; } if (constraintType.flags & 4194304 /* TypeFlags.Index */) { // We're inferring from some source type S to a homomorphic mapped type { [P in keyof T]: X }, // where T is a type variable. Use inferTypeForHomomorphicMappedType to infer a suitable source // type and then make a secondary inference from that type to T. We make a secondary inference // such that direct inferences to T get priority over inferences to Partial, for example. var inference = getInferenceInfoForType(constraintType.type); if (inference && !inference.isFixed && !isFromInferenceBlockedSource(source)) { var inferredType = inferTypeForHomomorphicMappedType(source, target, constraintType); if (inferredType) { // We assign a lower priority to inferences made from types containing non-inferrable // types because we may only have a partial result (i.e. we may have failed to make // reverse inferences for some properties). inferWithPriority(inferredType, inference.typeParameter, ts.getObjectFlags(source) & 262144 /* ObjectFlags.NonInferrableType */ ? 16 /* InferencePriority.PartialHomomorphicMappedType */ : 8 /* InferencePriority.HomomorphicMappedType */); } } return true; } if (constraintType.flags & 262144 /* TypeFlags.TypeParameter */) { // We're inferring from some source type S to a mapped type { [P in K]: X }, where K is a type // parameter. First infer from 'keyof S' to K. inferWithPriority(getIndexType(source), constraintType, 32 /* InferencePriority.MappedTypeConstraint */); // If K is constrained to a type C, also infer to C. Thus, for a mapped type { [P in K]: X }, // where K extends keyof T, we make the same inferences as for a homomorphic mapped type // { [P in keyof T]: X }. This enables us to make meaningful inferences when the target is a // Pick. var extendedConstraint = getConstraintOfType(constraintType); if (extendedConstraint && inferToMappedType(source, target, extendedConstraint)) { return true; } // If no inferences can be made to K's constraint, infer from a union of the property types // in the source to the template type X. var propTypes = ts.map(getPropertiesOfType(source), getTypeOfSymbol); var indexTypes = ts.map(getIndexInfosOfType(source), function (info) { return info !== enumNumberIndexInfo ? info.type : neverType; }); inferFromTypes(getUnionType(ts.concatenate(propTypes, indexTypes)), getTemplateTypeFromMappedType(target)); return true; } return false; } function inferToConditionalType(source, target) { if (source.flags & 16777216 /* TypeFlags.Conditional */) { inferFromTypes(source.checkType, target.checkType); inferFromTypes(source.extendsType, target.extendsType); inferFromTypes(getTrueTypeFromConditionalType(source), getTrueTypeFromConditionalType(target)); inferFromTypes(getFalseTypeFromConditionalType(source), getFalseTypeFromConditionalType(target)); } else { var savePriority = priority; priority |= contravariant ? 64 /* InferencePriority.ContravariantConditional */ : 0; var targetTypes = [getTrueTypeFromConditionalType(target), getFalseTypeFromConditionalType(target)]; inferToMultipleTypes(source, targetTypes, target.flags); priority = savePriority; } } function inferToTemplateLiteralType(source, target) { var matches = inferTypesFromTemplateLiteralType(source, target); var types = target.types; // When the target template literal contains only placeholders (meaning that inference is intended to extract // single characters and remainder strings) and inference fails to produce matches, we want to infer 'never' for // each placeholder such that instantiation with the inferred value(s) produces 'never', a type for which an // assignment check will fail. If we make no inferences, we'll likely end up with the constraint 'string' which, // upon instantiation, would collapse all the placeholders to just 'string', and an assignment check might // succeed. That would be a pointless and confusing outcome. if (matches || ts.every(target.texts, function (s) { return s.length === 0; })) { for (var i = 0; i < types.length; i++) { inferFromTypes(matches ? matches[i] : neverType, types[i]); } } } function inferFromObjectTypes(source, target) { if (ts.getObjectFlags(source) & 4 /* ObjectFlags.Reference */ && ts.getObjectFlags(target) & 4 /* ObjectFlags.Reference */ && (source.target === target.target || isArrayType(source) && isArrayType(target))) { // If source and target are references to the same generic type, infer from type arguments inferFromTypeArguments(getTypeArguments(source), getTypeArguments(target), getVariances(source.target)); return; } if (isGenericMappedType(source) && isGenericMappedType(target)) { // The source and target types are generic types { [P in S]: X } and { [P in T]: Y }, so we infer // from S to T and from X to Y. inferFromTypes(getConstraintTypeFromMappedType(source), getConstraintTypeFromMappedType(target)); inferFromTypes(getTemplateTypeFromMappedType(source), getTemplateTypeFromMappedType(target)); var sourceNameType = getNameTypeFromMappedType(source); var targetNameType = getNameTypeFromMappedType(target); if (sourceNameType && targetNameType) inferFromTypes(sourceNameType, targetNameType); } if (ts.getObjectFlags(target) & 32 /* ObjectFlags.Mapped */ && !target.declaration.nameType) { var constraintType = getConstraintTypeFromMappedType(target); if (inferToMappedType(source, target, constraintType)) { return; } } // Infer from the members of source and target only if the two types are possibly related if (!typesDefinitelyUnrelated(source, target)) { if (isArrayOrTupleType(source)) { if (isTupleType(target)) { var sourceArity = getTypeReferenceArity(source); var targetArity = getTypeReferenceArity(target); var elementTypes = getTypeArguments(target); var elementFlags = target.target.elementFlags; // When source and target are tuple types with the same structure (fixed, variadic, and rest are matched // to the same kind in each position), simply infer between the element types. if (isTupleType(source) && isTupleTypeStructureMatching(source, target)) { for (var i = 0; i < targetArity; i++) { inferFromTypes(getTypeArguments(source)[i], elementTypes[i]); } return; } var startLength = isTupleType(source) ? Math.min(source.target.fixedLength, target.target.fixedLength) : 0; var endLength = Math.min(isTupleType(source) ? getEndElementCount(source.target, 3 /* ElementFlags.Fixed */) : 0, target.target.hasRestElement ? getEndElementCount(target.target, 3 /* ElementFlags.Fixed */) : 0); // Infer between starting fixed elements. for (var i = 0; i < startLength; i++) { inferFromTypes(getTypeArguments(source)[i], elementTypes[i]); } if (!isTupleType(source) || sourceArity - startLength - endLength === 1 && source.target.elementFlags[startLength] & 4 /* ElementFlags.Rest */) { // Single rest element remains in source, infer from that to every element in target var restType = getTypeArguments(source)[startLength]; for (var i = startLength; i < targetArity - endLength; i++) { inferFromTypes(elementFlags[i] & 8 /* ElementFlags.Variadic */ ? createArrayType(restType) : restType, elementTypes[i]); } } else { var middleLength = targetArity - startLength - endLength; if (middleLength === 2 && elementFlags[startLength] & elementFlags[startLength + 1] & 8 /* ElementFlags.Variadic */ && isTupleType(source)) { // Middle of target is [...T, ...U] and source is tuple type var targetInfo = getInferenceInfoForType(elementTypes[startLength]); if (targetInfo && targetInfo.impliedArity !== undefined) { // Infer slices from source based on implied arity of T. inferFromTypes(sliceTupleType(source, startLength, endLength + sourceArity - targetInfo.impliedArity), elementTypes[startLength]); inferFromTypes(sliceTupleType(source, startLength + targetInfo.impliedArity, endLength), elementTypes[startLength + 1]); } } else if (middleLength === 1 && elementFlags[startLength] & 8 /* ElementFlags.Variadic */) { // Middle of target is exactly one variadic element. Infer the slice between the fixed parts in the source. // If target ends in optional element(s), make a lower priority a speculative inference. var endsInOptional = target.target.elementFlags[targetArity - 1] & 2 /* ElementFlags.Optional */; var sourceSlice = isTupleType(source) ? sliceTupleType(source, startLength, endLength) : createArrayType(getTypeArguments(source)[0]); inferWithPriority(sourceSlice, elementTypes[startLength], endsInOptional ? 2 /* InferencePriority.SpeculativeTuple */ : 0); } else if (middleLength === 1 && elementFlags[startLength] & 4 /* ElementFlags.Rest */) { // Middle of target is exactly one rest element. If middle of source is not empty, infer union of middle element types. var restType = isTupleType(source) ? getElementTypeOfSliceOfTupleType(source, startLength, endLength) : getTypeArguments(source)[0]; if (restType) { inferFromTypes(restType, elementTypes[startLength]); } } } // Infer between ending fixed elements for (var i = 0; i < endLength; i++) { inferFromTypes(getTypeArguments(source)[sourceArity - i - 1], elementTypes[targetArity - i - 1]); } return; } if (isArrayType(target)) { inferFromIndexTypes(source, target); return; } } inferFromProperties(source, target); inferFromSignatures(source, target, 0 /* SignatureKind.Call */); inferFromSignatures(source, target, 1 /* SignatureKind.Construct */); inferFromIndexTypes(source, target); } } function inferFromProperties(source, target) { var properties = getPropertiesOfObjectType(target); for (var _i = 0, properties_3 = properties; _i < properties_3.length; _i++) { var targetProp = properties_3[_i]; var sourceProp = getPropertyOfType(source, targetProp.escapedName); if (sourceProp && !ts.some(sourceProp.declarations, hasSkipDirectInferenceFlag)) { inferFromTypes(getTypeOfSymbol(sourceProp), getTypeOfSymbol(targetProp)); } } } function inferFromSignatures(source, target, kind) { var sourceSignatures = getSignaturesOfType(source, kind); var targetSignatures = getSignaturesOfType(target, kind); var sourceLen = sourceSignatures.length; var targetLen = targetSignatures.length; var len = sourceLen < targetLen ? sourceLen : targetLen; var skipParameters = !!(ts.getObjectFlags(source) & 262144 /* ObjectFlags.NonInferrableType */); for (var i = 0; i < len; i++) { inferFromSignature(getBaseSignature(sourceSignatures[sourceLen - len + i]), getErasedSignature(targetSignatures[targetLen - len + i]), skipParameters); } } function inferFromSignature(source, target, skipParameters) { if (!skipParameters) { var saveBivariant = bivariant; var kind = target.declaration ? target.declaration.kind : 0 /* SyntaxKind.Unknown */; // Once we descend into a bivariant signature we remain bivariant for all nested inferences bivariant = bivariant || kind === 169 /* SyntaxKind.MethodDeclaration */ || kind === 168 /* SyntaxKind.MethodSignature */ || kind === 171 /* SyntaxKind.Constructor */; applyToParameterTypes(source, target, inferFromContravariantTypes); bivariant = saveBivariant; } applyToReturnTypes(source, target, inferFromTypes); } function inferFromIndexTypes(source, target) { // Inferences across mapped type index signatures are pretty much the same a inferences to homomorphic variables var priority = (ts.getObjectFlags(source) & ts.getObjectFlags(target) & 32 /* ObjectFlags.Mapped */) ? 8 /* InferencePriority.HomomorphicMappedType */ : 0; var indexInfos = getIndexInfosOfType(target); if (isObjectTypeWithInferableIndex(source)) { for (var _i = 0, indexInfos_6 = indexInfos; _i < indexInfos_6.length; _i++) { var targetInfo = indexInfos_6[_i]; var propTypes = []; for (var _a = 0, _b = getPropertiesOfType(source); _a < _b.length; _a++) { var prop = _b[_a]; if (isApplicableIndexType(getLiteralTypeFromProperty(prop, 8576 /* TypeFlags.StringOrNumberLiteralOrUnique */), targetInfo.keyType)) { var propType = getTypeOfSymbol(prop); propTypes.push(prop.flags & 16777216 /* SymbolFlags.Optional */ ? removeMissingOrUndefinedType(propType) : propType); } } for (var _c = 0, _d = getIndexInfosOfType(source); _c < _d.length; _c++) { var info = _d[_c]; if (isApplicableIndexType(info.keyType, targetInfo.keyType)) { propTypes.push(info.type); } } if (propTypes.length) { inferWithPriority(getUnionType(propTypes), targetInfo.type, priority); } } } for (var _e = 0, indexInfos_7 = indexInfos; _e < indexInfos_7.length; _e++) { var targetInfo = indexInfos_7[_e]; var sourceInfo = getApplicableIndexInfo(source, targetInfo.keyType); if (sourceInfo) { inferWithPriority(sourceInfo.type, targetInfo.type, priority); } } } } function isTypeOrBaseIdenticalTo(s, t) { return exactOptionalPropertyTypes && t === missingType ? s === t : (isTypeIdenticalTo(s, t) || !!(t.flags & 4 /* TypeFlags.String */ && s.flags & 128 /* TypeFlags.StringLiteral */ || t.flags & 8 /* TypeFlags.Number */ && s.flags & 256 /* TypeFlags.NumberLiteral */)); } function isTypeCloselyMatchedBy(s, t) { return !!(s.flags & 524288 /* TypeFlags.Object */ && t.flags & 524288 /* TypeFlags.Object */ && s.symbol && s.symbol === t.symbol || s.aliasSymbol && s.aliasTypeArguments && s.aliasSymbol === t.aliasSymbol); } function hasPrimitiveConstraint(type) { var constraint = getConstraintOfTypeParameter(type); return !!constraint && maybeTypeOfKind(constraint.flags & 16777216 /* TypeFlags.Conditional */ ? getDefaultConstraintOfConditionalType(constraint) : constraint, 131068 /* TypeFlags.Primitive */ | 4194304 /* TypeFlags.Index */ | 134217728 /* TypeFlags.TemplateLiteral */ | 268435456 /* TypeFlags.StringMapping */); } function isObjectLiteralType(type) { return !!(ts.getObjectFlags(type) & 128 /* ObjectFlags.ObjectLiteral */); } function isObjectOrArrayLiteralType(type) { return !!(ts.getObjectFlags(type) & (128 /* ObjectFlags.ObjectLiteral */ | 16384 /* ObjectFlags.ArrayLiteral */)); } function unionObjectAndArrayLiteralCandidates(candidates) { if (candidates.length > 1) { var objectLiterals = ts.filter(candidates, isObjectOrArrayLiteralType); if (objectLiterals.length) { var literalsType = getUnionType(objectLiterals, 2 /* UnionReduction.Subtype */); return ts.concatenate(ts.filter(candidates, function (t) { return !isObjectOrArrayLiteralType(t); }), [literalsType]); } } return candidates; } function getContravariantInference(inference) { return inference.priority & 416 /* InferencePriority.PriorityImpliesCombination */ ? getIntersectionType(inference.contraCandidates) : getCommonSubtype(inference.contraCandidates); } function getCovariantInference(inference, signature) { // Extract all object and array literal types and replace them with a single widened and normalized type. var candidates = unionObjectAndArrayLiteralCandidates(inference.candidates); // We widen inferred literal types if // all inferences were made to top-level occurrences of the type parameter, and // the type parameter has no constraint or its constraint includes no primitive or literal types, and // the type parameter was fixed during inference or does not occur at top-level in the return type. var primitiveConstraint = hasPrimitiveConstraint(inference.typeParameter); var widenLiteralTypes = !primitiveConstraint && inference.topLevel && (inference.isFixed || !isTypeParameterAtTopLevel(getReturnTypeOfSignature(signature), inference.typeParameter)); var baseCandidates = primitiveConstraint ? ts.sameMap(candidates, getRegularTypeOfLiteralType) : widenLiteralTypes ? ts.sameMap(candidates, getWidenedLiteralType) : candidates; // If all inferences were made from a position that implies a combined result, infer a union type. // Otherwise, infer a common supertype. var unwidenedType = inference.priority & 416 /* InferencePriority.PriorityImpliesCombination */ ? getUnionType(baseCandidates, 2 /* UnionReduction.Subtype */) : getCommonSupertype(baseCandidates); return getWidenedType(unwidenedType); } function getInferredType(context, index) { var inference = context.inferences[index]; if (!inference.inferredType) { var inferredType = void 0; var signature = context.signature; if (signature) { var inferredCovariantType_1 = inference.candidates ? getCovariantInference(inference, signature) : undefined; if (inference.contraCandidates) { // If we have both co- and contra-variant inferences, we prefer the contra-variant inference // unless the co-variant inference is a subtype of some contra-variant inference and not 'never'. inferredType = inferredCovariantType_1 && !(inferredCovariantType_1.flags & 131072 /* TypeFlags.Never */) && ts.some(inference.contraCandidates, function (t) { return isTypeSubtypeOf(inferredCovariantType_1, t); }) ? inferredCovariantType_1 : getContravariantInference(inference); } else if (inferredCovariantType_1) { inferredType = inferredCovariantType_1; } else if (context.flags & 1 /* InferenceFlags.NoDefault */) { // We use silentNeverType as the wildcard that signals no inferences. inferredType = silentNeverType; } else { // Infer either the default or the empty object type when no inferences were // made. It is important to remember that in this case, inference still // succeeds, meaning there is no error for not having inference candidates. An // inference error only occurs when there are *conflicting* candidates, i.e. // candidates with no common supertype. var defaultType = getDefaultFromTypeParameter(inference.typeParameter); if (defaultType) { // Instantiate the default type. Any forward reference to a type // parameter should be instantiated to the empty object type. inferredType = instantiateType(defaultType, mergeTypeMappers(createBackreferenceMapper(context, index), context.nonFixingMapper)); } } } else { inferredType = getTypeFromInference(inference); } inference.inferredType = inferredType || getDefaultTypeArgumentType(!!(context.flags & 2 /* InferenceFlags.AnyDefault */)); var constraint = getConstraintOfTypeParameter(inference.typeParameter); if (constraint) { var instantiatedConstraint = instantiateType(constraint, context.nonFixingMapper); if (!inferredType || !context.compareTypes(inferredType, getTypeWithThisArgument(instantiatedConstraint, inferredType))) { inference.inferredType = inferredType = instantiatedConstraint; } } } return inference.inferredType; } function getDefaultTypeArgumentType(isInJavaScriptFile) { return isInJavaScriptFile ? anyType : unknownType; } function getInferredTypes(context) { var result = []; for (var i = 0; i < context.inferences.length; i++) { result.push(getInferredType(context, i)); } return result; } // EXPRESSION TYPE CHECKING function getCannotFindNameDiagnosticForName(node) { switch (node.escapedText) { case "document": case "console": return ts.Diagnostics.Cannot_find_name_0_Do_you_need_to_change_your_target_library_Try_changing_the_lib_compiler_option_to_include_dom; case "$": return compilerOptions.types ? ts.Diagnostics.Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_jQuery_Try_npm_i_save_dev_types_Slashjquery_and_then_add_jquery_to_the_types_field_in_your_tsconfig : ts.Diagnostics.Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_jQuery_Try_npm_i_save_dev_types_Slashjquery; case "describe": case "suite": case "it": case "test": return compilerOptions.types ? ts.Diagnostics.Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_a_test_runner_Try_npm_i_save_dev_types_Slashjest_or_npm_i_save_dev_types_Slashmocha_and_then_add_jest_or_mocha_to_the_types_field_in_your_tsconfig : ts.Diagnostics.Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_a_test_runner_Try_npm_i_save_dev_types_Slashjest_or_npm_i_save_dev_types_Slashmocha; case "process": case "require": case "Buffer": case "module": return compilerOptions.types ? ts.Diagnostics.Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_node_Try_npm_i_save_dev_types_Slashnode_and_then_add_node_to_the_types_field_in_your_tsconfig : ts.Diagnostics.Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_node_Try_npm_i_save_dev_types_Slashnode; case "Map": case "Set": case "Promise": case "Symbol": case "WeakMap": case "WeakSet": case "Iterator": case "AsyncIterator": case "SharedArrayBuffer": case "Atomics": case "AsyncIterable": case "AsyncIterableIterator": case "AsyncGenerator": case "AsyncGeneratorFunction": case "BigInt": case "Reflect": case "BigInt64Array": case "BigUint64Array": return ts.Diagnostics.Cannot_find_name_0_Do_you_need_to_change_your_target_library_Try_changing_the_lib_compiler_option_to_1_or_later; case "await": if (ts.isCallExpression(node.parent)) { return ts.Diagnostics.Cannot_find_name_0_Did_you_mean_to_write_this_in_an_async_function; } // falls through default: if (node.parent.kind === 297 /* SyntaxKind.ShorthandPropertyAssignment */) { return ts.Diagnostics.No_value_exists_in_scope_for_the_shorthand_property_0_Either_declare_one_or_provide_an_initializer; } else { return ts.Diagnostics.Cannot_find_name_0; } } } function getResolvedSymbol(node) { var links = getNodeLinks(node); if (!links.resolvedSymbol) { links.resolvedSymbol = !ts.nodeIsMissing(node) && resolveName(node, node.escapedText, 111551 /* SymbolFlags.Value */ | 1048576 /* SymbolFlags.ExportValue */, getCannotFindNameDiagnosticForName(node), node, !ts.isWriteOnlyAccess(node), /*excludeGlobals*/ false) || unknownSymbol; } return links.resolvedSymbol; } function isInTypeQuery(node) { // TypeScript 1.0 spec (April 2014): 3.6.3 // A type query consists of the keyword typeof followed by an expression. // The expression is restricted to a single identifier or a sequence of identifiers separated by periods return !!ts.findAncestor(node, function (n) { return n.kind === 181 /* SyntaxKind.TypeQuery */ ? true : n.kind === 79 /* SyntaxKind.Identifier */ || n.kind === 161 /* SyntaxKind.QualifiedName */ ? false : "quit"; }); } // Return the flow cache key for a "dotted name" (i.e. a sequence of identifiers // separated by dots). The key consists of the id of the symbol referenced by the // leftmost identifier followed by zero or more property names separated by dots. // The result is undefined if the reference isn't a dotted name. function getFlowCacheKey(node, declaredType, initialType, flowContainer) { switch (node.kind) { case 79 /* SyntaxKind.Identifier */: if (!ts.isThisInTypeQuery(node)) { var symbol = getResolvedSymbol(node); return symbol !== unknownSymbol ? "".concat(flowContainer ? getNodeId(flowContainer) : "-1", "|").concat(getTypeId(declaredType), "|").concat(getTypeId(initialType), "|").concat(getSymbolId(symbol)) : undefined; } // falls through case 108 /* SyntaxKind.ThisKeyword */: return "0|".concat(flowContainer ? getNodeId(flowContainer) : "-1", "|").concat(getTypeId(declaredType), "|").concat(getTypeId(initialType)); case 230 /* SyntaxKind.NonNullExpression */: case 212 /* SyntaxKind.ParenthesizedExpression */: return getFlowCacheKey(node.expression, declaredType, initialType, flowContainer); case 161 /* SyntaxKind.QualifiedName */: var left = getFlowCacheKey(node.left, declaredType, initialType, flowContainer); return left && left + "." + node.right.escapedText; case 206 /* SyntaxKind.PropertyAccessExpression */: case 207 /* SyntaxKind.ElementAccessExpression */: var propName = getAccessedPropertyName(node); if (propName !== undefined) { var key = getFlowCacheKey(node.expression, declaredType, initialType, flowContainer); return key && key + "." + propName; } } return undefined; } function isMatchingReference(source, target) { switch (target.kind) { case 212 /* SyntaxKind.ParenthesizedExpression */: case 230 /* SyntaxKind.NonNullExpression */: return isMatchingReference(source, target.expression); case 221 /* SyntaxKind.BinaryExpression */: return (ts.isAssignmentExpression(target) && isMatchingReference(source, target.left)) || (ts.isBinaryExpression(target) && target.operatorToken.kind === 27 /* SyntaxKind.CommaToken */ && isMatchingReference(source, target.right)); } switch (source.kind) { case 231 /* SyntaxKind.MetaProperty */: return target.kind === 231 /* SyntaxKind.MetaProperty */ && source.keywordToken === target.keywordToken && source.name.escapedText === target.name.escapedText; case 79 /* SyntaxKind.Identifier */: case 80 /* SyntaxKind.PrivateIdentifier */: return ts.isThisInTypeQuery(source) ? target.kind === 108 /* SyntaxKind.ThisKeyword */ : target.kind === 79 /* SyntaxKind.Identifier */ && getResolvedSymbol(source) === getResolvedSymbol(target) || (target.kind === 254 /* SyntaxKind.VariableDeclaration */ || target.kind === 203 /* SyntaxKind.BindingElement */) && getExportSymbolOfValueSymbolIfExported(getResolvedSymbol(source)) === getSymbolOfNode(target); case 108 /* SyntaxKind.ThisKeyword */: return target.kind === 108 /* SyntaxKind.ThisKeyword */; case 106 /* SyntaxKind.SuperKeyword */: return target.kind === 106 /* SyntaxKind.SuperKeyword */; case 230 /* SyntaxKind.NonNullExpression */: case 212 /* SyntaxKind.ParenthesizedExpression */: return isMatchingReference(source.expression, target); case 206 /* SyntaxKind.PropertyAccessExpression */: case 207 /* SyntaxKind.ElementAccessExpression */: var sourcePropertyName = getAccessedPropertyName(source); var targetPropertyName = ts.isAccessExpression(target) ? getAccessedPropertyName(target) : undefined; return sourcePropertyName !== undefined && targetPropertyName !== undefined && targetPropertyName === sourcePropertyName && isMatchingReference(source.expression, target.expression); case 161 /* SyntaxKind.QualifiedName */: return ts.isAccessExpression(target) && source.right.escapedText === getAccessedPropertyName(target) && isMatchingReference(source.left, target.expression); case 221 /* SyntaxKind.BinaryExpression */: return (ts.isBinaryExpression(source) && source.operatorToken.kind === 27 /* SyntaxKind.CommaToken */ && isMatchingReference(source.right, target)); } return false; } function getAccessedPropertyName(access) { if (ts.isPropertyAccessExpression(access)) { return access.name.escapedText; } if (ts.isElementAccessExpression(access)) { return tryGetElementAccessExpressionName(access); } if (ts.isBindingElement(access)) { var name = getDestructuringPropertyName(access); return name ? ts.escapeLeadingUnderscores(name) : undefined; } if (ts.isParameter(access)) { return ("" + access.parent.parameters.indexOf(access)); } return undefined; } function tryGetNameFromType(type) { return type.flags & 8192 /* TypeFlags.UniqueESSymbol */ ? type.escapedName : type.flags & 384 /* TypeFlags.StringOrNumberLiteral */ ? ts.escapeLeadingUnderscores("" + type.value) : undefined; } function tryGetElementAccessExpressionName(node) { if (ts.isStringOrNumericLiteralLike(node.argumentExpression)) { return ts.escapeLeadingUnderscores(node.argumentExpression.text); } if (ts.isEntityNameExpression(node.argumentExpression)) { var symbol = resolveEntityName(node.argumentExpression, 111551 /* SymbolFlags.Value */, /*ignoreErrors*/ true); if (!symbol || !isConstVariable(symbol)) return undefined; var declaration = symbol.valueDeclaration; if (declaration === undefined) return undefined; var type = tryGetTypeFromEffectiveTypeNode(declaration); if (type) { var name = tryGetNameFromType(type); if (name !== undefined) { return name; } } if (ts.hasOnlyExpressionInitializer(declaration)) { var initializer = ts.getEffectiveInitializer(declaration); return initializer && tryGetNameFromType(getTypeOfExpression(initializer)); } } return undefined; } function containsMatchingReference(source, target) { while (ts.isAccessExpression(source)) { source = source.expression; if (isMatchingReference(source, target)) { return true; } } return false; } function optionalChainContainsReference(source, target) { while (ts.isOptionalChain(source)) { source = source.expression; if (isMatchingReference(source, target)) { return true; } } return false; } function isDiscriminantProperty(type, name) { if (type && type.flags & 1048576 /* TypeFlags.Union */) { var prop = getUnionOrIntersectionProperty(type, name); if (prop && ts.getCheckFlags(prop) & 2 /* CheckFlags.SyntheticProperty */) { if (prop.isDiscriminantProperty === undefined) { prop.isDiscriminantProperty = (prop.checkFlags & 192 /* CheckFlags.Discriminant */) === 192 /* CheckFlags.Discriminant */ && !isGenericType(getTypeOfSymbol(prop)); } return !!prop.isDiscriminantProperty; } } return false; } function findDiscriminantProperties(sourceProperties, target) { var result; for (var _i = 0, sourceProperties_2 = sourceProperties; _i < sourceProperties_2.length; _i++) { var sourceProperty = sourceProperties_2[_i]; if (isDiscriminantProperty(target, sourceProperty.escapedName)) { if (result) { result.push(sourceProperty); continue; } result = [sourceProperty]; } } return result; } // Given a set of constituent types and a property name, create and return a map keyed by the literal // types of the property by that name in each constituent type. No map is returned if some key property // has a non-literal type or if less than 10 or less than 50% of the constituents have a unique key. // Entries with duplicate keys have unknownType as the value. function mapTypesByKeyProperty(types, name) { var map = new ts.Map(); var count = 0; var _loop_23 = function (type) { if (type.flags & (524288 /* TypeFlags.Object */ | 2097152 /* TypeFlags.Intersection */ | 58982400 /* TypeFlags.InstantiableNonPrimitive */)) { var discriminant = getTypeOfPropertyOfType(type, name); if (discriminant) { if (!isLiteralType(discriminant)) { return { value: undefined }; } var duplicate_1 = false; forEachType(discriminant, function (t) { var id = getTypeId(getRegularTypeOfLiteralType(t)); var existing = map.get(id); if (!existing) { map.set(id, type); } else if (existing !== unknownType) { map.set(id, unknownType); duplicate_1 = true; } }); if (!duplicate_1) count++; } } }; for (var _i = 0, types_16 = types; _i < types_16.length; _i++) { var type = types_16[_i]; var state_9 = _loop_23(type); if (typeof state_9 === "object") return state_9.value; } return count >= 10 && count * 2 >= types.length ? map : undefined; } // Return the name of a discriminant property for which it was possible and feasible to construct a map of // constituent types keyed by the literal types of the property by that name in each constituent type. function getKeyPropertyName(unionType) { var types = unionType.types; // We only construct maps for unions with many non-primitive constituents. if (types.length < 10 || ts.getObjectFlags(unionType) & 32768 /* ObjectFlags.PrimitiveUnion */ || ts.countWhere(types, function (t) { return !!(t.flags & (524288 /* TypeFlags.Object */ | 58982400 /* TypeFlags.InstantiableNonPrimitive */)); }) < 10) { return undefined; } if (unionType.keyPropertyName === undefined) { // The candidate key property name is the name of the first property with a unit type in one of the // constituent types. var keyPropertyName = ts.forEach(types, function (t) { return t.flags & (524288 /* TypeFlags.Object */ | 58982400 /* TypeFlags.InstantiableNonPrimitive */) ? ts.forEach(getPropertiesOfType(t), function (p) { return isUnitType(getTypeOfSymbol(p)) ? p.escapedName : undefined; }) : undefined; }); var mapByKeyProperty = keyPropertyName && mapTypesByKeyProperty(types, keyPropertyName); unionType.keyPropertyName = mapByKeyProperty ? keyPropertyName : ""; unionType.constituentMap = mapByKeyProperty; } return unionType.keyPropertyName.length ? unionType.keyPropertyName : undefined; } // Given a union type for which getKeyPropertyName returned a non-undefined result, return the constituent // that corresponds to the given key type for that property name. function getConstituentTypeForKeyType(unionType, keyType) { var _a; var result = (_a = unionType.constituentMap) === null || _a === void 0 ? void 0 : _a.get(getTypeId(getRegularTypeOfLiteralType(keyType))); return result !== unknownType ? result : undefined; } function getMatchingUnionConstituentForType(unionType, type) { var keyPropertyName = getKeyPropertyName(unionType); var propType = keyPropertyName && getTypeOfPropertyOfType(type, keyPropertyName); return propType && getConstituentTypeForKeyType(unionType, propType); } function getMatchingUnionConstituentForObjectLiteral(unionType, node) { var keyPropertyName = getKeyPropertyName(unionType); var propNode = keyPropertyName && ts.find(node.properties, function (p) { return p.symbol && p.kind === 296 /* SyntaxKind.PropertyAssignment */ && p.symbol.escapedName === keyPropertyName && isPossiblyDiscriminantValue(p.initializer); }); var propType = propNode && getContextFreeTypeOfExpression(propNode.initializer); return propType && getConstituentTypeForKeyType(unionType, propType); } function isOrContainsMatchingReference(source, target) { return isMatchingReference(source, target) || containsMatchingReference(source, target); } function hasMatchingArgument(expression, reference) { if (expression.arguments) { for (var _i = 0, _a = expression.arguments; _i < _a.length; _i++) { var argument = _a[_i]; if (isOrContainsMatchingReference(reference, argument)) { return true; } } } if (expression.expression.kind === 206 /* SyntaxKind.PropertyAccessExpression */ && isOrContainsMatchingReference(reference, expression.expression.expression)) { return true; } return false; } function getFlowNodeId(flow) { if (!flow.id || flow.id < 0) { flow.id = nextFlowId; nextFlowId++; } return flow.id; } function typeMaybeAssignableTo(source, target) { if (!(source.flags & 1048576 /* TypeFlags.Union */)) { return isTypeAssignableTo(source, target); } for (var _i = 0, _a = source.types; _i < _a.length; _i++) { var t = _a[_i]; if (isTypeAssignableTo(t, target)) { return true; } } return false; } // Remove those constituent types of declaredType to which no constituent type of assignedType is assignable. // For example, when a variable of type number | string | boolean is assigned a value of type number | boolean, // we remove type string. function getAssignmentReducedType(declaredType, assignedType) { if (declaredType !== assignedType) { if (assignedType.flags & 131072 /* TypeFlags.Never */) { return assignedType; } var reducedType = filterType(declaredType, function (t) { return typeMaybeAssignableTo(assignedType, t); }); if (assignedType.flags & 512 /* TypeFlags.BooleanLiteral */ && isFreshLiteralType(assignedType)) { reducedType = mapType(reducedType, getFreshTypeOfLiteralType); // Ensure that if the assignment is a fresh type, that we narrow to fresh types } // Our crude heuristic produces an invalid result in some cases: see GH#26130. // For now, when that happens, we give up and don't narrow at all. (This also // means we'll never narrow for erroneous assignments where the assigned type // is not assignable to the declared type.) if (isTypeAssignableTo(assignedType, reducedType)) { return reducedType; } } return declaredType; } function isFunctionObjectType(type) { // We do a quick check for a "bind" property before performing the more expensive subtype // check. This gives us a quicker out in the common case where an object type is not a function. var resolved = resolveStructuredTypeMembers(type); return !!(resolved.callSignatures.length || resolved.constructSignatures.length || resolved.members.get("bind") && isTypeSubtypeOf(type, globalFunctionType)); } function getTypeFacts(type, ignoreObjects) { if (ignoreObjects === void 0) { ignoreObjects = false; } var flags = type.flags; if (flags & 4 /* TypeFlags.String */) { return strictNullChecks ? 16317953 /* TypeFacts.StringStrictFacts */ : 16776705 /* TypeFacts.StringFacts */; } if (flags & 128 /* TypeFlags.StringLiteral */) { var isEmpty = type.value === ""; return strictNullChecks ? isEmpty ? 12123649 /* TypeFacts.EmptyStringStrictFacts */ : 7929345 /* TypeFacts.NonEmptyStringStrictFacts */ : isEmpty ? 12582401 /* TypeFacts.EmptyStringFacts */ : 16776705 /* TypeFacts.NonEmptyStringFacts */; } if (flags & (8 /* TypeFlags.Number */ | 32 /* TypeFlags.Enum */)) { return strictNullChecks ? 16317698 /* TypeFacts.NumberStrictFacts */ : 16776450 /* TypeFacts.NumberFacts */; } if (flags & 256 /* TypeFlags.NumberLiteral */) { var isZero = type.value === 0; return strictNullChecks ? isZero ? 12123394 /* TypeFacts.ZeroNumberStrictFacts */ : 7929090 /* TypeFacts.NonZeroNumberStrictFacts */ : isZero ? 12582146 /* TypeFacts.ZeroNumberFacts */ : 16776450 /* TypeFacts.NonZeroNumberFacts */; } if (flags & 64 /* TypeFlags.BigInt */) { return strictNullChecks ? 16317188 /* TypeFacts.BigIntStrictFacts */ : 16775940 /* TypeFacts.BigIntFacts */; } if (flags & 2048 /* TypeFlags.BigIntLiteral */) { var isZero = isZeroBigInt(type); return strictNullChecks ? isZero ? 12122884 /* TypeFacts.ZeroBigIntStrictFacts */ : 7928580 /* TypeFacts.NonZeroBigIntStrictFacts */ : isZero ? 12581636 /* TypeFacts.ZeroBigIntFacts */ : 16775940 /* TypeFacts.NonZeroBigIntFacts */; } if (flags & 16 /* TypeFlags.Boolean */) { return strictNullChecks ? 16316168 /* TypeFacts.BooleanStrictFacts */ : 16774920 /* TypeFacts.BooleanFacts */; } if (flags & 528 /* TypeFlags.BooleanLike */) { return strictNullChecks ? (type === falseType || type === regularFalseType) ? 12121864 /* TypeFacts.FalseStrictFacts */ : 7927560 /* TypeFacts.TrueStrictFacts */ : (type === falseType || type === regularFalseType) ? 12580616 /* TypeFacts.FalseFacts */ : 16774920 /* TypeFacts.TrueFacts */; } if (flags & 524288 /* TypeFlags.Object */) { if (ignoreObjects) { return 16768959 /* TypeFacts.AndFactsMask */; // This is the identity element for computing type facts of intersection. } return ts.getObjectFlags(type) & 16 /* ObjectFlags.Anonymous */ && isEmptyObjectType(type) ? strictNullChecks ? 16318463 /* TypeFacts.EmptyObjectStrictFacts */ : 16777215 /* TypeFacts.EmptyObjectFacts */ : isFunctionObjectType(type) ? strictNullChecks ? 7880640 /* TypeFacts.FunctionStrictFacts */ : 16728000 /* TypeFacts.FunctionFacts */ : strictNullChecks ? 7888800 /* TypeFacts.ObjectStrictFacts */ : 16736160 /* TypeFacts.ObjectFacts */; } if (flags & (16384 /* TypeFlags.Void */ | 32768 /* TypeFlags.Undefined */)) { return 9830144 /* TypeFacts.UndefinedFacts */; } if (flags & 65536 /* TypeFlags.Null */) { return 9363232 /* TypeFacts.NullFacts */; } if (flags & 12288 /* TypeFlags.ESSymbolLike */) { return strictNullChecks ? 7925520 /* TypeFacts.SymbolStrictFacts */ : 16772880 /* TypeFacts.SymbolFacts */; } if (flags & 67108864 /* TypeFlags.NonPrimitive */) { return strictNullChecks ? 7888800 /* TypeFacts.ObjectStrictFacts */ : 16736160 /* TypeFacts.ObjectFacts */; } if (flags & 131072 /* TypeFlags.Never */) { return 0 /* TypeFacts.None */; } if (flags & 465829888 /* TypeFlags.Instantiable */) { return !isPatternLiteralType(type) ? getTypeFacts(getBaseConstraintOfType(type) || unknownType, ignoreObjects) : strictNullChecks ? 7929345 /* TypeFacts.NonEmptyStringStrictFacts */ : 16776705 /* TypeFacts.NonEmptyStringFacts */; } if (flags & 1048576 /* TypeFlags.Union */) { return ts.reduceLeft(type.types, function (facts, t) { return facts | getTypeFacts(t, ignoreObjects); }, 0 /* TypeFacts.None */); } if (flags & 2097152 /* TypeFlags.Intersection */) { // When an intersection contains a primitive type we ignore object type constituents as they are // presumably type tags. For example, in string & { __kind__: "name" } we ignore the object type. ignoreObjects || (ignoreObjects = maybeTypeOfKind(type, 131068 /* TypeFlags.Primitive */)); return getIntersectionTypeFacts(type, ignoreObjects); } return 16777215 /* TypeFacts.All */; } function getIntersectionTypeFacts(type, ignoreObjects) { // When computing the type facts of an intersection type, certain type facts are computed as `and` // and others are computed as `or`. var oredFacts = 0 /* TypeFacts.None */; var andedFacts = 16777215 /* TypeFacts.All */; for (var _i = 0, _a = type.types; _i < _a.length; _i++) { var t = _a[_i]; var f = getTypeFacts(t, ignoreObjects); oredFacts |= f; andedFacts &= f; } return oredFacts & 8256 /* TypeFacts.OrFactsMask */ | andedFacts & 16768959 /* TypeFacts.AndFactsMask */; } function getTypeWithFacts(type, include) { return filterType(type, function (t) { return (getTypeFacts(t) & include) !== 0; }); } function getTypeWithDefault(type, defaultExpression) { return defaultExpression ? getUnionType([getNonUndefinedType(type), getTypeOfExpression(defaultExpression)]) : type; } function getTypeOfDestructuredProperty(type, name) { var _a; var nameType = getLiteralTypeFromPropertyName(name); if (!isTypeUsableAsPropertyName(nameType)) return errorType; var text = getPropertyNameFromType(nameType); return getTypeOfPropertyOfType(type, text) || includeUndefinedInIndexSignature((_a = getApplicableIndexInfoForName(type, text)) === null || _a === void 0 ? void 0 : _a.type) || errorType; } function getTypeOfDestructuredArrayElement(type, index) { return everyType(type, isTupleLikeType) && getTupleElementType(type, index) || includeUndefinedInIndexSignature(checkIteratedTypeOrElementType(65 /* IterationUse.Destructuring */, type, undefinedType, /*errorNode*/ undefined)) || errorType; } function includeUndefinedInIndexSignature(type) { if (!type) return type; return compilerOptions.noUncheckedIndexedAccess ? getUnionType([type, undefinedType]) : type; } function getTypeOfDestructuredSpreadExpression(type) { return createArrayType(checkIteratedTypeOrElementType(65 /* IterationUse.Destructuring */, type, undefinedType, /*errorNode*/ undefined) || errorType); } function getAssignedTypeOfBinaryExpression(node) { var isDestructuringDefaultAssignment = node.parent.kind === 204 /* SyntaxKind.ArrayLiteralExpression */ && isDestructuringAssignmentTarget(node.parent) || node.parent.kind === 296 /* SyntaxKind.PropertyAssignment */ && isDestructuringAssignmentTarget(node.parent.parent); return isDestructuringDefaultAssignment ? getTypeWithDefault(getAssignedType(node), node.right) : getTypeOfExpression(node.right); } function isDestructuringAssignmentTarget(parent) { return parent.parent.kind === 221 /* SyntaxKind.BinaryExpression */ && parent.parent.left === parent || parent.parent.kind === 244 /* SyntaxKind.ForOfStatement */ && parent.parent.initializer === parent; } function getAssignedTypeOfArrayLiteralElement(node, element) { return getTypeOfDestructuredArrayElement(getAssignedType(node), node.elements.indexOf(element)); } function getAssignedTypeOfSpreadExpression(node) { return getTypeOfDestructuredSpreadExpression(getAssignedType(node.parent)); } function getAssignedTypeOfPropertyAssignment(node) { return getTypeOfDestructuredProperty(getAssignedType(node.parent), node.name); } function getAssignedTypeOfShorthandPropertyAssignment(node) { return getTypeWithDefault(getAssignedTypeOfPropertyAssignment(node), node.objectAssignmentInitializer); } function getAssignedType(node) { var parent = node.parent; switch (parent.kind) { case 243 /* SyntaxKind.ForInStatement */: return stringType; case 244 /* SyntaxKind.ForOfStatement */: return checkRightHandSideOfForOf(parent) || errorType; case 221 /* SyntaxKind.BinaryExpression */: return getAssignedTypeOfBinaryExpression(parent); case 215 /* SyntaxKind.DeleteExpression */: return undefinedType; case 204 /* SyntaxKind.ArrayLiteralExpression */: return getAssignedTypeOfArrayLiteralElement(parent, node); case 225 /* SyntaxKind.SpreadElement */: return getAssignedTypeOfSpreadExpression(parent); case 296 /* SyntaxKind.PropertyAssignment */: return getAssignedTypeOfPropertyAssignment(parent); case 297 /* SyntaxKind.ShorthandPropertyAssignment */: return getAssignedTypeOfShorthandPropertyAssignment(parent); } return errorType; } function getInitialTypeOfBindingElement(node) { var pattern = node.parent; var parentType = getInitialType(pattern.parent); var type = pattern.kind === 201 /* SyntaxKind.ObjectBindingPattern */ ? getTypeOfDestructuredProperty(parentType, node.propertyName || node.name) : !node.dotDotDotToken ? getTypeOfDestructuredArrayElement(parentType, pattern.elements.indexOf(node)) : getTypeOfDestructuredSpreadExpression(parentType); return getTypeWithDefault(type, node.initializer); } function getTypeOfInitializer(node) { // Return the cached type if one is available. If the type of the variable was inferred // from its initializer, we'll already have cached the type. Otherwise we compute it now // without caching such that transient types are reflected. var links = getNodeLinks(node); return links.resolvedType || getTypeOfExpression(node); } function getInitialTypeOfVariableDeclaration(node) { if (node.initializer) { return getTypeOfInitializer(node.initializer); } if (node.parent.parent.kind === 243 /* SyntaxKind.ForInStatement */) { return stringType; } if (node.parent.parent.kind === 244 /* SyntaxKind.ForOfStatement */) { return checkRightHandSideOfForOf(node.parent.parent) || errorType; } return errorType; } function getInitialType(node) { return node.kind === 254 /* SyntaxKind.VariableDeclaration */ ? getInitialTypeOfVariableDeclaration(node) : getInitialTypeOfBindingElement(node); } function isEmptyArrayAssignment(node) { return node.kind === 254 /* SyntaxKind.VariableDeclaration */ && node.initializer && isEmptyArrayLiteral(node.initializer) || node.kind !== 203 /* SyntaxKind.BindingElement */ && node.parent.kind === 221 /* SyntaxKind.BinaryExpression */ && isEmptyArrayLiteral(node.parent.right); } function getReferenceCandidate(node) { switch (node.kind) { case 212 /* SyntaxKind.ParenthesizedExpression */: return getReferenceCandidate(node.expression); case 221 /* SyntaxKind.BinaryExpression */: switch (node.operatorToken.kind) { case 63 /* SyntaxKind.EqualsToken */: case 75 /* SyntaxKind.BarBarEqualsToken */: case 76 /* SyntaxKind.AmpersandAmpersandEqualsToken */: case 77 /* SyntaxKind.QuestionQuestionEqualsToken */: return getReferenceCandidate(node.left); case 27 /* SyntaxKind.CommaToken */: return getReferenceCandidate(node.right); } } return node; } function getReferenceRoot(node) { var parent = node.parent; return parent.kind === 212 /* SyntaxKind.ParenthesizedExpression */ || parent.kind === 221 /* SyntaxKind.BinaryExpression */ && parent.operatorToken.kind === 63 /* SyntaxKind.EqualsToken */ && parent.left === node || parent.kind === 221 /* SyntaxKind.BinaryExpression */ && parent.operatorToken.kind === 27 /* SyntaxKind.CommaToken */ && parent.right === node ? getReferenceRoot(parent) : node; } function getTypeOfSwitchClause(clause) { if (clause.kind === 289 /* SyntaxKind.CaseClause */) { return getRegularTypeOfLiteralType(getTypeOfExpression(clause.expression)); } return neverType; } function getSwitchClauseTypes(switchStatement) { var links = getNodeLinks(switchStatement); if (!links.switchTypes) { links.switchTypes = []; for (var _i = 0, _a = switchStatement.caseBlock.clauses; _i < _a.length; _i++) { var clause = _a[_i]; links.switchTypes.push(getTypeOfSwitchClause(clause)); } } return links.switchTypes; } function getSwitchClauseTypeOfWitnesses(switchStatement, retainDefault) { var witnesses = []; for (var _i = 0, _a = switchStatement.caseBlock.clauses; _i < _a.length; _i++) { var clause = _a[_i]; if (clause.kind === 289 /* SyntaxKind.CaseClause */) { if (ts.isStringLiteralLike(clause.expression)) { witnesses.push(clause.expression.text); continue; } return ts.emptyArray; } if (retainDefault) witnesses.push(/*explicitDefaultStatement*/ undefined); } return witnesses; } function eachTypeContainedIn(source, types) { return source.flags & 1048576 /* TypeFlags.Union */ ? !ts.forEach(source.types, function (t) { return !ts.contains(types, t); }) : ts.contains(types, source); } function isTypeSubsetOf(source, target) { return source === target || target.flags & 1048576 /* TypeFlags.Union */ && isTypeSubsetOfUnion(source, target); } function isTypeSubsetOfUnion(source, target) { if (source.flags & 1048576 /* TypeFlags.Union */) { for (var _i = 0, _a = source.types; _i < _a.length; _i++) { var t = _a[_i]; if (!containsType(target.types, t)) { return false; } } return true; } if (source.flags & 1024 /* TypeFlags.EnumLiteral */ && getBaseTypeOfEnumLiteralType(source) === target) { return true; } return containsType(target.types, source); } function forEachType(type, f) { return type.flags & 1048576 /* TypeFlags.Union */ ? ts.forEach(type.types, f) : f(type); } function someType(type, f) { return type.flags & 1048576 /* TypeFlags.Union */ ? ts.some(type.types, f) : f(type); } function everyType(type, f) { return type.flags & 1048576 /* TypeFlags.Union */ ? ts.every(type.types, f) : f(type); } function everyContainedType(type, f) { return type.flags & 3145728 /* TypeFlags.UnionOrIntersection */ ? ts.every(type.types, f) : f(type); } function filterType(type, f) { if (type.flags & 1048576 /* TypeFlags.Union */) { var types = type.types; var filtered = ts.filter(types, f); if (filtered === types) { return type; } var origin = type.origin; var newOrigin = void 0; if (origin && origin.flags & 1048576 /* TypeFlags.Union */) { // If the origin type is a (denormalized) union type, filter its non-union constituents. If that ends // up removing a smaller number of types than in the normalized constituent set (meaning some of the // filtered types are within nested unions in the origin), then we can't construct a new origin type. // Otherwise, if we have exactly one type left in the origin set, return that as the filtered type. // Otherwise, construct a new filtered origin type. var originTypes = origin.types; var originFiltered = ts.filter(originTypes, function (t) { return !!(t.flags & 1048576 /* TypeFlags.Union */) || f(t); }); if (originTypes.length - originFiltered.length === types.length - filtered.length) { if (originFiltered.length === 1) { return originFiltered[0]; } newOrigin = createOriginUnionOrIntersectionType(1048576 /* TypeFlags.Union */, originFiltered); } } return getUnionTypeFromSortedList(filtered, type.objectFlags, /*aliasSymbol*/ undefined, /*aliasTypeArguments*/ undefined, newOrigin); } return type.flags & 131072 /* TypeFlags.Never */ || f(type) ? type : neverType; } function removeType(type, targetType) { return filterType(type, function (t) { return t !== targetType; }); } function countTypes(type) { return type.flags & 1048576 /* TypeFlags.Union */ ? type.types.length : 1; } function mapType(type, mapper, noReductions) { if (type.flags & 131072 /* TypeFlags.Never */) { return type; } if (!(type.flags & 1048576 /* TypeFlags.Union */)) { return mapper(type); } var origin = type.origin; var types = origin && origin.flags & 1048576 /* TypeFlags.Union */ ? origin.types : type.types; var mappedTypes; var changed = false; for (var _i = 0, types_17 = types; _i < types_17.length; _i++) { var t = types_17[_i]; var mapped = t.flags & 1048576 /* TypeFlags.Union */ ? mapType(t, mapper, noReductions) : mapper(t); changed || (changed = t !== mapped); if (mapped) { if (!mappedTypes) { mappedTypes = [mapped]; } else { mappedTypes.push(mapped); } } } return changed ? mappedTypes && getUnionType(mappedTypes, noReductions ? 0 /* UnionReduction.None */ : 1 /* UnionReduction.Literal */) : type; } function mapTypeWithAlias(type, mapper, aliasSymbol, aliasTypeArguments) { return type.flags & 1048576 /* TypeFlags.Union */ && aliasSymbol ? getUnionType(ts.map(type.types, mapper), 1 /* UnionReduction.Literal */, aliasSymbol, aliasTypeArguments) : mapType(type, mapper); } function extractTypesOfKind(type, kind) { return filterType(type, function (t) { return (t.flags & kind) !== 0; }); } // Return a new type in which occurrences of the string, number and bigint primitives and placeholder template // literal types in typeWithPrimitives have been replaced with occurrences of compatible and more specific types // from typeWithLiterals. This is essentially a limited form of intersection between the two types. We avoid a // true intersection because it is more costly and, when applied to union types, generates a large number of // types we don't actually care about. function replacePrimitivesWithLiterals(typeWithPrimitives, typeWithLiterals) { if (maybeTypeOfKind(typeWithPrimitives, 4 /* TypeFlags.String */ | 134217728 /* TypeFlags.TemplateLiteral */ | 8 /* TypeFlags.Number */ | 64 /* TypeFlags.BigInt */) && maybeTypeOfKind(typeWithLiterals, 128 /* TypeFlags.StringLiteral */ | 134217728 /* TypeFlags.TemplateLiteral */ | 268435456 /* TypeFlags.StringMapping */ | 256 /* TypeFlags.NumberLiteral */ | 2048 /* TypeFlags.BigIntLiteral */)) { return mapType(typeWithPrimitives, function (t) { return t.flags & 4 /* TypeFlags.String */ ? extractTypesOfKind(typeWithLiterals, 4 /* TypeFlags.String */ | 128 /* TypeFlags.StringLiteral */ | 134217728 /* TypeFlags.TemplateLiteral */ | 268435456 /* TypeFlags.StringMapping */) : isPatternLiteralType(t) && !maybeTypeOfKind(typeWithLiterals, 4 /* TypeFlags.String */ | 134217728 /* TypeFlags.TemplateLiteral */ | 268435456 /* TypeFlags.StringMapping */) ? extractTypesOfKind(typeWithLiterals, 128 /* TypeFlags.StringLiteral */) : t.flags & 8 /* TypeFlags.Number */ ? extractTypesOfKind(typeWithLiterals, 8 /* TypeFlags.Number */ | 256 /* TypeFlags.NumberLiteral */) : t.flags & 64 /* TypeFlags.BigInt */ ? extractTypesOfKind(typeWithLiterals, 64 /* TypeFlags.BigInt */ | 2048 /* TypeFlags.BigIntLiteral */) : t; }); } return typeWithPrimitives; } function isIncomplete(flowType) { return flowType.flags === 0; } function getTypeFromFlowType(flowType) { return flowType.flags === 0 ? flowType.type : flowType; } function createFlowType(type, incomplete) { return incomplete ? { flags: 0, type: type.flags & 131072 /* TypeFlags.Never */ ? silentNeverType : type } : type; } // An evolving array type tracks the element types that have so far been seen in an // 'x.push(value)' or 'x[n] = value' operation along the control flow graph. Evolving // array types are ultimately converted into manifest array types (using getFinalArrayType) // and never escape the getFlowTypeOfReference function. function createEvolvingArrayType(elementType) { var result = createObjectType(256 /* ObjectFlags.EvolvingArray */); result.elementType = elementType; return result; } function getEvolvingArrayType(elementType) { return evolvingArrayTypes[elementType.id] || (evolvingArrayTypes[elementType.id] = createEvolvingArrayType(elementType)); } // When adding evolving array element types we do not perform subtype reduction. Instead, // we defer subtype reduction until the evolving array type is finalized into a manifest // array type. function addEvolvingArrayElementType(evolvingArrayType, node) { var elementType = getRegularTypeOfObjectLiteral(getBaseTypeOfLiteralType(getContextFreeTypeOfExpression(node))); return isTypeSubsetOf(elementType, evolvingArrayType.elementType) ? evolvingArrayType : getEvolvingArrayType(getUnionType([evolvingArrayType.elementType, elementType])); } function createFinalArrayType(elementType) { return elementType.flags & 131072 /* TypeFlags.Never */ ? autoArrayType : createArrayType(elementType.flags & 1048576 /* TypeFlags.Union */ ? getUnionType(elementType.types, 2 /* UnionReduction.Subtype */) : elementType); } // We perform subtype reduction upon obtaining the final array type from an evolving array type. function getFinalArrayType(evolvingArrayType) { return evolvingArrayType.finalArrayType || (evolvingArrayType.finalArrayType = createFinalArrayType(evolvingArrayType.elementType)); } function finalizeEvolvingArrayType(type) { return ts.getObjectFlags(type) & 256 /* ObjectFlags.EvolvingArray */ ? getFinalArrayType(type) : type; } function getElementTypeOfEvolvingArrayType(type) { return ts.getObjectFlags(type) & 256 /* ObjectFlags.EvolvingArray */ ? type.elementType : neverType; } function isEvolvingArrayTypeList(types) { var hasEvolvingArrayType = false; for (var _i = 0, types_18 = types; _i < types_18.length; _i++) { var t = types_18[_i]; if (!(t.flags & 131072 /* TypeFlags.Never */)) { if (!(ts.getObjectFlags(t) & 256 /* ObjectFlags.EvolvingArray */)) { return false; } hasEvolvingArrayType = true; } } return hasEvolvingArrayType; } // Return true if the given node is 'x' in an 'x.length', x.push(value)', 'x.unshift(value)' or // 'x[n] = value' operation, where 'n' is an expression of type any, undefined, or a number-like type. function isEvolvingArrayOperationTarget(node) { var root = getReferenceRoot(node); var parent = root.parent; var isLengthPushOrUnshift = ts.isPropertyAccessExpression(parent) && (parent.name.escapedText === "length" || parent.parent.kind === 208 /* SyntaxKind.CallExpression */ && ts.isIdentifier(parent.name) && ts.isPushOrUnshiftIdentifier(parent.name)); var isElementAssignment = parent.kind === 207 /* SyntaxKind.ElementAccessExpression */ && parent.expression === root && parent.parent.kind === 221 /* SyntaxKind.BinaryExpression */ && parent.parent.operatorToken.kind === 63 /* SyntaxKind.EqualsToken */ && parent.parent.left === parent && !ts.isAssignmentTarget(parent.parent) && isTypeAssignableToKind(getTypeOfExpression(parent.argumentExpression), 296 /* TypeFlags.NumberLike */); return isLengthPushOrUnshift || isElementAssignment; } function isDeclarationWithExplicitTypeAnnotation(node) { return (ts.isVariableDeclaration(node) || ts.isPropertyDeclaration(node) || ts.isPropertySignature(node) || ts.isParameter(node)) && !!(ts.getEffectiveTypeAnnotationNode(node) || ts.isInJSFile(node) && ts.hasInitializer(node) && node.initializer && ts.isFunctionExpressionOrArrowFunction(node.initializer) && ts.getEffectiveReturnTypeNode(node.initializer)); } function getExplicitTypeOfSymbol(symbol, diagnostic) { if (symbol.flags & (16 /* SymbolFlags.Function */ | 8192 /* SymbolFlags.Method */ | 32 /* SymbolFlags.Class */ | 512 /* SymbolFlags.ValueModule */)) { return getTypeOfSymbol(symbol); } if (symbol.flags & (3 /* SymbolFlags.Variable */ | 4 /* SymbolFlags.Property */)) { if (ts.getCheckFlags(symbol) & 262144 /* CheckFlags.Mapped */) { var origin = symbol.syntheticOrigin; if (origin && getExplicitTypeOfSymbol(origin)) { return getTypeOfSymbol(symbol); } } var declaration = symbol.valueDeclaration; if (declaration) { if (isDeclarationWithExplicitTypeAnnotation(declaration)) { return getTypeOfSymbol(symbol); } if (ts.isVariableDeclaration(declaration) && declaration.parent.parent.kind === 244 /* SyntaxKind.ForOfStatement */) { var statement = declaration.parent.parent; var expressionType = getTypeOfDottedName(statement.expression, /*diagnostic*/ undefined); if (expressionType) { var use = statement.awaitModifier ? 15 /* IterationUse.ForAwaitOf */ : 13 /* IterationUse.ForOf */; return checkIteratedTypeOrElementType(use, expressionType, undefinedType, /*errorNode*/ undefined); } } if (diagnostic) { ts.addRelatedInfo(diagnostic, ts.createDiagnosticForNode(declaration, ts.Diagnostics._0_needs_an_explicit_type_annotation, symbolToString(symbol))); } } } } // We require the dotted function name in an assertion expression to be comprised of identifiers // that reference function, method, class or value module symbols; or variable, property or // parameter symbols with declarations that have explicit type annotations. Such references are // resolvable with no possibility of triggering circularities in control flow analysis. function getTypeOfDottedName(node, diagnostic) { if (!(node.flags & 33554432 /* NodeFlags.InWithStatement */)) { switch (node.kind) { case 79 /* SyntaxKind.Identifier */: var symbol = getExportSymbolOfValueSymbolIfExported(getResolvedSymbol(node)); return getExplicitTypeOfSymbol(symbol.flags & 2097152 /* SymbolFlags.Alias */ ? resolveAlias(symbol) : symbol, diagnostic); case 108 /* SyntaxKind.ThisKeyword */: return getExplicitThisType(node); case 106 /* SyntaxKind.SuperKeyword */: return checkSuperExpression(node); case 206 /* SyntaxKind.PropertyAccessExpression */: { var type = getTypeOfDottedName(node.expression, diagnostic); if (type) { var name = node.name; var prop = void 0; if (ts.isPrivateIdentifier(name)) { if (!type.symbol) { return undefined; } prop = getPropertyOfType(type, ts.getSymbolNameForPrivateIdentifier(type.symbol, name.escapedText)); } else { prop = getPropertyOfType(type, name.escapedText); } return prop && getExplicitTypeOfSymbol(prop, diagnostic); } return undefined; } case 212 /* SyntaxKind.ParenthesizedExpression */: return getTypeOfDottedName(node.expression, diagnostic); } } } function getEffectsSignature(node) { var links = getNodeLinks(node); var signature = links.effectsSignature; if (signature === undefined) { // A call expression parented by an expression statement is a potential assertion. Other call // expressions are potential type predicate function calls. In order to avoid triggering // circularities in control flow analysis, we use getTypeOfDottedName when resolving the call // target expression of an assertion. var funcType = void 0; if (node.parent.kind === 238 /* SyntaxKind.ExpressionStatement */) { funcType = getTypeOfDottedName(node.expression, /*diagnostic*/ undefined); } else if (node.expression.kind !== 106 /* SyntaxKind.SuperKeyword */) { if (ts.isOptionalChain(node)) { funcType = checkNonNullType(getOptionalExpressionType(checkExpression(node.expression), node.expression), node.expression); } else { funcType = checkNonNullExpression(node.expression); } } var signatures = getSignaturesOfType(funcType && getApparentType(funcType) || unknownType, 0 /* SignatureKind.Call */); var candidate = signatures.length === 1 && !signatures[0].typeParameters ? signatures[0] : ts.some(signatures, hasTypePredicateOrNeverReturnType) ? getResolvedSignature(node) : undefined; signature = links.effectsSignature = candidate && hasTypePredicateOrNeverReturnType(candidate) ? candidate : unknownSignature; } return signature === unknownSignature ? undefined : signature; } function hasTypePredicateOrNeverReturnType(signature) { return !!(getTypePredicateOfSignature(signature) || signature.declaration && (getReturnTypeFromAnnotation(signature.declaration) || unknownType).flags & 131072 /* TypeFlags.Never */); } function getTypePredicateArgument(predicate, callExpression) { if (predicate.kind === 1 /* TypePredicateKind.Identifier */ || predicate.kind === 3 /* TypePredicateKind.AssertsIdentifier */) { return callExpression.arguments[predicate.parameterIndex]; } var invokedExpression = ts.skipParentheses(callExpression.expression); return ts.isAccessExpression(invokedExpression) ? ts.skipParentheses(invokedExpression.expression) : undefined; } function reportFlowControlError(node) { var block = ts.findAncestor(node, ts.isFunctionOrModuleBlock); var sourceFile = ts.getSourceFileOfNode(node); var span = ts.getSpanOfTokenAtPosition(sourceFile, block.statements.pos); diagnostics.add(ts.createFileDiagnostic(sourceFile, span.start, span.length, ts.Diagnostics.The_containing_function_or_module_body_is_too_large_for_control_flow_analysis)); } function isReachableFlowNode(flow) { var result = isReachableFlowNodeWorker(flow, /*noCacheCheck*/ false); lastFlowNode = flow; lastFlowNodeReachable = result; return result; } function isFalseExpression(expr) { var node = ts.skipParentheses(expr, /*excludeJSDocTypeAssertions*/ true); return node.kind === 95 /* SyntaxKind.FalseKeyword */ || node.kind === 221 /* SyntaxKind.BinaryExpression */ && (node.operatorToken.kind === 55 /* SyntaxKind.AmpersandAmpersandToken */ && (isFalseExpression(node.left) || isFalseExpression(node.right)) || node.operatorToken.kind === 56 /* SyntaxKind.BarBarToken */ && isFalseExpression(node.left) && isFalseExpression(node.right)); } function isReachableFlowNodeWorker(flow, noCacheCheck) { while (true) { if (flow === lastFlowNode) { return lastFlowNodeReachable; } var flags = flow.flags; if (flags & 4096 /* FlowFlags.Shared */) { if (!noCacheCheck) { var id = getFlowNodeId(flow); var reachable = flowNodeReachable[id]; return reachable !== undefined ? reachable : (flowNodeReachable[id] = isReachableFlowNodeWorker(flow, /*noCacheCheck*/ true)); } noCacheCheck = false; } if (flags & (16 /* FlowFlags.Assignment */ | 96 /* FlowFlags.Condition */ | 256 /* FlowFlags.ArrayMutation */)) { flow = flow.antecedent; } else if (flags & 512 /* FlowFlags.Call */) { var signature = getEffectsSignature(flow.node); if (signature) { var predicate = getTypePredicateOfSignature(signature); if (predicate && predicate.kind === 3 /* TypePredicateKind.AssertsIdentifier */ && !predicate.type) { var predicateArgument = flow.node.arguments[predicate.parameterIndex]; if (predicateArgument && isFalseExpression(predicateArgument)) { return false; } } if (getReturnTypeOfSignature(signature).flags & 131072 /* TypeFlags.Never */) { return false; } } flow = flow.antecedent; } else if (flags & 4 /* FlowFlags.BranchLabel */) { // A branching point is reachable if any branch is reachable. return ts.some(flow.antecedents, function (f) { return isReachableFlowNodeWorker(f, /*noCacheCheck*/ false); }); } else if (flags & 8 /* FlowFlags.LoopLabel */) { var antecedents = flow.antecedents; if (antecedents === undefined || antecedents.length === 0) { return false; } // A loop is reachable if the control flow path that leads to the top is reachable. flow = antecedents[0]; } else if (flags & 128 /* FlowFlags.SwitchClause */) { // The control flow path representing an unmatched value in a switch statement with // no default clause is unreachable if the switch statement is exhaustive. if (flow.clauseStart === flow.clauseEnd && isExhaustiveSwitchStatement(flow.switchStatement)) { return false; } flow = flow.antecedent; } else if (flags & 1024 /* FlowFlags.ReduceLabel */) { // Cache is unreliable once we start adjusting labels lastFlowNode = undefined; var target = flow.target; var saveAntecedents = target.antecedents; target.antecedents = flow.antecedents; var result = isReachableFlowNodeWorker(flow.antecedent, /*noCacheCheck*/ false); target.antecedents = saveAntecedents; return result; } else { return !(flags & 1 /* FlowFlags.Unreachable */); } } } // Return true if the given flow node is preceded by a 'super(...)' call in every possible code path // leading to the node. function isPostSuperFlowNode(flow, noCacheCheck) { while (true) { var flags = flow.flags; if (flags & 4096 /* FlowFlags.Shared */) { if (!noCacheCheck) { var id = getFlowNodeId(flow); var postSuper = flowNodePostSuper[id]; return postSuper !== undefined ? postSuper : (flowNodePostSuper[id] = isPostSuperFlowNode(flow, /*noCacheCheck*/ true)); } noCacheCheck = false; } if (flags & (16 /* FlowFlags.Assignment */ | 96 /* FlowFlags.Condition */ | 256 /* FlowFlags.ArrayMutation */ | 128 /* FlowFlags.SwitchClause */)) { flow = flow.antecedent; } else if (flags & 512 /* FlowFlags.Call */) { if (flow.node.expression.kind === 106 /* SyntaxKind.SuperKeyword */) { return true; } flow = flow.antecedent; } else if (flags & 4 /* FlowFlags.BranchLabel */) { // A branching point is post-super if every branch is post-super. return ts.every(flow.antecedents, function (f) { return isPostSuperFlowNode(f, /*noCacheCheck*/ false); }); } else if (flags & 8 /* FlowFlags.LoopLabel */) { // A loop is post-super if the control flow path that leads to the top is post-super. flow = flow.antecedents[0]; } else if (flags & 1024 /* FlowFlags.ReduceLabel */) { var target = flow.target; var saveAntecedents = target.antecedents; target.antecedents = flow.antecedents; var result = isPostSuperFlowNode(flow.antecedent, /*noCacheCheck*/ false); target.antecedents = saveAntecedents; return result; } else { // Unreachable nodes are considered post-super to silence errors return !!(flags & 1 /* FlowFlags.Unreachable */); } } } function isConstantReference(node) { switch (node.kind) { case 79 /* SyntaxKind.Identifier */: { var symbol = getResolvedSymbol(node); return isConstVariable(symbol) || ts.isParameterOrCatchClauseVariable(symbol) && !isSymbolAssigned(symbol); } case 206 /* SyntaxKind.PropertyAccessExpression */: case 207 /* SyntaxKind.ElementAccessExpression */: // The resolvedSymbol property is initialized by checkPropertyAccess or checkElementAccess before we get here. return isConstantReference(node.expression) && isReadonlySymbol(getNodeLinks(node).resolvedSymbol || unknownSymbol); } return false; } function getFlowTypeOfReference(reference, declaredType, initialType, flowContainer, flowNode) { if (initialType === void 0) { initialType = declaredType; } if (flowNode === void 0) { flowNode = reference.flowNode; } var key; var isKeySet = false; var flowDepth = 0; if (flowAnalysisDisabled) { return errorType; } if (!flowNode) { return declaredType; } flowInvocationCount++; var sharedFlowStart = sharedFlowCount; var evolvedType = getTypeFromFlowType(getTypeAtFlowNode(flowNode)); sharedFlowCount = sharedFlowStart; // When the reference is 'x' in an 'x.length', 'x.push(value)', 'x.unshift(value)' or x[n] = value' operation, // we give type 'any[]' to 'x' instead of using the type determined by control flow analysis such that operations // on empty arrays are possible without implicit any errors and new element types can be inferred without // type mismatch errors. var resultType = ts.getObjectFlags(evolvedType) & 256 /* ObjectFlags.EvolvingArray */ && isEvolvingArrayOperationTarget(reference) ? autoArrayType : finalizeEvolvingArrayType(evolvedType); if (resultType === unreachableNeverType || reference.parent && reference.parent.kind === 230 /* SyntaxKind.NonNullExpression */ && !(resultType.flags & 131072 /* TypeFlags.Never */) && getTypeWithFacts(resultType, 2097152 /* TypeFacts.NEUndefinedOrNull */).flags & 131072 /* TypeFlags.Never */) { return declaredType; } // The non-null unknown type should never escape control flow analysis. return resultType === nonNullUnknownType ? unknownType : resultType; function getOrSetCacheKey() { if (isKeySet) { return key; } isKeySet = true; return key = getFlowCacheKey(reference, declaredType, initialType, flowContainer); } function getTypeAtFlowNode(flow) { if (flowDepth === 2000) { // We have made 2000 recursive invocations. To avoid overflowing the call stack we report an error // and disable further control flow analysis in the containing function or module body. ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.instant("checkTypes" /* tracing.Phase.CheckTypes */, "getTypeAtFlowNode_DepthLimit", { flowId: flow.id }); flowAnalysisDisabled = true; reportFlowControlError(reference); return errorType; } flowDepth++; var sharedFlow; while (true) { var flags = flow.flags; if (flags & 4096 /* FlowFlags.Shared */) { // We cache results of flow type resolution for shared nodes that were previously visited in // the same getFlowTypeOfReference invocation. A node is considered shared when it is the // antecedent of more than one node. for (var i = sharedFlowStart; i < sharedFlowCount; i++) { if (sharedFlowNodes[i] === flow) { flowDepth--; return sharedFlowTypes[i]; } } sharedFlow = flow; } var type = void 0; if (flags & 16 /* FlowFlags.Assignment */) { type = getTypeAtFlowAssignment(flow); if (!type) { flow = flow.antecedent; continue; } } else if (flags & 512 /* FlowFlags.Call */) { type = getTypeAtFlowCall(flow); if (!type) { flow = flow.antecedent; continue; } } else if (flags & 96 /* FlowFlags.Condition */) { type = getTypeAtFlowCondition(flow); } else if (flags & 128 /* FlowFlags.SwitchClause */) { type = getTypeAtSwitchClause(flow); } else if (flags & 12 /* FlowFlags.Label */) { if (flow.antecedents.length === 1) { flow = flow.antecedents[0]; continue; } type = flags & 4 /* FlowFlags.BranchLabel */ ? getTypeAtFlowBranchLabel(flow) : getTypeAtFlowLoopLabel(flow); } else if (flags & 256 /* FlowFlags.ArrayMutation */) { type = getTypeAtFlowArrayMutation(flow); if (!type) { flow = flow.antecedent; continue; } } else if (flags & 1024 /* FlowFlags.ReduceLabel */) { var target = flow.target; var saveAntecedents = target.antecedents; target.antecedents = flow.antecedents; type = getTypeAtFlowNode(flow.antecedent); target.antecedents = saveAntecedents; } else if (flags & 2 /* FlowFlags.Start */) { // Check if we should continue with the control flow of the containing function. var container = flow.node; if (container && container !== flowContainer && reference.kind !== 206 /* SyntaxKind.PropertyAccessExpression */ && reference.kind !== 207 /* SyntaxKind.ElementAccessExpression */ && reference.kind !== 108 /* SyntaxKind.ThisKeyword */) { flow = container.flowNode; continue; } // At the top of the flow we have the initial type. type = initialType; } else { // Unreachable code errors are reported in the binding phase. Here we // simply return the non-auto declared type to reduce follow-on errors. type = convertAutoToAny(declaredType); } if (sharedFlow) { // Record visited node and the associated type in the cache. sharedFlowNodes[sharedFlowCount] = sharedFlow; sharedFlowTypes[sharedFlowCount] = type; sharedFlowCount++; } flowDepth--; return type; } } function getInitialOrAssignedType(flow) { var node = flow.node; return getNarrowableTypeForReference(node.kind === 254 /* SyntaxKind.VariableDeclaration */ || node.kind === 203 /* SyntaxKind.BindingElement */ ? getInitialType(node) : getAssignedType(node), reference); } function getTypeAtFlowAssignment(flow) { var node = flow.node; // Assignments only narrow the computed type if the declared type is a union type. Thus, we // only need to evaluate the assigned type if the declared type is a union type. if (isMatchingReference(reference, node)) { if (!isReachableFlowNode(flow)) { return unreachableNeverType; } if (ts.getAssignmentTargetKind(node) === 2 /* AssignmentKind.Compound */) { var flowType = getTypeAtFlowNode(flow.antecedent); return createFlowType(getBaseTypeOfLiteralType(getTypeFromFlowType(flowType)), isIncomplete(flowType)); } if (declaredType === autoType || declaredType === autoArrayType) { if (isEmptyArrayAssignment(node)) { return getEvolvingArrayType(neverType); } var assignedType = getWidenedLiteralType(getInitialOrAssignedType(flow)); return isTypeAssignableTo(assignedType, declaredType) ? assignedType : anyArrayType; } if (declaredType.flags & 1048576 /* TypeFlags.Union */) { return getAssignmentReducedType(declaredType, getInitialOrAssignedType(flow)); } return declaredType; } // We didn't have a direct match. However, if the reference is a dotted name, this // may be an assignment to a left hand part of the reference. For example, for a // reference 'x.y.z', we may be at an assignment to 'x.y' or 'x'. In that case, // return the declared type. if (containsMatchingReference(reference, node)) { if (!isReachableFlowNode(flow)) { return unreachableNeverType; } // A matching dotted name might also be an expando property on a function *expression*, // in which case we continue control flow analysis back to the function's declaration if (ts.isVariableDeclaration(node) && (ts.isInJSFile(node) || ts.isVarConst(node))) { var init = ts.getDeclaredExpandoInitializer(node); if (init && (init.kind === 213 /* SyntaxKind.FunctionExpression */ || init.kind === 214 /* SyntaxKind.ArrowFunction */)) { return getTypeAtFlowNode(flow.antecedent); } } return declaredType; } // for (const _ in ref) acts as a nonnull on ref if (ts.isVariableDeclaration(node) && node.parent.parent.kind === 243 /* SyntaxKind.ForInStatement */ && isMatchingReference(reference, node.parent.parent.expression)) { return getNonNullableTypeIfNeeded(getTypeFromFlowType(getTypeAtFlowNode(flow.antecedent))); } // Assignment doesn't affect reference return undefined; } function narrowTypeByAssertion(type, expr) { var node = ts.skipParentheses(expr, /*excludeJSDocTypeAssertions*/ true); if (node.kind === 95 /* SyntaxKind.FalseKeyword */) { return unreachableNeverType; } if (node.kind === 221 /* SyntaxKind.BinaryExpression */) { if (node.operatorToken.kind === 55 /* SyntaxKind.AmpersandAmpersandToken */) { return narrowTypeByAssertion(narrowTypeByAssertion(type, node.left), node.right); } if (node.operatorToken.kind === 56 /* SyntaxKind.BarBarToken */) { return getUnionType([narrowTypeByAssertion(type, node.left), narrowTypeByAssertion(type, node.right)]); } } return narrowType(type, node, /*assumeTrue*/ true); } function getTypeAtFlowCall(flow) { var signature = getEffectsSignature(flow.node); if (signature) { var predicate = getTypePredicateOfSignature(signature); if (predicate && (predicate.kind === 2 /* TypePredicateKind.AssertsThis */ || predicate.kind === 3 /* TypePredicateKind.AssertsIdentifier */)) { var flowType = getTypeAtFlowNode(flow.antecedent); var type = finalizeEvolvingArrayType(getTypeFromFlowType(flowType)); var narrowedType = predicate.type ? narrowTypeByTypePredicate(type, predicate, flow.node, /*assumeTrue*/ true) : predicate.kind === 3 /* TypePredicateKind.AssertsIdentifier */ && predicate.parameterIndex >= 0 && predicate.parameterIndex < flow.node.arguments.length ? narrowTypeByAssertion(type, flow.node.arguments[predicate.parameterIndex]) : type; return narrowedType === type ? flowType : createFlowType(narrowedType, isIncomplete(flowType)); } if (getReturnTypeOfSignature(signature).flags & 131072 /* TypeFlags.Never */) { return unreachableNeverType; } } return undefined; } function getTypeAtFlowArrayMutation(flow) { if (declaredType === autoType || declaredType === autoArrayType) { var node = flow.node; var expr = node.kind === 208 /* SyntaxKind.CallExpression */ ? node.expression.expression : node.left.expression; if (isMatchingReference(reference, getReferenceCandidate(expr))) { var flowType = getTypeAtFlowNode(flow.antecedent); var type = getTypeFromFlowType(flowType); if (ts.getObjectFlags(type) & 256 /* ObjectFlags.EvolvingArray */) { var evolvedType_1 = type; if (node.kind === 208 /* SyntaxKind.CallExpression */) { for (var _i = 0, _a = node.arguments; _i < _a.length; _i++) { var arg = _a[_i]; evolvedType_1 = addEvolvingArrayElementType(evolvedType_1, arg); } } else { // We must get the context free expression type so as to not recur in an uncached fashion on the LHS (which causes exponential blowup in compile time) var indexType = getContextFreeTypeOfExpression(node.left.argumentExpression); if (isTypeAssignableToKind(indexType, 296 /* TypeFlags.NumberLike */)) { evolvedType_1 = addEvolvingArrayElementType(evolvedType_1, node.right); } } return evolvedType_1 === type ? flowType : createFlowType(evolvedType_1, isIncomplete(flowType)); } return flowType; } } return undefined; } function getTypeAtFlowCondition(flow) { var flowType = getTypeAtFlowNode(flow.antecedent); var type = getTypeFromFlowType(flowType); if (type.flags & 131072 /* TypeFlags.Never */) { return flowType; } // If we have an antecedent type (meaning we're reachable in some way), we first // attempt to narrow the antecedent type. If that produces the never type, and if // the antecedent type is incomplete (i.e. a transient type in a loop), then we // take the type guard as an indication that control *could* reach here once we // have the complete type. We proceed by switching to the silent never type which // doesn't report errors when operators are applied to it. Note that this is the // *only* place a silent never type is ever generated. var assumeTrue = (flow.flags & 32 /* FlowFlags.TrueCondition */) !== 0; var nonEvolvingType = finalizeEvolvingArrayType(type); var narrowedType = narrowType(nonEvolvingType, flow.node, assumeTrue); if (narrowedType === nonEvolvingType) { return flowType; } return createFlowType(narrowedType, isIncomplete(flowType)); } function getTypeAtSwitchClause(flow) { var expr = flow.switchStatement.expression; var flowType = getTypeAtFlowNode(flow.antecedent); var type = getTypeFromFlowType(flowType); if (isMatchingReference(reference, expr)) { type = narrowTypeBySwitchOnDiscriminant(type, flow.switchStatement, flow.clauseStart, flow.clauseEnd); } else if (expr.kind === 216 /* SyntaxKind.TypeOfExpression */ && isMatchingReference(reference, expr.expression)) { type = narrowBySwitchOnTypeOf(type, flow.switchStatement, flow.clauseStart, flow.clauseEnd); } else { if (strictNullChecks) { if (optionalChainContainsReference(expr, reference)) { type = narrowTypeBySwitchOptionalChainContainment(type, flow.switchStatement, flow.clauseStart, flow.clauseEnd, function (t) { return !(t.flags & (32768 /* TypeFlags.Undefined */ | 131072 /* TypeFlags.Never */)); }); } else if (expr.kind === 216 /* SyntaxKind.TypeOfExpression */ && optionalChainContainsReference(expr.expression, reference)) { type = narrowTypeBySwitchOptionalChainContainment(type, flow.switchStatement, flow.clauseStart, flow.clauseEnd, function (t) { return !(t.flags & 131072 /* TypeFlags.Never */ || t.flags & 128 /* TypeFlags.StringLiteral */ && t.value === "undefined"); }); } } var access = getDiscriminantPropertyAccess(expr, type); if (access) { type = narrowTypeBySwitchOnDiscriminantProperty(type, access, flow.switchStatement, flow.clauseStart, flow.clauseEnd); } } return createFlowType(type, isIncomplete(flowType)); } function getTypeAtFlowBranchLabel(flow) { var antecedentTypes = []; var subtypeReduction = false; var seenIncomplete = false; var bypassFlow; for (var _i = 0, _a = flow.antecedents; _i < _a.length; _i++) { var antecedent = _a[_i]; if (!bypassFlow && antecedent.flags & 128 /* FlowFlags.SwitchClause */ && antecedent.clauseStart === antecedent.clauseEnd) { // The antecedent is the bypass branch of a potentially exhaustive switch statement. bypassFlow = antecedent; continue; } var flowType = getTypeAtFlowNode(antecedent); var type = getTypeFromFlowType(flowType); // If the type at a particular antecedent path is the declared type and the // reference is known to always be assigned (i.e. when declared and initial types // are the same), there is no reason to process more antecedents since the only // possible outcome is subtypes that will be removed in the final union type anyway. if (type === declaredType && declaredType === initialType) { return type; } ts.pushIfUnique(antecedentTypes, type); // If an antecedent type is not a subset of the declared type, we need to perform // subtype reduction. This happens when a "foreign" type is injected into the control // flow using the instanceof operator or a user defined type predicate. if (!isTypeSubsetOf(type, declaredType)) { subtypeReduction = true; } if (isIncomplete(flowType)) { seenIncomplete = true; } } if (bypassFlow) { var flowType = getTypeAtFlowNode(bypassFlow); var type = getTypeFromFlowType(flowType); // If the bypass flow contributes a type we haven't seen yet and the switch statement // isn't exhaustive, process the bypass flow type. Since exhaustiveness checks increase // the risk of circularities, we only want to perform them when they make a difference. if (!ts.contains(antecedentTypes, type) && !isExhaustiveSwitchStatement(bypassFlow.switchStatement)) { if (type === declaredType && declaredType === initialType) { return type; } antecedentTypes.push(type); if (!isTypeSubsetOf(type, declaredType)) { subtypeReduction = true; } if (isIncomplete(flowType)) { seenIncomplete = true; } } } return createFlowType(getUnionOrEvolvingArrayType(antecedentTypes, subtypeReduction ? 2 /* UnionReduction.Subtype */ : 1 /* UnionReduction.Literal */), seenIncomplete); } function getTypeAtFlowLoopLabel(flow) { // If we have previously computed the control flow type for the reference at // this flow loop junction, return the cached type. var id = getFlowNodeId(flow); var cache = flowLoopCaches[id] || (flowLoopCaches[id] = new ts.Map()); var key = getOrSetCacheKey(); if (!key) { // No cache key is generated when binding patterns are in unnarrowable situations return declaredType; } var cached = cache.get(key); if (cached) { return cached; } // If this flow loop junction and reference are already being processed, return // the union of the types computed for each branch so far, marked as incomplete. // It is possible to see an empty array in cases where loops are nested and the // back edge of the outer loop reaches an inner loop that is already being analyzed. // In such cases we restart the analysis of the inner loop, which will then see // a non-empty in-process array for the outer loop and eventually terminate because // the first antecedent of a loop junction is always the non-looping control flow // path that leads to the top. for (var i = flowLoopStart; i < flowLoopCount; i++) { if (flowLoopNodes[i] === flow && flowLoopKeys[i] === key && flowLoopTypes[i].length) { return createFlowType(getUnionOrEvolvingArrayType(flowLoopTypes[i], 1 /* UnionReduction.Literal */), /*incomplete*/ true); } } // Add the flow loop junction and reference to the in-process stack and analyze // each antecedent code path. var antecedentTypes = []; var subtypeReduction = false; var firstAntecedentType; for (var _i = 0, _a = flow.antecedents; _i < _a.length; _i++) { var antecedent = _a[_i]; var flowType = void 0; if (!firstAntecedentType) { // The first antecedent of a loop junction is always the non-looping control // flow path that leads to the top. flowType = firstAntecedentType = getTypeAtFlowNode(antecedent); } else { // All but the first antecedent are the looping control flow paths that lead // back to the loop junction. We track these on the flow loop stack. flowLoopNodes[flowLoopCount] = flow; flowLoopKeys[flowLoopCount] = key; flowLoopTypes[flowLoopCount] = antecedentTypes; flowLoopCount++; var saveFlowTypeCache = flowTypeCache; flowTypeCache = undefined; flowType = getTypeAtFlowNode(antecedent); flowTypeCache = saveFlowTypeCache; flowLoopCount--; // If we see a value appear in the cache it is a sign that control flow analysis // was restarted and completed by checkExpressionCached. We can simply pick up // the resulting type and bail out. var cached_1 = cache.get(key); if (cached_1) { return cached_1; } } var type = getTypeFromFlowType(flowType); ts.pushIfUnique(antecedentTypes, type); // If an antecedent type is not a subset of the declared type, we need to perform // subtype reduction. This happens when a "foreign" type is injected into the control // flow using the instanceof operator or a user defined type predicate. if (!isTypeSubsetOf(type, declaredType)) { subtypeReduction = true; } // If the type at a particular antecedent path is the declared type there is no // reason to process more antecedents since the only possible outcome is subtypes // that will be removed in the final union type anyway. if (type === declaredType) { break; } } // The result is incomplete if the first antecedent (the non-looping control flow path) // is incomplete. var result = getUnionOrEvolvingArrayType(antecedentTypes, subtypeReduction ? 2 /* UnionReduction.Subtype */ : 1 /* UnionReduction.Literal */); if (isIncomplete(firstAntecedentType)) { return createFlowType(result, /*incomplete*/ true); } cache.set(key, result); return result; } // At flow control branch or loop junctions, if the type along every antecedent code path // is an evolving array type, we construct a combined evolving array type. Otherwise we // finalize all evolving array types. function getUnionOrEvolvingArrayType(types, subtypeReduction) { if (isEvolvingArrayTypeList(types)) { return getEvolvingArrayType(getUnionType(ts.map(types, getElementTypeOfEvolvingArrayType))); } var result = getUnionType(ts.sameMap(types, finalizeEvolvingArrayType), subtypeReduction); if (result !== declaredType && result.flags & declaredType.flags & 1048576 /* TypeFlags.Union */ && ts.arraysEqual(result.types, declaredType.types)) { return declaredType; } return result; } function getCandidateDiscriminantPropertyAccess(expr) { if (ts.isBindingPattern(reference) || ts.isFunctionExpressionOrArrowFunction(reference) || ts.isObjectLiteralMethod(reference)) { // When the reference is a binding pattern or function or arrow expression, we are narrowing a pesudo-reference in // getNarrowedTypeOfSymbol. An identifier for a destructuring variable declared in the same binding pattern or // parameter declared in the same parameter list is a candidate. if (ts.isIdentifier(expr)) { var symbol = getResolvedSymbol(expr); var declaration = symbol.valueDeclaration; if (declaration && (ts.isBindingElement(declaration) || ts.isParameter(declaration)) && reference === declaration.parent && !declaration.initializer && !declaration.dotDotDotToken) { return declaration; } } } else if (ts.isAccessExpression(expr)) { // An access expression is a candidate if the reference matches the left hand expression. if (isMatchingReference(reference, expr.expression)) { return expr; } } else if (ts.isIdentifier(expr)) { var symbol = getResolvedSymbol(expr); if (isConstVariable(symbol)) { var declaration = symbol.valueDeclaration; // Given 'const x = obj.kind', allow 'x' as an alias for 'obj.kind' if (ts.isVariableDeclaration(declaration) && !declaration.type && declaration.initializer && ts.isAccessExpression(declaration.initializer) && isMatchingReference(reference, declaration.initializer.expression)) { return declaration.initializer; } // Given 'const { kind: x } = obj', allow 'x' as an alias for 'obj.kind' if (ts.isBindingElement(declaration) && !declaration.initializer) { var parent = declaration.parent.parent; if (ts.isVariableDeclaration(parent) && !parent.type && parent.initializer && (ts.isIdentifier(parent.initializer) || ts.isAccessExpression(parent.initializer)) && isMatchingReference(reference, parent.initializer)) { return declaration; } } } } return undefined; } function getDiscriminantPropertyAccess(expr, computedType) { var type = declaredType.flags & 1048576 /* TypeFlags.Union */ ? declaredType : computedType; if (type.flags & 1048576 /* TypeFlags.Union */) { var access = getCandidateDiscriminantPropertyAccess(expr); if (access) { var name = getAccessedPropertyName(access); if (name && isDiscriminantProperty(type, name)) { return access; } } } return undefined; } function narrowTypeByDiscriminant(type, access, narrowType) { var propName = getAccessedPropertyName(access); if (propName === undefined) { return type; } var removeNullable = strictNullChecks && ts.isOptionalChain(access) && maybeTypeOfKind(type, 98304 /* TypeFlags.Nullable */); var propType = getTypeOfPropertyOfType(removeNullable ? getTypeWithFacts(type, 2097152 /* TypeFacts.NEUndefinedOrNull */) : type, propName); if (!propType) { return type; } propType = removeNullable ? getOptionalType(propType) : propType; var narrowedPropType = narrowType(propType); return filterType(type, function (t) { var discriminantType = getTypeOfPropertyOrIndexSignature(t, propName); return !(narrowedPropType.flags & 131072 /* TypeFlags.Never */) && isTypeComparableTo(narrowedPropType, discriminantType); }); } function narrowTypeByDiscriminantProperty(type, access, operator, value, assumeTrue) { if ((operator === 36 /* SyntaxKind.EqualsEqualsEqualsToken */ || operator === 37 /* SyntaxKind.ExclamationEqualsEqualsToken */) && type.flags & 1048576 /* TypeFlags.Union */) { var keyPropertyName = getKeyPropertyName(type); if (keyPropertyName && keyPropertyName === getAccessedPropertyName(access)) { var candidate = getConstituentTypeForKeyType(type, getTypeOfExpression(value)); if (candidate) { return operator === (assumeTrue ? 36 /* SyntaxKind.EqualsEqualsEqualsToken */ : 37 /* SyntaxKind.ExclamationEqualsEqualsToken */) ? candidate : isUnitType(getTypeOfPropertyOfType(candidate, keyPropertyName) || unknownType) ? removeType(type, candidate) : type; } } } return narrowTypeByDiscriminant(type, access, function (t) { return narrowTypeByEquality(t, operator, value, assumeTrue); }); } function narrowTypeBySwitchOnDiscriminantProperty(type, access, switchStatement, clauseStart, clauseEnd) { if (clauseStart < clauseEnd && type.flags & 1048576 /* TypeFlags.Union */ && getKeyPropertyName(type) === getAccessedPropertyName(access)) { var clauseTypes = getSwitchClauseTypes(switchStatement).slice(clauseStart, clauseEnd); var candidate = getUnionType(ts.map(clauseTypes, function (t) { return getConstituentTypeForKeyType(type, t) || unknownType; })); if (candidate !== unknownType) { return candidate; } } return narrowTypeByDiscriminant(type, access, function (t) { return narrowTypeBySwitchOnDiscriminant(t, switchStatement, clauseStart, clauseEnd); }); } function narrowTypeByTruthiness(type, expr, assumeTrue) { if (isMatchingReference(reference, expr)) { return type.flags & 2 /* TypeFlags.Unknown */ && assumeTrue ? nonNullUnknownType : getTypeWithFacts(type, assumeTrue ? 4194304 /* TypeFacts.Truthy */ : 8388608 /* TypeFacts.Falsy */); } if (strictNullChecks && assumeTrue && optionalChainContainsReference(expr, reference)) { type = getTypeWithFacts(type, 2097152 /* TypeFacts.NEUndefinedOrNull */); } var access = getDiscriminantPropertyAccess(expr, type); if (access) { return narrowTypeByDiscriminant(type, access, function (t) { return getTypeWithFacts(t, assumeTrue ? 4194304 /* TypeFacts.Truthy */ : 8388608 /* TypeFacts.Falsy */); }); } return type; } function isTypePresencePossible(type, propName, assumeTrue) { var prop = getPropertyOfType(type, propName); if (prop) { return prop.flags & 16777216 /* SymbolFlags.Optional */ ? true : assumeTrue; } return getApplicableIndexInfoForName(type, propName) ? true : !assumeTrue; } function narrowByInKeyword(type, name, assumeTrue) { if (type.flags & 1048576 /* TypeFlags.Union */ || type.flags & 524288 /* TypeFlags.Object */ && declaredType !== type || ts.isThisTypeParameter(type) || type.flags & 2097152 /* TypeFlags.Intersection */ && ts.every(type.types, function (t) { return t.symbol !== globalThisSymbol; })) { return filterType(type, function (t) { return isTypePresencePossible(t, name, assumeTrue); }); } return type; } function narrowTypeByBinaryExpression(type, expr, assumeTrue) { switch (expr.operatorToken.kind) { case 63 /* SyntaxKind.EqualsToken */: case 75 /* SyntaxKind.BarBarEqualsToken */: case 76 /* SyntaxKind.AmpersandAmpersandEqualsToken */: case 77 /* SyntaxKind.QuestionQuestionEqualsToken */: return narrowTypeByTruthiness(narrowType(type, expr.right, assumeTrue), expr.left, assumeTrue); case 34 /* SyntaxKind.EqualsEqualsToken */: case 35 /* SyntaxKind.ExclamationEqualsToken */: case 36 /* SyntaxKind.EqualsEqualsEqualsToken */: case 37 /* SyntaxKind.ExclamationEqualsEqualsToken */: var operator = expr.operatorToken.kind; var left = getReferenceCandidate(expr.left); var right = getReferenceCandidate(expr.right); if (left.kind === 216 /* SyntaxKind.TypeOfExpression */ && ts.isStringLiteralLike(right)) { return narrowTypeByTypeof(type, left, operator, right, assumeTrue); } if (right.kind === 216 /* SyntaxKind.TypeOfExpression */ && ts.isStringLiteralLike(left)) { return narrowTypeByTypeof(type, right, operator, left, assumeTrue); } if (isMatchingReference(reference, left)) { return narrowTypeByEquality(type, operator, right, assumeTrue); } if (isMatchingReference(reference, right)) { return narrowTypeByEquality(type, operator, left, assumeTrue); } if (strictNullChecks) { if (optionalChainContainsReference(left, reference)) { type = narrowTypeByOptionalChainContainment(type, operator, right, assumeTrue); } else if (optionalChainContainsReference(right, reference)) { type = narrowTypeByOptionalChainContainment(type, operator, left, assumeTrue); } } var leftAccess = getDiscriminantPropertyAccess(left, type); if (leftAccess) { return narrowTypeByDiscriminantProperty(type, leftAccess, operator, right, assumeTrue); } var rightAccess = getDiscriminantPropertyAccess(right, type); if (rightAccess) { return narrowTypeByDiscriminantProperty(type, rightAccess, operator, left, assumeTrue); } if (isMatchingConstructorReference(left)) { return narrowTypeByConstructor(type, operator, right, assumeTrue); } if (isMatchingConstructorReference(right)) { return narrowTypeByConstructor(type, operator, left, assumeTrue); } break; case 102 /* SyntaxKind.InstanceOfKeyword */: return narrowTypeByInstanceof(type, expr, assumeTrue); case 101 /* SyntaxKind.InKeyword */: if (ts.isPrivateIdentifier(expr.left)) { return narrowTypeByPrivateIdentifierInInExpression(type, expr, assumeTrue); } var target = getReferenceCandidate(expr.right); var leftType = getTypeOfNode(expr.left); if (leftType.flags & 128 /* TypeFlags.StringLiteral */) { var name = ts.escapeLeadingUnderscores(leftType.value); if (containsMissingType(type) && ts.isAccessExpression(reference) && isMatchingReference(reference.expression, target) && getAccessedPropertyName(reference) === name) { return getTypeWithFacts(type, assumeTrue ? 524288 /* TypeFacts.NEUndefined */ : 65536 /* TypeFacts.EQUndefined */); } if (isMatchingReference(reference, target)) { return narrowByInKeyword(type, name, assumeTrue); } } break; case 27 /* SyntaxKind.CommaToken */: return narrowType(type, expr.right, assumeTrue); // Ordinarily we won't see && and || expressions in control flow analysis because the Binder breaks those // expressions down to individual conditional control flows. However, we may encounter them when analyzing // aliased conditional expressions. case 55 /* SyntaxKind.AmpersandAmpersandToken */: return assumeTrue ? narrowType(narrowType(type, expr.left, /*assumeTrue*/ true), expr.right, /*assumeTrue*/ true) : getUnionType([narrowType(type, expr.left, /*assumeTrue*/ false), narrowType(type, expr.right, /*assumeTrue*/ false)]); case 56 /* SyntaxKind.BarBarToken */: return assumeTrue ? getUnionType([narrowType(type, expr.left, /*assumeTrue*/ true), narrowType(type, expr.right, /*assumeTrue*/ true)]) : narrowType(narrowType(type, expr.left, /*assumeTrue*/ false), expr.right, /*assumeTrue*/ false); } return type; } function narrowTypeByPrivateIdentifierInInExpression(type, expr, assumeTrue) { var target = getReferenceCandidate(expr.right); if (!isMatchingReference(reference, target)) { return type; } ts.Debug.assertNode(expr.left, ts.isPrivateIdentifier); var symbol = getSymbolForPrivateIdentifierExpression(expr.left); if (symbol === undefined) { return type; } var classSymbol = symbol.parent; var targetType = ts.hasStaticModifier(ts.Debug.checkDefined(symbol.valueDeclaration, "should always have a declaration")) ? getTypeOfSymbol(classSymbol) : getDeclaredTypeOfSymbol(classSymbol); return getNarrowedType(type, targetType, assumeTrue, isTypeDerivedFrom); } function narrowTypeByOptionalChainContainment(type, operator, value, assumeTrue) { // We are in a branch of obj?.foo === value (or any one of the other equality operators). We narrow obj as follows: // When operator is === and type of value excludes undefined, null and undefined is removed from type of obj in true branch. // When operator is !== and type of value excludes undefined, null and undefined is removed from type of obj in false branch. // When operator is == and type of value excludes null and undefined, null and undefined is removed from type of obj in true branch. // When operator is != and type of value excludes null and undefined, null and undefined is removed from type of obj in false branch. // When operator is === and type of value is undefined, null and undefined is removed from type of obj in false branch. // When operator is !== and type of value is undefined, null and undefined is removed from type of obj in true branch. // When operator is == and type of value is null or undefined, null and undefined is removed from type of obj in false branch. // When operator is != and type of value is null or undefined, null and undefined is removed from type of obj in true branch. var equalsOperator = operator === 34 /* SyntaxKind.EqualsEqualsToken */ || operator === 36 /* SyntaxKind.EqualsEqualsEqualsToken */; var nullableFlags = operator === 34 /* SyntaxKind.EqualsEqualsToken */ || operator === 35 /* SyntaxKind.ExclamationEqualsToken */ ? 98304 /* TypeFlags.Nullable */ : 32768 /* TypeFlags.Undefined */; var valueType = getTypeOfExpression(value); // Note that we include any and unknown in the exclusion test because their domain includes null and undefined. var removeNullable = equalsOperator !== assumeTrue && everyType(valueType, function (t) { return !!(t.flags & nullableFlags); }) || equalsOperator === assumeTrue && everyType(valueType, function (t) { return !(t.flags & (3 /* TypeFlags.AnyOrUnknown */ | nullableFlags)); }); return removeNullable ? getTypeWithFacts(type, 2097152 /* TypeFacts.NEUndefinedOrNull */) : type; } function narrowTypeByEquality(type, operator, value, assumeTrue) { if (type.flags & 1 /* TypeFlags.Any */) { return type; } if (operator === 35 /* SyntaxKind.ExclamationEqualsToken */ || operator === 37 /* SyntaxKind.ExclamationEqualsEqualsToken */) { assumeTrue = !assumeTrue; } var valueType = getTypeOfExpression(value); if (assumeTrue && (type.flags & 2 /* TypeFlags.Unknown */) && (operator === 34 /* SyntaxKind.EqualsEqualsToken */ || operator === 35 /* SyntaxKind.ExclamationEqualsToken */) && (valueType.flags & 65536 /* TypeFlags.Null */)) { return getUnionType([nullType, undefinedType]); } if ((type.flags & 2 /* TypeFlags.Unknown */) && assumeTrue && (operator === 36 /* SyntaxKind.EqualsEqualsEqualsToken */ || operator === 37 /* SyntaxKind.ExclamationEqualsEqualsToken */)) { if (valueType.flags & (131068 /* TypeFlags.Primitive */ | 67108864 /* TypeFlags.NonPrimitive */)) { return valueType; } if (valueType.flags & 524288 /* TypeFlags.Object */) { return nonPrimitiveType; } return type; } if (valueType.flags & 98304 /* TypeFlags.Nullable */) { if (!strictNullChecks) { return type; } var doubleEquals = operator === 34 /* SyntaxKind.EqualsEqualsToken */ || operator === 35 /* SyntaxKind.ExclamationEqualsToken */; var facts = doubleEquals ? assumeTrue ? 262144 /* TypeFacts.EQUndefinedOrNull */ : 2097152 /* TypeFacts.NEUndefinedOrNull */ : valueType.flags & 65536 /* TypeFlags.Null */ ? assumeTrue ? 131072 /* TypeFacts.EQNull */ : 1048576 /* TypeFacts.NENull */ : assumeTrue ? 65536 /* TypeFacts.EQUndefined */ : 524288 /* TypeFacts.NEUndefined */; return type.flags & 2 /* TypeFlags.Unknown */ && facts & (1048576 /* TypeFacts.NENull */ | 2097152 /* TypeFacts.NEUndefinedOrNull */) ? nonNullUnknownType : getTypeWithFacts(type, facts); } if (assumeTrue) { var filterFn = operator === 34 /* SyntaxKind.EqualsEqualsToken */ ? function (t) { return areTypesComparable(t, valueType) || isCoercibleUnderDoubleEquals(t, valueType); } : function (t) { return areTypesComparable(t, valueType); }; return replacePrimitivesWithLiterals(filterType(type, filterFn), valueType); } if (isUnitType(valueType)) { return filterType(type, function (t) { return !(isUnitLikeType(t) && areTypesComparable(t, valueType)); }); } return type; } function narrowTypeByTypeof(type, typeOfExpr, operator, literal, assumeTrue) { // We have '==', '!=', '===', or !==' operator with 'typeof xxx' and string literal operands if (operator === 35 /* SyntaxKind.ExclamationEqualsToken */ || operator === 37 /* SyntaxKind.ExclamationEqualsEqualsToken */) { assumeTrue = !assumeTrue; } var target = getReferenceCandidate(typeOfExpr.expression); if (!isMatchingReference(reference, target)) { if (strictNullChecks && optionalChainContainsReference(target, reference) && assumeTrue === (literal.text !== "undefined")) { return getTypeWithFacts(type, 2097152 /* TypeFacts.NEUndefinedOrNull */); } return type; } if (type.flags & 1 /* TypeFlags.Any */ && literal.text === "function") { return type; } if (assumeTrue && type.flags & 2 /* TypeFlags.Unknown */ && literal.text === "object") { // The non-null unknown type is used to track whether a previous narrowing operation has removed the null type // from the unknown type. For example, the expression `x && typeof x === 'object'` first narrows x to the non-null // unknown type, and then narrows that to the non-primitive type. return type === nonNullUnknownType ? nonPrimitiveType : getUnionType([nonPrimitiveType, nullType]); } var facts = assumeTrue ? typeofEQFacts.get(literal.text) || 128 /* TypeFacts.TypeofEQHostObject */ : typeofNEFacts.get(literal.text) || 32768 /* TypeFacts.TypeofNEHostObject */; var impliedType = getImpliedTypeFromTypeofGuard(type, literal.text); return getTypeWithFacts(assumeTrue && impliedType ? mapType(type, narrowUnionMemberByTypeof(impliedType)) : type, facts); } function narrowTypeBySwitchOptionalChainContainment(type, switchStatement, clauseStart, clauseEnd, clauseCheck) { var everyClauseChecks = clauseStart !== clauseEnd && ts.every(getSwitchClauseTypes(switchStatement).slice(clauseStart, clauseEnd), clauseCheck); return everyClauseChecks ? getTypeWithFacts(type, 2097152 /* TypeFacts.NEUndefinedOrNull */) : type; } function narrowTypeBySwitchOnDiscriminant(type, switchStatement, clauseStart, clauseEnd) { // We only narrow if all case expressions specify // values with unit types, except for the case where // `type` is unknown. In this instance we map object // types to the nonPrimitive type and narrow with that. var switchTypes = getSwitchClauseTypes(switchStatement); if (!switchTypes.length) { return type; } var clauseTypes = switchTypes.slice(clauseStart, clauseEnd); var hasDefaultClause = clauseStart === clauseEnd || ts.contains(clauseTypes, neverType); if ((type.flags & 2 /* TypeFlags.Unknown */) && !hasDefaultClause) { var groundClauseTypes = void 0; for (var i = 0; i < clauseTypes.length; i += 1) { var t = clauseTypes[i]; if (t.flags & (131068 /* TypeFlags.Primitive */ | 67108864 /* TypeFlags.NonPrimitive */)) { if (groundClauseTypes !== undefined) { groundClauseTypes.push(t); } } else if (t.flags & 524288 /* TypeFlags.Object */) { if (groundClauseTypes === undefined) { groundClauseTypes = clauseTypes.slice(0, i); } groundClauseTypes.push(nonPrimitiveType); } else { return type; } } return getUnionType(groundClauseTypes === undefined ? clauseTypes : groundClauseTypes); } var discriminantType = getUnionType(clauseTypes); var caseType = discriminantType.flags & 131072 /* TypeFlags.Never */ ? neverType : replacePrimitivesWithLiterals(filterType(type, function (t) { return areTypesComparable(discriminantType, t); }), discriminantType); if (!hasDefaultClause) { return caseType; } var defaultType = filterType(type, function (t) { return !(isUnitLikeType(t) && ts.contains(switchTypes, getRegularTypeOfLiteralType(extractUnitType(t)))); }); return caseType.flags & 131072 /* TypeFlags.Never */ ? defaultType : getUnionType([caseType, defaultType]); } function getImpliedTypeFromTypeofGuard(type, text) { switch (text) { case "function": return type.flags & 1 /* TypeFlags.Any */ ? type : globalFunctionType; case "object": return type.flags & 2 /* TypeFlags.Unknown */ ? getUnionType([nonPrimitiveType, nullType]) : type; default: return typeofTypesByName.get(text); } } // When narrowing a union type by a `typeof` guard using type-facts alone, constituent types that are // super-types of the implied guard will be retained in the final type: this is because type-facts only // filter. Instead, we would like to replace those union constituents with the more precise type implied by // the guard. For example: narrowing `{} | undefined` by `"boolean"` should produce the type `boolean`, not // the filtered type `{}`. For this reason we narrow constituents of the union individually, in addition to // filtering by type-facts. function narrowUnionMemberByTypeof(candidate) { return function (type) { if (isTypeSubtypeOf(type, candidate)) { return type; } if (isTypeSubtypeOf(candidate, type)) { return candidate; } if (type.flags & 465829888 /* TypeFlags.Instantiable */) { var constraint = getBaseConstraintOfType(type) || anyType; if (isTypeSubtypeOf(candidate, constraint)) { return getIntersectionType([type, candidate]); } } return type; }; } function narrowBySwitchOnTypeOf(type, switchStatement, clauseStart, clauseEnd) { var switchWitnesses = getSwitchClauseTypeOfWitnesses(switchStatement, /*retainDefault*/ true); if (!switchWitnesses.length) { return type; } // Equal start and end denotes implicit fallthrough; undefined marks explicit default clause var defaultCaseLocation = ts.findIndex(switchWitnesses, function (elem) { return elem === undefined; }); var hasDefaultClause = clauseStart === clauseEnd || (defaultCaseLocation >= clauseStart && defaultCaseLocation < clauseEnd); var clauseWitnesses; var switchFacts; if (defaultCaseLocation > -1) { // We no longer need the undefined denoting an explicit default case. Remove the undefined and // fix-up clauseStart and clauseEnd. This means that we don't have to worry about undefined in the // witness array. var witnesses = switchWitnesses.filter(function (witness) { return witness !== undefined; }); // The adjusted clause start and end after removing the `default` statement. var fixedClauseStart = defaultCaseLocation < clauseStart ? clauseStart - 1 : clauseStart; var fixedClauseEnd = defaultCaseLocation < clauseEnd ? clauseEnd - 1 : clauseEnd; clauseWitnesses = witnesses.slice(fixedClauseStart, fixedClauseEnd); switchFacts = getFactsFromTypeofSwitch(fixedClauseStart, fixedClauseEnd, witnesses, hasDefaultClause); } else { clauseWitnesses = switchWitnesses.slice(clauseStart, clauseEnd); switchFacts = getFactsFromTypeofSwitch(clauseStart, clauseEnd, switchWitnesses, hasDefaultClause); } if (hasDefaultClause) { return filterType(type, function (t) { return (getTypeFacts(t) & switchFacts) === switchFacts; }); } /* The implied type is the raw type suggested by a value being caught in this clause. When the clause contains a default case we ignore the implied type and try to narrow using any facts we can learn: see `switchFacts`. Example: switch (typeof x) { case 'number': case 'string': break; default: break; case 'number': case 'boolean': break } In the first clause (case `number` and `string`) the implied type is number | string. In the default clause we de not compute an implied type. In the third clause (case `number` and `boolean`) the naive implied type is number | boolean, however we use the type facts to narrow the implied type to boolean. We know that number cannot be selected because it is caught in the first clause. */ var impliedType = getTypeWithFacts(getUnionType(clauseWitnesses.map(function (text) { return getImpliedTypeFromTypeofGuard(type, text) || type; })), switchFacts); return getTypeWithFacts(mapType(type, narrowUnionMemberByTypeof(impliedType)), switchFacts); } function isMatchingConstructorReference(expr) { return (ts.isPropertyAccessExpression(expr) && ts.idText(expr.name) === "constructor" || ts.isElementAccessExpression(expr) && ts.isStringLiteralLike(expr.argumentExpression) && expr.argumentExpression.text === "constructor") && isMatchingReference(reference, expr.expression); } function narrowTypeByConstructor(type, operator, identifier, assumeTrue) { // Do not narrow when checking inequality. if (assumeTrue ? (operator !== 34 /* SyntaxKind.EqualsEqualsToken */ && operator !== 36 /* SyntaxKind.EqualsEqualsEqualsToken */) : (operator !== 35 /* SyntaxKind.ExclamationEqualsToken */ && operator !== 37 /* SyntaxKind.ExclamationEqualsEqualsToken */)) { return type; } // Get the type of the constructor identifier expression, if it is not a function then do not narrow. var identifierType = getTypeOfExpression(identifier); if (!isFunctionType(identifierType) && !isConstructorType(identifierType)) { return type; } // Get the prototype property of the type identifier so we can find out its type. var prototypeProperty = getPropertyOfType(identifierType, "prototype"); if (!prototypeProperty) { return type; } // Get the type of the prototype, if it is undefined, or the global `Object` or `Function` types then do not narrow. var prototypeType = getTypeOfSymbol(prototypeProperty); var candidate = !isTypeAny(prototypeType) ? prototypeType : undefined; if (!candidate || candidate === globalObjectType || candidate === globalFunctionType) { return type; } // If the type that is being narrowed is `any` then just return the `candidate` type since every type is a subtype of `any`. if (isTypeAny(type)) { return candidate; } // Filter out types that are not considered to be "constructed by" the `candidate` type. return filterType(type, function (t) { return isConstructedBy(t, candidate); }); function isConstructedBy(source, target) { // If either the source or target type are a class type then we need to check that they are the same exact type. // This is because you may have a class `A` that defines some set of properties, and another class `B` // that defines the same set of properties as class `A`, in that case they are structurally the same // type, but when you do something like `instanceOfA.constructor === B` it will return false. if (source.flags & 524288 /* TypeFlags.Object */ && ts.getObjectFlags(source) & 1 /* ObjectFlags.Class */ || target.flags & 524288 /* TypeFlags.Object */ && ts.getObjectFlags(target) & 1 /* ObjectFlags.Class */) { return source.symbol === target.symbol; } // For all other types just check that the `source` type is a subtype of the `target` type. return isTypeSubtypeOf(source, target); } } function narrowTypeByInstanceof(type, expr, assumeTrue) { var left = getReferenceCandidate(expr.left); if (!isMatchingReference(reference, left)) { if (assumeTrue && strictNullChecks && optionalChainContainsReference(left, reference)) { return getTypeWithFacts(type, 2097152 /* TypeFacts.NEUndefinedOrNull */); } return type; } // Check that right operand is a function type with a prototype property var rightType = getTypeOfExpression(expr.right); if (!isTypeDerivedFrom(rightType, globalFunctionType)) { return type; } var targetType; var prototypeProperty = getPropertyOfType(rightType, "prototype"); if (prototypeProperty) { // Target type is type of the prototype property var prototypePropertyType = getTypeOfSymbol(prototypeProperty); if (!isTypeAny(prototypePropertyType)) { targetType = prototypePropertyType; } } // Don't narrow from 'any' if the target type is exactly 'Object' or 'Function' if (isTypeAny(type) && (targetType === globalObjectType || targetType === globalFunctionType)) { return type; } if (!targetType) { var constructSignatures = getSignaturesOfType(rightType, 1 /* SignatureKind.Construct */); targetType = constructSignatures.length ? getUnionType(ts.map(constructSignatures, function (signature) { return getReturnTypeOfSignature(getErasedSignature(signature)); })) : emptyObjectType; } // We can't narrow a union based off instanceof without negated types see #31576 for more info if (!assumeTrue && rightType.flags & 1048576 /* TypeFlags.Union */) { var nonConstructorTypeInUnion = ts.find(rightType.types, function (t) { return !isConstructorType(t); }); if (!nonConstructorTypeInUnion) return type; } return getNarrowedType(type, targetType, assumeTrue, isTypeDerivedFrom); } function getNarrowedType(type, candidate, assumeTrue, isRelated) { if (!assumeTrue) { return filterType(type, function (t) { return !isRelated(t, candidate); }); } // If the current type is a union type, remove all constituents that couldn't be instances of // the candidate type. If one or more constituents remain, return a union of those. if (type.flags & 1048576 /* TypeFlags.Union */) { var assignableType = filterType(type, function (t) { return isRelated(t, candidate); }); if (!(assignableType.flags & 131072 /* TypeFlags.Never */)) { return assignableType; } } // If the candidate type is a subtype of the target type, narrow to the candidate type. // Otherwise, if the target type is assignable to the candidate type, keep the target type. // Otherwise, if the candidate type is assignable to the target type, narrow to the candidate // type. Otherwise, the types are completely unrelated, so narrow to an intersection of the // two types. return isTypeSubtypeOf(candidate, type) ? candidate : isTypeAssignableTo(type, candidate) ? type : isTypeAssignableTo(candidate, type) ? candidate : getIntersectionType([type, candidate]); } function narrowTypeByCallExpression(type, callExpression, assumeTrue) { if (hasMatchingArgument(callExpression, reference)) { var signature = assumeTrue || !ts.isCallChain(callExpression) ? getEffectsSignature(callExpression) : undefined; var predicate = signature && getTypePredicateOfSignature(signature); if (predicate && (predicate.kind === 0 /* TypePredicateKind.This */ || predicate.kind === 1 /* TypePredicateKind.Identifier */)) { return narrowTypeByTypePredicate(type, predicate, callExpression, assumeTrue); } } if (containsMissingType(type) && ts.isAccessExpression(reference) && ts.isPropertyAccessExpression(callExpression.expression)) { var callAccess = callExpression.expression; if (isMatchingReference(reference.expression, getReferenceCandidate(callAccess.expression)) && ts.isIdentifier(callAccess.name) && callAccess.name.escapedText === "hasOwnProperty" && callExpression.arguments.length === 1) { var argument = callExpression.arguments[0]; if (ts.isStringLiteralLike(argument) && getAccessedPropertyName(reference) === ts.escapeLeadingUnderscores(argument.text)) { return getTypeWithFacts(type, assumeTrue ? 524288 /* TypeFacts.NEUndefined */ : 65536 /* TypeFacts.EQUndefined */); } } } return type; } function narrowTypeByTypePredicate(type, predicate, callExpression, assumeTrue) { // Don't narrow from 'any' if the predicate type is exactly 'Object' or 'Function' if (predicate.type && !(isTypeAny(type) && (predicate.type === globalObjectType || predicate.type === globalFunctionType))) { var predicateArgument = getTypePredicateArgument(predicate, callExpression); if (predicateArgument) { if (isMatchingReference(reference, predicateArgument)) { return getNarrowedType(type, predicate.type, assumeTrue, isTypeSubtypeOf); } if (strictNullChecks && assumeTrue && optionalChainContainsReference(predicateArgument, reference) && !(getTypeFacts(predicate.type) & 65536 /* TypeFacts.EQUndefined */)) { type = getTypeWithFacts(type, 2097152 /* TypeFacts.NEUndefinedOrNull */); } var access = getDiscriminantPropertyAccess(predicateArgument, type); if (access) { return narrowTypeByDiscriminant(type, access, function (t) { return getNarrowedType(t, predicate.type, assumeTrue, isTypeSubtypeOf); }); } } } return type; } // Narrow the given type based on the given expression having the assumed boolean value. The returned type // will be a subtype or the same type as the argument. function narrowType(type, expr, assumeTrue) { // for `a?.b`, we emulate a synthetic `a !== null && a !== undefined` condition for `a` if (ts.isExpressionOfOptionalChainRoot(expr) || ts.isBinaryExpression(expr.parent) && expr.parent.operatorToken.kind === 60 /* SyntaxKind.QuestionQuestionToken */ && expr.parent.left === expr) { return narrowTypeByOptionality(type, expr, assumeTrue); } switch (expr.kind) { case 79 /* SyntaxKind.Identifier */: // When narrowing a reference to a const variable, non-assigned parameter, or readonly property, we inline // up to five levels of aliased conditional expressions that are themselves declared as const variables. if (!isMatchingReference(reference, expr) && inlineLevel < 5) { var symbol = getResolvedSymbol(expr); if (isConstVariable(symbol)) { var declaration = symbol.valueDeclaration; if (declaration && ts.isVariableDeclaration(declaration) && !declaration.type && declaration.initializer && isConstantReference(reference)) { inlineLevel++; var result = narrowType(type, declaration.initializer, assumeTrue); inlineLevel--; return result; } } } // falls through case 108 /* SyntaxKind.ThisKeyword */: case 106 /* SyntaxKind.SuperKeyword */: case 206 /* SyntaxKind.PropertyAccessExpression */: case 207 /* SyntaxKind.ElementAccessExpression */: return narrowTypeByTruthiness(type, expr, assumeTrue); case 208 /* SyntaxKind.CallExpression */: return narrowTypeByCallExpression(type, expr, assumeTrue); case 212 /* SyntaxKind.ParenthesizedExpression */: case 230 /* SyntaxKind.NonNullExpression */: return narrowType(type, expr.expression, assumeTrue); case 221 /* SyntaxKind.BinaryExpression */: return narrowTypeByBinaryExpression(type, expr, assumeTrue); case 219 /* SyntaxKind.PrefixUnaryExpression */: if (expr.operator === 53 /* SyntaxKind.ExclamationToken */) { return narrowType(type, expr.operand, !assumeTrue); } break; } return type; } function narrowTypeByOptionality(type, expr, assumePresent) { if (isMatchingReference(reference, expr)) { return getTypeWithFacts(type, assumePresent ? 2097152 /* TypeFacts.NEUndefinedOrNull */ : 262144 /* TypeFacts.EQUndefinedOrNull */); } var access = getDiscriminantPropertyAccess(expr, type); if (access) { return narrowTypeByDiscriminant(type, access, function (t) { return getTypeWithFacts(t, assumePresent ? 2097152 /* TypeFacts.NEUndefinedOrNull */ : 262144 /* TypeFacts.EQUndefinedOrNull */); }); } return type; } } function getTypeOfSymbolAtLocation(symbol, location) { symbol = symbol.exportSymbol || symbol; // If we have an identifier or a property access at the given location, if the location is // an dotted name expression, and if the location is not an assignment target, obtain the type // of the expression (which will reflect control flow analysis). If the expression indeed // resolved to the given symbol, return the narrowed type. if (location.kind === 79 /* SyntaxKind.Identifier */ || location.kind === 80 /* SyntaxKind.PrivateIdentifier */) { if (ts.isRightSideOfQualifiedNameOrPropertyAccess(location)) { location = location.parent; } if (ts.isExpressionNode(location) && (!ts.isAssignmentTarget(location) || ts.isWriteAccess(location))) { var type = getTypeOfExpression(location); if (getExportSymbolOfValueSymbolIfExported(getNodeLinks(location).resolvedSymbol) === symbol) { return type; } } } if (ts.isDeclarationName(location) && ts.isSetAccessor(location.parent) && getAnnotatedAccessorTypeNode(location.parent)) { return getWriteTypeOfAccessors(location.parent.symbol); } // The location isn't a reference to the given symbol, meaning we're being asked // a hypothetical question of what type the symbol would have if there was a reference // to it at the given location. Since we have no control flow information for the // hypothetical reference (control flow information is created and attached by the // binder), we simply return the declared type of the symbol. return getNonMissingTypeOfSymbol(symbol); } function getControlFlowContainer(node) { return ts.findAncestor(node.parent, function (node) { return ts.isFunctionLike(node) && !ts.getImmediatelyInvokedFunctionExpression(node) || node.kind === 262 /* SyntaxKind.ModuleBlock */ || node.kind === 305 /* SyntaxKind.SourceFile */ || node.kind === 167 /* SyntaxKind.PropertyDeclaration */; }); } // Check if a parameter or catch variable is assigned anywhere function isSymbolAssigned(symbol) { if (!symbol.valueDeclaration) { return false; } var parent = ts.getRootDeclaration(symbol.valueDeclaration).parent; var links = getNodeLinks(parent); if (!(links.flags & 8388608 /* NodeCheckFlags.AssignmentsMarked */)) { links.flags |= 8388608 /* NodeCheckFlags.AssignmentsMarked */; if (!hasParentWithAssignmentsMarked(parent)) { markNodeAssignments(parent); } } return symbol.isAssigned || false; } function hasParentWithAssignmentsMarked(node) { return !!ts.findAncestor(node.parent, function (node) { return (ts.isFunctionLike(node) || ts.isCatchClause(node)) && !!(getNodeLinks(node).flags & 8388608 /* NodeCheckFlags.AssignmentsMarked */); }); } function markNodeAssignments(node) { if (node.kind === 79 /* SyntaxKind.Identifier */) { if (ts.isAssignmentTarget(node)) { var symbol = getResolvedSymbol(node); if (ts.isParameterOrCatchClauseVariable(symbol)) { symbol.isAssigned = true; } } } else { ts.forEachChild(node, markNodeAssignments); } } function isConstVariable(symbol) { return symbol.flags & 3 /* SymbolFlags.Variable */ && (getDeclarationNodeFlagsFromSymbol(symbol) & 2 /* NodeFlags.Const */) !== 0; } /** remove undefined from the annotated type of a parameter when there is an initializer (that doesn't include undefined) */ function removeOptionalityFromDeclaredType(declaredType, declaration) { if (pushTypeResolution(declaration.symbol, 2 /* TypeSystemPropertyName.DeclaredType */)) { var annotationIncludesUndefined = strictNullChecks && declaration.kind === 164 /* SyntaxKind.Parameter */ && declaration.initializer && getFalsyFlags(declaredType) & 32768 /* TypeFlags.Undefined */ && !(getFalsyFlags(checkExpression(declaration.initializer)) & 32768 /* TypeFlags.Undefined */); popTypeResolution(); return annotationIncludesUndefined ? getTypeWithFacts(declaredType, 524288 /* TypeFacts.NEUndefined */) : declaredType; } else { reportCircularityError(declaration.symbol); return declaredType; } } function isConstraintPosition(type, node) { var parent = node.parent; // In an element access obj[x], we consider obj to be in a constraint position, except when obj is of // a generic type without a nullable constraint and x is a generic type. This is because when both obj // and x are of generic types T and K, we want the resulting type to be T[K]. return parent.kind === 206 /* SyntaxKind.PropertyAccessExpression */ || parent.kind === 161 /* SyntaxKind.QualifiedName */ || parent.kind === 208 /* SyntaxKind.CallExpression */ && parent.expression === node || parent.kind === 207 /* SyntaxKind.ElementAccessExpression */ && parent.expression === node && !(someType(type, isGenericTypeWithoutNullableConstraint) && isGenericIndexType(getTypeOfExpression(parent.argumentExpression))); } function isGenericTypeWithUnionConstraint(type) { return !!(type.flags & 465829888 /* TypeFlags.Instantiable */ && getBaseConstraintOrType(type).flags & (98304 /* TypeFlags.Nullable */ | 1048576 /* TypeFlags.Union */)); } function isGenericTypeWithoutNullableConstraint(type) { return !!(type.flags & 465829888 /* TypeFlags.Instantiable */ && !maybeTypeOfKind(getBaseConstraintOrType(type), 98304 /* TypeFlags.Nullable */)); } function hasContextualTypeWithNoGenericTypes(node, checkMode) { // Computing the contextual type for a child of a JSX element involves resolving the type of the // element's tag name, so we exclude that here to avoid circularities. // If check mode has `CheckMode.RestBindingElement`, we skip binding pattern contextual types, // as we want the type of a rest element to be generic when possible. var contextualType = (ts.isIdentifier(node) || ts.isPropertyAccessExpression(node) || ts.isElementAccessExpression(node)) && !((ts.isJsxOpeningElement(node.parent) || ts.isJsxSelfClosingElement(node.parent)) && node.parent.tagName === node) && (checkMode && checkMode & 64 /* CheckMode.RestBindingElement */ ? getContextualType(node, 8 /* ContextFlags.SkipBindingPatterns */) : getContextualType(node)); return contextualType && !isGenericType(contextualType); } function getNarrowableTypeForReference(type, reference, checkMode) { // When the type of a reference is or contains an instantiable type with a union type constraint, and // when the reference is in a constraint position (where it is known we'll obtain the apparent type) or // has a contextual type containing no top-level instantiables (meaning constraints will determine // assignability), we substitute constraints for all instantiables in the type of the reference to give // control flow analysis an opportunity to narrow it further. For example, for a reference of a type // parameter type 'T extends string | undefined' with a contextual type 'string', we substitute // 'string | undefined' to give control flow analysis the opportunity to narrow to type 'string'. var substituteConstraints = !(checkMode && checkMode & 2 /* CheckMode.Inferential */) && someType(type, isGenericTypeWithUnionConstraint) && (isConstraintPosition(type, reference) || hasContextualTypeWithNoGenericTypes(reference, checkMode)); return substituteConstraints ? mapType(type, function (t) { return t.flags & 465829888 /* TypeFlags.Instantiable */ ? getBaseConstraintOrType(t) : t; }) : type; } function isExportOrExportExpression(location) { return !!ts.findAncestor(location, function (n) { var parent = n.parent; if (parent === undefined) { return "quit"; } if (ts.isExportAssignment(parent)) { return parent.expression === n && ts.isEntityNameExpression(n); } if (ts.isExportSpecifier(parent)) { return parent.name === n || parent.propertyName === n; } return false; }); } function markAliasReferenced(symbol, location) { if (isNonLocalAlias(symbol, /*excludes*/ 111551 /* SymbolFlags.Value */) && !isInTypeQuery(location) && !getTypeOnlyAliasDeclaration(symbol)) { var target = resolveAlias(symbol); if (target.flags & 111551 /* SymbolFlags.Value */) { // An alias resolving to a const enum cannot be elided if (1) 'isolatedModules' is enabled // (because the const enum value will not be inlined), or if (2) the alias is an export // of a const enum declaration that will be preserved. if (compilerOptions.isolatedModules || ts.shouldPreserveConstEnums(compilerOptions) && isExportOrExportExpression(location) || !isConstEnumOrConstEnumOnlyModule(target)) { markAliasSymbolAsReferenced(symbol); } else { markConstEnumAliasAsReferenced(symbol); } } } } function getNarrowedTypeOfSymbol(symbol, location) { var declaration = symbol.valueDeclaration; if (declaration) { // If we have a non-rest binding element with no initializer declared as a const variable or a const-like // parameter (a parameter for which there are no assignments in the function body), and if the parent type // for the destructuring is a union type, one or more of the binding elements may represent discriminant // properties, and we want the effects of conditional checks on such discriminants to affect the types of // other binding elements from the same destructuring. Consider: // // type Action = // | { kind: 'A', payload: number } // | { kind: 'B', payload: string }; // // function f({ kind, payload }: Action) { // if (kind === 'A') { // payload.toFixed(); // } // if (kind === 'B') { // payload.toUpperCase(); // } // } // // Above, we want the conditional checks on 'kind' to affect the type of 'payload'. To facilitate this, we use // the binding pattern AST instance for '{ kind, payload }' as a pseudo-reference and narrow this reference // as if it occurred in the specified location. We then recompute the narrowed binding element type by // destructuring from the narrowed parent type. if (ts.isBindingElement(declaration) && !declaration.initializer && !declaration.dotDotDotToken && declaration.parent.elements.length >= 2) { var parent = declaration.parent.parent; if (parent.kind === 254 /* SyntaxKind.VariableDeclaration */ && ts.getCombinedNodeFlags(declaration) & 2 /* NodeFlags.Const */ || parent.kind === 164 /* SyntaxKind.Parameter */) { var links = getNodeLinks(parent); if (!(links.flags & 268435456 /* NodeCheckFlags.InCheckIdentifier */)) { links.flags |= 268435456 /* NodeCheckFlags.InCheckIdentifier */; var parentType = getTypeForBindingElementParent(parent, 0 /* CheckMode.Normal */); links.flags &= ~268435456 /* NodeCheckFlags.InCheckIdentifier */; if (parentType && parentType.flags & 1048576 /* TypeFlags.Union */ && !(parent.kind === 164 /* SyntaxKind.Parameter */ && isSymbolAssigned(symbol))) { var pattern = declaration.parent; var narrowedType = getFlowTypeOfReference(pattern, parentType, parentType, /*flowContainer*/ undefined, location.flowNode); if (narrowedType.flags & 131072 /* TypeFlags.Never */) { return neverType; } return getBindingElementTypeFromParentType(declaration, narrowedType); } } } } // If we have a const-like parameter with no type annotation or initializer, and if the parameter is contextually // typed by a signature with a single rest parameter of a union of tuple types, one or more of the parameters may // represent discriminant tuple elements, and we want the effects of conditional checks on such discriminants to // affect the types of other parameters in the same parameter list. Consider: // // type Action = [kind: 'A', payload: number] | [kind: 'B', payload: string]; // // const f: (...args: Action) => void = (kind, payload) => { // if (kind === 'A') { // payload.toFixed(); // } // if (kind === 'B') { // payload.toUpperCase(); // } // } // // Above, we want the conditional checks on 'kind' to affect the type of 'payload'. To facilitate this, we use // the arrow function AST node for '(kind, payload) => ...' as a pseudo-reference and narrow this reference as // if it occurred in the specified location. We then recompute the narrowed parameter type by indexing into the // narrowed tuple type. if (ts.isParameter(declaration) && !declaration.type && !declaration.initializer && !declaration.dotDotDotToken) { var func = declaration.parent; if (func.parameters.length >= 2 && isContextSensitiveFunctionOrObjectLiteralMethod(func)) { var contextualSignature = getContextualSignature(func); if (contextualSignature && contextualSignature.parameters.length === 1 && signatureHasRestParameter(contextualSignature)) { var restType = getReducedApparentType(getTypeOfSymbol(contextualSignature.parameters[0])); if (restType.flags & 1048576 /* TypeFlags.Union */ && everyType(restType, isTupleType) && !isSymbolAssigned(symbol)) { var narrowedType = getFlowTypeOfReference(func, restType, restType, /*flowContainer*/ undefined, location.flowNode); var index = func.parameters.indexOf(declaration) - (ts.getThisParameter(func) ? 1 : 0); return getIndexedAccessType(narrowedType, getNumberLiteralType(index)); } } } } } return getTypeOfSymbol(symbol); } function checkIdentifier(node, checkMode) { if (ts.isThisInTypeQuery(node)) { return checkThisExpression(node); } var symbol = getResolvedSymbol(node); if (symbol === unknownSymbol) { return errorType; } // As noted in ECMAScript 6 language spec, arrow functions never have an arguments objects. // Although in down-level emit of arrow function, we emit it using function expression which means that // arguments objects will be bound to the inner object; emitting arrow function natively in ES6, arguments objects // will be bound to non-arrow function that contain this arrow function. This results in inconsistent behavior. // To avoid that we will give an error to users if they use arguments objects in arrow function so that they // can explicitly bound arguments objects if (symbol === argumentsSymbol) { if (isInPropertyInitializerOrClassStaticBlock(node)) { error(node, ts.Diagnostics.arguments_cannot_be_referenced_in_property_initializers); return errorType; } var container = ts.getContainingFunction(node); if (languageVersion < 2 /* ScriptTarget.ES2015 */) { if (container.kind === 214 /* SyntaxKind.ArrowFunction */) { error(node, ts.Diagnostics.The_arguments_object_cannot_be_referenced_in_an_arrow_function_in_ES3_and_ES5_Consider_using_a_standard_function_expression); } else if (ts.hasSyntacticModifier(container, 256 /* ModifierFlags.Async */)) { error(node, ts.Diagnostics.The_arguments_object_cannot_be_referenced_in_an_async_function_or_method_in_ES3_and_ES5_Consider_using_a_standard_function_or_method); } } getNodeLinks(container).flags |= 8192 /* NodeCheckFlags.CaptureArguments */; return getTypeOfSymbol(symbol); } // We should only mark aliases as referenced if there isn't a local value declaration // for the symbol. Also, don't mark any property access expression LHS - checkPropertyAccessExpression will handle that if (!(node.parent && ts.isPropertyAccessExpression(node.parent) && node.parent.expression === node)) { markAliasReferenced(symbol, node); } var localOrExportSymbol = getExportSymbolOfValueSymbolIfExported(symbol); var targetSymbol = checkDeprecatedAliasedSymbol(localOrExportSymbol, node); if (isDeprecatedSymbol(targetSymbol) && isUncalledFunctionReference(node, targetSymbol) && targetSymbol.declarations) { addDeprecatedSuggestion(node, targetSymbol.declarations, node.escapedText); } var declaration = localOrExportSymbol.valueDeclaration; if (declaration && localOrExportSymbol.flags & 32 /* SymbolFlags.Class */) { // Due to the emit for class decorators, any reference to the class from inside of the class body // must instead be rewritten to point to a temporary variable to avoid issues with the double-bind // behavior of class names in ES6. if (declaration.kind === 257 /* SyntaxKind.ClassDeclaration */ && ts.nodeIsDecorated(declaration)) { var container = ts.getContainingClass(node); while (container !== undefined) { if (container === declaration && container.name !== node) { getNodeLinks(declaration).flags |= 16777216 /* NodeCheckFlags.ClassWithConstructorReference */; getNodeLinks(node).flags |= 33554432 /* NodeCheckFlags.ConstructorReferenceInClass */; break; } container = ts.getContainingClass(container); } } else if (declaration.kind === 226 /* SyntaxKind.ClassExpression */) { // When we emit a class expression with static members that contain a reference // to the constructor in the initializer, we will need to substitute that // binding with an alias as the class name is not in scope. var container = ts.getThisContainer(node, /*includeArrowFunctions*/ false); while (container.kind !== 305 /* SyntaxKind.SourceFile */) { if (container.parent === declaration) { if (ts.isPropertyDeclaration(container) && ts.isStatic(container) || ts.isClassStaticBlockDeclaration(container)) { getNodeLinks(declaration).flags |= 16777216 /* NodeCheckFlags.ClassWithConstructorReference */; getNodeLinks(node).flags |= 33554432 /* NodeCheckFlags.ConstructorReferenceInClass */; } break; } container = ts.getThisContainer(container, /*includeArrowFunctions*/ false); } } } checkNestedBlockScopedBinding(node, symbol); var type = getNarrowedTypeOfSymbol(localOrExportSymbol, node); var assignmentKind = ts.getAssignmentTargetKind(node); if (assignmentKind) { if (!(localOrExportSymbol.flags & 3 /* SymbolFlags.Variable */) && !(ts.isInJSFile(node) && localOrExportSymbol.flags & 512 /* SymbolFlags.ValueModule */)) { var assignmentError = localOrExportSymbol.flags & 384 /* SymbolFlags.Enum */ ? ts.Diagnostics.Cannot_assign_to_0_because_it_is_an_enum : localOrExportSymbol.flags & 32 /* SymbolFlags.Class */ ? ts.Diagnostics.Cannot_assign_to_0_because_it_is_a_class : localOrExportSymbol.flags & 1536 /* SymbolFlags.Module */ ? ts.Diagnostics.Cannot_assign_to_0_because_it_is_a_namespace : localOrExportSymbol.flags & 16 /* SymbolFlags.Function */ ? ts.Diagnostics.Cannot_assign_to_0_because_it_is_a_function : localOrExportSymbol.flags & 2097152 /* SymbolFlags.Alias */ ? ts.Diagnostics.Cannot_assign_to_0_because_it_is_an_import : ts.Diagnostics.Cannot_assign_to_0_because_it_is_not_a_variable; error(node, assignmentError, symbolToString(symbol)); return errorType; } if (isReadonlySymbol(localOrExportSymbol)) { if (localOrExportSymbol.flags & 3 /* SymbolFlags.Variable */) { error(node, ts.Diagnostics.Cannot_assign_to_0_because_it_is_a_constant, symbolToString(symbol)); } else { error(node, ts.Diagnostics.Cannot_assign_to_0_because_it_is_a_read_only_property, symbolToString(symbol)); } return errorType; } } var isAlias = localOrExportSymbol.flags & 2097152 /* SymbolFlags.Alias */; // We only narrow variables and parameters occurring in a non-assignment position. For all other // entities we simply return the declared type. if (localOrExportSymbol.flags & 3 /* SymbolFlags.Variable */) { if (assignmentKind === 1 /* AssignmentKind.Definite */) { return type; } } else if (isAlias) { declaration = getDeclarationOfAliasSymbol(symbol); } else { return type; } if (!declaration) { return type; } type = getNarrowableTypeForReference(type, node, checkMode); // The declaration container is the innermost function that encloses the declaration of the variable // or parameter. The flow container is the innermost function starting with which we analyze the control // flow graph to determine the control flow based type. var isParameter = ts.getRootDeclaration(declaration).kind === 164 /* SyntaxKind.Parameter */; var declarationContainer = getControlFlowContainer(declaration); var flowContainer = getControlFlowContainer(node); var isOuterVariable = flowContainer !== declarationContainer; var isSpreadDestructuringAssignmentTarget = node.parent && node.parent.parent && ts.isSpreadAssignment(node.parent) && isDestructuringAssignmentTarget(node.parent.parent); var isModuleExports = symbol.flags & 134217728 /* SymbolFlags.ModuleExports */; // When the control flow originates in a function expression or arrow function and we are referencing // a const variable or parameter from an outer function, we extend the origin of the control flow // analysis to include the immediately enclosing function. while (flowContainer !== declarationContainer && (flowContainer.kind === 213 /* SyntaxKind.FunctionExpression */ || flowContainer.kind === 214 /* SyntaxKind.ArrowFunction */ || ts.isObjectLiteralOrClassExpressionMethodOrAccessor(flowContainer)) && (isConstVariable(localOrExportSymbol) && type !== autoArrayType || isParameter && !isSymbolAssigned(localOrExportSymbol))) { flowContainer = getControlFlowContainer(flowContainer); } // We only look for uninitialized variables in strict null checking mode, and only when we can analyze // the entire control flow graph from the variable's declaration (i.e. when the flow container and // declaration container are the same). var assumeInitialized = isParameter || isAlias || isOuterVariable || isSpreadDestructuringAssignmentTarget || isModuleExports || ts.isBindingElement(declaration) || type !== autoType && type !== autoArrayType && (!strictNullChecks || (type.flags & (3 /* TypeFlags.AnyOrUnknown */ | 16384 /* TypeFlags.Void */)) !== 0 || isInTypeQuery(node) || node.parent.kind === 275 /* SyntaxKind.ExportSpecifier */) || node.parent.kind === 230 /* SyntaxKind.NonNullExpression */ || declaration.kind === 254 /* SyntaxKind.VariableDeclaration */ && declaration.exclamationToken || declaration.flags & 16777216 /* NodeFlags.Ambient */; var initialType = assumeInitialized ? (isParameter ? removeOptionalityFromDeclaredType(type, declaration) : type) : type === autoType || type === autoArrayType ? undefinedType : getOptionalType(type); var flowType = getFlowTypeOfReference(node, type, initialType, flowContainer); // A variable is considered uninitialized when it is possible to analyze the entire control flow graph // from declaration to use, and when the variable's declared type doesn't include undefined but the // control flow based type does include undefined. if (!isEvolvingArrayOperationTarget(node) && (type === autoType || type === autoArrayType)) { if (flowType === autoType || flowType === autoArrayType) { if (noImplicitAny) { error(ts.getNameOfDeclaration(declaration), ts.Diagnostics.Variable_0_implicitly_has_type_1_in_some_locations_where_its_type_cannot_be_determined, symbolToString(symbol), typeToString(flowType)); error(node, ts.Diagnostics.Variable_0_implicitly_has_an_1_type, symbolToString(symbol), typeToString(flowType)); } return convertAutoToAny(flowType); } } else if (!assumeInitialized && !(getFalsyFlags(type) & 32768 /* TypeFlags.Undefined */) && getFalsyFlags(flowType) & 32768 /* TypeFlags.Undefined */) { error(node, ts.Diagnostics.Variable_0_is_used_before_being_assigned, symbolToString(symbol)); // Return the declared type to reduce follow-on errors return type; } return assignmentKind ? getBaseTypeOfLiteralType(flowType) : flowType; } function isInsideFunctionOrInstancePropertyInitializer(node, threshold) { return !!ts.findAncestor(node, function (n) { return n === threshold ? "quit" : ts.isFunctionLike(n) || (n.parent && ts.isPropertyDeclaration(n.parent) && !ts.hasStaticModifier(n.parent) && n.parent.initializer === n); }); } function getPartOfForStatementContainingNode(node, container) { return ts.findAncestor(node, function (n) { return n === container ? "quit" : n === container.initializer || n === container.condition || n === container.incrementor || n === container.statement; }); } function getEnclosingIterationStatement(node) { return ts.findAncestor(node, function (n) { return (!n || ts.nodeStartsNewLexicalEnvironment(n)) ? "quit" : ts.isIterationStatement(n, /*lookInLabeledStatements*/ false); }); } function checkNestedBlockScopedBinding(node, symbol) { if (languageVersion >= 2 /* ScriptTarget.ES2015 */ || (symbol.flags & (2 /* SymbolFlags.BlockScopedVariable */ | 32 /* SymbolFlags.Class */)) === 0 || !symbol.valueDeclaration || ts.isSourceFile(symbol.valueDeclaration) || symbol.valueDeclaration.parent.kind === 292 /* SyntaxKind.CatchClause */) { return; } // 1. walk from the use site up to the declaration and check // if there is anything function like between declaration and use-site (is binding/class is captured in function). // 2. walk from the declaration up to the boundary of lexical environment and check // if there is an iteration statement in between declaration and boundary (is binding/class declared inside iteration statement) var container = ts.getEnclosingBlockScopeContainer(symbol.valueDeclaration); var isCaptured = isInsideFunctionOrInstancePropertyInitializer(node, container); var enclosingIterationStatement = getEnclosingIterationStatement(container); if (enclosingIterationStatement) { if (isCaptured) { // mark iteration statement as containing block-scoped binding captured in some function var capturesBlockScopeBindingInLoopBody = true; if (ts.isForStatement(container)) { var varDeclList = ts.getAncestor(symbol.valueDeclaration, 255 /* SyntaxKind.VariableDeclarationList */); if (varDeclList && varDeclList.parent === container) { var part = getPartOfForStatementContainingNode(node.parent, container); if (part) { var links = getNodeLinks(part); links.flags |= 131072 /* NodeCheckFlags.ContainsCapturedBlockScopeBinding */; var capturedBindings = links.capturedBlockScopeBindings || (links.capturedBlockScopeBindings = []); ts.pushIfUnique(capturedBindings, symbol); if (part === container.initializer) { capturesBlockScopeBindingInLoopBody = false; // Initializer is outside of loop body } } } } if (capturesBlockScopeBindingInLoopBody) { getNodeLinks(enclosingIterationStatement).flags |= 65536 /* NodeCheckFlags.LoopWithCapturedBlockScopedBinding */; } } // mark variables that are declared in loop initializer and reassigned inside the body of ForStatement. // if body of ForStatement will be converted to function then we'll need a extra machinery to propagate reassigned values back. if (ts.isForStatement(container)) { var varDeclList = ts.getAncestor(symbol.valueDeclaration, 255 /* SyntaxKind.VariableDeclarationList */); if (varDeclList && varDeclList.parent === container && isAssignedInBodyOfForStatement(node, container)) { getNodeLinks(symbol.valueDeclaration).flags |= 4194304 /* NodeCheckFlags.NeedsLoopOutParameter */; } } // set 'declared inside loop' bit on the block-scoped binding getNodeLinks(symbol.valueDeclaration).flags |= 524288 /* NodeCheckFlags.BlockScopedBindingInLoop */; } if (isCaptured) { getNodeLinks(symbol.valueDeclaration).flags |= 262144 /* NodeCheckFlags.CapturedBlockScopedBinding */; } } function isBindingCapturedByNode(node, decl) { var links = getNodeLinks(node); return !!links && ts.contains(links.capturedBlockScopeBindings, getSymbolOfNode(decl)); } function isAssignedInBodyOfForStatement(node, container) { // skip parenthesized nodes var current = node; while (current.parent.kind === 212 /* SyntaxKind.ParenthesizedExpression */) { current = current.parent; } // check if node is used as LHS in some assignment expression var isAssigned = false; if (ts.isAssignmentTarget(current)) { isAssigned = true; } else if ((current.parent.kind === 219 /* SyntaxKind.PrefixUnaryExpression */ || current.parent.kind === 220 /* SyntaxKind.PostfixUnaryExpression */)) { var expr = current.parent; isAssigned = expr.operator === 45 /* SyntaxKind.PlusPlusToken */ || expr.operator === 46 /* SyntaxKind.MinusMinusToken */; } if (!isAssigned) { return false; } // at this point we know that node is the target of assignment // now check that modification happens inside the statement part of the ForStatement return !!ts.findAncestor(current, function (n) { return n === container ? "quit" : n === container.statement; }); } function captureLexicalThis(node, container) { getNodeLinks(node).flags |= 2 /* NodeCheckFlags.LexicalThis */; if (container.kind === 167 /* SyntaxKind.PropertyDeclaration */ || container.kind === 171 /* SyntaxKind.Constructor */) { var classNode = container.parent; getNodeLinks(classNode).flags |= 4 /* NodeCheckFlags.CaptureThis */; } else { getNodeLinks(container).flags |= 4 /* NodeCheckFlags.CaptureThis */; } } function findFirstSuperCall(node) { return ts.isSuperCall(node) ? node : ts.isFunctionLike(node) ? undefined : ts.forEachChild(node, findFirstSuperCall); } /** * Check if the given class-declaration extends null then return true. * Otherwise, return false * @param classDecl a class declaration to check if it extends null */ function classDeclarationExtendsNull(classDecl) { var classSymbol = getSymbolOfNode(classDecl); var classInstanceType = getDeclaredTypeOfSymbol(classSymbol); var baseConstructorType = getBaseConstructorTypeOfClass(classInstanceType); return baseConstructorType === nullWideningType; } function checkThisBeforeSuper(node, container, diagnosticMessage) { var containingClassDecl = container.parent; var baseTypeNode = ts.getClassExtendsHeritageElement(containingClassDecl); // If a containing class does not have extends clause or the class extends null // skip checking whether super statement is called before "this" accessing. if (baseTypeNode && !classDeclarationExtendsNull(containingClassDecl)) { if (node.flowNode && !isPostSuperFlowNode(node.flowNode, /*noCacheCheck*/ false)) { error(node, diagnosticMessage); } } } function checkThisInStaticClassFieldInitializerInDecoratedClass(thisExpression, container) { if (ts.isPropertyDeclaration(container) && ts.hasStaticModifier(container) && container.initializer && ts.textRangeContainsPositionInclusive(container.initializer, thisExpression.pos) && ts.length(container.parent.decorators)) { error(thisExpression, ts.Diagnostics.Cannot_use_this_in_a_static_property_initializer_of_a_decorated_class); } } function checkThisExpression(node) { var isNodeInTypeQuery = isInTypeQuery(node); // Stop at the first arrow function so that we can // tell whether 'this' needs to be captured. var container = ts.getThisContainer(node, /* includeArrowFunctions */ true); var capturedByArrowFunction = false; if (container.kind === 171 /* SyntaxKind.Constructor */) { checkThisBeforeSuper(node, container, ts.Diagnostics.super_must_be_called_before_accessing_this_in_the_constructor_of_a_derived_class); } // Now skip arrow functions to get the "real" owner of 'this'. if (container.kind === 214 /* SyntaxKind.ArrowFunction */) { container = ts.getThisContainer(container, /* includeArrowFunctions */ false); capturedByArrowFunction = true; } checkThisInStaticClassFieldInitializerInDecoratedClass(node, container); switch (container.kind) { case 261 /* SyntaxKind.ModuleDeclaration */: error(node, ts.Diagnostics.this_cannot_be_referenced_in_a_module_or_namespace_body); // do not return here so in case if lexical this is captured - it will be reflected in flags on NodeLinks break; case 260 /* SyntaxKind.EnumDeclaration */: error(node, ts.Diagnostics.this_cannot_be_referenced_in_current_location); // do not return here so in case if lexical this is captured - it will be reflected in flags on NodeLinks break; case 171 /* SyntaxKind.Constructor */: if (isInConstructorArgumentInitializer(node, container)) { error(node, ts.Diagnostics.this_cannot_be_referenced_in_constructor_arguments); // do not return here so in case if lexical this is captured - it will be reflected in flags on NodeLinks } break; case 162 /* SyntaxKind.ComputedPropertyName */: error(node, ts.Diagnostics.this_cannot_be_referenced_in_a_computed_property_name); break; } // When targeting es6, mark that we'll need to capture `this` in its lexically bound scope. if (!isNodeInTypeQuery && capturedByArrowFunction && languageVersion < 2 /* ScriptTarget.ES2015 */) { captureLexicalThis(node, container); } var type = tryGetThisTypeAt(node, /*includeGlobalThis*/ true, container); if (noImplicitThis) { var globalThisType_1 = getTypeOfSymbol(globalThisSymbol); if (type === globalThisType_1 && capturedByArrowFunction) { error(node, ts.Diagnostics.The_containing_arrow_function_captures_the_global_value_of_this); } else if (!type) { // With noImplicitThis, functions may not reference 'this' if it has type 'any' var diag = error(node, ts.Diagnostics.this_implicitly_has_type_any_because_it_does_not_have_a_type_annotation); if (!ts.isSourceFile(container)) { var outsideThis = tryGetThisTypeAt(container); if (outsideThis && outsideThis !== globalThisType_1) { ts.addRelatedInfo(diag, ts.createDiagnosticForNode(container, ts.Diagnostics.An_outer_value_of_this_is_shadowed_by_this_container)); } } } } return type || anyType; } function tryGetThisTypeAt(node, includeGlobalThis, container) { if (includeGlobalThis === void 0) { includeGlobalThis = true; } if (container === void 0) { container = ts.getThisContainer(node, /*includeArrowFunctions*/ false); } var isInJS = ts.isInJSFile(node); if (ts.isFunctionLike(container) && (!isInParameterInitializerBeforeContainingFunction(node) || ts.getThisParameter(container))) { var thisType = getThisTypeOfDeclaration(container) || isInJS && getTypeForThisExpressionFromJSDoc(container); // Note: a parameter initializer should refer to class-this unless function-this is explicitly annotated. // If this is a function in a JS file, it might be a class method. if (!thisType) { var className = getClassNameFromPrototypeMethod(container); if (isInJS && className) { var classSymbol = checkExpression(className).symbol; if (classSymbol && classSymbol.members && (classSymbol.flags & 16 /* SymbolFlags.Function */)) { thisType = getDeclaredTypeOfSymbol(classSymbol).thisType; } } else if (isJSConstructor(container)) { thisType = getDeclaredTypeOfSymbol(getMergedSymbol(container.symbol)).thisType; } thisType || (thisType = getContextualThisParameterType(container)); } if (thisType) { return getFlowTypeOfReference(node, thisType); } } if (ts.isClassLike(container.parent)) { var symbol = getSymbolOfNode(container.parent); var type = ts.isStatic(container) ? getTypeOfSymbol(symbol) : getDeclaredTypeOfSymbol(symbol).thisType; return getFlowTypeOfReference(node, type); } if (ts.isSourceFile(container)) { // look up in the source file's locals or exports if (container.commonJsModuleIndicator) { var fileSymbol = getSymbolOfNode(container); return fileSymbol && getTypeOfSymbol(fileSymbol); } else if (container.externalModuleIndicator) { // TODO: Maybe issue a better error than 'object is possibly undefined' return undefinedType; } else if (includeGlobalThis) { return getTypeOfSymbol(globalThisSymbol); } } } function getExplicitThisType(node) { var container = ts.getThisContainer(node, /*includeArrowFunctions*/ false); if (ts.isFunctionLike(container)) { var signature = getSignatureFromDeclaration(container); if (signature.thisParameter) { return getExplicitTypeOfSymbol(signature.thisParameter); } } if (ts.isClassLike(container.parent)) { var symbol = getSymbolOfNode(container.parent); return ts.isStatic(container) ? getTypeOfSymbol(symbol) : getDeclaredTypeOfSymbol(symbol).thisType; } } function getClassNameFromPrototypeMethod(container) { // Check if it's the RHS of a x.prototype.y = function [name]() { .... } if (container.kind === 213 /* SyntaxKind.FunctionExpression */ && ts.isBinaryExpression(container.parent) && ts.getAssignmentDeclarationKind(container.parent) === 3 /* AssignmentDeclarationKind.PrototypeProperty */) { // Get the 'x' of 'x.prototype.y = container' return container.parent // x.prototype.y = container .left // x.prototype.y .expression // x.prototype .expression; // x } // x.prototype = { method() { } } else if (container.kind === 169 /* SyntaxKind.MethodDeclaration */ && container.parent.kind === 205 /* SyntaxKind.ObjectLiteralExpression */ && ts.isBinaryExpression(container.parent.parent) && ts.getAssignmentDeclarationKind(container.parent.parent) === 6 /* AssignmentDeclarationKind.Prototype */) { return container.parent.parent.left.expression; } // x.prototype = { method: function() { } } else if (container.kind === 213 /* SyntaxKind.FunctionExpression */ && container.parent.kind === 296 /* SyntaxKind.PropertyAssignment */ && container.parent.parent.kind === 205 /* SyntaxKind.ObjectLiteralExpression */ && ts.isBinaryExpression(container.parent.parent.parent) && ts.getAssignmentDeclarationKind(container.parent.parent.parent) === 6 /* AssignmentDeclarationKind.Prototype */) { return container.parent.parent.parent.left.expression; } // Object.defineProperty(x, "method", { value: function() { } }); // Object.defineProperty(x, "method", { set: (x: () => void) => void }); // Object.defineProperty(x, "method", { get: () => function() { }) }); else if (container.kind === 213 /* SyntaxKind.FunctionExpression */ && ts.isPropertyAssignment(container.parent) && ts.isIdentifier(container.parent.name) && (container.parent.name.escapedText === "value" || container.parent.name.escapedText === "get" || container.parent.name.escapedText === "set") && ts.isObjectLiteralExpression(container.parent.parent) && ts.isCallExpression(container.parent.parent.parent) && container.parent.parent.parent.arguments[2] === container.parent.parent && ts.getAssignmentDeclarationKind(container.parent.parent.parent) === 9 /* AssignmentDeclarationKind.ObjectDefinePrototypeProperty */) { return container.parent.parent.parent.arguments[0].expression; } // Object.defineProperty(x, "method", { value() { } }); // Object.defineProperty(x, "method", { set(x: () => void) {} }); // Object.defineProperty(x, "method", { get() { return () => {} } }); else if (ts.isMethodDeclaration(container) && ts.isIdentifier(container.name) && (container.name.escapedText === "value" || container.name.escapedText === "get" || container.name.escapedText === "set") && ts.isObjectLiteralExpression(container.parent) && ts.isCallExpression(container.parent.parent) && container.parent.parent.arguments[2] === container.parent && ts.getAssignmentDeclarationKind(container.parent.parent) === 9 /* AssignmentDeclarationKind.ObjectDefinePrototypeProperty */) { return container.parent.parent.arguments[0].expression; } } function getTypeForThisExpressionFromJSDoc(node) { var jsdocType = ts.getJSDocType(node); if (jsdocType && jsdocType.kind === 317 /* SyntaxKind.JSDocFunctionType */) { var jsDocFunctionType = jsdocType; if (jsDocFunctionType.parameters.length > 0 && jsDocFunctionType.parameters[0].name && jsDocFunctionType.parameters[0].name.escapedText === "this" /* InternalSymbolName.This */) { return getTypeFromTypeNode(jsDocFunctionType.parameters[0].type); } } var thisTag = ts.getJSDocThisTag(node); if (thisTag && thisTag.typeExpression) { return getTypeFromTypeNode(thisTag.typeExpression); } } function isInConstructorArgumentInitializer(node, constructorDecl) { return !!ts.findAncestor(node, function (n) { return ts.isFunctionLikeDeclaration(n) ? "quit" : n.kind === 164 /* SyntaxKind.Parameter */ && n.parent === constructorDecl; }); } function checkSuperExpression(node) { var isCallExpression = node.parent.kind === 208 /* SyntaxKind.CallExpression */ && node.parent.expression === node; var immediateContainer = ts.getSuperContainer(node, /*stopOnFunctions*/ true); var container = immediateContainer; var needToCaptureLexicalThis = false; // adjust the container reference in case if super is used inside arrow functions with arbitrarily deep nesting if (!isCallExpression) { while (container && container.kind === 214 /* SyntaxKind.ArrowFunction */) { container = ts.getSuperContainer(container, /*stopOnFunctions*/ true); needToCaptureLexicalThis = languageVersion < 2 /* ScriptTarget.ES2015 */; } } var canUseSuperExpression = isLegalUsageOfSuperExpression(container); var nodeCheckFlag = 0; if (!canUseSuperExpression) { // issue more specific error if super is used in computed property name // class A { foo() { return "1" }} // class B { // [super.foo()]() {} // } var current = ts.findAncestor(node, function (n) { return n === container ? "quit" : n.kind === 162 /* SyntaxKind.ComputedPropertyName */; }); if (current && current.kind === 162 /* SyntaxKind.ComputedPropertyName */) { error(node, ts.Diagnostics.super_cannot_be_referenced_in_a_computed_property_name); } else if (isCallExpression) { error(node, ts.Diagnostics.Super_calls_are_not_permitted_outside_constructors_or_in_nested_functions_inside_constructors); } else if (!container || !container.parent || !(ts.isClassLike(container.parent) || container.parent.kind === 205 /* SyntaxKind.ObjectLiteralExpression */)) { error(node, ts.Diagnostics.super_can_only_be_referenced_in_members_of_derived_classes_or_object_literal_expressions); } else { error(node, ts.Diagnostics.super_property_access_is_permitted_only_in_a_constructor_member_function_or_member_accessor_of_a_derived_class); } return errorType; } if (!isCallExpression && immediateContainer.kind === 171 /* SyntaxKind.Constructor */) { checkThisBeforeSuper(node, container, ts.Diagnostics.super_must_be_called_before_accessing_a_property_of_super_in_the_constructor_of_a_derived_class); } if (ts.isStatic(container) || isCallExpression) { nodeCheckFlag = 512 /* NodeCheckFlags.SuperStatic */; if (!isCallExpression && languageVersion >= 2 /* ScriptTarget.ES2015 */ && languageVersion <= 8 /* ScriptTarget.ES2021 */ && (ts.isPropertyDeclaration(container) || ts.isClassStaticBlockDeclaration(container))) { // for `super.x` or `super[x]` in a static initializer, mark all enclosing // block scope containers so that we can report potential collisions with // `Reflect`. ts.forEachEnclosingBlockScopeContainer(node.parent, function (current) { if (!ts.isSourceFile(current) || ts.isExternalOrCommonJsModule(current)) { getNodeLinks(current).flags |= 134217728 /* NodeCheckFlags.ContainsSuperPropertyInStaticInitializer */; } }); } } else { nodeCheckFlag = 256 /* NodeCheckFlags.SuperInstance */; } getNodeLinks(node).flags |= nodeCheckFlag; // Due to how we emit async functions, we need to specialize the emit for an async method that contains a `super` reference. // This is due to the fact that we emit the body of an async function inside of a generator function. As generator // functions cannot reference `super`, we emit a helper inside of the method body, but outside of the generator. This helper // uses an arrow function, which is permitted to reference `super`. // // There are two primary ways we can access `super` from within an async method. The first is getting the value of a property // or indexed access on super, either as part of a right-hand-side expression or call expression. The second is when setting the value // of a property or indexed access, either as part of an assignment expression or destructuring assignment. // // The simplest case is reading a value, in which case we will emit something like the following: // // // ts // ... // async asyncMethod() { // let x = await super.asyncMethod(); // return x; // } // ... // // // js // ... // asyncMethod() { // const _super = Object.create(null, { // asyncMethod: { get: () => super.asyncMethod }, // }); // return __awaiter(this, arguments, Promise, function *() { // let x = yield _super.asyncMethod.call(this); // return x; // }); // } // ... // // The more complex case is when we wish to assign a value, especially as part of a destructuring assignment. As both cases // are legal in ES6, but also likely less frequent, we only emit setters if there is an assignment: // // // ts // ... // async asyncMethod(ar: Promise) { // [super.a, super.b] = await ar; // } // ... // // // js // ... // asyncMethod(ar) { // const _super = Object.create(null, { // a: { get: () => super.a, set: (v) => super.a = v }, // b: { get: () => super.b, set: (v) => super.b = v } // }; // return __awaiter(this, arguments, Promise, function *() { // [_super.a, _super.b] = yield ar; // }); // } // ... // // Creating an object that has getter and setters instead of just an accessor function is required for destructuring assignments // as a call expression cannot be used as the target of a destructuring assignment while a property access can. // // For element access expressions (`super[x]`), we emit a generic helper that forwards the element access in both situations. if (container.kind === 169 /* SyntaxKind.MethodDeclaration */ && ts.hasSyntacticModifier(container, 256 /* ModifierFlags.Async */)) { if (ts.isSuperProperty(node.parent) && ts.isAssignmentTarget(node.parent)) { getNodeLinks(container).flags |= 4096 /* NodeCheckFlags.AsyncMethodWithSuperBinding */; } else { getNodeLinks(container).flags |= 2048 /* NodeCheckFlags.AsyncMethodWithSuper */; } } if (needToCaptureLexicalThis) { // call expressions are allowed only in constructors so they should always capture correct 'this' // super property access expressions can also appear in arrow functions - // in this case they should also use correct lexical this captureLexicalThis(node.parent, container); } if (container.parent.kind === 205 /* SyntaxKind.ObjectLiteralExpression */) { if (languageVersion < 2 /* ScriptTarget.ES2015 */) { error(node, ts.Diagnostics.super_is_only_allowed_in_members_of_object_literal_expressions_when_option_target_is_ES2015_or_higher); return errorType; } else { // for object literal assume that type of 'super' is 'any' return anyType; } } // at this point the only legal case for parent is ClassLikeDeclaration var classLikeDeclaration = container.parent; if (!ts.getClassExtendsHeritageElement(classLikeDeclaration)) { error(node, ts.Diagnostics.super_can_only_be_referenced_in_a_derived_class); return errorType; } var classType = getDeclaredTypeOfSymbol(getSymbolOfNode(classLikeDeclaration)); var baseClassType = classType && getBaseTypes(classType)[0]; if (!baseClassType) { return errorType; } if (container.kind === 171 /* SyntaxKind.Constructor */ && isInConstructorArgumentInitializer(node, container)) { // issue custom error message for super property access in constructor arguments (to be aligned with old compiler) error(node, ts.Diagnostics.super_cannot_be_referenced_in_constructor_arguments); return errorType; } return nodeCheckFlag === 512 /* NodeCheckFlags.SuperStatic */ ? getBaseConstructorTypeOfClass(classType) : getTypeWithThisArgument(baseClassType, classType.thisType); function isLegalUsageOfSuperExpression(container) { if (!container) { return false; } if (isCallExpression) { // TS 1.0 SPEC (April 2014): 4.8.1 // Super calls are only permitted in constructors of derived classes return container.kind === 171 /* SyntaxKind.Constructor */; } else { // TS 1.0 SPEC (April 2014) // 'super' property access is allowed // - In a constructor, instance member function, instance member accessor, or instance member variable initializer where this references a derived class instance // - In a static member function or static member accessor // topmost container must be something that is directly nested in the class declaration\object literal expression if (ts.isClassLike(container.parent) || container.parent.kind === 205 /* SyntaxKind.ObjectLiteralExpression */) { if (ts.isStatic(container)) { return container.kind === 169 /* SyntaxKind.MethodDeclaration */ || container.kind === 168 /* SyntaxKind.MethodSignature */ || container.kind === 172 /* SyntaxKind.GetAccessor */ || container.kind === 173 /* SyntaxKind.SetAccessor */ || container.kind === 167 /* SyntaxKind.PropertyDeclaration */ || container.kind === 170 /* SyntaxKind.ClassStaticBlockDeclaration */; } else { return container.kind === 169 /* SyntaxKind.MethodDeclaration */ || container.kind === 168 /* SyntaxKind.MethodSignature */ || container.kind === 172 /* SyntaxKind.GetAccessor */ || container.kind === 173 /* SyntaxKind.SetAccessor */ || container.kind === 167 /* SyntaxKind.PropertyDeclaration */ || container.kind === 166 /* SyntaxKind.PropertySignature */ || container.kind === 171 /* SyntaxKind.Constructor */; } } } return false; } } function getContainingObjectLiteral(func) { return (func.kind === 169 /* SyntaxKind.MethodDeclaration */ || func.kind === 172 /* SyntaxKind.GetAccessor */ || func.kind === 173 /* SyntaxKind.SetAccessor */) && func.parent.kind === 205 /* SyntaxKind.ObjectLiteralExpression */ ? func.parent : func.kind === 213 /* SyntaxKind.FunctionExpression */ && func.parent.kind === 296 /* SyntaxKind.PropertyAssignment */ ? func.parent.parent : undefined; } function getThisTypeArgument(type) { return ts.getObjectFlags(type) & 4 /* ObjectFlags.Reference */ && type.target === globalThisType ? getTypeArguments(type)[0] : undefined; } function getThisTypeFromContextualType(type) { return mapType(type, function (t) { return t.flags & 2097152 /* TypeFlags.Intersection */ ? ts.forEach(t.types, getThisTypeArgument) : getThisTypeArgument(t); }); } function getContextualThisParameterType(func) { if (func.kind === 214 /* SyntaxKind.ArrowFunction */) { return undefined; } if (isContextSensitiveFunctionOrObjectLiteralMethod(func)) { var contextualSignature = getContextualSignature(func); if (contextualSignature) { var thisParameter = contextualSignature.thisParameter; if (thisParameter) { return getTypeOfSymbol(thisParameter); } } } var inJs = ts.isInJSFile(func); if (noImplicitThis || inJs) { var containingLiteral = getContainingObjectLiteral(func); if (containingLiteral) { // We have an object literal method. Check if the containing object literal has a contextual type // that includes a ThisType. If so, T is the contextual type for 'this'. We continue looking in // any directly enclosing object literals. var contextualType = getApparentTypeOfContextualType(containingLiteral); var literal = containingLiteral; var type = contextualType; while (type) { var thisType = getThisTypeFromContextualType(type); if (thisType) { return instantiateType(thisType, getMapperFromContext(getInferenceContext(containingLiteral))); } if (literal.parent.kind !== 296 /* SyntaxKind.PropertyAssignment */) { break; } literal = literal.parent.parent; type = getApparentTypeOfContextualType(literal); } // There was no contextual ThisType for the containing object literal, so the contextual type // for 'this' is the non-null form of the contextual type for the containing object literal or // the type of the object literal itself. return getWidenedType(contextualType ? getNonNullableType(contextualType) : checkExpressionCached(containingLiteral)); } // In an assignment of the form 'obj.xxx = function(...)' or 'obj[xxx] = function(...)', the // contextual type for 'this' is 'obj'. var parent = ts.walkUpParenthesizedExpressions(func.parent); if (parent.kind === 221 /* SyntaxKind.BinaryExpression */ && parent.operatorToken.kind === 63 /* SyntaxKind.EqualsToken */) { var target = parent.left; if (ts.isAccessExpression(target)) { var expression = target.expression; // Don't contextually type `this` as `exports` in `exports.Point = function(x, y) { this.x = x; this.y = y; }` if (inJs && ts.isIdentifier(expression)) { var sourceFile = ts.getSourceFileOfNode(parent); if (sourceFile.commonJsModuleIndicator && getResolvedSymbol(expression) === sourceFile.symbol) { return undefined; } } return getWidenedType(checkExpressionCached(expression)); } } } return undefined; } // Return contextual type of parameter or undefined if no contextual type is available function getContextuallyTypedParameterType(parameter) { var func = parameter.parent; if (!isContextSensitiveFunctionOrObjectLiteralMethod(func)) { return undefined; } var iife = ts.getImmediatelyInvokedFunctionExpression(func); if (iife && iife.arguments) { var args = getEffectiveCallArguments(iife); var indexOfParameter = func.parameters.indexOf(parameter); if (parameter.dotDotDotToken) { return getSpreadArgumentType(args, indexOfParameter, args.length, anyType, /*context*/ undefined, 0 /* CheckMode.Normal */); } var links = getNodeLinks(iife); var cached = links.resolvedSignature; links.resolvedSignature = anySignature; var type = indexOfParameter < args.length ? getWidenedLiteralType(checkExpression(args[indexOfParameter])) : parameter.initializer ? undefined : undefinedWideningType; links.resolvedSignature = cached; return type; } var contextualSignature = getContextualSignature(func); if (contextualSignature) { var index = func.parameters.indexOf(parameter) - (ts.getThisParameter(func) ? 1 : 0); return parameter.dotDotDotToken && ts.lastOrUndefined(func.parameters) === parameter ? getRestTypeAtPosition(contextualSignature, index) : tryGetTypeAtPosition(contextualSignature, index); } } function getContextualTypeForVariableLikeDeclaration(declaration) { var typeNode = ts.getEffectiveTypeAnnotationNode(declaration); if (typeNode) { return getTypeFromTypeNode(typeNode); } switch (declaration.kind) { case 164 /* SyntaxKind.Parameter */: return getContextuallyTypedParameterType(declaration); case 203 /* SyntaxKind.BindingElement */: return getContextualTypeForBindingElement(declaration); case 167 /* SyntaxKind.PropertyDeclaration */: if (ts.isStatic(declaration)) { return getContextualTypeForStaticPropertyDeclaration(declaration); } // By default, do nothing and return undefined - only the above cases have context implied by a parent } } function getContextualTypeForBindingElement(declaration) { var parent = declaration.parent.parent; var name = declaration.propertyName || declaration.name; var parentType = getContextualTypeForVariableLikeDeclaration(parent) || parent.kind !== 203 /* SyntaxKind.BindingElement */ && parent.initializer && checkDeclarationInitializer(parent, declaration.dotDotDotToken ? 64 /* CheckMode.RestBindingElement */ : 0 /* CheckMode.Normal */); if (!parentType || ts.isBindingPattern(name) || ts.isComputedNonLiteralName(name)) return undefined; if (parent.name.kind === 202 /* SyntaxKind.ArrayBindingPattern */) { var index = ts.indexOfNode(declaration.parent.elements, declaration); if (index < 0) return undefined; return getContextualTypeForElementExpression(parentType, index); } var nameType = getLiteralTypeFromPropertyName(name); if (isTypeUsableAsPropertyName(nameType)) { var text = getPropertyNameFromType(nameType); return getTypeOfPropertyOfType(parentType, text); } } function getContextualTypeForStaticPropertyDeclaration(declaration) { var parentType = ts.isExpression(declaration.parent) && getContextualType(declaration.parent); if (!parentType) return undefined; return getTypeOfPropertyOfContextualType(parentType, getSymbolOfNode(declaration).escapedName); } // In a variable, parameter or property declaration with a type annotation, // the contextual type of an initializer expression is the type of the variable, parameter or property. // Otherwise, in a parameter declaration of a contextually typed function expression, // the contextual type of an initializer expression is the contextual type of the parameter. // Otherwise, in a variable or parameter declaration with a binding pattern name, // the contextual type of an initializer expression is the type implied by the binding pattern. // Otherwise, in a binding pattern inside a variable or parameter declaration, // the contextual type of an initializer expression is the type annotation of the containing declaration, if present. function getContextualTypeForInitializerExpression(node, contextFlags) { var declaration = node.parent; if (ts.hasInitializer(declaration) && node === declaration.initializer) { var result = getContextualTypeForVariableLikeDeclaration(declaration); if (result) { return result; } if (!(contextFlags & 8 /* ContextFlags.SkipBindingPatterns */) && ts.isBindingPattern(declaration.name)) { // This is less a contextual type and more an implied shape - in some cases, this may be undesirable return getTypeFromBindingPattern(declaration.name, /*includePatternInType*/ true, /*reportErrors*/ false); } } return undefined; } function getContextualTypeForReturnExpression(node) { var func = ts.getContainingFunction(node); if (func) { var contextualReturnType = getContextualReturnType(func); if (contextualReturnType) { var functionFlags = ts.getFunctionFlags(func); if (functionFlags & 1 /* FunctionFlags.Generator */) { // Generator or AsyncGenerator function var use = functionFlags & 2 /* FunctionFlags.Async */ ? 2 /* IterationUse.AsyncGeneratorReturnType */ : 1 /* IterationUse.GeneratorReturnType */; var iterationTypes = getIterationTypesOfIterable(contextualReturnType, use, /*errorNode*/ undefined); if (!iterationTypes) { return undefined; } contextualReturnType = iterationTypes.returnType; // falls through to unwrap Promise for AsyncGenerators } if (functionFlags & 2 /* FunctionFlags.Async */) { // Async function or AsyncGenerator function // Get the awaited type without the `Awaited` alias var contextualAwaitedType = mapType(contextualReturnType, getAwaitedTypeNoAlias); return contextualAwaitedType && getUnionType([contextualAwaitedType, createPromiseLikeType(contextualAwaitedType)]); } return contextualReturnType; // Regular function or Generator function } } return undefined; } function getContextualTypeForAwaitOperand(node, contextFlags) { var contextualType = getContextualType(node, contextFlags); if (contextualType) { var contextualAwaitedType = getAwaitedTypeNoAlias(contextualType); return contextualAwaitedType && getUnionType([contextualAwaitedType, createPromiseLikeType(contextualAwaitedType)]); } return undefined; } function getContextualTypeForYieldOperand(node) { var func = ts.getContainingFunction(node); if (func) { var functionFlags = ts.getFunctionFlags(func); var contextualReturnType = getContextualReturnType(func); if (contextualReturnType) { return node.asteriskToken ? contextualReturnType : getIterationTypeOfGeneratorFunctionReturnType(0 /* IterationTypeKind.Yield */, contextualReturnType, (functionFlags & 2 /* FunctionFlags.Async */) !== 0); } } return undefined; } function isInParameterInitializerBeforeContainingFunction(node) { var inBindingInitializer = false; while (node.parent && !ts.isFunctionLike(node.parent)) { if (ts.isParameter(node.parent) && (inBindingInitializer || node.parent.initializer === node)) { return true; } if (ts.isBindingElement(node.parent) && node.parent.initializer === node) { inBindingInitializer = true; } node = node.parent; } return false; } function getContextualIterationType(kind, functionDecl) { var isAsync = !!(ts.getFunctionFlags(functionDecl) & 2 /* FunctionFlags.Async */); var contextualReturnType = getContextualReturnType(functionDecl); if (contextualReturnType) { return getIterationTypeOfGeneratorFunctionReturnType(kind, contextualReturnType, isAsync) || undefined; } return undefined; } function getContextualReturnType(functionDecl) { // If the containing function has a return type annotation, is a constructor, or is a get accessor whose // corresponding set accessor has a type annotation, return statements in the function are contextually typed var returnType = getReturnTypeFromAnnotation(functionDecl); if (returnType) { return returnType; } // Otherwise, if the containing function is contextually typed by a function type with exactly one call signature // and that call signature is non-generic, return statements are contextually typed by the return type of the signature var signature = getContextualSignatureForFunctionLikeDeclaration(functionDecl); if (signature && !isResolvingReturnTypeOfSignature(signature)) { return getReturnTypeOfSignature(signature); } var iife = ts.getImmediatelyInvokedFunctionExpression(functionDecl); if (iife) { return getContextualType(iife); } return undefined; } // In a typed function call, an argument or substitution expression is contextually typed by the type of the corresponding parameter. function getContextualTypeForArgument(callTarget, arg) { var args = getEffectiveCallArguments(callTarget); var argIndex = args.indexOf(arg); // -1 for e.g. the expression of a CallExpression, or the tag of a TaggedTemplateExpression return argIndex === -1 ? undefined : getContextualTypeForArgumentAtIndex(callTarget, argIndex); } function getContextualTypeForArgumentAtIndex(callTarget, argIndex) { if (ts.isImportCall(callTarget)) { return argIndex === 0 ? stringType : argIndex === 1 ? getGlobalImportCallOptionsType(/*reportErrors*/ false) : anyType; } // If we're already in the process of resolving the given signature, don't resolve again as // that could cause infinite recursion. Instead, return anySignature. var signature = getNodeLinks(callTarget).resolvedSignature === resolvingSignature ? resolvingSignature : getResolvedSignature(callTarget); if (ts.isJsxOpeningLikeElement(callTarget) && argIndex === 0) { return getEffectiveFirstArgumentForJsxSignature(signature, callTarget); } var restIndex = signature.parameters.length - 1; return signatureHasRestParameter(signature) && argIndex >= restIndex ? getIndexedAccessType(getTypeOfSymbol(signature.parameters[restIndex]), getNumberLiteralType(argIndex - restIndex), 256 /* AccessFlags.Contextual */) : getTypeAtPosition(signature, argIndex); } function getContextualTypeForSubstitutionExpression(template, substitutionExpression) { if (template.parent.kind === 210 /* SyntaxKind.TaggedTemplateExpression */) { return getContextualTypeForArgument(template.parent, substitutionExpression); } return undefined; } function getContextualTypeForBinaryOperand(node, contextFlags) { var binaryExpression = node.parent; var left = binaryExpression.left, operatorToken = binaryExpression.operatorToken, right = binaryExpression.right; switch (operatorToken.kind) { case 63 /* SyntaxKind.EqualsToken */: case 76 /* SyntaxKind.AmpersandAmpersandEqualsToken */: case 75 /* SyntaxKind.BarBarEqualsToken */: case 77 /* SyntaxKind.QuestionQuestionEqualsToken */: return node === right ? getContextualTypeForAssignmentDeclaration(binaryExpression) : undefined; case 56 /* SyntaxKind.BarBarToken */: case 60 /* SyntaxKind.QuestionQuestionToken */: // When an || expression has a contextual type, the operands are contextually typed by that type, except // when that type originates in a binding pattern, the right operand is contextually typed by the type of // the left operand. When an || expression has no contextual type, the right operand is contextually typed // by the type of the left operand, except for the special case of Javascript declarations of the form // `namespace.prop = namespace.prop || {}`. var type = getContextualType(binaryExpression, contextFlags); return node === right && (type && type.pattern || !type && !ts.isDefaultedExpandoInitializer(binaryExpression)) ? getTypeOfExpression(left) : type; case 55 /* SyntaxKind.AmpersandAmpersandToken */: case 27 /* SyntaxKind.CommaToken */: return node === right ? getContextualType(binaryExpression, contextFlags) : undefined; default: return undefined; } } /** * Try to find a resolved symbol for an expression without also resolving its type, as * getSymbolAtLocation would (as that could be reentrant into contextual typing) */ function getSymbolForExpression(e) { if (e.symbol) { return e.symbol; } if (ts.isIdentifier(e)) { return getResolvedSymbol(e); } if (ts.isPropertyAccessExpression(e)) { var lhsType = getTypeOfExpression(e.expression); return ts.isPrivateIdentifier(e.name) ? tryGetPrivateIdentifierPropertyOfType(lhsType, e.name) : getPropertyOfType(lhsType, e.name.escapedText); } return undefined; function tryGetPrivateIdentifierPropertyOfType(type, id) { var lexicallyScopedSymbol = lookupSymbolForPrivateIdentifierDeclaration(id.escapedText, id); return lexicallyScopedSymbol && getPrivateIdentifierPropertyOfType(type, lexicallyScopedSymbol); } } // In an assignment expression, the right operand is contextually typed by the type of the left operand. // Don't do this for assignment declarations unless there is a type tag on the assignment, to avoid circularity from checking the right operand. function getContextualTypeForAssignmentDeclaration(binaryExpression) { var _a, _b; var kind = ts.getAssignmentDeclarationKind(binaryExpression); switch (kind) { case 0 /* AssignmentDeclarationKind.None */: case 4 /* AssignmentDeclarationKind.ThisProperty */: var lhsSymbol = getSymbolForExpression(binaryExpression.left); var decl = lhsSymbol && lhsSymbol.valueDeclaration; // Unannotated, uninitialized property declarations have a type implied by their usage in the constructor. // We avoid calling back into `getTypeOfExpression` and reentering contextual typing to avoid a bogus circularity error in that case. if (decl && (ts.isPropertyDeclaration(decl) || ts.isPropertySignature(decl))) { var overallAnnotation = ts.getEffectiveTypeAnnotationNode(decl); return (overallAnnotation && instantiateType(getTypeFromTypeNode(overallAnnotation), getSymbolLinks(lhsSymbol).mapper)) || (decl.initializer && getTypeOfExpression(binaryExpression.left)); } if (kind === 0 /* AssignmentDeclarationKind.None */) { return getTypeOfExpression(binaryExpression.left); } return getContextualTypeForThisPropertyAssignment(binaryExpression); case 5 /* AssignmentDeclarationKind.Property */: if (isPossiblyAliasedThisProperty(binaryExpression, kind)) { return getContextualTypeForThisPropertyAssignment(binaryExpression); } // If `binaryExpression.left` was assigned a symbol, then this is a new declaration; otherwise it is an assignment to an existing declaration. // See `bindStaticPropertyAssignment` in `binder.ts`. else if (!binaryExpression.left.symbol) { return getTypeOfExpression(binaryExpression.left); } else { var decl_1 = binaryExpression.left.symbol.valueDeclaration; if (!decl_1) { return undefined; } var lhs = ts.cast(binaryExpression.left, ts.isAccessExpression); var overallAnnotation = ts.getEffectiveTypeAnnotationNode(decl_1); if (overallAnnotation) { return getTypeFromTypeNode(overallAnnotation); } else if (ts.isIdentifier(lhs.expression)) { var id = lhs.expression; var parentSymbol = resolveName(id, id.escapedText, 111551 /* SymbolFlags.Value */, undefined, id.escapedText, /*isUse*/ true); if (parentSymbol) { var annotated_1 = parentSymbol.valueDeclaration && ts.getEffectiveTypeAnnotationNode(parentSymbol.valueDeclaration); if (annotated_1) { var nameStr = ts.getElementOrPropertyAccessName(lhs); if (nameStr !== undefined) { return getTypeOfPropertyOfContextualType(getTypeFromTypeNode(annotated_1), nameStr); } } return undefined; } } return ts.isInJSFile(decl_1) ? undefined : getTypeOfExpression(binaryExpression.left); } case 1 /* AssignmentDeclarationKind.ExportsProperty */: case 6 /* AssignmentDeclarationKind.Prototype */: case 3 /* AssignmentDeclarationKind.PrototypeProperty */: var valueDeclaration = (_a = binaryExpression.left.symbol) === null || _a === void 0 ? void 0 : _a.valueDeclaration; // falls through case 2 /* AssignmentDeclarationKind.ModuleExports */: valueDeclaration || (valueDeclaration = (_b = binaryExpression.symbol) === null || _b === void 0 ? void 0 : _b.valueDeclaration); var annotated = valueDeclaration && ts.getEffectiveTypeAnnotationNode(valueDeclaration); return annotated ? getTypeFromTypeNode(annotated) : undefined; case 7 /* AssignmentDeclarationKind.ObjectDefinePropertyValue */: case 8 /* AssignmentDeclarationKind.ObjectDefinePropertyExports */: case 9 /* AssignmentDeclarationKind.ObjectDefinePrototypeProperty */: return ts.Debug.fail("Does not apply"); default: return ts.Debug.assertNever(kind); } } function isPossiblyAliasedThisProperty(declaration, kind) { if (kind === void 0) { kind = ts.getAssignmentDeclarationKind(declaration); } if (kind === 4 /* AssignmentDeclarationKind.ThisProperty */) { return true; } if (!ts.isInJSFile(declaration) || kind !== 5 /* AssignmentDeclarationKind.Property */ || !ts.isIdentifier(declaration.left.expression)) { return false; } var name = declaration.left.expression.escapedText; var symbol = resolveName(declaration.left, name, 111551 /* SymbolFlags.Value */, undefined, undefined, /*isUse*/ true, /*excludeGlobals*/ true); return ts.isThisInitializedDeclaration(symbol === null || symbol === void 0 ? void 0 : symbol.valueDeclaration); } function getContextualTypeForThisPropertyAssignment(binaryExpression) { if (!binaryExpression.symbol) return getTypeOfExpression(binaryExpression.left); if (binaryExpression.symbol.valueDeclaration) { var annotated = ts.getEffectiveTypeAnnotationNode(binaryExpression.symbol.valueDeclaration); if (annotated) { var type = getTypeFromTypeNode(annotated); if (type) { return type; } } } var thisAccess = ts.cast(binaryExpression.left, ts.isAccessExpression); if (!ts.isObjectLiteralMethod(ts.getThisContainer(thisAccess.expression, /*includeArrowFunctions*/ false))) { return undefined; } var thisType = checkThisExpression(thisAccess.expression); var nameStr = ts.getElementOrPropertyAccessName(thisAccess); return nameStr !== undefined && getTypeOfPropertyOfContextualType(thisType, nameStr) || undefined; } function isCircularMappedProperty(symbol) { return !!(ts.getCheckFlags(symbol) & 262144 /* CheckFlags.Mapped */ && !symbol.type && findResolutionCycleStartIndex(symbol, 0 /* TypeSystemPropertyName.Type */) >= 0); } function getTypeOfPropertyOfContextualType(type, name, nameType) { return mapType(type, function (t) { var _a; if (isGenericMappedType(t) && !t.declaration.nameType) { var constraint = getConstraintTypeFromMappedType(t); var constraintOfConstraint = getBaseConstraintOfType(constraint) || constraint; var propertyNameType = nameType || getStringLiteralType(ts.unescapeLeadingUnderscores(name)); if (isTypeAssignableTo(propertyNameType, constraintOfConstraint)) { return substituteIndexedMappedType(t, propertyNameType); } } else if (t.flags & 3670016 /* TypeFlags.StructuredType */) { var prop = getPropertyOfType(t, name); if (prop) { return isCircularMappedProperty(prop) ? undefined : getTypeOfSymbol(prop); } if (isTupleType(t)) { var restType = getRestTypeOfTupleType(t); if (restType && ts.isNumericLiteralName(name) && +name >= 0) { return restType; } } return (_a = findApplicableIndexInfo(getIndexInfosOfStructuredType(t), nameType || getStringLiteralType(ts.unescapeLeadingUnderscores(name)))) === null || _a === void 0 ? void 0 : _a.type; } return undefined; }, /*noReductions*/ true); } // In an object literal contextually typed by a type T, the contextual type of a property assignment is the type of // the matching property in T, if one exists. Otherwise, it is the type of the numeric index signature in T, if one // exists. Otherwise, it is the type of the string index signature in T, if one exists. function getContextualTypeForObjectLiteralMethod(node, contextFlags) { ts.Debug.assert(ts.isObjectLiteralMethod(node)); if (node.flags & 33554432 /* NodeFlags.InWithStatement */) { // We cannot answer semantic questions within a with block, do not proceed any further return undefined; } return getContextualTypeForObjectLiteralElement(node, contextFlags); } function getContextualTypeForObjectLiteralElement(element, contextFlags) { var objectLiteral = element.parent; var propertyAssignmentType = ts.isPropertyAssignment(element) && getContextualTypeForVariableLikeDeclaration(element); if (propertyAssignmentType) { return propertyAssignmentType; } var type = getApparentTypeOfContextualType(objectLiteral, contextFlags); if (type) { if (hasBindableName(element)) { // For a (non-symbol) computed property, there is no reason to look up the name // in the type. It will just be "__computed", which does not appear in any // SymbolTable. var symbol = getSymbolOfNode(element); return getTypeOfPropertyOfContextualType(type, symbol.escapedName, getSymbolLinks(symbol).nameType); } if (element.name) { var nameType_2 = getLiteralTypeFromPropertyName(element.name); // We avoid calling getApplicableIndexInfo here because it performs potentially expensive intersection reduction. return mapType(type, function (t) { var _a; return (_a = findApplicableIndexInfo(getIndexInfosOfStructuredType(t), nameType_2)) === null || _a === void 0 ? void 0 : _a.type; }, /*noReductions*/ true); } } return undefined; } // In an array literal contextually typed by a type T, the contextual type of an element expression at index N is // the type of the property with the numeric name N in T, if one exists. Otherwise, if T has a numeric index signature, // it is the type of the numeric index signature in T. Otherwise, in ES6 and higher, the contextual type is the iterated // type of T. function getContextualTypeForElementExpression(arrayContextualType, index) { return arrayContextualType && (getTypeOfPropertyOfContextualType(arrayContextualType, "" + index) || mapType(arrayContextualType, function (t) { return getIteratedTypeOrElementType(1 /* IterationUse.Element */, t, undefinedType, /*errorNode*/ undefined, /*checkAssignability*/ false); }, /*noReductions*/ true)); } // In a contextually typed conditional expression, the true/false expressions are contextually typed by the same type. function getContextualTypeForConditionalOperand(node, contextFlags) { var conditional = node.parent; return node === conditional.whenTrue || node === conditional.whenFalse ? getContextualType(conditional, contextFlags) : undefined; } function getContextualTypeForChildJsxExpression(node, child) { var attributesType = getApparentTypeOfContextualType(node.openingElement.tagName); // JSX expression is in children of JSX Element, we will look for an "children" attribute (we get the name from JSX.ElementAttributesProperty) var jsxChildrenPropertyName = getJsxElementChildrenPropertyName(getJsxNamespaceAt(node)); if (!(attributesType && !isTypeAny(attributesType) && jsxChildrenPropertyName && jsxChildrenPropertyName !== "")) { return undefined; } var realChildren = ts.getSemanticJsxChildren(node.children); var childIndex = realChildren.indexOf(child); var childFieldType = getTypeOfPropertyOfContextualType(attributesType, jsxChildrenPropertyName); return childFieldType && (realChildren.length === 1 ? childFieldType : mapType(childFieldType, function (t) { if (isArrayLikeType(t)) { return getIndexedAccessType(t, getNumberLiteralType(childIndex)); } else { return t; } }, /*noReductions*/ true)); } function getContextualTypeForJsxExpression(node) { var exprParent = node.parent; return ts.isJsxAttributeLike(exprParent) ? getContextualType(node) : ts.isJsxElement(exprParent) ? getContextualTypeForChildJsxExpression(exprParent, node) : undefined; } function getContextualTypeForJsxAttribute(attribute) { // When we trying to resolve JsxOpeningLikeElement as a stateless function element, we will already give its attributes a contextual type // which is a type of the parameter of the signature we are trying out. // If there is no contextual type (e.g. we are trying to resolve stateful component), get attributes type from resolving element's tagName if (ts.isJsxAttribute(attribute)) { var attributesType = getApparentTypeOfContextualType(attribute.parent); if (!attributesType || isTypeAny(attributesType)) { return undefined; } return getTypeOfPropertyOfContextualType(attributesType, attribute.name.escapedText); } else { return getContextualType(attribute.parent); } } // Return true if the given expression is possibly a discriminant value. We limit the kinds of // expressions we check to those that don't depend on their contextual type in order not to cause // recursive (and possibly infinite) invocations of getContextualType. function isPossiblyDiscriminantValue(node) { switch (node.kind) { case 10 /* SyntaxKind.StringLiteral */: case 8 /* SyntaxKind.NumericLiteral */: case 9 /* SyntaxKind.BigIntLiteral */: case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: case 110 /* SyntaxKind.TrueKeyword */: case 95 /* SyntaxKind.FalseKeyword */: case 104 /* SyntaxKind.NullKeyword */: case 79 /* SyntaxKind.Identifier */: case 153 /* SyntaxKind.UndefinedKeyword */: return true; case 206 /* SyntaxKind.PropertyAccessExpression */: case 212 /* SyntaxKind.ParenthesizedExpression */: return isPossiblyDiscriminantValue(node.expression); case 288 /* SyntaxKind.JsxExpression */: return !node.expression || isPossiblyDiscriminantValue(node.expression); } return false; } function discriminateContextualTypeByObjectMembers(node, contextualType) { return getMatchingUnionConstituentForObjectLiteral(contextualType, node) || discriminateTypeByDiscriminableItems(contextualType, ts.concatenate(ts.map(ts.filter(node.properties, function (p) { return !!p.symbol && p.kind === 296 /* SyntaxKind.PropertyAssignment */ && isPossiblyDiscriminantValue(p.initializer) && isDiscriminantProperty(contextualType, p.symbol.escapedName); }), function (prop) { return [function () { return getContextFreeTypeOfExpression(prop.initializer); }, prop.symbol.escapedName]; }), ts.map(ts.filter(getPropertiesOfType(contextualType), function (s) { var _a; return !!(s.flags & 16777216 /* SymbolFlags.Optional */) && !!((_a = node === null || node === void 0 ? void 0 : node.symbol) === null || _a === void 0 ? void 0 : _a.members) && !node.symbol.members.has(s.escapedName) && isDiscriminantProperty(contextualType, s.escapedName); }), function (s) { return [function () { return undefinedType; }, s.escapedName]; })), isTypeAssignableTo, contextualType); } function discriminateContextualTypeByJSXAttributes(node, contextualType) { return discriminateTypeByDiscriminableItems(contextualType, ts.concatenate(ts.map(ts.filter(node.properties, function (p) { return !!p.symbol && p.kind === 285 /* SyntaxKind.JsxAttribute */ && isDiscriminantProperty(contextualType, p.symbol.escapedName) && (!p.initializer || isPossiblyDiscriminantValue(p.initializer)); }), function (prop) { return [!prop.initializer ? (function () { return trueType; }) : (function () { return getContextFreeTypeOfExpression(prop.initializer); }), prop.symbol.escapedName]; }), ts.map(ts.filter(getPropertiesOfType(contextualType), function (s) { var _a; return !!(s.flags & 16777216 /* SymbolFlags.Optional */) && !!((_a = node === null || node === void 0 ? void 0 : node.symbol) === null || _a === void 0 ? void 0 : _a.members) && !node.symbol.members.has(s.escapedName) && isDiscriminantProperty(contextualType, s.escapedName); }), function (s) { return [function () { return undefinedType; }, s.escapedName]; })), isTypeAssignableTo, contextualType); } // Return the contextual type for a given expression node. During overload resolution, a contextual type may temporarily // be "pushed" onto a node using the contextualType property. function getApparentTypeOfContextualType(node, contextFlags) { var contextualType = ts.isObjectLiteralMethod(node) ? getContextualTypeForObjectLiteralMethod(node, contextFlags) : getContextualType(node, contextFlags); var instantiatedType = instantiateContextualType(contextualType, node, contextFlags); if (instantiatedType && !(contextFlags && contextFlags & 2 /* ContextFlags.NoConstraints */ && instantiatedType.flags & 8650752 /* TypeFlags.TypeVariable */)) { var apparentType = mapType(instantiatedType, getApparentType, /*noReductions*/ true); return apparentType.flags & 1048576 /* TypeFlags.Union */ && ts.isObjectLiteralExpression(node) ? discriminateContextualTypeByObjectMembers(node, apparentType) : apparentType.flags & 1048576 /* TypeFlags.Union */ && ts.isJsxAttributes(node) ? discriminateContextualTypeByJSXAttributes(node, apparentType) : apparentType; } } // If the given contextual type contains instantiable types and if a mapper representing // return type inferences is available, instantiate those types using that mapper. function instantiateContextualType(contextualType, node, contextFlags) { if (contextualType && maybeTypeOfKind(contextualType, 465829888 /* TypeFlags.Instantiable */)) { var inferenceContext = getInferenceContext(node); // If no inferences have been made, nothing is gained from instantiating as type parameters // would just be replaced with their defaults similar to the apparent type. if (inferenceContext && ts.some(inferenceContext.inferences, hasInferenceCandidates)) { // For contextual signatures we incorporate all inferences made so far, e.g. from return // types as well as arguments to the left in a function call. if (contextFlags && contextFlags & 1 /* ContextFlags.Signature */) { return instantiateInstantiableTypes(contextualType, inferenceContext.nonFixingMapper); } // For other purposes (e.g. determining whether to produce literal types) we only // incorporate inferences made from the return type in a function call. We remove // the 'boolean' type from the contextual type such that contextually typed boolean // literals actually end up widening to 'boolean' (see #48363). if (inferenceContext.returnMapper) { var type = instantiateInstantiableTypes(contextualType, inferenceContext.returnMapper); return type.flags & 1048576 /* TypeFlags.Union */ && containsType(type.types, regularFalseType) && containsType(type.types, regularTrueType) ? filterType(type, function (t) { return t !== regularFalseType && t !== regularTrueType; }) : type; } } } return contextualType; } // This function is similar to instantiateType, except that (a) it only instantiates types that // are classified as instantiable (i.e. it doesn't instantiate object types), and (b) it performs // no reductions on instantiated union types. function instantiateInstantiableTypes(type, mapper) { if (type.flags & 465829888 /* TypeFlags.Instantiable */) { return instantiateType(type, mapper); } if (type.flags & 1048576 /* TypeFlags.Union */) { return getUnionType(ts.map(type.types, function (t) { return instantiateInstantiableTypes(t, mapper); }), 0 /* UnionReduction.None */); } if (type.flags & 2097152 /* TypeFlags.Intersection */) { return getIntersectionType(ts.map(type.types, function (t) { return instantiateInstantiableTypes(t, mapper); })); } return type; } /** * Whoa! Do you really want to use this function? * * Unless you're trying to get the *non-apparent* type for a * value-literal type or you're authoring relevant portions of this algorithm, * you probably meant to use 'getApparentTypeOfContextualType'. * Otherwise this may not be very useful. * * In cases where you *are* working on this function, you should understand * when it is appropriate to use 'getContextualType' and 'getApparentTypeOfContextualType'. * * - Use 'getContextualType' when you are simply going to propagate the result to the expression. * - Use 'getApparentTypeOfContextualType' when you're going to need the members of the type. * * @param node the expression whose contextual type will be returned. * @returns the contextual type of an expression. */ function getContextualType(node, contextFlags) { if (node.flags & 33554432 /* NodeFlags.InWithStatement */) { // We cannot answer semantic questions within a with block, do not proceed any further return undefined; } if (node.contextualType) { return node.contextualType; } var parent = node.parent; switch (parent.kind) { case 254 /* SyntaxKind.VariableDeclaration */: case 164 /* SyntaxKind.Parameter */: case 167 /* SyntaxKind.PropertyDeclaration */: case 166 /* SyntaxKind.PropertySignature */: case 203 /* SyntaxKind.BindingElement */: return getContextualTypeForInitializerExpression(node, contextFlags); case 214 /* SyntaxKind.ArrowFunction */: case 247 /* SyntaxKind.ReturnStatement */: return getContextualTypeForReturnExpression(node); case 224 /* SyntaxKind.YieldExpression */: return getContextualTypeForYieldOperand(parent); case 218 /* SyntaxKind.AwaitExpression */: return getContextualTypeForAwaitOperand(parent, contextFlags); case 208 /* SyntaxKind.CallExpression */: case 209 /* SyntaxKind.NewExpression */: return getContextualTypeForArgument(parent, node); case 211 /* SyntaxKind.TypeAssertionExpression */: case 229 /* SyntaxKind.AsExpression */: return ts.isConstTypeReference(parent.type) ? tryFindWhenConstTypeReference(parent) : getTypeFromTypeNode(parent.type); case 221 /* SyntaxKind.BinaryExpression */: return getContextualTypeForBinaryOperand(node, contextFlags); case 296 /* SyntaxKind.PropertyAssignment */: case 297 /* SyntaxKind.ShorthandPropertyAssignment */: return getContextualTypeForObjectLiteralElement(parent, contextFlags); case 298 /* SyntaxKind.SpreadAssignment */: return getContextualType(parent.parent, contextFlags); case 204 /* SyntaxKind.ArrayLiteralExpression */: { var arrayLiteral = parent; var type = getApparentTypeOfContextualType(arrayLiteral, contextFlags); return getContextualTypeForElementExpression(type, ts.indexOfNode(arrayLiteral.elements, node)); } case 222 /* SyntaxKind.ConditionalExpression */: return getContextualTypeForConditionalOperand(node, contextFlags); case 233 /* SyntaxKind.TemplateSpan */: ts.Debug.assert(parent.parent.kind === 223 /* SyntaxKind.TemplateExpression */); return getContextualTypeForSubstitutionExpression(parent.parent, node); case 212 /* SyntaxKind.ParenthesizedExpression */: { // Like in `checkParenthesizedExpression`, an `/** @type {xyz} */` comment before a parenthesized expression acts as a type cast. var tag = ts.isInJSFile(parent) ? ts.getJSDocTypeTag(parent) : undefined; return !tag ? getContextualType(parent, contextFlags) : ts.isJSDocTypeTag(tag) && ts.isConstTypeReference(tag.typeExpression.type) ? tryFindWhenConstTypeReference(parent) : getTypeFromTypeNode(tag.typeExpression.type); } case 230 /* SyntaxKind.NonNullExpression */: return getContextualType(parent, contextFlags); case 271 /* SyntaxKind.ExportAssignment */: return tryGetTypeFromEffectiveTypeNode(parent); case 288 /* SyntaxKind.JsxExpression */: return getContextualTypeForJsxExpression(parent); case 285 /* SyntaxKind.JsxAttribute */: case 287 /* SyntaxKind.JsxSpreadAttribute */: return getContextualTypeForJsxAttribute(parent); case 280 /* SyntaxKind.JsxOpeningElement */: case 279 /* SyntaxKind.JsxSelfClosingElement */: return getContextualJsxElementAttributesType(parent, contextFlags); } return undefined; function tryFindWhenConstTypeReference(node) { return getContextualType(node); } } function getInferenceContext(node) { var ancestor = ts.findAncestor(node, function (n) { return !!n.inferenceContext; }); return ancestor && ancestor.inferenceContext; } function getContextualJsxElementAttributesType(node, contextFlags) { if (ts.isJsxOpeningElement(node) && node.parent.contextualType && contextFlags !== 4 /* ContextFlags.Completions */) { // Contextually applied type is moved from attributes up to the outer jsx attributes so when walking up from the children they get hit // _However_ to hit them from the _attributes_ we must look for them here; otherwise we'll used the declared type // (as below) instead! return node.parent.contextualType; } return getContextualTypeForArgumentAtIndex(node, 0); } function getEffectiveFirstArgumentForJsxSignature(signature, node) { return getJsxReferenceKind(node) !== 0 /* JsxReferenceKind.Component */ ? getJsxPropsTypeFromCallSignature(signature, node) : getJsxPropsTypeFromClassType(signature, node); } function getJsxPropsTypeFromCallSignature(sig, context) { var propsType = getTypeOfFirstParameterOfSignatureWithFallback(sig, unknownType); propsType = getJsxManagedAttributesFromLocatedAttributes(context, getJsxNamespaceAt(context), propsType); var intrinsicAttribs = getJsxType(JsxNames.IntrinsicAttributes, context); if (!isErrorType(intrinsicAttribs)) { propsType = intersectTypes(intrinsicAttribs, propsType); } return propsType; } function getJsxPropsTypeForSignatureFromMember(sig, forcedLookupLocation) { if (sig.compositeSignatures) { // JSX Elements using the legacy `props`-field based lookup (eg, react class components) need to treat the `props` member as an input // instead of an output position when resolving the signature. We need to go back to the input signatures of the composite signature, // get the type of `props` on each return type individually, and then _intersect them_, rather than union them (as would normally occur // for a union signature). It's an unfortunate quirk of looking in the output of the signature for the type we want to use for the input. // The default behavior of `getTypeOfFirstParameterOfSignatureWithFallback` when no `props` member name is defined is much more sane. var results = []; for (var _i = 0, _a = sig.compositeSignatures; _i < _a.length; _i++) { var signature = _a[_i]; var instance = getReturnTypeOfSignature(signature); if (isTypeAny(instance)) { return instance; } var propType = getTypeOfPropertyOfType(instance, forcedLookupLocation); if (!propType) { return; } results.push(propType); } return getIntersectionType(results); // Same result for both union and intersection signatures } var instanceType = getReturnTypeOfSignature(sig); return isTypeAny(instanceType) ? instanceType : getTypeOfPropertyOfType(instanceType, forcedLookupLocation); } function getStaticTypeOfReferencedJsxConstructor(context) { if (isJsxIntrinsicIdentifier(context.tagName)) { var result = getIntrinsicAttributesTypeFromJsxOpeningLikeElement(context); var fakeSignature = createSignatureForJSXIntrinsic(context, result); return getOrCreateTypeFromSignature(fakeSignature); } var tagType = checkExpressionCached(context.tagName); if (tagType.flags & 128 /* TypeFlags.StringLiteral */) { var result = getIntrinsicAttributesTypeFromStringLiteralType(tagType, context); if (!result) { return errorType; } var fakeSignature = createSignatureForJSXIntrinsic(context, result); return getOrCreateTypeFromSignature(fakeSignature); } return tagType; } function getJsxManagedAttributesFromLocatedAttributes(context, ns, attributesType) { var managedSym = getJsxLibraryManagedAttributes(ns); if (managedSym) { var declaredManagedType = getDeclaredTypeOfSymbol(managedSym); // fetches interface type, or initializes symbol links type parmaeters var ctorType = getStaticTypeOfReferencedJsxConstructor(context); if (managedSym.flags & 524288 /* SymbolFlags.TypeAlias */) { var params = getSymbolLinks(managedSym).typeParameters; if (ts.length(params) >= 2) { var args = fillMissingTypeArguments([ctorType, attributesType], params, 2, ts.isInJSFile(context)); return getTypeAliasInstantiation(managedSym, args); } } if (ts.length(declaredManagedType.typeParameters) >= 2) { var args = fillMissingTypeArguments([ctorType, attributesType], declaredManagedType.typeParameters, 2, ts.isInJSFile(context)); return createTypeReference(declaredManagedType, args); } } return attributesType; } function getJsxPropsTypeFromClassType(sig, context) { var ns = getJsxNamespaceAt(context); var forcedLookupLocation = getJsxElementPropertiesName(ns); var attributesType = forcedLookupLocation === undefined // If there is no type ElementAttributesProperty, return the type of the first parameter of the signature, which should be the props type ? getTypeOfFirstParameterOfSignatureWithFallback(sig, unknownType) : forcedLookupLocation === "" // If there is no e.g. 'props' member in ElementAttributesProperty, use the element class type instead ? getReturnTypeOfSignature(sig) // Otherwise get the type of the property on the signature return type : getJsxPropsTypeForSignatureFromMember(sig, forcedLookupLocation); if (!attributesType) { // There is no property named 'props' on this instance type if (!!forcedLookupLocation && !!ts.length(context.attributes.properties)) { error(context, ts.Diagnostics.JSX_element_class_does_not_support_attributes_because_it_does_not_have_a_0_property, ts.unescapeLeadingUnderscores(forcedLookupLocation)); } return unknownType; } attributesType = getJsxManagedAttributesFromLocatedAttributes(context, ns, attributesType); if (isTypeAny(attributesType)) { // Props is of type 'any' or unknown return attributesType; } else { // Normal case -- add in IntrinsicClassElements and IntrinsicElements var apparentAttributesType = attributesType; var intrinsicClassAttribs = getJsxType(JsxNames.IntrinsicClassAttributes, context); if (!isErrorType(intrinsicClassAttribs)) { var typeParams = getLocalTypeParametersOfClassOrInterfaceOrTypeAlias(intrinsicClassAttribs.symbol); var hostClassType = getReturnTypeOfSignature(sig); apparentAttributesType = intersectTypes(typeParams ? createTypeReference(intrinsicClassAttribs, fillMissingTypeArguments([hostClassType], typeParams, getMinTypeArgumentCount(typeParams), ts.isInJSFile(context))) : intrinsicClassAttribs, apparentAttributesType); } var intrinsicAttribs = getJsxType(JsxNames.IntrinsicAttributes, context); if (!isErrorType(intrinsicAttribs)) { apparentAttributesType = intersectTypes(intrinsicAttribs, apparentAttributesType); } return apparentAttributesType; } } function getIntersectedSignatures(signatures) { return ts.getStrictOptionValue(compilerOptions, "noImplicitAny") ? ts.reduceLeft(signatures, function (left, right) { return left === right || !left ? left : compareTypeParametersIdentical(left.typeParameters, right.typeParameters) ? combineSignaturesOfIntersectionMembers(left, right) : undefined; }) : undefined; } function combineIntersectionThisParam(left, right, mapper) { if (!left || !right) { return left || right; } // A signature `this` type might be a read or a write position... It's very possible that it should be invariant // and we should refuse to merge signatures if there are `this` types and they do not match. However, so as to be // pessimistic when contextual typing, for now, we'll union the `this` types. var thisType = getUnionType([getTypeOfSymbol(left), instantiateType(getTypeOfSymbol(right), mapper)]); return createSymbolWithType(left, thisType); } function combineIntersectionParameters(left, right, mapper) { var leftCount = getParameterCount(left); var rightCount = getParameterCount(right); var longest = leftCount >= rightCount ? left : right; var shorter = longest === left ? right : left; var longestCount = longest === left ? leftCount : rightCount; var eitherHasEffectiveRest = (hasEffectiveRestParameter(left) || hasEffectiveRestParameter(right)); var needsExtraRestElement = eitherHasEffectiveRest && !hasEffectiveRestParameter(longest); var params = new Array(longestCount + (needsExtraRestElement ? 1 : 0)); for (var i = 0; i < longestCount; i++) { var longestParamType = tryGetTypeAtPosition(longest, i); if (longest === right) { longestParamType = instantiateType(longestParamType, mapper); } var shorterParamType = tryGetTypeAtPosition(shorter, i) || unknownType; if (shorter === right) { shorterParamType = instantiateType(shorterParamType, mapper); } var unionParamType = getUnionType([longestParamType, shorterParamType]); var isRestParam = eitherHasEffectiveRest && !needsExtraRestElement && i === (longestCount - 1); var isOptional = i >= getMinArgumentCount(longest) && i >= getMinArgumentCount(shorter); var leftName = i >= leftCount ? undefined : getParameterNameAtPosition(left, i); var rightName = i >= rightCount ? undefined : getParameterNameAtPosition(right, i); var paramName = leftName === rightName ? leftName : !leftName ? rightName : !rightName ? leftName : undefined; var paramSymbol = createSymbol(1 /* SymbolFlags.FunctionScopedVariable */ | (isOptional && !isRestParam ? 16777216 /* SymbolFlags.Optional */ : 0), paramName || "arg".concat(i)); paramSymbol.type = isRestParam ? createArrayType(unionParamType) : unionParamType; params[i] = paramSymbol; } if (needsExtraRestElement) { var restParamSymbol = createSymbol(1 /* SymbolFlags.FunctionScopedVariable */, "args"); restParamSymbol.type = createArrayType(getTypeAtPosition(shorter, longestCount)); if (shorter === right) { restParamSymbol.type = instantiateType(restParamSymbol.type, mapper); } params[longestCount] = restParamSymbol; } return params; } function combineSignaturesOfIntersectionMembers(left, right) { var typeParams = left.typeParameters || right.typeParameters; var paramMapper; if (left.typeParameters && right.typeParameters) { paramMapper = createTypeMapper(right.typeParameters, left.typeParameters); // We just use the type parameter defaults from the first signature } var declaration = left.declaration; var params = combineIntersectionParameters(left, right, paramMapper); var thisParam = combineIntersectionThisParam(left.thisParameter, right.thisParameter, paramMapper); var minArgCount = Math.max(left.minArgumentCount, right.minArgumentCount); var result = createSignature(declaration, typeParams, thisParam, params, /*resolvedReturnType*/ undefined, /*resolvedTypePredicate*/ undefined, minArgCount, (left.flags | right.flags) & 39 /* SignatureFlags.PropagatingFlags */); result.compositeKind = 2097152 /* TypeFlags.Intersection */; result.compositeSignatures = ts.concatenate(left.compositeKind === 2097152 /* TypeFlags.Intersection */ && left.compositeSignatures || [left], [right]); if (paramMapper) { result.mapper = left.compositeKind === 2097152 /* TypeFlags.Intersection */ && left.mapper && left.compositeSignatures ? combineTypeMappers(left.mapper, paramMapper) : paramMapper; } return result; } // If the given type is an object or union type with a single signature, and if that signature has at // least as many parameters as the given function, return the signature. Otherwise return undefined. function getContextualCallSignature(type, node) { var signatures = getSignaturesOfType(type, 0 /* SignatureKind.Call */); var applicableByArity = ts.filter(signatures, function (s) { return !isAritySmaller(s, node); }); return applicableByArity.length === 1 ? applicableByArity[0] : getIntersectedSignatures(applicableByArity); } /** If the contextual signature has fewer parameters than the function expression, do not use it */ function isAritySmaller(signature, target) { var targetParameterCount = 0; for (; targetParameterCount < target.parameters.length; targetParameterCount++) { var param = target.parameters[targetParameterCount]; if (param.initializer || param.questionToken || param.dotDotDotToken || isJSDocOptionalParameter(param)) { break; } } if (target.parameters.length && ts.parameterIsThisKeyword(target.parameters[0])) { targetParameterCount--; } return !hasEffectiveRestParameter(signature) && getParameterCount(signature) < targetParameterCount; } function getContextualSignatureForFunctionLikeDeclaration(node) { // Only function expressions, arrow functions, and object literal methods are contextually typed. return ts.isFunctionExpressionOrArrowFunction(node) || ts.isObjectLiteralMethod(node) ? getContextualSignature(node) : undefined; } // Return the contextual signature for a given expression node. A contextual type provides a // contextual signature if it has a single call signature and if that call signature is non-generic. // If the contextual type is a union type, get the signature from each type possible and if they are // all identical ignoring their return type, the result is same signature but with return type as // union type of return types from these signatures function getContextualSignature(node) { ts.Debug.assert(node.kind !== 169 /* SyntaxKind.MethodDeclaration */ || ts.isObjectLiteralMethod(node)); var typeTagSignature = getSignatureOfTypeTag(node); if (typeTagSignature) { return typeTagSignature; } var type = getApparentTypeOfContextualType(node, 1 /* ContextFlags.Signature */); if (!type) { return undefined; } if (!(type.flags & 1048576 /* TypeFlags.Union */)) { return getContextualCallSignature(type, node); } var signatureList; var types = type.types; for (var _i = 0, types_19 = types; _i < types_19.length; _i++) { var current = types_19[_i]; var signature = getContextualCallSignature(current, node); if (signature) { if (!signatureList) { // This signature will contribute to contextual union signature signatureList = [signature]; } else if (!compareSignaturesIdentical(signatureList[0], signature, /*partialMatch*/ false, /*ignoreThisTypes*/ true, /*ignoreReturnTypes*/ true, compareTypesIdentical)) { // Signatures aren't identical, do not use return undefined; } else { // Use this signature for contextual union signature signatureList.push(signature); } } } // Result is union of signatures collected (return type is union of return types of this signature set) if (signatureList) { return signatureList.length === 1 ? signatureList[0] : createUnionSignature(signatureList[0], signatureList); } } function checkSpreadExpression(node, checkMode) { if (languageVersion < 2 /* ScriptTarget.ES2015 */) { checkExternalEmitHelpers(node, compilerOptions.downlevelIteration ? 1536 /* ExternalEmitHelpers.SpreadIncludes */ : 1024 /* ExternalEmitHelpers.SpreadArray */); } var arrayOrIterableType = checkExpression(node.expression, checkMode); return checkIteratedTypeOrElementType(33 /* IterationUse.Spread */, arrayOrIterableType, undefinedType, node.expression); } function checkSyntheticExpression(node) { return node.isSpread ? getIndexedAccessType(node.type, numberType) : node.type; } function hasDefaultValue(node) { return (node.kind === 203 /* SyntaxKind.BindingElement */ && !!node.initializer) || (node.kind === 221 /* SyntaxKind.BinaryExpression */ && node.operatorToken.kind === 63 /* SyntaxKind.EqualsToken */); } function checkArrayLiteral(node, checkMode, forceTuple) { var elements = node.elements; var elementCount = elements.length; var elementTypes = []; var elementFlags = []; var contextualType = getApparentTypeOfContextualType(node); var inDestructuringPattern = ts.isAssignmentTarget(node); var inConstContext = isConstContext(node); var hasOmittedExpression = false; for (var i = 0; i < elementCount; i++) { var e = elements[i]; if (e.kind === 225 /* SyntaxKind.SpreadElement */) { if (languageVersion < 2 /* ScriptTarget.ES2015 */) { checkExternalEmitHelpers(e, compilerOptions.downlevelIteration ? 1536 /* ExternalEmitHelpers.SpreadIncludes */ : 1024 /* ExternalEmitHelpers.SpreadArray */); } var spreadType = checkExpression(e.expression, checkMode, forceTuple); if (isArrayLikeType(spreadType)) { elementTypes.push(spreadType); elementFlags.push(8 /* ElementFlags.Variadic */); } else if (inDestructuringPattern) { // Given the following situation: // var c: {}; // [...c] = ["", 0]; // // c is represented in the tree as a spread element in an array literal. // But c really functions as a rest element, and its purpose is to provide // a contextual type for the right hand side of the assignment. Therefore, // instead of calling checkExpression on "...c", which will give an error // if c is not iterable/array-like, we need to act as if we are trying to // get the contextual element type from it. So we do something similar to // getContextualTypeForElementExpression, which will crucially not error // if there is no index type / iterated type. var restElementType = getIndexTypeOfType(spreadType, numberType) || getIteratedTypeOrElementType(65 /* IterationUse.Destructuring */, spreadType, undefinedType, /*errorNode*/ undefined, /*checkAssignability*/ false) || unknownType; elementTypes.push(restElementType); elementFlags.push(4 /* ElementFlags.Rest */); } else { elementTypes.push(checkIteratedTypeOrElementType(33 /* IterationUse.Spread */, spreadType, undefinedType, e.expression)); elementFlags.push(4 /* ElementFlags.Rest */); } } else if (exactOptionalPropertyTypes && e.kind === 227 /* SyntaxKind.OmittedExpression */) { hasOmittedExpression = true; elementTypes.push(missingType); elementFlags.push(2 /* ElementFlags.Optional */); } else { var elementContextualType = getContextualTypeForElementExpression(contextualType, elementTypes.length); var type = checkExpressionForMutableLocation(e, checkMode, elementContextualType, forceTuple); elementTypes.push(addOptionality(type, /*isProperty*/ true, hasOmittedExpression)); elementFlags.push(hasOmittedExpression ? 2 /* ElementFlags.Optional */ : 1 /* ElementFlags.Required */); if (contextualType && someType(contextualType, isTupleLikeType) && checkMode && checkMode & 2 /* CheckMode.Inferential */ && !(checkMode & 4 /* CheckMode.SkipContextSensitive */) && isContextSensitive(e)) { var inferenceContext = getInferenceContext(node); ts.Debug.assert(inferenceContext); // In CheckMode.Inferential we should always have an inference context addIntraExpressionInferenceSite(inferenceContext, e, type); } } } if (inDestructuringPattern) { return createTupleType(elementTypes, elementFlags); } if (forceTuple || inConstContext || contextualType && someType(contextualType, isTupleLikeType)) { return createArrayLiteralType(createTupleType(elementTypes, elementFlags, /*readonly*/ inConstContext)); } return createArrayLiteralType(createArrayType(elementTypes.length ? getUnionType(ts.sameMap(elementTypes, function (t, i) { return elementFlags[i] & 8 /* ElementFlags.Variadic */ ? getIndexedAccessTypeOrUndefined(t, numberType) || anyType : t; }), 2 /* UnionReduction.Subtype */) : strictNullChecks ? implicitNeverType : undefinedWideningType, inConstContext)); } function createArrayLiteralType(type) { if (!(ts.getObjectFlags(type) & 4 /* ObjectFlags.Reference */)) { return type; } var literalType = type.literalType; if (!literalType) { literalType = type.literalType = cloneTypeReference(type); literalType.objectFlags |= 16384 /* ObjectFlags.ArrayLiteral */ | 131072 /* ObjectFlags.ContainsObjectOrArrayLiteral */; } return literalType; } function isNumericName(name) { switch (name.kind) { case 162 /* SyntaxKind.ComputedPropertyName */: return isNumericComputedName(name); case 79 /* SyntaxKind.Identifier */: return ts.isNumericLiteralName(name.escapedText); case 8 /* SyntaxKind.NumericLiteral */: case 10 /* SyntaxKind.StringLiteral */: return ts.isNumericLiteralName(name.text); default: return false; } } function isNumericComputedName(name) { // It seems odd to consider an expression of type Any to result in a numeric name, // but this behavior is consistent with checkIndexedAccess return isTypeAssignableToKind(checkComputedPropertyName(name), 296 /* TypeFlags.NumberLike */); } function checkComputedPropertyName(node) { var links = getNodeLinks(node.expression); if (!links.resolvedType) { if ((ts.isTypeLiteralNode(node.parent.parent) || ts.isClassLike(node.parent.parent) || ts.isInterfaceDeclaration(node.parent.parent)) && ts.isBinaryExpression(node.expression) && node.expression.operatorToken.kind === 101 /* SyntaxKind.InKeyword */ && node.parent.kind !== 172 /* SyntaxKind.GetAccessor */ && node.parent.kind !== 173 /* SyntaxKind.SetAccessor */) { return links.resolvedType = errorType; } links.resolvedType = checkExpression(node.expression); // The computed property name of a non-static class field within a loop must be stored in a block-scoped binding. // (It needs to be bound at class evaluation time.) if (ts.isPropertyDeclaration(node.parent) && !ts.hasStaticModifier(node.parent) && ts.isClassExpression(node.parent.parent)) { var container = ts.getEnclosingBlockScopeContainer(node.parent.parent); var enclosingIterationStatement = getEnclosingIterationStatement(container); if (enclosingIterationStatement) { // The computed field name will use a block scoped binding which can be unique for each iteration of the loop. getNodeLinks(enclosingIterationStatement).flags |= 65536 /* NodeCheckFlags.LoopWithCapturedBlockScopedBinding */; // The generated variable which stores the computed field name must be block-scoped. getNodeLinks(node).flags |= 524288 /* NodeCheckFlags.BlockScopedBindingInLoop */; // The generated variable which stores the class must be block-scoped. getNodeLinks(node.parent.parent).flags |= 524288 /* NodeCheckFlags.BlockScopedBindingInLoop */; } } // This will allow types number, string, symbol or any. It will also allow enums, the unknown // type, and any union of these types (like string | number). if (links.resolvedType.flags & 98304 /* TypeFlags.Nullable */ || !isTypeAssignableToKind(links.resolvedType, 402653316 /* TypeFlags.StringLike */ | 296 /* TypeFlags.NumberLike */ | 12288 /* TypeFlags.ESSymbolLike */) && !isTypeAssignableTo(links.resolvedType, stringNumberSymbolType)) { error(node, ts.Diagnostics.A_computed_property_name_must_be_of_type_string_number_symbol_or_any); } } return links.resolvedType; } function isSymbolWithNumericName(symbol) { var _a; var firstDecl = (_a = symbol.declarations) === null || _a === void 0 ? void 0 : _a[0]; return ts.isNumericLiteralName(symbol.escapedName) || (firstDecl && ts.isNamedDeclaration(firstDecl) && isNumericName(firstDecl.name)); } function isSymbolWithSymbolName(symbol) { var _a; var firstDecl = (_a = symbol.declarations) === null || _a === void 0 ? void 0 : _a[0]; return ts.isKnownSymbol(symbol) || (firstDecl && ts.isNamedDeclaration(firstDecl) && ts.isComputedPropertyName(firstDecl.name) && isTypeAssignableToKind(checkComputedPropertyName(firstDecl.name), 4096 /* TypeFlags.ESSymbol */)); } function getObjectLiteralIndexInfo(node, offset, properties, keyType) { var propTypes = []; for (var i = offset; i < properties.length; i++) { var prop = properties[i]; if (keyType === stringType && !isSymbolWithSymbolName(prop) || keyType === numberType && isSymbolWithNumericName(prop) || keyType === esSymbolType && isSymbolWithSymbolName(prop)) { propTypes.push(getTypeOfSymbol(properties[i])); } } var unionType = propTypes.length ? getUnionType(propTypes, 2 /* UnionReduction.Subtype */) : undefinedType; return createIndexInfo(keyType, unionType, isConstContext(node)); } function getImmediateAliasedSymbol(symbol) { ts.Debug.assert((symbol.flags & 2097152 /* SymbolFlags.Alias */) !== 0, "Should only get Alias here."); var links = getSymbolLinks(symbol); if (!links.immediateTarget) { var node = getDeclarationOfAliasSymbol(symbol); if (!node) return ts.Debug.fail(); links.immediateTarget = getTargetOfAliasDeclaration(node, /*dontRecursivelyResolve*/ true); } return links.immediateTarget; } function checkObjectLiteral(node, checkMode) { var inDestructuringPattern = ts.isAssignmentTarget(node); // Grammar checking checkGrammarObjectLiteralExpression(node, inDestructuringPattern); var allPropertiesTable = strictNullChecks ? ts.createSymbolTable() : undefined; var propertiesTable = ts.createSymbolTable(); var propertiesArray = []; var spread = emptyObjectType; var contextualType = getApparentTypeOfContextualType(node); var contextualTypeHasPattern = contextualType && contextualType.pattern && (contextualType.pattern.kind === 201 /* SyntaxKind.ObjectBindingPattern */ || contextualType.pattern.kind === 205 /* SyntaxKind.ObjectLiteralExpression */); var inConstContext = isConstContext(node); var checkFlags = inConstContext ? 8 /* CheckFlags.Readonly */ : 0; var isInJavascript = ts.isInJSFile(node) && !ts.isInJsonFile(node); var enumTag = ts.getJSDocEnumTag(node); var isJSObjectLiteral = !contextualType && isInJavascript && !enumTag; var objectFlags = freshObjectLiteralFlag; var patternWithComputedProperties = false; var hasComputedStringProperty = false; var hasComputedNumberProperty = false; var hasComputedSymbolProperty = false; // Spreads may cause an early bail; ensure computed names are always checked (this is cached) // As otherwise they may not be checked until exports for the type at this position are retrieved, // which may never occur. for (var _i = 0, _a = node.properties; _i < _a.length; _i++) { var elem = _a[_i]; if (elem.name && ts.isComputedPropertyName(elem.name)) { checkComputedPropertyName(elem.name); } } var offset = 0; for (var _b = 0, _c = node.properties; _b < _c.length; _b++) { var memberDecl = _c[_b]; var member = getSymbolOfNode(memberDecl); var computedNameType = memberDecl.name && memberDecl.name.kind === 162 /* SyntaxKind.ComputedPropertyName */ ? checkComputedPropertyName(memberDecl.name) : undefined; if (memberDecl.kind === 296 /* SyntaxKind.PropertyAssignment */ || memberDecl.kind === 297 /* SyntaxKind.ShorthandPropertyAssignment */ || ts.isObjectLiteralMethod(memberDecl)) { var type = memberDecl.kind === 296 /* SyntaxKind.PropertyAssignment */ ? checkPropertyAssignment(memberDecl, checkMode) : // avoid resolving the left side of the ShorthandPropertyAssignment outside of the destructuring // for error recovery purposes. For example, if a user wrote `{ a = 100 }` instead of `{ a: 100 }`. // we don't want to say "could not find 'a'". memberDecl.kind === 297 /* SyntaxKind.ShorthandPropertyAssignment */ ? checkExpressionForMutableLocation(!inDestructuringPattern && memberDecl.objectAssignmentInitializer ? memberDecl.objectAssignmentInitializer : memberDecl.name, checkMode) : checkObjectLiteralMethod(memberDecl, checkMode); if (isInJavascript) { var jsDocType = getTypeForDeclarationFromJSDocComment(memberDecl); if (jsDocType) { checkTypeAssignableTo(type, jsDocType, memberDecl); type = jsDocType; } else if (enumTag && enumTag.typeExpression) { checkTypeAssignableTo(type, getTypeFromTypeNode(enumTag.typeExpression), memberDecl); } } objectFlags |= ts.getObjectFlags(type) & 458752 /* ObjectFlags.PropagatingFlags */; var nameType = computedNameType && isTypeUsableAsPropertyName(computedNameType) ? computedNameType : undefined; var prop = nameType ? createSymbol(4 /* SymbolFlags.Property */ | member.flags, getPropertyNameFromType(nameType), checkFlags | 4096 /* CheckFlags.Late */) : createSymbol(4 /* SymbolFlags.Property */ | member.flags, member.escapedName, checkFlags); if (nameType) { prop.nameType = nameType; } if (inDestructuringPattern) { // If object literal is an assignment pattern and if the assignment pattern specifies a default value // for the property, make the property optional. var isOptional = (memberDecl.kind === 296 /* SyntaxKind.PropertyAssignment */ && hasDefaultValue(memberDecl.initializer)) || (memberDecl.kind === 297 /* SyntaxKind.ShorthandPropertyAssignment */ && memberDecl.objectAssignmentInitializer); if (isOptional) { prop.flags |= 16777216 /* SymbolFlags.Optional */; } } else if (contextualTypeHasPattern && !(ts.getObjectFlags(contextualType) & 512 /* ObjectFlags.ObjectLiteralPatternWithComputedProperties */)) { // If object literal is contextually typed by the implied type of a binding pattern, and if the // binding pattern specifies a default value for the property, make the property optional. var impliedProp = getPropertyOfType(contextualType, member.escapedName); if (impliedProp) { prop.flags |= impliedProp.flags & 16777216 /* SymbolFlags.Optional */; } else if (!compilerOptions.suppressExcessPropertyErrors && !getIndexInfoOfType(contextualType, stringType)) { error(memberDecl.name, ts.Diagnostics.Object_literal_may_only_specify_known_properties_and_0_does_not_exist_in_type_1, symbolToString(member), typeToString(contextualType)); } } prop.declarations = member.declarations; prop.parent = member.parent; if (member.valueDeclaration) { prop.valueDeclaration = member.valueDeclaration; } prop.type = type; prop.target = member; member = prop; allPropertiesTable === null || allPropertiesTable === void 0 ? void 0 : allPropertiesTable.set(prop.escapedName, prop); if (contextualType && checkMode && checkMode & 2 /* CheckMode.Inferential */ && !(checkMode & 4 /* CheckMode.SkipContextSensitive */) && (memberDecl.kind === 296 /* SyntaxKind.PropertyAssignment */ || memberDecl.kind === 169 /* SyntaxKind.MethodDeclaration */) && isContextSensitive(memberDecl)) { var inferenceContext = getInferenceContext(node); ts.Debug.assert(inferenceContext); // In CheckMode.Inferential we should always have an inference context var inferenceNode = memberDecl.kind === 296 /* SyntaxKind.PropertyAssignment */ ? memberDecl.initializer : memberDecl; addIntraExpressionInferenceSite(inferenceContext, inferenceNode, type); } } else if (memberDecl.kind === 298 /* SyntaxKind.SpreadAssignment */) { if (languageVersion < 2 /* ScriptTarget.ES2015 */) { checkExternalEmitHelpers(memberDecl, 2 /* ExternalEmitHelpers.Assign */); } if (propertiesArray.length > 0) { spread = getSpreadType(spread, createObjectLiteralType(), node.symbol, objectFlags, inConstContext); propertiesArray = []; propertiesTable = ts.createSymbolTable(); hasComputedStringProperty = false; hasComputedNumberProperty = false; hasComputedSymbolProperty = false; } var type = getReducedType(checkExpression(memberDecl.expression)); if (isValidSpreadType(type)) { var mergedType = tryMergeUnionOfObjectTypeAndEmptyObject(type, inConstContext); if (allPropertiesTable) { checkSpreadPropOverrides(mergedType, allPropertiesTable, memberDecl); } offset = propertiesArray.length; if (isErrorType(spread)) { continue; } spread = getSpreadType(spread, mergedType, node.symbol, objectFlags, inConstContext); } else { error(memberDecl, ts.Diagnostics.Spread_types_may_only_be_created_from_object_types); spread = errorType; } continue; } else { // TypeScript 1.0 spec (April 2014) // A get accessor declaration is processed in the same manner as // an ordinary function declaration(section 6.1) with no parameters. // A set accessor declaration is processed in the same manner // as an ordinary function declaration with a single parameter and a Void return type. ts.Debug.assert(memberDecl.kind === 172 /* SyntaxKind.GetAccessor */ || memberDecl.kind === 173 /* SyntaxKind.SetAccessor */); checkNodeDeferred(memberDecl); } if (computedNameType && !(computedNameType.flags & 8576 /* TypeFlags.StringOrNumberLiteralOrUnique */)) { if (isTypeAssignableTo(computedNameType, stringNumberSymbolType)) { if (isTypeAssignableTo(computedNameType, numberType)) { hasComputedNumberProperty = true; } else if (isTypeAssignableTo(computedNameType, esSymbolType)) { hasComputedSymbolProperty = true; } else { hasComputedStringProperty = true; } if (inDestructuringPattern) { patternWithComputedProperties = true; } } } else { propertiesTable.set(member.escapedName, member); } propertiesArray.push(member); } // If object literal is contextually typed by the implied type of a binding pattern, augment the result // type with those properties for which the binding pattern specifies a default value. // If the object literal is spread into another object literal, skip this step and let the top-level object // literal handle it instead. if (contextualTypeHasPattern && node.parent.kind !== 298 /* SyntaxKind.SpreadAssignment */) { for (var _d = 0, _e = getPropertiesOfType(contextualType); _d < _e.length; _d++) { var prop = _e[_d]; if (!propertiesTable.get(prop.escapedName) && !getPropertyOfType(spread, prop.escapedName)) { if (!(prop.flags & 16777216 /* SymbolFlags.Optional */)) { error(prop.valueDeclaration || prop.bindingElement, ts.Diagnostics.Initializer_provides_no_value_for_this_binding_element_and_the_binding_element_has_no_default_value); } propertiesTable.set(prop.escapedName, prop); propertiesArray.push(prop); } } } if (isErrorType(spread)) { return errorType; } if (spread !== emptyObjectType) { if (propertiesArray.length > 0) { spread = getSpreadType(spread, createObjectLiteralType(), node.symbol, objectFlags, inConstContext); propertiesArray = []; propertiesTable = ts.createSymbolTable(); hasComputedStringProperty = false; hasComputedNumberProperty = false; } // remap the raw emptyObjectType fed in at the top into a fresh empty object literal type, unique to this use site return mapType(spread, function (t) { return t === emptyObjectType ? createObjectLiteralType() : t; }); } return createObjectLiteralType(); function createObjectLiteralType() { var indexInfos = []; if (hasComputedStringProperty) indexInfos.push(getObjectLiteralIndexInfo(node, offset, propertiesArray, stringType)); if (hasComputedNumberProperty) indexInfos.push(getObjectLiteralIndexInfo(node, offset, propertiesArray, numberType)); if (hasComputedSymbolProperty) indexInfos.push(getObjectLiteralIndexInfo(node, offset, propertiesArray, esSymbolType)); var result = createAnonymousType(node.symbol, propertiesTable, ts.emptyArray, ts.emptyArray, indexInfos); result.objectFlags |= objectFlags | 128 /* ObjectFlags.ObjectLiteral */ | 131072 /* ObjectFlags.ContainsObjectOrArrayLiteral */; if (isJSObjectLiteral) { result.objectFlags |= 4096 /* ObjectFlags.JSLiteral */; } if (patternWithComputedProperties) { result.objectFlags |= 512 /* ObjectFlags.ObjectLiteralPatternWithComputedProperties */; } if (inDestructuringPattern) { result.pattern = node; } return result; } } function isValidSpreadType(type) { var t = removeDefinitelyFalsyTypes(mapType(type, getBaseConstraintOrType)); return !!(t.flags & (1 /* TypeFlags.Any */ | 67108864 /* TypeFlags.NonPrimitive */ | 524288 /* TypeFlags.Object */ | 58982400 /* TypeFlags.InstantiableNonPrimitive */) || t.flags & 3145728 /* TypeFlags.UnionOrIntersection */ && ts.every(t.types, isValidSpreadType)); } function checkJsxSelfClosingElementDeferred(node) { checkJsxOpeningLikeElementOrOpeningFragment(node); } function checkJsxSelfClosingElement(node, _checkMode) { checkNodeDeferred(node); return getJsxElementTypeAt(node) || anyType; } function checkJsxElementDeferred(node) { // Check attributes checkJsxOpeningLikeElementOrOpeningFragment(node.openingElement); // Perform resolution on the closing tag so that rename/go to definition/etc work if (isJsxIntrinsicIdentifier(node.closingElement.tagName)) { getIntrinsicTagSymbol(node.closingElement); } else { checkExpression(node.closingElement.tagName); } checkJsxChildren(node); } function checkJsxElement(node, _checkMode) { checkNodeDeferred(node); return getJsxElementTypeAt(node) || anyType; } function checkJsxFragment(node) { checkJsxOpeningLikeElementOrOpeningFragment(node.openingFragment); // by default, jsx:'react' will use jsxFactory = React.createElement and jsxFragmentFactory = React.Fragment // if jsxFactory compiler option is provided, ensure jsxFragmentFactory compiler option or @jsxFrag pragma is provided too var nodeSourceFile = ts.getSourceFileOfNode(node); if (ts.getJSXTransformEnabled(compilerOptions) && (compilerOptions.jsxFactory || nodeSourceFile.pragmas.has("jsx")) && !compilerOptions.jsxFragmentFactory && !nodeSourceFile.pragmas.has("jsxfrag")) { error(node, compilerOptions.jsxFactory ? ts.Diagnostics.The_jsxFragmentFactory_compiler_option_must_be_provided_to_use_JSX_fragments_with_the_jsxFactory_compiler_option : ts.Diagnostics.An_jsxFrag_pragma_is_required_when_using_an_jsx_pragma_with_JSX_fragments); } checkJsxChildren(node); return getJsxElementTypeAt(node) || anyType; } function isHyphenatedJsxName(name) { return ts.stringContains(name, "-"); } /** * Returns true iff React would emit this tag name as a string rather than an identifier or qualified name */ function isJsxIntrinsicIdentifier(tagName) { return tagName.kind === 79 /* SyntaxKind.Identifier */ && ts.isIntrinsicJsxName(tagName.escapedText); } function checkJsxAttribute(node, checkMode) { return node.initializer ? checkExpressionForMutableLocation(node.initializer, checkMode) : trueType; // is sugar for } /** * Get attributes type of the JSX opening-like element. The result is from resolving "attributes" property of the opening-like element. * * @param openingLikeElement a JSX opening-like element * @param filter a function to remove attributes that will not participate in checking whether attributes are assignable * @return an anonymous type (similar to the one returned by checkObjectLiteral) in which its properties are attributes property. * @remarks Because this function calls getSpreadType, it needs to use the same checks as checkObjectLiteral, * which also calls getSpreadType. */ function createJsxAttributesTypeFromAttributesProperty(openingLikeElement, checkMode) { var attributes = openingLikeElement.attributes; var allAttributesTable = strictNullChecks ? ts.createSymbolTable() : undefined; var attributesTable = ts.createSymbolTable(); var spread = emptyJsxObjectType; var hasSpreadAnyType = false; var typeToIntersect; var explicitlySpecifyChildrenAttribute = false; var objectFlags = 2048 /* ObjectFlags.JsxAttributes */; var jsxChildrenPropertyName = getJsxElementChildrenPropertyName(getJsxNamespaceAt(openingLikeElement)); for (var _i = 0, _a = attributes.properties; _i < _a.length; _i++) { var attributeDecl = _a[_i]; var member = attributeDecl.symbol; if (ts.isJsxAttribute(attributeDecl)) { var exprType = checkJsxAttribute(attributeDecl, checkMode); objectFlags |= ts.getObjectFlags(exprType) & 458752 /* ObjectFlags.PropagatingFlags */; var attributeSymbol = createSymbol(4 /* SymbolFlags.Property */ | member.flags, member.escapedName); attributeSymbol.declarations = member.declarations; attributeSymbol.parent = member.parent; if (member.valueDeclaration) { attributeSymbol.valueDeclaration = member.valueDeclaration; } attributeSymbol.type = exprType; attributeSymbol.target = member; attributesTable.set(attributeSymbol.escapedName, attributeSymbol); allAttributesTable === null || allAttributesTable === void 0 ? void 0 : allAttributesTable.set(attributeSymbol.escapedName, attributeSymbol); if (attributeDecl.name.escapedText === jsxChildrenPropertyName) { explicitlySpecifyChildrenAttribute = true; } } else { ts.Debug.assert(attributeDecl.kind === 287 /* SyntaxKind.JsxSpreadAttribute */); if (attributesTable.size > 0) { spread = getSpreadType(spread, createJsxAttributesType(), attributes.symbol, objectFlags, /*readonly*/ false); attributesTable = ts.createSymbolTable(); } var exprType = getReducedType(checkExpressionCached(attributeDecl.expression, checkMode)); if (isTypeAny(exprType)) { hasSpreadAnyType = true; } if (isValidSpreadType(exprType)) { spread = getSpreadType(spread, exprType, attributes.symbol, objectFlags, /*readonly*/ false); if (allAttributesTable) { checkSpreadPropOverrides(exprType, allAttributesTable, attributeDecl); } } else { error(attributeDecl.expression, ts.Diagnostics.Spread_types_may_only_be_created_from_object_types); typeToIntersect = typeToIntersect ? getIntersectionType([typeToIntersect, exprType]) : exprType; } } } if (!hasSpreadAnyType) { if (attributesTable.size > 0) { spread = getSpreadType(spread, createJsxAttributesType(), attributes.symbol, objectFlags, /*readonly*/ false); } } // Handle children attribute var parent = openingLikeElement.parent.kind === 278 /* SyntaxKind.JsxElement */ ? openingLikeElement.parent : undefined; // We have to check that openingElement of the parent is the one we are visiting as this may not be true for selfClosingElement if (parent && parent.openingElement === openingLikeElement && parent.children.length > 0) { var childrenTypes = checkJsxChildren(parent, checkMode); if (!hasSpreadAnyType && jsxChildrenPropertyName && jsxChildrenPropertyName !== "") { // Error if there is a attribute named "children" explicitly specified and children element. // This is because children element will overwrite the value from attributes. // Note: we will not warn "children" attribute overwritten if "children" attribute is specified in object spread. if (explicitlySpecifyChildrenAttribute) { error(attributes, ts.Diagnostics._0_are_specified_twice_The_attribute_named_0_will_be_overwritten, ts.unescapeLeadingUnderscores(jsxChildrenPropertyName)); } var contextualType = getApparentTypeOfContextualType(openingLikeElement.attributes); var childrenContextualType = contextualType && getTypeOfPropertyOfContextualType(contextualType, jsxChildrenPropertyName); // If there are children in the body of JSX element, create dummy attribute "children" with the union of children types so that it will pass the attribute checking process var childrenPropSymbol = createSymbol(4 /* SymbolFlags.Property */, jsxChildrenPropertyName); childrenPropSymbol.type = childrenTypes.length === 1 ? childrenTypes[0] : childrenContextualType && someType(childrenContextualType, isTupleLikeType) ? createTupleType(childrenTypes) : createArrayType(getUnionType(childrenTypes)); // Fake up a property declaration for the children childrenPropSymbol.valueDeclaration = ts.factory.createPropertySignature(/*modifiers*/ undefined, ts.unescapeLeadingUnderscores(jsxChildrenPropertyName), /*questionToken*/ undefined, /*type*/ undefined); ts.setParent(childrenPropSymbol.valueDeclaration, attributes); childrenPropSymbol.valueDeclaration.symbol = childrenPropSymbol; var childPropMap = ts.createSymbolTable(); childPropMap.set(jsxChildrenPropertyName, childrenPropSymbol); spread = getSpreadType(spread, createAnonymousType(attributes.symbol, childPropMap, ts.emptyArray, ts.emptyArray, ts.emptyArray), attributes.symbol, objectFlags, /*readonly*/ false); } } if (hasSpreadAnyType) { return anyType; } if (typeToIntersect && spread !== emptyJsxObjectType) { return getIntersectionType([typeToIntersect, spread]); } return typeToIntersect || (spread === emptyJsxObjectType ? createJsxAttributesType() : spread); /** * Create anonymous type from given attributes symbol table. * @param symbol a symbol of JsxAttributes containing attributes corresponding to attributesTable * @param attributesTable a symbol table of attributes property */ function createJsxAttributesType() { objectFlags |= freshObjectLiteralFlag; var result = createAnonymousType(attributes.symbol, attributesTable, ts.emptyArray, ts.emptyArray, ts.emptyArray); result.objectFlags |= objectFlags | 128 /* ObjectFlags.ObjectLiteral */ | 131072 /* ObjectFlags.ContainsObjectOrArrayLiteral */; return result; } } function checkJsxChildren(node, checkMode) { var childrenTypes = []; for (var _i = 0, _a = node.children; _i < _a.length; _i++) { var child = _a[_i]; // In React, JSX text that contains only whitespaces will be ignored so we don't want to type-check that // because then type of children property will have constituent of string type. if (child.kind === 11 /* SyntaxKind.JsxText */) { if (!child.containsOnlyTriviaWhiteSpaces) { childrenTypes.push(stringType); } } else if (child.kind === 288 /* SyntaxKind.JsxExpression */ && !child.expression) { continue; // empty jsx expressions don't *really* count as present children } else { childrenTypes.push(checkExpressionForMutableLocation(child, checkMode)); } } return childrenTypes; } function checkSpreadPropOverrides(type, props, spread) { for (var _i = 0, _a = getPropertiesOfType(type); _i < _a.length; _i++) { var right = _a[_i]; if (!(right.flags & 16777216 /* SymbolFlags.Optional */)) { var left = props.get(right.escapedName); if (left) { var diagnostic = error(left.valueDeclaration, ts.Diagnostics._0_is_specified_more_than_once_so_this_usage_will_be_overwritten, ts.unescapeLeadingUnderscores(left.escapedName)); ts.addRelatedInfo(diagnostic, ts.createDiagnosticForNode(spread, ts.Diagnostics.This_spread_always_overwrites_this_property)); } } } } /** * Check attributes property of opening-like element. This function is called during chooseOverload to get call signature of a JSX opening-like element. * (See "checkApplicableSignatureForJsxOpeningLikeElement" for how the function is used) * @param node a JSXAttributes to be resolved of its type */ function checkJsxAttributes(node, checkMode) { return createJsxAttributesTypeFromAttributesProperty(node.parent, checkMode); } function getJsxType(name, location) { var namespace = getJsxNamespaceAt(location); var exports = namespace && getExportsOfSymbol(namespace); var typeSymbol = exports && getSymbol(exports, name, 788968 /* SymbolFlags.Type */); return typeSymbol ? getDeclaredTypeOfSymbol(typeSymbol) : errorType; } /** * Looks up an intrinsic tag name and returns a symbol that either points to an intrinsic * property (in which case nodeLinks.jsxFlags will be IntrinsicNamedElement) or an intrinsic * string index signature (in which case nodeLinks.jsxFlags will be IntrinsicIndexedElement). * May also return unknownSymbol if both of these lookups fail. */ function getIntrinsicTagSymbol(node) { var links = getNodeLinks(node); if (!links.resolvedSymbol) { var intrinsicElementsType = getJsxType(JsxNames.IntrinsicElements, node); if (!isErrorType(intrinsicElementsType)) { // Property case if (!ts.isIdentifier(node.tagName)) return ts.Debug.fail(); var intrinsicProp = getPropertyOfType(intrinsicElementsType, node.tagName.escapedText); if (intrinsicProp) { links.jsxFlags |= 1 /* JsxFlags.IntrinsicNamedElement */; return links.resolvedSymbol = intrinsicProp; } // Intrinsic string indexer case var indexSignatureType = getIndexTypeOfType(intrinsicElementsType, stringType); if (indexSignatureType) { links.jsxFlags |= 2 /* JsxFlags.IntrinsicIndexedElement */; return links.resolvedSymbol = intrinsicElementsType.symbol; } // Wasn't found error(node, ts.Diagnostics.Property_0_does_not_exist_on_type_1, ts.idText(node.tagName), "JSX." + JsxNames.IntrinsicElements); return links.resolvedSymbol = unknownSymbol; } else { if (noImplicitAny) { error(node, ts.Diagnostics.JSX_element_implicitly_has_type_any_because_no_interface_JSX_0_exists, ts.unescapeLeadingUnderscores(JsxNames.IntrinsicElements)); } return links.resolvedSymbol = unknownSymbol; } } return links.resolvedSymbol; } function getJsxNamespaceContainerForImplicitImport(location) { var file = location && ts.getSourceFileOfNode(location); var links = file && getNodeLinks(file); if (links && links.jsxImplicitImportContainer === false) { return undefined; } if (links && links.jsxImplicitImportContainer) { return links.jsxImplicitImportContainer; } var runtimeImportSpecifier = ts.getJSXRuntimeImport(ts.getJSXImplicitImportBase(compilerOptions, file), compilerOptions); if (!runtimeImportSpecifier) { return undefined; } var isClassic = ts.getEmitModuleResolutionKind(compilerOptions) === ts.ModuleResolutionKind.Classic; var errorMessage = isClassic ? ts.Diagnostics.Cannot_find_module_0_Did_you_mean_to_set_the_moduleResolution_option_to_node_or_to_add_aliases_to_the_paths_option : ts.Diagnostics.Cannot_find_module_0_or_its_corresponding_type_declarations; var mod = resolveExternalModule(location, runtimeImportSpecifier, errorMessage, location); var result = mod && mod !== unknownSymbol ? getMergedSymbol(resolveSymbol(mod)) : undefined; if (links) { links.jsxImplicitImportContainer = result || false; } return result; } function getJsxNamespaceAt(location) { var links = location && getNodeLinks(location); if (links && links.jsxNamespace) { return links.jsxNamespace; } if (!links || links.jsxNamespace !== false) { var resolvedNamespace = getJsxNamespaceContainerForImplicitImport(location); if (!resolvedNamespace || resolvedNamespace === unknownSymbol) { var namespaceName = getJsxNamespace(location); resolvedNamespace = resolveName(location, namespaceName, 1920 /* SymbolFlags.Namespace */, /*diagnosticMessage*/ undefined, namespaceName, /*isUse*/ false); } if (resolvedNamespace) { var candidate = resolveSymbol(getSymbol(getExportsOfSymbol(resolveSymbol(resolvedNamespace)), JsxNames.JSX, 1920 /* SymbolFlags.Namespace */)); if (candidate && candidate !== unknownSymbol) { if (links) { links.jsxNamespace = candidate; } return candidate; } } if (links) { links.jsxNamespace = false; } } // JSX global fallback var s = resolveSymbol(getGlobalSymbol(JsxNames.JSX, 1920 /* SymbolFlags.Namespace */, /*diagnosticMessage*/ undefined)); if (s === unknownSymbol) { return undefined; // TODO: GH#18217 } return s; // TODO: GH#18217 } /** * Look into JSX namespace and then look for container with matching name as nameOfAttribPropContainer. * Get a single property from that container if existed. Report an error if there are more than one property. * * @param nameOfAttribPropContainer a string of value JsxNames.ElementAttributesPropertyNameContainer or JsxNames.ElementChildrenAttributeNameContainer * if other string is given or the container doesn't exist, return undefined. */ function getNameFromJsxElementAttributesContainer(nameOfAttribPropContainer, jsxNamespace) { // JSX.ElementAttributesProperty | JSX.ElementChildrenAttribute [symbol] var jsxElementAttribPropInterfaceSym = jsxNamespace && getSymbol(jsxNamespace.exports, nameOfAttribPropContainer, 788968 /* SymbolFlags.Type */); // JSX.ElementAttributesProperty | JSX.ElementChildrenAttribute [type] var jsxElementAttribPropInterfaceType = jsxElementAttribPropInterfaceSym && getDeclaredTypeOfSymbol(jsxElementAttribPropInterfaceSym); // The properties of JSX.ElementAttributesProperty | JSX.ElementChildrenAttribute var propertiesOfJsxElementAttribPropInterface = jsxElementAttribPropInterfaceType && getPropertiesOfType(jsxElementAttribPropInterfaceType); if (propertiesOfJsxElementAttribPropInterface) { // Element Attributes has zero properties, so the element attributes type will be the class instance type if (propertiesOfJsxElementAttribPropInterface.length === 0) { return ""; } // Element Attributes has one property, so the element attributes type will be the type of the corresponding // property of the class instance type else if (propertiesOfJsxElementAttribPropInterface.length === 1) { return propertiesOfJsxElementAttribPropInterface[0].escapedName; } else if (propertiesOfJsxElementAttribPropInterface.length > 1 && jsxElementAttribPropInterfaceSym.declarations) { // More than one property on ElementAttributesProperty is an error error(jsxElementAttribPropInterfaceSym.declarations[0], ts.Diagnostics.The_global_type_JSX_0_may_not_have_more_than_one_property, ts.unescapeLeadingUnderscores(nameOfAttribPropContainer)); } } return undefined; } function getJsxLibraryManagedAttributes(jsxNamespace) { // JSX.LibraryManagedAttributes [symbol] return jsxNamespace && getSymbol(jsxNamespace.exports, JsxNames.LibraryManagedAttributes, 788968 /* SymbolFlags.Type */); } /// e.g. "props" for React.d.ts, /// or 'undefined' if ElementAttributesProperty doesn't exist (which means all /// non-intrinsic elements' attributes type is 'any'), /// or '' if it has 0 properties (which means every /// non-intrinsic elements' attributes type is the element instance type) function getJsxElementPropertiesName(jsxNamespace) { return getNameFromJsxElementAttributesContainer(JsxNames.ElementAttributesPropertyNameContainer, jsxNamespace); } function getJsxElementChildrenPropertyName(jsxNamespace) { return getNameFromJsxElementAttributesContainer(JsxNames.ElementChildrenAttributeNameContainer, jsxNamespace); } function getUninstantiatedJsxSignaturesOfType(elementType, caller) { if (elementType.flags & 4 /* TypeFlags.String */) { return [anySignature]; } else if (elementType.flags & 128 /* TypeFlags.StringLiteral */) { var intrinsicType = getIntrinsicAttributesTypeFromStringLiteralType(elementType, caller); if (!intrinsicType) { error(caller, ts.Diagnostics.Property_0_does_not_exist_on_type_1, elementType.value, "JSX." + JsxNames.IntrinsicElements); return ts.emptyArray; } else { var fakeSignature = createSignatureForJSXIntrinsic(caller, intrinsicType); return [fakeSignature]; } } var apparentElemType = getApparentType(elementType); // Resolve the signatures, preferring constructor var signatures = getSignaturesOfType(apparentElemType, 1 /* SignatureKind.Construct */); if (signatures.length === 0) { // No construct signatures, try call signatures signatures = getSignaturesOfType(apparentElemType, 0 /* SignatureKind.Call */); } if (signatures.length === 0 && apparentElemType.flags & 1048576 /* TypeFlags.Union */) { // If each member has some combination of new/call signatures; make a union signature list for those signatures = getUnionSignatures(ts.map(apparentElemType.types, function (t) { return getUninstantiatedJsxSignaturesOfType(t, caller); })); } return signatures; } function getIntrinsicAttributesTypeFromStringLiteralType(type, location) { // If the elemType is a stringLiteral type, we can then provide a check to make sure that the string literal type is one of the Jsx intrinsic element type // For example: // var CustomTag: "h1" = "h1"; // Hello World var intrinsicElementsType = getJsxType(JsxNames.IntrinsicElements, location); if (!isErrorType(intrinsicElementsType)) { var stringLiteralTypeName = type.value; var intrinsicProp = getPropertyOfType(intrinsicElementsType, ts.escapeLeadingUnderscores(stringLiteralTypeName)); if (intrinsicProp) { return getTypeOfSymbol(intrinsicProp); } var indexSignatureType = getIndexTypeOfType(intrinsicElementsType, stringType); if (indexSignatureType) { return indexSignatureType; } return undefined; } // If we need to report an error, we already done so here. So just return any to prevent any more error downstream return anyType; } function checkJsxReturnAssignableToAppropriateBound(refKind, elemInstanceType, openingLikeElement) { if (refKind === 1 /* JsxReferenceKind.Function */) { var sfcReturnConstraint = getJsxStatelessElementTypeAt(openingLikeElement); if (sfcReturnConstraint) { checkTypeRelatedTo(elemInstanceType, sfcReturnConstraint, assignableRelation, openingLikeElement.tagName, ts.Diagnostics.Its_return_type_0_is_not_a_valid_JSX_element, generateInitialErrorChain); } } else if (refKind === 0 /* JsxReferenceKind.Component */) { var classConstraint = getJsxElementClassTypeAt(openingLikeElement); if (classConstraint) { // Issue an error if this return type isn't assignable to JSX.ElementClass, failing that checkTypeRelatedTo(elemInstanceType, classConstraint, assignableRelation, openingLikeElement.tagName, ts.Diagnostics.Its_instance_type_0_is_not_a_valid_JSX_element, generateInitialErrorChain); } } else { // Mixed var sfcReturnConstraint = getJsxStatelessElementTypeAt(openingLikeElement); var classConstraint = getJsxElementClassTypeAt(openingLikeElement); if (!sfcReturnConstraint || !classConstraint) { return; } var combined = getUnionType([sfcReturnConstraint, classConstraint]); checkTypeRelatedTo(elemInstanceType, combined, assignableRelation, openingLikeElement.tagName, ts.Diagnostics.Its_element_type_0_is_not_a_valid_JSX_element, generateInitialErrorChain); } function generateInitialErrorChain() { var componentName = ts.getTextOfNode(openingLikeElement.tagName); return ts.chainDiagnosticMessages(/* details */ undefined, ts.Diagnostics._0_cannot_be_used_as_a_JSX_component, componentName); } } /** * Get attributes type of the given intrinsic opening-like Jsx element by resolving the tag name. * The function is intended to be called from a function which has checked that the opening element is an intrinsic element. * @param node an intrinsic JSX opening-like element */ function getIntrinsicAttributesTypeFromJsxOpeningLikeElement(node) { ts.Debug.assert(isJsxIntrinsicIdentifier(node.tagName)); var links = getNodeLinks(node); if (!links.resolvedJsxElementAttributesType) { var symbol = getIntrinsicTagSymbol(node); if (links.jsxFlags & 1 /* JsxFlags.IntrinsicNamedElement */) { return links.resolvedJsxElementAttributesType = getTypeOfSymbol(symbol) || errorType; } else if (links.jsxFlags & 2 /* JsxFlags.IntrinsicIndexedElement */) { return links.resolvedJsxElementAttributesType = getIndexTypeOfType(getJsxType(JsxNames.IntrinsicElements, node), stringType) || errorType; } else { return links.resolvedJsxElementAttributesType = errorType; } } return links.resolvedJsxElementAttributesType; } function getJsxElementClassTypeAt(location) { var type = getJsxType(JsxNames.ElementClass, location); if (isErrorType(type)) return undefined; return type; } function getJsxElementTypeAt(location) { return getJsxType(JsxNames.Element, location); } function getJsxStatelessElementTypeAt(location) { var jsxElementType = getJsxElementTypeAt(location); if (jsxElementType) { return getUnionType([jsxElementType, nullType]); } } /** * Returns all the properties of the Jsx.IntrinsicElements interface */ function getJsxIntrinsicTagNamesAt(location) { var intrinsics = getJsxType(JsxNames.IntrinsicElements, location); return intrinsics ? getPropertiesOfType(intrinsics) : ts.emptyArray; } function checkJsxPreconditions(errorNode) { // Preconditions for using JSX if ((compilerOptions.jsx || 0 /* JsxEmit.None */) === 0 /* JsxEmit.None */) { error(errorNode, ts.Diagnostics.Cannot_use_JSX_unless_the_jsx_flag_is_provided); } if (getJsxElementTypeAt(errorNode) === undefined) { if (noImplicitAny) { error(errorNode, ts.Diagnostics.JSX_element_implicitly_has_type_any_because_the_global_type_JSX_Element_does_not_exist); } } } function checkJsxOpeningLikeElementOrOpeningFragment(node) { var isNodeOpeningLikeElement = ts.isJsxOpeningLikeElement(node); if (isNodeOpeningLikeElement) { checkGrammarJsxElement(node); } checkJsxPreconditions(node); if (!getJsxNamespaceContainerForImplicitImport(node)) { // The reactNamespace/jsxFactory's root symbol should be marked as 'used' so we don't incorrectly elide its import. // And if there is no reactNamespace/jsxFactory's symbol in scope when targeting React emit, we should issue an error. var jsxFactoryRefErr = diagnostics && compilerOptions.jsx === 2 /* JsxEmit.React */ ? ts.Diagnostics.Cannot_find_name_0 : undefined; var jsxFactoryNamespace = getJsxNamespace(node); var jsxFactoryLocation = isNodeOpeningLikeElement ? node.tagName : node; // allow null as jsxFragmentFactory var jsxFactorySym = void 0; if (!(ts.isJsxOpeningFragment(node) && jsxFactoryNamespace === "null")) { jsxFactorySym = resolveName(jsxFactoryLocation, jsxFactoryNamespace, 111551 /* SymbolFlags.Value */, jsxFactoryRefErr, jsxFactoryNamespace, /*isUse*/ true); } if (jsxFactorySym) { // Mark local symbol as referenced here because it might not have been marked // if jsx emit was not jsxFactory as there wont be error being emitted jsxFactorySym.isReferenced = 67108863 /* SymbolFlags.All */; // If react/jsxFactory symbol is alias, mark it as refereced if (jsxFactorySym.flags & 2097152 /* SymbolFlags.Alias */ && !getTypeOnlyAliasDeclaration(jsxFactorySym)) { markAliasSymbolAsReferenced(jsxFactorySym); } } // For JsxFragment, mark jsx pragma as referenced via resolveName if (ts.isJsxOpeningFragment(node)) { var file = ts.getSourceFileOfNode(node); var localJsxNamespace = getLocalJsxNamespace(file); if (localJsxNamespace) { resolveName(jsxFactoryLocation, localJsxNamespace, 111551 /* SymbolFlags.Value */, jsxFactoryRefErr, localJsxNamespace, /*isUse*/ true); } } } if (isNodeOpeningLikeElement) { var jsxOpeningLikeNode = node; var sig = getResolvedSignature(jsxOpeningLikeNode); checkDeprecatedSignature(sig, node); checkJsxReturnAssignableToAppropriateBound(getJsxReferenceKind(jsxOpeningLikeNode), getReturnTypeOfSignature(sig), jsxOpeningLikeNode); } } /** * Check if a property with the given name is known anywhere in the given type. In an object type, a property * is considered known if * 1. the object type is empty and the check is for assignability, or * 2. if the object type has index signatures, or * 3. if the property is actually declared in the object type * (this means that 'toString', for example, is not usually a known property). * 4. In a union or intersection type, * a property is considered known if it is known in any constituent type. * @param targetType a type to search a given name in * @param name a property name to search * @param isComparingJsxAttributes a boolean flag indicating whether we are searching in JsxAttributesType */ function isKnownProperty(targetType, name, isComparingJsxAttributes) { if (targetType.flags & 524288 /* TypeFlags.Object */) { // For backwards compatibility a symbol-named property is satisfied by a string index signature. This // is incorrect and inconsistent with element access expressions, where it is an error, so eventually // we should remove this exception. if (getPropertyOfObjectType(targetType, name) || getApplicableIndexInfoForName(targetType, name) || isLateBoundName(name) && getIndexInfoOfType(targetType, stringType) || isComparingJsxAttributes && isHyphenatedJsxName(name)) { // For JSXAttributes, if the attribute has a hyphenated name, consider that the attribute to be known. return true; } } else if (targetType.flags & 3145728 /* TypeFlags.UnionOrIntersection */ && isExcessPropertyCheckTarget(targetType)) { for (var _i = 0, _a = targetType.types; _i < _a.length; _i++) { var t = _a[_i]; if (isKnownProperty(t, name, isComparingJsxAttributes)) { return true; } } } return false; } function isExcessPropertyCheckTarget(type) { return !!(type.flags & 524288 /* TypeFlags.Object */ && !(ts.getObjectFlags(type) & 512 /* ObjectFlags.ObjectLiteralPatternWithComputedProperties */) || type.flags & 67108864 /* TypeFlags.NonPrimitive */ || type.flags & 1048576 /* TypeFlags.Union */ && ts.some(type.types, isExcessPropertyCheckTarget) || type.flags & 2097152 /* TypeFlags.Intersection */ && ts.every(type.types, isExcessPropertyCheckTarget)); } function checkJsxExpression(node, checkMode) { checkGrammarJsxExpression(node); if (node.expression) { var type = checkExpression(node.expression, checkMode); if (node.dotDotDotToken && type !== anyType && !isArrayType(type)) { error(node, ts.Diagnostics.JSX_spread_child_must_be_an_array_type); } return type; } else { return errorType; } } function getDeclarationNodeFlagsFromSymbol(s) { return s.valueDeclaration ? ts.getCombinedNodeFlags(s.valueDeclaration) : 0; } /** * Return whether this symbol is a member of a prototype somewhere * Note that this is not tracked well within the compiler, so the answer may be incorrect. */ function isPrototypeProperty(symbol) { if (symbol.flags & 8192 /* SymbolFlags.Method */ || ts.getCheckFlags(symbol) & 4 /* CheckFlags.SyntheticMethod */) { return true; } if (ts.isInJSFile(symbol.valueDeclaration)) { var parent = symbol.valueDeclaration.parent; return parent && ts.isBinaryExpression(parent) && ts.getAssignmentDeclarationKind(parent) === 3 /* AssignmentDeclarationKind.PrototypeProperty */; } } /** * Check whether the requested property access is valid. * Returns true if node is a valid property access, and false otherwise. * @param node The node to be checked. * @param isSuper True if the access is from `super.`. * @param type The type of the object whose property is being accessed. (Not the type of the property.) * @param prop The symbol for the property being accessed. */ function checkPropertyAccessibility(node, isSuper, writing, type, prop, reportError) { if (reportError === void 0) { reportError = true; } var errorNode = !reportError ? undefined : node.kind === 161 /* SyntaxKind.QualifiedName */ ? node.right : node.kind === 200 /* SyntaxKind.ImportType */ ? node : node.kind === 203 /* SyntaxKind.BindingElement */ && node.propertyName ? node.propertyName : node.name; return checkPropertyAccessibilityAtLocation(node, isSuper, writing, type, prop, errorNode); } /** * Check whether the requested property can be accessed at the requested location. * Returns true if node is a valid property access, and false otherwise. * @param location The location node where we want to check if the property is accessible. * @param isSuper True if the access is from `super.`. * @param writing True if this is a write property access, false if it is a read property access. * @param containingType The type of the object whose property is being accessed. (Not the type of the property.) * @param prop The symbol for the property being accessed. * @param errorNode The node where we should report an invalid property access error, or undefined if we should not report errors. */ function checkPropertyAccessibilityAtLocation(location, isSuper, writing, containingType, prop, errorNode) { var flags = ts.getDeclarationModifierFlagsFromSymbol(prop, writing); if (isSuper) { // TS 1.0 spec (April 2014): 4.8.2 // - In a constructor, instance member function, instance member accessor, or // instance member variable initializer where this references a derived class instance, // a super property access is permitted and must specify a public instance member function of the base class. // - In a static member function or static member accessor // where this references the constructor function object of a derived class, // a super property access is permitted and must specify a public static member function of the base class. if (languageVersion < 2 /* ScriptTarget.ES2015 */) { if (symbolHasNonMethodDeclaration(prop)) { if (errorNode) { error(errorNode, ts.Diagnostics.Only_public_and_protected_methods_of_the_base_class_are_accessible_via_the_super_keyword); } return false; } } if (flags & 128 /* ModifierFlags.Abstract */) { // A method cannot be accessed in a super property access if the method is abstract. // This error could mask a private property access error. But, a member // cannot simultaneously be private and abstract, so this will trigger an // additional error elsewhere. if (errorNode) { error(errorNode, ts.Diagnostics.Abstract_method_0_in_class_1_cannot_be_accessed_via_super_expression, symbolToString(prop), typeToString(getDeclaringClass(prop))); } return false; } } // Referencing abstract properties within their own constructors is not allowed if ((flags & 128 /* ModifierFlags.Abstract */) && symbolHasNonMethodDeclaration(prop) && (ts.isThisProperty(location) || ts.isThisInitializedObjectBindingExpression(location) || ts.isObjectBindingPattern(location.parent) && ts.isThisInitializedDeclaration(location.parent.parent))) { var declaringClassDeclaration = ts.getClassLikeDeclarationOfSymbol(getParentOfSymbol(prop)); if (declaringClassDeclaration && isNodeUsedDuringClassInitialization(location)) { if (errorNode) { error(errorNode, ts.Diagnostics.Abstract_property_0_in_class_1_cannot_be_accessed_in_the_constructor, symbolToString(prop), ts.getTextOfIdentifierOrLiteral(declaringClassDeclaration.name)); } return false; } } // Public properties are otherwise accessible. if (!(flags & 24 /* ModifierFlags.NonPublicAccessibilityModifier */)) { return true; } // Property is known to be private or protected at this point // Private property is accessible if the property is within the declaring class if (flags & 8 /* ModifierFlags.Private */) { var declaringClassDeclaration = ts.getClassLikeDeclarationOfSymbol(getParentOfSymbol(prop)); if (!isNodeWithinClass(location, declaringClassDeclaration)) { if (errorNode) { error(errorNode, ts.Diagnostics.Property_0_is_private_and_only_accessible_within_class_1, symbolToString(prop), typeToString(getDeclaringClass(prop))); } return false; } return true; } // Property is known to be protected at this point // All protected properties of a supertype are accessible in a super access if (isSuper) { return true; } // Find the first enclosing class that has the declaring classes of the protected constituents // of the property as base classes var enclosingClass = forEachEnclosingClass(location, function (enclosingDeclaration) { var enclosingClass = getDeclaredTypeOfSymbol(getSymbolOfNode(enclosingDeclaration)); return isClassDerivedFromDeclaringClasses(enclosingClass, prop, writing); }); // A protected property is accessible if the property is within the declaring class or classes derived from it if (!enclosingClass) { // allow PropertyAccessibility if context is in function with this parameter // static member access is disallowed enclosingClass = getEnclosingClassFromThisParameter(location); enclosingClass = enclosingClass && isClassDerivedFromDeclaringClasses(enclosingClass, prop, writing); if (flags & 32 /* ModifierFlags.Static */ || !enclosingClass) { if (errorNode) { error(errorNode, ts.Diagnostics.Property_0_is_protected_and_only_accessible_within_class_1_and_its_subclasses, symbolToString(prop), typeToString(getDeclaringClass(prop) || containingType)); } return false; } } // No further restrictions for static properties if (flags & 32 /* ModifierFlags.Static */) { return true; } if (containingType.flags & 262144 /* TypeFlags.TypeParameter */) { // get the original type -- represented as the type constraint of the 'this' type containingType = containingType.isThisType ? getConstraintOfTypeParameter(containingType) : getBaseConstraintOfType(containingType); // TODO: GH#18217 Use a different variable that's allowed to be undefined } if (!containingType || !hasBaseType(containingType, enclosingClass)) { if (errorNode) { error(errorNode, ts.Diagnostics.Property_0_is_protected_and_only_accessible_through_an_instance_of_class_1_This_is_an_instance_of_class_2, symbolToString(prop), typeToString(enclosingClass), typeToString(containingType)); } return false; } return true; } function getEnclosingClassFromThisParameter(node) { var thisParameter = getThisParameterFromNodeContext(node); var thisType = (thisParameter === null || thisParameter === void 0 ? void 0 : thisParameter.type) && getTypeFromTypeNode(thisParameter.type); if (thisType && thisType.flags & 262144 /* TypeFlags.TypeParameter */) { thisType = getConstraintOfTypeParameter(thisType); } if (thisType && ts.getObjectFlags(thisType) & (3 /* ObjectFlags.ClassOrInterface */ | 4 /* ObjectFlags.Reference */)) { return getTargetType(thisType); } return undefined; } function getThisParameterFromNodeContext(node) { var thisContainer = ts.getThisContainer(node, /* includeArrowFunctions */ false); return thisContainer && ts.isFunctionLike(thisContainer) ? ts.getThisParameter(thisContainer) : undefined; } function symbolHasNonMethodDeclaration(symbol) { return !!forEachProperty(symbol, function (prop) { return !(prop.flags & 8192 /* SymbolFlags.Method */); }); } function checkNonNullExpression(node) { return checkNonNullType(checkExpression(node), node); } function isNullableType(type) { return !!((strictNullChecks ? getFalsyFlags(type) : type.flags) & 98304 /* TypeFlags.Nullable */); } function getNonNullableTypeIfNeeded(type) { return isNullableType(type) ? getNonNullableType(type) : type; } function reportObjectPossiblyNullOrUndefinedError(node, flags) { error(node, flags & 32768 /* TypeFlags.Undefined */ ? flags & 65536 /* TypeFlags.Null */ ? ts.Diagnostics.Object_is_possibly_null_or_undefined : ts.Diagnostics.Object_is_possibly_undefined : ts.Diagnostics.Object_is_possibly_null); } function reportCannotInvokePossiblyNullOrUndefinedError(node, flags) { error(node, flags & 32768 /* TypeFlags.Undefined */ ? flags & 65536 /* TypeFlags.Null */ ? ts.Diagnostics.Cannot_invoke_an_object_which_is_possibly_null_or_undefined : ts.Diagnostics.Cannot_invoke_an_object_which_is_possibly_undefined : ts.Diagnostics.Cannot_invoke_an_object_which_is_possibly_null); } function checkNonNullTypeWithReporter(type, node, reportError) { if (strictNullChecks && type.flags & 2 /* TypeFlags.Unknown */) { error(node, ts.Diagnostics.Object_is_of_type_unknown); return errorType; } var kind = (strictNullChecks ? getFalsyFlags(type) : type.flags) & 98304 /* TypeFlags.Nullable */; if (kind) { reportError(node, kind); var t = getNonNullableType(type); return t.flags & (98304 /* TypeFlags.Nullable */ | 131072 /* TypeFlags.Never */) ? errorType : t; } return type; } function checkNonNullType(type, node) { return checkNonNullTypeWithReporter(type, node, reportObjectPossiblyNullOrUndefinedError); } function checkNonNullNonVoidType(type, node) { var nonNullType = checkNonNullType(type, node); if (nonNullType.flags & 16384 /* TypeFlags.Void */) { error(node, ts.Diagnostics.Object_is_possibly_undefined); } return nonNullType; } function checkPropertyAccessExpression(node, checkMode) { return node.flags & 32 /* NodeFlags.OptionalChain */ ? checkPropertyAccessChain(node, checkMode) : checkPropertyAccessExpressionOrQualifiedName(node, node.expression, checkNonNullExpression(node.expression), node.name, checkMode); } function checkPropertyAccessChain(node, checkMode) { var leftType = checkExpression(node.expression); var nonOptionalType = getOptionalExpressionType(leftType, node.expression); return propagateOptionalTypeMarker(checkPropertyAccessExpressionOrQualifiedName(node, node.expression, checkNonNullType(nonOptionalType, node.expression), node.name, checkMode), node, nonOptionalType !== leftType); } function checkQualifiedName(node, checkMode) { var leftType = ts.isPartOfTypeQuery(node) && ts.isThisIdentifier(node.left) ? checkNonNullType(checkThisExpression(node.left), node.left) : checkNonNullExpression(node.left); return checkPropertyAccessExpressionOrQualifiedName(node, node.left, leftType, node.right, checkMode); } function isMethodAccessForCall(node) { while (node.parent.kind === 212 /* SyntaxKind.ParenthesizedExpression */) { node = node.parent; } return ts.isCallOrNewExpression(node.parent) && node.parent.expression === node; } // Lookup the private identifier lexically. function lookupSymbolForPrivateIdentifierDeclaration(propName, location) { for (var containingClass = ts.getContainingClass(location); !!containingClass; containingClass = ts.getContainingClass(containingClass)) { var symbol = containingClass.symbol; var name = ts.getSymbolNameForPrivateIdentifier(symbol, propName); var prop = (symbol.members && symbol.members.get(name)) || (symbol.exports && symbol.exports.get(name)); if (prop) { return prop; } } } function checkGrammarPrivateIdentifierExpression(privId) { if (!ts.getContainingClass(privId)) { return grammarErrorOnNode(privId, ts.Diagnostics.Private_identifiers_are_not_allowed_outside_class_bodies); } if (!ts.isForInStatement(privId.parent)) { if (!ts.isExpressionNode(privId)) { return grammarErrorOnNode(privId, ts.Diagnostics.Private_identifiers_are_only_allowed_in_class_bodies_and_may_only_be_used_as_part_of_a_class_member_declaration_property_access_or_on_the_left_hand_side_of_an_in_expression); } var isInOperation = ts.isBinaryExpression(privId.parent) && privId.parent.operatorToken.kind === 101 /* SyntaxKind.InKeyword */; if (!getSymbolForPrivateIdentifierExpression(privId) && !isInOperation) { return grammarErrorOnNode(privId, ts.Diagnostics.Cannot_find_name_0, ts.idText(privId)); } } return false; } function checkPrivateIdentifierExpression(privId) { checkGrammarPrivateIdentifierExpression(privId); var symbol = getSymbolForPrivateIdentifierExpression(privId); if (symbol) { markPropertyAsReferenced(symbol, /* nodeForCheckWriteOnly: */ undefined, /* isThisAccess: */ false); } return anyType; } function getSymbolForPrivateIdentifierExpression(privId) { if (!ts.isExpressionNode(privId)) { return undefined; } var links = getNodeLinks(privId); if (links.resolvedSymbol === undefined) { links.resolvedSymbol = lookupSymbolForPrivateIdentifierDeclaration(privId.escapedText, privId); } return links.resolvedSymbol; } function getPrivateIdentifierPropertyOfType(leftType, lexicallyScopedIdentifier) { return getPropertyOfType(leftType, lexicallyScopedIdentifier.escapedName); } function checkPrivateIdentifierPropertyAccess(leftType, right, lexicallyScopedIdentifier) { // Either the identifier could not be looked up in the lexical scope OR the lexically scoped identifier did not exist on the type. // Find a private identifier with the same description on the type. var propertyOnType; var properties = getPropertiesOfType(leftType); if (properties) { ts.forEach(properties, function (symbol) { var decl = symbol.valueDeclaration; if (decl && ts.isNamedDeclaration(decl) && ts.isPrivateIdentifier(decl.name) && decl.name.escapedText === right.escapedText) { propertyOnType = symbol; return true; } }); } var diagName = diagnosticName(right); if (propertyOnType) { var typeValueDecl = ts.Debug.checkDefined(propertyOnType.valueDeclaration); var typeClass_1 = ts.Debug.checkDefined(ts.getContainingClass(typeValueDecl)); // We found a private identifier property with the same description. // Either: // - There is a lexically scoped private identifier AND it shadows the one we found on the type. // - It is an attempt to access the private identifier outside of the class. if (lexicallyScopedIdentifier === null || lexicallyScopedIdentifier === void 0 ? void 0 : lexicallyScopedIdentifier.valueDeclaration) { var lexicalValueDecl = lexicallyScopedIdentifier.valueDeclaration; var lexicalClass = ts.getContainingClass(lexicalValueDecl); ts.Debug.assert(!!lexicalClass); if (ts.findAncestor(lexicalClass, function (n) { return typeClass_1 === n; })) { var diagnostic = error(right, ts.Diagnostics.The_property_0_cannot_be_accessed_on_type_1_within_this_class_because_it_is_shadowed_by_another_private_identifier_with_the_same_spelling, diagName, typeToString(leftType)); ts.addRelatedInfo(diagnostic, ts.createDiagnosticForNode(lexicalValueDecl, ts.Diagnostics.The_shadowing_declaration_of_0_is_defined_here, diagName), ts.createDiagnosticForNode(typeValueDecl, ts.Diagnostics.The_declaration_of_0_that_you_probably_intended_to_use_is_defined_here, diagName)); return true; } } error(right, ts.Diagnostics.Property_0_is_not_accessible_outside_class_1_because_it_has_a_private_identifier, diagName, diagnosticName(typeClass_1.name || anon)); return true; } return false; } function isThisPropertyAccessInConstructor(node, prop) { return (isConstructorDeclaredProperty(prop) || ts.isThisProperty(node) && isAutoTypedProperty(prop)) && ts.getThisContainer(node, /*includeArrowFunctions*/ true) === getDeclaringConstructor(prop); } function checkPropertyAccessExpressionOrQualifiedName(node, left, leftType, right, checkMode) { var parentSymbol = getNodeLinks(left).resolvedSymbol; var assignmentKind = ts.getAssignmentTargetKind(node); var apparentType = getApparentType(assignmentKind !== 0 /* AssignmentKind.None */ || isMethodAccessForCall(node) ? getWidenedType(leftType) : leftType); var isAnyLike = isTypeAny(apparentType) || apparentType === silentNeverType; var prop; if (ts.isPrivateIdentifier(right)) { if (languageVersion < 99 /* ScriptTarget.ESNext */) { if (assignmentKind !== 0 /* AssignmentKind.None */) { checkExternalEmitHelpers(node, 1048576 /* ExternalEmitHelpers.ClassPrivateFieldSet */); } if (assignmentKind !== 1 /* AssignmentKind.Definite */) { checkExternalEmitHelpers(node, 524288 /* ExternalEmitHelpers.ClassPrivateFieldGet */); } } var lexicallyScopedSymbol = lookupSymbolForPrivateIdentifierDeclaration(right.escapedText, right); if (assignmentKind && lexicallyScopedSymbol && lexicallyScopedSymbol.valueDeclaration && ts.isMethodDeclaration(lexicallyScopedSymbol.valueDeclaration)) { grammarErrorOnNode(right, ts.Diagnostics.Cannot_assign_to_private_method_0_Private_methods_are_not_writable, ts.idText(right)); } if (isAnyLike) { if (lexicallyScopedSymbol) { return isErrorType(apparentType) ? errorType : apparentType; } if (!ts.getContainingClass(right)) { grammarErrorOnNode(right, ts.Diagnostics.Private_identifiers_are_not_allowed_outside_class_bodies); return anyType; } } prop = lexicallyScopedSymbol ? getPrivateIdentifierPropertyOfType(leftType, lexicallyScopedSymbol) : undefined; // Check for private-identifier-specific shadowing and lexical-scoping errors. if (!prop && checkPrivateIdentifierPropertyAccess(leftType, right, lexicallyScopedSymbol)) { return errorType; } else { var isSetonlyAccessor = prop && prop.flags & 65536 /* SymbolFlags.SetAccessor */ && !(prop.flags & 32768 /* SymbolFlags.GetAccessor */); if (isSetonlyAccessor && assignmentKind !== 1 /* AssignmentKind.Definite */) { error(node, ts.Diagnostics.Private_accessor_was_defined_without_a_getter); } } } else { if (isAnyLike) { if (ts.isIdentifier(left) && parentSymbol) { markAliasReferenced(parentSymbol, node); } return isErrorType(apparentType) ? errorType : apparentType; ; } prop = getPropertyOfType(apparentType, right.escapedText); } // In `Foo.Bar.Baz`, 'Foo' is not referenced if 'Bar' is a const enum or a module containing only const enums. // `Foo` is also not referenced in `enum FooCopy { Bar = Foo.Bar }`, because the enum member value gets inlined // here even if `Foo` is not a const enum. // // The exceptions are: // 1. if 'isolatedModules' is enabled, because the const enum value will not be inlined, and // 2. if 'preserveConstEnums' is enabled and the expression is itself an export, e.g. `export = Foo.Bar.Baz`. if (ts.isIdentifier(left) && parentSymbol && (compilerOptions.isolatedModules || !(prop && (isConstEnumOrConstEnumOnlyModule(prop) || prop.flags & 8 /* SymbolFlags.EnumMember */ && node.parent.kind === 299 /* SyntaxKind.EnumMember */)) || ts.shouldPreserveConstEnums(compilerOptions) && isExportOrExportExpression(node))) { markAliasReferenced(parentSymbol, node); } var propType; if (!prop) { var indexInfo = !ts.isPrivateIdentifier(right) && (assignmentKind === 0 /* AssignmentKind.None */ || !isGenericObjectType(leftType) || ts.isThisTypeParameter(leftType)) ? getApplicableIndexInfoForName(apparentType, right.escapedText) : undefined; if (!(indexInfo && indexInfo.type)) { var isUncheckedJS = isUncheckedJSSuggestion(node, leftType.symbol, /*excludeClasses*/ true); if (!isUncheckedJS && isJSLiteralType(leftType)) { return anyType; } if (leftType.symbol === globalThisSymbol) { if (globalThisSymbol.exports.has(right.escapedText) && (globalThisSymbol.exports.get(right.escapedText).flags & 418 /* SymbolFlags.BlockScoped */)) { error(right, ts.Diagnostics.Property_0_does_not_exist_on_type_1, ts.unescapeLeadingUnderscores(right.escapedText), typeToString(leftType)); } else if (noImplicitAny) { error(right, ts.Diagnostics.Element_implicitly_has_an_any_type_because_type_0_has_no_index_signature, typeToString(leftType)); } return anyType; } if (right.escapedText && !checkAndReportErrorForExtendingInterface(node)) { reportNonexistentProperty(right, ts.isThisTypeParameter(leftType) ? apparentType : leftType, isUncheckedJS); } return errorType; } if (indexInfo.isReadonly && (ts.isAssignmentTarget(node) || ts.isDeleteTarget(node))) { error(node, ts.Diagnostics.Index_signature_in_type_0_only_permits_reading, typeToString(apparentType)); } propType = (compilerOptions.noUncheckedIndexedAccess && !ts.isAssignmentTarget(node)) ? getUnionType([indexInfo.type, undefinedType]) : indexInfo.type; if (compilerOptions.noPropertyAccessFromIndexSignature && ts.isPropertyAccessExpression(node)) { error(right, ts.Diagnostics.Property_0_comes_from_an_index_signature_so_it_must_be_accessed_with_0, ts.unescapeLeadingUnderscores(right.escapedText)); } if (indexInfo.declaration && ts.getCombinedNodeFlags(indexInfo.declaration) & 268435456 /* NodeFlags.Deprecated */) { addDeprecatedSuggestion(right, [indexInfo.declaration], right.escapedText); } } else { if (isDeprecatedSymbol(prop) && isUncalledFunctionReference(node, prop) && prop.declarations) { addDeprecatedSuggestion(right, prop.declarations, right.escapedText); } checkPropertyNotUsedBeforeDeclaration(prop, node, right); markPropertyAsReferenced(prop, node, isSelfTypeAccess(left, parentSymbol)); getNodeLinks(node).resolvedSymbol = prop; var writing = ts.isWriteAccess(node); checkPropertyAccessibility(node, left.kind === 106 /* SyntaxKind.SuperKeyword */, writing, apparentType, prop); if (isAssignmentToReadonlyEntity(node, prop, assignmentKind)) { error(right, ts.Diagnostics.Cannot_assign_to_0_because_it_is_a_read_only_property, ts.idText(right)); return errorType; } propType = isThisPropertyAccessInConstructor(node, prop) ? autoType : writing ? getWriteTypeOfSymbol(prop) : getTypeOfSymbol(prop); } return getFlowTypeOfAccessExpression(node, prop, propType, right, checkMode); } /** * Determines whether a did-you-mean error should be a suggestion in an unchecked JS file. * Only applies to unchecked JS files without checkJS, // @ts-check or // @ts-nocheck * It does not suggest when the suggestion: * - Is from a global file that is different from the reference file, or * - (optionally) Is a class, or is a this.x property access expression */ function isUncheckedJSSuggestion(node, suggestion, excludeClasses) { var file = ts.getSourceFileOfNode(node); if (file) { if (compilerOptions.checkJs === undefined && file.checkJsDirective === undefined && (file.scriptKind === 1 /* ScriptKind.JS */ || file.scriptKind === 2 /* ScriptKind.JSX */)) { var declarationFile = ts.forEach(suggestion === null || suggestion === void 0 ? void 0 : suggestion.declarations, ts.getSourceFileOfNode); return !(file !== declarationFile && !!declarationFile && isGlobalSourceFile(declarationFile)) && !(excludeClasses && suggestion && suggestion.flags & 32 /* SymbolFlags.Class */) && !(!!node && excludeClasses && ts.isPropertyAccessExpression(node) && node.expression.kind === 108 /* SyntaxKind.ThisKeyword */); } } return false; } function getFlowTypeOfAccessExpression(node, prop, propType, errorNode, checkMode) { // Only compute control flow type if this is a property access expression that isn't an // assignment target, and the referenced property was declared as a variable, property, // accessor, or optional method. var assignmentKind = ts.getAssignmentTargetKind(node); if (assignmentKind === 1 /* AssignmentKind.Definite */) { return removeMissingType(propType, !!(prop && prop.flags & 16777216 /* SymbolFlags.Optional */)); } if (prop && !(prop.flags & (3 /* SymbolFlags.Variable */ | 4 /* SymbolFlags.Property */ | 98304 /* SymbolFlags.Accessor */)) && !(prop.flags & 8192 /* SymbolFlags.Method */ && propType.flags & 1048576 /* TypeFlags.Union */) && !isDuplicatedCommonJSExport(prop.declarations)) { return propType; } if (propType === autoType) { return getFlowTypeOfProperty(node, prop); } propType = getNarrowableTypeForReference(propType, node, checkMode); // If strict null checks and strict property initialization checks are enabled, if we have // a this.xxx property access, if the property is an instance property without an initializer, // and if we are in a constructor of the same class as the property declaration, assume that // the property is uninitialized at the top of the control flow. var assumeUninitialized = false; if (strictNullChecks && strictPropertyInitialization && ts.isAccessExpression(node) && node.expression.kind === 108 /* SyntaxKind.ThisKeyword */) { var declaration = prop && prop.valueDeclaration; if (declaration && isPropertyWithoutInitializer(declaration)) { if (!ts.isStatic(declaration)) { var flowContainer = getControlFlowContainer(node); if (flowContainer.kind === 171 /* SyntaxKind.Constructor */ && flowContainer.parent === declaration.parent && !(declaration.flags & 16777216 /* NodeFlags.Ambient */)) { assumeUninitialized = true; } } } } else if (strictNullChecks && prop && prop.valueDeclaration && ts.isPropertyAccessExpression(prop.valueDeclaration) && ts.getAssignmentDeclarationPropertyAccessKind(prop.valueDeclaration) && getControlFlowContainer(node) === getControlFlowContainer(prop.valueDeclaration)) { assumeUninitialized = true; } var flowType = getFlowTypeOfReference(node, propType, assumeUninitialized ? getOptionalType(propType) : propType); if (assumeUninitialized && !(getFalsyFlags(propType) & 32768 /* TypeFlags.Undefined */) && getFalsyFlags(flowType) & 32768 /* TypeFlags.Undefined */) { error(errorNode, ts.Diagnostics.Property_0_is_used_before_being_assigned, symbolToString(prop)); // TODO: GH#18217 // Return the declared type to reduce follow-on errors return propType; } return assignmentKind ? getBaseTypeOfLiteralType(flowType) : flowType; } function checkPropertyNotUsedBeforeDeclaration(prop, node, right) { var valueDeclaration = prop.valueDeclaration; if (!valueDeclaration || ts.getSourceFileOfNode(node).isDeclarationFile) { return; } var diagnosticMessage; var declarationName = ts.idText(right); if (isInPropertyInitializerOrClassStaticBlock(node) && !isOptionalPropertyDeclaration(valueDeclaration) && !(ts.isAccessExpression(node) && ts.isAccessExpression(node.expression)) && !isBlockScopedNameDeclaredBeforeUse(valueDeclaration, right) && !(ts.isMethodDeclaration(valueDeclaration) && ts.getCombinedModifierFlags(valueDeclaration) & 32 /* ModifierFlags.Static */) && (compilerOptions.useDefineForClassFields || !isPropertyDeclaredInAncestorClass(prop))) { diagnosticMessage = error(right, ts.Diagnostics.Property_0_is_used_before_its_initialization, declarationName); } else if (valueDeclaration.kind === 257 /* SyntaxKind.ClassDeclaration */ && node.parent.kind !== 178 /* SyntaxKind.TypeReference */ && !(valueDeclaration.flags & 16777216 /* NodeFlags.Ambient */) && !isBlockScopedNameDeclaredBeforeUse(valueDeclaration, right)) { diagnosticMessage = error(right, ts.Diagnostics.Class_0_used_before_its_declaration, declarationName); } if (diagnosticMessage) { ts.addRelatedInfo(diagnosticMessage, ts.createDiagnosticForNode(valueDeclaration, ts.Diagnostics._0_is_declared_here, declarationName)); } } function isInPropertyInitializerOrClassStaticBlock(node) { return !!ts.findAncestor(node, function (node) { switch (node.kind) { case 167 /* SyntaxKind.PropertyDeclaration */: return true; case 296 /* SyntaxKind.PropertyAssignment */: case 169 /* SyntaxKind.MethodDeclaration */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 298 /* SyntaxKind.SpreadAssignment */: case 162 /* SyntaxKind.ComputedPropertyName */: case 233 /* SyntaxKind.TemplateSpan */: case 288 /* SyntaxKind.JsxExpression */: case 285 /* SyntaxKind.JsxAttribute */: case 286 /* SyntaxKind.JsxAttributes */: case 287 /* SyntaxKind.JsxSpreadAttribute */: case 280 /* SyntaxKind.JsxOpeningElement */: case 228 /* SyntaxKind.ExpressionWithTypeArguments */: case 291 /* SyntaxKind.HeritageClause */: return false; case 214 /* SyntaxKind.ArrowFunction */: case 238 /* SyntaxKind.ExpressionStatement */: return ts.isBlock(node.parent) && ts.isClassStaticBlockDeclaration(node.parent.parent) ? true : "quit"; default: return ts.isExpressionNode(node) ? false : "quit"; } }); } /** * It's possible that "prop.valueDeclaration" is a local declaration, but the property was also declared in a superclass. * In that case we won't consider it used before its declaration, because it gets its value from the superclass' declaration. */ function isPropertyDeclaredInAncestorClass(prop) { if (!(prop.parent.flags & 32 /* SymbolFlags.Class */)) { return false; } var classType = getTypeOfSymbol(prop.parent); while (true) { classType = classType.symbol && getSuperClass(classType); if (!classType) { return false; } var superProperty = getPropertyOfType(classType, prop.escapedName); if (superProperty && superProperty.valueDeclaration) { return true; } } } function getSuperClass(classType) { var x = getBaseTypes(classType); if (x.length === 0) { return undefined; } return getIntersectionType(x); } function reportNonexistentProperty(propNode, containingType, isUncheckedJS) { var errorInfo; var relatedInfo; if (!ts.isPrivateIdentifier(propNode) && containingType.flags & 1048576 /* TypeFlags.Union */ && !(containingType.flags & 131068 /* TypeFlags.Primitive */)) { for (var _i = 0, _a = containingType.types; _i < _a.length; _i++) { var subtype = _a[_i]; if (!getPropertyOfType(subtype, propNode.escapedText) && !getApplicableIndexInfoForName(subtype, propNode.escapedText)) { errorInfo = ts.chainDiagnosticMessages(errorInfo, ts.Diagnostics.Property_0_does_not_exist_on_type_1, ts.declarationNameToString(propNode), typeToString(subtype)); break; } } } if (typeHasStaticProperty(propNode.escapedText, containingType)) { var propName = ts.declarationNameToString(propNode); var typeName = typeToString(containingType); errorInfo = ts.chainDiagnosticMessages(errorInfo, ts.Diagnostics.Property_0_does_not_exist_on_type_1_Did_you_mean_to_access_the_static_member_2_instead, propName, typeName, typeName + "." + propName); } else { var promisedType = getPromisedTypeOfPromise(containingType); if (promisedType && getPropertyOfType(promisedType, propNode.escapedText)) { errorInfo = ts.chainDiagnosticMessages(errorInfo, ts.Diagnostics.Property_0_does_not_exist_on_type_1, ts.declarationNameToString(propNode), typeToString(containingType)); relatedInfo = ts.createDiagnosticForNode(propNode, ts.Diagnostics.Did_you_forget_to_use_await); } else { var missingProperty = ts.declarationNameToString(propNode); var container = typeToString(containingType); var libSuggestion = getSuggestedLibForNonExistentProperty(missingProperty, containingType); if (libSuggestion !== undefined) { errorInfo = ts.chainDiagnosticMessages(errorInfo, ts.Diagnostics.Property_0_does_not_exist_on_type_1_Do_you_need_to_change_your_target_library_Try_changing_the_lib_compiler_option_to_2_or_later, missingProperty, container, libSuggestion); } else { var suggestion = getSuggestedSymbolForNonexistentProperty(propNode, containingType); if (suggestion !== undefined) { var suggestedName = ts.symbolName(suggestion); var message = isUncheckedJS ? ts.Diagnostics.Property_0_may_not_exist_on_type_1_Did_you_mean_2 : ts.Diagnostics.Property_0_does_not_exist_on_type_1_Did_you_mean_2; errorInfo = ts.chainDiagnosticMessages(errorInfo, message, missingProperty, container, suggestedName); relatedInfo = suggestion.valueDeclaration && ts.createDiagnosticForNode(suggestion.valueDeclaration, ts.Diagnostics._0_is_declared_here, suggestedName); } else { var diagnostic = containerSeemsToBeEmptyDomElement(containingType) ? ts.Diagnostics.Property_0_does_not_exist_on_type_1_Try_changing_the_lib_compiler_option_to_include_dom : ts.Diagnostics.Property_0_does_not_exist_on_type_1; errorInfo = ts.chainDiagnosticMessages(elaborateNeverIntersection(errorInfo, containingType), diagnostic, missingProperty, container); } } } } var resultDiagnostic = ts.createDiagnosticForNodeFromMessageChain(propNode, errorInfo); if (relatedInfo) { ts.addRelatedInfo(resultDiagnostic, relatedInfo); } addErrorOrSuggestion(!isUncheckedJS || errorInfo.code !== ts.Diagnostics.Property_0_may_not_exist_on_type_1_Did_you_mean_2.code, resultDiagnostic); } function containerSeemsToBeEmptyDomElement(containingType) { return (compilerOptions.lib && !compilerOptions.lib.includes("dom")) && everyContainedType(containingType, function (type) { return type.symbol && /^(EventTarget|Node|((HTML[a-zA-Z]*)?Element))$/.test(ts.unescapeLeadingUnderscores(type.symbol.escapedName)); }) && isEmptyObjectType(containingType); } function typeHasStaticProperty(propName, containingType) { var prop = containingType.symbol && getPropertyOfType(getTypeOfSymbol(containingType.symbol), propName); return prop !== undefined && !!prop.valueDeclaration && ts.isStatic(prop.valueDeclaration); } function getSuggestedLibForNonExistentName(name) { var missingName = diagnosticName(name); var allFeatures = ts.getScriptTargetFeatures(); var libTargets = ts.getOwnKeys(allFeatures); for (var _i = 0, libTargets_1 = libTargets; _i < libTargets_1.length; _i++) { var libTarget = libTargets_1[_i]; var containingTypes = ts.getOwnKeys(allFeatures[libTarget]); if (containingTypes !== undefined && ts.contains(containingTypes, missingName)) { return libTarget; } } } function getSuggestedLibForNonExistentProperty(missingProperty, containingType) { var container = getApparentType(containingType).symbol; if (!container) { return undefined; } var allFeatures = ts.getScriptTargetFeatures(); var libTargets = ts.getOwnKeys(allFeatures); for (var _i = 0, libTargets_2 = libTargets; _i < libTargets_2.length; _i++) { var libTarget = libTargets_2[_i]; var featuresOfLib = allFeatures[libTarget]; var featuresOfContainingType = featuresOfLib[ts.symbolName(container)]; if (featuresOfContainingType !== undefined && ts.contains(featuresOfContainingType, missingProperty)) { return libTarget; } } } function getSuggestedSymbolForNonexistentClassMember(name, baseType) { return getSpellingSuggestionForName(name, getPropertiesOfType(baseType), 106500 /* SymbolFlags.ClassMember */); } function getSuggestedSymbolForNonexistentProperty(name, containingType) { var props = getPropertiesOfType(containingType); if (typeof name !== "string") { var parent_2 = name.parent; if (ts.isPropertyAccessExpression(parent_2)) { props = ts.filter(props, function (prop) { return isValidPropertyAccessForCompletions(parent_2, containingType, prop); }); } name = ts.idText(name); } return getSpellingSuggestionForName(name, props, 111551 /* SymbolFlags.Value */); } function getSuggestedSymbolForNonexistentJSXAttribute(name, containingType) { var strName = ts.isString(name) ? name : ts.idText(name); var properties = getPropertiesOfType(containingType); var jsxSpecific = strName === "for" ? ts.find(properties, function (x) { return ts.symbolName(x) === "htmlFor"; }) : strName === "class" ? ts.find(properties, function (x) { return ts.symbolName(x) === "className"; }) : undefined; return jsxSpecific !== null && jsxSpecific !== void 0 ? jsxSpecific : getSpellingSuggestionForName(strName, properties, 111551 /* SymbolFlags.Value */); } function getSuggestionForNonexistentProperty(name, containingType) { var suggestion = getSuggestedSymbolForNonexistentProperty(name, containingType); return suggestion && ts.symbolName(suggestion); } function getSuggestedSymbolForNonexistentSymbol(location, outerName, meaning) { ts.Debug.assert(outerName !== undefined, "outername should always be defined"); var result = resolveNameHelper(location, outerName, meaning, /*nameNotFoundMessage*/ undefined, outerName, /*isUse*/ false, /*excludeGlobals*/ false, /*getSpellingSuggestions*/ true, function (symbols, name, meaning) { ts.Debug.assertEqual(outerName, name, "name should equal outerName"); var symbol = getSymbol(symbols, name, meaning); // Sometimes the symbol is found when location is a return type of a function: `typeof x` and `x` is declared in the body of the function // So the table *contains* `x` but `x` isn't actually in scope. // However, resolveNameHelper will continue and call this callback again, so we'll eventually get a correct suggestion. if (symbol) return symbol; var candidates; if (symbols === globals) { var primitives = ts.mapDefined(["string", "number", "boolean", "object", "bigint", "symbol"], function (s) { return symbols.has((s.charAt(0).toUpperCase() + s.slice(1))) ? createSymbol(524288 /* SymbolFlags.TypeAlias */, s) : undefined; }); candidates = primitives.concat(ts.arrayFrom(symbols.values())); } else { candidates = ts.arrayFrom(symbols.values()); } return getSpellingSuggestionForName(ts.unescapeLeadingUnderscores(name), candidates, meaning); }); return result; } function getSuggestionForNonexistentSymbol(location, outerName, meaning) { var symbolResult = getSuggestedSymbolForNonexistentSymbol(location, outerName, meaning); return symbolResult && ts.symbolName(symbolResult); } function getSuggestedSymbolForNonexistentModule(name, targetModule) { return targetModule.exports && getSpellingSuggestionForName(ts.idText(name), getExportsOfModuleAsArray(targetModule), 2623475 /* SymbolFlags.ModuleMember */); } function getSuggestionForNonexistentExport(name, targetModule) { var suggestion = getSuggestedSymbolForNonexistentModule(name, targetModule); return suggestion && ts.symbolName(suggestion); } function getSuggestionForNonexistentIndexSignature(objectType, expr, keyedType) { // check if object type has setter or getter function hasProp(name) { var prop = getPropertyOfObjectType(objectType, name); if (prop) { var s = getSingleCallSignature(getTypeOfSymbol(prop)); return !!s && getMinArgumentCount(s) >= 1 && isTypeAssignableTo(keyedType, getTypeAtPosition(s, 0)); } return false; } ; var suggestedMethod = ts.isAssignmentTarget(expr) ? "set" : "get"; if (!hasProp(suggestedMethod)) { return undefined; } var suggestion = ts.tryGetPropertyAccessOrIdentifierToString(expr.expression); if (suggestion === undefined) { suggestion = suggestedMethod; } else { suggestion += "." + suggestedMethod; } return suggestion; } function getSuggestedTypeForNonexistentStringLiteralType(source, target) { var candidates = target.types.filter(function (type) { return !!(type.flags & 128 /* TypeFlags.StringLiteral */); }); return ts.getSpellingSuggestion(source.value, candidates, function (type) { return type.value; }); } /** * Given a name and a list of symbols whose names are *not* equal to the name, return a spelling suggestion if there is one that is close enough. * Names less than length 3 only check for case-insensitive equality, not levenshtein distance. * * If there is a candidate that's the same except for case, return that. * If there is a candidate that's within one edit of the name, return that. * Otherwise, return the candidate with the smallest Levenshtein distance, * except for candidates: * * With no name * * Whose meaning doesn't match the `meaning` parameter. * * Whose length differs from the target name by more than 0.34 of the length of the name. * * Whose levenshtein distance is more than 0.4 of the length of the name * (0.4 allows 1 substitution/transposition for every 5 characters, * and 1 insertion/deletion at 3 characters) */ function getSpellingSuggestionForName(name, symbols, meaning) { return ts.getSpellingSuggestion(name, symbols, getCandidateName); function getCandidateName(candidate) { var candidateName = ts.symbolName(candidate); if (ts.startsWith(candidateName, "\"")) { return undefined; } if (candidate.flags & meaning) { return candidateName; } if (candidate.flags & 2097152 /* SymbolFlags.Alias */) { var alias = tryResolveAlias(candidate); if (alias && alias.flags & meaning) { return candidateName; } } return undefined; } } function markPropertyAsReferenced(prop, nodeForCheckWriteOnly, isSelfTypeAccess) { var valueDeclaration = prop && (prop.flags & 106500 /* SymbolFlags.ClassMember */) && prop.valueDeclaration; if (!valueDeclaration) { return; } var hasPrivateModifier = ts.hasEffectiveModifier(valueDeclaration, 8 /* ModifierFlags.Private */); var hasPrivateIdentifier = prop.valueDeclaration && ts.isNamedDeclaration(prop.valueDeclaration) && ts.isPrivateIdentifier(prop.valueDeclaration.name); if (!hasPrivateModifier && !hasPrivateIdentifier) { return; } if (nodeForCheckWriteOnly && ts.isWriteOnlyAccess(nodeForCheckWriteOnly) && !(prop.flags & 65536 /* SymbolFlags.SetAccessor */)) { return; } if (isSelfTypeAccess) { // Find any FunctionLikeDeclaration because those create a new 'this' binding. But this should only matter for methods (or getters/setters). var containingMethod = ts.findAncestor(nodeForCheckWriteOnly, ts.isFunctionLikeDeclaration); if (containingMethod && containingMethod.symbol === prop) { return; } } (ts.getCheckFlags(prop) & 1 /* CheckFlags.Instantiated */ ? getSymbolLinks(prop).target : prop).isReferenced = 67108863 /* SymbolFlags.All */; } function isSelfTypeAccess(name, parent) { return name.kind === 108 /* SyntaxKind.ThisKeyword */ || !!parent && ts.isEntityNameExpression(name) && parent === getResolvedSymbol(ts.getFirstIdentifier(name)); } function isValidPropertyAccess(node, propertyName) { switch (node.kind) { case 206 /* SyntaxKind.PropertyAccessExpression */: return isValidPropertyAccessWithType(node, node.expression.kind === 106 /* SyntaxKind.SuperKeyword */, propertyName, getWidenedType(checkExpression(node.expression))); case 161 /* SyntaxKind.QualifiedName */: return isValidPropertyAccessWithType(node, /*isSuper*/ false, propertyName, getWidenedType(checkExpression(node.left))); case 200 /* SyntaxKind.ImportType */: return isValidPropertyAccessWithType(node, /*isSuper*/ false, propertyName, getTypeFromTypeNode(node)); } } /** * Checks if an existing property access is valid for completions purposes. * @param node a property access-like node where we want to check if we can access a property. * This node does not need to be an access of the property we are checking. * e.g. in completions, this node will often be an incomplete property access node, as in `foo.`. * Besides providing a location (i.e. scope) used to check property accessibility, we use this node for * computing whether this is a `super` property access. * @param type the type whose property we are checking. * @param property the accessed property's symbol. */ function isValidPropertyAccessForCompletions(node, type, property) { return isPropertyAccessible(node, node.kind === 206 /* SyntaxKind.PropertyAccessExpression */ && node.expression.kind === 106 /* SyntaxKind.SuperKeyword */, /* isWrite */ false, type, property); // Previously we validated the 'this' type of methods but this adversely affected performance. See #31377 for more context. } function isValidPropertyAccessWithType(node, isSuper, propertyName, type) { // Short-circuiting for improved performance. if (isTypeAny(type)) { return true; } var prop = getPropertyOfType(type, propertyName); return !!prop && isPropertyAccessible(node, isSuper, /* isWrite */ false, type, prop); } /** * Checks if a property can be accessed in a location. * The location is given by the `node` parameter. * The node does not need to be a property access. * @param node location where to check property accessibility * @param isSuper whether to consider this a `super` property access, e.g. `super.foo`. * @param isWrite whether this is a write access, e.g. `++foo.x`. * @param containingType type where the property comes from. * @param property property symbol. */ function isPropertyAccessible(node, isSuper, isWrite, containingType, property) { // Short-circuiting for improved performance. if (isTypeAny(containingType)) { return true; } // A #private property access in an optional chain is an error dealt with by the parser. // The checker does not check for it, so we need to do our own check here. if (property.valueDeclaration && ts.isPrivateIdentifierClassElementDeclaration(property.valueDeclaration)) { var declClass_1 = ts.getContainingClass(property.valueDeclaration); return !ts.isOptionalChain(node) && !!ts.findAncestor(node, function (parent) { return parent === declClass_1; }); } return checkPropertyAccessibilityAtLocation(node, isSuper, isWrite, containingType, property); } /** * Return the symbol of the for-in variable declared or referenced by the given for-in statement. */ function getForInVariableSymbol(node) { var initializer = node.initializer; if (initializer.kind === 255 /* SyntaxKind.VariableDeclarationList */) { var variable = initializer.declarations[0]; if (variable && !ts.isBindingPattern(variable.name)) { return getSymbolOfNode(variable); } } else if (initializer.kind === 79 /* SyntaxKind.Identifier */) { return getResolvedSymbol(initializer); } return undefined; } /** * Return true if the given type is considered to have numeric property names. */ function hasNumericPropertyNames(type) { return getIndexInfosOfType(type).length === 1 && !!getIndexInfoOfType(type, numberType); } /** * Return true if given node is an expression consisting of an identifier (possibly parenthesized) * that references a for-in variable for an object with numeric property names. */ function isForInVariableForNumericPropertyNames(expr) { var e = ts.skipParentheses(expr); if (e.kind === 79 /* SyntaxKind.Identifier */) { var symbol = getResolvedSymbol(e); if (symbol.flags & 3 /* SymbolFlags.Variable */) { var child = expr; var node = expr.parent; while (node) { if (node.kind === 243 /* SyntaxKind.ForInStatement */ && child === node.statement && getForInVariableSymbol(node) === symbol && hasNumericPropertyNames(getTypeOfExpression(node.expression))) { return true; } child = node; node = node.parent; } } } return false; } function checkIndexedAccess(node, checkMode) { return node.flags & 32 /* NodeFlags.OptionalChain */ ? checkElementAccessChain(node, checkMode) : checkElementAccessExpression(node, checkNonNullExpression(node.expression), checkMode); } function checkElementAccessChain(node, checkMode) { var exprType = checkExpression(node.expression); var nonOptionalType = getOptionalExpressionType(exprType, node.expression); return propagateOptionalTypeMarker(checkElementAccessExpression(node, checkNonNullType(nonOptionalType, node.expression), checkMode), node, nonOptionalType !== exprType); } function checkElementAccessExpression(node, exprType, checkMode) { var objectType = ts.getAssignmentTargetKind(node) !== 0 /* AssignmentKind.None */ || isMethodAccessForCall(node) ? getWidenedType(exprType) : exprType; var indexExpression = node.argumentExpression; var indexType = checkExpression(indexExpression); if (isErrorType(objectType) || objectType === silentNeverType) { return objectType; } if (isConstEnumObjectType(objectType) && !ts.isStringLiteralLike(indexExpression)) { error(indexExpression, ts.Diagnostics.A_const_enum_member_can_only_be_accessed_using_a_string_literal); return errorType; } var effectiveIndexType = isForInVariableForNumericPropertyNames(indexExpression) ? numberType : indexType; var accessFlags = ts.isAssignmentTarget(node) ? 4 /* AccessFlags.Writing */ | (isGenericObjectType(objectType) && !ts.isThisTypeParameter(objectType) ? 2 /* AccessFlags.NoIndexSignatures */ : 0) : 32 /* AccessFlags.ExpressionPosition */; var indexedAccessType = getIndexedAccessTypeOrUndefined(objectType, effectiveIndexType, accessFlags, node) || errorType; return checkIndexedAccessIndexType(getFlowTypeOfAccessExpression(node, getNodeLinks(node).resolvedSymbol, indexedAccessType, indexExpression, checkMode), node); } function callLikeExpressionMayHaveTypeArguments(node) { return ts.isCallOrNewExpression(node) || ts.isTaggedTemplateExpression(node) || ts.isJsxOpeningLikeElement(node); } function resolveUntypedCall(node) { if (callLikeExpressionMayHaveTypeArguments(node)) { // Check type arguments even though we will give an error that untyped calls may not accept type arguments. // This gets us diagnostics for the type arguments and marks them as referenced. ts.forEach(node.typeArguments, checkSourceElement); } if (node.kind === 210 /* SyntaxKind.TaggedTemplateExpression */) { checkExpression(node.template); } else if (ts.isJsxOpeningLikeElement(node)) { checkExpression(node.attributes); } else if (node.kind !== 165 /* SyntaxKind.Decorator */) { ts.forEach(node.arguments, function (argument) { checkExpression(argument); }); } return anySignature; } function resolveErrorCall(node) { resolveUntypedCall(node); return unknownSignature; } // Re-order candidate signatures into the result array. Assumes the result array to be empty. // The candidate list orders groups in reverse, but within a group signatures are kept in declaration order // A nit here is that we reorder only signatures that belong to the same symbol, // so order how inherited signatures are processed is still preserved. // interface A { (x: string): void } // interface B extends A { (x: 'foo'): string } // const b: B; // b('foo') // <- here overloads should be processed as [(x:'foo'): string, (x: string): void] function reorderCandidates(signatures, result, callChainFlags) { var lastParent; var lastSymbol; var cutoffIndex = 0; var index; var specializedIndex = -1; var spliceIndex; ts.Debug.assert(!result.length); for (var _i = 0, signatures_7 = signatures; _i < signatures_7.length; _i++) { var signature = signatures_7[_i]; var symbol = signature.declaration && getSymbolOfNode(signature.declaration); var parent = signature.declaration && signature.declaration.parent; if (!lastSymbol || symbol === lastSymbol) { if (lastParent && parent === lastParent) { index = index + 1; } else { lastParent = parent; index = cutoffIndex; } } else { // current declaration belongs to a different symbol // set cutoffIndex so re-orderings in the future won't change result set from 0 to cutoffIndex index = cutoffIndex = result.length; lastParent = parent; } lastSymbol = symbol; // specialized signatures always need to be placed before non-specialized signatures regardless // of the cutoff position; see GH#1133 if (signatureHasLiteralTypes(signature)) { specializedIndex++; spliceIndex = specializedIndex; // The cutoff index always needs to be greater than or equal to the specialized signature index // in order to prevent non-specialized signatures from being added before a specialized // signature. cutoffIndex++; } else { spliceIndex = index; } result.splice(spliceIndex, 0, callChainFlags ? getOptionalCallSignature(signature, callChainFlags) : signature); } } function isSpreadArgument(arg) { return !!arg && (arg.kind === 225 /* SyntaxKind.SpreadElement */ || arg.kind === 232 /* SyntaxKind.SyntheticExpression */ && arg.isSpread); } function getSpreadArgumentIndex(args) { return ts.findIndex(args, isSpreadArgument); } function acceptsVoid(t) { return !!(t.flags & 16384 /* TypeFlags.Void */); } function acceptsVoidUndefinedUnknownOrAny(t) { return !!(t.flags & (16384 /* TypeFlags.Void */ | 32768 /* TypeFlags.Undefined */ | 2 /* TypeFlags.Unknown */ | 1 /* TypeFlags.Any */)); } function hasCorrectArity(node, args, signature, signatureHelpTrailingComma) { if (signatureHelpTrailingComma === void 0) { signatureHelpTrailingComma = false; } var argCount; var callIsIncomplete = false; // In incomplete call we want to be lenient when we have too few arguments var effectiveParameterCount = getParameterCount(signature); var effectiveMinimumArguments = getMinArgumentCount(signature); if (node.kind === 210 /* SyntaxKind.TaggedTemplateExpression */) { argCount = args.length; if (node.template.kind === 223 /* SyntaxKind.TemplateExpression */) { // If a tagged template expression lacks a tail literal, the call is incomplete. // Specifically, a template only can end in a TemplateTail or a Missing literal. var lastSpan = ts.last(node.template.templateSpans); // we should always have at least one span. callIsIncomplete = ts.nodeIsMissing(lastSpan.literal) || !!lastSpan.literal.isUnterminated; } else { // If the template didn't end in a backtick, or its beginning occurred right prior to EOF, // then this might actually turn out to be a TemplateHead in the future; // so we consider the call to be incomplete. var templateLiteral = node.template; ts.Debug.assert(templateLiteral.kind === 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */); callIsIncomplete = !!templateLiteral.isUnterminated; } } else if (node.kind === 165 /* SyntaxKind.Decorator */) { argCount = getDecoratorArgumentCount(node, signature); } else if (ts.isJsxOpeningLikeElement(node)) { callIsIncomplete = node.attributes.end === node.end; if (callIsIncomplete) { return true; } argCount = effectiveMinimumArguments === 0 ? args.length : 1; effectiveParameterCount = args.length === 0 ? effectiveParameterCount : 1; // class may have argumentless ctor functions - still resolve ctor and compare vs props member type effectiveMinimumArguments = Math.min(effectiveMinimumArguments, 1); // sfc may specify context argument - handled by framework and not typechecked } else if (!node.arguments) { // This only happens when we have something of the form: 'new C' ts.Debug.assert(node.kind === 209 /* SyntaxKind.NewExpression */); return getMinArgumentCount(signature) === 0; } else { argCount = signatureHelpTrailingComma ? args.length + 1 : args.length; // If we are missing the close parenthesis, the call is incomplete. callIsIncomplete = node.arguments.end === node.end; // If a spread argument is present, check that it corresponds to a rest parameter or at least that it's in the valid range. var spreadArgIndex = getSpreadArgumentIndex(args); if (spreadArgIndex >= 0) { return spreadArgIndex >= getMinArgumentCount(signature) && (hasEffectiveRestParameter(signature) || spreadArgIndex < getParameterCount(signature)); } } // Too many arguments implies incorrect arity. if (!hasEffectiveRestParameter(signature) && argCount > effectiveParameterCount) { return false; } // If the call is incomplete, we should skip the lower bound check. // JSX signatures can have extra parameters provided by the library which we don't check if (callIsIncomplete || argCount >= effectiveMinimumArguments) { return true; } for (var i = argCount; i < effectiveMinimumArguments; i++) { var type = getTypeAtPosition(signature, i); if (filterType(type, ts.isInJSFile(node) && !strictNullChecks ? acceptsVoidUndefinedUnknownOrAny : acceptsVoid).flags & 131072 /* TypeFlags.Never */) { return false; } } return true; } function hasCorrectTypeArgumentArity(signature, typeArguments) { // If the user supplied type arguments, but the number of type arguments does not match // the declared number of type parameters, the call has an incorrect arity. var numTypeParameters = ts.length(signature.typeParameters); var minTypeArgumentCount = getMinTypeArgumentCount(signature.typeParameters); return !ts.some(typeArguments) || (typeArguments.length >= minTypeArgumentCount && typeArguments.length <= numTypeParameters); } // If type has a single call signature and no other members, return that signature. Otherwise, return undefined. function getSingleCallSignature(type) { return getSingleSignature(type, 0 /* SignatureKind.Call */, /*allowMembers*/ false); } function getSingleCallOrConstructSignature(type) { return getSingleSignature(type, 0 /* SignatureKind.Call */, /*allowMembers*/ false) || getSingleSignature(type, 1 /* SignatureKind.Construct */, /*allowMembers*/ false); } function getSingleSignature(type, kind, allowMembers) { if (type.flags & 524288 /* TypeFlags.Object */) { var resolved = resolveStructuredTypeMembers(type); if (allowMembers || resolved.properties.length === 0 && resolved.indexInfos.length === 0) { if (kind === 0 /* SignatureKind.Call */ && resolved.callSignatures.length === 1 && resolved.constructSignatures.length === 0) { return resolved.callSignatures[0]; } if (kind === 1 /* SignatureKind.Construct */ && resolved.constructSignatures.length === 1 && resolved.callSignatures.length === 0) { return resolved.constructSignatures[0]; } } } return undefined; } // Instantiate a generic signature in the context of a non-generic signature (section 3.8.5 in TypeScript spec) function instantiateSignatureInContextOf(signature, contextualSignature, inferenceContext, compareTypes) { var context = createInferenceContext(signature.typeParameters, signature, 0 /* InferenceFlags.None */, compareTypes); // We clone the inferenceContext to avoid fixing. For example, when the source signature is (x: T) => T[] and // the contextual signature is (...args: A) => B, we want to infer the element type of A's constraint (say 'any') // for T but leave it possible to later infer '[any]' back to A. var restType = getEffectiveRestType(contextualSignature); var mapper = inferenceContext && (restType && restType.flags & 262144 /* TypeFlags.TypeParameter */ ? inferenceContext.nonFixingMapper : inferenceContext.mapper); var sourceSignature = mapper ? instantiateSignature(contextualSignature, mapper) : contextualSignature; applyToParameterTypes(sourceSignature, signature, function (source, target) { // Type parameters from outer context referenced by source type are fixed by instantiation of the source type inferTypes(context.inferences, source, target); }); if (!inferenceContext) { applyToReturnTypes(contextualSignature, signature, function (source, target) { inferTypes(context.inferences, source, target, 128 /* InferencePriority.ReturnType */); }); } return getSignatureInstantiation(signature, getInferredTypes(context), ts.isInJSFile(contextualSignature.declaration)); } function inferJsxTypeArguments(node, signature, checkMode, context) { var paramType = getEffectiveFirstArgumentForJsxSignature(signature, node); var checkAttrType = checkExpressionWithContextualType(node.attributes, paramType, context, checkMode); inferTypes(context.inferences, checkAttrType, paramType); return getInferredTypes(context); } function getThisArgumentType(thisArgumentNode) { if (!thisArgumentNode) { return voidType; } var thisArgumentType = checkExpression(thisArgumentNode); return ts.isOptionalChainRoot(thisArgumentNode.parent) ? getNonNullableType(thisArgumentType) : ts.isOptionalChain(thisArgumentNode.parent) ? removeOptionalTypeMarker(thisArgumentType) : thisArgumentType; } function inferTypeArguments(node, signature, args, checkMode, context) { if (ts.isJsxOpeningLikeElement(node)) { return inferJsxTypeArguments(node, signature, checkMode, context); } // If a contextual type is available, infer from that type to the return type of the call expression. For // example, given a 'function wrap(cb: (x: T) => U): (x: T) => U' and a call expression // 'let f: (x: string) => number = wrap(s => s.length)', we infer from the declared type of 'f' to the // return type of 'wrap'. if (node.kind !== 165 /* SyntaxKind.Decorator */) { var contextualType = getContextualType(node, ts.every(signature.typeParameters, function (p) { return !!getDefaultFromTypeParameter(p); }) ? 8 /* ContextFlags.SkipBindingPatterns */ : 0 /* ContextFlags.None */); if (contextualType) { var inferenceTargetType = getReturnTypeOfSignature(signature); if (couldContainTypeVariables(inferenceTargetType)) { // We clone the inference context to avoid disturbing a resolution in progress for an // outer call expression. Effectively we just want a snapshot of whatever has been // inferred for any outer call expression so far. var outerContext = getInferenceContext(node); var outerMapper = getMapperFromContext(cloneInferenceContext(outerContext, 1 /* InferenceFlags.NoDefault */)); var instantiatedType = instantiateType(contextualType, outerMapper); // If the contextual type is a generic function type with a single call signature, we // instantiate the type with its own type parameters and type arguments. This ensures that // the type parameters are not erased to type any during type inference such that they can // be inferred as actual types from the contextual type. For example: // declare function arrayMap(f: (x: T) => U): (a: T[]) => U[]; // const boxElements: (a: A[]) => { value: A }[] = arrayMap(value => ({ value })); // Above, the type of the 'value' parameter is inferred to be 'A'. var contextualSignature = getSingleCallSignature(instantiatedType); var inferenceSourceType = contextualSignature && contextualSignature.typeParameters ? getOrCreateTypeFromSignature(getSignatureInstantiationWithoutFillingInTypeArguments(contextualSignature, contextualSignature.typeParameters)) : instantiatedType; // Inferences made from return types have lower priority than all other inferences. inferTypes(context.inferences, inferenceSourceType, inferenceTargetType, 128 /* InferencePriority.ReturnType */); // Create a type mapper for instantiating generic contextual types using the inferences made // from the return type. We need a separate inference pass here because (a) instantiation of // the source type uses the outer context's return mapper (which excludes inferences made from // outer arguments), and (b) we don't want any further inferences going into this context. var returnContext = createInferenceContext(signature.typeParameters, signature, context.flags); var returnSourceType = instantiateType(contextualType, outerContext && outerContext.returnMapper); inferTypes(returnContext.inferences, returnSourceType, inferenceTargetType); context.returnMapper = ts.some(returnContext.inferences, hasInferenceCandidates) ? getMapperFromContext(cloneInferredPartOfContext(returnContext)) : undefined; } } } var restType = getNonArrayRestType(signature); var argCount = restType ? Math.min(getParameterCount(signature) - 1, args.length) : args.length; if (restType && restType.flags & 262144 /* TypeFlags.TypeParameter */) { var info = ts.find(context.inferences, function (info) { return info.typeParameter === restType; }); if (info) { info.impliedArity = ts.findIndex(args, isSpreadArgument, argCount) < 0 ? args.length - argCount : undefined; } } var thisType = getThisTypeOfSignature(signature); if (thisType && couldContainTypeVariables(thisType)) { var thisArgumentNode = getThisArgumentOfCall(node); inferTypes(context.inferences, getThisArgumentType(thisArgumentNode), thisType); } for (var i = 0; i < argCount; i++) { var arg = args[i]; if (arg.kind !== 227 /* SyntaxKind.OmittedExpression */ && !(checkMode & 32 /* CheckMode.IsForStringLiteralArgumentCompletions */ && hasSkipDirectInferenceFlag(arg))) { var paramType = getTypeAtPosition(signature, i); if (couldContainTypeVariables(paramType)) { var argType = checkExpressionWithContextualType(arg, paramType, context, checkMode); inferTypes(context.inferences, argType, paramType); } } } if (restType && couldContainTypeVariables(restType)) { var spreadType = getSpreadArgumentType(args, argCount, args.length, restType, context, checkMode); inferTypes(context.inferences, spreadType, restType); } return getInferredTypes(context); } function getMutableArrayOrTupleType(type) { return type.flags & 1048576 /* TypeFlags.Union */ ? mapType(type, getMutableArrayOrTupleType) : type.flags & 1 /* TypeFlags.Any */ || isMutableArrayOrTuple(getBaseConstraintOfType(type) || type) ? type : isTupleType(type) ? createTupleType(getTypeArguments(type), type.target.elementFlags, /*readonly*/ false, type.target.labeledElementDeclarations) : createTupleType([type], [8 /* ElementFlags.Variadic */]); } function getSpreadArgumentType(args, index, argCount, restType, context, checkMode) { if (index >= argCount - 1) { var arg = args[argCount - 1]; if (isSpreadArgument(arg)) { // We are inferring from a spread expression in the last argument position, i.e. both the parameter // and the argument are ...x forms. return getMutableArrayOrTupleType(arg.kind === 232 /* SyntaxKind.SyntheticExpression */ ? arg.type : checkExpressionWithContextualType(arg.expression, restType, context, checkMode)); } } var types = []; var flags = []; var names = []; for (var i = index; i < argCount; i++) { var arg = args[i]; if (isSpreadArgument(arg)) { var spreadType = arg.kind === 232 /* SyntaxKind.SyntheticExpression */ ? arg.type : checkExpression(arg.expression); if (isArrayLikeType(spreadType)) { types.push(spreadType); flags.push(8 /* ElementFlags.Variadic */); } else { types.push(checkIteratedTypeOrElementType(33 /* IterationUse.Spread */, spreadType, undefinedType, arg.kind === 225 /* SyntaxKind.SpreadElement */ ? arg.expression : arg)); flags.push(4 /* ElementFlags.Rest */); } } else { var contextualType = getIndexedAccessType(restType, getNumberLiteralType(i - index), 256 /* AccessFlags.Contextual */); var argType = checkExpressionWithContextualType(arg, contextualType, context, checkMode); var hasPrimitiveContextualType = maybeTypeOfKind(contextualType, 131068 /* TypeFlags.Primitive */ | 4194304 /* TypeFlags.Index */ | 134217728 /* TypeFlags.TemplateLiteral */ | 268435456 /* TypeFlags.StringMapping */); types.push(hasPrimitiveContextualType ? getRegularTypeOfLiteralType(argType) : getWidenedLiteralType(argType)); flags.push(1 /* ElementFlags.Required */); } if (arg.kind === 232 /* SyntaxKind.SyntheticExpression */ && arg.tupleNameSource) { names.push(arg.tupleNameSource); } } return createTupleType(types, flags, /*readonly*/ false, ts.length(names) === ts.length(types) ? names : undefined); } function checkTypeArguments(signature, typeArgumentNodes, reportErrors, headMessage) { var isJavascript = ts.isInJSFile(signature.declaration); var typeParameters = signature.typeParameters; var typeArgumentTypes = fillMissingTypeArguments(ts.map(typeArgumentNodes, getTypeFromTypeNode), typeParameters, getMinTypeArgumentCount(typeParameters), isJavascript); var mapper; for (var i = 0; i < typeArgumentNodes.length; i++) { ts.Debug.assert(typeParameters[i] !== undefined, "Should not call checkTypeArguments with too many type arguments"); var constraint = getConstraintOfTypeParameter(typeParameters[i]); if (constraint) { var errorInfo = reportErrors && headMessage ? (function () { return ts.chainDiagnosticMessages(/*details*/ undefined, ts.Diagnostics.Type_0_does_not_satisfy_the_constraint_1); }) : undefined; var typeArgumentHeadMessage = headMessage || ts.Diagnostics.Type_0_does_not_satisfy_the_constraint_1; if (!mapper) { mapper = createTypeMapper(typeParameters, typeArgumentTypes); } var typeArgument = typeArgumentTypes[i]; if (!checkTypeAssignableTo(typeArgument, getTypeWithThisArgument(instantiateType(constraint, mapper), typeArgument), reportErrors ? typeArgumentNodes[i] : undefined, typeArgumentHeadMessage, errorInfo)) { return undefined; } } } return typeArgumentTypes; } function getJsxReferenceKind(node) { if (isJsxIntrinsicIdentifier(node.tagName)) { return 2 /* JsxReferenceKind.Mixed */; } var tagType = getApparentType(checkExpression(node.tagName)); if (ts.length(getSignaturesOfType(tagType, 1 /* SignatureKind.Construct */))) { return 0 /* JsxReferenceKind.Component */; } if (ts.length(getSignaturesOfType(tagType, 0 /* SignatureKind.Call */))) { return 1 /* JsxReferenceKind.Function */; } return 2 /* JsxReferenceKind.Mixed */; } /** * Check if the given signature can possibly be a signature called by the JSX opening-like element. * @param node a JSX opening-like element we are trying to figure its call signature * @param signature a candidate signature we are trying whether it is a call signature * @param relation a relationship to check parameter and argument type */ function checkApplicableSignatureForJsxOpeningLikeElement(node, signature, relation, checkMode, reportErrors, containingMessageChain, errorOutputContainer) { // Stateless function components can have maximum of three arguments: "props", "context", and "updater". // However "context" and "updater" are implicit and can't be specify by users. Only the first parameter, props, // can be specified by users through attributes property. var paramType = getEffectiveFirstArgumentForJsxSignature(signature, node); var attributesType = checkExpressionWithContextualType(node.attributes, paramType, /*inferenceContext*/ undefined, checkMode); return checkTagNameDoesNotExpectTooManyArguments() && checkTypeRelatedToAndOptionallyElaborate(attributesType, paramType, relation, reportErrors ? node.tagName : undefined, node.attributes, /*headMessage*/ undefined, containingMessageChain, errorOutputContainer); function checkTagNameDoesNotExpectTooManyArguments() { var _a; if (getJsxNamespaceContainerForImplicitImport(node)) { return true; // factory is implicitly jsx/jsxdev - assume it fits the bill, since we don't strongly look for the jsx/jsxs/jsxDEV factory APIs anywhere else (at least not yet) } var tagType = ts.isJsxOpeningElement(node) || ts.isJsxSelfClosingElement(node) && !isJsxIntrinsicIdentifier(node.tagName) ? checkExpression(node.tagName) : undefined; if (!tagType) { return true; } var tagCallSignatures = getSignaturesOfType(tagType, 0 /* SignatureKind.Call */); if (!ts.length(tagCallSignatures)) { return true; } var factory = getJsxFactoryEntity(node); if (!factory) { return true; } var factorySymbol = resolveEntityName(factory, 111551 /* SymbolFlags.Value */, /*ignoreErrors*/ true, /*dontResolveAlias*/ false, node); if (!factorySymbol) { return true; } var factoryType = getTypeOfSymbol(factorySymbol); var callSignatures = getSignaturesOfType(factoryType, 0 /* SignatureKind.Call */); if (!ts.length(callSignatures)) { return true; } var hasFirstParamSignatures = false; var maxParamCount = 0; // Check that _some_ first parameter expects a FC-like thing, and that some overload of the SFC expects an acceptable number of arguments for (var _i = 0, callSignatures_1 = callSignatures; _i < callSignatures_1.length; _i++) { var sig = callSignatures_1[_i]; var firstparam = getTypeAtPosition(sig, 0); var signaturesOfParam = getSignaturesOfType(firstparam, 0 /* SignatureKind.Call */); if (!ts.length(signaturesOfParam)) continue; for (var _b = 0, signaturesOfParam_1 = signaturesOfParam; _b < signaturesOfParam_1.length; _b++) { var paramSig = signaturesOfParam_1[_b]; hasFirstParamSignatures = true; if (hasEffectiveRestParameter(paramSig)) { return true; // some signature has a rest param, so function components can have an arbitrary number of arguments } var paramCount = getParameterCount(paramSig); if (paramCount > maxParamCount) { maxParamCount = paramCount; } } } if (!hasFirstParamSignatures) { // Not a single signature had a first parameter which expected a signature - for back compat, and // to guard against generic factories which won't have signatures directly, do not error return true; } var absoluteMinArgCount = Infinity; for (var _c = 0, tagCallSignatures_1 = tagCallSignatures; _c < tagCallSignatures_1.length; _c++) { var tagSig = tagCallSignatures_1[_c]; var tagRequiredArgCount = getMinArgumentCount(tagSig); if (tagRequiredArgCount < absoluteMinArgCount) { absoluteMinArgCount = tagRequiredArgCount; } } if (absoluteMinArgCount <= maxParamCount) { return true; // some signature accepts the number of arguments the function component provides } if (reportErrors) { var diag = ts.createDiagnosticForNode(node.tagName, ts.Diagnostics.Tag_0_expects_at_least_1_arguments_but_the_JSX_factory_2_provides_at_most_3, ts.entityNameToString(node.tagName), absoluteMinArgCount, ts.entityNameToString(factory), maxParamCount); var tagNameDeclaration = (_a = getSymbolAtLocation(node.tagName)) === null || _a === void 0 ? void 0 : _a.valueDeclaration; if (tagNameDeclaration) { ts.addRelatedInfo(diag, ts.createDiagnosticForNode(tagNameDeclaration, ts.Diagnostics._0_is_declared_here, ts.entityNameToString(node.tagName))); } if (errorOutputContainer && errorOutputContainer.skipLogging) { (errorOutputContainer.errors || (errorOutputContainer.errors = [])).push(diag); } if (!errorOutputContainer.skipLogging) { diagnostics.add(diag); } } return false; } } function getSignatureApplicabilityError(node, args, signature, relation, checkMode, reportErrors, containingMessageChain) { var errorOutputContainer = { errors: undefined, skipLogging: true }; if (ts.isJsxOpeningLikeElement(node)) { if (!checkApplicableSignatureForJsxOpeningLikeElement(node, signature, relation, checkMode, reportErrors, containingMessageChain, errorOutputContainer)) { ts.Debug.assert(!reportErrors || !!errorOutputContainer.errors, "jsx should have errors when reporting errors"); return errorOutputContainer.errors || ts.emptyArray; } return undefined; } var thisType = getThisTypeOfSignature(signature); if (thisType && thisType !== voidType && node.kind !== 209 /* SyntaxKind.NewExpression */) { // If the called expression is not of the form `x.f` or `x["f"]`, then sourceType = voidType // If the signature's 'this' type is voidType, then the check is skipped -- anything is compatible. // If the expression is a new expression, then the check is skipped. var thisArgumentNode = getThisArgumentOfCall(node); var thisArgumentType = getThisArgumentType(thisArgumentNode); var errorNode = reportErrors ? (thisArgumentNode || node) : undefined; var headMessage_1 = ts.Diagnostics.The_this_context_of_type_0_is_not_assignable_to_method_s_this_of_type_1; if (!checkTypeRelatedTo(thisArgumentType, thisType, relation, errorNode, headMessage_1, containingMessageChain, errorOutputContainer)) { ts.Debug.assert(!reportErrors || !!errorOutputContainer.errors, "this parameter should have errors when reporting errors"); return errorOutputContainer.errors || ts.emptyArray; } } var headMessage = ts.Diagnostics.Argument_of_type_0_is_not_assignable_to_parameter_of_type_1; var restType = getNonArrayRestType(signature); var argCount = restType ? Math.min(getParameterCount(signature) - 1, args.length) : args.length; for (var i = 0; i < argCount; i++) { var arg = args[i]; if (arg.kind !== 227 /* SyntaxKind.OmittedExpression */) { var paramType = getTypeAtPosition(signature, i); var argType = checkExpressionWithContextualType(arg, paramType, /*inferenceContext*/ undefined, checkMode); // If one or more arguments are still excluded (as indicated by CheckMode.SkipContextSensitive), // we obtain the regular type of any object literal arguments because we may not have inferred complete // parameter types yet and therefore excess property checks may yield false positives (see #17041). var checkArgType = checkMode & 4 /* CheckMode.SkipContextSensitive */ ? getRegularTypeOfObjectLiteral(argType) : argType; if (!checkTypeRelatedToAndOptionallyElaborate(checkArgType, paramType, relation, reportErrors ? arg : undefined, arg, headMessage, containingMessageChain, errorOutputContainer)) { ts.Debug.assert(!reportErrors || !!errorOutputContainer.errors, "parameter should have errors when reporting errors"); maybeAddMissingAwaitInfo(arg, checkArgType, paramType); return errorOutputContainer.errors || ts.emptyArray; } } } if (restType) { var spreadType = getSpreadArgumentType(args, argCount, args.length, restType, /*context*/ undefined, checkMode); var restArgCount = args.length - argCount; var errorNode = !reportErrors ? undefined : restArgCount === 0 ? node : restArgCount === 1 ? args[argCount] : ts.setTextRangePosEnd(createSyntheticExpression(node, spreadType), args[argCount].pos, args[args.length - 1].end); if (!checkTypeRelatedTo(spreadType, restType, relation, errorNode, headMessage, /*containingMessageChain*/ undefined, errorOutputContainer)) { ts.Debug.assert(!reportErrors || !!errorOutputContainer.errors, "rest parameter should have errors when reporting errors"); maybeAddMissingAwaitInfo(errorNode, spreadType, restType); return errorOutputContainer.errors || ts.emptyArray; } } return undefined; function maybeAddMissingAwaitInfo(errorNode, source, target) { if (errorNode && reportErrors && errorOutputContainer.errors && errorOutputContainer.errors.length) { // Bail if target is Promise-like---something else is wrong if (getAwaitedTypeOfPromise(target)) { return; } var awaitedTypeOfSource = getAwaitedTypeOfPromise(source); if (awaitedTypeOfSource && isTypeRelatedTo(awaitedTypeOfSource, target, relation)) { ts.addRelatedInfo(errorOutputContainer.errors[0], ts.createDiagnosticForNode(errorNode, ts.Diagnostics.Did_you_forget_to_use_await)); } } } } /** * Returns the this argument in calls like x.f(...) and x[f](...). Undefined otherwise. */ function getThisArgumentOfCall(node) { var expression = node.kind === 208 /* SyntaxKind.CallExpression */ ? node.expression : node.kind === 210 /* SyntaxKind.TaggedTemplateExpression */ ? node.tag : undefined; if (expression) { var callee = ts.skipOuterExpressions(expression); if (ts.isAccessExpression(callee)) { return callee.expression; } } } function createSyntheticExpression(parent, type, isSpread, tupleNameSource) { var result = ts.parseNodeFactory.createSyntheticExpression(type, isSpread, tupleNameSource); ts.setTextRange(result, parent); ts.setParent(result, parent); return result; } /** * Returns the effective arguments for an expression that works like a function invocation. */ function getEffectiveCallArguments(node) { if (node.kind === 210 /* SyntaxKind.TaggedTemplateExpression */) { var template = node.template; var args_3 = [createSyntheticExpression(template, getGlobalTemplateStringsArrayType())]; if (template.kind === 223 /* SyntaxKind.TemplateExpression */) { ts.forEach(template.templateSpans, function (span) { args_3.push(span.expression); }); } return args_3; } if (node.kind === 165 /* SyntaxKind.Decorator */) { return getEffectiveDecoratorArguments(node); } if (ts.isJsxOpeningLikeElement(node)) { return node.attributes.properties.length > 0 || (ts.isJsxOpeningElement(node) && node.parent.children.length > 0) ? [node.attributes] : ts.emptyArray; } var args = node.arguments || ts.emptyArray; var spreadIndex = getSpreadArgumentIndex(args); if (spreadIndex >= 0) { // Create synthetic arguments from spreads of tuple types. var effectiveArgs_1 = args.slice(0, spreadIndex); var _loop_24 = function (i) { var arg = args[i]; // We can call checkExpressionCached because spread expressions never have a contextual type. var spreadType = arg.kind === 225 /* SyntaxKind.SpreadElement */ && (flowLoopCount ? checkExpression(arg.expression) : checkExpressionCached(arg.expression)); if (spreadType && isTupleType(spreadType)) { ts.forEach(getTypeArguments(spreadType), function (t, i) { var _a; var flags = spreadType.target.elementFlags[i]; var syntheticArg = createSyntheticExpression(arg, flags & 4 /* ElementFlags.Rest */ ? createArrayType(t) : t, !!(flags & 12 /* ElementFlags.Variable */), (_a = spreadType.target.labeledElementDeclarations) === null || _a === void 0 ? void 0 : _a[i]); effectiveArgs_1.push(syntheticArg); }); } else { effectiveArgs_1.push(arg); } }; for (var i = spreadIndex; i < args.length; i++) { _loop_24(i); } return effectiveArgs_1; } return args; } /** * Returns the synthetic argument list for a decorator invocation. */ function getEffectiveDecoratorArguments(node) { var parent = node.parent; var expr = node.expression; switch (parent.kind) { case 257 /* SyntaxKind.ClassDeclaration */: case 226 /* SyntaxKind.ClassExpression */: // For a class decorator, the `target` is the type of the class (e.g. the // "static" or "constructor" side of the class). return [ createSyntheticExpression(expr, getTypeOfSymbol(getSymbolOfNode(parent))) ]; case 164 /* SyntaxKind.Parameter */: // A parameter declaration decorator will have three arguments (see // `ParameterDecorator` in core.d.ts). var func = parent.parent; return [ createSyntheticExpression(expr, parent.parent.kind === 171 /* SyntaxKind.Constructor */ ? getTypeOfSymbol(getSymbolOfNode(func)) : errorType), createSyntheticExpression(expr, anyType), createSyntheticExpression(expr, numberType) ]; case 167 /* SyntaxKind.PropertyDeclaration */: case 169 /* SyntaxKind.MethodDeclaration */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: // A method or accessor declaration decorator will have two or three arguments (see // `PropertyDecorator` and `MethodDecorator` in core.d.ts). If we are emitting decorators // for ES3, we will only pass two arguments. var hasPropDesc = parent.kind !== 167 /* SyntaxKind.PropertyDeclaration */ && languageVersion !== 0 /* ScriptTarget.ES3 */; return [ createSyntheticExpression(expr, getParentTypeOfClassElement(parent)), createSyntheticExpression(expr, getClassElementPropertyKeyType(parent)), createSyntheticExpression(expr, hasPropDesc ? createTypedPropertyDescriptorType(getTypeOfNode(parent)) : anyType) ]; } return ts.Debug.fail(); } /** * Returns the argument count for a decorator node that works like a function invocation. */ function getDecoratorArgumentCount(node, signature) { switch (node.parent.kind) { case 257 /* SyntaxKind.ClassDeclaration */: case 226 /* SyntaxKind.ClassExpression */: return 1; case 167 /* SyntaxKind.PropertyDeclaration */: return 2; case 169 /* SyntaxKind.MethodDeclaration */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: // For ES3 or decorators with only two parameters we supply only two arguments return languageVersion === 0 /* ScriptTarget.ES3 */ || signature.parameters.length <= 2 ? 2 : 3; case 164 /* SyntaxKind.Parameter */: return 3; default: return ts.Debug.fail(); } } function getDiagnosticSpanForCallNode(node, doNotIncludeArguments) { var start; var length; var sourceFile = ts.getSourceFileOfNode(node); if (ts.isPropertyAccessExpression(node.expression)) { var nameSpan = ts.getErrorSpanForNode(sourceFile, node.expression.name); start = nameSpan.start; length = doNotIncludeArguments ? nameSpan.length : node.end - start; } else { var expressionSpan = ts.getErrorSpanForNode(sourceFile, node.expression); start = expressionSpan.start; length = doNotIncludeArguments ? expressionSpan.length : node.end - start; } return { start: start, length: length, sourceFile: sourceFile }; } function getDiagnosticForCallNode(node, message, arg0, arg1, arg2, arg3) { if (ts.isCallExpression(node)) { var _a = getDiagnosticSpanForCallNode(node), sourceFile = _a.sourceFile, start = _a.start, length_6 = _a.length; return ts.createFileDiagnostic(sourceFile, start, length_6, message, arg0, arg1, arg2, arg3); } else { return ts.createDiagnosticForNode(node, message, arg0, arg1, arg2, arg3); } } function isPromiseResolveArityError(node) { if (!ts.isCallExpression(node) || !ts.isIdentifier(node.expression)) return false; var symbol = resolveName(node.expression, node.expression.escapedText, 111551 /* SymbolFlags.Value */, undefined, undefined, false); var decl = symbol === null || symbol === void 0 ? void 0 : symbol.valueDeclaration; if (!decl || !ts.isParameter(decl) || !ts.isFunctionExpressionOrArrowFunction(decl.parent) || !ts.isNewExpression(decl.parent.parent) || !ts.isIdentifier(decl.parent.parent.expression)) { return false; } var globalPromiseSymbol = getGlobalPromiseConstructorSymbol(/*reportErrors*/ false); if (!globalPromiseSymbol) return false; var constructorSymbol = getSymbolAtLocation(decl.parent.parent.expression, /*ignoreErrors*/ true); return constructorSymbol === globalPromiseSymbol; } function getArgumentArityError(node, signatures, args) { var _a; var spreadIndex = getSpreadArgumentIndex(args); if (spreadIndex > -1) { return ts.createDiagnosticForNode(args[spreadIndex], ts.Diagnostics.A_spread_argument_must_either_have_a_tuple_type_or_be_passed_to_a_rest_parameter); } var min = Number.POSITIVE_INFINITY; // smallest parameter count var max = Number.NEGATIVE_INFINITY; // largest parameter count var maxBelow = Number.NEGATIVE_INFINITY; // largest parameter count that is smaller than the number of arguments var minAbove = Number.POSITIVE_INFINITY; // smallest parameter count that is larger than the number of arguments var closestSignature; for (var _i = 0, signatures_8 = signatures; _i < signatures_8.length; _i++) { var sig = signatures_8[_i]; var minParameter = getMinArgumentCount(sig); var maxParameter = getParameterCount(sig); // smallest/largest parameter counts if (minParameter < min) { min = minParameter; closestSignature = sig; } max = Math.max(max, maxParameter); // shortest parameter count *longer than the call*/longest parameter count *shorter than the call* if (minParameter < args.length && minParameter > maxBelow) maxBelow = minParameter; if (args.length < maxParameter && maxParameter < minAbove) minAbove = maxParameter; } var hasRestParameter = ts.some(signatures, hasEffectiveRestParameter); var parameterRange = hasRestParameter ? min : min < max ? min + "-" + max : min; var isVoidPromiseError = !hasRestParameter && parameterRange === 1 && args.length === 0 && isPromiseResolveArityError(node); if (isVoidPromiseError && ts.isInJSFile(node)) { return getDiagnosticForCallNode(node, ts.Diagnostics.Expected_1_argument_but_got_0_new_Promise_needs_a_JSDoc_hint_to_produce_a_resolve_that_can_be_called_without_arguments); } var error = hasRestParameter ? ts.Diagnostics.Expected_at_least_0_arguments_but_got_1 : isVoidPromiseError ? ts.Diagnostics.Expected_0_arguments_but_got_1_Did_you_forget_to_include_void_in_your_type_argument_to_Promise : ts.Diagnostics.Expected_0_arguments_but_got_1; if (min < args.length && args.length < max) { // between min and max, but with no matching overload return getDiagnosticForCallNode(node, ts.Diagnostics.No_overload_expects_0_arguments_but_overloads_do_exist_that_expect_either_1_or_2_arguments, args.length, maxBelow, minAbove); } else if (args.length < min) { // too short: put the error span on the call expression, not any of the args var diagnostic = getDiagnosticForCallNode(node, error, parameterRange, args.length); var parameter = (_a = closestSignature === null || closestSignature === void 0 ? void 0 : closestSignature.declaration) === null || _a === void 0 ? void 0 : _a.parameters[closestSignature.thisParameter ? args.length + 1 : args.length]; if (parameter) { var parameterError = ts.createDiagnosticForNode(parameter, ts.isBindingPattern(parameter.name) ? ts.Diagnostics.An_argument_matching_this_binding_pattern_was_not_provided : ts.isRestParameter(parameter) ? ts.Diagnostics.Arguments_for_the_rest_parameter_0_were_not_provided : ts.Diagnostics.An_argument_for_0_was_not_provided, !parameter.name ? args.length : !ts.isBindingPattern(parameter.name) ? ts.idText(ts.getFirstIdentifier(parameter.name)) : undefined); return ts.addRelatedInfo(diagnostic, parameterError); } return diagnostic; } else { // too long; error goes on the excess parameters var errorSpan = ts.factory.createNodeArray(args.slice(max)); var pos = ts.first(errorSpan).pos; var end = ts.last(errorSpan).end; if (end === pos) { end++; } ts.setTextRangePosEnd(errorSpan, pos, end); return ts.createDiagnosticForNodeArray(ts.getSourceFileOfNode(node), errorSpan, error, parameterRange, args.length); } } function getTypeArgumentArityError(node, signatures, typeArguments) { var argCount = typeArguments.length; // No overloads exist if (signatures.length === 1) { var sig = signatures[0]; var min_1 = getMinTypeArgumentCount(sig.typeParameters); var max = ts.length(sig.typeParameters); return ts.createDiagnosticForNodeArray(ts.getSourceFileOfNode(node), typeArguments, ts.Diagnostics.Expected_0_type_arguments_but_got_1, min_1 < max ? min_1 + "-" + max : min_1, argCount); } // Overloads exist var belowArgCount = -Infinity; var aboveArgCount = Infinity; for (var _i = 0, signatures_9 = signatures; _i < signatures_9.length; _i++) { var sig = signatures_9[_i]; var min_2 = getMinTypeArgumentCount(sig.typeParameters); var max = ts.length(sig.typeParameters); if (min_2 > argCount) { aboveArgCount = Math.min(aboveArgCount, min_2); } else if (max < argCount) { belowArgCount = Math.max(belowArgCount, max); } } if (belowArgCount !== -Infinity && aboveArgCount !== Infinity) { return ts.createDiagnosticForNodeArray(ts.getSourceFileOfNode(node), typeArguments, ts.Diagnostics.No_overload_expects_0_type_arguments_but_overloads_do_exist_that_expect_either_1_or_2_type_arguments, argCount, belowArgCount, aboveArgCount); } return ts.createDiagnosticForNodeArray(ts.getSourceFileOfNode(node), typeArguments, ts.Diagnostics.Expected_0_type_arguments_but_got_1, belowArgCount === -Infinity ? aboveArgCount : belowArgCount, argCount); } function resolveCall(node, signatures, candidatesOutArray, checkMode, callChainFlags, fallbackError) { var isTaggedTemplate = node.kind === 210 /* SyntaxKind.TaggedTemplateExpression */; var isDecorator = node.kind === 165 /* SyntaxKind.Decorator */; var isJsxOpeningOrSelfClosingElement = ts.isJsxOpeningLikeElement(node); var reportErrors = !candidatesOutArray; var typeArguments; if (!isDecorator) { typeArguments = node.typeArguments; // We already perform checking on the type arguments on the class declaration itself. if (isTaggedTemplate || isJsxOpeningOrSelfClosingElement || node.expression.kind !== 106 /* SyntaxKind.SuperKeyword */) { ts.forEach(typeArguments, checkSourceElement); } } var candidates = candidatesOutArray || []; // reorderCandidates fills up the candidates array directly reorderCandidates(signatures, candidates, callChainFlags); if (!candidates.length) { if (reportErrors) { diagnostics.add(getDiagnosticForCallNode(node, ts.Diagnostics.Call_target_does_not_contain_any_signatures)); } return resolveErrorCall(node); } var args = getEffectiveCallArguments(node); // The excludeArgument array contains true for each context sensitive argument (an argument // is context sensitive it is susceptible to a one-time permanent contextual typing). // // The idea is that we will perform type argument inference & assignability checking once // without using the susceptible parameters that are functions, and once more for those // parameters, contextually typing each as we go along. // // For a tagged template, then the first argument be 'undefined' if necessary because it // represents a TemplateStringsArray. // // For a decorator, no arguments are susceptible to contextual typing due to the fact // decorators are applied to a declaration by the emitter, and not to an expression. var isSingleNonGenericCandidate = candidates.length === 1 && !candidates[0].typeParameters; var argCheckMode = !isDecorator && !isSingleNonGenericCandidate && ts.some(args, isContextSensitive) ? 4 /* CheckMode.SkipContextSensitive */ : 0 /* CheckMode.Normal */; argCheckMode |= checkMode & 32 /* CheckMode.IsForStringLiteralArgumentCompletions */; // The following variables are captured and modified by calls to chooseOverload. // If overload resolution or type argument inference fails, we want to report the // best error possible. The best error is one which says that an argument was not // assignable to a parameter. This implies that everything else about the overload // was fine. So if there is any overload that is only incorrect because of an // argument, we will report an error on that one. // // function foo(s: string): void; // function foo(n: number): void; // Report argument error on this overload // function foo(): void; // foo(true); // // If none of the overloads even made it that far, there are two possibilities. // There was a problem with type arguments for some overload, in which case // report an error on that. Or none of the overloads even had correct arity, // in which case give an arity error. // // function foo(x: T): void; // Report type argument error // function foo(): void; // foo(0); // var candidatesForArgumentError; var candidateForArgumentArityError; var candidateForTypeArgumentError; var result; // If we are in signature help, a trailing comma indicates that we intend to provide another argument, // so we will only accept overloads with arity at least 1 higher than the current number of provided arguments. var signatureHelpTrailingComma = !!(checkMode & 16 /* CheckMode.IsForSignatureHelp */) && node.kind === 208 /* SyntaxKind.CallExpression */ && node.arguments.hasTrailingComma; // Section 4.12.1: // if the candidate list contains one or more signatures for which the type of each argument // expression is a subtype of each corresponding parameter type, the return type of the first // of those signatures becomes the return type of the function call. // Otherwise, the return type of the first signature in the candidate list becomes the return // type of the function call. // // Whether the call is an error is determined by assignability of the arguments. The subtype pass // is just important for choosing the best signature. So in the case where there is only one // signature, the subtype pass is useless. So skipping it is an optimization. if (candidates.length > 1) { result = chooseOverload(candidates, subtypeRelation, isSingleNonGenericCandidate, signatureHelpTrailingComma); } if (!result) { result = chooseOverload(candidates, assignableRelation, isSingleNonGenericCandidate, signatureHelpTrailingComma); } if (result) { return result; } // No signatures were applicable. Now report errors based on the last applicable signature with // no arguments excluded from assignability checks. // If candidate is undefined, it means that no candidates had a suitable arity. In that case, // skip the checkApplicableSignature check. if (reportErrors) { if (candidatesForArgumentError) { if (candidatesForArgumentError.length === 1 || candidatesForArgumentError.length > 3) { var last_2 = candidatesForArgumentError[candidatesForArgumentError.length - 1]; var chain_1; if (candidatesForArgumentError.length > 3) { chain_1 = ts.chainDiagnosticMessages(chain_1, ts.Diagnostics.The_last_overload_gave_the_following_error); chain_1 = ts.chainDiagnosticMessages(chain_1, ts.Diagnostics.No_overload_matches_this_call); } var diags = getSignatureApplicabilityError(node, args, last_2, assignableRelation, 0 /* CheckMode.Normal */, /*reportErrors*/ true, function () { return chain_1; }); if (diags) { for (var _i = 0, diags_1 = diags; _i < diags_1.length; _i++) { var d = diags_1[_i]; if (last_2.declaration && candidatesForArgumentError.length > 3) { ts.addRelatedInfo(d, ts.createDiagnosticForNode(last_2.declaration, ts.Diagnostics.The_last_overload_is_declared_here)); } addImplementationSuccessElaboration(last_2, d); diagnostics.add(d); } } else { ts.Debug.fail("No error for last overload signature"); } } else { var allDiagnostics = []; var max = 0; var min_3 = Number.MAX_VALUE; var minIndex = 0; var i_1 = 0; var _loop_25 = function (c) { var chain_2 = function () { return ts.chainDiagnosticMessages(/*details*/ undefined, ts.Diagnostics.Overload_0_of_1_2_gave_the_following_error, i_1 + 1, candidates.length, signatureToString(c)); }; var diags_2 = getSignatureApplicabilityError(node, args, c, assignableRelation, 0 /* CheckMode.Normal */, /*reportErrors*/ true, chain_2); if (diags_2) { if (diags_2.length <= min_3) { min_3 = diags_2.length; minIndex = i_1; } max = Math.max(max, diags_2.length); allDiagnostics.push(diags_2); } else { ts.Debug.fail("No error for 3 or fewer overload signatures"); } i_1++; }; for (var _a = 0, candidatesForArgumentError_1 = candidatesForArgumentError; _a < candidatesForArgumentError_1.length; _a++) { var c = candidatesForArgumentError_1[_a]; _loop_25(c); } var diags_3 = max > 1 ? allDiagnostics[minIndex] : ts.flatten(allDiagnostics); ts.Debug.assert(diags_3.length > 0, "No errors reported for 3 or fewer overload signatures"); var chain = ts.chainDiagnosticMessages(ts.map(diags_3, ts.createDiagnosticMessageChainFromDiagnostic), ts.Diagnostics.No_overload_matches_this_call); // The below is a spread to guarantee we get a new (mutable) array - our `flatMap` helper tries to do "smart" optimizations where it reuses input // arrays and the emptyArray singleton where possible, which is decidedly not what we want while we're still constructing this diagnostic var related = __spreadArray([], ts.flatMap(diags_3, function (d) { return d.relatedInformation; }), true); var diag = void 0; if (ts.every(diags_3, function (d) { return d.start === diags_3[0].start && d.length === diags_3[0].length && d.file === diags_3[0].file; })) { var _b = diags_3[0], file = _b.file, start = _b.start, length_7 = _b.length; diag = { file: file, start: start, length: length_7, code: chain.code, category: chain.category, messageText: chain, relatedInformation: related }; } else { diag = ts.createDiagnosticForNodeFromMessageChain(node, chain, related); } addImplementationSuccessElaboration(candidatesForArgumentError[0], diag); diagnostics.add(diag); } } else if (candidateForArgumentArityError) { diagnostics.add(getArgumentArityError(node, [candidateForArgumentArityError], args)); } else if (candidateForTypeArgumentError) { checkTypeArguments(candidateForTypeArgumentError, node.typeArguments, /*reportErrors*/ true, fallbackError); } else { var signaturesWithCorrectTypeArgumentArity = ts.filter(signatures, function (s) { return hasCorrectTypeArgumentArity(s, typeArguments); }); if (signaturesWithCorrectTypeArgumentArity.length === 0) { diagnostics.add(getTypeArgumentArityError(node, signatures, typeArguments)); } else if (!isDecorator) { diagnostics.add(getArgumentArityError(node, signaturesWithCorrectTypeArgumentArity, args)); } else if (fallbackError) { diagnostics.add(getDiagnosticForCallNode(node, fallbackError)); } } } return getCandidateForOverloadFailure(node, candidates, args, !!candidatesOutArray, checkMode); function addImplementationSuccessElaboration(failed, diagnostic) { var _a, _b; var oldCandidatesForArgumentError = candidatesForArgumentError; var oldCandidateForArgumentArityError = candidateForArgumentArityError; var oldCandidateForTypeArgumentError = candidateForTypeArgumentError; var failedSignatureDeclarations = ((_b = (_a = failed.declaration) === null || _a === void 0 ? void 0 : _a.symbol) === null || _b === void 0 ? void 0 : _b.declarations) || ts.emptyArray; var isOverload = failedSignatureDeclarations.length > 1; var implDecl = isOverload ? ts.find(failedSignatureDeclarations, function (d) { return ts.isFunctionLikeDeclaration(d) && ts.nodeIsPresent(d.body); }) : undefined; if (implDecl) { var candidate = getSignatureFromDeclaration(implDecl); var isSingleNonGenericCandidate_1 = !candidate.typeParameters; if (chooseOverload([candidate], assignableRelation, isSingleNonGenericCandidate_1)) { ts.addRelatedInfo(diagnostic, ts.createDiagnosticForNode(implDecl, ts.Diagnostics.The_call_would_have_succeeded_against_this_implementation_but_implementation_signatures_of_overloads_are_not_externally_visible)); } } candidatesForArgumentError = oldCandidatesForArgumentError; candidateForArgumentArityError = oldCandidateForArgumentArityError; candidateForTypeArgumentError = oldCandidateForTypeArgumentError; } function chooseOverload(candidates, relation, isSingleNonGenericCandidate, signatureHelpTrailingComma) { if (signatureHelpTrailingComma === void 0) { signatureHelpTrailingComma = false; } candidatesForArgumentError = undefined; candidateForArgumentArityError = undefined; candidateForTypeArgumentError = undefined; if (isSingleNonGenericCandidate) { var candidate = candidates[0]; if (ts.some(typeArguments) || !hasCorrectArity(node, args, candidate, signatureHelpTrailingComma)) { return undefined; } if (getSignatureApplicabilityError(node, args, candidate, relation, 0 /* CheckMode.Normal */, /*reportErrors*/ false, /*containingMessageChain*/ undefined)) { candidatesForArgumentError = [candidate]; return undefined; } return candidate; } for (var candidateIndex = 0; candidateIndex < candidates.length; candidateIndex++) { var candidate = candidates[candidateIndex]; if (!hasCorrectTypeArgumentArity(candidate, typeArguments) || !hasCorrectArity(node, args, candidate, signatureHelpTrailingComma)) { continue; } var checkCandidate = void 0; var inferenceContext = void 0; if (candidate.typeParameters) { var typeArgumentTypes = void 0; if (ts.some(typeArguments)) { typeArgumentTypes = checkTypeArguments(candidate, typeArguments, /*reportErrors*/ false); if (!typeArgumentTypes) { candidateForTypeArgumentError = candidate; continue; } } else { inferenceContext = createInferenceContext(candidate.typeParameters, candidate, /*flags*/ ts.isInJSFile(node) ? 2 /* InferenceFlags.AnyDefault */ : 0 /* InferenceFlags.None */); typeArgumentTypes = inferTypeArguments(node, candidate, args, argCheckMode | 8 /* CheckMode.SkipGenericFunctions */, inferenceContext); argCheckMode |= inferenceContext.flags & 4 /* InferenceFlags.SkippedGenericFunction */ ? 8 /* CheckMode.SkipGenericFunctions */ : 0 /* CheckMode.Normal */; } checkCandidate = getSignatureInstantiation(candidate, typeArgumentTypes, ts.isInJSFile(candidate.declaration), inferenceContext && inferenceContext.inferredTypeParameters); // If the original signature has a generic rest type, instantiation may produce a // signature with different arity and we need to perform another arity check. if (getNonArrayRestType(candidate) && !hasCorrectArity(node, args, checkCandidate, signatureHelpTrailingComma)) { candidateForArgumentArityError = checkCandidate; continue; } } else { checkCandidate = candidate; } if (getSignatureApplicabilityError(node, args, checkCandidate, relation, argCheckMode, /*reportErrors*/ false, /*containingMessageChain*/ undefined)) { // Give preference to error candidates that have no rest parameters (as they are more specific) (candidatesForArgumentError || (candidatesForArgumentError = [])).push(checkCandidate); continue; } if (argCheckMode) { // If one or more context sensitive arguments were excluded, we start including // them now (and keeping do so for any subsequent candidates) and perform a second // round of type inference and applicability checking for this particular candidate. argCheckMode = checkMode & 32 /* CheckMode.IsForStringLiteralArgumentCompletions */; if (inferenceContext) { var typeArgumentTypes = inferTypeArguments(node, candidate, args, argCheckMode, inferenceContext); checkCandidate = getSignatureInstantiation(candidate, typeArgumentTypes, ts.isInJSFile(candidate.declaration), inferenceContext && inferenceContext.inferredTypeParameters); // If the original signature has a generic rest type, instantiation may produce a // signature with different arity and we need to perform another arity check. if (getNonArrayRestType(candidate) && !hasCorrectArity(node, args, checkCandidate, signatureHelpTrailingComma)) { candidateForArgumentArityError = checkCandidate; continue; } } if (getSignatureApplicabilityError(node, args, checkCandidate, relation, argCheckMode, /*reportErrors*/ false, /*containingMessageChain*/ undefined)) { // Give preference to error candidates that have no rest parameters (as they are more specific) (candidatesForArgumentError || (candidatesForArgumentError = [])).push(checkCandidate); continue; } } candidates[candidateIndex] = checkCandidate; return checkCandidate; } return undefined; } } // No signature was applicable. We have already reported the errors for the invalid signature. function getCandidateForOverloadFailure(node, candidates, args, hasCandidatesOutArray, checkMode) { ts.Debug.assert(candidates.length > 0); // Else should not have called this. checkNodeDeferred(node); // Normally we will combine overloads. Skip this if they have type parameters since that's hard to combine. // Don't do this if there is a `candidatesOutArray`, // because then we want the chosen best candidate to be one of the overloads, not a combination. return hasCandidatesOutArray || candidates.length === 1 || candidates.some(function (c) { return !!c.typeParameters; }) ? pickLongestCandidateSignature(node, candidates, args, checkMode) : createUnionOfSignaturesForOverloadFailure(candidates); } function createUnionOfSignaturesForOverloadFailure(candidates) { var thisParameters = ts.mapDefined(candidates, function (c) { return c.thisParameter; }); var thisParameter; if (thisParameters.length) { thisParameter = createCombinedSymbolFromTypes(thisParameters, thisParameters.map(getTypeOfParameter)); } var _a = ts.minAndMax(candidates, getNumNonRestParameters), minArgumentCount = _a.min, maxNonRestParam = _a.max; var parameters = []; var _loop_26 = function (i) { var symbols = ts.mapDefined(candidates, function (s) { return signatureHasRestParameter(s) ? i < s.parameters.length - 1 ? s.parameters[i] : ts.last(s.parameters) : i < s.parameters.length ? s.parameters[i] : undefined; }); ts.Debug.assert(symbols.length !== 0); parameters.push(createCombinedSymbolFromTypes(symbols, ts.mapDefined(candidates, function (candidate) { return tryGetTypeAtPosition(candidate, i); }))); }; for (var i = 0; i < maxNonRestParam; i++) { _loop_26(i); } var restParameterSymbols = ts.mapDefined(candidates, function (c) { return signatureHasRestParameter(c) ? ts.last(c.parameters) : undefined; }); var flags = 0 /* SignatureFlags.None */; if (restParameterSymbols.length !== 0) { var type = createArrayType(getUnionType(ts.mapDefined(candidates, tryGetRestTypeOfSignature), 2 /* UnionReduction.Subtype */)); parameters.push(createCombinedSymbolForOverloadFailure(restParameterSymbols, type)); flags |= 1 /* SignatureFlags.HasRestParameter */; } if (candidates.some(signatureHasLiteralTypes)) { flags |= 2 /* SignatureFlags.HasLiteralTypes */; } return createSignature(candidates[0].declaration, /*typeParameters*/ undefined, // Before calling this we tested for `!candidates.some(c => !!c.typeParameters)`. thisParameter, parameters, /*resolvedReturnType*/ getIntersectionType(candidates.map(getReturnTypeOfSignature)), /*typePredicate*/ undefined, minArgumentCount, flags); } function getNumNonRestParameters(signature) { var numParams = signature.parameters.length; return signatureHasRestParameter(signature) ? numParams - 1 : numParams; } function createCombinedSymbolFromTypes(sources, types) { return createCombinedSymbolForOverloadFailure(sources, getUnionType(types, 2 /* UnionReduction.Subtype */)); } function createCombinedSymbolForOverloadFailure(sources, type) { // This function is currently only used for erroneous overloads, so it's good enough to just use the first source. return createSymbolWithType(ts.first(sources), type); } function pickLongestCandidateSignature(node, candidates, args, checkMode) { // Pick the longest signature. This way we can get a contextual type for cases like: // declare function f(a: { xa: number; xb: number; }, b: number); // f({ | // Also, use explicitly-supplied type arguments if they are provided, so we can get a contextual signature in cases like: // declare function f(k: keyof T); // f(" var bestIndex = getLongestCandidateIndex(candidates, apparentArgumentCount === undefined ? args.length : apparentArgumentCount); var candidate = candidates[bestIndex]; var typeParameters = candidate.typeParameters; if (!typeParameters) { return candidate; } var typeArgumentNodes = callLikeExpressionMayHaveTypeArguments(node) ? node.typeArguments : undefined; var instantiated = typeArgumentNodes ? createSignatureInstantiation(candidate, getTypeArgumentsFromNodes(typeArgumentNodes, typeParameters, ts.isInJSFile(node))) : inferSignatureInstantiationForOverloadFailure(node, typeParameters, candidate, args, checkMode); candidates[bestIndex] = instantiated; return instantiated; } function getTypeArgumentsFromNodes(typeArgumentNodes, typeParameters, isJs) { var typeArguments = typeArgumentNodes.map(getTypeOfNode); while (typeArguments.length > typeParameters.length) { typeArguments.pop(); } while (typeArguments.length < typeParameters.length) { typeArguments.push(getDefaultFromTypeParameter(typeParameters[typeArguments.length]) || getConstraintOfTypeParameter(typeParameters[typeArguments.length]) || getDefaultTypeArgumentType(isJs)); } return typeArguments; } function inferSignatureInstantiationForOverloadFailure(node, typeParameters, candidate, args, checkMode) { var inferenceContext = createInferenceContext(typeParameters, candidate, /*flags*/ ts.isInJSFile(node) ? 2 /* InferenceFlags.AnyDefault */ : 0 /* InferenceFlags.None */); var typeArgumentTypes = inferTypeArguments(node, candidate, args, checkMode | 4 /* CheckMode.SkipContextSensitive */ | 8 /* CheckMode.SkipGenericFunctions */, inferenceContext); return createSignatureInstantiation(candidate, typeArgumentTypes); } function getLongestCandidateIndex(candidates, argsCount) { var maxParamsIndex = -1; var maxParams = -1; for (var i = 0; i < candidates.length; i++) { var candidate = candidates[i]; var paramCount = getParameterCount(candidate); if (hasEffectiveRestParameter(candidate) || paramCount >= argsCount) { return i; } if (paramCount > maxParams) { maxParams = paramCount; maxParamsIndex = i; } } return maxParamsIndex; } function resolveCallExpression(node, candidatesOutArray, checkMode) { if (node.expression.kind === 106 /* SyntaxKind.SuperKeyword */) { var superType = checkSuperExpression(node.expression); if (isTypeAny(superType)) { for (var _i = 0, _a = node.arguments; _i < _a.length; _i++) { var arg = _a[_i]; checkExpression(arg); // Still visit arguments so they get marked for visibility, etc } return anySignature; } if (!isErrorType(superType)) { // In super call, the candidate signatures are the matching arity signatures of the base constructor function instantiated // with the type arguments specified in the extends clause. var baseTypeNode = ts.getEffectiveBaseTypeNode(ts.getContainingClass(node)); if (baseTypeNode) { var baseConstructors = getInstantiatedConstructorsForTypeArguments(superType, baseTypeNode.typeArguments, baseTypeNode); return resolveCall(node, baseConstructors, candidatesOutArray, checkMode, 0 /* SignatureFlags.None */); } } return resolveUntypedCall(node); } var callChainFlags; var funcType = checkExpression(node.expression); if (ts.isCallChain(node)) { var nonOptionalType = getOptionalExpressionType(funcType, node.expression); callChainFlags = nonOptionalType === funcType ? 0 /* SignatureFlags.None */ : ts.isOutermostOptionalChain(node) ? 16 /* SignatureFlags.IsOuterCallChain */ : 8 /* SignatureFlags.IsInnerCallChain */; funcType = nonOptionalType; } else { callChainFlags = 0 /* SignatureFlags.None */; } funcType = checkNonNullTypeWithReporter(funcType, node.expression, reportCannotInvokePossiblyNullOrUndefinedError); if (funcType === silentNeverType) { return silentNeverSignature; } var apparentType = getApparentType(funcType); if (isErrorType(apparentType)) { // Another error has already been reported return resolveErrorCall(node); } // Technically, this signatures list may be incomplete. We are taking the apparent type, // but we are not including call signatures that may have been added to the Object or // Function interface, since they have none by default. This is a bit of a leap of faith // that the user will not add any. var callSignatures = getSignaturesOfType(apparentType, 0 /* SignatureKind.Call */); var numConstructSignatures = getSignaturesOfType(apparentType, 1 /* SignatureKind.Construct */).length; // TS 1.0 Spec: 4.12 // In an untyped function call no TypeArgs are permitted, Args can be any argument list, no contextual // types are provided for the argument expressions, and the result is always of type Any. if (isUntypedFunctionCall(funcType, apparentType, callSignatures.length, numConstructSignatures)) { // The unknownType indicates that an error already occurred (and was reported). No // need to report another error in this case. if (!isErrorType(funcType) && node.typeArguments) { error(node, ts.Diagnostics.Untyped_function_calls_may_not_accept_type_arguments); } return resolveUntypedCall(node); } // If FuncExpr's apparent type(section 3.8.1) is a function type, the call is a typed function call. // TypeScript employs overload resolution in typed function calls in order to support functions // with multiple call signatures. if (!callSignatures.length) { if (numConstructSignatures) { error(node, ts.Diagnostics.Value_of_type_0_is_not_callable_Did_you_mean_to_include_new, typeToString(funcType)); } else { var relatedInformation = void 0; if (node.arguments.length === 1) { var text = ts.getSourceFileOfNode(node).text; if (ts.isLineBreak(text.charCodeAt(ts.skipTrivia(text, node.expression.end, /* stopAfterLineBreak */ true) - 1))) { relatedInformation = ts.createDiagnosticForNode(node.expression, ts.Diagnostics.Are_you_missing_a_semicolon); } } invocationError(node.expression, apparentType, 0 /* SignatureKind.Call */, relatedInformation); } return resolveErrorCall(node); } // When a call to a generic function is an argument to an outer call to a generic function for which // inference is in process, we have a choice to make. If the inner call relies on inferences made from // its contextual type to its return type, deferring the inner call processing allows the best possible // contextual type to accumulate. But if the outer call relies on inferences made from the return type of // the inner call, the inner call should be processed early. There's no sure way to know which choice is // right (only a full unification algorithm can determine that), so we resort to the following heuristic: // If no type arguments are specified in the inner call and at least one call signature is generic and // returns a function type, we choose to defer processing. This narrowly permits function composition // operators to flow inferences through return types, but otherwise processes calls right away. We // use the resolvingSignature singleton to indicate that we deferred processing. This result will be // propagated out and eventually turned into nonInferrableType (a type that is assignable to anything and // from which we never make inferences). if (checkMode & 8 /* CheckMode.SkipGenericFunctions */ && !node.typeArguments && callSignatures.some(isGenericFunctionReturningFunction)) { skippedGenericFunction(node, checkMode); return resolvingSignature; } // If the function is explicitly marked with `@class`, then it must be constructed. if (callSignatures.some(function (sig) { return ts.isInJSFile(sig.declaration) && !!ts.getJSDocClassTag(sig.declaration); })) { error(node, ts.Diagnostics.Value_of_type_0_is_not_callable_Did_you_mean_to_include_new, typeToString(funcType)); return resolveErrorCall(node); } return resolveCall(node, callSignatures, candidatesOutArray, checkMode, callChainFlags); } function isGenericFunctionReturningFunction(signature) { return !!(signature.typeParameters && isFunctionType(getReturnTypeOfSignature(signature))); } /** * TS 1.0 spec: 4.12 * If FuncExpr is of type Any, or of an object type that has no call or construct signatures * but is a subtype of the Function interface, the call is an untyped function call. */ function isUntypedFunctionCall(funcType, apparentFuncType, numCallSignatures, numConstructSignatures) { // We exclude union types because we may have a union of function types that happen to have no common signatures. return isTypeAny(funcType) || isTypeAny(apparentFuncType) && !!(funcType.flags & 262144 /* TypeFlags.TypeParameter */) || !numCallSignatures && !numConstructSignatures && !(apparentFuncType.flags & 1048576 /* TypeFlags.Union */) && !(getReducedType(apparentFuncType).flags & 131072 /* TypeFlags.Never */) && isTypeAssignableTo(funcType, globalFunctionType); } function resolveNewExpression(node, candidatesOutArray, checkMode) { if (node.arguments && languageVersion < 1 /* ScriptTarget.ES5 */) { var spreadIndex = getSpreadArgumentIndex(node.arguments); if (spreadIndex >= 0) { error(node.arguments[spreadIndex], ts.Diagnostics.Spread_operator_in_new_expressions_is_only_available_when_targeting_ECMAScript_5_and_higher); } } var expressionType = checkNonNullExpression(node.expression); if (expressionType === silentNeverType) { return silentNeverSignature; } // If expressionType's apparent type(section 3.8.1) is an object type with one or // more construct signatures, the expression is processed in the same manner as a // function call, but using the construct signatures as the initial set of candidate // signatures for overload resolution. The result type of the function call becomes // the result type of the operation. expressionType = getApparentType(expressionType); if (isErrorType(expressionType)) { // Another error has already been reported return resolveErrorCall(node); } // TS 1.0 spec: 4.11 // If expressionType is of type Any, Args can be any argument // list and the result of the operation is of type Any. if (isTypeAny(expressionType)) { if (node.typeArguments) { error(node, ts.Diagnostics.Untyped_function_calls_may_not_accept_type_arguments); } return resolveUntypedCall(node); } // Technically, this signatures list may be incomplete. We are taking the apparent type, // but we are not including construct signatures that may have been added to the Object or // Function interface, since they have none by default. This is a bit of a leap of faith // that the user will not add any. var constructSignatures = getSignaturesOfType(expressionType, 1 /* SignatureKind.Construct */); if (constructSignatures.length) { if (!isConstructorAccessible(node, constructSignatures[0])) { return resolveErrorCall(node); } // If the expression is a class of abstract type, or an abstract construct signature, // then it cannot be instantiated. // In the case of a merged class-module or class-interface declaration, // only the class declaration node will have the Abstract flag set. if (someSignature(constructSignatures, function (signature) { return !!(signature.flags & 4 /* SignatureFlags.Abstract */); })) { error(node, ts.Diagnostics.Cannot_create_an_instance_of_an_abstract_class); return resolveErrorCall(node); } var valueDecl = expressionType.symbol && ts.getClassLikeDeclarationOfSymbol(expressionType.symbol); if (valueDecl && ts.hasSyntacticModifier(valueDecl, 128 /* ModifierFlags.Abstract */)) { error(node, ts.Diagnostics.Cannot_create_an_instance_of_an_abstract_class); return resolveErrorCall(node); } return resolveCall(node, constructSignatures, candidatesOutArray, checkMode, 0 /* SignatureFlags.None */); } // If expressionType's apparent type is an object type with no construct signatures but // one or more call signatures, the expression is processed as a function call. A compile-time // error occurs if the result of the function call is not Void. The type of the result of the // operation is Any. It is an error to have a Void this type. var callSignatures = getSignaturesOfType(expressionType, 0 /* SignatureKind.Call */); if (callSignatures.length) { var signature = resolveCall(node, callSignatures, candidatesOutArray, checkMode, 0 /* SignatureFlags.None */); if (!noImplicitAny) { if (signature.declaration && !isJSConstructor(signature.declaration) && getReturnTypeOfSignature(signature) !== voidType) { error(node, ts.Diagnostics.Only_a_void_function_can_be_called_with_the_new_keyword); } if (getThisTypeOfSignature(signature) === voidType) { error(node, ts.Diagnostics.A_function_that_is_called_with_the_new_keyword_cannot_have_a_this_type_that_is_void); } } return signature; } invocationError(node.expression, expressionType, 1 /* SignatureKind.Construct */); return resolveErrorCall(node); } function someSignature(signatures, f) { if (ts.isArray(signatures)) { return ts.some(signatures, function (signature) { return someSignature(signature, f); }); } return signatures.compositeKind === 1048576 /* TypeFlags.Union */ ? ts.some(signatures.compositeSignatures, f) : f(signatures); } function typeHasProtectedAccessibleBase(target, type) { var baseTypes = getBaseTypes(type); if (!ts.length(baseTypes)) { return false; } var firstBase = baseTypes[0]; if (firstBase.flags & 2097152 /* TypeFlags.Intersection */) { var types = firstBase.types; var mixinFlags = findMixins(types); var i = 0; for (var _i = 0, _a = firstBase.types; _i < _a.length; _i++) { var intersectionMember = _a[_i]; // We want to ignore mixin ctors if (!mixinFlags[i]) { if (ts.getObjectFlags(intersectionMember) & (1 /* ObjectFlags.Class */ | 2 /* ObjectFlags.Interface */)) { if (intersectionMember.symbol === target) { return true; } if (typeHasProtectedAccessibleBase(target, intersectionMember)) { return true; } } } i++; } return false; } if (firstBase.symbol === target) { return true; } return typeHasProtectedAccessibleBase(target, firstBase); } function isConstructorAccessible(node, signature) { if (!signature || !signature.declaration) { return true; } var declaration = signature.declaration; var modifiers = ts.getSelectedEffectiveModifierFlags(declaration, 24 /* ModifierFlags.NonPublicAccessibilityModifier */); // (1) Public constructors and (2) constructor functions are always accessible. if (!modifiers || declaration.kind !== 171 /* SyntaxKind.Constructor */) { return true; } var declaringClassDeclaration = ts.getClassLikeDeclarationOfSymbol(declaration.parent.symbol); var declaringClass = getDeclaredTypeOfSymbol(declaration.parent.symbol); // A private or protected constructor can only be instantiated within its own class (or a subclass, for protected) if (!isNodeWithinClass(node, declaringClassDeclaration)) { var containingClass = ts.getContainingClass(node); if (containingClass && modifiers & 16 /* ModifierFlags.Protected */) { var containingType = getTypeOfNode(containingClass); if (typeHasProtectedAccessibleBase(declaration.parent.symbol, containingType)) { return true; } } if (modifiers & 8 /* ModifierFlags.Private */) { error(node, ts.Diagnostics.Constructor_of_class_0_is_private_and_only_accessible_within_the_class_declaration, typeToString(declaringClass)); } if (modifiers & 16 /* ModifierFlags.Protected */) { error(node, ts.Diagnostics.Constructor_of_class_0_is_protected_and_only_accessible_within_the_class_declaration, typeToString(declaringClass)); } return false; } return true; } function invocationErrorDetails(errorTarget, apparentType, kind) { var errorInfo; var isCall = kind === 0 /* SignatureKind.Call */; var awaitedType = getAwaitedType(apparentType); var maybeMissingAwait = awaitedType && getSignaturesOfType(awaitedType, kind).length > 0; if (apparentType.flags & 1048576 /* TypeFlags.Union */) { var types = apparentType.types; var hasSignatures = false; for (var _i = 0, types_20 = types; _i < types_20.length; _i++) { var constituent = types_20[_i]; var signatures = getSignaturesOfType(constituent, kind); if (signatures.length !== 0) { hasSignatures = true; if (errorInfo) { // Bail early if we already have an error, no chance of "No constituent of type is callable" break; } } else { // Error on the first non callable constituent only if (!errorInfo) { errorInfo = ts.chainDiagnosticMessages(errorInfo, isCall ? ts.Diagnostics.Type_0_has_no_call_signatures : ts.Diagnostics.Type_0_has_no_construct_signatures, typeToString(constituent)); errorInfo = ts.chainDiagnosticMessages(errorInfo, isCall ? ts.Diagnostics.Not_all_constituents_of_type_0_are_callable : ts.Diagnostics.Not_all_constituents_of_type_0_are_constructable, typeToString(apparentType)); } if (hasSignatures) { // Bail early if we already found a siganture, no chance of "No constituent of type is callable" break; } } } if (!hasSignatures) { errorInfo = ts.chainDiagnosticMessages( /* detials */ undefined, isCall ? ts.Diagnostics.No_constituent_of_type_0_is_callable : ts.Diagnostics.No_constituent_of_type_0_is_constructable, typeToString(apparentType)); } if (!errorInfo) { errorInfo = ts.chainDiagnosticMessages(errorInfo, isCall ? ts.Diagnostics.Each_member_of_the_union_type_0_has_signatures_but_none_of_those_signatures_are_compatible_with_each_other : ts.Diagnostics.Each_member_of_the_union_type_0_has_construct_signatures_but_none_of_those_signatures_are_compatible_with_each_other, typeToString(apparentType)); } } else { errorInfo = ts.chainDiagnosticMessages(errorInfo, isCall ? ts.Diagnostics.Type_0_has_no_call_signatures : ts.Diagnostics.Type_0_has_no_construct_signatures, typeToString(apparentType)); } var headMessage = isCall ? ts.Diagnostics.This_expression_is_not_callable : ts.Diagnostics.This_expression_is_not_constructable; // Diagnose get accessors incorrectly called as functions if (ts.isCallExpression(errorTarget.parent) && errorTarget.parent.arguments.length === 0) { var resolvedSymbol = getNodeLinks(errorTarget).resolvedSymbol; if (resolvedSymbol && resolvedSymbol.flags & 32768 /* SymbolFlags.GetAccessor */) { headMessage = ts.Diagnostics.This_expression_is_not_callable_because_it_is_a_get_accessor_Did_you_mean_to_use_it_without; } } return { messageChain: ts.chainDiagnosticMessages(errorInfo, headMessage), relatedMessage: maybeMissingAwait ? ts.Diagnostics.Did_you_forget_to_use_await : undefined, }; } function invocationError(errorTarget, apparentType, kind, relatedInformation) { var _a = invocationErrorDetails(errorTarget, apparentType, kind), messageChain = _a.messageChain, relatedInfo = _a.relatedMessage; var diagnostic = ts.createDiagnosticForNodeFromMessageChain(errorTarget, messageChain); if (relatedInfo) { ts.addRelatedInfo(diagnostic, ts.createDiagnosticForNode(errorTarget, relatedInfo)); } if (ts.isCallExpression(errorTarget.parent)) { var _b = getDiagnosticSpanForCallNode(errorTarget.parent, /* doNotIncludeArguments */ true), start = _b.start, length_8 = _b.length; diagnostic.start = start; diagnostic.length = length_8; } diagnostics.add(diagnostic); invocationErrorRecovery(apparentType, kind, relatedInformation ? ts.addRelatedInfo(diagnostic, relatedInformation) : diagnostic); } function invocationErrorRecovery(apparentType, kind, diagnostic) { if (!apparentType.symbol) { return; } var importNode = getSymbolLinks(apparentType.symbol).originatingImport; // Create a diagnostic on the originating import if possible onto which we can attach a quickfix // An import call expression cannot be rewritten into another form to correct the error - the only solution is to use `.default` at the use-site if (importNode && !ts.isImportCall(importNode)) { var sigs = getSignaturesOfType(getTypeOfSymbol(getSymbolLinks(apparentType.symbol).target), kind); if (!sigs || !sigs.length) return; ts.addRelatedInfo(diagnostic, ts.createDiagnosticForNode(importNode, ts.Diagnostics.Type_originates_at_this_import_A_namespace_style_import_cannot_be_called_or_constructed_and_will_cause_a_failure_at_runtime_Consider_using_a_default_import_or_import_require_here_instead)); } } function resolveTaggedTemplateExpression(node, candidatesOutArray, checkMode) { var tagType = checkExpression(node.tag); var apparentType = getApparentType(tagType); if (isErrorType(apparentType)) { // Another error has already been reported return resolveErrorCall(node); } var callSignatures = getSignaturesOfType(apparentType, 0 /* SignatureKind.Call */); var numConstructSignatures = getSignaturesOfType(apparentType, 1 /* SignatureKind.Construct */).length; if (isUntypedFunctionCall(tagType, apparentType, callSignatures.length, numConstructSignatures)) { return resolveUntypedCall(node); } if (!callSignatures.length) { if (ts.isArrayLiteralExpression(node.parent)) { var diagnostic = ts.createDiagnosticForNode(node.tag, ts.Diagnostics.It_is_likely_that_you_are_missing_a_comma_to_separate_these_two_template_expressions_They_form_a_tagged_template_expression_which_cannot_be_invoked); diagnostics.add(diagnostic); return resolveErrorCall(node); } invocationError(node.tag, apparentType, 0 /* SignatureKind.Call */); return resolveErrorCall(node); } return resolveCall(node, callSignatures, candidatesOutArray, checkMode, 0 /* SignatureFlags.None */); } /** * Gets the localized diagnostic head message to use for errors when resolving a decorator as a call expression. */ function getDiagnosticHeadMessageForDecoratorResolution(node) { switch (node.parent.kind) { case 257 /* SyntaxKind.ClassDeclaration */: case 226 /* SyntaxKind.ClassExpression */: return ts.Diagnostics.Unable_to_resolve_signature_of_class_decorator_when_called_as_an_expression; case 164 /* SyntaxKind.Parameter */: return ts.Diagnostics.Unable_to_resolve_signature_of_parameter_decorator_when_called_as_an_expression; case 167 /* SyntaxKind.PropertyDeclaration */: return ts.Diagnostics.Unable_to_resolve_signature_of_property_decorator_when_called_as_an_expression; case 169 /* SyntaxKind.MethodDeclaration */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: return ts.Diagnostics.Unable_to_resolve_signature_of_method_decorator_when_called_as_an_expression; default: return ts.Debug.fail(); } } /** * Resolves a decorator as if it were a call expression. */ function resolveDecorator(node, candidatesOutArray, checkMode) { var funcType = checkExpression(node.expression); var apparentType = getApparentType(funcType); if (isErrorType(apparentType)) { return resolveErrorCall(node); } var callSignatures = getSignaturesOfType(apparentType, 0 /* SignatureKind.Call */); var numConstructSignatures = getSignaturesOfType(apparentType, 1 /* SignatureKind.Construct */).length; if (isUntypedFunctionCall(funcType, apparentType, callSignatures.length, numConstructSignatures)) { return resolveUntypedCall(node); } if (isPotentiallyUncalledDecorator(node, callSignatures)) { var nodeStr = ts.getTextOfNode(node.expression, /*includeTrivia*/ false); error(node, ts.Diagnostics._0_accepts_too_few_arguments_to_be_used_as_a_decorator_here_Did_you_mean_to_call_it_first_and_write_0, nodeStr); return resolveErrorCall(node); } var headMessage = getDiagnosticHeadMessageForDecoratorResolution(node); if (!callSignatures.length) { var errorDetails = invocationErrorDetails(node.expression, apparentType, 0 /* SignatureKind.Call */); var messageChain = ts.chainDiagnosticMessages(errorDetails.messageChain, headMessage); var diag = ts.createDiagnosticForNodeFromMessageChain(node.expression, messageChain); if (errorDetails.relatedMessage) { ts.addRelatedInfo(diag, ts.createDiagnosticForNode(node.expression, errorDetails.relatedMessage)); } diagnostics.add(diag); invocationErrorRecovery(apparentType, 0 /* SignatureKind.Call */, diag); return resolveErrorCall(node); } return resolveCall(node, callSignatures, candidatesOutArray, checkMode, 0 /* SignatureFlags.None */, headMessage); } function createSignatureForJSXIntrinsic(node, result) { var namespace = getJsxNamespaceAt(node); var exports = namespace && getExportsOfSymbol(namespace); // We fake up a SFC signature for each intrinsic, however a more specific per-element signature drawn from the JSX declaration // file would probably be preferable. var typeSymbol = exports && getSymbol(exports, JsxNames.Element, 788968 /* SymbolFlags.Type */); var returnNode = typeSymbol && nodeBuilder.symbolToEntityName(typeSymbol, 788968 /* SymbolFlags.Type */, node); var declaration = ts.factory.createFunctionTypeNode(/*typeParameters*/ undefined, [ts.factory.createParameterDeclaration(/*decorators*/ undefined, /*modifiers*/ undefined, /*dotdotdot*/ undefined, "props", /*questionMark*/ undefined, nodeBuilder.typeToTypeNode(result, node))], returnNode ? ts.factory.createTypeReferenceNode(returnNode, /*typeArguments*/ undefined) : ts.factory.createKeywordTypeNode(130 /* SyntaxKind.AnyKeyword */)); var parameterSymbol = createSymbol(1 /* SymbolFlags.FunctionScopedVariable */, "props"); parameterSymbol.type = result; return createSignature(declaration, /*typeParameters*/ undefined, /*thisParameter*/ undefined, [parameterSymbol], typeSymbol ? getDeclaredTypeOfSymbol(typeSymbol) : errorType, /*returnTypePredicate*/ undefined, 1, 0 /* SignatureFlags.None */); } function resolveJsxOpeningLikeElement(node, candidatesOutArray, checkMode) { if (isJsxIntrinsicIdentifier(node.tagName)) { var result = getIntrinsicAttributesTypeFromJsxOpeningLikeElement(node); var fakeSignature = createSignatureForJSXIntrinsic(node, result); checkTypeAssignableToAndOptionallyElaborate(checkExpressionWithContextualType(node.attributes, getEffectiveFirstArgumentForJsxSignature(fakeSignature, node), /*mapper*/ undefined, 0 /* CheckMode.Normal */), result, node.tagName, node.attributes); if (ts.length(node.typeArguments)) { ts.forEach(node.typeArguments, checkSourceElement); diagnostics.add(ts.createDiagnosticForNodeArray(ts.getSourceFileOfNode(node), node.typeArguments, ts.Diagnostics.Expected_0_type_arguments_but_got_1, 0, ts.length(node.typeArguments))); } return fakeSignature; } var exprTypes = checkExpression(node.tagName); var apparentType = getApparentType(exprTypes); if (isErrorType(apparentType)) { return resolveErrorCall(node); } var signatures = getUninstantiatedJsxSignaturesOfType(exprTypes, node); if (isUntypedFunctionCall(exprTypes, apparentType, signatures.length, /*constructSignatures*/ 0)) { return resolveUntypedCall(node); } if (signatures.length === 0) { // We found no signatures at all, which is an error error(node.tagName, ts.Diagnostics.JSX_element_type_0_does_not_have_any_construct_or_call_signatures, ts.getTextOfNode(node.tagName)); return resolveErrorCall(node); } return resolveCall(node, signatures, candidatesOutArray, checkMode, 0 /* SignatureFlags.None */); } /** * Sometimes, we have a decorator that could accept zero arguments, * but is receiving too many arguments as part of the decorator invocation. * In those cases, a user may have meant to *call* the expression before using it as a decorator. */ function isPotentiallyUncalledDecorator(decorator, signatures) { return signatures.length && ts.every(signatures, function (signature) { return signature.minArgumentCount === 0 && !signatureHasRestParameter(signature) && signature.parameters.length < getDecoratorArgumentCount(decorator, signature); }); } function resolveSignature(node, candidatesOutArray, checkMode) { switch (node.kind) { case 208 /* SyntaxKind.CallExpression */: return resolveCallExpression(node, candidatesOutArray, checkMode); case 209 /* SyntaxKind.NewExpression */: return resolveNewExpression(node, candidatesOutArray, checkMode); case 210 /* SyntaxKind.TaggedTemplateExpression */: return resolveTaggedTemplateExpression(node, candidatesOutArray, checkMode); case 165 /* SyntaxKind.Decorator */: return resolveDecorator(node, candidatesOutArray, checkMode); case 280 /* SyntaxKind.JsxOpeningElement */: case 279 /* SyntaxKind.JsxSelfClosingElement */: return resolveJsxOpeningLikeElement(node, candidatesOutArray, checkMode); } throw ts.Debug.assertNever(node, "Branch in 'resolveSignature' should be unreachable."); } /** * Resolve a signature of a given call-like expression. * @param node a call-like expression to try resolve a signature for * @param candidatesOutArray an array of signature to be filled in by the function. It is passed by signature help in the language service; * the function will fill it up with appropriate candidate signatures * @return a signature of the call-like expression or undefined if one can't be found */ function getResolvedSignature(node, candidatesOutArray, checkMode) { var links = getNodeLinks(node); // If getResolvedSignature has already been called, we will have cached the resolvedSignature. // However, it is possible that either candidatesOutArray was not passed in the first time, // or that a different candidatesOutArray was passed in. Therefore, we need to redo the work // to correctly fill the candidatesOutArray. var cached = links.resolvedSignature; if (cached && cached !== resolvingSignature && !candidatesOutArray) { return cached; } links.resolvedSignature = resolvingSignature; var result = resolveSignature(node, candidatesOutArray, checkMode || 0 /* CheckMode.Normal */); // When CheckMode.SkipGenericFunctions is set we use resolvingSignature to indicate that call // resolution should be deferred. if (result !== resolvingSignature) { // If signature resolution originated in control flow type analysis (for example to compute the // assigned type in a flow assignment) we don't cache the result as it may be based on temporary // types from the control flow analysis. links.resolvedSignature = flowLoopStart === flowLoopCount ? result : cached; } return result; } /** * Indicates whether a declaration can be treated as a constructor in a JavaScript * file. */ function isJSConstructor(node) { var _a; if (!node || !ts.isInJSFile(node)) { return false; } var func = ts.isFunctionDeclaration(node) || ts.isFunctionExpression(node) ? node : ts.isVariableDeclaration(node) && node.initializer && ts.isFunctionExpression(node.initializer) ? node.initializer : undefined; if (func) { // If the node has a @class tag, treat it like a constructor. if (ts.getJSDocClassTag(node)) return true; // If the symbol of the node has members, treat it like a constructor. var symbol = getSymbolOfNode(func); return !!((_a = symbol === null || symbol === void 0 ? void 0 : symbol.members) === null || _a === void 0 ? void 0 : _a.size); } return false; } function mergeJSSymbols(target, source) { var _a, _b; if (source) { var links = getSymbolLinks(source); if (!links.inferredClassSymbol || !links.inferredClassSymbol.has(getSymbolId(target))) { var inferred = ts.isTransientSymbol(target) ? target : cloneSymbol(target); inferred.exports = inferred.exports || ts.createSymbolTable(); inferred.members = inferred.members || ts.createSymbolTable(); inferred.flags |= source.flags & 32 /* SymbolFlags.Class */; if ((_a = source.exports) === null || _a === void 0 ? void 0 : _a.size) { mergeSymbolTable(inferred.exports, source.exports); } if ((_b = source.members) === null || _b === void 0 ? void 0 : _b.size) { mergeSymbolTable(inferred.members, source.members); } (links.inferredClassSymbol || (links.inferredClassSymbol = new ts.Map())).set(getSymbolId(inferred), inferred); return inferred; } return links.inferredClassSymbol.get(getSymbolId(target)); } } function getAssignedClassSymbol(decl) { var _a; var assignmentSymbol = decl && getSymbolOfExpando(decl, /*allowDeclaration*/ true); var prototype = (_a = assignmentSymbol === null || assignmentSymbol === void 0 ? void 0 : assignmentSymbol.exports) === null || _a === void 0 ? void 0 : _a.get("prototype"); var init = (prototype === null || prototype === void 0 ? void 0 : prototype.valueDeclaration) && getAssignedJSPrototype(prototype.valueDeclaration); return init ? getSymbolOfNode(init) : undefined; } function getSymbolOfExpando(node, allowDeclaration) { if (!node.parent) { return undefined; } var name; var decl; if (ts.isVariableDeclaration(node.parent) && node.parent.initializer === node) { if (!ts.isInJSFile(node) && !(ts.isVarConst(node.parent) && ts.isFunctionLikeDeclaration(node))) { return undefined; } name = node.parent.name; decl = node.parent; } else if (ts.isBinaryExpression(node.parent)) { var parentNode = node.parent; var parentNodeOperator = node.parent.operatorToken.kind; if (parentNodeOperator === 63 /* SyntaxKind.EqualsToken */ && (allowDeclaration || parentNode.right === node)) { name = parentNode.left; decl = name; } else if (parentNodeOperator === 56 /* SyntaxKind.BarBarToken */ || parentNodeOperator === 60 /* SyntaxKind.QuestionQuestionToken */) { if (ts.isVariableDeclaration(parentNode.parent) && parentNode.parent.initializer === parentNode) { name = parentNode.parent.name; decl = parentNode.parent; } else if (ts.isBinaryExpression(parentNode.parent) && parentNode.parent.operatorToken.kind === 63 /* SyntaxKind.EqualsToken */ && (allowDeclaration || parentNode.parent.right === parentNode)) { name = parentNode.parent.left; decl = name; } if (!name || !ts.isBindableStaticNameExpression(name) || !ts.isSameEntityName(name, parentNode.left)) { return undefined; } } } else if (allowDeclaration && ts.isFunctionDeclaration(node)) { name = node.name; decl = node; } if (!decl || !name || (!allowDeclaration && !ts.getExpandoInitializer(node, ts.isPrototypeAccess(name)))) { return undefined; } return getSymbolOfNode(decl); } function getAssignedJSPrototype(node) { if (!node.parent) { return false; } var parent = node.parent; while (parent && parent.kind === 206 /* SyntaxKind.PropertyAccessExpression */) { parent = parent.parent; } if (parent && ts.isBinaryExpression(parent) && ts.isPrototypeAccess(parent.left) && parent.operatorToken.kind === 63 /* SyntaxKind.EqualsToken */) { var right = ts.getInitializerOfBinaryExpression(parent); return ts.isObjectLiteralExpression(right) && right; } } /** * Syntactically and semantically checks a call or new expression. * @param node The call/new expression to be checked. * @returns On success, the expression's signature's return type. On failure, anyType. */ function checkCallExpression(node, checkMode) { var _a; checkGrammarTypeArguments(node, node.typeArguments); var signature = getResolvedSignature(node, /*candidatesOutArray*/ undefined, checkMode); if (signature === resolvingSignature) { // CheckMode.SkipGenericFunctions is enabled and this is a call to a generic function that // returns a function type. We defer checking and return nonInferrableType. return nonInferrableType; } checkDeprecatedSignature(signature, node); if (node.expression.kind === 106 /* SyntaxKind.SuperKeyword */) { return voidType; } if (node.kind === 209 /* SyntaxKind.NewExpression */) { var declaration = signature.declaration; if (declaration && declaration.kind !== 171 /* SyntaxKind.Constructor */ && declaration.kind !== 175 /* SyntaxKind.ConstructSignature */ && declaration.kind !== 180 /* SyntaxKind.ConstructorType */ && !ts.isJSDocConstructSignature(declaration) && !isJSConstructor(declaration)) { // When resolved signature is a call signature (and not a construct signature) the result type is any if (noImplicitAny) { error(node, ts.Diagnostics.new_expression_whose_target_lacks_a_construct_signature_implicitly_has_an_any_type); } return anyType; } } // In JavaScript files, calls to any identifier 'require' are treated as external module imports if (ts.isInJSFile(node) && isCommonJsRequire(node)) { return resolveExternalModuleTypeByLiteral(node.arguments[0]); } var returnType = getReturnTypeOfSignature(signature); // Treat any call to the global 'Symbol' function that is part of a const variable or readonly property // as a fresh unique symbol literal type. if (returnType.flags & 12288 /* TypeFlags.ESSymbolLike */ && isSymbolOrSymbolForCall(node)) { return getESSymbolLikeTypeForNode(ts.walkUpParenthesizedExpressions(node.parent)); } if (node.kind === 208 /* SyntaxKind.CallExpression */ && !node.questionDotToken && node.parent.kind === 238 /* SyntaxKind.ExpressionStatement */ && returnType.flags & 16384 /* TypeFlags.Void */ && getTypePredicateOfSignature(signature)) { if (!ts.isDottedName(node.expression)) { error(node.expression, ts.Diagnostics.Assertions_require_the_call_target_to_be_an_identifier_or_qualified_name); } else if (!getEffectsSignature(node)) { var diagnostic = error(node.expression, ts.Diagnostics.Assertions_require_every_name_in_the_call_target_to_be_declared_with_an_explicit_type_annotation); getTypeOfDottedName(node.expression, diagnostic); } } if (ts.isInJSFile(node)) { var jsSymbol = getSymbolOfExpando(node, /*allowDeclaration*/ false); if ((_a = jsSymbol === null || jsSymbol === void 0 ? void 0 : jsSymbol.exports) === null || _a === void 0 ? void 0 : _a.size) { var jsAssignmentType = createAnonymousType(jsSymbol, jsSymbol.exports, ts.emptyArray, ts.emptyArray, ts.emptyArray); jsAssignmentType.objectFlags |= 4096 /* ObjectFlags.JSLiteral */; return getIntersectionType([returnType, jsAssignmentType]); } } return returnType; } function checkDeprecatedSignature(signature, node) { if (signature.declaration && signature.declaration.flags & 268435456 /* NodeFlags.Deprecated */) { var suggestionNode = getDeprecatedSuggestionNode(node); var name = ts.tryGetPropertyAccessOrIdentifierToString(ts.getInvokedExpression(node)); addDeprecatedSuggestionWithSignature(suggestionNode, signature.declaration, name, signatureToString(signature)); } } function getDeprecatedSuggestionNode(node) { node = ts.skipParentheses(node); switch (node.kind) { case 208 /* SyntaxKind.CallExpression */: case 165 /* SyntaxKind.Decorator */: case 209 /* SyntaxKind.NewExpression */: return getDeprecatedSuggestionNode(node.expression); case 210 /* SyntaxKind.TaggedTemplateExpression */: return getDeprecatedSuggestionNode(node.tag); case 280 /* SyntaxKind.JsxOpeningElement */: case 279 /* SyntaxKind.JsxSelfClosingElement */: return getDeprecatedSuggestionNode(node.tagName); case 207 /* SyntaxKind.ElementAccessExpression */: return node.argumentExpression; case 206 /* SyntaxKind.PropertyAccessExpression */: return node.name; case 178 /* SyntaxKind.TypeReference */: var typeReference = node; return ts.isQualifiedName(typeReference.typeName) ? typeReference.typeName.right : typeReference; default: return node; } } function isSymbolOrSymbolForCall(node) { if (!ts.isCallExpression(node)) return false; var left = node.expression; if (ts.isPropertyAccessExpression(left) && left.name.escapedText === "for") { left = left.expression; } if (!ts.isIdentifier(left) || left.escapedText !== "Symbol") { return false; } // make sure `Symbol` is the global symbol var globalESSymbol = getGlobalESSymbolConstructorSymbol(/*reportErrors*/ false); if (!globalESSymbol) { return false; } return globalESSymbol === resolveName(left, "Symbol", 111551 /* SymbolFlags.Value */, /*nameNotFoundMessage*/ undefined, /*nameArg*/ undefined, /*isUse*/ false); } function checkImportCallExpression(node) { // Check grammar of dynamic import checkGrammarImportCallExpression(node); if (node.arguments.length === 0) { return createPromiseReturnType(node, anyType); } var specifier = node.arguments[0]; var specifierType = checkExpressionCached(specifier); var optionsType = node.arguments.length > 1 ? checkExpressionCached(node.arguments[1]) : undefined; // Even though multiple arguments is grammatically incorrect, type-check extra arguments for completion for (var i = 2; i < node.arguments.length; ++i) { checkExpressionCached(node.arguments[i]); } if (specifierType.flags & 32768 /* TypeFlags.Undefined */ || specifierType.flags & 65536 /* TypeFlags.Null */ || !isTypeAssignableTo(specifierType, stringType)) { error(specifier, ts.Diagnostics.Dynamic_import_s_specifier_must_be_of_type_string_but_here_has_type_0, typeToString(specifierType)); } if (optionsType) { var importCallOptionsType = getGlobalImportCallOptionsType(/*reportErrors*/ true); if (importCallOptionsType !== emptyObjectType) { checkTypeAssignableTo(optionsType, getNullableType(importCallOptionsType, 32768 /* TypeFlags.Undefined */), node.arguments[1]); } } // resolveExternalModuleName will return undefined if the moduleReferenceExpression is not a string literal var moduleSymbol = resolveExternalModuleName(node, specifier); if (moduleSymbol) { var esModuleSymbol = resolveESModuleSymbol(moduleSymbol, specifier, /*dontRecursivelyResolve*/ true, /*suppressUsageError*/ false); if (esModuleSymbol) { return createPromiseReturnType(node, getTypeWithSyntheticDefaultOnly(getTypeOfSymbol(esModuleSymbol), esModuleSymbol, moduleSymbol, specifier) || getTypeWithSyntheticDefaultImportType(getTypeOfSymbol(esModuleSymbol), esModuleSymbol, moduleSymbol, specifier)); } } return createPromiseReturnType(node, anyType); } function createDefaultPropertyWrapperForModule(symbol, originalSymbol, anonymousSymbol) { var memberTable = ts.createSymbolTable(); var newSymbol = createSymbol(2097152 /* SymbolFlags.Alias */, "default" /* InternalSymbolName.Default */); newSymbol.parent = originalSymbol; newSymbol.nameType = getStringLiteralType("default"); newSymbol.aliasTarget = resolveSymbol(symbol); memberTable.set("default" /* InternalSymbolName.Default */, newSymbol); return createAnonymousType(anonymousSymbol, memberTable, ts.emptyArray, ts.emptyArray, ts.emptyArray); } function getTypeWithSyntheticDefaultOnly(type, symbol, originalSymbol, moduleSpecifier) { var hasDefaultOnly = isOnlyImportedAsDefault(moduleSpecifier); if (hasDefaultOnly && type && !isErrorType(type)) { var synthType = type; if (!synthType.defaultOnlyType) { var type_5 = createDefaultPropertyWrapperForModule(symbol, originalSymbol); synthType.defaultOnlyType = type_5; } return synthType.defaultOnlyType; } return undefined; } function getTypeWithSyntheticDefaultImportType(type, symbol, originalSymbol, moduleSpecifier) { var _a; if (allowSyntheticDefaultImports && type && !isErrorType(type)) { var synthType = type; if (!synthType.syntheticType) { var file = (_a = originalSymbol.declarations) === null || _a === void 0 ? void 0 : _a.find(ts.isSourceFile); var hasSyntheticDefault = canHaveSyntheticDefault(file, originalSymbol, /*dontResolveAlias*/ false, moduleSpecifier); if (hasSyntheticDefault) { var anonymousSymbol = createSymbol(2048 /* SymbolFlags.TypeLiteral */, "__type" /* InternalSymbolName.Type */); var defaultContainingObject = createDefaultPropertyWrapperForModule(symbol, originalSymbol, anonymousSymbol); anonymousSymbol.type = defaultContainingObject; synthType.syntheticType = isValidSpreadType(type) ? getSpreadType(type, defaultContainingObject, anonymousSymbol, /*objectFlags*/ 0, /*readonly*/ false) : defaultContainingObject; } else { synthType.syntheticType = type; } } return synthType.syntheticType; } return type; } function isCommonJsRequire(node) { if (!ts.isRequireCall(node, /*checkArgumentIsStringLiteralLike*/ true)) { return false; } // Make sure require is not a local function if (!ts.isIdentifier(node.expression)) return ts.Debug.fail(); var resolvedRequire = resolveName(node.expression, node.expression.escapedText, 111551 /* SymbolFlags.Value */, /*nameNotFoundMessage*/ undefined, /*nameArg*/ undefined, /*isUse*/ true); // TODO: GH#18217 if (resolvedRequire === requireSymbol) { return true; } // project includes symbol named 'require' - make sure that it is ambient and local non-alias if (resolvedRequire.flags & 2097152 /* SymbolFlags.Alias */) { return false; } var targetDeclarationKind = resolvedRequire.flags & 16 /* SymbolFlags.Function */ ? 256 /* SyntaxKind.FunctionDeclaration */ : resolvedRequire.flags & 3 /* SymbolFlags.Variable */ ? 254 /* SyntaxKind.VariableDeclaration */ : 0 /* SyntaxKind.Unknown */; if (targetDeclarationKind !== 0 /* SyntaxKind.Unknown */) { var decl = ts.getDeclarationOfKind(resolvedRequire, targetDeclarationKind); // function/variable declaration should be ambient return !!decl && !!(decl.flags & 16777216 /* NodeFlags.Ambient */); } return false; } function checkTaggedTemplateExpression(node) { if (!checkGrammarTaggedTemplateChain(node)) checkGrammarTypeArguments(node, node.typeArguments); if (languageVersion < 2 /* ScriptTarget.ES2015 */) { checkExternalEmitHelpers(node, 262144 /* ExternalEmitHelpers.MakeTemplateObject */); } var signature = getResolvedSignature(node); checkDeprecatedSignature(signature, node); return getReturnTypeOfSignature(signature); } function checkAssertion(node) { if (node.kind === 211 /* SyntaxKind.TypeAssertionExpression */) { var file = ts.getSourceFileOfNode(node); if (file && ts.fileExtensionIsOneOf(file.fileName, [".cts" /* Extension.Cts */, ".mts" /* Extension.Mts */])) { grammarErrorOnNode(node, ts.Diagnostics.This_syntax_is_reserved_in_files_with_the_mts_or_cts_extension_Use_an_as_expression_instead); } } return checkAssertionWorker(node, node.type, node.expression); } function isValidConstAssertionArgument(node) { switch (node.kind) { case 10 /* SyntaxKind.StringLiteral */: case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: case 8 /* SyntaxKind.NumericLiteral */: case 9 /* SyntaxKind.BigIntLiteral */: case 110 /* SyntaxKind.TrueKeyword */: case 95 /* SyntaxKind.FalseKeyword */: case 204 /* SyntaxKind.ArrayLiteralExpression */: case 205 /* SyntaxKind.ObjectLiteralExpression */: case 223 /* SyntaxKind.TemplateExpression */: return true; case 212 /* SyntaxKind.ParenthesizedExpression */: return isValidConstAssertionArgument(node.expression); case 219 /* SyntaxKind.PrefixUnaryExpression */: var op = node.operator; var arg = node.operand; return op === 40 /* SyntaxKind.MinusToken */ && (arg.kind === 8 /* SyntaxKind.NumericLiteral */ || arg.kind === 9 /* SyntaxKind.BigIntLiteral */) || op === 39 /* SyntaxKind.PlusToken */ && arg.kind === 8 /* SyntaxKind.NumericLiteral */; case 206 /* SyntaxKind.PropertyAccessExpression */: case 207 /* SyntaxKind.ElementAccessExpression */: var expr = node.expression; var symbol = getTypeOfNode(expr).symbol; if (symbol && symbol.flags & 2097152 /* SymbolFlags.Alias */) { symbol = resolveAlias(symbol); } return !!(symbol && (symbol.flags & 384 /* SymbolFlags.Enum */) && getEnumKind(symbol) === 1 /* EnumKind.Literal */); } return false; } function checkAssertionWorker(errNode, type, expression, checkMode) { var exprType = checkExpression(expression, checkMode); if (ts.isConstTypeReference(type)) { if (!isValidConstAssertionArgument(expression)) { error(expression, ts.Diagnostics.A_const_assertions_can_only_be_applied_to_references_to_enum_members_or_string_number_boolean_array_or_object_literals); } return getRegularTypeOfLiteralType(exprType); } checkSourceElement(type); exprType = getRegularTypeOfObjectLiteral(getBaseTypeOfLiteralType(exprType)); var targetType = getTypeFromTypeNode(type); if (!isErrorType(targetType)) { addLazyDiagnostic(function () { var widenedType = getWidenedType(exprType); if (!isTypeComparableTo(targetType, widenedType)) { checkTypeComparableTo(exprType, targetType, errNode, ts.Diagnostics.Conversion_of_type_0_to_type_1_may_be_a_mistake_because_neither_type_sufficiently_overlaps_with_the_other_If_this_was_intentional_convert_the_expression_to_unknown_first); } }); } return targetType; } function checkNonNullChain(node) { var leftType = checkExpression(node.expression); var nonOptionalType = getOptionalExpressionType(leftType, node.expression); return propagateOptionalTypeMarker(getNonNullableType(nonOptionalType), node, nonOptionalType !== leftType); } function checkNonNullAssertion(node) { return node.flags & 32 /* NodeFlags.OptionalChain */ ? checkNonNullChain(node) : getNonNullableType(checkExpression(node.expression)); } function checkExpressionWithTypeArguments(node) { checkGrammarExpressionWithTypeArguments(node); var exprType = node.kind === 228 /* SyntaxKind.ExpressionWithTypeArguments */ ? checkExpression(node.expression) : ts.isThisIdentifier(node.exprName) ? checkThisExpression(node.exprName) : checkExpression(node.exprName); var typeArguments = node.typeArguments; if (exprType === silentNeverType || isErrorType(exprType) || !ts.some(typeArguments)) { return exprType; } var hasSomeApplicableSignature = false; var nonApplicableType; var result = getInstantiatedType(exprType); var errorType = hasSomeApplicableSignature ? nonApplicableType : exprType; if (errorType) { diagnostics.add(ts.createDiagnosticForNodeArray(ts.getSourceFileOfNode(node), typeArguments, ts.Diagnostics.Type_0_has_no_signatures_for_which_the_type_argument_list_is_applicable, typeToString(errorType))); } return result; function getInstantiatedType(type) { var hasSignatures = false; var hasApplicableSignature = false; var result = getInstantiatedTypePart(type); hasSomeApplicableSignature || (hasSomeApplicableSignature = hasApplicableSignature); if (hasSignatures && !hasApplicableSignature) { nonApplicableType !== null && nonApplicableType !== void 0 ? nonApplicableType : (nonApplicableType = type); } return result; function getInstantiatedTypePart(type) { if (type.flags & 524288 /* TypeFlags.Object */) { var resolved = resolveStructuredTypeMembers(type); var callSignatures = getInstantiatedSignatures(resolved.callSignatures); var constructSignatures = getInstantiatedSignatures(resolved.constructSignatures); hasSignatures || (hasSignatures = resolved.callSignatures.length !== 0 || resolved.constructSignatures.length !== 0); hasApplicableSignature || (hasApplicableSignature = callSignatures.length !== 0 || constructSignatures.length !== 0); if (callSignatures !== resolved.callSignatures || constructSignatures !== resolved.constructSignatures) { var result_11 = createAnonymousType(undefined, resolved.members, callSignatures, constructSignatures, resolved.indexInfos); result_11.objectFlags |= 8388608 /* ObjectFlags.InstantiationExpressionType */; result_11.node = node; return result_11; } } else if (type.flags & 58982400 /* TypeFlags.InstantiableNonPrimitive */) { var constraint = getBaseConstraintOfType(type); if (constraint) { var instantiated = getInstantiatedTypePart(constraint); if (instantiated !== constraint) { return instantiated; } } } else if (type.flags & 1048576 /* TypeFlags.Union */) { return mapType(type, getInstantiatedType); } else if (type.flags & 2097152 /* TypeFlags.Intersection */) { return getIntersectionType(ts.sameMap(type.types, getInstantiatedTypePart)); } return type; } } function getInstantiatedSignatures(signatures) { var applicableSignatures = ts.filter(signatures, function (sig) { return !!sig.typeParameters && hasCorrectTypeArgumentArity(sig, typeArguments); }); return ts.sameMap(applicableSignatures, function (sig) { var typeArgumentTypes = checkTypeArguments(sig, typeArguments, /*reportErrors*/ true); return typeArgumentTypes ? getSignatureInstantiation(sig, typeArgumentTypes, ts.isInJSFile(sig.declaration)) : sig; }); } } function checkMetaProperty(node) { checkGrammarMetaProperty(node); if (node.keywordToken === 103 /* SyntaxKind.NewKeyword */) { return checkNewTargetMetaProperty(node); } if (node.keywordToken === 100 /* SyntaxKind.ImportKeyword */) { return checkImportMetaProperty(node); } return ts.Debug.assertNever(node.keywordToken); } function checkMetaPropertyKeyword(node) { switch (node.keywordToken) { case 100 /* SyntaxKind.ImportKeyword */: return getGlobalImportMetaExpressionType(); case 103 /* SyntaxKind.NewKeyword */: var type = checkNewTargetMetaProperty(node); return isErrorType(type) ? errorType : createNewTargetExpressionType(type); default: ts.Debug.assertNever(node.keywordToken); } } function checkNewTargetMetaProperty(node) { var container = ts.getNewTargetContainer(node); if (!container) { error(node, ts.Diagnostics.Meta_property_0_is_only_allowed_in_the_body_of_a_function_declaration_function_expression_or_constructor, "new.target"); return errorType; } else if (container.kind === 171 /* SyntaxKind.Constructor */) { var symbol = getSymbolOfNode(container.parent); return getTypeOfSymbol(symbol); } else { var symbol = getSymbolOfNode(container); return getTypeOfSymbol(symbol); } } function checkImportMetaProperty(node) { if (moduleKind === ts.ModuleKind.Node16 || moduleKind === ts.ModuleKind.NodeNext) { if (ts.getSourceFileOfNode(node).impliedNodeFormat !== ts.ModuleKind.ESNext) { error(node, ts.Diagnostics.The_import_meta_meta_property_is_not_allowed_in_files_which_will_build_into_CommonJS_output); } } else if (moduleKind < ts.ModuleKind.ES2020 && moduleKind !== ts.ModuleKind.System) { error(node, ts.Diagnostics.The_import_meta_meta_property_is_only_allowed_when_the_module_option_is_es2020_es2022_esnext_system_node16_or_nodenext); } var file = ts.getSourceFileOfNode(node); ts.Debug.assert(!!(file.flags & 4194304 /* NodeFlags.PossiblyContainsImportMeta */), "Containing file is missing import meta node flag."); return node.name.escapedText === "meta" ? getGlobalImportMetaType() : errorType; } function getTypeOfParameter(symbol) { var type = getTypeOfSymbol(symbol); if (strictNullChecks) { var declaration = symbol.valueDeclaration; if (declaration && ts.hasInitializer(declaration)) { return getOptionalType(type); } } return type; } function getTupleElementLabel(d) { ts.Debug.assert(ts.isIdentifier(d.name)); // Parameter declarations could be binding patterns, but we only allow identifier names return d.name.escapedText; } function getParameterNameAtPosition(signature, pos, overrideRestType) { var paramCount = signature.parameters.length - (signatureHasRestParameter(signature) ? 1 : 0); if (pos < paramCount) { return signature.parameters[pos].escapedName; } var restParameter = signature.parameters[paramCount] || unknownSymbol; var restType = overrideRestType || getTypeOfSymbol(restParameter); if (isTupleType(restType)) { var associatedNames = restType.target.labeledElementDeclarations; var index = pos - paramCount; return associatedNames && getTupleElementLabel(associatedNames[index]) || restParameter.escapedName + "_" + index; } return restParameter.escapedName; } function getParameterIdentifierNameAtPosition(signature, pos) { var _a; if (((_a = signature.declaration) === null || _a === void 0 ? void 0 : _a.kind) === 317 /* SyntaxKind.JSDocFunctionType */) { return undefined; } var paramCount = signature.parameters.length - (signatureHasRestParameter(signature) ? 1 : 0); if (pos < paramCount) { var param = signature.parameters[pos]; return isParameterDeclarationWithIdentifierName(param) ? [param.escapedName, false] : undefined; } var restParameter = signature.parameters[paramCount] || unknownSymbol; if (!isParameterDeclarationWithIdentifierName(restParameter)) { return undefined; } var restType = getTypeOfSymbol(restParameter); if (isTupleType(restType)) { var associatedNames = restType.target.labeledElementDeclarations; var index = pos - paramCount; var associatedName = associatedNames === null || associatedNames === void 0 ? void 0 : associatedNames[index]; var isRestTupleElement = !!(associatedName === null || associatedName === void 0 ? void 0 : associatedName.dotDotDotToken); return associatedName ? [ getTupleElementLabel(associatedName), isRestTupleElement ] : undefined; } if (pos === paramCount) { return [restParameter.escapedName, true]; } return undefined; } function isParameterDeclarationWithIdentifierName(symbol) { return symbol.valueDeclaration && ts.isParameter(symbol.valueDeclaration) && ts.isIdentifier(symbol.valueDeclaration.name); } function isValidDeclarationForTupleLabel(d) { return d.kind === 197 /* SyntaxKind.NamedTupleMember */ || (ts.isParameter(d) && d.name && ts.isIdentifier(d.name)); } function getNameableDeclarationAtPosition(signature, pos) { var paramCount = signature.parameters.length - (signatureHasRestParameter(signature) ? 1 : 0); if (pos < paramCount) { var decl = signature.parameters[pos].valueDeclaration; return decl && isValidDeclarationForTupleLabel(decl) ? decl : undefined; } var restParameter = signature.parameters[paramCount] || unknownSymbol; var restType = getTypeOfSymbol(restParameter); if (isTupleType(restType)) { var associatedNames = restType.target.labeledElementDeclarations; var index = pos - paramCount; return associatedNames && associatedNames[index]; } return restParameter.valueDeclaration && isValidDeclarationForTupleLabel(restParameter.valueDeclaration) ? restParameter.valueDeclaration : undefined; } function getTypeAtPosition(signature, pos) { return tryGetTypeAtPosition(signature, pos) || anyType; } function tryGetTypeAtPosition(signature, pos) { var paramCount = signature.parameters.length - (signatureHasRestParameter(signature) ? 1 : 0); if (pos < paramCount) { return getTypeOfParameter(signature.parameters[pos]); } if (signatureHasRestParameter(signature)) { // We want to return the value undefined for an out of bounds parameter position, // so we need to check bounds here before calling getIndexedAccessType (which // otherwise would return the type 'undefined'). var restType = getTypeOfSymbol(signature.parameters[paramCount]); var index = pos - paramCount; if (!isTupleType(restType) || restType.target.hasRestElement || index < restType.target.fixedLength) { return getIndexedAccessType(restType, getNumberLiteralType(index)); } } return undefined; } function getRestTypeAtPosition(source, pos) { var parameterCount = getParameterCount(source); var minArgumentCount = getMinArgumentCount(source); var restType = getEffectiveRestType(source); if (restType && pos >= parameterCount - 1) { return pos === parameterCount - 1 ? restType : createArrayType(getIndexedAccessType(restType, numberType)); } var types = []; var flags = []; var names = []; for (var i = pos; i < parameterCount; i++) { if (!restType || i < parameterCount - 1) { types.push(getTypeAtPosition(source, i)); flags.push(i < minArgumentCount ? 1 /* ElementFlags.Required */ : 2 /* ElementFlags.Optional */); } else { types.push(restType); flags.push(8 /* ElementFlags.Variadic */); } var name = getNameableDeclarationAtPosition(source, i); if (name) { names.push(name); } } return createTupleType(types, flags, /*readonly*/ false, ts.length(names) === ts.length(types) ? names : undefined); } // Return the number of parameters in a signature. The rest parameter, if present, counts as one // parameter. For example, the parameter count of (x: number, y: number, ...z: string[]) is 3 and // the parameter count of (x: number, ...args: [number, ...string[], boolean])) is also 3. In the // latter example, the effective rest type is [...string[], boolean]. function getParameterCount(signature) { var length = signature.parameters.length; if (signatureHasRestParameter(signature)) { var restType = getTypeOfSymbol(signature.parameters[length - 1]); if (isTupleType(restType)) { return length + restType.target.fixedLength - (restType.target.hasRestElement ? 0 : 1); } } return length; } function getMinArgumentCount(signature, flags) { var strongArityForUntypedJS = flags & 1 /* MinArgumentCountFlags.StrongArityForUntypedJS */; var voidIsNonOptional = flags & 2 /* MinArgumentCountFlags.VoidIsNonOptional */; if (voidIsNonOptional || signature.resolvedMinArgumentCount === undefined) { var minArgumentCount = void 0; if (signatureHasRestParameter(signature)) { var restType = getTypeOfSymbol(signature.parameters[signature.parameters.length - 1]); if (isTupleType(restType)) { var firstOptionalIndex = ts.findIndex(restType.target.elementFlags, function (f) { return !(f & 1 /* ElementFlags.Required */); }); var requiredCount = firstOptionalIndex < 0 ? restType.target.fixedLength : firstOptionalIndex; if (requiredCount > 0) { minArgumentCount = signature.parameters.length - 1 + requiredCount; } } } if (minArgumentCount === undefined) { if (!strongArityForUntypedJS && signature.flags & 32 /* SignatureFlags.IsUntypedSignatureInJSFile */) { return 0; } minArgumentCount = signature.minArgumentCount; } if (voidIsNonOptional) { return minArgumentCount; } for (var i = minArgumentCount - 1; i >= 0; i--) { var type = getTypeAtPosition(signature, i); if (filterType(type, acceptsVoid).flags & 131072 /* TypeFlags.Never */) { break; } minArgumentCount = i; } signature.resolvedMinArgumentCount = minArgumentCount; } return signature.resolvedMinArgumentCount; } function hasEffectiveRestParameter(signature) { if (signatureHasRestParameter(signature)) { var restType = getTypeOfSymbol(signature.parameters[signature.parameters.length - 1]); return !isTupleType(restType) || restType.target.hasRestElement; } return false; } function getEffectiveRestType(signature) { if (signatureHasRestParameter(signature)) { var restType = getTypeOfSymbol(signature.parameters[signature.parameters.length - 1]); if (!isTupleType(restType)) { return restType; } if (restType.target.hasRestElement) { return sliceTupleType(restType, restType.target.fixedLength); } } return undefined; } function getNonArrayRestType(signature) { var restType = getEffectiveRestType(signature); return restType && !isArrayType(restType) && !isTypeAny(restType) && (getReducedType(restType).flags & 131072 /* TypeFlags.Never */) === 0 ? restType : undefined; } function getTypeOfFirstParameterOfSignature(signature) { return getTypeOfFirstParameterOfSignatureWithFallback(signature, neverType); } function getTypeOfFirstParameterOfSignatureWithFallback(signature, fallbackType) { return signature.parameters.length > 0 ? getTypeAtPosition(signature, 0) : fallbackType; } function inferFromAnnotatedParameters(signature, context, inferenceContext) { var len = signature.parameters.length - (signatureHasRestParameter(signature) ? 1 : 0); for (var i = 0; i < len; i++) { var declaration = signature.parameters[i].valueDeclaration; if (declaration.type) { var typeNode = ts.getEffectiveTypeAnnotationNode(declaration); if (typeNode) { inferTypes(inferenceContext.inferences, getTypeFromTypeNode(typeNode), getTypeAtPosition(context, i)); } } } var restType = getEffectiveRestType(context); if (restType && restType.flags & 262144 /* TypeFlags.TypeParameter */) { // The contextual signature has a generic rest parameter. We first instantiate the contextual // signature (without fixing type parameters) and assign types to contextually typed parameters. var instantiatedContext = instantiateSignature(context, inferenceContext.nonFixingMapper); assignContextualParameterTypes(signature, instantiatedContext); // We then infer from a tuple type representing the parameters that correspond to the contextual // rest parameter. var restPos = getParameterCount(context) - 1; inferTypes(inferenceContext.inferences, getRestTypeAtPosition(signature, restPos), restType); } } function assignContextualParameterTypes(signature, context) { if (context.typeParameters) { if (!signature.typeParameters) { signature.typeParameters = context.typeParameters; } else { return; // This signature has already has a contextual inference performed and cached on it! } } if (context.thisParameter) { var parameter = signature.thisParameter; if (!parameter || parameter.valueDeclaration && !parameter.valueDeclaration.type) { if (!parameter) { signature.thisParameter = createSymbolWithType(context.thisParameter, /*type*/ undefined); } assignParameterType(signature.thisParameter, getTypeOfSymbol(context.thisParameter)); } } var len = signature.parameters.length - (signatureHasRestParameter(signature) ? 1 : 0); for (var i = 0; i < len; i++) { var parameter = signature.parameters[i]; if (!ts.getEffectiveTypeAnnotationNode(parameter.valueDeclaration)) { var contextualParameterType = tryGetTypeAtPosition(context, i); assignParameterType(parameter, contextualParameterType); } } if (signatureHasRestParameter(signature)) { // parameter might be a transient symbol generated by use of `arguments` in the function body. var parameter = ts.last(signature.parameters); if (parameter.valueDeclaration ? !ts.getEffectiveTypeAnnotationNode(parameter.valueDeclaration) // a declarationless parameter may still have a `.type` already set by its construction logic // (which may pull a type from a jsdoc) - only allow fixing on `DeferredType` parameters with a fallback type : !!(ts.getCheckFlags(parameter) & 65536 /* CheckFlags.DeferredType */)) { var contextualParameterType = getRestTypeAtPosition(context, len); assignParameterType(parameter, contextualParameterType); } } } function assignNonContextualParameterTypes(signature) { if (signature.thisParameter) { assignParameterType(signature.thisParameter); } for (var _i = 0, _a = signature.parameters; _i < _a.length; _i++) { var parameter = _a[_i]; assignParameterType(parameter); } } function assignParameterType(parameter, type) { var links = getSymbolLinks(parameter); if (!links.type) { var declaration = parameter.valueDeclaration; links.type = type || (declaration ? getWidenedTypeForVariableLikeDeclaration(declaration, /*reportErrors*/ true) : getTypeOfSymbol(parameter)); if (declaration && declaration.name.kind !== 79 /* SyntaxKind.Identifier */) { // if inference didn't come up with anything but unknown, fall back to the binding pattern if present. if (links.type === unknownType) { links.type = getTypeFromBindingPattern(declaration.name); } assignBindingElementTypes(declaration.name, links.type); } } else if (type) { ts.Debug.assertEqual(links.type, type, "Parameter symbol already has a cached type which differs from newly assigned type"); } } // When contextual typing assigns a type to a parameter that contains a binding pattern, we also need to push // the destructured type into the contained binding elements. function assignBindingElementTypes(pattern, parentType) { for (var _i = 0, _a = pattern.elements; _i < _a.length; _i++) { var element = _a[_i]; if (!ts.isOmittedExpression(element)) { var type = getBindingElementTypeFromParentType(element, parentType); if (element.name.kind === 79 /* SyntaxKind.Identifier */) { getSymbolLinks(getSymbolOfNode(element)).type = type; } else { assignBindingElementTypes(element.name, type); } } } } function createPromiseType(promisedType) { // creates a `Promise` type where `T` is the promisedType argument var globalPromiseType = getGlobalPromiseType(/*reportErrors*/ true); if (globalPromiseType !== emptyGenericType) { // if the promised type is itself a promise, get the underlying type; otherwise, fallback to the promised type // Unwrap an `Awaited` to `T` to improve inference. promisedType = getAwaitedTypeNoAlias(unwrapAwaitedType(promisedType)) || unknownType; return createTypeReference(globalPromiseType, [promisedType]); } return unknownType; } function createPromiseLikeType(promisedType) { // creates a `PromiseLike` type where `T` is the promisedType argument var globalPromiseLikeType = getGlobalPromiseLikeType(/*reportErrors*/ true); if (globalPromiseLikeType !== emptyGenericType) { // if the promised type is itself a promise, get the underlying type; otherwise, fallback to the promised type // Unwrap an `Awaited` to `T` to improve inference. promisedType = getAwaitedTypeNoAlias(unwrapAwaitedType(promisedType)) || unknownType; return createTypeReference(globalPromiseLikeType, [promisedType]); } return unknownType; } function createPromiseReturnType(func, promisedType) { var promiseType = createPromiseType(promisedType); if (promiseType === unknownType) { error(func, ts.isImportCall(func) ? ts.Diagnostics.A_dynamic_import_call_returns_a_Promise_Make_sure_you_have_a_declaration_for_Promise_or_include_ES2015_in_your_lib_option : ts.Diagnostics.An_async_function_or_method_must_return_a_Promise_Make_sure_you_have_a_declaration_for_Promise_or_include_ES2015_in_your_lib_option); return errorType; } else if (!getGlobalPromiseConstructorSymbol(/*reportErrors*/ true)) { error(func, ts.isImportCall(func) ? ts.Diagnostics.A_dynamic_import_call_in_ES5_SlashES3_requires_the_Promise_constructor_Make_sure_you_have_a_declaration_for_the_Promise_constructor_or_include_ES2015_in_your_lib_option : ts.Diagnostics.An_async_function_or_method_in_ES5_SlashES3_requires_the_Promise_constructor_Make_sure_you_have_a_declaration_for_the_Promise_constructor_or_include_ES2015_in_your_lib_option); } return promiseType; } function createNewTargetExpressionType(targetType) { // Create a synthetic type `NewTargetExpression { target: TargetType; }` var symbol = createSymbol(0 /* SymbolFlags.None */, "NewTargetExpression"); var targetPropertySymbol = createSymbol(4 /* SymbolFlags.Property */, "target", 8 /* CheckFlags.Readonly */); targetPropertySymbol.parent = symbol; targetPropertySymbol.type = targetType; var members = ts.createSymbolTable([targetPropertySymbol]); symbol.members = members; return createAnonymousType(symbol, members, ts.emptyArray, ts.emptyArray, ts.emptyArray); } function getReturnTypeFromBody(func, checkMode) { if (!func.body) { return errorType; } var functionFlags = ts.getFunctionFlags(func); var isAsync = (functionFlags & 2 /* FunctionFlags.Async */) !== 0; var isGenerator = (functionFlags & 1 /* FunctionFlags.Generator */) !== 0; var returnType; var yieldType; var nextType; var fallbackReturnType = voidType; if (func.body.kind !== 235 /* SyntaxKind.Block */) { // Async or normal arrow function returnType = checkExpressionCached(func.body, checkMode && checkMode & ~8 /* CheckMode.SkipGenericFunctions */); if (isAsync) { // From within an async function you can return either a non-promise value or a promise. Any // Promise/A+ compatible implementation will always assimilate any foreign promise, so the // return type of the body should be unwrapped to its awaited type, which we will wrap in // the native Promise type later in this function. returnType = unwrapAwaitedType(checkAwaitedType(returnType, /*withAlias*/ false, /*errorNode*/ func, ts.Diagnostics.The_return_type_of_an_async_function_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member)); } } else if (isGenerator) { // Generator or AsyncGenerator function var returnTypes = checkAndAggregateReturnExpressionTypes(func, checkMode); if (!returnTypes) { fallbackReturnType = neverType; } else if (returnTypes.length > 0) { returnType = getUnionType(returnTypes, 2 /* UnionReduction.Subtype */); } var _a = checkAndAggregateYieldOperandTypes(func, checkMode), yieldTypes = _a.yieldTypes, nextTypes = _a.nextTypes; yieldType = ts.some(yieldTypes) ? getUnionType(yieldTypes, 2 /* UnionReduction.Subtype */) : undefined; nextType = ts.some(nextTypes) ? getIntersectionType(nextTypes) : undefined; } else { // Async or normal function var types = checkAndAggregateReturnExpressionTypes(func, checkMode); if (!types) { // For an async function, the return type will not be never, but rather a Promise for never. return functionFlags & 2 /* FunctionFlags.Async */ ? createPromiseReturnType(func, neverType) // Async function : neverType; // Normal function } if (types.length === 0) { // For an async function, the return type will not be void, but rather a Promise for void. return functionFlags & 2 /* FunctionFlags.Async */ ? createPromiseReturnType(func, voidType) // Async function : voidType; // Normal function } // Return a union of the return expression types. returnType = getUnionType(types, 2 /* UnionReduction.Subtype */); } if (returnType || yieldType || nextType) { if (yieldType) reportErrorsFromWidening(func, yieldType, 3 /* WideningKind.GeneratorYield */); if (returnType) reportErrorsFromWidening(func, returnType, 1 /* WideningKind.FunctionReturn */); if (nextType) reportErrorsFromWidening(func, nextType, 2 /* WideningKind.GeneratorNext */); if (returnType && isUnitType(returnType) || yieldType && isUnitType(yieldType) || nextType && isUnitType(nextType)) { var contextualSignature = getContextualSignatureForFunctionLikeDeclaration(func); var contextualType = !contextualSignature ? undefined : contextualSignature === getSignatureFromDeclaration(func) ? isGenerator ? undefined : returnType : instantiateContextualType(getReturnTypeOfSignature(contextualSignature), func); if (isGenerator) { yieldType = getWidenedLiteralLikeTypeForContextualIterationTypeIfNeeded(yieldType, contextualType, 0 /* IterationTypeKind.Yield */, isAsync); returnType = getWidenedLiteralLikeTypeForContextualIterationTypeIfNeeded(returnType, contextualType, 1 /* IterationTypeKind.Return */, isAsync); nextType = getWidenedLiteralLikeTypeForContextualIterationTypeIfNeeded(nextType, contextualType, 2 /* IterationTypeKind.Next */, isAsync); } else { returnType = getWidenedLiteralLikeTypeForContextualReturnTypeIfNeeded(returnType, contextualType, isAsync); } } if (yieldType) yieldType = getWidenedType(yieldType); if (returnType) returnType = getWidenedType(returnType); if (nextType) nextType = getWidenedType(nextType); } if (isGenerator) { return createGeneratorReturnType(yieldType || neverType, returnType || fallbackReturnType, nextType || getContextualIterationType(2 /* IterationTypeKind.Next */, func) || unknownType, isAsync); } else { // From within an async function you can return either a non-promise value or a promise. Any // Promise/A+ compatible implementation will always assimilate any foreign promise, so the // return type of the body is awaited type of the body, wrapped in a native Promise type. return isAsync ? createPromiseType(returnType || fallbackReturnType) : returnType || fallbackReturnType; } } function createGeneratorReturnType(yieldType, returnType, nextType, isAsyncGenerator) { var resolver = isAsyncGenerator ? asyncIterationTypesResolver : syncIterationTypesResolver; var globalGeneratorType = resolver.getGlobalGeneratorType(/*reportErrors*/ false); yieldType = resolver.resolveIterationType(yieldType, /*errorNode*/ undefined) || unknownType; returnType = resolver.resolveIterationType(returnType, /*errorNode*/ undefined) || unknownType; nextType = resolver.resolveIterationType(nextType, /*errorNode*/ undefined) || unknownType; if (globalGeneratorType === emptyGenericType) { // Fall back to the global IterableIterator if returnType is assignable to the expected return iteration // type of IterableIterator, and the expected next iteration type of IterableIterator is assignable to // nextType. var globalType = resolver.getGlobalIterableIteratorType(/*reportErrors*/ false); var iterationTypes = globalType !== emptyGenericType ? getIterationTypesOfGlobalIterableType(globalType, resolver) : undefined; var iterableIteratorReturnType = iterationTypes ? iterationTypes.returnType : anyType; var iterableIteratorNextType = iterationTypes ? iterationTypes.nextType : undefinedType; if (isTypeAssignableTo(returnType, iterableIteratorReturnType) && isTypeAssignableTo(iterableIteratorNextType, nextType)) { if (globalType !== emptyGenericType) { return createTypeFromGenericGlobalType(globalType, [yieldType]); } // The global IterableIterator type doesn't exist, so report an error resolver.getGlobalIterableIteratorType(/*reportErrors*/ true); return emptyObjectType; } // The global Generator type doesn't exist, so report an error resolver.getGlobalGeneratorType(/*reportErrors*/ true); return emptyObjectType; } return createTypeFromGenericGlobalType(globalGeneratorType, [yieldType, returnType, nextType]); } function checkAndAggregateYieldOperandTypes(func, checkMode) { var yieldTypes = []; var nextTypes = []; var isAsync = (ts.getFunctionFlags(func) & 2 /* FunctionFlags.Async */) !== 0; ts.forEachYieldExpression(func.body, function (yieldExpression) { var yieldExpressionType = yieldExpression.expression ? checkExpression(yieldExpression.expression, checkMode) : undefinedWideningType; ts.pushIfUnique(yieldTypes, getYieldedTypeOfYieldExpression(yieldExpression, yieldExpressionType, anyType, isAsync)); var nextType; if (yieldExpression.asteriskToken) { var iterationTypes = getIterationTypesOfIterable(yieldExpressionType, isAsync ? 19 /* IterationUse.AsyncYieldStar */ : 17 /* IterationUse.YieldStar */, yieldExpression.expression); nextType = iterationTypes && iterationTypes.nextType; } else { nextType = getContextualType(yieldExpression); } if (nextType) ts.pushIfUnique(nextTypes, nextType); }); return { yieldTypes: yieldTypes, nextTypes: nextTypes }; } function getYieldedTypeOfYieldExpression(node, expressionType, sentType, isAsync) { var errorNode = node.expression || node; // A `yield*` expression effectively yields everything that its operand yields var yieldedType = node.asteriskToken ? checkIteratedTypeOrElementType(isAsync ? 19 /* IterationUse.AsyncYieldStar */ : 17 /* IterationUse.YieldStar */, expressionType, sentType, errorNode) : expressionType; return !isAsync ? yieldedType : getAwaitedType(yieldedType, errorNode, node.asteriskToken ? ts.Diagnostics.Type_of_iterated_elements_of_a_yield_Asterisk_operand_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member : ts.Diagnostics.Type_of_yield_operand_in_an_async_generator_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member); } /** * Collect the TypeFacts learned from a typeof switch with * total clauses `witnesses`, and the active clause ranging * from `start` to `end`. Parameter `hasDefault` denotes * whether the active clause contains a default clause. */ function getFactsFromTypeofSwitch(start, end, witnesses, hasDefault) { var facts = 0 /* TypeFacts.None */; // When in the default we only collect inequality facts // because default is 'in theory' a set of infinite // equalities. if (hasDefault) { // Value is not equal to any types after the active clause. for (var i = end; i < witnesses.length; i++) { facts |= typeofNEFacts.get(witnesses[i]) || 32768 /* TypeFacts.TypeofNEHostObject */; } // Remove inequalities for types that appear in the // active clause because they appear before other // types collected so far. for (var i = start; i < end; i++) { facts &= ~(typeofNEFacts.get(witnesses[i]) || 0); } // Add inequalities for types before the active clause unconditionally. for (var i = 0; i < start; i++) { facts |= typeofNEFacts.get(witnesses[i]) || 32768 /* TypeFacts.TypeofNEHostObject */; } } // When in an active clause without default the set of // equalities is finite. else { // Add equalities for all types in the active clause. for (var i = start; i < end; i++) { facts |= typeofEQFacts.get(witnesses[i]) || 128 /* TypeFacts.TypeofEQHostObject */; } // Remove equalities for types that appear before the // active clause. for (var i = 0; i < start; i++) { facts &= ~(typeofEQFacts.get(witnesses[i]) || 0); } } return facts; } function isExhaustiveSwitchStatement(node) { var links = getNodeLinks(node); return links.isExhaustive !== undefined ? links.isExhaustive : (links.isExhaustive = computeExhaustiveSwitchStatement(node)); } function computeExhaustiveSwitchStatement(node) { if (node.expression.kind === 216 /* SyntaxKind.TypeOfExpression */) { var operandType = getTypeOfExpression(node.expression.expression); var witnesses = getSwitchClauseTypeOfWitnesses(node, /*retainDefault*/ false); // notEqualFacts states that the type of the switched value is not equal to every type in the switch. var notEqualFacts_1 = getFactsFromTypeofSwitch(0, 0, witnesses, /*hasDefault*/ true); var type_6 = getBaseConstraintOfType(operandType) || operandType; // Take any/unknown as a special condition. Or maybe we could change `type` to a union containing all primitive types. if (type_6.flags & 3 /* TypeFlags.AnyOrUnknown */) { return (556800 /* TypeFacts.AllTypeofNE */ & notEqualFacts_1) === 556800 /* TypeFacts.AllTypeofNE */; } return !!(filterType(type_6, function (t) { return (getTypeFacts(t) & notEqualFacts_1) === notEqualFacts_1; }).flags & 131072 /* TypeFlags.Never */); } var type = getTypeOfExpression(node.expression); if (!isLiteralType(type)) { return false; } var switchTypes = getSwitchClauseTypes(node); if (!switchTypes.length || ts.some(switchTypes, isNeitherUnitTypeNorNever)) { return false; } return eachTypeContainedIn(mapType(type, getRegularTypeOfLiteralType), switchTypes); } function functionHasImplicitReturn(func) { return func.endFlowNode && isReachableFlowNode(func.endFlowNode); } /** NOTE: Return value of `[]` means a different thing than `undefined`. `[]` means func returns `void`, `undefined` means it returns `never`. */ function checkAndAggregateReturnExpressionTypes(func, checkMode) { var functionFlags = ts.getFunctionFlags(func); var aggregatedTypes = []; var hasReturnWithNoExpression = functionHasImplicitReturn(func); var hasReturnOfTypeNever = false; ts.forEachReturnStatement(func.body, function (returnStatement) { var expr = returnStatement.expression; if (expr) { var type = checkExpressionCached(expr, checkMode && checkMode & ~8 /* CheckMode.SkipGenericFunctions */); if (functionFlags & 2 /* FunctionFlags.Async */) { // From within an async function you can return either a non-promise value or a promise. Any // Promise/A+ compatible implementation will always assimilate any foreign promise, so the // return type of the body should be unwrapped to its awaited type, which should be wrapped in // the native Promise type by the caller. type = unwrapAwaitedType(checkAwaitedType(type, /*withAlias*/ false, func, ts.Diagnostics.The_return_type_of_an_async_function_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member)); } if (type.flags & 131072 /* TypeFlags.Never */) { hasReturnOfTypeNever = true; } ts.pushIfUnique(aggregatedTypes, type); } else { hasReturnWithNoExpression = true; } }); if (aggregatedTypes.length === 0 && !hasReturnWithNoExpression && (hasReturnOfTypeNever || mayReturnNever(func))) { return undefined; } if (strictNullChecks && aggregatedTypes.length && hasReturnWithNoExpression && !(isJSConstructor(func) && aggregatedTypes.some(function (t) { return t.symbol === func.symbol; }))) { // Javascript "callable constructors", containing eg `if (!(this instanceof A)) return new A()` should not add undefined ts.pushIfUnique(aggregatedTypes, undefinedType); } return aggregatedTypes; } function mayReturnNever(func) { switch (func.kind) { case 213 /* SyntaxKind.FunctionExpression */: case 214 /* SyntaxKind.ArrowFunction */: return true; case 169 /* SyntaxKind.MethodDeclaration */: return func.parent.kind === 205 /* SyntaxKind.ObjectLiteralExpression */; default: return false; } } /** * TypeScript Specification 1.0 (6.3) - July 2014 * An explicitly typed function whose return type isn't the Void type, * the Any type, or a union type containing the Void or Any type as a constituent * must have at least one return statement somewhere in its body. * An exception to this rule is if the function implementation consists of a single 'throw' statement. * * @param returnType - return type of the function, can be undefined if return type is not explicitly specified */ function checkAllCodePathsInNonVoidFunctionReturnOrThrow(func, returnType) { addLazyDiagnostic(checkAllCodePathsInNonVoidFunctionReturnOrThrowDiagnostics); return; function checkAllCodePathsInNonVoidFunctionReturnOrThrowDiagnostics() { var functionFlags = ts.getFunctionFlags(func); var type = returnType && unwrapReturnType(returnType, functionFlags); // Functions with with an explicitly specified 'void' or 'any' return type don't need any return expressions. if (type && maybeTypeOfKind(type, 1 /* TypeFlags.Any */ | 16384 /* TypeFlags.Void */)) { return; } // If all we have is a function signature, or an arrow function with an expression body, then there is nothing to check. // also if HasImplicitReturn flag is not set this means that all codepaths in function body end with return or throw if (func.kind === 168 /* SyntaxKind.MethodSignature */ || ts.nodeIsMissing(func.body) || func.body.kind !== 235 /* SyntaxKind.Block */ || !functionHasImplicitReturn(func)) { return; } var hasExplicitReturn = func.flags & 512 /* NodeFlags.HasExplicitReturn */; var errorNode = ts.getEffectiveReturnTypeNode(func) || func; if (type && type.flags & 131072 /* TypeFlags.Never */) { error(errorNode, ts.Diagnostics.A_function_returning_never_cannot_have_a_reachable_end_point); } else if (type && !hasExplicitReturn) { // minimal check: function has syntactic return type annotation and no explicit return statements in the body // this function does not conform to the specification. error(errorNode, ts.Diagnostics.A_function_whose_declared_type_is_neither_void_nor_any_must_return_a_value); } else if (type && strictNullChecks && !isTypeAssignableTo(undefinedType, type)) { error(errorNode, ts.Diagnostics.Function_lacks_ending_return_statement_and_return_type_does_not_include_undefined); } else if (compilerOptions.noImplicitReturns) { if (!type) { // If return type annotation is omitted check if function has any explicit return statements. // If it does not have any - its inferred return type is void - don't do any checks. // Otherwise get inferred return type from function body and report error only if it is not void / anytype if (!hasExplicitReturn) { return; } var inferredReturnType = getReturnTypeOfSignature(getSignatureFromDeclaration(func)); if (isUnwrappedReturnTypeVoidOrAny(func, inferredReturnType)) { return; } } error(errorNode, ts.Diagnostics.Not_all_code_paths_return_a_value); } } } function checkFunctionExpressionOrObjectLiteralMethod(node, checkMode) { ts.Debug.assert(node.kind !== 169 /* SyntaxKind.MethodDeclaration */ || ts.isObjectLiteralMethod(node)); checkNodeDeferred(node); if (ts.isFunctionExpression(node)) { checkCollisionsForDeclarationName(node, node.name); } // The identityMapper object is used to indicate that function expressions are wildcards if (checkMode && checkMode & 4 /* CheckMode.SkipContextSensitive */ && isContextSensitive(node)) { // Skip parameters, return signature with return type that retains noncontextual parts so inferences can still be drawn in an early stage if (!ts.getEffectiveReturnTypeNode(node) && !ts.hasContextSensitiveParameters(node)) { // Return plain anyFunctionType if there is no possibility we'll make inferences from the return type var contextualSignature = getContextualSignature(node); if (contextualSignature && couldContainTypeVariables(getReturnTypeOfSignature(contextualSignature))) { var links = getNodeLinks(node); if (links.contextFreeType) { return links.contextFreeType; } var returnType = getReturnTypeFromBody(node, checkMode); var returnOnlySignature = createSignature(undefined, undefined, undefined, ts.emptyArray, returnType, /*resolvedTypePredicate*/ undefined, 0, 0 /* SignatureFlags.None */); var returnOnlyType = createAnonymousType(node.symbol, emptySymbols, [returnOnlySignature], ts.emptyArray, ts.emptyArray); returnOnlyType.objectFlags |= 262144 /* ObjectFlags.NonInferrableType */; return links.contextFreeType = returnOnlyType; } } return anyFunctionType; } // Grammar checking var hasGrammarError = checkGrammarFunctionLikeDeclaration(node); if (!hasGrammarError && node.kind === 213 /* SyntaxKind.FunctionExpression */) { checkGrammarForGenerator(node); } contextuallyCheckFunctionExpressionOrObjectLiteralMethod(node, checkMode); return getTypeOfSymbol(getSymbolOfNode(node)); } function contextuallyCheckFunctionExpressionOrObjectLiteralMethod(node, checkMode) { var links = getNodeLinks(node); // Check if function expression is contextually typed and assign parameter types if so. if (!(links.flags & 1024 /* NodeCheckFlags.ContextChecked */)) { var contextualSignature = getContextualSignature(node); // If a type check is started at a function expression that is an argument of a function call, obtaining the // contextual type may recursively get back to here during overload resolution of the call. If so, we will have // already assigned contextual types. if (!(links.flags & 1024 /* NodeCheckFlags.ContextChecked */)) { links.flags |= 1024 /* NodeCheckFlags.ContextChecked */; var signature = ts.firstOrUndefined(getSignaturesOfType(getTypeOfSymbol(getSymbolOfNode(node)), 0 /* SignatureKind.Call */)); if (!signature) { return; } if (isContextSensitive(node)) { if (contextualSignature) { var inferenceContext = getInferenceContext(node); if (checkMode && checkMode & 2 /* CheckMode.Inferential */) { inferFromAnnotatedParameters(signature, contextualSignature, inferenceContext); } var instantiatedContextualSignature = inferenceContext ? instantiateSignature(contextualSignature, inferenceContext.mapper) : contextualSignature; assignContextualParameterTypes(signature, instantiatedContextualSignature); } else { // Force resolution of all parameter types such that the absence of a contextual type is consistently reflected. assignNonContextualParameterTypes(signature); } } if (contextualSignature && !getReturnTypeFromAnnotation(node) && !signature.resolvedReturnType) { var returnType = getReturnTypeFromBody(node, checkMode); if (!signature.resolvedReturnType) { signature.resolvedReturnType = returnType; } } checkSignatureDeclaration(node); } } } function checkFunctionExpressionOrObjectLiteralMethodDeferred(node) { ts.Debug.assert(node.kind !== 169 /* SyntaxKind.MethodDeclaration */ || ts.isObjectLiteralMethod(node)); var functionFlags = ts.getFunctionFlags(node); var returnType = getReturnTypeFromAnnotation(node); checkAllCodePathsInNonVoidFunctionReturnOrThrow(node, returnType); if (node.body) { if (!ts.getEffectiveReturnTypeNode(node)) { // There are some checks that are only performed in getReturnTypeFromBody, that may produce errors // we need. An example is the noImplicitAny errors resulting from widening the return expression // of a function. Because checking of function expression bodies is deferred, there was never an // appropriate time to do this during the main walk of the file (see the comment at the top of // checkFunctionExpressionBodies). So it must be done now. getReturnTypeOfSignature(getSignatureFromDeclaration(node)); } if (node.body.kind === 235 /* SyntaxKind.Block */) { checkSourceElement(node.body); } else { // From within an async function you can return either a non-promise value or a promise. Any // Promise/A+ compatible implementation will always assimilate any foreign promise, so we // should not be checking assignability of a promise to the return type. Instead, we need to // check assignability of the awaited type of the expression body against the promised type of // its return type annotation. var exprType = checkExpression(node.body); var returnOrPromisedType = returnType && unwrapReturnType(returnType, functionFlags); if (returnOrPromisedType) { if ((functionFlags & 3 /* FunctionFlags.AsyncGenerator */) === 2 /* FunctionFlags.Async */) { // Async function var awaitedType = checkAwaitedType(exprType, /*withAlias*/ false, node.body, ts.Diagnostics.The_return_type_of_an_async_function_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member); checkTypeAssignableToAndOptionallyElaborate(awaitedType, returnOrPromisedType, node.body, node.body); } else { // Normal function checkTypeAssignableToAndOptionallyElaborate(exprType, returnOrPromisedType, node.body, node.body); } } } } } function checkArithmeticOperandType(operand, type, diagnostic, isAwaitValid) { if (isAwaitValid === void 0) { isAwaitValid = false; } if (!isTypeAssignableTo(type, numberOrBigIntType)) { var awaitedType = isAwaitValid && getAwaitedTypeOfPromise(type); errorAndMaybeSuggestAwait(operand, !!awaitedType && isTypeAssignableTo(awaitedType, numberOrBigIntType), diagnostic); return false; } return true; } function isReadonlyAssignmentDeclaration(d) { if (!ts.isCallExpression(d)) { return false; } if (!ts.isBindableObjectDefinePropertyCall(d)) { return false; } var objectLitType = checkExpressionCached(d.arguments[2]); var valueType = getTypeOfPropertyOfType(objectLitType, "value"); if (valueType) { var writableProp = getPropertyOfType(objectLitType, "writable"); var writableType = writableProp && getTypeOfSymbol(writableProp); if (!writableType || writableType === falseType || writableType === regularFalseType) { return true; } // We include this definition whereupon we walk back and check the type at the declaration because // The usual definition of `Object.defineProperty` will _not_ cause literal types to be preserved in the // argument types, should the type be contextualized by the call itself. if (writableProp && writableProp.valueDeclaration && ts.isPropertyAssignment(writableProp.valueDeclaration)) { var initializer = writableProp.valueDeclaration.initializer; var rawOriginalType = checkExpression(initializer); if (rawOriginalType === falseType || rawOriginalType === regularFalseType) { return true; } } return false; } var setProp = getPropertyOfType(objectLitType, "set"); return !setProp; } function isReadonlySymbol(symbol) { // The following symbols are considered read-only: // Properties with a 'readonly' modifier // Variables declared with 'const' // Get accessors without matching set accessors // Enum members // Object.defineProperty assignments with writable false or no setter // Unions and intersections of the above (unions and intersections eagerly set isReadonly on creation) return !!(ts.getCheckFlags(symbol) & 8 /* CheckFlags.Readonly */ || symbol.flags & 4 /* SymbolFlags.Property */ && ts.getDeclarationModifierFlagsFromSymbol(symbol) & 64 /* ModifierFlags.Readonly */ || symbol.flags & 3 /* SymbolFlags.Variable */ && getDeclarationNodeFlagsFromSymbol(symbol) & 2 /* NodeFlags.Const */ || symbol.flags & 98304 /* SymbolFlags.Accessor */ && !(symbol.flags & 65536 /* SymbolFlags.SetAccessor */) || symbol.flags & 8 /* SymbolFlags.EnumMember */ || ts.some(symbol.declarations, isReadonlyAssignmentDeclaration)); } function isAssignmentToReadonlyEntity(expr, symbol, assignmentKind) { var _a, _b; if (assignmentKind === 0 /* AssignmentKind.None */) { // no assigment means it doesn't matter whether the entity is readonly return false; } if (isReadonlySymbol(symbol)) { // Allow assignments to readonly properties within constructors of the same class declaration. if (symbol.flags & 4 /* SymbolFlags.Property */ && ts.isAccessExpression(expr) && expr.expression.kind === 108 /* SyntaxKind.ThisKeyword */) { // Look for if this is the constructor for the class that `symbol` is a property of. var ctor = ts.getContainingFunction(expr); if (!(ctor && (ctor.kind === 171 /* SyntaxKind.Constructor */ || isJSConstructor(ctor)))) { return true; } if (symbol.valueDeclaration) { var isAssignmentDeclaration_1 = ts.isBinaryExpression(symbol.valueDeclaration); var isLocalPropertyDeclaration = ctor.parent === symbol.valueDeclaration.parent; var isLocalParameterProperty = ctor === symbol.valueDeclaration.parent; var isLocalThisPropertyAssignment = isAssignmentDeclaration_1 && ((_a = symbol.parent) === null || _a === void 0 ? void 0 : _a.valueDeclaration) === ctor.parent; var isLocalThisPropertyAssignmentConstructorFunction = isAssignmentDeclaration_1 && ((_b = symbol.parent) === null || _b === void 0 ? void 0 : _b.valueDeclaration) === ctor; var isWriteableSymbol = isLocalPropertyDeclaration || isLocalParameterProperty || isLocalThisPropertyAssignment || isLocalThisPropertyAssignmentConstructorFunction; return !isWriteableSymbol; } } return true; } if (ts.isAccessExpression(expr)) { // references through namespace import should be readonly var node = ts.skipParentheses(expr.expression); if (node.kind === 79 /* SyntaxKind.Identifier */) { var symbol_2 = getNodeLinks(node).resolvedSymbol; if (symbol_2.flags & 2097152 /* SymbolFlags.Alias */) { var declaration = getDeclarationOfAliasSymbol(symbol_2); return !!declaration && declaration.kind === 268 /* SyntaxKind.NamespaceImport */; } } } return false; } function checkReferenceExpression(expr, invalidReferenceMessage, invalidOptionalChainMessage) { // References are combinations of identifiers, parentheses, and property accesses. var node = ts.skipOuterExpressions(expr, 6 /* OuterExpressionKinds.Assertions */ | 1 /* OuterExpressionKinds.Parentheses */); if (node.kind !== 79 /* SyntaxKind.Identifier */ && !ts.isAccessExpression(node)) { error(expr, invalidReferenceMessage); return false; } if (node.flags & 32 /* NodeFlags.OptionalChain */) { error(expr, invalidOptionalChainMessage); return false; } return true; } function checkDeleteExpression(node) { checkExpression(node.expression); var expr = ts.skipParentheses(node.expression); if (!ts.isAccessExpression(expr)) { error(expr, ts.Diagnostics.The_operand_of_a_delete_operator_must_be_a_property_reference); return booleanType; } if (ts.isPropertyAccessExpression(expr) && ts.isPrivateIdentifier(expr.name)) { error(expr, ts.Diagnostics.The_operand_of_a_delete_operator_cannot_be_a_private_identifier); } var links = getNodeLinks(expr); var symbol = getExportSymbolOfValueSymbolIfExported(links.resolvedSymbol); if (symbol) { if (isReadonlySymbol(symbol)) { error(expr, ts.Diagnostics.The_operand_of_a_delete_operator_cannot_be_a_read_only_property); } checkDeleteExpressionMustBeOptional(expr, symbol); } return booleanType; } function checkDeleteExpressionMustBeOptional(expr, symbol) { var type = getTypeOfSymbol(symbol); if (strictNullChecks && !(type.flags & (3 /* TypeFlags.AnyOrUnknown */ | 131072 /* TypeFlags.Never */)) && !(exactOptionalPropertyTypes ? symbol.flags & 16777216 /* SymbolFlags.Optional */ : getFalsyFlags(type) & 32768 /* TypeFlags.Undefined */)) { error(expr, ts.Diagnostics.The_operand_of_a_delete_operator_must_be_optional); } } function checkTypeOfExpression(node) { checkExpression(node.expression); return typeofType; } function checkVoidExpression(node) { checkExpression(node.expression); return undefinedWideningType; } function checkAwaitExpressionGrammar(node) { // Grammar checking var container = ts.getContainingFunctionOrClassStaticBlock(node); if (container && ts.isClassStaticBlockDeclaration(container)) { error(node, ts.Diagnostics.Await_expression_cannot_be_used_inside_a_class_static_block); } else if (!(node.flags & 32768 /* NodeFlags.AwaitContext */)) { if (ts.isInTopLevelContext(node)) { var sourceFile = ts.getSourceFileOfNode(node); if (!hasParseDiagnostics(sourceFile)) { var span = void 0; if (!ts.isEffectiveExternalModule(sourceFile, compilerOptions)) { span !== null && span !== void 0 ? span : (span = ts.getSpanOfTokenAtPosition(sourceFile, node.pos)); var diagnostic = ts.createFileDiagnostic(sourceFile, span.start, span.length, ts.Diagnostics.await_expressions_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_file_has_no_imports_or_exports_Consider_adding_an_empty_export_to_make_this_file_a_module); diagnostics.add(diagnostic); } switch (moduleKind) { case ts.ModuleKind.Node16: case ts.ModuleKind.NodeNext: if (sourceFile.impliedNodeFormat === ts.ModuleKind.CommonJS) { span !== null && span !== void 0 ? span : (span = ts.getSpanOfTokenAtPosition(sourceFile, node.pos)); diagnostics.add(ts.createFileDiagnostic(sourceFile, span.start, span.length, ts.Diagnostics.The_current_file_is_a_CommonJS_module_and_cannot_use_await_at_the_top_level)); break; } // fallthrough case ts.ModuleKind.ES2022: case ts.ModuleKind.ESNext: case ts.ModuleKind.System: if (languageVersion >= 4 /* ScriptTarget.ES2017 */) { break; } // fallthrough default: span !== null && span !== void 0 ? span : (span = ts.getSpanOfTokenAtPosition(sourceFile, node.pos)); diagnostics.add(ts.createFileDiagnostic(sourceFile, span.start, span.length, ts.Diagnostics.Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_node16_or_nodenext_and_the_target_option_is_set_to_es2017_or_higher)); break; } } } else { // use of 'await' in non-async function var sourceFile = ts.getSourceFileOfNode(node); if (!hasParseDiagnostics(sourceFile)) { var span = ts.getSpanOfTokenAtPosition(sourceFile, node.pos); var diagnostic = ts.createFileDiagnostic(sourceFile, span.start, span.length, ts.Diagnostics.await_expressions_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules); if (container && container.kind !== 171 /* SyntaxKind.Constructor */ && (ts.getFunctionFlags(container) & 2 /* FunctionFlags.Async */) === 0) { var relatedInfo = ts.createDiagnosticForNode(container, ts.Diagnostics.Did_you_mean_to_mark_this_function_as_async); ts.addRelatedInfo(diagnostic, relatedInfo); } diagnostics.add(diagnostic); } } } if (isInParameterInitializerBeforeContainingFunction(node)) { error(node, ts.Diagnostics.await_expressions_cannot_be_used_in_a_parameter_initializer); } } function checkAwaitExpression(node) { addLazyDiagnostic(function () { return checkAwaitExpressionGrammar(node); }); var operandType = checkExpression(node.expression); var awaitedType = checkAwaitedType(operandType, /*withAlias*/ true, node, ts.Diagnostics.Type_of_await_operand_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member); if (awaitedType === operandType && !isErrorType(awaitedType) && !(operandType.flags & 3 /* TypeFlags.AnyOrUnknown */)) { addErrorOrSuggestion(/*isError*/ false, ts.createDiagnosticForNode(node, ts.Diagnostics.await_has_no_effect_on_the_type_of_this_expression)); } return awaitedType; } function checkPrefixUnaryExpression(node) { var operandType = checkExpression(node.operand); if (operandType === silentNeverType) { return silentNeverType; } switch (node.operand.kind) { case 8 /* SyntaxKind.NumericLiteral */: switch (node.operator) { case 40 /* SyntaxKind.MinusToken */: return getFreshTypeOfLiteralType(getNumberLiteralType(-node.operand.text)); case 39 /* SyntaxKind.PlusToken */: return getFreshTypeOfLiteralType(getNumberLiteralType(+node.operand.text)); } break; case 9 /* SyntaxKind.BigIntLiteral */: if (node.operator === 40 /* SyntaxKind.MinusToken */) { return getFreshTypeOfLiteralType(getBigIntLiteralType({ negative: true, base10Value: ts.parsePseudoBigInt(node.operand.text) })); } } switch (node.operator) { case 39 /* SyntaxKind.PlusToken */: case 40 /* SyntaxKind.MinusToken */: case 54 /* SyntaxKind.TildeToken */: checkNonNullType(operandType, node.operand); if (maybeTypeOfKindConsideringBaseConstraint(operandType, 12288 /* TypeFlags.ESSymbolLike */)) { error(node.operand, ts.Diagnostics.The_0_operator_cannot_be_applied_to_type_symbol, ts.tokenToString(node.operator)); } if (node.operator === 39 /* SyntaxKind.PlusToken */) { if (maybeTypeOfKind(operandType, 2112 /* TypeFlags.BigIntLike */)) { error(node.operand, ts.Diagnostics.Operator_0_cannot_be_applied_to_type_1, ts.tokenToString(node.operator), typeToString(getBaseTypeOfLiteralType(operandType))); } return numberType; } return getUnaryResultType(operandType); case 53 /* SyntaxKind.ExclamationToken */: checkTruthinessExpression(node.operand); var facts = getTypeFacts(operandType) & (4194304 /* TypeFacts.Truthy */ | 8388608 /* TypeFacts.Falsy */); return facts === 4194304 /* TypeFacts.Truthy */ ? falseType : facts === 8388608 /* TypeFacts.Falsy */ ? trueType : booleanType; case 45 /* SyntaxKind.PlusPlusToken */: case 46 /* SyntaxKind.MinusMinusToken */: var ok = checkArithmeticOperandType(node.operand, checkNonNullType(operandType, node.operand), ts.Diagnostics.An_arithmetic_operand_must_be_of_type_any_number_bigint_or_an_enum_type); if (ok) { // run check only if former checks succeeded to avoid reporting cascading errors checkReferenceExpression(node.operand, ts.Diagnostics.The_operand_of_an_increment_or_decrement_operator_must_be_a_variable_or_a_property_access, ts.Diagnostics.The_operand_of_an_increment_or_decrement_operator_may_not_be_an_optional_property_access); } return getUnaryResultType(operandType); } return errorType; } function checkPostfixUnaryExpression(node) { var operandType = checkExpression(node.operand); if (operandType === silentNeverType) { return silentNeverType; } var ok = checkArithmeticOperandType(node.operand, checkNonNullType(operandType, node.operand), ts.Diagnostics.An_arithmetic_operand_must_be_of_type_any_number_bigint_or_an_enum_type); if (ok) { // run check only if former checks succeeded to avoid reporting cascading errors checkReferenceExpression(node.operand, ts.Diagnostics.The_operand_of_an_increment_or_decrement_operator_must_be_a_variable_or_a_property_access, ts.Diagnostics.The_operand_of_an_increment_or_decrement_operator_may_not_be_an_optional_property_access); } return getUnaryResultType(operandType); } function getUnaryResultType(operandType) { if (maybeTypeOfKind(operandType, 2112 /* TypeFlags.BigIntLike */)) { return isTypeAssignableToKind(operandType, 3 /* TypeFlags.AnyOrUnknown */) || maybeTypeOfKind(operandType, 296 /* TypeFlags.NumberLike */) ? numberOrBigIntType : bigintType; } // If it's not a bigint type, implicit coercion will result in a number return numberType; } function maybeTypeOfKindConsideringBaseConstraint(type, kind) { if (maybeTypeOfKind(type, kind)) { return true; } var baseConstraint = getBaseConstraintOrType(type); return !!baseConstraint && maybeTypeOfKind(baseConstraint, kind); } // Return true if type might be of the given kind. A union or intersection type might be of a given // kind if at least one constituent type is of the given kind. function maybeTypeOfKind(type, kind) { if (type.flags & kind) { return true; } if (type.flags & 3145728 /* TypeFlags.UnionOrIntersection */) { var types = type.types; for (var _i = 0, types_21 = types; _i < types_21.length; _i++) { var t = types_21[_i]; if (maybeTypeOfKind(t, kind)) { return true; } } } return false; } function isTypeAssignableToKind(source, kind, strict) { if (source.flags & kind) { return true; } if (strict && source.flags & (3 /* TypeFlags.AnyOrUnknown */ | 16384 /* TypeFlags.Void */ | 32768 /* TypeFlags.Undefined */ | 65536 /* TypeFlags.Null */)) { return false; } return !!(kind & 296 /* TypeFlags.NumberLike */) && isTypeAssignableTo(source, numberType) || !!(kind & 2112 /* TypeFlags.BigIntLike */) && isTypeAssignableTo(source, bigintType) || !!(kind & 402653316 /* TypeFlags.StringLike */) && isTypeAssignableTo(source, stringType) || !!(kind & 528 /* TypeFlags.BooleanLike */) && isTypeAssignableTo(source, booleanType) || !!(kind & 16384 /* TypeFlags.Void */) && isTypeAssignableTo(source, voidType) || !!(kind & 131072 /* TypeFlags.Never */) && isTypeAssignableTo(source, neverType) || !!(kind & 65536 /* TypeFlags.Null */) && isTypeAssignableTo(source, nullType) || !!(kind & 32768 /* TypeFlags.Undefined */) && isTypeAssignableTo(source, undefinedType) || !!(kind & 4096 /* TypeFlags.ESSymbol */) && isTypeAssignableTo(source, esSymbolType) || !!(kind & 67108864 /* TypeFlags.NonPrimitive */) && isTypeAssignableTo(source, nonPrimitiveType); } function allTypesAssignableToKind(source, kind, strict) { return source.flags & 1048576 /* TypeFlags.Union */ ? ts.every(source.types, function (subType) { return allTypesAssignableToKind(subType, kind, strict); }) : isTypeAssignableToKind(source, kind, strict); } function isConstEnumObjectType(type) { return !!(ts.getObjectFlags(type) & 16 /* ObjectFlags.Anonymous */) && !!type.symbol && isConstEnumSymbol(type.symbol); } function isConstEnumSymbol(symbol) { return (symbol.flags & 128 /* SymbolFlags.ConstEnum */) !== 0; } function checkInstanceOfExpression(left, right, leftType, rightType) { if (leftType === silentNeverType || rightType === silentNeverType) { return silentNeverType; } // TypeScript 1.0 spec (April 2014): 4.15.4 // The instanceof operator requires the left operand to be of type Any, an object type, or a type parameter type, // and the right operand to be of type Any, a subtype of the 'Function' interface type, or have a call or construct signature. // The result is always of the Boolean primitive type. // NOTE: do not raise error if leftType is unknown as related error was already reported if (!isTypeAny(leftType) && allTypesAssignableToKind(leftType, 131068 /* TypeFlags.Primitive */)) { error(left, ts.Diagnostics.The_left_hand_side_of_an_instanceof_expression_must_be_of_type_any_an_object_type_or_a_type_parameter); } // NOTE: do not raise error if right is unknown as related error was already reported if (!(isTypeAny(rightType) || typeHasCallOrConstructSignatures(rightType) || isTypeSubtypeOf(rightType, globalFunctionType))) { error(right, ts.Diagnostics.The_right_hand_side_of_an_instanceof_expression_must_be_of_type_any_or_of_a_type_assignable_to_the_Function_interface_type); } return booleanType; } function checkInExpression(left, right, leftType, rightType) { if (leftType === silentNeverType || rightType === silentNeverType) { return silentNeverType; } if (ts.isPrivateIdentifier(left)) { if (languageVersion < 99 /* ScriptTarget.ESNext */) { checkExternalEmitHelpers(left, 2097152 /* ExternalEmitHelpers.ClassPrivateFieldIn */); } // Unlike in 'checkPrivateIdentifierExpression' we now have access to the RHS type // which provides us with the opportunity to emit more detailed errors if (!getNodeLinks(left).resolvedSymbol && ts.getContainingClass(left)) { var isUncheckedJS = isUncheckedJSSuggestion(left, rightType.symbol, /*excludeClasses*/ true); reportNonexistentProperty(left, rightType, isUncheckedJS); } } else { leftType = checkNonNullType(leftType, left); // TypeScript 1.0 spec (April 2014): 4.15.5 // Require the left operand to be of type Any, the String primitive type, or the Number primitive type. if (!(allTypesAssignableToKind(leftType, 402653316 /* TypeFlags.StringLike */ | 296 /* TypeFlags.NumberLike */ | 12288 /* TypeFlags.ESSymbolLike */) || isTypeAssignableToKind(leftType, 4194304 /* TypeFlags.Index */ | 134217728 /* TypeFlags.TemplateLiteral */ | 268435456 /* TypeFlags.StringMapping */ | 262144 /* TypeFlags.TypeParameter */))) { error(left, ts.Diagnostics.The_left_hand_side_of_an_in_expression_must_be_a_private_identifier_or_of_type_any_string_number_or_symbol); } } rightType = checkNonNullType(rightType, right); // TypeScript 1.0 spec (April 2014): 4.15.5 // The in operator requires the right operand to be // // 1. assignable to the non-primitive type, // 2. an unconstrained type parameter, // 3. a union or intersection including one or more type parameters, whose constituents are all assignable to the // the non-primitive type, or are unconstrainted type parameters, or have constraints assignable to the // non-primitive type, or // 4. a type parameter whose constraint is // i. an object type, // ii. the non-primitive type, or // iii. a union or intersection with at least one constituent assignable to an object or non-primitive type. // // The divergent behavior for type parameters and unions containing type parameters is a workaround for type // parameters not being narrowable. If the right operand is a concrete type, we can error if there is any chance // it is a primitive. But if the operand is a type parameter, it cannot be narrowed, so we don't issue an error // unless *all* instantiations would result in an error. // // The result is always of the Boolean primitive type. var rightTypeConstraint = getConstraintOfType(rightType); if (!allTypesAssignableToKind(rightType, 67108864 /* TypeFlags.NonPrimitive */ | 58982400 /* TypeFlags.InstantiableNonPrimitive */) || rightTypeConstraint && (isTypeAssignableToKind(rightType, 3145728 /* TypeFlags.UnionOrIntersection */) && !allTypesAssignableToKind(rightTypeConstraint, 67108864 /* TypeFlags.NonPrimitive */ | 58982400 /* TypeFlags.InstantiableNonPrimitive */) || !maybeTypeOfKind(rightTypeConstraint, 67108864 /* TypeFlags.NonPrimitive */ | 58982400 /* TypeFlags.InstantiableNonPrimitive */ | 524288 /* TypeFlags.Object */))) { error(right, ts.Diagnostics.The_right_hand_side_of_an_in_expression_must_not_be_a_primitive); } return booleanType; } function checkObjectLiteralAssignment(node, sourceType, rightIsThis) { var properties = node.properties; if (strictNullChecks && properties.length === 0) { return checkNonNullType(sourceType, node); } for (var i = 0; i < properties.length; i++) { checkObjectLiteralDestructuringPropertyAssignment(node, sourceType, i, properties, rightIsThis); } return sourceType; } /** Note: If property cannot be a SpreadAssignment, then allProperties does not need to be provided */ function checkObjectLiteralDestructuringPropertyAssignment(node, objectLiteralType, propertyIndex, allProperties, rightIsThis) { if (rightIsThis === void 0) { rightIsThis = false; } var properties = node.properties; var property = properties[propertyIndex]; if (property.kind === 296 /* SyntaxKind.PropertyAssignment */ || property.kind === 297 /* SyntaxKind.ShorthandPropertyAssignment */) { var name = property.name; var exprType = getLiteralTypeFromPropertyName(name); if (isTypeUsableAsPropertyName(exprType)) { var text = getPropertyNameFromType(exprType); var prop = getPropertyOfType(objectLiteralType, text); if (prop) { markPropertyAsReferenced(prop, property, rightIsThis); checkPropertyAccessibility(property, /*isSuper*/ false, /*writing*/ true, objectLiteralType, prop); } } var elementType = getIndexedAccessType(objectLiteralType, exprType, 32 /* AccessFlags.ExpressionPosition */, name); var type = getFlowTypeOfDestructuring(property, elementType); return checkDestructuringAssignment(property.kind === 297 /* SyntaxKind.ShorthandPropertyAssignment */ ? property : property.initializer, type); } else if (property.kind === 298 /* SyntaxKind.SpreadAssignment */) { if (propertyIndex < properties.length - 1) { error(property, ts.Diagnostics.A_rest_element_must_be_last_in_a_destructuring_pattern); } else { if (languageVersion < 99 /* ScriptTarget.ESNext */) { checkExternalEmitHelpers(property, 4 /* ExternalEmitHelpers.Rest */); } var nonRestNames = []; if (allProperties) { for (var _i = 0, allProperties_1 = allProperties; _i < allProperties_1.length; _i++) { var otherProperty = allProperties_1[_i]; if (!ts.isSpreadAssignment(otherProperty)) { nonRestNames.push(otherProperty.name); } } } var type = getRestType(objectLiteralType, nonRestNames, objectLiteralType.symbol); checkGrammarForDisallowedTrailingComma(allProperties, ts.Diagnostics.A_rest_parameter_or_binding_pattern_may_not_have_a_trailing_comma); return checkDestructuringAssignment(property.expression, type); } } else { error(property, ts.Diagnostics.Property_assignment_expected); } } function checkArrayLiteralAssignment(node, sourceType, checkMode) { var elements = node.elements; if (languageVersion < 2 /* ScriptTarget.ES2015 */ && compilerOptions.downlevelIteration) { checkExternalEmitHelpers(node, 512 /* ExternalEmitHelpers.Read */); } // This elementType will be used if the specific property corresponding to this index is not // present (aka the tuple element property). This call also checks that the parentType is in // fact an iterable or array (depending on target language). var possiblyOutOfBoundsType = checkIteratedTypeOrElementType(65 /* IterationUse.Destructuring */ | 128 /* IterationUse.PossiblyOutOfBounds */, sourceType, undefinedType, node) || errorType; var inBoundsType = compilerOptions.noUncheckedIndexedAccess ? undefined : possiblyOutOfBoundsType; for (var i = 0; i < elements.length; i++) { var type = possiblyOutOfBoundsType; if (node.elements[i].kind === 225 /* SyntaxKind.SpreadElement */) { type = inBoundsType = inBoundsType !== null && inBoundsType !== void 0 ? inBoundsType : (checkIteratedTypeOrElementType(65 /* IterationUse.Destructuring */, sourceType, undefinedType, node) || errorType); } checkArrayLiteralDestructuringElementAssignment(node, sourceType, i, type, checkMode); } return sourceType; } function checkArrayLiteralDestructuringElementAssignment(node, sourceType, elementIndex, elementType, checkMode) { var elements = node.elements; var element = elements[elementIndex]; if (element.kind !== 227 /* SyntaxKind.OmittedExpression */) { if (element.kind !== 225 /* SyntaxKind.SpreadElement */) { var indexType = getNumberLiteralType(elementIndex); if (isArrayLikeType(sourceType)) { // We create a synthetic expression so that getIndexedAccessType doesn't get confused // when the element is a SyntaxKind.ElementAccessExpression. var accessFlags = 32 /* AccessFlags.ExpressionPosition */ | (hasDefaultValue(element) ? 16 /* AccessFlags.NoTupleBoundsCheck */ : 0); var elementType_2 = getIndexedAccessTypeOrUndefined(sourceType, indexType, accessFlags, createSyntheticExpression(element, indexType)) || errorType; var assignedType = hasDefaultValue(element) ? getTypeWithFacts(elementType_2, 524288 /* TypeFacts.NEUndefined */) : elementType_2; var type = getFlowTypeOfDestructuring(element, assignedType); return checkDestructuringAssignment(element, type, checkMode); } return checkDestructuringAssignment(element, elementType, checkMode); } if (elementIndex < elements.length - 1) { error(element, ts.Diagnostics.A_rest_element_must_be_last_in_a_destructuring_pattern); } else { var restExpression = element.expression; if (restExpression.kind === 221 /* SyntaxKind.BinaryExpression */ && restExpression.operatorToken.kind === 63 /* SyntaxKind.EqualsToken */) { error(restExpression.operatorToken, ts.Diagnostics.A_rest_element_cannot_have_an_initializer); } else { checkGrammarForDisallowedTrailingComma(node.elements, ts.Diagnostics.A_rest_parameter_or_binding_pattern_may_not_have_a_trailing_comma); var type = everyType(sourceType, isTupleType) ? mapType(sourceType, function (t) { return sliceTupleType(t, elementIndex); }) : createArrayType(elementType); return checkDestructuringAssignment(restExpression, type, checkMode); } } } return undefined; } function checkDestructuringAssignment(exprOrAssignment, sourceType, checkMode, rightIsThis) { var target; if (exprOrAssignment.kind === 297 /* SyntaxKind.ShorthandPropertyAssignment */) { var prop = exprOrAssignment; if (prop.objectAssignmentInitializer) { // In strict null checking mode, if a default value of a non-undefined type is specified, remove // undefined from the final type. if (strictNullChecks && !(getFalsyFlags(checkExpression(prop.objectAssignmentInitializer)) & 32768 /* TypeFlags.Undefined */)) { sourceType = getTypeWithFacts(sourceType, 524288 /* TypeFacts.NEUndefined */); } checkBinaryLikeExpression(prop.name, prop.equalsToken, prop.objectAssignmentInitializer, checkMode); } target = exprOrAssignment.name; } else { target = exprOrAssignment; } if (target.kind === 221 /* SyntaxKind.BinaryExpression */ && target.operatorToken.kind === 63 /* SyntaxKind.EqualsToken */) { checkBinaryExpression(target, checkMode); target = target.left; } if (target.kind === 205 /* SyntaxKind.ObjectLiteralExpression */) { return checkObjectLiteralAssignment(target, sourceType, rightIsThis); } if (target.kind === 204 /* SyntaxKind.ArrayLiteralExpression */) { return checkArrayLiteralAssignment(target, sourceType, checkMode); } return checkReferenceAssignment(target, sourceType, checkMode); } function checkReferenceAssignment(target, sourceType, checkMode) { var targetType = checkExpression(target, checkMode); var error = target.parent.kind === 298 /* SyntaxKind.SpreadAssignment */ ? ts.Diagnostics.The_target_of_an_object_rest_assignment_must_be_a_variable_or_a_property_access : ts.Diagnostics.The_left_hand_side_of_an_assignment_expression_must_be_a_variable_or_a_property_access; var optionalError = target.parent.kind === 298 /* SyntaxKind.SpreadAssignment */ ? ts.Diagnostics.The_target_of_an_object_rest_assignment_may_not_be_an_optional_property_access : ts.Diagnostics.The_left_hand_side_of_an_assignment_expression_may_not_be_an_optional_property_access; if (checkReferenceExpression(target, error, optionalError)) { checkTypeAssignableToAndOptionallyElaborate(sourceType, targetType, target, target); } if (ts.isPrivateIdentifierPropertyAccessExpression(target)) { checkExternalEmitHelpers(target.parent, 1048576 /* ExternalEmitHelpers.ClassPrivateFieldSet */); } return sourceType; } /** * This is a *shallow* check: An expression is side-effect-free if the * evaluation of the expression *itself* cannot produce side effects. * For example, x++ / 3 is side-effect free because the / operator * does not have side effects. * The intent is to "smell test" an expression for correctness in positions where * its value is discarded (e.g. the left side of the comma operator). */ function isSideEffectFree(node) { node = ts.skipParentheses(node); switch (node.kind) { case 79 /* SyntaxKind.Identifier */: case 10 /* SyntaxKind.StringLiteral */: case 13 /* SyntaxKind.RegularExpressionLiteral */: case 210 /* SyntaxKind.TaggedTemplateExpression */: case 223 /* SyntaxKind.TemplateExpression */: case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: case 8 /* SyntaxKind.NumericLiteral */: case 9 /* SyntaxKind.BigIntLiteral */: case 110 /* SyntaxKind.TrueKeyword */: case 95 /* SyntaxKind.FalseKeyword */: case 104 /* SyntaxKind.NullKeyword */: case 153 /* SyntaxKind.UndefinedKeyword */: case 213 /* SyntaxKind.FunctionExpression */: case 226 /* SyntaxKind.ClassExpression */: case 214 /* SyntaxKind.ArrowFunction */: case 204 /* SyntaxKind.ArrayLiteralExpression */: case 205 /* SyntaxKind.ObjectLiteralExpression */: case 216 /* SyntaxKind.TypeOfExpression */: case 230 /* SyntaxKind.NonNullExpression */: case 279 /* SyntaxKind.JsxSelfClosingElement */: case 278 /* SyntaxKind.JsxElement */: return true; case 222 /* SyntaxKind.ConditionalExpression */: return isSideEffectFree(node.whenTrue) && isSideEffectFree(node.whenFalse); case 221 /* SyntaxKind.BinaryExpression */: if (ts.isAssignmentOperator(node.operatorToken.kind)) { return false; } return isSideEffectFree(node.left) && isSideEffectFree(node.right); case 219 /* SyntaxKind.PrefixUnaryExpression */: case 220 /* SyntaxKind.PostfixUnaryExpression */: // Unary operators ~, !, +, and - have no side effects. // The rest do. switch (node.operator) { case 53 /* SyntaxKind.ExclamationToken */: case 39 /* SyntaxKind.PlusToken */: case 40 /* SyntaxKind.MinusToken */: case 54 /* SyntaxKind.TildeToken */: return true; } return false; // Some forms listed here for clarity case 217 /* SyntaxKind.VoidExpression */: // Explicit opt-out case 211 /* SyntaxKind.TypeAssertionExpression */: // Not SEF, but can produce useful type warnings case 229 /* SyntaxKind.AsExpression */: // Not SEF, but can produce useful type warnings default: return false; } } function isTypeEqualityComparableTo(source, target) { return (target.flags & 98304 /* TypeFlags.Nullable */) !== 0 || isTypeComparableTo(source, target); } function createCheckBinaryExpression() { var trampoline = ts.createBinaryExpressionTrampoline(onEnter, onLeft, onOperator, onRight, onExit, foldState); return function (node, checkMode) { var result = trampoline(node, checkMode); ts.Debug.assertIsDefined(result); return result; }; function onEnter(node, state, checkMode) { if (state) { state.stackIndex++; state.skip = false; setLeftType(state, /*type*/ undefined); setLastResult(state, /*type*/ undefined); } else { state = { checkMode: checkMode, skip: false, stackIndex: 0, typeStack: [undefined, undefined], }; } if (ts.isInJSFile(node) && ts.getAssignedExpandoInitializer(node)) { state.skip = true; setLastResult(state, checkExpression(node.right, checkMode)); return state; } checkGrammarNullishCoalesceWithLogicalExpression(node); var operator = node.operatorToken.kind; if (operator === 63 /* SyntaxKind.EqualsToken */ && (node.left.kind === 205 /* SyntaxKind.ObjectLiteralExpression */ || node.left.kind === 204 /* SyntaxKind.ArrayLiteralExpression */)) { state.skip = true; setLastResult(state, checkDestructuringAssignment(node.left, checkExpression(node.right, checkMode), checkMode, node.right.kind === 108 /* SyntaxKind.ThisKeyword */)); return state; } return state; } function onLeft(left, state, _node) { if (!state.skip) { return maybeCheckExpression(state, left); } } function onOperator(operatorToken, state, node) { if (!state.skip) { var leftType = getLastResult(state); ts.Debug.assertIsDefined(leftType); setLeftType(state, leftType); setLastResult(state, /*type*/ undefined); var operator = operatorToken.kind; if (operator === 55 /* SyntaxKind.AmpersandAmpersandToken */ || operator === 56 /* SyntaxKind.BarBarToken */ || operator === 60 /* SyntaxKind.QuestionQuestionToken */) { if (operator === 55 /* SyntaxKind.AmpersandAmpersandToken */) { var parent = ts.walkUpParenthesizedExpressions(node.parent); checkTestingKnownTruthyCallableOrAwaitableType(node.left, ts.isIfStatement(parent) ? parent.thenStatement : undefined); } checkTruthinessOfType(leftType, node.left); } } } function onRight(right, state, _node) { if (!state.skip) { return maybeCheckExpression(state, right); } } function onExit(node, state) { var result; if (state.skip) { result = getLastResult(state); } else { var leftType = getLeftType(state); ts.Debug.assertIsDefined(leftType); var rightType = getLastResult(state); ts.Debug.assertIsDefined(rightType); result = checkBinaryLikeExpressionWorker(node.left, node.operatorToken, node.right, leftType, rightType, node); } state.skip = false; setLeftType(state, /*type*/ undefined); setLastResult(state, /*type*/ undefined); state.stackIndex--; return result; } function foldState(state, result, _side) { setLastResult(state, result); return state; } function maybeCheckExpression(state, node) { if (ts.isBinaryExpression(node)) { return node; } setLastResult(state, checkExpression(node, state.checkMode)); } function getLeftType(state) { return state.typeStack[state.stackIndex]; } function setLeftType(state, type) { state.typeStack[state.stackIndex] = type; } function getLastResult(state) { return state.typeStack[state.stackIndex + 1]; } function setLastResult(state, type) { // To reduce overhead, reuse the next stack entry to store the // last result. This avoids the overhead of an additional property // on `WorkArea` and reuses empty stack entries as we walk back up // the stack. state.typeStack[state.stackIndex + 1] = type; } } function checkGrammarNullishCoalesceWithLogicalExpression(node) { var left = node.left, operatorToken = node.operatorToken, right = node.right; if (operatorToken.kind === 60 /* SyntaxKind.QuestionQuestionToken */) { if (ts.isBinaryExpression(left) && (left.operatorToken.kind === 56 /* SyntaxKind.BarBarToken */ || left.operatorToken.kind === 55 /* SyntaxKind.AmpersandAmpersandToken */)) { grammarErrorOnNode(left, ts.Diagnostics._0_and_1_operations_cannot_be_mixed_without_parentheses, ts.tokenToString(left.operatorToken.kind), ts.tokenToString(operatorToken.kind)); } if (ts.isBinaryExpression(right) && (right.operatorToken.kind === 56 /* SyntaxKind.BarBarToken */ || right.operatorToken.kind === 55 /* SyntaxKind.AmpersandAmpersandToken */)) { grammarErrorOnNode(right, ts.Diagnostics._0_and_1_operations_cannot_be_mixed_without_parentheses, ts.tokenToString(right.operatorToken.kind), ts.tokenToString(operatorToken.kind)); } } } // Note that this and `checkBinaryExpression` above should behave mostly the same, except this elides some // expression-wide checks and does not use a work stack to fold nested binary expressions into the same callstack frame function checkBinaryLikeExpression(left, operatorToken, right, checkMode, errorNode) { var operator = operatorToken.kind; if (operator === 63 /* SyntaxKind.EqualsToken */ && (left.kind === 205 /* SyntaxKind.ObjectLiteralExpression */ || left.kind === 204 /* SyntaxKind.ArrayLiteralExpression */)) { return checkDestructuringAssignment(left, checkExpression(right, checkMode), checkMode, right.kind === 108 /* SyntaxKind.ThisKeyword */); } var leftType; if (operator === 55 /* SyntaxKind.AmpersandAmpersandToken */ || operator === 56 /* SyntaxKind.BarBarToken */ || operator === 60 /* SyntaxKind.QuestionQuestionToken */) { leftType = checkTruthinessExpression(left, checkMode); } else { leftType = checkExpression(left, checkMode); } var rightType = checkExpression(right, checkMode); return checkBinaryLikeExpressionWorker(left, operatorToken, right, leftType, rightType, errorNode); } function checkBinaryLikeExpressionWorker(left, operatorToken, right, leftType, rightType, errorNode) { var operator = operatorToken.kind; switch (operator) { case 41 /* SyntaxKind.AsteriskToken */: case 42 /* SyntaxKind.AsteriskAsteriskToken */: case 66 /* SyntaxKind.AsteriskEqualsToken */: case 67 /* SyntaxKind.AsteriskAsteriskEqualsToken */: case 43 /* SyntaxKind.SlashToken */: case 68 /* SyntaxKind.SlashEqualsToken */: case 44 /* SyntaxKind.PercentToken */: case 69 /* SyntaxKind.PercentEqualsToken */: case 40 /* SyntaxKind.MinusToken */: case 65 /* SyntaxKind.MinusEqualsToken */: case 47 /* SyntaxKind.LessThanLessThanToken */: case 70 /* SyntaxKind.LessThanLessThanEqualsToken */: case 48 /* SyntaxKind.GreaterThanGreaterThanToken */: case 71 /* SyntaxKind.GreaterThanGreaterThanEqualsToken */: case 49 /* SyntaxKind.GreaterThanGreaterThanGreaterThanToken */: case 72 /* SyntaxKind.GreaterThanGreaterThanGreaterThanEqualsToken */: case 51 /* SyntaxKind.BarToken */: case 74 /* SyntaxKind.BarEqualsToken */: case 52 /* SyntaxKind.CaretToken */: case 78 /* SyntaxKind.CaretEqualsToken */: case 50 /* SyntaxKind.AmpersandToken */: case 73 /* SyntaxKind.AmpersandEqualsToken */: if (leftType === silentNeverType || rightType === silentNeverType) { return silentNeverType; } leftType = checkNonNullType(leftType, left); rightType = checkNonNullType(rightType, right); var suggestedOperator = void 0; // if a user tries to apply a bitwise operator to 2 boolean operands // try and return them a helpful suggestion if ((leftType.flags & 528 /* TypeFlags.BooleanLike */) && (rightType.flags & 528 /* TypeFlags.BooleanLike */) && (suggestedOperator = getSuggestedBooleanOperator(operatorToken.kind)) !== undefined) { error(errorNode || operatorToken, ts.Diagnostics.The_0_operator_is_not_allowed_for_boolean_types_Consider_using_1_instead, ts.tokenToString(operatorToken.kind), ts.tokenToString(suggestedOperator)); return numberType; } else { // otherwise just check each operand separately and report errors as normal var leftOk = checkArithmeticOperandType(left, leftType, ts.Diagnostics.The_left_hand_side_of_an_arithmetic_operation_must_be_of_type_any_number_bigint_or_an_enum_type, /*isAwaitValid*/ true); var rightOk = checkArithmeticOperandType(right, rightType, ts.Diagnostics.The_right_hand_side_of_an_arithmetic_operation_must_be_of_type_any_number_bigint_or_an_enum_type, /*isAwaitValid*/ true); var resultType_1; // If both are any or unknown, allow operation; assume it will resolve to number if ((isTypeAssignableToKind(leftType, 3 /* TypeFlags.AnyOrUnknown */) && isTypeAssignableToKind(rightType, 3 /* TypeFlags.AnyOrUnknown */)) || // Or, if neither could be bigint, implicit coercion results in a number result !(maybeTypeOfKind(leftType, 2112 /* TypeFlags.BigIntLike */) || maybeTypeOfKind(rightType, 2112 /* TypeFlags.BigIntLike */))) { resultType_1 = numberType; } // At least one is assignable to bigint, so check that both are else if (bothAreBigIntLike(leftType, rightType)) { switch (operator) { case 49 /* SyntaxKind.GreaterThanGreaterThanGreaterThanToken */: case 72 /* SyntaxKind.GreaterThanGreaterThanGreaterThanEqualsToken */: reportOperatorError(); break; case 42 /* SyntaxKind.AsteriskAsteriskToken */: case 67 /* SyntaxKind.AsteriskAsteriskEqualsToken */: if (languageVersion < 3 /* ScriptTarget.ES2016 */) { error(errorNode, ts.Diagnostics.Exponentiation_cannot_be_performed_on_bigint_values_unless_the_target_option_is_set_to_es2016_or_later); } } resultType_1 = bigintType; } // Exactly one of leftType/rightType is assignable to bigint else { reportOperatorError(bothAreBigIntLike); resultType_1 = errorType; } if (leftOk && rightOk) { checkAssignmentOperator(resultType_1); } return resultType_1; } case 39 /* SyntaxKind.PlusToken */: case 64 /* SyntaxKind.PlusEqualsToken */: if (leftType === silentNeverType || rightType === silentNeverType) { return silentNeverType; } if (!isTypeAssignableToKind(leftType, 402653316 /* TypeFlags.StringLike */) && !isTypeAssignableToKind(rightType, 402653316 /* TypeFlags.StringLike */)) { leftType = checkNonNullType(leftType, left); rightType = checkNonNullType(rightType, right); } var resultType = void 0; if (isTypeAssignableToKind(leftType, 296 /* TypeFlags.NumberLike */, /*strict*/ true) && isTypeAssignableToKind(rightType, 296 /* TypeFlags.NumberLike */, /*strict*/ true)) { // Operands of an enum type are treated as having the primitive type Number. // If both operands are of the Number primitive type, the result is of the Number primitive type. resultType = numberType; } else if (isTypeAssignableToKind(leftType, 2112 /* TypeFlags.BigIntLike */, /*strict*/ true) && isTypeAssignableToKind(rightType, 2112 /* TypeFlags.BigIntLike */, /*strict*/ true)) { // If both operands are of the BigInt primitive type, the result is of the BigInt primitive type. resultType = bigintType; } else if (isTypeAssignableToKind(leftType, 402653316 /* TypeFlags.StringLike */, /*strict*/ true) || isTypeAssignableToKind(rightType, 402653316 /* TypeFlags.StringLike */, /*strict*/ true)) { // If one or both operands are of the String primitive type, the result is of the String primitive type. resultType = stringType; } else if (isTypeAny(leftType) || isTypeAny(rightType)) { // Otherwise, the result is of type Any. // NOTE: unknown type here denotes error type. Old compiler treated this case as any type so do we. resultType = isErrorType(leftType) || isErrorType(rightType) ? errorType : anyType; } // Symbols are not allowed at all in arithmetic expressions if (resultType && !checkForDisallowedESSymbolOperand(operator)) { return resultType; } if (!resultType) { // Types that have a reasonably good chance of being a valid operand type. // If both types have an awaited type of one of these, we'll assume the user // might be missing an await without doing an exhaustive check that inserting // await(s) will actually be a completely valid binary expression. var closeEnoughKind_1 = 296 /* TypeFlags.NumberLike */ | 2112 /* TypeFlags.BigIntLike */ | 402653316 /* TypeFlags.StringLike */ | 3 /* TypeFlags.AnyOrUnknown */; reportOperatorError(function (left, right) { return isTypeAssignableToKind(left, closeEnoughKind_1) && isTypeAssignableToKind(right, closeEnoughKind_1); }); return anyType; } if (operator === 64 /* SyntaxKind.PlusEqualsToken */) { checkAssignmentOperator(resultType); } return resultType; case 29 /* SyntaxKind.LessThanToken */: case 31 /* SyntaxKind.GreaterThanToken */: case 32 /* SyntaxKind.LessThanEqualsToken */: case 33 /* SyntaxKind.GreaterThanEqualsToken */: if (checkForDisallowedESSymbolOperand(operator)) { leftType = getBaseTypeOfLiteralType(checkNonNullType(leftType, left)); rightType = getBaseTypeOfLiteralType(checkNonNullType(rightType, right)); reportOperatorErrorUnless(function (left, right) { return isTypeComparableTo(left, right) || isTypeComparableTo(right, left) || (isTypeAssignableTo(left, numberOrBigIntType) && isTypeAssignableTo(right, numberOrBigIntType)); }); } return booleanType; case 34 /* SyntaxKind.EqualsEqualsToken */: case 35 /* SyntaxKind.ExclamationEqualsToken */: case 36 /* SyntaxKind.EqualsEqualsEqualsToken */: case 37 /* SyntaxKind.ExclamationEqualsEqualsToken */: reportOperatorErrorUnless(function (left, right) { return isTypeEqualityComparableTo(left, right) || isTypeEqualityComparableTo(right, left); }); return booleanType; case 102 /* SyntaxKind.InstanceOfKeyword */: return checkInstanceOfExpression(left, right, leftType, rightType); case 101 /* SyntaxKind.InKeyword */: return checkInExpression(left, right, leftType, rightType); case 55 /* SyntaxKind.AmpersandAmpersandToken */: case 76 /* SyntaxKind.AmpersandAmpersandEqualsToken */: { var resultType_2 = getTypeFacts(leftType) & 4194304 /* TypeFacts.Truthy */ ? getUnionType([extractDefinitelyFalsyTypes(strictNullChecks ? leftType : getBaseTypeOfLiteralType(rightType)), rightType]) : leftType; if (operator === 76 /* SyntaxKind.AmpersandAmpersandEqualsToken */) { checkAssignmentOperator(rightType); } return resultType_2; } case 56 /* SyntaxKind.BarBarToken */: case 75 /* SyntaxKind.BarBarEqualsToken */: { var resultType_3 = getTypeFacts(leftType) & 8388608 /* TypeFacts.Falsy */ ? getUnionType([removeDefinitelyFalsyTypes(leftType), rightType], 2 /* UnionReduction.Subtype */) : leftType; if (operator === 75 /* SyntaxKind.BarBarEqualsToken */) { checkAssignmentOperator(rightType); } return resultType_3; } case 60 /* SyntaxKind.QuestionQuestionToken */: case 77 /* SyntaxKind.QuestionQuestionEqualsToken */: { var resultType_4 = getTypeFacts(leftType) & 262144 /* TypeFacts.EQUndefinedOrNull */ ? getUnionType([getNonNullableType(leftType), rightType], 2 /* UnionReduction.Subtype */) : leftType; if (operator === 77 /* SyntaxKind.QuestionQuestionEqualsToken */) { checkAssignmentOperator(rightType); } return resultType_4; } case 63 /* SyntaxKind.EqualsToken */: var declKind = ts.isBinaryExpression(left.parent) ? ts.getAssignmentDeclarationKind(left.parent) : 0 /* AssignmentDeclarationKind.None */; checkAssignmentDeclaration(declKind, rightType); if (isAssignmentDeclaration(declKind)) { if (!(rightType.flags & 524288 /* TypeFlags.Object */) || declKind !== 2 /* AssignmentDeclarationKind.ModuleExports */ && declKind !== 6 /* AssignmentDeclarationKind.Prototype */ && !isEmptyObjectType(rightType) && !isFunctionObjectType(rightType) && !(ts.getObjectFlags(rightType) & 1 /* ObjectFlags.Class */)) { // don't check assignability of module.exports=, C.prototype=, or expando types because they will necessarily be incomplete checkAssignmentOperator(rightType); } return leftType; } else { checkAssignmentOperator(rightType); return getRegularTypeOfObjectLiteral(rightType); } case 27 /* SyntaxKind.CommaToken */: if (!compilerOptions.allowUnreachableCode && isSideEffectFree(left) && !isEvalNode(right)) { var sf = ts.getSourceFileOfNode(left); var sourceText = sf.text; var start_3 = ts.skipTrivia(sourceText, left.pos); var isInDiag2657 = sf.parseDiagnostics.some(function (diag) { if (diag.code !== ts.Diagnostics.JSX_expressions_must_have_one_parent_element.code) return false; return ts.textSpanContainsPosition(diag, start_3); }); if (!isInDiag2657) error(left, ts.Diagnostics.Left_side_of_comma_operator_is_unused_and_has_no_side_effects); } return rightType; default: return ts.Debug.fail(); } function bothAreBigIntLike(left, right) { return isTypeAssignableToKind(left, 2112 /* TypeFlags.BigIntLike */) && isTypeAssignableToKind(right, 2112 /* TypeFlags.BigIntLike */); } function checkAssignmentDeclaration(kind, rightType) { if (kind === 2 /* AssignmentDeclarationKind.ModuleExports */) { for (var _i = 0, _a = getPropertiesOfObjectType(rightType); _i < _a.length; _i++) { var prop = _a[_i]; var propType = getTypeOfSymbol(prop); if (propType.symbol && propType.symbol.flags & 32 /* SymbolFlags.Class */) { var name = prop.escapedName; var symbol = resolveName(prop.valueDeclaration, name, 788968 /* SymbolFlags.Type */, undefined, name, /*isUse*/ false); if ((symbol === null || symbol === void 0 ? void 0 : symbol.declarations) && symbol.declarations.some(ts.isJSDocTypedefTag)) { addDuplicateDeclarationErrorsForSymbols(symbol, ts.Diagnostics.Duplicate_identifier_0, ts.unescapeLeadingUnderscores(name), prop); addDuplicateDeclarationErrorsForSymbols(prop, ts.Diagnostics.Duplicate_identifier_0, ts.unescapeLeadingUnderscores(name), symbol); } } } } } function isEvalNode(node) { return node.kind === 79 /* SyntaxKind.Identifier */ && node.escapedText === "eval"; } // Return true if there was no error, false if there was an error. function checkForDisallowedESSymbolOperand(operator) { var offendingSymbolOperand = maybeTypeOfKindConsideringBaseConstraint(leftType, 12288 /* TypeFlags.ESSymbolLike */) ? left : maybeTypeOfKindConsideringBaseConstraint(rightType, 12288 /* TypeFlags.ESSymbolLike */) ? right : undefined; if (offendingSymbolOperand) { error(offendingSymbolOperand, ts.Diagnostics.The_0_operator_cannot_be_applied_to_type_symbol, ts.tokenToString(operator)); return false; } return true; } function getSuggestedBooleanOperator(operator) { switch (operator) { case 51 /* SyntaxKind.BarToken */: case 74 /* SyntaxKind.BarEqualsToken */: return 56 /* SyntaxKind.BarBarToken */; case 52 /* SyntaxKind.CaretToken */: case 78 /* SyntaxKind.CaretEqualsToken */: return 37 /* SyntaxKind.ExclamationEqualsEqualsToken */; case 50 /* SyntaxKind.AmpersandToken */: case 73 /* SyntaxKind.AmpersandEqualsToken */: return 55 /* SyntaxKind.AmpersandAmpersandToken */; default: return undefined; } } function checkAssignmentOperator(valueType) { if (ts.isAssignmentOperator(operator)) { addLazyDiagnostic(checkAssignmentOperatorWorker); } function checkAssignmentOperatorWorker() { // TypeScript 1.0 spec (April 2014): 4.17 // An assignment of the form // VarExpr = ValueExpr // requires VarExpr to be classified as a reference // A compound assignment furthermore requires VarExpr to be classified as a reference (section 4.1) // and the type of the non-compound operation to be assignable to the type of VarExpr. if (checkReferenceExpression(left, ts.Diagnostics.The_left_hand_side_of_an_assignment_expression_must_be_a_variable_or_a_property_access, ts.Diagnostics.The_left_hand_side_of_an_assignment_expression_may_not_be_an_optional_property_access) && (!ts.isIdentifier(left) || ts.unescapeLeadingUnderscores(left.escapedText) !== "exports")) { var headMessage = void 0; if (exactOptionalPropertyTypes && ts.isPropertyAccessExpression(left) && maybeTypeOfKind(valueType, 32768 /* TypeFlags.Undefined */)) { var target = getTypeOfPropertyOfType(getTypeOfExpression(left.expression), left.name.escapedText); if (isExactOptionalPropertyMismatch(valueType, target)) { headMessage = ts.Diagnostics.Type_0_is_not_assignable_to_type_1_with_exactOptionalPropertyTypes_Colon_true_Consider_adding_undefined_to_the_type_of_the_target; } } // to avoid cascading errors check assignability only if 'isReference' check succeeded and no errors were reported checkTypeAssignableToAndOptionallyElaborate(valueType, leftType, left, right, headMessage); } } } function isAssignmentDeclaration(kind) { var _a; switch (kind) { case 2 /* AssignmentDeclarationKind.ModuleExports */: return true; case 1 /* AssignmentDeclarationKind.ExportsProperty */: case 5 /* AssignmentDeclarationKind.Property */: case 6 /* AssignmentDeclarationKind.Prototype */: case 3 /* AssignmentDeclarationKind.PrototypeProperty */: case 4 /* AssignmentDeclarationKind.ThisProperty */: var symbol = getSymbolOfNode(left); var init = ts.getAssignedExpandoInitializer(right); return !!init && ts.isObjectLiteralExpression(init) && !!((_a = symbol === null || symbol === void 0 ? void 0 : symbol.exports) === null || _a === void 0 ? void 0 : _a.size); default: return false; } } /** * Returns true if an error is reported */ function reportOperatorErrorUnless(typesAreCompatible) { if (!typesAreCompatible(leftType, rightType)) { reportOperatorError(typesAreCompatible); return true; } return false; } function reportOperatorError(isRelated) { var _a; var wouldWorkWithAwait = false; var errNode = errorNode || operatorToken; if (isRelated) { var awaitedLeftType = getAwaitedTypeNoAlias(leftType); var awaitedRightType = getAwaitedTypeNoAlias(rightType); wouldWorkWithAwait = !(awaitedLeftType === leftType && awaitedRightType === rightType) && !!(awaitedLeftType && awaitedRightType) && isRelated(awaitedLeftType, awaitedRightType); } var effectiveLeft = leftType; var effectiveRight = rightType; if (!wouldWorkWithAwait && isRelated) { _a = getBaseTypesIfUnrelated(leftType, rightType, isRelated), effectiveLeft = _a[0], effectiveRight = _a[1]; } var _b = getTypeNamesForErrorDisplay(effectiveLeft, effectiveRight), leftStr = _b[0], rightStr = _b[1]; if (!tryGiveBetterPrimaryError(errNode, wouldWorkWithAwait, leftStr, rightStr)) { errorAndMaybeSuggestAwait(errNode, wouldWorkWithAwait, ts.Diagnostics.Operator_0_cannot_be_applied_to_types_1_and_2, ts.tokenToString(operatorToken.kind), leftStr, rightStr); } } function tryGiveBetterPrimaryError(errNode, maybeMissingAwait, leftStr, rightStr) { var typeName; switch (operatorToken.kind) { case 36 /* SyntaxKind.EqualsEqualsEqualsToken */: case 34 /* SyntaxKind.EqualsEqualsToken */: typeName = "false"; break; case 37 /* SyntaxKind.ExclamationEqualsEqualsToken */: case 35 /* SyntaxKind.ExclamationEqualsToken */: typeName = "true"; } if (typeName) { return errorAndMaybeSuggestAwait(errNode, maybeMissingAwait, ts.Diagnostics.This_condition_will_always_return_0_since_the_types_1_and_2_have_no_overlap, typeName, leftStr, rightStr); } return undefined; } } function getBaseTypesIfUnrelated(leftType, rightType, isRelated) { var effectiveLeft = leftType; var effectiveRight = rightType; var leftBase = getBaseTypeOfLiteralType(leftType); var rightBase = getBaseTypeOfLiteralType(rightType); if (!isRelated(leftBase, rightBase)) { effectiveLeft = leftBase; effectiveRight = rightBase; } return [effectiveLeft, effectiveRight]; } function checkYieldExpression(node) { addLazyDiagnostic(checkYieldExpressionGrammar); var func = ts.getContainingFunction(node); if (!func) return anyType; var functionFlags = ts.getFunctionFlags(func); if (!(functionFlags & 1 /* FunctionFlags.Generator */)) { // If the user's code is syntactically correct, the func should always have a star. After all, we are in a yield context. return anyType; } var isAsync = (functionFlags & 2 /* FunctionFlags.Async */) !== 0; if (node.asteriskToken) { // Async generator functions prior to ESNext require the __await, __asyncDelegator, // and __asyncValues helpers if (isAsync && languageVersion < 99 /* ScriptTarget.ESNext */) { checkExternalEmitHelpers(node, 26624 /* ExternalEmitHelpers.AsyncDelegatorIncludes */); } // Generator functions prior to ES2015 require the __values helper if (!isAsync && languageVersion < 2 /* ScriptTarget.ES2015 */ && compilerOptions.downlevelIteration) { checkExternalEmitHelpers(node, 256 /* ExternalEmitHelpers.Values */); } } // There is no point in doing an assignability check if the function // has no explicit return type because the return type is directly computed // from the yield expressions. var returnType = getReturnTypeFromAnnotation(func); var iterationTypes = returnType && getIterationTypesOfGeneratorFunctionReturnType(returnType, isAsync); var signatureYieldType = iterationTypes && iterationTypes.yieldType || anyType; var signatureNextType = iterationTypes && iterationTypes.nextType || anyType; var resolvedSignatureNextType = isAsync ? getAwaitedType(signatureNextType) || anyType : signatureNextType; var yieldExpressionType = node.expression ? checkExpression(node.expression) : undefinedWideningType; var yieldedType = getYieldedTypeOfYieldExpression(node, yieldExpressionType, resolvedSignatureNextType, isAsync); if (returnType && yieldedType) { checkTypeAssignableToAndOptionallyElaborate(yieldedType, signatureYieldType, node.expression || node, node.expression); } if (node.asteriskToken) { var use = isAsync ? 19 /* IterationUse.AsyncYieldStar */ : 17 /* IterationUse.YieldStar */; return getIterationTypeOfIterable(use, 1 /* IterationTypeKind.Return */, yieldExpressionType, node.expression) || anyType; } else if (returnType) { return getIterationTypeOfGeneratorFunctionReturnType(2 /* IterationTypeKind.Next */, returnType, isAsync) || anyType; } var type = getContextualIterationType(2 /* IterationTypeKind.Next */, func); if (!type) { type = anyType; addLazyDiagnostic(function () { if (noImplicitAny && !ts.expressionResultIsUnused(node)) { var contextualType = getContextualType(node); if (!contextualType || isTypeAny(contextualType)) { error(node, ts.Diagnostics.yield_expression_implicitly_results_in_an_any_type_because_its_containing_generator_lacks_a_return_type_annotation); } } }); } return type; function checkYieldExpressionGrammar() { if (!(node.flags & 8192 /* NodeFlags.YieldContext */)) { grammarErrorOnFirstToken(node, ts.Diagnostics.A_yield_expression_is_only_allowed_in_a_generator_body); } if (isInParameterInitializerBeforeContainingFunction(node)) { error(node, ts.Diagnostics.yield_expressions_cannot_be_used_in_a_parameter_initializer); } } } function checkConditionalExpression(node, checkMode) { checkTruthinessExpression(node.condition); checkTestingKnownTruthyCallableOrAwaitableType(node.condition, node.whenTrue); var type1 = checkExpression(node.whenTrue, checkMode); var type2 = checkExpression(node.whenFalse, checkMode); return getUnionType([type1, type2], 2 /* UnionReduction.Subtype */); } function isTemplateLiteralContext(node) { var parent = node.parent; return ts.isParenthesizedExpression(parent) && isTemplateLiteralContext(parent) || ts.isElementAccessExpression(parent) && parent.argumentExpression === node; } function checkTemplateExpression(node) { var texts = [node.head.text]; var types = []; for (var _i = 0, _a = node.templateSpans; _i < _a.length; _i++) { var span = _a[_i]; var type = checkExpression(span.expression); if (maybeTypeOfKindConsideringBaseConstraint(type, 12288 /* TypeFlags.ESSymbolLike */)) { error(span.expression, ts.Diagnostics.Implicit_conversion_of_a_symbol_to_a_string_will_fail_at_runtime_Consider_wrapping_this_expression_in_String); } texts.push(span.literal.text); types.push(isTypeAssignableTo(type, templateConstraintType) ? type : stringType); } return isConstContext(node) || isTemplateLiteralContext(node) || someType(getContextualType(node) || unknownType, isTemplateLiteralContextualType) ? getTemplateLiteralType(texts, types) : stringType; } function isTemplateLiteralContextualType(type) { return !!(type.flags & (128 /* TypeFlags.StringLiteral */ | 134217728 /* TypeFlags.TemplateLiteral */) || type.flags & 58982400 /* TypeFlags.InstantiableNonPrimitive */ && maybeTypeOfKind(getBaseConstraintOfType(type) || unknownType, 402653316 /* TypeFlags.StringLike */)); } function getContextNode(node) { if (node.kind === 286 /* SyntaxKind.JsxAttributes */ && !ts.isJsxSelfClosingElement(node.parent)) { return node.parent.parent; // Needs to be the root JsxElement, so it encompasses the attributes _and_ the children (which are essentially part of the attributes) } return node; } function checkExpressionWithContextualType(node, contextualType, inferenceContext, checkMode) { var context = getContextNode(node); var saveContextualType = context.contextualType; var saveInferenceContext = context.inferenceContext; try { context.contextualType = contextualType; context.inferenceContext = inferenceContext; var type = checkExpression(node, checkMode | 1 /* CheckMode.Contextual */ | (inferenceContext ? 2 /* CheckMode.Inferential */ : 0)); // In CheckMode.Inferential we collect intra-expression inference sites to process before fixing any type // parameters. This information is no longer needed after the call to checkExpression. if (inferenceContext && inferenceContext.intraExpressionInferenceSites) { inferenceContext.intraExpressionInferenceSites = undefined; } // We strip literal freshness when an appropriate contextual type is present such that contextually typed // literals always preserve their literal types (otherwise they might widen during type inference). An alternative // here would be to not mark contextually typed literals as fresh in the first place. var result = maybeTypeOfKind(type, 2944 /* TypeFlags.Literal */) && isLiteralOfContextualType(type, instantiateContextualType(contextualType, node)) ? getRegularTypeOfLiteralType(type) : type; return result; } finally { // In the event our operation is canceled or some other exception occurs, reset the contextual type // so that we do not accidentally hold onto an instance of the checker, as a Type created in the services layer // may hold onto the checker that created it. context.contextualType = saveContextualType; context.inferenceContext = saveInferenceContext; } } function checkExpressionCached(node, checkMode) { if (checkMode && checkMode !== 0 /* CheckMode.Normal */) { return checkExpression(node, checkMode); } var links = getNodeLinks(node); if (!links.resolvedType) { // When computing a type that we're going to cache, we need to ignore any ongoing control flow // analysis because variables may have transient types in indeterminable states. Moving flowLoopStart // to the top of the stack ensures all transient types are computed from a known point. var saveFlowLoopStart = flowLoopStart; var saveFlowTypeCache = flowTypeCache; flowLoopStart = flowLoopCount; flowTypeCache = undefined; links.resolvedType = checkExpression(node, checkMode); flowTypeCache = saveFlowTypeCache; flowLoopStart = saveFlowLoopStart; } return links.resolvedType; } function isTypeAssertion(node) { node = ts.skipParentheses(node, /*excludeJSDocTypeAssertions*/ true); return node.kind === 211 /* SyntaxKind.TypeAssertionExpression */ || node.kind === 229 /* SyntaxKind.AsExpression */ || ts.isJSDocTypeAssertion(node); } function checkDeclarationInitializer(declaration, checkMode, contextualType) { var initializer = ts.getEffectiveInitializer(declaration); var type = getQuickTypeOfExpression(initializer) || (contextualType ? checkExpressionWithContextualType(initializer, contextualType, /*inferenceContext*/ undefined, checkMode || 0 /* CheckMode.Normal */) : checkExpressionCached(initializer, checkMode)); return ts.isParameter(declaration) && declaration.name.kind === 202 /* SyntaxKind.ArrayBindingPattern */ && isTupleType(type) && !type.target.hasRestElement && getTypeReferenceArity(type) < declaration.name.elements.length ? padTupleType(type, declaration.name) : type; } function padTupleType(type, pattern) { var patternElements = pattern.elements; var elementTypes = getTypeArguments(type).slice(); var elementFlags = type.target.elementFlags.slice(); for (var i = getTypeReferenceArity(type); i < patternElements.length; i++) { var e = patternElements[i]; if (i < patternElements.length - 1 || !(e.kind === 203 /* SyntaxKind.BindingElement */ && e.dotDotDotToken)) { elementTypes.push(!ts.isOmittedExpression(e) && hasDefaultValue(e) ? getTypeFromBindingElement(e, /*includePatternInType*/ false, /*reportErrors*/ false) : anyType); elementFlags.push(2 /* ElementFlags.Optional */); if (!ts.isOmittedExpression(e) && !hasDefaultValue(e)) { reportImplicitAny(e, anyType); } } } return createTupleType(elementTypes, elementFlags, type.target.readonly); } function widenTypeInferredFromInitializer(declaration, type) { var widened = ts.getCombinedNodeFlags(declaration) & 2 /* NodeFlags.Const */ || ts.isDeclarationReadonly(declaration) ? type : getWidenedLiteralType(type); if (ts.isInJSFile(declaration)) { if (isEmptyLiteralType(widened)) { reportImplicitAny(declaration, anyType); return anyType; } else if (isEmptyArrayLiteralType(widened)) { reportImplicitAny(declaration, anyArrayType); return anyArrayType; } } return widened; } function isLiteralOfContextualType(candidateType, contextualType) { if (contextualType) { if (contextualType.flags & 3145728 /* TypeFlags.UnionOrIntersection */) { var types = contextualType.types; return ts.some(types, function (t) { return isLiteralOfContextualType(candidateType, t); }); } if (contextualType.flags & 58982400 /* TypeFlags.InstantiableNonPrimitive */) { // If the contextual type is a type variable constrained to a primitive type, consider // this a literal context for literals of that primitive type. For example, given a // type parameter 'T extends string', infer string literal types for T. var constraint = getBaseConstraintOfType(contextualType) || unknownType; return maybeTypeOfKind(constraint, 4 /* TypeFlags.String */) && maybeTypeOfKind(candidateType, 128 /* TypeFlags.StringLiteral */) || maybeTypeOfKind(constraint, 8 /* TypeFlags.Number */) && maybeTypeOfKind(candidateType, 256 /* TypeFlags.NumberLiteral */) || maybeTypeOfKind(constraint, 64 /* TypeFlags.BigInt */) && maybeTypeOfKind(candidateType, 2048 /* TypeFlags.BigIntLiteral */) || maybeTypeOfKind(constraint, 4096 /* TypeFlags.ESSymbol */) && maybeTypeOfKind(candidateType, 8192 /* TypeFlags.UniqueESSymbol */) || isLiteralOfContextualType(candidateType, constraint); } // If the contextual type is a literal of a particular primitive type, we consider this a // literal context for all literals of that primitive type. return !!(contextualType.flags & (128 /* TypeFlags.StringLiteral */ | 4194304 /* TypeFlags.Index */ | 134217728 /* TypeFlags.TemplateLiteral */ | 268435456 /* TypeFlags.StringMapping */) && maybeTypeOfKind(candidateType, 128 /* TypeFlags.StringLiteral */) || contextualType.flags & 256 /* TypeFlags.NumberLiteral */ && maybeTypeOfKind(candidateType, 256 /* TypeFlags.NumberLiteral */) || contextualType.flags & 2048 /* TypeFlags.BigIntLiteral */ && maybeTypeOfKind(candidateType, 2048 /* TypeFlags.BigIntLiteral */) || contextualType.flags & 512 /* TypeFlags.BooleanLiteral */ && maybeTypeOfKind(candidateType, 512 /* TypeFlags.BooleanLiteral */) || contextualType.flags & 8192 /* TypeFlags.UniqueESSymbol */ && maybeTypeOfKind(candidateType, 8192 /* TypeFlags.UniqueESSymbol */)); } return false; } function isConstContext(node) { var parent = node.parent; return ts.isAssertionExpression(parent) && ts.isConstTypeReference(parent.type) || ts.isJSDocTypeAssertion(parent) && ts.isConstTypeReference(ts.getJSDocTypeAssertionType(parent)) || (ts.isParenthesizedExpression(parent) || ts.isArrayLiteralExpression(parent) || ts.isSpreadElement(parent)) && isConstContext(parent) || (ts.isPropertyAssignment(parent) || ts.isShorthandPropertyAssignment(parent) || ts.isTemplateSpan(parent)) && isConstContext(parent.parent); } function checkExpressionForMutableLocation(node, checkMode, contextualType, forceTuple) { var type = checkExpression(node, checkMode, forceTuple); return isConstContext(node) || ts.isCommonJsExportedExpression(node) ? getRegularTypeOfLiteralType(type) : isTypeAssertion(node) ? type : getWidenedLiteralLikeTypeForContextualType(type, instantiateContextualType(arguments.length === 2 ? getContextualType(node) : contextualType, node)); } function checkPropertyAssignment(node, checkMode) { // Do not use hasDynamicName here, because that returns false for well known symbols. // We want to perform checkComputedPropertyName for all computed properties, including // well known symbols. if (node.name.kind === 162 /* SyntaxKind.ComputedPropertyName */) { checkComputedPropertyName(node.name); } return checkExpressionForMutableLocation(node.initializer, checkMode); } function checkObjectLiteralMethod(node, checkMode) { // Grammar checking checkGrammarMethod(node); // Do not use hasDynamicName here, because that returns false for well known symbols. // We want to perform checkComputedPropertyName for all computed properties, including // well known symbols. if (node.name.kind === 162 /* SyntaxKind.ComputedPropertyName */) { checkComputedPropertyName(node.name); } var uninstantiatedType = checkFunctionExpressionOrObjectLiteralMethod(node, checkMode); return instantiateTypeWithSingleGenericCallSignature(node, uninstantiatedType, checkMode); } function instantiateTypeWithSingleGenericCallSignature(node, type, checkMode) { if (checkMode && checkMode & (2 /* CheckMode.Inferential */ | 8 /* CheckMode.SkipGenericFunctions */)) { var callSignature = getSingleSignature(type, 0 /* SignatureKind.Call */, /*allowMembers*/ true); var constructSignature = getSingleSignature(type, 1 /* SignatureKind.Construct */, /*allowMembers*/ true); var signature = callSignature || constructSignature; if (signature && signature.typeParameters) { var contextualType = getApparentTypeOfContextualType(node, 2 /* ContextFlags.NoConstraints */); if (contextualType) { var contextualSignature = getSingleSignature(getNonNullableType(contextualType), callSignature ? 0 /* SignatureKind.Call */ : 1 /* SignatureKind.Construct */, /*allowMembers*/ false); if (contextualSignature && !contextualSignature.typeParameters) { if (checkMode & 8 /* CheckMode.SkipGenericFunctions */) { skippedGenericFunction(node, checkMode); return anyFunctionType; } var context = getInferenceContext(node); // We have an expression that is an argument of a generic function for which we are performing // type argument inference. The expression is of a function type with a single generic call // signature and a contextual function type with a single non-generic call signature. Now check // if the outer function returns a function type with a single non-generic call signature and // if some of the outer function type parameters have no inferences so far. If so, we can // potentially add inferred type parameters to the outer function return type. var returnType = context.signature && getReturnTypeOfSignature(context.signature); var returnSignature = returnType && getSingleCallOrConstructSignature(returnType); if (returnSignature && !returnSignature.typeParameters && !ts.every(context.inferences, hasInferenceCandidates)) { // Instantiate the signature with its own type parameters as type arguments, possibly // renaming the type parameters to ensure they have unique names. var uniqueTypeParameters = getUniqueTypeParameters(context, signature.typeParameters); var instantiatedSignature = getSignatureInstantiationWithoutFillingInTypeArguments(signature, uniqueTypeParameters); // Infer from the parameters of the instantiated signature to the parameters of the // contextual signature starting with an empty set of inference candidates. var inferences_3 = ts.map(context.inferences, function (info) { return createInferenceInfo(info.typeParameter); }); applyToParameterTypes(instantiatedSignature, contextualSignature, function (source, target) { inferTypes(inferences_3, source, target, /*priority*/ 0, /*contravariant*/ true); }); if (ts.some(inferences_3, hasInferenceCandidates)) { // We have inference candidates, indicating that one or more type parameters are referenced // in the parameter types of the contextual signature. Now also infer from the return type. applyToReturnTypes(instantiatedSignature, contextualSignature, function (source, target) { inferTypes(inferences_3, source, target); }); // If the type parameters for which we produced candidates do not have any inferences yet, // we adopt the new inference candidates and add the type parameters of the expression type // to the set of inferred type parameters for the outer function return type. if (!hasOverlappingInferences(context.inferences, inferences_3)) { mergeInferences(context.inferences, inferences_3); context.inferredTypeParameters = ts.concatenate(context.inferredTypeParameters, uniqueTypeParameters); return getOrCreateTypeFromSignature(instantiatedSignature); } } } return getOrCreateTypeFromSignature(instantiateSignatureInContextOf(signature, contextualSignature, context)); } } } } return type; } function skippedGenericFunction(node, checkMode) { if (checkMode & 2 /* CheckMode.Inferential */) { // We have skipped a generic function during inferential typing. Obtain the inference context and // indicate this has occurred such that we know a second pass of inference is be needed. var context = getInferenceContext(node); context.flags |= 4 /* InferenceFlags.SkippedGenericFunction */; } } function hasInferenceCandidates(info) { return !!(info.candidates || info.contraCandidates); } function hasOverlappingInferences(a, b) { for (var i = 0; i < a.length; i++) { if (hasInferenceCandidates(a[i]) && hasInferenceCandidates(b[i])) { return true; } } return false; } function mergeInferences(target, source) { for (var i = 0; i < target.length; i++) { if (!hasInferenceCandidates(target[i]) && hasInferenceCandidates(source[i])) { target[i] = source[i]; } } } function getUniqueTypeParameters(context, typeParameters) { var result = []; var oldTypeParameters; var newTypeParameters; for (var _i = 0, typeParameters_2 = typeParameters; _i < typeParameters_2.length; _i++) { var tp = typeParameters_2[_i]; var name = tp.symbol.escapedName; if (hasTypeParameterByName(context.inferredTypeParameters, name) || hasTypeParameterByName(result, name)) { var newName = getUniqueTypeParameterName(ts.concatenate(context.inferredTypeParameters, result), name); var symbol = createSymbol(262144 /* SymbolFlags.TypeParameter */, newName); var newTypeParameter = createTypeParameter(symbol); newTypeParameter.target = tp; oldTypeParameters = ts.append(oldTypeParameters, tp); newTypeParameters = ts.append(newTypeParameters, newTypeParameter); result.push(newTypeParameter); } else { result.push(tp); } } if (newTypeParameters) { var mapper = createTypeMapper(oldTypeParameters, newTypeParameters); for (var _a = 0, newTypeParameters_1 = newTypeParameters; _a < newTypeParameters_1.length; _a++) { var tp = newTypeParameters_1[_a]; tp.mapper = mapper; } } return result; } function hasTypeParameterByName(typeParameters, name) { return ts.some(typeParameters, function (tp) { return tp.symbol.escapedName === name; }); } function getUniqueTypeParameterName(typeParameters, baseName) { var len = baseName.length; while (len > 1 && baseName.charCodeAt(len - 1) >= 48 /* CharacterCodes._0 */ && baseName.charCodeAt(len - 1) <= 57 /* CharacterCodes._9 */) len--; var s = baseName.slice(0, len); for (var index = 1; true; index++) { var augmentedName = s + index; if (!hasTypeParameterByName(typeParameters, augmentedName)) { return augmentedName; } } } function getReturnTypeOfSingleNonGenericCallSignature(funcType) { var signature = getSingleCallSignature(funcType); if (signature && !signature.typeParameters) { return getReturnTypeOfSignature(signature); } } function getReturnTypeOfSingleNonGenericSignatureOfCallChain(expr) { var funcType = checkExpression(expr.expression); var nonOptionalType = getOptionalExpressionType(funcType, expr.expression); var returnType = getReturnTypeOfSingleNonGenericCallSignature(funcType); return returnType && propagateOptionalTypeMarker(returnType, expr, nonOptionalType !== funcType); } /** * Returns the type of an expression. Unlike checkExpression, this function is simply concerned * with computing the type and may not fully check all contained sub-expressions for errors. */ function getTypeOfExpression(node) { // Don't bother caching types that require no flow analysis and are quick to compute. var quickType = getQuickTypeOfExpression(node); if (quickType) { return quickType; } // If a type has been cached for the node, return it. if (node.flags & 134217728 /* NodeFlags.TypeCached */ && flowTypeCache) { var cachedType = flowTypeCache[getNodeId(node)]; if (cachedType) { return cachedType; } } var startInvocationCount = flowInvocationCount; var type = checkExpression(node); // If control flow analysis was required to determine the type, it is worth caching. if (flowInvocationCount !== startInvocationCount) { var cache = flowTypeCache || (flowTypeCache = []); cache[getNodeId(node)] = type; ts.setNodeFlags(node, node.flags | 134217728 /* NodeFlags.TypeCached */); } return type; } function getQuickTypeOfExpression(node) { var expr = ts.skipParentheses(node, /*excludeJSDocTypeAssertions*/ true); if (ts.isJSDocTypeAssertion(expr)) { var type = ts.getJSDocTypeAssertionType(expr); if (!ts.isConstTypeReference(type)) { return getTypeFromTypeNode(type); } } expr = ts.skipParentheses(node); // Optimize for the common case of a call to a function with a single non-generic call // signature where we can just fetch the return type without checking the arguments. if (ts.isCallExpression(expr) && expr.expression.kind !== 106 /* SyntaxKind.SuperKeyword */ && !ts.isRequireCall(expr, /*checkArgumentIsStringLiteralLike*/ true) && !isSymbolOrSymbolForCall(expr)) { var type = ts.isCallChain(expr) ? getReturnTypeOfSingleNonGenericSignatureOfCallChain(expr) : getReturnTypeOfSingleNonGenericCallSignature(checkNonNullExpression(expr.expression)); if (type) { return type; } } else if (ts.isAssertionExpression(expr) && !ts.isConstTypeReference(expr.type)) { return getTypeFromTypeNode(expr.type); } else if (node.kind === 8 /* SyntaxKind.NumericLiteral */ || node.kind === 10 /* SyntaxKind.StringLiteral */ || node.kind === 110 /* SyntaxKind.TrueKeyword */ || node.kind === 95 /* SyntaxKind.FalseKeyword */) { return checkExpression(node); } return undefined; } /** * Returns the type of an expression. Unlike checkExpression, this function is simply concerned * with computing the type and may not fully check all contained sub-expressions for errors. * It is intended for uses where you know there is no contextual type, * and requesting the contextual type might cause a circularity or other bad behaviour. * It sets the contextual type of the node to any before calling getTypeOfExpression. */ function getContextFreeTypeOfExpression(node) { var links = getNodeLinks(node); if (links.contextFreeType) { return links.contextFreeType; } var saveContextualType = node.contextualType; node.contextualType = anyType; try { var type = links.contextFreeType = checkExpression(node, 4 /* CheckMode.SkipContextSensitive */); return type; } finally { // In the event our operation is canceled or some other exception occurs, reset the contextual type // so that we do not accidentally hold onto an instance of the checker, as a Type created in the services layer // may hold onto the checker that created it. node.contextualType = saveContextualType; } } function checkExpression(node, checkMode, forceTuple) { ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("check" /* tracing.Phase.Check */, "checkExpression", { kind: node.kind, pos: node.pos, end: node.end, path: node.tracingPath }); var saveCurrentNode = currentNode; currentNode = node; instantiationCount = 0; var uninstantiatedType = checkExpressionWorker(node, checkMode, forceTuple); var type = instantiateTypeWithSingleGenericCallSignature(node, uninstantiatedType, checkMode); if (isConstEnumObjectType(type)) { checkConstEnumAccess(node, type); } currentNode = saveCurrentNode; ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); return type; } function checkConstEnumAccess(node, type) { // enum object type for const enums are only permitted in: // - 'left' in property access // - 'object' in indexed access // - target in rhs of import statement var ok = (node.parent.kind === 206 /* SyntaxKind.PropertyAccessExpression */ && node.parent.expression === node) || (node.parent.kind === 207 /* SyntaxKind.ElementAccessExpression */ && node.parent.expression === node) || ((node.kind === 79 /* SyntaxKind.Identifier */ || node.kind === 161 /* SyntaxKind.QualifiedName */) && isInRightSideOfImportOrExportAssignment(node) || (node.parent.kind === 181 /* SyntaxKind.TypeQuery */ && node.parent.exprName === node)) || (node.parent.kind === 275 /* SyntaxKind.ExportSpecifier */); // We allow reexporting const enums if (!ok) { error(node, ts.Diagnostics.const_enums_can_only_be_used_in_property_or_index_access_expressions_or_the_right_hand_side_of_an_import_declaration_or_export_assignment_or_type_query); } if (compilerOptions.isolatedModules) { ts.Debug.assert(!!(type.symbol.flags & 128 /* SymbolFlags.ConstEnum */)); var constEnumDeclaration = type.symbol.valueDeclaration; if (constEnumDeclaration.flags & 16777216 /* NodeFlags.Ambient */) { error(node, ts.Diagnostics.Cannot_access_ambient_const_enums_when_the_isolatedModules_flag_is_provided); } } } function checkParenthesizedExpression(node, checkMode) { if (ts.hasJSDocNodes(node) && ts.isJSDocTypeAssertion(node)) { var type = ts.getJSDocTypeAssertionType(node); return checkAssertionWorker(type, type, node.expression, checkMode); } return checkExpression(node.expression, checkMode); } function checkExpressionWorker(node, checkMode, forceTuple) { var kind = node.kind; if (cancellationToken) { // Only bother checking on a few construct kinds. We don't want to be excessively // hitting the cancellation token on every node we check. switch (kind) { case 226 /* SyntaxKind.ClassExpression */: case 213 /* SyntaxKind.FunctionExpression */: case 214 /* SyntaxKind.ArrowFunction */: cancellationToken.throwIfCancellationRequested(); } } switch (kind) { case 79 /* SyntaxKind.Identifier */: return checkIdentifier(node, checkMode); case 80 /* SyntaxKind.PrivateIdentifier */: return checkPrivateIdentifierExpression(node); case 108 /* SyntaxKind.ThisKeyword */: return checkThisExpression(node); case 106 /* SyntaxKind.SuperKeyword */: return checkSuperExpression(node); case 104 /* SyntaxKind.NullKeyword */: return nullWideningType; case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: case 10 /* SyntaxKind.StringLiteral */: return getFreshTypeOfLiteralType(getStringLiteralType(node.text)); case 8 /* SyntaxKind.NumericLiteral */: checkGrammarNumericLiteral(node); return getFreshTypeOfLiteralType(getNumberLiteralType(+node.text)); case 9 /* SyntaxKind.BigIntLiteral */: checkGrammarBigIntLiteral(node); return getFreshTypeOfLiteralType(getBigIntLiteralType({ negative: false, base10Value: ts.parsePseudoBigInt(node.text) })); case 110 /* SyntaxKind.TrueKeyword */: return trueType; case 95 /* SyntaxKind.FalseKeyword */: return falseType; case 223 /* SyntaxKind.TemplateExpression */: return checkTemplateExpression(node); case 13 /* SyntaxKind.RegularExpressionLiteral */: return globalRegExpType; case 204 /* SyntaxKind.ArrayLiteralExpression */: return checkArrayLiteral(node, checkMode, forceTuple); case 205 /* SyntaxKind.ObjectLiteralExpression */: return checkObjectLiteral(node, checkMode); case 206 /* SyntaxKind.PropertyAccessExpression */: return checkPropertyAccessExpression(node, checkMode); case 161 /* SyntaxKind.QualifiedName */: return checkQualifiedName(node, checkMode); case 207 /* SyntaxKind.ElementAccessExpression */: return checkIndexedAccess(node, checkMode); case 208 /* SyntaxKind.CallExpression */: if (node.expression.kind === 100 /* SyntaxKind.ImportKeyword */) { return checkImportCallExpression(node); } // falls through case 209 /* SyntaxKind.NewExpression */: return checkCallExpression(node, checkMode); case 210 /* SyntaxKind.TaggedTemplateExpression */: return checkTaggedTemplateExpression(node); case 212 /* SyntaxKind.ParenthesizedExpression */: return checkParenthesizedExpression(node, checkMode); case 226 /* SyntaxKind.ClassExpression */: return checkClassExpression(node); case 213 /* SyntaxKind.FunctionExpression */: case 214 /* SyntaxKind.ArrowFunction */: return checkFunctionExpressionOrObjectLiteralMethod(node, checkMode); case 216 /* SyntaxKind.TypeOfExpression */: return checkTypeOfExpression(node); case 211 /* SyntaxKind.TypeAssertionExpression */: case 229 /* SyntaxKind.AsExpression */: return checkAssertion(node); case 230 /* SyntaxKind.NonNullExpression */: return checkNonNullAssertion(node); case 228 /* SyntaxKind.ExpressionWithTypeArguments */: return checkExpressionWithTypeArguments(node); case 231 /* SyntaxKind.MetaProperty */: return checkMetaProperty(node); case 215 /* SyntaxKind.DeleteExpression */: return checkDeleteExpression(node); case 217 /* SyntaxKind.VoidExpression */: return checkVoidExpression(node); case 218 /* SyntaxKind.AwaitExpression */: return checkAwaitExpression(node); case 219 /* SyntaxKind.PrefixUnaryExpression */: return checkPrefixUnaryExpression(node); case 220 /* SyntaxKind.PostfixUnaryExpression */: return checkPostfixUnaryExpression(node); case 221 /* SyntaxKind.BinaryExpression */: return checkBinaryExpression(node, checkMode); case 222 /* SyntaxKind.ConditionalExpression */: return checkConditionalExpression(node, checkMode); case 225 /* SyntaxKind.SpreadElement */: return checkSpreadExpression(node, checkMode); case 227 /* SyntaxKind.OmittedExpression */: return undefinedWideningType; case 224 /* SyntaxKind.YieldExpression */: return checkYieldExpression(node); case 232 /* SyntaxKind.SyntheticExpression */: return checkSyntheticExpression(node); case 288 /* SyntaxKind.JsxExpression */: return checkJsxExpression(node, checkMode); case 278 /* SyntaxKind.JsxElement */: return checkJsxElement(node, checkMode); case 279 /* SyntaxKind.JsxSelfClosingElement */: return checkJsxSelfClosingElement(node, checkMode); case 282 /* SyntaxKind.JsxFragment */: return checkJsxFragment(node); case 286 /* SyntaxKind.JsxAttributes */: return checkJsxAttributes(node, checkMode); case 280 /* SyntaxKind.JsxOpeningElement */: ts.Debug.fail("Shouldn't ever directly check a JsxOpeningElement"); } return errorType; } // DECLARATION AND STATEMENT TYPE CHECKING function checkTypeParameter(node) { // Grammar Checking checkGrammarModifiers(node); if (node.expression) { grammarErrorOnFirstToken(node.expression, ts.Diagnostics.Type_expected); } checkSourceElement(node.constraint); checkSourceElement(node.default); var typeParameter = getDeclaredTypeOfTypeParameter(getSymbolOfNode(node)); // Resolve base constraint to reveal circularity errors getBaseConstraintOfType(typeParameter); if (!hasNonCircularTypeParameterDefault(typeParameter)) { error(node.default, ts.Diagnostics.Type_parameter_0_has_a_circular_default, typeToString(typeParameter)); } var constraintType = getConstraintOfTypeParameter(typeParameter); var defaultType = getDefaultFromTypeParameter(typeParameter); if (constraintType && defaultType) { checkTypeAssignableTo(defaultType, getTypeWithThisArgument(instantiateType(constraintType, makeUnaryTypeMapper(typeParameter, defaultType)), defaultType), node.default, ts.Diagnostics.Type_0_does_not_satisfy_the_constraint_1); } checkNodeDeferred(node); addLazyDiagnostic(function () { return checkTypeNameIsReserved(node.name, ts.Diagnostics.Type_parameter_name_cannot_be_0); }); } function checkTypeParameterDeferred(node) { if (ts.isInterfaceDeclaration(node.parent) || ts.isClassLike(node.parent) || ts.isTypeAliasDeclaration(node.parent)) { var typeParameter = getDeclaredTypeOfTypeParameter(getSymbolOfNode(node)); var modifiers = getVarianceModifiers(typeParameter); if (modifiers) { var symbol = getSymbolOfNode(node.parent); if (ts.isTypeAliasDeclaration(node.parent) && !(ts.getObjectFlags(getDeclaredTypeOfSymbol(symbol)) & (16 /* ObjectFlags.Anonymous */ | 32 /* ObjectFlags.Mapped */))) { error(node, ts.Diagnostics.Variance_annotations_are_only_supported_in_type_aliases_for_object_function_constructor_and_mapped_types); } else if (modifiers === 32768 /* ModifierFlags.In */ || modifiers === 65536 /* ModifierFlags.Out */) { var source = createMarkerType(symbol, typeParameter, modifiers === 65536 /* ModifierFlags.Out */ ? markerSubType : markerSuperType); var target = createMarkerType(symbol, typeParameter, modifiers === 65536 /* ModifierFlags.Out */ ? markerSuperType : markerSubType); var saveVarianceTypeParameter = typeParameter; varianceTypeParameter = typeParameter; checkTypeAssignableTo(source, target, node, ts.Diagnostics.Type_0_is_not_assignable_to_type_1_as_implied_by_variance_annotation); varianceTypeParameter = saveVarianceTypeParameter; } } } } function checkParameter(node) { // Grammar checking // It is a SyntaxError if the Identifier "eval" or the Identifier "arguments" occurs as the // Identifier in a PropertySetParameterList of a PropertyAssignment that is contained in strict code // or if its FunctionBody is strict code(11.1.5). checkGrammarDecoratorsAndModifiers(node); checkVariableLikeDeclaration(node); var func = ts.getContainingFunction(node); if (ts.hasSyntacticModifier(node, 16476 /* ModifierFlags.ParameterPropertyModifier */)) { if (!(func.kind === 171 /* SyntaxKind.Constructor */ && ts.nodeIsPresent(func.body))) { error(node, ts.Diagnostics.A_parameter_property_is_only_allowed_in_a_constructor_implementation); } if (func.kind === 171 /* SyntaxKind.Constructor */ && ts.isIdentifier(node.name) && node.name.escapedText === "constructor") { error(node.name, ts.Diagnostics.constructor_cannot_be_used_as_a_parameter_property_name); } } if (node.questionToken && ts.isBindingPattern(node.name) && func.body) { error(node, ts.Diagnostics.A_binding_pattern_parameter_cannot_be_optional_in_an_implementation_signature); } if (node.name && ts.isIdentifier(node.name) && (node.name.escapedText === "this" || node.name.escapedText === "new")) { if (func.parameters.indexOf(node) !== 0) { error(node, ts.Diagnostics.A_0_parameter_must_be_the_first_parameter, node.name.escapedText); } if (func.kind === 171 /* SyntaxKind.Constructor */ || func.kind === 175 /* SyntaxKind.ConstructSignature */ || func.kind === 180 /* SyntaxKind.ConstructorType */) { error(node, ts.Diagnostics.A_constructor_cannot_have_a_this_parameter); } if (func.kind === 214 /* SyntaxKind.ArrowFunction */) { error(node, ts.Diagnostics.An_arrow_function_cannot_have_a_this_parameter); } if (func.kind === 172 /* SyntaxKind.GetAccessor */ || func.kind === 173 /* SyntaxKind.SetAccessor */) { error(node, ts.Diagnostics.get_and_set_accessors_cannot_declare_this_parameters); } } // Only check rest parameter type if it's not a binding pattern. Since binding patterns are // not allowed in a rest parameter, we already have an error from checkGrammarParameterList. if (node.dotDotDotToken && !ts.isBindingPattern(node.name) && !isTypeAssignableTo(getReducedType(getTypeOfSymbol(node.symbol)), anyReadonlyArrayType)) { error(node, ts.Diagnostics.A_rest_parameter_must_be_of_an_array_type); } } function checkTypePredicate(node) { var parent = getTypePredicateParent(node); if (!parent) { // The parent must not be valid. error(node, ts.Diagnostics.A_type_predicate_is_only_allowed_in_return_type_position_for_functions_and_methods); return; } var signature = getSignatureFromDeclaration(parent); var typePredicate = getTypePredicateOfSignature(signature); if (!typePredicate) { return; } checkSourceElement(node.type); var parameterName = node.parameterName; if (typePredicate.kind === 0 /* TypePredicateKind.This */ || typePredicate.kind === 2 /* TypePredicateKind.AssertsThis */) { getTypeFromThisTypeNode(parameterName); } else { if (typePredicate.parameterIndex >= 0) { if (signatureHasRestParameter(signature) && typePredicate.parameterIndex === signature.parameters.length - 1) { error(parameterName, ts.Diagnostics.A_type_predicate_cannot_reference_a_rest_parameter); } else { if (typePredicate.type) { var leadingError = function () { return ts.chainDiagnosticMessages(/*details*/ undefined, ts.Diagnostics.A_type_predicate_s_type_must_be_assignable_to_its_parameter_s_type); }; checkTypeAssignableTo(typePredicate.type, getTypeOfSymbol(signature.parameters[typePredicate.parameterIndex]), node.type, /*headMessage*/ undefined, leadingError); } } } else if (parameterName) { var hasReportedError = false; for (var _i = 0, _a = parent.parameters; _i < _a.length; _i++) { var name = _a[_i].name; if (ts.isBindingPattern(name) && checkIfTypePredicateVariableIsDeclaredInBindingPattern(name, parameterName, typePredicate.parameterName)) { hasReportedError = true; break; } } if (!hasReportedError) { error(node.parameterName, ts.Diagnostics.Cannot_find_parameter_0, typePredicate.parameterName); } } } } function getTypePredicateParent(node) { switch (node.parent.kind) { case 214 /* SyntaxKind.ArrowFunction */: case 174 /* SyntaxKind.CallSignature */: case 256 /* SyntaxKind.FunctionDeclaration */: case 213 /* SyntaxKind.FunctionExpression */: case 179 /* SyntaxKind.FunctionType */: case 169 /* SyntaxKind.MethodDeclaration */: case 168 /* SyntaxKind.MethodSignature */: var parent = node.parent; if (node === parent.type) { return parent; } } } function checkIfTypePredicateVariableIsDeclaredInBindingPattern(pattern, predicateVariableNode, predicateVariableName) { for (var _i = 0, _a = pattern.elements; _i < _a.length; _i++) { var element = _a[_i]; if (ts.isOmittedExpression(element)) { continue; } var name = element.name; if (name.kind === 79 /* SyntaxKind.Identifier */ && name.escapedText === predicateVariableName) { error(predicateVariableNode, ts.Diagnostics.A_type_predicate_cannot_reference_element_0_in_a_binding_pattern, predicateVariableName); return true; } else if (name.kind === 202 /* SyntaxKind.ArrayBindingPattern */ || name.kind === 201 /* SyntaxKind.ObjectBindingPattern */) { if (checkIfTypePredicateVariableIsDeclaredInBindingPattern(name, predicateVariableNode, predicateVariableName)) { return true; } } } } function checkSignatureDeclaration(node) { // Grammar checking if (node.kind === 176 /* SyntaxKind.IndexSignature */) { checkGrammarIndexSignature(node); } // TODO (yuisu): Remove this check in else-if when SyntaxKind.Construct is moved and ambient context is handled else if (node.kind === 179 /* SyntaxKind.FunctionType */ || node.kind === 256 /* SyntaxKind.FunctionDeclaration */ || node.kind === 180 /* SyntaxKind.ConstructorType */ || node.kind === 174 /* SyntaxKind.CallSignature */ || node.kind === 171 /* SyntaxKind.Constructor */ || node.kind === 175 /* SyntaxKind.ConstructSignature */) { checkGrammarFunctionLikeDeclaration(node); } var functionFlags = ts.getFunctionFlags(node); if (!(functionFlags & 4 /* FunctionFlags.Invalid */)) { // Async generators prior to ESNext require the __await and __asyncGenerator helpers if ((functionFlags & 3 /* FunctionFlags.AsyncGenerator */) === 3 /* FunctionFlags.AsyncGenerator */ && languageVersion < 99 /* ScriptTarget.ESNext */) { checkExternalEmitHelpers(node, 6144 /* ExternalEmitHelpers.AsyncGeneratorIncludes */); } // Async functions prior to ES2017 require the __awaiter helper if ((functionFlags & 3 /* FunctionFlags.AsyncGenerator */) === 2 /* FunctionFlags.Async */ && languageVersion < 4 /* ScriptTarget.ES2017 */) { checkExternalEmitHelpers(node, 64 /* ExternalEmitHelpers.Awaiter */); } // Generator functions, Async functions, and Async Generator functions prior to // ES2015 require the __generator helper if ((functionFlags & 3 /* FunctionFlags.AsyncGenerator */) !== 0 /* FunctionFlags.Normal */ && languageVersion < 2 /* ScriptTarget.ES2015 */) { checkExternalEmitHelpers(node, 128 /* ExternalEmitHelpers.Generator */); } } checkTypeParameters(ts.getEffectiveTypeParameterDeclarations(node)); checkUnmatchedJSDocParameters(node); ts.forEach(node.parameters, checkParameter); // TODO(rbuckton): Should we start checking JSDoc types? if (node.type) { checkSourceElement(node.type); } addLazyDiagnostic(checkSignatureDeclarationDiagnostics); function checkSignatureDeclarationDiagnostics() { checkCollisionWithArgumentsInGeneratedCode(node); var returnTypeNode = ts.getEffectiveReturnTypeNode(node); if (noImplicitAny && !returnTypeNode) { switch (node.kind) { case 175 /* SyntaxKind.ConstructSignature */: error(node, ts.Diagnostics.Construct_signature_which_lacks_return_type_annotation_implicitly_has_an_any_return_type); break; case 174 /* SyntaxKind.CallSignature */: error(node, ts.Diagnostics.Call_signature_which_lacks_return_type_annotation_implicitly_has_an_any_return_type); break; } } if (returnTypeNode) { var functionFlags_1 = ts.getFunctionFlags(node); if ((functionFlags_1 & (4 /* FunctionFlags.Invalid */ | 1 /* FunctionFlags.Generator */)) === 1 /* FunctionFlags.Generator */) { var returnType = getTypeFromTypeNode(returnTypeNode); if (returnType === voidType) { error(returnTypeNode, ts.Diagnostics.A_generator_cannot_have_a_void_type_annotation); } else { // Naively, one could check that Generator is assignable to the return type annotation. // However, that would not catch the error in the following case. // // interface BadGenerator extends Iterable, Iterator { } // function* g(): BadGenerator { } // Iterable and Iterator have different types! // var generatorYieldType = getIterationTypeOfGeneratorFunctionReturnType(0 /* IterationTypeKind.Yield */, returnType, (functionFlags_1 & 2 /* FunctionFlags.Async */) !== 0) || anyType; var generatorReturnType = getIterationTypeOfGeneratorFunctionReturnType(1 /* IterationTypeKind.Return */, returnType, (functionFlags_1 & 2 /* FunctionFlags.Async */) !== 0) || generatorYieldType; var generatorNextType = getIterationTypeOfGeneratorFunctionReturnType(2 /* IterationTypeKind.Next */, returnType, (functionFlags_1 & 2 /* FunctionFlags.Async */) !== 0) || unknownType; var generatorInstantiation = createGeneratorReturnType(generatorYieldType, generatorReturnType, generatorNextType, !!(functionFlags_1 & 2 /* FunctionFlags.Async */)); checkTypeAssignableTo(generatorInstantiation, returnType, returnTypeNode); } } else if ((functionFlags_1 & 3 /* FunctionFlags.AsyncGenerator */) === 2 /* FunctionFlags.Async */) { checkAsyncFunctionReturnType(node, returnTypeNode); } } if (node.kind !== 176 /* SyntaxKind.IndexSignature */ && node.kind !== 317 /* SyntaxKind.JSDocFunctionType */) { registerForUnusedIdentifiersCheck(node); } } } function checkClassForDuplicateDeclarations(node) { var instanceNames = new ts.Map(); var staticNames = new ts.Map(); // instance and static private identifiers share the same scope var privateIdentifiers = new ts.Map(); for (var _i = 0, _a = node.members; _i < _a.length; _i++) { var member = _a[_i]; if (member.kind === 171 /* SyntaxKind.Constructor */) { for (var _b = 0, _c = member.parameters; _b < _c.length; _b++) { var param = _c[_b]; if (ts.isParameterPropertyDeclaration(param, member) && !ts.isBindingPattern(param.name)) { addName(instanceNames, param.name, param.name.escapedText, 3 /* DeclarationMeaning.GetOrSetAccessor */); } } } else { var isStaticMember = ts.isStatic(member); var name = member.name; if (!name) { continue; } var isPrivate = ts.isPrivateIdentifier(name); var privateStaticFlags = isPrivate && isStaticMember ? 16 /* DeclarationMeaning.PrivateStatic */ : 0; var names = isPrivate ? privateIdentifiers : isStaticMember ? staticNames : instanceNames; var memberName = name && ts.getPropertyNameForPropertyNameNode(name); if (memberName) { switch (member.kind) { case 172 /* SyntaxKind.GetAccessor */: addName(names, name, memberName, 1 /* DeclarationMeaning.GetAccessor */ | privateStaticFlags); break; case 173 /* SyntaxKind.SetAccessor */: addName(names, name, memberName, 2 /* DeclarationMeaning.SetAccessor */ | privateStaticFlags); break; case 167 /* SyntaxKind.PropertyDeclaration */: addName(names, name, memberName, 3 /* DeclarationMeaning.GetOrSetAccessor */ | privateStaticFlags); break; case 169 /* SyntaxKind.MethodDeclaration */: addName(names, name, memberName, 8 /* DeclarationMeaning.Method */ | privateStaticFlags); break; } } } } function addName(names, location, name, meaning) { var prev = names.get(name); if (prev) { // For private identifiers, do not allow mixing of static and instance members with the same name if ((prev & 16 /* DeclarationMeaning.PrivateStatic */) !== (meaning & 16 /* DeclarationMeaning.PrivateStatic */)) { error(location, ts.Diagnostics.Duplicate_identifier_0_Static_and_instance_elements_cannot_share_the_same_private_name, ts.getTextOfNode(location)); } else { var prevIsMethod = !!(prev & 8 /* DeclarationMeaning.Method */); var isMethod = !!(meaning & 8 /* DeclarationMeaning.Method */); if (prevIsMethod || isMethod) { if (prevIsMethod !== isMethod) { error(location, ts.Diagnostics.Duplicate_identifier_0, ts.getTextOfNode(location)); } // If this is a method/method duplication is might be an overload, so this will be handled when overloads are considered } else if (prev & meaning & ~16 /* DeclarationMeaning.PrivateStatic */) { error(location, ts.Diagnostics.Duplicate_identifier_0, ts.getTextOfNode(location)); } else { names.set(name, prev | meaning); } } } else { names.set(name, meaning); } } } /** * Static members being set on a constructor function may conflict with built-in properties * of Function. Esp. in ECMAScript 5 there are non-configurable and non-writable * built-in properties. This check issues a transpile error when a class has a static * member with the same name as a non-writable built-in property. * * @see http://www.ecma-international.org/ecma-262/5.1/#sec-15.3.3 * @see http://www.ecma-international.org/ecma-262/5.1/#sec-15.3.5 * @see http://www.ecma-international.org/ecma-262/6.0/#sec-properties-of-the-function-constructor * @see http://www.ecma-international.org/ecma-262/6.0/#sec-function-instances */ function checkClassForStaticPropertyNameConflicts(node) { for (var _i = 0, _a = node.members; _i < _a.length; _i++) { var member = _a[_i]; var memberNameNode = member.name; var isStaticMember = ts.isStatic(member); if (isStaticMember && memberNameNode) { var memberName = ts.getPropertyNameForPropertyNameNode(memberNameNode); switch (memberName) { case "name": case "length": case "caller": case "arguments": case "prototype": var message = ts.Diagnostics.Static_property_0_conflicts_with_built_in_property_Function_0_of_constructor_function_1; var className = getNameOfSymbolAsWritten(getSymbolOfNode(node)); error(memberNameNode, message, memberName, className); break; } } } } function checkObjectTypeForDuplicateDeclarations(node) { var names = new ts.Map(); for (var _i = 0, _a = node.members; _i < _a.length; _i++) { var member = _a[_i]; if (member.kind === 166 /* SyntaxKind.PropertySignature */) { var memberName = void 0; var name = member.name; switch (name.kind) { case 10 /* SyntaxKind.StringLiteral */: case 8 /* SyntaxKind.NumericLiteral */: memberName = name.text; break; case 79 /* SyntaxKind.Identifier */: memberName = ts.idText(name); break; default: continue; } if (names.get(memberName)) { error(ts.getNameOfDeclaration(member.symbol.valueDeclaration), ts.Diagnostics.Duplicate_identifier_0, memberName); error(member.name, ts.Diagnostics.Duplicate_identifier_0, memberName); } else { names.set(memberName, true); } } } } function checkTypeForDuplicateIndexSignatures(node) { if (node.kind === 258 /* SyntaxKind.InterfaceDeclaration */) { var nodeSymbol = getSymbolOfNode(node); // in case of merging interface declaration it is possible that we'll enter this check procedure several times for every declaration // to prevent this run check only for the first declaration of a given kind if (nodeSymbol.declarations && nodeSymbol.declarations.length > 0 && nodeSymbol.declarations[0] !== node) { return; } } // TypeScript 1.0 spec (April 2014) // 3.7.4: An object type can contain at most one string index signature and one numeric index signature. // 8.5: A class declaration can have at most one string index member declaration and one numeric index member declaration var indexSymbol = getIndexSymbol(getSymbolOfNode(node)); if (indexSymbol === null || indexSymbol === void 0 ? void 0 : indexSymbol.declarations) { var indexSignatureMap_1 = new ts.Map(); var _loop_27 = function (declaration) { if (declaration.parameters.length === 1 && declaration.parameters[0].type) { forEachType(getTypeFromTypeNode(declaration.parameters[0].type), function (type) { var entry = indexSignatureMap_1.get(getTypeId(type)); if (entry) { entry.declarations.push(declaration); } else { indexSignatureMap_1.set(getTypeId(type), { type: type, declarations: [declaration] }); } }); } }; for (var _i = 0, _a = indexSymbol.declarations; _i < _a.length; _i++) { var declaration = _a[_i]; _loop_27(declaration); } indexSignatureMap_1.forEach(function (entry) { if (entry.declarations.length > 1) { for (var _i = 0, _a = entry.declarations; _i < _a.length; _i++) { var declaration = _a[_i]; error(declaration, ts.Diagnostics.Duplicate_index_signature_for_type_0, typeToString(entry.type)); } } }); } } function checkPropertyDeclaration(node) { // Grammar checking if (!checkGrammarDecoratorsAndModifiers(node) && !checkGrammarProperty(node)) checkGrammarComputedPropertyName(node.name); checkVariableLikeDeclaration(node); setNodeLinksForPrivateIdentifierScope(node); // property signatures already report "initializer not allowed in ambient context" elsewhere if (ts.hasSyntacticModifier(node, 128 /* ModifierFlags.Abstract */) && node.kind === 167 /* SyntaxKind.PropertyDeclaration */ && node.initializer) { error(node, ts.Diagnostics.Property_0_cannot_have_an_initializer_because_it_is_marked_abstract, ts.declarationNameToString(node.name)); } } function checkPropertySignature(node) { if (ts.isPrivateIdentifier(node.name)) { error(node, ts.Diagnostics.Private_identifiers_are_not_allowed_outside_class_bodies); } return checkPropertyDeclaration(node); } function checkMethodDeclaration(node) { // Grammar checking if (!checkGrammarMethod(node)) checkGrammarComputedPropertyName(node.name); // Grammar checking for modifiers is done inside the function checkGrammarFunctionLikeDeclaration checkFunctionOrMethodDeclaration(node); // method signatures already report "implementation not allowed in ambient context" elsewhere if (ts.hasSyntacticModifier(node, 128 /* ModifierFlags.Abstract */) && node.kind === 169 /* SyntaxKind.MethodDeclaration */ && node.body) { error(node, ts.Diagnostics.Method_0_cannot_have_an_implementation_because_it_is_marked_abstract, ts.declarationNameToString(node.name)); } // Private named methods are only allowed in class declarations if (ts.isPrivateIdentifier(node.name) && !ts.getContainingClass(node)) { error(node, ts.Diagnostics.Private_identifiers_are_not_allowed_outside_class_bodies); } setNodeLinksForPrivateIdentifierScope(node); } function setNodeLinksForPrivateIdentifierScope(node) { if (ts.isPrivateIdentifier(node.name) && languageVersion < 99 /* ScriptTarget.ESNext */) { for (var lexicalScope = ts.getEnclosingBlockScopeContainer(node); !!lexicalScope; lexicalScope = ts.getEnclosingBlockScopeContainer(lexicalScope)) { getNodeLinks(lexicalScope).flags |= 67108864 /* NodeCheckFlags.ContainsClassWithPrivateIdentifiers */; } // If this is a private element in a class expression inside the body of a loop, // then we must use a block-scoped binding to store the additional variables required // to transform private elements. if (ts.isClassExpression(node.parent)) { var enclosingIterationStatement = getEnclosingIterationStatement(node.parent); if (enclosingIterationStatement) { getNodeLinks(node.name).flags |= 524288 /* NodeCheckFlags.BlockScopedBindingInLoop */; getNodeLinks(enclosingIterationStatement).flags |= 65536 /* NodeCheckFlags.LoopWithCapturedBlockScopedBinding */; } } } } function checkClassStaticBlockDeclaration(node) { checkGrammarDecoratorsAndModifiers(node); ts.forEachChild(node, checkSourceElement); } function checkConstructorDeclaration(node) { // Grammar check on signature of constructor and modifier of the constructor is done in checkSignatureDeclaration function. checkSignatureDeclaration(node); // Grammar check for checking only related to constructorDeclaration if (!checkGrammarConstructorTypeParameters(node)) checkGrammarConstructorTypeAnnotation(node); checkSourceElement(node.body); var symbol = getSymbolOfNode(node); var firstDeclaration = ts.getDeclarationOfKind(symbol, node.kind); // Only type check the symbol once if (node === firstDeclaration) { checkFunctionOrConstructorSymbol(symbol); } // exit early in the case of signature - super checks are not relevant to them if (ts.nodeIsMissing(node.body)) { return; } addLazyDiagnostic(checkConstructorDeclarationDiagnostics); return; function isInstancePropertyWithInitializerOrPrivateIdentifierProperty(n) { if (ts.isPrivateIdentifierClassElementDeclaration(n)) { return true; } return n.kind === 167 /* SyntaxKind.PropertyDeclaration */ && !ts.isStatic(n) && !!n.initializer; } function checkConstructorDeclarationDiagnostics() { // TS 1.0 spec (April 2014): 8.3.2 // Constructors of classes with no extends clause may not contain super calls, whereas // constructors of derived classes must contain at least one super call somewhere in their function body. var containingClassDecl = node.parent; if (ts.getClassExtendsHeritageElement(containingClassDecl)) { captureLexicalThis(node.parent, containingClassDecl); var classExtendsNull = classDeclarationExtendsNull(containingClassDecl); var superCall = findFirstSuperCall(node.body); if (superCall) { if (classExtendsNull) { error(superCall, ts.Diagnostics.A_constructor_cannot_contain_a_super_call_when_its_class_extends_null); } // A super call must be root-level in a constructor if both of the following are true: // - The containing class is a derived class. // - The constructor declares parameter properties // or the containing class declares instance member variables with initializers. var superCallShouldBeRootLevel = (ts.getEmitScriptTarget(compilerOptions) !== 99 /* ScriptTarget.ESNext */ || !useDefineForClassFields) && (ts.some(node.parent.members, isInstancePropertyWithInitializerOrPrivateIdentifierProperty) || ts.some(node.parameters, function (p) { return ts.hasSyntacticModifier(p, 16476 /* ModifierFlags.ParameterPropertyModifier */); })); if (superCallShouldBeRootLevel) { // Until we have better flow analysis, it is an error to place the super call within any kind of block or conditional // See GH #8277 if (!superCallIsRootLevelInConstructor(superCall, node.body)) { error(superCall, ts.Diagnostics.A_super_call_must_be_a_root_level_statement_within_a_constructor_of_a_derived_class_that_contains_initialized_properties_parameter_properties_or_private_identifiers); } // Skip past any prologue directives to check statements for referring to 'super' or 'this' before a super call else { var superCallStatement = void 0; for (var _i = 0, _a = node.body.statements; _i < _a.length; _i++) { var statement = _a[_i]; if (ts.isExpressionStatement(statement) && ts.isSuperCall(ts.skipOuterExpressions(statement.expression))) { superCallStatement = statement; break; } if (nodeImmediatelyReferencesSuperOrThis(statement)) { break; } } // Until we have better flow analysis, it is an error to place the super call within any kind of block or conditional // See GH #8277 if (superCallStatement === undefined) { error(node, ts.Diagnostics.A_super_call_must_be_the_first_statement_in_the_constructor_to_refer_to_super_or_this_when_a_derived_class_contains_initialized_properties_parameter_properties_or_private_identifiers); } } } } else if (!classExtendsNull) { error(node, ts.Diagnostics.Constructors_for_derived_classes_must_contain_a_super_call); } } } } function superCallIsRootLevelInConstructor(superCall, body) { var superCallParent = ts.walkUpParenthesizedExpressions(superCall.parent); return ts.isExpressionStatement(superCallParent) && superCallParent.parent === body; } function nodeImmediatelyReferencesSuperOrThis(node) { if (node.kind === 106 /* SyntaxKind.SuperKeyword */ || node.kind === 108 /* SyntaxKind.ThisKeyword */) { return true; } if (ts.isThisContainerOrFunctionBlock(node)) { return false; } return !!ts.forEachChild(node, nodeImmediatelyReferencesSuperOrThis); } function checkAccessorDeclaration(node) { addLazyDiagnostic(checkAccessorDeclarationDiagnostics); checkSourceElement(node.body); setNodeLinksForPrivateIdentifierScope(node); function checkAccessorDeclarationDiagnostics() { // Grammar checking accessors if (!checkGrammarFunctionLikeDeclaration(node) && !checkGrammarAccessor(node)) checkGrammarComputedPropertyName(node.name); checkDecorators(node); checkSignatureDeclaration(node); if (node.kind === 172 /* SyntaxKind.GetAccessor */) { if (!(node.flags & 16777216 /* NodeFlags.Ambient */) && ts.nodeIsPresent(node.body) && (node.flags & 256 /* NodeFlags.HasImplicitReturn */)) { if (!(node.flags & 512 /* NodeFlags.HasExplicitReturn */)) { error(node.name, ts.Diagnostics.A_get_accessor_must_return_a_value); } } } // Do not use hasDynamicName here, because that returns false for well known symbols. // We want to perform checkComputedPropertyName for all computed properties, including // well known symbols. if (node.name.kind === 162 /* SyntaxKind.ComputedPropertyName */) { checkComputedPropertyName(node.name); } if (hasBindableName(node)) { // TypeScript 1.0 spec (April 2014): 8.4.3 // Accessors for the same member name must specify the same accessibility. var symbol = getSymbolOfNode(node); var getter = ts.getDeclarationOfKind(symbol, 172 /* SyntaxKind.GetAccessor */); var setter = ts.getDeclarationOfKind(symbol, 173 /* SyntaxKind.SetAccessor */); if (getter && setter && !(getNodeCheckFlags(getter) & 1 /* NodeCheckFlags.TypeChecked */)) { getNodeLinks(getter).flags |= 1 /* NodeCheckFlags.TypeChecked */; var getterFlags = ts.getEffectiveModifierFlags(getter); var setterFlags = ts.getEffectiveModifierFlags(setter); if ((getterFlags & 128 /* ModifierFlags.Abstract */) !== (setterFlags & 128 /* ModifierFlags.Abstract */)) { error(getter.name, ts.Diagnostics.Accessors_must_both_be_abstract_or_non_abstract); error(setter.name, ts.Diagnostics.Accessors_must_both_be_abstract_or_non_abstract); } if (((getterFlags & 16 /* ModifierFlags.Protected */) && !(setterFlags & (16 /* ModifierFlags.Protected */ | 8 /* ModifierFlags.Private */))) || ((getterFlags & 8 /* ModifierFlags.Private */) && !(setterFlags & 8 /* ModifierFlags.Private */))) { error(getter.name, ts.Diagnostics.A_get_accessor_must_be_at_least_as_accessible_as_the_setter); error(setter.name, ts.Diagnostics.A_get_accessor_must_be_at_least_as_accessible_as_the_setter); } var getterType = getAnnotatedAccessorType(getter); var setterType = getAnnotatedAccessorType(setter); if (getterType && setterType) { checkTypeAssignableTo(getterType, setterType, getter, ts.Diagnostics.The_return_type_of_a_get_accessor_must_be_assignable_to_its_set_accessor_type); } } } var returnType = getTypeOfAccessors(getSymbolOfNode(node)); if (node.kind === 172 /* SyntaxKind.GetAccessor */) { checkAllCodePathsInNonVoidFunctionReturnOrThrow(node, returnType); } } } function checkMissingDeclaration(node) { checkDecorators(node); } function getEffectiveTypeArguments(node, typeParameters) { return fillMissingTypeArguments(ts.map(node.typeArguments, getTypeFromTypeNode), typeParameters, getMinTypeArgumentCount(typeParameters), ts.isInJSFile(node)); } function checkTypeArgumentConstraints(node, typeParameters) { var typeArguments; var mapper; var result = true; for (var i = 0; i < typeParameters.length; i++) { var constraint = getConstraintOfTypeParameter(typeParameters[i]); if (constraint) { if (!typeArguments) { typeArguments = getEffectiveTypeArguments(node, typeParameters); mapper = createTypeMapper(typeParameters, typeArguments); } result = result && checkTypeAssignableTo(typeArguments[i], instantiateType(constraint, mapper), node.typeArguments[i], ts.Diagnostics.Type_0_does_not_satisfy_the_constraint_1); } } return result; } function getTypeParametersForTypeReference(node) { var type = getTypeFromTypeReference(node); if (!isErrorType(type)) { var symbol = getNodeLinks(node).resolvedSymbol; if (symbol) { return symbol.flags & 524288 /* SymbolFlags.TypeAlias */ && getSymbolLinks(symbol).typeParameters || (ts.getObjectFlags(type) & 4 /* ObjectFlags.Reference */ ? type.target.localTypeParameters : undefined); } } return undefined; } function checkTypeReferenceNode(node) { checkGrammarTypeArguments(node, node.typeArguments); if (node.kind === 178 /* SyntaxKind.TypeReference */ && node.typeName.jsdocDotPos !== undefined && !ts.isInJSFile(node) && !ts.isInJSDoc(node)) { grammarErrorAtPos(node, node.typeName.jsdocDotPos, 1, ts.Diagnostics.JSDoc_types_can_only_be_used_inside_documentation_comments); } ts.forEach(node.typeArguments, checkSourceElement); var type = getTypeFromTypeReference(node); if (!isErrorType(type)) { if (node.typeArguments) { addLazyDiagnostic(function () { var typeParameters = getTypeParametersForTypeReference(node); if (typeParameters) { checkTypeArgumentConstraints(node, typeParameters); } }); } var symbol = getNodeLinks(node).resolvedSymbol; if (symbol) { if (ts.some(symbol.declarations, function (d) { return isTypeDeclaration(d) && !!(d.flags & 268435456 /* NodeFlags.Deprecated */); })) { addDeprecatedSuggestion(getDeprecatedSuggestionNode(node), symbol.declarations, symbol.escapedName); } if (type.flags & 32 /* TypeFlags.Enum */ && symbol.flags & 8 /* SymbolFlags.EnumMember */) { error(node, ts.Diagnostics.Enum_type_0_has_members_with_initializers_that_are_not_literals, typeToString(type)); } } } } function getTypeArgumentConstraint(node) { var typeReferenceNode = ts.tryCast(node.parent, ts.isTypeReferenceType); if (!typeReferenceNode) return undefined; var typeParameters = getTypeParametersForTypeReference(typeReferenceNode); if (!typeParameters) return undefined; var constraint = getConstraintOfTypeParameter(typeParameters[typeReferenceNode.typeArguments.indexOf(node)]); return constraint && instantiateType(constraint, createTypeMapper(typeParameters, getEffectiveTypeArguments(typeReferenceNode, typeParameters))); } function checkTypeQuery(node) { getTypeFromTypeQueryNode(node); } function checkTypeLiteral(node) { ts.forEach(node.members, checkSourceElement); addLazyDiagnostic(checkTypeLiteralDiagnostics); function checkTypeLiteralDiagnostics() { var type = getTypeFromTypeLiteralOrFunctionOrConstructorTypeNode(node); checkIndexConstraints(type, type.symbol); checkTypeForDuplicateIndexSignatures(node); checkObjectTypeForDuplicateDeclarations(node); } } function checkArrayType(node) { checkSourceElement(node.elementType); } function checkTupleType(node) { var elementTypes = node.elements; var seenOptionalElement = false; var seenRestElement = false; var hasNamedElement = ts.some(elementTypes, ts.isNamedTupleMember); for (var _i = 0, elementTypes_1 = elementTypes; _i < elementTypes_1.length; _i++) { var e = elementTypes_1[_i]; if (e.kind !== 197 /* SyntaxKind.NamedTupleMember */ && hasNamedElement) { grammarErrorOnNode(e, ts.Diagnostics.Tuple_members_must_all_have_names_or_all_not_have_names); break; } var flags = getTupleElementFlags(e); if (flags & 8 /* ElementFlags.Variadic */) { var type = getTypeFromTypeNode(e.type); if (!isArrayLikeType(type)) { error(e, ts.Diagnostics.A_rest_element_type_must_be_an_array_type); break; } if (isArrayType(type) || isTupleType(type) && type.target.combinedFlags & 4 /* ElementFlags.Rest */) { seenRestElement = true; } } else if (flags & 4 /* ElementFlags.Rest */) { if (seenRestElement) { grammarErrorOnNode(e, ts.Diagnostics.A_rest_element_cannot_follow_another_rest_element); break; } seenRestElement = true; } else if (flags & 2 /* ElementFlags.Optional */) { if (seenRestElement) { grammarErrorOnNode(e, ts.Diagnostics.An_optional_element_cannot_follow_a_rest_element); break; } seenOptionalElement = true; } else if (seenOptionalElement) { grammarErrorOnNode(e, ts.Diagnostics.A_required_element_cannot_follow_an_optional_element); break; } } ts.forEach(node.elements, checkSourceElement); getTypeFromTypeNode(node); } function checkUnionOrIntersectionType(node) { ts.forEach(node.types, checkSourceElement); getTypeFromTypeNode(node); } function checkIndexedAccessIndexType(type, accessNode) { if (!(type.flags & 8388608 /* TypeFlags.IndexedAccess */)) { return type; } // Check if the index type is assignable to 'keyof T' for the object type. var objectType = type.objectType; var indexType = type.indexType; if (isTypeAssignableTo(indexType, getIndexType(objectType, /*stringsOnly*/ false))) { if (accessNode.kind === 207 /* SyntaxKind.ElementAccessExpression */ && ts.isAssignmentTarget(accessNode) && ts.getObjectFlags(objectType) & 32 /* ObjectFlags.Mapped */ && getMappedTypeModifiers(objectType) & 1 /* MappedTypeModifiers.IncludeReadonly */) { error(accessNode, ts.Diagnostics.Index_signature_in_type_0_only_permits_reading, typeToString(objectType)); } return type; } // Check if we're indexing with a numeric type and if either object or index types // is a generic type with a constraint that has a numeric index signature. var apparentObjectType = getApparentType(objectType); if (getIndexInfoOfType(apparentObjectType, numberType) && isTypeAssignableToKind(indexType, 296 /* TypeFlags.NumberLike */)) { return type; } if (isGenericObjectType(objectType)) { var propertyName_1 = getPropertyNameFromIndex(indexType, accessNode); if (propertyName_1) { var propertySymbol = forEachType(apparentObjectType, function (t) { return getPropertyOfType(t, propertyName_1); }); if (propertySymbol && ts.getDeclarationModifierFlagsFromSymbol(propertySymbol) & 24 /* ModifierFlags.NonPublicAccessibilityModifier */) { error(accessNode, ts.Diagnostics.Private_or_protected_member_0_cannot_be_accessed_on_a_type_parameter, ts.unescapeLeadingUnderscores(propertyName_1)); return errorType; } } } error(accessNode, ts.Diagnostics.Type_0_cannot_be_used_to_index_type_1, typeToString(indexType), typeToString(objectType)); return errorType; } function checkIndexedAccessType(node) { checkSourceElement(node.objectType); checkSourceElement(node.indexType); checkIndexedAccessIndexType(getTypeFromIndexedAccessTypeNode(node), node); } function checkMappedType(node) { checkGrammarMappedType(node); checkSourceElement(node.typeParameter); checkSourceElement(node.nameType); checkSourceElement(node.type); if (!node.type) { reportImplicitAny(node, anyType); } var type = getTypeFromMappedTypeNode(node); var nameType = getNameTypeFromMappedType(type); if (nameType) { checkTypeAssignableTo(nameType, keyofConstraintType, node.nameType); } else { var constraintType = getConstraintTypeFromMappedType(type); checkTypeAssignableTo(constraintType, keyofConstraintType, ts.getEffectiveConstraintOfTypeParameter(node.typeParameter)); } } function checkGrammarMappedType(node) { var _a; if ((_a = node.members) === null || _a === void 0 ? void 0 : _a.length) { return grammarErrorOnNode(node.members[0], ts.Diagnostics.A_mapped_type_may_not_declare_properties_or_methods); } } function checkThisType(node) { getTypeFromThisTypeNode(node); } function checkTypeOperator(node) { checkGrammarTypeOperatorNode(node); checkSourceElement(node.type); } function checkConditionalType(node) { ts.forEachChild(node, checkSourceElement); } function checkInferType(node) { if (!ts.findAncestor(node, function (n) { return n.parent && n.parent.kind === 189 /* SyntaxKind.ConditionalType */ && n.parent.extendsType === n; })) { grammarErrorOnNode(node, ts.Diagnostics.infer_declarations_are_only_permitted_in_the_extends_clause_of_a_conditional_type); } checkSourceElement(node.typeParameter); var symbol = getSymbolOfNode(node.typeParameter); if (symbol.declarations && symbol.declarations.length > 1) { var links = getSymbolLinks(symbol); if (!links.typeParametersChecked) { links.typeParametersChecked = true; var typeParameter = getDeclaredTypeOfTypeParameter(symbol); var declarations = ts.getDeclarationsOfKind(symbol, 163 /* SyntaxKind.TypeParameter */); if (!areTypeParametersIdentical(declarations, [typeParameter], function (decl) { return [decl]; })) { // Report an error on every conflicting declaration. var name = symbolToString(symbol); for (var _i = 0, declarations_4 = declarations; _i < declarations_4.length; _i++) { var declaration = declarations_4[_i]; error(declaration.name, ts.Diagnostics.All_declarations_of_0_must_have_identical_constraints, name); } } } } registerForUnusedIdentifiersCheck(node); } function checkTemplateLiteralType(node) { for (var _i = 0, _a = node.templateSpans; _i < _a.length; _i++) { var span = _a[_i]; checkSourceElement(span.type); var type = getTypeFromTypeNode(span.type); checkTypeAssignableTo(type, templateConstraintType, span.type); } getTypeFromTypeNode(node); } function checkImportType(node) { checkSourceElement(node.argument); if (node.assertions) { var override = ts.getResolutionModeOverrideForClause(node.assertions.assertClause, grammarErrorOnNode); if (override) { if (!ts.isNightly()) { grammarErrorOnNode(node.assertions.assertClause, ts.Diagnostics.resolution_mode_assertions_are_unstable_Use_nightly_TypeScript_to_silence_this_error_Try_updating_with_npm_install_D_typescript_next); } if (ts.getEmitModuleResolutionKind(compilerOptions) !== ts.ModuleResolutionKind.Node16 && ts.getEmitModuleResolutionKind(compilerOptions) !== ts.ModuleResolutionKind.NodeNext) { grammarErrorOnNode(node.assertions.assertClause, ts.Diagnostics.resolution_mode_assertions_are_only_supported_when_moduleResolution_is_node16_or_nodenext); } } } getTypeFromTypeNode(node); } function checkNamedTupleMember(node) { if (node.dotDotDotToken && node.questionToken) { grammarErrorOnNode(node, ts.Diagnostics.A_tuple_member_cannot_be_both_optional_and_rest); } if (node.type.kind === 185 /* SyntaxKind.OptionalType */) { grammarErrorOnNode(node.type, ts.Diagnostics.A_labeled_tuple_element_is_declared_as_optional_with_a_question_mark_after_the_name_and_before_the_colon_rather_than_after_the_type); } if (node.type.kind === 186 /* SyntaxKind.RestType */) { grammarErrorOnNode(node.type, ts.Diagnostics.A_labeled_tuple_element_is_declared_as_rest_with_a_before_the_name_rather_than_before_the_type); } checkSourceElement(node.type); getTypeFromTypeNode(node); } function isPrivateWithinAmbient(node) { return (ts.hasEffectiveModifier(node, 8 /* ModifierFlags.Private */) || ts.isPrivateIdentifierClassElementDeclaration(node)) && !!(node.flags & 16777216 /* NodeFlags.Ambient */); } function getEffectiveDeclarationFlags(n, flagsToCheck) { var flags = ts.getCombinedModifierFlags(n); // children of classes (even ambient classes) should not be marked as ambient or export // because those flags have no useful semantics there. if (n.parent.kind !== 258 /* SyntaxKind.InterfaceDeclaration */ && n.parent.kind !== 257 /* SyntaxKind.ClassDeclaration */ && n.parent.kind !== 226 /* SyntaxKind.ClassExpression */ && n.flags & 16777216 /* NodeFlags.Ambient */) { if (!(flags & 2 /* ModifierFlags.Ambient */) && !(ts.isModuleBlock(n.parent) && ts.isModuleDeclaration(n.parent.parent) && ts.isGlobalScopeAugmentation(n.parent.parent))) { // It is nested in an ambient context, which means it is automatically exported flags |= 1 /* ModifierFlags.Export */; } flags |= 2 /* ModifierFlags.Ambient */; } return flags & flagsToCheck; } function checkFunctionOrConstructorSymbol(symbol) { addLazyDiagnostic(function () { return checkFunctionOrConstructorSymbolWorker(symbol); }); } function checkFunctionOrConstructorSymbolWorker(symbol) { function getCanonicalOverload(overloads, implementation) { // Consider the canonical set of flags to be the flags of the bodyDeclaration or the first declaration // Error on all deviations from this canonical set of flags // The caveat is that if some overloads are defined in lib.d.ts, we don't want to // report the errors on those. To achieve this, we will say that the implementation is // the canonical signature only if it is in the same container as the first overload var implementationSharesContainerWithFirstOverload = implementation !== undefined && implementation.parent === overloads[0].parent; return implementationSharesContainerWithFirstOverload ? implementation : overloads[0]; } function checkFlagAgreementBetweenOverloads(overloads, implementation, flagsToCheck, someOverloadFlags, allOverloadFlags) { // Error if some overloads have a flag that is not shared by all overloads. To find the // deviations, we XOR someOverloadFlags with allOverloadFlags var someButNotAllOverloadFlags = someOverloadFlags ^ allOverloadFlags; if (someButNotAllOverloadFlags !== 0) { var canonicalFlags_1 = getEffectiveDeclarationFlags(getCanonicalOverload(overloads, implementation), flagsToCheck); ts.forEach(overloads, function (o) { var deviation = getEffectiveDeclarationFlags(o, flagsToCheck) ^ canonicalFlags_1; if (deviation & 1 /* ModifierFlags.Export */) { error(ts.getNameOfDeclaration(o), ts.Diagnostics.Overload_signatures_must_all_be_exported_or_non_exported); } else if (deviation & 2 /* ModifierFlags.Ambient */) { error(ts.getNameOfDeclaration(o), ts.Diagnostics.Overload_signatures_must_all_be_ambient_or_non_ambient); } else if (deviation & (8 /* ModifierFlags.Private */ | 16 /* ModifierFlags.Protected */)) { error(ts.getNameOfDeclaration(o) || o, ts.Diagnostics.Overload_signatures_must_all_be_public_private_or_protected); } else if (deviation & 128 /* ModifierFlags.Abstract */) { error(ts.getNameOfDeclaration(o), ts.Diagnostics.Overload_signatures_must_all_be_abstract_or_non_abstract); } }); } } function checkQuestionTokenAgreementBetweenOverloads(overloads, implementation, someHaveQuestionToken, allHaveQuestionToken) { if (someHaveQuestionToken !== allHaveQuestionToken) { var canonicalHasQuestionToken_1 = ts.hasQuestionToken(getCanonicalOverload(overloads, implementation)); ts.forEach(overloads, function (o) { var deviation = ts.hasQuestionToken(o) !== canonicalHasQuestionToken_1; if (deviation) { error(ts.getNameOfDeclaration(o), ts.Diagnostics.Overload_signatures_must_all_be_optional_or_required); } }); } } var flagsToCheck = 1 /* ModifierFlags.Export */ | 2 /* ModifierFlags.Ambient */ | 8 /* ModifierFlags.Private */ | 16 /* ModifierFlags.Protected */ | 128 /* ModifierFlags.Abstract */; var someNodeFlags = 0 /* ModifierFlags.None */; var allNodeFlags = flagsToCheck; var someHaveQuestionToken = false; var allHaveQuestionToken = true; var hasOverloads = false; var bodyDeclaration; var lastSeenNonAmbientDeclaration; var previousDeclaration; var declarations = symbol.declarations; var isConstructor = (symbol.flags & 16384 /* SymbolFlags.Constructor */) !== 0; function reportImplementationExpectedError(node) { if (node.name && ts.nodeIsMissing(node.name)) { return; } var seen = false; var subsequentNode = ts.forEachChild(node.parent, function (c) { if (seen) { return c; } else { seen = c === node; } }); // We may be here because of some extra nodes between overloads that could not be parsed into a valid node. // In this case the subsequent node is not really consecutive (.pos !== node.end), and we must ignore it here. if (subsequentNode && subsequentNode.pos === node.end) { if (subsequentNode.kind === node.kind) { var errorNode_1 = subsequentNode.name || subsequentNode; var subsequentName = subsequentNode.name; if (node.name && subsequentName && ( // both are private identifiers ts.isPrivateIdentifier(node.name) && ts.isPrivateIdentifier(subsequentName) && node.name.escapedText === subsequentName.escapedText || // Both are computed property names // TODO: GH#17345: These are methods, so handle computed name case. (`Always allowing computed property names is *not* the correct behavior!) ts.isComputedPropertyName(node.name) && ts.isComputedPropertyName(subsequentName) || // Both are literal property names that are the same. ts.isPropertyNameLiteral(node.name) && ts.isPropertyNameLiteral(subsequentName) && ts.getEscapedTextOfIdentifierOrLiteral(node.name) === ts.getEscapedTextOfIdentifierOrLiteral(subsequentName))) { var reportError = (node.kind === 169 /* SyntaxKind.MethodDeclaration */ || node.kind === 168 /* SyntaxKind.MethodSignature */) && ts.isStatic(node) !== ts.isStatic(subsequentNode); // we can get here in two cases // 1. mixed static and instance class members // 2. something with the same name was defined before the set of overloads that prevents them from merging // here we'll report error only for the first case since for second we should already report error in binder if (reportError) { var diagnostic = ts.isStatic(node) ? ts.Diagnostics.Function_overload_must_be_static : ts.Diagnostics.Function_overload_must_not_be_static; error(errorNode_1, diagnostic); } return; } if (ts.nodeIsPresent(subsequentNode.body)) { error(errorNode_1, ts.Diagnostics.Function_implementation_name_must_be_0, ts.declarationNameToString(node.name)); return; } } } var errorNode = node.name || node; if (isConstructor) { error(errorNode, ts.Diagnostics.Constructor_implementation_is_missing); } else { // Report different errors regarding non-consecutive blocks of declarations depending on whether // the node in question is abstract. if (ts.hasSyntacticModifier(node, 128 /* ModifierFlags.Abstract */)) { error(errorNode, ts.Diagnostics.All_declarations_of_an_abstract_method_must_be_consecutive); } else { error(errorNode, ts.Diagnostics.Function_implementation_is_missing_or_not_immediately_following_the_declaration); } } } var duplicateFunctionDeclaration = false; var multipleConstructorImplementation = false; var hasNonAmbientClass = false; var functionDeclarations = []; if (declarations) { for (var _i = 0, declarations_5 = declarations; _i < declarations_5.length; _i++) { var current = declarations_5[_i]; var node = current; var inAmbientContext = node.flags & 16777216 /* NodeFlags.Ambient */; var inAmbientContextOrInterface = node.parent && (node.parent.kind === 258 /* SyntaxKind.InterfaceDeclaration */ || node.parent.kind === 182 /* SyntaxKind.TypeLiteral */) || inAmbientContext; if (inAmbientContextOrInterface) { // check if declarations are consecutive only if they are non-ambient // 1. ambient declarations can be interleaved // i.e. this is legal // declare function foo(); // declare function bar(); // declare function foo(); // 2. mixing ambient and non-ambient declarations is a separate error that will be reported - do not want to report an extra one previousDeclaration = undefined; } if ((node.kind === 257 /* SyntaxKind.ClassDeclaration */ || node.kind === 226 /* SyntaxKind.ClassExpression */) && !inAmbientContext) { hasNonAmbientClass = true; } if (node.kind === 256 /* SyntaxKind.FunctionDeclaration */ || node.kind === 169 /* SyntaxKind.MethodDeclaration */ || node.kind === 168 /* SyntaxKind.MethodSignature */ || node.kind === 171 /* SyntaxKind.Constructor */) { functionDeclarations.push(node); var currentNodeFlags = getEffectiveDeclarationFlags(node, flagsToCheck); someNodeFlags |= currentNodeFlags; allNodeFlags &= currentNodeFlags; someHaveQuestionToken = someHaveQuestionToken || ts.hasQuestionToken(node); allHaveQuestionToken = allHaveQuestionToken && ts.hasQuestionToken(node); var bodyIsPresent = ts.nodeIsPresent(node.body); if (bodyIsPresent && bodyDeclaration) { if (isConstructor) { multipleConstructorImplementation = true; } else { duplicateFunctionDeclaration = true; } } else if ((previousDeclaration === null || previousDeclaration === void 0 ? void 0 : previousDeclaration.parent) === node.parent && previousDeclaration.end !== node.pos) { reportImplementationExpectedError(previousDeclaration); } if (bodyIsPresent) { if (!bodyDeclaration) { bodyDeclaration = node; } } else { hasOverloads = true; } previousDeclaration = node; if (!inAmbientContextOrInterface) { lastSeenNonAmbientDeclaration = node; } } } } if (multipleConstructorImplementation) { ts.forEach(functionDeclarations, function (declaration) { error(declaration, ts.Diagnostics.Multiple_constructor_implementations_are_not_allowed); }); } if (duplicateFunctionDeclaration) { ts.forEach(functionDeclarations, function (declaration) { error(ts.getNameOfDeclaration(declaration) || declaration, ts.Diagnostics.Duplicate_function_implementation); }); } if (hasNonAmbientClass && !isConstructor && symbol.flags & 16 /* SymbolFlags.Function */ && declarations) { var relatedDiagnostics_1 = ts.filter(declarations, function (d) { return d.kind === 257 /* SyntaxKind.ClassDeclaration */; }) .map(function (d) { return ts.createDiagnosticForNode(d, ts.Diagnostics.Consider_adding_a_declare_modifier_to_this_class); }); ts.forEach(declarations, function (declaration) { var diagnostic = declaration.kind === 257 /* SyntaxKind.ClassDeclaration */ ? ts.Diagnostics.Class_declaration_cannot_implement_overload_list_for_0 : declaration.kind === 256 /* SyntaxKind.FunctionDeclaration */ ? ts.Diagnostics.Function_with_bodies_can_only_merge_with_classes_that_are_ambient : undefined; if (diagnostic) { ts.addRelatedInfo.apply(void 0, __spreadArray([error(ts.getNameOfDeclaration(declaration) || declaration, diagnostic, ts.symbolName(symbol))], relatedDiagnostics_1, false)); } }); } // Abstract methods can't have an implementation -- in particular, they don't need one. if (lastSeenNonAmbientDeclaration && !lastSeenNonAmbientDeclaration.body && !ts.hasSyntacticModifier(lastSeenNonAmbientDeclaration, 128 /* ModifierFlags.Abstract */) && !lastSeenNonAmbientDeclaration.questionToken) { reportImplementationExpectedError(lastSeenNonAmbientDeclaration); } if (hasOverloads) { if (declarations) { checkFlagAgreementBetweenOverloads(declarations, bodyDeclaration, flagsToCheck, someNodeFlags, allNodeFlags); checkQuestionTokenAgreementBetweenOverloads(declarations, bodyDeclaration, someHaveQuestionToken, allHaveQuestionToken); } if (bodyDeclaration) { var signatures = getSignaturesOfSymbol(symbol); var bodySignature = getSignatureFromDeclaration(bodyDeclaration); for (var _a = 0, signatures_10 = signatures; _a < signatures_10.length; _a++) { var signature = signatures_10[_a]; if (!isImplementationCompatibleWithOverload(bodySignature, signature)) { ts.addRelatedInfo(error(signature.declaration, ts.Diagnostics.This_overload_signature_is_not_compatible_with_its_implementation_signature), ts.createDiagnosticForNode(bodyDeclaration, ts.Diagnostics.The_implementation_signature_is_declared_here)); break; } } } } } function checkExportsOnMergedDeclarations(node) { addLazyDiagnostic(function () { return checkExportsOnMergedDeclarationsWorker(node); }); } function checkExportsOnMergedDeclarationsWorker(node) { // if localSymbol is defined on node then node itself is exported - check is required var symbol = node.localSymbol; if (!symbol) { // local symbol is undefined => this declaration is non-exported. // however symbol might contain other declarations that are exported symbol = getSymbolOfNode(node); if (!symbol.exportSymbol) { // this is a pure local symbol (all declarations are non-exported) - no need to check anything return; } } // run the check only for the first declaration in the list if (ts.getDeclarationOfKind(symbol, node.kind) !== node) { return; } var exportedDeclarationSpaces = 0 /* DeclarationSpaces.None */; var nonExportedDeclarationSpaces = 0 /* DeclarationSpaces.None */; var defaultExportedDeclarationSpaces = 0 /* DeclarationSpaces.None */; for (var _i = 0, _a = symbol.declarations; _i < _a.length; _i++) { var d = _a[_i]; var declarationSpaces = getDeclarationSpaces(d); var effectiveDeclarationFlags = getEffectiveDeclarationFlags(d, 1 /* ModifierFlags.Export */ | 512 /* ModifierFlags.Default */); if (effectiveDeclarationFlags & 1 /* ModifierFlags.Export */) { if (effectiveDeclarationFlags & 512 /* ModifierFlags.Default */) { defaultExportedDeclarationSpaces |= declarationSpaces; } else { exportedDeclarationSpaces |= declarationSpaces; } } else { nonExportedDeclarationSpaces |= declarationSpaces; } } // Spaces for anything not declared a 'default export'. var nonDefaultExportedDeclarationSpaces = exportedDeclarationSpaces | nonExportedDeclarationSpaces; var commonDeclarationSpacesForExportsAndLocals = exportedDeclarationSpaces & nonExportedDeclarationSpaces; var commonDeclarationSpacesForDefaultAndNonDefault = defaultExportedDeclarationSpaces & nonDefaultExportedDeclarationSpaces; if (commonDeclarationSpacesForExportsAndLocals || commonDeclarationSpacesForDefaultAndNonDefault) { // declaration spaces for exported and non-exported declarations intersect for (var _b = 0, _c = symbol.declarations; _b < _c.length; _b++) { var d = _c[_b]; var declarationSpaces = getDeclarationSpaces(d); var name = ts.getNameOfDeclaration(d); // Only error on the declarations that contributed to the intersecting spaces. if (declarationSpaces & commonDeclarationSpacesForDefaultAndNonDefault) { error(name, ts.Diagnostics.Merged_declaration_0_cannot_include_a_default_export_declaration_Consider_adding_a_separate_export_default_0_declaration_instead, ts.declarationNameToString(name)); } else if (declarationSpaces & commonDeclarationSpacesForExportsAndLocals) { error(name, ts.Diagnostics.Individual_declarations_in_merged_declaration_0_must_be_all_exported_or_all_local, ts.declarationNameToString(name)); } } } function getDeclarationSpaces(decl) { var d = decl; switch (d.kind) { case 258 /* SyntaxKind.InterfaceDeclaration */: case 259 /* SyntaxKind.TypeAliasDeclaration */: // A jsdoc typedef and callback are, by definition, type aliases. // falls through case 345 /* SyntaxKind.JSDocTypedefTag */: case 338 /* SyntaxKind.JSDocCallbackTag */: case 339 /* SyntaxKind.JSDocEnumTag */: return 2 /* DeclarationSpaces.ExportType */; case 261 /* SyntaxKind.ModuleDeclaration */: return ts.isAmbientModule(d) || ts.getModuleInstanceState(d) !== 0 /* ModuleInstanceState.NonInstantiated */ ? 4 /* DeclarationSpaces.ExportNamespace */ | 1 /* DeclarationSpaces.ExportValue */ : 4 /* DeclarationSpaces.ExportNamespace */; case 257 /* SyntaxKind.ClassDeclaration */: case 260 /* SyntaxKind.EnumDeclaration */: case 299 /* SyntaxKind.EnumMember */: return 2 /* DeclarationSpaces.ExportType */ | 1 /* DeclarationSpaces.ExportValue */; case 305 /* SyntaxKind.SourceFile */: return 2 /* DeclarationSpaces.ExportType */ | 1 /* DeclarationSpaces.ExportValue */ | 4 /* DeclarationSpaces.ExportNamespace */; case 271 /* SyntaxKind.ExportAssignment */: case 221 /* SyntaxKind.BinaryExpression */: var node_2 = d; var expression = ts.isExportAssignment(node_2) ? node_2.expression : node_2.right; // Export assigned entity name expressions act as aliases and should fall through, otherwise they export values if (!ts.isEntityNameExpression(expression)) { return 1 /* DeclarationSpaces.ExportValue */; } d = expression; // The below options all declare an Alias, which is allowed to merge with other values within the importing module. // falls through case 265 /* SyntaxKind.ImportEqualsDeclaration */: case 268 /* SyntaxKind.NamespaceImport */: case 267 /* SyntaxKind.ImportClause */: var result_12 = 0 /* DeclarationSpaces.None */; var target = resolveAlias(getSymbolOfNode(d)); ts.forEach(target.declarations, function (d) { result_12 |= getDeclarationSpaces(d); }); return result_12; case 254 /* SyntaxKind.VariableDeclaration */: case 203 /* SyntaxKind.BindingElement */: case 256 /* SyntaxKind.FunctionDeclaration */: case 270 /* SyntaxKind.ImportSpecifier */: // https://github.com/Microsoft/TypeScript/pull/7591 case 79 /* SyntaxKind.Identifier */: // https://github.com/microsoft/TypeScript/issues/36098 // Identifiers are used as declarations of assignment declarations whose parents may be // SyntaxKind.CallExpression - `Object.defineProperty(thing, "aField", {value: 42});` // SyntaxKind.ElementAccessExpression - `thing["aField"] = 42;` or `thing["aField"];` (with a doc comment on it) // or SyntaxKind.PropertyAccessExpression - `thing.aField = 42;` // all of which are pretty much always values, or at least imply a value meaning. // It may be apprpriate to treat these as aliases in the future. return 1 /* DeclarationSpaces.ExportValue */; default: return ts.Debug.failBadSyntaxKind(d); } } } function getAwaitedTypeOfPromise(type, errorNode, diagnosticMessage, arg0) { var promisedType = getPromisedTypeOfPromise(type, errorNode); return promisedType && getAwaitedType(promisedType, errorNode, diagnosticMessage, arg0); } /** * Gets the "promised type" of a promise. * @param type The type of the promise. * @remarks The "promised type" of a type is the type of the "value" parameter of the "onfulfilled" callback. */ function getPromisedTypeOfPromise(type, errorNode) { // // { // type // then( // thenFunction // onfulfilled: ( // onfulfilledParameterType // value: T // valueParameterType // ) => any // ): any; // } // if (isTypeAny(type)) { return undefined; } var typeAsPromise = type; if (typeAsPromise.promisedTypeOfPromise) { return typeAsPromise.promisedTypeOfPromise; } if (isReferenceToType(type, getGlobalPromiseType(/*reportErrors*/ false))) { return typeAsPromise.promisedTypeOfPromise = getTypeArguments(type)[0]; } // primitives with a `{ then() }` won't be unwrapped/adopted. if (allTypesAssignableToKind(type, 131068 /* TypeFlags.Primitive */ | 131072 /* TypeFlags.Never */)) { return undefined; } var thenFunction = getTypeOfPropertyOfType(type, "then"); // TODO: GH#18217 if (isTypeAny(thenFunction)) { return undefined; } var thenSignatures = thenFunction ? getSignaturesOfType(thenFunction, 0 /* SignatureKind.Call */) : ts.emptyArray; if (thenSignatures.length === 0) { if (errorNode) { error(errorNode, ts.Diagnostics.A_promise_must_have_a_then_method); } return undefined; } var onfulfilledParameterType = getTypeWithFacts(getUnionType(ts.map(thenSignatures, getTypeOfFirstParameterOfSignature)), 2097152 /* TypeFacts.NEUndefinedOrNull */); if (isTypeAny(onfulfilledParameterType)) { return undefined; } var onfulfilledParameterSignatures = getSignaturesOfType(onfulfilledParameterType, 0 /* SignatureKind.Call */); if (onfulfilledParameterSignatures.length === 0) { if (errorNode) { error(errorNode, ts.Diagnostics.The_first_parameter_of_the_then_method_of_a_promise_must_be_a_callback); } return undefined; } return typeAsPromise.promisedTypeOfPromise = getUnionType(ts.map(onfulfilledParameterSignatures, getTypeOfFirstParameterOfSignature), 2 /* UnionReduction.Subtype */); } /** * Gets the "awaited type" of a type. * @param type The type to await. * @param withAlias When `true`, wraps the "awaited type" in `Awaited` if needed. * @remarks The "awaited type" of an expression is its "promised type" if the expression is a * Promise-like type; otherwise, it is the type of the expression. This is used to reflect * The runtime behavior of the `await` keyword. */ function checkAwaitedType(type, withAlias, errorNode, diagnosticMessage, arg0) { var awaitedType = withAlias ? getAwaitedType(type, errorNode, diagnosticMessage, arg0) : getAwaitedTypeNoAlias(type, errorNode, diagnosticMessage, arg0); return awaitedType || errorType; } /** * Determines whether a type is an object with a callable `then` member. */ function isThenableType(type) { if (allTypesAssignableToKind(type, 131068 /* TypeFlags.Primitive */ | 131072 /* TypeFlags.Never */)) { // primitive types cannot be considered "thenable" since they are not objects. return false; } var thenFunction = getTypeOfPropertyOfType(type, "then"); return !!thenFunction && getSignaturesOfType(getTypeWithFacts(thenFunction, 2097152 /* TypeFacts.NEUndefinedOrNull */), 0 /* SignatureKind.Call */).length > 0; } function isAwaitedTypeInstantiation(type) { var _a; if (type.flags & 16777216 /* TypeFlags.Conditional */) { var awaitedSymbol = getGlobalAwaitedSymbol(/*reportErrors*/ false); return !!awaitedSymbol && type.aliasSymbol === awaitedSymbol && ((_a = type.aliasTypeArguments) === null || _a === void 0 ? void 0 : _a.length) === 1; } return false; } /** * For a generic `Awaited`, gets `T`. */ function unwrapAwaitedType(type) { return type.flags & 1048576 /* TypeFlags.Union */ ? mapType(type, unwrapAwaitedType) : isAwaitedTypeInstantiation(type) ? type.aliasTypeArguments[0] : type; } function createAwaitedTypeIfNeeded(type) { // We wrap type `T` in `Awaited` based on the following conditions: // - `T` is not already an `Awaited`, and // - `T` is generic, and // - One of the following applies: // - `T` has no base constraint, or // - The base constraint of `T` is `any`, `unknown`, `object`, or `{}`, or // - The base constraint of `T` is an object type with a callable `then` method. if (isTypeAny(type)) { return type; } // If this is already an `Awaited`, just return it. This helps to avoid `Awaited>` in higher-order. if (isAwaitedTypeInstantiation(type)) { return type; } // Only instantiate `Awaited` if `T` contains possibly non-primitive types. if (isGenericObjectType(type)) { var baseConstraint = getBaseConstraintOfType(type); // Only instantiate `Awaited` if `T` has no base constraint, or the base constraint of `T` is `any`, `unknown`, `{}`, `object`, // or is promise-like. if (!baseConstraint || (baseConstraint.flags & 3 /* TypeFlags.AnyOrUnknown */) || isEmptyObjectType(baseConstraint) || isThenableType(baseConstraint)) { // Nothing to do if `Awaited` doesn't exist var awaitedSymbol = getGlobalAwaitedSymbol(/*reportErrors*/ true); if (awaitedSymbol) { // Unwrap unions that may contain `Awaited`, otherwise its possible to manufacture an `Awaited | U>` where // an `Awaited` would suffice. return getTypeAliasInstantiation(awaitedSymbol, [unwrapAwaitedType(type)]); } } } ts.Debug.assert(getPromisedTypeOfPromise(type) === undefined, "type provided should not be a non-generic 'promise'-like."); return type; } /** * Gets the "awaited type" of a type. * * The "awaited type" of an expression is its "promised type" if the expression is a * Promise-like type; otherwise, it is the type of the expression. If the "promised * type" is itself a Promise-like, the "promised type" is recursively unwrapped until a * non-promise type is found. * * This is used to reflect the runtime behavior of the `await` keyword. */ function getAwaitedType(type, errorNode, diagnosticMessage, arg0) { var awaitedType = getAwaitedTypeNoAlias(type, errorNode, diagnosticMessage, arg0); return awaitedType && createAwaitedTypeIfNeeded(awaitedType); } /** * Gets the "awaited type" of a type without introducing an `Awaited` wrapper. * * @see {@link getAwaitedType} */ function getAwaitedTypeNoAlias(type, errorNode, diagnosticMessage, arg0) { if (isTypeAny(type)) { return type; } // If this is already an `Awaited`, just return it. This avoids `Awaited>` in higher-order if (isAwaitedTypeInstantiation(type)) { return type; } // If we've already cached an awaited type, return a possible `Awaited` for it. var typeAsAwaitable = type; if (typeAsAwaitable.awaitedTypeOfType) { return typeAsAwaitable.awaitedTypeOfType; } // For a union, get a union of the awaited types of each constituent. if (type.flags & 1048576 /* TypeFlags.Union */) { var mapper = errorNode ? function (constituentType) { return getAwaitedTypeNoAlias(constituentType, errorNode, diagnosticMessage, arg0); } : getAwaitedTypeNoAlias; return typeAsAwaitable.awaitedTypeOfType = mapType(type, mapper); } var promisedType = getPromisedTypeOfPromise(type); if (promisedType) { if (type.id === promisedType.id || awaitedTypeStack.lastIndexOf(promisedType.id) >= 0) { // Verify that we don't have a bad actor in the form of a promise whose // promised type is the same as the promise type, or a mutually recursive // promise. If so, we return undefined as we cannot guess the shape. If this // were the actual case in the JavaScript, this Promise would never resolve. // // An example of a bad actor with a singly-recursive promise type might // be: // // interface BadPromise { // then( // onfulfilled: (value: BadPromise) => any, // onrejected: (error: any) => any): BadPromise; // } // // The above interface will pass the PromiseLike check, and return a // promised type of `BadPromise`. Since this is a self reference, we // don't want to keep recursing ad infinitum. // // An example of a bad actor in the form of a mutually-recursive // promise type might be: // // interface BadPromiseA { // then( // onfulfilled: (value: BadPromiseB) => any, // onrejected: (error: any) => any): BadPromiseB; // } // // interface BadPromiseB { // then( // onfulfilled: (value: BadPromiseA) => any, // onrejected: (error: any) => any): BadPromiseA; // } // if (errorNode) { error(errorNode, ts.Diagnostics.Type_is_referenced_directly_or_indirectly_in_the_fulfillment_callback_of_its_own_then_method); } return undefined; } // Keep track of the type we're about to unwrap to avoid bad recursive promise types. // See the comments above for more information. awaitedTypeStack.push(type.id); var awaitedType = getAwaitedTypeNoAlias(promisedType, errorNode, diagnosticMessage, arg0); awaitedTypeStack.pop(); if (!awaitedType) { return undefined; } return typeAsAwaitable.awaitedTypeOfType = awaitedType; } // The type was not a promise, so it could not be unwrapped any further. // As long as the type does not have a callable "then" property, it is // safe to return the type; otherwise, an error is reported and we return // undefined. // // An example of a non-promise "thenable" might be: // // await { then(): void {} } // // The "thenable" does not match the minimal definition for a promise. When // a Promise/A+-compatible or ES6 promise tries to adopt this value, the promise // will never settle. We treat this as an error to help flag an early indicator // of a runtime problem. If the user wants to return this value from an async // function, they would need to wrap it in some other value. If they want it to // be treated as a promise, they can cast to . if (isThenableType(type)) { if (errorNode) { ts.Debug.assertIsDefined(diagnosticMessage); error(errorNode, diagnosticMessage, arg0); } return undefined; } return typeAsAwaitable.awaitedTypeOfType = type; } /** * Checks the return type of an async function to ensure it is a compatible * Promise implementation. * * This checks that an async function has a valid Promise-compatible return type. * An async function has a valid Promise-compatible return type if the resolved value * of the return type has a construct signature that takes in an `initializer` function * that in turn supplies a `resolve` function as one of its arguments and results in an * object with a callable `then` signature. * * @param node The signature to check */ function checkAsyncFunctionReturnType(node, returnTypeNode) { // As part of our emit for an async function, we will need to emit the entity name of // the return type annotation as an expression. To meet the necessary runtime semantics // for __awaiter, we must also check that the type of the declaration (e.g. the static // side or "constructor" of the promise type) is compatible `PromiseConstructorLike`. // // An example might be (from lib.es6.d.ts): // // interface Promise { ... } // interface PromiseConstructor { // new (...): Promise; // } // declare var Promise: PromiseConstructor; // // When an async function declares a return type annotation of `Promise`, we // need to get the type of the `Promise` variable declaration above, which would // be `PromiseConstructor`. // // The same case applies to a class: // // declare class Promise { // constructor(...); // then(...): Promise; // } // var returnType = getTypeFromTypeNode(returnTypeNode); if (languageVersion >= 2 /* ScriptTarget.ES2015 */) { if (isErrorType(returnType)) { return; } var globalPromiseType = getGlobalPromiseType(/*reportErrors*/ true); if (globalPromiseType !== emptyGenericType && !isReferenceToType(returnType, globalPromiseType)) { // The promise type was not a valid type reference to the global promise type, so we // report an error and return the unknown type. error(returnTypeNode, ts.Diagnostics.The_return_type_of_an_async_function_or_method_must_be_the_global_Promise_T_type_Did_you_mean_to_write_Promise_0, typeToString(getAwaitedTypeNoAlias(returnType) || voidType)); return; } } else { // Always mark the type node as referenced if it points to a value markTypeNodeAsReferenced(returnTypeNode); if (isErrorType(returnType)) { return; } var promiseConstructorName = ts.getEntityNameFromTypeNode(returnTypeNode); if (promiseConstructorName === undefined) { error(returnTypeNode, ts.Diagnostics.Type_0_is_not_a_valid_async_function_return_type_in_ES5_SlashES3_because_it_does_not_refer_to_a_Promise_compatible_constructor_value, typeToString(returnType)); return; } var promiseConstructorSymbol = resolveEntityName(promiseConstructorName, 111551 /* SymbolFlags.Value */, /*ignoreErrors*/ true); var promiseConstructorType = promiseConstructorSymbol ? getTypeOfSymbol(promiseConstructorSymbol) : errorType; if (isErrorType(promiseConstructorType)) { if (promiseConstructorName.kind === 79 /* SyntaxKind.Identifier */ && promiseConstructorName.escapedText === "Promise" && getTargetType(returnType) === getGlobalPromiseType(/*reportErrors*/ false)) { error(returnTypeNode, ts.Diagnostics.An_async_function_or_method_in_ES5_SlashES3_requires_the_Promise_constructor_Make_sure_you_have_a_declaration_for_the_Promise_constructor_or_include_ES2015_in_your_lib_option); } else { error(returnTypeNode, ts.Diagnostics.Type_0_is_not_a_valid_async_function_return_type_in_ES5_SlashES3_because_it_does_not_refer_to_a_Promise_compatible_constructor_value, ts.entityNameToString(promiseConstructorName)); } return; } var globalPromiseConstructorLikeType = getGlobalPromiseConstructorLikeType(/*reportErrors*/ true); if (globalPromiseConstructorLikeType === emptyObjectType) { // If we couldn't resolve the global PromiseConstructorLike type we cannot verify // compatibility with __awaiter. error(returnTypeNode, ts.Diagnostics.Type_0_is_not_a_valid_async_function_return_type_in_ES5_SlashES3_because_it_does_not_refer_to_a_Promise_compatible_constructor_value, ts.entityNameToString(promiseConstructorName)); return; } if (!checkTypeAssignableTo(promiseConstructorType, globalPromiseConstructorLikeType, returnTypeNode, ts.Diagnostics.Type_0_is_not_a_valid_async_function_return_type_in_ES5_SlashES3_because_it_does_not_refer_to_a_Promise_compatible_constructor_value)) { return; } // Verify there is no local declaration that could collide with the promise constructor. var rootName = promiseConstructorName && ts.getFirstIdentifier(promiseConstructorName); var collidingSymbol = getSymbol(node.locals, rootName.escapedText, 111551 /* SymbolFlags.Value */); if (collidingSymbol) { error(collidingSymbol.valueDeclaration, ts.Diagnostics.Duplicate_identifier_0_Compiler_uses_declaration_1_to_support_async_functions, ts.idText(rootName), ts.entityNameToString(promiseConstructorName)); return; } } checkAwaitedType(returnType, /*withAlias*/ false, node, ts.Diagnostics.The_return_type_of_an_async_function_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member); } /** Check a decorator */ function checkDecorator(node) { var signature = getResolvedSignature(node); checkDeprecatedSignature(signature, node); var returnType = getReturnTypeOfSignature(signature); if (returnType.flags & 1 /* TypeFlags.Any */) { return; } var headMessage; var expectedReturnType; switch (node.parent.kind) { case 257 /* SyntaxKind.ClassDeclaration */: headMessage = ts.Diagnostics.Decorator_function_return_type_0_is_not_assignable_to_type_1; var classSymbol = getSymbolOfNode(node.parent); var classConstructorType = getTypeOfSymbol(classSymbol); expectedReturnType = getUnionType([classConstructorType, voidType]); break; case 167 /* SyntaxKind.PropertyDeclaration */: case 164 /* SyntaxKind.Parameter */: headMessage = ts.Diagnostics.Decorator_function_return_type_is_0_but_is_expected_to_be_void_or_any; expectedReturnType = voidType; break; case 169 /* SyntaxKind.MethodDeclaration */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: headMessage = ts.Diagnostics.Decorator_function_return_type_0_is_not_assignable_to_type_1; var methodType = getTypeOfNode(node.parent); var descriptorType = createTypedPropertyDescriptorType(methodType); expectedReturnType = getUnionType([descriptorType, voidType]); break; default: return ts.Debug.fail(); } checkTypeAssignableTo(returnType, expectedReturnType, node, headMessage); } /** * If a TypeNode can be resolved to a value symbol imported from an external module, it is * marked as referenced to prevent import elision. */ function markTypeNodeAsReferenced(node) { markEntityNameOrEntityExpressionAsReference(node && ts.getEntityNameFromTypeNode(node), /*forDecoratorMetadata*/ false); } function markEntityNameOrEntityExpressionAsReference(typeName, forDecoratorMetadata) { if (!typeName) return; var rootName = ts.getFirstIdentifier(typeName); var meaning = (typeName.kind === 79 /* SyntaxKind.Identifier */ ? 788968 /* SymbolFlags.Type */ : 1920 /* SymbolFlags.Namespace */) | 2097152 /* SymbolFlags.Alias */; var rootSymbol = resolveName(rootName, rootName.escapedText, meaning, /*nameNotFoundMessage*/ undefined, /*nameArg*/ undefined, /*isReference*/ true); if (rootSymbol && rootSymbol.flags & 2097152 /* SymbolFlags.Alias */) { if (symbolIsValue(rootSymbol) && !isConstEnumOrConstEnumOnlyModule(resolveAlias(rootSymbol)) && !getTypeOnlyAliasDeclaration(rootSymbol)) { markAliasSymbolAsReferenced(rootSymbol); } else if (forDecoratorMetadata && compilerOptions.isolatedModules && ts.getEmitModuleKind(compilerOptions) >= ts.ModuleKind.ES2015 && !symbolIsValue(rootSymbol) && !ts.some(rootSymbol.declarations, ts.isTypeOnlyImportOrExportDeclaration)) { var diag = error(typeName, ts.Diagnostics.A_type_referenced_in_a_decorated_signature_must_be_imported_with_import_type_or_a_namespace_import_when_isolatedModules_and_emitDecoratorMetadata_are_enabled); var aliasDeclaration = ts.find(rootSymbol.declarations || ts.emptyArray, isAliasSymbolDeclaration); if (aliasDeclaration) { ts.addRelatedInfo(diag, ts.createDiagnosticForNode(aliasDeclaration, ts.Diagnostics._0_was_imported_here, ts.idText(rootName))); } } } } /** * This function marks the type used for metadata decorator as referenced if it is import * from external module. * This is different from markTypeNodeAsReferenced because it tries to simplify type nodes in * union and intersection type * @param node */ function markDecoratorMedataDataTypeNodeAsReferenced(node) { var entityName = getEntityNameForDecoratorMetadata(node); if (entityName && ts.isEntityName(entityName)) { markEntityNameOrEntityExpressionAsReference(entityName, /*forDecoratorMetadata*/ true); } } function getEntityNameForDecoratorMetadata(node) { if (node) { switch (node.kind) { case 188 /* SyntaxKind.IntersectionType */: case 187 /* SyntaxKind.UnionType */: return getEntityNameForDecoratorMetadataFromTypeList(node.types); case 189 /* SyntaxKind.ConditionalType */: return getEntityNameForDecoratorMetadataFromTypeList([node.trueType, node.falseType]); case 191 /* SyntaxKind.ParenthesizedType */: case 197 /* SyntaxKind.NamedTupleMember */: return getEntityNameForDecoratorMetadata(node.type); case 178 /* SyntaxKind.TypeReference */: return node.typeName; } } } function getEntityNameForDecoratorMetadataFromTypeList(types) { var commonEntityName; for (var _i = 0, types_22 = types; _i < types_22.length; _i++) { var typeNode = types_22[_i]; while (typeNode.kind === 191 /* SyntaxKind.ParenthesizedType */ || typeNode.kind === 197 /* SyntaxKind.NamedTupleMember */) { typeNode = typeNode.type; // Skip parens if need be } if (typeNode.kind === 143 /* SyntaxKind.NeverKeyword */) { continue; // Always elide `never` from the union/intersection if possible } if (!strictNullChecks && (typeNode.kind === 196 /* SyntaxKind.LiteralType */ && typeNode.literal.kind === 104 /* SyntaxKind.NullKeyword */ || typeNode.kind === 153 /* SyntaxKind.UndefinedKeyword */)) { continue; // Elide null and undefined from unions for metadata, just like what we did prior to the implementation of strict null checks } var individualEntityName = getEntityNameForDecoratorMetadata(typeNode); if (!individualEntityName) { // Individual is something like string number // So it would be serialized to either that type or object // Safe to return here return undefined; } if (commonEntityName) { // Note this is in sync with the transformation that happens for type node. // Keep this in sync with serializeUnionOrIntersectionType // Verify if they refer to same entity and is identifier // return undefined if they dont match because we would emit object if (!ts.isIdentifier(commonEntityName) || !ts.isIdentifier(individualEntityName) || commonEntityName.escapedText !== individualEntityName.escapedText) { return undefined; } } else { commonEntityName = individualEntityName; } } return commonEntityName; } function getParameterTypeNodeForDecoratorCheck(node) { var typeNode = ts.getEffectiveTypeAnnotationNode(node); return ts.isRestParameter(node) ? ts.getRestParameterElementType(typeNode) : typeNode; } /** Check the decorators of a node */ function checkDecorators(node) { if (!node.decorators) { return; } // skip this check for nodes that cannot have decorators. These should have already had an error reported by // checkGrammarDecorators. if (!ts.nodeCanBeDecorated(node, node.parent, node.parent.parent)) { return; } if (!compilerOptions.experimentalDecorators) { error(node, ts.Diagnostics.Experimental_support_for_decorators_is_a_feature_that_is_subject_to_change_in_a_future_release_Set_the_experimentalDecorators_option_in_your_tsconfig_or_jsconfig_to_remove_this_warning); } var firstDecorator = node.decorators[0]; checkExternalEmitHelpers(firstDecorator, 8 /* ExternalEmitHelpers.Decorate */); if (node.kind === 164 /* SyntaxKind.Parameter */) { checkExternalEmitHelpers(firstDecorator, 32 /* ExternalEmitHelpers.Param */); } if (compilerOptions.emitDecoratorMetadata) { checkExternalEmitHelpers(firstDecorator, 16 /* ExternalEmitHelpers.Metadata */); // we only need to perform these checks if we are emitting serialized type metadata for the target of a decorator. switch (node.kind) { case 257 /* SyntaxKind.ClassDeclaration */: var constructor = ts.getFirstConstructorWithBody(node); if (constructor) { for (var _i = 0, _a = constructor.parameters; _i < _a.length; _i++) { var parameter = _a[_i]; markDecoratorMedataDataTypeNodeAsReferenced(getParameterTypeNodeForDecoratorCheck(parameter)); } } break; case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: var otherKind = node.kind === 172 /* SyntaxKind.GetAccessor */ ? 173 /* SyntaxKind.SetAccessor */ : 172 /* SyntaxKind.GetAccessor */; var otherAccessor = ts.getDeclarationOfKind(getSymbolOfNode(node), otherKind); markDecoratorMedataDataTypeNodeAsReferenced(getAnnotatedAccessorTypeNode(node) || otherAccessor && getAnnotatedAccessorTypeNode(otherAccessor)); break; case 169 /* SyntaxKind.MethodDeclaration */: for (var _b = 0, _c = node.parameters; _b < _c.length; _b++) { var parameter = _c[_b]; markDecoratorMedataDataTypeNodeAsReferenced(getParameterTypeNodeForDecoratorCheck(parameter)); } markDecoratorMedataDataTypeNodeAsReferenced(ts.getEffectiveReturnTypeNode(node)); break; case 167 /* SyntaxKind.PropertyDeclaration */: markDecoratorMedataDataTypeNodeAsReferenced(ts.getEffectiveTypeAnnotationNode(node)); break; case 164 /* SyntaxKind.Parameter */: markDecoratorMedataDataTypeNodeAsReferenced(getParameterTypeNodeForDecoratorCheck(node)); var containingSignature = node.parent; for (var _d = 0, _e = containingSignature.parameters; _d < _e.length; _d++) { var parameter = _e[_d]; markDecoratorMedataDataTypeNodeAsReferenced(getParameterTypeNodeForDecoratorCheck(parameter)); } break; } } ts.forEach(node.decorators, checkDecorator); } function checkFunctionDeclaration(node) { addLazyDiagnostic(checkFunctionDeclarationDiagnostics); function checkFunctionDeclarationDiagnostics() { checkFunctionOrMethodDeclaration(node); checkGrammarForGenerator(node); checkCollisionsForDeclarationName(node, node.name); } } function checkJSDocTypeAliasTag(node) { if (!node.typeExpression) { // If the node had `@property` tags, `typeExpression` would have been set to the first property tag. error(node.name, ts.Diagnostics.JSDoc_typedef_tag_should_either_have_a_type_annotation_or_be_followed_by_property_or_member_tags); } if (node.name) { checkTypeNameIsReserved(node.name, ts.Diagnostics.Type_alias_name_cannot_be_0); } checkSourceElement(node.typeExpression); checkTypeParameters(ts.getEffectiveTypeParameterDeclarations(node)); } function checkJSDocTemplateTag(node) { checkSourceElement(node.constraint); for (var _i = 0, _a = node.typeParameters; _i < _a.length; _i++) { var tp = _a[_i]; checkSourceElement(tp); } } function checkJSDocTypeTag(node) { checkSourceElement(node.typeExpression); } function checkJSDocParameterTag(node) { checkSourceElement(node.typeExpression); } function checkJSDocPropertyTag(node) { checkSourceElement(node.typeExpression); } function checkJSDocFunctionType(node) { addLazyDiagnostic(checkJSDocFunctionTypeImplicitAny); checkSignatureDeclaration(node); function checkJSDocFunctionTypeImplicitAny() { if (!node.type && !ts.isJSDocConstructSignature(node)) { reportImplicitAny(node, anyType); } } } function checkJSDocImplementsTag(node) { var classLike = ts.getEffectiveJSDocHost(node); if (!classLike || !ts.isClassDeclaration(classLike) && !ts.isClassExpression(classLike)) { error(classLike, ts.Diagnostics.JSDoc_0_is_not_attached_to_a_class, ts.idText(node.tagName)); } } function checkJSDocAugmentsTag(node) { var classLike = ts.getEffectiveJSDocHost(node); if (!classLike || !ts.isClassDeclaration(classLike) && !ts.isClassExpression(classLike)) { error(classLike, ts.Diagnostics.JSDoc_0_is_not_attached_to_a_class, ts.idText(node.tagName)); return; } var augmentsTags = ts.getJSDocTags(classLike).filter(ts.isJSDocAugmentsTag); ts.Debug.assert(augmentsTags.length > 0); if (augmentsTags.length > 1) { error(augmentsTags[1], ts.Diagnostics.Class_declarations_cannot_have_more_than_one_augments_or_extends_tag); } var name = getIdentifierFromEntityNameExpression(node.class.expression); var extend = ts.getClassExtendsHeritageElement(classLike); if (extend) { var className = getIdentifierFromEntityNameExpression(extend.expression); if (className && name.escapedText !== className.escapedText) { error(name, ts.Diagnostics.JSDoc_0_1_does_not_match_the_extends_2_clause, ts.idText(node.tagName), ts.idText(name), ts.idText(className)); } } } function checkJSDocAccessibilityModifiers(node) { var host = ts.getJSDocHost(node); if (host && ts.isPrivateIdentifierClassElementDeclaration(host)) { error(node, ts.Diagnostics.An_accessibility_modifier_cannot_be_used_with_a_private_identifier); } } function getIdentifierFromEntityNameExpression(node) { switch (node.kind) { case 79 /* SyntaxKind.Identifier */: return node; case 206 /* SyntaxKind.PropertyAccessExpression */: return node.name; default: return undefined; } } function checkFunctionOrMethodDeclaration(node) { var _a; checkDecorators(node); checkSignatureDeclaration(node); var functionFlags = ts.getFunctionFlags(node); // Do not use hasDynamicName here, because that returns false for well known symbols. // We want to perform checkComputedPropertyName for all computed properties, including // well known symbols. if (node.name && node.name.kind === 162 /* SyntaxKind.ComputedPropertyName */) { // This check will account for methods in class/interface declarations, // as well as accessors in classes/object literals checkComputedPropertyName(node.name); } if (hasBindableName(node)) { // first we want to check the local symbol that contain this declaration // - if node.localSymbol !== undefined - this is current declaration is exported and localSymbol points to the local symbol // - if node.localSymbol === undefined - this node is non-exported so we can just pick the result of getSymbolOfNode var symbol = getSymbolOfNode(node); var localSymbol = node.localSymbol || symbol; // Since the javascript won't do semantic analysis like typescript, // if the javascript file comes before the typescript file and both contain same name functions, // checkFunctionOrConstructorSymbol wouldn't be called if we didnt ignore javascript function. var firstDeclaration = (_a = localSymbol.declarations) === null || _a === void 0 ? void 0 : _a.find( // Get first non javascript function declaration function (declaration) { return declaration.kind === node.kind && !(declaration.flags & 262144 /* NodeFlags.JavaScriptFile */); }); // Only type check the symbol once if (node === firstDeclaration) { checkFunctionOrConstructorSymbol(localSymbol); } if (symbol.parent) { // run check on export symbol to check that modifiers agree across all exported declarations checkFunctionOrConstructorSymbol(symbol); } } var body = node.kind === 168 /* SyntaxKind.MethodSignature */ ? undefined : node.body; checkSourceElement(body); checkAllCodePathsInNonVoidFunctionReturnOrThrow(node, getReturnTypeFromAnnotation(node)); addLazyDiagnostic(checkFunctionOrMethodDeclarationDiagnostics); // A js function declaration can have a @type tag instead of a return type node, but that type must have a call signature if (ts.isInJSFile(node)) { var typeTag = ts.getJSDocTypeTag(node); if (typeTag && typeTag.typeExpression && !getContextualCallSignature(getTypeFromTypeNode(typeTag.typeExpression), node)) { error(typeTag.typeExpression.type, ts.Diagnostics.The_type_of_a_function_declaration_must_match_the_function_s_signature); } } function checkFunctionOrMethodDeclarationDiagnostics() { if (!ts.getEffectiveReturnTypeNode(node)) { // Report an implicit any error if there is no body, no explicit return type, and node is not a private method // in an ambient context if (ts.nodeIsMissing(body) && !isPrivateWithinAmbient(node)) { reportImplicitAny(node, anyType); } if (functionFlags & 1 /* FunctionFlags.Generator */ && ts.nodeIsPresent(body)) { // A generator with a body and no type annotation can still cause errors. It can error if the // yielded values have no common supertype, or it can give an implicit any error if it has no // yielded values. The only way to trigger these errors is to try checking its return type. getReturnTypeOfSignature(getSignatureFromDeclaration(node)); } } } } function registerForUnusedIdentifiersCheck(node) { addLazyDiagnostic(registerForUnusedIdentifiersCheckDiagnostics); function registerForUnusedIdentifiersCheckDiagnostics() { // May be in a call such as getTypeOfNode that happened to call this. But potentiallyUnusedIdentifiers is only defined in the scope of `checkSourceFile`. var sourceFile = ts.getSourceFileOfNode(node); var potentiallyUnusedIdentifiers = allPotentiallyUnusedIdentifiers.get(sourceFile.path); if (!potentiallyUnusedIdentifiers) { potentiallyUnusedIdentifiers = []; allPotentiallyUnusedIdentifiers.set(sourceFile.path, potentiallyUnusedIdentifiers); } // TODO: GH#22580 // Debug.assert(addToSeen(seenPotentiallyUnusedIdentifiers, getNodeId(node)), "Adding potentially-unused identifier twice"); potentiallyUnusedIdentifiers.push(node); } } function checkUnusedIdentifiers(potentiallyUnusedIdentifiers, addDiagnostic) { for (var _i = 0, potentiallyUnusedIdentifiers_1 = potentiallyUnusedIdentifiers; _i < potentiallyUnusedIdentifiers_1.length; _i++) { var node = potentiallyUnusedIdentifiers_1[_i]; switch (node.kind) { case 257 /* SyntaxKind.ClassDeclaration */: case 226 /* SyntaxKind.ClassExpression */: checkUnusedClassMembers(node, addDiagnostic); checkUnusedTypeParameters(node, addDiagnostic); break; case 305 /* SyntaxKind.SourceFile */: case 261 /* SyntaxKind.ModuleDeclaration */: case 235 /* SyntaxKind.Block */: case 263 /* SyntaxKind.CaseBlock */: case 242 /* SyntaxKind.ForStatement */: case 243 /* SyntaxKind.ForInStatement */: case 244 /* SyntaxKind.ForOfStatement */: checkUnusedLocalsAndParameters(node, addDiagnostic); break; case 171 /* SyntaxKind.Constructor */: case 213 /* SyntaxKind.FunctionExpression */: case 256 /* SyntaxKind.FunctionDeclaration */: case 214 /* SyntaxKind.ArrowFunction */: case 169 /* SyntaxKind.MethodDeclaration */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: if (node.body) { // Don't report unused parameters in overloads checkUnusedLocalsAndParameters(node, addDiagnostic); } checkUnusedTypeParameters(node, addDiagnostic); break; case 168 /* SyntaxKind.MethodSignature */: case 174 /* SyntaxKind.CallSignature */: case 175 /* SyntaxKind.ConstructSignature */: case 179 /* SyntaxKind.FunctionType */: case 180 /* SyntaxKind.ConstructorType */: case 259 /* SyntaxKind.TypeAliasDeclaration */: case 258 /* SyntaxKind.InterfaceDeclaration */: checkUnusedTypeParameters(node, addDiagnostic); break; case 190 /* SyntaxKind.InferType */: checkUnusedInferTypeParameter(node, addDiagnostic); break; default: ts.Debug.assertNever(node, "Node should not have been registered for unused identifiers check"); } } } function errorUnusedLocal(declaration, name, addDiagnostic) { var node = ts.getNameOfDeclaration(declaration) || declaration; var message = isTypeDeclaration(declaration) ? ts.Diagnostics._0_is_declared_but_never_used : ts.Diagnostics._0_is_declared_but_its_value_is_never_read; addDiagnostic(declaration, 0 /* UnusedKind.Local */, ts.createDiagnosticForNode(node, message, name)); } function isIdentifierThatStartsWithUnderscore(node) { return ts.isIdentifier(node) && ts.idText(node).charCodeAt(0) === 95 /* CharacterCodes._ */; } function checkUnusedClassMembers(node, addDiagnostic) { for (var _i = 0, _a = node.members; _i < _a.length; _i++) { var member = _a[_i]; switch (member.kind) { case 169 /* SyntaxKind.MethodDeclaration */: case 167 /* SyntaxKind.PropertyDeclaration */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: if (member.kind === 173 /* SyntaxKind.SetAccessor */ && member.symbol.flags & 32768 /* SymbolFlags.GetAccessor */) { // Already would have reported an error on the getter. break; } var symbol = getSymbolOfNode(member); if (!symbol.isReferenced && (ts.hasEffectiveModifier(member, 8 /* ModifierFlags.Private */) || ts.isNamedDeclaration(member) && ts.isPrivateIdentifier(member.name)) && !(member.flags & 16777216 /* NodeFlags.Ambient */)) { addDiagnostic(member, 0 /* UnusedKind.Local */, ts.createDiagnosticForNode(member.name, ts.Diagnostics._0_is_declared_but_its_value_is_never_read, symbolToString(symbol))); } break; case 171 /* SyntaxKind.Constructor */: for (var _b = 0, _c = member.parameters; _b < _c.length; _b++) { var parameter = _c[_b]; if (!parameter.symbol.isReferenced && ts.hasSyntacticModifier(parameter, 8 /* ModifierFlags.Private */)) { addDiagnostic(parameter, 0 /* UnusedKind.Local */, ts.createDiagnosticForNode(parameter.name, ts.Diagnostics.Property_0_is_declared_but_its_value_is_never_read, ts.symbolName(parameter.symbol))); } } break; case 176 /* SyntaxKind.IndexSignature */: case 234 /* SyntaxKind.SemicolonClassElement */: case 170 /* SyntaxKind.ClassStaticBlockDeclaration */: // Can't be private break; default: ts.Debug.fail("Unexpected class member"); } } } function checkUnusedInferTypeParameter(node, addDiagnostic) { var typeParameter = node.typeParameter; if (isTypeParameterUnused(typeParameter)) { addDiagnostic(node, 1 /* UnusedKind.Parameter */, ts.createDiagnosticForNode(node, ts.Diagnostics._0_is_declared_but_its_value_is_never_read, ts.idText(typeParameter.name))); } } function checkUnusedTypeParameters(node, addDiagnostic) { // Only report errors on the last declaration for the type parameter container; // this ensures that all uses have been accounted for. var declarations = getSymbolOfNode(node).declarations; if (!declarations || ts.last(declarations) !== node) return; var typeParameters = ts.getEffectiveTypeParameterDeclarations(node); var seenParentsWithEveryUnused = new ts.Set(); for (var _i = 0, typeParameters_3 = typeParameters; _i < typeParameters_3.length; _i++) { var typeParameter = typeParameters_3[_i]; if (!isTypeParameterUnused(typeParameter)) continue; var name = ts.idText(typeParameter.name); var parent = typeParameter.parent; if (parent.kind !== 190 /* SyntaxKind.InferType */ && parent.typeParameters.every(isTypeParameterUnused)) { if (ts.tryAddToSet(seenParentsWithEveryUnused, parent)) { var sourceFile = ts.getSourceFileOfNode(parent); var range = ts.isJSDocTemplateTag(parent) // Whole @template tag ? ts.rangeOfNode(parent) // Include the `<>` in the error message : ts.rangeOfTypeParameters(sourceFile, parent.typeParameters); var only = parent.typeParameters.length === 1; //TODO: following line is possible reason for bug #41974, unusedTypeParameters_TemplateTag var message = only ? ts.Diagnostics._0_is_declared_but_its_value_is_never_read : ts.Diagnostics.All_type_parameters_are_unused; var arg0 = only ? name : undefined; addDiagnostic(typeParameter, 1 /* UnusedKind.Parameter */, ts.createFileDiagnostic(sourceFile, range.pos, range.end - range.pos, message, arg0)); } } else { //TODO: following line is possible reason for bug #41974, unusedTypeParameters_TemplateTag addDiagnostic(typeParameter, 1 /* UnusedKind.Parameter */, ts.createDiagnosticForNode(typeParameter, ts.Diagnostics._0_is_declared_but_its_value_is_never_read, name)); } } } function isTypeParameterUnused(typeParameter) { return !(getMergedSymbol(typeParameter.symbol).isReferenced & 262144 /* SymbolFlags.TypeParameter */) && !isIdentifierThatStartsWithUnderscore(typeParameter.name); } function addToGroup(map, key, value, getKey) { var keyString = String(getKey(key)); var group = map.get(keyString); if (group) { group[1].push(value); } else { map.set(keyString, [key, [value]]); } } function tryGetRootParameterDeclaration(node) { return ts.tryCast(ts.getRootDeclaration(node), ts.isParameter); } function isValidUnusedLocalDeclaration(declaration) { if (ts.isBindingElement(declaration)) { if (ts.isObjectBindingPattern(declaration.parent)) { /** * ignore starts with underscore names _ * const { a: _a } = { a: 1 } */ return !!(declaration.propertyName && isIdentifierThatStartsWithUnderscore(declaration.name)); } return isIdentifierThatStartsWithUnderscore(declaration.name); } return ts.isAmbientModule(declaration) || (ts.isVariableDeclaration(declaration) && ts.isForInOrOfStatement(declaration.parent.parent) || isImportedDeclaration(declaration)) && isIdentifierThatStartsWithUnderscore(declaration.name); } function checkUnusedLocalsAndParameters(nodeWithLocals, addDiagnostic) { // Ideally we could use the ImportClause directly as a key, but must wait until we have full ES6 maps. So must store key along with value. var unusedImports = new ts.Map(); var unusedDestructures = new ts.Map(); var unusedVariables = new ts.Map(); nodeWithLocals.locals.forEach(function (local) { // If it's purely a type parameter, ignore, will be checked in `checkUnusedTypeParameters`. // If it's a type parameter merged with a parameter, check if the parameter-side is used. if (local.flags & 262144 /* SymbolFlags.TypeParameter */ ? !(local.flags & 3 /* SymbolFlags.Variable */ && !(local.isReferenced & 3 /* SymbolFlags.Variable */)) : local.isReferenced || local.exportSymbol) { return; } if (local.declarations) { for (var _i = 0, _a = local.declarations; _i < _a.length; _i++) { var declaration = _a[_i]; if (isValidUnusedLocalDeclaration(declaration)) { continue; } if (isImportedDeclaration(declaration)) { addToGroup(unusedImports, importClauseFromImported(declaration), declaration, getNodeId); } else if (ts.isBindingElement(declaration) && ts.isObjectBindingPattern(declaration.parent)) { // In `{ a, ...b }, `a` is considered used since it removes a property from `b`. `b` may still be unused though. var lastElement = ts.last(declaration.parent.elements); if (declaration === lastElement || !ts.last(declaration.parent.elements).dotDotDotToken) { addToGroup(unusedDestructures, declaration.parent, declaration, getNodeId); } } else if (ts.isVariableDeclaration(declaration)) { addToGroup(unusedVariables, declaration.parent, declaration, getNodeId); } else { var parameter = local.valueDeclaration && tryGetRootParameterDeclaration(local.valueDeclaration); var name = local.valueDeclaration && ts.getNameOfDeclaration(local.valueDeclaration); if (parameter && name) { if (!ts.isParameterPropertyDeclaration(parameter, parameter.parent) && !ts.parameterIsThisKeyword(parameter) && !isIdentifierThatStartsWithUnderscore(name)) { if (ts.isBindingElement(declaration) && ts.isArrayBindingPattern(declaration.parent)) { addToGroup(unusedDestructures, declaration.parent, declaration, getNodeId); } else { addDiagnostic(parameter, 1 /* UnusedKind.Parameter */, ts.createDiagnosticForNode(name, ts.Diagnostics._0_is_declared_but_its_value_is_never_read, ts.symbolName(local))); } } } else { errorUnusedLocal(declaration, ts.symbolName(local), addDiagnostic); } } } } }); unusedImports.forEach(function (_a) { var importClause = _a[0], unuseds = _a[1]; var importDecl = importClause.parent; var nDeclarations = (importClause.name ? 1 : 0) + (importClause.namedBindings ? (importClause.namedBindings.kind === 268 /* SyntaxKind.NamespaceImport */ ? 1 : importClause.namedBindings.elements.length) : 0); if (nDeclarations === unuseds.length) { addDiagnostic(importDecl, 0 /* UnusedKind.Local */, unuseds.length === 1 ? ts.createDiagnosticForNode(importDecl, ts.Diagnostics._0_is_declared_but_its_value_is_never_read, ts.idText(ts.first(unuseds).name)) : ts.createDiagnosticForNode(importDecl, ts.Diagnostics.All_imports_in_import_declaration_are_unused)); } else { for (var _i = 0, unuseds_1 = unuseds; _i < unuseds_1.length; _i++) { var unused = unuseds_1[_i]; errorUnusedLocal(unused, ts.idText(unused.name), addDiagnostic); } } }); unusedDestructures.forEach(function (_a) { var bindingPattern = _a[0], bindingElements = _a[1]; var kind = tryGetRootParameterDeclaration(bindingPattern.parent) ? 1 /* UnusedKind.Parameter */ : 0 /* UnusedKind.Local */; if (bindingPattern.elements.length === bindingElements.length) { if (bindingElements.length === 1 && bindingPattern.parent.kind === 254 /* SyntaxKind.VariableDeclaration */ && bindingPattern.parent.parent.kind === 255 /* SyntaxKind.VariableDeclarationList */) { addToGroup(unusedVariables, bindingPattern.parent.parent, bindingPattern.parent, getNodeId); } else { addDiagnostic(bindingPattern, kind, bindingElements.length === 1 ? ts.createDiagnosticForNode(bindingPattern, ts.Diagnostics._0_is_declared_but_its_value_is_never_read, bindingNameText(ts.first(bindingElements).name)) : ts.createDiagnosticForNode(bindingPattern, ts.Diagnostics.All_destructured_elements_are_unused)); } } else { for (var _i = 0, bindingElements_1 = bindingElements; _i < bindingElements_1.length; _i++) { var e = bindingElements_1[_i]; addDiagnostic(e, kind, ts.createDiagnosticForNode(e, ts.Diagnostics._0_is_declared_but_its_value_is_never_read, bindingNameText(e.name))); } } }); unusedVariables.forEach(function (_a) { var declarationList = _a[0], declarations = _a[1]; if (declarationList.declarations.length === declarations.length) { addDiagnostic(declarationList, 0 /* UnusedKind.Local */, declarations.length === 1 ? ts.createDiagnosticForNode(ts.first(declarations).name, ts.Diagnostics._0_is_declared_but_its_value_is_never_read, bindingNameText(ts.first(declarations).name)) : ts.createDiagnosticForNode(declarationList.parent.kind === 237 /* SyntaxKind.VariableStatement */ ? declarationList.parent : declarationList, ts.Diagnostics.All_variables_are_unused)); } else { for (var _i = 0, declarations_6 = declarations; _i < declarations_6.length; _i++) { var decl = declarations_6[_i]; addDiagnostic(decl, 0 /* UnusedKind.Local */, ts.createDiagnosticForNode(decl, ts.Diagnostics._0_is_declared_but_its_value_is_never_read, bindingNameText(decl.name))); } } }); } function bindingNameText(name) { switch (name.kind) { case 79 /* SyntaxKind.Identifier */: return ts.idText(name); case 202 /* SyntaxKind.ArrayBindingPattern */: case 201 /* SyntaxKind.ObjectBindingPattern */: return bindingNameText(ts.cast(ts.first(name.elements), ts.isBindingElement).name); default: return ts.Debug.assertNever(name); } } function isImportedDeclaration(node) { return node.kind === 267 /* SyntaxKind.ImportClause */ || node.kind === 270 /* SyntaxKind.ImportSpecifier */ || node.kind === 268 /* SyntaxKind.NamespaceImport */; } function importClauseFromImported(decl) { return decl.kind === 267 /* SyntaxKind.ImportClause */ ? decl : decl.kind === 268 /* SyntaxKind.NamespaceImport */ ? decl.parent : decl.parent.parent; } function checkBlock(node) { // Grammar checking for SyntaxKind.Block if (node.kind === 235 /* SyntaxKind.Block */) { checkGrammarStatementInAmbientContext(node); } if (ts.isFunctionOrModuleBlock(node)) { var saveFlowAnalysisDisabled = flowAnalysisDisabled; ts.forEach(node.statements, checkSourceElement); flowAnalysisDisabled = saveFlowAnalysisDisabled; } else { ts.forEach(node.statements, checkSourceElement); } if (node.locals) { registerForUnusedIdentifiersCheck(node); } } function checkCollisionWithArgumentsInGeneratedCode(node) { // no rest parameters \ declaration context \ overload - no codegen impact if (languageVersion >= 2 /* ScriptTarget.ES2015 */ || !ts.hasRestParameter(node) || node.flags & 16777216 /* NodeFlags.Ambient */ || ts.nodeIsMissing(node.body)) { return; } ts.forEach(node.parameters, function (p) { if (p.name && !ts.isBindingPattern(p.name) && p.name.escapedText === argumentsSymbol.escapedName) { errorSkippedOn("noEmit", p, ts.Diagnostics.Duplicate_identifier_arguments_Compiler_uses_arguments_to_initialize_rest_parameters); } }); } /** * Checks whether an {@link Identifier}, in the context of another {@link Node}, would collide with a runtime value * of {@link name} in an outer scope. This is used to check for collisions for downlevel transformations that * require names like `Object`, `Promise`, `Reflect`, `require`, `exports`, etc. */ function needCollisionCheckForIdentifier(node, identifier, name) { if ((identifier === null || identifier === void 0 ? void 0 : identifier.escapedText) !== name) { return false; } if (node.kind === 167 /* SyntaxKind.PropertyDeclaration */ || node.kind === 166 /* SyntaxKind.PropertySignature */ || node.kind === 169 /* SyntaxKind.MethodDeclaration */ || node.kind === 168 /* SyntaxKind.MethodSignature */ || node.kind === 172 /* SyntaxKind.GetAccessor */ || node.kind === 173 /* SyntaxKind.SetAccessor */ || node.kind === 296 /* SyntaxKind.PropertyAssignment */) { // it is ok to have member named '_super', '_this', `Promise`, etc. - member access is always qualified return false; } if (node.flags & 16777216 /* NodeFlags.Ambient */) { // ambient context - no codegen impact return false; } if (ts.isImportClause(node) || ts.isImportEqualsDeclaration(node) || ts.isImportSpecifier(node)) { // type-only imports do not require collision checks against runtime values. if (ts.isTypeOnlyImportOrExportDeclaration(node)) { return false; } } var root = ts.getRootDeclaration(node); if (ts.isParameter(root) && ts.nodeIsMissing(root.parent.body)) { // just an overload - no codegen impact return false; } return true; } // this function will run after checking the source file so 'CaptureThis' is correct for all nodes function checkIfThisIsCapturedInEnclosingScope(node) { ts.findAncestor(node, function (current) { if (getNodeCheckFlags(current) & 4 /* NodeCheckFlags.CaptureThis */) { var isDeclaration_1 = node.kind !== 79 /* SyntaxKind.Identifier */; if (isDeclaration_1) { error(ts.getNameOfDeclaration(node), ts.Diagnostics.Duplicate_identifier_this_Compiler_uses_variable_declaration_this_to_capture_this_reference); } else { error(node, ts.Diagnostics.Expression_resolves_to_variable_declaration_this_that_compiler_uses_to_capture_this_reference); } return true; } return false; }); } function checkIfNewTargetIsCapturedInEnclosingScope(node) { ts.findAncestor(node, function (current) { if (getNodeCheckFlags(current) & 8 /* NodeCheckFlags.CaptureNewTarget */) { var isDeclaration_2 = node.kind !== 79 /* SyntaxKind.Identifier */; if (isDeclaration_2) { error(ts.getNameOfDeclaration(node), ts.Diagnostics.Duplicate_identifier_newTarget_Compiler_uses_variable_declaration_newTarget_to_capture_new_target_meta_property_reference); } else { error(node, ts.Diagnostics.Expression_resolves_to_variable_declaration_newTarget_that_compiler_uses_to_capture_new_target_meta_property_reference); } return true; } return false; }); } function checkCollisionWithRequireExportsInGeneratedCode(node, name) { // No need to check for require or exports for ES6 modules and later if (moduleKind >= ts.ModuleKind.ES2015 && !(moduleKind >= ts.ModuleKind.Node16 && ts.getSourceFileOfNode(node).impliedNodeFormat === ts.ModuleKind.CommonJS)) { return; } if (!name || !needCollisionCheckForIdentifier(node, name, "require") && !needCollisionCheckForIdentifier(node, name, "exports")) { return; } // Uninstantiated modules shouldnt do this check if (ts.isModuleDeclaration(node) && ts.getModuleInstanceState(node) !== 1 /* ModuleInstanceState.Instantiated */) { return; } // In case of variable declaration, node.parent is variable statement so look at the variable statement's parent var parent = getDeclarationContainer(node); if (parent.kind === 305 /* SyntaxKind.SourceFile */ && ts.isExternalOrCommonJsModule(parent)) { // If the declaration happens to be in external module, report error that require and exports are reserved keywords errorSkippedOn("noEmit", name, ts.Diagnostics.Duplicate_identifier_0_Compiler_reserves_name_1_in_top_level_scope_of_a_module, ts.declarationNameToString(name), ts.declarationNameToString(name)); } } function checkCollisionWithGlobalPromiseInGeneratedCode(node, name) { if (!name || languageVersion >= 4 /* ScriptTarget.ES2017 */ || !needCollisionCheckForIdentifier(node, name, "Promise")) { return; } // Uninstantiated modules shouldnt do this check if (ts.isModuleDeclaration(node) && ts.getModuleInstanceState(node) !== 1 /* ModuleInstanceState.Instantiated */) { return; } // In case of variable declaration, node.parent is variable statement so look at the variable statement's parent var parent = getDeclarationContainer(node); if (parent.kind === 305 /* SyntaxKind.SourceFile */ && ts.isExternalOrCommonJsModule(parent) && parent.flags & 2048 /* NodeFlags.HasAsyncFunctions */) { // If the declaration happens to be in external module, report error that Promise is a reserved identifier. errorSkippedOn("noEmit", name, ts.Diagnostics.Duplicate_identifier_0_Compiler_reserves_name_1_in_top_level_scope_of_a_module_containing_async_functions, ts.declarationNameToString(name), ts.declarationNameToString(name)); } } function recordPotentialCollisionWithWeakMapSetInGeneratedCode(node, name) { if (languageVersion <= 8 /* ScriptTarget.ES2021 */ && (needCollisionCheckForIdentifier(node, name, "WeakMap") || needCollisionCheckForIdentifier(node, name, "WeakSet"))) { potentialWeakMapSetCollisions.push(node); } } function checkWeakMapSetCollision(node) { var enclosingBlockScope = ts.getEnclosingBlockScopeContainer(node); if (getNodeCheckFlags(enclosingBlockScope) & 67108864 /* NodeCheckFlags.ContainsClassWithPrivateIdentifiers */) { ts.Debug.assert(ts.isNamedDeclaration(node) && ts.isIdentifier(node.name) && typeof node.name.escapedText === "string", "The target of a WeakMap/WeakSet collision check should be an identifier"); errorSkippedOn("noEmit", node, ts.Diagnostics.Compiler_reserves_name_0_when_emitting_private_identifier_downlevel, node.name.escapedText); } } function recordPotentialCollisionWithReflectInGeneratedCode(node, name) { if (name && languageVersion >= 2 /* ScriptTarget.ES2015 */ && languageVersion <= 8 /* ScriptTarget.ES2021 */ && needCollisionCheckForIdentifier(node, name, "Reflect")) { potentialReflectCollisions.push(node); } } function checkReflectCollision(node) { var hasCollision = false; if (ts.isClassExpression(node)) { // ClassExpression names don't contribute to their containers, but do matter for any of their block-scoped members. for (var _i = 0, _a = node.members; _i < _a.length; _i++) { var member = _a[_i]; if (getNodeCheckFlags(member) & 134217728 /* NodeCheckFlags.ContainsSuperPropertyInStaticInitializer */) { hasCollision = true; break; } } } else if (ts.isFunctionExpression(node)) { // FunctionExpression names don't contribute to their containers, but do matter for their contents if (getNodeCheckFlags(node) & 134217728 /* NodeCheckFlags.ContainsSuperPropertyInStaticInitializer */) { hasCollision = true; } } else { var container = ts.getEnclosingBlockScopeContainer(node); if (container && getNodeCheckFlags(container) & 134217728 /* NodeCheckFlags.ContainsSuperPropertyInStaticInitializer */) { hasCollision = true; } } if (hasCollision) { ts.Debug.assert(ts.isNamedDeclaration(node) && ts.isIdentifier(node.name), "The target of a Reflect collision check should be an identifier"); errorSkippedOn("noEmit", node, ts.Diagnostics.Duplicate_identifier_0_Compiler_reserves_name_1_when_emitting_super_references_in_static_initializers, ts.declarationNameToString(node.name), "Reflect"); } } function checkCollisionsForDeclarationName(node, name) { if (!name) return; checkCollisionWithRequireExportsInGeneratedCode(node, name); checkCollisionWithGlobalPromiseInGeneratedCode(node, name); recordPotentialCollisionWithWeakMapSetInGeneratedCode(node, name); recordPotentialCollisionWithReflectInGeneratedCode(node, name); if (ts.isClassLike(node)) { checkTypeNameIsReserved(name, ts.Diagnostics.Class_name_cannot_be_0); if (!(node.flags & 16777216 /* NodeFlags.Ambient */)) { checkClassNameCollisionWithObject(name); } } else if (ts.isEnumDeclaration(node)) { checkTypeNameIsReserved(name, ts.Diagnostics.Enum_name_cannot_be_0); } } function checkVarDeclaredNamesNotShadowed(node) { // - ScriptBody : StatementList // It is a Syntax Error if any element of the LexicallyDeclaredNames of StatementList // also occurs in the VarDeclaredNames of StatementList. // - Block : { StatementList } // It is a Syntax Error if any element of the LexicallyDeclaredNames of StatementList // also occurs in the VarDeclaredNames of StatementList. // Variable declarations are hoisted to the top of their function scope. They can shadow // block scoped declarations, which bind tighter. this will not be flagged as duplicate definition // by the binder as the declaration scope is different. // A non-initialized declaration is a no-op as the block declaration will resolve before the var // declaration. the problem is if the declaration has an initializer. this will act as a write to the // block declared value. this is fine for let, but not const. // Only consider declarations with initializers, uninitialized const declarations will not // step on a let/const variable. // Do not consider const and const declarations, as duplicate block-scoped declarations // are handled by the binder. // We are only looking for const declarations that step on let\const declarations from a // different scope. e.g.: // { // const x = 0; // localDeclarationSymbol obtained after name resolution will correspond to this declaration // const x = 0; // symbol for this declaration will be 'symbol' // } // skip block-scoped variables and parameters if ((ts.getCombinedNodeFlags(node) & 3 /* NodeFlags.BlockScoped */) !== 0 || ts.isParameterDeclaration(node)) { return; } // skip variable declarations that don't have initializers // NOTE: in ES6 spec initializer is required in variable declarations where name is binding pattern // so we'll always treat binding elements as initialized if (node.kind === 254 /* SyntaxKind.VariableDeclaration */ && !node.initializer) { return; } var symbol = getSymbolOfNode(node); if (symbol.flags & 1 /* SymbolFlags.FunctionScopedVariable */) { if (!ts.isIdentifier(node.name)) return ts.Debug.fail(); var localDeclarationSymbol = resolveName(node, node.name.escapedText, 3 /* SymbolFlags.Variable */, /*nodeNotFoundErrorMessage*/ undefined, /*nameArg*/ undefined, /*isUse*/ false); if (localDeclarationSymbol && localDeclarationSymbol !== symbol && localDeclarationSymbol.flags & 2 /* SymbolFlags.BlockScopedVariable */) { if (getDeclarationNodeFlagsFromSymbol(localDeclarationSymbol) & 3 /* NodeFlags.BlockScoped */) { var varDeclList = ts.getAncestor(localDeclarationSymbol.valueDeclaration, 255 /* SyntaxKind.VariableDeclarationList */); var container = varDeclList.parent.kind === 237 /* SyntaxKind.VariableStatement */ && varDeclList.parent.parent ? varDeclList.parent.parent : undefined; // names of block-scoped and function scoped variables can collide only // if block scoped variable is defined in the function\module\source file scope (because of variable hoisting) var namesShareScope = container && (container.kind === 235 /* SyntaxKind.Block */ && ts.isFunctionLike(container.parent) || container.kind === 262 /* SyntaxKind.ModuleBlock */ || container.kind === 261 /* SyntaxKind.ModuleDeclaration */ || container.kind === 305 /* SyntaxKind.SourceFile */); // here we know that function scoped variable is shadowed by block scoped one // if they are defined in the same scope - binder has already reported redeclaration error // otherwise if variable has an initializer - show error that initialization will fail // since LHS will be block scoped name instead of function scoped if (!namesShareScope) { var name = symbolToString(localDeclarationSymbol); error(node, ts.Diagnostics.Cannot_initialize_outer_scoped_variable_0_in_the_same_scope_as_block_scoped_declaration_1, name, name); } } } } } function convertAutoToAny(type) { return type === autoType ? anyType : type === autoArrayType ? anyArrayType : type; } // Check variable, parameter, or property declaration function checkVariableLikeDeclaration(node) { var _a; checkDecorators(node); if (!ts.isBindingElement(node)) { checkSourceElement(node.type); } // JSDoc `function(string, string): string` syntax results in parameters with no name if (!node.name) { return; } // For a computed property, just check the initializer and exit // Do not use hasDynamicName here, because that returns false for well known symbols. // We want to perform checkComputedPropertyName for all computed properties, including // well known symbols. if (node.name.kind === 162 /* SyntaxKind.ComputedPropertyName */) { checkComputedPropertyName(node.name); if (node.initializer) { checkExpressionCached(node.initializer); } } if (ts.isBindingElement(node)) { if (ts.isObjectBindingPattern(node.parent) && node.dotDotDotToken && languageVersion < 5 /* ScriptTarget.ES2018 */) { checkExternalEmitHelpers(node, 4 /* ExternalEmitHelpers.Rest */); } // check computed properties inside property names of binding elements if (node.propertyName && node.propertyName.kind === 162 /* SyntaxKind.ComputedPropertyName */) { checkComputedPropertyName(node.propertyName); } // check private/protected variable access var parent = node.parent.parent; var parentCheckMode = node.dotDotDotToken ? 64 /* CheckMode.RestBindingElement */ : 0 /* CheckMode.Normal */; var parentType = getTypeForBindingElementParent(parent, parentCheckMode); var name = node.propertyName || node.name; if (parentType && !ts.isBindingPattern(name)) { var exprType = getLiteralTypeFromPropertyName(name); if (isTypeUsableAsPropertyName(exprType)) { var nameText = getPropertyNameFromType(exprType); var property = getPropertyOfType(parentType, nameText); if (property) { markPropertyAsReferenced(property, /*nodeForCheckWriteOnly*/ undefined, /*isSelfTypeAccess*/ false); // A destructuring is never a write-only reference. checkPropertyAccessibility(node, !!parent.initializer && parent.initializer.kind === 106 /* SyntaxKind.SuperKeyword */, /*writing*/ false, parentType, property); } } } } // For a binding pattern, check contained binding elements if (ts.isBindingPattern(node.name)) { if (node.name.kind === 202 /* SyntaxKind.ArrayBindingPattern */ && languageVersion < 2 /* ScriptTarget.ES2015 */ && compilerOptions.downlevelIteration) { checkExternalEmitHelpers(node, 512 /* ExternalEmitHelpers.Read */); } ts.forEach(node.name.elements, checkSourceElement); } // For a parameter declaration with an initializer, error and exit if the containing function doesn't have a body if (node.initializer && ts.isParameterDeclaration(node) && ts.nodeIsMissing(ts.getContainingFunction(node).body)) { error(node, ts.Diagnostics.A_parameter_initializer_is_only_allowed_in_a_function_or_constructor_implementation); return; } // For a binding pattern, validate the initializer and exit if (ts.isBindingPattern(node.name)) { var needCheckInitializer = node.initializer && node.parent.parent.kind !== 243 /* SyntaxKind.ForInStatement */; var needCheckWidenedType = node.name.elements.length === 0; if (needCheckInitializer || needCheckWidenedType) { // Don't validate for-in initializer as it is already an error var widenedType = getWidenedTypeForVariableLikeDeclaration(node); if (needCheckInitializer) { var initializerType = checkExpressionCached(node.initializer); if (strictNullChecks && needCheckWidenedType) { checkNonNullNonVoidType(initializerType, node); } else { checkTypeAssignableToAndOptionallyElaborate(initializerType, getWidenedTypeForVariableLikeDeclaration(node), node, node.initializer); } } // check the binding pattern with empty elements if (needCheckWidenedType) { if (ts.isArrayBindingPattern(node.name)) { checkIteratedTypeOrElementType(65 /* IterationUse.Destructuring */, widenedType, undefinedType, node); } else if (strictNullChecks) { checkNonNullNonVoidType(widenedType, node); } } } return; } // For a commonjs `const x = require`, validate the alias and exit var symbol = getSymbolOfNode(node); if (symbol.flags & 2097152 /* SymbolFlags.Alias */ && ts.isVariableDeclarationInitializedToBareOrAccessedRequire(node.kind === 203 /* SyntaxKind.BindingElement */ ? node.parent.parent : node)) { checkAliasSymbol(node); return; } var type = convertAutoToAny(getTypeOfSymbol(symbol)); if (node === symbol.valueDeclaration) { // Node is the primary declaration of the symbol, just validate the initializer // Don't validate for-in initializer as it is already an error var initializer = ts.getEffectiveInitializer(node); if (initializer) { var isJSObjectLiteralInitializer = ts.isInJSFile(node) && ts.isObjectLiteralExpression(initializer) && (initializer.properties.length === 0 || ts.isPrototypeAccess(node.name)) && !!((_a = symbol.exports) === null || _a === void 0 ? void 0 : _a.size); if (!isJSObjectLiteralInitializer && node.parent.parent.kind !== 243 /* SyntaxKind.ForInStatement */) { checkTypeAssignableToAndOptionallyElaborate(checkExpressionCached(initializer), type, node, initializer, /*headMessage*/ undefined); } } if (symbol.declarations && symbol.declarations.length > 1) { if (ts.some(symbol.declarations, function (d) { return d !== node && ts.isVariableLike(d) && !areDeclarationFlagsIdentical(d, node); })) { error(node.name, ts.Diagnostics.All_declarations_of_0_must_have_identical_modifiers, ts.declarationNameToString(node.name)); } } } else { // Node is a secondary declaration, check that type is identical to primary declaration and check that // initializer is consistent with type associated with the node var declarationType = convertAutoToAny(getWidenedTypeForVariableLikeDeclaration(node)); if (!isErrorType(type) && !isErrorType(declarationType) && !isTypeIdenticalTo(type, declarationType) && !(symbol.flags & 67108864 /* SymbolFlags.Assignment */)) { errorNextVariableOrPropertyDeclarationMustHaveSameType(symbol.valueDeclaration, type, node, declarationType); } if (node.initializer) { checkTypeAssignableToAndOptionallyElaborate(checkExpressionCached(node.initializer), declarationType, node, node.initializer, /*headMessage*/ undefined); } if (symbol.valueDeclaration && !areDeclarationFlagsIdentical(node, symbol.valueDeclaration)) { error(node.name, ts.Diagnostics.All_declarations_of_0_must_have_identical_modifiers, ts.declarationNameToString(node.name)); } } if (node.kind !== 167 /* SyntaxKind.PropertyDeclaration */ && node.kind !== 166 /* SyntaxKind.PropertySignature */) { // We know we don't have a binding pattern or computed name here checkExportsOnMergedDeclarations(node); if (node.kind === 254 /* SyntaxKind.VariableDeclaration */ || node.kind === 203 /* SyntaxKind.BindingElement */) { checkVarDeclaredNamesNotShadowed(node); } checkCollisionsForDeclarationName(node, node.name); } } function errorNextVariableOrPropertyDeclarationMustHaveSameType(firstDeclaration, firstType, nextDeclaration, nextType) { var nextDeclarationName = ts.getNameOfDeclaration(nextDeclaration); var message = nextDeclaration.kind === 167 /* SyntaxKind.PropertyDeclaration */ || nextDeclaration.kind === 166 /* SyntaxKind.PropertySignature */ ? ts.Diagnostics.Subsequent_property_declarations_must_have_the_same_type_Property_0_must_be_of_type_1_but_here_has_type_2 : ts.Diagnostics.Subsequent_variable_declarations_must_have_the_same_type_Variable_0_must_be_of_type_1_but_here_has_type_2; var declName = ts.declarationNameToString(nextDeclarationName); var err = error(nextDeclarationName, message, declName, typeToString(firstType), typeToString(nextType)); if (firstDeclaration) { ts.addRelatedInfo(err, ts.createDiagnosticForNode(firstDeclaration, ts.Diagnostics._0_was_also_declared_here, declName)); } } function areDeclarationFlagsIdentical(left, right) { if ((left.kind === 164 /* SyntaxKind.Parameter */ && right.kind === 254 /* SyntaxKind.VariableDeclaration */) || (left.kind === 254 /* SyntaxKind.VariableDeclaration */ && right.kind === 164 /* SyntaxKind.Parameter */)) { // Differences in optionality between parameters and variables are allowed. return true; } if (ts.hasQuestionToken(left) !== ts.hasQuestionToken(right)) { return false; } var interestingFlags = 8 /* ModifierFlags.Private */ | 16 /* ModifierFlags.Protected */ | 256 /* ModifierFlags.Async */ | 128 /* ModifierFlags.Abstract */ | 64 /* ModifierFlags.Readonly */ | 32 /* ModifierFlags.Static */; return ts.getSelectedEffectiveModifierFlags(left, interestingFlags) === ts.getSelectedEffectiveModifierFlags(right, interestingFlags); } function checkVariableDeclaration(node) { ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("check" /* tracing.Phase.Check */, "checkVariableDeclaration", { kind: node.kind, pos: node.pos, end: node.end, path: node.tracingPath }); checkGrammarVariableDeclaration(node); checkVariableLikeDeclaration(node); ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); } function checkBindingElement(node) { checkGrammarBindingElement(node); return checkVariableLikeDeclaration(node); } function checkVariableStatement(node) { // Grammar checking if (!checkGrammarDecoratorsAndModifiers(node) && !checkGrammarVariableDeclarationList(node.declarationList)) checkGrammarForDisallowedLetOrConstStatement(node); ts.forEach(node.declarationList.declarations, checkSourceElement); } function checkExpressionStatement(node) { // Grammar checking checkGrammarStatementInAmbientContext(node); checkExpression(node.expression); } function checkIfStatement(node) { // Grammar checking checkGrammarStatementInAmbientContext(node); checkTruthinessExpression(node.expression); checkTestingKnownTruthyCallableOrAwaitableType(node.expression, node.thenStatement); checkSourceElement(node.thenStatement); if (node.thenStatement.kind === 236 /* SyntaxKind.EmptyStatement */) { error(node.thenStatement, ts.Diagnostics.The_body_of_an_if_statement_cannot_be_the_empty_statement); } checkSourceElement(node.elseStatement); } function checkTestingKnownTruthyCallableOrAwaitableType(condExpr, body) { if (!strictNullChecks) return; helper(condExpr, body); while (ts.isBinaryExpression(condExpr) && condExpr.operatorToken.kind === 56 /* SyntaxKind.BarBarToken */) { condExpr = condExpr.left; helper(condExpr, body); } function helper(condExpr, body) { var location = ts.isBinaryExpression(condExpr) && (condExpr.operatorToken.kind === 56 /* SyntaxKind.BarBarToken */ || condExpr.operatorToken.kind === 55 /* SyntaxKind.AmpersandAmpersandToken */) ? condExpr.right : condExpr; if (ts.isModuleExportsAccessExpression(location)) return; var type = checkTruthinessExpression(location); var isPropertyExpressionCast = ts.isPropertyAccessExpression(location) && isTypeAssertion(location.expression); if (getFalsyFlags(type) || isPropertyExpressionCast) return; // While it technically should be invalid for any known-truthy value // to be tested, we de-scope to functions and Promises unreferenced in // the block as a heuristic to identify the most common bugs. There // are too many false positives for values sourced from type // definitions without strictNullChecks otherwise. var callSignatures = getSignaturesOfType(type, 0 /* SignatureKind.Call */); var isPromise = !!getAwaitedTypeOfPromise(type); if (callSignatures.length === 0 && !isPromise) { return; } var testedNode = ts.isIdentifier(location) ? location : ts.isPropertyAccessExpression(location) ? location.name : ts.isBinaryExpression(location) && ts.isIdentifier(location.right) ? location.right : undefined; var testedSymbol = testedNode && getSymbolAtLocation(testedNode); if (!testedSymbol && !isPromise) { return; } var isUsed = testedSymbol && ts.isBinaryExpression(condExpr.parent) && isSymbolUsedInBinaryExpressionChain(condExpr.parent, testedSymbol) || testedSymbol && body && isSymbolUsedInConditionBody(condExpr, body, testedNode, testedSymbol); if (!isUsed) { if (isPromise) { errorAndMaybeSuggestAwait(location, /*maybeMissingAwait*/ true, ts.Diagnostics.This_condition_will_always_return_true_since_this_0_is_always_defined, getTypeNameForErrorDisplay(type)); } else { error(location, ts.Diagnostics.This_condition_will_always_return_true_since_this_function_is_always_defined_Did_you_mean_to_call_it_instead); } } } } function isSymbolUsedInConditionBody(expr, body, testedNode, testedSymbol) { return !!ts.forEachChild(body, function check(childNode) { if (ts.isIdentifier(childNode)) { var childSymbol = getSymbolAtLocation(childNode); if (childSymbol && childSymbol === testedSymbol) { // If the test was a simple identifier, the above check is sufficient if (ts.isIdentifier(expr) || ts.isIdentifier(testedNode) && ts.isBinaryExpression(testedNode.parent)) { return true; } // Otherwise we need to ensure the symbol is called on the same target var testedExpression = testedNode.parent; var childExpression = childNode.parent; while (testedExpression && childExpression) { if (ts.isIdentifier(testedExpression) && ts.isIdentifier(childExpression) || testedExpression.kind === 108 /* SyntaxKind.ThisKeyword */ && childExpression.kind === 108 /* SyntaxKind.ThisKeyword */) { return getSymbolAtLocation(testedExpression) === getSymbolAtLocation(childExpression); } else if (ts.isPropertyAccessExpression(testedExpression) && ts.isPropertyAccessExpression(childExpression)) { if (getSymbolAtLocation(testedExpression.name) !== getSymbolAtLocation(childExpression.name)) { return false; } childExpression = childExpression.expression; testedExpression = testedExpression.expression; } else if (ts.isCallExpression(testedExpression) && ts.isCallExpression(childExpression)) { childExpression = childExpression.expression; testedExpression = testedExpression.expression; } else { return false; } } } } return ts.forEachChild(childNode, check); }); } function isSymbolUsedInBinaryExpressionChain(node, testedSymbol) { while (ts.isBinaryExpression(node) && node.operatorToken.kind === 55 /* SyntaxKind.AmpersandAmpersandToken */) { var isUsed = ts.forEachChild(node.right, function visit(child) { if (ts.isIdentifier(child)) { var symbol = getSymbolAtLocation(child); if (symbol && symbol === testedSymbol) { return true; } } return ts.forEachChild(child, visit); }); if (isUsed) { return true; } node = node.parent; } return false; } function checkDoStatement(node) { // Grammar checking checkGrammarStatementInAmbientContext(node); checkSourceElement(node.statement); checkTruthinessExpression(node.expression); } function checkWhileStatement(node) { // Grammar checking checkGrammarStatementInAmbientContext(node); checkTruthinessExpression(node.expression); checkSourceElement(node.statement); } function checkTruthinessOfType(type, node) { if (type.flags & 16384 /* TypeFlags.Void */) { error(node, ts.Diagnostics.An_expression_of_type_void_cannot_be_tested_for_truthiness); } return type; } function checkTruthinessExpression(node, checkMode) { return checkTruthinessOfType(checkExpression(node, checkMode), node); } function checkForStatement(node) { // Grammar checking if (!checkGrammarStatementInAmbientContext(node)) { if (node.initializer && node.initializer.kind === 255 /* SyntaxKind.VariableDeclarationList */) { checkGrammarVariableDeclarationList(node.initializer); } } if (node.initializer) { if (node.initializer.kind === 255 /* SyntaxKind.VariableDeclarationList */) { ts.forEach(node.initializer.declarations, checkVariableDeclaration); } else { checkExpression(node.initializer); } } if (node.condition) checkTruthinessExpression(node.condition); if (node.incrementor) checkExpression(node.incrementor); checkSourceElement(node.statement); if (node.locals) { registerForUnusedIdentifiersCheck(node); } } function checkForOfStatement(node) { checkGrammarForInOrForOfStatement(node); var container = ts.getContainingFunctionOrClassStaticBlock(node); if (node.awaitModifier) { if (container && ts.isClassStaticBlockDeclaration(container)) { grammarErrorOnNode(node.awaitModifier, ts.Diagnostics.For_await_loops_cannot_be_used_inside_a_class_static_block); } else { var functionFlags = ts.getFunctionFlags(container); if ((functionFlags & (4 /* FunctionFlags.Invalid */ | 2 /* FunctionFlags.Async */)) === 2 /* FunctionFlags.Async */ && languageVersion < 99 /* ScriptTarget.ESNext */) { // for..await..of in an async function or async generator function prior to ESNext requires the __asyncValues helper checkExternalEmitHelpers(node, 16384 /* ExternalEmitHelpers.ForAwaitOfIncludes */); } } } else if (compilerOptions.downlevelIteration && languageVersion < 2 /* ScriptTarget.ES2015 */) { // for..of prior to ES2015 requires the __values helper when downlevelIteration is enabled checkExternalEmitHelpers(node, 256 /* ExternalEmitHelpers.ForOfIncludes */); } // Check the LHS and RHS // If the LHS is a declaration, just check it as a variable declaration, which will in turn check the RHS // via checkRightHandSideOfForOf. // If the LHS is an expression, check the LHS, as a destructuring assignment or as a reference. // Then check that the RHS is assignable to it. if (node.initializer.kind === 255 /* SyntaxKind.VariableDeclarationList */) { checkForInOrForOfVariableDeclaration(node); } else { var varExpr = node.initializer; var iteratedType = checkRightHandSideOfForOf(node); // There may be a destructuring assignment on the left side if (varExpr.kind === 204 /* SyntaxKind.ArrayLiteralExpression */ || varExpr.kind === 205 /* SyntaxKind.ObjectLiteralExpression */) { // iteratedType may be undefined. In this case, we still want to check the structure of // varExpr, in particular making sure it's a valid LeftHandSideExpression. But we'd like // to short circuit the type relation checking as much as possible, so we pass the unknownType. checkDestructuringAssignment(varExpr, iteratedType || errorType); } else { var leftType = checkExpression(varExpr); checkReferenceExpression(varExpr, ts.Diagnostics.The_left_hand_side_of_a_for_of_statement_must_be_a_variable_or_a_property_access, ts.Diagnostics.The_left_hand_side_of_a_for_of_statement_may_not_be_an_optional_property_access); // iteratedType will be undefined if the rightType was missing properties/signatures // required to get its iteratedType (like [Symbol.iterator] or next). This may be // because we accessed properties from anyType, or it may have led to an error inside // getElementTypeOfIterable. if (iteratedType) { checkTypeAssignableToAndOptionallyElaborate(iteratedType, leftType, varExpr, node.expression); } } } checkSourceElement(node.statement); if (node.locals) { registerForUnusedIdentifiersCheck(node); } } function checkForInStatement(node) { // Grammar checking checkGrammarForInOrForOfStatement(node); var rightType = getNonNullableTypeIfNeeded(checkExpression(node.expression)); // TypeScript 1.0 spec (April 2014): 5.4 // In a 'for-in' statement of the form // for (let VarDecl in Expr) Statement // VarDecl must be a variable declaration without a type annotation that declares a variable of type Any, // and Expr must be an expression of type Any, an object type, or a type parameter type. if (node.initializer.kind === 255 /* SyntaxKind.VariableDeclarationList */) { var variable = node.initializer.declarations[0]; if (variable && ts.isBindingPattern(variable.name)) { error(variable.name, ts.Diagnostics.The_left_hand_side_of_a_for_in_statement_cannot_be_a_destructuring_pattern); } checkForInOrForOfVariableDeclaration(node); } else { // In a 'for-in' statement of the form // for (Var in Expr) Statement // Var must be an expression classified as a reference of type Any or the String primitive type, // and Expr must be an expression of type Any, an object type, or a type parameter type. var varExpr = node.initializer; var leftType = checkExpression(varExpr); if (varExpr.kind === 204 /* SyntaxKind.ArrayLiteralExpression */ || varExpr.kind === 205 /* SyntaxKind.ObjectLiteralExpression */) { error(varExpr, ts.Diagnostics.The_left_hand_side_of_a_for_in_statement_cannot_be_a_destructuring_pattern); } else if (!isTypeAssignableTo(getIndexTypeOrString(rightType), leftType)) { error(varExpr, ts.Diagnostics.The_left_hand_side_of_a_for_in_statement_must_be_of_type_string_or_any); } else { // run check only former check succeeded to avoid cascading errors checkReferenceExpression(varExpr, ts.Diagnostics.The_left_hand_side_of_a_for_in_statement_must_be_a_variable_or_a_property_access, ts.Diagnostics.The_left_hand_side_of_a_for_in_statement_may_not_be_an_optional_property_access); } } // unknownType is returned i.e. if node.expression is identifier whose name cannot be resolved // in this case error about missing name is already reported - do not report extra one if (rightType === neverType || !isTypeAssignableToKind(rightType, 67108864 /* TypeFlags.NonPrimitive */ | 58982400 /* TypeFlags.InstantiableNonPrimitive */)) { error(node.expression, ts.Diagnostics.The_right_hand_side_of_a_for_in_statement_must_be_of_type_any_an_object_type_or_a_type_parameter_but_here_has_type_0, typeToString(rightType)); } checkSourceElement(node.statement); if (node.locals) { registerForUnusedIdentifiersCheck(node); } } function checkForInOrForOfVariableDeclaration(iterationStatement) { var variableDeclarationList = iterationStatement.initializer; // checkGrammarForInOrForOfStatement will check that there is exactly one declaration. if (variableDeclarationList.declarations.length >= 1) { var decl = variableDeclarationList.declarations[0]; checkVariableDeclaration(decl); } } function checkRightHandSideOfForOf(statement) { var use = statement.awaitModifier ? 15 /* IterationUse.ForAwaitOf */ : 13 /* IterationUse.ForOf */; return checkIteratedTypeOrElementType(use, checkNonNullExpression(statement.expression), undefinedType, statement.expression); } function checkIteratedTypeOrElementType(use, inputType, sentType, errorNode) { if (isTypeAny(inputType)) { return inputType; } return getIteratedTypeOrElementType(use, inputType, sentType, errorNode, /*checkAssignability*/ true) || anyType; } /** * When consuming an iterable type in a for..of, spread, or iterator destructuring assignment * we want to get the iterated type of an iterable for ES2015 or later, or the iterated type * of a iterable (if defined globally) or element type of an array like for ES2015 or earlier. */ function getIteratedTypeOrElementType(use, inputType, sentType, errorNode, checkAssignability) { var allowAsyncIterables = (use & 2 /* IterationUse.AllowsAsyncIterablesFlag */) !== 0; if (inputType === neverType) { reportTypeNotIterableError(errorNode, inputType, allowAsyncIterables); // TODO: GH#18217 return undefined; } var uplevelIteration = languageVersion >= 2 /* ScriptTarget.ES2015 */; var downlevelIteration = !uplevelIteration && compilerOptions.downlevelIteration; var possibleOutOfBounds = compilerOptions.noUncheckedIndexedAccess && !!(use & 128 /* IterationUse.PossiblyOutOfBounds */); // Get the iterated type of an `Iterable` or `IterableIterator` only in ES2015 // or higher, when inside of an async generator or for-await-if, or when // downlevelIteration is requested. if (uplevelIteration || downlevelIteration || allowAsyncIterables) { // We only report errors for an invalid iterable type in ES2015 or higher. var iterationTypes = getIterationTypesOfIterable(inputType, use, uplevelIteration ? errorNode : undefined); if (checkAssignability) { if (iterationTypes) { var diagnostic = use & 8 /* IterationUse.ForOfFlag */ ? ts.Diagnostics.Cannot_iterate_value_because_the_next_method_of_its_iterator_expects_type_1_but_for_of_will_always_send_0 : use & 32 /* IterationUse.SpreadFlag */ ? ts.Diagnostics.Cannot_iterate_value_because_the_next_method_of_its_iterator_expects_type_1_but_array_spread_will_always_send_0 : use & 64 /* IterationUse.DestructuringFlag */ ? ts.Diagnostics.Cannot_iterate_value_because_the_next_method_of_its_iterator_expects_type_1_but_array_destructuring_will_always_send_0 : use & 16 /* IterationUse.YieldStarFlag */ ? ts.Diagnostics.Cannot_delegate_iteration_to_value_because_the_next_method_of_its_iterator_expects_type_1_but_the_containing_generator_will_always_send_0 : undefined; if (diagnostic) { checkTypeAssignableTo(sentType, iterationTypes.nextType, errorNode, diagnostic); } } } if (iterationTypes || uplevelIteration) { return possibleOutOfBounds ? includeUndefinedInIndexSignature(iterationTypes && iterationTypes.yieldType) : (iterationTypes && iterationTypes.yieldType); } } var arrayType = inputType; var reportedError = false; var hasStringConstituent = false; // If strings are permitted, remove any string-like constituents from the array type. // This allows us to find other non-string element types from an array unioned with // a string. if (use & 4 /* IterationUse.AllowsStringInputFlag */) { if (arrayType.flags & 1048576 /* TypeFlags.Union */) { // After we remove all types that are StringLike, we will know if there was a string constituent // based on whether the result of filter is a new array. var arrayTypes = inputType.types; var filteredTypes = ts.filter(arrayTypes, function (t) { return !(t.flags & 402653316 /* TypeFlags.StringLike */); }); if (filteredTypes !== arrayTypes) { arrayType = getUnionType(filteredTypes, 2 /* UnionReduction.Subtype */); } } else if (arrayType.flags & 402653316 /* TypeFlags.StringLike */) { arrayType = neverType; } hasStringConstituent = arrayType !== inputType; if (hasStringConstituent) { if (languageVersion < 1 /* ScriptTarget.ES5 */) { if (errorNode) { error(errorNode, ts.Diagnostics.Using_a_string_in_a_for_of_statement_is_only_supported_in_ECMAScript_5_and_higher); reportedError = true; } } // Now that we've removed all the StringLike types, if no constituents remain, then the entire // arrayOrStringType was a string. if (arrayType.flags & 131072 /* TypeFlags.Never */) { return possibleOutOfBounds ? includeUndefinedInIndexSignature(stringType) : stringType; } } } if (!isArrayLikeType(arrayType)) { if (errorNode && !reportedError) { // Which error we report depends on whether we allow strings or if there was a // string constituent. For example, if the input type is number | string, we // want to say that number is not an array type. But if the input was just // number and string input is allowed, we want to say that number is not an // array type or a string type. var allowsStrings = !!(use & 4 /* IterationUse.AllowsStringInputFlag */) && !hasStringConstituent; var _a = getIterationDiagnosticDetails(allowsStrings, downlevelIteration), defaultDiagnostic = _a[0], maybeMissingAwait = _a[1]; errorAndMaybeSuggestAwait(errorNode, maybeMissingAwait && !!getAwaitedTypeOfPromise(arrayType), defaultDiagnostic, typeToString(arrayType)); } return hasStringConstituent ? possibleOutOfBounds ? includeUndefinedInIndexSignature(stringType) : stringType : undefined; } var arrayElementType = getIndexTypeOfType(arrayType, numberType); if (hasStringConstituent && arrayElementType) { // This is just an optimization for the case where arrayOrStringType is string | string[] if (arrayElementType.flags & 402653316 /* TypeFlags.StringLike */ && !compilerOptions.noUncheckedIndexedAccess) { return stringType; } return getUnionType(possibleOutOfBounds ? [arrayElementType, stringType, undefinedType] : [arrayElementType, stringType], 2 /* UnionReduction.Subtype */); } return (use & 128 /* IterationUse.PossiblyOutOfBounds */) ? includeUndefinedInIndexSignature(arrayElementType) : arrayElementType; function getIterationDiagnosticDetails(allowsStrings, downlevelIteration) { var _a; if (downlevelIteration) { return allowsStrings ? [ts.Diagnostics.Type_0_is_not_an_array_type_or_a_string_type_or_does_not_have_a_Symbol_iterator_method_that_returns_an_iterator, true] : [ts.Diagnostics.Type_0_is_not_an_array_type_or_does_not_have_a_Symbol_iterator_method_that_returns_an_iterator, true]; } var yieldType = getIterationTypeOfIterable(use, 0 /* IterationTypeKind.Yield */, inputType, /*errorNode*/ undefined); if (yieldType) { return [ts.Diagnostics.Type_0_can_only_be_iterated_through_when_using_the_downlevelIteration_flag_or_with_a_target_of_es2015_or_higher, false]; } if (isES2015OrLaterIterable((_a = inputType.symbol) === null || _a === void 0 ? void 0 : _a.escapedName)) { return [ts.Diagnostics.Type_0_can_only_be_iterated_through_when_using_the_downlevelIteration_flag_or_with_a_target_of_es2015_or_higher, true]; } return allowsStrings ? [ts.Diagnostics.Type_0_is_not_an_array_type_or_a_string_type, true] : [ts.Diagnostics.Type_0_is_not_an_array_type, true]; } } function isES2015OrLaterIterable(n) { switch (n) { case "Float32Array": case "Float64Array": case "Int16Array": case "Int32Array": case "Int8Array": case "NodeList": case "Uint16Array": case "Uint32Array": case "Uint8Array": case "Uint8ClampedArray": return true; } return false; } /** * Gets the requested "iteration type" from an `Iterable`-like or `AsyncIterable`-like type. */ function getIterationTypeOfIterable(use, typeKind, inputType, errorNode) { if (isTypeAny(inputType)) { return undefined; } var iterationTypes = getIterationTypesOfIterable(inputType, use, errorNode); return iterationTypes && iterationTypes[getIterationTypesKeyFromIterationTypeKind(typeKind)]; } function createIterationTypes(yieldType, returnType, nextType) { // `yieldType` and `returnType` are defaulted to `neverType` they each will be combined // via `getUnionType` when merging iteration types. `nextType` is defined as `unknownType` // as it is combined via `getIntersectionType` when merging iteration types. if (yieldType === void 0) { yieldType = neverType; } if (returnType === void 0) { returnType = neverType; } if (nextType === void 0) { nextType = unknownType; } // Use the cache only for intrinsic types to keep it small as they are likely to be // more frequently created (i.e. `Iterator`). Iteration types // are also cached on the type they are requested for, so we shouldn't need to maintain // the cache for less-frequently used types. if (yieldType.flags & 67359327 /* TypeFlags.Intrinsic */ && returnType.flags & (1 /* TypeFlags.Any */ | 131072 /* TypeFlags.Never */ | 2 /* TypeFlags.Unknown */ | 16384 /* TypeFlags.Void */ | 32768 /* TypeFlags.Undefined */) && nextType.flags & (1 /* TypeFlags.Any */ | 131072 /* TypeFlags.Never */ | 2 /* TypeFlags.Unknown */ | 16384 /* TypeFlags.Void */ | 32768 /* TypeFlags.Undefined */)) { var id = getTypeListId([yieldType, returnType, nextType]); var iterationTypes = iterationTypesCache.get(id); if (!iterationTypes) { iterationTypes = { yieldType: yieldType, returnType: returnType, nextType: nextType }; iterationTypesCache.set(id, iterationTypes); } return iterationTypes; } return { yieldType: yieldType, returnType: returnType, nextType: nextType }; } /** * Combines multiple `IterationTypes` records. * * If `array` is empty or all elements are missing or are references to `noIterationTypes`, * then `noIterationTypes` is returned. Otherwise, an `IterationTypes` record is returned * for the combined iteration types. */ function combineIterationTypes(array) { var yieldTypes; var returnTypes; var nextTypes; for (var _i = 0, array_11 = array; _i < array_11.length; _i++) { var iterationTypes = array_11[_i]; if (iterationTypes === undefined || iterationTypes === noIterationTypes) { continue; } if (iterationTypes === anyIterationTypes) { return anyIterationTypes; } yieldTypes = ts.append(yieldTypes, iterationTypes.yieldType); returnTypes = ts.append(returnTypes, iterationTypes.returnType); nextTypes = ts.append(nextTypes, iterationTypes.nextType); } if (yieldTypes || returnTypes || nextTypes) { return createIterationTypes(yieldTypes && getUnionType(yieldTypes), returnTypes && getUnionType(returnTypes), nextTypes && getIntersectionType(nextTypes)); } return noIterationTypes; } function getCachedIterationTypes(type, cacheKey) { return type[cacheKey]; } function setCachedIterationTypes(type, cacheKey, cachedTypes) { return type[cacheKey] = cachedTypes; } /** * Gets the *yield*, *return*, and *next* types from an `Iterable`-like or `AsyncIterable`-like type. * * At every level that involves analyzing return types of signatures, we union the return types of all the signatures. * * Another thing to note is that at any step of this process, we could run into a dead end, * meaning either the property is missing, or we run into the anyType. If either of these things * happens, we return `undefined` to signal that we could not find the iteration type. If a property * is missing, and the previous step did not result in `any`, then we also give an error if the * caller requested it. Then the caller can decide what to do in the case where there is no iterated * type. * * For a **for-of** statement, `yield*` (in a normal generator), spread, array * destructuring, or normal generator we will only ever look for a `[Symbol.iterator]()` * method. * * For an async generator we will only ever look at the `[Symbol.asyncIterator]()` method. * * For a **for-await-of** statement or a `yield*` in an async generator we will look for * the `[Symbol.asyncIterator]()` method first, and then the `[Symbol.iterator]()` method. */ function getIterationTypesOfIterable(type, use, errorNode) { if (isTypeAny(type)) { return anyIterationTypes; } if (!(type.flags & 1048576 /* TypeFlags.Union */)) { var iterationTypes_1 = getIterationTypesOfIterableWorker(type, use, errorNode); if (iterationTypes_1 === noIterationTypes) { if (errorNode) { reportTypeNotIterableError(errorNode, type, !!(use & 2 /* IterationUse.AllowsAsyncIterablesFlag */)); } return undefined; } return iterationTypes_1; } var cacheKey = use & 2 /* IterationUse.AllowsAsyncIterablesFlag */ ? "iterationTypesOfAsyncIterable" : "iterationTypesOfIterable"; var cachedTypes = getCachedIterationTypes(type, cacheKey); if (cachedTypes) return cachedTypes === noIterationTypes ? undefined : cachedTypes; var allIterationTypes; for (var _i = 0, _a = type.types; _i < _a.length; _i++) { var constituent = _a[_i]; var iterationTypes_2 = getIterationTypesOfIterableWorker(constituent, use, errorNode); if (iterationTypes_2 === noIterationTypes) { if (errorNode) { reportTypeNotIterableError(errorNode, type, !!(use & 2 /* IterationUse.AllowsAsyncIterablesFlag */)); } setCachedIterationTypes(type, cacheKey, noIterationTypes); return undefined; } else { allIterationTypes = ts.append(allIterationTypes, iterationTypes_2); } } var iterationTypes = allIterationTypes ? combineIterationTypes(allIterationTypes) : noIterationTypes; setCachedIterationTypes(type, cacheKey, iterationTypes); return iterationTypes === noIterationTypes ? undefined : iterationTypes; } function getAsyncFromSyncIterationTypes(iterationTypes, errorNode) { if (iterationTypes === noIterationTypes) return noIterationTypes; if (iterationTypes === anyIterationTypes) return anyIterationTypes; var yieldType = iterationTypes.yieldType, returnType = iterationTypes.returnType, nextType = iterationTypes.nextType; // if we're requesting diagnostics, report errors for a missing `Awaited`. if (errorNode) { getGlobalAwaitedSymbol(/*reportErrors*/ true); } return createIterationTypes(getAwaitedType(yieldType, errorNode) || anyType, getAwaitedType(returnType, errorNode) || anyType, nextType); } /** * Gets the *yield*, *return*, and *next* types from a non-union type. * * If we are unable to find the *yield*, *return*, and *next* types, `noIterationTypes` is * returned to indicate to the caller that it should report an error. Otherwise, an * `IterationTypes` record is returned. * * NOTE: You probably don't want to call this directly and should be calling * `getIterationTypesOfIterable` instead. */ function getIterationTypesOfIterableWorker(type, use, errorNode) { if (isTypeAny(type)) { return anyIterationTypes; } if (use & 2 /* IterationUse.AllowsAsyncIterablesFlag */) { var iterationTypes = getIterationTypesOfIterableCached(type, asyncIterationTypesResolver) || getIterationTypesOfIterableFast(type, asyncIterationTypesResolver); if (iterationTypes) { return use & 8 /* IterationUse.ForOfFlag */ ? getAsyncFromSyncIterationTypes(iterationTypes, errorNode) : iterationTypes; } } if (use & 1 /* IterationUse.AllowsSyncIterablesFlag */) { var iterationTypes = getIterationTypesOfIterableCached(type, syncIterationTypesResolver) || getIterationTypesOfIterableFast(type, syncIterationTypesResolver); if (iterationTypes) { if (use & 2 /* IterationUse.AllowsAsyncIterablesFlag */) { // for a sync iterable in an async context, only use the cached types if they are valid. if (iterationTypes !== noIterationTypes) { return setCachedIterationTypes(type, "iterationTypesOfAsyncIterable", getAsyncFromSyncIterationTypes(iterationTypes, errorNode)); } } else { return iterationTypes; } } } if (use & 2 /* IterationUse.AllowsAsyncIterablesFlag */) { var iterationTypes = getIterationTypesOfIterableSlow(type, asyncIterationTypesResolver, errorNode); if (iterationTypes !== noIterationTypes) { return iterationTypes; } } if (use & 1 /* IterationUse.AllowsSyncIterablesFlag */) { var iterationTypes = getIterationTypesOfIterableSlow(type, syncIterationTypesResolver, errorNode); if (iterationTypes !== noIterationTypes) { if (use & 2 /* IterationUse.AllowsAsyncIterablesFlag */) { return setCachedIterationTypes(type, "iterationTypesOfAsyncIterable", iterationTypes ? getAsyncFromSyncIterationTypes(iterationTypes, errorNode) : noIterationTypes); } else { return iterationTypes; } } } return noIterationTypes; } /** * Gets the *yield*, *return*, and *next* types of an `Iterable`-like or * `AsyncIterable`-like type from the cache. * * NOTE: You probably don't want to call this directly and should be calling * `getIterationTypesOfIterable` instead. */ function getIterationTypesOfIterableCached(type, resolver) { return getCachedIterationTypes(type, resolver.iterableCacheKey); } function getIterationTypesOfGlobalIterableType(globalType, resolver) { var globalIterationTypes = getIterationTypesOfIterableCached(globalType, resolver) || getIterationTypesOfIterableSlow(globalType, resolver, /*errorNode*/ undefined); return globalIterationTypes === noIterationTypes ? defaultIterationTypes : globalIterationTypes; } /** * Gets the *yield*, *return*, and *next* types of an `Iterable`-like or `AsyncIterable`-like * type from from common heuristics. * * If we previously analyzed this type and found no iteration types, `noIterationTypes` is * returned. If we found iteration types, an `IterationTypes` record is returned. * Otherwise, we return `undefined` to indicate to the caller it should perform a more * exhaustive analysis. * * NOTE: You probably don't want to call this directly and should be calling * `getIterationTypesOfIterable` instead. */ function getIterationTypesOfIterableFast(type, resolver) { // As an optimization, if the type is an instantiation of one of the following global types, then // just grab its related type argument: // - `Iterable` or `AsyncIterable` // - `IterableIterator` or `AsyncIterableIterator` var globalType; if (isReferenceToType(type, globalType = resolver.getGlobalIterableType(/*reportErrors*/ false)) || isReferenceToType(type, globalType = resolver.getGlobalIterableIteratorType(/*reportErrors*/ false))) { var yieldType = getTypeArguments(type)[0]; // The "return" and "next" types of `Iterable` and `IterableIterator` are defined by the // iteration types of their `[Symbol.iterator]()` method. The same is true for their async cousins. // While we define these as `any` and `undefined` in our libs by default, a custom lib *could* use // different definitions. var _a = getIterationTypesOfGlobalIterableType(globalType, resolver), returnType = _a.returnType, nextType = _a.nextType; return setCachedIterationTypes(type, resolver.iterableCacheKey, createIterationTypes(resolver.resolveIterationType(yieldType, /*errorNode*/ undefined) || yieldType, resolver.resolveIterationType(returnType, /*errorNode*/ undefined) || returnType, nextType)); } // As an optimization, if the type is an instantiation of the following global type, then // just grab its related type arguments: // - `Generator` or `AsyncGenerator` if (isReferenceToType(type, resolver.getGlobalGeneratorType(/*reportErrors*/ false))) { var _b = getTypeArguments(type), yieldType = _b[0], returnType = _b[1], nextType = _b[2]; return setCachedIterationTypes(type, resolver.iterableCacheKey, createIterationTypes(resolver.resolveIterationType(yieldType, /*errorNode*/ undefined) || yieldType, resolver.resolveIterationType(returnType, /*errorNode*/ undefined) || returnType, nextType)); } } function getPropertyNameForKnownSymbolName(symbolName) { var ctorType = getGlobalESSymbolConstructorSymbol(/*reportErrors*/ false); var uniqueType = ctorType && getTypeOfPropertyOfType(getTypeOfSymbol(ctorType), ts.escapeLeadingUnderscores(symbolName)); return uniqueType && isTypeUsableAsPropertyName(uniqueType) ? getPropertyNameFromType(uniqueType) : "__@".concat(symbolName); } /** * Gets the *yield*, *return*, and *next* types of an `Iterable`-like or `AsyncIterable`-like * type from its members. * * If we successfully found the *yield*, *return*, and *next* types, an `IterationTypes` * record is returned. Otherwise, `noIterationTypes` is returned. * * NOTE: You probably don't want to call this directly and should be calling * `getIterationTypesOfIterable` instead. */ function getIterationTypesOfIterableSlow(type, resolver, errorNode) { var _a; var method = getPropertyOfType(type, getPropertyNameForKnownSymbolName(resolver.iteratorSymbolName)); var methodType = method && !(method.flags & 16777216 /* SymbolFlags.Optional */) ? getTypeOfSymbol(method) : undefined; if (isTypeAny(methodType)) { return setCachedIterationTypes(type, resolver.iterableCacheKey, anyIterationTypes); } var signatures = methodType ? getSignaturesOfType(methodType, 0 /* SignatureKind.Call */) : undefined; if (!ts.some(signatures)) { return setCachedIterationTypes(type, resolver.iterableCacheKey, noIterationTypes); } var iteratorType = getIntersectionType(ts.map(signatures, getReturnTypeOfSignature)); var iterationTypes = (_a = getIterationTypesOfIterator(iteratorType, resolver, errorNode)) !== null && _a !== void 0 ? _a : noIterationTypes; return setCachedIterationTypes(type, resolver.iterableCacheKey, iterationTypes); } function reportTypeNotIterableError(errorNode, type, allowAsyncIterables) { var message = allowAsyncIterables ? ts.Diagnostics.Type_0_must_have_a_Symbol_asyncIterator_method_that_returns_an_async_iterator : ts.Diagnostics.Type_0_must_have_a_Symbol_iterator_method_that_returns_an_iterator; errorAndMaybeSuggestAwait(errorNode, !!getAwaitedTypeOfPromise(type), message, typeToString(type)); } /** * Gets the *yield*, *return*, and *next* types from an `Iterator`-like or `AsyncIterator`-like type. * * If we successfully found the *yield*, *return*, and *next* types, an `IterationTypes` * record is returned. Otherwise, `undefined` is returned. */ function getIterationTypesOfIterator(type, resolver, errorNode) { if (isTypeAny(type)) { return anyIterationTypes; } var iterationTypes = getIterationTypesOfIteratorCached(type, resolver) || getIterationTypesOfIteratorFast(type, resolver) || getIterationTypesOfIteratorSlow(type, resolver, errorNode); return iterationTypes === noIterationTypes ? undefined : iterationTypes; } /** * Gets the iteration types of an `Iterator`-like or `AsyncIterator`-like type from the * cache. * * NOTE: You probably don't want to call this directly and should be calling * `getIterationTypesOfIterator` instead. */ function getIterationTypesOfIteratorCached(type, resolver) { return getCachedIterationTypes(type, resolver.iteratorCacheKey); } /** * Gets the iteration types of an `Iterator`-like or `AsyncIterator`-like type from the * cache or from common heuristics. * * If we previously analyzed this type and found no iteration types, `noIterationTypes` is * returned. If we found iteration types, an `IterationTypes` record is returned. * Otherwise, we return `undefined` to indicate to the caller it should perform a more * exhaustive analysis. * * NOTE: You probably don't want to call this directly and should be calling * `getIterationTypesOfIterator` instead. */ function getIterationTypesOfIteratorFast(type, resolver) { // As an optimization, if the type is an instantiation of one of the following global types, // then just grab its related type argument: // - `IterableIterator` or `AsyncIterableIterator` // - `Iterator` or `AsyncIterator` // - `Generator` or `AsyncGenerator` var globalType = resolver.getGlobalIterableIteratorType(/*reportErrors*/ false); if (isReferenceToType(type, globalType)) { var yieldType = getTypeArguments(type)[0]; // The "return" and "next" types of `IterableIterator` and `AsyncIterableIterator` are defined by the // iteration types of their `next`, `return`, and `throw` methods. While we define these as `any` // and `undefined` in our libs by default, a custom lib *could* use different definitions. var globalIterationTypes = getIterationTypesOfIteratorCached(globalType, resolver) || getIterationTypesOfIteratorSlow(globalType, resolver, /*errorNode*/ undefined); var _a = globalIterationTypes === noIterationTypes ? defaultIterationTypes : globalIterationTypes, returnType = _a.returnType, nextType = _a.nextType; return setCachedIterationTypes(type, resolver.iteratorCacheKey, createIterationTypes(yieldType, returnType, nextType)); } if (isReferenceToType(type, resolver.getGlobalIteratorType(/*reportErrors*/ false)) || isReferenceToType(type, resolver.getGlobalGeneratorType(/*reportErrors*/ false))) { var _b = getTypeArguments(type), yieldType = _b[0], returnType = _b[1], nextType = _b[2]; return setCachedIterationTypes(type, resolver.iteratorCacheKey, createIterationTypes(yieldType, returnType, nextType)); } } function isIteratorResult(type, kind) { // From https://tc39.github.io/ecma262/#sec-iteratorresult-interface: // > [done] is the result status of an iterator `next` method call. If the end of the iterator was reached `done` is `true`. // > If the end was not reached `done` is `false` and a value is available. // > If a `done` property (either own or inherited) does not exist, it is consider to have the value `false`. var doneType = getTypeOfPropertyOfType(type, "done") || falseType; return isTypeAssignableTo(kind === 0 /* IterationTypeKind.Yield */ ? falseType : trueType, doneType); } function isYieldIteratorResult(type) { return isIteratorResult(type, 0 /* IterationTypeKind.Yield */); } function isReturnIteratorResult(type) { return isIteratorResult(type, 1 /* IterationTypeKind.Return */); } /** * Gets the *yield* and *return* types of an `IteratorResult`-like type. * * If we are unable to determine a *yield* or a *return* type, `noIterationTypes` is * returned to indicate to the caller that it should handle the error. Otherwise, an * `IterationTypes` record is returned. */ function getIterationTypesOfIteratorResult(type) { if (isTypeAny(type)) { return anyIterationTypes; } var cachedTypes = getCachedIterationTypes(type, "iterationTypesOfIteratorResult"); if (cachedTypes) { return cachedTypes; } // As an optimization, if the type is an instantiation of one of the global `IteratorYieldResult` // or `IteratorReturnResult` types, then just grab its type argument. if (isReferenceToType(type, getGlobalIteratorYieldResultType(/*reportErrors*/ false))) { var yieldType_1 = getTypeArguments(type)[0]; return setCachedIterationTypes(type, "iterationTypesOfIteratorResult", createIterationTypes(yieldType_1, /*returnType*/ undefined, /*nextType*/ undefined)); } if (isReferenceToType(type, getGlobalIteratorReturnResultType(/*reportErrors*/ false))) { var returnType_1 = getTypeArguments(type)[0]; return setCachedIterationTypes(type, "iterationTypesOfIteratorResult", createIterationTypes(/*yieldType*/ undefined, returnType_1, /*nextType*/ undefined)); } // Choose any constituents that can produce the requested iteration type. var yieldIteratorResult = filterType(type, isYieldIteratorResult); var yieldType = yieldIteratorResult !== neverType ? getTypeOfPropertyOfType(yieldIteratorResult, "value") : undefined; var returnIteratorResult = filterType(type, isReturnIteratorResult); var returnType = returnIteratorResult !== neverType ? getTypeOfPropertyOfType(returnIteratorResult, "value") : undefined; if (!yieldType && !returnType) { return setCachedIterationTypes(type, "iterationTypesOfIteratorResult", noIterationTypes); } // From https://tc39.github.io/ecma262/#sec-iteratorresult-interface // > ... If the iterator does not have a return value, `value` is `undefined`. In that case, the // > `value` property may be absent from the conforming object if it does not inherit an explicit // > `value` property. return setCachedIterationTypes(type, "iterationTypesOfIteratorResult", createIterationTypes(yieldType, returnType || voidType, /*nextType*/ undefined)); } /** * Gets the *yield*, *return*, and *next* types of a the `next()`, `return()`, or * `throw()` method of an `Iterator`-like or `AsyncIterator`-like type. * * If we successfully found the *yield*, *return*, and *next* types, an `IterationTypes` * record is returned. Otherwise, we return `undefined`. */ function getIterationTypesOfMethod(type, resolver, methodName, errorNode) { var _a, _b, _c, _d; var method = getPropertyOfType(type, methodName); // Ignore 'return' or 'throw' if they are missing. if (!method && methodName !== "next") { return undefined; } var methodType = method && !(methodName === "next" && (method.flags & 16777216 /* SymbolFlags.Optional */)) ? methodName === "next" ? getTypeOfSymbol(method) : getTypeWithFacts(getTypeOfSymbol(method), 2097152 /* TypeFacts.NEUndefinedOrNull */) : undefined; if (isTypeAny(methodType)) { // `return()` and `throw()` don't provide a *next* type. return methodName === "next" ? anyIterationTypes : anyIterationTypesExceptNext; } // Both async and non-async iterators *must* have a `next` method. var methodSignatures = methodType ? getSignaturesOfType(methodType, 0 /* SignatureKind.Call */) : ts.emptyArray; if (methodSignatures.length === 0) { if (errorNode) { var diagnostic = methodName === "next" ? resolver.mustHaveANextMethodDiagnostic : resolver.mustBeAMethodDiagnostic; error(errorNode, diagnostic, methodName); } return methodName === "next" ? anyIterationTypes : undefined; } // If the method signature comes exclusively from the global iterator or generator type, // create iteration types from its type arguments like `getIterationTypesOfIteratorFast` // does (so as to remove `undefined` from the next and return types). We arrive here when // a contextual type for a generator was not a direct reference to one of those global types, // but looking up `methodType` referred to one of them (and nothing else). E.g., in // `interface SpecialIterator extends Iterator {}`, `SpecialIterator` is not a // reference to `Iterator`, but its `next` member derives exclusively from `Iterator`. if ((methodType === null || methodType === void 0 ? void 0 : methodType.symbol) && methodSignatures.length === 1) { var globalGeneratorType = resolver.getGlobalGeneratorType(/*reportErrors*/ false); var globalIteratorType = resolver.getGlobalIteratorType(/*reportErrors*/ false); var isGeneratorMethod = ((_b = (_a = globalGeneratorType.symbol) === null || _a === void 0 ? void 0 : _a.members) === null || _b === void 0 ? void 0 : _b.get(methodName)) === methodType.symbol; var isIteratorMethod = !isGeneratorMethod && ((_d = (_c = globalIteratorType.symbol) === null || _c === void 0 ? void 0 : _c.members) === null || _d === void 0 ? void 0 : _d.get(methodName)) === methodType.symbol; if (isGeneratorMethod || isIteratorMethod) { var globalType = isGeneratorMethod ? globalGeneratorType : globalIteratorType; var mapper = methodType.mapper; return createIterationTypes(getMappedType(globalType.typeParameters[0], mapper), getMappedType(globalType.typeParameters[1], mapper), methodName === "next" ? getMappedType(globalType.typeParameters[2], mapper) : undefined); } } // Extract the first parameter and return type of each signature. var methodParameterTypes; var methodReturnTypes; for (var _i = 0, methodSignatures_1 = methodSignatures; _i < methodSignatures_1.length; _i++) { var signature = methodSignatures_1[_i]; if (methodName !== "throw" && ts.some(signature.parameters)) { methodParameterTypes = ts.append(methodParameterTypes, getTypeAtPosition(signature, 0)); } methodReturnTypes = ts.append(methodReturnTypes, getReturnTypeOfSignature(signature)); } // Resolve the *next* or *return* type from the first parameter of a `next()` or // `return()` method, respectively. var returnTypes; var nextType; if (methodName !== "throw") { var methodParameterType = methodParameterTypes ? getUnionType(methodParameterTypes) : unknownType; if (methodName === "next") { // The value of `next(value)` is *not* awaited by async generators nextType = methodParameterType; } else if (methodName === "return") { // The value of `return(value)` *is* awaited by async generators var resolvedMethodParameterType = resolver.resolveIterationType(methodParameterType, errorNode) || anyType; returnTypes = ts.append(returnTypes, resolvedMethodParameterType); } } // Resolve the *yield* and *return* types from the return type of the method (i.e. `IteratorResult`) var yieldType; var methodReturnType = methodReturnTypes ? getIntersectionType(methodReturnTypes) : neverType; var resolvedMethodReturnType = resolver.resolveIterationType(methodReturnType, errorNode) || anyType; var iterationTypes = getIterationTypesOfIteratorResult(resolvedMethodReturnType); if (iterationTypes === noIterationTypes) { if (errorNode) { error(errorNode, resolver.mustHaveAValueDiagnostic, methodName); } yieldType = anyType; returnTypes = ts.append(returnTypes, anyType); } else { yieldType = iterationTypes.yieldType; returnTypes = ts.append(returnTypes, iterationTypes.returnType); } return createIterationTypes(yieldType, getUnionType(returnTypes), nextType); } /** * Gets the *yield*, *return*, and *next* types of an `Iterator`-like or `AsyncIterator`-like * type from its members. * * If we successfully found the *yield*, *return*, and *next* types, an `IterationTypes` * record is returned. Otherwise, `noIterationTypes` is returned. * * NOTE: You probably don't want to call this directly and should be calling * `getIterationTypesOfIterator` instead. */ function getIterationTypesOfIteratorSlow(type, resolver, errorNode) { var iterationTypes = combineIterationTypes([ getIterationTypesOfMethod(type, resolver, "next", errorNode), getIterationTypesOfMethod(type, resolver, "return", errorNode), getIterationTypesOfMethod(type, resolver, "throw", errorNode), ]); return setCachedIterationTypes(type, resolver.iteratorCacheKey, iterationTypes); } /** * Gets the requested "iteration type" from a type that is either `Iterable`-like, `Iterator`-like, * `IterableIterator`-like, or `Generator`-like (for a non-async generator); or `AsyncIterable`-like, * `AsyncIterator`-like, `AsyncIterableIterator`-like, or `AsyncGenerator`-like (for an async generator). */ function getIterationTypeOfGeneratorFunctionReturnType(kind, returnType, isAsyncGenerator) { if (isTypeAny(returnType)) { return undefined; } var iterationTypes = getIterationTypesOfGeneratorFunctionReturnType(returnType, isAsyncGenerator); return iterationTypes && iterationTypes[getIterationTypesKeyFromIterationTypeKind(kind)]; } function getIterationTypesOfGeneratorFunctionReturnType(type, isAsyncGenerator) { if (isTypeAny(type)) { return anyIterationTypes; } var use = isAsyncGenerator ? 2 /* IterationUse.AsyncGeneratorReturnType */ : 1 /* IterationUse.GeneratorReturnType */; var resolver = isAsyncGenerator ? asyncIterationTypesResolver : syncIterationTypesResolver; return getIterationTypesOfIterable(type, use, /*errorNode*/ undefined) || getIterationTypesOfIterator(type, resolver, /*errorNode*/ undefined); } function checkBreakOrContinueStatement(node) { // Grammar checking if (!checkGrammarStatementInAmbientContext(node)) checkGrammarBreakOrContinueStatement(node); // TODO: Check that target label is valid } function unwrapReturnType(returnType, functionFlags) { var isGenerator = !!(functionFlags & 1 /* FunctionFlags.Generator */); var isAsync = !!(functionFlags & 2 /* FunctionFlags.Async */); return isGenerator ? getIterationTypeOfGeneratorFunctionReturnType(1 /* IterationTypeKind.Return */, returnType, isAsync) || errorType : isAsync ? getAwaitedTypeNoAlias(returnType) || errorType : returnType; } function isUnwrappedReturnTypeVoidOrAny(func, returnType) { var unwrappedReturnType = unwrapReturnType(returnType, ts.getFunctionFlags(func)); return !!unwrappedReturnType && maybeTypeOfKind(unwrappedReturnType, 16384 /* TypeFlags.Void */ | 3 /* TypeFlags.AnyOrUnknown */); } function checkReturnStatement(node) { var _a; // Grammar checking if (checkGrammarStatementInAmbientContext(node)) { return; } var container = ts.getContainingFunctionOrClassStaticBlock(node); if (container && ts.isClassStaticBlockDeclaration(container)) { grammarErrorOnFirstToken(node, ts.Diagnostics.A_return_statement_cannot_be_used_inside_a_class_static_block); return; } if (!container) { grammarErrorOnFirstToken(node, ts.Diagnostics.A_return_statement_can_only_be_used_within_a_function_body); return; } var signature = getSignatureFromDeclaration(container); var returnType = getReturnTypeOfSignature(signature); var functionFlags = ts.getFunctionFlags(container); if (strictNullChecks || node.expression || returnType.flags & 131072 /* TypeFlags.Never */) { var exprType = node.expression ? checkExpressionCached(node.expression) : undefinedType; if (container.kind === 173 /* SyntaxKind.SetAccessor */) { if (node.expression) { error(node, ts.Diagnostics.Setters_cannot_return_a_value); } } else if (container.kind === 171 /* SyntaxKind.Constructor */) { if (node.expression && !checkTypeAssignableToAndOptionallyElaborate(exprType, returnType, node, node.expression)) { error(node, ts.Diagnostics.Return_type_of_constructor_signature_must_be_assignable_to_the_instance_type_of_the_class); } } else if (getReturnTypeFromAnnotation(container)) { var unwrappedReturnType = (_a = unwrapReturnType(returnType, functionFlags)) !== null && _a !== void 0 ? _a : returnType; var unwrappedExprType = functionFlags & 2 /* FunctionFlags.Async */ ? checkAwaitedType(exprType, /*withAlias*/ false, node, ts.Diagnostics.The_return_type_of_an_async_function_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member) : exprType; if (unwrappedReturnType) { // If the function has a return type, but promisedType is // undefined, an error will be reported in checkAsyncFunctionReturnType // so we don't need to report one here. checkTypeAssignableToAndOptionallyElaborate(unwrappedExprType, unwrappedReturnType, node, node.expression); } } } else if (container.kind !== 171 /* SyntaxKind.Constructor */ && compilerOptions.noImplicitReturns && !isUnwrappedReturnTypeVoidOrAny(container, returnType)) { // The function has a return type, but the return statement doesn't have an expression. error(node, ts.Diagnostics.Not_all_code_paths_return_a_value); } } function checkWithStatement(node) { // Grammar checking for withStatement if (!checkGrammarStatementInAmbientContext(node)) { if (node.flags & 32768 /* NodeFlags.AwaitContext */) { grammarErrorOnFirstToken(node, ts.Diagnostics.with_statements_are_not_allowed_in_an_async_function_block); } } checkExpression(node.expression); var sourceFile = ts.getSourceFileOfNode(node); if (!hasParseDiagnostics(sourceFile)) { var start = ts.getSpanOfTokenAtPosition(sourceFile, node.pos).start; var end = node.statement.pos; grammarErrorAtPos(sourceFile, start, end - start, ts.Diagnostics.The_with_statement_is_not_supported_All_symbols_in_a_with_block_will_have_type_any); } } function checkSwitchStatement(node) { // Grammar checking checkGrammarStatementInAmbientContext(node); var firstDefaultClause; var hasDuplicateDefaultClause = false; var expressionType = checkExpression(node.expression); var expressionIsLiteral = isLiteralType(expressionType); ts.forEach(node.caseBlock.clauses, function (clause) { // Grammar check for duplicate default clauses, skip if we already report duplicate default clause if (clause.kind === 290 /* SyntaxKind.DefaultClause */ && !hasDuplicateDefaultClause) { if (firstDefaultClause === undefined) { firstDefaultClause = clause; } else { grammarErrorOnNode(clause, ts.Diagnostics.A_default_clause_cannot_appear_more_than_once_in_a_switch_statement); hasDuplicateDefaultClause = true; } } if (clause.kind === 289 /* SyntaxKind.CaseClause */) { addLazyDiagnostic(createLazyCaseClauseDiagnostics(clause)); } ts.forEach(clause.statements, checkSourceElement); if (compilerOptions.noFallthroughCasesInSwitch && clause.fallthroughFlowNode && isReachableFlowNode(clause.fallthroughFlowNode)) { error(clause, ts.Diagnostics.Fallthrough_case_in_switch); } function createLazyCaseClauseDiagnostics(clause) { return function () { // TypeScript 1.0 spec (April 2014): 5.9 // In a 'switch' statement, each 'case' expression must be of a type that is comparable // to or from the type of the 'switch' expression. var caseType = checkExpression(clause.expression); var caseIsLiteral = isLiteralType(caseType); var comparedExpressionType = expressionType; if (!caseIsLiteral || !expressionIsLiteral) { caseType = caseIsLiteral ? getBaseTypeOfLiteralType(caseType) : caseType; comparedExpressionType = getBaseTypeOfLiteralType(expressionType); } if (!isTypeEqualityComparableTo(comparedExpressionType, caseType)) { // expressionType is not comparable to caseType, try the reversed check and report errors if it fails checkTypeComparableTo(caseType, comparedExpressionType, clause.expression, /*headMessage*/ undefined); } }; } }); if (node.caseBlock.locals) { registerForUnusedIdentifiersCheck(node.caseBlock); } } function checkLabeledStatement(node) { // Grammar checking if (!checkGrammarStatementInAmbientContext(node)) { ts.findAncestor(node.parent, function (current) { if (ts.isFunctionLike(current)) { return "quit"; } if (current.kind === 250 /* SyntaxKind.LabeledStatement */ && current.label.escapedText === node.label.escapedText) { grammarErrorOnNode(node.label, ts.Diagnostics.Duplicate_label_0, ts.getTextOfNode(node.label)); return true; } return false; }); } // ensure that label is unique checkSourceElement(node.statement); } function checkThrowStatement(node) { // Grammar checking if (!checkGrammarStatementInAmbientContext(node)) { if (ts.isIdentifier(node.expression) && !node.expression.escapedText) { grammarErrorAfterFirstToken(node, ts.Diagnostics.Line_break_not_permitted_here); } } if (node.expression) { checkExpression(node.expression); } } function checkTryStatement(node) { // Grammar checking checkGrammarStatementInAmbientContext(node); checkBlock(node.tryBlock); var catchClause = node.catchClause; if (catchClause) { // Grammar checking if (catchClause.variableDeclaration) { var declaration = catchClause.variableDeclaration; var typeNode = ts.getEffectiveTypeAnnotationNode(ts.getRootDeclaration(declaration)); if (typeNode) { var type = getTypeForVariableLikeDeclaration(declaration, /*includeOptionality*/ false, 0 /* CheckMode.Normal */); if (type && !(type.flags & 3 /* TypeFlags.AnyOrUnknown */)) { grammarErrorOnFirstToken(typeNode, ts.Diagnostics.Catch_clause_variable_type_annotation_must_be_any_or_unknown_if_specified); } } else if (declaration.initializer) { grammarErrorOnFirstToken(declaration.initializer, ts.Diagnostics.Catch_clause_variable_cannot_have_an_initializer); } else { var blockLocals_1 = catchClause.block.locals; if (blockLocals_1) { ts.forEachKey(catchClause.locals, function (caughtName) { var blockLocal = blockLocals_1.get(caughtName); if ((blockLocal === null || blockLocal === void 0 ? void 0 : blockLocal.valueDeclaration) && (blockLocal.flags & 2 /* SymbolFlags.BlockScopedVariable */) !== 0) { grammarErrorOnNode(blockLocal.valueDeclaration, ts.Diagnostics.Cannot_redeclare_identifier_0_in_catch_clause, caughtName); } }); } } } checkBlock(catchClause.block); } if (node.finallyBlock) { checkBlock(node.finallyBlock); } } function checkIndexConstraints(type, symbol, isStaticIndex) { var indexInfos = getIndexInfosOfType(type); if (indexInfos.length === 0) { return; } for (var _i = 0, _a = getPropertiesOfObjectType(type); _i < _a.length; _i++) { var prop = _a[_i]; if (!(isStaticIndex && prop.flags & 4194304 /* SymbolFlags.Prototype */)) { checkIndexConstraintForProperty(type, prop, getLiteralTypeFromProperty(prop, 8576 /* TypeFlags.StringOrNumberLiteralOrUnique */, /*includeNonPublic*/ true), getNonMissingTypeOfSymbol(prop)); } } var typeDeclaration = symbol.valueDeclaration; if (typeDeclaration && ts.isClassLike(typeDeclaration)) { for (var _b = 0, _c = typeDeclaration.members; _b < _c.length; _b++) { var member = _c[_b]; // Only process instance properties with computed names here. Static properties cannot be in conflict with indexers, // and properties with literal names were already checked. if (!ts.isStatic(member) && !hasBindableName(member)) { var symbol_3 = getSymbolOfNode(member); checkIndexConstraintForProperty(type, symbol_3, getTypeOfExpression(member.name.expression), getNonMissingTypeOfSymbol(symbol_3)); } } } if (indexInfos.length > 1) { for (var _d = 0, indexInfos_8 = indexInfos; _d < indexInfos_8.length; _d++) { var info = indexInfos_8[_d]; checkIndexConstraintForIndexSignature(type, info); } } } function checkIndexConstraintForProperty(type, prop, propNameType, propType) { var declaration = prop.valueDeclaration; var name = ts.getNameOfDeclaration(declaration); if (name && ts.isPrivateIdentifier(name)) { return; } var indexInfos = getApplicableIndexInfos(type, propNameType); var interfaceDeclaration = ts.getObjectFlags(type) & 2 /* ObjectFlags.Interface */ ? ts.getDeclarationOfKind(type.symbol, 258 /* SyntaxKind.InterfaceDeclaration */) : undefined; var localPropDeclaration = declaration && declaration.kind === 221 /* SyntaxKind.BinaryExpression */ || name && name.kind === 162 /* SyntaxKind.ComputedPropertyName */ || getParentOfSymbol(prop) === type.symbol ? declaration : undefined; var _loop_28 = function (info) { var localIndexDeclaration = info.declaration && getParentOfSymbol(getSymbolOfNode(info.declaration)) === type.symbol ? info.declaration : undefined; // We check only when (a) the property is declared in the containing type, or (b) the applicable index signature is declared // in the containing type, or (c) the containing type is an interface and no base interface contains both the property and // the index signature (i.e. property and index signature are declared in separate inherited interfaces). var errorNode = localPropDeclaration || localIndexDeclaration || (interfaceDeclaration && !ts.some(getBaseTypes(type), function (base) { return !!getPropertyOfObjectType(base, prop.escapedName) && !!getIndexTypeOfType(base, info.keyType); }) ? interfaceDeclaration : undefined); if (errorNode && !isTypeAssignableTo(propType, info.type)) { error(errorNode, ts.Diagnostics.Property_0_of_type_1_is_not_assignable_to_2_index_type_3, symbolToString(prop), typeToString(propType), typeToString(info.keyType), typeToString(info.type)); } }; for (var _i = 0, indexInfos_9 = indexInfos; _i < indexInfos_9.length; _i++) { var info = indexInfos_9[_i]; _loop_28(info); } } function checkIndexConstraintForIndexSignature(type, checkInfo) { var declaration = checkInfo.declaration; var indexInfos = getApplicableIndexInfos(type, checkInfo.keyType); var interfaceDeclaration = ts.getObjectFlags(type) & 2 /* ObjectFlags.Interface */ ? ts.getDeclarationOfKind(type.symbol, 258 /* SyntaxKind.InterfaceDeclaration */) : undefined; var localCheckDeclaration = declaration && getParentOfSymbol(getSymbolOfNode(declaration)) === type.symbol ? declaration : undefined; var _loop_29 = function (info) { if (info === checkInfo) return "continue"; var localIndexDeclaration = info.declaration && getParentOfSymbol(getSymbolOfNode(info.declaration)) === type.symbol ? info.declaration : undefined; // We check only when (a) the check index signature is declared in the containing type, or (b) the applicable index // signature is declared in the containing type, or (c) the containing type is an interface and no base interface contains // both index signatures (i.e. the index signatures are declared in separate inherited interfaces). var errorNode = localCheckDeclaration || localIndexDeclaration || (interfaceDeclaration && !ts.some(getBaseTypes(type), function (base) { return !!getIndexInfoOfType(base, checkInfo.keyType) && !!getIndexTypeOfType(base, info.keyType); }) ? interfaceDeclaration : undefined); if (errorNode && !isTypeAssignableTo(checkInfo.type, info.type)) { error(errorNode, ts.Diagnostics._0_index_type_1_is_not_assignable_to_2_index_type_3, typeToString(checkInfo.keyType), typeToString(checkInfo.type), typeToString(info.keyType), typeToString(info.type)); } }; for (var _i = 0, indexInfos_10 = indexInfos; _i < indexInfos_10.length; _i++) { var info = indexInfos_10[_i]; _loop_29(info); } } function checkTypeNameIsReserved(name, message) { // TS 1.0 spec (April 2014): 3.6.1 // The predefined type keywords are reserved and cannot be used as names of user defined types. switch (name.escapedText) { case "any": case "unknown": case "never": case "number": case "bigint": case "boolean": case "string": case "symbol": case "void": case "object": error(name, message, name.escapedText); } } /** * The name cannot be used as 'Object' of user defined types with special target. */ function checkClassNameCollisionWithObject(name) { if (languageVersion >= 1 /* ScriptTarget.ES5 */ && name.escapedText === "Object" && (moduleKind < ts.ModuleKind.ES2015 || ts.getSourceFileOfNode(name).impliedNodeFormat === ts.ModuleKind.CommonJS)) { error(name, ts.Diagnostics.Class_name_cannot_be_Object_when_targeting_ES5_with_module_0, ts.ModuleKind[moduleKind]); // https://github.com/Microsoft/TypeScript/issues/17494 } } function checkUnmatchedJSDocParameters(node) { var jsdocParameters = ts.filter(ts.getJSDocTags(node), ts.isJSDocParameterTag); if (!ts.length(jsdocParameters)) return; var isJs = ts.isInJSFile(node); var parameters = new ts.Set(); var excludedParameters = new ts.Set(); ts.forEach(node.parameters, function (_a, index) { var name = _a.name; if (ts.isIdentifier(name)) { parameters.add(name.escapedText); } if (ts.isBindingPattern(name)) { excludedParameters.add(index); } }); var containsArguments = containsArgumentsReference(node); if (containsArguments) { var lastJSDocParam = ts.lastOrUndefined(jsdocParameters); if (isJs && lastJSDocParam && ts.isIdentifier(lastJSDocParam.name) && lastJSDocParam.typeExpression && lastJSDocParam.typeExpression.type && !parameters.has(lastJSDocParam.name.escapedText) && !isArrayType(getTypeFromTypeNode(lastJSDocParam.typeExpression.type))) { error(lastJSDocParam.name, ts.Diagnostics.JSDoc_param_tag_has_name_0_but_there_is_no_parameter_with_that_name_It_would_match_arguments_if_it_had_an_array_type, ts.idText(lastJSDocParam.name)); } } else { ts.forEach(jsdocParameters, function (_a, index) { var name = _a.name; if (excludedParameters.has(index) || ts.isIdentifier(name) && parameters.has(name.escapedText)) { return; } if (ts.isQualifiedName(name)) { if (isJs) { error(name, ts.Diagnostics.Qualified_name_0_is_not_allowed_without_a_leading_param_object_1, ts.entityNameToString(name), ts.entityNameToString(name.left)); } } else { errorOrSuggestion(isJs, name, ts.Diagnostics.JSDoc_param_tag_has_name_0_but_there_is_no_parameter_with_that_name, ts.idText(name)); } }); } } /** * Check each type parameter and check that type parameters have no duplicate type parameter declarations */ function checkTypeParameters(typeParameterDeclarations) { var seenDefault = false; if (typeParameterDeclarations) { for (var i = 0; i < typeParameterDeclarations.length; i++) { var node = typeParameterDeclarations[i]; checkTypeParameter(node); addLazyDiagnostic(createCheckTypeParameterDiagnostic(node, i)); } } function createCheckTypeParameterDiagnostic(node, i) { return function () { if (node.default) { seenDefault = true; checkTypeParametersNotReferenced(node.default, typeParameterDeclarations, i); } else if (seenDefault) { error(node, ts.Diagnostics.Required_type_parameters_may_not_follow_optional_type_parameters); } for (var j = 0; j < i; j++) { if (typeParameterDeclarations[j].symbol === node.symbol) { error(node.name, ts.Diagnostics.Duplicate_identifier_0, ts.declarationNameToString(node.name)); } } }; } } /** Check that type parameter defaults only reference previously declared type parameters */ function checkTypeParametersNotReferenced(root, typeParameters, index) { visit(root); function visit(node) { if (node.kind === 178 /* SyntaxKind.TypeReference */) { var type = getTypeFromTypeReference(node); if (type.flags & 262144 /* TypeFlags.TypeParameter */) { for (var i = index; i < typeParameters.length; i++) { if (type.symbol === getSymbolOfNode(typeParameters[i])) { error(node, ts.Diagnostics.Type_parameter_defaults_can_only_reference_previously_declared_type_parameters); } } } } ts.forEachChild(node, visit); } } /** Check that type parameter lists are identical across multiple declarations */ function checkTypeParameterListsIdentical(symbol) { if (symbol.declarations && symbol.declarations.length === 1) { return; } var links = getSymbolLinks(symbol); if (!links.typeParametersChecked) { links.typeParametersChecked = true; var declarations = getClassOrInterfaceDeclarationsOfSymbol(symbol); if (!declarations || declarations.length <= 1) { return; } var type = getDeclaredTypeOfSymbol(symbol); if (!areTypeParametersIdentical(declarations, type.localTypeParameters, ts.getEffectiveTypeParameterDeclarations)) { // Report an error on every conflicting declaration. var name = symbolToString(symbol); for (var _i = 0, declarations_7 = declarations; _i < declarations_7.length; _i++) { var declaration = declarations_7[_i]; error(declaration.name, ts.Diagnostics.All_declarations_of_0_must_have_identical_type_parameters, name); } } } } function areTypeParametersIdentical(declarations, targetParameters, getTypeParameterDeclarations) { var maxTypeArgumentCount = ts.length(targetParameters); var minTypeArgumentCount = getMinTypeArgumentCount(targetParameters); for (var _i = 0, declarations_8 = declarations; _i < declarations_8.length; _i++) { var declaration = declarations_8[_i]; // If this declaration has too few or too many type parameters, we report an error var sourceParameters = getTypeParameterDeclarations(declaration); var numTypeParameters = sourceParameters.length; if (numTypeParameters < minTypeArgumentCount || numTypeParameters > maxTypeArgumentCount) { return false; } for (var i = 0; i < numTypeParameters; i++) { var source = sourceParameters[i]; var target = targetParameters[i]; // If the type parameter node does not have the same as the resolved type // parameter at this position, we report an error. if (source.name.escapedText !== target.symbol.escapedName) { return false; } // If the type parameter node does not have an identical constraint as the resolved // type parameter at this position, we report an error. var constraint = ts.getEffectiveConstraintOfTypeParameter(source); var sourceConstraint = constraint && getTypeFromTypeNode(constraint); var targetConstraint = getConstraintOfTypeParameter(target); // relax check if later interface augmentation has no constraint, it's more broad and is OK to merge with // a more constrained interface (this could be generalized to a full hierarchy check, but that's maybe overkill) if (sourceConstraint && targetConstraint && !isTypeIdenticalTo(sourceConstraint, targetConstraint)) { return false; } // If the type parameter node has a default and it is not identical to the default // for the type parameter at this position, we report an error. var sourceDefault = source.default && getTypeFromTypeNode(source.default); var targetDefault = getDefaultFromTypeParameter(target); if (sourceDefault && targetDefault && !isTypeIdenticalTo(sourceDefault, targetDefault)) { return false; } } } return true; } function checkClassExpression(node) { checkClassLikeDeclaration(node); checkNodeDeferred(node); return getTypeOfSymbol(getSymbolOfNode(node)); } function checkClassExpressionDeferred(node) { ts.forEach(node.members, checkSourceElement); registerForUnusedIdentifiersCheck(node); } function checkClassDeclaration(node) { if (ts.some(node.decorators) && ts.some(node.members, function (p) { return ts.hasStaticModifier(p) && ts.isPrivateIdentifierClassElementDeclaration(p); })) { grammarErrorOnNode(node.decorators[0], ts.Diagnostics.Class_decorators_can_t_be_used_with_static_private_identifier_Consider_removing_the_experimental_decorator); } if (!node.name && !ts.hasSyntacticModifier(node, 512 /* ModifierFlags.Default */)) { grammarErrorOnFirstToken(node, ts.Diagnostics.A_class_declaration_without_the_default_modifier_must_have_a_name); } checkClassLikeDeclaration(node); ts.forEach(node.members, checkSourceElement); registerForUnusedIdentifiersCheck(node); } function checkClassLikeDeclaration(node) { checkGrammarClassLikeDeclaration(node); checkDecorators(node); checkCollisionsForDeclarationName(node, node.name); checkTypeParameters(ts.getEffectiveTypeParameterDeclarations(node)); checkExportsOnMergedDeclarations(node); var symbol = getSymbolOfNode(node); var type = getDeclaredTypeOfSymbol(symbol); var typeWithThis = getTypeWithThisArgument(type); var staticType = getTypeOfSymbol(symbol); checkTypeParameterListsIdentical(symbol); checkFunctionOrConstructorSymbol(symbol); checkClassForDuplicateDeclarations(node); // Only check for reserved static identifiers on non-ambient context. var nodeInAmbientContext = !!(node.flags & 16777216 /* NodeFlags.Ambient */); if (!nodeInAmbientContext) { checkClassForStaticPropertyNameConflicts(node); } var baseTypeNode = ts.getEffectiveBaseTypeNode(node); if (baseTypeNode) { ts.forEach(baseTypeNode.typeArguments, checkSourceElement); if (languageVersion < 2 /* ScriptTarget.ES2015 */) { checkExternalEmitHelpers(baseTypeNode.parent, 1 /* ExternalEmitHelpers.Extends */); } // check both @extends and extends if both are specified. var extendsNode = ts.getClassExtendsHeritageElement(node); if (extendsNode && extendsNode !== baseTypeNode) { checkExpression(extendsNode.expression); } var baseTypes_2 = getBaseTypes(type); if (baseTypes_2.length) { addLazyDiagnostic(function () { var baseType = baseTypes_2[0]; var baseConstructorType = getBaseConstructorTypeOfClass(type); var staticBaseType = getApparentType(baseConstructorType); checkBaseTypeAccessibility(staticBaseType, baseTypeNode); checkSourceElement(baseTypeNode.expression); if (ts.some(baseTypeNode.typeArguments)) { ts.forEach(baseTypeNode.typeArguments, checkSourceElement); for (var _i = 0, _a = getConstructorsForTypeArguments(staticBaseType, baseTypeNode.typeArguments, baseTypeNode); _i < _a.length; _i++) { var constructor = _a[_i]; if (!checkTypeArgumentConstraints(baseTypeNode, constructor.typeParameters)) { break; } } } var baseWithThis = getTypeWithThisArgument(baseType, type.thisType); if (!checkTypeAssignableTo(typeWithThis, baseWithThis, /*errorNode*/ undefined)) { issueMemberSpecificError(node, typeWithThis, baseWithThis, ts.Diagnostics.Class_0_incorrectly_extends_base_class_1); } else { // Report static side error only when instance type is assignable checkTypeAssignableTo(staticType, getTypeWithoutSignatures(staticBaseType), node.name || node, ts.Diagnostics.Class_static_side_0_incorrectly_extends_base_class_static_side_1); } if (baseConstructorType.flags & 8650752 /* TypeFlags.TypeVariable */) { if (!isMixinConstructorType(staticType)) { error(node.name || node, ts.Diagnostics.A_mixin_class_must_have_a_constructor_with_a_single_rest_parameter_of_type_any); } else { var constructSignatures = getSignaturesOfType(baseConstructorType, 1 /* SignatureKind.Construct */); if (constructSignatures.some(function (signature) { return signature.flags & 4 /* SignatureFlags.Abstract */; }) && !ts.hasSyntacticModifier(node, 128 /* ModifierFlags.Abstract */)) { error(node.name || node, ts.Diagnostics.A_mixin_class_that_extends_from_a_type_variable_containing_an_abstract_construct_signature_must_also_be_declared_abstract); } } } if (!(staticBaseType.symbol && staticBaseType.symbol.flags & 32 /* SymbolFlags.Class */) && !(baseConstructorType.flags & 8650752 /* TypeFlags.TypeVariable */)) { // When the static base type is a "class-like" constructor function (but not actually a class), we verify // that all instantiated base constructor signatures return the same type. var constructors = getInstantiatedConstructorsForTypeArguments(staticBaseType, baseTypeNode.typeArguments, baseTypeNode); if (ts.forEach(constructors, function (sig) { return !isJSConstructor(sig.declaration) && !isTypeIdenticalTo(getReturnTypeOfSignature(sig), baseType); })) { error(baseTypeNode.expression, ts.Diagnostics.Base_constructors_must_all_have_the_same_return_type); } } checkKindsOfPropertyMemberOverrides(type, baseType); }); } } checkMembersForOverrideModifier(node, type, typeWithThis, staticType); var implementedTypeNodes = ts.getEffectiveImplementsTypeNodes(node); if (implementedTypeNodes) { for (var _i = 0, implementedTypeNodes_1 = implementedTypeNodes; _i < implementedTypeNodes_1.length; _i++) { var typeRefNode = implementedTypeNodes_1[_i]; if (!ts.isEntityNameExpression(typeRefNode.expression) || ts.isOptionalChain(typeRefNode.expression)) { error(typeRefNode.expression, ts.Diagnostics.A_class_can_only_implement_an_identifier_Slashqualified_name_with_optional_type_arguments); } checkTypeReferenceNode(typeRefNode); addLazyDiagnostic(createImplementsDiagnostics(typeRefNode)); } } addLazyDiagnostic(function () { checkIndexConstraints(type, symbol); checkIndexConstraints(staticType, symbol, /*isStaticIndex*/ true); checkTypeForDuplicateIndexSignatures(node); checkPropertyInitialization(node); }); function createImplementsDiagnostics(typeRefNode) { return function () { var t = getReducedType(getTypeFromTypeNode(typeRefNode)); if (!isErrorType(t)) { if (isValidBaseType(t)) { var genericDiag = t.symbol && t.symbol.flags & 32 /* SymbolFlags.Class */ ? ts.Diagnostics.Class_0_incorrectly_implements_class_1_Did_you_mean_to_extend_1_and_inherit_its_members_as_a_subclass : ts.Diagnostics.Class_0_incorrectly_implements_interface_1; var baseWithThis = getTypeWithThisArgument(t, type.thisType); if (!checkTypeAssignableTo(typeWithThis, baseWithThis, /*errorNode*/ undefined)) { issueMemberSpecificError(node, typeWithThis, baseWithThis, genericDiag); } } else { error(typeRefNode, ts.Diagnostics.A_class_can_only_implement_an_object_type_or_intersection_of_object_types_with_statically_known_members); } } }; } } function checkMembersForOverrideModifier(node, type, typeWithThis, staticType) { var baseTypeNode = ts.getEffectiveBaseTypeNode(node); var baseTypes = baseTypeNode && getBaseTypes(type); var baseWithThis = (baseTypes === null || baseTypes === void 0 ? void 0 : baseTypes.length) ? getTypeWithThisArgument(ts.first(baseTypes), type.thisType) : undefined; var baseStaticType = getBaseConstructorTypeOfClass(type); var _loop_30 = function (member) { if (ts.hasAmbientModifier(member)) { return "continue"; } if (ts.isConstructorDeclaration(member)) { ts.forEach(member.parameters, function (param) { if (ts.isParameterPropertyDeclaration(param, member)) { checkExistingMemberForOverrideModifier(node, staticType, baseStaticType, baseWithThis, type, typeWithThis, param, /* memberIsParameterProperty */ true); } }); } checkExistingMemberForOverrideModifier(node, staticType, baseStaticType, baseWithThis, type, typeWithThis, member, /* memberIsParameterProperty */ false); }; for (var _i = 0, _a = node.members; _i < _a.length; _i++) { var member = _a[_i]; _loop_30(member); } } /** * @param member Existing member node to be checked. * Note: `member` cannot be a synthetic node. */ function checkExistingMemberForOverrideModifier(node, staticType, baseStaticType, baseWithThis, type, typeWithThis, member, memberIsParameterProperty, reportErrors) { if (reportErrors === void 0) { reportErrors = true; } var declaredProp = member.name && getSymbolAtLocation(member.name) || getSymbolAtLocation(member); if (!declaredProp) { return 0 /* MemberOverrideStatus.Ok */; } return checkMemberForOverrideModifier(node, staticType, baseStaticType, baseWithThis, type, typeWithThis, ts.hasOverrideModifier(member), ts.hasAbstractModifier(member), ts.isStatic(member), memberIsParameterProperty, ts.symbolName(declaredProp), reportErrors ? member : undefined); } /** * Checks a class member declaration for either a missing or an invalid `override` modifier. * Note: this function can be used for speculative checking, * i.e. checking a member that does not yet exist in the program. * An example of that would be to call this function in a completions scenario, * when offering a method declaration as completion. * @param errorNode The node where we should report an error, or undefined if we should not report errors. */ function checkMemberForOverrideModifier(node, staticType, baseStaticType, baseWithThis, type, typeWithThis, memberHasOverrideModifier, memberHasAbstractModifier, memberIsStatic, memberIsParameterProperty, memberName, errorNode) { var isJs = ts.isInJSFile(node); var nodeInAmbientContext = !!(node.flags & 16777216 /* NodeFlags.Ambient */); if (baseWithThis && (memberHasOverrideModifier || compilerOptions.noImplicitOverride)) { var memberEscapedName = ts.escapeLeadingUnderscores(memberName); var thisType = memberIsStatic ? staticType : typeWithThis; var baseType = memberIsStatic ? baseStaticType : baseWithThis; var prop = getPropertyOfType(thisType, memberEscapedName); var baseProp = getPropertyOfType(baseType, memberEscapedName); var baseClassName = typeToString(baseWithThis); if (prop && !baseProp && memberHasOverrideModifier) { if (errorNode) { var suggestion = getSuggestedSymbolForNonexistentClassMember(memberName, baseType); // Again, using symbol name: note that's different from `symbol.escapedName` suggestion ? error(errorNode, isJs ? ts.Diagnostics.This_member_cannot_have_a_JSDoc_comment_with_an_override_tag_because_it_is_not_declared_in_the_base_class_0_Did_you_mean_1 : ts.Diagnostics.This_member_cannot_have_an_override_modifier_because_it_is_not_declared_in_the_base_class_0_Did_you_mean_1, baseClassName, symbolToString(suggestion)) : error(errorNode, isJs ? ts.Diagnostics.This_member_cannot_have_a_JSDoc_comment_with_an_override_tag_because_it_is_not_declared_in_the_base_class_0 : ts.Diagnostics.This_member_cannot_have_an_override_modifier_because_it_is_not_declared_in_the_base_class_0, baseClassName); } return 2 /* MemberOverrideStatus.HasInvalidOverride */; } else if (prop && (baseProp === null || baseProp === void 0 ? void 0 : baseProp.declarations) && compilerOptions.noImplicitOverride && !nodeInAmbientContext) { var baseHasAbstract = ts.some(baseProp.declarations, ts.hasAbstractModifier); if (memberHasOverrideModifier) { return 0 /* MemberOverrideStatus.Ok */; } if (!baseHasAbstract) { if (errorNode) { var diag = memberIsParameterProperty ? isJs ? ts.Diagnostics.This_parameter_property_must_have_a_JSDoc_comment_with_an_override_tag_because_it_overrides_a_member_in_the_base_class_0 : ts.Diagnostics.This_parameter_property_must_have_an_override_modifier_because_it_overrides_a_member_in_base_class_0 : isJs ? ts.Diagnostics.This_member_must_have_a_JSDoc_comment_with_an_override_tag_because_it_overrides_a_member_in_the_base_class_0 : ts.Diagnostics.This_member_must_have_an_override_modifier_because_it_overrides_a_member_in_the_base_class_0; error(errorNode, diag, baseClassName); } return 1 /* MemberOverrideStatus.NeedsOverride */; } else if (memberHasAbstractModifier && baseHasAbstract) { if (errorNode) { error(errorNode, ts.Diagnostics.This_member_must_have_an_override_modifier_because_it_overrides_an_abstract_method_that_is_declared_in_the_base_class_0, baseClassName); } return 1 /* MemberOverrideStatus.NeedsOverride */; } } } else if (memberHasOverrideModifier) { if (errorNode) { var className = typeToString(type); error(errorNode, isJs ? ts.Diagnostics.This_member_cannot_have_a_JSDoc_comment_with_an_override_tag_because_its_containing_class_0_does_not_extend_another_class : ts.Diagnostics.This_member_cannot_have_an_override_modifier_because_its_containing_class_0_does_not_extend_another_class, className); } return 2 /* MemberOverrideStatus.HasInvalidOverride */; } return 0 /* MemberOverrideStatus.Ok */; } function issueMemberSpecificError(node, typeWithThis, baseWithThis, broadDiag) { // iterate over all implemented properties and issue errors on each one which isn't compatible, rather than the class as a whole, if possible var issuedMemberError = false; var _loop_31 = function (member) { if (ts.isStatic(member)) { return "continue"; } var declaredProp = member.name && getSymbolAtLocation(member.name) || getSymbolAtLocation(member); if (declaredProp) { var prop = getPropertyOfType(typeWithThis, declaredProp.escapedName); var baseProp = getPropertyOfType(baseWithThis, declaredProp.escapedName); if (prop && baseProp) { var rootChain = function () { return ts.chainDiagnosticMessages( /*details*/ undefined, ts.Diagnostics.Property_0_in_type_1_is_not_assignable_to_the_same_property_in_base_type_2, symbolToString(declaredProp), typeToString(typeWithThis), typeToString(baseWithThis)); }; if (!checkTypeAssignableTo(getTypeOfSymbol(prop), getTypeOfSymbol(baseProp), member.name || member, /*message*/ undefined, rootChain)) { issuedMemberError = true; } } } }; for (var _i = 0, _a = node.members; _i < _a.length; _i++) { var member = _a[_i]; _loop_31(member); } if (!issuedMemberError) { // check again with diagnostics to generate a less-specific error checkTypeAssignableTo(typeWithThis, baseWithThis, node.name || node, broadDiag); } } function checkBaseTypeAccessibility(type, node) { var signatures = getSignaturesOfType(type, 1 /* SignatureKind.Construct */); if (signatures.length) { var declaration = signatures[0].declaration; if (declaration && ts.hasEffectiveModifier(declaration, 8 /* ModifierFlags.Private */)) { var typeClassDeclaration = ts.getClassLikeDeclarationOfSymbol(type.symbol); if (!isNodeWithinClass(node, typeClassDeclaration)) { error(node, ts.Diagnostics.Cannot_extend_a_class_0_Class_constructor_is_marked_as_private, getFullyQualifiedName(type.symbol)); } } } } /** * Checks a member declaration node to see if has a missing or invalid `override` modifier. * @param node Class-like node where the member is declared. * @param member Member declaration node. * Note: `member` can be a synthetic node without a parent. */ function getMemberOverrideModifierStatus(node, member) { if (!member.name) { return 0 /* MemberOverrideStatus.Ok */; } var symbol = getSymbolOfNode(node); var type = getDeclaredTypeOfSymbol(symbol); var typeWithThis = getTypeWithThisArgument(type); var staticType = getTypeOfSymbol(symbol); var baseTypeNode = ts.getEffectiveBaseTypeNode(node); var baseTypes = baseTypeNode && getBaseTypes(type); var baseWithThis = (baseTypes === null || baseTypes === void 0 ? void 0 : baseTypes.length) ? getTypeWithThisArgument(ts.first(baseTypes), type.thisType) : undefined; var baseStaticType = getBaseConstructorTypeOfClass(type); var memberHasOverrideModifier = member.parent ? ts.hasOverrideModifier(member) : ts.hasSyntacticModifier(member, 16384 /* ModifierFlags.Override */); var memberName = ts.unescapeLeadingUnderscores(ts.getTextOfPropertyName(member.name)); return checkMemberForOverrideModifier(node, staticType, baseStaticType, baseWithThis, type, typeWithThis, memberHasOverrideModifier, ts.hasAbstractModifier(member), ts.isStatic(member), /* memberIsParameterProperty */ false, memberName); } function getTargetSymbol(s) { // if symbol is instantiated its flags are not copied from the 'target' // so we'll need to get back original 'target' symbol to work with correct set of flags return ts.getCheckFlags(s) & 1 /* CheckFlags.Instantiated */ ? s.target : s; } function getClassOrInterfaceDeclarationsOfSymbol(symbol) { return ts.filter(symbol.declarations, function (d) { return d.kind === 257 /* SyntaxKind.ClassDeclaration */ || d.kind === 258 /* SyntaxKind.InterfaceDeclaration */; }); } function checkKindsOfPropertyMemberOverrides(type, baseType) { // TypeScript 1.0 spec (April 2014): 8.2.3 // A derived class inherits all members from its base class it doesn't override. // Inheritance means that a derived class implicitly contains all non - overridden members of the base class. // Both public and private property members are inherited, but only public property members can be overridden. // A property member in a derived class is said to override a property member in a base class // when the derived class property member has the same name and kind(instance or static) // as the base class property member. // The type of an overriding property member must be assignable(section 3.8.4) // to the type of the overridden property member, or otherwise a compile - time error occurs. // Base class instance member functions can be overridden by derived class instance member functions, // but not by other kinds of members. // Base class instance member variables and accessors can be overridden by // derived class instance member variables and accessors, but not by other kinds of members. var _a, _b; // NOTE: assignability is checked in checkClassDeclaration var baseProperties = getPropertiesOfType(baseType); basePropertyCheck: for (var _i = 0, baseProperties_1 = baseProperties; _i < baseProperties_1.length; _i++) { var baseProperty = baseProperties_1[_i]; var base = getTargetSymbol(baseProperty); if (base.flags & 4194304 /* SymbolFlags.Prototype */) { continue; } var baseSymbol = getPropertyOfObjectType(type, base.escapedName); if (!baseSymbol) { continue; } var derived = getTargetSymbol(baseSymbol); var baseDeclarationFlags = ts.getDeclarationModifierFlagsFromSymbol(base); ts.Debug.assert(!!derived, "derived should point to something, even if it is the base class' declaration."); // In order to resolve whether the inherited method was overridden in the base class or not, // we compare the Symbols obtained. Since getTargetSymbol returns the symbol on the *uninstantiated* // type declaration, derived and base resolve to the same symbol even in the case of generic classes. if (derived === base) { // derived class inherits base without override/redeclaration var derivedClassDecl = ts.getClassLikeDeclarationOfSymbol(type.symbol); // It is an error to inherit an abstract member without implementing it or being declared abstract. // If there is no declaration for the derived class (as in the case of class expressions), // then the class cannot be declared abstract. if (baseDeclarationFlags & 128 /* ModifierFlags.Abstract */ && (!derivedClassDecl || !ts.hasSyntacticModifier(derivedClassDecl, 128 /* ModifierFlags.Abstract */))) { // Searches other base types for a declaration that would satisfy the inherited abstract member. // (The class may have more than one base type via declaration merging with an interface with the // same name.) for (var _c = 0, _d = getBaseTypes(type); _c < _d.length; _c++) { var otherBaseType = _d[_c]; if (otherBaseType === baseType) continue; var baseSymbol_1 = getPropertyOfObjectType(otherBaseType, base.escapedName); var derivedElsewhere = baseSymbol_1 && getTargetSymbol(baseSymbol_1); if (derivedElsewhere && derivedElsewhere !== base) { continue basePropertyCheck; } } if (derivedClassDecl.kind === 226 /* SyntaxKind.ClassExpression */) { error(derivedClassDecl, ts.Diagnostics.Non_abstract_class_expression_does_not_implement_inherited_abstract_member_0_from_class_1, symbolToString(baseProperty), typeToString(baseType)); } else { error(derivedClassDecl, ts.Diagnostics.Non_abstract_class_0_does_not_implement_inherited_abstract_member_1_from_class_2, typeToString(type), symbolToString(baseProperty), typeToString(baseType)); } } } else { // derived overrides base. var derivedDeclarationFlags = ts.getDeclarationModifierFlagsFromSymbol(derived); if (baseDeclarationFlags & 8 /* ModifierFlags.Private */ || derivedDeclarationFlags & 8 /* ModifierFlags.Private */) { // either base or derived property is private - not override, skip it continue; } var errorMessage = void 0; var basePropertyFlags = base.flags & 98308 /* SymbolFlags.PropertyOrAccessor */; var derivedPropertyFlags = derived.flags & 98308 /* SymbolFlags.PropertyOrAccessor */; if (basePropertyFlags && derivedPropertyFlags) { // property/accessor is overridden with property/accessor if (baseDeclarationFlags & 128 /* ModifierFlags.Abstract */ && !(base.valueDeclaration && ts.isPropertyDeclaration(base.valueDeclaration) && base.valueDeclaration.initializer) || base.valueDeclaration && base.valueDeclaration.parent.kind === 258 /* SyntaxKind.InterfaceDeclaration */ || derived.valueDeclaration && ts.isBinaryExpression(derived.valueDeclaration)) { // when the base property is abstract or from an interface, base/derived flags don't need to match // same when the derived property is from an assignment continue; } var overriddenInstanceProperty = basePropertyFlags !== 4 /* SymbolFlags.Property */ && derivedPropertyFlags === 4 /* SymbolFlags.Property */; var overriddenInstanceAccessor = basePropertyFlags === 4 /* SymbolFlags.Property */ && derivedPropertyFlags !== 4 /* SymbolFlags.Property */; if (overriddenInstanceProperty || overriddenInstanceAccessor) { var errorMessage_1 = overriddenInstanceProperty ? ts.Diagnostics._0_is_defined_as_an_accessor_in_class_1_but_is_overridden_here_in_2_as_an_instance_property : ts.Diagnostics._0_is_defined_as_a_property_in_class_1_but_is_overridden_here_in_2_as_an_accessor; error(ts.getNameOfDeclaration(derived.valueDeclaration) || derived.valueDeclaration, errorMessage_1, symbolToString(base), typeToString(baseType), typeToString(type)); } else if (useDefineForClassFields) { var uninitialized = (_a = derived.declarations) === null || _a === void 0 ? void 0 : _a.find(function (d) { return d.kind === 167 /* SyntaxKind.PropertyDeclaration */ && !d.initializer; }); if (uninitialized && !(derived.flags & 33554432 /* SymbolFlags.Transient */) && !(baseDeclarationFlags & 128 /* ModifierFlags.Abstract */) && !(derivedDeclarationFlags & 128 /* ModifierFlags.Abstract */) && !((_b = derived.declarations) === null || _b === void 0 ? void 0 : _b.some(function (d) { return !!(d.flags & 16777216 /* NodeFlags.Ambient */); }))) { var constructor = findConstructorDeclaration(ts.getClassLikeDeclarationOfSymbol(type.symbol)); var propName = uninitialized.name; if (uninitialized.exclamationToken || !constructor || !ts.isIdentifier(propName) || !strictNullChecks || !isPropertyInitializedInConstructor(propName, type, constructor)) { var errorMessage_2 = ts.Diagnostics.Property_0_will_overwrite_the_base_property_in_1_If_this_is_intentional_add_an_initializer_Otherwise_add_a_declare_modifier_or_remove_the_redundant_declaration; error(ts.getNameOfDeclaration(derived.valueDeclaration) || derived.valueDeclaration, errorMessage_2, symbolToString(base), typeToString(baseType)); } } } // correct case continue; } else if (isPrototypeProperty(base)) { if (isPrototypeProperty(derived) || derived.flags & 4 /* SymbolFlags.Property */) { // method is overridden with method or property -- correct case continue; } else { ts.Debug.assert(!!(derived.flags & 98304 /* SymbolFlags.Accessor */)); errorMessage = ts.Diagnostics.Class_0_defines_instance_member_function_1_but_extended_class_2_defines_it_as_instance_member_accessor; } } else if (base.flags & 98304 /* SymbolFlags.Accessor */) { errorMessage = ts.Diagnostics.Class_0_defines_instance_member_accessor_1_but_extended_class_2_defines_it_as_instance_member_function; } else { errorMessage = ts.Diagnostics.Class_0_defines_instance_member_property_1_but_extended_class_2_defines_it_as_instance_member_function; } error(ts.getNameOfDeclaration(derived.valueDeclaration) || derived.valueDeclaration, errorMessage, typeToString(baseType), symbolToString(base), typeToString(type)); } } } function getNonInterhitedProperties(type, baseTypes, properties) { if (!ts.length(baseTypes)) { return properties; } var seen = new ts.Map(); ts.forEach(properties, function (p) { seen.set(p.escapedName, p); }); for (var _i = 0, baseTypes_3 = baseTypes; _i < baseTypes_3.length; _i++) { var base = baseTypes_3[_i]; var properties_5 = getPropertiesOfType(getTypeWithThisArgument(base, type.thisType)); for (var _a = 0, properties_4 = properties_5; _a < properties_4.length; _a++) { var prop = properties_4[_a]; var existing = seen.get(prop.escapedName); if (existing && prop.parent === existing.parent) { seen.delete(prop.escapedName); } } } return ts.arrayFrom(seen.values()); } function checkInheritedPropertiesAreIdentical(type, typeNode) { var baseTypes = getBaseTypes(type); if (baseTypes.length < 2) { return true; } var seen = new ts.Map(); ts.forEach(resolveDeclaredMembers(type).declaredProperties, function (p) { seen.set(p.escapedName, { prop: p, containingType: type }); }); var ok = true; for (var _i = 0, baseTypes_4 = baseTypes; _i < baseTypes_4.length; _i++) { var base = baseTypes_4[_i]; var properties = getPropertiesOfType(getTypeWithThisArgument(base, type.thisType)); for (var _a = 0, properties_6 = properties; _a < properties_6.length; _a++) { var prop = properties_6[_a]; var existing = seen.get(prop.escapedName); if (!existing) { seen.set(prop.escapedName, { prop: prop, containingType: base }); } else { var isInheritedProperty = existing.containingType !== type; if (isInheritedProperty && !isPropertyIdenticalTo(existing.prop, prop)) { ok = false; var typeName1 = typeToString(existing.containingType); var typeName2 = typeToString(base); var errorInfo = ts.chainDiagnosticMessages(/*details*/ undefined, ts.Diagnostics.Named_property_0_of_types_1_and_2_are_not_identical, symbolToString(prop), typeName1, typeName2); errorInfo = ts.chainDiagnosticMessages(errorInfo, ts.Diagnostics.Interface_0_cannot_simultaneously_extend_types_1_and_2, typeToString(type), typeName1, typeName2); diagnostics.add(ts.createDiagnosticForNodeFromMessageChain(typeNode, errorInfo)); } } } } return ok; } function checkPropertyInitialization(node) { if (!strictNullChecks || !strictPropertyInitialization || node.flags & 16777216 /* NodeFlags.Ambient */) { return; } var constructor = findConstructorDeclaration(node); for (var _i = 0, _a = node.members; _i < _a.length; _i++) { var member = _a[_i]; if (ts.getEffectiveModifierFlags(member) & 2 /* ModifierFlags.Ambient */) { continue; } if (!ts.isStatic(member) && isPropertyWithoutInitializer(member)) { var propName = member.name; if (ts.isIdentifier(propName) || ts.isPrivateIdentifier(propName) || ts.isComputedPropertyName(propName)) { var type = getTypeOfSymbol(getSymbolOfNode(member)); if (!(type.flags & 3 /* TypeFlags.AnyOrUnknown */ || getFalsyFlags(type) & 32768 /* TypeFlags.Undefined */)) { if (!constructor || !isPropertyInitializedInConstructor(propName, type, constructor)) { error(member.name, ts.Diagnostics.Property_0_has_no_initializer_and_is_not_definitely_assigned_in_the_constructor, ts.declarationNameToString(propName)); } } } } } } function isPropertyWithoutInitializer(node) { return node.kind === 167 /* SyntaxKind.PropertyDeclaration */ && !ts.hasAbstractModifier(node) && !node.exclamationToken && !node.initializer; } function isPropertyInitializedInStaticBlocks(propName, propType, staticBlocks, startPos, endPos) { for (var _i = 0, staticBlocks_2 = staticBlocks; _i < staticBlocks_2.length; _i++) { var staticBlock = staticBlocks_2[_i]; // static block must be within the provided range as they are evaluated in document order (unlike constructors) if (staticBlock.pos >= startPos && staticBlock.pos <= endPos) { var reference = ts.factory.createPropertyAccessExpression(ts.factory.createThis(), propName); ts.setParent(reference.expression, reference); ts.setParent(reference, staticBlock); reference.flowNode = staticBlock.returnFlowNode; var flowType = getFlowTypeOfReference(reference, propType, getOptionalType(propType)); if (!(getFalsyFlags(flowType) & 32768 /* TypeFlags.Undefined */)) { return true; } } } return false; } function isPropertyInitializedInConstructor(propName, propType, constructor) { var reference = ts.isComputedPropertyName(propName) ? ts.factory.createElementAccessExpression(ts.factory.createThis(), propName.expression) : ts.factory.createPropertyAccessExpression(ts.factory.createThis(), propName); ts.setParent(reference.expression, reference); ts.setParent(reference, constructor); reference.flowNode = constructor.returnFlowNode; var flowType = getFlowTypeOfReference(reference, propType, getOptionalType(propType)); return !(getFalsyFlags(flowType) & 32768 /* TypeFlags.Undefined */); } function checkInterfaceDeclaration(node) { // Grammar checking if (!checkGrammarDecoratorsAndModifiers(node)) checkGrammarInterfaceDeclaration(node); checkTypeParameters(node.typeParameters); addLazyDiagnostic(function () { checkTypeNameIsReserved(node.name, ts.Diagnostics.Interface_name_cannot_be_0); checkExportsOnMergedDeclarations(node); var symbol = getSymbolOfNode(node); checkTypeParameterListsIdentical(symbol); // Only check this symbol once var firstInterfaceDecl = ts.getDeclarationOfKind(symbol, 258 /* SyntaxKind.InterfaceDeclaration */); if (node === firstInterfaceDecl) { var type = getDeclaredTypeOfSymbol(symbol); var typeWithThis = getTypeWithThisArgument(type); // run subsequent checks only if first set succeeded if (checkInheritedPropertiesAreIdentical(type, node.name)) { for (var _i = 0, _a = getBaseTypes(type); _i < _a.length; _i++) { var baseType = _a[_i]; checkTypeAssignableTo(typeWithThis, getTypeWithThisArgument(baseType, type.thisType), node.name, ts.Diagnostics.Interface_0_incorrectly_extends_interface_1); } checkIndexConstraints(type, symbol); } } checkObjectTypeForDuplicateDeclarations(node); }); ts.forEach(ts.getInterfaceBaseTypeNodes(node), function (heritageElement) { if (!ts.isEntityNameExpression(heritageElement.expression) || ts.isOptionalChain(heritageElement.expression)) { error(heritageElement.expression, ts.Diagnostics.An_interface_can_only_extend_an_identifier_Slashqualified_name_with_optional_type_arguments); } checkTypeReferenceNode(heritageElement); }); ts.forEach(node.members, checkSourceElement); addLazyDiagnostic(function () { checkTypeForDuplicateIndexSignatures(node); registerForUnusedIdentifiersCheck(node); }); } function checkTypeAliasDeclaration(node) { // Grammar checking checkGrammarDecoratorsAndModifiers(node); checkTypeNameIsReserved(node.name, ts.Diagnostics.Type_alias_name_cannot_be_0); checkExportsOnMergedDeclarations(node); checkTypeParameters(node.typeParameters); if (node.type.kind === 138 /* SyntaxKind.IntrinsicKeyword */) { if (!intrinsicTypeKinds.has(node.name.escapedText) || ts.length(node.typeParameters) !== 1) { error(node.type, ts.Diagnostics.The_intrinsic_keyword_can_only_be_used_to_declare_compiler_provided_intrinsic_types); } } else { checkSourceElement(node.type); registerForUnusedIdentifiersCheck(node); } } function computeEnumMemberValues(node) { var nodeLinks = getNodeLinks(node); if (!(nodeLinks.flags & 16384 /* NodeCheckFlags.EnumValuesComputed */)) { nodeLinks.flags |= 16384 /* NodeCheckFlags.EnumValuesComputed */; var autoValue = 0; for (var _i = 0, _a = node.members; _i < _a.length; _i++) { var member = _a[_i]; var value = computeMemberValue(member, autoValue); getNodeLinks(member).enumMemberValue = value; autoValue = typeof value === "number" ? value + 1 : undefined; } } } function computeMemberValue(member, autoValue) { if (ts.isComputedNonLiteralName(member.name)) { error(member.name, ts.Diagnostics.Computed_property_names_are_not_allowed_in_enums); } else { var text = ts.getTextOfPropertyName(member.name); if (ts.isNumericLiteralName(text) && !ts.isInfinityOrNaNString(text)) { error(member.name, ts.Diagnostics.An_enum_member_cannot_have_a_numeric_name); } } if (member.initializer) { return computeConstantValue(member); } // In ambient non-const numeric enum declarations, enum members without initializers are // considered computed members (as opposed to having auto-incremented values). if (member.parent.flags & 16777216 /* NodeFlags.Ambient */ && !ts.isEnumConst(member.parent) && getEnumKind(getSymbolOfNode(member.parent)) === 0 /* EnumKind.Numeric */) { return undefined; } // If the member declaration specifies no value, the member is considered a constant enum member. // If the member is the first member in the enum declaration, it is assigned the value zero. // Otherwise, it is assigned the value of the immediately preceding member plus one, and an error // occurs if the immediately preceding member is not a constant enum member. if (autoValue !== undefined) { return autoValue; } error(member.name, ts.Diagnostics.Enum_member_must_have_initializer); return undefined; } function computeConstantValue(member) { var enumKind = getEnumKind(getSymbolOfNode(member.parent)); var isConstEnum = ts.isEnumConst(member.parent); var initializer = member.initializer; var value = enumKind === 1 /* EnumKind.Literal */ && !isLiteralEnumMember(member) ? undefined : evaluate(initializer); if (value !== undefined) { if (isConstEnum && typeof value === "number" && !isFinite(value)) { error(initializer, isNaN(value) ? ts.Diagnostics.const_enum_member_initializer_was_evaluated_to_disallowed_value_NaN : ts.Diagnostics.const_enum_member_initializer_was_evaluated_to_a_non_finite_value); } } else if (enumKind === 1 /* EnumKind.Literal */) { error(initializer, ts.Diagnostics.Computed_values_are_not_permitted_in_an_enum_with_string_valued_members); return 0; } else if (isConstEnum) { error(initializer, ts.Diagnostics.const_enum_member_initializers_can_only_contain_literal_values_and_other_computed_enum_values); } else if (member.parent.flags & 16777216 /* NodeFlags.Ambient */) { error(initializer, ts.Diagnostics.In_ambient_enum_declarations_member_initializer_must_be_constant_expression); } else { // Only here do we need to check that the initializer is assignable to the enum type. var source = checkExpression(initializer); if (!isTypeAssignableToKind(source, 296 /* TypeFlags.NumberLike */)) { error(initializer, ts.Diagnostics.Only_numeric_enums_can_have_computed_members_but_this_expression_has_type_0_If_you_do_not_need_exhaustiveness_checks_consider_using_an_object_literal_instead, typeToString(source)); } else { checkTypeAssignableTo(source, getDeclaredTypeOfSymbol(getSymbolOfNode(member.parent)), initializer, /*headMessage*/ undefined); } } return value; function evaluate(expr) { switch (expr.kind) { case 219 /* SyntaxKind.PrefixUnaryExpression */: var value_2 = evaluate(expr.operand); if (typeof value_2 === "number") { switch (expr.operator) { case 39 /* SyntaxKind.PlusToken */: return value_2; case 40 /* SyntaxKind.MinusToken */: return -value_2; case 54 /* SyntaxKind.TildeToken */: return ~value_2; } } break; case 221 /* SyntaxKind.BinaryExpression */: var left = evaluate(expr.left); var right = evaluate(expr.right); if (typeof left === "number" && typeof right === "number") { switch (expr.operatorToken.kind) { case 51 /* SyntaxKind.BarToken */: return left | right; case 50 /* SyntaxKind.AmpersandToken */: return left & right; case 48 /* SyntaxKind.GreaterThanGreaterThanToken */: return left >> right; case 49 /* SyntaxKind.GreaterThanGreaterThanGreaterThanToken */: return left >>> right; case 47 /* SyntaxKind.LessThanLessThanToken */: return left << right; case 52 /* SyntaxKind.CaretToken */: return left ^ right; case 41 /* SyntaxKind.AsteriskToken */: return left * right; case 43 /* SyntaxKind.SlashToken */: return left / right; case 39 /* SyntaxKind.PlusToken */: return left + right; case 40 /* SyntaxKind.MinusToken */: return left - right; case 44 /* SyntaxKind.PercentToken */: return left % right; case 42 /* SyntaxKind.AsteriskAsteriskToken */: return Math.pow(left, right); } } else if (typeof left === "string" && typeof right === "string" && expr.operatorToken.kind === 39 /* SyntaxKind.PlusToken */) { return left + right; } break; case 10 /* SyntaxKind.StringLiteral */: case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: return expr.text; case 8 /* SyntaxKind.NumericLiteral */: checkGrammarNumericLiteral(expr); return +expr.text; case 212 /* SyntaxKind.ParenthesizedExpression */: return evaluate(expr.expression); case 79 /* SyntaxKind.Identifier */: var identifier = expr; if (ts.isInfinityOrNaNString(identifier.escapedText)) { return +(identifier.escapedText); } return ts.nodeIsMissing(expr) ? 0 : evaluateEnumMember(expr, getSymbolOfNode(member.parent), identifier.escapedText); case 207 /* SyntaxKind.ElementAccessExpression */: case 206 /* SyntaxKind.PropertyAccessExpression */: if (isConstantMemberAccess(expr)) { var type = getTypeOfExpression(expr.expression); if (type.symbol && type.symbol.flags & 384 /* SymbolFlags.Enum */) { var name = void 0; if (expr.kind === 206 /* SyntaxKind.PropertyAccessExpression */) { name = expr.name.escapedText; } else { name = ts.escapeLeadingUnderscores(ts.cast(expr.argumentExpression, ts.isLiteralExpression).text); } return evaluateEnumMember(expr, type.symbol, name); } } break; } return undefined; } function evaluateEnumMember(expr, enumSymbol, name) { var memberSymbol = enumSymbol.exports.get(name); if (memberSymbol) { var declaration = memberSymbol.valueDeclaration; if (declaration !== member) { if (declaration && isBlockScopedNameDeclaredBeforeUse(declaration, member) && ts.isEnumDeclaration(declaration.parent)) { return getEnumMemberValue(declaration); } error(expr, ts.Diagnostics.A_member_initializer_in_a_enum_declaration_cannot_reference_members_declared_after_it_including_members_defined_in_other_enums); return 0; } else { error(expr, ts.Diagnostics.Property_0_is_used_before_being_assigned, symbolToString(memberSymbol)); } } return undefined; } } function isConstantMemberAccess(node) { var type = getTypeOfExpression(node); if (type === errorType) { return false; } return node.kind === 79 /* SyntaxKind.Identifier */ || node.kind === 206 /* SyntaxKind.PropertyAccessExpression */ && isConstantMemberAccess(node.expression) || node.kind === 207 /* SyntaxKind.ElementAccessExpression */ && isConstantMemberAccess(node.expression) && ts.isStringLiteralLike(node.argumentExpression); } function checkEnumDeclaration(node) { addLazyDiagnostic(function () { return checkEnumDeclarationWorker(node); }); } function checkEnumDeclarationWorker(node) { // Grammar checking checkGrammarDecoratorsAndModifiers(node); checkCollisionsForDeclarationName(node, node.name); checkExportsOnMergedDeclarations(node); node.members.forEach(checkEnumMember); computeEnumMemberValues(node); // Spec 2014 - Section 9.3: // It isn't possible for one enum declaration to continue the automatic numbering sequence of another, // and when an enum type has multiple declarations, only one declaration is permitted to omit a value // for the first member. // // Only perform this check once per symbol var enumSymbol = getSymbolOfNode(node); var firstDeclaration = ts.getDeclarationOfKind(enumSymbol, node.kind); if (node === firstDeclaration) { if (enumSymbol.declarations && enumSymbol.declarations.length > 1) { var enumIsConst_1 = ts.isEnumConst(node); // check that const is placed\omitted on all enum declarations ts.forEach(enumSymbol.declarations, function (decl) { if (ts.isEnumDeclaration(decl) && ts.isEnumConst(decl) !== enumIsConst_1) { error(ts.getNameOfDeclaration(decl), ts.Diagnostics.Enum_declarations_must_all_be_const_or_non_const); } }); } var seenEnumMissingInitialInitializer_1 = false; ts.forEach(enumSymbol.declarations, function (declaration) { // return true if we hit a violation of the rule, false otherwise if (declaration.kind !== 260 /* SyntaxKind.EnumDeclaration */) { return false; } var enumDeclaration = declaration; if (!enumDeclaration.members.length) { return false; } var firstEnumMember = enumDeclaration.members[0]; if (!firstEnumMember.initializer) { if (seenEnumMissingInitialInitializer_1) { error(firstEnumMember.name, ts.Diagnostics.In_an_enum_with_multiple_declarations_only_one_declaration_can_omit_an_initializer_for_its_first_enum_element); } else { seenEnumMissingInitialInitializer_1 = true; } } }); } } function checkEnumMember(node) { if (ts.isPrivateIdentifier(node.name)) { error(node, ts.Diagnostics.An_enum_member_cannot_be_named_with_a_private_identifier); } } function getFirstNonAmbientClassOrFunctionDeclaration(symbol) { var declarations = symbol.declarations; if (declarations) { for (var _i = 0, declarations_9 = declarations; _i < declarations_9.length; _i++) { var declaration = declarations_9[_i]; if ((declaration.kind === 257 /* SyntaxKind.ClassDeclaration */ || (declaration.kind === 256 /* SyntaxKind.FunctionDeclaration */ && ts.nodeIsPresent(declaration.body))) && !(declaration.flags & 16777216 /* NodeFlags.Ambient */)) { return declaration; } } } return undefined; } function inSameLexicalScope(node1, node2) { var container1 = ts.getEnclosingBlockScopeContainer(node1); var container2 = ts.getEnclosingBlockScopeContainer(node2); if (isGlobalSourceFile(container1)) { return isGlobalSourceFile(container2); } else if (isGlobalSourceFile(container2)) { return false; } else { return container1 === container2; } } function checkModuleDeclaration(node) { if (node.body) { checkSourceElement(node.body); if (!ts.isGlobalScopeAugmentation(node)) { registerForUnusedIdentifiersCheck(node); } } addLazyDiagnostic(checkModuleDeclarationDiagnostics); function checkModuleDeclarationDiagnostics() { // Grammar checking var isGlobalAugmentation = ts.isGlobalScopeAugmentation(node); var inAmbientContext = node.flags & 16777216 /* NodeFlags.Ambient */; if (isGlobalAugmentation && !inAmbientContext) { error(node.name, ts.Diagnostics.Augmentations_for_the_global_scope_should_have_declare_modifier_unless_they_appear_in_already_ambient_context); } var isAmbientExternalModule = ts.isAmbientModule(node); var contextErrorMessage = isAmbientExternalModule ? ts.Diagnostics.An_ambient_module_declaration_is_only_allowed_at_the_top_level_in_a_file : ts.Diagnostics.A_namespace_declaration_is_only_allowed_at_the_top_level_of_a_namespace_or_module; if (checkGrammarModuleElementContext(node, contextErrorMessage)) { // If we hit a module declaration in an illegal context, just bail out to avoid cascading errors. return; } if (!checkGrammarDecoratorsAndModifiers(node)) { if (!inAmbientContext && node.name.kind === 10 /* SyntaxKind.StringLiteral */) { grammarErrorOnNode(node.name, ts.Diagnostics.Only_ambient_modules_can_use_quoted_names); } } if (ts.isIdentifier(node.name)) { checkCollisionsForDeclarationName(node, node.name); } checkExportsOnMergedDeclarations(node); var symbol = getSymbolOfNode(node); // The following checks only apply on a non-ambient instantiated module declaration. if (symbol.flags & 512 /* SymbolFlags.ValueModule */ && !inAmbientContext && symbol.declarations && symbol.declarations.length > 1 && isInstantiatedModule(node, ts.shouldPreserveConstEnums(compilerOptions))) { var firstNonAmbientClassOrFunc = getFirstNonAmbientClassOrFunctionDeclaration(symbol); if (firstNonAmbientClassOrFunc) { if (ts.getSourceFileOfNode(node) !== ts.getSourceFileOfNode(firstNonAmbientClassOrFunc)) { error(node.name, ts.Diagnostics.A_namespace_declaration_cannot_be_in_a_different_file_from_a_class_or_function_with_which_it_is_merged); } else if (node.pos < firstNonAmbientClassOrFunc.pos) { error(node.name, ts.Diagnostics.A_namespace_declaration_cannot_be_located_prior_to_a_class_or_function_with_which_it_is_merged); } } // if the module merges with a class declaration in the same lexical scope, // we need to track this to ensure the correct emit. var mergedClass = ts.getDeclarationOfKind(symbol, 257 /* SyntaxKind.ClassDeclaration */); if (mergedClass && inSameLexicalScope(node, mergedClass)) { getNodeLinks(node).flags |= 32768 /* NodeCheckFlags.LexicalModuleMergesWithClass */; } } if (isAmbientExternalModule) { if (ts.isExternalModuleAugmentation(node)) { // body of the augmentation should be checked for consistency only if augmentation was applied to its target (either global scope or module) // otherwise we'll be swamped in cascading errors. // We can detect if augmentation was applied using following rules: // - augmentation for a global scope is always applied // - augmentation for some external module is applied if symbol for augmentation is merged (it was combined with target module). var checkBody = isGlobalAugmentation || (getSymbolOfNode(node).flags & 33554432 /* SymbolFlags.Transient */); if (checkBody && node.body) { for (var _i = 0, _a = node.body.statements; _i < _a.length; _i++) { var statement = _a[_i]; checkModuleAugmentationElement(statement, isGlobalAugmentation); } } } else if (isGlobalSourceFile(node.parent)) { if (isGlobalAugmentation) { error(node.name, ts.Diagnostics.Augmentations_for_the_global_scope_can_only_be_directly_nested_in_external_modules_or_ambient_module_declarations); } else if (ts.isExternalModuleNameRelative(ts.getTextOfIdentifierOrLiteral(node.name))) { error(node.name, ts.Diagnostics.Ambient_module_declaration_cannot_specify_relative_module_name); } } else { if (isGlobalAugmentation) { error(node.name, ts.Diagnostics.Augmentations_for_the_global_scope_can_only_be_directly_nested_in_external_modules_or_ambient_module_declarations); } else { // Node is not an augmentation and is not located on the script level. // This means that this is declaration of ambient module that is located in other module or namespace which is prohibited. error(node.name, ts.Diagnostics.Ambient_modules_cannot_be_nested_in_other_modules_or_namespaces); } } } } } function checkModuleAugmentationElement(node, isGlobalAugmentation) { var _a; switch (node.kind) { case 237 /* SyntaxKind.VariableStatement */: // error each individual name in variable statement instead of marking the entire variable statement for (var _i = 0, _b = node.declarationList.declarations; _i < _b.length; _i++) { var decl = _b[_i]; checkModuleAugmentationElement(decl, isGlobalAugmentation); } break; case 271 /* SyntaxKind.ExportAssignment */: case 272 /* SyntaxKind.ExportDeclaration */: grammarErrorOnFirstToken(node, ts.Diagnostics.Exports_and_export_assignments_are_not_permitted_in_module_augmentations); break; case 265 /* SyntaxKind.ImportEqualsDeclaration */: case 266 /* SyntaxKind.ImportDeclaration */: grammarErrorOnFirstToken(node, ts.Diagnostics.Imports_are_not_permitted_in_module_augmentations_Consider_moving_them_to_the_enclosing_external_module); break; case 203 /* SyntaxKind.BindingElement */: case 254 /* SyntaxKind.VariableDeclaration */: var name = node.name; if (ts.isBindingPattern(name)) { for (var _c = 0, _d = name.elements; _c < _d.length; _c++) { var el = _d[_c]; // mark individual names in binding pattern checkModuleAugmentationElement(el, isGlobalAugmentation); } break; } // falls through case 257 /* SyntaxKind.ClassDeclaration */: case 260 /* SyntaxKind.EnumDeclaration */: case 256 /* SyntaxKind.FunctionDeclaration */: case 258 /* SyntaxKind.InterfaceDeclaration */: case 261 /* SyntaxKind.ModuleDeclaration */: case 259 /* SyntaxKind.TypeAliasDeclaration */: if (isGlobalAugmentation) { return; } var symbol = getSymbolOfNode(node); if (symbol) { // module augmentations cannot introduce new names on the top level scope of the module // this is done it two steps // 1. quick check - if symbol for node is not merged - this is local symbol to this augmentation - report error // 2. main check - report error if value declaration of the parent symbol is module augmentation) var reportError = !(symbol.flags & 33554432 /* SymbolFlags.Transient */); if (!reportError) { // symbol should not originate in augmentation reportError = !!((_a = symbol.parent) === null || _a === void 0 ? void 0 : _a.declarations) && ts.isExternalModuleAugmentation(symbol.parent.declarations[0]); } } break; } } function getFirstNonModuleExportsIdentifier(node) { switch (node.kind) { case 79 /* SyntaxKind.Identifier */: return node; case 161 /* SyntaxKind.QualifiedName */: do { node = node.left; } while (node.kind !== 79 /* SyntaxKind.Identifier */); return node; case 206 /* SyntaxKind.PropertyAccessExpression */: do { if (ts.isModuleExportsAccessExpression(node.expression) && !ts.isPrivateIdentifier(node.name)) { return node.name; } node = node.expression; } while (node.kind !== 79 /* SyntaxKind.Identifier */); return node; } } function checkExternalImportOrExportDeclaration(node) { var moduleName = ts.getExternalModuleName(node); if (!moduleName || ts.nodeIsMissing(moduleName)) { // Should be a parse error. return false; } if (!ts.isStringLiteral(moduleName)) { error(moduleName, ts.Diagnostics.String_literal_expected); return false; } var inAmbientExternalModule = node.parent.kind === 262 /* SyntaxKind.ModuleBlock */ && ts.isAmbientModule(node.parent.parent); if (node.parent.kind !== 305 /* SyntaxKind.SourceFile */ && !inAmbientExternalModule) { error(moduleName, node.kind === 272 /* SyntaxKind.ExportDeclaration */ ? ts.Diagnostics.Export_declarations_are_not_permitted_in_a_namespace : ts.Diagnostics.Import_declarations_in_a_namespace_cannot_reference_a_module); return false; } if (inAmbientExternalModule && ts.isExternalModuleNameRelative(moduleName.text)) { // we have already reported errors on top level imports/exports in external module augmentations in checkModuleDeclaration // no need to do this again. if (!isTopLevelInExternalModuleAugmentation(node)) { // TypeScript 1.0 spec (April 2013): 12.1.6 // An ExternalImportDeclaration in an AmbientExternalModuleDeclaration may reference // other external modules only through top - level external module names. // Relative external module names are not permitted. error(node, ts.Diagnostics.Import_or_export_declaration_in_an_ambient_module_declaration_cannot_reference_module_through_relative_module_name); return false; } } if (!ts.isImportEqualsDeclaration(node) && node.assertClause) { var hasError = false; for (var _i = 0, _a = node.assertClause.elements; _i < _a.length; _i++) { var clause = _a[_i]; if (!ts.isStringLiteral(clause.value)) { hasError = true; error(clause.value, ts.Diagnostics.Import_assertion_values_must_be_string_literal_expressions); } } return !hasError; } return true; } function checkAliasSymbol(node) { var symbol = getSymbolOfNode(node); var target = resolveAlias(symbol); if (target !== unknownSymbol) { // For external modules, `symbol` represents the local symbol for an alias. // This local symbol will merge any other local declarations (excluding other aliases) // and symbol.flags will contains combined representation for all merged declaration. // Based on symbol.flags we can compute a set of excluded meanings (meaning that resolved alias should not have, // otherwise it will conflict with some local declaration). Note that in addition to normal flags we include matching SymbolFlags.Export* // in order to prevent collisions with declarations that were exported from the current module (they still contribute to local names). symbol = getMergedSymbol(symbol.exportSymbol || symbol); var excludedMeanings = (symbol.flags & (111551 /* SymbolFlags.Value */ | 1048576 /* SymbolFlags.ExportValue */) ? 111551 /* SymbolFlags.Value */ : 0) | (symbol.flags & 788968 /* SymbolFlags.Type */ ? 788968 /* SymbolFlags.Type */ : 0) | (symbol.flags & 1920 /* SymbolFlags.Namespace */ ? 1920 /* SymbolFlags.Namespace */ : 0); if (target.flags & excludedMeanings) { var message = node.kind === 275 /* SyntaxKind.ExportSpecifier */ ? ts.Diagnostics.Export_declaration_conflicts_with_exported_declaration_of_0 : ts.Diagnostics.Import_declaration_conflicts_with_local_declaration_of_0; error(node, message, symbolToString(symbol)); } if (compilerOptions.isolatedModules && !ts.isTypeOnlyImportOrExportDeclaration(node) && !(node.flags & 16777216 /* NodeFlags.Ambient */)) { var typeOnlyAlias = getTypeOnlyAliasDeclaration(symbol); var isType = !(target.flags & 111551 /* SymbolFlags.Value */); if (isType || typeOnlyAlias) { switch (node.kind) { case 267 /* SyntaxKind.ImportClause */: case 270 /* SyntaxKind.ImportSpecifier */: case 265 /* SyntaxKind.ImportEqualsDeclaration */: { if (compilerOptions.preserveValueImports) { ts.Debug.assertIsDefined(node.name, "An ImportClause with a symbol should have a name"); var message = isType ? ts.Diagnostics._0_is_a_type_and_must_be_imported_using_a_type_only_import_when_preserveValueImports_and_isolatedModules_are_both_enabled : ts.Diagnostics._0_resolves_to_a_type_only_declaration_and_must_be_imported_using_a_type_only_import_when_preserveValueImports_and_isolatedModules_are_both_enabled; var name = ts.idText(node.kind === 270 /* SyntaxKind.ImportSpecifier */ ? node.propertyName || node.name : node.name); addTypeOnlyDeclarationRelatedInfo(error(node, message, name), isType ? undefined : typeOnlyAlias, name); } if (isType && node.kind === 265 /* SyntaxKind.ImportEqualsDeclaration */ && ts.hasEffectiveModifier(node, 1 /* ModifierFlags.Export */)) { error(node, ts.Diagnostics.Cannot_use_export_import_on_a_type_or_type_only_namespace_when_the_isolatedModules_flag_is_provided); } break; } case 275 /* SyntaxKind.ExportSpecifier */: { // Don't allow re-exporting an export that will be elided when `--isolatedModules` is set. // The exception is that `import type { A } from './a'; export { A }` is allowed // because single-file analysis can determine that the export should be dropped. if (ts.getSourceFileOfNode(typeOnlyAlias) !== ts.getSourceFileOfNode(node)) { var message = isType ? ts.Diagnostics.Re_exporting_a_type_when_the_isolatedModules_flag_is_provided_requires_using_export_type : ts.Diagnostics._0_resolves_to_a_type_only_declaration_and_must_be_re_exported_using_a_type_only_re_export_when_isolatedModules_is_enabled; var name = ts.idText(node.propertyName || node.name); addTypeOnlyDeclarationRelatedInfo(error(node, message, name), isType ? undefined : typeOnlyAlias, name); return; } } } } } if (ts.isImportSpecifier(node)) { var targetSymbol = checkDeprecatedAliasedSymbol(symbol, node); if (isDeprecatedAliasedSymbol(targetSymbol) && targetSymbol.declarations) { addDeprecatedSuggestion(node, targetSymbol.declarations, targetSymbol.escapedName); } } } } function isDeprecatedAliasedSymbol(symbol) { return !!symbol.declarations && ts.every(symbol.declarations, function (d) { return !!(ts.getCombinedNodeFlags(d) & 268435456 /* NodeFlags.Deprecated */); }); } function checkDeprecatedAliasedSymbol(symbol, location) { if (!(symbol.flags & 2097152 /* SymbolFlags.Alias */)) return symbol; var targetSymbol = resolveAlias(symbol); if (targetSymbol === unknownSymbol) return targetSymbol; while (symbol.flags & 2097152 /* SymbolFlags.Alias */) { var target = getImmediateAliasedSymbol(symbol); if (target) { if (target === targetSymbol) break; if (target.declarations && ts.length(target.declarations)) { if (isDeprecatedAliasedSymbol(target)) { addDeprecatedSuggestion(location, target.declarations, target.escapedName); break; } else { if (symbol === targetSymbol) break; symbol = target; } } } else { break; } } return targetSymbol; } function checkImportBinding(node) { checkCollisionsForDeclarationName(node, node.name); checkAliasSymbol(node); if (node.kind === 270 /* SyntaxKind.ImportSpecifier */ && ts.idText(node.propertyName || node.name) === "default" && ts.getESModuleInterop(compilerOptions) && moduleKind !== ts.ModuleKind.System && (moduleKind < ts.ModuleKind.ES2015 || ts.getSourceFileOfNode(node).impliedNodeFormat === ts.ModuleKind.CommonJS)) { checkExternalEmitHelpers(node, 131072 /* ExternalEmitHelpers.ImportDefault */); } } function checkAssertClause(declaration) { var _a; if (declaration.assertClause) { var validForTypeAssertions = ts.isExclusivelyTypeOnlyImportOrExport(declaration); var override = ts.getResolutionModeOverrideForClause(declaration.assertClause, validForTypeAssertions ? grammarErrorOnNode : undefined); if (validForTypeAssertions && override) { if (!ts.isNightly()) { grammarErrorOnNode(declaration.assertClause, ts.Diagnostics.resolution_mode_assertions_are_unstable_Use_nightly_TypeScript_to_silence_this_error_Try_updating_with_npm_install_D_typescript_next); } if (ts.getEmitModuleResolutionKind(compilerOptions) !== ts.ModuleResolutionKind.Node16 && ts.getEmitModuleResolutionKind(compilerOptions) !== ts.ModuleResolutionKind.NodeNext) { return grammarErrorOnNode(declaration.assertClause, ts.Diagnostics.resolution_mode_assertions_are_only_supported_when_moduleResolution_is_node16_or_nodenext); } return; // Other grammar checks do not apply to type-only imports with resolution mode assertions } var mode = (moduleKind === ts.ModuleKind.NodeNext) && declaration.moduleSpecifier && getUsageModeForExpression(declaration.moduleSpecifier); if (mode !== ts.ModuleKind.ESNext && moduleKind !== ts.ModuleKind.ESNext) { return grammarErrorOnNode(declaration.assertClause, moduleKind === ts.ModuleKind.NodeNext ? ts.Diagnostics.Import_assertions_are_not_allowed_on_statements_that_transpile_to_commonjs_require_calls : ts.Diagnostics.Import_assertions_are_only_supported_when_the_module_option_is_set_to_esnext_or_nodenext); } if (ts.isImportDeclaration(declaration) ? (_a = declaration.importClause) === null || _a === void 0 ? void 0 : _a.isTypeOnly : declaration.isTypeOnly) { return grammarErrorOnNode(declaration.assertClause, ts.Diagnostics.Import_assertions_cannot_be_used_with_type_only_imports_or_exports); } if (override) { return grammarErrorOnNode(declaration.assertClause, ts.Diagnostics.resolution_mode_can_only_be_set_for_type_only_imports); } } } function checkImportDeclaration(node) { if (checkGrammarModuleElementContext(node, ts.isInJSFile(node) ? ts.Diagnostics.An_import_declaration_can_only_be_used_at_the_top_level_of_a_module : ts.Diagnostics.An_import_declaration_can_only_be_used_at_the_top_level_of_a_namespace_or_module)) { // If we hit an import declaration in an illegal context, just bail out to avoid cascading errors. return; } if (!checkGrammarDecoratorsAndModifiers(node) && ts.hasEffectiveModifiers(node)) { grammarErrorOnFirstToken(node, ts.Diagnostics.An_import_declaration_cannot_have_modifiers); } if (checkExternalImportOrExportDeclaration(node)) { var importClause = node.importClause; if (importClause && !checkGrammarImportClause(importClause)) { if (importClause.name) { checkImportBinding(importClause); } if (importClause.namedBindings) { if (importClause.namedBindings.kind === 268 /* SyntaxKind.NamespaceImport */) { checkImportBinding(importClause.namedBindings); if (moduleKind !== ts.ModuleKind.System && (moduleKind < ts.ModuleKind.ES2015 || ts.getSourceFileOfNode(node).impliedNodeFormat === ts.ModuleKind.CommonJS) && ts.getESModuleInterop(compilerOptions)) { // import * as ns from "foo"; checkExternalEmitHelpers(node, 65536 /* ExternalEmitHelpers.ImportStar */); } } else { var moduleExisted = resolveExternalModuleName(node, node.moduleSpecifier); if (moduleExisted) { ts.forEach(importClause.namedBindings.elements, checkImportBinding); } } } } } checkAssertClause(node); } function checkImportEqualsDeclaration(node) { if (checkGrammarModuleElementContext(node, ts.isInJSFile(node) ? ts.Diagnostics.An_import_declaration_can_only_be_used_at_the_top_level_of_a_module : ts.Diagnostics.An_import_declaration_can_only_be_used_at_the_top_level_of_a_namespace_or_module)) { // If we hit an import declaration in an illegal context, just bail out to avoid cascading errors. return; } checkGrammarDecoratorsAndModifiers(node); if (ts.isInternalModuleImportEqualsDeclaration(node) || checkExternalImportOrExportDeclaration(node)) { checkImportBinding(node); if (ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */)) { markExportAsReferenced(node); } if (node.moduleReference.kind !== 277 /* SyntaxKind.ExternalModuleReference */) { var target = resolveAlias(getSymbolOfNode(node)); if (target !== unknownSymbol) { if (target.flags & 111551 /* SymbolFlags.Value */) { // Target is a value symbol, check that it is not hidden by a local declaration with the same name var moduleName = ts.getFirstIdentifier(node.moduleReference); if (!(resolveEntityName(moduleName, 111551 /* SymbolFlags.Value */ | 1920 /* SymbolFlags.Namespace */).flags & 1920 /* SymbolFlags.Namespace */)) { error(moduleName, ts.Diagnostics.Module_0_is_hidden_by_a_local_declaration_with_the_same_name, ts.declarationNameToString(moduleName)); } } if (target.flags & 788968 /* SymbolFlags.Type */) { checkTypeNameIsReserved(node.name, ts.Diagnostics.Import_name_cannot_be_0); } } if (node.isTypeOnly) { grammarErrorOnNode(node, ts.Diagnostics.An_import_alias_cannot_use_import_type); } } else { if (moduleKind >= ts.ModuleKind.ES2015 && ts.getSourceFileOfNode(node).impliedNodeFormat === undefined && !node.isTypeOnly && !(node.flags & 16777216 /* NodeFlags.Ambient */)) { // Import equals declaration is deprecated in es6 or above grammarErrorOnNode(node, ts.Diagnostics.Import_assignment_cannot_be_used_when_targeting_ECMAScript_modules_Consider_using_import_Asterisk_as_ns_from_mod_import_a_from_mod_import_d_from_mod_or_another_module_format_instead); } } } } function checkExportDeclaration(node) { if (checkGrammarModuleElementContext(node, ts.isInJSFile(node) ? ts.Diagnostics.An_export_declaration_can_only_be_used_at_the_top_level_of_a_module : ts.Diagnostics.An_export_declaration_can_only_be_used_at_the_top_level_of_a_namespace_or_module)) { // If we hit an export in an illegal context, just bail out to avoid cascading errors. return; } if (!checkGrammarDecoratorsAndModifiers(node) && ts.hasSyntacticModifiers(node)) { grammarErrorOnFirstToken(node, ts.Diagnostics.An_export_declaration_cannot_have_modifiers); } if (node.moduleSpecifier && node.exportClause && ts.isNamedExports(node.exportClause) && ts.length(node.exportClause.elements) && languageVersion === 0 /* ScriptTarget.ES3 */) { checkExternalEmitHelpers(node, 4194304 /* ExternalEmitHelpers.CreateBinding */); } checkGrammarExportDeclaration(node); if (!node.moduleSpecifier || checkExternalImportOrExportDeclaration(node)) { if (node.exportClause && !ts.isNamespaceExport(node.exportClause)) { // export { x, y } // export { x, y } from "foo" ts.forEach(node.exportClause.elements, checkExportSpecifier); var inAmbientExternalModule = node.parent.kind === 262 /* SyntaxKind.ModuleBlock */ && ts.isAmbientModule(node.parent.parent); var inAmbientNamespaceDeclaration = !inAmbientExternalModule && node.parent.kind === 262 /* SyntaxKind.ModuleBlock */ && !node.moduleSpecifier && node.flags & 16777216 /* NodeFlags.Ambient */; if (node.parent.kind !== 305 /* SyntaxKind.SourceFile */ && !inAmbientExternalModule && !inAmbientNamespaceDeclaration) { error(node, ts.Diagnostics.Export_declarations_are_not_permitted_in_a_namespace); } } else { // export * from "foo" // export * as ns from "foo"; var moduleSymbol = resolveExternalModuleName(node, node.moduleSpecifier); if (moduleSymbol && hasExportAssignmentSymbol(moduleSymbol)) { error(node.moduleSpecifier, ts.Diagnostics.Module_0_uses_export_and_cannot_be_used_with_export_Asterisk, symbolToString(moduleSymbol)); } else if (node.exportClause) { checkAliasSymbol(node.exportClause); } if (moduleKind !== ts.ModuleKind.System && (moduleKind < ts.ModuleKind.ES2015 || ts.getSourceFileOfNode(node).impliedNodeFormat === ts.ModuleKind.CommonJS)) { if (node.exportClause) { // export * as ns from "foo"; // For ES2015 modules, we emit it as a pair of `import * as a_1 ...; export { a_1 as ns }` and don't need the helper. // We only use the helper here when in esModuleInterop if (ts.getESModuleInterop(compilerOptions)) { checkExternalEmitHelpers(node, 65536 /* ExternalEmitHelpers.ImportStar */); } } else { // export * from "foo" checkExternalEmitHelpers(node, 32768 /* ExternalEmitHelpers.ExportStar */); } } } } checkAssertClause(node); } function checkGrammarExportDeclaration(node) { var _a; if (node.isTypeOnly) { if (((_a = node.exportClause) === null || _a === void 0 ? void 0 : _a.kind) === 273 /* SyntaxKind.NamedExports */) { return checkGrammarNamedImportsOrExports(node.exportClause); } else { return grammarErrorOnNode(node, ts.Diagnostics.Only_named_exports_may_use_export_type); } } return false; } function checkGrammarModuleElementContext(node, errorMessage) { var isInAppropriateContext = node.parent.kind === 305 /* SyntaxKind.SourceFile */ || node.parent.kind === 262 /* SyntaxKind.ModuleBlock */ || node.parent.kind === 261 /* SyntaxKind.ModuleDeclaration */; if (!isInAppropriateContext) { grammarErrorOnFirstToken(node, errorMessage); } return !isInAppropriateContext; } function importClauseContainsReferencedImport(importClause) { return ts.forEachImportClauseDeclaration(importClause, function (declaration) { return !!getSymbolOfNode(declaration).isReferenced; }); } function importClauseContainsConstEnumUsedAsValue(importClause) { return ts.forEachImportClauseDeclaration(importClause, function (declaration) { return !!getSymbolLinks(getSymbolOfNode(declaration)).constEnumReferenced; }); } function canConvertImportDeclarationToTypeOnly(statement) { return ts.isImportDeclaration(statement) && statement.importClause && !statement.importClause.isTypeOnly && importClauseContainsReferencedImport(statement.importClause) && !isReferencedAliasDeclaration(statement.importClause, /*checkChildren*/ true) && !importClauseContainsConstEnumUsedAsValue(statement.importClause); } function canConvertImportEqualsDeclarationToTypeOnly(statement) { return ts.isImportEqualsDeclaration(statement) && ts.isExternalModuleReference(statement.moduleReference) && !statement.isTypeOnly && getSymbolOfNode(statement).isReferenced && !isReferencedAliasDeclaration(statement, /*checkChildren*/ false) && !getSymbolLinks(getSymbolOfNode(statement)).constEnumReferenced; } function checkImportsForTypeOnlyConversion(sourceFile) { for (var _i = 0, _a = sourceFile.statements; _i < _a.length; _i++) { var statement = _a[_i]; if (canConvertImportDeclarationToTypeOnly(statement) || canConvertImportEqualsDeclarationToTypeOnly(statement)) { error(statement, ts.Diagnostics.This_import_is_never_used_as_a_value_and_must_use_import_type_because_importsNotUsedAsValues_is_set_to_error); } } } function checkExportSpecifier(node) { checkAliasSymbol(node); if (ts.getEmitDeclarations(compilerOptions)) { collectLinkedAliases(node.propertyName || node.name, /*setVisibility*/ true); } if (!node.parent.parent.moduleSpecifier) { var exportedName = node.propertyName || node.name; // find immediate value referenced by exported name (SymbolFlags.Alias is set so we don't chase down aliases) var symbol = resolveName(exportedName, exportedName.escapedText, 111551 /* SymbolFlags.Value */ | 788968 /* SymbolFlags.Type */ | 1920 /* SymbolFlags.Namespace */ | 2097152 /* SymbolFlags.Alias */, /*nameNotFoundMessage*/ undefined, /*nameArg*/ undefined, /*isUse*/ true); if (symbol && (symbol === undefinedSymbol || symbol === globalThisSymbol || symbol.declarations && isGlobalSourceFile(getDeclarationContainer(symbol.declarations[0])))) { error(exportedName, ts.Diagnostics.Cannot_export_0_Only_local_declarations_can_be_exported_from_a_module, ts.idText(exportedName)); } else { markExportAsReferenced(node); var target = symbol && (symbol.flags & 2097152 /* SymbolFlags.Alias */ ? resolveAlias(symbol) : symbol); if (!target || target === unknownSymbol || target.flags & 111551 /* SymbolFlags.Value */) { checkExpressionCached(node.propertyName || node.name); } } } else { if (ts.getESModuleInterop(compilerOptions) && moduleKind !== ts.ModuleKind.System && (moduleKind < ts.ModuleKind.ES2015 || ts.getSourceFileOfNode(node).impliedNodeFormat === ts.ModuleKind.CommonJS) && ts.idText(node.propertyName || node.name) === "default") { checkExternalEmitHelpers(node, 131072 /* ExternalEmitHelpers.ImportDefault */); } } } function checkExportAssignment(node) { var illegalContextMessage = node.isExportEquals ? ts.Diagnostics.An_export_assignment_must_be_at_the_top_level_of_a_file_or_module_declaration : ts.Diagnostics.A_default_export_must_be_at_the_top_level_of_a_file_or_module_declaration; if (checkGrammarModuleElementContext(node, illegalContextMessage)) { // If we hit an export assignment in an illegal context, just bail out to avoid cascading errors. return; } var container = node.parent.kind === 305 /* SyntaxKind.SourceFile */ ? node.parent : node.parent.parent; if (container.kind === 261 /* SyntaxKind.ModuleDeclaration */ && !ts.isAmbientModule(container)) { if (node.isExportEquals) { error(node, ts.Diagnostics.An_export_assignment_cannot_be_used_in_a_namespace); } else { error(node, ts.Diagnostics.A_default_export_can_only_be_used_in_an_ECMAScript_style_module); } return; } // Grammar checking if (!checkGrammarDecoratorsAndModifiers(node) && ts.hasEffectiveModifiers(node)) { grammarErrorOnFirstToken(node, ts.Diagnostics.An_export_assignment_cannot_have_modifiers); } var typeAnnotationNode = ts.getEffectiveTypeAnnotationNode(node); if (typeAnnotationNode) { checkTypeAssignableTo(checkExpressionCached(node.expression), getTypeFromTypeNode(typeAnnotationNode), node.expression); } if (node.expression.kind === 79 /* SyntaxKind.Identifier */) { var id = node.expression; var sym = resolveEntityName(id, 67108863 /* SymbolFlags.All */, /*ignoreErrors*/ true, /*dontResolveAlias*/ true, node); if (sym) { markAliasReferenced(sym, id); // If not a value, we're interpreting the identifier as a type export, along the lines of (`export { Id as default }`) var target = sym.flags & 2097152 /* SymbolFlags.Alias */ ? resolveAlias(sym) : sym; if (target === unknownSymbol || target.flags & 111551 /* SymbolFlags.Value */) { // However if it is a value, we need to check it's being used correctly checkExpressionCached(node.expression); } } else { checkExpressionCached(node.expression); // doesn't resolve, check as expression to mark as error } if (ts.getEmitDeclarations(compilerOptions)) { collectLinkedAliases(node.expression, /*setVisibility*/ true); } } else { checkExpressionCached(node.expression); } checkExternalModuleExports(container); if ((node.flags & 16777216 /* NodeFlags.Ambient */) && !ts.isEntityNameExpression(node.expression)) { grammarErrorOnNode(node.expression, ts.Diagnostics.The_expression_of_an_export_assignment_must_be_an_identifier_or_qualified_name_in_an_ambient_context); } if (node.isExportEquals && !(node.flags & 16777216 /* NodeFlags.Ambient */)) { if (moduleKind >= ts.ModuleKind.ES2015 && ts.getSourceFileOfNode(node).impliedNodeFormat !== ts.ModuleKind.CommonJS) { // export assignment is not supported in es6 modules grammarErrorOnNode(node, ts.Diagnostics.Export_assignment_cannot_be_used_when_targeting_ECMAScript_modules_Consider_using_export_default_or_another_module_format_instead); } else if (moduleKind === ts.ModuleKind.System) { // system modules does not support export assignment grammarErrorOnNode(node, ts.Diagnostics.Export_assignment_is_not_supported_when_module_flag_is_system); } } } function hasExportedMembers(moduleSymbol) { return ts.forEachEntry(moduleSymbol.exports, function (_, id) { return id !== "export="; }); } function checkExternalModuleExports(node) { var moduleSymbol = getSymbolOfNode(node); var links = getSymbolLinks(moduleSymbol); if (!links.exportsChecked) { var exportEqualsSymbol = moduleSymbol.exports.get("export="); if (exportEqualsSymbol && hasExportedMembers(moduleSymbol)) { var declaration = getDeclarationOfAliasSymbol(exportEqualsSymbol) || exportEqualsSymbol.valueDeclaration; if (declaration && !isTopLevelInExternalModuleAugmentation(declaration) && !ts.isInJSFile(declaration)) { error(declaration, ts.Diagnostics.An_export_assignment_cannot_be_used_in_a_module_with_other_exported_elements); } } // Checks for export * conflicts var exports_3 = getExportsOfModule(moduleSymbol); if (exports_3) { exports_3.forEach(function (_a, id) { var declarations = _a.declarations, flags = _a.flags; if (id === "__export") { return; } // ECMA262: 15.2.1.1 It is a Syntax Error if the ExportedNames of ModuleItemList contains any duplicate entries. // (TS Exceptions: namespaces, function overloads, enums, and interfaces) if (flags & (1920 /* SymbolFlags.Namespace */ | 384 /* SymbolFlags.Enum */)) { return; } var exportedDeclarationsCount = ts.countWhere(declarations, ts.and(isNotOverloadAndNotAccessor, ts.not(ts.isInterfaceDeclaration))); if (flags & 524288 /* SymbolFlags.TypeAlias */ && exportedDeclarationsCount <= 2) { // it is legal to merge type alias with other values // so count should be either 1 (just type alias) or 2 (type alias + merged value) return; } if (exportedDeclarationsCount > 1) { if (!isDuplicatedCommonJSExport(declarations)) { for (var _i = 0, _b = declarations; _i < _b.length; _i++) { var declaration = _b[_i]; if (isNotOverload(declaration)) { diagnostics.add(ts.createDiagnosticForNode(declaration, ts.Diagnostics.Cannot_redeclare_exported_variable_0, ts.unescapeLeadingUnderscores(id))); } } } } }); } links.exportsChecked = true; } } function isDuplicatedCommonJSExport(declarations) { return declarations && declarations.length > 1 && declarations.every(function (d) { return ts.isInJSFile(d) && ts.isAccessExpression(d) && (ts.isExportsIdentifier(d.expression) || ts.isModuleExportsAccessExpression(d.expression)); }); } function checkSourceElement(node) { if (node) { var saveCurrentNode = currentNode; currentNode = node; instantiationCount = 0; checkSourceElementWorker(node); currentNode = saveCurrentNode; } } function checkSourceElementWorker(node) { if (ts.isInJSFile(node)) { ts.forEach(node.jsDoc, function (_a) { var tags = _a.tags; return ts.forEach(tags, checkSourceElement); }); } var kind = node.kind; if (cancellationToken) { // Only bother checking on a few construct kinds. We don't want to be excessively // hitting the cancellation token on every node we check. switch (kind) { case 261 /* SyntaxKind.ModuleDeclaration */: case 257 /* SyntaxKind.ClassDeclaration */: case 258 /* SyntaxKind.InterfaceDeclaration */: case 256 /* SyntaxKind.FunctionDeclaration */: cancellationToken.throwIfCancellationRequested(); } } if (kind >= 237 /* SyntaxKind.FirstStatement */ && kind <= 253 /* SyntaxKind.LastStatement */ && node.flowNode && !isReachableFlowNode(node.flowNode)) { errorOrSuggestion(compilerOptions.allowUnreachableCode === false, node, ts.Diagnostics.Unreachable_code_detected); } switch (kind) { case 163 /* SyntaxKind.TypeParameter */: return checkTypeParameter(node); case 164 /* SyntaxKind.Parameter */: return checkParameter(node); case 167 /* SyntaxKind.PropertyDeclaration */: return checkPropertyDeclaration(node); case 166 /* SyntaxKind.PropertySignature */: return checkPropertySignature(node); case 180 /* SyntaxKind.ConstructorType */: case 179 /* SyntaxKind.FunctionType */: case 174 /* SyntaxKind.CallSignature */: case 175 /* SyntaxKind.ConstructSignature */: case 176 /* SyntaxKind.IndexSignature */: return checkSignatureDeclaration(node); case 169 /* SyntaxKind.MethodDeclaration */: case 168 /* SyntaxKind.MethodSignature */: return checkMethodDeclaration(node); case 170 /* SyntaxKind.ClassStaticBlockDeclaration */: return checkClassStaticBlockDeclaration(node); case 171 /* SyntaxKind.Constructor */: return checkConstructorDeclaration(node); case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: return checkAccessorDeclaration(node); case 178 /* SyntaxKind.TypeReference */: return checkTypeReferenceNode(node); case 177 /* SyntaxKind.TypePredicate */: return checkTypePredicate(node); case 181 /* SyntaxKind.TypeQuery */: return checkTypeQuery(node); case 182 /* SyntaxKind.TypeLiteral */: return checkTypeLiteral(node); case 183 /* SyntaxKind.ArrayType */: return checkArrayType(node); case 184 /* SyntaxKind.TupleType */: return checkTupleType(node); case 187 /* SyntaxKind.UnionType */: case 188 /* SyntaxKind.IntersectionType */: return checkUnionOrIntersectionType(node); case 191 /* SyntaxKind.ParenthesizedType */: case 185 /* SyntaxKind.OptionalType */: case 186 /* SyntaxKind.RestType */: return checkSourceElement(node.type); case 192 /* SyntaxKind.ThisType */: return checkThisType(node); case 193 /* SyntaxKind.TypeOperator */: return checkTypeOperator(node); case 189 /* SyntaxKind.ConditionalType */: return checkConditionalType(node); case 190 /* SyntaxKind.InferType */: return checkInferType(node); case 198 /* SyntaxKind.TemplateLiteralType */: return checkTemplateLiteralType(node); case 200 /* SyntaxKind.ImportType */: return checkImportType(node); case 197 /* SyntaxKind.NamedTupleMember */: return checkNamedTupleMember(node); case 328 /* SyntaxKind.JSDocAugmentsTag */: return checkJSDocAugmentsTag(node); case 329 /* SyntaxKind.JSDocImplementsTag */: return checkJSDocImplementsTag(node); case 345 /* SyntaxKind.JSDocTypedefTag */: case 338 /* SyntaxKind.JSDocCallbackTag */: case 339 /* SyntaxKind.JSDocEnumTag */: return checkJSDocTypeAliasTag(node); case 344 /* SyntaxKind.JSDocTemplateTag */: return checkJSDocTemplateTag(node); case 343 /* SyntaxKind.JSDocTypeTag */: return checkJSDocTypeTag(node); case 340 /* SyntaxKind.JSDocParameterTag */: return checkJSDocParameterTag(node); case 347 /* SyntaxKind.JSDocPropertyTag */: return checkJSDocPropertyTag(node); case 317 /* SyntaxKind.JSDocFunctionType */: checkJSDocFunctionType(node); // falls through case 315 /* SyntaxKind.JSDocNonNullableType */: case 314 /* SyntaxKind.JSDocNullableType */: case 312 /* SyntaxKind.JSDocAllType */: case 313 /* SyntaxKind.JSDocUnknownType */: case 322 /* SyntaxKind.JSDocTypeLiteral */: checkJSDocTypeIsInJsFile(node); ts.forEachChild(node, checkSourceElement); return; case 318 /* SyntaxKind.JSDocVariadicType */: checkJSDocVariadicType(node); return; case 309 /* SyntaxKind.JSDocTypeExpression */: return checkSourceElement(node.type); case 333 /* SyntaxKind.JSDocPublicTag */: case 335 /* SyntaxKind.JSDocProtectedTag */: case 334 /* SyntaxKind.JSDocPrivateTag */: return checkJSDocAccessibilityModifiers(node); case 194 /* SyntaxKind.IndexedAccessType */: return checkIndexedAccessType(node); case 195 /* SyntaxKind.MappedType */: return checkMappedType(node); case 256 /* SyntaxKind.FunctionDeclaration */: return checkFunctionDeclaration(node); case 235 /* SyntaxKind.Block */: case 262 /* SyntaxKind.ModuleBlock */: return checkBlock(node); case 237 /* SyntaxKind.VariableStatement */: return checkVariableStatement(node); case 238 /* SyntaxKind.ExpressionStatement */: return checkExpressionStatement(node); case 239 /* SyntaxKind.IfStatement */: return checkIfStatement(node); case 240 /* SyntaxKind.DoStatement */: return checkDoStatement(node); case 241 /* SyntaxKind.WhileStatement */: return checkWhileStatement(node); case 242 /* SyntaxKind.ForStatement */: return checkForStatement(node); case 243 /* SyntaxKind.ForInStatement */: return checkForInStatement(node); case 244 /* SyntaxKind.ForOfStatement */: return checkForOfStatement(node); case 245 /* SyntaxKind.ContinueStatement */: case 246 /* SyntaxKind.BreakStatement */: return checkBreakOrContinueStatement(node); case 247 /* SyntaxKind.ReturnStatement */: return checkReturnStatement(node); case 248 /* SyntaxKind.WithStatement */: return checkWithStatement(node); case 249 /* SyntaxKind.SwitchStatement */: return checkSwitchStatement(node); case 250 /* SyntaxKind.LabeledStatement */: return checkLabeledStatement(node); case 251 /* SyntaxKind.ThrowStatement */: return checkThrowStatement(node); case 252 /* SyntaxKind.TryStatement */: return checkTryStatement(node); case 254 /* SyntaxKind.VariableDeclaration */: return checkVariableDeclaration(node); case 203 /* SyntaxKind.BindingElement */: return checkBindingElement(node); case 257 /* SyntaxKind.ClassDeclaration */: return checkClassDeclaration(node); case 258 /* SyntaxKind.InterfaceDeclaration */: return checkInterfaceDeclaration(node); case 259 /* SyntaxKind.TypeAliasDeclaration */: return checkTypeAliasDeclaration(node); case 260 /* SyntaxKind.EnumDeclaration */: return checkEnumDeclaration(node); case 261 /* SyntaxKind.ModuleDeclaration */: return checkModuleDeclaration(node); case 266 /* SyntaxKind.ImportDeclaration */: return checkImportDeclaration(node); case 265 /* SyntaxKind.ImportEqualsDeclaration */: return checkImportEqualsDeclaration(node); case 272 /* SyntaxKind.ExportDeclaration */: return checkExportDeclaration(node); case 271 /* SyntaxKind.ExportAssignment */: return checkExportAssignment(node); case 236 /* SyntaxKind.EmptyStatement */: case 253 /* SyntaxKind.DebuggerStatement */: checkGrammarStatementInAmbientContext(node); return; case 276 /* SyntaxKind.MissingDeclaration */: return checkMissingDeclaration(node); } } function checkJSDocTypeIsInJsFile(node) { if (!ts.isInJSFile(node)) { grammarErrorOnNode(node, ts.Diagnostics.JSDoc_types_can_only_be_used_inside_documentation_comments); } } function checkJSDocVariadicType(node) { checkJSDocTypeIsInJsFile(node); checkSourceElement(node.type); // Only legal location is in the *last* parameter tag or last parameter of a JSDoc function. var parent = node.parent; if (ts.isParameter(parent) && ts.isJSDocFunctionType(parent.parent)) { if (ts.last(parent.parent.parameters) !== parent) { error(node, ts.Diagnostics.A_rest_parameter_must_be_last_in_a_parameter_list); } return; } if (!ts.isJSDocTypeExpression(parent)) { error(node, ts.Diagnostics.JSDoc_may_only_appear_in_the_last_parameter_of_a_signature); } var paramTag = node.parent.parent; if (!ts.isJSDocParameterTag(paramTag)) { error(node, ts.Diagnostics.JSDoc_may_only_appear_in_the_last_parameter_of_a_signature); return; } var param = ts.getParameterSymbolFromJSDoc(paramTag); if (!param) { // We will error in `checkJSDocParameterTag`. return; } var host = ts.getHostSignatureFromJSDoc(paramTag); if (!host || ts.last(host.parameters).symbol !== param) { error(node, ts.Diagnostics.A_rest_parameter_must_be_last_in_a_parameter_list); } } function getTypeFromJSDocVariadicType(node) { var type = getTypeFromTypeNode(node.type); var parent = node.parent; var paramTag = node.parent.parent; if (ts.isJSDocTypeExpression(node.parent) && ts.isJSDocParameterTag(paramTag)) { // Else we will add a diagnostic, see `checkJSDocVariadicType`. var host_1 = ts.getHostSignatureFromJSDoc(paramTag); var isCallbackTag = ts.isJSDocCallbackTag(paramTag.parent.parent); if (host_1 || isCallbackTag) { /* Only return an array type if the corresponding parameter is marked as a rest parameter, or if there are no parameters. So in the following situation we will not create an array type: /** @param {...number} a * / function f(a) {} Because `a` will just be of type `number | undefined`. A synthetic `...args` will also be added, which *will* get an array type. */ var lastParamDeclaration = isCallbackTag ? ts.lastOrUndefined(paramTag.parent.parent.typeExpression.parameters) : ts.lastOrUndefined(host_1.parameters); var symbol = ts.getParameterSymbolFromJSDoc(paramTag); if (!lastParamDeclaration || symbol && lastParamDeclaration.symbol === symbol && ts.isRestParameter(lastParamDeclaration)) { return createArrayType(type); } } } if (ts.isParameter(parent) && ts.isJSDocFunctionType(parent.parent)) { return createArrayType(type); } return addOptionality(type); } // Function and class expression bodies are checked after all statements in the enclosing body. This is // to ensure constructs like the following are permitted: // const foo = function () { // const s = foo(); // return "hello"; // } // Here, performing a full type check of the body of the function expression whilst in the process of // determining the type of foo would cause foo to be given type any because of the recursive reference. // Delaying the type check of the body ensures foo has been assigned a type. function checkNodeDeferred(node) { var enclosingFile = ts.getSourceFileOfNode(node); var links = getNodeLinks(enclosingFile); if (!(links.flags & 1 /* NodeCheckFlags.TypeChecked */)) { links.deferredNodes || (links.deferredNodes = new ts.Set()); links.deferredNodes.add(node); } } function checkDeferredNodes(context) { var links = getNodeLinks(context); if (links.deferredNodes) { links.deferredNodes.forEach(checkDeferredNode); } } function checkDeferredNode(node) { ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("check" /* tracing.Phase.Check */, "checkDeferredNode", { kind: node.kind, pos: node.pos, end: node.end, path: node.tracingPath }); var saveCurrentNode = currentNode; currentNode = node; instantiationCount = 0; switch (node.kind) { case 208 /* SyntaxKind.CallExpression */: case 209 /* SyntaxKind.NewExpression */: case 210 /* SyntaxKind.TaggedTemplateExpression */: case 165 /* SyntaxKind.Decorator */: case 280 /* SyntaxKind.JsxOpeningElement */: // These node kinds are deferred checked when overload resolution fails // To save on work, we ensure the arguments are checked just once, in // a deferred way resolveUntypedCall(node); break; case 213 /* SyntaxKind.FunctionExpression */: case 214 /* SyntaxKind.ArrowFunction */: case 169 /* SyntaxKind.MethodDeclaration */: case 168 /* SyntaxKind.MethodSignature */: checkFunctionExpressionOrObjectLiteralMethodDeferred(node); break; case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: checkAccessorDeclaration(node); break; case 226 /* SyntaxKind.ClassExpression */: checkClassExpressionDeferred(node); break; case 163 /* SyntaxKind.TypeParameter */: checkTypeParameterDeferred(node); break; case 279 /* SyntaxKind.JsxSelfClosingElement */: checkJsxSelfClosingElementDeferred(node); break; case 278 /* SyntaxKind.JsxElement */: checkJsxElementDeferred(node); break; } currentNode = saveCurrentNode; ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); } function checkSourceFile(node) { ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("check" /* tracing.Phase.Check */, "checkSourceFile", { path: node.path }, /*separateBeginAndEnd*/ true); ts.performance.mark("beforeCheck"); checkSourceFileWorker(node); ts.performance.mark("afterCheck"); ts.performance.measure("Check", "beforeCheck", "afterCheck"); ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); } function unusedIsError(kind, isAmbient) { if (isAmbient) { return false; } switch (kind) { case 0 /* UnusedKind.Local */: return !!compilerOptions.noUnusedLocals; case 1 /* UnusedKind.Parameter */: return !!compilerOptions.noUnusedParameters; default: return ts.Debug.assertNever(kind); } } function getPotentiallyUnusedIdentifiers(sourceFile) { return allPotentiallyUnusedIdentifiers.get(sourceFile.path) || ts.emptyArray; } // Fully type check a source file and collect the relevant diagnostics. function checkSourceFileWorker(node) { var links = getNodeLinks(node); if (!(links.flags & 1 /* NodeCheckFlags.TypeChecked */)) { if (ts.skipTypeChecking(node, compilerOptions, host)) { return; } // Grammar checking checkGrammarSourceFile(node); ts.clear(potentialThisCollisions); ts.clear(potentialNewTargetCollisions); ts.clear(potentialWeakMapSetCollisions); ts.clear(potentialReflectCollisions); ts.forEach(node.statements, checkSourceElement); checkSourceElement(node.endOfFileToken); checkDeferredNodes(node); if (ts.isExternalOrCommonJsModule(node)) { registerForUnusedIdentifiersCheck(node); } addLazyDiagnostic(function () { // This relies on the results of other lazy diagnostics, so must be computed after them if (!node.isDeclarationFile && (compilerOptions.noUnusedLocals || compilerOptions.noUnusedParameters)) { checkUnusedIdentifiers(getPotentiallyUnusedIdentifiers(node), function (containingNode, kind, diag) { if (!ts.containsParseError(containingNode) && unusedIsError(kind, !!(containingNode.flags & 16777216 /* NodeFlags.Ambient */))) { diagnostics.add(diag); } }); } }); if (compilerOptions.importsNotUsedAsValues === 2 /* ImportsNotUsedAsValues.Error */ && !node.isDeclarationFile && ts.isExternalModule(node)) { checkImportsForTypeOnlyConversion(node); } if (ts.isExternalOrCommonJsModule(node)) { checkExternalModuleExports(node); } if (potentialThisCollisions.length) { ts.forEach(potentialThisCollisions, checkIfThisIsCapturedInEnclosingScope); ts.clear(potentialThisCollisions); } if (potentialNewTargetCollisions.length) { ts.forEach(potentialNewTargetCollisions, checkIfNewTargetIsCapturedInEnclosingScope); ts.clear(potentialNewTargetCollisions); } if (potentialWeakMapSetCollisions.length) { ts.forEach(potentialWeakMapSetCollisions, checkWeakMapSetCollision); ts.clear(potentialWeakMapSetCollisions); } if (potentialReflectCollisions.length) { ts.forEach(potentialReflectCollisions, checkReflectCollision); ts.clear(potentialReflectCollisions); } links.flags |= 1 /* NodeCheckFlags.TypeChecked */; } } function getDiagnostics(sourceFile, ct) { try { // Record the cancellation token so it can be checked later on during checkSourceElement. // Do this in a finally block so we can ensure that it gets reset back to nothing after // this call is done. cancellationToken = ct; return getDiagnosticsWorker(sourceFile); } finally { cancellationToken = undefined; } } function ensurePendingDiagnosticWorkComplete() { // Invoke any existing lazy diagnostics to add them, clear the backlog of diagnostics for (var _i = 0, deferredDiagnosticsCallbacks_1 = deferredDiagnosticsCallbacks; _i < deferredDiagnosticsCallbacks_1.length; _i++) { var cb = deferredDiagnosticsCallbacks_1[_i]; cb(); } deferredDiagnosticsCallbacks = []; } function checkSourceFileWithEagerDiagnostics(sourceFile) { ensurePendingDiagnosticWorkComplete(); // then setup diagnostics for immediate invocation (as we are about to collect them, and // this avoids the overhead of longer-lived callbacks we don't need to allocate) // This also serves to make the shift to possibly lazy diagnostics transparent to serial command-line scenarios // (as in those cases, all the diagnostics will still be computed as the appropriate place in the tree, // thus much more likely retaining the same union ordering as before we had lazy diagnostics) var oldAddLazyDiagnostics = addLazyDiagnostic; addLazyDiagnostic = function (cb) { return cb(); }; checkSourceFile(sourceFile); addLazyDiagnostic = oldAddLazyDiagnostics; } function getDiagnosticsWorker(sourceFile) { if (sourceFile) { ensurePendingDiagnosticWorkComplete(); // Some global diagnostics are deferred until they are needed and // may not be reported in the first call to getGlobalDiagnostics. // We should catch these changes and report them. var previousGlobalDiagnostics = diagnostics.getGlobalDiagnostics(); var previousGlobalDiagnosticsSize = previousGlobalDiagnostics.length; checkSourceFileWithEagerDiagnostics(sourceFile); var semanticDiagnostics = diagnostics.getDiagnostics(sourceFile.fileName); var currentGlobalDiagnostics = diagnostics.getGlobalDiagnostics(); if (currentGlobalDiagnostics !== previousGlobalDiagnostics) { // If the arrays are not the same reference, new diagnostics were added. var deferredGlobalDiagnostics = ts.relativeComplement(previousGlobalDiagnostics, currentGlobalDiagnostics, ts.compareDiagnostics); return ts.concatenate(deferredGlobalDiagnostics, semanticDiagnostics); } else if (previousGlobalDiagnosticsSize === 0 && currentGlobalDiagnostics.length > 0) { // If the arrays are the same reference, but the length has changed, a single // new diagnostic was added as DiagnosticCollection attempts to reuse the // same array. return ts.concatenate(currentGlobalDiagnostics, semanticDiagnostics); } return semanticDiagnostics; } // Global diagnostics are always added when a file is not provided to // getDiagnostics ts.forEach(host.getSourceFiles(), checkSourceFileWithEagerDiagnostics); return diagnostics.getDiagnostics(); } function getGlobalDiagnostics() { ensurePendingDiagnosticWorkComplete(); return diagnostics.getGlobalDiagnostics(); } // Language service support function getSymbolsInScope(location, meaning) { if (location.flags & 33554432 /* NodeFlags.InWithStatement */) { // We cannot answer semantic questions within a with block, do not proceed any further return []; } var symbols = ts.createSymbolTable(); var isStaticSymbol = false; populateSymbols(); symbols.delete("this" /* InternalSymbolName.This */); // Not a symbol, a keyword return symbolsToArray(symbols); function populateSymbols() { while (location) { if (location.locals && !isGlobalSourceFile(location)) { copySymbols(location.locals, meaning); } switch (location.kind) { case 305 /* SyntaxKind.SourceFile */: if (!ts.isExternalModule(location)) break; // falls through case 261 /* SyntaxKind.ModuleDeclaration */: copyLocallyVisibleExportSymbols(getSymbolOfNode(location).exports, meaning & 2623475 /* SymbolFlags.ModuleMember */); break; case 260 /* SyntaxKind.EnumDeclaration */: copySymbols(getSymbolOfNode(location).exports, meaning & 8 /* SymbolFlags.EnumMember */); break; case 226 /* SyntaxKind.ClassExpression */: var className = location.name; if (className) { copySymbol(location.symbol, meaning); } // this fall-through is necessary because we would like to handle // type parameter inside class expression similar to how we handle it in classDeclaration and interface Declaration. // falls through case 257 /* SyntaxKind.ClassDeclaration */: case 258 /* SyntaxKind.InterfaceDeclaration */: // If we didn't come from static member of class or interface, // add the type parameters into the symbol table // (type parameters of classDeclaration/classExpression and interface are in member property of the symbol. // Note: that the memberFlags come from previous iteration. if (!isStaticSymbol) { copySymbols(getMembersOfSymbol(getSymbolOfNode(location)), meaning & 788968 /* SymbolFlags.Type */); } break; case 213 /* SyntaxKind.FunctionExpression */: var funcName = location.name; if (funcName) { copySymbol(location.symbol, meaning); } break; } if (ts.introducesArgumentsExoticObject(location)) { copySymbol(argumentsSymbol, meaning); } isStaticSymbol = ts.isStatic(location); location = location.parent; } copySymbols(globals, meaning); } /** * Copy the given symbol into symbol tables if the symbol has the given meaning * and it doesn't already existed in the symbol table * @param key a key for storing in symbol table; if undefined, use symbol.name * @param symbol the symbol to be added into symbol table * @param meaning meaning of symbol to filter by before adding to symbol table */ function copySymbol(symbol, meaning) { if (ts.getCombinedLocalAndExportSymbolFlags(symbol) & meaning) { var id = symbol.escapedName; // We will copy all symbol regardless of its reserved name because // symbolsToArray will check whether the key is a reserved name and // it will not copy symbol with reserved name to the array if (!symbols.has(id)) { symbols.set(id, symbol); } } } function copySymbols(source, meaning) { if (meaning) { source.forEach(function (symbol) { copySymbol(symbol, meaning); }); } } function copyLocallyVisibleExportSymbols(source, meaning) { if (meaning) { source.forEach(function (symbol) { // Similar condition as in `resolveNameHelper` if (!ts.getDeclarationOfKind(symbol, 275 /* SyntaxKind.ExportSpecifier */) && !ts.getDeclarationOfKind(symbol, 274 /* SyntaxKind.NamespaceExport */)) { copySymbol(symbol, meaning); } }); } } } function isTypeDeclarationName(name) { return name.kind === 79 /* SyntaxKind.Identifier */ && isTypeDeclaration(name.parent) && ts.getNameOfDeclaration(name.parent) === name; } function isTypeDeclaration(node) { switch (node.kind) { case 163 /* SyntaxKind.TypeParameter */: case 257 /* SyntaxKind.ClassDeclaration */: case 258 /* SyntaxKind.InterfaceDeclaration */: case 259 /* SyntaxKind.TypeAliasDeclaration */: case 260 /* SyntaxKind.EnumDeclaration */: case 345 /* SyntaxKind.JSDocTypedefTag */: case 338 /* SyntaxKind.JSDocCallbackTag */: case 339 /* SyntaxKind.JSDocEnumTag */: return true; case 267 /* SyntaxKind.ImportClause */: return node.isTypeOnly; case 270 /* SyntaxKind.ImportSpecifier */: case 275 /* SyntaxKind.ExportSpecifier */: return node.parent.parent.isTypeOnly; default: return false; } } // True if the given identifier is part of a type reference function isTypeReferenceIdentifier(node) { while (node.parent.kind === 161 /* SyntaxKind.QualifiedName */) { node = node.parent; } return node.parent.kind === 178 /* SyntaxKind.TypeReference */; } function isHeritageClauseElementIdentifier(node) { while (node.parent.kind === 206 /* SyntaxKind.PropertyAccessExpression */) { node = node.parent; } return node.parent.kind === 228 /* SyntaxKind.ExpressionWithTypeArguments */; } function forEachEnclosingClass(node, callback) { var result; while (true) { node = ts.getContainingClass(node); if (!node) break; if (result = callback(node)) break; } return result; } function isNodeUsedDuringClassInitialization(node) { return !!ts.findAncestor(node, function (element) { if (ts.isConstructorDeclaration(element) && ts.nodeIsPresent(element.body) || ts.isPropertyDeclaration(element)) { return true; } else if (ts.isClassLike(element) || ts.isFunctionLikeDeclaration(element)) { return "quit"; } return false; }); } function isNodeWithinClass(node, classDeclaration) { return !!forEachEnclosingClass(node, function (n) { return n === classDeclaration; }); } function getLeftSideOfImportEqualsOrExportAssignment(nodeOnRightSide) { while (nodeOnRightSide.parent.kind === 161 /* SyntaxKind.QualifiedName */) { nodeOnRightSide = nodeOnRightSide.parent; } if (nodeOnRightSide.parent.kind === 265 /* SyntaxKind.ImportEqualsDeclaration */) { return nodeOnRightSide.parent.moduleReference === nodeOnRightSide ? nodeOnRightSide.parent : undefined; } if (nodeOnRightSide.parent.kind === 271 /* SyntaxKind.ExportAssignment */) { return nodeOnRightSide.parent.expression === nodeOnRightSide ? nodeOnRightSide.parent : undefined; } return undefined; } function isInRightSideOfImportOrExportAssignment(node) { return getLeftSideOfImportEqualsOrExportAssignment(node) !== undefined; } function getSpecialPropertyAssignmentSymbolFromEntityName(entityName) { var specialPropertyAssignmentKind = ts.getAssignmentDeclarationKind(entityName.parent.parent); switch (specialPropertyAssignmentKind) { case 1 /* AssignmentDeclarationKind.ExportsProperty */: case 3 /* AssignmentDeclarationKind.PrototypeProperty */: return getSymbolOfNode(entityName.parent); case 4 /* AssignmentDeclarationKind.ThisProperty */: case 2 /* AssignmentDeclarationKind.ModuleExports */: case 5 /* AssignmentDeclarationKind.Property */: return getSymbolOfNode(entityName.parent.parent); } } function isImportTypeQualifierPart(node) { var parent = node.parent; while (ts.isQualifiedName(parent)) { node = parent; parent = parent.parent; } if (parent && parent.kind === 200 /* SyntaxKind.ImportType */ && parent.qualifier === node) { return parent; } return undefined; } function getSymbolOfNameOrPropertyAccessExpression(name) { if (ts.isDeclarationName(name)) { return getSymbolOfNode(name.parent); } if (ts.isInJSFile(name) && name.parent.kind === 206 /* SyntaxKind.PropertyAccessExpression */ && name.parent === name.parent.parent.left) { // Check if this is a special property assignment if (!ts.isPrivateIdentifier(name) && !ts.isJSDocMemberName(name)) { var specialPropertyAssignmentSymbol = getSpecialPropertyAssignmentSymbolFromEntityName(name); if (specialPropertyAssignmentSymbol) { return specialPropertyAssignmentSymbol; } } } if (name.parent.kind === 271 /* SyntaxKind.ExportAssignment */ && ts.isEntityNameExpression(name)) { // Even an entity name expression that doesn't resolve as an entityname may still typecheck as a property access expression var success = resolveEntityName(name, /*all meanings*/ 111551 /* SymbolFlags.Value */ | 788968 /* SymbolFlags.Type */ | 1920 /* SymbolFlags.Namespace */ | 2097152 /* SymbolFlags.Alias */, /*ignoreErrors*/ true); if (success && success !== unknownSymbol) { return success; } } else if (ts.isEntityName(name) && isInRightSideOfImportOrExportAssignment(name)) { // Since we already checked for ExportAssignment, this really could only be an Import var importEqualsDeclaration = ts.getAncestor(name, 265 /* SyntaxKind.ImportEqualsDeclaration */); ts.Debug.assert(importEqualsDeclaration !== undefined); return getSymbolOfPartOfRightHandSideOfImportEquals(name, /*dontResolveAlias*/ true); } if (ts.isEntityName(name)) { var possibleImportNode = isImportTypeQualifierPart(name); if (possibleImportNode) { getTypeFromTypeNode(possibleImportNode); var sym = getNodeLinks(name).resolvedSymbol; return sym === unknownSymbol ? undefined : sym; } } while (ts.isRightSideOfQualifiedNameOrPropertyAccessOrJSDocMemberName(name)) { name = name.parent; } if (isHeritageClauseElementIdentifier(name)) { var meaning = 0 /* SymbolFlags.None */; // In an interface or class, we're definitely interested in a type. if (name.parent.kind === 228 /* SyntaxKind.ExpressionWithTypeArguments */) { meaning = 788968 /* SymbolFlags.Type */; // In a class 'extends' clause we are also looking for a value. if (ts.isExpressionWithTypeArgumentsInClassExtendsClause(name.parent)) { meaning |= 111551 /* SymbolFlags.Value */; } } else { meaning = 1920 /* SymbolFlags.Namespace */; } meaning |= 2097152 /* SymbolFlags.Alias */; var entityNameSymbol = ts.isEntityNameExpression(name) ? resolveEntityName(name, meaning) : undefined; if (entityNameSymbol) { return entityNameSymbol; } } if (name.parent.kind === 340 /* SyntaxKind.JSDocParameterTag */) { return ts.getParameterSymbolFromJSDoc(name.parent); } if (name.parent.kind === 163 /* SyntaxKind.TypeParameter */ && name.parent.parent.kind === 344 /* SyntaxKind.JSDocTemplateTag */) { ts.Debug.assert(!ts.isInJSFile(name)); // Otherwise `isDeclarationName` would have been true. var typeParameter = ts.getTypeParameterFromJsDoc(name.parent); return typeParameter && typeParameter.symbol; } if (ts.isExpressionNode(name)) { if (ts.nodeIsMissing(name)) { // Missing entity name. return undefined; } var isJSDoc_1 = ts.findAncestor(name, ts.or(ts.isJSDocLinkLike, ts.isJSDocNameReference, ts.isJSDocMemberName)); var meaning = isJSDoc_1 ? 788968 /* SymbolFlags.Type */ | 1920 /* SymbolFlags.Namespace */ | 111551 /* SymbolFlags.Value */ : 111551 /* SymbolFlags.Value */; if (name.kind === 79 /* SyntaxKind.Identifier */) { if (ts.isJSXTagName(name) && isJsxIntrinsicIdentifier(name)) { var symbol = getIntrinsicTagSymbol(name.parent); return symbol === unknownSymbol ? undefined : symbol; } var result = resolveEntityName(name, meaning, /*ignoreErrors*/ false, /* dontResolveAlias */ true, ts.getHostSignatureFromJSDoc(name)); if (!result && isJSDoc_1) { var container = ts.findAncestor(name, ts.or(ts.isClassLike, ts.isInterfaceDeclaration)); if (container) { return resolveJSDocMemberName(name, getSymbolOfNode(container)); } } return result; } else if (ts.isPrivateIdentifier(name)) { return getSymbolForPrivateIdentifierExpression(name); } else if (name.kind === 206 /* SyntaxKind.PropertyAccessExpression */ || name.kind === 161 /* SyntaxKind.QualifiedName */) { var links = getNodeLinks(name); if (links.resolvedSymbol) { return links.resolvedSymbol; } if (name.kind === 206 /* SyntaxKind.PropertyAccessExpression */) { checkPropertyAccessExpression(name, 0 /* CheckMode.Normal */); } else { checkQualifiedName(name, 0 /* CheckMode.Normal */); } if (!links.resolvedSymbol && isJSDoc_1 && ts.isQualifiedName(name)) { return resolveJSDocMemberName(name); } return links.resolvedSymbol; } else if (ts.isJSDocMemberName(name)) { return resolveJSDocMemberName(name); } } else if (isTypeReferenceIdentifier(name)) { var meaning = name.parent.kind === 178 /* SyntaxKind.TypeReference */ ? 788968 /* SymbolFlags.Type */ : 1920 /* SymbolFlags.Namespace */; var symbol = resolveEntityName(name, meaning, /*ignoreErrors*/ false, /*dontResolveAlias*/ true); return symbol && symbol !== unknownSymbol ? symbol : getUnresolvedSymbolForEntityName(name); } if (name.parent.kind === 177 /* SyntaxKind.TypePredicate */) { return resolveEntityName(name, /*meaning*/ 1 /* SymbolFlags.FunctionScopedVariable */); } return undefined; } /** * Recursively resolve entity names and jsdoc instance references: * 1. K#m as K.prototype.m for a class (or other value) K * 2. K.m as K.prototype.m * 3. I.m as I.m for a type I, or any other I.m that fails to resolve in (1) or (2) * * For unqualified names, a container K may be provided as a second argument. */ function resolveJSDocMemberName(name, container) { if (ts.isEntityName(name)) { // resolve static values first var meaning = 788968 /* SymbolFlags.Type */ | 1920 /* SymbolFlags.Namespace */ | 111551 /* SymbolFlags.Value */; var symbol = resolveEntityName(name, meaning, /*ignoreErrors*/ false, /*dontResolveAlias*/ true, ts.getHostSignatureFromJSDoc(name)); if (!symbol && ts.isIdentifier(name) && container) { symbol = getMergedSymbol(getSymbol(getExportsOfSymbol(container), name.escapedText, meaning)); } if (symbol) { return symbol; } } var left = ts.isIdentifier(name) ? container : resolveJSDocMemberName(name.left); var right = ts.isIdentifier(name) ? name.escapedText : name.right.escapedText; if (left) { var proto = left.flags & 111551 /* SymbolFlags.Value */ && getPropertyOfType(getTypeOfSymbol(left), "prototype"); var t = proto ? getTypeOfSymbol(proto) : getDeclaredTypeOfSymbol(left); return getPropertyOfType(t, right); } } function getSymbolAtLocation(node, ignoreErrors) { if (node.kind === 305 /* SyntaxKind.SourceFile */) { return ts.isExternalModule(node) ? getMergedSymbol(node.symbol) : undefined; } var parent = node.parent; var grandParent = parent.parent; if (node.flags & 33554432 /* NodeFlags.InWithStatement */) { // We cannot answer semantic questions within a with block, do not proceed any further return undefined; } if (isDeclarationNameOrImportPropertyName(node)) { // This is a declaration, call getSymbolOfNode var parentSymbol = getSymbolOfNode(parent); return ts.isImportOrExportSpecifier(node.parent) && node.parent.propertyName === node ? getImmediateAliasedSymbol(parentSymbol) : parentSymbol; } else if (ts.isLiteralComputedPropertyDeclarationName(node)) { return getSymbolOfNode(parent.parent); } if (node.kind === 79 /* SyntaxKind.Identifier */) { if (isInRightSideOfImportOrExportAssignment(node)) { return getSymbolOfNameOrPropertyAccessExpression(node); } else if (parent.kind === 203 /* SyntaxKind.BindingElement */ && grandParent.kind === 201 /* SyntaxKind.ObjectBindingPattern */ && node === parent.propertyName) { var typeOfPattern = getTypeOfNode(grandParent); var propertyDeclaration = getPropertyOfType(typeOfPattern, node.escapedText); if (propertyDeclaration) { return propertyDeclaration; } } else if (ts.isMetaProperty(parent) && parent.name === node) { if (parent.keywordToken === 103 /* SyntaxKind.NewKeyword */ && ts.idText(node) === "target") { // `target` in `new.target` return checkNewTargetMetaProperty(parent).symbol; } // The `meta` in `import.meta` could be given `getTypeOfNode(parent).symbol` (the `ImportMeta` interface symbol), but // we have a fake expression type made for other reasons already, whose transient `meta` // member should more exactly be the kind of (declarationless) symbol we want. // (See #44364 and #45031 for relevant implementation PRs) if (parent.keywordToken === 100 /* SyntaxKind.ImportKeyword */ && ts.idText(node) === "meta") { return getGlobalImportMetaExpressionType().members.get("meta"); } // no other meta properties are valid syntax, thus no others should have symbols return undefined; } } switch (node.kind) { case 79 /* SyntaxKind.Identifier */: case 80 /* SyntaxKind.PrivateIdentifier */: case 206 /* SyntaxKind.PropertyAccessExpression */: case 161 /* SyntaxKind.QualifiedName */: if (!ts.isThisInTypeQuery(node)) { return getSymbolOfNameOrPropertyAccessExpression(node); } // falls through case 108 /* SyntaxKind.ThisKeyword */: var container = ts.getThisContainer(node, /*includeArrowFunctions*/ false); if (ts.isFunctionLike(container)) { var sig = getSignatureFromDeclaration(container); if (sig.thisParameter) { return sig.thisParameter; } } if (ts.isInExpressionContext(node)) { return checkExpression(node).symbol; } // falls through case 192 /* SyntaxKind.ThisType */: return getTypeFromThisTypeNode(node).symbol; case 106 /* SyntaxKind.SuperKeyword */: return checkExpression(node).symbol; case 134 /* SyntaxKind.ConstructorKeyword */: // constructor keyword for an overload, should take us to the definition if it exist var constructorDeclaration = node.parent; if (constructorDeclaration && constructorDeclaration.kind === 171 /* SyntaxKind.Constructor */) { return constructorDeclaration.parent.symbol; } return undefined; case 10 /* SyntaxKind.StringLiteral */: case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: // 1). import x = require("./mo/*gotToDefinitionHere*/d") // 2). External module name in an import declaration // 3). Dynamic import call or require in javascript // 4). type A = import("./f/*gotToDefinitionHere*/oo") if ((ts.isExternalModuleImportEqualsDeclaration(node.parent.parent) && ts.getExternalModuleImportEqualsDeclarationExpression(node.parent.parent) === node) || ((node.parent.kind === 266 /* SyntaxKind.ImportDeclaration */ || node.parent.kind === 272 /* SyntaxKind.ExportDeclaration */) && node.parent.moduleSpecifier === node) || ((ts.isInJSFile(node) && ts.isRequireCall(node.parent, /*checkArgumentIsStringLiteralLike*/ false)) || ts.isImportCall(node.parent)) || (ts.isLiteralTypeNode(node.parent) && ts.isLiteralImportTypeNode(node.parent.parent) && node.parent.parent.argument === node.parent)) { return resolveExternalModuleName(node, node, ignoreErrors); } if (ts.isCallExpression(parent) && ts.isBindableObjectDefinePropertyCall(parent) && parent.arguments[1] === node) { return getSymbolOfNode(parent); } // falls through case 8 /* SyntaxKind.NumericLiteral */: // index access var objectType = ts.isElementAccessExpression(parent) ? parent.argumentExpression === node ? getTypeOfExpression(parent.expression) : undefined : ts.isLiteralTypeNode(parent) && ts.isIndexedAccessTypeNode(grandParent) ? getTypeFromTypeNode(grandParent.objectType) : undefined; return objectType && getPropertyOfType(objectType, ts.escapeLeadingUnderscores(node.text)); case 88 /* SyntaxKind.DefaultKeyword */: case 98 /* SyntaxKind.FunctionKeyword */: case 38 /* SyntaxKind.EqualsGreaterThanToken */: case 84 /* SyntaxKind.ClassKeyword */: return getSymbolOfNode(node.parent); case 200 /* SyntaxKind.ImportType */: return ts.isLiteralImportTypeNode(node) ? getSymbolAtLocation(node.argument.literal, ignoreErrors) : undefined; case 93 /* SyntaxKind.ExportKeyword */: return ts.isExportAssignment(node.parent) ? ts.Debug.checkDefined(node.parent.symbol) : undefined; case 100 /* SyntaxKind.ImportKeyword */: case 103 /* SyntaxKind.NewKeyword */: return ts.isMetaProperty(node.parent) ? checkMetaPropertyKeyword(node.parent).symbol : undefined; case 231 /* SyntaxKind.MetaProperty */: return checkExpression(node).symbol; default: return undefined; } } function getIndexInfosAtLocation(node) { if (ts.isIdentifier(node) && ts.isPropertyAccessExpression(node.parent) && node.parent.name === node) { var keyType_1 = getLiteralTypeFromPropertyName(node); var objectType = getTypeOfExpression(node.parent.expression); var objectTypes = objectType.flags & 1048576 /* TypeFlags.Union */ ? objectType.types : [objectType]; return ts.flatMap(objectTypes, function (t) { return ts.filter(getIndexInfosOfType(t), function (info) { return isApplicableIndexType(keyType_1, info.keyType); }); }); } return undefined; } function getShorthandAssignmentValueSymbol(location) { if (location && location.kind === 297 /* SyntaxKind.ShorthandPropertyAssignment */) { return resolveEntityName(location.name, 111551 /* SymbolFlags.Value */ | 2097152 /* SymbolFlags.Alias */); } return undefined; } /** Returns the target of an export specifier without following aliases */ function getExportSpecifierLocalTargetSymbol(node) { if (ts.isExportSpecifier(node)) { return node.parent.parent.moduleSpecifier ? getExternalModuleMember(node.parent.parent, node) : resolveEntityName(node.propertyName || node.name, 111551 /* SymbolFlags.Value */ | 788968 /* SymbolFlags.Type */ | 1920 /* SymbolFlags.Namespace */ | 2097152 /* SymbolFlags.Alias */); } else { return resolveEntityName(node, 111551 /* SymbolFlags.Value */ | 788968 /* SymbolFlags.Type */ | 1920 /* SymbolFlags.Namespace */ | 2097152 /* SymbolFlags.Alias */); } } function getTypeOfNode(node) { if (ts.isSourceFile(node) && !ts.isExternalModule(node)) { return errorType; } if (node.flags & 33554432 /* NodeFlags.InWithStatement */) { // We cannot answer semantic questions within a with block, do not proceed any further return errorType; } var classDecl = ts.tryGetClassImplementingOrExtendingExpressionWithTypeArguments(node); var classType = classDecl && getDeclaredTypeOfClassOrInterface(getSymbolOfNode(classDecl.class)); if (ts.isPartOfTypeNode(node)) { var typeFromTypeNode = getTypeFromTypeNode(node); return classType ? getTypeWithThisArgument(typeFromTypeNode, classType.thisType) : typeFromTypeNode; } if (ts.isExpressionNode(node)) { return getRegularTypeOfExpression(node); } if (classType && !classDecl.isImplements) { // A SyntaxKind.ExpressionWithTypeArguments is considered a type node, except when it occurs in the // extends clause of a class. We handle that case here. var baseType = ts.firstOrUndefined(getBaseTypes(classType)); return baseType ? getTypeWithThisArgument(baseType, classType.thisType) : errorType; } if (isTypeDeclaration(node)) { // In this case, we call getSymbolOfNode instead of getSymbolAtLocation because it is a declaration var symbol = getSymbolOfNode(node); return getDeclaredTypeOfSymbol(symbol); } if (isTypeDeclarationName(node)) { var symbol = getSymbolAtLocation(node); return symbol ? getDeclaredTypeOfSymbol(symbol) : errorType; } if (ts.isDeclaration(node)) { // In this case, we call getSymbolOfNode instead of getSymbolAtLocation because it is a declaration var symbol = getSymbolOfNode(node); return symbol ? getTypeOfSymbol(symbol) : errorType; } if (isDeclarationNameOrImportPropertyName(node)) { var symbol = getSymbolAtLocation(node); if (symbol) { return getTypeOfSymbol(symbol); } return errorType; } if (ts.isBindingPattern(node)) { return getTypeForVariableLikeDeclaration(node.parent, /*includeOptionality*/ true, 0 /* CheckMode.Normal */) || errorType; } if (isInRightSideOfImportOrExportAssignment(node)) { var symbol = getSymbolAtLocation(node); if (symbol) { var declaredType = getDeclaredTypeOfSymbol(symbol); return !isErrorType(declaredType) ? declaredType : getTypeOfSymbol(symbol); } } if (ts.isMetaProperty(node.parent) && node.parent.keywordToken === node.kind) { return checkMetaPropertyKeyword(node.parent); } return errorType; } // Gets the type of object literal or array literal of destructuring assignment. // { a } from // for ( { a } of elems) { // } // [ a ] from // [a] = [ some array ...] function getTypeOfAssignmentPattern(expr) { ts.Debug.assert(expr.kind === 205 /* SyntaxKind.ObjectLiteralExpression */ || expr.kind === 204 /* SyntaxKind.ArrayLiteralExpression */); // If this is from "for of" // for ( { a } of elems) { // } if (expr.parent.kind === 244 /* SyntaxKind.ForOfStatement */) { var iteratedType = checkRightHandSideOfForOf(expr.parent); return checkDestructuringAssignment(expr, iteratedType || errorType); } // If this is from "for" initializer // for ({a } = elems[0];.....) { } if (expr.parent.kind === 221 /* SyntaxKind.BinaryExpression */) { var iteratedType = getTypeOfExpression(expr.parent.right); return checkDestructuringAssignment(expr, iteratedType || errorType); } // If this is from nested object binding pattern // for ({ skills: { primary, secondary } } = multiRobot, i = 0; i < 1; i++) { if (expr.parent.kind === 296 /* SyntaxKind.PropertyAssignment */) { var node_3 = ts.cast(expr.parent.parent, ts.isObjectLiteralExpression); var typeOfParentObjectLiteral = getTypeOfAssignmentPattern(node_3) || errorType; var propertyIndex = ts.indexOfNode(node_3.properties, expr.parent); return checkObjectLiteralDestructuringPropertyAssignment(node_3, typeOfParentObjectLiteral, propertyIndex); } // Array literal assignment - array destructuring pattern var node = ts.cast(expr.parent, ts.isArrayLiteralExpression); // [{ property1: p1, property2 }] = elems; var typeOfArrayLiteral = getTypeOfAssignmentPattern(node) || errorType; var elementType = checkIteratedTypeOrElementType(65 /* IterationUse.Destructuring */, typeOfArrayLiteral, undefinedType, expr.parent) || errorType; return checkArrayLiteralDestructuringElementAssignment(node, typeOfArrayLiteral, node.elements.indexOf(expr), elementType); } // Gets the property symbol corresponding to the property in destructuring assignment // 'property1' from // for ( { property1: a } of elems) { // } // 'property1' at location 'a' from: // [a] = [ property1, property2 ] function getPropertySymbolOfDestructuringAssignment(location) { // Get the type of the object or array literal and then look for property of given name in the type var typeOfObjectLiteral = getTypeOfAssignmentPattern(ts.cast(location.parent.parent, ts.isAssignmentPattern)); return typeOfObjectLiteral && getPropertyOfType(typeOfObjectLiteral, location.escapedText); } function getRegularTypeOfExpression(expr) { if (ts.isRightSideOfQualifiedNameOrPropertyAccess(expr)) { expr = expr.parent; } return getRegularTypeOfLiteralType(getTypeOfExpression(expr)); } /** * Gets either the static or instance type of a class element, based on * whether the element is declared as "static". */ function getParentTypeOfClassElement(node) { var classSymbol = getSymbolOfNode(node.parent); return ts.isStatic(node) ? getTypeOfSymbol(classSymbol) : getDeclaredTypeOfSymbol(classSymbol); } function getClassElementPropertyKeyType(element) { var name = element.name; switch (name.kind) { case 79 /* SyntaxKind.Identifier */: return getStringLiteralType(ts.idText(name)); case 8 /* SyntaxKind.NumericLiteral */: case 10 /* SyntaxKind.StringLiteral */: return getStringLiteralType(name.text); case 162 /* SyntaxKind.ComputedPropertyName */: var nameType = checkComputedPropertyName(name); return isTypeAssignableToKind(nameType, 12288 /* TypeFlags.ESSymbolLike */) ? nameType : stringType; default: return ts.Debug.fail("Unsupported property name."); } } // Return the list of properties of the given type, augmented with properties from Function // if the type has call or construct signatures function getAugmentedPropertiesOfType(type) { type = getApparentType(type); var propsByName = ts.createSymbolTable(getPropertiesOfType(type)); var functionType = getSignaturesOfType(type, 0 /* SignatureKind.Call */).length ? globalCallableFunctionType : getSignaturesOfType(type, 1 /* SignatureKind.Construct */).length ? globalNewableFunctionType : undefined; if (functionType) { ts.forEach(getPropertiesOfType(functionType), function (p) { if (!propsByName.has(p.escapedName)) { propsByName.set(p.escapedName, p); } }); } return getNamedMembers(propsByName); } function typeHasCallOrConstructSignatures(type) { return ts.typeHasCallOrConstructSignatures(type, checker); } function getRootSymbols(symbol) { var roots = getImmediateRootSymbols(symbol); return roots ? ts.flatMap(roots, getRootSymbols) : [symbol]; } function getImmediateRootSymbols(symbol) { if (ts.getCheckFlags(symbol) & 6 /* CheckFlags.Synthetic */) { return ts.mapDefined(getSymbolLinks(symbol).containingType.types, function (type) { return getPropertyOfType(type, symbol.escapedName); }); } else if (symbol.flags & 33554432 /* SymbolFlags.Transient */) { var _a = symbol, leftSpread = _a.leftSpread, rightSpread = _a.rightSpread, syntheticOrigin = _a.syntheticOrigin; return leftSpread ? [leftSpread, rightSpread] : syntheticOrigin ? [syntheticOrigin] : ts.singleElementArray(tryGetTarget(symbol)); } return undefined; } function tryGetTarget(symbol) { var target; var next = symbol; while (next = getSymbolLinks(next).target) { target = next; } return target; } // Emitter support function isArgumentsLocalBinding(nodeIn) { // Note: does not handle isShorthandPropertyAssignment (and probably a few more) if (ts.isGeneratedIdentifier(nodeIn)) return false; var node = ts.getParseTreeNode(nodeIn, ts.isIdentifier); if (!node) return false; var parent = node.parent; if (!parent) return false; var isPropertyName = ((ts.isPropertyAccessExpression(parent) || ts.isPropertyAssignment(parent)) && parent.name === node); return !isPropertyName && getReferencedValueSymbol(node) === argumentsSymbol; } function moduleExportsSomeValue(moduleReferenceExpression) { var moduleSymbol = resolveExternalModuleName(moduleReferenceExpression.parent, moduleReferenceExpression); if (!moduleSymbol || ts.isShorthandAmbientModuleSymbol(moduleSymbol)) { // If the module is not found or is shorthand, assume that it may export a value. return true; } var hasExportAssignment = hasExportAssignmentSymbol(moduleSymbol); // if module has export assignment then 'resolveExternalModuleSymbol' will return resolved symbol for export assignment // otherwise it will return moduleSymbol itself moduleSymbol = resolveExternalModuleSymbol(moduleSymbol); var symbolLinks = getSymbolLinks(moduleSymbol); if (symbolLinks.exportsSomeValue === undefined) { // for export assignments - check if resolved symbol for RHS is itself a value // otherwise - check if at least one export is value symbolLinks.exportsSomeValue = hasExportAssignment ? !!(moduleSymbol.flags & 111551 /* SymbolFlags.Value */) : ts.forEachEntry(getExportsOfModule(moduleSymbol), isValue); } return symbolLinks.exportsSomeValue; function isValue(s) { s = resolveSymbol(s); return s && !!(s.flags & 111551 /* SymbolFlags.Value */); } } function isNameOfModuleOrEnumDeclaration(node) { return ts.isModuleOrEnumDeclaration(node.parent) && node === node.parent.name; } // When resolved as an expression identifier, if the given node references an exported entity, return the declaration // node of the exported entity's container. Otherwise, return undefined. function getReferencedExportContainer(nodeIn, prefixLocals) { var _a; var node = ts.getParseTreeNode(nodeIn, ts.isIdentifier); if (node) { // When resolving the export container for the name of a module or enum // declaration, we need to start resolution at the declaration's container. // Otherwise, we could incorrectly resolve the export container as the // declaration if it contains an exported member with the same name. var symbol = getReferencedValueSymbol(node, /*startInDeclarationContainer*/ isNameOfModuleOrEnumDeclaration(node)); if (symbol) { if (symbol.flags & 1048576 /* SymbolFlags.ExportValue */) { // If we reference an exported entity within the same module declaration, then whether // we prefix depends on the kind of entity. SymbolFlags.ExportHasLocal encompasses all the // kinds that we do NOT prefix. var exportSymbol = getMergedSymbol(symbol.exportSymbol); if (!prefixLocals && exportSymbol.flags & 944 /* SymbolFlags.ExportHasLocal */ && !(exportSymbol.flags & 3 /* SymbolFlags.Variable */)) { return undefined; } symbol = exportSymbol; } var parentSymbol_1 = getParentOfSymbol(symbol); if (parentSymbol_1) { if (parentSymbol_1.flags & 512 /* SymbolFlags.ValueModule */ && ((_a = parentSymbol_1.valueDeclaration) === null || _a === void 0 ? void 0 : _a.kind) === 305 /* SyntaxKind.SourceFile */) { var symbolFile = parentSymbol_1.valueDeclaration; var referenceFile = ts.getSourceFileOfNode(node); // If `node` accesses an export and that export isn't in the same file, then symbol is a namespace export, so return undefined. var symbolIsUmdExport = symbolFile !== referenceFile; return symbolIsUmdExport ? undefined : symbolFile; } return ts.findAncestor(node.parent, function (n) { return ts.isModuleOrEnumDeclaration(n) && getSymbolOfNode(n) === parentSymbol_1; }); } } } } // When resolved as an expression identifier, if the given node references an import, return the declaration of // that import. Otherwise, return undefined. function getReferencedImportDeclaration(nodeIn) { if (nodeIn.generatedImportReference) { return nodeIn.generatedImportReference; } var node = ts.getParseTreeNode(nodeIn, ts.isIdentifier); if (node) { var symbol = getReferencedValueSymbol(node); // We should only get the declaration of an alias if there isn't a local value // declaration for the symbol if (isNonLocalAlias(symbol, /*excludes*/ 111551 /* SymbolFlags.Value */) && !getTypeOnlyAliasDeclaration(symbol)) { return getDeclarationOfAliasSymbol(symbol); } } return undefined; } function isSymbolOfDestructuredElementOfCatchBinding(symbol) { return symbol.valueDeclaration && ts.isBindingElement(symbol.valueDeclaration) && ts.walkUpBindingElementsAndPatterns(symbol.valueDeclaration).parent.kind === 292 /* SyntaxKind.CatchClause */; } function isSymbolOfDeclarationWithCollidingName(symbol) { if (symbol.flags & 418 /* SymbolFlags.BlockScoped */ && symbol.valueDeclaration && !ts.isSourceFile(symbol.valueDeclaration)) { var links = getSymbolLinks(symbol); if (links.isDeclarationWithCollidingName === undefined) { var container = ts.getEnclosingBlockScopeContainer(symbol.valueDeclaration); if (ts.isStatementWithLocals(container) || isSymbolOfDestructuredElementOfCatchBinding(symbol)) { var nodeLinks_1 = getNodeLinks(symbol.valueDeclaration); if (resolveName(container.parent, symbol.escapedName, 111551 /* SymbolFlags.Value */, /*nameNotFoundMessage*/ undefined, /*nameArg*/ undefined, /*isUse*/ false)) { // redeclaration - always should be renamed links.isDeclarationWithCollidingName = true; } else if (nodeLinks_1.flags & 262144 /* NodeCheckFlags.CapturedBlockScopedBinding */) { // binding is captured in the function // should be renamed if: // - binding is not top level - top level bindings never collide with anything // AND // - binding is not declared in loop, should be renamed to avoid name reuse across siblings // let a, b // { let x = 1; a = () => x; } // { let x = 100; b = () => x; } // console.log(a()); // should print '1' // console.log(b()); // should print '100' // OR // - binding is declared inside loop but not in inside initializer of iteration statement or directly inside loop body // * variables from initializer are passed to rewritten loop body as parameters so they are not captured directly // * variables that are declared immediately in loop body will become top level variable after loop is rewritten and thus // they will not collide with anything var isDeclaredInLoop = nodeLinks_1.flags & 524288 /* NodeCheckFlags.BlockScopedBindingInLoop */; var inLoopInitializer = ts.isIterationStatement(container, /*lookInLabeledStatements*/ false); var inLoopBodyBlock = container.kind === 235 /* SyntaxKind.Block */ && ts.isIterationStatement(container.parent, /*lookInLabeledStatements*/ false); links.isDeclarationWithCollidingName = !ts.isBlockScopedContainerTopLevel(container) && (!isDeclaredInLoop || (!inLoopInitializer && !inLoopBodyBlock)); } else { links.isDeclarationWithCollidingName = false; } } } return links.isDeclarationWithCollidingName; } return false; } // When resolved as an expression identifier, if the given node references a nested block scoped entity with // a name that either hides an existing name or might hide it when compiled downlevel, // return the declaration of that entity. Otherwise, return undefined. function getReferencedDeclarationWithCollidingName(nodeIn) { if (!ts.isGeneratedIdentifier(nodeIn)) { var node = ts.getParseTreeNode(nodeIn, ts.isIdentifier); if (node) { var symbol = getReferencedValueSymbol(node); if (symbol && isSymbolOfDeclarationWithCollidingName(symbol)) { return symbol.valueDeclaration; } } } return undefined; } // Return true if the given node is a declaration of a nested block scoped entity with a name that either hides an // existing name or might hide a name when compiled downlevel function isDeclarationWithCollidingName(nodeIn) { var node = ts.getParseTreeNode(nodeIn, ts.isDeclaration); if (node) { var symbol = getSymbolOfNode(node); if (symbol) { return isSymbolOfDeclarationWithCollidingName(symbol); } } return false; } function isValueAliasDeclaration(node) { switch (node.kind) { case 265 /* SyntaxKind.ImportEqualsDeclaration */: return isAliasResolvedToValue(getSymbolOfNode(node)); case 267 /* SyntaxKind.ImportClause */: case 268 /* SyntaxKind.NamespaceImport */: case 270 /* SyntaxKind.ImportSpecifier */: case 275 /* SyntaxKind.ExportSpecifier */: var symbol = getSymbolOfNode(node); return !!symbol && isAliasResolvedToValue(symbol) && !getTypeOnlyAliasDeclaration(symbol); case 272 /* SyntaxKind.ExportDeclaration */: var exportClause = node.exportClause; return !!exportClause && (ts.isNamespaceExport(exportClause) || ts.some(exportClause.elements, isValueAliasDeclaration)); case 271 /* SyntaxKind.ExportAssignment */: return node.expression && node.expression.kind === 79 /* SyntaxKind.Identifier */ ? isAliasResolvedToValue(getSymbolOfNode(node)) : true; } return false; } function isTopLevelValueImportEqualsWithEntityName(nodeIn) { var node = ts.getParseTreeNode(nodeIn, ts.isImportEqualsDeclaration); if (node === undefined || node.parent.kind !== 305 /* SyntaxKind.SourceFile */ || !ts.isInternalModuleImportEqualsDeclaration(node)) { // parent is not source file or it is not reference to internal module return false; } var isValue = isAliasResolvedToValue(getSymbolOfNode(node)); return isValue && node.moduleReference && !ts.nodeIsMissing(node.moduleReference); } function isAliasResolvedToValue(symbol) { if (!symbol) { return false; } var target = getExportSymbolOfValueSymbolIfExported(resolveAlias(symbol)); if (target === unknownSymbol) { return true; } // const enums and modules that contain only const enums are not considered values from the emit perspective // unless 'preserveConstEnums' option is set to true return !!(target.flags & 111551 /* SymbolFlags.Value */) && (ts.shouldPreserveConstEnums(compilerOptions) || !isConstEnumOrConstEnumOnlyModule(target)); } function isConstEnumOrConstEnumOnlyModule(s) { return isConstEnumSymbol(s) || !!s.constEnumOnlyModule; } function isReferencedAliasDeclaration(node, checkChildren) { if (isAliasSymbolDeclaration(node)) { var symbol = getSymbolOfNode(node); var links = symbol && getSymbolLinks(symbol); if (links === null || links === void 0 ? void 0 : links.referenced) { return true; } var target = getSymbolLinks(symbol).aliasTarget; // TODO: GH#18217 if (target && ts.getEffectiveModifierFlags(node) & 1 /* ModifierFlags.Export */ && target.flags & 111551 /* SymbolFlags.Value */ && (ts.shouldPreserveConstEnums(compilerOptions) || !isConstEnumOrConstEnumOnlyModule(target))) { // An `export import ... =` of a value symbol is always considered referenced return true; } } if (checkChildren) { return !!ts.forEachChild(node, function (node) { return isReferencedAliasDeclaration(node, checkChildren); }); } return false; } function isImplementationOfOverload(node) { if (ts.nodeIsPresent(node.body)) { if (ts.isGetAccessor(node) || ts.isSetAccessor(node)) return false; // Get or set accessors can never be overload implementations, but can have up to 2 signatures var symbol = getSymbolOfNode(node); var signaturesOfSymbol = getSignaturesOfSymbol(symbol); // If this function body corresponds to function with multiple signature, it is implementation of overload // e.g.: function foo(a: string): string; // function foo(a: number): number; // function foo(a: any) { // This is implementation of the overloads // return a; // } return signaturesOfSymbol.length > 1 || // If there is single signature for the symbol, it is overload if that signature isn't coming from the node // e.g.: function foo(a: string): string; // function foo(a: any) { // This is implementation of the overloads // return a; // } (signaturesOfSymbol.length === 1 && signaturesOfSymbol[0].declaration !== node); } return false; } function isRequiredInitializedParameter(parameter) { return !!strictNullChecks && !isOptionalParameter(parameter) && !ts.isJSDocParameterTag(parameter) && !!parameter.initializer && !ts.hasSyntacticModifier(parameter, 16476 /* ModifierFlags.ParameterPropertyModifier */); } function isOptionalUninitializedParameterProperty(parameter) { return strictNullChecks && isOptionalParameter(parameter) && !parameter.initializer && ts.hasSyntacticModifier(parameter, 16476 /* ModifierFlags.ParameterPropertyModifier */); } function isExpandoFunctionDeclaration(node) { var declaration = ts.getParseTreeNode(node, ts.isFunctionDeclaration); if (!declaration) { return false; } var symbol = getSymbolOfNode(declaration); if (!symbol || !(symbol.flags & 16 /* SymbolFlags.Function */)) { return false; } return !!ts.forEachEntry(getExportsOfSymbol(symbol), function (p) { return p.flags & 111551 /* SymbolFlags.Value */ && p.valueDeclaration && ts.isPropertyAccessExpression(p.valueDeclaration); }); } function getPropertiesOfContainerFunction(node) { var declaration = ts.getParseTreeNode(node, ts.isFunctionDeclaration); if (!declaration) { return ts.emptyArray; } var symbol = getSymbolOfNode(declaration); return symbol && getPropertiesOfType(getTypeOfSymbol(symbol)) || ts.emptyArray; } function getNodeCheckFlags(node) { var _a; var nodeId = node.id || 0; if (nodeId < 0 || nodeId >= nodeLinks.length) return 0; return ((_a = nodeLinks[nodeId]) === null || _a === void 0 ? void 0 : _a.flags) || 0; } function getEnumMemberValue(node) { computeEnumMemberValues(node.parent); return getNodeLinks(node).enumMemberValue; } function canHaveConstantValue(node) { switch (node.kind) { case 299 /* SyntaxKind.EnumMember */: case 206 /* SyntaxKind.PropertyAccessExpression */: case 207 /* SyntaxKind.ElementAccessExpression */: return true; } return false; } function getConstantValue(node) { if (node.kind === 299 /* SyntaxKind.EnumMember */) { return getEnumMemberValue(node); } var symbol = getNodeLinks(node).resolvedSymbol; if (symbol && (symbol.flags & 8 /* SymbolFlags.EnumMember */)) { // inline property\index accesses only for const enums var member = symbol.valueDeclaration; if (ts.isEnumConst(member.parent)) { return getEnumMemberValue(member); } } return undefined; } function isFunctionType(type) { return !!(type.flags & 524288 /* TypeFlags.Object */) && getSignaturesOfType(type, 0 /* SignatureKind.Call */).length > 0; } function getTypeReferenceSerializationKind(typeNameIn, location) { var _a, _b; // ensure both `typeName` and `location` are parse tree nodes. var typeName = ts.getParseTreeNode(typeNameIn, ts.isEntityName); if (!typeName) return ts.TypeReferenceSerializationKind.Unknown; if (location) { location = ts.getParseTreeNode(location); if (!location) return ts.TypeReferenceSerializationKind.Unknown; } // Resolve the symbol as a value to ensure the type can be reached at runtime during emit. var isTypeOnly = false; if (ts.isQualifiedName(typeName)) { var rootValueSymbol = resolveEntityName(ts.getFirstIdentifier(typeName), 111551 /* SymbolFlags.Value */, /*ignoreErrors*/ true, /*dontResolveAlias*/ true, location); isTypeOnly = !!((_a = rootValueSymbol === null || rootValueSymbol === void 0 ? void 0 : rootValueSymbol.declarations) === null || _a === void 0 ? void 0 : _a.every(ts.isTypeOnlyImportOrExportDeclaration)); } var valueSymbol = resolveEntityName(typeName, 111551 /* SymbolFlags.Value */, /*ignoreErrors*/ true, /*dontResolveAlias*/ true, location); var resolvedSymbol = valueSymbol && valueSymbol.flags & 2097152 /* SymbolFlags.Alias */ ? resolveAlias(valueSymbol) : valueSymbol; isTypeOnly || (isTypeOnly = !!((_b = valueSymbol === null || valueSymbol === void 0 ? void 0 : valueSymbol.declarations) === null || _b === void 0 ? void 0 : _b.every(ts.isTypeOnlyImportOrExportDeclaration))); // Resolve the symbol as a type so that we can provide a more useful hint for the type serializer. var typeSymbol = resolveEntityName(typeName, 788968 /* SymbolFlags.Type */, /*ignoreErrors*/ true, /*dontResolveAlias*/ false, location); if (resolvedSymbol && resolvedSymbol === typeSymbol) { var globalPromiseSymbol = getGlobalPromiseConstructorSymbol(/*reportErrors*/ false); if (globalPromiseSymbol && resolvedSymbol === globalPromiseSymbol) { return ts.TypeReferenceSerializationKind.Promise; } var constructorType = getTypeOfSymbol(resolvedSymbol); if (constructorType && isConstructorType(constructorType)) { return isTypeOnly ? ts.TypeReferenceSerializationKind.TypeWithCallSignature : ts.TypeReferenceSerializationKind.TypeWithConstructSignatureAndValue; } } // We might not be able to resolve type symbol so use unknown type in that case (eg error case) if (!typeSymbol) { return isTypeOnly ? ts.TypeReferenceSerializationKind.ObjectType : ts.TypeReferenceSerializationKind.Unknown; } var type = getDeclaredTypeOfSymbol(typeSymbol); if (isErrorType(type)) { return isTypeOnly ? ts.TypeReferenceSerializationKind.ObjectType : ts.TypeReferenceSerializationKind.Unknown; } else if (type.flags & 3 /* TypeFlags.AnyOrUnknown */) { return ts.TypeReferenceSerializationKind.ObjectType; } else if (isTypeAssignableToKind(type, 16384 /* TypeFlags.Void */ | 98304 /* TypeFlags.Nullable */ | 131072 /* TypeFlags.Never */)) { return ts.TypeReferenceSerializationKind.VoidNullableOrNeverType; } else if (isTypeAssignableToKind(type, 528 /* TypeFlags.BooleanLike */)) { return ts.TypeReferenceSerializationKind.BooleanType; } else if (isTypeAssignableToKind(type, 296 /* TypeFlags.NumberLike */)) { return ts.TypeReferenceSerializationKind.NumberLikeType; } else if (isTypeAssignableToKind(type, 2112 /* TypeFlags.BigIntLike */)) { return ts.TypeReferenceSerializationKind.BigIntLikeType; } else if (isTypeAssignableToKind(type, 402653316 /* TypeFlags.StringLike */)) { return ts.TypeReferenceSerializationKind.StringLikeType; } else if (isTupleType(type)) { return ts.TypeReferenceSerializationKind.ArrayLikeType; } else if (isTypeAssignableToKind(type, 12288 /* TypeFlags.ESSymbolLike */)) { return ts.TypeReferenceSerializationKind.ESSymbolType; } else if (isFunctionType(type)) { return ts.TypeReferenceSerializationKind.TypeWithCallSignature; } else if (isArrayType(type)) { return ts.TypeReferenceSerializationKind.ArrayLikeType; } else { return ts.TypeReferenceSerializationKind.ObjectType; } } function createTypeOfDeclaration(declarationIn, enclosingDeclaration, flags, tracker, addUndefined) { var declaration = ts.getParseTreeNode(declarationIn, ts.isVariableLikeOrAccessor); if (!declaration) { return ts.factory.createToken(130 /* SyntaxKind.AnyKeyword */); } // Get type of the symbol if this is the valid symbol otherwise get type at location var symbol = getSymbolOfNode(declaration); var type = symbol && !(symbol.flags & (2048 /* SymbolFlags.TypeLiteral */ | 131072 /* SymbolFlags.Signature */)) ? getWidenedLiteralType(getTypeOfSymbol(symbol)) : errorType; if (type.flags & 8192 /* TypeFlags.UniqueESSymbol */ && type.symbol === symbol) { flags |= 1048576 /* NodeBuilderFlags.AllowUniqueESSymbolType */; } if (addUndefined) { type = getOptionalType(type); } return nodeBuilder.typeToTypeNode(type, enclosingDeclaration, flags | 1024 /* NodeBuilderFlags.MultilineObjectLiterals */, tracker); } function createReturnTypeOfSignatureDeclaration(signatureDeclarationIn, enclosingDeclaration, flags, tracker) { var signatureDeclaration = ts.getParseTreeNode(signatureDeclarationIn, ts.isFunctionLike); if (!signatureDeclaration) { return ts.factory.createToken(130 /* SyntaxKind.AnyKeyword */); } var signature = getSignatureFromDeclaration(signatureDeclaration); return nodeBuilder.typeToTypeNode(getReturnTypeOfSignature(signature), enclosingDeclaration, flags | 1024 /* NodeBuilderFlags.MultilineObjectLiterals */, tracker); } function createTypeOfExpression(exprIn, enclosingDeclaration, flags, tracker) { var expr = ts.getParseTreeNode(exprIn, ts.isExpression); if (!expr) { return ts.factory.createToken(130 /* SyntaxKind.AnyKeyword */); } var type = getWidenedType(getRegularTypeOfExpression(expr)); return nodeBuilder.typeToTypeNode(type, enclosingDeclaration, flags | 1024 /* NodeBuilderFlags.MultilineObjectLiterals */, tracker); } function hasGlobalName(name) { return globals.has(ts.escapeLeadingUnderscores(name)); } function getReferencedValueSymbol(reference, startInDeclarationContainer) { var resolvedSymbol = getNodeLinks(reference).resolvedSymbol; if (resolvedSymbol) { return resolvedSymbol; } var location = reference; if (startInDeclarationContainer) { // When resolving the name of a declaration as a value, we need to start resolution // at a point outside of the declaration. var parent = reference.parent; if (ts.isDeclaration(parent) && reference === parent.name) { location = getDeclarationContainer(parent); } } return resolveName(location, reference.escapedText, 111551 /* SymbolFlags.Value */ | 1048576 /* SymbolFlags.ExportValue */ | 2097152 /* SymbolFlags.Alias */, /*nodeNotFoundMessage*/ undefined, /*nameArg*/ undefined, /*isUse*/ true); } function getReferencedValueDeclaration(referenceIn) { if (!ts.isGeneratedIdentifier(referenceIn)) { var reference = ts.getParseTreeNode(referenceIn, ts.isIdentifier); if (reference) { var symbol = getReferencedValueSymbol(reference); if (symbol) { return getExportSymbolOfValueSymbolIfExported(symbol).valueDeclaration; } } } return undefined; } function isLiteralConstDeclaration(node) { if (ts.isDeclarationReadonly(node) || ts.isVariableDeclaration(node) && ts.isVarConst(node)) { return isFreshLiteralType(getTypeOfSymbol(getSymbolOfNode(node))); } return false; } function literalTypeToNode(type, enclosing, tracker) { var enumResult = type.flags & 1024 /* TypeFlags.EnumLiteral */ ? nodeBuilder.symbolToExpression(type.symbol, 111551 /* SymbolFlags.Value */, enclosing, /*flags*/ undefined, tracker) : type === trueType ? ts.factory.createTrue() : type === falseType && ts.factory.createFalse(); if (enumResult) return enumResult; var literalValue = type.value; return typeof literalValue === "object" ? ts.factory.createBigIntLiteral(literalValue) : typeof literalValue === "number" ? ts.factory.createNumericLiteral(literalValue) : ts.factory.createStringLiteral(literalValue); } function createLiteralConstValue(node, tracker) { var type = getTypeOfSymbol(getSymbolOfNode(node)); return literalTypeToNode(type, node, tracker); } function getJsxFactoryEntity(location) { return location ? (getJsxNamespace(location), (ts.getSourceFileOfNode(location).localJsxFactory || _jsxFactoryEntity)) : _jsxFactoryEntity; } function getJsxFragmentFactoryEntity(location) { if (location) { var file = ts.getSourceFileOfNode(location); if (file) { if (file.localJsxFragmentFactory) { return file.localJsxFragmentFactory; } var jsxFragPragmas = file.pragmas.get("jsxfrag"); var jsxFragPragma = ts.isArray(jsxFragPragmas) ? jsxFragPragmas[0] : jsxFragPragmas; if (jsxFragPragma) { file.localJsxFragmentFactory = ts.parseIsolatedEntityName(jsxFragPragma.arguments.factory, languageVersion); return file.localJsxFragmentFactory; } } } if (compilerOptions.jsxFragmentFactory) { return ts.parseIsolatedEntityName(compilerOptions.jsxFragmentFactory, languageVersion); } } function createResolver() { // this variable and functions that use it are deliberately moved here from the outer scope // to avoid scope pollution var resolvedTypeReferenceDirectives = host.getResolvedTypeReferenceDirectives(); var fileToDirective; if (resolvedTypeReferenceDirectives) { // populate reverse mapping: file path -> type reference directive that was resolved to this file fileToDirective = new ts.Map(); resolvedTypeReferenceDirectives.forEach(function (resolvedDirective, key, mode) { if (!resolvedDirective || !resolvedDirective.resolvedFileName) { return; } var file = host.getSourceFile(resolvedDirective.resolvedFileName); if (file) { // Add the transitive closure of path references loaded by this file (as long as they are not) // part of an existing type reference. addReferencedFilesToTypeDirective(file, key, mode); } }); } return { getReferencedExportContainer: getReferencedExportContainer, getReferencedImportDeclaration: getReferencedImportDeclaration, getReferencedDeclarationWithCollidingName: getReferencedDeclarationWithCollidingName, isDeclarationWithCollidingName: isDeclarationWithCollidingName, isValueAliasDeclaration: function (nodeIn) { var node = ts.getParseTreeNode(nodeIn); // Synthesized nodes are always treated like values. return node ? isValueAliasDeclaration(node) : true; }, hasGlobalName: hasGlobalName, isReferencedAliasDeclaration: function (nodeIn, checkChildren) { var node = ts.getParseTreeNode(nodeIn); // Synthesized nodes are always treated as referenced. return node ? isReferencedAliasDeclaration(node, checkChildren) : true; }, getNodeCheckFlags: function (nodeIn) { var node = ts.getParseTreeNode(nodeIn); return node ? getNodeCheckFlags(node) : 0; }, isTopLevelValueImportEqualsWithEntityName: isTopLevelValueImportEqualsWithEntityName, isDeclarationVisible: isDeclarationVisible, isImplementationOfOverload: isImplementationOfOverload, isRequiredInitializedParameter: isRequiredInitializedParameter, isOptionalUninitializedParameterProperty: isOptionalUninitializedParameterProperty, isExpandoFunctionDeclaration: isExpandoFunctionDeclaration, getPropertiesOfContainerFunction: getPropertiesOfContainerFunction, createTypeOfDeclaration: createTypeOfDeclaration, createReturnTypeOfSignatureDeclaration: createReturnTypeOfSignatureDeclaration, createTypeOfExpression: createTypeOfExpression, createLiteralConstValue: createLiteralConstValue, isSymbolAccessible: isSymbolAccessible, isEntityNameVisible: isEntityNameVisible, getConstantValue: function (nodeIn) { var node = ts.getParseTreeNode(nodeIn, canHaveConstantValue); return node ? getConstantValue(node) : undefined; }, collectLinkedAliases: collectLinkedAliases, getReferencedValueDeclaration: getReferencedValueDeclaration, getTypeReferenceSerializationKind: getTypeReferenceSerializationKind, isOptionalParameter: isOptionalParameter, moduleExportsSomeValue: moduleExportsSomeValue, isArgumentsLocalBinding: isArgumentsLocalBinding, getExternalModuleFileFromDeclaration: function (nodeIn) { var node = ts.getParseTreeNode(nodeIn, ts.hasPossibleExternalModuleReference); return node && getExternalModuleFileFromDeclaration(node); }, getTypeReferenceDirectivesForEntityName: getTypeReferenceDirectivesForEntityName, getTypeReferenceDirectivesForSymbol: getTypeReferenceDirectivesForSymbol, isLiteralConstDeclaration: isLiteralConstDeclaration, isLateBound: function (nodeIn) { var node = ts.getParseTreeNode(nodeIn, ts.isDeclaration); var symbol = node && getSymbolOfNode(node); return !!(symbol && ts.getCheckFlags(symbol) & 4096 /* CheckFlags.Late */); }, getJsxFactoryEntity: getJsxFactoryEntity, getJsxFragmentFactoryEntity: getJsxFragmentFactoryEntity, getAllAccessorDeclarations: function (accessor) { accessor = ts.getParseTreeNode(accessor, ts.isGetOrSetAccessorDeclaration); // TODO: GH#18217 var otherKind = accessor.kind === 173 /* SyntaxKind.SetAccessor */ ? 172 /* SyntaxKind.GetAccessor */ : 173 /* SyntaxKind.SetAccessor */; var otherAccessor = ts.getDeclarationOfKind(getSymbolOfNode(accessor), otherKind); var firstAccessor = otherAccessor && (otherAccessor.pos < accessor.pos) ? otherAccessor : accessor; var secondAccessor = otherAccessor && (otherAccessor.pos < accessor.pos) ? accessor : otherAccessor; var setAccessor = accessor.kind === 173 /* SyntaxKind.SetAccessor */ ? accessor : otherAccessor; var getAccessor = accessor.kind === 172 /* SyntaxKind.GetAccessor */ ? accessor : otherAccessor; return { firstAccessor: firstAccessor, secondAccessor: secondAccessor, setAccessor: setAccessor, getAccessor: getAccessor }; }, getSymbolOfExternalModuleSpecifier: function (moduleName) { return resolveExternalModuleNameWorker(moduleName, moduleName, /*moduleNotFoundError*/ undefined); }, isBindingCapturedByNode: function (node, decl) { var parseNode = ts.getParseTreeNode(node); var parseDecl = ts.getParseTreeNode(decl); return !!parseNode && !!parseDecl && (ts.isVariableDeclaration(parseDecl) || ts.isBindingElement(parseDecl)) && isBindingCapturedByNode(parseNode, parseDecl); }, getDeclarationStatementsForSourceFile: function (node, flags, tracker, bundled) { var n = ts.getParseTreeNode(node); ts.Debug.assert(n && n.kind === 305 /* SyntaxKind.SourceFile */, "Non-sourcefile node passed into getDeclarationsForSourceFile"); var sym = getSymbolOfNode(node); if (!sym) { return !node.locals ? [] : nodeBuilder.symbolTableToDeclarationStatements(node.locals, node, flags, tracker, bundled); } return !sym.exports ? [] : nodeBuilder.symbolTableToDeclarationStatements(sym.exports, node, flags, tracker, bundled); }, isImportRequiredByAugmentation: isImportRequiredByAugmentation, }; function isImportRequiredByAugmentation(node) { var file = ts.getSourceFileOfNode(node); if (!file.symbol) return false; var importTarget = getExternalModuleFileFromDeclaration(node); if (!importTarget) return false; if (importTarget === file) return false; var exports = getExportsOfModule(file.symbol); for (var _i = 0, _a = ts.arrayFrom(exports.values()); _i < _a.length; _i++) { var s = _a[_i]; if (s.mergeId) { var merged = getMergedSymbol(s); if (merged.declarations) { for (var _b = 0, _c = merged.declarations; _b < _c.length; _b++) { var d = _c[_b]; var declFile = ts.getSourceFileOfNode(d); if (declFile === importTarget) { return true; } } } } } return false; } function isInHeritageClause(node) { return node.parent && node.parent.kind === 228 /* SyntaxKind.ExpressionWithTypeArguments */ && node.parent.parent && node.parent.parent.kind === 291 /* SyntaxKind.HeritageClause */; } // defined here to avoid outer scope pollution function getTypeReferenceDirectivesForEntityName(node) { // program does not have any files with type reference directives - bail out if (!fileToDirective) { return undefined; } // property access can only be used as values, or types when within an expression with type arguments inside a heritage clause // qualified names can only be used as types\namespaces // identifiers are treated as values only if they appear in type queries var meaning = 788968 /* SymbolFlags.Type */ | 1920 /* SymbolFlags.Namespace */; if ((node.kind === 79 /* SyntaxKind.Identifier */ && isInTypeQuery(node)) || (node.kind === 206 /* SyntaxKind.PropertyAccessExpression */ && !isInHeritageClause(node))) { meaning = 111551 /* SymbolFlags.Value */ | 1048576 /* SymbolFlags.ExportValue */; } var symbol = resolveEntityName(node, meaning, /*ignoreErrors*/ true); return symbol && symbol !== unknownSymbol ? getTypeReferenceDirectivesForSymbol(symbol, meaning) : undefined; } // defined here to avoid outer scope pollution function getTypeReferenceDirectivesForSymbol(symbol, meaning) { // program does not have any files with type reference directives - bail out if (!fileToDirective || !isSymbolFromTypeDeclarationFile(symbol)) { return undefined; } // check what declarations in the symbol can contribute to the target meaning var typeReferenceDirectives; for (var _i = 0, _a = symbol.declarations; _i < _a.length; _i++) { var decl = _a[_i]; // check meaning of the local symbol to see if declaration needs to be analyzed further if (decl.symbol && decl.symbol.flags & meaning) { var file = ts.getSourceFileOfNode(decl); var typeReferenceDirective = fileToDirective.get(file.path); if (typeReferenceDirective) { (typeReferenceDirectives || (typeReferenceDirectives = [])).push(typeReferenceDirective); } else { // found at least one entry that does not originate from type reference directive return undefined; } } } return typeReferenceDirectives; } function isSymbolFromTypeDeclarationFile(symbol) { // bail out if symbol does not have associated declarations (i.e. this is transient symbol created for property in binding pattern) if (!symbol.declarations) { return false; } // walk the parent chain for symbols to make sure that top level parent symbol is in the global scope // external modules cannot define or contribute to type declaration files var current = symbol; while (true) { var parent = getParentOfSymbol(current); if (parent) { current = parent; } else { break; } } if (current.valueDeclaration && current.valueDeclaration.kind === 305 /* SyntaxKind.SourceFile */ && current.flags & 512 /* SymbolFlags.ValueModule */) { return false; } // check that at least one declaration of top level symbol originates from type declaration file for (var _i = 0, _a = symbol.declarations; _i < _a.length; _i++) { var decl = _a[_i]; var file = ts.getSourceFileOfNode(decl); if (fileToDirective.has(file.path)) { return true; } } return false; } function addReferencedFilesToTypeDirective(file, key, mode) { if (fileToDirective.has(file.path)) return; fileToDirective.set(file.path, [key, mode]); for (var _i = 0, _a = file.referencedFiles; _i < _a.length; _i++) { var _b = _a[_i], fileName = _b.fileName, resolutionMode = _b.resolutionMode; var resolvedFile = ts.resolveTripleslashReference(fileName, file.fileName); var referencedFile = host.getSourceFile(resolvedFile); if (referencedFile) { addReferencedFilesToTypeDirective(referencedFile, key, resolutionMode || file.impliedNodeFormat); } } } } function getExternalModuleFileFromDeclaration(declaration) { var specifier = declaration.kind === 261 /* SyntaxKind.ModuleDeclaration */ ? ts.tryCast(declaration.name, ts.isStringLiteral) : ts.getExternalModuleName(declaration); var moduleSymbol = resolveExternalModuleNameWorker(specifier, specifier, /*moduleNotFoundError*/ undefined); // TODO: GH#18217 if (!moduleSymbol) { return undefined; } return ts.getDeclarationOfKind(moduleSymbol, 305 /* SyntaxKind.SourceFile */); } function initializeTypeChecker() { // Bind all source files and propagate errors for (var _i = 0, _a = host.getSourceFiles(); _i < _a.length; _i++) { var file = _a[_i]; ts.bindSourceFile(file, compilerOptions); } amalgamatedDuplicates = new ts.Map(); // Initialize global symbol table var augmentations; for (var _b = 0, _c = host.getSourceFiles(); _b < _c.length; _b++) { var file = _c[_b]; if (file.redirectInfo) { continue; } if (!ts.isExternalOrCommonJsModule(file)) { // It is an error for a non-external-module (i.e. script) to declare its own `globalThis`. // We can't use `builtinGlobals` for this due to synthetic expando-namespace generation in JS files. var fileGlobalThisSymbol = file.locals.get("globalThis"); if (fileGlobalThisSymbol === null || fileGlobalThisSymbol === void 0 ? void 0 : fileGlobalThisSymbol.declarations) { for (var _d = 0, _e = fileGlobalThisSymbol.declarations; _d < _e.length; _d++) { var declaration = _e[_d]; diagnostics.add(ts.createDiagnosticForNode(declaration, ts.Diagnostics.Declaration_name_conflicts_with_built_in_global_identifier_0, "globalThis")); } } mergeSymbolTable(globals, file.locals); } if (file.jsGlobalAugmentations) { mergeSymbolTable(globals, file.jsGlobalAugmentations); } if (file.patternAmbientModules && file.patternAmbientModules.length) { patternAmbientModules = ts.concatenate(patternAmbientModules, file.patternAmbientModules); } if (file.moduleAugmentations.length) { (augmentations || (augmentations = [])).push(file.moduleAugmentations); } if (file.symbol && file.symbol.globalExports) { // Merge in UMD exports with first-in-wins semantics (see #9771) var source = file.symbol.globalExports; source.forEach(function (sourceSymbol, id) { if (!globals.has(id)) { globals.set(id, sourceSymbol); } }); } } // We do global augmentations separately from module augmentations (and before creating global types) because they // 1. Affect global types. We won't have the correct global types until global augmentations are merged. Also, // 2. Module augmentation instantiation requires creating the type of a module, which, in turn, can require // checking for an export or property on the module (if export=) which, in turn, can fall back to the // apparent type of the module - either globalObjectType or globalFunctionType - which wouldn't exist if we // did module augmentations prior to finalizing the global types. if (augmentations) { // merge _global_ module augmentations. // this needs to be done after global symbol table is initialized to make sure that all ambient modules are indexed for (var _f = 0, augmentations_1 = augmentations; _f < augmentations_1.length; _f++) { var list = augmentations_1[_f]; for (var _g = 0, list_1 = list; _g < list_1.length; _g++) { var augmentation = list_1[_g]; if (!ts.isGlobalScopeAugmentation(augmentation.parent)) continue; mergeModuleAugmentation(augmentation); } } } // Setup global builtins addToSymbolTable(globals, builtinGlobals, ts.Diagnostics.Declaration_name_conflicts_with_built_in_global_identifier_0); getSymbolLinks(undefinedSymbol).type = undefinedWideningType; getSymbolLinks(argumentsSymbol).type = getGlobalType("IArguments", /*arity*/ 0, /*reportErrors*/ true); getSymbolLinks(unknownSymbol).type = errorType; getSymbolLinks(globalThisSymbol).type = createObjectType(16 /* ObjectFlags.Anonymous */, globalThisSymbol); // Initialize special types globalArrayType = getGlobalType("Array", /*arity*/ 1, /*reportErrors*/ true); globalObjectType = getGlobalType("Object", /*arity*/ 0, /*reportErrors*/ true); globalFunctionType = getGlobalType("Function", /*arity*/ 0, /*reportErrors*/ true); globalCallableFunctionType = strictBindCallApply && getGlobalType("CallableFunction", /*arity*/ 0, /*reportErrors*/ true) || globalFunctionType; globalNewableFunctionType = strictBindCallApply && getGlobalType("NewableFunction", /*arity*/ 0, /*reportErrors*/ true) || globalFunctionType; globalStringType = getGlobalType("String", /*arity*/ 0, /*reportErrors*/ true); globalNumberType = getGlobalType("Number", /*arity*/ 0, /*reportErrors*/ true); globalBooleanType = getGlobalType("Boolean", /*arity*/ 0, /*reportErrors*/ true); globalRegExpType = getGlobalType("RegExp", /*arity*/ 0, /*reportErrors*/ true); anyArrayType = createArrayType(anyType); autoArrayType = createArrayType(autoType); if (autoArrayType === emptyObjectType) { // autoArrayType is used as a marker, so even if global Array type is not defined, it needs to be a unique type autoArrayType = createAnonymousType(undefined, emptySymbols, ts.emptyArray, ts.emptyArray, ts.emptyArray); } globalReadonlyArrayType = getGlobalTypeOrUndefined("ReadonlyArray", /*arity*/ 1) || globalArrayType; anyReadonlyArrayType = globalReadonlyArrayType ? createTypeFromGenericGlobalType(globalReadonlyArrayType, [anyType]) : anyArrayType; globalThisType = getGlobalTypeOrUndefined("ThisType", /*arity*/ 1); if (augmentations) { // merge _nonglobal_ module augmentations. // this needs to be done after global symbol table is initialized to make sure that all ambient modules are indexed for (var _h = 0, augmentations_2 = augmentations; _h < augmentations_2.length; _h++) { var list = augmentations_2[_h]; for (var _j = 0, list_2 = list; _j < list_2.length; _j++) { var augmentation = list_2[_j]; if (ts.isGlobalScopeAugmentation(augmentation.parent)) continue; mergeModuleAugmentation(augmentation); } } } amalgamatedDuplicates.forEach(function (_a) { var firstFile = _a.firstFile, secondFile = _a.secondFile, conflictingSymbols = _a.conflictingSymbols; // If not many things conflict, issue individual errors if (conflictingSymbols.size < 8) { conflictingSymbols.forEach(function (_a, symbolName) { var isBlockScoped = _a.isBlockScoped, firstFileLocations = _a.firstFileLocations, secondFileLocations = _a.secondFileLocations; var message = isBlockScoped ? ts.Diagnostics.Cannot_redeclare_block_scoped_variable_0 : ts.Diagnostics.Duplicate_identifier_0; for (var _i = 0, firstFileLocations_1 = firstFileLocations; _i < firstFileLocations_1.length; _i++) { var node = firstFileLocations_1[_i]; addDuplicateDeclarationError(node, message, symbolName, secondFileLocations); } for (var _b = 0, secondFileLocations_1 = secondFileLocations; _b < secondFileLocations_1.length; _b++) { var node = secondFileLocations_1[_b]; addDuplicateDeclarationError(node, message, symbolName, firstFileLocations); } }); } else { // Otherwise issue top-level error since the files appear very identical in terms of what they contain var list = ts.arrayFrom(conflictingSymbols.keys()).join(", "); diagnostics.add(ts.addRelatedInfo(ts.createDiagnosticForNode(firstFile, ts.Diagnostics.Definitions_of_the_following_identifiers_conflict_with_those_in_another_file_Colon_0, list), ts.createDiagnosticForNode(secondFile, ts.Diagnostics.Conflicts_are_in_this_file))); diagnostics.add(ts.addRelatedInfo(ts.createDiagnosticForNode(secondFile, ts.Diagnostics.Definitions_of_the_following_identifiers_conflict_with_those_in_another_file_Colon_0, list), ts.createDiagnosticForNode(firstFile, ts.Diagnostics.Conflicts_are_in_this_file))); } }); amalgamatedDuplicates = undefined; } function checkExternalEmitHelpers(location, helpers) { if ((requestedExternalEmitHelpers & helpers) !== helpers && compilerOptions.importHelpers) { var sourceFile = ts.getSourceFileOfNode(location); if (ts.isEffectiveExternalModule(sourceFile, compilerOptions) && !(location.flags & 16777216 /* NodeFlags.Ambient */)) { var helpersModule = resolveHelpersModule(sourceFile, location); if (helpersModule !== unknownSymbol) { var uncheckedHelpers = helpers & ~requestedExternalEmitHelpers; for (var helper = 1 /* ExternalEmitHelpers.FirstEmitHelper */; helper <= 4194304 /* ExternalEmitHelpers.LastEmitHelper */; helper <<= 1) { if (uncheckedHelpers & helper) { var name = getHelperName(helper); var symbol = getSymbol(helpersModule.exports, ts.escapeLeadingUnderscores(name), 111551 /* SymbolFlags.Value */); if (!symbol) { error(location, ts.Diagnostics.This_syntax_requires_an_imported_helper_named_1_which_does_not_exist_in_0_Consider_upgrading_your_version_of_0, ts.externalHelpersModuleNameText, name); } else if (helper & 524288 /* ExternalEmitHelpers.ClassPrivateFieldGet */) { if (!ts.some(getSignaturesOfSymbol(symbol), function (signature) { return getParameterCount(signature) > 3; })) { error(location, ts.Diagnostics.This_syntax_requires_an_imported_helper_named_1_with_2_parameters_which_is_not_compatible_with_the_one_in_0_Consider_upgrading_your_version_of_0, ts.externalHelpersModuleNameText, name, 4); } } else if (helper & 1048576 /* ExternalEmitHelpers.ClassPrivateFieldSet */) { if (!ts.some(getSignaturesOfSymbol(symbol), function (signature) { return getParameterCount(signature) > 4; })) { error(location, ts.Diagnostics.This_syntax_requires_an_imported_helper_named_1_with_2_parameters_which_is_not_compatible_with_the_one_in_0_Consider_upgrading_your_version_of_0, ts.externalHelpersModuleNameText, name, 5); } } else if (helper & 1024 /* ExternalEmitHelpers.SpreadArray */) { if (!ts.some(getSignaturesOfSymbol(symbol), function (signature) { return getParameterCount(signature) > 2; })) { error(location, ts.Diagnostics.This_syntax_requires_an_imported_helper_named_1_with_2_parameters_which_is_not_compatible_with_the_one_in_0_Consider_upgrading_your_version_of_0, ts.externalHelpersModuleNameText, name, 3); } } } } } requestedExternalEmitHelpers |= helpers; } } } function getHelperName(helper) { switch (helper) { case 1 /* ExternalEmitHelpers.Extends */: return "__extends"; case 2 /* ExternalEmitHelpers.Assign */: return "__assign"; case 4 /* ExternalEmitHelpers.Rest */: return "__rest"; case 8 /* ExternalEmitHelpers.Decorate */: return "__decorate"; case 16 /* ExternalEmitHelpers.Metadata */: return "__metadata"; case 32 /* ExternalEmitHelpers.Param */: return "__param"; case 64 /* ExternalEmitHelpers.Awaiter */: return "__awaiter"; case 128 /* ExternalEmitHelpers.Generator */: return "__generator"; case 256 /* ExternalEmitHelpers.Values */: return "__values"; case 512 /* ExternalEmitHelpers.Read */: return "__read"; case 1024 /* ExternalEmitHelpers.SpreadArray */: return "__spreadArray"; case 2048 /* ExternalEmitHelpers.Await */: return "__await"; case 4096 /* ExternalEmitHelpers.AsyncGenerator */: return "__asyncGenerator"; case 8192 /* ExternalEmitHelpers.AsyncDelegator */: return "__asyncDelegator"; case 16384 /* ExternalEmitHelpers.AsyncValues */: return "__asyncValues"; case 32768 /* ExternalEmitHelpers.ExportStar */: return "__exportStar"; case 65536 /* ExternalEmitHelpers.ImportStar */: return "__importStar"; case 131072 /* ExternalEmitHelpers.ImportDefault */: return "__importDefault"; case 262144 /* ExternalEmitHelpers.MakeTemplateObject */: return "__makeTemplateObject"; case 524288 /* ExternalEmitHelpers.ClassPrivateFieldGet */: return "__classPrivateFieldGet"; case 1048576 /* ExternalEmitHelpers.ClassPrivateFieldSet */: return "__classPrivateFieldSet"; case 2097152 /* ExternalEmitHelpers.ClassPrivateFieldIn */: return "__classPrivateFieldIn"; case 4194304 /* ExternalEmitHelpers.CreateBinding */: return "__createBinding"; default: return ts.Debug.fail("Unrecognized helper"); } } function resolveHelpersModule(node, errorNode) { if (!externalHelpersModule) { externalHelpersModule = resolveExternalModule(node, ts.externalHelpersModuleNameText, ts.Diagnostics.This_syntax_requires_an_imported_helper_but_module_0_cannot_be_found, errorNode) || unknownSymbol; } return externalHelpersModule; } // GRAMMAR CHECKING function checkGrammarDecoratorsAndModifiers(node) { return checkGrammarDecorators(node) || checkGrammarModifiers(node); } function checkGrammarDecorators(node) { if (!node.decorators) { return false; } if (!ts.nodeCanBeDecorated(node, node.parent, node.parent.parent)) { if (node.kind === 169 /* SyntaxKind.MethodDeclaration */ && !ts.nodeIsPresent(node.body)) { return grammarErrorOnFirstToken(node, ts.Diagnostics.A_decorator_can_only_decorate_a_method_implementation_not_an_overload); } else { return grammarErrorOnFirstToken(node, ts.Diagnostics.Decorators_are_not_valid_here); } } else if (node.kind === 172 /* SyntaxKind.GetAccessor */ || node.kind === 173 /* SyntaxKind.SetAccessor */) { var accessors = ts.getAllAccessorDeclarations(node.parent.members, node); if (accessors.firstAccessor.decorators && node === accessors.secondAccessor) { return grammarErrorOnFirstToken(node, ts.Diagnostics.Decorators_cannot_be_applied_to_multiple_get_Slashset_accessors_of_the_same_name); } } return false; } function checkGrammarModifiers(node) { var quickResult = reportObviousModifierErrors(node); if (quickResult !== undefined) { return quickResult; } var lastStatic, lastDeclare, lastAsync, lastOverride; var flags = 0 /* ModifierFlags.None */; for (var _i = 0, _a = node.modifiers; _i < _a.length; _i++) { var modifier = _a[_i]; if (modifier.kind !== 145 /* SyntaxKind.ReadonlyKeyword */) { if (node.kind === 166 /* SyntaxKind.PropertySignature */ || node.kind === 168 /* SyntaxKind.MethodSignature */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_cannot_appear_on_a_type_member, ts.tokenToString(modifier.kind)); } if (node.kind === 176 /* SyntaxKind.IndexSignature */ && (modifier.kind !== 124 /* SyntaxKind.StaticKeyword */ || !ts.isClassLike(node.parent))) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_cannot_appear_on_an_index_signature, ts.tokenToString(modifier.kind)); } } if (modifier.kind !== 101 /* SyntaxKind.InKeyword */ && modifier.kind !== 144 /* SyntaxKind.OutKeyword */) { if (node.kind === 163 /* SyntaxKind.TypeParameter */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_cannot_appear_on_a_type_parameter, ts.tokenToString(modifier.kind)); } } switch (modifier.kind) { case 85 /* SyntaxKind.ConstKeyword */: if (node.kind !== 260 /* SyntaxKind.EnumDeclaration */) { return grammarErrorOnNode(node, ts.Diagnostics.A_class_member_cannot_have_the_0_keyword, ts.tokenToString(85 /* SyntaxKind.ConstKeyword */)); } break; case 159 /* SyntaxKind.OverrideKeyword */: // If node.kind === SyntaxKind.Parameter, checkParameter reports an error if it's not a parameter property. if (flags & 16384 /* ModifierFlags.Override */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_already_seen, "override"); } else if (flags & 2 /* ModifierFlags.Ambient */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_cannot_be_used_with_1_modifier, "override", "declare"); } else if (flags & 64 /* ModifierFlags.Readonly */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_must_precede_1_modifier, "override", "readonly"); } else if (flags & 256 /* ModifierFlags.Async */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_must_precede_1_modifier, "override", "async"); } flags |= 16384 /* ModifierFlags.Override */; lastOverride = modifier; break; case 123 /* SyntaxKind.PublicKeyword */: case 122 /* SyntaxKind.ProtectedKeyword */: case 121 /* SyntaxKind.PrivateKeyword */: var text = visibilityToString(ts.modifierToFlag(modifier.kind)); if (flags & 28 /* ModifierFlags.AccessibilityModifier */) { return grammarErrorOnNode(modifier, ts.Diagnostics.Accessibility_modifier_already_seen); } else if (flags & 16384 /* ModifierFlags.Override */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_must_precede_1_modifier, text, "override"); } else if (flags & 32 /* ModifierFlags.Static */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_must_precede_1_modifier, text, "static"); } else if (flags & 64 /* ModifierFlags.Readonly */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_must_precede_1_modifier, text, "readonly"); } else if (flags & 256 /* ModifierFlags.Async */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_must_precede_1_modifier, text, "async"); } else if (node.parent.kind === 262 /* SyntaxKind.ModuleBlock */ || node.parent.kind === 305 /* SyntaxKind.SourceFile */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_cannot_appear_on_a_module_or_namespace_element, text); } else if (flags & 128 /* ModifierFlags.Abstract */) { if (modifier.kind === 121 /* SyntaxKind.PrivateKeyword */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_cannot_be_used_with_1_modifier, text, "abstract"); } else { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_must_precede_1_modifier, text, "abstract"); } } else if (ts.isPrivateIdentifierClassElementDeclaration(node)) { return grammarErrorOnNode(modifier, ts.Diagnostics.An_accessibility_modifier_cannot_be_used_with_a_private_identifier); } flags |= ts.modifierToFlag(modifier.kind); break; case 124 /* SyntaxKind.StaticKeyword */: if (flags & 32 /* ModifierFlags.Static */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_already_seen, "static"); } else if (flags & 64 /* ModifierFlags.Readonly */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_must_precede_1_modifier, "static", "readonly"); } else if (flags & 256 /* ModifierFlags.Async */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_must_precede_1_modifier, "static", "async"); } else if (node.parent.kind === 262 /* SyntaxKind.ModuleBlock */ || node.parent.kind === 305 /* SyntaxKind.SourceFile */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_cannot_appear_on_a_module_or_namespace_element, "static"); } else if (node.kind === 164 /* SyntaxKind.Parameter */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_cannot_appear_on_a_parameter, "static"); } else if (flags & 128 /* ModifierFlags.Abstract */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_cannot_be_used_with_1_modifier, "static", "abstract"); } else if (flags & 16384 /* ModifierFlags.Override */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_must_precede_1_modifier, "static", "override"); } flags |= 32 /* ModifierFlags.Static */; lastStatic = modifier; break; case 145 /* SyntaxKind.ReadonlyKeyword */: if (flags & 64 /* ModifierFlags.Readonly */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_already_seen, "readonly"); } else if (node.kind !== 167 /* SyntaxKind.PropertyDeclaration */ && node.kind !== 166 /* SyntaxKind.PropertySignature */ && node.kind !== 176 /* SyntaxKind.IndexSignature */ && node.kind !== 164 /* SyntaxKind.Parameter */) { // If node.kind === SyntaxKind.Parameter, checkParameter reports an error if it's not a parameter property. return grammarErrorOnNode(modifier, ts.Diagnostics.readonly_modifier_can_only_appear_on_a_property_declaration_or_index_signature); } flags |= 64 /* ModifierFlags.Readonly */; break; case 93 /* SyntaxKind.ExportKeyword */: if (flags & 1 /* ModifierFlags.Export */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_already_seen, "export"); } else if (flags & 2 /* ModifierFlags.Ambient */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_must_precede_1_modifier, "export", "declare"); } else if (flags & 128 /* ModifierFlags.Abstract */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_must_precede_1_modifier, "export", "abstract"); } else if (flags & 256 /* ModifierFlags.Async */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_must_precede_1_modifier, "export", "async"); } else if (ts.isClassLike(node.parent)) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_cannot_appear_on_class_elements_of_this_kind, "export"); } else if (node.kind === 164 /* SyntaxKind.Parameter */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_cannot_appear_on_a_parameter, "export"); } flags |= 1 /* ModifierFlags.Export */; break; case 88 /* SyntaxKind.DefaultKeyword */: var container = node.parent.kind === 305 /* SyntaxKind.SourceFile */ ? node.parent : node.parent.parent; if (container.kind === 261 /* SyntaxKind.ModuleDeclaration */ && !ts.isAmbientModule(container)) { return grammarErrorOnNode(modifier, ts.Diagnostics.A_default_export_can_only_be_used_in_an_ECMAScript_style_module); } else if (!(flags & 1 /* ModifierFlags.Export */)) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_must_precede_1_modifier, "export", "default"); } flags |= 512 /* ModifierFlags.Default */; break; case 135 /* SyntaxKind.DeclareKeyword */: if (flags & 2 /* ModifierFlags.Ambient */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_already_seen, "declare"); } else if (flags & 256 /* ModifierFlags.Async */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_cannot_be_used_in_an_ambient_context, "async"); } else if (flags & 16384 /* ModifierFlags.Override */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_cannot_be_used_in_an_ambient_context, "override"); } else if (ts.isClassLike(node.parent) && !ts.isPropertyDeclaration(node)) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_cannot_appear_on_class_elements_of_this_kind, "declare"); } else if (node.kind === 164 /* SyntaxKind.Parameter */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_cannot_appear_on_a_parameter, "declare"); } else if ((node.parent.flags & 16777216 /* NodeFlags.Ambient */) && node.parent.kind === 262 /* SyntaxKind.ModuleBlock */) { return grammarErrorOnNode(modifier, ts.Diagnostics.A_declare_modifier_cannot_be_used_in_an_already_ambient_context); } else if (ts.isPrivateIdentifierClassElementDeclaration(node)) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_cannot_be_used_with_a_private_identifier, "declare"); } flags |= 2 /* ModifierFlags.Ambient */; lastDeclare = modifier; break; case 126 /* SyntaxKind.AbstractKeyword */: if (flags & 128 /* ModifierFlags.Abstract */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_already_seen, "abstract"); } if (node.kind !== 257 /* SyntaxKind.ClassDeclaration */ && node.kind !== 180 /* SyntaxKind.ConstructorType */) { if (node.kind !== 169 /* SyntaxKind.MethodDeclaration */ && node.kind !== 167 /* SyntaxKind.PropertyDeclaration */ && node.kind !== 172 /* SyntaxKind.GetAccessor */ && node.kind !== 173 /* SyntaxKind.SetAccessor */) { return grammarErrorOnNode(modifier, ts.Diagnostics.abstract_modifier_can_only_appear_on_a_class_method_or_property_declaration); } if (!(node.parent.kind === 257 /* SyntaxKind.ClassDeclaration */ && ts.hasSyntacticModifier(node.parent, 128 /* ModifierFlags.Abstract */))) { return grammarErrorOnNode(modifier, ts.Diagnostics.Abstract_methods_can_only_appear_within_an_abstract_class); } if (flags & 32 /* ModifierFlags.Static */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_cannot_be_used_with_1_modifier, "static", "abstract"); } if (flags & 8 /* ModifierFlags.Private */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_cannot_be_used_with_1_modifier, "private", "abstract"); } if (flags & 256 /* ModifierFlags.Async */ && lastAsync) { return grammarErrorOnNode(lastAsync, ts.Diagnostics._0_modifier_cannot_be_used_with_1_modifier, "async", "abstract"); } if (flags & 16384 /* ModifierFlags.Override */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_must_precede_1_modifier, "abstract", "override"); } } if (ts.isNamedDeclaration(node) && node.name.kind === 80 /* SyntaxKind.PrivateIdentifier */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_cannot_be_used_with_a_private_identifier, "abstract"); } flags |= 128 /* ModifierFlags.Abstract */; break; case 131 /* SyntaxKind.AsyncKeyword */: if (flags & 256 /* ModifierFlags.Async */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_already_seen, "async"); } else if (flags & 2 /* ModifierFlags.Ambient */ || node.parent.flags & 16777216 /* NodeFlags.Ambient */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_cannot_be_used_in_an_ambient_context, "async"); } else if (node.kind === 164 /* SyntaxKind.Parameter */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_cannot_appear_on_a_parameter, "async"); } if (flags & 128 /* ModifierFlags.Abstract */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_cannot_be_used_with_1_modifier, "async", "abstract"); } flags |= 256 /* ModifierFlags.Async */; lastAsync = modifier; break; case 101 /* SyntaxKind.InKeyword */: case 144 /* SyntaxKind.OutKeyword */: var inOutFlag = modifier.kind === 101 /* SyntaxKind.InKeyword */ ? 32768 /* ModifierFlags.In */ : 65536 /* ModifierFlags.Out */; var inOutText = modifier.kind === 101 /* SyntaxKind.InKeyword */ ? "in" : "out"; if (node.kind !== 163 /* SyntaxKind.TypeParameter */ || !(ts.isInterfaceDeclaration(node.parent) || ts.isClassLike(node.parent) || ts.isTypeAliasDeclaration(node.parent))) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_can_only_appear_on_a_type_parameter_of_a_class_interface_or_type_alias, inOutText); } if (flags & inOutFlag) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_already_seen, inOutText); } if (inOutFlag & 32768 /* ModifierFlags.In */ && flags & 65536 /* ModifierFlags.Out */) { return grammarErrorOnNode(modifier, ts.Diagnostics._0_modifier_must_precede_1_modifier, "in", "out"); } flags |= inOutFlag; break; } } if (node.kind === 171 /* SyntaxKind.Constructor */) { if (flags & 32 /* ModifierFlags.Static */) { return grammarErrorOnNode(lastStatic, ts.Diagnostics._0_modifier_cannot_appear_on_a_constructor_declaration, "static"); } if (flags & 16384 /* ModifierFlags.Override */) { return grammarErrorOnNode(lastOverride, ts.Diagnostics._0_modifier_cannot_appear_on_a_constructor_declaration, "override"); // TODO: GH#18217 } if (flags & 256 /* ModifierFlags.Async */) { return grammarErrorOnNode(lastAsync, ts.Diagnostics._0_modifier_cannot_appear_on_a_constructor_declaration, "async"); } return false; } else if ((node.kind === 266 /* SyntaxKind.ImportDeclaration */ || node.kind === 265 /* SyntaxKind.ImportEqualsDeclaration */) && flags & 2 /* ModifierFlags.Ambient */) { return grammarErrorOnNode(lastDeclare, ts.Diagnostics.A_0_modifier_cannot_be_used_with_an_import_declaration, "declare"); } else if (node.kind === 164 /* SyntaxKind.Parameter */ && (flags & 16476 /* ModifierFlags.ParameterPropertyModifier */) && ts.isBindingPattern(node.name)) { return grammarErrorOnNode(node, ts.Diagnostics.A_parameter_property_may_not_be_declared_using_a_binding_pattern); } else if (node.kind === 164 /* SyntaxKind.Parameter */ && (flags & 16476 /* ModifierFlags.ParameterPropertyModifier */) && node.dotDotDotToken) { return grammarErrorOnNode(node, ts.Diagnostics.A_parameter_property_cannot_be_declared_using_a_rest_parameter); } if (flags & 256 /* ModifierFlags.Async */) { return checkGrammarAsyncModifier(node, lastAsync); } return false; } /** * true | false: Early return this value from checkGrammarModifiers. * undefined: Need to do full checking on the modifiers. */ function reportObviousModifierErrors(node) { return !node.modifiers ? false : shouldReportBadModifier(node) ? grammarErrorOnFirstToken(node, ts.Diagnostics.Modifiers_cannot_appear_here) : undefined; } function shouldReportBadModifier(node) { switch (node.kind) { case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 171 /* SyntaxKind.Constructor */: case 167 /* SyntaxKind.PropertyDeclaration */: case 166 /* SyntaxKind.PropertySignature */: case 169 /* SyntaxKind.MethodDeclaration */: case 168 /* SyntaxKind.MethodSignature */: case 176 /* SyntaxKind.IndexSignature */: case 261 /* SyntaxKind.ModuleDeclaration */: case 266 /* SyntaxKind.ImportDeclaration */: case 265 /* SyntaxKind.ImportEqualsDeclaration */: case 272 /* SyntaxKind.ExportDeclaration */: case 271 /* SyntaxKind.ExportAssignment */: case 213 /* SyntaxKind.FunctionExpression */: case 214 /* SyntaxKind.ArrowFunction */: case 164 /* SyntaxKind.Parameter */: case 163 /* SyntaxKind.TypeParameter */: return false; default: if (node.parent.kind === 262 /* SyntaxKind.ModuleBlock */ || node.parent.kind === 305 /* SyntaxKind.SourceFile */) { return false; } switch (node.kind) { case 256 /* SyntaxKind.FunctionDeclaration */: return nodeHasAnyModifiersExcept(node, 131 /* SyntaxKind.AsyncKeyword */); case 257 /* SyntaxKind.ClassDeclaration */: case 180 /* SyntaxKind.ConstructorType */: return nodeHasAnyModifiersExcept(node, 126 /* SyntaxKind.AbstractKeyword */); case 258 /* SyntaxKind.InterfaceDeclaration */: case 237 /* SyntaxKind.VariableStatement */: case 259 /* SyntaxKind.TypeAliasDeclaration */: case 170 /* SyntaxKind.ClassStaticBlockDeclaration */: return true; case 260 /* SyntaxKind.EnumDeclaration */: return nodeHasAnyModifiersExcept(node, 85 /* SyntaxKind.ConstKeyword */); default: ts.Debug.fail(); } } } function nodeHasAnyModifiersExcept(node, allowedModifier) { return node.modifiers.length > 1 || node.modifiers[0].kind !== allowedModifier; } function checkGrammarAsyncModifier(node, asyncModifier) { switch (node.kind) { case 169 /* SyntaxKind.MethodDeclaration */: case 256 /* SyntaxKind.FunctionDeclaration */: case 213 /* SyntaxKind.FunctionExpression */: case 214 /* SyntaxKind.ArrowFunction */: return false; } return grammarErrorOnNode(asyncModifier, ts.Diagnostics._0_modifier_cannot_be_used_here, "async"); } function checkGrammarForDisallowedTrailingComma(list, diag) { if (diag === void 0) { diag = ts.Diagnostics.Trailing_comma_not_allowed; } if (list && list.hasTrailingComma) { return grammarErrorAtPos(list[0], list.end - ",".length, ",".length, diag); } return false; } function checkGrammarTypeParameterList(typeParameters, file) { if (typeParameters && typeParameters.length === 0) { var start = typeParameters.pos - "<".length; var end = ts.skipTrivia(file.text, typeParameters.end) + ">".length; return grammarErrorAtPos(file, start, end - start, ts.Diagnostics.Type_parameter_list_cannot_be_empty); } return false; } function checkGrammarParameterList(parameters) { var seenOptionalParameter = false; var parameterCount = parameters.length; for (var i = 0; i < parameterCount; i++) { var parameter = parameters[i]; if (parameter.dotDotDotToken) { if (i !== (parameterCount - 1)) { return grammarErrorOnNode(parameter.dotDotDotToken, ts.Diagnostics.A_rest_parameter_must_be_last_in_a_parameter_list); } if (!(parameter.flags & 16777216 /* NodeFlags.Ambient */)) { // Allow `...foo,` in ambient declarations; see GH#23070 checkGrammarForDisallowedTrailingComma(parameters, ts.Diagnostics.A_rest_parameter_or_binding_pattern_may_not_have_a_trailing_comma); } if (parameter.questionToken) { return grammarErrorOnNode(parameter.questionToken, ts.Diagnostics.A_rest_parameter_cannot_be_optional); } if (parameter.initializer) { return grammarErrorOnNode(parameter.name, ts.Diagnostics.A_rest_parameter_cannot_have_an_initializer); } } else if (isOptionalParameter(parameter)) { seenOptionalParameter = true; if (parameter.questionToken && parameter.initializer) { return grammarErrorOnNode(parameter.name, ts.Diagnostics.Parameter_cannot_have_question_mark_and_initializer); } } else if (seenOptionalParameter && !parameter.initializer) { return grammarErrorOnNode(parameter.name, ts.Diagnostics.A_required_parameter_cannot_follow_an_optional_parameter); } } } function getNonSimpleParameters(parameters) { return ts.filter(parameters, function (parameter) { return !!parameter.initializer || ts.isBindingPattern(parameter.name) || ts.isRestParameter(parameter); }); } function checkGrammarForUseStrictSimpleParameterList(node) { if (languageVersion >= 3 /* ScriptTarget.ES2016 */) { var useStrictDirective_1 = node.body && ts.isBlock(node.body) && ts.findUseStrictPrologue(node.body.statements); if (useStrictDirective_1) { var nonSimpleParameters = getNonSimpleParameters(node.parameters); if (ts.length(nonSimpleParameters)) { ts.forEach(nonSimpleParameters, function (parameter) { ts.addRelatedInfo(error(parameter, ts.Diagnostics.This_parameter_is_not_allowed_with_use_strict_directive), ts.createDiagnosticForNode(useStrictDirective_1, ts.Diagnostics.use_strict_directive_used_here)); }); var diagnostics_2 = nonSimpleParameters.map(function (parameter, index) { return (index === 0 ? ts.createDiagnosticForNode(parameter, ts.Diagnostics.Non_simple_parameter_declared_here) : ts.createDiagnosticForNode(parameter, ts.Diagnostics.and_here)); }); ts.addRelatedInfo.apply(void 0, __spreadArray([error(useStrictDirective_1, ts.Diagnostics.use_strict_directive_cannot_be_used_with_non_simple_parameter_list)], diagnostics_2, false)); return true; } } } return false; } function checkGrammarFunctionLikeDeclaration(node) { // Prevent cascading error by short-circuit var file = ts.getSourceFileOfNode(node); return checkGrammarDecoratorsAndModifiers(node) || checkGrammarTypeParameterList(node.typeParameters, file) || checkGrammarParameterList(node.parameters) || checkGrammarArrowFunction(node, file) || (ts.isFunctionLikeDeclaration(node) && checkGrammarForUseStrictSimpleParameterList(node)); } function checkGrammarClassLikeDeclaration(node) { var file = ts.getSourceFileOfNode(node); return checkGrammarClassDeclarationHeritageClauses(node) || checkGrammarTypeParameterList(node.typeParameters, file); } function checkGrammarArrowFunction(node, file) { if (!ts.isArrowFunction(node)) { return false; } if (node.typeParameters && !(ts.length(node.typeParameters) > 1 || node.typeParameters.hasTrailingComma || node.typeParameters[0].constraint)) { if (file && ts.fileExtensionIsOneOf(file.fileName, [".mts" /* Extension.Mts */, ".cts" /* Extension.Cts */])) { grammarErrorOnNode(node.typeParameters[0], ts.Diagnostics.This_syntax_is_reserved_in_files_with_the_mts_or_cts_extension_Add_a_trailing_comma_or_explicit_constraint); } } var equalsGreaterThanToken = node.equalsGreaterThanToken; var startLine = ts.getLineAndCharacterOfPosition(file, equalsGreaterThanToken.pos).line; var endLine = ts.getLineAndCharacterOfPosition(file, equalsGreaterThanToken.end).line; return startLine !== endLine && grammarErrorOnNode(equalsGreaterThanToken, ts.Diagnostics.Line_terminator_not_permitted_before_arrow); } function checkGrammarIndexSignatureParameters(node) { var parameter = node.parameters[0]; if (node.parameters.length !== 1) { if (parameter) { return grammarErrorOnNode(parameter.name, ts.Diagnostics.An_index_signature_must_have_exactly_one_parameter); } else { return grammarErrorOnNode(node, ts.Diagnostics.An_index_signature_must_have_exactly_one_parameter); } } checkGrammarForDisallowedTrailingComma(node.parameters, ts.Diagnostics.An_index_signature_cannot_have_a_trailing_comma); if (parameter.dotDotDotToken) { return grammarErrorOnNode(parameter.dotDotDotToken, ts.Diagnostics.An_index_signature_cannot_have_a_rest_parameter); } if (ts.hasEffectiveModifiers(parameter)) { return grammarErrorOnNode(parameter.name, ts.Diagnostics.An_index_signature_parameter_cannot_have_an_accessibility_modifier); } if (parameter.questionToken) { return grammarErrorOnNode(parameter.questionToken, ts.Diagnostics.An_index_signature_parameter_cannot_have_a_question_mark); } if (parameter.initializer) { return grammarErrorOnNode(parameter.name, ts.Diagnostics.An_index_signature_parameter_cannot_have_an_initializer); } if (!parameter.type) { return grammarErrorOnNode(parameter.name, ts.Diagnostics.An_index_signature_parameter_must_have_a_type_annotation); } var type = getTypeFromTypeNode(parameter.type); if (someType(type, function (t) { return !!(t.flags & 8576 /* TypeFlags.StringOrNumberLiteralOrUnique */); }) || isGenericType(type)) { return grammarErrorOnNode(parameter.name, ts.Diagnostics.An_index_signature_parameter_type_cannot_be_a_literal_type_or_generic_type_Consider_using_a_mapped_object_type_instead); } if (!everyType(type, isValidIndexKeyType)) { return grammarErrorOnNode(parameter.name, ts.Diagnostics.An_index_signature_parameter_type_must_be_string_number_symbol_or_a_template_literal_type); } if (!node.type) { return grammarErrorOnNode(node, ts.Diagnostics.An_index_signature_must_have_a_type_annotation); } return false; } function checkGrammarIndexSignature(node) { // Prevent cascading error by short-circuit return checkGrammarDecoratorsAndModifiers(node) || checkGrammarIndexSignatureParameters(node); } function checkGrammarForAtLeastOneTypeArgument(node, typeArguments) { if (typeArguments && typeArguments.length === 0) { var sourceFile = ts.getSourceFileOfNode(node); var start = typeArguments.pos - "<".length; var end = ts.skipTrivia(sourceFile.text, typeArguments.end) + ">".length; return grammarErrorAtPos(sourceFile, start, end - start, ts.Diagnostics.Type_argument_list_cannot_be_empty); } return false; } function checkGrammarTypeArguments(node, typeArguments) { return checkGrammarForDisallowedTrailingComma(typeArguments) || checkGrammarForAtLeastOneTypeArgument(node, typeArguments); } function checkGrammarTaggedTemplateChain(node) { if (node.questionDotToken || node.flags & 32 /* NodeFlags.OptionalChain */) { return grammarErrorOnNode(node.template, ts.Diagnostics.Tagged_template_expressions_are_not_permitted_in_an_optional_chain); } return false; } function checkGrammarHeritageClause(node) { var types = node.types; if (checkGrammarForDisallowedTrailingComma(types)) { return true; } if (types && types.length === 0) { var listType = ts.tokenToString(node.token); return grammarErrorAtPos(node, types.pos, 0, ts.Diagnostics._0_list_cannot_be_empty, listType); } return ts.some(types, checkGrammarExpressionWithTypeArguments); } function checkGrammarExpressionWithTypeArguments(node) { if (ts.isExpressionWithTypeArguments(node) && ts.isImportKeyword(node.expression) && node.typeArguments) { return grammarErrorOnNode(node, ts.Diagnostics.This_use_of_import_is_invalid_import_calls_can_be_written_but_they_must_have_parentheses_and_cannot_have_type_arguments); } return checkGrammarTypeArguments(node, node.typeArguments); } function checkGrammarClassDeclarationHeritageClauses(node) { var seenExtendsClause = false; var seenImplementsClause = false; if (!checkGrammarDecoratorsAndModifiers(node) && node.heritageClauses) { for (var _i = 0, _a = node.heritageClauses; _i < _a.length; _i++) { var heritageClause = _a[_i]; if (heritageClause.token === 94 /* SyntaxKind.ExtendsKeyword */) { if (seenExtendsClause) { return grammarErrorOnFirstToken(heritageClause, ts.Diagnostics.extends_clause_already_seen); } if (seenImplementsClause) { return grammarErrorOnFirstToken(heritageClause, ts.Diagnostics.extends_clause_must_precede_implements_clause); } if (heritageClause.types.length > 1) { return grammarErrorOnFirstToken(heritageClause.types[1], ts.Diagnostics.Classes_can_only_extend_a_single_class); } seenExtendsClause = true; } else { ts.Debug.assert(heritageClause.token === 117 /* SyntaxKind.ImplementsKeyword */); if (seenImplementsClause) { return grammarErrorOnFirstToken(heritageClause, ts.Diagnostics.implements_clause_already_seen); } seenImplementsClause = true; } // Grammar checking heritageClause inside class declaration checkGrammarHeritageClause(heritageClause); } } } function checkGrammarInterfaceDeclaration(node) { var seenExtendsClause = false; if (node.heritageClauses) { for (var _i = 0, _a = node.heritageClauses; _i < _a.length; _i++) { var heritageClause = _a[_i]; if (heritageClause.token === 94 /* SyntaxKind.ExtendsKeyword */) { if (seenExtendsClause) { return grammarErrorOnFirstToken(heritageClause, ts.Diagnostics.extends_clause_already_seen); } seenExtendsClause = true; } else { ts.Debug.assert(heritageClause.token === 117 /* SyntaxKind.ImplementsKeyword */); return grammarErrorOnFirstToken(heritageClause, ts.Diagnostics.Interface_declaration_cannot_have_implements_clause); } // Grammar checking heritageClause inside class declaration checkGrammarHeritageClause(heritageClause); } } return false; } function checkGrammarComputedPropertyName(node) { // If node is not a computedPropertyName, just skip the grammar checking if (node.kind !== 162 /* SyntaxKind.ComputedPropertyName */) { return false; } var computedPropertyName = node; if (computedPropertyName.expression.kind === 221 /* SyntaxKind.BinaryExpression */ && computedPropertyName.expression.operatorToken.kind === 27 /* SyntaxKind.CommaToken */) { return grammarErrorOnNode(computedPropertyName.expression, ts.Diagnostics.A_comma_expression_is_not_allowed_in_a_computed_property_name); } return false; } function checkGrammarForGenerator(node) { if (node.asteriskToken) { ts.Debug.assert(node.kind === 256 /* SyntaxKind.FunctionDeclaration */ || node.kind === 213 /* SyntaxKind.FunctionExpression */ || node.kind === 169 /* SyntaxKind.MethodDeclaration */); if (node.flags & 16777216 /* NodeFlags.Ambient */) { return grammarErrorOnNode(node.asteriskToken, ts.Diagnostics.Generators_are_not_allowed_in_an_ambient_context); } if (!node.body) { return grammarErrorOnNode(node.asteriskToken, ts.Diagnostics.An_overload_signature_cannot_be_declared_as_a_generator); } } } function checkGrammarForInvalidQuestionMark(questionToken, message) { return !!questionToken && grammarErrorOnNode(questionToken, message); } function checkGrammarForInvalidExclamationToken(exclamationToken, message) { return !!exclamationToken && grammarErrorOnNode(exclamationToken, message); } function checkGrammarObjectLiteralExpression(node, inDestructuring) { var seen = new ts.Map(); for (var _i = 0, _a = node.properties; _i < _a.length; _i++) { var prop = _a[_i]; if (prop.kind === 298 /* SyntaxKind.SpreadAssignment */) { if (inDestructuring) { // a rest property cannot be destructured any further var expression = ts.skipParentheses(prop.expression); if (ts.isArrayLiteralExpression(expression) || ts.isObjectLiteralExpression(expression)) { return grammarErrorOnNode(prop.expression, ts.Diagnostics.A_rest_element_cannot_contain_a_binding_pattern); } } continue; } var name = prop.name; if (name.kind === 162 /* SyntaxKind.ComputedPropertyName */) { // If the name is not a ComputedPropertyName, the grammar checking will skip it checkGrammarComputedPropertyName(name); } if (prop.kind === 297 /* SyntaxKind.ShorthandPropertyAssignment */ && !inDestructuring && prop.objectAssignmentInitializer) { // having objectAssignmentInitializer is only valid in ObjectAssignmentPattern // outside of destructuring it is a syntax error grammarErrorOnNode(prop.equalsToken, ts.Diagnostics.Did_you_mean_to_use_a_Colon_An_can_only_follow_a_property_name_when_the_containing_object_literal_is_part_of_a_destructuring_pattern); } if (name.kind === 80 /* SyntaxKind.PrivateIdentifier */) { grammarErrorOnNode(name, ts.Diagnostics.Private_identifiers_are_not_allowed_outside_class_bodies); } // Modifiers are never allowed on properties except for 'async' on a method declaration if (prop.modifiers) { for (var _b = 0, _c = prop.modifiers; _b < _c.length; _b++) { var mod = _c[_b]; if (mod.kind !== 131 /* SyntaxKind.AsyncKeyword */ || prop.kind !== 169 /* SyntaxKind.MethodDeclaration */) { grammarErrorOnNode(mod, ts.Diagnostics._0_modifier_cannot_be_used_here, ts.getTextOfNode(mod)); } } } // ECMA-262 11.1.5 Object Initializer // If previous is not undefined then throw a SyntaxError exception if any of the following conditions are true // a.This production is contained in strict code and IsDataDescriptor(previous) is true and // IsDataDescriptor(propId.descriptor) is true. // b.IsDataDescriptor(previous) is true and IsAccessorDescriptor(propId.descriptor) is true. // c.IsAccessorDescriptor(previous) is true and IsDataDescriptor(propId.descriptor) is true. // d.IsAccessorDescriptor(previous) is true and IsAccessorDescriptor(propId.descriptor) is true // and either both previous and propId.descriptor have[[Get]] fields or both previous and propId.descriptor have[[Set]] fields var currentKind = void 0; switch (prop.kind) { case 297 /* SyntaxKind.ShorthandPropertyAssignment */: checkGrammarForInvalidExclamationToken(prop.exclamationToken, ts.Diagnostics.A_definite_assignment_assertion_is_not_permitted_in_this_context); // falls through case 296 /* SyntaxKind.PropertyAssignment */: // Grammar checking for computedPropertyName and shorthandPropertyAssignment checkGrammarForInvalidQuestionMark(prop.questionToken, ts.Diagnostics.An_object_member_cannot_be_declared_optional); if (name.kind === 8 /* SyntaxKind.NumericLiteral */) { checkGrammarNumericLiteral(name); } currentKind = 4 /* DeclarationMeaning.PropertyAssignment */; break; case 169 /* SyntaxKind.MethodDeclaration */: currentKind = 8 /* DeclarationMeaning.Method */; break; case 172 /* SyntaxKind.GetAccessor */: currentKind = 1 /* DeclarationMeaning.GetAccessor */; break; case 173 /* SyntaxKind.SetAccessor */: currentKind = 2 /* DeclarationMeaning.SetAccessor */; break; default: throw ts.Debug.assertNever(prop, "Unexpected syntax kind:" + prop.kind); } if (!inDestructuring) { var effectiveName = ts.getPropertyNameForPropertyNameNode(name); if (effectiveName === undefined) { continue; } var existingKind = seen.get(effectiveName); if (!existingKind) { seen.set(effectiveName, currentKind); } else { if ((currentKind & 8 /* DeclarationMeaning.Method */) && (existingKind & 8 /* DeclarationMeaning.Method */)) { grammarErrorOnNode(name, ts.Diagnostics.Duplicate_identifier_0, ts.getTextOfNode(name)); } else if ((currentKind & 4 /* DeclarationMeaning.PropertyAssignment */) && (existingKind & 4 /* DeclarationMeaning.PropertyAssignment */)) { grammarErrorOnNode(name, ts.Diagnostics.An_object_literal_cannot_have_multiple_properties_with_the_same_name, ts.getTextOfNode(name)); } else if ((currentKind & 3 /* DeclarationMeaning.GetOrSetAccessor */) && (existingKind & 3 /* DeclarationMeaning.GetOrSetAccessor */)) { if (existingKind !== 3 /* DeclarationMeaning.GetOrSetAccessor */ && currentKind !== existingKind) { seen.set(effectiveName, currentKind | existingKind); } else { return grammarErrorOnNode(name, ts.Diagnostics.An_object_literal_cannot_have_multiple_get_Slashset_accessors_with_the_same_name); } } else { return grammarErrorOnNode(name, ts.Diagnostics.An_object_literal_cannot_have_property_and_accessor_with_the_same_name); } } } } } function checkGrammarJsxElement(node) { checkGrammarJsxName(node.tagName); checkGrammarTypeArguments(node, node.typeArguments); var seen = new ts.Map(); for (var _i = 0, _a = node.attributes.properties; _i < _a.length; _i++) { var attr = _a[_i]; if (attr.kind === 287 /* SyntaxKind.JsxSpreadAttribute */) { continue; } var name = attr.name, initializer = attr.initializer; if (!seen.get(name.escapedText)) { seen.set(name.escapedText, true); } else { return grammarErrorOnNode(name, ts.Diagnostics.JSX_elements_cannot_have_multiple_attributes_with_the_same_name); } if (initializer && initializer.kind === 288 /* SyntaxKind.JsxExpression */ && !initializer.expression) { return grammarErrorOnNode(initializer, ts.Diagnostics.JSX_attributes_must_only_be_assigned_a_non_empty_expression); } } } function checkGrammarJsxName(node) { if (ts.isPropertyAccessExpression(node)) { var propName = node; do { var check_1 = checkGrammarJsxNestedIdentifier(propName.name); if (check_1) { return check_1; } propName = propName.expression; } while (ts.isPropertyAccessExpression(propName)); var check = checkGrammarJsxNestedIdentifier(propName); if (check) { return check; } } function checkGrammarJsxNestedIdentifier(name) { if (ts.isIdentifier(name) && ts.idText(name).indexOf(":") !== -1) { return grammarErrorOnNode(name, ts.Diagnostics.JSX_property_access_expressions_cannot_include_JSX_namespace_names); } } } function checkGrammarJsxExpression(node) { if (node.expression && ts.isCommaSequence(node.expression)) { return grammarErrorOnNode(node.expression, ts.Diagnostics.JSX_expressions_may_not_use_the_comma_operator_Did_you_mean_to_write_an_array); } } function checkGrammarForInOrForOfStatement(forInOrOfStatement) { if (checkGrammarStatementInAmbientContext(forInOrOfStatement)) { return true; } if (forInOrOfStatement.kind === 244 /* SyntaxKind.ForOfStatement */ && forInOrOfStatement.awaitModifier) { if (!(forInOrOfStatement.flags & 32768 /* NodeFlags.AwaitContext */)) { var sourceFile = ts.getSourceFileOfNode(forInOrOfStatement); if (ts.isInTopLevelContext(forInOrOfStatement)) { if (!hasParseDiagnostics(sourceFile)) { if (!ts.isEffectiveExternalModule(sourceFile, compilerOptions)) { diagnostics.add(ts.createDiagnosticForNode(forInOrOfStatement.awaitModifier, ts.Diagnostics.for_await_loops_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_file_has_no_imports_or_exports_Consider_adding_an_empty_export_to_make_this_file_a_module)); } switch (moduleKind) { case ts.ModuleKind.Node16: case ts.ModuleKind.NodeNext: if (sourceFile.impliedNodeFormat === ts.ModuleKind.CommonJS) { diagnostics.add(ts.createDiagnosticForNode(forInOrOfStatement.awaitModifier, ts.Diagnostics.The_current_file_is_a_CommonJS_module_and_cannot_use_await_at_the_top_level)); break; } // fallthrough case ts.ModuleKind.ES2022: case ts.ModuleKind.ESNext: case ts.ModuleKind.System: if (languageVersion >= 4 /* ScriptTarget.ES2017 */) { break; } // fallthrough default: diagnostics.add(ts.createDiagnosticForNode(forInOrOfStatement.awaitModifier, ts.Diagnostics.Top_level_for_await_loops_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_node16_or_nodenext_and_the_target_option_is_set_to_es2017_or_higher)); break; } } } else { // use of 'for-await-of' in non-async function if (!hasParseDiagnostics(sourceFile)) { var diagnostic = ts.createDiagnosticForNode(forInOrOfStatement.awaitModifier, ts.Diagnostics.for_await_loops_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules); var func = ts.getContainingFunction(forInOrOfStatement); if (func && func.kind !== 171 /* SyntaxKind.Constructor */) { ts.Debug.assert((ts.getFunctionFlags(func) & 2 /* FunctionFlags.Async */) === 0, "Enclosing function should never be an async function."); var relatedInfo = ts.createDiagnosticForNode(func, ts.Diagnostics.Did_you_mean_to_mark_this_function_as_async); ts.addRelatedInfo(diagnostic, relatedInfo); } diagnostics.add(diagnostic); return true; } } return false; } } if (ts.isForOfStatement(forInOrOfStatement) && !(forInOrOfStatement.flags & 32768 /* NodeFlags.AwaitContext */) && ts.isIdentifier(forInOrOfStatement.initializer) && forInOrOfStatement.initializer.escapedText === "async") { grammarErrorOnNode(forInOrOfStatement.initializer, ts.Diagnostics.The_left_hand_side_of_a_for_of_statement_may_not_be_async); return false; } if (forInOrOfStatement.initializer.kind === 255 /* SyntaxKind.VariableDeclarationList */) { var variableList = forInOrOfStatement.initializer; if (!checkGrammarVariableDeclarationList(variableList)) { var declarations = variableList.declarations; // declarations.length can be zero if there is an error in variable declaration in for-of or for-in // See http://www.ecma-international.org/ecma-262/6.0/#sec-for-in-and-for-of-statements for details // For example: // var let = 10; // for (let of [1,2,3]) {} // this is invalid ES6 syntax // for (let in [1,2,3]) {} // this is invalid ES6 syntax // We will then want to skip on grammar checking on variableList declaration if (!declarations.length) { return false; } if (declarations.length > 1) { var diagnostic = forInOrOfStatement.kind === 243 /* SyntaxKind.ForInStatement */ ? ts.Diagnostics.Only_a_single_variable_declaration_is_allowed_in_a_for_in_statement : ts.Diagnostics.Only_a_single_variable_declaration_is_allowed_in_a_for_of_statement; return grammarErrorOnFirstToken(variableList.declarations[1], diagnostic); } var firstDeclaration = declarations[0]; if (firstDeclaration.initializer) { var diagnostic = forInOrOfStatement.kind === 243 /* SyntaxKind.ForInStatement */ ? ts.Diagnostics.The_variable_declaration_of_a_for_in_statement_cannot_have_an_initializer : ts.Diagnostics.The_variable_declaration_of_a_for_of_statement_cannot_have_an_initializer; return grammarErrorOnNode(firstDeclaration.name, diagnostic); } if (firstDeclaration.type) { var diagnostic = forInOrOfStatement.kind === 243 /* SyntaxKind.ForInStatement */ ? ts.Diagnostics.The_left_hand_side_of_a_for_in_statement_cannot_use_a_type_annotation : ts.Diagnostics.The_left_hand_side_of_a_for_of_statement_cannot_use_a_type_annotation; return grammarErrorOnNode(firstDeclaration, diagnostic); } } } return false; } function checkGrammarAccessor(accessor) { if (!(accessor.flags & 16777216 /* NodeFlags.Ambient */) && (accessor.parent.kind !== 182 /* SyntaxKind.TypeLiteral */) && (accessor.parent.kind !== 258 /* SyntaxKind.InterfaceDeclaration */)) { if (languageVersion < 1 /* ScriptTarget.ES5 */) { return grammarErrorOnNode(accessor.name, ts.Diagnostics.Accessors_are_only_available_when_targeting_ECMAScript_5_and_higher); } if (languageVersion < 2 /* ScriptTarget.ES2015 */ && ts.isPrivateIdentifier(accessor.name)) { return grammarErrorOnNode(accessor.name, ts.Diagnostics.Private_identifiers_are_only_available_when_targeting_ECMAScript_2015_and_higher); } if (accessor.body === undefined && !ts.hasSyntacticModifier(accessor, 128 /* ModifierFlags.Abstract */)) { return grammarErrorAtPos(accessor, accessor.end - 1, ";".length, ts.Diagnostics._0_expected, "{"); } } if (accessor.body) { if (ts.hasSyntacticModifier(accessor, 128 /* ModifierFlags.Abstract */)) { return grammarErrorOnNode(accessor, ts.Diagnostics.An_abstract_accessor_cannot_have_an_implementation); } if (accessor.parent.kind === 182 /* SyntaxKind.TypeLiteral */ || accessor.parent.kind === 258 /* SyntaxKind.InterfaceDeclaration */) { return grammarErrorOnNode(accessor.body, ts.Diagnostics.An_implementation_cannot_be_declared_in_ambient_contexts); } } if (accessor.typeParameters) { return grammarErrorOnNode(accessor.name, ts.Diagnostics.An_accessor_cannot_have_type_parameters); } if (!doesAccessorHaveCorrectParameterCount(accessor)) { return grammarErrorOnNode(accessor.name, accessor.kind === 172 /* SyntaxKind.GetAccessor */ ? ts.Diagnostics.A_get_accessor_cannot_have_parameters : ts.Diagnostics.A_set_accessor_must_have_exactly_one_parameter); } if (accessor.kind === 173 /* SyntaxKind.SetAccessor */) { if (accessor.type) { return grammarErrorOnNode(accessor.name, ts.Diagnostics.A_set_accessor_cannot_have_a_return_type_annotation); } var parameter = ts.Debug.checkDefined(ts.getSetAccessorValueParameter(accessor), "Return value does not match parameter count assertion."); if (parameter.dotDotDotToken) { return grammarErrorOnNode(parameter.dotDotDotToken, ts.Diagnostics.A_set_accessor_cannot_have_rest_parameter); } if (parameter.questionToken) { return grammarErrorOnNode(parameter.questionToken, ts.Diagnostics.A_set_accessor_cannot_have_an_optional_parameter); } if (parameter.initializer) { return grammarErrorOnNode(accessor.name, ts.Diagnostics.A_set_accessor_parameter_cannot_have_an_initializer); } } return false; } /** Does the accessor have the right number of parameters? * A get accessor has no parameters or a single `this` parameter. * A set accessor has one parameter or a `this` parameter and one more parameter. */ function doesAccessorHaveCorrectParameterCount(accessor) { return getAccessorThisParameter(accessor) || accessor.parameters.length === (accessor.kind === 172 /* SyntaxKind.GetAccessor */ ? 0 : 1); } function getAccessorThisParameter(accessor) { if (accessor.parameters.length === (accessor.kind === 172 /* SyntaxKind.GetAccessor */ ? 1 : 2)) { return ts.getThisParameter(accessor); } } function checkGrammarTypeOperatorNode(node) { if (node.operator === 154 /* SyntaxKind.UniqueKeyword */) { if (node.type.kind !== 151 /* SyntaxKind.SymbolKeyword */) { return grammarErrorOnNode(node.type, ts.Diagnostics._0_expected, ts.tokenToString(151 /* SyntaxKind.SymbolKeyword */)); } var parent = ts.walkUpParenthesizedTypes(node.parent); if (ts.isInJSFile(parent) && ts.isJSDocTypeExpression(parent)) { var host_2 = ts.getJSDocHost(parent); if (host_2) { parent = ts.getSingleVariableOfVariableStatement(host_2) || host_2; } } switch (parent.kind) { case 254 /* SyntaxKind.VariableDeclaration */: var decl = parent; if (decl.name.kind !== 79 /* SyntaxKind.Identifier */) { return grammarErrorOnNode(node, ts.Diagnostics.unique_symbol_types_may_not_be_used_on_a_variable_declaration_with_a_binding_name); } if (!ts.isVariableDeclarationInVariableStatement(decl)) { return grammarErrorOnNode(node, ts.Diagnostics.unique_symbol_types_are_only_allowed_on_variables_in_a_variable_statement); } if (!(decl.parent.flags & 2 /* NodeFlags.Const */)) { return grammarErrorOnNode(parent.name, ts.Diagnostics.A_variable_whose_type_is_a_unique_symbol_type_must_be_const); } break; case 167 /* SyntaxKind.PropertyDeclaration */: if (!ts.isStatic(parent) || !ts.hasEffectiveReadonlyModifier(parent)) { return grammarErrorOnNode(parent.name, ts.Diagnostics.A_property_of_a_class_whose_type_is_a_unique_symbol_type_must_be_both_static_and_readonly); } break; case 166 /* SyntaxKind.PropertySignature */: if (!ts.hasSyntacticModifier(parent, 64 /* ModifierFlags.Readonly */)) { return grammarErrorOnNode(parent.name, ts.Diagnostics.A_property_of_an_interface_or_type_literal_whose_type_is_a_unique_symbol_type_must_be_readonly); } break; default: return grammarErrorOnNode(node, ts.Diagnostics.unique_symbol_types_are_not_allowed_here); } } else if (node.operator === 145 /* SyntaxKind.ReadonlyKeyword */) { if (node.type.kind !== 183 /* SyntaxKind.ArrayType */ && node.type.kind !== 184 /* SyntaxKind.TupleType */) { return grammarErrorOnFirstToken(node, ts.Diagnostics.readonly_type_modifier_is_only_permitted_on_array_and_tuple_literal_types, ts.tokenToString(151 /* SyntaxKind.SymbolKeyword */)); } } } function checkGrammarForInvalidDynamicName(node, message) { if (isNonBindableDynamicName(node)) { return grammarErrorOnNode(node, message); } } function checkGrammarMethod(node) { if (checkGrammarFunctionLikeDeclaration(node)) { return true; } if (node.kind === 169 /* SyntaxKind.MethodDeclaration */) { if (node.parent.kind === 205 /* SyntaxKind.ObjectLiteralExpression */) { // We only disallow modifier on a method declaration if it is a property of object-literal-expression if (node.modifiers && !(node.modifiers.length === 1 && ts.first(node.modifiers).kind === 131 /* SyntaxKind.AsyncKeyword */)) { return grammarErrorOnFirstToken(node, ts.Diagnostics.Modifiers_cannot_appear_here); } else if (checkGrammarForInvalidQuestionMark(node.questionToken, ts.Diagnostics.An_object_member_cannot_be_declared_optional)) { return true; } else if (checkGrammarForInvalidExclamationToken(node.exclamationToken, ts.Diagnostics.A_definite_assignment_assertion_is_not_permitted_in_this_context)) { return true; } else if (node.body === undefined) { return grammarErrorAtPos(node, node.end - 1, ";".length, ts.Diagnostics._0_expected, "{"); } } if (checkGrammarForGenerator(node)) { return true; } } if (ts.isClassLike(node.parent)) { if (languageVersion < 2 /* ScriptTarget.ES2015 */ && ts.isPrivateIdentifier(node.name)) { return grammarErrorOnNode(node.name, ts.Diagnostics.Private_identifiers_are_only_available_when_targeting_ECMAScript_2015_and_higher); } // Technically, computed properties in ambient contexts is disallowed // for property declarations and accessors too, not just methods. // However, property declarations disallow computed names in general, // and accessors are not allowed in ambient contexts in general, // so this error only really matters for methods. if (node.flags & 16777216 /* NodeFlags.Ambient */) { return checkGrammarForInvalidDynamicName(node.name, ts.Diagnostics.A_computed_property_name_in_an_ambient_context_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type); } else if (node.kind === 169 /* SyntaxKind.MethodDeclaration */ && !node.body) { return checkGrammarForInvalidDynamicName(node.name, ts.Diagnostics.A_computed_property_name_in_a_method_overload_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type); } } else if (node.parent.kind === 258 /* SyntaxKind.InterfaceDeclaration */) { return checkGrammarForInvalidDynamicName(node.name, ts.Diagnostics.A_computed_property_name_in_an_interface_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type); } else if (node.parent.kind === 182 /* SyntaxKind.TypeLiteral */) { return checkGrammarForInvalidDynamicName(node.name, ts.Diagnostics.A_computed_property_name_in_a_type_literal_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type); } } function checkGrammarBreakOrContinueStatement(node) { var current = node; while (current) { if (ts.isFunctionLikeOrClassStaticBlockDeclaration(current)) { return grammarErrorOnNode(node, ts.Diagnostics.Jump_target_cannot_cross_function_boundary); } switch (current.kind) { case 250 /* SyntaxKind.LabeledStatement */: if (node.label && current.label.escapedText === node.label.escapedText) { // found matching label - verify that label usage is correct // continue can only target labels that are on iteration statements var isMisplacedContinueLabel = node.kind === 245 /* SyntaxKind.ContinueStatement */ && !ts.isIterationStatement(current.statement, /*lookInLabeledStatement*/ true); if (isMisplacedContinueLabel) { return grammarErrorOnNode(node, ts.Diagnostics.A_continue_statement_can_only_jump_to_a_label_of_an_enclosing_iteration_statement); } return false; } break; case 249 /* SyntaxKind.SwitchStatement */: if (node.kind === 246 /* SyntaxKind.BreakStatement */ && !node.label) { // unlabeled break within switch statement - ok return false; } break; default: if (ts.isIterationStatement(current, /*lookInLabeledStatement*/ false) && !node.label) { // unlabeled break or continue within iteration statement - ok return false; } break; } current = current.parent; } if (node.label) { var message = node.kind === 246 /* SyntaxKind.BreakStatement */ ? ts.Diagnostics.A_break_statement_can_only_jump_to_a_label_of_an_enclosing_statement : ts.Diagnostics.A_continue_statement_can_only_jump_to_a_label_of_an_enclosing_iteration_statement; return grammarErrorOnNode(node, message); } else { var message = node.kind === 246 /* SyntaxKind.BreakStatement */ ? ts.Diagnostics.A_break_statement_can_only_be_used_within_an_enclosing_iteration_or_switch_statement : ts.Diagnostics.A_continue_statement_can_only_be_used_within_an_enclosing_iteration_statement; return grammarErrorOnNode(node, message); } } function checkGrammarBindingElement(node) { if (node.dotDotDotToken) { var elements = node.parent.elements; if (node !== ts.last(elements)) { return grammarErrorOnNode(node, ts.Diagnostics.A_rest_element_must_be_last_in_a_destructuring_pattern); } checkGrammarForDisallowedTrailingComma(elements, ts.Diagnostics.A_rest_parameter_or_binding_pattern_may_not_have_a_trailing_comma); if (node.propertyName) { return grammarErrorOnNode(node.name, ts.Diagnostics.A_rest_element_cannot_have_a_property_name); } } if (node.dotDotDotToken && node.initializer) { // Error on equals token which immediately precedes the initializer return grammarErrorAtPos(node, node.initializer.pos - 1, 1, ts.Diagnostics.A_rest_element_cannot_have_an_initializer); } } function isStringOrNumberLiteralExpression(expr) { return ts.isStringOrNumericLiteralLike(expr) || expr.kind === 219 /* SyntaxKind.PrefixUnaryExpression */ && expr.operator === 40 /* SyntaxKind.MinusToken */ && expr.operand.kind === 8 /* SyntaxKind.NumericLiteral */; } function isBigIntLiteralExpression(expr) { return expr.kind === 9 /* SyntaxKind.BigIntLiteral */ || expr.kind === 219 /* SyntaxKind.PrefixUnaryExpression */ && expr.operator === 40 /* SyntaxKind.MinusToken */ && expr.operand.kind === 9 /* SyntaxKind.BigIntLiteral */; } function isSimpleLiteralEnumReference(expr) { if ((ts.isPropertyAccessExpression(expr) || (ts.isElementAccessExpression(expr) && isStringOrNumberLiteralExpression(expr.argumentExpression))) && ts.isEntityNameExpression(expr.expression)) { return !!(checkExpressionCached(expr).flags & 1024 /* TypeFlags.EnumLiteral */); } } function checkAmbientInitializer(node) { var initializer = node.initializer; if (initializer) { var isInvalidInitializer = !(isStringOrNumberLiteralExpression(initializer) || isSimpleLiteralEnumReference(initializer) || initializer.kind === 110 /* SyntaxKind.TrueKeyword */ || initializer.kind === 95 /* SyntaxKind.FalseKeyword */ || isBigIntLiteralExpression(initializer)); var isConstOrReadonly = ts.isDeclarationReadonly(node) || ts.isVariableDeclaration(node) && ts.isVarConst(node); if (isConstOrReadonly && !node.type) { if (isInvalidInitializer) { return grammarErrorOnNode(initializer, ts.Diagnostics.A_const_initializer_in_an_ambient_context_must_be_a_string_or_numeric_literal_or_literal_enum_reference); } } else { return grammarErrorOnNode(initializer, ts.Diagnostics.Initializers_are_not_allowed_in_ambient_contexts); } if (!isConstOrReadonly || isInvalidInitializer) { return grammarErrorOnNode(initializer, ts.Diagnostics.Initializers_are_not_allowed_in_ambient_contexts); } } } function checkGrammarVariableDeclaration(node) { if (node.parent.parent.kind !== 243 /* SyntaxKind.ForInStatement */ && node.parent.parent.kind !== 244 /* SyntaxKind.ForOfStatement */) { if (node.flags & 16777216 /* NodeFlags.Ambient */) { checkAmbientInitializer(node); } else if (!node.initializer) { if (ts.isBindingPattern(node.name) && !ts.isBindingPattern(node.parent)) { return grammarErrorOnNode(node, ts.Diagnostics.A_destructuring_declaration_must_have_an_initializer); } if (ts.isVarConst(node)) { return grammarErrorOnNode(node, ts.Diagnostics.const_declarations_must_be_initialized); } } } if (node.exclamationToken && (node.parent.parent.kind !== 237 /* SyntaxKind.VariableStatement */ || !node.type || node.initializer || node.flags & 16777216 /* NodeFlags.Ambient */)) { var message = node.initializer ? ts.Diagnostics.Declarations_with_initializers_cannot_also_have_definite_assignment_assertions : !node.type ? ts.Diagnostics.Declarations_with_definite_assignment_assertions_must_also_have_type_annotations : ts.Diagnostics.A_definite_assignment_assertion_is_not_permitted_in_this_context; return grammarErrorOnNode(node.exclamationToken, message); } if ((moduleKind < ts.ModuleKind.ES2015 || ts.getSourceFileOfNode(node).impliedNodeFormat === ts.ModuleKind.CommonJS) && moduleKind !== ts.ModuleKind.System && !(node.parent.parent.flags & 16777216 /* NodeFlags.Ambient */) && ts.hasSyntacticModifier(node.parent.parent, 1 /* ModifierFlags.Export */)) { checkESModuleMarker(node.name); } var checkLetConstNames = (ts.isLet(node) || ts.isVarConst(node)); // 1. LexicalDeclaration : LetOrConst BindingList ; // It is a Syntax Error if the BoundNames of BindingList contains "let". // 2. ForDeclaration: ForDeclaration : LetOrConst ForBinding // It is a Syntax Error if the BoundNames of ForDeclaration contains "let". // It is a SyntaxError if a VariableDeclaration or VariableDeclarationNoIn occurs within strict code // and its Identifier is eval or arguments return checkLetConstNames && checkGrammarNameInLetOrConstDeclarations(node.name); } function checkESModuleMarker(name) { if (name.kind === 79 /* SyntaxKind.Identifier */) { if (ts.idText(name) === "__esModule") { return grammarErrorOnNodeSkippedOn("noEmit", name, ts.Diagnostics.Identifier_expected_esModule_is_reserved_as_an_exported_marker_when_transforming_ECMAScript_modules); } } else { var elements = name.elements; for (var _i = 0, elements_2 = elements; _i < elements_2.length; _i++) { var element = elements_2[_i]; if (!ts.isOmittedExpression(element)) { return checkESModuleMarker(element.name); } } } return false; } function checkGrammarNameInLetOrConstDeclarations(name) { if (name.kind === 79 /* SyntaxKind.Identifier */) { if (name.originalKeywordKind === 119 /* SyntaxKind.LetKeyword */) { return grammarErrorOnNode(name, ts.Diagnostics.let_is_not_allowed_to_be_used_as_a_name_in_let_or_const_declarations); } } else { var elements = name.elements; for (var _i = 0, elements_3 = elements; _i < elements_3.length; _i++) { var element = elements_3[_i]; if (!ts.isOmittedExpression(element)) { checkGrammarNameInLetOrConstDeclarations(element.name); } } } return false; } function checkGrammarVariableDeclarationList(declarationList) { var declarations = declarationList.declarations; if (checkGrammarForDisallowedTrailingComma(declarationList.declarations)) { return true; } if (!declarationList.declarations.length) { return grammarErrorAtPos(declarationList, declarations.pos, declarations.end - declarations.pos, ts.Diagnostics.Variable_declaration_list_cannot_be_empty); } return false; } function allowLetAndConstDeclarations(parent) { switch (parent.kind) { case 239 /* SyntaxKind.IfStatement */: case 240 /* SyntaxKind.DoStatement */: case 241 /* SyntaxKind.WhileStatement */: case 248 /* SyntaxKind.WithStatement */: case 242 /* SyntaxKind.ForStatement */: case 243 /* SyntaxKind.ForInStatement */: case 244 /* SyntaxKind.ForOfStatement */: return false; case 250 /* SyntaxKind.LabeledStatement */: return allowLetAndConstDeclarations(parent.parent); } return true; } function checkGrammarForDisallowedLetOrConstStatement(node) { if (!allowLetAndConstDeclarations(node.parent)) { if (ts.isLet(node.declarationList)) { return grammarErrorOnNode(node, ts.Diagnostics.let_declarations_can_only_be_declared_inside_a_block); } else if (ts.isVarConst(node.declarationList)) { return grammarErrorOnNode(node, ts.Diagnostics.const_declarations_can_only_be_declared_inside_a_block); } } } function checkGrammarMetaProperty(node) { var escapedText = node.name.escapedText; switch (node.keywordToken) { case 103 /* SyntaxKind.NewKeyword */: if (escapedText !== "target") { return grammarErrorOnNode(node.name, ts.Diagnostics._0_is_not_a_valid_meta_property_for_keyword_1_Did_you_mean_2, node.name.escapedText, ts.tokenToString(node.keywordToken), "target"); } break; case 100 /* SyntaxKind.ImportKeyword */: if (escapedText !== "meta") { return grammarErrorOnNode(node.name, ts.Diagnostics._0_is_not_a_valid_meta_property_for_keyword_1_Did_you_mean_2, node.name.escapedText, ts.tokenToString(node.keywordToken), "meta"); } break; } } function hasParseDiagnostics(sourceFile) { return sourceFile.parseDiagnostics.length > 0; } function grammarErrorOnFirstToken(node, message, arg0, arg1, arg2) { var sourceFile = ts.getSourceFileOfNode(node); if (!hasParseDiagnostics(sourceFile)) { var span = ts.getSpanOfTokenAtPosition(sourceFile, node.pos); diagnostics.add(ts.createFileDiagnostic(sourceFile, span.start, span.length, message, arg0, arg1, arg2)); return true; } return false; } function grammarErrorAtPos(nodeForSourceFile, start, length, message, arg0, arg1, arg2) { var sourceFile = ts.getSourceFileOfNode(nodeForSourceFile); if (!hasParseDiagnostics(sourceFile)) { diagnostics.add(ts.createFileDiagnostic(sourceFile, start, length, message, arg0, arg1, arg2)); return true; } return false; } function grammarErrorOnNodeSkippedOn(key, node, message, arg0, arg1, arg2) { var sourceFile = ts.getSourceFileOfNode(node); if (!hasParseDiagnostics(sourceFile)) { errorSkippedOn(key, node, message, arg0, arg1, arg2); return true; } return false; } function grammarErrorOnNode(node, message, arg0, arg1, arg2) { var sourceFile = ts.getSourceFileOfNode(node); if (!hasParseDiagnostics(sourceFile)) { diagnostics.add(ts.createDiagnosticForNode(node, message, arg0, arg1, arg2)); return true; } return false; } function checkGrammarConstructorTypeParameters(node) { var jsdocTypeParameters = ts.isInJSFile(node) ? ts.getJSDocTypeParameterDeclarations(node) : undefined; var range = node.typeParameters || jsdocTypeParameters && ts.firstOrUndefined(jsdocTypeParameters); if (range) { var pos = range.pos === range.end ? range.pos : ts.skipTrivia(ts.getSourceFileOfNode(node).text, range.pos); return grammarErrorAtPos(node, pos, range.end - pos, ts.Diagnostics.Type_parameters_cannot_appear_on_a_constructor_declaration); } } function checkGrammarConstructorTypeAnnotation(node) { var type = ts.getEffectiveReturnTypeNode(node); if (type) { return grammarErrorOnNode(type, ts.Diagnostics.Type_annotation_cannot_appear_on_a_constructor_declaration); } } function checkGrammarProperty(node) { if (ts.isComputedPropertyName(node.name) && ts.isBinaryExpression(node.name.expression) && node.name.expression.operatorToken.kind === 101 /* SyntaxKind.InKeyword */) { return grammarErrorOnNode(node.parent.members[0], ts.Diagnostics.A_mapped_type_may_not_declare_properties_or_methods); } if (ts.isClassLike(node.parent)) { if (ts.isStringLiteral(node.name) && node.name.text === "constructor") { return grammarErrorOnNode(node.name, ts.Diagnostics.Classes_may_not_have_a_field_named_constructor); } if (checkGrammarForInvalidDynamicName(node.name, ts.Diagnostics.A_computed_property_name_in_a_class_property_declaration_must_have_a_simple_literal_type_or_a_unique_symbol_type)) { return true; } if (languageVersion < 2 /* ScriptTarget.ES2015 */ && ts.isPrivateIdentifier(node.name)) { return grammarErrorOnNode(node.name, ts.Diagnostics.Private_identifiers_are_only_available_when_targeting_ECMAScript_2015_and_higher); } } else if (node.parent.kind === 258 /* SyntaxKind.InterfaceDeclaration */) { if (checkGrammarForInvalidDynamicName(node.name, ts.Diagnostics.A_computed_property_name_in_an_interface_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type)) { return true; } if (node.initializer) { return grammarErrorOnNode(node.initializer, ts.Diagnostics.An_interface_property_cannot_have_an_initializer); } } else if (ts.isTypeLiteralNode(node.parent)) { if (checkGrammarForInvalidDynamicName(node.name, ts.Diagnostics.A_computed_property_name_in_a_type_literal_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type)) { return true; } if (node.initializer) { return grammarErrorOnNode(node.initializer, ts.Diagnostics.A_type_literal_property_cannot_have_an_initializer); } } if (node.flags & 16777216 /* NodeFlags.Ambient */) { checkAmbientInitializer(node); } if (ts.isPropertyDeclaration(node) && node.exclamationToken && (!ts.isClassLike(node.parent) || !node.type || node.initializer || node.flags & 16777216 /* NodeFlags.Ambient */ || ts.isStatic(node) || ts.hasAbstractModifier(node))) { var message = node.initializer ? ts.Diagnostics.Declarations_with_initializers_cannot_also_have_definite_assignment_assertions : !node.type ? ts.Diagnostics.Declarations_with_definite_assignment_assertions_must_also_have_type_annotations : ts.Diagnostics.A_definite_assignment_assertion_is_not_permitted_in_this_context; return grammarErrorOnNode(node.exclamationToken, message); } } function checkGrammarTopLevelElementForRequiredDeclareModifier(node) { // A declare modifier is required for any top level .d.ts declaration except export=, export default, export as namespace // interfaces and imports categories: // // DeclarationElement: // ExportAssignment // export_opt InterfaceDeclaration // export_opt TypeAliasDeclaration // export_opt ImportDeclaration // export_opt ExternalImportDeclaration // export_opt AmbientDeclaration // // TODO: The spec needs to be amended to reflect this grammar. if (node.kind === 258 /* SyntaxKind.InterfaceDeclaration */ || node.kind === 259 /* SyntaxKind.TypeAliasDeclaration */ || node.kind === 266 /* SyntaxKind.ImportDeclaration */ || node.kind === 265 /* SyntaxKind.ImportEqualsDeclaration */ || node.kind === 272 /* SyntaxKind.ExportDeclaration */ || node.kind === 271 /* SyntaxKind.ExportAssignment */ || node.kind === 264 /* SyntaxKind.NamespaceExportDeclaration */ || ts.hasSyntacticModifier(node, 2 /* ModifierFlags.Ambient */ | 1 /* ModifierFlags.Export */ | 512 /* ModifierFlags.Default */)) { return false; } return grammarErrorOnFirstToken(node, ts.Diagnostics.Top_level_declarations_in_d_ts_files_must_start_with_either_a_declare_or_export_modifier); } function checkGrammarTopLevelElementsForRequiredDeclareModifier(file) { for (var _i = 0, _a = file.statements; _i < _a.length; _i++) { var decl = _a[_i]; if (ts.isDeclaration(decl) || decl.kind === 237 /* SyntaxKind.VariableStatement */) { if (checkGrammarTopLevelElementForRequiredDeclareModifier(decl)) { return true; } } } return false; } function checkGrammarSourceFile(node) { return !!(node.flags & 16777216 /* NodeFlags.Ambient */) && checkGrammarTopLevelElementsForRequiredDeclareModifier(node); } function checkGrammarStatementInAmbientContext(node) { if (node.flags & 16777216 /* NodeFlags.Ambient */) { // Find containing block which is either Block, ModuleBlock, SourceFile var links = getNodeLinks(node); if (!links.hasReportedStatementInAmbientContext && (ts.isFunctionLike(node.parent) || ts.isAccessor(node.parent))) { return getNodeLinks(node).hasReportedStatementInAmbientContext = grammarErrorOnFirstToken(node, ts.Diagnostics.An_implementation_cannot_be_declared_in_ambient_contexts); } // We are either parented by another statement, or some sort of block. // If we're in a block, we only want to really report an error once // to prevent noisiness. So use a bit on the block to indicate if // this has already been reported, and don't report if it has. // if (node.parent.kind === 235 /* SyntaxKind.Block */ || node.parent.kind === 262 /* SyntaxKind.ModuleBlock */ || node.parent.kind === 305 /* SyntaxKind.SourceFile */) { var links_2 = getNodeLinks(node.parent); // Check if the containing block ever report this error if (!links_2.hasReportedStatementInAmbientContext) { return links_2.hasReportedStatementInAmbientContext = grammarErrorOnFirstToken(node, ts.Diagnostics.Statements_are_not_allowed_in_ambient_contexts); } } else { // We must be parented by a statement. If so, there's no need // to report the error as our parent will have already done it. // Debug.assert(isStatement(node.parent)); } } return false; } function checkGrammarNumericLiteral(node) { // Grammar checking if (node.numericLiteralFlags & 32 /* TokenFlags.Octal */) { var diagnosticMessage = void 0; if (languageVersion >= 1 /* ScriptTarget.ES5 */) { diagnosticMessage = ts.Diagnostics.Octal_literals_are_not_available_when_targeting_ECMAScript_5_and_higher_Use_the_syntax_0; } else if (ts.isChildOfNodeWithKind(node, 196 /* SyntaxKind.LiteralType */)) { diagnosticMessage = ts.Diagnostics.Octal_literal_types_must_use_ES2015_syntax_Use_the_syntax_0; } else if (ts.isChildOfNodeWithKind(node, 299 /* SyntaxKind.EnumMember */)) { diagnosticMessage = ts.Diagnostics.Octal_literals_are_not_allowed_in_enums_members_initializer_Use_the_syntax_0; } if (diagnosticMessage) { var withMinus = ts.isPrefixUnaryExpression(node.parent) && node.parent.operator === 40 /* SyntaxKind.MinusToken */; var literal = (withMinus ? "-" : "") + "0o" + node.text; return grammarErrorOnNode(withMinus ? node.parent : node, diagnosticMessage, literal); } } // Realism (size) checking checkNumericLiteralValueSize(node); return false; } function checkNumericLiteralValueSize(node) { // We should test against `getTextOfNode(node)` rather than `node.text`, because `node.text` for large numeric literals can contain "." // e.g. `node.text` for numeric literal `1100000000000000000000` is `1.1e21`. var isFractional = ts.getTextOfNode(node).indexOf(".") !== -1; var isScientific = node.numericLiteralFlags & 16 /* TokenFlags.Scientific */; // Scientific notation (e.g. 2e54 and 1e00000000010) can't be converted to bigint // Fractional numbers (e.g. 9000000000000000.001) are inherently imprecise anyway if (isFractional || isScientific) { return; } // Here `node` is guaranteed to be a numeric literal representing an integer. // We need to judge whether the integer `node` represents is <= 2 ** 53 - 1, which can be accomplished by comparing to `value` defined below because: // 1) when `node` represents an integer <= 2 ** 53 - 1, `node.text` is its exact string representation and thus `value` precisely represents the integer. // 2) otherwise, although `node.text` may be imprecise string representation, its mathematical value and consequently `value` cannot be less than 2 ** 53, // thus the result of the predicate won't be affected. var value = +node.text; if (value <= Math.pow(2, 53) - 1) { return; } addErrorOrSuggestion(/*isError*/ false, ts.createDiagnosticForNode(node, ts.Diagnostics.Numeric_literals_with_absolute_values_equal_to_2_53_or_greater_are_too_large_to_be_represented_accurately_as_integers)); } function checkGrammarBigIntLiteral(node) { var literalType = ts.isLiteralTypeNode(node.parent) || ts.isPrefixUnaryExpression(node.parent) && ts.isLiteralTypeNode(node.parent.parent); if (!literalType) { if (languageVersion < 7 /* ScriptTarget.ES2020 */) { if (grammarErrorOnNode(node, ts.Diagnostics.BigInt_literals_are_not_available_when_targeting_lower_than_ES2020)) { return true; } } } return false; } function grammarErrorAfterFirstToken(node, message, arg0, arg1, arg2) { var sourceFile = ts.getSourceFileOfNode(node); if (!hasParseDiagnostics(sourceFile)) { var span = ts.getSpanOfTokenAtPosition(sourceFile, node.pos); diagnostics.add(ts.createFileDiagnostic(sourceFile, ts.textSpanEnd(span), /*length*/ 0, message, arg0, arg1, arg2)); return true; } return false; } function getAmbientModules() { if (!ambientModulesCache) { ambientModulesCache = []; globals.forEach(function (global, sym) { // No need to `unescapeLeadingUnderscores`, an escaped symbol is never an ambient module. if (ambientModuleSymbolRegex.test(sym)) { ambientModulesCache.push(global); } }); } return ambientModulesCache; } function checkGrammarImportClause(node) { var _a; if (node.isTypeOnly && node.name && node.namedBindings) { return grammarErrorOnNode(node, ts.Diagnostics.A_type_only_import_can_specify_a_default_import_or_named_bindings_but_not_both); } if (node.isTypeOnly && ((_a = node.namedBindings) === null || _a === void 0 ? void 0 : _a.kind) === 269 /* SyntaxKind.NamedImports */) { return checkGrammarNamedImportsOrExports(node.namedBindings); } return false; } function checkGrammarNamedImportsOrExports(namedBindings) { return !!ts.forEach(namedBindings.elements, function (specifier) { if (specifier.isTypeOnly) { return grammarErrorOnFirstToken(specifier, specifier.kind === 270 /* SyntaxKind.ImportSpecifier */ ? ts.Diagnostics.The_type_modifier_cannot_be_used_on_a_named_import_when_import_type_is_used_on_its_import_statement : ts.Diagnostics.The_type_modifier_cannot_be_used_on_a_named_export_when_export_type_is_used_on_its_export_statement); } }); } function checkGrammarImportCallExpression(node) { if (moduleKind === ts.ModuleKind.ES2015) { return grammarErrorOnNode(node, ts.Diagnostics.Dynamic_imports_are_only_supported_when_the_module_flag_is_set_to_es2020_es2022_esnext_commonjs_amd_system_umd_node16_or_nodenext); } if (node.typeArguments) { return grammarErrorOnNode(node, ts.Diagnostics.This_use_of_import_is_invalid_import_calls_can_be_written_but_they_must_have_parentheses_and_cannot_have_type_arguments); } var nodeArguments = node.arguments; if (moduleKind !== ts.ModuleKind.ESNext && moduleKind !== ts.ModuleKind.NodeNext) { // We are allowed trailing comma after proposal-import-assertions. checkGrammarForDisallowedTrailingComma(nodeArguments); if (nodeArguments.length > 1) { var assertionArgument = nodeArguments[1]; return grammarErrorOnNode(assertionArgument, ts.Diagnostics.Dynamic_imports_only_support_a_second_argument_when_the_module_option_is_set_to_esnext_node16_or_nodenext); } } if (nodeArguments.length === 0 || nodeArguments.length > 2) { return grammarErrorOnNode(node, ts.Diagnostics.Dynamic_imports_can_only_accept_a_module_specifier_and_an_optional_assertion_as_arguments); } // see: parseArgumentOrArrayLiteralElement...we use this function which parse arguments of callExpression to parse specifier for dynamic import. // parseArgumentOrArrayLiteralElement allows spread element to be in an argument list which is not allowed as specifier in dynamic import. var spreadElement = ts.find(nodeArguments, ts.isSpreadElement); if (spreadElement) { return grammarErrorOnNode(spreadElement, ts.Diagnostics.Argument_of_dynamic_import_cannot_be_spread_element); } return false; } function findMatchingTypeReferenceOrTypeAliasReference(source, unionTarget) { var sourceObjectFlags = ts.getObjectFlags(source); if (sourceObjectFlags & (4 /* ObjectFlags.Reference */ | 16 /* ObjectFlags.Anonymous */) && unionTarget.flags & 1048576 /* TypeFlags.Union */) { return ts.find(unionTarget.types, function (target) { if (target.flags & 524288 /* TypeFlags.Object */) { var overlapObjFlags = sourceObjectFlags & ts.getObjectFlags(target); if (overlapObjFlags & 4 /* ObjectFlags.Reference */) { return source.target === target.target; } if (overlapObjFlags & 16 /* ObjectFlags.Anonymous */) { return !!source.aliasSymbol && source.aliasSymbol === target.aliasSymbol; } } return false; }); } } function findBestTypeForObjectLiteral(source, unionTarget) { if (ts.getObjectFlags(source) & 128 /* ObjectFlags.ObjectLiteral */ && someType(unionTarget, isArrayLikeType)) { return ts.find(unionTarget.types, function (t) { return !isArrayLikeType(t); }); } } function findBestTypeForInvokable(source, unionTarget) { var signatureKind = 0 /* SignatureKind.Call */; var hasSignatures = getSignaturesOfType(source, signatureKind).length > 0 || (signatureKind = 1 /* SignatureKind.Construct */, getSignaturesOfType(source, signatureKind).length > 0); if (hasSignatures) { return ts.find(unionTarget.types, function (t) { return getSignaturesOfType(t, signatureKind).length > 0; }); } } function findMostOverlappyType(source, unionTarget) { var bestMatch; if (!(source.flags & (131068 /* TypeFlags.Primitive */ | 406847488 /* TypeFlags.InstantiablePrimitive */))) { var matchingCount = 0; for (var _i = 0, _a = unionTarget.types; _i < _a.length; _i++) { var target = _a[_i]; if (!(target.flags & (131068 /* TypeFlags.Primitive */ | 406847488 /* TypeFlags.InstantiablePrimitive */))) { var overlap = getIntersectionType([getIndexType(source), getIndexType(target)]); if (overlap.flags & 4194304 /* TypeFlags.Index */) { // perfect overlap of keys return target; } else if (isUnitType(overlap) || overlap.flags & 1048576 /* TypeFlags.Union */) { // We only want to account for literal types otherwise. // If we have a union of index types, it seems likely that we // needed to elaborate between two generic mapped types anyway. var len = overlap.flags & 1048576 /* TypeFlags.Union */ ? ts.countWhere(overlap.types, isUnitType) : 1; if (len >= matchingCount) { bestMatch = target; matchingCount = len; } } } } } return bestMatch; } function filterPrimitivesIfContainsNonPrimitive(type) { if (maybeTypeOfKind(type, 67108864 /* TypeFlags.NonPrimitive */)) { var result = filterType(type, function (t) { return !(t.flags & 131068 /* TypeFlags.Primitive */); }); if (!(result.flags & 131072 /* TypeFlags.Never */)) { return result; } } return type; } // Keep this up-to-date with the same logic within `getApparentTypeOfContextualType`, since they should behave similarly function findMatchingDiscriminantType(source, target, isRelatedTo, skipPartial) { if (target.flags & 1048576 /* TypeFlags.Union */ && source.flags & (2097152 /* TypeFlags.Intersection */ | 524288 /* TypeFlags.Object */)) { var match = getMatchingUnionConstituentForType(target, source); if (match) { return match; } var sourceProperties = getPropertiesOfType(source); if (sourceProperties) { var sourcePropertiesFiltered = findDiscriminantProperties(sourceProperties, target); if (sourcePropertiesFiltered) { return discriminateTypeByDiscriminableItems(target, ts.map(sourcePropertiesFiltered, function (p) { return [function () { return getTypeOfSymbol(p); }, p.escapedName]; }), isRelatedTo, /*defaultValue*/ undefined, skipPartial); } } } return undefined; } } ts.createTypeChecker = createTypeChecker; function isNotAccessor(declaration) { // Accessors check for their own matching duplicates, and in contexts where they are valid, there are already duplicate identifier checks return !ts.isAccessor(declaration); } function isNotOverload(declaration) { return (declaration.kind !== 256 /* SyntaxKind.FunctionDeclaration */ && declaration.kind !== 169 /* SyntaxKind.MethodDeclaration */) || !!declaration.body; } /** Like 'isDeclarationName', but returns true for LHS of `import { x as y }` or `export { x as y }`. */ function isDeclarationNameOrImportPropertyName(name) { switch (name.parent.kind) { case 270 /* SyntaxKind.ImportSpecifier */: case 275 /* SyntaxKind.ExportSpecifier */: return ts.isIdentifier(name); default: return ts.isDeclarationName(name); } } var JsxNames; (function (JsxNames) { JsxNames.JSX = "JSX"; JsxNames.IntrinsicElements = "IntrinsicElements"; JsxNames.ElementClass = "ElementClass"; JsxNames.ElementAttributesPropertyNameContainer = "ElementAttributesProperty"; // TODO: Deprecate and remove support JsxNames.ElementChildrenAttributeNameContainer = "ElementChildrenAttribute"; JsxNames.Element = "Element"; JsxNames.IntrinsicAttributes = "IntrinsicAttributes"; JsxNames.IntrinsicClassAttributes = "IntrinsicClassAttributes"; JsxNames.LibraryManagedAttributes = "LibraryManagedAttributes"; })(JsxNames || (JsxNames = {})); function getIterationTypesKeyFromIterationTypeKind(typeKind) { switch (typeKind) { case 0 /* IterationTypeKind.Yield */: return "yieldType"; case 1 /* IterationTypeKind.Return */: return "returnType"; case 2 /* IterationTypeKind.Next */: return "nextType"; } } function signatureHasRestParameter(s) { return !!(s.flags & 1 /* SignatureFlags.HasRestParameter */); } ts.signatureHasRestParameter = signatureHasRestParameter; function signatureHasLiteralTypes(s) { return !!(s.flags & 2 /* SignatureFlags.HasLiteralTypes */); } ts.signatureHasLiteralTypes = signatureHasLiteralTypes; })(ts || (ts = {})); var ts; (function (ts) { function visitNode(node, visitor, test, lift) { if (node === undefined || visitor === undefined) { return node; } var visited = visitor(node); if (visited === node) { return node; } var visitedNode; if (visited === undefined) { return undefined; } else if (ts.isArray(visited)) { visitedNode = (lift || extractSingleNode)(visited); } else { visitedNode = visited; } ts.Debug.assertNode(visitedNode, test); return visitedNode; } ts.visitNode = visitNode; /** * Visits a NodeArray using the supplied visitor, possibly returning a new NodeArray in its place. * * @param nodes The NodeArray to visit. * @param visitor The callback used to visit a Node. * @param test A node test to execute for each node. * @param start An optional value indicating the starting offset at which to start visiting. * @param count An optional value indicating the maximum number of nodes to visit. */ function visitNodes(nodes, visitor, test, start, count) { if (nodes === undefined || visitor === undefined) { return nodes; } var updated; // Ensure start and count have valid values var length = nodes.length; if (start === undefined || start < 0) { start = 0; } if (count === undefined || count > length - start) { count = length - start; } var hasTrailingComma; var pos = -1; var end = -1; if (start > 0 || count < length) { // If we are not visiting all of the original nodes, we must always create a new array. // Since this is a fragment of a node array, we do not copy over the previous location // and will only copy over `hasTrailingComma` if we are including the last element. updated = []; hasTrailingComma = nodes.hasTrailingComma && start + count === length; } // Visit each original node. for (var i = 0; i < count; i++) { var node = nodes[i + start]; var visited = node !== undefined ? visitor(node) : undefined; if (updated !== undefined || visited === undefined || visited !== node) { if (updated === undefined) { // Ensure we have a copy of `nodes`, up to the current index. updated = nodes.slice(0, i); hasTrailingComma = nodes.hasTrailingComma; pos = nodes.pos; end = nodes.end; } if (visited) { if (ts.isArray(visited)) { for (var _i = 0, visited_1 = visited; _i < visited_1.length; _i++) { var visitedNode = visited_1[_i]; void ts.Debug.assertNode(visitedNode, test); updated.push(visitedNode); } } else { void ts.Debug.assertNode(visited, test); updated.push(visited); } } } } if (updated) { // TODO(rbuckton): Remove dependency on `ts.factory` in favor of a provided factory. var updatedArray = ts.factory.createNodeArray(updated, hasTrailingComma); ts.setTextRangePosEnd(updatedArray, pos, end); return updatedArray; } return nodes; } ts.visitNodes = visitNodes; /** * Starts a new lexical environment and visits a statement list, ending the lexical environment * and merging hoisted declarations upon completion. */ function visitLexicalEnvironment(statements, visitor, context, start, ensureUseStrict, nodesVisitor) { if (nodesVisitor === void 0) { nodesVisitor = visitNodes; } context.startLexicalEnvironment(); statements = nodesVisitor(statements, visitor, ts.isStatement, start); if (ensureUseStrict) statements = context.factory.ensureUseStrict(statements); return ts.factory.mergeLexicalEnvironment(statements, context.endLexicalEnvironment()); } ts.visitLexicalEnvironment = visitLexicalEnvironment; function visitParameterList(nodes, visitor, context, nodesVisitor) { if (nodesVisitor === void 0) { nodesVisitor = visitNodes; } var updated; context.startLexicalEnvironment(); if (nodes) { context.setLexicalEnvironmentFlags(1 /* LexicalEnvironmentFlags.InParameters */, true); updated = nodesVisitor(nodes, visitor, ts.isParameterDeclaration); // As of ES2015, any runtime execution of that occurs in for a parameter (such as evaluating an // initializer or a binding pattern), occurs in its own lexical scope. As a result, any expression // that we might transform that introduces a temporary variable would fail as the temporary variable // exists in a different lexical scope. To address this, we move any binding patterns and initializers // in a parameter list to the body if we detect a variable being hoisted while visiting a parameter list // when the emit target is greater than ES2015. if (context.getLexicalEnvironmentFlags() & 2 /* LexicalEnvironmentFlags.VariablesHoistedInParameters */ && ts.getEmitScriptTarget(context.getCompilerOptions()) >= 2 /* ScriptTarget.ES2015 */) { updated = addDefaultValueAssignmentsIfNeeded(updated, context); } context.setLexicalEnvironmentFlags(1 /* LexicalEnvironmentFlags.InParameters */, false); } context.suspendLexicalEnvironment(); return updated; } ts.visitParameterList = visitParameterList; function addDefaultValueAssignmentsIfNeeded(parameters, context) { var result; for (var i = 0; i < parameters.length; i++) { var parameter = parameters[i]; var updated = addDefaultValueAssignmentIfNeeded(parameter, context); if (result || updated !== parameter) { if (!result) result = parameters.slice(0, i); result[i] = updated; } } if (result) { return ts.setTextRange(context.factory.createNodeArray(result, parameters.hasTrailingComma), parameters); } return parameters; } function addDefaultValueAssignmentIfNeeded(parameter, context) { // A rest parameter cannot have a binding pattern or an initializer, // so let's just ignore it. return parameter.dotDotDotToken ? parameter : ts.isBindingPattern(parameter.name) ? addDefaultValueAssignmentForBindingPattern(parameter, context) : parameter.initializer ? addDefaultValueAssignmentForInitializer(parameter, parameter.name, parameter.initializer, context) : parameter; } function addDefaultValueAssignmentForBindingPattern(parameter, context) { var factory = context.factory; context.addInitializationStatement(factory.createVariableStatement( /*modifiers*/ undefined, factory.createVariableDeclarationList([ factory.createVariableDeclaration(parameter.name, /*exclamationToken*/ undefined, parameter.type, parameter.initializer ? factory.createConditionalExpression(factory.createStrictEquality(factory.getGeneratedNameForNode(parameter), factory.createVoidZero()), /*questionToken*/ undefined, parameter.initializer, /*colonToken*/ undefined, factory.getGeneratedNameForNode(parameter)) : factory.getGeneratedNameForNode(parameter)), ]))); return factory.updateParameterDeclaration(parameter, parameter.decorators, parameter.modifiers, parameter.dotDotDotToken, factory.getGeneratedNameForNode(parameter), parameter.questionToken, parameter.type, /*initializer*/ undefined); } function addDefaultValueAssignmentForInitializer(parameter, name, initializer, context) { var factory = context.factory; context.addInitializationStatement(factory.createIfStatement(factory.createTypeCheck(factory.cloneNode(name), "undefined"), ts.setEmitFlags(ts.setTextRange(factory.createBlock([ factory.createExpressionStatement(ts.setEmitFlags(ts.setTextRange(factory.createAssignment(ts.setEmitFlags(factory.cloneNode(name), 48 /* EmitFlags.NoSourceMap */), ts.setEmitFlags(initializer, 48 /* EmitFlags.NoSourceMap */ | ts.getEmitFlags(initializer) | 1536 /* EmitFlags.NoComments */)), parameter), 1536 /* EmitFlags.NoComments */)) ]), parameter), 1 /* EmitFlags.SingleLine */ | 32 /* EmitFlags.NoTrailingSourceMap */ | 384 /* EmitFlags.NoTokenSourceMaps */ | 1536 /* EmitFlags.NoComments */))); return factory.updateParameterDeclaration(parameter, parameter.decorators, parameter.modifiers, parameter.dotDotDotToken, parameter.name, parameter.questionToken, parameter.type, /*initializer*/ undefined); } function visitFunctionBody(node, visitor, context, nodeVisitor) { if (nodeVisitor === void 0) { nodeVisitor = visitNode; } context.resumeLexicalEnvironment(); var updated = nodeVisitor(node, visitor, ts.isConciseBody); var declarations = context.endLexicalEnvironment(); if (ts.some(declarations)) { if (!updated) { return context.factory.createBlock(declarations); } var block = context.factory.converters.convertToFunctionBlock(updated); var statements = ts.factory.mergeLexicalEnvironment(block.statements, declarations); return context.factory.updateBlock(block, statements); } return updated; } ts.visitFunctionBody = visitFunctionBody; /** * Visits an iteration body, adding any block-scoped variables required by the transformation. */ function visitIterationBody(body, visitor, context) { context.startBlockScope(); var updated = visitNode(body, visitor, ts.isStatement, context.factory.liftToBlock); var declarations = context.endBlockScope(); if (ts.some(declarations)) { if (ts.isBlock(updated)) { declarations.push.apply(declarations, updated.statements); return context.factory.updateBlock(updated, declarations); } declarations.push(updated); return context.factory.createBlock(declarations); } return updated; } ts.visitIterationBody = visitIterationBody; function visitEachChild(node, visitor, context, nodesVisitor, tokenVisitor, nodeVisitor) { if (nodesVisitor === void 0) { nodesVisitor = visitNodes; } if (nodeVisitor === void 0) { nodeVisitor = visitNode; } if (node === undefined) { return undefined; } var kind = node.kind; // No need to visit nodes with no children. if ((kind > 0 /* SyntaxKind.FirstToken */ && kind <= 160 /* SyntaxKind.LastToken */) || kind === 192 /* SyntaxKind.ThisType */) { return node; } var factory = context.factory; switch (kind) { // Names case 79 /* SyntaxKind.Identifier */: ts.Debug.type(node); return factory.updateIdentifier(node, nodesVisitor(node.typeArguments, visitor, ts.isTypeNodeOrTypeParameterDeclaration)); case 161 /* SyntaxKind.QualifiedName */: ts.Debug.type(node); return factory.updateQualifiedName(node, nodeVisitor(node.left, visitor, ts.isEntityName), nodeVisitor(node.right, visitor, ts.isIdentifier)); case 162 /* SyntaxKind.ComputedPropertyName */: ts.Debug.type(node); return factory.updateComputedPropertyName(node, nodeVisitor(node.expression, visitor, ts.isExpression)); // Signature elements case 163 /* SyntaxKind.TypeParameter */: ts.Debug.type(node); return factory.updateTypeParameterDeclaration(node, nodesVisitor(node.modifiers, visitor, ts.isModifier), nodeVisitor(node.name, visitor, ts.isIdentifier), nodeVisitor(node.constraint, visitor, ts.isTypeNode), nodeVisitor(node.default, visitor, ts.isTypeNode)); case 164 /* SyntaxKind.Parameter */: ts.Debug.type(node); return factory.updateParameterDeclaration(node, nodesVisitor(node.decorators, visitor, ts.isDecorator), nodesVisitor(node.modifiers, visitor, ts.isModifier), nodeVisitor(node.dotDotDotToken, tokenVisitor, ts.isDotDotDotToken), nodeVisitor(node.name, visitor, ts.isBindingName), nodeVisitor(node.questionToken, tokenVisitor, ts.isQuestionToken), nodeVisitor(node.type, visitor, ts.isTypeNode), nodeVisitor(node.initializer, visitor, ts.isExpression)); case 165 /* SyntaxKind.Decorator */: ts.Debug.type(node); return factory.updateDecorator(node, nodeVisitor(node.expression, visitor, ts.isExpression)); // Type elements case 166 /* SyntaxKind.PropertySignature */: ts.Debug.type(node); return factory.updatePropertySignature(node, nodesVisitor(node.modifiers, visitor, ts.isModifier), nodeVisitor(node.name, visitor, ts.isPropertyName), nodeVisitor(node.questionToken, tokenVisitor, ts.isToken), nodeVisitor(node.type, visitor, ts.isTypeNode)); case 167 /* SyntaxKind.PropertyDeclaration */: ts.Debug.type(node); return factory.updatePropertyDeclaration(node, nodesVisitor(node.decorators, visitor, ts.isDecorator), nodesVisitor(node.modifiers, visitor, ts.isModifier), nodeVisitor(node.name, visitor, ts.isPropertyName), // QuestionToken and ExclamationToken is uniqued in Property Declaration and the signature of 'updateProperty' is that too nodeVisitor(node.questionToken || node.exclamationToken, tokenVisitor, ts.isQuestionOrExclamationToken), nodeVisitor(node.type, visitor, ts.isTypeNode), nodeVisitor(node.initializer, visitor, ts.isExpression)); case 168 /* SyntaxKind.MethodSignature */: ts.Debug.type(node); return factory.updateMethodSignature(node, nodesVisitor(node.modifiers, visitor, ts.isModifier), nodeVisitor(node.name, visitor, ts.isPropertyName), nodeVisitor(node.questionToken, tokenVisitor, ts.isQuestionToken), nodesVisitor(node.typeParameters, visitor, ts.isTypeParameterDeclaration), nodesVisitor(node.parameters, visitor, ts.isParameterDeclaration), nodeVisitor(node.type, visitor, ts.isTypeNode)); case 169 /* SyntaxKind.MethodDeclaration */: ts.Debug.type(node); return factory.updateMethodDeclaration(node, nodesVisitor(node.decorators, visitor, ts.isDecorator), nodesVisitor(node.modifiers, visitor, ts.isModifier), nodeVisitor(node.asteriskToken, tokenVisitor, ts.isAsteriskToken), nodeVisitor(node.name, visitor, ts.isPropertyName), nodeVisitor(node.questionToken, tokenVisitor, ts.isQuestionToken), nodesVisitor(node.typeParameters, visitor, ts.isTypeParameterDeclaration), visitParameterList(node.parameters, visitor, context, nodesVisitor), nodeVisitor(node.type, visitor, ts.isTypeNode), visitFunctionBody(node.body, visitor, context, nodeVisitor)); case 171 /* SyntaxKind.Constructor */: ts.Debug.type(node); return factory.updateConstructorDeclaration(node, nodesVisitor(node.decorators, visitor, ts.isDecorator), nodesVisitor(node.modifiers, visitor, ts.isModifier), visitParameterList(node.parameters, visitor, context, nodesVisitor), visitFunctionBody(node.body, visitor, context, nodeVisitor)); case 172 /* SyntaxKind.GetAccessor */: ts.Debug.type(node); return factory.updateGetAccessorDeclaration(node, nodesVisitor(node.decorators, visitor, ts.isDecorator), nodesVisitor(node.modifiers, visitor, ts.isModifier), nodeVisitor(node.name, visitor, ts.isPropertyName), visitParameterList(node.parameters, visitor, context, nodesVisitor), nodeVisitor(node.type, visitor, ts.isTypeNode), visitFunctionBody(node.body, visitor, context, nodeVisitor)); case 173 /* SyntaxKind.SetAccessor */: ts.Debug.type(node); return factory.updateSetAccessorDeclaration(node, nodesVisitor(node.decorators, visitor, ts.isDecorator), nodesVisitor(node.modifiers, visitor, ts.isModifier), nodeVisitor(node.name, visitor, ts.isPropertyName), visitParameterList(node.parameters, visitor, context, nodesVisitor), visitFunctionBody(node.body, visitor, context, nodeVisitor)); case 170 /* SyntaxKind.ClassStaticBlockDeclaration */: ts.Debug.type(node); context.startLexicalEnvironment(); context.suspendLexicalEnvironment(); return factory.updateClassStaticBlockDeclaration(node, nodesVisitor(node.decorators, visitor, ts.isDecorator), nodesVisitor(node.modifiers, visitor, ts.isModifier), visitFunctionBody(node.body, visitor, context, nodeVisitor)); case 174 /* SyntaxKind.CallSignature */: ts.Debug.type(node); return factory.updateCallSignature(node, nodesVisitor(node.typeParameters, visitor, ts.isTypeParameterDeclaration), nodesVisitor(node.parameters, visitor, ts.isParameterDeclaration), nodeVisitor(node.type, visitor, ts.isTypeNode)); case 175 /* SyntaxKind.ConstructSignature */: ts.Debug.type(node); return factory.updateConstructSignature(node, nodesVisitor(node.typeParameters, visitor, ts.isTypeParameterDeclaration), nodesVisitor(node.parameters, visitor, ts.isParameterDeclaration), nodeVisitor(node.type, visitor, ts.isTypeNode)); case 176 /* SyntaxKind.IndexSignature */: ts.Debug.type(node); return factory.updateIndexSignature(node, nodesVisitor(node.decorators, visitor, ts.isDecorator), nodesVisitor(node.modifiers, visitor, ts.isModifier), nodesVisitor(node.parameters, visitor, ts.isParameterDeclaration), nodeVisitor(node.type, visitor, ts.isTypeNode)); // Types case 177 /* SyntaxKind.TypePredicate */: ts.Debug.type(node); return factory.updateTypePredicateNode(node, nodeVisitor(node.assertsModifier, visitor, ts.isAssertsKeyword), nodeVisitor(node.parameterName, visitor, ts.isIdentifierOrThisTypeNode), nodeVisitor(node.type, visitor, ts.isTypeNode)); case 178 /* SyntaxKind.TypeReference */: ts.Debug.type(node); return factory.updateTypeReferenceNode(node, nodeVisitor(node.typeName, visitor, ts.isEntityName), nodesVisitor(node.typeArguments, visitor, ts.isTypeNode)); case 179 /* SyntaxKind.FunctionType */: ts.Debug.type(node); return factory.updateFunctionTypeNode(node, nodesVisitor(node.typeParameters, visitor, ts.isTypeParameterDeclaration), nodesVisitor(node.parameters, visitor, ts.isParameterDeclaration), nodeVisitor(node.type, visitor, ts.isTypeNode)); case 180 /* SyntaxKind.ConstructorType */: ts.Debug.type(node); return factory.updateConstructorTypeNode(node, nodesVisitor(node.modifiers, visitor, ts.isModifier), nodesVisitor(node.typeParameters, visitor, ts.isTypeParameterDeclaration), nodesVisitor(node.parameters, visitor, ts.isParameterDeclaration), nodeVisitor(node.type, visitor, ts.isTypeNode)); case 181 /* SyntaxKind.TypeQuery */: ts.Debug.type(node); return factory.updateTypeQueryNode(node, nodeVisitor(node.exprName, visitor, ts.isEntityName), nodesVisitor(node.typeArguments, visitor, ts.isTypeNode)); case 182 /* SyntaxKind.TypeLiteral */: ts.Debug.type(node); return factory.updateTypeLiteralNode(node, nodesVisitor(node.members, visitor, ts.isTypeElement)); case 183 /* SyntaxKind.ArrayType */: ts.Debug.type(node); return factory.updateArrayTypeNode(node, nodeVisitor(node.elementType, visitor, ts.isTypeNode)); case 184 /* SyntaxKind.TupleType */: ts.Debug.type(node); return factory.updateTupleTypeNode(node, nodesVisitor(node.elements, visitor, ts.isTypeNode)); case 185 /* SyntaxKind.OptionalType */: ts.Debug.type(node); return factory.updateOptionalTypeNode(node, nodeVisitor(node.type, visitor, ts.isTypeNode)); case 186 /* SyntaxKind.RestType */: ts.Debug.type(node); return factory.updateRestTypeNode(node, nodeVisitor(node.type, visitor, ts.isTypeNode)); case 187 /* SyntaxKind.UnionType */: ts.Debug.type(node); return factory.updateUnionTypeNode(node, nodesVisitor(node.types, visitor, ts.isTypeNode)); case 188 /* SyntaxKind.IntersectionType */: ts.Debug.type(node); return factory.updateIntersectionTypeNode(node, nodesVisitor(node.types, visitor, ts.isTypeNode)); case 189 /* SyntaxKind.ConditionalType */: ts.Debug.type(node); return factory.updateConditionalTypeNode(node, nodeVisitor(node.checkType, visitor, ts.isTypeNode), nodeVisitor(node.extendsType, visitor, ts.isTypeNode), nodeVisitor(node.trueType, visitor, ts.isTypeNode), nodeVisitor(node.falseType, visitor, ts.isTypeNode)); case 190 /* SyntaxKind.InferType */: ts.Debug.type(node); return factory.updateInferTypeNode(node, nodeVisitor(node.typeParameter, visitor, ts.isTypeParameterDeclaration)); case 200 /* SyntaxKind.ImportType */: ts.Debug.type(node); return factory.updateImportTypeNode(node, nodeVisitor(node.argument, visitor, ts.isTypeNode), nodeVisitor(node.assertions, visitor, ts.isNode), nodeVisitor(node.qualifier, visitor, ts.isEntityName), visitNodes(node.typeArguments, visitor, ts.isTypeNode), node.isTypeOf); case 295 /* SyntaxKind.ImportTypeAssertionContainer */: ts.Debug.type(node); return factory.updateImportTypeAssertionContainer(node, nodeVisitor(node.assertClause, visitor, ts.isNode), node.multiLine); case 197 /* SyntaxKind.NamedTupleMember */: ts.Debug.type(node); return factory.updateNamedTupleMember(node, visitNode(node.dotDotDotToken, visitor, ts.isDotDotDotToken), visitNode(node.name, visitor, ts.isIdentifier), visitNode(node.questionToken, visitor, ts.isQuestionToken), visitNode(node.type, visitor, ts.isTypeNode)); case 191 /* SyntaxKind.ParenthesizedType */: ts.Debug.type(node); return factory.updateParenthesizedType(node, nodeVisitor(node.type, visitor, ts.isTypeNode)); case 193 /* SyntaxKind.TypeOperator */: ts.Debug.type(node); return factory.updateTypeOperatorNode(node, nodeVisitor(node.type, visitor, ts.isTypeNode)); case 194 /* SyntaxKind.IndexedAccessType */: ts.Debug.type(node); return factory.updateIndexedAccessTypeNode(node, nodeVisitor(node.objectType, visitor, ts.isTypeNode), nodeVisitor(node.indexType, visitor, ts.isTypeNode)); case 195 /* SyntaxKind.MappedType */: ts.Debug.type(node); return factory.updateMappedTypeNode(node, nodeVisitor(node.readonlyToken, tokenVisitor, ts.isReadonlyKeywordOrPlusOrMinusToken), nodeVisitor(node.typeParameter, visitor, ts.isTypeParameterDeclaration), nodeVisitor(node.nameType, visitor, ts.isTypeNode), nodeVisitor(node.questionToken, tokenVisitor, ts.isQuestionOrPlusOrMinusToken), nodeVisitor(node.type, visitor, ts.isTypeNode), nodesVisitor(node.members, visitor, ts.isTypeElement)); case 196 /* SyntaxKind.LiteralType */: ts.Debug.type(node); return factory.updateLiteralTypeNode(node, nodeVisitor(node.literal, visitor, ts.isExpression)); case 198 /* SyntaxKind.TemplateLiteralType */: ts.Debug.type(node); return factory.updateTemplateLiteralType(node, nodeVisitor(node.head, visitor, ts.isTemplateHead), nodesVisitor(node.templateSpans, visitor, ts.isTemplateLiteralTypeSpan)); case 199 /* SyntaxKind.TemplateLiteralTypeSpan */: ts.Debug.type(node); return factory.updateTemplateLiteralTypeSpan(node, nodeVisitor(node.type, visitor, ts.isTypeNode), nodeVisitor(node.literal, visitor, ts.isTemplateMiddleOrTemplateTail)); // Binding patterns case 201 /* SyntaxKind.ObjectBindingPattern */: ts.Debug.type(node); return factory.updateObjectBindingPattern(node, nodesVisitor(node.elements, visitor, ts.isBindingElement)); case 202 /* SyntaxKind.ArrayBindingPattern */: ts.Debug.type(node); return factory.updateArrayBindingPattern(node, nodesVisitor(node.elements, visitor, ts.isArrayBindingElement)); case 203 /* SyntaxKind.BindingElement */: ts.Debug.type(node); return factory.updateBindingElement(node, nodeVisitor(node.dotDotDotToken, tokenVisitor, ts.isDotDotDotToken), nodeVisitor(node.propertyName, visitor, ts.isPropertyName), nodeVisitor(node.name, visitor, ts.isBindingName), nodeVisitor(node.initializer, visitor, ts.isExpression)); // Expression case 204 /* SyntaxKind.ArrayLiteralExpression */: ts.Debug.type(node); return factory.updateArrayLiteralExpression(node, nodesVisitor(node.elements, visitor, ts.isExpression)); case 205 /* SyntaxKind.ObjectLiteralExpression */: ts.Debug.type(node); return factory.updateObjectLiteralExpression(node, nodesVisitor(node.properties, visitor, ts.isObjectLiteralElementLike)); case 206 /* SyntaxKind.PropertyAccessExpression */: if (node.flags & 32 /* NodeFlags.OptionalChain */) { ts.Debug.type(node); return factory.updatePropertyAccessChain(node, nodeVisitor(node.expression, visitor, ts.isExpression), nodeVisitor(node.questionDotToken, tokenVisitor, ts.isQuestionDotToken), nodeVisitor(node.name, visitor, ts.isMemberName)); } ts.Debug.type(node); return factory.updatePropertyAccessExpression(node, nodeVisitor(node.expression, visitor, ts.isExpression), nodeVisitor(node.name, visitor, ts.isMemberName)); case 207 /* SyntaxKind.ElementAccessExpression */: if (node.flags & 32 /* NodeFlags.OptionalChain */) { ts.Debug.type(node); return factory.updateElementAccessChain(node, nodeVisitor(node.expression, visitor, ts.isExpression), nodeVisitor(node.questionDotToken, tokenVisitor, ts.isQuestionDotToken), nodeVisitor(node.argumentExpression, visitor, ts.isExpression)); } ts.Debug.type(node); return factory.updateElementAccessExpression(node, nodeVisitor(node.expression, visitor, ts.isExpression), nodeVisitor(node.argumentExpression, visitor, ts.isExpression)); case 208 /* SyntaxKind.CallExpression */: if (node.flags & 32 /* NodeFlags.OptionalChain */) { ts.Debug.type(node); return factory.updateCallChain(node, nodeVisitor(node.expression, visitor, ts.isExpression), nodeVisitor(node.questionDotToken, tokenVisitor, ts.isQuestionDotToken), nodesVisitor(node.typeArguments, visitor, ts.isTypeNode), nodesVisitor(node.arguments, visitor, ts.isExpression)); } ts.Debug.type(node); return factory.updateCallExpression(node, nodeVisitor(node.expression, visitor, ts.isExpression), nodesVisitor(node.typeArguments, visitor, ts.isTypeNode), nodesVisitor(node.arguments, visitor, ts.isExpression)); case 209 /* SyntaxKind.NewExpression */: ts.Debug.type(node); return factory.updateNewExpression(node, nodeVisitor(node.expression, visitor, ts.isExpression), nodesVisitor(node.typeArguments, visitor, ts.isTypeNode), nodesVisitor(node.arguments, visitor, ts.isExpression)); case 210 /* SyntaxKind.TaggedTemplateExpression */: ts.Debug.type(node); return factory.updateTaggedTemplateExpression(node, nodeVisitor(node.tag, visitor, ts.isExpression), visitNodes(node.typeArguments, visitor, ts.isTypeNode), nodeVisitor(node.template, visitor, ts.isTemplateLiteral)); case 211 /* SyntaxKind.TypeAssertionExpression */: ts.Debug.type(node); return factory.updateTypeAssertion(node, nodeVisitor(node.type, visitor, ts.isTypeNode), nodeVisitor(node.expression, visitor, ts.isExpression)); case 212 /* SyntaxKind.ParenthesizedExpression */: ts.Debug.type(node); return factory.updateParenthesizedExpression(node, nodeVisitor(node.expression, visitor, ts.isExpression)); case 213 /* SyntaxKind.FunctionExpression */: ts.Debug.type(node); return factory.updateFunctionExpression(node, nodesVisitor(node.modifiers, visitor, ts.isModifier), nodeVisitor(node.asteriskToken, tokenVisitor, ts.isAsteriskToken), nodeVisitor(node.name, visitor, ts.isIdentifier), nodesVisitor(node.typeParameters, visitor, ts.isTypeParameterDeclaration), visitParameterList(node.parameters, visitor, context, nodesVisitor), nodeVisitor(node.type, visitor, ts.isTypeNode), visitFunctionBody(node.body, visitor, context, nodeVisitor)); case 214 /* SyntaxKind.ArrowFunction */: ts.Debug.type(node); return factory.updateArrowFunction(node, nodesVisitor(node.modifiers, visitor, ts.isModifier), nodesVisitor(node.typeParameters, visitor, ts.isTypeParameterDeclaration), visitParameterList(node.parameters, visitor, context, nodesVisitor), nodeVisitor(node.type, visitor, ts.isTypeNode), nodeVisitor(node.equalsGreaterThanToken, tokenVisitor, ts.isEqualsGreaterThanToken), visitFunctionBody(node.body, visitor, context, nodeVisitor)); case 215 /* SyntaxKind.DeleteExpression */: ts.Debug.type(node); return factory.updateDeleteExpression(node, nodeVisitor(node.expression, visitor, ts.isExpression)); case 216 /* SyntaxKind.TypeOfExpression */: ts.Debug.type(node); return factory.updateTypeOfExpression(node, nodeVisitor(node.expression, visitor, ts.isExpression)); case 217 /* SyntaxKind.VoidExpression */: ts.Debug.type(node); return factory.updateVoidExpression(node, nodeVisitor(node.expression, visitor, ts.isExpression)); case 218 /* SyntaxKind.AwaitExpression */: ts.Debug.type(node); return factory.updateAwaitExpression(node, nodeVisitor(node.expression, visitor, ts.isExpression)); case 219 /* SyntaxKind.PrefixUnaryExpression */: ts.Debug.type(node); return factory.updatePrefixUnaryExpression(node, nodeVisitor(node.operand, visitor, ts.isExpression)); case 220 /* SyntaxKind.PostfixUnaryExpression */: ts.Debug.type(node); return factory.updatePostfixUnaryExpression(node, nodeVisitor(node.operand, visitor, ts.isExpression)); case 221 /* SyntaxKind.BinaryExpression */: ts.Debug.type(node); return factory.updateBinaryExpression(node, nodeVisitor(node.left, visitor, ts.isExpression), nodeVisitor(node.operatorToken, tokenVisitor, ts.isBinaryOperatorToken), nodeVisitor(node.right, visitor, ts.isExpression)); case 222 /* SyntaxKind.ConditionalExpression */: ts.Debug.type(node); return factory.updateConditionalExpression(node, nodeVisitor(node.condition, visitor, ts.isExpression), nodeVisitor(node.questionToken, tokenVisitor, ts.isQuestionToken), nodeVisitor(node.whenTrue, visitor, ts.isExpression), nodeVisitor(node.colonToken, tokenVisitor, ts.isColonToken), nodeVisitor(node.whenFalse, visitor, ts.isExpression)); case 223 /* SyntaxKind.TemplateExpression */: ts.Debug.type(node); return factory.updateTemplateExpression(node, nodeVisitor(node.head, visitor, ts.isTemplateHead), nodesVisitor(node.templateSpans, visitor, ts.isTemplateSpan)); case 224 /* SyntaxKind.YieldExpression */: ts.Debug.type(node); return factory.updateYieldExpression(node, nodeVisitor(node.asteriskToken, tokenVisitor, ts.isAsteriskToken), nodeVisitor(node.expression, visitor, ts.isExpression)); case 225 /* SyntaxKind.SpreadElement */: ts.Debug.type(node); return factory.updateSpreadElement(node, nodeVisitor(node.expression, visitor, ts.isExpression)); case 226 /* SyntaxKind.ClassExpression */: ts.Debug.type(node); return factory.updateClassExpression(node, nodesVisitor(node.decorators, visitor, ts.isDecorator), nodesVisitor(node.modifiers, visitor, ts.isModifier), nodeVisitor(node.name, visitor, ts.isIdentifier), nodesVisitor(node.typeParameters, visitor, ts.isTypeParameterDeclaration), nodesVisitor(node.heritageClauses, visitor, ts.isHeritageClause), nodesVisitor(node.members, visitor, ts.isClassElement)); case 228 /* SyntaxKind.ExpressionWithTypeArguments */: ts.Debug.type(node); return factory.updateExpressionWithTypeArguments(node, nodeVisitor(node.expression, visitor, ts.isExpression), nodesVisitor(node.typeArguments, visitor, ts.isTypeNode)); case 229 /* SyntaxKind.AsExpression */: ts.Debug.type(node); return factory.updateAsExpression(node, nodeVisitor(node.expression, visitor, ts.isExpression), nodeVisitor(node.type, visitor, ts.isTypeNode)); case 230 /* SyntaxKind.NonNullExpression */: if (node.flags & 32 /* NodeFlags.OptionalChain */) { ts.Debug.type(node); return factory.updateNonNullChain(node, nodeVisitor(node.expression, visitor, ts.isExpression)); } ts.Debug.type(node); return factory.updateNonNullExpression(node, nodeVisitor(node.expression, visitor, ts.isExpression)); case 231 /* SyntaxKind.MetaProperty */: ts.Debug.type(node); return factory.updateMetaProperty(node, nodeVisitor(node.name, visitor, ts.isIdentifier)); // Misc case 233 /* SyntaxKind.TemplateSpan */: ts.Debug.type(node); return factory.updateTemplateSpan(node, nodeVisitor(node.expression, visitor, ts.isExpression), nodeVisitor(node.literal, visitor, ts.isTemplateMiddleOrTemplateTail)); // Element case 235 /* SyntaxKind.Block */: ts.Debug.type(node); return factory.updateBlock(node, nodesVisitor(node.statements, visitor, ts.isStatement)); case 237 /* SyntaxKind.VariableStatement */: ts.Debug.type(node); return factory.updateVariableStatement(node, nodesVisitor(node.modifiers, visitor, ts.isModifier), nodeVisitor(node.declarationList, visitor, ts.isVariableDeclarationList)); case 238 /* SyntaxKind.ExpressionStatement */: ts.Debug.type(node); return factory.updateExpressionStatement(node, nodeVisitor(node.expression, visitor, ts.isExpression)); case 239 /* SyntaxKind.IfStatement */: ts.Debug.type(node); return factory.updateIfStatement(node, nodeVisitor(node.expression, visitor, ts.isExpression), nodeVisitor(node.thenStatement, visitor, ts.isStatement, factory.liftToBlock), nodeVisitor(node.elseStatement, visitor, ts.isStatement, factory.liftToBlock)); case 240 /* SyntaxKind.DoStatement */: ts.Debug.type(node); return factory.updateDoStatement(node, visitIterationBody(node.statement, visitor, context), nodeVisitor(node.expression, visitor, ts.isExpression)); case 241 /* SyntaxKind.WhileStatement */: ts.Debug.type(node); return factory.updateWhileStatement(node, nodeVisitor(node.expression, visitor, ts.isExpression), visitIterationBody(node.statement, visitor, context)); case 242 /* SyntaxKind.ForStatement */: ts.Debug.type(node); return factory.updateForStatement(node, nodeVisitor(node.initializer, visitor, ts.isForInitializer), nodeVisitor(node.condition, visitor, ts.isExpression), nodeVisitor(node.incrementor, visitor, ts.isExpression), visitIterationBody(node.statement, visitor, context)); case 243 /* SyntaxKind.ForInStatement */: ts.Debug.type(node); return factory.updateForInStatement(node, nodeVisitor(node.initializer, visitor, ts.isForInitializer), nodeVisitor(node.expression, visitor, ts.isExpression), visitIterationBody(node.statement, visitor, context)); case 244 /* SyntaxKind.ForOfStatement */: ts.Debug.type(node); return factory.updateForOfStatement(node, nodeVisitor(node.awaitModifier, tokenVisitor, ts.isAwaitKeyword), nodeVisitor(node.initializer, visitor, ts.isForInitializer), nodeVisitor(node.expression, visitor, ts.isExpression), visitIterationBody(node.statement, visitor, context)); case 245 /* SyntaxKind.ContinueStatement */: ts.Debug.type(node); return factory.updateContinueStatement(node, nodeVisitor(node.label, visitor, ts.isIdentifier)); case 246 /* SyntaxKind.BreakStatement */: ts.Debug.type(node); return factory.updateBreakStatement(node, nodeVisitor(node.label, visitor, ts.isIdentifier)); case 247 /* SyntaxKind.ReturnStatement */: ts.Debug.type(node); return factory.updateReturnStatement(node, nodeVisitor(node.expression, visitor, ts.isExpression)); case 248 /* SyntaxKind.WithStatement */: ts.Debug.type(node); return factory.updateWithStatement(node, nodeVisitor(node.expression, visitor, ts.isExpression), nodeVisitor(node.statement, visitor, ts.isStatement, factory.liftToBlock)); case 249 /* SyntaxKind.SwitchStatement */: ts.Debug.type(node); return factory.updateSwitchStatement(node, nodeVisitor(node.expression, visitor, ts.isExpression), nodeVisitor(node.caseBlock, visitor, ts.isCaseBlock)); case 250 /* SyntaxKind.LabeledStatement */: ts.Debug.type(node); return factory.updateLabeledStatement(node, nodeVisitor(node.label, visitor, ts.isIdentifier), nodeVisitor(node.statement, visitor, ts.isStatement, factory.liftToBlock)); case 251 /* SyntaxKind.ThrowStatement */: ts.Debug.type(node); return factory.updateThrowStatement(node, nodeVisitor(node.expression, visitor, ts.isExpression)); case 252 /* SyntaxKind.TryStatement */: ts.Debug.type(node); return factory.updateTryStatement(node, nodeVisitor(node.tryBlock, visitor, ts.isBlock), nodeVisitor(node.catchClause, visitor, ts.isCatchClause), nodeVisitor(node.finallyBlock, visitor, ts.isBlock)); case 254 /* SyntaxKind.VariableDeclaration */: ts.Debug.type(node); return factory.updateVariableDeclaration(node, nodeVisitor(node.name, visitor, ts.isBindingName), nodeVisitor(node.exclamationToken, tokenVisitor, ts.isExclamationToken), nodeVisitor(node.type, visitor, ts.isTypeNode), nodeVisitor(node.initializer, visitor, ts.isExpression)); case 255 /* SyntaxKind.VariableDeclarationList */: ts.Debug.type(node); return factory.updateVariableDeclarationList(node, nodesVisitor(node.declarations, visitor, ts.isVariableDeclaration)); case 256 /* SyntaxKind.FunctionDeclaration */: ts.Debug.type(node); return factory.updateFunctionDeclaration(node, nodesVisitor(node.decorators, visitor, ts.isDecorator), nodesVisitor(node.modifiers, visitor, ts.isModifier), nodeVisitor(node.asteriskToken, tokenVisitor, ts.isAsteriskToken), nodeVisitor(node.name, visitor, ts.isIdentifier), nodesVisitor(node.typeParameters, visitor, ts.isTypeParameterDeclaration), visitParameterList(node.parameters, visitor, context, nodesVisitor), nodeVisitor(node.type, visitor, ts.isTypeNode), visitFunctionBody(node.body, visitor, context, nodeVisitor)); case 257 /* SyntaxKind.ClassDeclaration */: ts.Debug.type(node); return factory.updateClassDeclaration(node, nodesVisitor(node.decorators, visitor, ts.isDecorator), nodesVisitor(node.modifiers, visitor, ts.isModifier), nodeVisitor(node.name, visitor, ts.isIdentifier), nodesVisitor(node.typeParameters, visitor, ts.isTypeParameterDeclaration), nodesVisitor(node.heritageClauses, visitor, ts.isHeritageClause), nodesVisitor(node.members, visitor, ts.isClassElement)); case 258 /* SyntaxKind.InterfaceDeclaration */: ts.Debug.type(node); return factory.updateInterfaceDeclaration(node, nodesVisitor(node.decorators, visitor, ts.isDecorator), nodesVisitor(node.modifiers, visitor, ts.isModifier), nodeVisitor(node.name, visitor, ts.isIdentifier), nodesVisitor(node.typeParameters, visitor, ts.isTypeParameterDeclaration), nodesVisitor(node.heritageClauses, visitor, ts.isHeritageClause), nodesVisitor(node.members, visitor, ts.isTypeElement)); case 259 /* SyntaxKind.TypeAliasDeclaration */: ts.Debug.type(node); return factory.updateTypeAliasDeclaration(node, nodesVisitor(node.decorators, visitor, ts.isDecorator), nodesVisitor(node.modifiers, visitor, ts.isModifier), nodeVisitor(node.name, visitor, ts.isIdentifier), nodesVisitor(node.typeParameters, visitor, ts.isTypeParameterDeclaration), nodeVisitor(node.type, visitor, ts.isTypeNode)); case 260 /* SyntaxKind.EnumDeclaration */: ts.Debug.type(node); return factory.updateEnumDeclaration(node, nodesVisitor(node.decorators, visitor, ts.isDecorator), nodesVisitor(node.modifiers, visitor, ts.isModifier), nodeVisitor(node.name, visitor, ts.isIdentifier), nodesVisitor(node.members, visitor, ts.isEnumMember)); case 261 /* SyntaxKind.ModuleDeclaration */: ts.Debug.type(node); return factory.updateModuleDeclaration(node, nodesVisitor(node.decorators, visitor, ts.isDecorator), nodesVisitor(node.modifiers, visitor, ts.isModifier), nodeVisitor(node.name, visitor, ts.isModuleName), nodeVisitor(node.body, visitor, ts.isModuleBody)); case 262 /* SyntaxKind.ModuleBlock */: ts.Debug.type(node); return factory.updateModuleBlock(node, nodesVisitor(node.statements, visitor, ts.isStatement)); case 263 /* SyntaxKind.CaseBlock */: ts.Debug.type(node); return factory.updateCaseBlock(node, nodesVisitor(node.clauses, visitor, ts.isCaseOrDefaultClause)); case 264 /* SyntaxKind.NamespaceExportDeclaration */: ts.Debug.type(node); return factory.updateNamespaceExportDeclaration(node, nodeVisitor(node.name, visitor, ts.isIdentifier)); case 265 /* SyntaxKind.ImportEqualsDeclaration */: ts.Debug.type(node); return factory.updateImportEqualsDeclaration(node, nodesVisitor(node.decorators, visitor, ts.isDecorator), nodesVisitor(node.modifiers, visitor, ts.isModifier), node.isTypeOnly, nodeVisitor(node.name, visitor, ts.isIdentifier), nodeVisitor(node.moduleReference, visitor, ts.isModuleReference)); case 266 /* SyntaxKind.ImportDeclaration */: ts.Debug.type(node); return factory.updateImportDeclaration(node, nodesVisitor(node.decorators, visitor, ts.isDecorator), nodesVisitor(node.modifiers, visitor, ts.isModifier), nodeVisitor(node.importClause, visitor, ts.isImportClause), nodeVisitor(node.moduleSpecifier, visitor, ts.isExpression), nodeVisitor(node.assertClause, visitor, ts.isAssertClause)); case 293 /* SyntaxKind.AssertClause */: ts.Debug.type(node); return factory.updateAssertClause(node, nodesVisitor(node.elements, visitor, ts.isAssertEntry), node.multiLine); case 294 /* SyntaxKind.AssertEntry */: ts.Debug.type(node); return factory.updateAssertEntry(node, nodeVisitor(node.name, visitor, ts.isAssertionKey), nodeVisitor(node.value, visitor, ts.isExpressionNode)); case 267 /* SyntaxKind.ImportClause */: ts.Debug.type(node); return factory.updateImportClause(node, node.isTypeOnly, nodeVisitor(node.name, visitor, ts.isIdentifier), nodeVisitor(node.namedBindings, visitor, ts.isNamedImportBindings)); case 268 /* SyntaxKind.NamespaceImport */: ts.Debug.type(node); return factory.updateNamespaceImport(node, nodeVisitor(node.name, visitor, ts.isIdentifier)); case 274 /* SyntaxKind.NamespaceExport */: ts.Debug.type(node); return factory.updateNamespaceExport(node, nodeVisitor(node.name, visitor, ts.isIdentifier)); case 269 /* SyntaxKind.NamedImports */: ts.Debug.type(node); return factory.updateNamedImports(node, nodesVisitor(node.elements, visitor, ts.isImportSpecifier)); case 270 /* SyntaxKind.ImportSpecifier */: ts.Debug.type(node); return factory.updateImportSpecifier(node, node.isTypeOnly, nodeVisitor(node.propertyName, visitor, ts.isIdentifier), nodeVisitor(node.name, visitor, ts.isIdentifier)); case 271 /* SyntaxKind.ExportAssignment */: ts.Debug.type(node); return factory.updateExportAssignment(node, nodesVisitor(node.decorators, visitor, ts.isDecorator), nodesVisitor(node.modifiers, visitor, ts.isModifier), nodeVisitor(node.expression, visitor, ts.isExpression)); case 272 /* SyntaxKind.ExportDeclaration */: ts.Debug.type(node); return factory.updateExportDeclaration(node, nodesVisitor(node.decorators, visitor, ts.isDecorator), nodesVisitor(node.modifiers, visitor, ts.isModifier), node.isTypeOnly, nodeVisitor(node.exportClause, visitor, ts.isNamedExportBindings), nodeVisitor(node.moduleSpecifier, visitor, ts.isExpression), nodeVisitor(node.assertClause, visitor, ts.isAssertClause)); case 273 /* SyntaxKind.NamedExports */: ts.Debug.type(node); return factory.updateNamedExports(node, nodesVisitor(node.elements, visitor, ts.isExportSpecifier)); case 275 /* SyntaxKind.ExportSpecifier */: ts.Debug.type(node); return factory.updateExportSpecifier(node, node.isTypeOnly, nodeVisitor(node.propertyName, visitor, ts.isIdentifier), nodeVisitor(node.name, visitor, ts.isIdentifier)); // Module references case 277 /* SyntaxKind.ExternalModuleReference */: ts.Debug.type(node); return factory.updateExternalModuleReference(node, nodeVisitor(node.expression, visitor, ts.isExpression)); // JSX case 278 /* SyntaxKind.JsxElement */: ts.Debug.type(node); return factory.updateJsxElement(node, nodeVisitor(node.openingElement, visitor, ts.isJsxOpeningElement), nodesVisitor(node.children, visitor, ts.isJsxChild), nodeVisitor(node.closingElement, visitor, ts.isJsxClosingElement)); case 279 /* SyntaxKind.JsxSelfClosingElement */: ts.Debug.type(node); return factory.updateJsxSelfClosingElement(node, nodeVisitor(node.tagName, visitor, ts.isJsxTagNameExpression), nodesVisitor(node.typeArguments, visitor, ts.isTypeNode), nodeVisitor(node.attributes, visitor, ts.isJsxAttributes)); case 280 /* SyntaxKind.JsxOpeningElement */: ts.Debug.type(node); return factory.updateJsxOpeningElement(node, nodeVisitor(node.tagName, visitor, ts.isJsxTagNameExpression), nodesVisitor(node.typeArguments, visitor, ts.isTypeNode), nodeVisitor(node.attributes, visitor, ts.isJsxAttributes)); case 281 /* SyntaxKind.JsxClosingElement */: ts.Debug.type(node); return factory.updateJsxClosingElement(node, nodeVisitor(node.tagName, visitor, ts.isJsxTagNameExpression)); case 282 /* SyntaxKind.JsxFragment */: ts.Debug.type(node); return factory.updateJsxFragment(node, nodeVisitor(node.openingFragment, visitor, ts.isJsxOpeningFragment), nodesVisitor(node.children, visitor, ts.isJsxChild), nodeVisitor(node.closingFragment, visitor, ts.isJsxClosingFragment)); case 285 /* SyntaxKind.JsxAttribute */: ts.Debug.type(node); return factory.updateJsxAttribute(node, nodeVisitor(node.name, visitor, ts.isIdentifier), nodeVisitor(node.initializer, visitor, ts.isStringLiteralOrJsxExpression)); case 286 /* SyntaxKind.JsxAttributes */: ts.Debug.type(node); return factory.updateJsxAttributes(node, nodesVisitor(node.properties, visitor, ts.isJsxAttributeLike)); case 287 /* SyntaxKind.JsxSpreadAttribute */: ts.Debug.type(node); return factory.updateJsxSpreadAttribute(node, nodeVisitor(node.expression, visitor, ts.isExpression)); case 288 /* SyntaxKind.JsxExpression */: ts.Debug.type(node); return factory.updateJsxExpression(node, nodeVisitor(node.expression, visitor, ts.isExpression)); // Clauses case 289 /* SyntaxKind.CaseClause */: ts.Debug.type(node); return factory.updateCaseClause(node, nodeVisitor(node.expression, visitor, ts.isExpression), nodesVisitor(node.statements, visitor, ts.isStatement)); case 290 /* SyntaxKind.DefaultClause */: ts.Debug.type(node); return factory.updateDefaultClause(node, nodesVisitor(node.statements, visitor, ts.isStatement)); case 291 /* SyntaxKind.HeritageClause */: ts.Debug.type(node); return factory.updateHeritageClause(node, nodesVisitor(node.types, visitor, ts.isExpressionWithTypeArguments)); case 292 /* SyntaxKind.CatchClause */: ts.Debug.type(node); return factory.updateCatchClause(node, nodeVisitor(node.variableDeclaration, visitor, ts.isVariableDeclaration), nodeVisitor(node.block, visitor, ts.isBlock)); // Property assignments case 296 /* SyntaxKind.PropertyAssignment */: ts.Debug.type(node); return factory.updatePropertyAssignment(node, nodeVisitor(node.name, visitor, ts.isPropertyName), nodeVisitor(node.initializer, visitor, ts.isExpression)); case 297 /* SyntaxKind.ShorthandPropertyAssignment */: ts.Debug.type(node); return factory.updateShorthandPropertyAssignment(node, nodeVisitor(node.name, visitor, ts.isIdentifier), nodeVisitor(node.objectAssignmentInitializer, visitor, ts.isExpression)); case 298 /* SyntaxKind.SpreadAssignment */: ts.Debug.type(node); return factory.updateSpreadAssignment(node, nodeVisitor(node.expression, visitor, ts.isExpression)); // Enum case 299 /* SyntaxKind.EnumMember */: ts.Debug.type(node); return factory.updateEnumMember(node, nodeVisitor(node.name, visitor, ts.isPropertyName), nodeVisitor(node.initializer, visitor, ts.isExpression)); // Top-level nodes case 305 /* SyntaxKind.SourceFile */: ts.Debug.type(node); return factory.updateSourceFile(node, visitLexicalEnvironment(node.statements, visitor, context)); // Transformation nodes case 350 /* SyntaxKind.PartiallyEmittedExpression */: ts.Debug.type(node); return factory.updatePartiallyEmittedExpression(node, nodeVisitor(node.expression, visitor, ts.isExpression)); case 351 /* SyntaxKind.CommaListExpression */: ts.Debug.type(node); return factory.updateCommaListExpression(node, nodesVisitor(node.elements, visitor, ts.isExpression)); default: // No need to visit nodes with no children. return node; } } ts.visitEachChild = visitEachChild; /** * Extracts the single node from a NodeArray. * * @param nodes The NodeArray. */ function extractSingleNode(nodes) { ts.Debug.assert(nodes.length <= 1, "Too many nodes written to output."); return ts.singleOrUndefined(nodes); } })(ts || (ts = {})); /* @internal */ var ts; (function (ts) { function createSourceMapGenerator(host, file, sourceRoot, sourcesDirectoryPath, generatorOptions) { var _a = generatorOptions.extendedDiagnostics ? ts.performance.createTimer("Source Map", "beforeSourcemap", "afterSourcemap") : ts.performance.nullTimer, enter = _a.enter, exit = _a.exit; // Current source map file and its index in the sources list var rawSources = []; var sources = []; var sourceToSourceIndexMap = new ts.Map(); var sourcesContent; var names = []; var nameToNameIndexMap; var mappingCharCodes = []; var mappings = ""; // Last recorded and encoded mappings var lastGeneratedLine = 0; var lastGeneratedCharacter = 0; var lastSourceIndex = 0; var lastSourceLine = 0; var lastSourceCharacter = 0; var lastNameIndex = 0; var hasLast = false; var pendingGeneratedLine = 0; var pendingGeneratedCharacter = 0; var pendingSourceIndex = 0; var pendingSourceLine = 0; var pendingSourceCharacter = 0; var pendingNameIndex = 0; var hasPending = false; var hasPendingSource = false; var hasPendingName = false; return { getSources: function () { return rawSources; }, addSource: addSource, setSourceContent: setSourceContent, addName: addName, addMapping: addMapping, appendSourceMap: appendSourceMap, toJSON: toJSON, toString: function () { return JSON.stringify(toJSON()); } }; function addSource(fileName) { enter(); var source = ts.getRelativePathToDirectoryOrUrl(sourcesDirectoryPath, fileName, host.getCurrentDirectory(), host.getCanonicalFileName, /*isAbsolutePathAnUrl*/ true); var sourceIndex = sourceToSourceIndexMap.get(source); if (sourceIndex === undefined) { sourceIndex = sources.length; sources.push(source); rawSources.push(fileName); sourceToSourceIndexMap.set(source, sourceIndex); } exit(); return sourceIndex; } /* eslint-disable boolean-trivia, no-null/no-null */ function setSourceContent(sourceIndex, content) { enter(); if (content !== null) { if (!sourcesContent) sourcesContent = []; while (sourcesContent.length < sourceIndex) { sourcesContent.push(null); } sourcesContent[sourceIndex] = content; } exit(); } /* eslint-enable boolean-trivia, no-null/no-null */ function addName(name) { enter(); if (!nameToNameIndexMap) nameToNameIndexMap = new ts.Map(); var nameIndex = nameToNameIndexMap.get(name); if (nameIndex === undefined) { nameIndex = names.length; names.push(name); nameToNameIndexMap.set(name, nameIndex); } exit(); return nameIndex; } function isNewGeneratedPosition(generatedLine, generatedCharacter) { return !hasPending || pendingGeneratedLine !== generatedLine || pendingGeneratedCharacter !== generatedCharacter; } function isBacktrackingSourcePosition(sourceIndex, sourceLine, sourceCharacter) { return sourceIndex !== undefined && sourceLine !== undefined && sourceCharacter !== undefined && pendingSourceIndex === sourceIndex && (pendingSourceLine > sourceLine || pendingSourceLine === sourceLine && pendingSourceCharacter > sourceCharacter); } function addMapping(generatedLine, generatedCharacter, sourceIndex, sourceLine, sourceCharacter, nameIndex) { ts.Debug.assert(generatedLine >= pendingGeneratedLine, "generatedLine cannot backtrack"); ts.Debug.assert(generatedCharacter >= 0, "generatedCharacter cannot be negative"); ts.Debug.assert(sourceIndex === undefined || sourceIndex >= 0, "sourceIndex cannot be negative"); ts.Debug.assert(sourceLine === undefined || sourceLine >= 0, "sourceLine cannot be negative"); ts.Debug.assert(sourceCharacter === undefined || sourceCharacter >= 0, "sourceCharacter cannot be negative"); enter(); // If this location wasn't recorded or the location in source is going backwards, record the mapping if (isNewGeneratedPosition(generatedLine, generatedCharacter) || isBacktrackingSourcePosition(sourceIndex, sourceLine, sourceCharacter)) { commitPendingMapping(); pendingGeneratedLine = generatedLine; pendingGeneratedCharacter = generatedCharacter; hasPendingSource = false; hasPendingName = false; hasPending = true; } if (sourceIndex !== undefined && sourceLine !== undefined && sourceCharacter !== undefined) { pendingSourceIndex = sourceIndex; pendingSourceLine = sourceLine; pendingSourceCharacter = sourceCharacter; hasPendingSource = true; if (nameIndex !== undefined) { pendingNameIndex = nameIndex; hasPendingName = true; } } exit(); } function appendSourceMap(generatedLine, generatedCharacter, map, sourceMapPath, start, end) { ts.Debug.assert(generatedLine >= pendingGeneratedLine, "generatedLine cannot backtrack"); ts.Debug.assert(generatedCharacter >= 0, "generatedCharacter cannot be negative"); enter(); // First, decode the old component sourcemap var sourceIndexToNewSourceIndexMap = []; var nameIndexToNewNameIndexMap; var mappingIterator = decodeMappings(map.mappings); for (var iterResult = mappingIterator.next(); !iterResult.done; iterResult = mappingIterator.next()) { var raw = iterResult.value; if (end && (raw.generatedLine > end.line || (raw.generatedLine === end.line && raw.generatedCharacter > end.character))) { break; } if (start && (raw.generatedLine < start.line || (start.line === raw.generatedLine && raw.generatedCharacter < start.character))) { continue; } // Then reencode all the updated mappings into the overall map var newSourceIndex = void 0; var newSourceLine = void 0; var newSourceCharacter = void 0; var newNameIndex = void 0; if (raw.sourceIndex !== undefined) { newSourceIndex = sourceIndexToNewSourceIndexMap[raw.sourceIndex]; if (newSourceIndex === undefined) { // Apply offsets to each position and fixup source entries var rawPath = map.sources[raw.sourceIndex]; var relativePath = map.sourceRoot ? ts.combinePaths(map.sourceRoot, rawPath) : rawPath; var combinedPath = ts.combinePaths(ts.getDirectoryPath(sourceMapPath), relativePath); sourceIndexToNewSourceIndexMap[raw.sourceIndex] = newSourceIndex = addSource(combinedPath); if (map.sourcesContent && typeof map.sourcesContent[raw.sourceIndex] === "string") { setSourceContent(newSourceIndex, map.sourcesContent[raw.sourceIndex]); } } newSourceLine = raw.sourceLine; newSourceCharacter = raw.sourceCharacter; if (map.names && raw.nameIndex !== undefined) { if (!nameIndexToNewNameIndexMap) nameIndexToNewNameIndexMap = []; newNameIndex = nameIndexToNewNameIndexMap[raw.nameIndex]; if (newNameIndex === undefined) { nameIndexToNewNameIndexMap[raw.nameIndex] = newNameIndex = addName(map.names[raw.nameIndex]); } } } var rawGeneratedLine = raw.generatedLine - (start ? start.line : 0); var newGeneratedLine = rawGeneratedLine + generatedLine; var rawGeneratedCharacter = start && start.line === raw.generatedLine ? raw.generatedCharacter - start.character : raw.generatedCharacter; var newGeneratedCharacter = rawGeneratedLine === 0 ? rawGeneratedCharacter + generatedCharacter : rawGeneratedCharacter; addMapping(newGeneratedLine, newGeneratedCharacter, newSourceIndex, newSourceLine, newSourceCharacter, newNameIndex); } exit(); } function shouldCommitMapping() { return !hasLast || lastGeneratedLine !== pendingGeneratedLine || lastGeneratedCharacter !== pendingGeneratedCharacter || lastSourceIndex !== pendingSourceIndex || lastSourceLine !== pendingSourceLine || lastSourceCharacter !== pendingSourceCharacter || lastNameIndex !== pendingNameIndex; } function appendMappingCharCode(charCode) { mappingCharCodes.push(charCode); // String.fromCharCode accepts its arguments on the stack, so we have to chunk the input, // otherwise we can get stack overflows for large source maps if (mappingCharCodes.length >= 1024) { flushMappingBuffer(); } } function commitPendingMapping() { if (!hasPending || !shouldCommitMapping()) { return; } enter(); // Line/Comma delimiters if (lastGeneratedLine < pendingGeneratedLine) { // Emit line delimiters do { appendMappingCharCode(59 /* CharacterCodes.semicolon */); lastGeneratedLine++; } while (lastGeneratedLine < pendingGeneratedLine); // Only need to set this once lastGeneratedCharacter = 0; } else { ts.Debug.assertEqual(lastGeneratedLine, pendingGeneratedLine, "generatedLine cannot backtrack"); // Emit comma to separate the entry if (hasLast) { appendMappingCharCode(44 /* CharacterCodes.comma */); } } // 1. Relative generated character appendBase64VLQ(pendingGeneratedCharacter - lastGeneratedCharacter); lastGeneratedCharacter = pendingGeneratedCharacter; if (hasPendingSource) { // 2. Relative sourceIndex appendBase64VLQ(pendingSourceIndex - lastSourceIndex); lastSourceIndex = pendingSourceIndex; // 3. Relative source line appendBase64VLQ(pendingSourceLine - lastSourceLine); lastSourceLine = pendingSourceLine; // 4. Relative source character appendBase64VLQ(pendingSourceCharacter - lastSourceCharacter); lastSourceCharacter = pendingSourceCharacter; if (hasPendingName) { // 5. Relative nameIndex appendBase64VLQ(pendingNameIndex - lastNameIndex); lastNameIndex = pendingNameIndex; } } hasLast = true; exit(); } function flushMappingBuffer() { if (mappingCharCodes.length > 0) { mappings += String.fromCharCode.apply(undefined, mappingCharCodes); mappingCharCodes.length = 0; } } function toJSON() { commitPendingMapping(); flushMappingBuffer(); return { version: 3, file: file, sourceRoot: sourceRoot, sources: sources, names: names, mappings: mappings, sourcesContent: sourcesContent, }; } function appendBase64VLQ(inValue) { // Add a new least significant bit that has the sign of the value. // if negative number the least significant bit that gets added to the number has value 1 // else least significant bit value that gets added is 0 // eg. -1 changes to binary : 01 [1] => 3 // +1 changes to binary : 01 [0] => 2 if (inValue < 0) { inValue = ((-inValue) << 1) + 1; } else { inValue = inValue << 1; } // Encode 5 bits at a time starting from least significant bits do { var currentDigit = inValue & 31; // 11111 inValue = inValue >> 5; if (inValue > 0) { // There are still more digits to decode, set the msb (6th bit) currentDigit = currentDigit | 32; } appendMappingCharCode(base64FormatEncode(currentDigit)); } while (inValue > 0); } } ts.createSourceMapGenerator = createSourceMapGenerator; // Sometimes tools can see the following line as a source mapping url comment, so we mangle it a bit (the [M]) var sourceMapCommentRegExp = /^\/\/[@#] source[M]appingURL=(.+)\r?\n?$/; var whitespaceOrMapCommentRegExp = /^\s*(\/\/[@#] .*)?$/; function getLineInfo(text, lineStarts) { return { getLineCount: function () { return lineStarts.length; }, getLineText: function (line) { return text.substring(lineStarts[line], lineStarts[line + 1]); } }; } ts.getLineInfo = getLineInfo; /** * Tries to find the sourceMappingURL comment at the end of a file. */ function tryGetSourceMappingURL(lineInfo) { for (var index = lineInfo.getLineCount() - 1; index >= 0; index--) { var line = lineInfo.getLineText(index); var comment = sourceMapCommentRegExp.exec(line); if (comment) { return ts.trimStringEnd(comment[1]); } // If we see a non-whitespace/map comment-like line, break, to avoid scanning up the entire file else if (!line.match(whitespaceOrMapCommentRegExp)) { break; } } } ts.tryGetSourceMappingURL = tryGetSourceMappingURL; /* eslint-disable no-null/no-null */ function isStringOrNull(x) { return typeof x === "string" || x === null; } function isRawSourceMap(x) { return x !== null && typeof x === "object" && x.version === 3 && typeof x.file === "string" && typeof x.mappings === "string" && ts.isArray(x.sources) && ts.every(x.sources, ts.isString) && (x.sourceRoot === undefined || x.sourceRoot === null || typeof x.sourceRoot === "string") && (x.sourcesContent === undefined || x.sourcesContent === null || ts.isArray(x.sourcesContent) && ts.every(x.sourcesContent, isStringOrNull)) && (x.names === undefined || x.names === null || ts.isArray(x.names) && ts.every(x.names, ts.isString)); } ts.isRawSourceMap = isRawSourceMap; /* eslint-enable no-null/no-null */ function tryParseRawSourceMap(text) { try { var parsed = JSON.parse(text); if (isRawSourceMap(parsed)) { return parsed; } } catch (_a) { // empty } return undefined; } ts.tryParseRawSourceMap = tryParseRawSourceMap; function decodeMappings(mappings) { var done = false; var pos = 0; var generatedLine = 0; var generatedCharacter = 0; var sourceIndex = 0; var sourceLine = 0; var sourceCharacter = 0; var nameIndex = 0; var error; return { get pos() { return pos; }, get error() { return error; }, get state() { return captureMapping(/*hasSource*/ true, /*hasName*/ true); }, next: function () { while (!done && pos < mappings.length) { var ch = mappings.charCodeAt(pos); if (ch === 59 /* CharacterCodes.semicolon */) { // new line generatedLine++; generatedCharacter = 0; pos++; continue; } if (ch === 44 /* CharacterCodes.comma */) { // Next entry is on same line - no action needed pos++; continue; } var hasSource = false; var hasName = false; generatedCharacter += base64VLQFormatDecode(); if (hasReportedError()) return stopIterating(); if (generatedCharacter < 0) return setErrorAndStopIterating("Invalid generatedCharacter found"); if (!isSourceMappingSegmentEnd()) { hasSource = true; sourceIndex += base64VLQFormatDecode(); if (hasReportedError()) return stopIterating(); if (sourceIndex < 0) return setErrorAndStopIterating("Invalid sourceIndex found"); if (isSourceMappingSegmentEnd()) return setErrorAndStopIterating("Unsupported Format: No entries after sourceIndex"); sourceLine += base64VLQFormatDecode(); if (hasReportedError()) return stopIterating(); if (sourceLine < 0) return setErrorAndStopIterating("Invalid sourceLine found"); if (isSourceMappingSegmentEnd()) return setErrorAndStopIterating("Unsupported Format: No entries after sourceLine"); sourceCharacter += base64VLQFormatDecode(); if (hasReportedError()) return stopIterating(); if (sourceCharacter < 0) return setErrorAndStopIterating("Invalid sourceCharacter found"); if (!isSourceMappingSegmentEnd()) { hasName = true; nameIndex += base64VLQFormatDecode(); if (hasReportedError()) return stopIterating(); if (nameIndex < 0) return setErrorAndStopIterating("Invalid nameIndex found"); if (!isSourceMappingSegmentEnd()) return setErrorAndStopIterating("Unsupported Error Format: Entries after nameIndex"); } } return { value: captureMapping(hasSource, hasName), done: done }; } return stopIterating(); } }; function captureMapping(hasSource, hasName) { return { generatedLine: generatedLine, generatedCharacter: generatedCharacter, sourceIndex: hasSource ? sourceIndex : undefined, sourceLine: hasSource ? sourceLine : undefined, sourceCharacter: hasSource ? sourceCharacter : undefined, nameIndex: hasName ? nameIndex : undefined }; } function stopIterating() { done = true; return { value: undefined, done: true }; } function setError(message) { if (error === undefined) { error = message; } } function setErrorAndStopIterating(message) { setError(message); return stopIterating(); } function hasReportedError() { return error !== undefined; } function isSourceMappingSegmentEnd() { return (pos === mappings.length || mappings.charCodeAt(pos) === 44 /* CharacterCodes.comma */ || mappings.charCodeAt(pos) === 59 /* CharacterCodes.semicolon */); } function base64VLQFormatDecode() { var moreDigits = true; var shiftCount = 0; var value = 0; for (; moreDigits; pos++) { if (pos >= mappings.length) return setError("Error in decoding base64VLQFormatDecode, past the mapping string"), -1; // 6 digit number var currentByte = base64FormatDecode(mappings.charCodeAt(pos)); if (currentByte === -1) return setError("Invalid character in VLQ"), -1; // If msb is set, we still have more bits to continue moreDigits = (currentByte & 32) !== 0; // least significant 5 bits are the next msbs in the final value. value = value | ((currentByte & 31) << shiftCount); shiftCount += 5; } // Least significant bit if 1 represents negative and rest of the msb is actual absolute value if ((value & 1) === 0) { // + number value = value >> 1; } else { // - number value = value >> 1; value = -value; } return value; } } ts.decodeMappings = decodeMappings; function sameMapping(left, right) { return left === right || left.generatedLine === right.generatedLine && left.generatedCharacter === right.generatedCharacter && left.sourceIndex === right.sourceIndex && left.sourceLine === right.sourceLine && left.sourceCharacter === right.sourceCharacter && left.nameIndex === right.nameIndex; } ts.sameMapping = sameMapping; function isSourceMapping(mapping) { return mapping.sourceIndex !== undefined && mapping.sourceLine !== undefined && mapping.sourceCharacter !== undefined; } ts.isSourceMapping = isSourceMapping; function base64FormatEncode(value) { return value >= 0 && value < 26 ? 65 /* CharacterCodes.A */ + value : value >= 26 && value < 52 ? 97 /* CharacterCodes.a */ + value - 26 : value >= 52 && value < 62 ? 48 /* CharacterCodes._0 */ + value - 52 : value === 62 ? 43 /* CharacterCodes.plus */ : value === 63 ? 47 /* CharacterCodes.slash */ : ts.Debug.fail("".concat(value, ": not a base64 value")); } function base64FormatDecode(ch) { return ch >= 65 /* CharacterCodes.A */ && ch <= 90 /* CharacterCodes.Z */ ? ch - 65 /* CharacterCodes.A */ : ch >= 97 /* CharacterCodes.a */ && ch <= 122 /* CharacterCodes.z */ ? ch - 97 /* CharacterCodes.a */ + 26 : ch >= 48 /* CharacterCodes._0 */ && ch <= 57 /* CharacterCodes._9 */ ? ch - 48 /* CharacterCodes._0 */ + 52 : ch === 43 /* CharacterCodes.plus */ ? 62 : ch === 47 /* CharacterCodes.slash */ ? 63 : -1; } function isSourceMappedPosition(value) { return value.sourceIndex !== undefined && value.sourcePosition !== undefined; } function sameMappedPosition(left, right) { return left.generatedPosition === right.generatedPosition && left.sourceIndex === right.sourceIndex && left.sourcePosition === right.sourcePosition; } function compareSourcePositions(left, right) { // Compares sourcePosition without comparing sourceIndex // since the mappings are grouped by sourceIndex ts.Debug.assert(left.sourceIndex === right.sourceIndex); return ts.compareValues(left.sourcePosition, right.sourcePosition); } function compareGeneratedPositions(left, right) { return ts.compareValues(left.generatedPosition, right.generatedPosition); } function getSourcePositionOfMapping(value) { return value.sourcePosition; } function getGeneratedPositionOfMapping(value) { return value.generatedPosition; } function createDocumentPositionMapper(host, map, mapPath) { var mapDirectory = ts.getDirectoryPath(mapPath); var sourceRoot = map.sourceRoot ? ts.getNormalizedAbsolutePath(map.sourceRoot, mapDirectory) : mapDirectory; var generatedAbsoluteFilePath = ts.getNormalizedAbsolutePath(map.file, mapDirectory); var generatedFile = host.getSourceFileLike(generatedAbsoluteFilePath); var sourceFileAbsolutePaths = map.sources.map(function (source) { return ts.getNormalizedAbsolutePath(source, sourceRoot); }); var sourceToSourceIndexMap = new ts.Map(sourceFileAbsolutePaths.map(function (source, i) { return [host.getCanonicalFileName(source), i]; })); var decodedMappings; var generatedMappings; var sourceMappings; return { getSourcePosition: getSourcePosition, getGeneratedPosition: getGeneratedPosition }; function processMapping(mapping) { var generatedPosition = generatedFile !== undefined ? ts.getPositionOfLineAndCharacter(generatedFile, mapping.generatedLine, mapping.generatedCharacter, /*allowEdits*/ true) : -1; var source; var sourcePosition; if (isSourceMapping(mapping)) { var sourceFile = host.getSourceFileLike(sourceFileAbsolutePaths[mapping.sourceIndex]); source = map.sources[mapping.sourceIndex]; sourcePosition = sourceFile !== undefined ? ts.getPositionOfLineAndCharacter(sourceFile, mapping.sourceLine, mapping.sourceCharacter, /*allowEdits*/ true) : -1; } return { generatedPosition: generatedPosition, source: source, sourceIndex: mapping.sourceIndex, sourcePosition: sourcePosition, nameIndex: mapping.nameIndex }; } function getDecodedMappings() { if (decodedMappings === undefined) { var decoder = decodeMappings(map.mappings); var mappings = ts.arrayFrom(decoder, processMapping); if (decoder.error !== undefined) { if (host.log) { host.log("Encountered error while decoding sourcemap: ".concat(decoder.error)); } decodedMappings = ts.emptyArray; } else { decodedMappings = mappings; } } return decodedMappings; } function getSourceMappings(sourceIndex) { if (sourceMappings === undefined) { var lists = []; for (var _i = 0, _a = getDecodedMappings(); _i < _a.length; _i++) { var mapping = _a[_i]; if (!isSourceMappedPosition(mapping)) continue; var list = lists[mapping.sourceIndex]; if (!list) lists[mapping.sourceIndex] = list = []; list.push(mapping); } sourceMappings = lists.map(function (list) { return ts.sortAndDeduplicate(list, compareSourcePositions, sameMappedPosition); }); } return sourceMappings[sourceIndex]; } function getGeneratedMappings() { if (generatedMappings === undefined) { var list = []; for (var _i = 0, _a = getDecodedMappings(); _i < _a.length; _i++) { var mapping = _a[_i]; list.push(mapping); } generatedMappings = ts.sortAndDeduplicate(list, compareGeneratedPositions, sameMappedPosition); } return generatedMappings; } function getGeneratedPosition(loc) { var sourceIndex = sourceToSourceIndexMap.get(host.getCanonicalFileName(loc.fileName)); if (sourceIndex === undefined) return loc; var sourceMappings = getSourceMappings(sourceIndex); if (!ts.some(sourceMappings)) return loc; var targetIndex = ts.binarySearchKey(sourceMappings, loc.pos, getSourcePositionOfMapping, ts.compareValues); if (targetIndex < 0) { // if no exact match, closest is 2's complement of result targetIndex = ~targetIndex; } var mapping = sourceMappings[targetIndex]; if (mapping === undefined || mapping.sourceIndex !== sourceIndex) { return loc; } return { fileName: generatedAbsoluteFilePath, pos: mapping.generatedPosition }; // Closest pos } function getSourcePosition(loc) { var generatedMappings = getGeneratedMappings(); if (!ts.some(generatedMappings)) return loc; var targetIndex = ts.binarySearchKey(generatedMappings, loc.pos, getGeneratedPositionOfMapping, ts.compareValues); if (targetIndex < 0) { // if no exact match, closest is 2's complement of result targetIndex = ~targetIndex; } var mapping = generatedMappings[targetIndex]; if (mapping === undefined || !isSourceMappedPosition(mapping)) { return loc; } return { fileName: sourceFileAbsolutePaths[mapping.sourceIndex], pos: mapping.sourcePosition }; // Closest pos } } ts.createDocumentPositionMapper = createDocumentPositionMapper; ts.identitySourceMapConsumer = { getSourcePosition: ts.identity, getGeneratedPosition: ts.identity }; })(ts || (ts = {})); /* @internal */ var ts; (function (ts) { function getOriginalNodeId(node) { node = ts.getOriginalNode(node); return node ? ts.getNodeId(node) : 0; } ts.getOriginalNodeId = getOriginalNodeId; function containsDefaultReference(node) { if (!node) return false; if (!ts.isNamedImports(node)) return false; return ts.some(node.elements, isNamedDefaultReference); } function isNamedDefaultReference(e) { return e.propertyName !== undefined && e.propertyName.escapedText === "default" /* InternalSymbolName.Default */; } function chainBundle(context, transformSourceFile) { return transformSourceFileOrBundle; function transformSourceFileOrBundle(node) { return node.kind === 305 /* SyntaxKind.SourceFile */ ? transformSourceFile(node) : transformBundle(node); } function transformBundle(node) { return context.factory.createBundle(ts.map(node.sourceFiles, transformSourceFile), node.prepends); } } ts.chainBundle = chainBundle; function getExportNeedsImportStarHelper(node) { return !!ts.getNamespaceDeclarationNode(node); } ts.getExportNeedsImportStarHelper = getExportNeedsImportStarHelper; function getImportNeedsImportStarHelper(node) { if (!!ts.getNamespaceDeclarationNode(node)) { return true; } var bindings = node.importClause && node.importClause.namedBindings; if (!bindings) { return false; } if (!ts.isNamedImports(bindings)) return false; var defaultRefCount = 0; for (var _i = 0, _a = bindings.elements; _i < _a.length; _i++) { var binding = _a[_i]; if (isNamedDefaultReference(binding)) { defaultRefCount++; } } // Import star is required if there's default named refs mixed with non-default refs, or if theres non-default refs and it has a default import return (defaultRefCount > 0 && defaultRefCount !== bindings.elements.length) || (!!(bindings.elements.length - defaultRefCount) && ts.isDefaultImport(node)); } ts.getImportNeedsImportStarHelper = getImportNeedsImportStarHelper; function getImportNeedsImportDefaultHelper(node) { // Import default is needed if there's a default import or a default ref and no other refs (meaning an import star helper wasn't requested) return !getImportNeedsImportStarHelper(node) && (ts.isDefaultImport(node) || (!!node.importClause && ts.isNamedImports(node.importClause.namedBindings) && containsDefaultReference(node.importClause.namedBindings))); // TODO: GH#18217 } ts.getImportNeedsImportDefaultHelper = getImportNeedsImportDefaultHelper; function collectExternalModuleInfo(context, sourceFile, resolver, compilerOptions) { var externalImports = []; var exportSpecifiers = ts.createMultiMap(); var exportedBindings = []; var uniqueExports = new ts.Map(); var exportedNames; var hasExportDefault = false; var exportEquals; var hasExportStarsToExportValues = false; var hasImportStar = false; var hasImportDefault = false; for (var _i = 0, _a = sourceFile.statements; _i < _a.length; _i++) { var node = _a[_i]; switch (node.kind) { case 266 /* SyntaxKind.ImportDeclaration */: // import "mod" // import x from "mod" // import * as x from "mod" // import { x, y } from "mod" externalImports.push(node); if (!hasImportStar && getImportNeedsImportStarHelper(node)) { hasImportStar = true; } if (!hasImportDefault && getImportNeedsImportDefaultHelper(node)) { hasImportDefault = true; } break; case 265 /* SyntaxKind.ImportEqualsDeclaration */: if (node.moduleReference.kind === 277 /* SyntaxKind.ExternalModuleReference */) { // import x = require("mod") externalImports.push(node); } break; case 272 /* SyntaxKind.ExportDeclaration */: if (node.moduleSpecifier) { if (!node.exportClause) { // export * from "mod" externalImports.push(node); hasExportStarsToExportValues = true; } else { // export * as ns from "mod" // export { x, y } from "mod" externalImports.push(node); if (ts.isNamedExports(node.exportClause)) { addExportedNamesForExportDeclaration(node); } else { var name = node.exportClause.name; if (!uniqueExports.get(ts.idText(name))) { multiMapSparseArrayAdd(exportedBindings, getOriginalNodeId(node), name); uniqueExports.set(ts.idText(name), true); exportedNames = ts.append(exportedNames, name); } // we use the same helpers for `export * as ns` as we do for `import * as ns` hasImportStar = true; } } } else { // export { x, y } addExportedNamesForExportDeclaration(node); } break; case 271 /* SyntaxKind.ExportAssignment */: if (node.isExportEquals && !exportEquals) { // export = x exportEquals = node; } break; case 237 /* SyntaxKind.VariableStatement */: if (ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */)) { for (var _b = 0, _c = node.declarationList.declarations; _b < _c.length; _b++) { var decl = _c[_b]; exportedNames = collectExportedVariableInfo(decl, uniqueExports, exportedNames); } } break; case 256 /* SyntaxKind.FunctionDeclaration */: if (ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */)) { if (ts.hasSyntacticModifier(node, 512 /* ModifierFlags.Default */)) { // export default function() { } if (!hasExportDefault) { multiMapSparseArrayAdd(exportedBindings, getOriginalNodeId(node), context.factory.getDeclarationName(node)); hasExportDefault = true; } } else { // export function x() { } var name = node.name; if (!uniqueExports.get(ts.idText(name))) { multiMapSparseArrayAdd(exportedBindings, getOriginalNodeId(node), name); uniqueExports.set(ts.idText(name), true); exportedNames = ts.append(exportedNames, name); } } } break; case 257 /* SyntaxKind.ClassDeclaration */: if (ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */)) { if (ts.hasSyntacticModifier(node, 512 /* ModifierFlags.Default */)) { // export default class { } if (!hasExportDefault) { multiMapSparseArrayAdd(exportedBindings, getOriginalNodeId(node), context.factory.getDeclarationName(node)); hasExportDefault = true; } } else { // export class x { } var name = node.name; if (name && !uniqueExports.get(ts.idText(name))) { multiMapSparseArrayAdd(exportedBindings, getOriginalNodeId(node), name); uniqueExports.set(ts.idText(name), true); exportedNames = ts.append(exportedNames, name); } } } break; } } var externalHelpersImportDeclaration = ts.createExternalHelpersImportDeclarationIfNeeded(context.factory, context.getEmitHelperFactory(), sourceFile, compilerOptions, hasExportStarsToExportValues, hasImportStar, hasImportDefault); if (externalHelpersImportDeclaration) { externalImports.unshift(externalHelpersImportDeclaration); } return { externalImports: externalImports, exportSpecifiers: exportSpecifiers, exportEquals: exportEquals, hasExportStarsToExportValues: hasExportStarsToExportValues, exportedBindings: exportedBindings, exportedNames: exportedNames, externalHelpersImportDeclaration: externalHelpersImportDeclaration }; function addExportedNamesForExportDeclaration(node) { for (var _i = 0, _a = ts.cast(node.exportClause, ts.isNamedExports).elements; _i < _a.length; _i++) { var specifier = _a[_i]; if (!uniqueExports.get(ts.idText(specifier.name))) { var name = specifier.propertyName || specifier.name; if (!node.moduleSpecifier) { exportSpecifiers.add(ts.idText(name), specifier); } var decl = resolver.getReferencedImportDeclaration(name) || resolver.getReferencedValueDeclaration(name); if (decl) { multiMapSparseArrayAdd(exportedBindings, getOriginalNodeId(decl), specifier.name); } uniqueExports.set(ts.idText(specifier.name), true); exportedNames = ts.append(exportedNames, specifier.name); } } } } ts.collectExternalModuleInfo = collectExternalModuleInfo; function collectExportedVariableInfo(decl, uniqueExports, exportedNames) { if (ts.isBindingPattern(decl.name)) { for (var _i = 0, _a = decl.name.elements; _i < _a.length; _i++) { var element = _a[_i]; if (!ts.isOmittedExpression(element)) { exportedNames = collectExportedVariableInfo(element, uniqueExports, exportedNames); } } } else if (!ts.isGeneratedIdentifier(decl.name)) { var text = ts.idText(decl.name); if (!uniqueExports.get(text)) { uniqueExports.set(text, true); exportedNames = ts.append(exportedNames, decl.name); } } return exportedNames; } /** Use a sparse array as a multi-map. */ function multiMapSparseArrayAdd(map, key, value) { var values = map[key]; if (values) { values.push(value); } else { map[key] = values = [value]; } return values; } /** * Used in the module transformer to check if an expression is reasonably without sideeffect, * and thus better to copy into multiple places rather than to cache in a temporary variable * - this is mostly subjective beyond the requirement that the expression not be sideeffecting */ function isSimpleCopiableExpression(expression) { return ts.isStringLiteralLike(expression) || expression.kind === 8 /* SyntaxKind.NumericLiteral */ || ts.isKeyword(expression.kind) || ts.isIdentifier(expression); } ts.isSimpleCopiableExpression = isSimpleCopiableExpression; /** * A simple inlinable expression is an expression which can be copied into multiple locations * without risk of repeating any sideeffects and whose value could not possibly change between * any such locations */ function isSimpleInlineableExpression(expression) { return !ts.isIdentifier(expression) && isSimpleCopiableExpression(expression); } ts.isSimpleInlineableExpression = isSimpleInlineableExpression; function isCompoundAssignment(kind) { return kind >= 64 /* SyntaxKind.FirstCompoundAssignment */ && kind <= 78 /* SyntaxKind.LastCompoundAssignment */; } ts.isCompoundAssignment = isCompoundAssignment; function getNonAssignmentOperatorForCompoundAssignment(kind) { switch (kind) { case 64 /* SyntaxKind.PlusEqualsToken */: return 39 /* SyntaxKind.PlusToken */; case 65 /* SyntaxKind.MinusEqualsToken */: return 40 /* SyntaxKind.MinusToken */; case 66 /* SyntaxKind.AsteriskEqualsToken */: return 41 /* SyntaxKind.AsteriskToken */; case 67 /* SyntaxKind.AsteriskAsteriskEqualsToken */: return 42 /* SyntaxKind.AsteriskAsteriskToken */; case 68 /* SyntaxKind.SlashEqualsToken */: return 43 /* SyntaxKind.SlashToken */; case 69 /* SyntaxKind.PercentEqualsToken */: return 44 /* SyntaxKind.PercentToken */; case 70 /* SyntaxKind.LessThanLessThanEqualsToken */: return 47 /* SyntaxKind.LessThanLessThanToken */; case 71 /* SyntaxKind.GreaterThanGreaterThanEqualsToken */: return 48 /* SyntaxKind.GreaterThanGreaterThanToken */; case 72 /* SyntaxKind.GreaterThanGreaterThanGreaterThanEqualsToken */: return 49 /* SyntaxKind.GreaterThanGreaterThanGreaterThanToken */; case 73 /* SyntaxKind.AmpersandEqualsToken */: return 50 /* SyntaxKind.AmpersandToken */; case 74 /* SyntaxKind.BarEqualsToken */: return 51 /* SyntaxKind.BarToken */; case 78 /* SyntaxKind.CaretEqualsToken */: return 52 /* SyntaxKind.CaretToken */; case 75 /* SyntaxKind.BarBarEqualsToken */: return 56 /* SyntaxKind.BarBarToken */; case 76 /* SyntaxKind.AmpersandAmpersandEqualsToken */: return 55 /* SyntaxKind.AmpersandAmpersandToken */; case 77 /* SyntaxKind.QuestionQuestionEqualsToken */: return 60 /* SyntaxKind.QuestionQuestionToken */; } } ts.getNonAssignmentOperatorForCompoundAssignment = getNonAssignmentOperatorForCompoundAssignment; /** * @returns Contained super() call from descending into the statement ignoring parentheses, if that call exists. */ function getSuperCallFromStatement(statement) { if (!ts.isExpressionStatement(statement)) { return undefined; } var expression = ts.skipParentheses(statement.expression); return ts.isSuperCall(expression) ? expression : undefined; } ts.getSuperCallFromStatement = getSuperCallFromStatement; /** * @returns The index (after prologue statements) of a super call, or -1 if not found. */ function findSuperStatementIndex(statements, indexAfterLastPrologueStatement) { for (var i = indexAfterLastPrologueStatement; i < statements.length; i += 1) { var statement = statements[i]; if (getSuperCallFromStatement(statement)) { return i; } } return -1; } ts.findSuperStatementIndex = findSuperStatementIndex; function getProperties(node, requireInitializer, isStatic) { return ts.filter(node.members, function (m) { return isInitializedOrStaticProperty(m, requireInitializer, isStatic); }); } ts.getProperties = getProperties; function isStaticPropertyDeclarationOrClassStaticBlockDeclaration(element) { return isStaticPropertyDeclaration(element) || ts.isClassStaticBlockDeclaration(element); } function getStaticPropertiesAndClassStaticBlock(node) { return ts.filter(node.members, isStaticPropertyDeclarationOrClassStaticBlockDeclaration); } ts.getStaticPropertiesAndClassStaticBlock = getStaticPropertiesAndClassStaticBlock; /** * Is a class element either a static or an instance property declaration with an initializer? * * @param member The class element node. * @param isStatic A value indicating whether the member should be a static or instance member. */ function isInitializedOrStaticProperty(member, requireInitializer, isStatic) { return ts.isPropertyDeclaration(member) && (!!member.initializer || !requireInitializer) && ts.hasStaticModifier(member) === isStatic; } function isStaticPropertyDeclaration(member) { return ts.isPropertyDeclaration(member) && ts.hasStaticModifier(member); } /** * Gets a value indicating whether a class element is either a static or an instance property declaration with an initializer. * * @param member The class element node. * @param isStatic A value indicating whether the member should be a static or instance member. */ function isInitializedProperty(member) { return member.kind === 167 /* SyntaxKind.PropertyDeclaration */ && member.initializer !== undefined; } ts.isInitializedProperty = isInitializedProperty; /** * Gets a value indicating whether a class element is a private instance method or accessor. * * @param member The class element node. */ function isNonStaticMethodOrAccessorWithPrivateName(member) { return !ts.isStatic(member) && ts.isMethodOrAccessor(member) && ts.isPrivateIdentifier(member.name); } ts.isNonStaticMethodOrAccessorWithPrivateName = isNonStaticMethodOrAccessorWithPrivateName; })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { var FlattenLevel; (function (FlattenLevel) { FlattenLevel[FlattenLevel["All"] = 0] = "All"; FlattenLevel[FlattenLevel["ObjectRest"] = 1] = "ObjectRest"; })(FlattenLevel = ts.FlattenLevel || (ts.FlattenLevel = {})); /** * Flattens a DestructuringAssignment or a VariableDeclaration to an expression. * * @param node The node to flatten. * @param visitor An optional visitor used to visit initializers. * @param context The transformation context. * @param level Indicates the extent to which flattening should occur. * @param needsValue An optional value indicating whether the value from the right-hand-side of * the destructuring assignment is needed as part of a larger expression. * @param createAssignmentCallback An optional callback used to create the assignment expression. */ function flattenDestructuringAssignment(node, visitor, context, level, needsValue, createAssignmentCallback) { var location = node; var value; if (ts.isDestructuringAssignment(node)) { value = node.right; while (ts.isEmptyArrayLiteral(node.left) || ts.isEmptyObjectLiteral(node.left)) { if (ts.isDestructuringAssignment(value)) { location = node = value; value = node.right; } else { return ts.visitNode(value, visitor, ts.isExpression); } } } var expressions; var flattenContext = { context: context, level: level, downlevelIteration: !!context.getCompilerOptions().downlevelIteration, hoistTempVariables: true, emitExpression: emitExpression, emitBindingOrAssignment: emitBindingOrAssignment, createArrayBindingOrAssignmentPattern: function (elements) { return makeArrayAssignmentPattern(context.factory, elements); }, createObjectBindingOrAssignmentPattern: function (elements) { return makeObjectAssignmentPattern(context.factory, elements); }, createArrayBindingOrAssignmentElement: makeAssignmentElement, visitor: visitor }; if (value) { value = ts.visitNode(value, visitor, ts.isExpression); if (ts.isIdentifier(value) && bindingOrAssignmentElementAssignsToName(node, value.escapedText) || bindingOrAssignmentElementContainsNonLiteralComputedName(node)) { // If the right-hand value of the assignment is also an assignment target then // we need to cache the right-hand value. value = ensureIdentifier(flattenContext, value, /*reuseIdentifierExpressions*/ false, location); } else if (needsValue) { // If the right-hand value of the destructuring assignment needs to be preserved (as // is the case when the destructuring assignment is part of a larger expression), // then we need to cache the right-hand value. // // The source map location for the assignment should point to the entire binary // expression. value = ensureIdentifier(flattenContext, value, /*reuseIdentifierExpressions*/ true, location); } else if (ts.nodeIsSynthesized(node)) { // Generally, the source map location for a destructuring assignment is the root // expression. // // However, if the root expression is synthesized (as in the case // of the initializer when transforming a ForOfStatement), then the source map // location should point to the right-hand value of the expression. location = value; } } flattenBindingOrAssignmentElement(flattenContext, node, value, location, /*skipInitializer*/ ts.isDestructuringAssignment(node)); if (value && needsValue) { if (!ts.some(expressions)) { return value; } expressions.push(value); } return context.factory.inlineExpressions(expressions) || context.factory.createOmittedExpression(); function emitExpression(expression) { expressions = ts.append(expressions, expression); } function emitBindingOrAssignment(target, value, location, original) { ts.Debug.assertNode(target, createAssignmentCallback ? ts.isIdentifier : ts.isExpression); var expression = createAssignmentCallback ? createAssignmentCallback(target, value, location) : ts.setTextRange(context.factory.createAssignment(ts.visitNode(target, visitor, ts.isExpression), value), location); expression.original = original; emitExpression(expression); } } ts.flattenDestructuringAssignment = flattenDestructuringAssignment; function bindingOrAssignmentElementAssignsToName(element, escapedName) { var target = ts.getTargetOfBindingOrAssignmentElement(element); // TODO: GH#18217 if (ts.isBindingOrAssignmentPattern(target)) { return bindingOrAssignmentPatternAssignsToName(target, escapedName); } else if (ts.isIdentifier(target)) { return target.escapedText === escapedName; } return false; } function bindingOrAssignmentPatternAssignsToName(pattern, escapedName) { var elements = ts.getElementsOfBindingOrAssignmentPattern(pattern); for (var _i = 0, elements_4 = elements; _i < elements_4.length; _i++) { var element = elements_4[_i]; if (bindingOrAssignmentElementAssignsToName(element, escapedName)) { return true; } } return false; } function bindingOrAssignmentElementContainsNonLiteralComputedName(element) { var propertyName = ts.tryGetPropertyNameOfBindingOrAssignmentElement(element); if (propertyName && ts.isComputedPropertyName(propertyName) && !ts.isLiteralExpression(propertyName.expression)) { return true; } var target = ts.getTargetOfBindingOrAssignmentElement(element); return !!target && ts.isBindingOrAssignmentPattern(target) && bindingOrAssignmentPatternContainsNonLiteralComputedName(target); } function bindingOrAssignmentPatternContainsNonLiteralComputedName(pattern) { return !!ts.forEach(ts.getElementsOfBindingOrAssignmentPattern(pattern), bindingOrAssignmentElementContainsNonLiteralComputedName); } /** * Flattens a VariableDeclaration or ParameterDeclaration to one or more variable declarations. * * @param node The node to flatten. * @param visitor An optional visitor used to visit initializers. * @param context The transformation context. * @param boundValue The value bound to the declaration. * @param skipInitializer A value indicating whether to ignore the initializer of `node`. * @param hoistTempVariables Indicates whether temporary variables should not be recorded in-line. * @param level Indicates the extent to which flattening should occur. */ function flattenDestructuringBinding(node, visitor, context, level, rval, hoistTempVariables, skipInitializer) { if (hoistTempVariables === void 0) { hoistTempVariables = false; } var pendingExpressions; var pendingDeclarations = []; var declarations = []; var flattenContext = { context: context, level: level, downlevelIteration: !!context.getCompilerOptions().downlevelIteration, hoistTempVariables: hoistTempVariables, emitExpression: emitExpression, emitBindingOrAssignment: emitBindingOrAssignment, createArrayBindingOrAssignmentPattern: function (elements) { return makeArrayBindingPattern(context.factory, elements); }, createObjectBindingOrAssignmentPattern: function (elements) { return makeObjectBindingPattern(context.factory, elements); }, createArrayBindingOrAssignmentElement: function (name) { return makeBindingElement(context.factory, name); }, visitor: visitor }; if (ts.isVariableDeclaration(node)) { var initializer = ts.getInitializerOfBindingOrAssignmentElement(node); if (initializer && (ts.isIdentifier(initializer) && bindingOrAssignmentElementAssignsToName(node, initializer.escapedText) || bindingOrAssignmentElementContainsNonLiteralComputedName(node))) { // If the right-hand value of the assignment is also an assignment target then // we need to cache the right-hand value. initializer = ensureIdentifier(flattenContext, ts.visitNode(initializer, flattenContext.visitor), /*reuseIdentifierExpressions*/ false, initializer); node = context.factory.updateVariableDeclaration(node, node.name, /*exclamationToken*/ undefined, /*type*/ undefined, initializer); } } flattenBindingOrAssignmentElement(flattenContext, node, rval, node, skipInitializer); if (pendingExpressions) { var temp = context.factory.createTempVariable(/*recordTempVariable*/ undefined); if (hoistTempVariables) { var value = context.factory.inlineExpressions(pendingExpressions); pendingExpressions = undefined; emitBindingOrAssignment(temp, value, /*location*/ undefined, /*original*/ undefined); } else { context.hoistVariableDeclaration(temp); var pendingDeclaration = ts.last(pendingDeclarations); pendingDeclaration.pendingExpressions = ts.append(pendingDeclaration.pendingExpressions, context.factory.createAssignment(temp, pendingDeclaration.value)); ts.addRange(pendingDeclaration.pendingExpressions, pendingExpressions); pendingDeclaration.value = temp; } } for (var _i = 0, pendingDeclarations_1 = pendingDeclarations; _i < pendingDeclarations_1.length; _i++) { var _a = pendingDeclarations_1[_i], pendingExpressions_1 = _a.pendingExpressions, name = _a.name, value = _a.value, location = _a.location, original = _a.original; var variable = context.factory.createVariableDeclaration(name, /*exclamationToken*/ undefined, /*type*/ undefined, pendingExpressions_1 ? context.factory.inlineExpressions(ts.append(pendingExpressions_1, value)) : value); variable.original = original; ts.setTextRange(variable, location); declarations.push(variable); } return declarations; function emitExpression(value) { pendingExpressions = ts.append(pendingExpressions, value); } function emitBindingOrAssignment(target, value, location, original) { ts.Debug.assertNode(target, ts.isBindingName); if (pendingExpressions) { value = context.factory.inlineExpressions(ts.append(pendingExpressions, value)); pendingExpressions = undefined; } pendingDeclarations.push({ pendingExpressions: pendingExpressions, name: target, value: value, location: location, original: original }); } } ts.flattenDestructuringBinding = flattenDestructuringBinding; /** * Flattens a BindingOrAssignmentElement into zero or more bindings or assignments. * * @param flattenContext Options used to control flattening. * @param element The element to flatten. * @param value The current RHS value to assign to the element. * @param location The location to use for source maps and comments. * @param skipInitializer An optional value indicating whether to include the initializer * for the element. */ function flattenBindingOrAssignmentElement(flattenContext, element, value, location, skipInitializer) { var bindingTarget = ts.getTargetOfBindingOrAssignmentElement(element); // TODO: GH#18217 if (!skipInitializer) { var initializer = ts.visitNode(ts.getInitializerOfBindingOrAssignmentElement(element), flattenContext.visitor, ts.isExpression); if (initializer) { // Combine value and initializer if (value) { value = createDefaultValueCheck(flattenContext, value, initializer, location); // If 'value' is not a simple expression, it could contain side-effecting code that should evaluate before an object or array binding pattern. if (!ts.isSimpleInlineableExpression(initializer) && ts.isBindingOrAssignmentPattern(bindingTarget)) { value = ensureIdentifier(flattenContext, value, /*reuseIdentifierExpressions*/ true, location); } } else { value = initializer; } } else if (!value) { // Use 'void 0' in absence of value and initializer value = flattenContext.context.factory.createVoidZero(); } } if (ts.isObjectBindingOrAssignmentPattern(bindingTarget)) { flattenObjectBindingOrAssignmentPattern(flattenContext, element, bindingTarget, value, location); } else if (ts.isArrayBindingOrAssignmentPattern(bindingTarget)) { flattenArrayBindingOrAssignmentPattern(flattenContext, element, bindingTarget, value, location); } else { flattenContext.emitBindingOrAssignment(bindingTarget, value, location, /*original*/ element); // TODO: GH#18217 } } /** * Flattens an ObjectBindingOrAssignmentPattern into zero or more bindings or assignments. * * @param flattenContext Options used to control flattening. * @param parent The parent element of the pattern. * @param pattern The ObjectBindingOrAssignmentPattern to flatten. * @param value The current RHS value to assign to the element. * @param location The location to use for source maps and comments. */ function flattenObjectBindingOrAssignmentPattern(flattenContext, parent, pattern, value, location) { var elements = ts.getElementsOfBindingOrAssignmentPattern(pattern); var numElements = elements.length; if (numElements !== 1) { // For anything other than a single-element destructuring we need to generate a temporary // to ensure value is evaluated exactly once. Additionally, if we have zero elements // we need to emit *something* to ensure that in case a 'var' keyword was already emitted, // so in that case, we'll intentionally create that temporary. var reuseIdentifierExpressions = !ts.isDeclarationBindingElement(parent) || numElements !== 0; value = ensureIdentifier(flattenContext, value, reuseIdentifierExpressions, location); } var bindingElements; var computedTempVariables; for (var i = 0; i < numElements; i++) { var element = elements[i]; if (!ts.getRestIndicatorOfBindingOrAssignmentElement(element)) { var propertyName = ts.getPropertyNameOfBindingOrAssignmentElement(element); if (flattenContext.level >= 1 /* FlattenLevel.ObjectRest */ && !(element.transformFlags & (16384 /* TransformFlags.ContainsRestOrSpread */ | 32768 /* TransformFlags.ContainsObjectRestOrSpread */)) && !(ts.getTargetOfBindingOrAssignmentElement(element).transformFlags & (16384 /* TransformFlags.ContainsRestOrSpread */ | 32768 /* TransformFlags.ContainsObjectRestOrSpread */)) && !ts.isComputedPropertyName(propertyName)) { bindingElements = ts.append(bindingElements, ts.visitNode(element, flattenContext.visitor)); } else { if (bindingElements) { flattenContext.emitBindingOrAssignment(flattenContext.createObjectBindingOrAssignmentPattern(bindingElements), value, location, pattern); bindingElements = undefined; } var rhsValue = createDestructuringPropertyAccess(flattenContext, value, propertyName); if (ts.isComputedPropertyName(propertyName)) { computedTempVariables = ts.append(computedTempVariables, rhsValue.argumentExpression); } flattenBindingOrAssignmentElement(flattenContext, element, rhsValue, /*location*/ element); } } else if (i === numElements - 1) { if (bindingElements) { flattenContext.emitBindingOrAssignment(flattenContext.createObjectBindingOrAssignmentPattern(bindingElements), value, location, pattern); bindingElements = undefined; } var rhsValue = flattenContext.context.getEmitHelperFactory().createRestHelper(value, elements, computedTempVariables, pattern); flattenBindingOrAssignmentElement(flattenContext, element, rhsValue, element); } } if (bindingElements) { flattenContext.emitBindingOrAssignment(flattenContext.createObjectBindingOrAssignmentPattern(bindingElements), value, location, pattern); } } /** * Flattens an ArrayBindingOrAssignmentPattern into zero or more bindings or assignments. * * @param flattenContext Options used to control flattening. * @param parent The parent element of the pattern. * @param pattern The ArrayBindingOrAssignmentPattern to flatten. * @param value The current RHS value to assign to the element. * @param location The location to use for source maps and comments. */ function flattenArrayBindingOrAssignmentPattern(flattenContext, parent, pattern, value, location) { var elements = ts.getElementsOfBindingOrAssignmentPattern(pattern); var numElements = elements.length; if (flattenContext.level < 1 /* FlattenLevel.ObjectRest */ && flattenContext.downlevelIteration) { // Read the elements of the iterable into an array value = ensureIdentifier(flattenContext, ts.setTextRange(flattenContext.context.getEmitHelperFactory().createReadHelper(value, numElements > 0 && ts.getRestIndicatorOfBindingOrAssignmentElement(elements[numElements - 1]) ? undefined : numElements), location), /*reuseIdentifierExpressions*/ false, location); } else if (numElements !== 1 && (flattenContext.level < 1 /* FlattenLevel.ObjectRest */ || numElements === 0) || ts.every(elements, ts.isOmittedExpression)) { // For anything other than a single-element destructuring we need to generate a temporary // to ensure value is evaluated exactly once. Additionally, if we have zero elements // we need to emit *something* to ensure that in case a 'var' keyword was already emitted, // so in that case, we'll intentionally create that temporary. // Or all the elements of the binding pattern are omitted expression such as "var [,] = [1,2]", // then we will create temporary variable. var reuseIdentifierExpressions = !ts.isDeclarationBindingElement(parent) || numElements !== 0; value = ensureIdentifier(flattenContext, value, reuseIdentifierExpressions, location); } var bindingElements; var restContainingElements; for (var i = 0; i < numElements; i++) { var element = elements[i]; if (flattenContext.level >= 1 /* FlattenLevel.ObjectRest */) { // If an array pattern contains an ObjectRest, we must cache the result so that we // can perform the ObjectRest destructuring in a different declaration if (element.transformFlags & 32768 /* TransformFlags.ContainsObjectRestOrSpread */ || flattenContext.hasTransformedPriorElement && !isSimpleBindingOrAssignmentElement(element)) { flattenContext.hasTransformedPriorElement = true; var temp = flattenContext.context.factory.createTempVariable(/*recordTempVariable*/ undefined); if (flattenContext.hoistTempVariables) { flattenContext.context.hoistVariableDeclaration(temp); } restContainingElements = ts.append(restContainingElements, [temp, element]); bindingElements = ts.append(bindingElements, flattenContext.createArrayBindingOrAssignmentElement(temp)); } else { bindingElements = ts.append(bindingElements, element); } } else if (ts.isOmittedExpression(element)) { continue; } else if (!ts.getRestIndicatorOfBindingOrAssignmentElement(element)) { var rhsValue = flattenContext.context.factory.createElementAccessExpression(value, i); flattenBindingOrAssignmentElement(flattenContext, element, rhsValue, /*location*/ element); } else if (i === numElements - 1) { var rhsValue = flattenContext.context.factory.createArraySliceCall(value, i); flattenBindingOrAssignmentElement(flattenContext, element, rhsValue, /*location*/ element); } } if (bindingElements) { flattenContext.emitBindingOrAssignment(flattenContext.createArrayBindingOrAssignmentPattern(bindingElements), value, location, pattern); } if (restContainingElements) { for (var _i = 0, restContainingElements_1 = restContainingElements; _i < restContainingElements_1.length; _i++) { var _a = restContainingElements_1[_i], id = _a[0], element = _a[1]; flattenBindingOrAssignmentElement(flattenContext, element, id, element); } } } function isSimpleBindingOrAssignmentElement(element) { var target = ts.getTargetOfBindingOrAssignmentElement(element); if (!target || ts.isOmittedExpression(target)) return true; var propertyName = ts.tryGetPropertyNameOfBindingOrAssignmentElement(element); if (propertyName && !ts.isPropertyNameLiteral(propertyName)) return false; var initializer = ts.getInitializerOfBindingOrAssignmentElement(element); if (initializer && !ts.isSimpleInlineableExpression(initializer)) return false; if (ts.isBindingOrAssignmentPattern(target)) return ts.every(ts.getElementsOfBindingOrAssignmentPattern(target), isSimpleBindingOrAssignmentElement); return ts.isIdentifier(target); } /** * Creates an expression used to provide a default value if a value is `undefined` at runtime. * * @param flattenContext Options used to control flattening. * @param value The RHS value to test. * @param defaultValue The default value to use if `value` is `undefined` at runtime. * @param location The location to use for source maps and comments. */ function createDefaultValueCheck(flattenContext, value, defaultValue, location) { value = ensureIdentifier(flattenContext, value, /*reuseIdentifierExpressions*/ true, location); return flattenContext.context.factory.createConditionalExpression(flattenContext.context.factory.createTypeCheck(value, "undefined"), /*questionToken*/ undefined, defaultValue, /*colonToken*/ undefined, value); } /** * Creates either a PropertyAccessExpression or an ElementAccessExpression for the * right-hand side of a transformed destructuring assignment. * * @link https://tc39.github.io/ecma262/#sec-runtime-semantics-keyeddestructuringassignmentevaluation * * @param flattenContext Options used to control flattening. * @param value The RHS value that is the source of the property. * @param propertyName The destructuring property name. */ function createDestructuringPropertyAccess(flattenContext, value, propertyName) { if (ts.isComputedPropertyName(propertyName)) { var argumentExpression = ensureIdentifier(flattenContext, ts.visitNode(propertyName.expression, flattenContext.visitor), /*reuseIdentifierExpressions*/ false, /*location*/ propertyName); return flattenContext.context.factory.createElementAccessExpression(value, argumentExpression); } else if (ts.isStringOrNumericLiteralLike(propertyName)) { var argumentExpression = ts.factory.cloneNode(propertyName); return flattenContext.context.factory.createElementAccessExpression(value, argumentExpression); } else { var name = flattenContext.context.factory.createIdentifier(ts.idText(propertyName)); return flattenContext.context.factory.createPropertyAccessExpression(value, name); } } /** * Ensures that there exists a declared identifier whose value holds the given expression. * This function is useful to ensure that the expression's value can be read from in subsequent expressions. * Unless 'reuseIdentifierExpressions' is false, 'value' will be returned if it is just an identifier. * * @param flattenContext Options used to control flattening. * @param value the expression whose value needs to be bound. * @param reuseIdentifierExpressions true if identifier expressions can simply be returned; * false if it is necessary to always emit an identifier. * @param location The location to use for source maps and comments. */ function ensureIdentifier(flattenContext, value, reuseIdentifierExpressions, location) { if (ts.isIdentifier(value) && reuseIdentifierExpressions) { return value; } else { var temp = flattenContext.context.factory.createTempVariable(/*recordTempVariable*/ undefined); if (flattenContext.hoistTempVariables) { flattenContext.context.hoistVariableDeclaration(temp); flattenContext.emitExpression(ts.setTextRange(flattenContext.context.factory.createAssignment(temp, value), location)); } else { flattenContext.emitBindingOrAssignment(temp, value, location, /*original*/ undefined); } return temp; } } function makeArrayBindingPattern(factory, elements) { ts.Debug.assertEachNode(elements, ts.isArrayBindingElement); return factory.createArrayBindingPattern(elements); } function makeArrayAssignmentPattern(factory, elements) { return factory.createArrayLiteralExpression(ts.map(elements, factory.converters.convertToArrayAssignmentElement)); } function makeObjectBindingPattern(factory, elements) { ts.Debug.assertEachNode(elements, ts.isBindingElement); return factory.createObjectBindingPattern(elements); } function makeObjectAssignmentPattern(factory, elements) { return factory.createObjectLiteralExpression(ts.map(elements, factory.converters.convertToObjectAssignmentElement)); } function makeBindingElement(factory, name) { return factory.createBindingElement(/*dotDotDotToken*/ undefined, /*propertyName*/ undefined, name); } function makeAssignmentElement(name) { return name; } })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { var ProcessLevel; (function (ProcessLevel) { ProcessLevel[ProcessLevel["LiftRestriction"] = 0] = "LiftRestriction"; ProcessLevel[ProcessLevel["All"] = 1] = "All"; })(ProcessLevel = ts.ProcessLevel || (ts.ProcessLevel = {})); function processTaggedTemplateExpression(context, node, visitor, currentSourceFile, recordTaggedTemplateString, level) { // Visit the tag expression var tag = ts.visitNode(node.tag, visitor, ts.isExpression); // Build up the template arguments and the raw and cooked strings for the template. // We start out with 'undefined' for the first argument and revisit later // to avoid walking over the template string twice and shifting all our arguments over after the fact. var templateArguments = [undefined]; var cookedStrings = []; var rawStrings = []; var template = node.template; if (level === ProcessLevel.LiftRestriction && !ts.hasInvalidEscape(template)) { return ts.visitEachChild(node, visitor, context); } if (ts.isNoSubstitutionTemplateLiteral(template)) { cookedStrings.push(createTemplateCooked(template)); rawStrings.push(getRawLiteral(template, currentSourceFile)); } else { cookedStrings.push(createTemplateCooked(template.head)); rawStrings.push(getRawLiteral(template.head, currentSourceFile)); for (var _i = 0, _a = template.templateSpans; _i < _a.length; _i++) { var templateSpan = _a[_i]; cookedStrings.push(createTemplateCooked(templateSpan.literal)); rawStrings.push(getRawLiteral(templateSpan.literal, currentSourceFile)); templateArguments.push(ts.visitNode(templateSpan.expression, visitor, ts.isExpression)); } } var helperCall = context.getEmitHelperFactory().createTemplateObjectHelper(ts.factory.createArrayLiteralExpression(cookedStrings), ts.factory.createArrayLiteralExpression(rawStrings)); // Create a variable to cache the template object if we're in a module. // Do not do this in the global scope, as any variable we currently generate could conflict with // variables from outside of the current compilation. In the future, we can revisit this behavior. if (ts.isExternalModule(currentSourceFile)) { var tempVar = ts.factory.createUniqueName("templateObject"); recordTaggedTemplateString(tempVar); templateArguments[0] = ts.factory.createLogicalOr(tempVar, ts.factory.createAssignment(tempVar, helperCall)); } else { templateArguments[0] = helperCall; } return ts.factory.createCallExpression(tag, /*typeArguments*/ undefined, templateArguments); } ts.processTaggedTemplateExpression = processTaggedTemplateExpression; function createTemplateCooked(template) { return template.templateFlags ? ts.factory.createVoidZero() : ts.factory.createStringLiteral(template.text); } /** * Creates an ES5 compatible literal from an ES6 template literal. * * @param node The ES6 template literal. */ function getRawLiteral(node, currentSourceFile) { // Find original source text, since we need to emit the raw strings of the tagged template. // The raw strings contain the (escaped) strings of what the user wrote. // Examples: `\n` is converted to "\\n", a template string with a newline to "\n". var text = node.rawText; if (text === undefined) { ts.Debug.assertIsDefined(currentSourceFile, "Template literal node is missing 'rawText' and does not have a source file. Possibly bad transform."); text = ts.getSourceTextOfNodeFromSourceFile(currentSourceFile, node); // text contains the original source, it will also contain quotes ("`"), dolar signs and braces ("${" and "}"), // thus we need to remove those characters. // First template piece starts with "`", others with "}" // Last template piece ends with "`", others with "${" var isLast = node.kind === 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */ || node.kind === 17 /* SyntaxKind.TemplateTail */; text = text.substring(1, text.length - (isLast ? 1 : 2)); } // Newline normalization: // ES6 Spec 11.8.6.1 - Static Semantics of TV's and TRV's // and LineTerminatorSequences are normalized to for both TV and TRV. text = text.replace(/\r\n?/g, "\n"); return ts.setTextRange(ts.factory.createStringLiteral(text), node); } })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { /** * Indicates whether to emit type metadata in the new format. */ var USE_NEW_TYPE_METADATA_FORMAT = false; var TypeScriptSubstitutionFlags; (function (TypeScriptSubstitutionFlags) { /** Enables substitutions for decorated classes. */ TypeScriptSubstitutionFlags[TypeScriptSubstitutionFlags["ClassAliases"] = 1] = "ClassAliases"; /** Enables substitutions for namespace exports. */ TypeScriptSubstitutionFlags[TypeScriptSubstitutionFlags["NamespaceExports"] = 2] = "NamespaceExports"; /* Enables substitutions for unqualified enum members */ TypeScriptSubstitutionFlags[TypeScriptSubstitutionFlags["NonQualifiedEnumMembers"] = 8] = "NonQualifiedEnumMembers"; })(TypeScriptSubstitutionFlags || (TypeScriptSubstitutionFlags = {})); var ClassFacts; (function (ClassFacts) { ClassFacts[ClassFacts["None"] = 0] = "None"; ClassFacts[ClassFacts["HasStaticInitializedProperties"] = 1] = "HasStaticInitializedProperties"; ClassFacts[ClassFacts["HasConstructorDecorators"] = 2] = "HasConstructorDecorators"; ClassFacts[ClassFacts["HasMemberDecorators"] = 4] = "HasMemberDecorators"; ClassFacts[ClassFacts["IsExportOfNamespace"] = 8] = "IsExportOfNamespace"; ClassFacts[ClassFacts["IsNamedExternalExport"] = 16] = "IsNamedExternalExport"; ClassFacts[ClassFacts["IsDefaultExternalExport"] = 32] = "IsDefaultExternalExport"; ClassFacts[ClassFacts["IsDerivedClass"] = 64] = "IsDerivedClass"; ClassFacts[ClassFacts["UseImmediatelyInvokedFunctionExpression"] = 128] = "UseImmediatelyInvokedFunctionExpression"; ClassFacts[ClassFacts["HasAnyDecorators"] = 6] = "HasAnyDecorators"; ClassFacts[ClassFacts["NeedsName"] = 5] = "NeedsName"; ClassFacts[ClassFacts["MayNeedImmediatelyInvokedFunctionExpression"] = 7] = "MayNeedImmediatelyInvokedFunctionExpression"; ClassFacts[ClassFacts["IsExported"] = 56] = "IsExported"; })(ClassFacts || (ClassFacts = {})); function transformTypeScript(context) { var factory = context.factory, emitHelpers = context.getEmitHelperFactory, startLexicalEnvironment = context.startLexicalEnvironment, resumeLexicalEnvironment = context.resumeLexicalEnvironment, endLexicalEnvironment = context.endLexicalEnvironment, hoistVariableDeclaration = context.hoistVariableDeclaration; var resolver = context.getEmitResolver(); var compilerOptions = context.getCompilerOptions(); var strictNullChecks = ts.getStrictOptionValue(compilerOptions, "strictNullChecks"); var languageVersion = ts.getEmitScriptTarget(compilerOptions); var moduleKind = ts.getEmitModuleKind(compilerOptions); // Save the previous transformation hooks. var previousOnEmitNode = context.onEmitNode; var previousOnSubstituteNode = context.onSubstituteNode; // Set new transformation hooks. context.onEmitNode = onEmitNode; context.onSubstituteNode = onSubstituteNode; // Enable substitution for property/element access to emit const enum values. context.enableSubstitution(206 /* SyntaxKind.PropertyAccessExpression */); context.enableSubstitution(207 /* SyntaxKind.ElementAccessExpression */); // These variables contain state that changes as we descend into the tree. var currentSourceFile; var currentNamespace; var currentNamespaceContainerName; var currentLexicalScope; var currentNameScope; var currentScopeFirstDeclarationsOfName; var currentClassHasParameterProperties; /** * Keeps track of whether expression substitution has been enabled for specific edge cases. * They are persisted between each SourceFile transformation and should not be reset. */ var enabledSubstitutions; /** * A map that keeps track of aliases created for classes with decorators to avoid issues * with the double-binding behavior of classes. */ var classAliases; /** * Keeps track of whether we are within any containing namespaces when performing * just-in-time substitution while printing an expression identifier. */ var applicableSubstitutions; return transformSourceFileOrBundle; function transformSourceFileOrBundle(node) { if (node.kind === 306 /* SyntaxKind.Bundle */) { return transformBundle(node); } return transformSourceFile(node); } function transformBundle(node) { return factory.createBundle(node.sourceFiles.map(transformSourceFile), ts.mapDefined(node.prepends, function (prepend) { if (prepend.kind === 308 /* SyntaxKind.InputFiles */) { return ts.createUnparsedSourceFile(prepend, "js"); } return prepend; })); } /** * Transform TypeScript-specific syntax in a SourceFile. * * @param node A SourceFile node. */ function transformSourceFile(node) { if (node.isDeclarationFile) { return node; } currentSourceFile = node; var visited = saveStateAndInvoke(node, visitSourceFile); ts.addEmitHelpers(visited, context.readEmitHelpers()); currentSourceFile = undefined; return visited; } /** * Visits a node, saving and restoring state variables on the stack. * * @param node The node to visit. */ function saveStateAndInvoke(node, f) { // Save state var savedCurrentScope = currentLexicalScope; var savedCurrentNameScope = currentNameScope; var savedCurrentScopeFirstDeclarationsOfName = currentScopeFirstDeclarationsOfName; var savedCurrentClassHasParameterProperties = currentClassHasParameterProperties; // Handle state changes before visiting a node. onBeforeVisitNode(node); var visited = f(node); // Restore state if (currentLexicalScope !== savedCurrentScope) { currentScopeFirstDeclarationsOfName = savedCurrentScopeFirstDeclarationsOfName; } currentLexicalScope = savedCurrentScope; currentNameScope = savedCurrentNameScope; currentClassHasParameterProperties = savedCurrentClassHasParameterProperties; return visited; } /** * Performs actions that should always occur immediately before visiting a node. * * @param node The node to visit. */ function onBeforeVisitNode(node) { switch (node.kind) { case 305 /* SyntaxKind.SourceFile */: case 263 /* SyntaxKind.CaseBlock */: case 262 /* SyntaxKind.ModuleBlock */: case 235 /* SyntaxKind.Block */: currentLexicalScope = node; currentNameScope = undefined; currentScopeFirstDeclarationsOfName = undefined; break; case 257 /* SyntaxKind.ClassDeclaration */: case 256 /* SyntaxKind.FunctionDeclaration */: if (ts.hasSyntacticModifier(node, 2 /* ModifierFlags.Ambient */)) { break; } // Record these declarations provided that they have a name. if (node.name) { recordEmittedDeclarationInScope(node); } else { // These nodes should always have names unless they are default-exports; // however, class declaration parsing allows for undefined names, so syntactically invalid // programs may also have an undefined name. ts.Debug.assert(node.kind === 257 /* SyntaxKind.ClassDeclaration */ || ts.hasSyntacticModifier(node, 512 /* ModifierFlags.Default */)); } if (ts.isClassDeclaration(node)) { // XXX: should probably also cover interfaces and type aliases that can have type variables? currentNameScope = node; } break; } } /** * General-purpose node visitor. * * @param node The node to visit. */ function visitor(node) { return saveStateAndInvoke(node, visitorWorker); } /** * Visits and possibly transforms any node. * * @param node The node to visit. */ function visitorWorker(node) { if (node.transformFlags & 1 /* TransformFlags.ContainsTypeScript */) { return visitTypeScript(node); } return node; } /** * Specialized visitor that visits the immediate children of a SourceFile. * * @param node The node to visit. */ function sourceElementVisitor(node) { return saveStateAndInvoke(node, sourceElementVisitorWorker); } /** * Specialized visitor that visits the immediate children of a SourceFile. * * @param node The node to visit. */ function sourceElementVisitorWorker(node) { switch (node.kind) { case 266 /* SyntaxKind.ImportDeclaration */: case 265 /* SyntaxKind.ImportEqualsDeclaration */: case 271 /* SyntaxKind.ExportAssignment */: case 272 /* SyntaxKind.ExportDeclaration */: return visitElidableStatement(node); default: return visitorWorker(node); } } function visitElidableStatement(node) { var parsed = ts.getParseTreeNode(node); if (parsed !== node) { // If the node has been transformed by a `before` transformer, perform no ellision on it // As the type information we would attempt to lookup to perform ellision is potentially unavailable for the synthesized nodes // We do not reuse `visitorWorker`, as the ellidable statement syntax kinds are technically unrecognized by the switch-case in `visitTypeScript`, // and will trigger debug failures when debug verbosity is turned up if (node.transformFlags & 1 /* TransformFlags.ContainsTypeScript */) { // This node contains TypeScript, so we should visit its children. return ts.visitEachChild(node, visitor, context); } // Otherwise, we can just return the node return node; } switch (node.kind) { case 266 /* SyntaxKind.ImportDeclaration */: return visitImportDeclaration(node); case 265 /* SyntaxKind.ImportEqualsDeclaration */: return visitImportEqualsDeclaration(node); case 271 /* SyntaxKind.ExportAssignment */: return visitExportAssignment(node); case 272 /* SyntaxKind.ExportDeclaration */: return visitExportDeclaration(node); default: ts.Debug.fail("Unhandled ellided statement"); } } /** * Specialized visitor that visits the immediate children of a namespace. * * @param node The node to visit. */ function namespaceElementVisitor(node) { return saveStateAndInvoke(node, namespaceElementVisitorWorker); } /** * Specialized visitor that visits the immediate children of a namespace. * * @param node The node to visit. */ function namespaceElementVisitorWorker(node) { if (node.kind === 272 /* SyntaxKind.ExportDeclaration */ || node.kind === 266 /* SyntaxKind.ImportDeclaration */ || node.kind === 267 /* SyntaxKind.ImportClause */ || (node.kind === 265 /* SyntaxKind.ImportEqualsDeclaration */ && node.moduleReference.kind === 277 /* SyntaxKind.ExternalModuleReference */)) { // do not emit ES6 imports and exports since they are illegal inside a namespace return undefined; } else if (node.transformFlags & 1 /* TransformFlags.ContainsTypeScript */ || ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */)) { return visitTypeScript(node); } return node; } /** * Specialized visitor that visits the immediate children of a class with TypeScript syntax. * * @param node The node to visit. */ function classElementVisitor(node) { return saveStateAndInvoke(node, classElementVisitorWorker); } /** * Specialized visitor that visits the immediate children of a class with TypeScript syntax. * * @param node The node to visit. */ function classElementVisitorWorker(node) { switch (node.kind) { case 171 /* SyntaxKind.Constructor */: return visitConstructor(node); case 167 /* SyntaxKind.PropertyDeclaration */: // Property declarations are not TypeScript syntax, but they must be visited // for the decorator transformation. return visitPropertyDeclaration(node); case 176 /* SyntaxKind.IndexSignature */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 169 /* SyntaxKind.MethodDeclaration */: case 170 /* SyntaxKind.ClassStaticBlockDeclaration */: // Fallback to the default visit behavior. return visitorWorker(node); case 234 /* SyntaxKind.SemicolonClassElement */: return node; default: return ts.Debug.failBadSyntaxKind(node); } } function modifierVisitor(node) { if (ts.modifierToFlag(node.kind) & 116958 /* ModifierFlags.TypeScriptModifier */) { return undefined; } else if (currentNamespace && node.kind === 93 /* SyntaxKind.ExportKeyword */) { return undefined; } return node; } /** * Branching visitor, visits a TypeScript syntax node. * * @param node The node to visit. */ function visitTypeScript(node) { if (ts.isStatement(node) && ts.hasSyntacticModifier(node, 2 /* ModifierFlags.Ambient */)) { // TypeScript ambient declarations are elided, but some comments may be preserved. // See the implementation of `getLeadingComments` in comments.ts for more details. return factory.createNotEmittedStatement(node); } switch (node.kind) { case 93 /* SyntaxKind.ExportKeyword */: case 88 /* SyntaxKind.DefaultKeyword */: // ES6 export and default modifiers are elided when inside a namespace. return currentNamespace ? undefined : node; case 123 /* SyntaxKind.PublicKeyword */: case 121 /* SyntaxKind.PrivateKeyword */: case 122 /* SyntaxKind.ProtectedKeyword */: case 126 /* SyntaxKind.AbstractKeyword */: case 159 /* SyntaxKind.OverrideKeyword */: case 85 /* SyntaxKind.ConstKeyword */: case 135 /* SyntaxKind.DeclareKeyword */: case 145 /* SyntaxKind.ReadonlyKeyword */: case 101 /* SyntaxKind.InKeyword */: case 144 /* SyntaxKind.OutKeyword */: // TypeScript accessibility and readonly modifiers are elided // falls through case 183 /* SyntaxKind.ArrayType */: case 184 /* SyntaxKind.TupleType */: case 185 /* SyntaxKind.OptionalType */: case 186 /* SyntaxKind.RestType */: case 182 /* SyntaxKind.TypeLiteral */: case 177 /* SyntaxKind.TypePredicate */: case 163 /* SyntaxKind.TypeParameter */: case 130 /* SyntaxKind.AnyKeyword */: case 155 /* SyntaxKind.UnknownKeyword */: case 133 /* SyntaxKind.BooleanKeyword */: case 150 /* SyntaxKind.StringKeyword */: case 147 /* SyntaxKind.NumberKeyword */: case 143 /* SyntaxKind.NeverKeyword */: case 114 /* SyntaxKind.VoidKeyword */: case 151 /* SyntaxKind.SymbolKeyword */: case 180 /* SyntaxKind.ConstructorType */: case 179 /* SyntaxKind.FunctionType */: case 181 /* SyntaxKind.TypeQuery */: case 178 /* SyntaxKind.TypeReference */: case 187 /* SyntaxKind.UnionType */: case 188 /* SyntaxKind.IntersectionType */: case 189 /* SyntaxKind.ConditionalType */: case 191 /* SyntaxKind.ParenthesizedType */: case 192 /* SyntaxKind.ThisType */: case 193 /* SyntaxKind.TypeOperator */: case 194 /* SyntaxKind.IndexedAccessType */: case 195 /* SyntaxKind.MappedType */: case 196 /* SyntaxKind.LiteralType */: // TypeScript type nodes are elided. // falls through case 176 /* SyntaxKind.IndexSignature */: // TypeScript index signatures are elided. // falls through case 165 /* SyntaxKind.Decorator */: // TypeScript decorators are elided. They will be emitted as part of visitClassDeclaration. return undefined; case 259 /* SyntaxKind.TypeAliasDeclaration */: // TypeScript type-only declarations are elided. return factory.createNotEmittedStatement(node); case 167 /* SyntaxKind.PropertyDeclaration */: // TypeScript property declarations are elided. However their names are still visited, and can potentially be retained if they could have sideeffects return visitPropertyDeclaration(node); case 264 /* SyntaxKind.NamespaceExportDeclaration */: // TypeScript namespace export declarations are elided. return undefined; case 171 /* SyntaxKind.Constructor */: return visitConstructor(node); case 258 /* SyntaxKind.InterfaceDeclaration */: // TypeScript interfaces are elided, but some comments may be preserved. // See the implementation of `getLeadingComments` in comments.ts for more details. return factory.createNotEmittedStatement(node); case 257 /* SyntaxKind.ClassDeclaration */: // This may be a class declaration with TypeScript syntax extensions. // // TypeScript class syntax extensions include: // - decorators // - optional `implements` heritage clause // - parameter property assignments in the constructor // - index signatures // - method overload signatures return visitClassDeclaration(node); case 226 /* SyntaxKind.ClassExpression */: // This may be a class expression with TypeScript syntax extensions. // // TypeScript class syntax extensions include: // - decorators // - optional `implements` heritage clause // - parameter property assignments in the constructor // - index signatures // - method overload signatures return visitClassExpression(node); case 291 /* SyntaxKind.HeritageClause */: // This may be a heritage clause with TypeScript syntax extensions. // // TypeScript heritage clause extensions include: // - `implements` clause return visitHeritageClause(node); case 228 /* SyntaxKind.ExpressionWithTypeArguments */: // TypeScript supports type arguments on an expression in an `extends` heritage clause. return visitExpressionWithTypeArguments(node); case 169 /* SyntaxKind.MethodDeclaration */: // TypeScript method declarations may have decorators, modifiers // or type annotations. return visitMethodDeclaration(node); case 172 /* SyntaxKind.GetAccessor */: // Get Accessors can have TypeScript modifiers, decorators, and type annotations. return visitGetAccessor(node); case 173 /* SyntaxKind.SetAccessor */: // Set Accessors can have TypeScript modifiers and type annotations. return visitSetAccessor(node); case 256 /* SyntaxKind.FunctionDeclaration */: // Typescript function declarations can have modifiers, decorators, and type annotations. return visitFunctionDeclaration(node); case 213 /* SyntaxKind.FunctionExpression */: // TypeScript function expressions can have modifiers and type annotations. return visitFunctionExpression(node); case 214 /* SyntaxKind.ArrowFunction */: // TypeScript arrow functions can have modifiers and type annotations. return visitArrowFunction(node); case 164 /* SyntaxKind.Parameter */: // This may be a parameter declaration with TypeScript syntax extensions. // // TypeScript parameter declaration syntax extensions include: // - decorators // - accessibility modifiers // - the question mark (?) token for optional parameters // - type annotations // - this parameters return visitParameter(node); case 212 /* SyntaxKind.ParenthesizedExpression */: // ParenthesizedExpressions are TypeScript if their expression is a // TypeAssertion or AsExpression return visitParenthesizedExpression(node); case 211 /* SyntaxKind.TypeAssertionExpression */: case 229 /* SyntaxKind.AsExpression */: // TypeScript type assertions are removed, but their subtrees are preserved. return visitAssertionExpression(node); case 208 /* SyntaxKind.CallExpression */: return visitCallExpression(node); case 209 /* SyntaxKind.NewExpression */: return visitNewExpression(node); case 210 /* SyntaxKind.TaggedTemplateExpression */: return visitTaggedTemplateExpression(node); case 230 /* SyntaxKind.NonNullExpression */: // TypeScript non-null expressions are removed, but their subtrees are preserved. return visitNonNullExpression(node); case 260 /* SyntaxKind.EnumDeclaration */: // TypeScript enum declarations do not exist in ES6 and must be rewritten. return visitEnumDeclaration(node); case 237 /* SyntaxKind.VariableStatement */: // TypeScript namespace exports for variable statements must be transformed. return visitVariableStatement(node); case 254 /* SyntaxKind.VariableDeclaration */: return visitVariableDeclaration(node); case 261 /* SyntaxKind.ModuleDeclaration */: // TypeScript namespace declarations must be transformed. return visitModuleDeclaration(node); case 265 /* SyntaxKind.ImportEqualsDeclaration */: // TypeScript namespace or external module import. return visitImportEqualsDeclaration(node); case 279 /* SyntaxKind.JsxSelfClosingElement */: return visitJsxSelfClosingElement(node); case 280 /* SyntaxKind.JsxOpeningElement */: return visitJsxJsxOpeningElement(node); default: // node contains some other TypeScript syntax return ts.visitEachChild(node, visitor, context); } } function visitSourceFile(node) { var alwaysStrict = ts.getStrictOptionValue(compilerOptions, "alwaysStrict") && !(ts.isExternalModule(node) && moduleKind >= ts.ModuleKind.ES2015) && !ts.isJsonSourceFile(node); return factory.updateSourceFile(node, ts.visitLexicalEnvironment(node.statements, sourceElementVisitor, context, /*start*/ 0, alwaysStrict)); } function getClassFacts(node, staticProperties) { var facts = 0 /* ClassFacts.None */; if (ts.some(staticProperties)) facts |= 1 /* ClassFacts.HasStaticInitializedProperties */; var extendsClauseElement = ts.getEffectiveBaseTypeNode(node); if (extendsClauseElement && ts.skipOuterExpressions(extendsClauseElement.expression).kind !== 104 /* SyntaxKind.NullKeyword */) facts |= 64 /* ClassFacts.IsDerivedClass */; if (ts.classOrConstructorParameterIsDecorated(node)) facts |= 2 /* ClassFacts.HasConstructorDecorators */; if (ts.childIsDecorated(node)) facts |= 4 /* ClassFacts.HasMemberDecorators */; if (isExportOfNamespace(node)) facts |= 8 /* ClassFacts.IsExportOfNamespace */; else if (isDefaultExternalModuleExport(node)) facts |= 32 /* ClassFacts.IsDefaultExternalExport */; else if (isNamedExternalModuleExport(node)) facts |= 16 /* ClassFacts.IsNamedExternalExport */; if (languageVersion <= 1 /* ScriptTarget.ES5 */ && (facts & 7 /* ClassFacts.MayNeedImmediatelyInvokedFunctionExpression */)) facts |= 128 /* ClassFacts.UseImmediatelyInvokedFunctionExpression */; return facts; } function hasTypeScriptClassSyntax(node) { return !!(node.transformFlags & 4096 /* TransformFlags.ContainsTypeScriptClassSyntax */); } function isClassLikeDeclarationWithTypeScriptSyntax(node) { return ts.some(node.decorators) || ts.some(node.typeParameters) || ts.some(node.heritageClauses, hasTypeScriptClassSyntax) || ts.some(node.members, hasTypeScriptClassSyntax); } function visitClassDeclaration(node) { if (!isClassLikeDeclarationWithTypeScriptSyntax(node) && !(currentNamespace && ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */))) { return ts.visitEachChild(node, visitor, context); } var staticProperties = ts.getProperties(node, /*requireInitializer*/ true, /*isStatic*/ true); var facts = getClassFacts(node, staticProperties); if (facts & 128 /* ClassFacts.UseImmediatelyInvokedFunctionExpression */) { context.startLexicalEnvironment(); } var name = node.name || (facts & 5 /* ClassFacts.NeedsName */ ? factory.getGeneratedNameForNode(node) : undefined); var classStatement = facts & 2 /* ClassFacts.HasConstructorDecorators */ ? createClassDeclarationHeadWithDecorators(node, name) : createClassDeclarationHeadWithoutDecorators(node, name, facts); var statements = [classStatement]; // Write any decorators of the node. addClassElementDecorationStatements(statements, node, /*isStatic*/ false); addClassElementDecorationStatements(statements, node, /*isStatic*/ true); addConstructorDecorationStatement(statements, node); if (facts & 128 /* ClassFacts.UseImmediatelyInvokedFunctionExpression */) { // When we emit a TypeScript class down to ES5, we must wrap it in an IIFE so that the // 'es2015' transformer can properly nest static initializers and decorators. The result // looks something like: // // var C = function () { // class C { // } // C.static_prop = 1; // return C; // }(); // var closingBraceLocation = ts.createTokenRange(ts.skipTrivia(currentSourceFile.text, node.members.end), 19 /* SyntaxKind.CloseBraceToken */); var localName = factory.getInternalName(node); // The following partially-emitted expression exists purely to align our sourcemap // emit with the original emitter. var outer = factory.createPartiallyEmittedExpression(localName); ts.setTextRangeEnd(outer, closingBraceLocation.end); ts.setEmitFlags(outer, 1536 /* EmitFlags.NoComments */); var statement = factory.createReturnStatement(outer); ts.setTextRangePos(statement, closingBraceLocation.pos); ts.setEmitFlags(statement, 1536 /* EmitFlags.NoComments */ | 384 /* EmitFlags.NoTokenSourceMaps */); statements.push(statement); ts.insertStatementsAfterStandardPrologue(statements, context.endLexicalEnvironment()); var iife = factory.createImmediatelyInvokedArrowFunction(statements); ts.setEmitFlags(iife, 33554432 /* EmitFlags.TypeScriptClassWrapper */); var varStatement = factory.createVariableStatement( /*modifiers*/ undefined, factory.createVariableDeclarationList([ factory.createVariableDeclaration(factory.getLocalName(node, /*allowComments*/ false, /*allowSourceMaps*/ false), /*exclamationToken*/ undefined, /*type*/ undefined, iife) ])); ts.setOriginalNode(varStatement, node); ts.setCommentRange(varStatement, node); ts.setSourceMapRange(varStatement, ts.moveRangePastDecorators(node)); ts.startOnNewLine(varStatement); statements = [varStatement]; } // If the class is exported as part of a TypeScript namespace, emit the namespace export. // Otherwise, if the class was exported at the top level and was decorated, emit an export // declaration or export default for the class. if (facts & 8 /* ClassFacts.IsExportOfNamespace */) { addExportMemberAssignment(statements, node); } else if (facts & 128 /* ClassFacts.UseImmediatelyInvokedFunctionExpression */ || facts & 2 /* ClassFacts.HasConstructorDecorators */) { if (facts & 32 /* ClassFacts.IsDefaultExternalExport */) { statements.push(factory.createExportDefault(factory.getLocalName(node, /*allowComments*/ false, /*allowSourceMaps*/ true))); } else if (facts & 16 /* ClassFacts.IsNamedExternalExport */) { statements.push(factory.createExternalModuleExport(factory.getLocalName(node, /*allowComments*/ false, /*allowSourceMaps*/ true))); } } if (statements.length > 1) { // Add a DeclarationMarker as a marker for the end of the declaration statements.push(factory.createEndOfDeclarationMarker(node)); ts.setEmitFlags(classStatement, ts.getEmitFlags(classStatement) | 4194304 /* EmitFlags.HasEndOfDeclarationMarker */); } return ts.singleOrMany(statements); } /** * Transforms a non-decorated class declaration and appends the resulting statements. * * @param node A ClassDeclaration node. * @param name The name of the class. * @param facts Precomputed facts about the class. */ function createClassDeclarationHeadWithoutDecorators(node, name, facts) { // ${modifiers} class ${name} ${heritageClauses} { // ${members} // } // we do not emit modifiers on the declaration if we are emitting an IIFE var modifiers = !(facts & 128 /* ClassFacts.UseImmediatelyInvokedFunctionExpression */) ? ts.visitNodes(node.modifiers, modifierVisitor, ts.isModifier) : undefined; var classDeclaration = factory.createClassDeclaration( /*decorators*/ undefined, modifiers, name, /*typeParameters*/ undefined, ts.visitNodes(node.heritageClauses, visitor, ts.isHeritageClause), transformClassMembers(node)); // To better align with the old emitter, we should not emit a trailing source map // entry if the class has static properties. var emitFlags = ts.getEmitFlags(node); if (facts & 1 /* ClassFacts.HasStaticInitializedProperties */) { emitFlags |= 32 /* EmitFlags.NoTrailingSourceMap */; } ts.setTextRange(classDeclaration, node); ts.setOriginalNode(classDeclaration, node); ts.setEmitFlags(classDeclaration, emitFlags); return classDeclaration; } /** * Transforms a decorated class declaration and appends the resulting statements. If * the class requires an alias to avoid issues with double-binding, the alias is returned. */ function createClassDeclarationHeadWithDecorators(node, name) { // When we emit an ES6 class that has a class decorator, we must tailor the // emit to certain specific cases. // // In the simplest case, we emit the class declaration as a let declaration, and // evaluate decorators after the close of the class body: // // [Example 1] // --------------------------------------------------------------------- // TypeScript | Javascript // --------------------------------------------------------------------- // @dec | let C = class C { // class C { | } // } | C = __decorate([dec], C); // --------------------------------------------------------------------- // @dec | let C = class C { // export class C { | } // } | C = __decorate([dec], C); // | export { C }; // --------------------------------------------------------------------- // // If a class declaration contains a reference to itself *inside* of the class body, // this introduces two bindings to the class: One outside of the class body, and one // inside of the class body. If we apply decorators as in [Example 1] above, there // is the possibility that the decorator `dec` will return a new value for the // constructor, which would result in the binding inside of the class no longer // pointing to the same reference as the binding outside of the class. // // As a result, we must instead rewrite all references to the class *inside* of the // class body to instead point to a local temporary alias for the class: // // [Example 2] // --------------------------------------------------------------------- // TypeScript | Javascript // --------------------------------------------------------------------- // @dec | let C = C_1 = class C { // class C { | static x() { return C_1.y; } // static x() { return C.y; } | } // static y = 1; | C.y = 1; // } | C = C_1 = __decorate([dec], C); // | var C_1; // --------------------------------------------------------------------- // @dec | let C = class C { // export class C { | static x() { return C_1.y; } // static x() { return C.y; } | } // static y = 1; | C.y = 1; // } | C = C_1 = __decorate([dec], C); // | export { C }; // | var C_1; // --------------------------------------------------------------------- // // If a class declaration is the default export of a module, we instead emit // the export after the decorated declaration: // // [Example 3] // --------------------------------------------------------------------- // TypeScript | Javascript // --------------------------------------------------------------------- // @dec | let default_1 = class { // export default class { | } // } | default_1 = __decorate([dec], default_1); // | export default default_1; // --------------------------------------------------------------------- // @dec | let C = class C { // export default class C { | } // } | C = __decorate([dec], C); // | export default C; // --------------------------------------------------------------------- // // If the class declaration is the default export and a reference to itself // inside of the class body, we must emit both an alias for the class *and* // move the export after the declaration: // // [Example 4] // --------------------------------------------------------------------- // TypeScript | Javascript // --------------------------------------------------------------------- // @dec | let C = class C { // export default class C { | static x() { return C_1.y; } // static x() { return C.y; } | } // static y = 1; | C.y = 1; // } | C = C_1 = __decorate([dec], C); // | export default C; // | var C_1; // --------------------------------------------------------------------- // var location = ts.moveRangePastDecorators(node); var classAlias = getClassAliasIfNeeded(node); // When we transform to ES5/3 this will be moved inside an IIFE and should reference the name // without any block-scoped variable collision handling var declName = languageVersion <= 2 /* ScriptTarget.ES2015 */ ? factory.getInternalName(node, /*allowComments*/ false, /*allowSourceMaps*/ true) : factory.getLocalName(node, /*allowComments*/ false, /*allowSourceMaps*/ true); // ... = class ${name} ${heritageClauses} { // ${members} // } var heritageClauses = ts.visitNodes(node.heritageClauses, visitor, ts.isHeritageClause); var members = transformClassMembers(node); var classExpression = factory.createClassExpression(/*decorators*/ undefined, /*modifiers*/ undefined, name, /*typeParameters*/ undefined, heritageClauses, members); ts.setOriginalNode(classExpression, node); ts.setTextRange(classExpression, location); // let ${name} = ${classExpression} where name is either declaredName if the class doesn't contain self-reference // or decoratedClassAlias if the class contain self-reference. var statement = factory.createVariableStatement( /*modifiers*/ undefined, factory.createVariableDeclarationList([ factory.createVariableDeclaration(declName, /*exclamationToken*/ undefined, /*type*/ undefined, classAlias ? factory.createAssignment(classAlias, classExpression) : classExpression) ], 1 /* NodeFlags.Let */)); ts.setOriginalNode(statement, node); ts.setTextRange(statement, location); ts.setCommentRange(statement, node); return statement; } function visitClassExpression(node) { if (!isClassLikeDeclarationWithTypeScriptSyntax(node)) { return ts.visitEachChild(node, visitor, context); } var classExpression = factory.createClassExpression( /*decorators*/ undefined, /*modifiers*/ undefined, node.name, /*typeParameters*/ undefined, ts.visitNodes(node.heritageClauses, visitor, ts.isHeritageClause), transformClassMembers(node)); ts.setOriginalNode(classExpression, node); ts.setTextRange(classExpression, node); return classExpression; } /** * Transforms the members of a class. * * @param node The current class. */ function transformClassMembers(node) { var members = []; var constructor = ts.getFirstConstructorWithBody(node); var parametersWithPropertyAssignments = constructor && ts.filter(constructor.parameters, function (p) { return ts.isParameterPropertyDeclaration(p, constructor); }); if (parametersWithPropertyAssignments) { for (var _i = 0, parametersWithPropertyAssignments_1 = parametersWithPropertyAssignments; _i < parametersWithPropertyAssignments_1.length; _i++) { var parameter = parametersWithPropertyAssignments_1[_i]; if (ts.isIdentifier(parameter.name)) { members.push(ts.setOriginalNode(factory.createPropertyDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, parameter.name, /*questionOrExclamationToken*/ undefined, /*type*/ undefined, /*initializer*/ undefined), parameter)); } } } ts.addRange(members, ts.visitNodes(node.members, classElementVisitor, ts.isClassElement)); return ts.setTextRange(factory.createNodeArray(members), /*location*/ node.members); } /** * Gets either the static or instance members of a class that are decorated, or have * parameters that are decorated. * * @param node The class containing the member. * @param isStatic A value indicating whether to retrieve static or instance members of * the class. */ function getDecoratedClassElements(node, isStatic) { return ts.filter(node.members, isStatic ? function (m) { return isStaticDecoratedClassElement(m, node); } : function (m) { return isInstanceDecoratedClassElement(m, node); }); } /** * Determines whether a class member is a static member of a class that is decorated, or * has parameters that are decorated. * * @param member The class member. */ function isStaticDecoratedClassElement(member, parent) { return isDecoratedClassElement(member, /*isStaticElement*/ true, parent); } /** * Determines whether a class member is an instance member of a class that is decorated, * or has parameters that are decorated. * * @param member The class member. */ function isInstanceDecoratedClassElement(member, parent) { return isDecoratedClassElement(member, /*isStaticElement*/ false, parent); } /** * Determines whether a class member is either a static or an instance member of a class * that is decorated, or has parameters that are decorated. * * @param member The class member. */ function isDecoratedClassElement(member, isStaticElement, parent) { return ts.nodeOrChildIsDecorated(member, parent) && isStaticElement === ts.isStatic(member); } /** * Gets an array of arrays of decorators for the parameters of a function-like node. * The offset into the result array should correspond to the offset of the parameter. * * @param node The function-like node. */ function getDecoratorsOfParameters(node) { var decorators; if (node) { var parameters = node.parameters; var firstParameterIsThis = parameters.length > 0 && ts.parameterIsThisKeyword(parameters[0]); var firstParameterOffset = firstParameterIsThis ? 1 : 0; var numParameters = firstParameterIsThis ? parameters.length - 1 : parameters.length; for (var i = 0; i < numParameters; i++) { var parameter = parameters[i + firstParameterOffset]; if (decorators || parameter.decorators) { if (!decorators) { decorators = new Array(numParameters); } decorators[i] = parameter.decorators; } } } return decorators; } /** * Gets an AllDecorators object containing the decorators for the class and the decorators for the * parameters of the constructor of the class. * * @param node The class node. */ function getAllDecoratorsOfConstructor(node) { var decorators = node.decorators; var parameters = getDecoratorsOfParameters(ts.getFirstConstructorWithBody(node)); if (!decorators && !parameters) { return undefined; } return { decorators: decorators, parameters: parameters }; } /** * Gets an AllDecorators object containing the decorators for the member and its parameters. * * @param node The class node that contains the member. * @param member The class member. */ function getAllDecoratorsOfClassElement(node, member) { switch (member.kind) { case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: return getAllDecoratorsOfAccessors(node, member); case 169 /* SyntaxKind.MethodDeclaration */: return getAllDecoratorsOfMethod(member); case 167 /* SyntaxKind.PropertyDeclaration */: return getAllDecoratorsOfProperty(member); default: return undefined; } } /** * Gets an AllDecorators object containing the decorators for the accessor and its parameters. * * @param node The class node that contains the accessor. * @param accessor The class accessor member. */ function getAllDecoratorsOfAccessors(node, accessor) { if (!accessor.body) { return undefined; } var _a = ts.getAllAccessorDeclarations(node.members, accessor), firstAccessor = _a.firstAccessor, secondAccessor = _a.secondAccessor, setAccessor = _a.setAccessor; var firstAccessorWithDecorators = firstAccessor.decorators ? firstAccessor : secondAccessor && secondAccessor.decorators ? secondAccessor : undefined; if (!firstAccessorWithDecorators || accessor !== firstAccessorWithDecorators) { return undefined; } var decorators = firstAccessorWithDecorators.decorators; var parameters = getDecoratorsOfParameters(setAccessor); if (!decorators && !parameters) { return undefined; } return { decorators: decorators, parameters: parameters }; } /** * Gets an AllDecorators object containing the decorators for the method and its parameters. * * @param method The class method member. */ function getAllDecoratorsOfMethod(method) { if (!method.body) { return undefined; } var decorators = method.decorators; var parameters = getDecoratorsOfParameters(method); if (!decorators && !parameters) { return undefined; } return { decorators: decorators, parameters: parameters }; } /** * Gets an AllDecorators object containing the decorators for the property. * * @param property The class property member. */ function getAllDecoratorsOfProperty(property) { var decorators = property.decorators; if (!decorators) { return undefined; } return { decorators: decorators }; } /** * Transforms all of the decorators for a declaration into an array of expressions. * * @param node The declaration node. * @param allDecorators An object containing all of the decorators for the declaration. */ function transformAllDecoratorsOfDeclaration(node, container, allDecorators) { if (!allDecorators) { return undefined; } var decoratorExpressions = []; ts.addRange(decoratorExpressions, ts.map(allDecorators.decorators, transformDecorator)); ts.addRange(decoratorExpressions, ts.flatMap(allDecorators.parameters, transformDecoratorsOfParameter)); addTypeMetadata(node, container, decoratorExpressions); return decoratorExpressions; } /** * Generates statements used to apply decorators to either the static or instance members * of a class. * * @param node The class node. * @param isStatic A value indicating whether to generate statements for static or * instance members. */ function addClassElementDecorationStatements(statements, node, isStatic) { ts.addRange(statements, ts.map(generateClassElementDecorationExpressions(node, isStatic), expressionToStatement)); } /** * Generates expressions used to apply decorators to either the static or instance members * of a class. * * @param node The class node. * @param isStatic A value indicating whether to generate expressions for static or * instance members. */ function generateClassElementDecorationExpressions(node, isStatic) { var members = getDecoratedClassElements(node, isStatic); var expressions; for (var _i = 0, members_8 = members; _i < members_8.length; _i++) { var member = members_8[_i]; var expression = generateClassElementDecorationExpression(node, member); if (expression) { if (!expressions) { expressions = [expression]; } else { expressions.push(expression); } } } return expressions; } /** * Generates an expression used to evaluate class element decorators at runtime. * * @param node The class node that contains the member. * @param member The class member. */ function generateClassElementDecorationExpression(node, member) { var allDecorators = getAllDecoratorsOfClassElement(node, member); var decoratorExpressions = transformAllDecoratorsOfDeclaration(member, node, allDecorators); if (!decoratorExpressions) { return undefined; } // Emit the call to __decorate. Given the following: // // class C { // @dec method(@dec2 x) {} // @dec get accessor() {} // @dec prop; // } // // The emit for a method is: // // __decorate([ // dec, // __param(0, dec2), // __metadata("design:type", Function), // __metadata("design:paramtypes", [Object]), // __metadata("design:returntype", void 0) // ], C.prototype, "method", null); // // The emit for an accessor is: // // __decorate([ // dec // ], C.prototype, "accessor", null); // // The emit for a property is: // // __decorate([ // dec // ], C.prototype, "prop"); // var prefix = getClassMemberPrefix(node, member); var memberName = getExpressionForPropertyName(member, /*generateNameForComputedPropertyName*/ !ts.hasSyntacticModifier(member, 2 /* ModifierFlags.Ambient */)); var descriptor = languageVersion > 0 /* ScriptTarget.ES3 */ ? member.kind === 167 /* SyntaxKind.PropertyDeclaration */ // We emit `void 0` here to indicate to `__decorate` that it can invoke `Object.defineProperty` directly, but that it // should not invoke `Object.getOwnPropertyDescriptor`. ? factory.createVoidZero() // We emit `null` here to indicate to `__decorate` that it can invoke `Object.getOwnPropertyDescriptor` directly. // We have this extra argument here so that we can inject an explicit property descriptor at a later date. : factory.createNull() : undefined; var helper = emitHelpers().createDecorateHelper(decoratorExpressions, prefix, memberName, descriptor); ts.setTextRange(helper, ts.moveRangePastDecorators(member)); ts.setEmitFlags(helper, 1536 /* EmitFlags.NoComments */); return helper; } /** * Generates a __decorate helper call for a class constructor. * * @param node The class node. */ function addConstructorDecorationStatement(statements, node) { var expression = generateConstructorDecorationExpression(node); if (expression) { statements.push(ts.setOriginalNode(factory.createExpressionStatement(expression), node)); } } /** * Generates a __decorate helper call for a class constructor. * * @param node The class node. */ function generateConstructorDecorationExpression(node) { var allDecorators = getAllDecoratorsOfConstructor(node); var decoratorExpressions = transformAllDecoratorsOfDeclaration(node, node, allDecorators); if (!decoratorExpressions) { return undefined; } var classAlias = classAliases && classAliases[ts.getOriginalNodeId(node)]; // When we transform to ES5/3 this will be moved inside an IIFE and should reference the name // without any block-scoped variable collision handling var localName = languageVersion <= 2 /* ScriptTarget.ES2015 */ ? factory.getInternalName(node, /*allowComments*/ false, /*allowSourceMaps*/ true) : factory.getLocalName(node, /*allowComments*/ false, /*allowSourceMaps*/ true); var decorate = emitHelpers().createDecorateHelper(decoratorExpressions, localName); var expression = factory.createAssignment(localName, classAlias ? factory.createAssignment(classAlias, decorate) : decorate); ts.setEmitFlags(expression, 1536 /* EmitFlags.NoComments */); ts.setSourceMapRange(expression, ts.moveRangePastDecorators(node)); return expression; } /** * Transforms a decorator into an expression. * * @param decorator The decorator node. */ function transformDecorator(decorator) { return ts.visitNode(decorator.expression, visitor, ts.isExpression); } /** * Transforms the decorators of a parameter. * * @param decorators The decorators for the parameter at the provided offset. * @param parameterOffset The offset of the parameter. */ function transformDecoratorsOfParameter(decorators, parameterOffset) { var expressions; if (decorators) { expressions = []; for (var _i = 0, decorators_1 = decorators; _i < decorators_1.length; _i++) { var decorator = decorators_1[_i]; var helper = emitHelpers().createParamHelper(transformDecorator(decorator), parameterOffset); ts.setTextRange(helper, decorator.expression); ts.setEmitFlags(helper, 1536 /* EmitFlags.NoComments */); expressions.push(helper); } } return expressions; } /** * Adds optional type metadata for a declaration. * * @param node The declaration node. * @param decoratorExpressions The destination array to which to add new decorator expressions. */ function addTypeMetadata(node, container, decoratorExpressions) { if (USE_NEW_TYPE_METADATA_FORMAT) { addNewTypeMetadata(node, container, decoratorExpressions); } else { addOldTypeMetadata(node, container, decoratorExpressions); } } function addOldTypeMetadata(node, container, decoratorExpressions) { if (compilerOptions.emitDecoratorMetadata) { if (shouldAddTypeMetadata(node)) { decoratorExpressions.push(emitHelpers().createMetadataHelper("design:type", serializeTypeOfNode(node))); } if (shouldAddParamTypesMetadata(node)) { decoratorExpressions.push(emitHelpers().createMetadataHelper("design:paramtypes", serializeParameterTypesOfNode(node, container))); } if (shouldAddReturnTypeMetadata(node)) { decoratorExpressions.push(emitHelpers().createMetadataHelper("design:returntype", serializeReturnTypeOfNode(node))); } } } function addNewTypeMetadata(node, container, decoratorExpressions) { if (compilerOptions.emitDecoratorMetadata) { var properties = void 0; if (shouldAddTypeMetadata(node)) { (properties || (properties = [])).push(factory.createPropertyAssignment("type", factory.createArrowFunction(/*modifiers*/ undefined, /*typeParameters*/ undefined, [], /*type*/ undefined, factory.createToken(38 /* SyntaxKind.EqualsGreaterThanToken */), serializeTypeOfNode(node)))); } if (shouldAddParamTypesMetadata(node)) { (properties || (properties = [])).push(factory.createPropertyAssignment("paramTypes", factory.createArrowFunction(/*modifiers*/ undefined, /*typeParameters*/ undefined, [], /*type*/ undefined, factory.createToken(38 /* SyntaxKind.EqualsGreaterThanToken */), serializeParameterTypesOfNode(node, container)))); } if (shouldAddReturnTypeMetadata(node)) { (properties || (properties = [])).push(factory.createPropertyAssignment("returnType", factory.createArrowFunction(/*modifiers*/ undefined, /*typeParameters*/ undefined, [], /*type*/ undefined, factory.createToken(38 /* SyntaxKind.EqualsGreaterThanToken */), serializeReturnTypeOfNode(node)))); } if (properties) { decoratorExpressions.push(emitHelpers().createMetadataHelper("design:typeinfo", factory.createObjectLiteralExpression(properties, /*multiLine*/ true))); } } } /** * Determines whether to emit the "design:type" metadata based on the node's kind. * The caller should have already tested whether the node has decorators and whether the * emitDecoratorMetadata compiler option is set. * * @param node The node to test. */ function shouldAddTypeMetadata(node) { var kind = node.kind; return kind === 169 /* SyntaxKind.MethodDeclaration */ || kind === 172 /* SyntaxKind.GetAccessor */ || kind === 173 /* SyntaxKind.SetAccessor */ || kind === 167 /* SyntaxKind.PropertyDeclaration */; } /** * Determines whether to emit the "design:returntype" metadata based on the node's kind. * The caller should have already tested whether the node has decorators and whether the * emitDecoratorMetadata compiler option is set. * * @param node The node to test. */ function shouldAddReturnTypeMetadata(node) { return node.kind === 169 /* SyntaxKind.MethodDeclaration */; } /** * Determines whether to emit the "design:paramtypes" metadata based on the node's kind. * The caller should have already tested whether the node has decorators and whether the * emitDecoratorMetadata compiler option is set. * * @param node The node to test. */ function shouldAddParamTypesMetadata(node) { switch (node.kind) { case 257 /* SyntaxKind.ClassDeclaration */: case 226 /* SyntaxKind.ClassExpression */: return ts.getFirstConstructorWithBody(node) !== undefined; case 169 /* SyntaxKind.MethodDeclaration */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: return true; } return false; } function getAccessorTypeNode(node) { var accessors = resolver.getAllAccessorDeclarations(node); return accessors.setAccessor && ts.getSetAccessorTypeAnnotationNode(accessors.setAccessor) || accessors.getAccessor && ts.getEffectiveReturnTypeNode(accessors.getAccessor); } /** * Serializes the type of a node for use with decorator type metadata. * * @param node The node that should have its type serialized. */ function serializeTypeOfNode(node) { switch (node.kind) { case 167 /* SyntaxKind.PropertyDeclaration */: case 164 /* SyntaxKind.Parameter */: return serializeTypeNode(node.type); case 173 /* SyntaxKind.SetAccessor */: case 172 /* SyntaxKind.GetAccessor */: return serializeTypeNode(getAccessorTypeNode(node)); case 257 /* SyntaxKind.ClassDeclaration */: case 226 /* SyntaxKind.ClassExpression */: case 169 /* SyntaxKind.MethodDeclaration */: return factory.createIdentifier("Function"); default: return factory.createVoidZero(); } } /** * Serializes the types of the parameters of a node for use with decorator type metadata. * * @param node The node that should have its parameter types serialized. */ function serializeParameterTypesOfNode(node, container) { var valueDeclaration = ts.isClassLike(node) ? ts.getFirstConstructorWithBody(node) : ts.isFunctionLike(node) && ts.nodeIsPresent(node.body) ? node : undefined; var expressions = []; if (valueDeclaration) { var parameters = getParametersOfDecoratedDeclaration(valueDeclaration, container); var numParameters = parameters.length; for (var i = 0; i < numParameters; i++) { var parameter = parameters[i]; if (i === 0 && ts.isIdentifier(parameter.name) && parameter.name.escapedText === "this") { continue; } if (parameter.dotDotDotToken) { expressions.push(serializeTypeNode(ts.getRestParameterElementType(parameter.type))); } else { expressions.push(serializeTypeOfNode(parameter)); } } } return factory.createArrayLiteralExpression(expressions); } function getParametersOfDecoratedDeclaration(node, container) { if (container && node.kind === 172 /* SyntaxKind.GetAccessor */) { var setAccessor = ts.getAllAccessorDeclarations(container.members, node).setAccessor; if (setAccessor) { return setAccessor.parameters; } } return node.parameters; } /** * Serializes the return type of a node for use with decorator type metadata. * * @param node The node that should have its return type serialized. */ function serializeReturnTypeOfNode(node) { if (ts.isFunctionLike(node) && node.type) { return serializeTypeNode(node.type); } else if (ts.isAsyncFunction(node)) { return factory.createIdentifier("Promise"); } return factory.createVoidZero(); } /** * Serializes a type node for use with decorator type metadata. * * Types are serialized in the following fashion: * - Void types point to "undefined" (e.g. "void 0") * - Function and Constructor types point to the global "Function" constructor. * - Interface types with a call or construct signature types point to the global * "Function" constructor. * - Array and Tuple types point to the global "Array" constructor. * - Type predicates and booleans point to the global "Boolean" constructor. * - String literal types and strings point to the global "String" constructor. * - Enum and number types point to the global "Number" constructor. * - Symbol types point to the global "Symbol" constructor. * - Type references to classes (or class-like variables) point to the constructor for the class. * - Anything else points to the global "Object" constructor. * * @param node The type node to serialize. */ function serializeTypeNode(node) { if (node === undefined) { return factory.createIdentifier("Object"); } switch (node.kind) { case 114 /* SyntaxKind.VoidKeyword */: case 153 /* SyntaxKind.UndefinedKeyword */: case 143 /* SyntaxKind.NeverKeyword */: return factory.createVoidZero(); case 191 /* SyntaxKind.ParenthesizedType */: return serializeTypeNode(node.type); case 179 /* SyntaxKind.FunctionType */: case 180 /* SyntaxKind.ConstructorType */: return factory.createIdentifier("Function"); case 183 /* SyntaxKind.ArrayType */: case 184 /* SyntaxKind.TupleType */: return factory.createIdentifier("Array"); case 177 /* SyntaxKind.TypePredicate */: case 133 /* SyntaxKind.BooleanKeyword */: return factory.createIdentifier("Boolean"); case 198 /* SyntaxKind.TemplateLiteralType */: case 150 /* SyntaxKind.StringKeyword */: return factory.createIdentifier("String"); case 148 /* SyntaxKind.ObjectKeyword */: return factory.createIdentifier("Object"); case 196 /* SyntaxKind.LiteralType */: switch (node.literal.kind) { case 10 /* SyntaxKind.StringLiteral */: case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: return factory.createIdentifier("String"); case 219 /* SyntaxKind.PrefixUnaryExpression */: case 8 /* SyntaxKind.NumericLiteral */: return factory.createIdentifier("Number"); case 9 /* SyntaxKind.BigIntLiteral */: return getGlobalBigIntNameWithFallback(); case 110 /* SyntaxKind.TrueKeyword */: case 95 /* SyntaxKind.FalseKeyword */: return factory.createIdentifier("Boolean"); case 104 /* SyntaxKind.NullKeyword */: return factory.createVoidZero(); default: return ts.Debug.failBadSyntaxKind(node.literal); } case 147 /* SyntaxKind.NumberKeyword */: return factory.createIdentifier("Number"); case 158 /* SyntaxKind.BigIntKeyword */: return getGlobalBigIntNameWithFallback(); case 151 /* SyntaxKind.SymbolKeyword */: return languageVersion < 2 /* ScriptTarget.ES2015 */ ? getGlobalSymbolNameWithFallback() : factory.createIdentifier("Symbol"); case 178 /* SyntaxKind.TypeReference */: return serializeTypeReferenceNode(node); case 188 /* SyntaxKind.IntersectionType */: case 187 /* SyntaxKind.UnionType */: return serializeTypeList(node.types); case 189 /* SyntaxKind.ConditionalType */: return serializeTypeList([node.trueType, node.falseType]); case 193 /* SyntaxKind.TypeOperator */: if (node.operator === 145 /* SyntaxKind.ReadonlyKeyword */) { return serializeTypeNode(node.type); } break; case 181 /* SyntaxKind.TypeQuery */: case 194 /* SyntaxKind.IndexedAccessType */: case 195 /* SyntaxKind.MappedType */: case 182 /* SyntaxKind.TypeLiteral */: case 130 /* SyntaxKind.AnyKeyword */: case 155 /* SyntaxKind.UnknownKeyword */: case 192 /* SyntaxKind.ThisType */: case 200 /* SyntaxKind.ImportType */: break; // handle JSDoc types from an invalid parse case 312 /* SyntaxKind.JSDocAllType */: case 313 /* SyntaxKind.JSDocUnknownType */: case 317 /* SyntaxKind.JSDocFunctionType */: case 318 /* SyntaxKind.JSDocVariadicType */: case 319 /* SyntaxKind.JSDocNamepathType */: break; case 314 /* SyntaxKind.JSDocNullableType */: case 315 /* SyntaxKind.JSDocNonNullableType */: case 316 /* SyntaxKind.JSDocOptionalType */: return serializeTypeNode(node.type); default: return ts.Debug.failBadSyntaxKind(node); } return factory.createIdentifier("Object"); } function serializeTypeList(types) { // Note when updating logic here also update getEntityNameForDecoratorMetadata // so that aliases can be marked as referenced var serializedUnion; for (var _i = 0, types_23 = types; _i < types_23.length; _i++) { var typeNode = types_23[_i]; while (typeNode.kind === 191 /* SyntaxKind.ParenthesizedType */) { typeNode = typeNode.type; // Skip parens if need be } if (typeNode.kind === 143 /* SyntaxKind.NeverKeyword */) { continue; // Always elide `never` from the union/intersection if possible } if (!strictNullChecks && (typeNode.kind === 196 /* SyntaxKind.LiteralType */ && typeNode.literal.kind === 104 /* SyntaxKind.NullKeyword */ || typeNode.kind === 153 /* SyntaxKind.UndefinedKeyword */)) { continue; // Elide null and undefined from unions for metadata, just like what we did prior to the implementation of strict null checks } var serializedIndividual = serializeTypeNode(typeNode); if (ts.isIdentifier(serializedIndividual) && serializedIndividual.escapedText === "Object") { // One of the individual is global object, return immediately return serializedIndividual; } // If there exists union that is not void 0 expression, check if the the common type is identifier. // anything more complex and we will just default to Object else if (serializedUnion) { // Different types if (!ts.isIdentifier(serializedUnion) || !ts.isIdentifier(serializedIndividual) || serializedUnion.escapedText !== serializedIndividual.escapedText) { return factory.createIdentifier("Object"); } } else { // Initialize the union type serializedUnion = serializedIndividual; } } // If we were able to find common type, use it return serializedUnion || factory.createVoidZero(); // Fallback is only hit if all union constituients are null/undefined/never } /** * Serializes a TypeReferenceNode to an appropriate JS constructor value for use with * decorator type metadata. * * @param node The type reference node. */ function serializeTypeReferenceNode(node) { var kind = resolver.getTypeReferenceSerializationKind(node.typeName, currentNameScope || currentLexicalScope); switch (kind) { case ts.TypeReferenceSerializationKind.Unknown: // From conditional type type reference that cannot be resolved is Similar to any or unknown if (ts.findAncestor(node, function (n) { return n.parent && ts.isConditionalTypeNode(n.parent) && (n.parent.trueType === n || n.parent.falseType === n); })) { return factory.createIdentifier("Object"); } var serialized = serializeEntityNameAsExpressionFallback(node.typeName); var temp = factory.createTempVariable(hoistVariableDeclaration); return factory.createConditionalExpression(factory.createTypeCheck(factory.createAssignment(temp, serialized), "function"), /*questionToken*/ undefined, temp, /*colonToken*/ undefined, factory.createIdentifier("Object")); case ts.TypeReferenceSerializationKind.TypeWithConstructSignatureAndValue: return serializeEntityNameAsExpression(node.typeName); case ts.TypeReferenceSerializationKind.VoidNullableOrNeverType: return factory.createVoidZero(); case ts.TypeReferenceSerializationKind.BigIntLikeType: return getGlobalBigIntNameWithFallback(); case ts.TypeReferenceSerializationKind.BooleanType: return factory.createIdentifier("Boolean"); case ts.TypeReferenceSerializationKind.NumberLikeType: return factory.createIdentifier("Number"); case ts.TypeReferenceSerializationKind.StringLikeType: return factory.createIdentifier("String"); case ts.TypeReferenceSerializationKind.ArrayLikeType: return factory.createIdentifier("Array"); case ts.TypeReferenceSerializationKind.ESSymbolType: return languageVersion < 2 /* ScriptTarget.ES2015 */ ? getGlobalSymbolNameWithFallback() : factory.createIdentifier("Symbol"); case ts.TypeReferenceSerializationKind.TypeWithCallSignature: return factory.createIdentifier("Function"); case ts.TypeReferenceSerializationKind.Promise: return factory.createIdentifier("Promise"); case ts.TypeReferenceSerializationKind.ObjectType: return factory.createIdentifier("Object"); default: return ts.Debug.assertNever(kind); } } function createCheckedValue(left, right) { return factory.createLogicalAnd(factory.createStrictInequality(factory.createTypeOfExpression(left), factory.createStringLiteral("undefined")), right); } /** * Serializes an entity name which may not exist at runtime, but whose access shouldn't throw * * @param node The entity name to serialize. */ function serializeEntityNameAsExpressionFallback(node) { if (node.kind === 79 /* SyntaxKind.Identifier */) { // A -> typeof A !== undefined && A var copied = serializeEntityNameAsExpression(node); return createCheckedValue(copied, copied); } if (node.left.kind === 79 /* SyntaxKind.Identifier */) { // A.B -> typeof A !== undefined && A.B return createCheckedValue(serializeEntityNameAsExpression(node.left), serializeEntityNameAsExpression(node)); } // A.B.C -> typeof A !== undefined && (_a = A.B) !== void 0 && _a.C var left = serializeEntityNameAsExpressionFallback(node.left); var temp = factory.createTempVariable(hoistVariableDeclaration); return factory.createLogicalAnd(factory.createLogicalAnd(left.left, factory.createStrictInequality(factory.createAssignment(temp, left.right), factory.createVoidZero())), factory.createPropertyAccessExpression(temp, node.right)); } /** * Serializes an entity name as an expression for decorator type metadata. * * @param node The entity name to serialize. */ function serializeEntityNameAsExpression(node) { switch (node.kind) { case 79 /* SyntaxKind.Identifier */: // Create a clone of the name with a new parent, and treat it as if it were // a source tree node for the purposes of the checker. var name = ts.setParent(ts.setTextRange(ts.parseNodeFactory.cloneNode(node), node), node.parent); name.original = undefined; ts.setParent(name, ts.getParseTreeNode(currentLexicalScope)); // ensure the parent is set to a parse tree node. return name; case 161 /* SyntaxKind.QualifiedName */: return serializeQualifiedNameAsExpression(node); } } /** * Serializes an qualified name as an expression for decorator type metadata. * * @param node The qualified name to serialize. * @param useFallback A value indicating whether to use logical operators to test for the * qualified name at runtime. */ function serializeQualifiedNameAsExpression(node) { return factory.createPropertyAccessExpression(serializeEntityNameAsExpression(node.left), node.right); } /** * Gets an expression that points to the global "Symbol" constructor at runtime if it is * available. */ function getGlobalSymbolNameWithFallback() { return factory.createConditionalExpression(factory.createTypeCheck(factory.createIdentifier("Symbol"), "function"), /*questionToken*/ undefined, factory.createIdentifier("Symbol"), /*colonToken*/ undefined, factory.createIdentifier("Object")); } /** * Gets an expression that points to the global "BigInt" constructor at runtime if it is * available. */ function getGlobalBigIntNameWithFallback() { return languageVersion < 99 /* ScriptTarget.ESNext */ ? factory.createConditionalExpression(factory.createTypeCheck(factory.createIdentifier("BigInt"), "function"), /*questionToken*/ undefined, factory.createIdentifier("BigInt"), /*colonToken*/ undefined, factory.createIdentifier("Object")) : factory.createIdentifier("BigInt"); } /** * Gets an expression that represents a property name (for decorated properties or enums). * For a computed property, a name is generated for the node. * * @param member The member whose name should be converted into an expression. */ function getExpressionForPropertyName(member, generateNameForComputedPropertyName) { var name = member.name; if (ts.isPrivateIdentifier(name)) { return factory.createIdentifier(""); } else if (ts.isComputedPropertyName(name)) { return generateNameForComputedPropertyName && !ts.isSimpleInlineableExpression(name.expression) ? factory.getGeneratedNameForNode(name) : name.expression; } else if (ts.isIdentifier(name)) { return factory.createStringLiteral(ts.idText(name)); } else { return factory.cloneNode(name); } } /** * Visits the property name of a class element, for use when emitting property * initializers. For a computed property on a node with decorators, a temporary * value is stored for later use. * * @param member The member whose name should be visited. */ function visitPropertyNameOfClassElement(member) { var name = member.name; // Computed property names need to be transformed into a hoisted variable when they are used more than once. // The names are used more than once when: // - the property is non-static and its initializer is moved to the constructor (when there are parameter property assignments). // - the property has a decorator. if (ts.isComputedPropertyName(name) && ((!ts.hasStaticModifier(member) && currentClassHasParameterProperties) || ts.some(member.decorators))) { var expression = ts.visitNode(name.expression, visitor, ts.isExpression); var innerExpression = ts.skipPartiallyEmittedExpressions(expression); if (!ts.isSimpleInlineableExpression(innerExpression)) { var generatedName = factory.getGeneratedNameForNode(name); hoistVariableDeclaration(generatedName); return factory.updateComputedPropertyName(name, factory.createAssignment(generatedName, expression)); } } return ts.visitNode(name, visitor, ts.isPropertyName); } /** * Transforms a HeritageClause with TypeScript syntax. * * This function will only be called when one of the following conditions are met: * - The node is a non-`extends` heritage clause that should be elided. * - The node is an `extends` heritage clause that should be visited, but only allow a single type. * * @param node The HeritageClause to transform. */ function visitHeritageClause(node) { if (node.token === 117 /* SyntaxKind.ImplementsKeyword */) { // implements clauses are elided return undefined; } return ts.visitEachChild(node, visitor, context); } /** * Transforms an ExpressionWithTypeArguments with TypeScript syntax. * * This function will only be called when one of the following conditions are met: * - The node contains type arguments that should be elided. * * @param node The ExpressionWithTypeArguments to transform. */ function visitExpressionWithTypeArguments(node) { return factory.updateExpressionWithTypeArguments(node, ts.visitNode(node.expression, visitor, ts.isLeftHandSideExpression), /*typeArguments*/ undefined); } /** * Determines whether to emit a function-like declaration. We should not emit the * declaration if it does not have a body. * * @param node The declaration node. */ function shouldEmitFunctionLikeDeclaration(node) { return !ts.nodeIsMissing(node.body); } function visitPropertyDeclaration(node) { if (node.flags & 16777216 /* NodeFlags.Ambient */ || ts.hasSyntacticModifier(node, 128 /* ModifierFlags.Abstract */)) { return undefined; } var updated = factory.updatePropertyDeclaration(node, /*decorators*/ undefined, ts.visitNodes(node.modifiers, visitor, ts.isModifier), visitPropertyNameOfClassElement(node), /*questionOrExclamationToken*/ undefined, /*type*/ undefined, ts.visitNode(node.initializer, visitor)); if (updated !== node) { // While we emit the source map for the node after skipping decorators and modifiers, // we need to emit the comments for the original range. ts.setCommentRange(updated, node); ts.setSourceMapRange(updated, ts.moveRangePastDecorators(node)); } return updated; } function visitConstructor(node) { if (!shouldEmitFunctionLikeDeclaration(node)) { return undefined; } return factory.updateConstructorDeclaration(node, /*decorators*/ undefined, /*modifiers*/ undefined, ts.visitParameterList(node.parameters, visitor, context), transformConstructorBody(node.body, node)); } function transformConstructorBody(body, constructor) { var parametersWithPropertyAssignments = constructor && ts.filter(constructor.parameters, function (p) { return ts.isParameterPropertyDeclaration(p, constructor); }); if (!ts.some(parametersWithPropertyAssignments)) { return ts.visitFunctionBody(body, visitor, context); } var statements = []; resumeLexicalEnvironment(); var prologueStatementCount = factory.copyPrologue(body.statements, statements, /*ensureUseStrict*/ false, visitor); var superStatementIndex = ts.findSuperStatementIndex(body.statements, prologueStatementCount); // If there was a super call, visit existing statements up to and including it if (superStatementIndex >= 0) { ts.addRange(statements, ts.visitNodes(body.statements, visitor, ts.isStatement, prologueStatementCount, superStatementIndex + 1 - prologueStatementCount)); } // Transform parameters into property assignments. Transforms this: // // constructor (public x, public y) { // } // // Into this: // // constructor (x, y) { // this.x = x; // this.y = y; // } // var parameterPropertyAssignments = ts.mapDefined(parametersWithPropertyAssignments, transformParameterWithPropertyAssignment); // If there is a super() call, the parameter properties go immediately after it if (superStatementIndex >= 0) { ts.addRange(statements, parameterPropertyAssignments); } // Since there was no super() call, parameter properties are the first statements in the constructor after any prologue statements else { statements = __spreadArray(__spreadArray(__spreadArray([], statements.slice(0, prologueStatementCount), true), parameterPropertyAssignments, true), statements.slice(prologueStatementCount), true); } // Add remaining statements from the body, skipping the super() call if it was found and any (already added) prologue statements ts.addRange(statements, ts.visitNodes(body.statements, visitor, ts.isStatement, superStatementIndex + 1 + prologueStatementCount)); // End the lexical environment. statements = factory.mergeLexicalEnvironment(statements, endLexicalEnvironment()); var block = factory.createBlock(ts.setTextRange(factory.createNodeArray(statements), body.statements), /*multiLine*/ true); ts.setTextRange(block, /*location*/ body); ts.setOriginalNode(block, body); return block; } /** * Transforms a parameter into a property assignment statement. * * @param node The parameter declaration. */ function transformParameterWithPropertyAssignment(node) { var name = node.name; if (!ts.isIdentifier(name)) { return undefined; } // TODO(rbuckton): Does this need to be parented? var propertyName = ts.setParent(ts.setTextRange(factory.cloneNode(name), name), name.parent); ts.setEmitFlags(propertyName, 1536 /* EmitFlags.NoComments */ | 48 /* EmitFlags.NoSourceMap */); // TODO(rbuckton): Does this need to be parented? var localName = ts.setParent(ts.setTextRange(factory.cloneNode(name), name), name.parent); ts.setEmitFlags(localName, 1536 /* EmitFlags.NoComments */); return ts.startOnNewLine(ts.removeAllComments(ts.setTextRange(ts.setOriginalNode(factory.createExpressionStatement(factory.createAssignment(ts.setTextRange(factory.createPropertyAccessExpression(factory.createThis(), propertyName), node.name), localName)), node), ts.moveRangePos(node, -1)))); } function visitMethodDeclaration(node) { if (!shouldEmitFunctionLikeDeclaration(node)) { return undefined; } var updated = factory.updateMethodDeclaration(node, /*decorators*/ undefined, ts.visitNodes(node.modifiers, modifierVisitor, ts.isModifier), node.asteriskToken, visitPropertyNameOfClassElement(node), /*questionToken*/ undefined, /*typeParameters*/ undefined, ts.visitParameterList(node.parameters, visitor, context), /*type*/ undefined, ts.visitFunctionBody(node.body, visitor, context)); if (updated !== node) { // While we emit the source map for the node after skipping decorators and modifiers, // we need to emit the comments for the original range. ts.setCommentRange(updated, node); ts.setSourceMapRange(updated, ts.moveRangePastDecorators(node)); } return updated; } /** * Determines whether to emit an accessor declaration. We should not emit the * declaration if it does not have a body and is abstract. * * @param node The declaration node. */ function shouldEmitAccessorDeclaration(node) { return !(ts.nodeIsMissing(node.body) && ts.hasSyntacticModifier(node, 128 /* ModifierFlags.Abstract */)); } function visitGetAccessor(node) { if (!shouldEmitAccessorDeclaration(node)) { return undefined; } var updated = factory.updateGetAccessorDeclaration(node, /*decorators*/ undefined, ts.visitNodes(node.modifiers, modifierVisitor, ts.isModifier), visitPropertyNameOfClassElement(node), ts.visitParameterList(node.parameters, visitor, context), /*type*/ undefined, ts.visitFunctionBody(node.body, visitor, context) || factory.createBlock([])); if (updated !== node) { // While we emit the source map for the node after skipping decorators and modifiers, // we need to emit the comments for the original range. ts.setCommentRange(updated, node); ts.setSourceMapRange(updated, ts.moveRangePastDecorators(node)); } return updated; } function visitSetAccessor(node) { if (!shouldEmitAccessorDeclaration(node)) { return undefined; } var updated = factory.updateSetAccessorDeclaration(node, /*decorators*/ undefined, ts.visitNodes(node.modifiers, modifierVisitor, ts.isModifier), visitPropertyNameOfClassElement(node), ts.visitParameterList(node.parameters, visitor, context), ts.visitFunctionBody(node.body, visitor, context) || factory.createBlock([])); if (updated !== node) { // While we emit the source map for the node after skipping decorators and modifiers, // we need to emit the comments for the original range. ts.setCommentRange(updated, node); ts.setSourceMapRange(updated, ts.moveRangePastDecorators(node)); } return updated; } function visitFunctionDeclaration(node) { if (!shouldEmitFunctionLikeDeclaration(node)) { return factory.createNotEmittedStatement(node); } var updated = factory.updateFunctionDeclaration(node, /*decorators*/ undefined, ts.visitNodes(node.modifiers, modifierVisitor, ts.isModifier), node.asteriskToken, node.name, /*typeParameters*/ undefined, ts.visitParameterList(node.parameters, visitor, context), /*type*/ undefined, ts.visitFunctionBody(node.body, visitor, context) || factory.createBlock([])); if (isExportOfNamespace(node)) { var statements = [updated]; addExportMemberAssignment(statements, node); return statements; } return updated; } function visitFunctionExpression(node) { if (!shouldEmitFunctionLikeDeclaration(node)) { return factory.createOmittedExpression(); } var updated = factory.updateFunctionExpression(node, ts.visitNodes(node.modifiers, modifierVisitor, ts.isModifier), node.asteriskToken, node.name, /*typeParameters*/ undefined, ts.visitParameterList(node.parameters, visitor, context), /*type*/ undefined, ts.visitFunctionBody(node.body, visitor, context) || factory.createBlock([])); return updated; } function visitArrowFunction(node) { var updated = factory.updateArrowFunction(node, ts.visitNodes(node.modifiers, modifierVisitor, ts.isModifier), /*typeParameters*/ undefined, ts.visitParameterList(node.parameters, visitor, context), /*type*/ undefined, node.equalsGreaterThanToken, ts.visitFunctionBody(node.body, visitor, context)); return updated; } function visitParameter(node) { if (ts.parameterIsThisKeyword(node)) { return undefined; } var updated = factory.updateParameterDeclaration(node, /*decorators*/ undefined, /*modifiers*/ undefined, node.dotDotDotToken, ts.visitNode(node.name, visitor, ts.isBindingName), /*questionToken*/ undefined, /*type*/ undefined, ts.visitNode(node.initializer, visitor, ts.isExpression)); if (updated !== node) { // While we emit the source map for the node after skipping decorators and modifiers, // we need to emit the comments for the original range. ts.setCommentRange(updated, node); ts.setTextRange(updated, ts.moveRangePastModifiers(node)); ts.setSourceMapRange(updated, ts.moveRangePastModifiers(node)); ts.setEmitFlags(updated.name, 32 /* EmitFlags.NoTrailingSourceMap */); } return updated; } function visitVariableStatement(node) { if (isExportOfNamespace(node)) { var variables = ts.getInitializedVariables(node.declarationList); if (variables.length === 0) { // elide statement if there are no initialized variables. return undefined; } return ts.setTextRange(factory.createExpressionStatement(factory.inlineExpressions(ts.map(variables, transformInitializedVariable))), node); } else { return ts.visitEachChild(node, visitor, context); } } function transformInitializedVariable(node) { var name = node.name; if (ts.isBindingPattern(name)) { return ts.flattenDestructuringAssignment(node, visitor, context, 0 /* FlattenLevel.All */, /*needsValue*/ false, createNamespaceExportExpression); } else { return ts.setTextRange(factory.createAssignment(getNamespaceMemberNameWithSourceMapsAndWithoutComments(name), ts.visitNode(node.initializer, visitor, ts.isExpression)), /*location*/ node); } } function visitVariableDeclaration(node) { var updated = factory.updateVariableDeclaration(node, ts.visitNode(node.name, visitor, ts.isBindingName), /*exclamationToken*/ undefined, /*type*/ undefined, ts.visitNode(node.initializer, visitor, ts.isExpression)); if (node.type) { ts.setTypeNode(updated.name, node.type); } return updated; } function visitParenthesizedExpression(node) { var innerExpression = ts.skipOuterExpressions(node.expression, ~6 /* OuterExpressionKinds.Assertions */); if (ts.isAssertionExpression(innerExpression)) { // Make sure we consider all nested cast expressions, e.g.: // (-A).x; var expression = ts.visitNode(node.expression, visitor, ts.isExpression); // We have an expression of the form: (SubExpr). Emitting this as (SubExpr) // is really not desirable. We would like to emit the subexpression as-is. Omitting // the parentheses, however, could cause change in the semantics of the generated // code if the casted expression has a lower precedence than the rest of the // expression. // // To preserve comments, we return a "PartiallyEmittedExpression" here which will // preserve the position information of the original expression. // // Due to the auto-parenthesization rules used by the visitor and factory functions // we can safely elide the parentheses here, as a new synthetic // ParenthesizedExpression will be inserted if we remove parentheses too // aggressively. // // If there are leading comments on the expression itself, the emitter will handle ASI // for return, throw, and yield by re-introducing parenthesis during emit on an as-need // basis. return factory.createPartiallyEmittedExpression(expression, node); } return ts.visitEachChild(node, visitor, context); } function visitAssertionExpression(node) { var expression = ts.visitNode(node.expression, visitor, ts.isExpression); return factory.createPartiallyEmittedExpression(expression, node); } function visitNonNullExpression(node) { var expression = ts.visitNode(node.expression, visitor, ts.isLeftHandSideExpression); return factory.createPartiallyEmittedExpression(expression, node); } function visitCallExpression(node) { return factory.updateCallExpression(node, ts.visitNode(node.expression, visitor, ts.isExpression), /*typeArguments*/ undefined, ts.visitNodes(node.arguments, visitor, ts.isExpression)); } function visitNewExpression(node) { return factory.updateNewExpression(node, ts.visitNode(node.expression, visitor, ts.isExpression), /*typeArguments*/ undefined, ts.visitNodes(node.arguments, visitor, ts.isExpression)); } function visitTaggedTemplateExpression(node) { return factory.updateTaggedTemplateExpression(node, ts.visitNode(node.tag, visitor, ts.isExpression), /*typeArguments*/ undefined, ts.visitNode(node.template, visitor, ts.isExpression)); } function visitJsxSelfClosingElement(node) { return factory.updateJsxSelfClosingElement(node, ts.visitNode(node.tagName, visitor, ts.isJsxTagNameExpression), /*typeArguments*/ undefined, ts.visitNode(node.attributes, visitor, ts.isJsxAttributes)); } function visitJsxJsxOpeningElement(node) { return factory.updateJsxOpeningElement(node, ts.visitNode(node.tagName, visitor, ts.isJsxTagNameExpression), /*typeArguments*/ undefined, ts.visitNode(node.attributes, visitor, ts.isJsxAttributes)); } /** * Determines whether to emit an enum declaration. * * @param node The enum declaration node. */ function shouldEmitEnumDeclaration(node) { return !ts.isEnumConst(node) || ts.shouldPreserveConstEnums(compilerOptions); } /** * Visits an enum declaration. * * This function will be called any time a TypeScript enum is encountered. * * @param node The enum declaration node. */ function visitEnumDeclaration(node) { if (!shouldEmitEnumDeclaration(node)) { return factory.createNotEmittedStatement(node); } var statements = []; // We request to be advised when the printer is about to print this node. This allows // us to set up the correct state for later substitutions. var emitFlags = 2 /* EmitFlags.AdviseOnEmitNode */; // If needed, we should emit a variable declaration for the enum. If we emit // a leading variable declaration, we should not emit leading comments for the // enum body. var varAdded = addVarForEnumOrModuleDeclaration(statements, node); if (varAdded) { // We should still emit the comments if we are emitting a system module. if (moduleKind !== ts.ModuleKind.System || currentLexicalScope !== currentSourceFile) { emitFlags |= 512 /* EmitFlags.NoLeadingComments */; } } // `parameterName` is the declaration name used inside of the enum. var parameterName = getNamespaceParameterName(node); // `containerName` is the expression used inside of the enum for assignments. var containerName = getNamespaceContainerName(node); // `exportName` is the expression used within this node's container for any exported references. var exportName = ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */) ? factory.getExternalModuleOrNamespaceExportName(currentNamespaceContainerName, node, /*allowComments*/ false, /*allowSourceMaps*/ true) : factory.getLocalName(node, /*allowComments*/ false, /*allowSourceMaps*/ true); // x || (x = {}) // exports.x || (exports.x = {}) var moduleArg = factory.createLogicalOr(exportName, factory.createAssignment(exportName, factory.createObjectLiteralExpression())); if (hasNamespaceQualifiedExportName(node)) { // `localName` is the expression used within this node's containing scope for any local references. var localName = factory.getLocalName(node, /*allowComments*/ false, /*allowSourceMaps*/ true); // x = (exports.x || (exports.x = {})) moduleArg = factory.createAssignment(localName, moduleArg); } // (function (x) { // x[x["y"] = 0] = "y"; // ... // })(x || (x = {})); var enumStatement = factory.createExpressionStatement(factory.createCallExpression(factory.createFunctionExpression( /*modifiers*/ undefined, /*asteriskToken*/ undefined, /*name*/ undefined, /*typeParameters*/ undefined, [factory.createParameterDeclaration(/*decorators*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, parameterName)], /*type*/ undefined, transformEnumBody(node, containerName)), /*typeArguments*/ undefined, [moduleArg])); ts.setOriginalNode(enumStatement, node); if (varAdded) { // If a variable was added, synthetic comments are emitted on it, not on the moduleStatement. ts.setSyntheticLeadingComments(enumStatement, undefined); ts.setSyntheticTrailingComments(enumStatement, undefined); } ts.setTextRange(enumStatement, node); ts.addEmitFlags(enumStatement, emitFlags); statements.push(enumStatement); // Add a DeclarationMarker for the enum to preserve trailing comments and mark // the end of the declaration. statements.push(factory.createEndOfDeclarationMarker(node)); return statements; } /** * Transforms the body of an enum declaration. * * @param node The enum declaration node. */ function transformEnumBody(node, localName) { var savedCurrentNamespaceLocalName = currentNamespaceContainerName; currentNamespaceContainerName = localName; var statements = []; startLexicalEnvironment(); var members = ts.map(node.members, transformEnumMember); ts.insertStatementsAfterStandardPrologue(statements, endLexicalEnvironment()); ts.addRange(statements, members); currentNamespaceContainerName = savedCurrentNamespaceLocalName; return factory.createBlock(ts.setTextRange(factory.createNodeArray(statements), /*location*/ node.members), /*multiLine*/ true); } /** * Transforms an enum member into a statement. * * @param member The enum member node. */ function transformEnumMember(member) { // enums don't support computed properties // we pass false as 'generateNameForComputedPropertyName' for a backward compatibility purposes // old emitter always generate 'expression' part of the name as-is. var name = getExpressionForPropertyName(member, /*generateNameForComputedPropertyName*/ false); var valueExpression = transformEnumMemberDeclarationValue(member); var innerAssignment = factory.createAssignment(factory.createElementAccessExpression(currentNamespaceContainerName, name), valueExpression); var outerAssignment = valueExpression.kind === 10 /* SyntaxKind.StringLiteral */ ? innerAssignment : factory.createAssignment(factory.createElementAccessExpression(currentNamespaceContainerName, innerAssignment), name); return ts.setTextRange(factory.createExpressionStatement(ts.setTextRange(outerAssignment, member)), member); } /** * Transforms the value of an enum member. * * @param member The enum member node. */ function transformEnumMemberDeclarationValue(member) { var value = resolver.getConstantValue(member); if (value !== undefined) { return typeof value === "string" ? factory.createStringLiteral(value) : factory.createNumericLiteral(value); } else { enableSubstitutionForNonQualifiedEnumMembers(); if (member.initializer) { return ts.visitNode(member.initializer, visitor, ts.isExpression); } else { return factory.createVoidZero(); } } } /** * Determines whether to elide a module declaration. * * @param node The module declaration node. */ function shouldEmitModuleDeclaration(nodeIn) { var node = ts.getParseTreeNode(nodeIn, ts.isModuleDeclaration); if (!node) { // If we can't find a parse tree node, assume the node is instantiated. return true; } return ts.isInstantiatedModule(node, ts.shouldPreserveConstEnums(compilerOptions)); } /** * Determines whether an exported declaration will have a qualified export name (e.g. `f.x` * or `exports.x`). */ function hasNamespaceQualifiedExportName(node) { return isExportOfNamespace(node) || (isExternalModuleExport(node) && moduleKind !== ts.ModuleKind.ES2015 && moduleKind !== ts.ModuleKind.ES2020 && moduleKind !== ts.ModuleKind.ES2022 && moduleKind !== ts.ModuleKind.ESNext && moduleKind !== ts.ModuleKind.System); } /** * Records that a declaration was emitted in the current scope, if it was the first * declaration for the provided symbol. */ function recordEmittedDeclarationInScope(node) { if (!currentScopeFirstDeclarationsOfName) { currentScopeFirstDeclarationsOfName = new ts.Map(); } var name = declaredNameInScope(node); if (!currentScopeFirstDeclarationsOfName.has(name)) { currentScopeFirstDeclarationsOfName.set(name, node); } } /** * Determines whether a declaration is the first declaration with * the same name emitted in the current scope. */ function isFirstEmittedDeclarationInScope(node) { if (currentScopeFirstDeclarationsOfName) { var name = declaredNameInScope(node); return currentScopeFirstDeclarationsOfName.get(name) === node; } return true; } function declaredNameInScope(node) { ts.Debug.assertNode(node.name, ts.isIdentifier); return node.name.escapedText; } /** * Adds a leading VariableStatement for a enum or module declaration. */ function addVarForEnumOrModuleDeclaration(statements, node) { // Emit a variable statement for the module. We emit top-level enums as a `var` // declaration to avoid static errors in global scripts scripts due to redeclaration. // enums in any other scope are emitted as a `let` declaration. var statement = factory.createVariableStatement(ts.visitNodes(node.modifiers, modifierVisitor, ts.isModifier), factory.createVariableDeclarationList([ factory.createVariableDeclaration(factory.getLocalName(node, /*allowComments*/ false, /*allowSourceMaps*/ true)) ], currentLexicalScope.kind === 305 /* SyntaxKind.SourceFile */ ? 0 /* NodeFlags.None */ : 1 /* NodeFlags.Let */)); ts.setOriginalNode(statement, node); recordEmittedDeclarationInScope(node); if (isFirstEmittedDeclarationInScope(node)) { // Adjust the source map emit to match the old emitter. if (node.kind === 260 /* SyntaxKind.EnumDeclaration */) { ts.setSourceMapRange(statement.declarationList, node); } else { ts.setSourceMapRange(statement, node); } // Trailing comments for module declaration should be emitted after the function closure // instead of the variable statement: // // /** Module comment*/ // module m1 { // function foo4Export() { // } // } // trailing comment module // // Should emit: // // /** Module comment*/ // var m1; // (function (m1) { // function foo4Export() { // } // })(m1 || (m1 = {})); // trailing comment module // ts.setCommentRange(statement, node); ts.addEmitFlags(statement, 1024 /* EmitFlags.NoTrailingComments */ | 4194304 /* EmitFlags.HasEndOfDeclarationMarker */); statements.push(statement); return true; } else { // For an EnumDeclaration or ModuleDeclaration that merges with a preceeding // declaration we do not emit a leading variable declaration. To preserve the // begin/end semantics of the declararation and to properly handle exports // we wrap the leading variable declaration in a `MergeDeclarationMarker`. var mergeMarker = factory.createMergeDeclarationMarker(statement); ts.setEmitFlags(mergeMarker, 1536 /* EmitFlags.NoComments */ | 4194304 /* EmitFlags.HasEndOfDeclarationMarker */); statements.push(mergeMarker); return false; } } /** * Visits a module declaration node. * * This function will be called any time a TypeScript namespace (ModuleDeclaration) is encountered. * * @param node The module declaration node. */ function visitModuleDeclaration(node) { if (!shouldEmitModuleDeclaration(node)) { return factory.createNotEmittedStatement(node); } ts.Debug.assertNode(node.name, ts.isIdentifier, "A TypeScript namespace should have an Identifier name."); enableSubstitutionForNamespaceExports(); var statements = []; // We request to be advised when the printer is about to print this node. This allows // us to set up the correct state for later substitutions. var emitFlags = 2 /* EmitFlags.AdviseOnEmitNode */; // If needed, we should emit a variable declaration for the module. If we emit // a leading variable declaration, we should not emit leading comments for the // module body. var varAdded = addVarForEnumOrModuleDeclaration(statements, node); if (varAdded) { // We should still emit the comments if we are emitting a system module. if (moduleKind !== ts.ModuleKind.System || currentLexicalScope !== currentSourceFile) { emitFlags |= 512 /* EmitFlags.NoLeadingComments */; } } // `parameterName` is the declaration name used inside of the namespace. var parameterName = getNamespaceParameterName(node); // `containerName` is the expression used inside of the namespace for exports. var containerName = getNamespaceContainerName(node); // `exportName` is the expression used within this node's container for any exported references. var exportName = ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */) ? factory.getExternalModuleOrNamespaceExportName(currentNamespaceContainerName, node, /*allowComments*/ false, /*allowSourceMaps*/ true) : factory.getLocalName(node, /*allowComments*/ false, /*allowSourceMaps*/ true); // x || (x = {}) // exports.x || (exports.x = {}) var moduleArg = factory.createLogicalOr(exportName, factory.createAssignment(exportName, factory.createObjectLiteralExpression())); if (hasNamespaceQualifiedExportName(node)) { // `localName` is the expression used within this node's containing scope for any local references. var localName = factory.getLocalName(node, /*allowComments*/ false, /*allowSourceMaps*/ true); // x = (exports.x || (exports.x = {})) moduleArg = factory.createAssignment(localName, moduleArg); } // (function (x_1) { // x_1.y = ...; // })(x || (x = {})); var moduleStatement = factory.createExpressionStatement(factory.createCallExpression(factory.createFunctionExpression( /*modifiers*/ undefined, /*asteriskToken*/ undefined, /*name*/ undefined, /*typeParameters*/ undefined, [factory.createParameterDeclaration(/*decorators*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, parameterName)], /*type*/ undefined, transformModuleBody(node, containerName)), /*typeArguments*/ undefined, [moduleArg])); ts.setOriginalNode(moduleStatement, node); if (varAdded) { // If a variable was added, synthetic comments are emitted on it, not on the moduleStatement. ts.setSyntheticLeadingComments(moduleStatement, undefined); ts.setSyntheticTrailingComments(moduleStatement, undefined); } ts.setTextRange(moduleStatement, node); ts.addEmitFlags(moduleStatement, emitFlags); statements.push(moduleStatement); // Add a DeclarationMarker for the namespace to preserve trailing comments and mark // the end of the declaration. statements.push(factory.createEndOfDeclarationMarker(node)); return statements; } /** * Transforms the body of a module declaration. * * @param node The module declaration node. */ function transformModuleBody(node, namespaceLocalName) { var savedCurrentNamespaceContainerName = currentNamespaceContainerName; var savedCurrentNamespace = currentNamespace; var savedCurrentScopeFirstDeclarationsOfName = currentScopeFirstDeclarationsOfName; currentNamespaceContainerName = namespaceLocalName; currentNamespace = node; currentScopeFirstDeclarationsOfName = undefined; var statements = []; startLexicalEnvironment(); var statementsLocation; var blockLocation; if (node.body) { if (node.body.kind === 262 /* SyntaxKind.ModuleBlock */) { saveStateAndInvoke(node.body, function (body) { return ts.addRange(statements, ts.visitNodes(body.statements, namespaceElementVisitor, ts.isStatement)); }); statementsLocation = node.body.statements; blockLocation = node.body; } else { var result = visitModuleDeclaration(node.body); if (result) { if (ts.isArray(result)) { ts.addRange(statements, result); } else { statements.push(result); } } var moduleBlock = getInnerMostModuleDeclarationFromDottedModule(node).body; statementsLocation = ts.moveRangePos(moduleBlock.statements, -1); } } ts.insertStatementsAfterStandardPrologue(statements, endLexicalEnvironment()); currentNamespaceContainerName = savedCurrentNamespaceContainerName; currentNamespace = savedCurrentNamespace; currentScopeFirstDeclarationsOfName = savedCurrentScopeFirstDeclarationsOfName; var block = factory.createBlock(ts.setTextRange(factory.createNodeArray(statements), /*location*/ statementsLocation), /*multiLine*/ true); ts.setTextRange(block, blockLocation); // namespace hello.hi.world { // function foo() {} // // // TODO, blah // } // // should be emitted as // // var hello; // (function (hello) { // var hi; // (function (hi) { // var world; // (function (world) { // function foo() { } // // TODO, blah // })(world = hi.world || (hi.world = {})); // })(hi = hello.hi || (hello.hi = {})); // })(hello || (hello = {})); // We only want to emit comment on the namespace which contains block body itself, not the containing namespaces. if (!node.body || node.body.kind !== 262 /* SyntaxKind.ModuleBlock */) { ts.setEmitFlags(block, ts.getEmitFlags(block) | 1536 /* EmitFlags.NoComments */); } return block; } function getInnerMostModuleDeclarationFromDottedModule(moduleDeclaration) { if (moduleDeclaration.body.kind === 261 /* SyntaxKind.ModuleDeclaration */) { var recursiveInnerModule = getInnerMostModuleDeclarationFromDottedModule(moduleDeclaration.body); return recursiveInnerModule || moduleDeclaration.body; } } /** * Visits an import declaration, eliding it if it is type-only or if it has an import clause that may be elided. * * @param node The import declaration node. */ function visitImportDeclaration(node) { if (!node.importClause) { // Do not elide a side-effect only import declaration. // import "foo"; return node; } if (node.importClause.isTypeOnly) { // Always elide type-only imports return undefined; } // Elide the declaration if the import clause was elided. var importClause = ts.visitNode(node.importClause, visitImportClause, ts.isImportClause); return importClause || compilerOptions.importsNotUsedAsValues === 1 /* ImportsNotUsedAsValues.Preserve */ || compilerOptions.importsNotUsedAsValues === 2 /* ImportsNotUsedAsValues.Error */ ? factory.updateImportDeclaration(node, /*decorators*/ undefined, /*modifiers*/ undefined, importClause, node.moduleSpecifier, node.assertClause) : undefined; } /** * Visits an import clause, eliding it if its `name` and `namedBindings` may both be elided. * * @param node The import clause node. */ function visitImportClause(node) { ts.Debug.assert(!node.isTypeOnly); // Elide the import clause if we elide both its name and its named bindings. var name = shouldEmitAliasDeclaration(node) ? node.name : undefined; var namedBindings = ts.visitNode(node.namedBindings, visitNamedImportBindings, ts.isNamedImportBindings); return (name || namedBindings) ? factory.updateImportClause(node, /*isTypeOnly*/ false, name, namedBindings) : undefined; } /** * Visits named import bindings, eliding them if their targets, their references, and the compilation settings allow. * * @param node The named import bindings node. */ function visitNamedImportBindings(node) { if (node.kind === 268 /* SyntaxKind.NamespaceImport */) { // Elide a namespace import if it is not referenced. return shouldEmitAliasDeclaration(node) ? node : undefined; } else { // Elide named imports if all of its import specifiers are elided and settings allow. var allowEmpty = compilerOptions.preserveValueImports && (compilerOptions.importsNotUsedAsValues === 1 /* ImportsNotUsedAsValues.Preserve */ || compilerOptions.importsNotUsedAsValues === 2 /* ImportsNotUsedAsValues.Error */); var elements = ts.visitNodes(node.elements, visitImportSpecifier, ts.isImportSpecifier); return allowEmpty || ts.some(elements) ? factory.updateNamedImports(node, elements) : undefined; } } /** * Visits an import specifier, eliding it if its target, its references, and the compilation settings allow. * * @param node The import specifier node. */ function visitImportSpecifier(node) { return !node.isTypeOnly && shouldEmitAliasDeclaration(node) ? node : undefined; } /** * Visits an export assignment, eliding it if it does not contain a clause that resolves * to a value. * * @param node The export assignment node. */ function visitExportAssignment(node) { // Elide the export assignment if it does not reference a value. return resolver.isValueAliasDeclaration(node) ? ts.visitEachChild(node, visitor, context) : undefined; } /** * Visits an export declaration, eliding it if it does not contain a clause that resolves to a value. * * @param node The export declaration node. */ function visitExportDeclaration(node) { if (node.isTypeOnly) { return undefined; } if (!node.exportClause || ts.isNamespaceExport(node.exportClause)) { // never elide `export from ` declarations - // they should be kept for sideffects/untyped exports, even when the // type checker doesn't know about any exports return node; } // Elide the export declaration if all of its named exports are elided. var allowEmpty = !!node.moduleSpecifier && (compilerOptions.importsNotUsedAsValues === 1 /* ImportsNotUsedAsValues.Preserve */ || compilerOptions.importsNotUsedAsValues === 2 /* ImportsNotUsedAsValues.Error */); var exportClause = ts.visitNode(node.exportClause, function (bindings) { return visitNamedExportBindings(bindings, allowEmpty); }, ts.isNamedExportBindings); return exportClause ? factory.updateExportDeclaration(node, /*decorators*/ undefined, /*modifiers*/ undefined, node.isTypeOnly, exportClause, node.moduleSpecifier, node.assertClause) : undefined; } /** * Visits named exports, eliding it if it does not contain an export specifier that * resolves to a value. * * @param node The named exports node. */ function visitNamedExports(node, allowEmpty) { // Elide the named exports if all of its export specifiers were elided. var elements = ts.visitNodes(node.elements, visitExportSpecifier, ts.isExportSpecifier); return allowEmpty || ts.some(elements) ? factory.updateNamedExports(node, elements) : undefined; } function visitNamespaceExports(node) { return factory.updateNamespaceExport(node, ts.visitNode(node.name, visitor, ts.isIdentifier)); } function visitNamedExportBindings(node, allowEmpty) { return ts.isNamespaceExport(node) ? visitNamespaceExports(node) : visitNamedExports(node, allowEmpty); } /** * Visits an export specifier, eliding it if it does not resolve to a value. * * @param node The export specifier node. */ function visitExportSpecifier(node) { // Elide an export specifier if it does not reference a value. return !node.isTypeOnly && resolver.isValueAliasDeclaration(node) ? node : undefined; } /** * Determines whether to emit an import equals declaration. * * @param node The import equals declaration node. */ function shouldEmitImportEqualsDeclaration(node) { // preserve old compiler's behavior: emit 'var' for import declaration (even if we do not consider them referenced) when // - current file is not external module // - import declaration is top level and target is value imported by entity name return shouldEmitAliasDeclaration(node) || (!ts.isExternalModule(currentSourceFile) && resolver.isTopLevelValueImportEqualsWithEntityName(node)); } /** * Visits an import equals declaration. * * @param node The import equals declaration node. */ function visitImportEqualsDeclaration(node) { // Always elide type-only imports if (node.isTypeOnly) { return undefined; } if (ts.isExternalModuleImportEqualsDeclaration(node)) { var isReferenced = shouldEmitAliasDeclaration(node); // If the alias is unreferenced but we want to keep the import, replace with 'import "mod"'. if (!isReferenced && compilerOptions.importsNotUsedAsValues === 1 /* ImportsNotUsedAsValues.Preserve */) { return ts.setOriginalNode(ts.setTextRange(factory.createImportDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*importClause*/ undefined, node.moduleReference.expression, /*assertClause*/ undefined), node), node); } return isReferenced ? ts.visitEachChild(node, visitor, context) : undefined; } if (!shouldEmitImportEqualsDeclaration(node)) { return undefined; } var moduleReference = ts.createExpressionFromEntityName(factory, node.moduleReference); ts.setEmitFlags(moduleReference, 1536 /* EmitFlags.NoComments */ | 2048 /* EmitFlags.NoNestedComments */); if (isNamedExternalModuleExport(node) || !isExportOfNamespace(node)) { // export var ${name} = ${moduleReference}; // var ${name} = ${moduleReference}; return ts.setOriginalNode(ts.setTextRange(factory.createVariableStatement(ts.visitNodes(node.modifiers, modifierVisitor, ts.isModifier), factory.createVariableDeclarationList([ ts.setOriginalNode(factory.createVariableDeclaration(node.name, /*exclamationToken*/ undefined, /*type*/ undefined, moduleReference), node) ])), node), node); } else { // exports.${name} = ${moduleReference}; return ts.setOriginalNode(createNamespaceExport(node.name, moduleReference, node), node); } } /** * Gets a value indicating whether the node is exported from a namespace. * * @param node The node to test. */ function isExportOfNamespace(node) { return currentNamespace !== undefined && ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */); } /** * Gets a value indicating whether the node is exported from an external module. * * @param node The node to test. */ function isExternalModuleExport(node) { return currentNamespace === undefined && ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */); } /** * Gets a value indicating whether the node is a named export from an external module. * * @param node The node to test. */ function isNamedExternalModuleExport(node) { return isExternalModuleExport(node) && !ts.hasSyntacticModifier(node, 512 /* ModifierFlags.Default */); } /** * Gets a value indicating whether the node is the default export of an external module. * * @param node The node to test. */ function isDefaultExternalModuleExport(node) { return isExternalModuleExport(node) && ts.hasSyntacticModifier(node, 512 /* ModifierFlags.Default */); } /** * Creates a statement for the provided expression. This is used in calls to `map`. */ function expressionToStatement(expression) { return factory.createExpressionStatement(expression); } function addExportMemberAssignment(statements, node) { var expression = factory.createAssignment(factory.getExternalModuleOrNamespaceExportName(currentNamespaceContainerName, node, /*allowComments*/ false, /*allowSourceMaps*/ true), factory.getLocalName(node)); ts.setSourceMapRange(expression, ts.createRange(node.name ? node.name.pos : node.pos, node.end)); var statement = factory.createExpressionStatement(expression); ts.setSourceMapRange(statement, ts.createRange(-1, node.end)); statements.push(statement); } function createNamespaceExport(exportName, exportValue, location) { return ts.setTextRange(factory.createExpressionStatement(factory.createAssignment(factory.getNamespaceMemberName(currentNamespaceContainerName, exportName, /*allowComments*/ false, /*allowSourceMaps*/ true), exportValue)), location); } function createNamespaceExportExpression(exportName, exportValue, location) { return ts.setTextRange(factory.createAssignment(getNamespaceMemberNameWithSourceMapsAndWithoutComments(exportName), exportValue), location); } function getNamespaceMemberNameWithSourceMapsAndWithoutComments(name) { return factory.getNamespaceMemberName(currentNamespaceContainerName, name, /*allowComments*/ false, /*allowSourceMaps*/ true); } /** * Gets the declaration name used inside of a namespace or enum. */ function getNamespaceParameterName(node) { var name = factory.getGeneratedNameForNode(node); ts.setSourceMapRange(name, node.name); return name; } /** * Gets the expression used to refer to a namespace or enum within the body * of its declaration. */ function getNamespaceContainerName(node) { return factory.getGeneratedNameForNode(node); } /** * Gets a local alias for a class declaration if it is a decorated class with an internal * reference to the static side of the class. This is necessary to avoid issues with * double-binding semantics for the class name. */ function getClassAliasIfNeeded(node) { if (resolver.getNodeCheckFlags(node) & 16777216 /* NodeCheckFlags.ClassWithConstructorReference */) { enableSubstitutionForClassAliases(); var classAlias = factory.createUniqueName(node.name && !ts.isGeneratedIdentifier(node.name) ? ts.idText(node.name) : "default"); classAliases[ts.getOriginalNodeId(node)] = classAlias; hoistVariableDeclaration(classAlias); return classAlias; } } function getClassPrototype(node) { return factory.createPropertyAccessExpression(factory.getDeclarationName(node), "prototype"); } function getClassMemberPrefix(node, member) { return ts.isStatic(member) ? factory.getDeclarationName(node) : getClassPrototype(node); } function enableSubstitutionForNonQualifiedEnumMembers() { if ((enabledSubstitutions & 8 /* TypeScriptSubstitutionFlags.NonQualifiedEnumMembers */) === 0) { enabledSubstitutions |= 8 /* TypeScriptSubstitutionFlags.NonQualifiedEnumMembers */; context.enableSubstitution(79 /* SyntaxKind.Identifier */); } } function enableSubstitutionForClassAliases() { if ((enabledSubstitutions & 1 /* TypeScriptSubstitutionFlags.ClassAliases */) === 0) { enabledSubstitutions |= 1 /* TypeScriptSubstitutionFlags.ClassAliases */; // We need to enable substitutions for identifiers. This allows us to // substitute class names inside of a class declaration. context.enableSubstitution(79 /* SyntaxKind.Identifier */); // Keep track of class aliases. classAliases = []; } } function enableSubstitutionForNamespaceExports() { if ((enabledSubstitutions & 2 /* TypeScriptSubstitutionFlags.NamespaceExports */) === 0) { enabledSubstitutions |= 2 /* TypeScriptSubstitutionFlags.NamespaceExports */; // We need to enable substitutions for identifiers and shorthand property assignments. This allows us to // substitute the names of exported members of a namespace. context.enableSubstitution(79 /* SyntaxKind.Identifier */); context.enableSubstitution(297 /* SyntaxKind.ShorthandPropertyAssignment */); // We need to be notified when entering and exiting namespaces. context.enableEmitNotification(261 /* SyntaxKind.ModuleDeclaration */); } } function isTransformedModuleDeclaration(node) { return ts.getOriginalNode(node).kind === 261 /* SyntaxKind.ModuleDeclaration */; } function isTransformedEnumDeclaration(node) { return ts.getOriginalNode(node).kind === 260 /* SyntaxKind.EnumDeclaration */; } /** * Hook for node emit. * * @param hint A hint as to the intended usage of the node. * @param node The node to emit. * @param emit A callback used to emit the node in the printer. */ function onEmitNode(hint, node, emitCallback) { var savedApplicableSubstitutions = applicableSubstitutions; var savedCurrentSourceFile = currentSourceFile; if (ts.isSourceFile(node)) { currentSourceFile = node; } if (enabledSubstitutions & 2 /* TypeScriptSubstitutionFlags.NamespaceExports */ && isTransformedModuleDeclaration(node)) { applicableSubstitutions |= 2 /* TypeScriptSubstitutionFlags.NamespaceExports */; } if (enabledSubstitutions & 8 /* TypeScriptSubstitutionFlags.NonQualifiedEnumMembers */ && isTransformedEnumDeclaration(node)) { applicableSubstitutions |= 8 /* TypeScriptSubstitutionFlags.NonQualifiedEnumMembers */; } previousOnEmitNode(hint, node, emitCallback); applicableSubstitutions = savedApplicableSubstitutions; currentSourceFile = savedCurrentSourceFile; } /** * Hooks node substitutions. * * @param hint A hint as to the intended usage of the node. * @param node The node to substitute. */ function onSubstituteNode(hint, node) { node = previousOnSubstituteNode(hint, node); if (hint === 1 /* EmitHint.Expression */) { return substituteExpression(node); } else if (ts.isShorthandPropertyAssignment(node)) { return substituteShorthandPropertyAssignment(node); } return node; } function substituteShorthandPropertyAssignment(node) { if (enabledSubstitutions & 2 /* TypeScriptSubstitutionFlags.NamespaceExports */) { var name = node.name; var exportedName = trySubstituteNamespaceExportedName(name); if (exportedName) { // A shorthand property with an assignment initializer is probably part of a // destructuring assignment if (node.objectAssignmentInitializer) { var initializer = factory.createAssignment(exportedName, node.objectAssignmentInitializer); return ts.setTextRange(factory.createPropertyAssignment(name, initializer), node); } return ts.setTextRange(factory.createPropertyAssignment(name, exportedName), node); } } return node; } function substituteExpression(node) { switch (node.kind) { case 79 /* SyntaxKind.Identifier */: return substituteExpressionIdentifier(node); case 206 /* SyntaxKind.PropertyAccessExpression */: return substitutePropertyAccessExpression(node); case 207 /* SyntaxKind.ElementAccessExpression */: return substituteElementAccessExpression(node); } return node; } function substituteExpressionIdentifier(node) { return trySubstituteClassAlias(node) || trySubstituteNamespaceExportedName(node) || node; } function trySubstituteClassAlias(node) { if (enabledSubstitutions & 1 /* TypeScriptSubstitutionFlags.ClassAliases */) { if (resolver.getNodeCheckFlags(node) & 33554432 /* NodeCheckFlags.ConstructorReferenceInClass */) { // Due to the emit for class decorators, any reference to the class from inside of the class body // must instead be rewritten to point to a temporary variable to avoid issues with the double-bind // behavior of class names in ES6. // Also, when emitting statics for class expressions, we must substitute a class alias for // constructor references in static property initializers. var declaration = resolver.getReferencedValueDeclaration(node); if (declaration) { var classAlias = classAliases[declaration.id]; // TODO: GH#18217 if (classAlias) { var clone_2 = factory.cloneNode(classAlias); ts.setSourceMapRange(clone_2, node); ts.setCommentRange(clone_2, node); return clone_2; } } } } return undefined; } function trySubstituteNamespaceExportedName(node) { // If this is explicitly a local name, do not substitute. if (enabledSubstitutions & applicableSubstitutions && !ts.isGeneratedIdentifier(node) && !ts.isLocalName(node)) { // If we are nested within a namespace declaration, we may need to qualifiy // an identifier that is exported from a merged namespace. var container = resolver.getReferencedExportContainer(node, /*prefixLocals*/ false); if (container && container.kind !== 305 /* SyntaxKind.SourceFile */) { var substitute = (applicableSubstitutions & 2 /* TypeScriptSubstitutionFlags.NamespaceExports */ && container.kind === 261 /* SyntaxKind.ModuleDeclaration */) || (applicableSubstitutions & 8 /* TypeScriptSubstitutionFlags.NonQualifiedEnumMembers */ && container.kind === 260 /* SyntaxKind.EnumDeclaration */); if (substitute) { return ts.setTextRange(factory.createPropertyAccessExpression(factory.getGeneratedNameForNode(container), node), /*location*/ node); } } } return undefined; } function substitutePropertyAccessExpression(node) { return substituteConstantValue(node); } function substituteElementAccessExpression(node) { return substituteConstantValue(node); } function safeMultiLineComment(value) { return value.replace(/\*\//g, "*_/"); } function substituteConstantValue(node) { var constantValue = tryGetConstEnumValue(node); if (constantValue !== undefined) { // track the constant value on the node for the printer in needsDotDotForPropertyAccess ts.setConstantValue(node, constantValue); var substitute = typeof constantValue === "string" ? factory.createStringLiteral(constantValue) : factory.createNumericLiteral(constantValue); if (!compilerOptions.removeComments) { var originalNode = ts.getOriginalNode(node, ts.isAccessExpression); ts.addSyntheticTrailingComment(substitute, 3 /* SyntaxKind.MultiLineCommentTrivia */, " ".concat(safeMultiLineComment(ts.getTextOfNode(originalNode)), " ")); } return substitute; } return node; } function tryGetConstEnumValue(node) { if (compilerOptions.isolatedModules) { return undefined; } return ts.isPropertyAccessExpression(node) || ts.isElementAccessExpression(node) ? resolver.getConstantValue(node) : undefined; } function shouldEmitAliasDeclaration(node) { return compilerOptions.preserveValueImports ? resolver.isValueAliasDeclaration(node) : resolver.isReferencedAliasDeclaration(node); } } ts.transformTypeScript = transformTypeScript; })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { var ClassPropertySubstitutionFlags; (function (ClassPropertySubstitutionFlags) { /** * Enables substitutions for class expressions with static fields * which have initializers that reference the class name. */ ClassPropertySubstitutionFlags[ClassPropertySubstitutionFlags["ClassAliases"] = 1] = "ClassAliases"; /** * Enables substitutions for class expressions with static fields * which have initializers that reference the 'this' or 'super'. */ ClassPropertySubstitutionFlags[ClassPropertySubstitutionFlags["ClassStaticThisOrSuperReference"] = 2] = "ClassStaticThisOrSuperReference"; })(ClassPropertySubstitutionFlags || (ClassPropertySubstitutionFlags = {})); var PrivateIdentifierKind; (function (PrivateIdentifierKind) { PrivateIdentifierKind["Field"] = "f"; PrivateIdentifierKind["Method"] = "m"; PrivateIdentifierKind["Accessor"] = "a"; })(PrivateIdentifierKind = ts.PrivateIdentifierKind || (ts.PrivateIdentifierKind = {})); var ClassFacts; (function (ClassFacts) { ClassFacts[ClassFacts["None"] = 0] = "None"; ClassFacts[ClassFacts["ClassWasDecorated"] = 1] = "ClassWasDecorated"; ClassFacts[ClassFacts["NeedsClassConstructorReference"] = 2] = "NeedsClassConstructorReference"; ClassFacts[ClassFacts["NeedsClassSuperReference"] = 4] = "NeedsClassSuperReference"; ClassFacts[ClassFacts["NeedsSubstitutionForThisInClassStaticField"] = 8] = "NeedsSubstitutionForThisInClassStaticField"; })(ClassFacts || (ClassFacts = {})); /** * Transforms ECMAScript Class Syntax. * TypeScript parameter property syntax is transformed in the TypeScript transformer. * For now, this transforms public field declarations using TypeScript class semantics, * where declarations are elided and initializers are transformed as assignments in the constructor. * When --useDefineForClassFields is on, this transforms to ECMAScript semantics, with Object.defineProperty. */ function transformClassFields(context) { var factory = context.factory, hoistVariableDeclaration = context.hoistVariableDeclaration, endLexicalEnvironment = context.endLexicalEnvironment, startLexicalEnvironment = context.startLexicalEnvironment, resumeLexicalEnvironment = context.resumeLexicalEnvironment, addBlockScopedVariable = context.addBlockScopedVariable; var resolver = context.getEmitResolver(); var compilerOptions = context.getCompilerOptions(); var languageVersion = ts.getEmitScriptTarget(compilerOptions); var useDefineForClassFields = ts.getUseDefineForClassFields(compilerOptions); var shouldTransformPrivateElementsOrClassStaticBlocks = languageVersion < 9 /* ScriptTarget.ES2022 */; // We need to transform `this` in a static initializer into a reference to the class // when targeting < ES2022 since the assignment will be moved outside of the class body. var shouldTransformThisInStaticInitializers = languageVersion < 9 /* ScriptTarget.ES2022 */; // We don't need to transform `super` property access when targeting ES5, ES3 because // the es2015 transformation handles those. var shouldTransformSuperInStaticInitializers = shouldTransformThisInStaticInitializers && languageVersion >= 2 /* ScriptTarget.ES2015 */; var previousOnSubstituteNode = context.onSubstituteNode; context.onSubstituteNode = onSubstituteNode; var previousOnEmitNode = context.onEmitNode; context.onEmitNode = onEmitNode; var enabledSubstitutions; var classAliases; /** * Tracks what computed name expressions originating from elided names must be inlined * at the next execution site, in document order */ var pendingExpressions; /** * Tracks what computed name expression statements and static property initializers must be * emitted at the next execution site, in document order (for decorated classes). */ var pendingStatements; var classLexicalEnvironmentStack = []; var classLexicalEnvironmentMap = new ts.Map(); var currentClassLexicalEnvironment; var currentComputedPropertyNameClassLexicalEnvironment; var currentStaticPropertyDeclarationOrStaticBlock; return ts.chainBundle(context, transformSourceFile); function transformSourceFile(node) { var options = context.getCompilerOptions(); if (node.isDeclarationFile || useDefineForClassFields && ts.getEmitScriptTarget(options) >= 9 /* ScriptTarget.ES2022 */) { return node; } var visited = ts.visitEachChild(node, visitor, context); ts.addEmitHelpers(visited, context.readEmitHelpers()); return visited; } function visitorWorker(node, valueIsDiscarded) { if (node.transformFlags & 8388608 /* TransformFlags.ContainsClassFields */) { switch (node.kind) { case 226 /* SyntaxKind.ClassExpression */: case 257 /* SyntaxKind.ClassDeclaration */: return visitClassLike(node); case 167 /* SyntaxKind.PropertyDeclaration */: return visitPropertyDeclaration(node); case 237 /* SyntaxKind.VariableStatement */: return visitVariableStatement(node); case 80 /* SyntaxKind.PrivateIdentifier */: return visitPrivateIdentifier(node); case 170 /* SyntaxKind.ClassStaticBlockDeclaration */: return visitClassStaticBlockDeclaration(node); } } if (node.transformFlags & 8388608 /* TransformFlags.ContainsClassFields */ || node.transformFlags & 33554432 /* TransformFlags.ContainsLexicalSuper */ && shouldTransformSuperInStaticInitializers && currentStaticPropertyDeclarationOrStaticBlock && currentClassLexicalEnvironment) { switch (node.kind) { case 219 /* SyntaxKind.PrefixUnaryExpression */: case 220 /* SyntaxKind.PostfixUnaryExpression */: return visitPreOrPostfixUnaryExpression(node, valueIsDiscarded); case 221 /* SyntaxKind.BinaryExpression */: return visitBinaryExpression(node, valueIsDiscarded); case 208 /* SyntaxKind.CallExpression */: return visitCallExpression(node); case 210 /* SyntaxKind.TaggedTemplateExpression */: return visitTaggedTemplateExpression(node); case 206 /* SyntaxKind.PropertyAccessExpression */: return visitPropertyAccessExpression(node); case 207 /* SyntaxKind.ElementAccessExpression */: return visitElementAccessExpression(node); case 238 /* SyntaxKind.ExpressionStatement */: return visitExpressionStatement(node); case 242 /* SyntaxKind.ForStatement */: return visitForStatement(node); case 256 /* SyntaxKind.FunctionDeclaration */: case 213 /* SyntaxKind.FunctionExpression */: case 171 /* SyntaxKind.Constructor */: case 169 /* SyntaxKind.MethodDeclaration */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: { var savedCurrentStaticPropertyDeclarationOrStaticBlock = currentStaticPropertyDeclarationOrStaticBlock; currentStaticPropertyDeclarationOrStaticBlock = undefined; var result = ts.visitEachChild(node, visitor, context); currentStaticPropertyDeclarationOrStaticBlock = savedCurrentStaticPropertyDeclarationOrStaticBlock; return result; } } } return ts.visitEachChild(node, visitor, context); } function discardedValueVisitor(node) { return visitorWorker(node, /*valueIsDiscarded*/ true); } function visitor(node) { return visitorWorker(node, /*valueIsDiscarded*/ false); } function heritageClauseVisitor(node) { switch (node.kind) { case 291 /* SyntaxKind.HeritageClause */: return ts.visitEachChild(node, heritageClauseVisitor, context); case 228 /* SyntaxKind.ExpressionWithTypeArguments */: return visitExpressionWithTypeArguments(node); } return visitor(node); } function visitorDestructuringTarget(node) { switch (node.kind) { case 205 /* SyntaxKind.ObjectLiteralExpression */: case 204 /* SyntaxKind.ArrayLiteralExpression */: return visitAssignmentPattern(node); default: return visitor(node); } } /** * If we visit a private name, this means it is an undeclared private name. * Replace it with an empty identifier to indicate a problem with the code, * unless we are in a statement position - otherwise this will not trigger * a SyntaxError. */ function visitPrivateIdentifier(node) { if (!shouldTransformPrivateElementsOrClassStaticBlocks) { return node; } if (ts.isStatement(node.parent)) { return node; } return ts.setOriginalNode(factory.createIdentifier(""), node); } /** * Visits `#id in expr` */ function visitPrivateIdentifierInInExpression(node) { if (!shouldTransformPrivateElementsOrClassStaticBlocks) { return node; } var privId = node.left; ts.Debug.assertNode(privId, ts.isPrivateIdentifier); ts.Debug.assert(node.operatorToken.kind === 101 /* SyntaxKind.InKeyword */); var info = accessPrivateIdentifier(privId); if (info) { var receiver = ts.visitNode(node.right, visitor, ts.isExpression); return ts.setOriginalNode(context.getEmitHelperFactory().createClassPrivateFieldInHelper(info.brandCheckIdentifier, receiver), node); } // Private name has not been declared. Subsequent transformers will handle this error return ts.visitEachChild(node, visitor, context); } /** * Visits the members of a class that has fields. * * @param node The node to visit. */ function classElementVisitor(node) { switch (node.kind) { case 171 /* SyntaxKind.Constructor */: // Constructors for classes using class fields are transformed in // `visitClassDeclaration` or `visitClassExpression`. return undefined; case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 169 /* SyntaxKind.MethodDeclaration */: return visitMethodOrAccessorDeclaration(node); case 167 /* SyntaxKind.PropertyDeclaration */: return visitPropertyDeclaration(node); case 162 /* SyntaxKind.ComputedPropertyName */: return visitComputedPropertyName(node); case 234 /* SyntaxKind.SemicolonClassElement */: return node; default: return visitor(node); } } function visitVariableStatement(node) { var savedPendingStatements = pendingStatements; pendingStatements = []; var visitedNode = ts.visitEachChild(node, visitor, context); var statement = ts.some(pendingStatements) ? __spreadArray([visitedNode], pendingStatements, true) : visitedNode; pendingStatements = savedPendingStatements; return statement; } function visitComputedPropertyName(name) { var node = ts.visitEachChild(name, visitor, context); if (ts.some(pendingExpressions)) { var expressions = pendingExpressions; expressions.push(node.expression); pendingExpressions = []; node = factory.updateComputedPropertyName(node, factory.inlineExpressions(expressions)); } return node; } function visitMethodOrAccessorDeclaration(node) { ts.Debug.assert(!ts.some(node.decorators)); if (!shouldTransformPrivateElementsOrClassStaticBlocks || !ts.isPrivateIdentifier(node.name)) { return ts.visitEachChild(node, classElementVisitor, context); } // leave invalid code untransformed var info = accessPrivateIdentifier(node.name); ts.Debug.assert(info, "Undeclared private name for property declaration."); if (!info.isValid) { return node; } var functionName = getHoistedFunctionName(node); if (functionName) { getPendingExpressions().push(factory.createAssignment(functionName, factory.createFunctionExpression(ts.filter(node.modifiers, function (m) { return !ts.isStaticModifier(m); }), node.asteriskToken, functionName, /* typeParameters */ undefined, ts.visitParameterList(node.parameters, classElementVisitor, context), /* type */ undefined, ts.visitFunctionBody(node.body, classElementVisitor, context)))); } // remove method declaration from class return undefined; } function getHoistedFunctionName(node) { ts.Debug.assert(ts.isPrivateIdentifier(node.name)); var info = accessPrivateIdentifier(node.name); ts.Debug.assert(info, "Undeclared private name for property declaration."); if (info.kind === "m" /* PrivateIdentifierKind.Method */) { return info.methodName; } if (info.kind === "a" /* PrivateIdentifierKind.Accessor */) { if (ts.isGetAccessor(node)) { return info.getterName; } if (ts.isSetAccessor(node)) { return info.setterName; } } } function visitPropertyDeclaration(node) { ts.Debug.assert(!ts.some(node.decorators)); if (ts.isPrivateIdentifier(node.name)) { if (!shouldTransformPrivateElementsOrClassStaticBlocks) { if (ts.isStatic(node)) { // static fields are left as is return ts.visitEachChild(node, visitor, context); } // Initializer is elided as the field is initialized in transformConstructor. return factory.updatePropertyDeclaration(node, /*decorators*/ undefined, ts.visitNodes(node.modifiers, visitor, ts.isModifier), node.name, /*questionOrExclamationToken*/ undefined, /*type*/ undefined, /*initializer*/ undefined); } // leave invalid code untransformed var info = accessPrivateIdentifier(node.name); ts.Debug.assert(info, "Undeclared private name for property declaration."); if (!info.isValid) { return node; } } // Create a temporary variable to store a computed property name (if necessary). // If it's not inlineable, then we emit an expression after the class which assigns // the property name to the temporary variable. var expr = getPropertyNameExpressionIfNeeded(node.name, !!node.initializer || useDefineForClassFields); if (expr && !ts.isSimpleInlineableExpression(expr)) { getPendingExpressions().push(expr); } if (ts.isStatic(node) && !shouldTransformPrivateElementsOrClassStaticBlocks && !useDefineForClassFields) { var initializerStatement = transformPropertyOrClassStaticBlock(node, factory.createThis()); if (initializerStatement) { var staticBlock = factory.createClassStaticBlockDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, factory.createBlock([initializerStatement])); ts.setOriginalNode(staticBlock, node); ts.setCommentRange(staticBlock, node); // Set the comment range for the statement to an empty synthetic range // and drop synthetic comments from the statement to avoid printing them twice. ts.setCommentRange(initializerStatement, { pos: -1, end: -1 }); ts.setSyntheticLeadingComments(initializerStatement, undefined); ts.setSyntheticTrailingComments(initializerStatement, undefined); return staticBlock; } } return undefined; } function createPrivateIdentifierAccess(info, receiver) { return createPrivateIdentifierAccessHelper(info, ts.visitNode(receiver, visitor, ts.isExpression)); } function createPrivateIdentifierAccessHelper(info, receiver) { ts.setCommentRange(receiver, ts.moveRangePos(receiver, -1)); switch (info.kind) { case "a" /* PrivateIdentifierKind.Accessor */: return context.getEmitHelperFactory().createClassPrivateFieldGetHelper(receiver, info.brandCheckIdentifier, info.kind, info.getterName); case "m" /* PrivateIdentifierKind.Method */: return context.getEmitHelperFactory().createClassPrivateFieldGetHelper(receiver, info.brandCheckIdentifier, info.kind, info.methodName); case "f" /* PrivateIdentifierKind.Field */: return context.getEmitHelperFactory().createClassPrivateFieldGetHelper(receiver, info.brandCheckIdentifier, info.kind, info.variableName); default: ts.Debug.assertNever(info, "Unknown private element type"); } } function visitPropertyAccessExpression(node) { if (shouldTransformPrivateElementsOrClassStaticBlocks && ts.isPrivateIdentifier(node.name)) { var privateIdentifierInfo = accessPrivateIdentifier(node.name); if (privateIdentifierInfo) { return ts.setTextRange(ts.setOriginalNode(createPrivateIdentifierAccess(privateIdentifierInfo, node.expression), node), node); } } if (shouldTransformSuperInStaticInitializers && ts.isSuperProperty(node) && ts.isIdentifier(node.name) && currentStaticPropertyDeclarationOrStaticBlock && currentClassLexicalEnvironment) { var classConstructor = currentClassLexicalEnvironment.classConstructor, superClassReference = currentClassLexicalEnvironment.superClassReference, facts = currentClassLexicalEnvironment.facts; if (facts & 1 /* ClassFacts.ClassWasDecorated */) { return visitInvalidSuperProperty(node); } if (classConstructor && superClassReference) { // converts `super.x` into `Reflect.get(_baseTemp, "x", _classTemp)` var superProperty = factory.createReflectGetCall(superClassReference, factory.createStringLiteralFromNode(node.name), classConstructor); ts.setOriginalNode(superProperty, node.expression); ts.setTextRange(superProperty, node.expression); return superProperty; } } return ts.visitEachChild(node, visitor, context); } function visitElementAccessExpression(node) { if (shouldTransformSuperInStaticInitializers && ts.isSuperProperty(node) && currentStaticPropertyDeclarationOrStaticBlock && currentClassLexicalEnvironment) { var classConstructor = currentClassLexicalEnvironment.classConstructor, superClassReference = currentClassLexicalEnvironment.superClassReference, facts = currentClassLexicalEnvironment.facts; if (facts & 1 /* ClassFacts.ClassWasDecorated */) { return visitInvalidSuperProperty(node); } if (classConstructor && superClassReference) { // converts `super[x]` into `Reflect.get(_baseTemp, x, _classTemp)` var superProperty = factory.createReflectGetCall(superClassReference, ts.visitNode(node.argumentExpression, visitor, ts.isExpression), classConstructor); ts.setOriginalNode(superProperty, node.expression); ts.setTextRange(superProperty, node.expression); return superProperty; } } return ts.visitEachChild(node, visitor, context); } function visitPreOrPostfixUnaryExpression(node, valueIsDiscarded) { if (node.operator === 45 /* SyntaxKind.PlusPlusToken */ || node.operator === 46 /* SyntaxKind.MinusMinusToken */) { if (shouldTransformPrivateElementsOrClassStaticBlocks && ts.isPrivateIdentifierPropertyAccessExpression(node.operand)) { var info = void 0; if (info = accessPrivateIdentifier(node.operand.name)) { var receiver = ts.visitNode(node.operand.expression, visitor, ts.isExpression); var _a = createCopiableReceiverExpr(receiver), readExpression = _a.readExpression, initializeExpression = _a.initializeExpression; var expression = createPrivateIdentifierAccess(info, readExpression); var temp = ts.isPrefixUnaryExpression(node) || valueIsDiscarded ? undefined : factory.createTempVariable(hoistVariableDeclaration); expression = ts.expandPreOrPostfixIncrementOrDecrementExpression(factory, node, expression, hoistVariableDeclaration, temp); expression = createPrivateIdentifierAssignment(info, initializeExpression || readExpression, expression, 63 /* SyntaxKind.EqualsToken */); ts.setOriginalNode(expression, node); ts.setTextRange(expression, node); if (temp) { expression = factory.createComma(expression, temp); ts.setTextRange(expression, node); } return expression; } } else if (shouldTransformSuperInStaticInitializers && ts.isSuperProperty(node.operand) && currentStaticPropertyDeclarationOrStaticBlock && currentClassLexicalEnvironment) { // converts `++super.a` into `(Reflect.set(_baseTemp, "a", (_a = Reflect.get(_baseTemp, "a", _classTemp), _b = ++_a), _classTemp), _b)` // converts `++super[f()]` into `(Reflect.set(_baseTemp, _a = f(), (_b = Reflect.get(_baseTemp, _a, _classTemp), _c = ++_b), _classTemp), _c)` // converts `--super.a` into `(Reflect.set(_baseTemp, "a", (_a = Reflect.get(_baseTemp, "a", _classTemp), _b = --_a), _classTemp), _b)` // converts `--super[f()]` into `(Reflect.set(_baseTemp, _a = f(), (_b = Reflect.get(_baseTemp, _a, _classTemp), _c = --_b), _classTemp), _c)` // converts `super.a++` into `(Reflect.set(_baseTemp, "a", (_a = Reflect.get(_baseTemp, "a", _classTemp), _b = _a++), _classTemp), _b)` // converts `super[f()]++` into `(Reflect.set(_baseTemp, _a = f(), (_b = Reflect.get(_baseTemp, _a, _classTemp), _c = _b++), _classTemp), _c)` // converts `super.a--` into `(Reflect.set(_baseTemp, "a", (_a = Reflect.get(_baseTemp, "a", _classTemp), _b = _a--), _classTemp), _b)` // converts `super[f()]--` into `(Reflect.set(_baseTemp, _a = f(), (_b = Reflect.get(_baseTemp, _a, _classTemp), _c = _b--), _classTemp), _c)` var classConstructor = currentClassLexicalEnvironment.classConstructor, superClassReference = currentClassLexicalEnvironment.superClassReference, facts = currentClassLexicalEnvironment.facts; if (facts & 1 /* ClassFacts.ClassWasDecorated */) { var operand = visitInvalidSuperProperty(node.operand); return ts.isPrefixUnaryExpression(node) ? factory.updatePrefixUnaryExpression(node, operand) : factory.updatePostfixUnaryExpression(node, operand); } if (classConstructor && superClassReference) { var setterName = void 0; var getterName = void 0; if (ts.isPropertyAccessExpression(node.operand)) { if (ts.isIdentifier(node.operand.name)) { getterName = setterName = factory.createStringLiteralFromNode(node.operand.name); } } else { if (ts.isSimpleInlineableExpression(node.operand.argumentExpression)) { getterName = setterName = node.operand.argumentExpression; } else { getterName = factory.createTempVariable(hoistVariableDeclaration); setterName = factory.createAssignment(getterName, ts.visitNode(node.operand.argumentExpression, visitor, ts.isExpression)); } } if (setterName && getterName) { var expression = factory.createReflectGetCall(superClassReference, getterName, classConstructor); ts.setTextRange(expression, node.operand); var temp = valueIsDiscarded ? undefined : factory.createTempVariable(hoistVariableDeclaration); expression = ts.expandPreOrPostfixIncrementOrDecrementExpression(factory, node, expression, hoistVariableDeclaration, temp); expression = factory.createReflectSetCall(superClassReference, setterName, expression, classConstructor); ts.setOriginalNode(expression, node); ts.setTextRange(expression, node); if (temp) { expression = factory.createComma(expression, temp); ts.setTextRange(expression, node); } return expression; } } } } return ts.visitEachChild(node, visitor, context); } function visitForStatement(node) { return factory.updateForStatement(node, ts.visitNode(node.initializer, discardedValueVisitor, ts.isForInitializer), ts.visitNode(node.condition, visitor, ts.isExpression), ts.visitNode(node.incrementor, discardedValueVisitor, ts.isExpression), ts.visitIterationBody(node.statement, visitor, context)); } function visitExpressionStatement(node) { return factory.updateExpressionStatement(node, ts.visitNode(node.expression, discardedValueVisitor, ts.isExpression)); } function createCopiableReceiverExpr(receiver) { var clone = ts.nodeIsSynthesized(receiver) ? receiver : factory.cloneNode(receiver); if (ts.isSimpleInlineableExpression(receiver)) { return { readExpression: clone, initializeExpression: undefined }; } var readExpression = factory.createTempVariable(hoistVariableDeclaration); var initializeExpression = factory.createAssignment(readExpression, clone); return { readExpression: readExpression, initializeExpression: initializeExpression }; } function visitCallExpression(node) { if (shouldTransformPrivateElementsOrClassStaticBlocks && ts.isPrivateIdentifierPropertyAccessExpression(node.expression)) { // Transform call expressions of private names to properly bind the `this` parameter. var _a = factory.createCallBinding(node.expression, hoistVariableDeclaration, languageVersion), thisArg = _a.thisArg, target = _a.target; if (ts.isCallChain(node)) { return factory.updateCallChain(node, factory.createPropertyAccessChain(ts.visitNode(target, visitor), node.questionDotToken, "call"), /*questionDotToken*/ undefined, /*typeArguments*/ undefined, __spreadArray([ts.visitNode(thisArg, visitor, ts.isExpression)], ts.visitNodes(node.arguments, visitor, ts.isExpression), true)); } return factory.updateCallExpression(node, factory.createPropertyAccessExpression(ts.visitNode(target, visitor), "call"), /*typeArguments*/ undefined, __spreadArray([ts.visitNode(thisArg, visitor, ts.isExpression)], ts.visitNodes(node.arguments, visitor, ts.isExpression), true)); } if (shouldTransformSuperInStaticInitializers && ts.isSuperProperty(node.expression) && currentStaticPropertyDeclarationOrStaticBlock && (currentClassLexicalEnvironment === null || currentClassLexicalEnvironment === void 0 ? void 0 : currentClassLexicalEnvironment.classConstructor)) { // converts `super.f(...)` into `Reflect.get(_baseTemp, "f", _classTemp).call(_classTemp, ...)` var invocation = factory.createFunctionCallCall(ts.visitNode(node.expression, visitor, ts.isExpression), currentClassLexicalEnvironment.classConstructor, ts.visitNodes(node.arguments, visitor, ts.isExpression)); ts.setOriginalNode(invocation, node); ts.setTextRange(invocation, node); return invocation; } return ts.visitEachChild(node, visitor, context); } function visitTaggedTemplateExpression(node) { if (shouldTransformPrivateElementsOrClassStaticBlocks && ts.isPrivateIdentifierPropertyAccessExpression(node.tag)) { // Bind the `this` correctly for tagged template literals when the tag is a private identifier property access. var _a = factory.createCallBinding(node.tag, hoistVariableDeclaration, languageVersion), thisArg = _a.thisArg, target = _a.target; return factory.updateTaggedTemplateExpression(node, factory.createCallExpression(factory.createPropertyAccessExpression(ts.visitNode(target, visitor), "bind"), /*typeArguments*/ undefined, [ts.visitNode(thisArg, visitor, ts.isExpression)]), /*typeArguments*/ undefined, ts.visitNode(node.template, visitor, ts.isTemplateLiteral)); } if (shouldTransformSuperInStaticInitializers && ts.isSuperProperty(node.tag) && currentStaticPropertyDeclarationOrStaticBlock && (currentClassLexicalEnvironment === null || currentClassLexicalEnvironment === void 0 ? void 0 : currentClassLexicalEnvironment.classConstructor)) { // converts `` super.f`x` `` into `` Reflect.get(_baseTemp, "f", _classTemp).bind(_classTemp)`x` `` var invocation = factory.createFunctionBindCall(ts.visitNode(node.tag, visitor, ts.isExpression), currentClassLexicalEnvironment.classConstructor, []); ts.setOriginalNode(invocation, node); ts.setTextRange(invocation, node); return factory.updateTaggedTemplateExpression(node, invocation, /*typeArguments*/ undefined, ts.visitNode(node.template, visitor, ts.isTemplateLiteral)); } return ts.visitEachChild(node, visitor, context); } function transformClassStaticBlockDeclaration(node) { if (shouldTransformPrivateElementsOrClassStaticBlocks) { if (currentClassLexicalEnvironment) { classLexicalEnvironmentMap.set(ts.getOriginalNodeId(node), currentClassLexicalEnvironment); } startLexicalEnvironment(); var savedCurrentStaticPropertyDeclarationOrStaticBlock = currentStaticPropertyDeclarationOrStaticBlock; currentStaticPropertyDeclarationOrStaticBlock = node; var statements = ts.visitNodes(node.body.statements, visitor, ts.isStatement); statements = factory.mergeLexicalEnvironment(statements, endLexicalEnvironment()); currentStaticPropertyDeclarationOrStaticBlock = savedCurrentStaticPropertyDeclarationOrStaticBlock; var iife = factory.createImmediatelyInvokedArrowFunction(statements); ts.setOriginalNode(iife, node); ts.setTextRange(iife, node); ts.addEmitFlags(iife, 2 /* EmitFlags.AdviseOnEmitNode */); return iife; } } function visitBinaryExpression(node, valueIsDiscarded) { if (ts.isDestructuringAssignment(node)) { var savedPendingExpressions = pendingExpressions; pendingExpressions = undefined; node = factory.updateBinaryExpression(node, ts.visitNode(node.left, visitorDestructuringTarget), node.operatorToken, ts.visitNode(node.right, visitor)); var expr = ts.some(pendingExpressions) ? factory.inlineExpressions(ts.compact(__spreadArray(__spreadArray([], pendingExpressions, true), [node], false))) : node; pendingExpressions = savedPendingExpressions; return expr; } if (ts.isAssignmentExpression(node)) { if (shouldTransformPrivateElementsOrClassStaticBlocks && ts.isPrivateIdentifierPropertyAccessExpression(node.left)) { var info = accessPrivateIdentifier(node.left.name); if (info) { return ts.setTextRange(ts.setOriginalNode(createPrivateIdentifierAssignment(info, node.left.expression, node.right, node.operatorToken.kind), node), node); } } else if (shouldTransformSuperInStaticInitializers && ts.isSuperProperty(node.left) && currentStaticPropertyDeclarationOrStaticBlock && currentClassLexicalEnvironment) { var classConstructor = currentClassLexicalEnvironment.classConstructor, superClassReference = currentClassLexicalEnvironment.superClassReference, facts = currentClassLexicalEnvironment.facts; if (facts & 1 /* ClassFacts.ClassWasDecorated */) { return factory.updateBinaryExpression(node, visitInvalidSuperProperty(node.left), node.operatorToken, ts.visitNode(node.right, visitor, ts.isExpression)); } if (classConstructor && superClassReference) { var setterName = ts.isElementAccessExpression(node.left) ? ts.visitNode(node.left.argumentExpression, visitor, ts.isExpression) : ts.isIdentifier(node.left.name) ? factory.createStringLiteralFromNode(node.left.name) : undefined; if (setterName) { // converts `super.x = 1` into `(Reflect.set(_baseTemp, "x", _a = 1, _classTemp), _a)` // converts `super[f()] = 1` into `(Reflect.set(_baseTemp, f(), _a = 1, _classTemp), _a)` // converts `super.x += 1` into `(Reflect.set(_baseTemp, "x", _a = Reflect.get(_baseTemp, "x", _classtemp) + 1, _classTemp), _a)` // converts `super[f()] += 1` into `(Reflect.set(_baseTemp, _a = f(), _b = Reflect.get(_baseTemp, _a, _classtemp) + 1, _classTemp), _b)` var expression = ts.visitNode(node.right, visitor, ts.isExpression); if (ts.isCompoundAssignment(node.operatorToken.kind)) { var getterName = setterName; if (!ts.isSimpleInlineableExpression(setterName)) { getterName = factory.createTempVariable(hoistVariableDeclaration); setterName = factory.createAssignment(getterName, setterName); } var superPropertyGet = factory.createReflectGetCall(superClassReference, getterName, classConstructor); ts.setOriginalNode(superPropertyGet, node.left); ts.setTextRange(superPropertyGet, node.left); expression = factory.createBinaryExpression(superPropertyGet, ts.getNonAssignmentOperatorForCompoundAssignment(node.operatorToken.kind), expression); ts.setTextRange(expression, node); } var temp = valueIsDiscarded ? undefined : factory.createTempVariable(hoistVariableDeclaration); if (temp) { expression = factory.createAssignment(temp, expression); ts.setTextRange(temp, node); } expression = factory.createReflectSetCall(superClassReference, setterName, expression, classConstructor); ts.setOriginalNode(expression, node); ts.setTextRange(expression, node); if (temp) { expression = factory.createComma(expression, temp); ts.setTextRange(expression, node); } return expression; } } } } if (node.operatorToken.kind === 101 /* SyntaxKind.InKeyword */ && ts.isPrivateIdentifier(node.left)) { return visitPrivateIdentifierInInExpression(node); } return ts.visitEachChild(node, visitor, context); } function createPrivateIdentifierAssignment(info, receiver, right, operator) { receiver = ts.visitNode(receiver, visitor, ts.isExpression); right = ts.visitNode(right, visitor, ts.isExpression); if (ts.isCompoundAssignment(operator)) { var _a = createCopiableReceiverExpr(receiver), readExpression = _a.readExpression, initializeExpression = _a.initializeExpression; receiver = initializeExpression || readExpression; right = factory.createBinaryExpression(createPrivateIdentifierAccessHelper(info, readExpression), ts.getNonAssignmentOperatorForCompoundAssignment(operator), right); } ts.setCommentRange(receiver, ts.moveRangePos(receiver, -1)); switch (info.kind) { case "a" /* PrivateIdentifierKind.Accessor */: return context.getEmitHelperFactory().createClassPrivateFieldSetHelper(receiver, info.brandCheckIdentifier, right, info.kind, info.setterName); case "m" /* PrivateIdentifierKind.Method */: return context.getEmitHelperFactory().createClassPrivateFieldSetHelper(receiver, info.brandCheckIdentifier, right, info.kind, /* f */ undefined); case "f" /* PrivateIdentifierKind.Field */: return context.getEmitHelperFactory().createClassPrivateFieldSetHelper(receiver, info.brandCheckIdentifier, right, info.kind, info.variableName); default: ts.Debug.assertNever(info, "Unknown private element type"); } } /** * Set up the environment for a class. */ function visitClassLike(node) { if (!ts.forEach(node.members, doesClassElementNeedTransform)) { return ts.visitEachChild(node, visitor, context); } var savedPendingExpressions = pendingExpressions; pendingExpressions = undefined; startClassLexicalEnvironment(); if (shouldTransformPrivateElementsOrClassStaticBlocks) { var name = ts.getNameOfDeclaration(node); if (name && ts.isIdentifier(name)) { getPrivateIdentifierEnvironment().className = ts.idText(name); } var privateInstanceMethodsAndAccessors = getPrivateInstanceMethodsAndAccessors(node); if (ts.some(privateInstanceMethodsAndAccessors)) { getPrivateIdentifierEnvironment().weakSetName = createHoistedVariableForClass("instances", privateInstanceMethodsAndAccessors[0].name); } } var result = ts.isClassDeclaration(node) ? visitClassDeclaration(node) : visitClassExpression(node); endClassLexicalEnvironment(); pendingExpressions = savedPendingExpressions; return result; } function doesClassElementNeedTransform(node) { return ts.isPropertyDeclaration(node) || ts.isClassStaticBlockDeclaration(node) || (shouldTransformPrivateElementsOrClassStaticBlocks && node.name && ts.isPrivateIdentifier(node.name)); } function getPrivateInstanceMethodsAndAccessors(node) { return ts.filter(node.members, ts.isNonStaticMethodOrAccessorWithPrivateName); } function getClassFacts(node) { var facts = 0 /* ClassFacts.None */; var original = ts.getOriginalNode(node); if (ts.isClassDeclaration(original) && ts.classOrConstructorParameterIsDecorated(original)) { facts |= 1 /* ClassFacts.ClassWasDecorated */; } for (var _i = 0, _a = node.members; _i < _a.length; _i++) { var member = _a[_i]; if (!ts.isStatic(member)) continue; if (member.name && ts.isPrivateIdentifier(member.name) && shouldTransformPrivateElementsOrClassStaticBlocks) { facts |= 2 /* ClassFacts.NeedsClassConstructorReference */; } if (ts.isPropertyDeclaration(member) || ts.isClassStaticBlockDeclaration(member)) { if (shouldTransformThisInStaticInitializers && member.transformFlags & 8192 /* TransformFlags.ContainsLexicalThis */) { facts |= 8 /* ClassFacts.NeedsSubstitutionForThisInClassStaticField */; if (!(facts & 1 /* ClassFacts.ClassWasDecorated */)) { facts |= 2 /* ClassFacts.NeedsClassConstructorReference */; } } if (shouldTransformSuperInStaticInitializers && member.transformFlags & 33554432 /* TransformFlags.ContainsLexicalSuper */) { if (!(facts & 1 /* ClassFacts.ClassWasDecorated */)) { facts |= 2 /* ClassFacts.NeedsClassConstructorReference */ | 4 /* ClassFacts.NeedsClassSuperReference */; } } } } return facts; } function visitExpressionWithTypeArguments(node) { var facts = (currentClassLexicalEnvironment === null || currentClassLexicalEnvironment === void 0 ? void 0 : currentClassLexicalEnvironment.facts) || 0 /* ClassFacts.None */; if (facts & 4 /* ClassFacts.NeedsClassSuperReference */) { var temp = factory.createTempVariable(hoistVariableDeclaration, /*reserveInNestedScopes*/ true); getClassLexicalEnvironment().superClassReference = temp; return factory.updateExpressionWithTypeArguments(node, factory.createAssignment(temp, ts.visitNode(node.expression, visitor, ts.isExpression)), /*typeArguments*/ undefined); } return ts.visitEachChild(node, visitor, context); } function visitClassDeclaration(node) { var facts = getClassFacts(node); if (facts) { getClassLexicalEnvironment().facts = facts; } if (facts & 8 /* ClassFacts.NeedsSubstitutionForThisInClassStaticField */) { enableSubstitutionForClassStaticThisOrSuperReference(); } // If a class has private static fields, or a static field has a `this` or `super` reference, // then we need to allocate a temp variable to hold on to that reference. var pendingClassReferenceAssignment; if (facts & 2 /* ClassFacts.NeedsClassConstructorReference */) { var temp = factory.createTempVariable(hoistVariableDeclaration, /*reservedInNestedScopes*/ true); getClassLexicalEnvironment().classConstructor = factory.cloneNode(temp); pendingClassReferenceAssignment = factory.createAssignment(temp, factory.getInternalName(node)); } var extendsClauseElement = ts.getEffectiveBaseTypeNode(node); var isDerivedClass = !!(extendsClauseElement && ts.skipOuterExpressions(extendsClauseElement.expression).kind !== 104 /* SyntaxKind.NullKeyword */); var statements = [ factory.updateClassDeclaration(node, /*decorators*/ undefined, node.modifiers, node.name, /*typeParameters*/ undefined, ts.visitNodes(node.heritageClauses, heritageClauseVisitor, ts.isHeritageClause), transformClassMembers(node, isDerivedClass)) ]; if (pendingClassReferenceAssignment) { getPendingExpressions().unshift(pendingClassReferenceAssignment); } // Write any pending expressions from elided or moved computed property names if (ts.some(pendingExpressions)) { statements.push(factory.createExpressionStatement(factory.inlineExpressions(pendingExpressions))); } // Emit static property assignment. Because classDeclaration is lexically evaluated, // it is safe to emit static property assignment after classDeclaration // From ES6 specification: // HasLexicalDeclaration (N) : Determines if the argument identifier has a binding in this environment record that was created using // a lexical declaration such as a LexicalDeclaration or a ClassDeclaration. var staticProperties = ts.getStaticPropertiesAndClassStaticBlock(node); if (ts.some(staticProperties)) { addPropertyOrClassStaticBlockStatements(statements, staticProperties, factory.getInternalName(node)); } return statements; } function visitClassExpression(node) { var facts = getClassFacts(node); if (facts) { getClassLexicalEnvironment().facts = facts; } if (facts & 8 /* ClassFacts.NeedsSubstitutionForThisInClassStaticField */) { enableSubstitutionForClassStaticThisOrSuperReference(); } // If this class expression is a transformation of a decorated class declaration, // then we want to output the pendingExpressions as statements, not as inlined // expressions with the class statement. // // In this case, we use pendingStatements to produce the same output as the // class declaration transformation. The VariableStatement visitor will insert // these statements after the class expression variable statement. var isDecoratedClassDeclaration = !!(facts & 1 /* ClassFacts.ClassWasDecorated */); var staticPropertiesOrClassStaticBlocks = ts.getStaticPropertiesAndClassStaticBlock(node); var extendsClauseElement = ts.getEffectiveBaseTypeNode(node); var isDerivedClass = !!(extendsClauseElement && ts.skipOuterExpressions(extendsClauseElement.expression).kind !== 104 /* SyntaxKind.NullKeyword */); var isClassWithConstructorReference = resolver.getNodeCheckFlags(node) & 16777216 /* NodeCheckFlags.ClassWithConstructorReference */; var temp; function createClassTempVar() { var classCheckFlags = resolver.getNodeCheckFlags(node); var isClassWithConstructorReference = classCheckFlags & 16777216 /* NodeCheckFlags.ClassWithConstructorReference */; var requiresBlockScopedVar = classCheckFlags & 524288 /* NodeCheckFlags.BlockScopedBindingInLoop */; return factory.createTempVariable(requiresBlockScopedVar ? addBlockScopedVariable : hoistVariableDeclaration, !!isClassWithConstructorReference); } if (facts & 2 /* ClassFacts.NeedsClassConstructorReference */) { temp = createClassTempVar(); getClassLexicalEnvironment().classConstructor = factory.cloneNode(temp); } var classExpression = factory.updateClassExpression(node, ts.visitNodes(node.decorators, visitor, ts.isDecorator), node.modifiers, node.name, /*typeParameters*/ undefined, ts.visitNodes(node.heritageClauses, heritageClauseVisitor, ts.isHeritageClause), transformClassMembers(node, isDerivedClass)); var hasTransformableStatics = shouldTransformPrivateElementsOrClassStaticBlocks && ts.some(staticPropertiesOrClassStaticBlocks, function (p) { return ts.isClassStaticBlockDeclaration(p) || !!p.initializer || ts.isPrivateIdentifier(p.name); }); if (hasTransformableStatics || ts.some(pendingExpressions)) { if (isDecoratedClassDeclaration) { ts.Debug.assertIsDefined(pendingStatements, "Decorated classes transformed by TypeScript are expected to be within a variable declaration."); // Write any pending expressions from elided or moved computed property names if (pendingStatements && pendingExpressions && ts.some(pendingExpressions)) { pendingStatements.push(factory.createExpressionStatement(factory.inlineExpressions(pendingExpressions))); } if (pendingStatements && ts.some(staticPropertiesOrClassStaticBlocks)) { addPropertyOrClassStaticBlockStatements(pendingStatements, staticPropertiesOrClassStaticBlocks, factory.getInternalName(node)); } if (temp) { return factory.inlineExpressions([factory.createAssignment(temp, classExpression), temp]); } return classExpression; } else { var expressions = []; temp || (temp = createClassTempVar()); if (isClassWithConstructorReference) { // record an alias as the class name is not in scope for statics. enableSubstitutionForClassAliases(); var alias = factory.cloneNode(temp); alias.autoGenerateFlags &= ~8 /* GeneratedIdentifierFlags.ReservedInNestedScopes */; classAliases[ts.getOriginalNodeId(node)] = alias; } // To preserve the behavior of the old emitter, we explicitly indent // the body of a class with static initializers. ts.setEmitFlags(classExpression, 65536 /* EmitFlags.Indented */ | ts.getEmitFlags(classExpression)); expressions.push(ts.startOnNewLine(factory.createAssignment(temp, classExpression))); // Add any pending expressions leftover from elided or relocated computed property names ts.addRange(expressions, ts.map(pendingExpressions, ts.startOnNewLine)); ts.addRange(expressions, generateInitializedPropertyExpressionsOrClassStaticBlock(staticPropertiesOrClassStaticBlocks, temp)); expressions.push(ts.startOnNewLine(temp)); return factory.inlineExpressions(expressions); } } return classExpression; } function visitClassStaticBlockDeclaration(node) { if (!shouldTransformPrivateElementsOrClassStaticBlocks) { return ts.visitEachChild(node, classElementVisitor, context); } // ClassStaticBlockDeclaration for classes are transformed in `visitClassDeclaration` or `visitClassExpression`. return undefined; } function transformClassMembers(node, isDerivedClass) { var members = []; if (shouldTransformPrivateElementsOrClassStaticBlocks) { // Declare private names. for (var _i = 0, _a = node.members; _i < _a.length; _i++) { var member = _a[_i]; if (ts.isPrivateIdentifierClassElementDeclaration(member)) { addPrivateIdentifierToEnvironment(member); } } if (ts.some(getPrivateInstanceMethodsAndAccessors(node))) { createBrandCheckWeakSetForPrivateMethods(); } } var constructor = transformConstructor(node, isDerivedClass); var visitedMembers = ts.visitNodes(node.members, classElementVisitor, ts.isClassElement); if (constructor) { members.push(constructor); } if (!shouldTransformPrivateElementsOrClassStaticBlocks && ts.some(pendingExpressions)) { members.push(factory.createClassStaticBlockDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, factory.createBlock([ factory.createExpressionStatement(factory.inlineExpressions(pendingExpressions)) ]))); pendingExpressions = undefined; } ts.addRange(members, visitedMembers); return ts.setTextRange(factory.createNodeArray(members), /*location*/ node.members); } function createBrandCheckWeakSetForPrivateMethods() { var weakSetName = getPrivateIdentifierEnvironment().weakSetName; ts.Debug.assert(weakSetName, "weakSetName should be set in private identifier environment"); getPendingExpressions().push(factory.createAssignment(weakSetName, factory.createNewExpression(factory.createIdentifier("WeakSet"), /*typeArguments*/ undefined, []))); } function isClassElementThatRequiresConstructorStatement(member) { if (ts.isStatic(member) || ts.hasSyntacticModifier(ts.getOriginalNode(member), 128 /* ModifierFlags.Abstract */)) { return false; } if (useDefineForClassFields) { // If we are using define semantics and targeting ESNext or higher, // then we don't need to transform any class properties. return languageVersion < 9 /* ScriptTarget.ES2022 */; } return ts.isInitializedProperty(member) || shouldTransformPrivateElementsOrClassStaticBlocks && ts.isPrivateIdentifierClassElementDeclaration(member); } function transformConstructor(node, isDerivedClass) { var constructor = ts.visitNode(ts.getFirstConstructorWithBody(node), visitor, ts.isConstructorDeclaration); var elements = node.members.filter(isClassElementThatRequiresConstructorStatement); if (!ts.some(elements)) { return constructor; } var parameters = ts.visitParameterList(constructor ? constructor.parameters : undefined, visitor, context); var body = transformConstructorBody(node, constructor, isDerivedClass); if (!body) { return undefined; } return ts.startOnNewLine(ts.setOriginalNode(ts.setTextRange(factory.createConstructorDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, parameters !== null && parameters !== void 0 ? parameters : [], body), constructor || node), constructor)); } function transformConstructorBody(node, constructor, isDerivedClass) { var _a; var properties = ts.getProperties(node, /*requireInitializer*/ false, /*isStatic*/ false); if (!useDefineForClassFields) { properties = ts.filter(properties, function (property) { return !!property.initializer || ts.isPrivateIdentifier(property.name); }); } var privateMethodsAndAccessors = getPrivateInstanceMethodsAndAccessors(node); var needsConstructorBody = ts.some(properties) || ts.some(privateMethodsAndAccessors); // Only generate synthetic constructor when there are property initializers to move. if (!constructor && !needsConstructorBody) { return ts.visitFunctionBody(/*node*/ undefined, visitor, context); } resumeLexicalEnvironment(); var needsSyntheticConstructor = !constructor && isDerivedClass; var indexOfFirstStatementAfterSuperAndPrologue = 0; var prologueStatementCount = 0; var superStatementIndex = -1; var statements = []; if ((_a = constructor === null || constructor === void 0 ? void 0 : constructor.body) === null || _a === void 0 ? void 0 : _a.statements) { prologueStatementCount = factory.copyPrologue(constructor.body.statements, statements, /*ensureUseStrict*/ false, visitor); superStatementIndex = ts.findSuperStatementIndex(constructor.body.statements, prologueStatementCount); // If there was a super call, visit existing statements up to and including it if (superStatementIndex >= 0) { indexOfFirstStatementAfterSuperAndPrologue = superStatementIndex + 1; statements = __spreadArray(__spreadArray(__spreadArray([], statements.slice(0, prologueStatementCount), true), ts.visitNodes(constructor.body.statements, visitor, ts.isStatement, prologueStatementCount, indexOfFirstStatementAfterSuperAndPrologue - prologueStatementCount), true), statements.slice(prologueStatementCount), true); } else if (prologueStatementCount >= 0) { indexOfFirstStatementAfterSuperAndPrologue = prologueStatementCount; } } if (needsSyntheticConstructor) { // Add a synthetic `super` call: // // super(...arguments); // statements.push(factory.createExpressionStatement(factory.createCallExpression(factory.createSuper(), /*typeArguments*/ undefined, [factory.createSpreadElement(factory.createIdentifier("arguments"))]))); } // Add the property initializers. Transforms this: // // public x = 1; // // Into this: // // constructor() { // this.x = 1; // } // // If we do useDefineForClassFields, they'll be converted elsewhere. // We instead *remove* them from the transformed output at this stage. var parameterPropertyDeclarationCount = 0; if (constructor === null || constructor === void 0 ? void 0 : constructor.body) { if (useDefineForClassFields) { statements = statements.filter(function (statement) { return !ts.isParameterPropertyDeclaration(ts.getOriginalNode(statement), constructor); }); } else { for (var _i = 0, _b = constructor.body.statements; _i < _b.length; _i++) { var statement = _b[_i]; if (ts.isParameterPropertyDeclaration(ts.getOriginalNode(statement), constructor)) { parameterPropertyDeclarationCount++; } } if (parameterPropertyDeclarationCount > 0) { var parameterProperties = ts.visitNodes(constructor.body.statements, visitor, ts.isStatement, indexOfFirstStatementAfterSuperAndPrologue, parameterPropertyDeclarationCount); // If there was a super() call found, add parameter properties immediately after it if (superStatementIndex >= 0) { ts.addRange(statements, parameterProperties); } else { // Add add parameter properties to the top of the constructor after the prologue var superAndPrologueStatementCount = prologueStatementCount; // If a synthetic super() call was added, need to account for that if (needsSyntheticConstructor) superAndPrologueStatementCount++; statements = __spreadArray(__spreadArray(__spreadArray([], statements.slice(0, superAndPrologueStatementCount), true), parameterProperties, true), statements.slice(superAndPrologueStatementCount), true); } indexOfFirstStatementAfterSuperAndPrologue += parameterPropertyDeclarationCount; } } } var receiver = factory.createThis(); // private methods can be called in property initializers, they should execute first. addMethodStatements(statements, privateMethodsAndAccessors, receiver); addPropertyOrClassStaticBlockStatements(statements, properties, receiver); // Add existing statements after the initial prologues and super call if (constructor) { ts.addRange(statements, ts.visitNodes(constructor.body.statements, visitBodyStatement, ts.isStatement, indexOfFirstStatementAfterSuperAndPrologue)); } statements = factory.mergeLexicalEnvironment(statements, endLexicalEnvironment()); return ts.setTextRange(factory.createBlock(ts.setTextRange(factory.createNodeArray(statements), /*location*/ constructor ? constructor.body.statements : node.members), /*multiLine*/ true), /*location*/ constructor ? constructor.body : undefined); function visitBodyStatement(statement) { if (useDefineForClassFields && ts.isParameterPropertyDeclaration(ts.getOriginalNode(statement), constructor)) { return undefined; } return visitor(statement); } } /** * Generates assignment statements for property initializers. * * @param properties An array of property declarations to transform. * @param receiver The receiver on which each property should be assigned. */ function addPropertyOrClassStaticBlockStatements(statements, properties, receiver) { for (var _i = 0, properties_7 = properties; _i < properties_7.length; _i++) { var property = properties_7[_i]; if (ts.isStatic(property) && !shouldTransformPrivateElementsOrClassStaticBlocks && !useDefineForClassFields) { continue; } var statement = transformPropertyOrClassStaticBlock(property, receiver); if (!statement) { continue; } statements.push(statement); } } function transformPropertyOrClassStaticBlock(property, receiver) { var expression = ts.isClassStaticBlockDeclaration(property) ? transformClassStaticBlockDeclaration(property) : transformProperty(property, receiver); if (!expression) { return undefined; } var statement = factory.createExpressionStatement(expression); ts.setSourceMapRange(statement, ts.moveRangePastModifiers(property)); ts.setCommentRange(statement, property); ts.setOriginalNode(statement, property); // `setOriginalNode` *copies* the `emitNode` from `property`, so now both // `statement` and `expression` have a copy of the synthesized comments. // Drop the comments from expression to avoid printing them twice. ts.setSyntheticLeadingComments(expression, undefined); ts.setSyntheticTrailingComments(expression, undefined); return statement; } /** * Generates assignment expressions for property initializers. * * @param propertiesOrClassStaticBlocks An array of property declarations to transform. * @param receiver The receiver on which each property should be assigned. */ function generateInitializedPropertyExpressionsOrClassStaticBlock(propertiesOrClassStaticBlocks, receiver) { var expressions = []; for (var _i = 0, propertiesOrClassStaticBlocks_1 = propertiesOrClassStaticBlocks; _i < propertiesOrClassStaticBlocks_1.length; _i++) { var property = propertiesOrClassStaticBlocks_1[_i]; var expression = ts.isClassStaticBlockDeclaration(property) ? transformClassStaticBlockDeclaration(property) : transformProperty(property, receiver); if (!expression) { continue; } ts.startOnNewLine(expression); ts.setSourceMapRange(expression, ts.moveRangePastModifiers(property)); ts.setCommentRange(expression, property); ts.setOriginalNode(expression, property); expressions.push(expression); } return expressions; } /** * Transforms a property initializer into an assignment statement. * * @param property The property declaration. * @param receiver The object receiving the property assignment. */ function transformProperty(property, receiver) { var savedCurrentStaticPropertyDeclarationOrStaticBlock = currentStaticPropertyDeclarationOrStaticBlock; var transformed = transformPropertyWorker(property, receiver); if (transformed && ts.hasStaticModifier(property) && (currentClassLexicalEnvironment === null || currentClassLexicalEnvironment === void 0 ? void 0 : currentClassLexicalEnvironment.facts)) { // capture the lexical environment for the member ts.setOriginalNode(transformed, property); ts.addEmitFlags(transformed, 2 /* EmitFlags.AdviseOnEmitNode */); classLexicalEnvironmentMap.set(ts.getOriginalNodeId(transformed), currentClassLexicalEnvironment); } currentStaticPropertyDeclarationOrStaticBlock = savedCurrentStaticPropertyDeclarationOrStaticBlock; return transformed; } function transformPropertyWorker(property, receiver) { var _a; // We generate a name here in order to reuse the value cached by the relocated computed name expression (which uses the same generated name) var emitAssignment = !useDefineForClassFields; var propertyName = ts.isComputedPropertyName(property.name) && !ts.isSimpleInlineableExpression(property.name.expression) ? factory.updateComputedPropertyName(property.name, factory.getGeneratedNameForNode(property.name)) : property.name; if (ts.hasStaticModifier(property)) { currentStaticPropertyDeclarationOrStaticBlock = property; } if (shouldTransformPrivateElementsOrClassStaticBlocks && ts.isPrivateIdentifier(propertyName)) { var privateIdentifierInfo = accessPrivateIdentifier(propertyName); if (privateIdentifierInfo) { if (privateIdentifierInfo.kind === "f" /* PrivateIdentifierKind.Field */) { if (!privateIdentifierInfo.isStatic) { return createPrivateInstanceFieldInitializer(receiver, ts.visitNode(property.initializer, visitor, ts.isExpression), privateIdentifierInfo.brandCheckIdentifier); } else { return createPrivateStaticFieldInitializer(privateIdentifierInfo.variableName, ts.visitNode(property.initializer, visitor, ts.isExpression)); } } else { return undefined; } } else { ts.Debug.fail("Undeclared private name for property declaration."); } } if ((ts.isPrivateIdentifier(propertyName) || ts.hasStaticModifier(property)) && !property.initializer) { return undefined; } var propertyOriginalNode = ts.getOriginalNode(property); if (ts.hasSyntacticModifier(propertyOriginalNode, 128 /* ModifierFlags.Abstract */)) { return undefined; } var initializer = property.initializer || emitAssignment ? (_a = ts.visitNode(property.initializer, visitor, ts.isExpression)) !== null && _a !== void 0 ? _a : factory.createVoidZero() : ts.isParameterPropertyDeclaration(propertyOriginalNode, propertyOriginalNode.parent) && ts.isIdentifier(propertyName) ? propertyName : factory.createVoidZero(); if (emitAssignment || ts.isPrivateIdentifier(propertyName)) { var memberAccess = ts.createMemberAccessForPropertyName(factory, receiver, propertyName, /*location*/ propertyName); return factory.createAssignment(memberAccess, initializer); } else { var name = ts.isComputedPropertyName(propertyName) ? propertyName.expression : ts.isIdentifier(propertyName) ? factory.createStringLiteral(ts.unescapeLeadingUnderscores(propertyName.escapedText)) : propertyName; var descriptor = factory.createPropertyDescriptor({ value: initializer, configurable: true, writable: true, enumerable: true }); return factory.createObjectDefinePropertyCall(receiver, name, descriptor); } } function enableSubstitutionForClassAliases() { if ((enabledSubstitutions & 1 /* ClassPropertySubstitutionFlags.ClassAliases */) === 0) { enabledSubstitutions |= 1 /* ClassPropertySubstitutionFlags.ClassAliases */; // We need to enable substitutions for identifiers. This allows us to // substitute class names inside of a class declaration. context.enableSubstitution(79 /* SyntaxKind.Identifier */); // Keep track of class aliases. classAliases = []; } } function enableSubstitutionForClassStaticThisOrSuperReference() { if ((enabledSubstitutions & 2 /* ClassPropertySubstitutionFlags.ClassStaticThisOrSuperReference */) === 0) { enabledSubstitutions |= 2 /* ClassPropertySubstitutionFlags.ClassStaticThisOrSuperReference */; // substitute `this` in a static field initializer context.enableSubstitution(108 /* SyntaxKind.ThisKeyword */); // these push a new lexical environment that is not the class lexical environment context.enableEmitNotification(256 /* SyntaxKind.FunctionDeclaration */); context.enableEmitNotification(213 /* SyntaxKind.FunctionExpression */); context.enableEmitNotification(171 /* SyntaxKind.Constructor */); // these push a new lexical environment that is not the class lexical environment, except // when they have a computed property name context.enableEmitNotification(172 /* SyntaxKind.GetAccessor */); context.enableEmitNotification(173 /* SyntaxKind.SetAccessor */); context.enableEmitNotification(169 /* SyntaxKind.MethodDeclaration */); context.enableEmitNotification(167 /* SyntaxKind.PropertyDeclaration */); // class lexical environments are restored when entering a computed property name context.enableEmitNotification(162 /* SyntaxKind.ComputedPropertyName */); } } /** * Generates brand-check initializer for private methods. * * @param statements Statement list that should be used to append new statements. * @param methods An array of method declarations. * @param receiver The receiver on which each method should be assigned. */ function addMethodStatements(statements, methods, receiver) { if (!shouldTransformPrivateElementsOrClassStaticBlocks || !ts.some(methods)) { return; } var weakSetName = getPrivateIdentifierEnvironment().weakSetName; ts.Debug.assert(weakSetName, "weakSetName should be set in private identifier environment"); statements.push(factory.createExpressionStatement(createPrivateInstanceMethodInitializer(receiver, weakSetName))); } function visitInvalidSuperProperty(node) { return ts.isPropertyAccessExpression(node) ? factory.updatePropertyAccessExpression(node, factory.createVoidZero(), node.name) : factory.updateElementAccessExpression(node, factory.createVoidZero(), ts.visitNode(node.argumentExpression, visitor, ts.isExpression)); } function onEmitNode(hint, node, emitCallback) { var original = ts.getOriginalNode(node); if (original.id) { var classLexicalEnvironment = classLexicalEnvironmentMap.get(original.id); if (classLexicalEnvironment) { var savedClassLexicalEnvironment = currentClassLexicalEnvironment; var savedCurrentComputedPropertyNameClassLexicalEnvironment = currentComputedPropertyNameClassLexicalEnvironment; currentClassLexicalEnvironment = classLexicalEnvironment; currentComputedPropertyNameClassLexicalEnvironment = classLexicalEnvironment; previousOnEmitNode(hint, node, emitCallback); currentClassLexicalEnvironment = savedClassLexicalEnvironment; currentComputedPropertyNameClassLexicalEnvironment = savedCurrentComputedPropertyNameClassLexicalEnvironment; return; } } switch (node.kind) { case 213 /* SyntaxKind.FunctionExpression */: if (ts.isArrowFunction(original) || ts.getEmitFlags(node) & 262144 /* EmitFlags.AsyncFunctionBody */) { break; } // falls through case 256 /* SyntaxKind.FunctionDeclaration */: case 171 /* SyntaxKind.Constructor */: { var savedClassLexicalEnvironment = currentClassLexicalEnvironment; var savedCurrentComputedPropertyNameClassLexicalEnvironment = currentComputedPropertyNameClassLexicalEnvironment; currentClassLexicalEnvironment = undefined; currentComputedPropertyNameClassLexicalEnvironment = undefined; previousOnEmitNode(hint, node, emitCallback); currentClassLexicalEnvironment = savedClassLexicalEnvironment; currentComputedPropertyNameClassLexicalEnvironment = savedCurrentComputedPropertyNameClassLexicalEnvironment; return; } case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 169 /* SyntaxKind.MethodDeclaration */: case 167 /* SyntaxKind.PropertyDeclaration */: { var savedClassLexicalEnvironment = currentClassLexicalEnvironment; var savedCurrentComputedPropertyNameClassLexicalEnvironment = currentComputedPropertyNameClassLexicalEnvironment; currentComputedPropertyNameClassLexicalEnvironment = currentClassLexicalEnvironment; currentClassLexicalEnvironment = undefined; previousOnEmitNode(hint, node, emitCallback); currentClassLexicalEnvironment = savedClassLexicalEnvironment; currentComputedPropertyNameClassLexicalEnvironment = savedCurrentComputedPropertyNameClassLexicalEnvironment; return; } case 162 /* SyntaxKind.ComputedPropertyName */: { var savedClassLexicalEnvironment = currentClassLexicalEnvironment; var savedCurrentComputedPropertyNameClassLexicalEnvironment = currentComputedPropertyNameClassLexicalEnvironment; currentClassLexicalEnvironment = currentComputedPropertyNameClassLexicalEnvironment; currentComputedPropertyNameClassLexicalEnvironment = undefined; previousOnEmitNode(hint, node, emitCallback); currentClassLexicalEnvironment = savedClassLexicalEnvironment; currentComputedPropertyNameClassLexicalEnvironment = savedCurrentComputedPropertyNameClassLexicalEnvironment; return; } } previousOnEmitNode(hint, node, emitCallback); } /** * Hooks node substitutions. * * @param hint The context for the emitter. * @param node The node to substitute. */ function onSubstituteNode(hint, node) { node = previousOnSubstituteNode(hint, node); if (hint === 1 /* EmitHint.Expression */) { return substituteExpression(node); } return node; } function substituteExpression(node) { switch (node.kind) { case 79 /* SyntaxKind.Identifier */: return substituteExpressionIdentifier(node); case 108 /* SyntaxKind.ThisKeyword */: return substituteThisExpression(node); } return node; } function substituteThisExpression(node) { if (enabledSubstitutions & 2 /* ClassPropertySubstitutionFlags.ClassStaticThisOrSuperReference */ && currentClassLexicalEnvironment) { var facts = currentClassLexicalEnvironment.facts, classConstructor = currentClassLexicalEnvironment.classConstructor; if (facts & 1 /* ClassFacts.ClassWasDecorated */) { return factory.createParenthesizedExpression(factory.createVoidZero()); } if (classConstructor) { return ts.setTextRange(ts.setOriginalNode(factory.cloneNode(classConstructor), node), node); } } return node; } function substituteExpressionIdentifier(node) { return trySubstituteClassAlias(node) || node; } function trySubstituteClassAlias(node) { if (enabledSubstitutions & 1 /* ClassPropertySubstitutionFlags.ClassAliases */) { if (resolver.getNodeCheckFlags(node) & 33554432 /* NodeCheckFlags.ConstructorReferenceInClass */) { // Due to the emit for class decorators, any reference to the class from inside of the class body // must instead be rewritten to point to a temporary variable to avoid issues with the double-bind // behavior of class names in ES6. // Also, when emitting statics for class expressions, we must substitute a class alias for // constructor references in static property initializers. var declaration = resolver.getReferencedValueDeclaration(node); if (declaration) { var classAlias = classAliases[declaration.id]; // TODO: GH#18217 if (classAlias) { var clone_3 = factory.cloneNode(classAlias); ts.setSourceMapRange(clone_3, node); ts.setCommentRange(clone_3, node); return clone_3; } } } } return undefined; } /** * If the name is a computed property, this function transforms it, then either returns an expression which caches the * value of the result or the expression itself if the value is either unused or safe to inline into multiple locations * @param shouldHoist Does the expression need to be reused? (ie, for an initializer or a decorator) */ function getPropertyNameExpressionIfNeeded(name, shouldHoist) { if (ts.isComputedPropertyName(name)) { var expression = ts.visitNode(name.expression, visitor, ts.isExpression); var innerExpression = ts.skipPartiallyEmittedExpressions(expression); var inlinable = ts.isSimpleInlineableExpression(innerExpression); var alreadyTransformed = ts.isAssignmentExpression(innerExpression) && ts.isGeneratedIdentifier(innerExpression.left); if (!alreadyTransformed && !inlinable && shouldHoist) { var generatedName = factory.getGeneratedNameForNode(name); if (resolver.getNodeCheckFlags(name) & 524288 /* NodeCheckFlags.BlockScopedBindingInLoop */) { addBlockScopedVariable(generatedName); } else { hoistVariableDeclaration(generatedName); } return factory.createAssignment(generatedName, expression); } return (inlinable || ts.isIdentifier(innerExpression)) ? undefined : expression; } } function startClassLexicalEnvironment() { classLexicalEnvironmentStack.push(currentClassLexicalEnvironment); currentClassLexicalEnvironment = undefined; } function endClassLexicalEnvironment() { currentClassLexicalEnvironment = classLexicalEnvironmentStack.pop(); } function getClassLexicalEnvironment() { return currentClassLexicalEnvironment || (currentClassLexicalEnvironment = { facts: 0 /* ClassFacts.None */, classConstructor: undefined, superClassReference: undefined, privateIdentifierEnvironment: undefined, }); } function getPrivateIdentifierEnvironment() { var lex = getClassLexicalEnvironment(); lex.privateIdentifierEnvironment || (lex.privateIdentifierEnvironment = { className: "", identifiers: new ts.Map() }); return lex.privateIdentifierEnvironment; } function getPendingExpressions() { return pendingExpressions || (pendingExpressions = []); } function addPrivateIdentifierToEnvironment(node) { var _a; var text = ts.getTextOfPropertyName(node.name); var lex = getClassLexicalEnvironment(); var classConstructor = lex.classConstructor; var privateEnv = getPrivateIdentifierEnvironment(); var weakSetName = privateEnv.weakSetName; var assignmentExpressions = []; var privateName = node.name.escapedText; var previousInfo = privateEnv.identifiers.get(privateName); var isValid = !isReservedPrivateName(node.name) && previousInfo === undefined; if (ts.hasStaticModifier(node)) { ts.Debug.assert(classConstructor, "weakSetName should be set in private identifier environment"); if (ts.isPropertyDeclaration(node)) { var variableName = createHoistedVariableForPrivateName(text, node); privateEnv.identifiers.set(privateName, { kind: "f" /* PrivateIdentifierKind.Field */, variableName: variableName, brandCheckIdentifier: classConstructor, isStatic: true, isValid: isValid, }); } else if (ts.isMethodDeclaration(node)) { var functionName = createHoistedVariableForPrivateName(text, node); privateEnv.identifiers.set(privateName, { kind: "m" /* PrivateIdentifierKind.Method */, methodName: functionName, brandCheckIdentifier: classConstructor, isStatic: true, isValid: isValid, }); } else if (ts.isGetAccessorDeclaration(node)) { var getterName = createHoistedVariableForPrivateName(text + "_get", node); if ((previousInfo === null || previousInfo === void 0 ? void 0 : previousInfo.kind) === "a" /* PrivateIdentifierKind.Accessor */ && previousInfo.isStatic && !previousInfo.getterName) { previousInfo.getterName = getterName; } else { privateEnv.identifiers.set(privateName, { kind: "a" /* PrivateIdentifierKind.Accessor */, getterName: getterName, setterName: undefined, brandCheckIdentifier: classConstructor, isStatic: true, isValid: isValid, }); } } else if (ts.isSetAccessorDeclaration(node)) { var setterName = createHoistedVariableForPrivateName(text + "_set", node); if ((previousInfo === null || previousInfo === void 0 ? void 0 : previousInfo.kind) === "a" /* PrivateIdentifierKind.Accessor */ && previousInfo.isStatic && !previousInfo.setterName) { previousInfo.setterName = setterName; } else { privateEnv.identifiers.set(privateName, { kind: "a" /* PrivateIdentifierKind.Accessor */, getterName: undefined, setterName: setterName, brandCheckIdentifier: classConstructor, isStatic: true, isValid: isValid, }); } } else { ts.Debug.assertNever(node, "Unknown class element type."); } } else if (ts.isPropertyDeclaration(node)) { var weakMapName = createHoistedVariableForPrivateName(text, node); privateEnv.identifiers.set(privateName, { kind: "f" /* PrivateIdentifierKind.Field */, brandCheckIdentifier: weakMapName, isStatic: false, variableName: undefined, isValid: isValid, }); assignmentExpressions.push(factory.createAssignment(weakMapName, factory.createNewExpression(factory.createIdentifier("WeakMap"), /*typeArguments*/ undefined, []))); } else if (ts.isMethodDeclaration(node)) { ts.Debug.assert(weakSetName, "weakSetName should be set in private identifier environment"); privateEnv.identifiers.set(privateName, { kind: "m" /* PrivateIdentifierKind.Method */, methodName: createHoistedVariableForPrivateName(text, node), brandCheckIdentifier: weakSetName, isStatic: false, isValid: isValid, }); } else if (ts.isAccessor(node)) { ts.Debug.assert(weakSetName, "weakSetName should be set in private identifier environment"); if (ts.isGetAccessor(node)) { var getterName = createHoistedVariableForPrivateName(text + "_get", node); if ((previousInfo === null || previousInfo === void 0 ? void 0 : previousInfo.kind) === "a" /* PrivateIdentifierKind.Accessor */ && !previousInfo.isStatic && !previousInfo.getterName) { previousInfo.getterName = getterName; } else { privateEnv.identifiers.set(privateName, { kind: "a" /* PrivateIdentifierKind.Accessor */, getterName: getterName, setterName: undefined, brandCheckIdentifier: weakSetName, isStatic: false, isValid: isValid, }); } } else { var setterName = createHoistedVariableForPrivateName(text + "_set", node); if ((previousInfo === null || previousInfo === void 0 ? void 0 : previousInfo.kind) === "a" /* PrivateIdentifierKind.Accessor */ && !previousInfo.isStatic && !previousInfo.setterName) { previousInfo.setterName = setterName; } else { privateEnv.identifiers.set(privateName, { kind: "a" /* PrivateIdentifierKind.Accessor */, getterName: undefined, setterName: setterName, brandCheckIdentifier: weakSetName, isStatic: false, isValid: isValid, }); } } } else { ts.Debug.assertNever(node, "Unknown class element type."); } (_a = getPendingExpressions()).push.apply(_a, assignmentExpressions); } function createHoistedVariableForClass(name, node) { var className = getPrivateIdentifierEnvironment().className; var prefix = className ? "_".concat(className) : ""; var identifier = factory.createUniqueName("".concat(prefix, "_").concat(name), 16 /* GeneratedIdentifierFlags.Optimistic */); if (resolver.getNodeCheckFlags(node) & 524288 /* NodeCheckFlags.BlockScopedBindingInLoop */) { addBlockScopedVariable(identifier); } else { hoistVariableDeclaration(identifier); } return identifier; } function createHoistedVariableForPrivateName(privateName, node) { return createHoistedVariableForClass(privateName.substring(1), node.name); } function accessPrivateIdentifier(name) { var _a; if (currentClassLexicalEnvironment === null || currentClassLexicalEnvironment === void 0 ? void 0 : currentClassLexicalEnvironment.privateIdentifierEnvironment) { var info = currentClassLexicalEnvironment.privateIdentifierEnvironment.identifiers.get(name.escapedText); if (info) { return info; } } for (var i = classLexicalEnvironmentStack.length - 1; i >= 0; --i) { var env = classLexicalEnvironmentStack[i]; if (!env) { continue; } var info = (_a = env.privateIdentifierEnvironment) === null || _a === void 0 ? void 0 : _a.identifiers.get(name.escapedText); if (info) { return info; } } return undefined; } function wrapPrivateIdentifierForDestructuringTarget(node) { var parameter = factory.getGeneratedNameForNode(node); var info = accessPrivateIdentifier(node.name); if (!info) { return ts.visitEachChild(node, visitor, context); } var receiver = node.expression; // We cannot copy `this` or `super` into the function because they will be bound // differently inside the function. if (ts.isThisProperty(node) || ts.isSuperProperty(node) || !ts.isSimpleCopiableExpression(node.expression)) { receiver = factory.createTempVariable(hoistVariableDeclaration, /*reservedInNestedScopes*/ true); getPendingExpressions().push(factory.createBinaryExpression(receiver, 63 /* SyntaxKind.EqualsToken */, ts.visitNode(node.expression, visitor, ts.isExpression))); } return factory.createAssignmentTargetWrapper(parameter, createPrivateIdentifierAssignment(info, receiver, parameter, 63 /* SyntaxKind.EqualsToken */)); } function visitArrayAssignmentTarget(node) { var target = ts.getTargetOfBindingOrAssignmentElement(node); if (target) { var wrapped = void 0; if (ts.isPrivateIdentifierPropertyAccessExpression(target)) { wrapped = wrapPrivateIdentifierForDestructuringTarget(target); } else if (shouldTransformSuperInStaticInitializers && ts.isSuperProperty(target) && currentStaticPropertyDeclarationOrStaticBlock && currentClassLexicalEnvironment) { var classConstructor = currentClassLexicalEnvironment.classConstructor, superClassReference = currentClassLexicalEnvironment.superClassReference, facts = currentClassLexicalEnvironment.facts; if (facts & 1 /* ClassFacts.ClassWasDecorated */) { wrapped = visitInvalidSuperProperty(target); } else if (classConstructor && superClassReference) { var name = ts.isElementAccessExpression(target) ? ts.visitNode(target.argumentExpression, visitor, ts.isExpression) : ts.isIdentifier(target.name) ? factory.createStringLiteralFromNode(target.name) : undefined; if (name) { var temp = factory.createTempVariable(/*recordTempVariable*/ undefined); wrapped = factory.createAssignmentTargetWrapper(temp, factory.createReflectSetCall(superClassReference, name, temp, classConstructor)); } } } if (wrapped) { if (ts.isAssignmentExpression(node)) { return factory.updateBinaryExpression(node, wrapped, node.operatorToken, ts.visitNode(node.right, visitor, ts.isExpression)); } else if (ts.isSpreadElement(node)) { return factory.updateSpreadElement(node, wrapped); } else { return wrapped; } } } return ts.visitNode(node, visitorDestructuringTarget); } function visitObjectAssignmentTarget(node) { if (ts.isObjectBindingOrAssignmentElement(node) && !ts.isShorthandPropertyAssignment(node)) { var target = ts.getTargetOfBindingOrAssignmentElement(node); var wrapped = void 0; if (target) { if (ts.isPrivateIdentifierPropertyAccessExpression(target)) { wrapped = wrapPrivateIdentifierForDestructuringTarget(target); } else if (shouldTransformSuperInStaticInitializers && ts.isSuperProperty(target) && currentStaticPropertyDeclarationOrStaticBlock && currentClassLexicalEnvironment) { var classConstructor = currentClassLexicalEnvironment.classConstructor, superClassReference = currentClassLexicalEnvironment.superClassReference, facts = currentClassLexicalEnvironment.facts; if (facts & 1 /* ClassFacts.ClassWasDecorated */) { wrapped = visitInvalidSuperProperty(target); } else if (classConstructor && superClassReference) { var name = ts.isElementAccessExpression(target) ? ts.visitNode(target.argumentExpression, visitor, ts.isExpression) : ts.isIdentifier(target.name) ? factory.createStringLiteralFromNode(target.name) : undefined; if (name) { var temp = factory.createTempVariable(/*recordTempVariable*/ undefined); wrapped = factory.createAssignmentTargetWrapper(temp, factory.createReflectSetCall(superClassReference, name, temp, classConstructor)); } } } } if (ts.isPropertyAssignment(node)) { var initializer = ts.getInitializerOfBindingOrAssignmentElement(node); return factory.updatePropertyAssignment(node, ts.visitNode(node.name, visitor, ts.isPropertyName), wrapped ? initializer ? factory.createAssignment(wrapped, ts.visitNode(initializer, visitor)) : wrapped : ts.visitNode(node.initializer, visitorDestructuringTarget, ts.isExpression)); } if (ts.isSpreadAssignment(node)) { return factory.updateSpreadAssignment(node, wrapped || ts.visitNode(node.expression, visitorDestructuringTarget, ts.isExpression)); } ts.Debug.assert(wrapped === undefined, "Should not have generated a wrapped target"); } return ts.visitNode(node, visitor); } function visitAssignmentPattern(node) { if (ts.isArrayLiteralExpression(node)) { // Transforms private names in destructuring assignment array bindings. // Transforms SuperProperty assignments in destructuring assignment array bindings in static initializers. // // Source: // ([ this.#myProp ] = [ "hello" ]); // // Transformation: // [ { set value(x) { this.#myProp = x; } }.value ] = [ "hello" ]; return factory.updateArrayLiteralExpression(node, ts.visitNodes(node.elements, visitArrayAssignmentTarget, ts.isExpression)); } else { // Transforms private names in destructuring assignment object bindings. // Transforms SuperProperty assignments in destructuring assignment object bindings in static initializers. // // Source: // ({ stringProperty: this.#myProp } = { stringProperty: "hello" }); // // Transformation: // ({ stringProperty: { set value(x) { this.#myProp = x; } }.value }) = { stringProperty: "hello" }; return factory.updateObjectLiteralExpression(node, ts.visitNodes(node.properties, visitObjectAssignmentTarget, ts.isObjectLiteralElementLike)); } } } ts.transformClassFields = transformClassFields; function createPrivateStaticFieldInitializer(variableName, initializer) { return ts.factory.createAssignment(variableName, ts.factory.createObjectLiteralExpression([ ts.factory.createPropertyAssignment("value", initializer || ts.factory.createVoidZero()) ])); } function createPrivateInstanceFieldInitializer(receiver, initializer, weakMapName) { return ts.factory.createCallExpression(ts.factory.createPropertyAccessExpression(weakMapName, "set"), /*typeArguments*/ undefined, [receiver, initializer || ts.factory.createVoidZero()]); } function createPrivateInstanceMethodInitializer(receiver, weakSetName) { return ts.factory.createCallExpression(ts.factory.createPropertyAccessExpression(weakSetName, "add"), /*typeArguments*/ undefined, [receiver]); } function isReservedPrivateName(node) { return node.escapedText === "#constructor"; } })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { var ES2017SubstitutionFlags; (function (ES2017SubstitutionFlags) { /** Enables substitutions for async methods with `super` calls. */ ES2017SubstitutionFlags[ES2017SubstitutionFlags["AsyncMethodsWithSuper"] = 1] = "AsyncMethodsWithSuper"; })(ES2017SubstitutionFlags || (ES2017SubstitutionFlags = {})); var ContextFlags; (function (ContextFlags) { ContextFlags[ContextFlags["NonTopLevel"] = 1] = "NonTopLevel"; ContextFlags[ContextFlags["HasLexicalThis"] = 2] = "HasLexicalThis"; })(ContextFlags || (ContextFlags = {})); function transformES2017(context) { var factory = context.factory, emitHelpers = context.getEmitHelperFactory, resumeLexicalEnvironment = context.resumeLexicalEnvironment, endLexicalEnvironment = context.endLexicalEnvironment, hoistVariableDeclaration = context.hoistVariableDeclaration; var resolver = context.getEmitResolver(); var compilerOptions = context.getCompilerOptions(); var languageVersion = ts.getEmitScriptTarget(compilerOptions); /** * Keeps track of whether expression substitution has been enabled for specific edge cases. * They are persisted between each SourceFile transformation and should not be reset. */ var enabledSubstitutions; /** * This keeps track of containers where `super` is valid, for use with * just-in-time substitution for `super` expressions inside of async methods. */ var enclosingSuperContainerFlags = 0; var enclosingFunctionParameterNames; /** * Keeps track of property names accessed on super (`super.x`) within async functions. */ var capturedSuperProperties; /** Whether the async function contains an element access on super (`super[x]`). */ var hasSuperElementAccess; /** A set of node IDs for generated super accessors (variable statements). */ var substitutedSuperAccessors = []; var contextFlags = 0; // Save the previous transformation hooks. var previousOnEmitNode = context.onEmitNode; var previousOnSubstituteNode = context.onSubstituteNode; // Set new transformation hooks. context.onEmitNode = onEmitNode; context.onSubstituteNode = onSubstituteNode; return ts.chainBundle(context, transformSourceFile); function transformSourceFile(node) { if (node.isDeclarationFile) { return node; } setContextFlag(1 /* ContextFlags.NonTopLevel */, false); setContextFlag(2 /* ContextFlags.HasLexicalThis */, !ts.isEffectiveStrictModeSourceFile(node, compilerOptions)); var visited = ts.visitEachChild(node, visitor, context); ts.addEmitHelpers(visited, context.readEmitHelpers()); return visited; } function setContextFlag(flag, val) { contextFlags = val ? contextFlags | flag : contextFlags & ~flag; } function inContext(flags) { return (contextFlags & flags) !== 0; } function inTopLevelContext() { return !inContext(1 /* ContextFlags.NonTopLevel */); } function inHasLexicalThisContext() { return inContext(2 /* ContextFlags.HasLexicalThis */); } function doWithContext(flags, cb, value) { var contextFlagsToSet = flags & ~contextFlags; if (contextFlagsToSet) { setContextFlag(contextFlagsToSet, /*val*/ true); var result = cb(value); setContextFlag(contextFlagsToSet, /*val*/ false); return result; } return cb(value); } function visitDefault(node) { return ts.visitEachChild(node, visitor, context); } function visitor(node) { if ((node.transformFlags & 256 /* TransformFlags.ContainsES2017 */) === 0) { return node; } switch (node.kind) { case 131 /* SyntaxKind.AsyncKeyword */: // ES2017 async modifier should be elided for targets < ES2017 return undefined; case 218 /* SyntaxKind.AwaitExpression */: return visitAwaitExpression(node); case 169 /* SyntaxKind.MethodDeclaration */: return doWithContext(1 /* ContextFlags.NonTopLevel */ | 2 /* ContextFlags.HasLexicalThis */, visitMethodDeclaration, node); case 256 /* SyntaxKind.FunctionDeclaration */: return doWithContext(1 /* ContextFlags.NonTopLevel */ | 2 /* ContextFlags.HasLexicalThis */, visitFunctionDeclaration, node); case 213 /* SyntaxKind.FunctionExpression */: return doWithContext(1 /* ContextFlags.NonTopLevel */ | 2 /* ContextFlags.HasLexicalThis */, visitFunctionExpression, node); case 214 /* SyntaxKind.ArrowFunction */: return doWithContext(1 /* ContextFlags.NonTopLevel */, visitArrowFunction, node); case 206 /* SyntaxKind.PropertyAccessExpression */: if (capturedSuperProperties && ts.isPropertyAccessExpression(node) && node.expression.kind === 106 /* SyntaxKind.SuperKeyword */) { capturedSuperProperties.add(node.name.escapedText); } return ts.visitEachChild(node, visitor, context); case 207 /* SyntaxKind.ElementAccessExpression */: if (capturedSuperProperties && node.expression.kind === 106 /* SyntaxKind.SuperKeyword */) { hasSuperElementAccess = true; } return ts.visitEachChild(node, visitor, context); case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 171 /* SyntaxKind.Constructor */: case 257 /* SyntaxKind.ClassDeclaration */: case 226 /* SyntaxKind.ClassExpression */: return doWithContext(1 /* ContextFlags.NonTopLevel */ | 2 /* ContextFlags.HasLexicalThis */, visitDefault, node); default: return ts.visitEachChild(node, visitor, context); } } function asyncBodyVisitor(node) { if (ts.isNodeWithPossibleHoistedDeclaration(node)) { switch (node.kind) { case 237 /* SyntaxKind.VariableStatement */: return visitVariableStatementInAsyncBody(node); case 242 /* SyntaxKind.ForStatement */: return visitForStatementInAsyncBody(node); case 243 /* SyntaxKind.ForInStatement */: return visitForInStatementInAsyncBody(node); case 244 /* SyntaxKind.ForOfStatement */: return visitForOfStatementInAsyncBody(node); case 292 /* SyntaxKind.CatchClause */: return visitCatchClauseInAsyncBody(node); case 235 /* SyntaxKind.Block */: case 249 /* SyntaxKind.SwitchStatement */: case 263 /* SyntaxKind.CaseBlock */: case 289 /* SyntaxKind.CaseClause */: case 290 /* SyntaxKind.DefaultClause */: case 252 /* SyntaxKind.TryStatement */: case 240 /* SyntaxKind.DoStatement */: case 241 /* SyntaxKind.WhileStatement */: case 239 /* SyntaxKind.IfStatement */: case 248 /* SyntaxKind.WithStatement */: case 250 /* SyntaxKind.LabeledStatement */: return ts.visitEachChild(node, asyncBodyVisitor, context); default: return ts.Debug.assertNever(node, "Unhandled node."); } } return visitor(node); } function visitCatchClauseInAsyncBody(node) { var catchClauseNames = new ts.Set(); recordDeclarationName(node.variableDeclaration, catchClauseNames); // TODO: GH#18217 // names declared in a catch variable are block scoped var catchClauseUnshadowedNames; catchClauseNames.forEach(function (_, escapedName) { if (enclosingFunctionParameterNames.has(escapedName)) { if (!catchClauseUnshadowedNames) { catchClauseUnshadowedNames = new ts.Set(enclosingFunctionParameterNames); } catchClauseUnshadowedNames.delete(escapedName); } }); if (catchClauseUnshadowedNames) { var savedEnclosingFunctionParameterNames = enclosingFunctionParameterNames; enclosingFunctionParameterNames = catchClauseUnshadowedNames; var result = ts.visitEachChild(node, asyncBodyVisitor, context); enclosingFunctionParameterNames = savedEnclosingFunctionParameterNames; return result; } else { return ts.visitEachChild(node, asyncBodyVisitor, context); } } function visitVariableStatementInAsyncBody(node) { if (isVariableDeclarationListWithCollidingName(node.declarationList)) { var expression = visitVariableDeclarationListWithCollidingNames(node.declarationList, /*hasReceiver*/ false); return expression ? factory.createExpressionStatement(expression) : undefined; } return ts.visitEachChild(node, visitor, context); } function visitForInStatementInAsyncBody(node) { return factory.updateForInStatement(node, isVariableDeclarationListWithCollidingName(node.initializer) ? visitVariableDeclarationListWithCollidingNames(node.initializer, /*hasReceiver*/ true) : ts.visitNode(node.initializer, visitor, ts.isForInitializer), ts.visitNode(node.expression, visitor, ts.isExpression), ts.visitIterationBody(node.statement, asyncBodyVisitor, context)); } function visitForOfStatementInAsyncBody(node) { return factory.updateForOfStatement(node, ts.visitNode(node.awaitModifier, visitor, ts.isToken), isVariableDeclarationListWithCollidingName(node.initializer) ? visitVariableDeclarationListWithCollidingNames(node.initializer, /*hasReceiver*/ true) : ts.visitNode(node.initializer, visitor, ts.isForInitializer), ts.visitNode(node.expression, visitor, ts.isExpression), ts.visitIterationBody(node.statement, asyncBodyVisitor, context)); } function visitForStatementInAsyncBody(node) { var initializer = node.initializer; // TODO: GH#18217 return factory.updateForStatement(node, isVariableDeclarationListWithCollidingName(initializer) ? visitVariableDeclarationListWithCollidingNames(initializer, /*hasReceiver*/ false) : ts.visitNode(node.initializer, visitor, ts.isForInitializer), ts.visitNode(node.condition, visitor, ts.isExpression), ts.visitNode(node.incrementor, visitor, ts.isExpression), ts.visitIterationBody(node.statement, asyncBodyVisitor, context)); } /** * Visits an AwaitExpression node. * * This function will be called any time a ES2017 await expression is encountered. * * @param node The node to visit. */ function visitAwaitExpression(node) { // do not downlevel a top-level await as it is module syntax... if (inTopLevelContext()) { return ts.visitEachChild(node, visitor, context); } return ts.setOriginalNode(ts.setTextRange(factory.createYieldExpression( /*asteriskToken*/ undefined, ts.visitNode(node.expression, visitor, ts.isExpression)), node), node); } /** * Visits a MethodDeclaration node. * * This function will be called when one of the following conditions are met: * - The node is marked as async * * @param node The node to visit. */ function visitMethodDeclaration(node) { return factory.updateMethodDeclaration(node, /*decorators*/ undefined, ts.visitNodes(node.modifiers, visitor, ts.isModifier), node.asteriskToken, node.name, /*questionToken*/ undefined, /*typeParameters*/ undefined, ts.visitParameterList(node.parameters, visitor, context), /*type*/ undefined, ts.getFunctionFlags(node) & 2 /* FunctionFlags.Async */ ? transformAsyncFunctionBody(node) : ts.visitFunctionBody(node.body, visitor, context)); } /** * Visits a FunctionDeclaration node. * * This function will be called when one of the following conditions are met: * - The node is marked async * * @param node The node to visit. */ function visitFunctionDeclaration(node) { return factory.updateFunctionDeclaration(node, /*decorators*/ undefined, ts.visitNodes(node.modifiers, visitor, ts.isModifier), node.asteriskToken, node.name, /*typeParameters*/ undefined, ts.visitParameterList(node.parameters, visitor, context), /*type*/ undefined, ts.getFunctionFlags(node) & 2 /* FunctionFlags.Async */ ? transformAsyncFunctionBody(node) : ts.visitFunctionBody(node.body, visitor, context)); } /** * Visits a FunctionExpression node. * * This function will be called when one of the following conditions are met: * - The node is marked async * * @param node The node to visit. */ function visitFunctionExpression(node) { return factory.updateFunctionExpression(node, ts.visitNodes(node.modifiers, visitor, ts.isModifier), node.asteriskToken, node.name, /*typeParameters*/ undefined, ts.visitParameterList(node.parameters, visitor, context), /*type*/ undefined, ts.getFunctionFlags(node) & 2 /* FunctionFlags.Async */ ? transformAsyncFunctionBody(node) : ts.visitFunctionBody(node.body, visitor, context)); } /** * Visits an ArrowFunction. * * This function will be called when one of the following conditions are met: * - The node is marked async * * @param node The node to visit. */ function visitArrowFunction(node) { return factory.updateArrowFunction(node, ts.visitNodes(node.modifiers, visitor, ts.isModifier), /*typeParameters*/ undefined, ts.visitParameterList(node.parameters, visitor, context), /*type*/ undefined, node.equalsGreaterThanToken, ts.getFunctionFlags(node) & 2 /* FunctionFlags.Async */ ? transformAsyncFunctionBody(node) : ts.visitFunctionBody(node.body, visitor, context)); } function recordDeclarationName(_a, names) { var name = _a.name; if (ts.isIdentifier(name)) { names.add(name.escapedText); } else { for (var _i = 0, _b = name.elements; _i < _b.length; _i++) { var element = _b[_i]; if (!ts.isOmittedExpression(element)) { recordDeclarationName(element, names); } } } } function isVariableDeclarationListWithCollidingName(node) { return !!node && ts.isVariableDeclarationList(node) && !(node.flags & 3 /* NodeFlags.BlockScoped */) && node.declarations.some(collidesWithParameterName); } function visitVariableDeclarationListWithCollidingNames(node, hasReceiver) { hoistVariableDeclarationList(node); var variables = ts.getInitializedVariables(node); if (variables.length === 0) { if (hasReceiver) { return ts.visitNode(factory.converters.convertToAssignmentElementTarget(node.declarations[0].name), visitor, ts.isExpression); } return undefined; } return factory.inlineExpressions(ts.map(variables, transformInitializedVariable)); } function hoistVariableDeclarationList(node) { ts.forEach(node.declarations, hoistVariable); } function hoistVariable(_a) { var name = _a.name; if (ts.isIdentifier(name)) { hoistVariableDeclaration(name); } else { for (var _i = 0, _b = name.elements; _i < _b.length; _i++) { var element = _b[_i]; if (!ts.isOmittedExpression(element)) { hoistVariable(element); } } } } function transformInitializedVariable(node) { var converted = ts.setSourceMapRange(factory.createAssignment(factory.converters.convertToAssignmentElementTarget(node.name), node.initializer), node); return ts.visitNode(converted, visitor, ts.isExpression); } function collidesWithParameterName(_a) { var name = _a.name; if (ts.isIdentifier(name)) { return enclosingFunctionParameterNames.has(name.escapedText); } else { for (var _i = 0, _b = name.elements; _i < _b.length; _i++) { var element = _b[_i]; if (!ts.isOmittedExpression(element) && collidesWithParameterName(element)) { return true; } } } return false; } function transformAsyncFunctionBody(node) { resumeLexicalEnvironment(); var original = ts.getOriginalNode(node, ts.isFunctionLike); var nodeType = original.type; var promiseConstructor = languageVersion < 2 /* ScriptTarget.ES2015 */ ? getPromiseConstructor(nodeType) : undefined; var isArrowFunction = node.kind === 214 /* SyntaxKind.ArrowFunction */; var hasLexicalArguments = (resolver.getNodeCheckFlags(node) & 8192 /* NodeCheckFlags.CaptureArguments */) !== 0; // An async function is emit as an outer function that calls an inner // generator function. To preserve lexical bindings, we pass the current // `this` and `arguments` objects to `__awaiter`. The generator function // passed to `__awaiter` is executed inside of the callback to the // promise constructor. var savedEnclosingFunctionParameterNames = enclosingFunctionParameterNames; enclosingFunctionParameterNames = new ts.Set(); for (var _i = 0, _a = node.parameters; _i < _a.length; _i++) { var parameter = _a[_i]; recordDeclarationName(parameter, enclosingFunctionParameterNames); } var savedCapturedSuperProperties = capturedSuperProperties; var savedHasSuperElementAccess = hasSuperElementAccess; if (!isArrowFunction) { capturedSuperProperties = new ts.Set(); hasSuperElementAccess = false; } var result; if (!isArrowFunction) { var statements = []; var statementOffset = factory.copyPrologue(node.body.statements, statements, /*ensureUseStrict*/ false, visitor); statements.push(factory.createReturnStatement(emitHelpers().createAwaiterHelper(inHasLexicalThisContext(), hasLexicalArguments, promiseConstructor, transformAsyncFunctionBodyWorker(node.body, statementOffset)))); ts.insertStatementsAfterStandardPrologue(statements, endLexicalEnvironment()); // Minor optimization, emit `_super` helper to capture `super` access in an arrow. // This step isn't needed if we eventually transform this to ES5. var emitSuperHelpers = languageVersion >= 2 /* ScriptTarget.ES2015 */ && resolver.getNodeCheckFlags(node) & (4096 /* NodeCheckFlags.AsyncMethodWithSuperBinding */ | 2048 /* NodeCheckFlags.AsyncMethodWithSuper */); if (emitSuperHelpers) { enableSubstitutionForAsyncMethodsWithSuper(); if (capturedSuperProperties.size) { var variableStatement = createSuperAccessVariableStatement(factory, resolver, node, capturedSuperProperties); substitutedSuperAccessors[ts.getNodeId(variableStatement)] = true; ts.insertStatementsAfterStandardPrologue(statements, [variableStatement]); } } var block = factory.createBlock(statements, /*multiLine*/ true); ts.setTextRange(block, node.body); if (emitSuperHelpers && hasSuperElementAccess) { // Emit helpers for super element access expressions (`super[x]`). if (resolver.getNodeCheckFlags(node) & 4096 /* NodeCheckFlags.AsyncMethodWithSuperBinding */) { ts.addEmitHelper(block, ts.advancedAsyncSuperHelper); } else if (resolver.getNodeCheckFlags(node) & 2048 /* NodeCheckFlags.AsyncMethodWithSuper */) { ts.addEmitHelper(block, ts.asyncSuperHelper); } } result = block; } else { var expression = emitHelpers().createAwaiterHelper(inHasLexicalThisContext(), hasLexicalArguments, promiseConstructor, transformAsyncFunctionBodyWorker(node.body)); var declarations = endLexicalEnvironment(); if (ts.some(declarations)) { var block = factory.converters.convertToFunctionBlock(expression); result = factory.updateBlock(block, ts.setTextRange(factory.createNodeArray(ts.concatenate(declarations, block.statements)), block.statements)); } else { result = expression; } } enclosingFunctionParameterNames = savedEnclosingFunctionParameterNames; if (!isArrowFunction) { capturedSuperProperties = savedCapturedSuperProperties; hasSuperElementAccess = savedHasSuperElementAccess; } return result; } function transformAsyncFunctionBodyWorker(body, start) { if (ts.isBlock(body)) { return factory.updateBlock(body, ts.visitNodes(body.statements, asyncBodyVisitor, ts.isStatement, start)); } else { return factory.converters.convertToFunctionBlock(ts.visitNode(body, asyncBodyVisitor, ts.isConciseBody)); } } function getPromiseConstructor(type) { var typeName = type && ts.getEntityNameFromTypeNode(type); if (typeName && ts.isEntityName(typeName)) { var serializationKind = resolver.getTypeReferenceSerializationKind(typeName); if (serializationKind === ts.TypeReferenceSerializationKind.TypeWithConstructSignatureAndValue || serializationKind === ts.TypeReferenceSerializationKind.Unknown) { return typeName; } } return undefined; } function enableSubstitutionForAsyncMethodsWithSuper() { if ((enabledSubstitutions & 1 /* ES2017SubstitutionFlags.AsyncMethodsWithSuper */) === 0) { enabledSubstitutions |= 1 /* ES2017SubstitutionFlags.AsyncMethodsWithSuper */; // We need to enable substitutions for call, property access, and element access // if we need to rewrite super calls. context.enableSubstitution(208 /* SyntaxKind.CallExpression */); context.enableSubstitution(206 /* SyntaxKind.PropertyAccessExpression */); context.enableSubstitution(207 /* SyntaxKind.ElementAccessExpression */); // We need to be notified when entering and exiting declarations that bind super. context.enableEmitNotification(257 /* SyntaxKind.ClassDeclaration */); context.enableEmitNotification(169 /* SyntaxKind.MethodDeclaration */); context.enableEmitNotification(172 /* SyntaxKind.GetAccessor */); context.enableEmitNotification(173 /* SyntaxKind.SetAccessor */); context.enableEmitNotification(171 /* SyntaxKind.Constructor */); // We need to be notified when entering the generated accessor arrow functions. context.enableEmitNotification(237 /* SyntaxKind.VariableStatement */); } } /** * Hook for node emit. * * @param hint A hint as to the intended usage of the node. * @param node The node to emit. * @param emit A callback used to emit the node in the printer. */ function onEmitNode(hint, node, emitCallback) { // If we need to support substitutions for `super` in an async method, // we should track it here. if (enabledSubstitutions & 1 /* ES2017SubstitutionFlags.AsyncMethodsWithSuper */ && isSuperContainer(node)) { var superContainerFlags = resolver.getNodeCheckFlags(node) & (2048 /* NodeCheckFlags.AsyncMethodWithSuper */ | 4096 /* NodeCheckFlags.AsyncMethodWithSuperBinding */); if (superContainerFlags !== enclosingSuperContainerFlags) { var savedEnclosingSuperContainerFlags = enclosingSuperContainerFlags; enclosingSuperContainerFlags = superContainerFlags; previousOnEmitNode(hint, node, emitCallback); enclosingSuperContainerFlags = savedEnclosingSuperContainerFlags; return; } } // Disable substitution in the generated super accessor itself. else if (enabledSubstitutions && substitutedSuperAccessors[ts.getNodeId(node)]) { var savedEnclosingSuperContainerFlags = enclosingSuperContainerFlags; enclosingSuperContainerFlags = 0; previousOnEmitNode(hint, node, emitCallback); enclosingSuperContainerFlags = savedEnclosingSuperContainerFlags; return; } previousOnEmitNode(hint, node, emitCallback); } /** * Hooks node substitutions. * * @param hint A hint as to the intended usage of the node. * @param node The node to substitute. */ function onSubstituteNode(hint, node) { node = previousOnSubstituteNode(hint, node); if (hint === 1 /* EmitHint.Expression */ && enclosingSuperContainerFlags) { return substituteExpression(node); } return node; } function substituteExpression(node) { switch (node.kind) { case 206 /* SyntaxKind.PropertyAccessExpression */: return substitutePropertyAccessExpression(node); case 207 /* SyntaxKind.ElementAccessExpression */: return substituteElementAccessExpression(node); case 208 /* SyntaxKind.CallExpression */: return substituteCallExpression(node); } return node; } function substitutePropertyAccessExpression(node) { if (node.expression.kind === 106 /* SyntaxKind.SuperKeyword */) { return ts.setTextRange(factory.createPropertyAccessExpression(factory.createUniqueName("_super", 16 /* GeneratedIdentifierFlags.Optimistic */ | 32 /* GeneratedIdentifierFlags.FileLevel */), node.name), node); } return node; } function substituteElementAccessExpression(node) { if (node.expression.kind === 106 /* SyntaxKind.SuperKeyword */) { return createSuperElementAccessInAsyncMethod(node.argumentExpression, node); } return node; } function substituteCallExpression(node) { var expression = node.expression; if (ts.isSuperProperty(expression)) { var argumentExpression = ts.isPropertyAccessExpression(expression) ? substitutePropertyAccessExpression(expression) : substituteElementAccessExpression(expression); return factory.createCallExpression(factory.createPropertyAccessExpression(argumentExpression, "call"), /*typeArguments*/ undefined, __spreadArray([ factory.createThis() ], node.arguments, true)); } return node; } function isSuperContainer(node) { var kind = node.kind; return kind === 257 /* SyntaxKind.ClassDeclaration */ || kind === 171 /* SyntaxKind.Constructor */ || kind === 169 /* SyntaxKind.MethodDeclaration */ || kind === 172 /* SyntaxKind.GetAccessor */ || kind === 173 /* SyntaxKind.SetAccessor */; } function createSuperElementAccessInAsyncMethod(argumentExpression, location) { if (enclosingSuperContainerFlags & 4096 /* NodeCheckFlags.AsyncMethodWithSuperBinding */) { return ts.setTextRange(factory.createPropertyAccessExpression(factory.createCallExpression(factory.createUniqueName("_superIndex", 16 /* GeneratedIdentifierFlags.Optimistic */ | 32 /* GeneratedIdentifierFlags.FileLevel */), /*typeArguments*/ undefined, [argumentExpression]), "value"), location); } else { return ts.setTextRange(factory.createCallExpression(factory.createUniqueName("_superIndex", 16 /* GeneratedIdentifierFlags.Optimistic */ | 32 /* GeneratedIdentifierFlags.FileLevel */), /*typeArguments*/ undefined, [argumentExpression]), location); } } } ts.transformES2017 = transformES2017; /** Creates a variable named `_super` with accessor properties for the given property names. */ function createSuperAccessVariableStatement(factory, resolver, node, names) { // Create a variable declaration with a getter/setter (if binding) definition for each name: // const _super = Object.create(null, { x: { get: () => super.x, set: (v) => super.x = v }, ... }); var hasBinding = (resolver.getNodeCheckFlags(node) & 4096 /* NodeCheckFlags.AsyncMethodWithSuperBinding */) !== 0; var accessors = []; names.forEach(function (_, key) { var name = ts.unescapeLeadingUnderscores(key); var getterAndSetter = []; getterAndSetter.push(factory.createPropertyAssignment("get", factory.createArrowFunction( /* modifiers */ undefined, /* typeParameters */ undefined, /* parameters */ [], /* type */ undefined, /* equalsGreaterThanToken */ undefined, ts.setEmitFlags(factory.createPropertyAccessExpression(ts.setEmitFlags(factory.createSuper(), 4 /* EmitFlags.NoSubstitution */), name), 4 /* EmitFlags.NoSubstitution */)))); if (hasBinding) { getterAndSetter.push(factory.createPropertyAssignment("set", factory.createArrowFunction( /* modifiers */ undefined, /* typeParameters */ undefined, /* parameters */ [ factory.createParameterDeclaration( /* decorators */ undefined, /* modifiers */ undefined, /* dotDotDotToken */ undefined, "v", /* questionToken */ undefined, /* type */ undefined, /* initializer */ undefined) ], /* type */ undefined, /* equalsGreaterThanToken */ undefined, factory.createAssignment(ts.setEmitFlags(factory.createPropertyAccessExpression(ts.setEmitFlags(factory.createSuper(), 4 /* EmitFlags.NoSubstitution */), name), 4 /* EmitFlags.NoSubstitution */), factory.createIdentifier("v"))))); } accessors.push(factory.createPropertyAssignment(name, factory.createObjectLiteralExpression(getterAndSetter))); }); return factory.createVariableStatement( /* modifiers */ undefined, factory.createVariableDeclarationList([ factory.createVariableDeclaration(factory.createUniqueName("_super", 16 /* GeneratedIdentifierFlags.Optimistic */ | 32 /* GeneratedIdentifierFlags.FileLevel */), /*exclamationToken*/ undefined, /* type */ undefined, factory.createCallExpression(factory.createPropertyAccessExpression(factory.createIdentifier("Object"), "create"), /* typeArguments */ undefined, [ factory.createNull(), factory.createObjectLiteralExpression(accessors, /* multiline */ true) ])) ], 2 /* NodeFlags.Const */)); } ts.createSuperAccessVariableStatement = createSuperAccessVariableStatement; })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { var ESNextSubstitutionFlags; (function (ESNextSubstitutionFlags) { /** Enables substitutions for async methods with `super` calls. */ ESNextSubstitutionFlags[ESNextSubstitutionFlags["AsyncMethodsWithSuper"] = 1] = "AsyncMethodsWithSuper"; })(ESNextSubstitutionFlags || (ESNextSubstitutionFlags = {})); // Facts we track as we traverse the tree var HierarchyFacts; (function (HierarchyFacts) { HierarchyFacts[HierarchyFacts["None"] = 0] = "None"; // // Ancestor facts // HierarchyFacts[HierarchyFacts["HasLexicalThis"] = 1] = "HasLexicalThis"; HierarchyFacts[HierarchyFacts["IterationContainer"] = 2] = "IterationContainer"; // NOTE: do not add more ancestor flags without also updating AncestorFactsMask below. // // Ancestor masks // HierarchyFacts[HierarchyFacts["AncestorFactsMask"] = 3] = "AncestorFactsMask"; HierarchyFacts[HierarchyFacts["SourceFileIncludes"] = 1] = "SourceFileIncludes"; HierarchyFacts[HierarchyFacts["SourceFileExcludes"] = 2] = "SourceFileExcludes"; HierarchyFacts[HierarchyFacts["StrictModeSourceFileIncludes"] = 0] = "StrictModeSourceFileIncludes"; HierarchyFacts[HierarchyFacts["ClassOrFunctionIncludes"] = 1] = "ClassOrFunctionIncludes"; HierarchyFacts[HierarchyFacts["ClassOrFunctionExcludes"] = 2] = "ClassOrFunctionExcludes"; HierarchyFacts[HierarchyFacts["ArrowFunctionIncludes"] = 0] = "ArrowFunctionIncludes"; HierarchyFacts[HierarchyFacts["ArrowFunctionExcludes"] = 2] = "ArrowFunctionExcludes"; HierarchyFacts[HierarchyFacts["IterationStatementIncludes"] = 2] = "IterationStatementIncludes"; HierarchyFacts[HierarchyFacts["IterationStatementExcludes"] = 0] = "IterationStatementExcludes"; })(HierarchyFacts || (HierarchyFacts = {})); function transformES2018(context) { var factory = context.factory, emitHelpers = context.getEmitHelperFactory, resumeLexicalEnvironment = context.resumeLexicalEnvironment, endLexicalEnvironment = context.endLexicalEnvironment, hoistVariableDeclaration = context.hoistVariableDeclaration; var resolver = context.getEmitResolver(); var compilerOptions = context.getCompilerOptions(); var languageVersion = ts.getEmitScriptTarget(compilerOptions); var previousOnEmitNode = context.onEmitNode; context.onEmitNode = onEmitNode; var previousOnSubstituteNode = context.onSubstituteNode; context.onSubstituteNode = onSubstituteNode; var exportedVariableStatement = false; var enabledSubstitutions; var enclosingFunctionFlags; var parametersWithPrecedingObjectRestOrSpread; var enclosingSuperContainerFlags = 0; var hierarchyFacts = 0; var currentSourceFile; var taggedTemplateStringDeclarations; /** Keeps track of property names accessed on super (`super.x`) within async functions. */ var capturedSuperProperties; /** Whether the async function contains an element access on super (`super[x]`). */ var hasSuperElementAccess; /** A set of node IDs for generated super accessors. */ var substitutedSuperAccessors = []; return ts.chainBundle(context, transformSourceFile); function affectsSubtree(excludeFacts, includeFacts) { return hierarchyFacts !== (hierarchyFacts & ~excludeFacts | includeFacts); } /** * Sets the `HierarchyFacts` for this node prior to visiting this node's subtree, returning the facts set prior to modification. * @param excludeFacts The existing `HierarchyFacts` to reset before visiting the subtree. * @param includeFacts The new `HierarchyFacts` to set before visiting the subtree. */ function enterSubtree(excludeFacts, includeFacts) { var ancestorFacts = hierarchyFacts; hierarchyFacts = (hierarchyFacts & ~excludeFacts | includeFacts) & 3 /* HierarchyFacts.AncestorFactsMask */; return ancestorFacts; } /** * Restores the `HierarchyFacts` for this node's ancestor after visiting this node's * subtree. * @param ancestorFacts The `HierarchyFacts` of the ancestor to restore after visiting the subtree. */ function exitSubtree(ancestorFacts) { hierarchyFacts = ancestorFacts; } function recordTaggedTemplateString(temp) { taggedTemplateStringDeclarations = ts.append(taggedTemplateStringDeclarations, factory.createVariableDeclaration(temp)); } function transformSourceFile(node) { if (node.isDeclarationFile) { return node; } currentSourceFile = node; var visited = visitSourceFile(node); ts.addEmitHelpers(visited, context.readEmitHelpers()); currentSourceFile = undefined; taggedTemplateStringDeclarations = undefined; return visited; } function visitor(node) { return visitorWorker(node, /*expressionResultIsUnused*/ false); } function visitorWithUnusedExpressionResult(node) { return visitorWorker(node, /*expressionResultIsUnused*/ true); } function visitorNoAsyncModifier(node) { if (node.kind === 131 /* SyntaxKind.AsyncKeyword */) { return undefined; } return node; } function doWithHierarchyFacts(cb, value, excludeFacts, includeFacts) { if (affectsSubtree(excludeFacts, includeFacts)) { var ancestorFacts = enterSubtree(excludeFacts, includeFacts); var result = cb(value); exitSubtree(ancestorFacts); return result; } return cb(value); } function visitDefault(node) { return ts.visitEachChild(node, visitor, context); } /** * @param expressionResultIsUnused Indicates the result of an expression is unused by the parent node (i.e., the left side of a comma or the * expression of an `ExpressionStatement`). */ function visitorWorker(node, expressionResultIsUnused) { if ((node.transformFlags & 128 /* TransformFlags.ContainsES2018 */) === 0) { return node; } switch (node.kind) { case 218 /* SyntaxKind.AwaitExpression */: return visitAwaitExpression(node); case 224 /* SyntaxKind.YieldExpression */: return visitYieldExpression(node); case 247 /* SyntaxKind.ReturnStatement */: return visitReturnStatement(node); case 250 /* SyntaxKind.LabeledStatement */: return visitLabeledStatement(node); case 205 /* SyntaxKind.ObjectLiteralExpression */: return visitObjectLiteralExpression(node); case 221 /* SyntaxKind.BinaryExpression */: return visitBinaryExpression(node, expressionResultIsUnused); case 351 /* SyntaxKind.CommaListExpression */: return visitCommaListExpression(node, expressionResultIsUnused); case 292 /* SyntaxKind.CatchClause */: return visitCatchClause(node); case 237 /* SyntaxKind.VariableStatement */: return visitVariableStatement(node); case 254 /* SyntaxKind.VariableDeclaration */: return visitVariableDeclaration(node); case 240 /* SyntaxKind.DoStatement */: case 241 /* SyntaxKind.WhileStatement */: case 243 /* SyntaxKind.ForInStatement */: return doWithHierarchyFacts(visitDefault, node, 0 /* HierarchyFacts.IterationStatementExcludes */, 2 /* HierarchyFacts.IterationStatementIncludes */); case 244 /* SyntaxKind.ForOfStatement */: return visitForOfStatement(node, /*outermostLabeledStatement*/ undefined); case 242 /* SyntaxKind.ForStatement */: return doWithHierarchyFacts(visitForStatement, node, 0 /* HierarchyFacts.IterationStatementExcludes */, 2 /* HierarchyFacts.IterationStatementIncludes */); case 217 /* SyntaxKind.VoidExpression */: return visitVoidExpression(node); case 171 /* SyntaxKind.Constructor */: return doWithHierarchyFacts(visitConstructorDeclaration, node, 2 /* HierarchyFacts.ClassOrFunctionExcludes */, 1 /* HierarchyFacts.ClassOrFunctionIncludes */); case 169 /* SyntaxKind.MethodDeclaration */: return doWithHierarchyFacts(visitMethodDeclaration, node, 2 /* HierarchyFacts.ClassOrFunctionExcludes */, 1 /* HierarchyFacts.ClassOrFunctionIncludes */); case 172 /* SyntaxKind.GetAccessor */: return doWithHierarchyFacts(visitGetAccessorDeclaration, node, 2 /* HierarchyFacts.ClassOrFunctionExcludes */, 1 /* HierarchyFacts.ClassOrFunctionIncludes */); case 173 /* SyntaxKind.SetAccessor */: return doWithHierarchyFacts(visitSetAccessorDeclaration, node, 2 /* HierarchyFacts.ClassOrFunctionExcludes */, 1 /* HierarchyFacts.ClassOrFunctionIncludes */); case 256 /* SyntaxKind.FunctionDeclaration */: return doWithHierarchyFacts(visitFunctionDeclaration, node, 2 /* HierarchyFacts.ClassOrFunctionExcludes */, 1 /* HierarchyFacts.ClassOrFunctionIncludes */); case 213 /* SyntaxKind.FunctionExpression */: return doWithHierarchyFacts(visitFunctionExpression, node, 2 /* HierarchyFacts.ClassOrFunctionExcludes */, 1 /* HierarchyFacts.ClassOrFunctionIncludes */); case 214 /* SyntaxKind.ArrowFunction */: return doWithHierarchyFacts(visitArrowFunction, node, 2 /* HierarchyFacts.ArrowFunctionExcludes */, 0 /* HierarchyFacts.ArrowFunctionIncludes */); case 164 /* SyntaxKind.Parameter */: return visitParameter(node); case 238 /* SyntaxKind.ExpressionStatement */: return visitExpressionStatement(node); case 212 /* SyntaxKind.ParenthesizedExpression */: return visitParenthesizedExpression(node, expressionResultIsUnused); case 210 /* SyntaxKind.TaggedTemplateExpression */: return visitTaggedTemplateExpression(node); case 206 /* SyntaxKind.PropertyAccessExpression */: if (capturedSuperProperties && ts.isPropertyAccessExpression(node) && node.expression.kind === 106 /* SyntaxKind.SuperKeyword */) { capturedSuperProperties.add(node.name.escapedText); } return ts.visitEachChild(node, visitor, context); case 207 /* SyntaxKind.ElementAccessExpression */: if (capturedSuperProperties && node.expression.kind === 106 /* SyntaxKind.SuperKeyword */) { hasSuperElementAccess = true; } return ts.visitEachChild(node, visitor, context); case 257 /* SyntaxKind.ClassDeclaration */: case 226 /* SyntaxKind.ClassExpression */: return doWithHierarchyFacts(visitDefault, node, 2 /* HierarchyFacts.ClassOrFunctionExcludes */, 1 /* HierarchyFacts.ClassOrFunctionIncludes */); default: return ts.visitEachChild(node, visitor, context); } } function visitAwaitExpression(node) { if (enclosingFunctionFlags & 2 /* FunctionFlags.Async */ && enclosingFunctionFlags & 1 /* FunctionFlags.Generator */) { return ts.setOriginalNode(ts.setTextRange(factory.createYieldExpression(/*asteriskToken*/ undefined, emitHelpers().createAwaitHelper(ts.visitNode(node.expression, visitor, ts.isExpression))), /*location*/ node), node); } return ts.visitEachChild(node, visitor, context); } function visitYieldExpression(node) { if (enclosingFunctionFlags & 2 /* FunctionFlags.Async */ && enclosingFunctionFlags & 1 /* FunctionFlags.Generator */) { if (node.asteriskToken) { var expression = ts.visitNode(ts.Debug.checkDefined(node.expression), visitor, ts.isExpression); return ts.setOriginalNode(ts.setTextRange(factory.createYieldExpression( /*asteriskToken*/ undefined, emitHelpers().createAwaitHelper(factory.updateYieldExpression(node, node.asteriskToken, ts.setTextRange(emitHelpers().createAsyncDelegatorHelper(ts.setTextRange(emitHelpers().createAsyncValuesHelper(expression), expression)), expression)))), node), node); } return ts.setOriginalNode(ts.setTextRange(factory.createYieldExpression( /*asteriskToken*/ undefined, createDownlevelAwait(node.expression ? ts.visitNode(node.expression, visitor, ts.isExpression) : factory.createVoidZero())), node), node); } return ts.visitEachChild(node, visitor, context); } function visitReturnStatement(node) { if (enclosingFunctionFlags & 2 /* FunctionFlags.Async */ && enclosingFunctionFlags & 1 /* FunctionFlags.Generator */) { return factory.updateReturnStatement(node, createDownlevelAwait(node.expression ? ts.visitNode(node.expression, visitor, ts.isExpression) : factory.createVoidZero())); } return ts.visitEachChild(node, visitor, context); } function visitLabeledStatement(node) { if (enclosingFunctionFlags & 2 /* FunctionFlags.Async */) { var statement = ts.unwrapInnermostStatementOfLabel(node); if (statement.kind === 244 /* SyntaxKind.ForOfStatement */ && statement.awaitModifier) { return visitForOfStatement(statement, node); } return factory.restoreEnclosingLabel(ts.visitNode(statement, visitor, ts.isStatement, factory.liftToBlock), node); } return ts.visitEachChild(node, visitor, context); } function chunkObjectLiteralElements(elements) { var chunkObject; var objects = []; for (var _i = 0, elements_5 = elements; _i < elements_5.length; _i++) { var e = elements_5[_i]; if (e.kind === 298 /* SyntaxKind.SpreadAssignment */) { if (chunkObject) { objects.push(factory.createObjectLiteralExpression(chunkObject)); chunkObject = undefined; } var target = e.expression; objects.push(ts.visitNode(target, visitor, ts.isExpression)); } else { chunkObject = ts.append(chunkObject, e.kind === 296 /* SyntaxKind.PropertyAssignment */ ? factory.createPropertyAssignment(e.name, ts.visitNode(e.initializer, visitor, ts.isExpression)) : ts.visitNode(e, visitor, ts.isObjectLiteralElementLike)); } } if (chunkObject) { objects.push(factory.createObjectLiteralExpression(chunkObject)); } return objects; } function visitObjectLiteralExpression(node) { if (node.transformFlags & 32768 /* TransformFlags.ContainsObjectRestOrSpread */) { // spread elements emit like so: // non-spread elements are chunked together into object literals, and then all are passed to __assign: // { a, ...o, b } => __assign(__assign({a}, o), {b}); // If the first element is a spread element, then the first argument to __assign is {}: // { ...o, a, b, ...o2 } => __assign(__assign(__assign({}, o), {a, b}), o2) // // We cannot call __assign with more than two elements, since any element could cause side effects. For // example: // var k = { a: 1, b: 2 }; // var o = { a: 3, ...k, b: k.a++ }; // // expected: { a: 1, b: 1 } // If we translate the above to `__assign({ a: 3 }, k, { b: k.a++ })`, the `k.a++` will evaluate before // `k` is spread and we end up with `{ a: 2, b: 1 }`. // // This also occurs for spread elements, not just property assignments: // var k = { a: 1, get b() { l = { z: 9 }; return 2; } }; // var l = { c: 3 }; // var o = { ...k, ...l }; // // expected: { a: 1, b: 2, z: 9 } // If we translate the above to `__assign({}, k, l)`, the `l` will evaluate before `k` is spread and we // end up with `{ a: 1, b: 2, c: 3 }` var objects = chunkObjectLiteralElements(node.properties); if (objects.length && objects[0].kind !== 205 /* SyntaxKind.ObjectLiteralExpression */) { objects.unshift(factory.createObjectLiteralExpression()); } var expression = objects[0]; if (objects.length > 1) { for (var i = 1; i < objects.length; i++) { expression = emitHelpers().createAssignHelper([expression, objects[i]]); } return expression; } else { return emitHelpers().createAssignHelper(objects); } } return ts.visitEachChild(node, visitor, context); } function visitExpressionStatement(node) { return ts.visitEachChild(node, visitorWithUnusedExpressionResult, context); } /** * @param expressionResultIsUnused Indicates the result of an expression is unused by the parent node (i.e., the left side of a comma or the * expression of an `ExpressionStatement`). */ function visitParenthesizedExpression(node, expressionResultIsUnused) { return ts.visitEachChild(node, expressionResultIsUnused ? visitorWithUnusedExpressionResult : visitor, context); } function visitSourceFile(node) { var ancestorFacts = enterSubtree(2 /* HierarchyFacts.SourceFileExcludes */, ts.isEffectiveStrictModeSourceFile(node, compilerOptions) ? 0 /* HierarchyFacts.StrictModeSourceFileIncludes */ : 1 /* HierarchyFacts.SourceFileIncludes */); exportedVariableStatement = false; var visited = ts.visitEachChild(node, visitor, context); var statement = ts.concatenate(visited.statements, taggedTemplateStringDeclarations && [ factory.createVariableStatement(/*modifiers*/ undefined, factory.createVariableDeclarationList(taggedTemplateStringDeclarations)) ]); var result = factory.updateSourceFile(visited, ts.setTextRange(factory.createNodeArray(statement), node.statements)); exitSubtree(ancestorFacts); return result; } function visitTaggedTemplateExpression(node) { return ts.processTaggedTemplateExpression(context, node, visitor, currentSourceFile, recordTaggedTemplateString, ts.ProcessLevel.LiftRestriction); } /** * Visits a BinaryExpression that contains a destructuring assignment. * * @param node A BinaryExpression node. * @param expressionResultIsUnused Indicates the result of an expression is unused by the parent node (i.e., the left side of a comma or the * expression of an `ExpressionStatement`). */ function visitBinaryExpression(node, expressionResultIsUnused) { if (ts.isDestructuringAssignment(node) && node.left.transformFlags & 32768 /* TransformFlags.ContainsObjectRestOrSpread */) { return ts.flattenDestructuringAssignment(node, visitor, context, 1 /* FlattenLevel.ObjectRest */, !expressionResultIsUnused); } if (node.operatorToken.kind === 27 /* SyntaxKind.CommaToken */) { return factory.updateBinaryExpression(node, ts.visitNode(node.left, visitorWithUnusedExpressionResult, ts.isExpression), node.operatorToken, ts.visitNode(node.right, expressionResultIsUnused ? visitorWithUnusedExpressionResult : visitor, ts.isExpression)); } return ts.visitEachChild(node, visitor, context); } /** * @param expressionResultIsUnused Indicates the result of an expression is unused by the parent node (i.e., the left side of a comma or the * expression of an `ExpressionStatement`). */ function visitCommaListExpression(node, expressionResultIsUnused) { if (expressionResultIsUnused) { return ts.visitEachChild(node, visitorWithUnusedExpressionResult, context); } var result; for (var i = 0; i < node.elements.length; i++) { var element = node.elements[i]; var visited = ts.visitNode(element, i < node.elements.length - 1 ? visitorWithUnusedExpressionResult : visitor, ts.isExpression); if (result || visited !== element) { result || (result = node.elements.slice(0, i)); result.push(visited); } } var elements = result ? ts.setTextRange(factory.createNodeArray(result), node.elements) : node.elements; return factory.updateCommaListExpression(node, elements); } function visitCatchClause(node) { if (node.variableDeclaration && ts.isBindingPattern(node.variableDeclaration.name) && node.variableDeclaration.name.transformFlags & 32768 /* TransformFlags.ContainsObjectRestOrSpread */) { var name = factory.getGeneratedNameForNode(node.variableDeclaration.name); var updatedDecl = factory.updateVariableDeclaration(node.variableDeclaration, node.variableDeclaration.name, /*exclamationToken*/ undefined, /*type*/ undefined, name); var visitedBindings = ts.flattenDestructuringBinding(updatedDecl, visitor, context, 1 /* FlattenLevel.ObjectRest */); var block = ts.visitNode(node.block, visitor, ts.isBlock); if (ts.some(visitedBindings)) { block = factory.updateBlock(block, __spreadArray([ factory.createVariableStatement(/*modifiers*/ undefined, visitedBindings) ], block.statements, true)); } return factory.updateCatchClause(node, factory.updateVariableDeclaration(node.variableDeclaration, name, /*exclamationToken*/ undefined, /*type*/ undefined, /*initializer*/ undefined), block); } return ts.visitEachChild(node, visitor, context); } function visitVariableStatement(node) { if (ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */)) { var savedExportedVariableStatement = exportedVariableStatement; exportedVariableStatement = true; var visited = ts.visitEachChild(node, visitor, context); exportedVariableStatement = savedExportedVariableStatement; return visited; } return ts.visitEachChild(node, visitor, context); } /** * Visits a VariableDeclaration node with a binding pattern. * * @param node A VariableDeclaration node. */ function visitVariableDeclaration(node) { if (exportedVariableStatement) { var savedExportedVariableStatement = exportedVariableStatement; exportedVariableStatement = false; var visited = visitVariableDeclarationWorker(node, /*exportedVariableStatement*/ true); exportedVariableStatement = savedExportedVariableStatement; return visited; } return visitVariableDeclarationWorker(node, /*exportedVariableStatement*/ false); } function visitVariableDeclarationWorker(node, exportedVariableStatement) { // If we are here it is because the name contains a binding pattern with a rest somewhere in it. if (ts.isBindingPattern(node.name) && node.name.transformFlags & 32768 /* TransformFlags.ContainsObjectRestOrSpread */) { return ts.flattenDestructuringBinding(node, visitor, context, 1 /* FlattenLevel.ObjectRest */, /*rval*/ undefined, exportedVariableStatement); } return ts.visitEachChild(node, visitor, context); } function visitForStatement(node) { return factory.updateForStatement(node, ts.visitNode(node.initializer, visitorWithUnusedExpressionResult, ts.isForInitializer), ts.visitNode(node.condition, visitor, ts.isExpression), ts.visitNode(node.incrementor, visitorWithUnusedExpressionResult, ts.isExpression), ts.visitIterationBody(node.statement, visitor, context)); } function visitVoidExpression(node) { return ts.visitEachChild(node, visitorWithUnusedExpressionResult, context); } /** * Visits a ForOfStatement and converts it into a ES2015-compatible ForOfStatement. * * @param node A ForOfStatement. */ function visitForOfStatement(node, outermostLabeledStatement) { var ancestorFacts = enterSubtree(0 /* HierarchyFacts.IterationStatementExcludes */, 2 /* HierarchyFacts.IterationStatementIncludes */); if (node.initializer.transformFlags & 32768 /* TransformFlags.ContainsObjectRestOrSpread */) { node = transformForOfStatementWithObjectRest(node); } var result = node.awaitModifier ? transformForAwaitOfStatement(node, outermostLabeledStatement, ancestorFacts) : factory.restoreEnclosingLabel(ts.visitEachChild(node, visitor, context), outermostLabeledStatement); exitSubtree(ancestorFacts); return result; } function transformForOfStatementWithObjectRest(node) { var initializerWithoutParens = ts.skipParentheses(node.initializer); if (ts.isVariableDeclarationList(initializerWithoutParens) || ts.isAssignmentPattern(initializerWithoutParens)) { var bodyLocation = void 0; var statementsLocation = void 0; var temp = factory.createTempVariable(/*recordTempVariable*/ undefined); var statements = [ts.createForOfBindingStatement(factory, initializerWithoutParens, temp)]; if (ts.isBlock(node.statement)) { ts.addRange(statements, node.statement.statements); bodyLocation = node.statement; statementsLocation = node.statement.statements; } else if (node.statement) { ts.append(statements, node.statement); bodyLocation = node.statement; statementsLocation = node.statement; } return factory.updateForOfStatement(node, node.awaitModifier, ts.setTextRange(factory.createVariableDeclarationList([ ts.setTextRange(factory.createVariableDeclaration(temp), node.initializer) ], 1 /* NodeFlags.Let */), node.initializer), node.expression, ts.setTextRange(factory.createBlock(ts.setTextRange(factory.createNodeArray(statements), statementsLocation), /*multiLine*/ true), bodyLocation)); } return node; } function convertForOfStatementHead(node, boundValue) { var binding = ts.createForOfBindingStatement(factory, node.initializer, boundValue); var bodyLocation; var statementsLocation; var statements = [ts.visitNode(binding, visitor, ts.isStatement)]; var statement = ts.visitIterationBody(node.statement, visitor, context); if (ts.isBlock(statement)) { ts.addRange(statements, statement.statements); bodyLocation = statement; statementsLocation = statement.statements; } else { statements.push(statement); } return ts.setEmitFlags(ts.setTextRange(factory.createBlock(ts.setTextRange(factory.createNodeArray(statements), statementsLocation), /*multiLine*/ true), bodyLocation), 48 /* EmitFlags.NoSourceMap */ | 384 /* EmitFlags.NoTokenSourceMaps */); } function createDownlevelAwait(expression) { return enclosingFunctionFlags & 1 /* FunctionFlags.Generator */ ? factory.createYieldExpression(/*asteriskToken*/ undefined, emitHelpers().createAwaitHelper(expression)) : factory.createAwaitExpression(expression); } function transformForAwaitOfStatement(node, outermostLabeledStatement, ancestorFacts) { var expression = ts.visitNode(node.expression, visitor, ts.isExpression); var iterator = ts.isIdentifier(expression) ? factory.getGeneratedNameForNode(expression) : factory.createTempVariable(/*recordTempVariable*/ undefined); var result = ts.isIdentifier(expression) ? factory.getGeneratedNameForNode(iterator) : factory.createTempVariable(/*recordTempVariable*/ undefined); var errorRecord = factory.createUniqueName("e"); var catchVariable = factory.getGeneratedNameForNode(errorRecord); var returnMethod = factory.createTempVariable(/*recordTempVariable*/ undefined); var callValues = ts.setTextRange(emitHelpers().createAsyncValuesHelper(expression), node.expression); var callNext = factory.createCallExpression(factory.createPropertyAccessExpression(iterator, "next"), /*typeArguments*/ undefined, []); var getDone = factory.createPropertyAccessExpression(result, "done"); var getValue = factory.createPropertyAccessExpression(result, "value"); var callReturn = factory.createFunctionCallCall(returnMethod, iterator, []); hoistVariableDeclaration(errorRecord); hoistVariableDeclaration(returnMethod); // if we are enclosed in an outer loop ensure we reset 'errorRecord' per each iteration var initializer = ancestorFacts & 2 /* HierarchyFacts.IterationContainer */ ? factory.inlineExpressions([factory.createAssignment(errorRecord, factory.createVoidZero()), callValues]) : callValues; var forStatement = ts.setEmitFlags(ts.setTextRange(factory.createForStatement( /*initializer*/ ts.setEmitFlags(ts.setTextRange(factory.createVariableDeclarationList([ ts.setTextRange(factory.createVariableDeclaration(iterator, /*exclamationToken*/ undefined, /*type*/ undefined, initializer), node.expression), factory.createVariableDeclaration(result) ]), node.expression), 2097152 /* EmitFlags.NoHoisting */), /*condition*/ factory.createComma(factory.createAssignment(result, createDownlevelAwait(callNext)), factory.createLogicalNot(getDone)), /*incrementor*/ undefined, /*statement*/ convertForOfStatementHead(node, getValue)), /*location*/ node), 256 /* EmitFlags.NoTokenTrailingSourceMaps */); ts.setOriginalNode(forStatement, node); return factory.createTryStatement(factory.createBlock([ factory.restoreEnclosingLabel(forStatement, outermostLabeledStatement) ]), factory.createCatchClause(factory.createVariableDeclaration(catchVariable), ts.setEmitFlags(factory.createBlock([ factory.createExpressionStatement(factory.createAssignment(errorRecord, factory.createObjectLiteralExpression([ factory.createPropertyAssignment("error", catchVariable) ]))) ]), 1 /* EmitFlags.SingleLine */)), factory.createBlock([ factory.createTryStatement( /*tryBlock*/ factory.createBlock([ ts.setEmitFlags(factory.createIfStatement(factory.createLogicalAnd(factory.createLogicalAnd(result, factory.createLogicalNot(getDone)), factory.createAssignment(returnMethod, factory.createPropertyAccessExpression(iterator, "return"))), factory.createExpressionStatement(createDownlevelAwait(callReturn))), 1 /* EmitFlags.SingleLine */) ]), /*catchClause*/ undefined, /*finallyBlock*/ ts.setEmitFlags(factory.createBlock([ ts.setEmitFlags(factory.createIfStatement(errorRecord, factory.createThrowStatement(factory.createPropertyAccessExpression(errorRecord, "error"))), 1 /* EmitFlags.SingleLine */) ]), 1 /* EmitFlags.SingleLine */)) ])); } function parameterVisitor(node) { ts.Debug.assertNode(node, ts.isParameter); return visitParameter(node); } function visitParameter(node) { if (parametersWithPrecedingObjectRestOrSpread === null || parametersWithPrecedingObjectRestOrSpread === void 0 ? void 0 : parametersWithPrecedingObjectRestOrSpread.has(node)) { return factory.updateParameterDeclaration(node, /*decorators*/ undefined, /*modifiers*/ undefined, node.dotDotDotToken, ts.isBindingPattern(node.name) ? factory.getGeneratedNameForNode(node) : node.name, /*questionToken*/ undefined, /*type*/ undefined, /*initializer*/ undefined); } if (node.transformFlags & 32768 /* TransformFlags.ContainsObjectRestOrSpread */) { // Binding patterns are converted into a generated name and are // evaluated inside the function body. return factory.updateParameterDeclaration(node, /*decorators*/ undefined, /*modifiers*/ undefined, node.dotDotDotToken, factory.getGeneratedNameForNode(node), /*questionToken*/ undefined, /*type*/ undefined, ts.visitNode(node.initializer, visitor, ts.isExpression)); } return ts.visitEachChild(node, visitor, context); } function collectParametersWithPrecedingObjectRestOrSpread(node) { var parameters; for (var _i = 0, _a = node.parameters; _i < _a.length; _i++) { var parameter = _a[_i]; if (parameters) { parameters.add(parameter); } else if (parameter.transformFlags & 32768 /* TransformFlags.ContainsObjectRestOrSpread */) { parameters = new ts.Set(); } } return parameters; } function visitConstructorDeclaration(node) { var savedEnclosingFunctionFlags = enclosingFunctionFlags; var savedParametersWithPrecedingObjectRestOrSpread = parametersWithPrecedingObjectRestOrSpread; enclosingFunctionFlags = ts.getFunctionFlags(node); parametersWithPrecedingObjectRestOrSpread = collectParametersWithPrecedingObjectRestOrSpread(node); var updated = factory.updateConstructorDeclaration(node, /*decorators*/ undefined, node.modifiers, ts.visitParameterList(node.parameters, parameterVisitor, context), transformFunctionBody(node)); enclosingFunctionFlags = savedEnclosingFunctionFlags; parametersWithPrecedingObjectRestOrSpread = savedParametersWithPrecedingObjectRestOrSpread; return updated; } function visitGetAccessorDeclaration(node) { var savedEnclosingFunctionFlags = enclosingFunctionFlags; var savedParametersWithPrecedingObjectRestOrSpread = parametersWithPrecedingObjectRestOrSpread; enclosingFunctionFlags = ts.getFunctionFlags(node); parametersWithPrecedingObjectRestOrSpread = collectParametersWithPrecedingObjectRestOrSpread(node); var updated = factory.updateGetAccessorDeclaration(node, /*decorators*/ undefined, node.modifiers, ts.visitNode(node.name, visitor, ts.isPropertyName), ts.visitParameterList(node.parameters, parameterVisitor, context), /*type*/ undefined, transformFunctionBody(node)); enclosingFunctionFlags = savedEnclosingFunctionFlags; parametersWithPrecedingObjectRestOrSpread = savedParametersWithPrecedingObjectRestOrSpread; return updated; } function visitSetAccessorDeclaration(node) { var savedEnclosingFunctionFlags = enclosingFunctionFlags; var savedParametersWithPrecedingObjectRestOrSpread = parametersWithPrecedingObjectRestOrSpread; enclosingFunctionFlags = ts.getFunctionFlags(node); parametersWithPrecedingObjectRestOrSpread = collectParametersWithPrecedingObjectRestOrSpread(node); var updated = factory.updateSetAccessorDeclaration(node, /*decorators*/ undefined, node.modifiers, ts.visitNode(node.name, visitor, ts.isPropertyName), ts.visitParameterList(node.parameters, parameterVisitor, context), transformFunctionBody(node)); enclosingFunctionFlags = savedEnclosingFunctionFlags; parametersWithPrecedingObjectRestOrSpread = savedParametersWithPrecedingObjectRestOrSpread; return updated; } function visitMethodDeclaration(node) { var savedEnclosingFunctionFlags = enclosingFunctionFlags; var savedParametersWithPrecedingObjectRestOrSpread = parametersWithPrecedingObjectRestOrSpread; enclosingFunctionFlags = ts.getFunctionFlags(node); parametersWithPrecedingObjectRestOrSpread = collectParametersWithPrecedingObjectRestOrSpread(node); var updated = factory.updateMethodDeclaration(node, /*decorators*/ undefined, enclosingFunctionFlags & 1 /* FunctionFlags.Generator */ ? ts.visitNodes(node.modifiers, visitorNoAsyncModifier, ts.isModifier) : node.modifiers, enclosingFunctionFlags & 2 /* FunctionFlags.Async */ ? undefined : node.asteriskToken, ts.visitNode(node.name, visitor, ts.isPropertyName), ts.visitNode(/*questionToken*/ undefined, visitor, ts.isToken), /*typeParameters*/ undefined, ts.visitParameterList(node.parameters, parameterVisitor, context), /*type*/ undefined, enclosingFunctionFlags & 2 /* FunctionFlags.Async */ && enclosingFunctionFlags & 1 /* FunctionFlags.Generator */ ? transformAsyncGeneratorFunctionBody(node) : transformFunctionBody(node)); enclosingFunctionFlags = savedEnclosingFunctionFlags; parametersWithPrecedingObjectRestOrSpread = savedParametersWithPrecedingObjectRestOrSpread; return updated; } function visitFunctionDeclaration(node) { var savedEnclosingFunctionFlags = enclosingFunctionFlags; var savedParametersWithPrecedingObjectRestOrSpread = parametersWithPrecedingObjectRestOrSpread; enclosingFunctionFlags = ts.getFunctionFlags(node); parametersWithPrecedingObjectRestOrSpread = collectParametersWithPrecedingObjectRestOrSpread(node); var updated = factory.updateFunctionDeclaration(node, /*decorators*/ undefined, enclosingFunctionFlags & 1 /* FunctionFlags.Generator */ ? ts.visitNodes(node.modifiers, visitorNoAsyncModifier, ts.isModifier) : node.modifiers, enclosingFunctionFlags & 2 /* FunctionFlags.Async */ ? undefined : node.asteriskToken, node.name, /*typeParameters*/ undefined, ts.visitParameterList(node.parameters, parameterVisitor, context), /*type*/ undefined, enclosingFunctionFlags & 2 /* FunctionFlags.Async */ && enclosingFunctionFlags & 1 /* FunctionFlags.Generator */ ? transformAsyncGeneratorFunctionBody(node) : transformFunctionBody(node)); enclosingFunctionFlags = savedEnclosingFunctionFlags; parametersWithPrecedingObjectRestOrSpread = savedParametersWithPrecedingObjectRestOrSpread; return updated; } function visitArrowFunction(node) { var savedEnclosingFunctionFlags = enclosingFunctionFlags; var savedParametersWithPrecedingObjectRestOrSpread = parametersWithPrecedingObjectRestOrSpread; enclosingFunctionFlags = ts.getFunctionFlags(node); parametersWithPrecedingObjectRestOrSpread = collectParametersWithPrecedingObjectRestOrSpread(node); var updated = factory.updateArrowFunction(node, node.modifiers, /*typeParameters*/ undefined, ts.visitParameterList(node.parameters, parameterVisitor, context), /*type*/ undefined, node.equalsGreaterThanToken, transformFunctionBody(node)); enclosingFunctionFlags = savedEnclosingFunctionFlags; parametersWithPrecedingObjectRestOrSpread = savedParametersWithPrecedingObjectRestOrSpread; return updated; } function visitFunctionExpression(node) { var savedEnclosingFunctionFlags = enclosingFunctionFlags; var savedParametersWithPrecedingObjectRestOrSpread = parametersWithPrecedingObjectRestOrSpread; enclosingFunctionFlags = ts.getFunctionFlags(node); parametersWithPrecedingObjectRestOrSpread = collectParametersWithPrecedingObjectRestOrSpread(node); var updated = factory.updateFunctionExpression(node, enclosingFunctionFlags & 1 /* FunctionFlags.Generator */ ? ts.visitNodes(node.modifiers, visitorNoAsyncModifier, ts.isModifier) : node.modifiers, enclosingFunctionFlags & 2 /* FunctionFlags.Async */ ? undefined : node.asteriskToken, node.name, /*typeParameters*/ undefined, ts.visitParameterList(node.parameters, parameterVisitor, context), /*type*/ undefined, enclosingFunctionFlags & 2 /* FunctionFlags.Async */ && enclosingFunctionFlags & 1 /* FunctionFlags.Generator */ ? transformAsyncGeneratorFunctionBody(node) : transformFunctionBody(node)); enclosingFunctionFlags = savedEnclosingFunctionFlags; parametersWithPrecedingObjectRestOrSpread = savedParametersWithPrecedingObjectRestOrSpread; return updated; } function transformAsyncGeneratorFunctionBody(node) { resumeLexicalEnvironment(); var statements = []; var statementOffset = factory.copyPrologue(node.body.statements, statements, /*ensureUseStrict*/ false, visitor); appendObjectRestAssignmentsIfNeeded(statements, node); var savedCapturedSuperProperties = capturedSuperProperties; var savedHasSuperElementAccess = hasSuperElementAccess; capturedSuperProperties = new ts.Set(); hasSuperElementAccess = false; var returnStatement = factory.createReturnStatement(emitHelpers().createAsyncGeneratorHelper(factory.createFunctionExpression( /*modifiers*/ undefined, factory.createToken(41 /* SyntaxKind.AsteriskToken */), node.name && factory.getGeneratedNameForNode(node.name), /*typeParameters*/ undefined, /*parameters*/ [], /*type*/ undefined, factory.updateBlock(node.body, ts.visitLexicalEnvironment(node.body.statements, visitor, context, statementOffset))), !!(hierarchyFacts & 1 /* HierarchyFacts.HasLexicalThis */))); // Minor optimization, emit `_super` helper to capture `super` access in an arrow. // This step isn't needed if we eventually transform this to ES5. var emitSuperHelpers = languageVersion >= 2 /* ScriptTarget.ES2015 */ && resolver.getNodeCheckFlags(node) & (4096 /* NodeCheckFlags.AsyncMethodWithSuperBinding */ | 2048 /* NodeCheckFlags.AsyncMethodWithSuper */); if (emitSuperHelpers) { enableSubstitutionForAsyncMethodsWithSuper(); var variableStatement = ts.createSuperAccessVariableStatement(factory, resolver, node, capturedSuperProperties); substitutedSuperAccessors[ts.getNodeId(variableStatement)] = true; ts.insertStatementsAfterStandardPrologue(statements, [variableStatement]); } statements.push(returnStatement); ts.insertStatementsAfterStandardPrologue(statements, endLexicalEnvironment()); var block = factory.updateBlock(node.body, statements); if (emitSuperHelpers && hasSuperElementAccess) { if (resolver.getNodeCheckFlags(node) & 4096 /* NodeCheckFlags.AsyncMethodWithSuperBinding */) { ts.addEmitHelper(block, ts.advancedAsyncSuperHelper); } else if (resolver.getNodeCheckFlags(node) & 2048 /* NodeCheckFlags.AsyncMethodWithSuper */) { ts.addEmitHelper(block, ts.asyncSuperHelper); } } capturedSuperProperties = savedCapturedSuperProperties; hasSuperElementAccess = savedHasSuperElementAccess; return block; } function transformFunctionBody(node) { var _a; resumeLexicalEnvironment(); var statementOffset = 0; var statements = []; var body = (_a = ts.visitNode(node.body, visitor, ts.isConciseBody)) !== null && _a !== void 0 ? _a : factory.createBlock([]); if (ts.isBlock(body)) { statementOffset = factory.copyPrologue(body.statements, statements, /*ensureUseStrict*/ false, visitor); } ts.addRange(statements, appendObjectRestAssignmentsIfNeeded(/*statements*/ undefined, node)); var leadingStatements = endLexicalEnvironment(); if (statementOffset > 0 || ts.some(statements) || ts.some(leadingStatements)) { var block = factory.converters.convertToFunctionBlock(body, /*multiLine*/ true); ts.insertStatementsAfterStandardPrologue(statements, leadingStatements); ts.addRange(statements, block.statements.slice(statementOffset)); return factory.updateBlock(block, ts.setTextRange(factory.createNodeArray(statements), block.statements)); } return body; } function appendObjectRestAssignmentsIfNeeded(statements, node) { var containsPrecedingObjectRestOrSpread = false; for (var _i = 0, _a = node.parameters; _i < _a.length; _i++) { var parameter = _a[_i]; if (containsPrecedingObjectRestOrSpread) { if (ts.isBindingPattern(parameter.name)) { // In cases where a binding pattern is simply '[]' or '{}', // we usually don't want to emit a var declaration; however, in the presence // of an initializer, we must emit that expression to preserve side effects. // // NOTE: see `insertDefaultValueAssignmentForBindingPattern` in es2015.ts if (parameter.name.elements.length > 0) { var declarations = ts.flattenDestructuringBinding(parameter, visitor, context, 0 /* FlattenLevel.All */, factory.getGeneratedNameForNode(parameter)); if (ts.some(declarations)) { var declarationList = factory.createVariableDeclarationList(declarations); var statement = factory.createVariableStatement(/*modifiers*/ undefined, declarationList); ts.setEmitFlags(statement, 1048576 /* EmitFlags.CustomPrologue */); statements = ts.append(statements, statement); } } else if (parameter.initializer) { var name = factory.getGeneratedNameForNode(parameter); var initializer = ts.visitNode(parameter.initializer, visitor, ts.isExpression); var assignment = factory.createAssignment(name, initializer); var statement = factory.createExpressionStatement(assignment); ts.setEmitFlags(statement, 1048576 /* EmitFlags.CustomPrologue */); statements = ts.append(statements, statement); } } else if (parameter.initializer) { // Converts a parameter initializer into a function body statement, i.e.: // // function f(x = 1) { } // // becomes // // function f(x) { // if (typeof x === "undefined") { x = 1; } // } var name = factory.cloneNode(parameter.name); ts.setTextRange(name, parameter.name); ts.setEmitFlags(name, 48 /* EmitFlags.NoSourceMap */); var initializer = ts.visitNode(parameter.initializer, visitor, ts.isExpression); ts.addEmitFlags(initializer, 48 /* EmitFlags.NoSourceMap */ | 1536 /* EmitFlags.NoComments */); var assignment = factory.createAssignment(name, initializer); ts.setTextRange(assignment, parameter); ts.setEmitFlags(assignment, 1536 /* EmitFlags.NoComments */); var block = factory.createBlock([factory.createExpressionStatement(assignment)]); ts.setTextRange(block, parameter); ts.setEmitFlags(block, 1 /* EmitFlags.SingleLine */ | 32 /* EmitFlags.NoTrailingSourceMap */ | 384 /* EmitFlags.NoTokenSourceMaps */ | 1536 /* EmitFlags.NoComments */); var typeCheck = factory.createTypeCheck(factory.cloneNode(parameter.name), "undefined"); var statement = factory.createIfStatement(typeCheck, block); ts.startOnNewLine(statement); ts.setTextRange(statement, parameter); ts.setEmitFlags(statement, 384 /* EmitFlags.NoTokenSourceMaps */ | 32 /* EmitFlags.NoTrailingSourceMap */ | 1048576 /* EmitFlags.CustomPrologue */ | 1536 /* EmitFlags.NoComments */); statements = ts.append(statements, statement); } } else if (parameter.transformFlags & 32768 /* TransformFlags.ContainsObjectRestOrSpread */) { containsPrecedingObjectRestOrSpread = true; var declarations = ts.flattenDestructuringBinding(parameter, visitor, context, 1 /* FlattenLevel.ObjectRest */, factory.getGeneratedNameForNode(parameter), /*doNotRecordTempVariablesInLine*/ false, /*skipInitializer*/ true); if (ts.some(declarations)) { var declarationList = factory.createVariableDeclarationList(declarations); var statement = factory.createVariableStatement(/*modifiers*/ undefined, declarationList); ts.setEmitFlags(statement, 1048576 /* EmitFlags.CustomPrologue */); statements = ts.append(statements, statement); } } } return statements; } function enableSubstitutionForAsyncMethodsWithSuper() { if ((enabledSubstitutions & 1 /* ESNextSubstitutionFlags.AsyncMethodsWithSuper */) === 0) { enabledSubstitutions |= 1 /* ESNextSubstitutionFlags.AsyncMethodsWithSuper */; // We need to enable substitutions for call, property access, and element access // if we need to rewrite super calls. context.enableSubstitution(208 /* SyntaxKind.CallExpression */); context.enableSubstitution(206 /* SyntaxKind.PropertyAccessExpression */); context.enableSubstitution(207 /* SyntaxKind.ElementAccessExpression */); // We need to be notified when entering and exiting declarations that bind super. context.enableEmitNotification(257 /* SyntaxKind.ClassDeclaration */); context.enableEmitNotification(169 /* SyntaxKind.MethodDeclaration */); context.enableEmitNotification(172 /* SyntaxKind.GetAccessor */); context.enableEmitNotification(173 /* SyntaxKind.SetAccessor */); context.enableEmitNotification(171 /* SyntaxKind.Constructor */); // We need to be notified when entering the generated accessor arrow functions. context.enableEmitNotification(237 /* SyntaxKind.VariableStatement */); } } /** * Called by the printer just before a node is printed. * * @param hint A hint as to the intended usage of the node. * @param node The node to be printed. * @param emitCallback The callback used to emit the node. */ function onEmitNode(hint, node, emitCallback) { // If we need to support substitutions for `super` in an async method, // we should track it here. if (enabledSubstitutions & 1 /* ESNextSubstitutionFlags.AsyncMethodsWithSuper */ && isSuperContainer(node)) { var superContainerFlags = resolver.getNodeCheckFlags(node) & (2048 /* NodeCheckFlags.AsyncMethodWithSuper */ | 4096 /* NodeCheckFlags.AsyncMethodWithSuperBinding */); if (superContainerFlags !== enclosingSuperContainerFlags) { var savedEnclosingSuperContainerFlags = enclosingSuperContainerFlags; enclosingSuperContainerFlags = superContainerFlags; previousOnEmitNode(hint, node, emitCallback); enclosingSuperContainerFlags = savedEnclosingSuperContainerFlags; return; } } // Disable substitution in the generated super accessor itself. else if (enabledSubstitutions && substitutedSuperAccessors[ts.getNodeId(node)]) { var savedEnclosingSuperContainerFlags = enclosingSuperContainerFlags; enclosingSuperContainerFlags = 0; previousOnEmitNode(hint, node, emitCallback); enclosingSuperContainerFlags = savedEnclosingSuperContainerFlags; return; } previousOnEmitNode(hint, node, emitCallback); } /** * Hooks node substitutions. * * @param hint The context for the emitter. * @param node The node to substitute. */ function onSubstituteNode(hint, node) { node = previousOnSubstituteNode(hint, node); if (hint === 1 /* EmitHint.Expression */ && enclosingSuperContainerFlags) { return substituteExpression(node); } return node; } function substituteExpression(node) { switch (node.kind) { case 206 /* SyntaxKind.PropertyAccessExpression */: return substitutePropertyAccessExpression(node); case 207 /* SyntaxKind.ElementAccessExpression */: return substituteElementAccessExpression(node); case 208 /* SyntaxKind.CallExpression */: return substituteCallExpression(node); } return node; } function substitutePropertyAccessExpression(node) { if (node.expression.kind === 106 /* SyntaxKind.SuperKeyword */) { return ts.setTextRange(factory.createPropertyAccessExpression(factory.createUniqueName("_super", 16 /* GeneratedIdentifierFlags.Optimistic */ | 32 /* GeneratedIdentifierFlags.FileLevel */), node.name), node); } return node; } function substituteElementAccessExpression(node) { if (node.expression.kind === 106 /* SyntaxKind.SuperKeyword */) { return createSuperElementAccessInAsyncMethod(node.argumentExpression, node); } return node; } function substituteCallExpression(node) { var expression = node.expression; if (ts.isSuperProperty(expression)) { var argumentExpression = ts.isPropertyAccessExpression(expression) ? substitutePropertyAccessExpression(expression) : substituteElementAccessExpression(expression); return factory.createCallExpression(factory.createPropertyAccessExpression(argumentExpression, "call"), /*typeArguments*/ undefined, __spreadArray([ factory.createThis() ], node.arguments, true)); } return node; } function isSuperContainer(node) { var kind = node.kind; return kind === 257 /* SyntaxKind.ClassDeclaration */ || kind === 171 /* SyntaxKind.Constructor */ || kind === 169 /* SyntaxKind.MethodDeclaration */ || kind === 172 /* SyntaxKind.GetAccessor */ || kind === 173 /* SyntaxKind.SetAccessor */; } function createSuperElementAccessInAsyncMethod(argumentExpression, location) { if (enclosingSuperContainerFlags & 4096 /* NodeCheckFlags.AsyncMethodWithSuperBinding */) { return ts.setTextRange(factory.createPropertyAccessExpression(factory.createCallExpression(factory.createIdentifier("_superIndex"), /*typeArguments*/ undefined, [argumentExpression]), "value"), location); } else { return ts.setTextRange(factory.createCallExpression(factory.createIdentifier("_superIndex"), /*typeArguments*/ undefined, [argumentExpression]), location); } } } ts.transformES2018 = transformES2018; })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { function transformES2019(context) { var factory = context.factory; return ts.chainBundle(context, transformSourceFile); function transformSourceFile(node) { if (node.isDeclarationFile) { return node; } return ts.visitEachChild(node, visitor, context); } function visitor(node) { if ((node.transformFlags & 64 /* TransformFlags.ContainsES2019 */) === 0) { return node; } switch (node.kind) { case 292 /* SyntaxKind.CatchClause */: return visitCatchClause(node); default: return ts.visitEachChild(node, visitor, context); } } function visitCatchClause(node) { if (!node.variableDeclaration) { return factory.updateCatchClause(node, factory.createVariableDeclaration(factory.createTempVariable(/*recordTempVariable*/ undefined)), ts.visitNode(node.block, visitor, ts.isBlock)); } return ts.visitEachChild(node, visitor, context); } } ts.transformES2019 = transformES2019; })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { function transformES2020(context) { var factory = context.factory, hoistVariableDeclaration = context.hoistVariableDeclaration; return ts.chainBundle(context, transformSourceFile); function transformSourceFile(node) { if (node.isDeclarationFile) { return node; } return ts.visitEachChild(node, visitor, context); } function visitor(node) { if ((node.transformFlags & 32 /* TransformFlags.ContainsES2020 */) === 0) { return node; } switch (node.kind) { case 208 /* SyntaxKind.CallExpression */: { var updated = visitNonOptionalCallExpression(node, /*captureThisArg*/ false); ts.Debug.assertNotNode(updated, ts.isSyntheticReference); return updated; } case 206 /* SyntaxKind.PropertyAccessExpression */: case 207 /* SyntaxKind.ElementAccessExpression */: if (ts.isOptionalChain(node)) { var updated = visitOptionalExpression(node, /*captureThisArg*/ false, /*isDelete*/ false); ts.Debug.assertNotNode(updated, ts.isSyntheticReference); return updated; } return ts.visitEachChild(node, visitor, context); case 221 /* SyntaxKind.BinaryExpression */: if (node.operatorToken.kind === 60 /* SyntaxKind.QuestionQuestionToken */) { return transformNullishCoalescingExpression(node); } return ts.visitEachChild(node, visitor, context); case 215 /* SyntaxKind.DeleteExpression */: return visitDeleteExpression(node); default: return ts.visitEachChild(node, visitor, context); } } function flattenChain(chain) { ts.Debug.assertNotNode(chain, ts.isNonNullChain); var links = [chain]; while (!chain.questionDotToken && !ts.isTaggedTemplateExpression(chain)) { chain = ts.cast(ts.skipPartiallyEmittedExpressions(chain.expression), ts.isOptionalChain); ts.Debug.assertNotNode(chain, ts.isNonNullChain); links.unshift(chain); } return { expression: chain.expression, chain: links }; } function visitNonOptionalParenthesizedExpression(node, captureThisArg, isDelete) { var expression = visitNonOptionalExpression(node.expression, captureThisArg, isDelete); if (ts.isSyntheticReference(expression)) { // `(a.b)` -> { expression `((_a = a).b)`, thisArg: `_a` } // `(a[b])` -> { expression `((_a = a)[b])`, thisArg: `_a` } return factory.createSyntheticReferenceExpression(factory.updateParenthesizedExpression(node, expression.expression), expression.thisArg); } return factory.updateParenthesizedExpression(node, expression); } function visitNonOptionalPropertyOrElementAccessExpression(node, captureThisArg, isDelete) { if (ts.isOptionalChain(node)) { // If `node` is an optional chain, then it is the outermost chain of an optional expression. return visitOptionalExpression(node, captureThisArg, isDelete); } var expression = ts.visitNode(node.expression, visitor, ts.isExpression); ts.Debug.assertNotNode(expression, ts.isSyntheticReference); var thisArg; if (captureThisArg) { if (!ts.isSimpleCopiableExpression(expression)) { thisArg = factory.createTempVariable(hoistVariableDeclaration); expression = factory.createAssignment(thisArg, expression); } else { thisArg = expression; } } expression = node.kind === 206 /* SyntaxKind.PropertyAccessExpression */ ? factory.updatePropertyAccessExpression(node, expression, ts.visitNode(node.name, visitor, ts.isIdentifier)) : factory.updateElementAccessExpression(node, expression, ts.visitNode(node.argumentExpression, visitor, ts.isExpression)); return thisArg ? factory.createSyntheticReferenceExpression(expression, thisArg) : expression; } function visitNonOptionalCallExpression(node, captureThisArg) { if (ts.isOptionalChain(node)) { // If `node` is an optional chain, then it is the outermost chain of an optional expression. return visitOptionalExpression(node, captureThisArg, /*isDelete*/ false); } if (ts.isParenthesizedExpression(node.expression) && ts.isOptionalChain(ts.skipParentheses(node.expression))) { // capture thisArg for calls of parenthesized optional chains like `(foo?.bar)()` var expression = visitNonOptionalParenthesizedExpression(node.expression, /*captureThisArg*/ true, /*isDelete*/ false); var args = ts.visitNodes(node.arguments, visitor, ts.isExpression); if (ts.isSyntheticReference(expression)) { return ts.setTextRange(factory.createFunctionCallCall(expression.expression, expression.thisArg, args), node); } return factory.updateCallExpression(node, expression, /*typeArguments*/ undefined, args); } return ts.visitEachChild(node, visitor, context); } function visitNonOptionalExpression(node, captureThisArg, isDelete) { switch (node.kind) { case 212 /* SyntaxKind.ParenthesizedExpression */: return visitNonOptionalParenthesizedExpression(node, captureThisArg, isDelete); case 206 /* SyntaxKind.PropertyAccessExpression */: case 207 /* SyntaxKind.ElementAccessExpression */: return visitNonOptionalPropertyOrElementAccessExpression(node, captureThisArg, isDelete); case 208 /* SyntaxKind.CallExpression */: return visitNonOptionalCallExpression(node, captureThisArg); default: return ts.visitNode(node, visitor, ts.isExpression); } } function visitOptionalExpression(node, captureThisArg, isDelete) { var _a = flattenChain(node), expression = _a.expression, chain = _a.chain; var left = visitNonOptionalExpression(ts.skipPartiallyEmittedExpressions(expression), ts.isCallChain(chain[0]), /*isDelete*/ false); var leftThisArg = ts.isSyntheticReference(left) ? left.thisArg : undefined; var capturedLeft = ts.isSyntheticReference(left) ? left.expression : left; var leftExpression = factory.restoreOuterExpressions(expression, capturedLeft, 8 /* OuterExpressionKinds.PartiallyEmittedExpressions */); if (!ts.isSimpleCopiableExpression(capturedLeft)) { capturedLeft = factory.createTempVariable(hoistVariableDeclaration); leftExpression = factory.createAssignment(capturedLeft, leftExpression); } var rightExpression = capturedLeft; var thisArg; for (var i = 0; i < chain.length; i++) { var segment = chain[i]; switch (segment.kind) { case 206 /* SyntaxKind.PropertyAccessExpression */: case 207 /* SyntaxKind.ElementAccessExpression */: if (i === chain.length - 1 && captureThisArg) { if (!ts.isSimpleCopiableExpression(rightExpression)) { thisArg = factory.createTempVariable(hoistVariableDeclaration); rightExpression = factory.createAssignment(thisArg, rightExpression); } else { thisArg = rightExpression; } } rightExpression = segment.kind === 206 /* SyntaxKind.PropertyAccessExpression */ ? factory.createPropertyAccessExpression(rightExpression, ts.visitNode(segment.name, visitor, ts.isIdentifier)) : factory.createElementAccessExpression(rightExpression, ts.visitNode(segment.argumentExpression, visitor, ts.isExpression)); break; case 208 /* SyntaxKind.CallExpression */: if (i === 0 && leftThisArg) { if (!ts.isGeneratedIdentifier(leftThisArg)) { leftThisArg = factory.cloneNode(leftThisArg); ts.addEmitFlags(leftThisArg, 1536 /* EmitFlags.NoComments */); } rightExpression = factory.createFunctionCallCall(rightExpression, leftThisArg.kind === 106 /* SyntaxKind.SuperKeyword */ ? factory.createThis() : leftThisArg, ts.visitNodes(segment.arguments, visitor, ts.isExpression)); } else { rightExpression = factory.createCallExpression(rightExpression, /*typeArguments*/ undefined, ts.visitNodes(segment.arguments, visitor, ts.isExpression)); } break; } ts.setOriginalNode(rightExpression, segment); } var target = isDelete ? factory.createConditionalExpression(createNotNullCondition(leftExpression, capturedLeft, /*invert*/ true), /*questionToken*/ undefined, factory.createTrue(), /*colonToken*/ undefined, factory.createDeleteExpression(rightExpression)) : factory.createConditionalExpression(createNotNullCondition(leftExpression, capturedLeft, /*invert*/ true), /*questionToken*/ undefined, factory.createVoidZero(), /*colonToken*/ undefined, rightExpression); ts.setTextRange(target, node); return thisArg ? factory.createSyntheticReferenceExpression(target, thisArg) : target; } function createNotNullCondition(left, right, invert) { return factory.createBinaryExpression(factory.createBinaryExpression(left, factory.createToken(invert ? 36 /* SyntaxKind.EqualsEqualsEqualsToken */ : 37 /* SyntaxKind.ExclamationEqualsEqualsToken */), factory.createNull()), factory.createToken(invert ? 56 /* SyntaxKind.BarBarToken */ : 55 /* SyntaxKind.AmpersandAmpersandToken */), factory.createBinaryExpression(right, factory.createToken(invert ? 36 /* SyntaxKind.EqualsEqualsEqualsToken */ : 37 /* SyntaxKind.ExclamationEqualsEqualsToken */), factory.createVoidZero())); } function transformNullishCoalescingExpression(node) { var left = ts.visitNode(node.left, visitor, ts.isExpression); var right = left; if (!ts.isSimpleCopiableExpression(left)) { right = factory.createTempVariable(hoistVariableDeclaration); left = factory.createAssignment(right, left); } return ts.setTextRange(factory.createConditionalExpression(createNotNullCondition(left, right), /*questionToken*/ undefined, right, /*colonToken*/ undefined, ts.visitNode(node.right, visitor, ts.isExpression)), node); } function visitDeleteExpression(node) { return ts.isOptionalChain(ts.skipParentheses(node.expression)) ? ts.setOriginalNode(visitNonOptionalExpression(node.expression, /*captureThisArg*/ false, /*isDelete*/ true), node) : factory.updateDeleteExpression(node, ts.visitNode(node.expression, visitor, ts.isExpression)); } } ts.transformES2020 = transformES2020; })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { function transformES2021(context) { var hoistVariableDeclaration = context.hoistVariableDeclaration, factory = context.factory; return ts.chainBundle(context, transformSourceFile); function transformSourceFile(node) { if (node.isDeclarationFile) { return node; } return ts.visitEachChild(node, visitor, context); } function visitor(node) { if ((node.transformFlags & 16 /* TransformFlags.ContainsES2021 */) === 0) { return node; } switch (node.kind) { case 221 /* SyntaxKind.BinaryExpression */: var binaryExpression = node; if (ts.isLogicalOrCoalescingAssignmentExpression(binaryExpression)) { return transformLogicalAssignment(binaryExpression); } // falls through default: return ts.visitEachChild(node, visitor, context); } } function transformLogicalAssignment(binaryExpression) { var operator = binaryExpression.operatorToken; var nonAssignmentOperator = ts.getNonAssignmentOperatorForCompoundAssignment(operator.kind); var left = ts.skipParentheses(ts.visitNode(binaryExpression.left, visitor, ts.isLeftHandSideExpression)); var assignmentTarget = left; var right = ts.skipParentheses(ts.visitNode(binaryExpression.right, visitor, ts.isExpression)); if (ts.isAccessExpression(left)) { var propertyAccessTargetSimpleCopiable = ts.isSimpleCopiableExpression(left.expression); var propertyAccessTarget = propertyAccessTargetSimpleCopiable ? left.expression : factory.createTempVariable(hoistVariableDeclaration); var propertyAccessTargetAssignment = propertyAccessTargetSimpleCopiable ? left.expression : factory.createAssignment(propertyAccessTarget, left.expression); if (ts.isPropertyAccessExpression(left)) { assignmentTarget = factory.createPropertyAccessExpression(propertyAccessTarget, left.name); left = factory.createPropertyAccessExpression(propertyAccessTargetAssignment, left.name); } else { var elementAccessArgumentSimpleCopiable = ts.isSimpleCopiableExpression(left.argumentExpression); var elementAccessArgument = elementAccessArgumentSimpleCopiable ? left.argumentExpression : factory.createTempVariable(hoistVariableDeclaration); assignmentTarget = factory.createElementAccessExpression(propertyAccessTarget, elementAccessArgument); left = factory.createElementAccessExpression(propertyAccessTargetAssignment, elementAccessArgumentSimpleCopiable ? left.argumentExpression : factory.createAssignment(elementAccessArgument, left.argumentExpression)); } } return factory.createBinaryExpression(left, nonAssignmentOperator, factory.createParenthesizedExpression(factory.createAssignment(assignmentTarget, right))); } } ts.transformES2021 = transformES2021; })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { function transformESNext(context) { return ts.chainBundle(context, transformSourceFile); function transformSourceFile(node) { if (node.isDeclarationFile) { return node; } return ts.visitEachChild(node, visitor, context); } function visitor(node) { if ((node.transformFlags & 4 /* TransformFlags.ContainsESNext */) === 0) { return node; } switch (node.kind) { default: return ts.visitEachChild(node, visitor, context); } } } ts.transformESNext = transformESNext; })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { function transformJsx(context) { var factory = context.factory, emitHelpers = context.getEmitHelperFactory; var compilerOptions = context.getCompilerOptions(); var currentSourceFile; var currentFileState; return ts.chainBundle(context, transformSourceFile); function getCurrentFileNameExpression() { if (currentFileState.filenameDeclaration) { return currentFileState.filenameDeclaration.name; } var declaration = factory.createVariableDeclaration(factory.createUniqueName("_jsxFileName", 16 /* GeneratedIdentifierFlags.Optimistic */ | 32 /* GeneratedIdentifierFlags.FileLevel */), /*exclaimationToken*/ undefined, /*type*/ undefined, factory.createStringLiteral(currentSourceFile.fileName)); currentFileState.filenameDeclaration = declaration; return currentFileState.filenameDeclaration.name; } function getJsxFactoryCalleePrimitive(isStaticChildren) { return compilerOptions.jsx === 5 /* JsxEmit.ReactJSXDev */ ? "jsxDEV" : isStaticChildren ? "jsxs" : "jsx"; } function getJsxFactoryCallee(isStaticChildren) { var type = getJsxFactoryCalleePrimitive(isStaticChildren); return getImplicitImportForName(type); } function getImplicitJsxFragmentReference() { return getImplicitImportForName("Fragment"); } function getImplicitImportForName(name) { var _a, _b; var importSource = name === "createElement" ? currentFileState.importSpecifier : ts.getJSXRuntimeImport(currentFileState.importSpecifier, compilerOptions); var existing = (_b = (_a = currentFileState.utilizedImplicitRuntimeImports) === null || _a === void 0 ? void 0 : _a.get(importSource)) === null || _b === void 0 ? void 0 : _b.get(name); if (existing) { return existing.name; } if (!currentFileState.utilizedImplicitRuntimeImports) { currentFileState.utilizedImplicitRuntimeImports = new ts.Map(); } var specifierSourceImports = currentFileState.utilizedImplicitRuntimeImports.get(importSource); if (!specifierSourceImports) { specifierSourceImports = new ts.Map(); currentFileState.utilizedImplicitRuntimeImports.set(importSource, specifierSourceImports); } var generatedName = factory.createUniqueName("_".concat(name), 16 /* GeneratedIdentifierFlags.Optimistic */ | 32 /* GeneratedIdentifierFlags.FileLevel */ | 64 /* GeneratedIdentifierFlags.AllowNameSubstitution */); var specifier = factory.createImportSpecifier(/*isTypeOnly*/ false, factory.createIdentifier(name), generatedName); generatedName.generatedImportReference = specifier; specifierSourceImports.set(name, specifier); return generatedName; } /** * Transform JSX-specific syntax in a SourceFile. * * @param node A SourceFile node. */ function transformSourceFile(node) { if (node.isDeclarationFile) { return node; } currentSourceFile = node; currentFileState = {}; currentFileState.importSpecifier = ts.getJSXImplicitImportBase(compilerOptions, node); var visited = ts.visitEachChild(node, visitor, context); ts.addEmitHelpers(visited, context.readEmitHelpers()); var statements = visited.statements; if (currentFileState.filenameDeclaration) { statements = ts.insertStatementAfterCustomPrologue(statements.slice(), factory.createVariableStatement(/*modifiers*/ undefined, factory.createVariableDeclarationList([currentFileState.filenameDeclaration], 2 /* NodeFlags.Const */))); } if (currentFileState.utilizedImplicitRuntimeImports) { for (var _i = 0, _a = ts.arrayFrom(currentFileState.utilizedImplicitRuntimeImports.entries()); _i < _a.length; _i++) { var _b = _a[_i], importSource = _b[0], importSpecifiersMap = _b[1]; if (ts.isExternalModule(node)) { // Add `import` statement var importStatement = factory.createImportDeclaration(/*decorators*/ undefined, /*modifiers*/ undefined, factory.createImportClause(/*typeOnly*/ false, /*name*/ undefined, factory.createNamedImports(ts.arrayFrom(importSpecifiersMap.values()))), factory.createStringLiteral(importSource), /*assertClause*/ undefined); ts.setParentRecursive(importStatement, /*incremental*/ false); statements = ts.insertStatementAfterCustomPrologue(statements.slice(), importStatement); } else if (ts.isExternalOrCommonJsModule(node)) { // Add `require` statement var requireStatement = factory.createVariableStatement(/*modifiers*/ undefined, factory.createVariableDeclarationList([ factory.createVariableDeclaration(factory.createObjectBindingPattern(ts.map(ts.arrayFrom(importSpecifiersMap.values()), function (s) { return factory.createBindingElement(/*dotdotdot*/ undefined, s.propertyName, s.name); })), /*exclaimationToken*/ undefined, /*type*/ undefined, factory.createCallExpression(factory.createIdentifier("require"), /*typeArguments*/ undefined, [factory.createStringLiteral(importSource)])) ], 2 /* NodeFlags.Const */)); ts.setParentRecursive(requireStatement, /*incremental*/ false); statements = ts.insertStatementAfterCustomPrologue(statements.slice(), requireStatement); } else { // Do nothing (script file) - consider an error in the checker? } } } if (statements !== visited.statements) { visited = factory.updateSourceFile(visited, statements); } currentFileState = undefined; return visited; } function visitor(node) { if (node.transformFlags & 2 /* TransformFlags.ContainsJsx */) { return visitorWorker(node); } else { return node; } } function visitorWorker(node) { switch (node.kind) { case 278 /* SyntaxKind.JsxElement */: return visitJsxElement(node, /*isChild*/ false); case 279 /* SyntaxKind.JsxSelfClosingElement */: return visitJsxSelfClosingElement(node, /*isChild*/ false); case 282 /* SyntaxKind.JsxFragment */: return visitJsxFragment(node, /*isChild*/ false); case 288 /* SyntaxKind.JsxExpression */: return visitJsxExpression(node); default: return ts.visitEachChild(node, visitor, context); } } function transformJsxChildToExpression(node) { switch (node.kind) { case 11 /* SyntaxKind.JsxText */: return visitJsxText(node); case 288 /* SyntaxKind.JsxExpression */: return visitJsxExpression(node); case 278 /* SyntaxKind.JsxElement */: return visitJsxElement(node, /*isChild*/ true); case 279 /* SyntaxKind.JsxSelfClosingElement */: return visitJsxSelfClosingElement(node, /*isChild*/ true); case 282 /* SyntaxKind.JsxFragment */: return visitJsxFragment(node, /*isChild*/ true); default: return ts.Debug.failBadSyntaxKind(node); } } /** * The react jsx/jsxs transform falls back to `createElement` when an explicit `key` argument comes after a spread */ function hasKeyAfterPropsSpread(node) { var spread = false; for (var _i = 0, _a = node.attributes.properties; _i < _a.length; _i++) { var elem = _a[_i]; if (ts.isJsxSpreadAttribute(elem)) { spread = true; } else if (spread && ts.isJsxAttribute(elem) && elem.name.escapedText === "key") { return true; } } return false; } function shouldUseCreateElement(node) { return currentFileState.importSpecifier === undefined || hasKeyAfterPropsSpread(node); } function visitJsxElement(node, isChild) { var tagTransform = shouldUseCreateElement(node.openingElement) ? visitJsxOpeningLikeElementCreateElement : visitJsxOpeningLikeElementJSX; return tagTransform(node.openingElement, node.children, isChild, /*location*/ node); } function visitJsxSelfClosingElement(node, isChild) { var tagTransform = shouldUseCreateElement(node) ? visitJsxOpeningLikeElementCreateElement : visitJsxOpeningLikeElementJSX; return tagTransform(node, /*children*/ undefined, isChild, /*location*/ node); } function visitJsxFragment(node, isChild) { var tagTransform = currentFileState.importSpecifier === undefined ? visitJsxOpeningFragmentCreateElement : visitJsxOpeningFragmentJSX; return tagTransform(node.openingFragment, node.children, isChild, /*location*/ node); } function convertJsxChildrenToChildrenPropObject(children) { var prop = convertJsxChildrenToChildrenPropAssignment(children); return prop && factory.createObjectLiteralExpression([prop]); } function convertJsxChildrenToChildrenPropAssignment(children) { var nonWhitespaceChildren = ts.getSemanticJsxChildren(children); if (ts.length(nonWhitespaceChildren) === 1 && !nonWhitespaceChildren[0].dotDotDotToken) { var result_13 = transformJsxChildToExpression(nonWhitespaceChildren[0]); return result_13 && factory.createPropertyAssignment("children", result_13); } var result = ts.mapDefined(children, transformJsxChildToExpression); return ts.length(result) ? factory.createPropertyAssignment("children", factory.createArrayLiteralExpression(result)) : undefined; } function visitJsxOpeningLikeElementJSX(node, children, isChild, location) { var tagName = getTagName(node); var childrenProp = children && children.length ? convertJsxChildrenToChildrenPropAssignment(children) : undefined; var keyAttr = ts.find(node.attributes.properties, function (p) { return !!p.name && ts.isIdentifier(p.name) && p.name.escapedText === "key"; }); var attrs = keyAttr ? ts.filter(node.attributes.properties, function (p) { return p !== keyAttr; }) : node.attributes.properties; var objectProperties = ts.length(attrs) ? transformJsxAttributesToObjectProps(attrs, childrenProp) : factory.createObjectLiteralExpression(childrenProp ? [childrenProp] : ts.emptyArray); // When there are no attributes, React wants {} return visitJsxOpeningLikeElementOrFragmentJSX(tagName, objectProperties, keyAttr, children || ts.emptyArray, isChild, location); } function visitJsxOpeningLikeElementOrFragmentJSX(tagName, objectProperties, keyAttr, children, isChild, location) { var _a; var nonWhitespaceChildren = ts.getSemanticJsxChildren(children); var isStaticChildren = ts.length(nonWhitespaceChildren) > 1 || !!((_a = nonWhitespaceChildren[0]) === null || _a === void 0 ? void 0 : _a.dotDotDotToken); var args = [tagName, objectProperties]; // function jsx(type, config, maybeKey) {} // "maybeKey" is optional. It is acceptable to use "_jsx" without a third argument if (keyAttr) { args.push(transformJsxAttributeInitializer(keyAttr.initializer)); } if (compilerOptions.jsx === 5 /* JsxEmit.ReactJSXDev */) { var originalFile = ts.getOriginalNode(currentSourceFile); if (originalFile && ts.isSourceFile(originalFile)) { // "maybeKey" has to be replaced with "void 0" to not break the jsxDEV signature if (keyAttr === undefined) { args.push(factory.createVoidZero()); } // isStaticChildren development flag args.push(isStaticChildren ? factory.createTrue() : factory.createFalse()); // __source development flag var lineCol = ts.getLineAndCharacterOfPosition(originalFile, location.pos); args.push(factory.createObjectLiteralExpression([ factory.createPropertyAssignment("fileName", getCurrentFileNameExpression()), factory.createPropertyAssignment("lineNumber", factory.createNumericLiteral(lineCol.line + 1)), factory.createPropertyAssignment("columnNumber", factory.createNumericLiteral(lineCol.character + 1)) ])); // __self development flag args.push(factory.createThis()); } } var element = ts.setTextRange(factory.createCallExpression(getJsxFactoryCallee(isStaticChildren), /*typeArguments*/ undefined, args), location); if (isChild) { ts.startOnNewLine(element); } return element; } function visitJsxOpeningLikeElementCreateElement(node, children, isChild, location) { var tagName = getTagName(node); var attrs = node.attributes.properties; var objectProperties = ts.length(attrs) ? transformJsxAttributesToObjectProps(attrs) : factory.createNull(); // When there are no attributes, React wants "null" var callee = currentFileState.importSpecifier === undefined ? ts.createJsxFactoryExpression(factory, context.getEmitResolver().getJsxFactoryEntity(currentSourceFile), compilerOptions.reactNamespace, // TODO: GH#18217 node) : getImplicitImportForName("createElement"); var element = ts.createExpressionForJsxElement(factory, callee, tagName, objectProperties, ts.mapDefined(children, transformJsxChildToExpression), location); if (isChild) { ts.startOnNewLine(element); } return element; } function visitJsxOpeningFragmentJSX(_node, children, isChild, location) { var childrenProps; if (children && children.length) { var result = convertJsxChildrenToChildrenPropObject(children); if (result) { childrenProps = result; } } return visitJsxOpeningLikeElementOrFragmentJSX(getImplicitJsxFragmentReference(), childrenProps || factory.createObjectLiteralExpression([]), /*keyAttr*/ undefined, children, isChild, location); } function visitJsxOpeningFragmentCreateElement(node, children, isChild, location) { var element = ts.createExpressionForJsxFragment(factory, context.getEmitResolver().getJsxFactoryEntity(currentSourceFile), context.getEmitResolver().getJsxFragmentFactoryEntity(currentSourceFile), compilerOptions.reactNamespace, // TODO: GH#18217 ts.mapDefined(children, transformJsxChildToExpression), node, location); if (isChild) { ts.startOnNewLine(element); } return element; } function transformJsxSpreadAttributeToSpreadAssignment(node) { return factory.createSpreadAssignment(ts.visitNode(node.expression, visitor, ts.isExpression)); } function transformJsxAttributesToObjectProps(attrs, children) { var target = ts.getEmitScriptTarget(compilerOptions); return target && target >= 5 /* ScriptTarget.ES2018 */ ? factory.createObjectLiteralExpression(transformJsxAttributesToProps(attrs, children)) : transformJsxAttributesToExpression(attrs, children); } function transformJsxAttributesToProps(attrs, children) { var props = ts.flatten(ts.spanMap(attrs, ts.isJsxSpreadAttribute, function (attrs, isSpread) { return ts.map(attrs, function (attr) { return isSpread ? transformJsxSpreadAttributeToSpreadAssignment(attr) : transformJsxAttributeToObjectLiteralElement(attr); }); })); if (children) { props.push(children); } return props; } function transformJsxAttributesToExpression(attrs, children) { // Map spans of JsxAttribute nodes into object literals and spans // of JsxSpreadAttribute nodes into expressions. var expressions = ts.flatten(ts.spanMap(attrs, ts.isJsxSpreadAttribute, function (attrs, isSpread) { return isSpread ? ts.map(attrs, transformJsxSpreadAttributeToExpression) : factory.createObjectLiteralExpression(ts.map(attrs, transformJsxAttributeToObjectLiteralElement)); })); if (ts.isJsxSpreadAttribute(attrs[0])) { // We must always emit at least one object literal before a spread // argument.factory.createObjectLiteral expressions.unshift(factory.createObjectLiteralExpression()); } if (children) { expressions.push(factory.createObjectLiteralExpression([children])); } return ts.singleOrUndefined(expressions) || emitHelpers().createAssignHelper(expressions); } function transformJsxSpreadAttributeToExpression(node) { return ts.visitNode(node.expression, visitor, ts.isExpression); } function transformJsxAttributeToObjectLiteralElement(node) { var name = getAttributeName(node); var expression = transformJsxAttributeInitializer(node.initializer); return factory.createPropertyAssignment(name, expression); } function transformJsxAttributeInitializer(node) { if (node === undefined) { return factory.createTrue(); } else if (node.kind === 10 /* SyntaxKind.StringLiteral */) { // Always recreate the literal to escape any escape sequences or newlines which may be in the original jsx string and which // Need to be escaped to be handled correctly in a normal string var singleQuote = node.singleQuote !== undefined ? node.singleQuote : !ts.isStringDoubleQuoted(node, currentSourceFile); var literal = factory.createStringLiteral(tryDecodeEntities(node.text) || node.text, singleQuote); return ts.setTextRange(literal, node); } else if (node.kind === 288 /* SyntaxKind.JsxExpression */) { if (node.expression === undefined) { return factory.createTrue(); } return ts.visitNode(node.expression, visitor, ts.isExpression); } else { return ts.Debug.failBadSyntaxKind(node); } } function visitJsxText(node) { var fixed = fixupWhitespaceAndDecodeEntities(node.text); return fixed === undefined ? undefined : factory.createStringLiteral(fixed); } /** * JSX trims whitespace at the end and beginning of lines, except that the * start/end of a tag is considered a start/end of a line only if that line is * on the same line as the closing tag. See examples in * tests/cases/conformance/jsx/tsxReactEmitWhitespace.tsx * See also https://www.w3.org/TR/html4/struct/text.html#h-9.1 and https://www.w3.org/TR/CSS2/text.html#white-space-model * * An equivalent algorithm would be: * - If there is only one line, return it. * - If there is only whitespace (but multiple lines), return `undefined`. * - Split the text into lines. * - 'trimRight' the first line, 'trimLeft' the last line, 'trim' middle lines. * - Decode entities on each line (individually). * - Remove empty lines and join the rest with " ". */ function fixupWhitespaceAndDecodeEntities(text) { var acc; // First non-whitespace character on this line. var firstNonWhitespace = 0; // Last non-whitespace character on this line. var lastNonWhitespace = -1; // These initial values are special because the first line is: // firstNonWhitespace = 0 to indicate that we want leading whitsepace, // but lastNonWhitespace = -1 as a special flag to indicate that we *don't* include the line if it's all whitespace. for (var i = 0; i < text.length; i++) { var c = text.charCodeAt(i); if (ts.isLineBreak(c)) { // If we've seen any non-whitespace characters on this line, add the 'trim' of the line. // (lastNonWhitespace === -1 is a special flag to detect whether the first line is all whitespace.) if (firstNonWhitespace !== -1 && lastNonWhitespace !== -1) { acc = addLineOfJsxText(acc, text.substr(firstNonWhitespace, lastNonWhitespace - firstNonWhitespace + 1)); } // Reset firstNonWhitespace for the next line. // Don't bother to reset lastNonWhitespace because we ignore it if firstNonWhitespace = -1. firstNonWhitespace = -1; } else if (!ts.isWhiteSpaceSingleLine(c)) { lastNonWhitespace = i; if (firstNonWhitespace === -1) { firstNonWhitespace = i; } } } return firstNonWhitespace !== -1 // Last line had a non-whitespace character. Emit the 'trimLeft', meaning keep trailing whitespace. ? addLineOfJsxText(acc, text.substr(firstNonWhitespace)) // Last line was all whitespace, so ignore it : acc; } function addLineOfJsxText(acc, trimmedLine) { // We do not escape the string here as that is handled by the printer // when it emits the literal. We do, however, need to decode JSX entities. var decoded = decodeEntities(trimmedLine); return acc === undefined ? decoded : acc + " " + decoded; } /** * Replace entities like " ", "{", and "�" with the characters they encode. * See https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references */ function decodeEntities(text) { return text.replace(/&((#((\d+)|x([\da-fA-F]+)))|(\w+));/g, function (match, _all, _number, _digits, decimal, hex, word) { if (decimal) { return ts.utf16EncodeAsString(parseInt(decimal, 10)); } else if (hex) { return ts.utf16EncodeAsString(parseInt(hex, 16)); } else { var ch = entities.get(word); // If this is not a valid entity, then just use `match` (replace it with itself, i.e. don't replace) return ch ? ts.utf16EncodeAsString(ch) : match; } }); } /** Like `decodeEntities` but returns `undefined` if there were no entities to decode. */ function tryDecodeEntities(text) { var decoded = decodeEntities(text); return decoded === text ? undefined : decoded; } function getTagName(node) { if (node.kind === 278 /* SyntaxKind.JsxElement */) { return getTagName(node.openingElement); } else { var name = node.tagName; if (ts.isIdentifier(name) && ts.isIntrinsicJsxName(name.escapedText)) { return factory.createStringLiteral(ts.idText(name)); } else { return ts.createExpressionFromEntityName(factory, name); } } } /** * Emit an attribute name, which is quoted if it needs to be quoted. Because * these emit into an object literal property name, we don't need to be worried * about keywords, just non-identifier characters */ function getAttributeName(node) { var name = node.name; var text = ts.idText(name); if (/^[A-Za-z_]\w*$/.test(text)) { return name; } else { return factory.createStringLiteral(text); } } function visitJsxExpression(node) { var expression = ts.visitNode(node.expression, visitor, ts.isExpression); return node.dotDotDotToken ? factory.createSpreadElement(expression) : expression; } } ts.transformJsx = transformJsx; var entities = new ts.Map(ts.getEntries({ quot: 0x0022, amp: 0x0026, apos: 0x0027, lt: 0x003C, gt: 0x003E, nbsp: 0x00A0, iexcl: 0x00A1, cent: 0x00A2, pound: 0x00A3, curren: 0x00A4, yen: 0x00A5, brvbar: 0x00A6, sect: 0x00A7, uml: 0x00A8, copy: 0x00A9, ordf: 0x00AA, laquo: 0x00AB, not: 0x00AC, shy: 0x00AD, reg: 0x00AE, macr: 0x00AF, deg: 0x00B0, plusmn: 0x00B1, sup2: 0x00B2, sup3: 0x00B3, acute: 0x00B4, micro: 0x00B5, para: 0x00B6, middot: 0x00B7, cedil: 0x00B8, sup1: 0x00B9, ordm: 0x00BA, raquo: 0x00BB, frac14: 0x00BC, frac12: 0x00BD, frac34: 0x00BE, iquest: 0x00BF, Agrave: 0x00C0, Aacute: 0x00C1, Acirc: 0x00C2, Atilde: 0x00C3, Auml: 0x00C4, Aring: 0x00C5, AElig: 0x00C6, Ccedil: 0x00C7, Egrave: 0x00C8, Eacute: 0x00C9, Ecirc: 0x00CA, Euml: 0x00CB, Igrave: 0x00CC, Iacute: 0x00CD, Icirc: 0x00CE, Iuml: 0x00CF, ETH: 0x00D0, Ntilde: 0x00D1, Ograve: 0x00D2, Oacute: 0x00D3, Ocirc: 0x00D4, Otilde: 0x00D5, Ouml: 0x00D6, times: 0x00D7, Oslash: 0x00D8, Ugrave: 0x00D9, Uacute: 0x00DA, Ucirc: 0x00DB, Uuml: 0x00DC, Yacute: 0x00DD, THORN: 0x00DE, szlig: 0x00DF, agrave: 0x00E0, aacute: 0x00E1, acirc: 0x00E2, atilde: 0x00E3, auml: 0x00E4, aring: 0x00E5, aelig: 0x00E6, ccedil: 0x00E7, egrave: 0x00E8, eacute: 0x00E9, ecirc: 0x00EA, euml: 0x00EB, igrave: 0x00EC, iacute: 0x00ED, icirc: 0x00EE, iuml: 0x00EF, eth: 0x00F0, ntilde: 0x00F1, ograve: 0x00F2, oacute: 0x00F3, ocirc: 0x00F4, otilde: 0x00F5, ouml: 0x00F6, divide: 0x00F7, oslash: 0x00F8, ugrave: 0x00F9, uacute: 0x00FA, ucirc: 0x00FB, uuml: 0x00FC, yacute: 0x00FD, thorn: 0x00FE, yuml: 0x00FF, OElig: 0x0152, oelig: 0x0153, Scaron: 0x0160, scaron: 0x0161, Yuml: 0x0178, fnof: 0x0192, circ: 0x02C6, tilde: 0x02DC, Alpha: 0x0391, Beta: 0x0392, Gamma: 0x0393, Delta: 0x0394, Epsilon: 0x0395, Zeta: 0x0396, Eta: 0x0397, Theta: 0x0398, Iota: 0x0399, Kappa: 0x039A, Lambda: 0x039B, Mu: 0x039C, Nu: 0x039D, Xi: 0x039E, Omicron: 0x039F, Pi: 0x03A0, Rho: 0x03A1, Sigma: 0x03A3, Tau: 0x03A4, Upsilon: 0x03A5, Phi: 0x03A6, Chi: 0x03A7, Psi: 0x03A8, Omega: 0x03A9, alpha: 0x03B1, beta: 0x03B2, gamma: 0x03B3, delta: 0x03B4, epsilon: 0x03B5, zeta: 0x03B6, eta: 0x03B7, theta: 0x03B8, iota: 0x03B9, kappa: 0x03BA, lambda: 0x03BB, mu: 0x03BC, nu: 0x03BD, xi: 0x03BE, omicron: 0x03BF, pi: 0x03C0, rho: 0x03C1, sigmaf: 0x03C2, sigma: 0x03C3, tau: 0x03C4, upsilon: 0x03C5, phi: 0x03C6, chi: 0x03C7, psi: 0x03C8, omega: 0x03C9, thetasym: 0x03D1, upsih: 0x03D2, piv: 0x03D6, ensp: 0x2002, emsp: 0x2003, thinsp: 0x2009, zwnj: 0x200C, zwj: 0x200D, lrm: 0x200E, rlm: 0x200F, ndash: 0x2013, mdash: 0x2014, lsquo: 0x2018, rsquo: 0x2019, sbquo: 0x201A, ldquo: 0x201C, rdquo: 0x201D, bdquo: 0x201E, dagger: 0x2020, Dagger: 0x2021, bull: 0x2022, hellip: 0x2026, permil: 0x2030, prime: 0x2032, Prime: 0x2033, lsaquo: 0x2039, rsaquo: 0x203A, oline: 0x203E, frasl: 0x2044, euro: 0x20AC, image: 0x2111, weierp: 0x2118, real: 0x211C, trade: 0x2122, alefsym: 0x2135, larr: 0x2190, uarr: 0x2191, rarr: 0x2192, darr: 0x2193, harr: 0x2194, crarr: 0x21B5, lArr: 0x21D0, uArr: 0x21D1, rArr: 0x21D2, dArr: 0x21D3, hArr: 0x21D4, forall: 0x2200, part: 0x2202, exist: 0x2203, empty: 0x2205, nabla: 0x2207, isin: 0x2208, notin: 0x2209, ni: 0x220B, prod: 0x220F, sum: 0x2211, minus: 0x2212, lowast: 0x2217, radic: 0x221A, prop: 0x221D, infin: 0x221E, ang: 0x2220, and: 0x2227, or: 0x2228, cap: 0x2229, cup: 0x222A, int: 0x222B, there4: 0x2234, sim: 0x223C, cong: 0x2245, asymp: 0x2248, ne: 0x2260, equiv: 0x2261, le: 0x2264, ge: 0x2265, sub: 0x2282, sup: 0x2283, nsub: 0x2284, sube: 0x2286, supe: 0x2287, oplus: 0x2295, otimes: 0x2297, perp: 0x22A5, sdot: 0x22C5, lceil: 0x2308, rceil: 0x2309, lfloor: 0x230A, rfloor: 0x230B, lang: 0x2329, rang: 0x232A, loz: 0x25CA, spades: 0x2660, clubs: 0x2663, hearts: 0x2665, diams: 0x2666 })); })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { function transformES2016(context) { var factory = context.factory, hoistVariableDeclaration = context.hoistVariableDeclaration; return ts.chainBundle(context, transformSourceFile); function transformSourceFile(node) { if (node.isDeclarationFile) { return node; } return ts.visitEachChild(node, visitor, context); } function visitor(node) { if ((node.transformFlags & 512 /* TransformFlags.ContainsES2016 */) === 0) { return node; } switch (node.kind) { case 221 /* SyntaxKind.BinaryExpression */: return visitBinaryExpression(node); default: return ts.visitEachChild(node, visitor, context); } } function visitBinaryExpression(node) { switch (node.operatorToken.kind) { case 67 /* SyntaxKind.AsteriskAsteriskEqualsToken */: return visitExponentiationAssignmentExpression(node); case 42 /* SyntaxKind.AsteriskAsteriskToken */: return visitExponentiationExpression(node); default: return ts.visitEachChild(node, visitor, context); } } function visitExponentiationAssignmentExpression(node) { var target; var value; var left = ts.visitNode(node.left, visitor, ts.isExpression); var right = ts.visitNode(node.right, visitor, ts.isExpression); if (ts.isElementAccessExpression(left)) { // Transforms `a[x] **= b` into `(_a = a)[_x = x] = Math.pow(_a[_x], b)` var expressionTemp = factory.createTempVariable(hoistVariableDeclaration); var argumentExpressionTemp = factory.createTempVariable(hoistVariableDeclaration); target = ts.setTextRange(factory.createElementAccessExpression(ts.setTextRange(factory.createAssignment(expressionTemp, left.expression), left.expression), ts.setTextRange(factory.createAssignment(argumentExpressionTemp, left.argumentExpression), left.argumentExpression)), left); value = ts.setTextRange(factory.createElementAccessExpression(expressionTemp, argumentExpressionTemp), left); } else if (ts.isPropertyAccessExpression(left)) { // Transforms `a.x **= b` into `(_a = a).x = Math.pow(_a.x, b)` var expressionTemp = factory.createTempVariable(hoistVariableDeclaration); target = ts.setTextRange(factory.createPropertyAccessExpression(ts.setTextRange(factory.createAssignment(expressionTemp, left.expression), left.expression), left.name), left); value = ts.setTextRange(factory.createPropertyAccessExpression(expressionTemp, left.name), left); } else { // Transforms `a **= b` into `a = Math.pow(a, b)` target = left; value = left; } return ts.setTextRange(factory.createAssignment(target, ts.setTextRange(factory.createGlobalMethodCall("Math", "pow", [value, right]), node)), node); } function visitExponentiationExpression(node) { // Transforms `a ** b` into `Math.pow(a, b)` var left = ts.visitNode(node.left, visitor, ts.isExpression); var right = ts.visitNode(node.right, visitor, ts.isExpression); return ts.setTextRange(factory.createGlobalMethodCall("Math", "pow", [left, right]), node); } } ts.transformES2016 = transformES2016; })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { var ES2015SubstitutionFlags; (function (ES2015SubstitutionFlags) { /** Enables substitutions for captured `this` */ ES2015SubstitutionFlags[ES2015SubstitutionFlags["CapturedThis"] = 1] = "CapturedThis"; /** Enables substitutions for block-scoped bindings. */ ES2015SubstitutionFlags[ES2015SubstitutionFlags["BlockScopedBindings"] = 2] = "BlockScopedBindings"; })(ES2015SubstitutionFlags || (ES2015SubstitutionFlags = {})); var LoopOutParameterFlags; (function (LoopOutParameterFlags) { LoopOutParameterFlags[LoopOutParameterFlags["Body"] = 1] = "Body"; LoopOutParameterFlags[LoopOutParameterFlags["Initializer"] = 2] = "Initializer"; })(LoopOutParameterFlags || (LoopOutParameterFlags = {})); var CopyDirection; (function (CopyDirection) { CopyDirection[CopyDirection["ToOriginal"] = 0] = "ToOriginal"; CopyDirection[CopyDirection["ToOutParameter"] = 1] = "ToOutParameter"; })(CopyDirection || (CopyDirection = {})); var Jump; (function (Jump) { Jump[Jump["Break"] = 2] = "Break"; Jump[Jump["Continue"] = 4] = "Continue"; Jump[Jump["Return"] = 8] = "Return"; })(Jump || (Jump = {})); // Facts we track as we traverse the tree var HierarchyFacts; (function (HierarchyFacts) { HierarchyFacts[HierarchyFacts["None"] = 0] = "None"; // // Ancestor facts // HierarchyFacts[HierarchyFacts["Function"] = 1] = "Function"; HierarchyFacts[HierarchyFacts["ArrowFunction"] = 2] = "ArrowFunction"; HierarchyFacts[HierarchyFacts["AsyncFunctionBody"] = 4] = "AsyncFunctionBody"; HierarchyFacts[HierarchyFacts["NonStaticClassElement"] = 8] = "NonStaticClassElement"; HierarchyFacts[HierarchyFacts["CapturesThis"] = 16] = "CapturesThis"; HierarchyFacts[HierarchyFacts["ExportedVariableStatement"] = 32] = "ExportedVariableStatement"; HierarchyFacts[HierarchyFacts["TopLevel"] = 64] = "TopLevel"; HierarchyFacts[HierarchyFacts["Block"] = 128] = "Block"; HierarchyFacts[HierarchyFacts["IterationStatement"] = 256] = "IterationStatement"; HierarchyFacts[HierarchyFacts["IterationStatementBlock"] = 512] = "IterationStatementBlock"; HierarchyFacts[HierarchyFacts["IterationContainer"] = 1024] = "IterationContainer"; HierarchyFacts[HierarchyFacts["ForStatement"] = 2048] = "ForStatement"; HierarchyFacts[HierarchyFacts["ForInOrForOfStatement"] = 4096] = "ForInOrForOfStatement"; HierarchyFacts[HierarchyFacts["ConstructorWithCapturedSuper"] = 8192] = "ConstructorWithCapturedSuper"; HierarchyFacts[HierarchyFacts["StaticInitializer"] = 16384] = "StaticInitializer"; // NOTE: do not add more ancestor flags without also updating AncestorFactsMask below. // NOTE: when adding a new ancestor flag, be sure to update the subtree flags below. // // Ancestor masks // HierarchyFacts[HierarchyFacts["AncestorFactsMask"] = 32767] = "AncestorFactsMask"; // We are always in *some* kind of block scope, but only specific block-scope containers are // top-level or Blocks. HierarchyFacts[HierarchyFacts["BlockScopeIncludes"] = 0] = "BlockScopeIncludes"; HierarchyFacts[HierarchyFacts["BlockScopeExcludes"] = 7104] = "BlockScopeExcludes"; // A source file is a top-level block scope. HierarchyFacts[HierarchyFacts["SourceFileIncludes"] = 64] = "SourceFileIncludes"; HierarchyFacts[HierarchyFacts["SourceFileExcludes"] = 8064] = "SourceFileExcludes"; // Functions, methods, and accessors are both new lexical scopes and new block scopes. HierarchyFacts[HierarchyFacts["FunctionIncludes"] = 65] = "FunctionIncludes"; HierarchyFacts[HierarchyFacts["FunctionExcludes"] = 32670] = "FunctionExcludes"; HierarchyFacts[HierarchyFacts["AsyncFunctionBodyIncludes"] = 69] = "AsyncFunctionBodyIncludes"; HierarchyFacts[HierarchyFacts["AsyncFunctionBodyExcludes"] = 32662] = "AsyncFunctionBodyExcludes"; // Arrow functions are lexically scoped to their container, but are new block scopes. HierarchyFacts[HierarchyFacts["ArrowFunctionIncludes"] = 66] = "ArrowFunctionIncludes"; HierarchyFacts[HierarchyFacts["ArrowFunctionExcludes"] = 15232] = "ArrowFunctionExcludes"; // Constructors are both new lexical scopes and new block scopes. Constructors are also // always considered non-static members of a class. HierarchyFacts[HierarchyFacts["ConstructorIncludes"] = 73] = "ConstructorIncludes"; HierarchyFacts[HierarchyFacts["ConstructorExcludes"] = 32662] = "ConstructorExcludes"; // 'do' and 'while' statements are not block scopes. We track that the subtree is contained // within an IterationStatement to indicate whether the embedded statement is an // IterationStatementBlock. HierarchyFacts[HierarchyFacts["DoOrWhileStatementIncludes"] = 1280] = "DoOrWhileStatementIncludes"; HierarchyFacts[HierarchyFacts["DoOrWhileStatementExcludes"] = 0] = "DoOrWhileStatementExcludes"; // 'for' statements are new block scopes and have special handling for 'let' declarations. HierarchyFacts[HierarchyFacts["ForStatementIncludes"] = 3328] = "ForStatementIncludes"; HierarchyFacts[HierarchyFacts["ForStatementExcludes"] = 5056] = "ForStatementExcludes"; // 'for-in' and 'for-of' statements are new block scopes and have special handling for // 'let' declarations. HierarchyFacts[HierarchyFacts["ForInOrForOfStatementIncludes"] = 5376] = "ForInOrForOfStatementIncludes"; HierarchyFacts[HierarchyFacts["ForInOrForOfStatementExcludes"] = 3008] = "ForInOrForOfStatementExcludes"; // Blocks (other than function bodies) are new block scopes. HierarchyFacts[HierarchyFacts["BlockIncludes"] = 128] = "BlockIncludes"; HierarchyFacts[HierarchyFacts["BlockExcludes"] = 6976] = "BlockExcludes"; HierarchyFacts[HierarchyFacts["IterationStatementBlockIncludes"] = 512] = "IterationStatementBlockIncludes"; HierarchyFacts[HierarchyFacts["IterationStatementBlockExcludes"] = 7104] = "IterationStatementBlockExcludes"; HierarchyFacts[HierarchyFacts["StaticInitializerIncludes"] = 16449] = "StaticInitializerIncludes"; HierarchyFacts[HierarchyFacts["StaticInitializerExcludes"] = 32670] = "StaticInitializerExcludes"; // // Subtree facts // HierarchyFacts[HierarchyFacts["NewTarget"] = 32768] = "NewTarget"; HierarchyFacts[HierarchyFacts["CapturedLexicalThis"] = 65536] = "CapturedLexicalThis"; // // Subtree masks // HierarchyFacts[HierarchyFacts["SubtreeFactsMask"] = -32768] = "SubtreeFactsMask"; HierarchyFacts[HierarchyFacts["ArrowFunctionSubtreeExcludes"] = 0] = "ArrowFunctionSubtreeExcludes"; HierarchyFacts[HierarchyFacts["FunctionSubtreeExcludes"] = 98304] = "FunctionSubtreeExcludes"; })(HierarchyFacts || (HierarchyFacts = {})); var SpreadSegmentKind; (function (SpreadSegmentKind) { SpreadSegmentKind[SpreadSegmentKind["None"] = 0] = "None"; SpreadSegmentKind[SpreadSegmentKind["UnpackedSpread"] = 1] = "UnpackedSpread"; SpreadSegmentKind[SpreadSegmentKind["PackedSpread"] = 2] = "PackedSpread"; })(SpreadSegmentKind || (SpreadSegmentKind = {})); function createSpreadSegment(kind, expression) { return { kind: kind, expression: expression }; } function transformES2015(context) { var factory = context.factory, emitHelpers = context.getEmitHelperFactory, startLexicalEnvironment = context.startLexicalEnvironment, resumeLexicalEnvironment = context.resumeLexicalEnvironment, endLexicalEnvironment = context.endLexicalEnvironment, hoistVariableDeclaration = context.hoistVariableDeclaration; var compilerOptions = context.getCompilerOptions(); var resolver = context.getEmitResolver(); var previousOnSubstituteNode = context.onSubstituteNode; var previousOnEmitNode = context.onEmitNode; context.onEmitNode = onEmitNode; context.onSubstituteNode = onSubstituteNode; var currentSourceFile; var currentText; var hierarchyFacts; var taggedTemplateStringDeclarations; function recordTaggedTemplateString(temp) { taggedTemplateStringDeclarations = ts.append(taggedTemplateStringDeclarations, factory.createVariableDeclaration(temp)); } /** * Used to track if we are emitting body of the converted loop */ var convertedLoopState; /** * Keeps track of whether substitutions have been enabled for specific cases. * They are persisted between each SourceFile transformation and should not * be reset. */ var enabledSubstitutions; return ts.chainBundle(context, transformSourceFile); function transformSourceFile(node) { if (node.isDeclarationFile) { return node; } currentSourceFile = node; currentText = node.text; var visited = visitSourceFile(node); ts.addEmitHelpers(visited, context.readEmitHelpers()); currentSourceFile = undefined; currentText = undefined; taggedTemplateStringDeclarations = undefined; hierarchyFacts = 0 /* HierarchyFacts.None */; return visited; } /** * Sets the `HierarchyFacts` for this node prior to visiting this node's subtree, returning the facts set prior to modification. * @param excludeFacts The existing `HierarchyFacts` to reset before visiting the subtree. * @param includeFacts The new `HierarchyFacts` to set before visiting the subtree. */ function enterSubtree(excludeFacts, includeFacts) { var ancestorFacts = hierarchyFacts; hierarchyFacts = (hierarchyFacts & ~excludeFacts | includeFacts) & 32767 /* HierarchyFacts.AncestorFactsMask */; return ancestorFacts; } /** * Restores the `HierarchyFacts` for this node's ancestor after visiting this node's * subtree, propagating specific facts from the subtree. * @param ancestorFacts The `HierarchyFacts` of the ancestor to restore after visiting the subtree. * @param excludeFacts The existing `HierarchyFacts` of the subtree that should not be propagated. * @param includeFacts The new `HierarchyFacts` of the subtree that should be propagated. */ function exitSubtree(ancestorFacts, excludeFacts, includeFacts) { hierarchyFacts = (hierarchyFacts & ~excludeFacts | includeFacts) & -32768 /* HierarchyFacts.SubtreeFactsMask */ | ancestorFacts; } function isReturnVoidStatementInConstructorWithCapturedSuper(node) { return (hierarchyFacts & 8192 /* HierarchyFacts.ConstructorWithCapturedSuper */) !== 0 && node.kind === 247 /* SyntaxKind.ReturnStatement */ && !node.expression; } function isOrMayContainReturnCompletion(node) { return node.transformFlags & 2097152 /* TransformFlags.ContainsHoistedDeclarationOrCompletion */ && (ts.isReturnStatement(node) || ts.isIfStatement(node) || ts.isWithStatement(node) || ts.isSwitchStatement(node) || ts.isCaseBlock(node) || ts.isCaseClause(node) || ts.isDefaultClause(node) || ts.isTryStatement(node) || ts.isCatchClause(node) || ts.isLabeledStatement(node) || ts.isIterationStatement(node, /*lookInLabeledStatements*/ false) || ts.isBlock(node)); } function shouldVisitNode(node) { return (node.transformFlags & 1024 /* TransformFlags.ContainsES2015 */) !== 0 || convertedLoopState !== undefined || (hierarchyFacts & 8192 /* HierarchyFacts.ConstructorWithCapturedSuper */ && isOrMayContainReturnCompletion(node)) || (ts.isIterationStatement(node, /*lookInLabeledStatements*/ false) && shouldConvertIterationStatement(node)) || (ts.getEmitFlags(node) & 33554432 /* EmitFlags.TypeScriptClassWrapper */) !== 0; } function visitor(node) { return shouldVisitNode(node) ? visitorWorker(node, /*expressionResultIsUnused*/ false) : node; } function visitorWithUnusedExpressionResult(node) { return shouldVisitNode(node) ? visitorWorker(node, /*expressionResultIsUnused*/ true) : node; } function classWrapperStatementVisitor(node) { if (shouldVisitNode(node)) { var original = ts.getOriginalNode(node); if (ts.isPropertyDeclaration(original) && ts.hasStaticModifier(original)) { var ancestorFacts = enterSubtree(32670 /* HierarchyFacts.StaticInitializerExcludes */, 16449 /* HierarchyFacts.StaticInitializerIncludes */); var result = visitorWorker(node, /*expressionResultIsUnused*/ false); exitSubtree(ancestorFacts, 98304 /* HierarchyFacts.FunctionSubtreeExcludes */, 0 /* HierarchyFacts.None */); return result; } return visitorWorker(node, /*expressionResultIsUnused*/ false); } return node; } function callExpressionVisitor(node) { if (node.kind === 106 /* SyntaxKind.SuperKeyword */) { return visitSuperKeyword(/*isExpressionOfCall*/ true); } return visitor(node); } function visitorWorker(node, expressionResultIsUnused) { switch (node.kind) { case 124 /* SyntaxKind.StaticKeyword */: return undefined; // elide static keyword case 257 /* SyntaxKind.ClassDeclaration */: return visitClassDeclaration(node); case 226 /* SyntaxKind.ClassExpression */: return visitClassExpression(node); case 164 /* SyntaxKind.Parameter */: return visitParameter(node); case 256 /* SyntaxKind.FunctionDeclaration */: return visitFunctionDeclaration(node); case 214 /* SyntaxKind.ArrowFunction */: return visitArrowFunction(node); case 213 /* SyntaxKind.FunctionExpression */: return visitFunctionExpression(node); case 254 /* SyntaxKind.VariableDeclaration */: return visitVariableDeclaration(node); case 79 /* SyntaxKind.Identifier */: return visitIdentifier(node); case 255 /* SyntaxKind.VariableDeclarationList */: return visitVariableDeclarationList(node); case 249 /* SyntaxKind.SwitchStatement */: return visitSwitchStatement(node); case 263 /* SyntaxKind.CaseBlock */: return visitCaseBlock(node); case 235 /* SyntaxKind.Block */: return visitBlock(node, /*isFunctionBody*/ false); case 246 /* SyntaxKind.BreakStatement */: case 245 /* SyntaxKind.ContinueStatement */: return visitBreakOrContinueStatement(node); case 250 /* SyntaxKind.LabeledStatement */: return visitLabeledStatement(node); case 240 /* SyntaxKind.DoStatement */: case 241 /* SyntaxKind.WhileStatement */: return visitDoOrWhileStatement(node, /*outermostLabeledStatement*/ undefined); case 242 /* SyntaxKind.ForStatement */: return visitForStatement(node, /*outermostLabeledStatement*/ undefined); case 243 /* SyntaxKind.ForInStatement */: return visitForInStatement(node, /*outermostLabeledStatement*/ undefined); case 244 /* SyntaxKind.ForOfStatement */: return visitForOfStatement(node, /*outermostLabeledStatement*/ undefined); case 238 /* SyntaxKind.ExpressionStatement */: return visitExpressionStatement(node); case 205 /* SyntaxKind.ObjectLiteralExpression */: return visitObjectLiteralExpression(node); case 292 /* SyntaxKind.CatchClause */: return visitCatchClause(node); case 297 /* SyntaxKind.ShorthandPropertyAssignment */: return visitShorthandPropertyAssignment(node); case 162 /* SyntaxKind.ComputedPropertyName */: return visitComputedPropertyName(node); case 204 /* SyntaxKind.ArrayLiteralExpression */: return visitArrayLiteralExpression(node); case 208 /* SyntaxKind.CallExpression */: return visitCallExpression(node); case 209 /* SyntaxKind.NewExpression */: return visitNewExpression(node); case 212 /* SyntaxKind.ParenthesizedExpression */: return visitParenthesizedExpression(node, expressionResultIsUnused); case 221 /* SyntaxKind.BinaryExpression */: return visitBinaryExpression(node, expressionResultIsUnused); case 351 /* SyntaxKind.CommaListExpression */: return visitCommaListExpression(node, expressionResultIsUnused); case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: case 15 /* SyntaxKind.TemplateHead */: case 16 /* SyntaxKind.TemplateMiddle */: case 17 /* SyntaxKind.TemplateTail */: return visitTemplateLiteral(node); case 10 /* SyntaxKind.StringLiteral */: return visitStringLiteral(node); case 8 /* SyntaxKind.NumericLiteral */: return visitNumericLiteral(node); case 210 /* SyntaxKind.TaggedTemplateExpression */: return visitTaggedTemplateExpression(node); case 223 /* SyntaxKind.TemplateExpression */: return visitTemplateExpression(node); case 224 /* SyntaxKind.YieldExpression */: return visitYieldExpression(node); case 225 /* SyntaxKind.SpreadElement */: return visitSpreadElement(node); case 106 /* SyntaxKind.SuperKeyword */: return visitSuperKeyword(/*isExpressionOfCall*/ false); case 108 /* SyntaxKind.ThisKeyword */: return visitThisKeyword(node); case 231 /* SyntaxKind.MetaProperty */: return visitMetaProperty(node); case 169 /* SyntaxKind.MethodDeclaration */: return visitMethodDeclaration(node); case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: return visitAccessorDeclaration(node); case 237 /* SyntaxKind.VariableStatement */: return visitVariableStatement(node); case 247 /* SyntaxKind.ReturnStatement */: return visitReturnStatement(node); case 217 /* SyntaxKind.VoidExpression */: return visitVoidExpression(node); default: return ts.visitEachChild(node, visitor, context); } } function visitSourceFile(node) { var ancestorFacts = enterSubtree(8064 /* HierarchyFacts.SourceFileExcludes */, 64 /* HierarchyFacts.SourceFileIncludes */); var prologue = []; var statements = []; startLexicalEnvironment(); var statementOffset = factory.copyPrologue(node.statements, prologue, /*ensureUseStrict*/ false, visitor); ts.addRange(statements, ts.visitNodes(node.statements, visitor, ts.isStatement, statementOffset)); if (taggedTemplateStringDeclarations) { statements.push(factory.createVariableStatement(/*modifiers*/ undefined, factory.createVariableDeclarationList(taggedTemplateStringDeclarations))); } factory.mergeLexicalEnvironment(prologue, endLexicalEnvironment()); insertCaptureThisForNodeIfNeeded(prologue, node); exitSubtree(ancestorFacts, 0 /* HierarchyFacts.None */, 0 /* HierarchyFacts.None */); return factory.updateSourceFile(node, ts.setTextRange(factory.createNodeArray(ts.concatenate(prologue, statements)), node.statements)); } function visitSwitchStatement(node) { if (convertedLoopState !== undefined) { var savedAllowedNonLabeledJumps = convertedLoopState.allowedNonLabeledJumps; // for switch statement allow only non-labeled break convertedLoopState.allowedNonLabeledJumps |= 2 /* Jump.Break */; var result = ts.visitEachChild(node, visitor, context); convertedLoopState.allowedNonLabeledJumps = savedAllowedNonLabeledJumps; return result; } return ts.visitEachChild(node, visitor, context); } function visitCaseBlock(node) { var ancestorFacts = enterSubtree(7104 /* HierarchyFacts.BlockScopeExcludes */, 0 /* HierarchyFacts.BlockScopeIncludes */); var updated = ts.visitEachChild(node, visitor, context); exitSubtree(ancestorFacts, 0 /* HierarchyFacts.None */, 0 /* HierarchyFacts.None */); return updated; } function returnCapturedThis(node) { return ts.setOriginalNode(factory.createReturnStatement(factory.createUniqueName("_this", 16 /* GeneratedIdentifierFlags.Optimistic */ | 32 /* GeneratedIdentifierFlags.FileLevel */)), node); } function visitReturnStatement(node) { if (convertedLoopState) { convertedLoopState.nonLocalJumps |= 8 /* Jump.Return */; if (isReturnVoidStatementInConstructorWithCapturedSuper(node)) { node = returnCapturedThis(node); } return factory.createReturnStatement(factory.createObjectLiteralExpression([ factory.createPropertyAssignment(factory.createIdentifier("value"), node.expression ? ts.visitNode(node.expression, visitor, ts.isExpression) : factory.createVoidZero()) ])); } else if (isReturnVoidStatementInConstructorWithCapturedSuper(node)) { return returnCapturedThis(node); } return ts.visitEachChild(node, visitor, context); } function visitThisKeyword(node) { if (hierarchyFacts & 2 /* HierarchyFacts.ArrowFunction */ && !(hierarchyFacts & 16384 /* HierarchyFacts.StaticInitializer */)) { hierarchyFacts |= 65536 /* HierarchyFacts.CapturedLexicalThis */; } if (convertedLoopState) { if (hierarchyFacts & 2 /* HierarchyFacts.ArrowFunction */) { // if the enclosing function is an ArrowFunction then we use the captured 'this' keyword. convertedLoopState.containsLexicalThis = true; return node; } return convertedLoopState.thisName || (convertedLoopState.thisName = factory.createUniqueName("this")); } return node; } function visitVoidExpression(node) { return ts.visitEachChild(node, visitorWithUnusedExpressionResult, context); } function visitIdentifier(node) { if (!convertedLoopState) { return node; } if (resolver.isArgumentsLocalBinding(node)) { return convertedLoopState.argumentsName || (convertedLoopState.argumentsName = factory.createUniqueName("arguments")); } return node; } function visitBreakOrContinueStatement(node) { if (convertedLoopState) { // check if we can emit break/continue as is // it is possible if either // - break/continue is labeled and label is located inside the converted loop // - break/continue is non-labeled and located in non-converted loop/switch statement var jump = node.kind === 246 /* SyntaxKind.BreakStatement */ ? 2 /* Jump.Break */ : 4 /* Jump.Continue */; var canUseBreakOrContinue = (node.label && convertedLoopState.labels && convertedLoopState.labels.get(ts.idText(node.label))) || (!node.label && (convertedLoopState.allowedNonLabeledJumps & jump)); if (!canUseBreakOrContinue) { var labelMarker = void 0; var label = node.label; if (!label) { if (node.kind === 246 /* SyntaxKind.BreakStatement */) { convertedLoopState.nonLocalJumps |= 2 /* Jump.Break */; labelMarker = "break"; } else { convertedLoopState.nonLocalJumps |= 4 /* Jump.Continue */; // note: return value is emitted only to simplify debugging, call to converted loop body does not do any dispatching on it. labelMarker = "continue"; } } else { if (node.kind === 246 /* SyntaxKind.BreakStatement */) { labelMarker = "break-".concat(label.escapedText); setLabeledJump(convertedLoopState, /*isBreak*/ true, ts.idText(label), labelMarker); } else { labelMarker = "continue-".concat(label.escapedText); setLabeledJump(convertedLoopState, /*isBreak*/ false, ts.idText(label), labelMarker); } } var returnExpression = factory.createStringLiteral(labelMarker); if (convertedLoopState.loopOutParameters.length) { var outParams = convertedLoopState.loopOutParameters; var expr = void 0; for (var i = 0; i < outParams.length; i++) { var copyExpr = copyOutParameter(outParams[i], 1 /* CopyDirection.ToOutParameter */); if (i === 0) { expr = copyExpr; } else { expr = factory.createBinaryExpression(expr, 27 /* SyntaxKind.CommaToken */, copyExpr); } } returnExpression = factory.createBinaryExpression(expr, 27 /* SyntaxKind.CommaToken */, returnExpression); } return factory.createReturnStatement(returnExpression); } } return ts.visitEachChild(node, visitor, context); } /** * Visits a ClassDeclaration and transforms it into a variable statement. * * @param node A ClassDeclaration node. */ function visitClassDeclaration(node) { // [source] // class C { } // // [output] // var C = (function () { // function C() { // } // return C; // }()); var variable = factory.createVariableDeclaration(factory.getLocalName(node, /*allowComments*/ true), /*exclamationToken*/ undefined, /*type*/ undefined, transformClassLikeDeclarationToExpression(node)); ts.setOriginalNode(variable, node); var statements = []; var statement = factory.createVariableStatement(/*modifiers*/ undefined, factory.createVariableDeclarationList([variable])); ts.setOriginalNode(statement, node); ts.setTextRange(statement, node); ts.startOnNewLine(statement); statements.push(statement); // Add an `export default` statement for default exports (for `--target es5 --module es6`) if (ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */)) { var exportStatement = ts.hasSyntacticModifier(node, 512 /* ModifierFlags.Default */) ? factory.createExportDefault(factory.getLocalName(node)) : factory.createExternalModuleExport(factory.getLocalName(node)); ts.setOriginalNode(exportStatement, statement); statements.push(exportStatement); } var emitFlags = ts.getEmitFlags(node); if ((emitFlags & 4194304 /* EmitFlags.HasEndOfDeclarationMarker */) === 0) { // Add a DeclarationMarker as a marker for the end of the declaration statements.push(factory.createEndOfDeclarationMarker(node)); ts.setEmitFlags(statement, emitFlags | 4194304 /* EmitFlags.HasEndOfDeclarationMarker */); } return ts.singleOrMany(statements); } /** * Visits a ClassExpression and transforms it into an expression. * * @param node A ClassExpression node. */ function visitClassExpression(node) { // [source] // C = class { } // // [output] // C = (function () { // function class_1() { // } // return class_1; // }()) return transformClassLikeDeclarationToExpression(node); } /** * Transforms a ClassExpression or ClassDeclaration into an expression. * * @param node A ClassExpression or ClassDeclaration node. */ function transformClassLikeDeclarationToExpression(node) { // [source] // class C extends D { // constructor() {} // method() {} // get prop() {} // set prop(v) {} // } // // [output] // (function (_super) { // __extends(C, _super); // function C() { // } // C.prototype.method = function () {} // Object.defineProperty(C.prototype, "prop", { // get: function() {}, // set: function() {}, // enumerable: true, // configurable: true // }); // return C; // }(D)) if (node.name) { enableSubstitutionsForBlockScopedBindings(); } var extendsClauseElement = ts.getClassExtendsHeritageElement(node); var classFunction = factory.createFunctionExpression( /*modifiers*/ undefined, /*asteriskToken*/ undefined, /*name*/ undefined, /*typeParameters*/ undefined, extendsClauseElement ? [factory.createParameterDeclaration(/*decorators*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, factory.createUniqueName("_super", 16 /* GeneratedIdentifierFlags.Optimistic */ | 32 /* GeneratedIdentifierFlags.FileLevel */))] : [], /*type*/ undefined, transformClassBody(node, extendsClauseElement)); // To preserve the behavior of the old emitter, we explicitly indent // the body of the function here if it was requested in an earlier // transformation. ts.setEmitFlags(classFunction, (ts.getEmitFlags(node) & 65536 /* EmitFlags.Indented */) | 524288 /* EmitFlags.ReuseTempVariableScope */); // "inner" and "outer" below are added purely to preserve source map locations from // the old emitter var inner = factory.createPartiallyEmittedExpression(classFunction); ts.setTextRangeEnd(inner, node.end); ts.setEmitFlags(inner, 1536 /* EmitFlags.NoComments */); var outer = factory.createPartiallyEmittedExpression(inner); ts.setTextRangeEnd(outer, ts.skipTrivia(currentText, node.pos)); ts.setEmitFlags(outer, 1536 /* EmitFlags.NoComments */); var result = factory.createParenthesizedExpression(factory.createCallExpression(outer, /*typeArguments*/ undefined, extendsClauseElement ? [ts.visitNode(extendsClauseElement.expression, visitor, ts.isExpression)] : [])); ts.addSyntheticLeadingComment(result, 3 /* SyntaxKind.MultiLineCommentTrivia */, "* @class "); return result; } /** * Transforms a ClassExpression or ClassDeclaration into a function body. * * @param node A ClassExpression or ClassDeclaration node. * @param extendsClauseElement The expression for the class `extends` clause. */ function transformClassBody(node, extendsClauseElement) { var statements = []; var name = factory.getInternalName(node); var constructorLikeName = ts.isIdentifierANonContextualKeyword(name) ? factory.getGeneratedNameForNode(name) : name; startLexicalEnvironment(); addExtendsHelperIfNeeded(statements, node, extendsClauseElement); addConstructor(statements, node, constructorLikeName, extendsClauseElement); addClassMembers(statements, node); // Create a synthetic text range for the return statement. var closingBraceLocation = ts.createTokenRange(ts.skipTrivia(currentText, node.members.end), 19 /* SyntaxKind.CloseBraceToken */); // The following partially-emitted expression exists purely to align our sourcemap // emit with the original emitter. var outer = factory.createPartiallyEmittedExpression(constructorLikeName); ts.setTextRangeEnd(outer, closingBraceLocation.end); ts.setEmitFlags(outer, 1536 /* EmitFlags.NoComments */); var statement = factory.createReturnStatement(outer); ts.setTextRangePos(statement, closingBraceLocation.pos); ts.setEmitFlags(statement, 1536 /* EmitFlags.NoComments */ | 384 /* EmitFlags.NoTokenSourceMaps */); statements.push(statement); ts.insertStatementsAfterStandardPrologue(statements, endLexicalEnvironment()); var block = factory.createBlock(ts.setTextRange(factory.createNodeArray(statements), /*location*/ node.members), /*multiLine*/ true); ts.setEmitFlags(block, 1536 /* EmitFlags.NoComments */); return block; } /** * Adds a call to the `__extends` helper if needed for a class. * * @param statements The statements of the class body function. * @param node The ClassExpression or ClassDeclaration node. * @param extendsClauseElement The expression for the class `extends` clause. */ function addExtendsHelperIfNeeded(statements, node, extendsClauseElement) { if (extendsClauseElement) { statements.push(ts.setTextRange(factory.createExpressionStatement(emitHelpers().createExtendsHelper(factory.getInternalName(node))), /*location*/ extendsClauseElement)); } } /** * Adds the constructor of the class to a class body function. * * @param statements The statements of the class body function. * @param node The ClassExpression or ClassDeclaration node. * @param extendsClauseElement The expression for the class `extends` clause. */ function addConstructor(statements, node, name, extendsClauseElement) { var savedConvertedLoopState = convertedLoopState; convertedLoopState = undefined; var ancestorFacts = enterSubtree(32662 /* HierarchyFacts.ConstructorExcludes */, 73 /* HierarchyFacts.ConstructorIncludes */); var constructor = ts.getFirstConstructorWithBody(node); var hasSynthesizedSuper = hasSynthesizedDefaultSuperCall(constructor, extendsClauseElement !== undefined); var constructorFunction = factory.createFunctionDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*asteriskToken*/ undefined, name, /*typeParameters*/ undefined, transformConstructorParameters(constructor, hasSynthesizedSuper), /*type*/ undefined, transformConstructorBody(constructor, node, extendsClauseElement, hasSynthesizedSuper)); ts.setTextRange(constructorFunction, constructor || node); if (extendsClauseElement) { ts.setEmitFlags(constructorFunction, 8 /* EmitFlags.CapturesThis */); } statements.push(constructorFunction); exitSubtree(ancestorFacts, 98304 /* HierarchyFacts.FunctionSubtreeExcludes */, 0 /* HierarchyFacts.None */); convertedLoopState = savedConvertedLoopState; } /** * Transforms the parameters of the constructor declaration of a class. * * @param constructor The constructor for the class. * @param hasSynthesizedSuper A value indicating whether the constructor starts with a * synthesized `super` call. */ function transformConstructorParameters(constructor, hasSynthesizedSuper) { // If the TypeScript transformer needed to synthesize a constructor for property // initializers, it would have also added a synthetic `...args` parameter and // `super` call. // If this is the case, we do not include the synthetic `...args` parameter and // will instead use the `arguments` object in ES5/3. return ts.visitParameterList(constructor && !hasSynthesizedSuper ? constructor.parameters : undefined, visitor, context) || []; } function createDefaultConstructorBody(node, isDerivedClass) { // We must be here because the user didn't write a constructor // but we needed to call 'super(...args)' anyway as per 14.5.14 of the ES2016 spec. // If that's the case we can just immediately return the result of a 'super()' call. var statements = []; resumeLexicalEnvironment(); factory.mergeLexicalEnvironment(statements, endLexicalEnvironment()); if (isDerivedClass) { // return _super !== null && _super.apply(this, arguments) || this; statements.push(factory.createReturnStatement(createDefaultSuperCallOrThis())); } var statementsArray = factory.createNodeArray(statements); ts.setTextRange(statementsArray, node.members); var block = factory.createBlock(statementsArray, /*multiLine*/ true); ts.setTextRange(block, node); ts.setEmitFlags(block, 1536 /* EmitFlags.NoComments */); return block; } /** * Transforms the body of a constructor declaration of a class. * * @param constructor The constructor for the class. * @param node The node which contains the constructor. * @param extendsClauseElement The expression for the class `extends` clause. * @param hasSynthesizedSuper A value indicating whether the constructor starts with a * synthesized `super` call. */ function transformConstructorBody(constructor, node, extendsClauseElement, hasSynthesizedSuper) { // determine whether the class is known syntactically to be a derived class (e.g. a // class that extends a value that is not syntactically known to be `null`). var isDerivedClass = !!extendsClauseElement && ts.skipOuterExpressions(extendsClauseElement.expression).kind !== 104 /* SyntaxKind.NullKeyword */; // When the subclass does not have a constructor, we synthesize a *default* constructor using the following // representation: // // ``` // // es2015 (source) // class C extends Base { } // // // es5 (transformed) // var C = (function (_super) { // function C() { // return _super.apply(this, arguments) || this; // } // return C; // })(Base); // ``` if (!constructor) return createDefaultConstructorBody(node, isDerivedClass); // The prologue will contain all leading standard and custom prologue statements added by this transform var prologue = []; var statements = []; resumeLexicalEnvironment(); // In derived classes, there may be code before the necessary super() call // We'll remove pre-super statements to be tacked on after the rest of the body var existingPrologue = ts.takeWhile(constructor.body.statements, ts.isPrologueDirective); var _a = findSuperCallAndStatementIndex(constructor.body.statements, existingPrologue), superCall = _a.superCall, superStatementIndex = _a.superStatementIndex; var postSuperStatementsStart = superStatementIndex === -1 ? existingPrologue.length : superStatementIndex + 1; // If a super call has already been synthesized, // we're going to assume that we should just transform everything after that. // The assumption is that no prior step in the pipeline has added any prologue directives. var statementOffset = postSuperStatementsStart; if (!hasSynthesizedSuper) statementOffset = factory.copyStandardPrologue(constructor.body.statements, prologue, statementOffset, /*ensureUseStrict*/ false); if (!hasSynthesizedSuper) statementOffset = factory.copyCustomPrologue(constructor.body.statements, statements, statementOffset, visitor, /*filter*/ undefined); // If there already exists a call to `super()`, visit the statement directly var superCallExpression; if (hasSynthesizedSuper) { superCallExpression = createDefaultSuperCallOrThis(); } else if (superCall) { superCallExpression = visitSuperCallInBody(superCall); } if (superCallExpression) { hierarchyFacts |= 8192 /* HierarchyFacts.ConstructorWithCapturedSuper */; } // Add parameter defaults at the beginning of the output, with prologue statements addDefaultValueAssignmentsIfNeeded(prologue, constructor); addRestParameterIfNeeded(prologue, constructor, hasSynthesizedSuper); // visit the remaining statements ts.addRange(statements, ts.visitNodes(constructor.body.statements, visitor, ts.isStatement, /*start*/ statementOffset)); factory.mergeLexicalEnvironment(prologue, endLexicalEnvironment()); insertCaptureNewTargetIfNeeded(prologue, constructor, /*copyOnWrite*/ false); if (isDerivedClass || superCallExpression) { if (superCallExpression && postSuperStatementsStart === constructor.body.statements.length && !(constructor.body.transformFlags & 8192 /* TransformFlags.ContainsLexicalThis */)) { // If the subclass constructor does *not* contain `this` and *ends* with a `super()` call, we will use the // following representation: // // ``` // // es2015 (source) // class C extends Base { // constructor() { // super("foo"); // } // } // // // es5 (transformed) // var C = (function (_super) { // function C() { // return _super.call(this, "foo") || this; // } // return C; // })(Base); // ``` var superCall_1 = ts.cast(ts.cast(superCallExpression, ts.isBinaryExpression).left, ts.isCallExpression); var returnStatement = factory.createReturnStatement(superCallExpression); ts.setCommentRange(returnStatement, ts.getCommentRange(superCall_1)); ts.setEmitFlags(superCall_1, 1536 /* EmitFlags.NoComments */); statements.push(returnStatement); } else { // Otherwise, we will use the following transformed representation for calls to `super()` in a constructor: // // ``` // // es2015 (source) // class C extends Base { // constructor() { // super("foo"); // this.x = 1; // } // } // // // es5 (transformed) // var C = (function (_super) { // function C() { // var _this = _super.call(this, "foo") || this; // _this.x = 1; // return _this; // } // return C; // })(Base); // ``` // If the super() call is the first statement, we can directly create and assign its result to `_this` if (superStatementIndex <= existingPrologue.length) { insertCaptureThisForNode(statements, constructor, superCallExpression || createActualThis()); } // Since the `super()` call isn't the first statement, it's split across 1-2 statements: // * A prologue `var _this = this;`, in case the constructor accesses this before super() // * If it exists, a reassignment to that `_this` of the super() call else { insertCaptureThisForNode(prologue, constructor, createActualThis()); if (superCallExpression) { insertSuperThisCaptureThisForNode(statements, superCallExpression); } } if (!isSufficientlyCoveredByReturnStatements(constructor.body)) { statements.push(factory.createReturnStatement(factory.createUniqueName("_this", 16 /* GeneratedIdentifierFlags.Optimistic */ | 32 /* GeneratedIdentifierFlags.FileLevel */))); } } } else { // If a class is not derived from a base class or does not have a call to `super()`, `this` is only // captured when necessitated by an arrow function capturing the lexical `this`: // // ``` // // es2015 // class C {} // // // es5 // var C = (function () { // function C() { // } // return C; // })(); // ``` insertCaptureThisForNodeIfNeeded(prologue, constructor); } var body = factory.createBlock(ts.setTextRange(factory.createNodeArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray([], existingPrologue, true), prologue, true), (superStatementIndex <= existingPrologue.length ? ts.emptyArray : ts.visitNodes(constructor.body.statements, visitor, ts.isStatement, existingPrologue.length, superStatementIndex - existingPrologue.length)), true), statements, true)), /*location*/ constructor.body.statements), /*multiLine*/ true); ts.setTextRange(body, constructor.body); return body; } function findSuperCallAndStatementIndex(originalBodyStatements, existingPrologue) { for (var i = existingPrologue.length; i < originalBodyStatements.length; i += 1) { var superCall = ts.getSuperCallFromStatement(originalBodyStatements[i]); if (superCall) { // With a super() call, split the statements into pre-super() and 'body' (post-super()) return { superCall: superCall, superStatementIndex: i, }; } } // Since there was no super() call found, consider all statements to be in the main 'body' (post-super()) return { superStatementIndex: -1, }; } /** * We want to try to avoid emitting a return statement in certain cases if a user already returned something. * It would generate obviously dead code, so we'll try to make things a little bit prettier * by doing a minimal check on whether some common patterns always explicitly return. */ function isSufficientlyCoveredByReturnStatements(statement) { // A return statement is considered covered. if (statement.kind === 247 /* SyntaxKind.ReturnStatement */) { return true; } // An if-statement with two covered branches is covered. else if (statement.kind === 239 /* SyntaxKind.IfStatement */) { var ifStatement = statement; if (ifStatement.elseStatement) { return isSufficientlyCoveredByReturnStatements(ifStatement.thenStatement) && isSufficientlyCoveredByReturnStatements(ifStatement.elseStatement); } } // A block is covered if it has a last statement which is covered. else if (statement.kind === 235 /* SyntaxKind.Block */) { var lastStatement = ts.lastOrUndefined(statement.statements); if (lastStatement && isSufficientlyCoveredByReturnStatements(lastStatement)) { return true; } } return false; } function createActualThis() { return ts.setEmitFlags(factory.createThis(), 4 /* EmitFlags.NoSubstitution */); } function createDefaultSuperCallOrThis() { return factory.createLogicalOr(factory.createLogicalAnd(factory.createStrictInequality(factory.createUniqueName("_super", 16 /* GeneratedIdentifierFlags.Optimistic */ | 32 /* GeneratedIdentifierFlags.FileLevel */), factory.createNull()), factory.createFunctionApplyCall(factory.createUniqueName("_super", 16 /* GeneratedIdentifierFlags.Optimistic */ | 32 /* GeneratedIdentifierFlags.FileLevel */), createActualThis(), factory.createIdentifier("arguments"))), createActualThis()); } /** * Visits a parameter declaration. * * @param node A ParameterDeclaration node. */ function visitParameter(node) { if (node.dotDotDotToken) { // rest parameters are elided return undefined; } else if (ts.isBindingPattern(node.name)) { // Binding patterns are converted into a generated name and are // evaluated inside the function body. return ts.setOriginalNode(ts.setTextRange(factory.createParameterDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, factory.getGeneratedNameForNode(node), /*questionToken*/ undefined, /*type*/ undefined, /*initializer*/ undefined), /*location*/ node), /*original*/ node); } else if (node.initializer) { // Initializers are elided return ts.setOriginalNode(ts.setTextRange(factory.createParameterDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, node.name, /*questionToken*/ undefined, /*type*/ undefined, /*initializer*/ undefined), /*location*/ node), /*original*/ node); } else { return node; } } function hasDefaultValueOrBindingPattern(node) { return node.initializer !== undefined || ts.isBindingPattern(node.name); } /** * Adds statements to the body of a function-like node if it contains parameters with * binding patterns or initializers. * * @param statements The statements for the new function body. * @param node A function-like node. */ function addDefaultValueAssignmentsIfNeeded(statements, node) { if (!ts.some(node.parameters, hasDefaultValueOrBindingPattern)) { return false; } var added = false; for (var _i = 0, _a = node.parameters; _i < _a.length; _i++) { var parameter = _a[_i]; var name = parameter.name, initializer = parameter.initializer, dotDotDotToken = parameter.dotDotDotToken; // A rest parameter cannot have a binding pattern or an initializer, // so let's just ignore it. if (dotDotDotToken) { continue; } if (ts.isBindingPattern(name)) { added = insertDefaultValueAssignmentForBindingPattern(statements, parameter, name, initializer) || added; } else if (initializer) { insertDefaultValueAssignmentForInitializer(statements, parameter, name, initializer); added = true; } } return added; } /** * Adds statements to the body of a function-like node for parameters with binding patterns * * @param statements The statements for the new function body. * @param parameter The parameter for the function. * @param name The name of the parameter. * @param initializer The initializer for the parameter. */ function insertDefaultValueAssignmentForBindingPattern(statements, parameter, name, initializer) { // In cases where a binding pattern is simply '[]' or '{}', // we usually don't want to emit a var declaration; however, in the presence // of an initializer, we must emit that expression to preserve side effects. if (name.elements.length > 0) { ts.insertStatementAfterCustomPrologue(statements, ts.setEmitFlags(factory.createVariableStatement( /*modifiers*/ undefined, factory.createVariableDeclarationList(ts.flattenDestructuringBinding(parameter, visitor, context, 0 /* FlattenLevel.All */, factory.getGeneratedNameForNode(parameter)))), 1048576 /* EmitFlags.CustomPrologue */)); return true; } else if (initializer) { ts.insertStatementAfterCustomPrologue(statements, ts.setEmitFlags(factory.createExpressionStatement(factory.createAssignment(factory.getGeneratedNameForNode(parameter), ts.visitNode(initializer, visitor, ts.isExpression))), 1048576 /* EmitFlags.CustomPrologue */)); return true; } return false; } /** * Adds statements to the body of a function-like node for parameters with initializers. * * @param statements The statements for the new function body. * @param parameter The parameter for the function. * @param name The name of the parameter. * @param initializer The initializer for the parameter. */ function insertDefaultValueAssignmentForInitializer(statements, parameter, name, initializer) { initializer = ts.visitNode(initializer, visitor, ts.isExpression); var statement = factory.createIfStatement(factory.createTypeCheck(factory.cloneNode(name), "undefined"), ts.setEmitFlags(ts.setTextRange(factory.createBlock([ factory.createExpressionStatement(ts.setEmitFlags(ts.setTextRange(factory.createAssignment( // TODO(rbuckton): Does this need to be parented? ts.setEmitFlags(ts.setParent(ts.setTextRange(factory.cloneNode(name), name), name.parent), 48 /* EmitFlags.NoSourceMap */), ts.setEmitFlags(initializer, 48 /* EmitFlags.NoSourceMap */ | ts.getEmitFlags(initializer) | 1536 /* EmitFlags.NoComments */)), parameter), 1536 /* EmitFlags.NoComments */)) ]), parameter), 1 /* EmitFlags.SingleLine */ | 32 /* EmitFlags.NoTrailingSourceMap */ | 384 /* EmitFlags.NoTokenSourceMaps */ | 1536 /* EmitFlags.NoComments */)); ts.startOnNewLine(statement); ts.setTextRange(statement, parameter); ts.setEmitFlags(statement, 384 /* EmitFlags.NoTokenSourceMaps */ | 32 /* EmitFlags.NoTrailingSourceMap */ | 1048576 /* EmitFlags.CustomPrologue */ | 1536 /* EmitFlags.NoComments */); ts.insertStatementAfterCustomPrologue(statements, statement); } /** * Gets a value indicating whether we need to add statements to handle a rest parameter. * * @param node A ParameterDeclaration node. * @param inConstructorWithSynthesizedSuper A value indicating whether the parameter is * part of a constructor declaration with a * synthesized call to `super` */ function shouldAddRestParameter(node, inConstructorWithSynthesizedSuper) { return !!(node && node.dotDotDotToken && !inConstructorWithSynthesizedSuper); } /** * Adds statements to the body of a function-like node if it contains a rest parameter. * * @param statements The statements for the new function body. * @param node A function-like node. * @param inConstructorWithSynthesizedSuper A value indicating whether the parameter is * part of a constructor declaration with a * synthesized call to `super` */ function addRestParameterIfNeeded(statements, node, inConstructorWithSynthesizedSuper) { var prologueStatements = []; var parameter = ts.lastOrUndefined(node.parameters); if (!shouldAddRestParameter(parameter, inConstructorWithSynthesizedSuper)) { return false; } // `declarationName` is the name of the local declaration for the parameter. // TODO(rbuckton): Does this need to be parented? var declarationName = parameter.name.kind === 79 /* SyntaxKind.Identifier */ ? ts.setParent(ts.setTextRange(factory.cloneNode(parameter.name), parameter.name), parameter.name.parent) : factory.createTempVariable(/*recordTempVariable*/ undefined); ts.setEmitFlags(declarationName, 48 /* EmitFlags.NoSourceMap */); // `expressionName` is the name of the parameter used in expressions. var expressionName = parameter.name.kind === 79 /* SyntaxKind.Identifier */ ? factory.cloneNode(parameter.name) : declarationName; var restIndex = node.parameters.length - 1; var temp = factory.createLoopVariable(); // var param = []; prologueStatements.push(ts.setEmitFlags(ts.setTextRange(factory.createVariableStatement( /*modifiers*/ undefined, factory.createVariableDeclarationList([ factory.createVariableDeclaration(declarationName, /*exclamationToken*/ undefined, /*type*/ undefined, factory.createArrayLiteralExpression([])) ])), /*location*/ parameter), 1048576 /* EmitFlags.CustomPrologue */)); // for (var _i = restIndex; _i < arguments.length; _i++) { // param[_i - restIndex] = arguments[_i]; // } var forStatement = factory.createForStatement(ts.setTextRange(factory.createVariableDeclarationList([ factory.createVariableDeclaration(temp, /*exclamationToken*/ undefined, /*type*/ undefined, factory.createNumericLiteral(restIndex)) ]), parameter), ts.setTextRange(factory.createLessThan(temp, factory.createPropertyAccessExpression(factory.createIdentifier("arguments"), "length")), parameter), ts.setTextRange(factory.createPostfixIncrement(temp), parameter), factory.createBlock([ ts.startOnNewLine(ts.setTextRange(factory.createExpressionStatement(factory.createAssignment(factory.createElementAccessExpression(expressionName, restIndex === 0 ? temp : factory.createSubtract(temp, factory.createNumericLiteral(restIndex))), factory.createElementAccessExpression(factory.createIdentifier("arguments"), temp))), /*location*/ parameter)) ])); ts.setEmitFlags(forStatement, 1048576 /* EmitFlags.CustomPrologue */); ts.startOnNewLine(forStatement); prologueStatements.push(forStatement); if (parameter.name.kind !== 79 /* SyntaxKind.Identifier */) { // do the actual destructuring of the rest parameter if necessary prologueStatements.push(ts.setEmitFlags(ts.setTextRange(factory.createVariableStatement( /*modifiers*/ undefined, factory.createVariableDeclarationList(ts.flattenDestructuringBinding(parameter, visitor, context, 0 /* FlattenLevel.All */, expressionName))), parameter), 1048576 /* EmitFlags.CustomPrologue */)); } ts.insertStatementsAfterCustomPrologue(statements, prologueStatements); return true; } /** * Adds a statement to capture the `this` of a function declaration if it is needed. * NOTE: This must be executed *after* the subtree has been visited. * * @param statements The statements for the new function body. * @param node A node. */ function insertCaptureThisForNodeIfNeeded(statements, node) { if (hierarchyFacts & 65536 /* HierarchyFacts.CapturedLexicalThis */ && node.kind !== 214 /* SyntaxKind.ArrowFunction */) { insertCaptureThisForNode(statements, node, factory.createThis()); return true; } return false; } /** * Assigns the `this` in a constructor to the result of its `super()` call. * * @param statements Statements in the constructor body. * @param superExpression Existing `super()` call for the constructor. */ function insertSuperThisCaptureThisForNode(statements, superExpression) { enableSubstitutionsForCapturedThis(); var assignSuperExpression = factory.createExpressionStatement(factory.createBinaryExpression(factory.createThis(), 63 /* SyntaxKind.EqualsToken */, superExpression)); ts.insertStatementAfterCustomPrologue(statements, assignSuperExpression); ts.setCommentRange(assignSuperExpression, ts.getOriginalNode(superExpression).parent); } function insertCaptureThisForNode(statements, node, initializer) { enableSubstitutionsForCapturedThis(); var captureThisStatement = factory.createVariableStatement( /*modifiers*/ undefined, factory.createVariableDeclarationList([ factory.createVariableDeclaration(factory.createUniqueName("_this", 16 /* GeneratedIdentifierFlags.Optimistic */ | 32 /* GeneratedIdentifierFlags.FileLevel */), /*exclamationToken*/ undefined, /*type*/ undefined, initializer) ])); ts.setEmitFlags(captureThisStatement, 1536 /* EmitFlags.NoComments */ | 1048576 /* EmitFlags.CustomPrologue */); ts.setSourceMapRange(captureThisStatement, node); ts.insertStatementAfterCustomPrologue(statements, captureThisStatement); } function insertCaptureNewTargetIfNeeded(statements, node, copyOnWrite) { if (hierarchyFacts & 32768 /* HierarchyFacts.NewTarget */) { var newTarget = void 0; switch (node.kind) { case 214 /* SyntaxKind.ArrowFunction */: return statements; case 169 /* SyntaxKind.MethodDeclaration */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: // Methods and accessors cannot be constructors, so 'new.target' will // always return 'undefined'. newTarget = factory.createVoidZero(); break; case 171 /* SyntaxKind.Constructor */: // Class constructors can only be called with `new`, so `this.constructor` // should be relatively safe to use. newTarget = factory.createPropertyAccessExpression(ts.setEmitFlags(factory.createThis(), 4 /* EmitFlags.NoSubstitution */), "constructor"); break; case 256 /* SyntaxKind.FunctionDeclaration */: case 213 /* SyntaxKind.FunctionExpression */: // Functions can be called or constructed, and may have a `this` due to // being a member or when calling an imported function via `other_1.f()`. newTarget = factory.createConditionalExpression(factory.createLogicalAnd(ts.setEmitFlags(factory.createThis(), 4 /* EmitFlags.NoSubstitution */), factory.createBinaryExpression(ts.setEmitFlags(factory.createThis(), 4 /* EmitFlags.NoSubstitution */), 102 /* SyntaxKind.InstanceOfKeyword */, factory.getLocalName(node))), /*questionToken*/ undefined, factory.createPropertyAccessExpression(ts.setEmitFlags(factory.createThis(), 4 /* EmitFlags.NoSubstitution */), "constructor"), /*colonToken*/ undefined, factory.createVoidZero()); break; default: return ts.Debug.failBadSyntaxKind(node); } var captureNewTargetStatement = factory.createVariableStatement( /*modifiers*/ undefined, factory.createVariableDeclarationList([ factory.createVariableDeclaration(factory.createUniqueName("_newTarget", 16 /* GeneratedIdentifierFlags.Optimistic */ | 32 /* GeneratedIdentifierFlags.FileLevel */), /*exclamationToken*/ undefined, /*type*/ undefined, newTarget) ])); ts.setEmitFlags(captureNewTargetStatement, 1536 /* EmitFlags.NoComments */ | 1048576 /* EmitFlags.CustomPrologue */); if (copyOnWrite) { statements = statements.slice(); } ts.insertStatementAfterCustomPrologue(statements, captureNewTargetStatement); } return statements; } /** * Adds statements to the class body function for a class to define the members of the * class. * * @param statements The statements for the class body function. * @param node The ClassExpression or ClassDeclaration node. */ function addClassMembers(statements, node) { for (var _i = 0, _a = node.members; _i < _a.length; _i++) { var member = _a[_i]; switch (member.kind) { case 234 /* SyntaxKind.SemicolonClassElement */: statements.push(transformSemicolonClassElementToStatement(member)); break; case 169 /* SyntaxKind.MethodDeclaration */: statements.push(transformClassMethodDeclarationToStatement(getClassMemberPrefix(node, member), member, node)); break; case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: var accessors = ts.getAllAccessorDeclarations(node.members, member); if (member === accessors.firstAccessor) { statements.push(transformAccessorsToStatement(getClassMemberPrefix(node, member), accessors, node)); } break; case 171 /* SyntaxKind.Constructor */: case 170 /* SyntaxKind.ClassStaticBlockDeclaration */: // Constructors are handled in visitClassExpression/visitClassDeclaration break; default: ts.Debug.failBadSyntaxKind(member, currentSourceFile && currentSourceFile.fileName); break; } } } /** * Transforms a SemicolonClassElement into a statement for a class body function. * * @param member The SemicolonClassElement node. */ function transformSemicolonClassElementToStatement(member) { return ts.setTextRange(factory.createEmptyStatement(), member); } /** * Transforms a MethodDeclaration into a statement for a class body function. * * @param receiver The receiver for the member. * @param member The MethodDeclaration node. */ function transformClassMethodDeclarationToStatement(receiver, member, container) { var commentRange = ts.getCommentRange(member); var sourceMapRange = ts.getSourceMapRange(member); var memberFunction = transformFunctionLikeToExpression(member, /*location*/ member, /*name*/ undefined, container); var propertyName = ts.visitNode(member.name, visitor, ts.isPropertyName); var e; if (!ts.isPrivateIdentifier(propertyName) && ts.getUseDefineForClassFields(context.getCompilerOptions())) { var name = ts.isComputedPropertyName(propertyName) ? propertyName.expression : ts.isIdentifier(propertyName) ? factory.createStringLiteral(ts.unescapeLeadingUnderscores(propertyName.escapedText)) : propertyName; e = factory.createObjectDefinePropertyCall(receiver, name, factory.createPropertyDescriptor({ value: memberFunction, enumerable: false, writable: true, configurable: true })); } else { var memberName = ts.createMemberAccessForPropertyName(factory, receiver, propertyName, /*location*/ member.name); e = factory.createAssignment(memberName, memberFunction); } ts.setEmitFlags(memberFunction, 1536 /* EmitFlags.NoComments */); ts.setSourceMapRange(memberFunction, sourceMapRange); var statement = ts.setTextRange(factory.createExpressionStatement(e), /*location*/ member); ts.setOriginalNode(statement, member); ts.setCommentRange(statement, commentRange); // The location for the statement is used to emit comments only. // No source map should be emitted for this statement to align with the // old emitter. ts.setEmitFlags(statement, 48 /* EmitFlags.NoSourceMap */); return statement; } /** * Transforms a set of related of get/set accessors into a statement for a class body function. * * @param receiver The receiver for the member. * @param accessors The set of related get/set accessors. */ function transformAccessorsToStatement(receiver, accessors, container) { var statement = factory.createExpressionStatement(transformAccessorsToExpression(receiver, accessors, container, /*startsOnNewLine*/ false)); // The location for the statement is used to emit source maps only. // No comments should be emitted for this statement to align with the // old emitter. ts.setEmitFlags(statement, 1536 /* EmitFlags.NoComments */); ts.setSourceMapRange(statement, ts.getSourceMapRange(accessors.firstAccessor)); return statement; } /** * Transforms a set of related get/set accessors into an expression for either a class * body function or an ObjectLiteralExpression with computed properties. * * @param receiver The receiver for the member. */ function transformAccessorsToExpression(receiver, _a, container, startsOnNewLine) { var firstAccessor = _a.firstAccessor, getAccessor = _a.getAccessor, setAccessor = _a.setAccessor; // To align with source maps in the old emitter, the receiver and property name // arguments are both mapped contiguously to the accessor name. // TODO(rbuckton): Does this need to be parented? var target = ts.setParent(ts.setTextRange(factory.cloneNode(receiver), receiver), receiver.parent); ts.setEmitFlags(target, 1536 /* EmitFlags.NoComments */ | 32 /* EmitFlags.NoTrailingSourceMap */); ts.setSourceMapRange(target, firstAccessor.name); var visitedAccessorName = ts.visitNode(firstAccessor.name, visitor, ts.isPropertyName); if (ts.isPrivateIdentifier(visitedAccessorName)) { return ts.Debug.failBadSyntaxKind(visitedAccessorName, "Encountered unhandled private identifier while transforming ES2015."); } var propertyName = ts.createExpressionForPropertyName(factory, visitedAccessorName); ts.setEmitFlags(propertyName, 1536 /* EmitFlags.NoComments */ | 16 /* EmitFlags.NoLeadingSourceMap */); ts.setSourceMapRange(propertyName, firstAccessor.name); var properties = []; if (getAccessor) { var getterFunction = transformFunctionLikeToExpression(getAccessor, /*location*/ undefined, /*name*/ undefined, container); ts.setSourceMapRange(getterFunction, ts.getSourceMapRange(getAccessor)); ts.setEmitFlags(getterFunction, 512 /* EmitFlags.NoLeadingComments */); var getter = factory.createPropertyAssignment("get", getterFunction); ts.setCommentRange(getter, ts.getCommentRange(getAccessor)); properties.push(getter); } if (setAccessor) { var setterFunction = transformFunctionLikeToExpression(setAccessor, /*location*/ undefined, /*name*/ undefined, container); ts.setSourceMapRange(setterFunction, ts.getSourceMapRange(setAccessor)); ts.setEmitFlags(setterFunction, 512 /* EmitFlags.NoLeadingComments */); var setter = factory.createPropertyAssignment("set", setterFunction); ts.setCommentRange(setter, ts.getCommentRange(setAccessor)); properties.push(setter); } properties.push(factory.createPropertyAssignment("enumerable", getAccessor || setAccessor ? factory.createFalse() : factory.createTrue()), factory.createPropertyAssignment("configurable", factory.createTrue())); var call = factory.createCallExpression(factory.createPropertyAccessExpression(factory.createIdentifier("Object"), "defineProperty"), /*typeArguments*/ undefined, [ target, propertyName, factory.createObjectLiteralExpression(properties, /*multiLine*/ true) ]); if (startsOnNewLine) { ts.startOnNewLine(call); } return call; } /** * Visits an ArrowFunction and transforms it into a FunctionExpression. * * @param node An ArrowFunction node. */ function visitArrowFunction(node) { if (node.transformFlags & 8192 /* TransformFlags.ContainsLexicalThis */ && !(hierarchyFacts & 16384 /* HierarchyFacts.StaticInitializer */)) { hierarchyFacts |= 65536 /* HierarchyFacts.CapturedLexicalThis */; } var savedConvertedLoopState = convertedLoopState; convertedLoopState = undefined; var ancestorFacts = enterSubtree(15232 /* HierarchyFacts.ArrowFunctionExcludes */, 66 /* HierarchyFacts.ArrowFunctionIncludes */); var func = factory.createFunctionExpression( /*modifiers*/ undefined, /*asteriskToken*/ undefined, /*name*/ undefined, /*typeParameters*/ undefined, ts.visitParameterList(node.parameters, visitor, context), /*type*/ undefined, transformFunctionBody(node)); ts.setTextRange(func, node); ts.setOriginalNode(func, node); ts.setEmitFlags(func, 8 /* EmitFlags.CapturesThis */); // If an arrow function contains exitSubtree(ancestorFacts, 0 /* HierarchyFacts.ArrowFunctionSubtreeExcludes */, 0 /* HierarchyFacts.None */); convertedLoopState = savedConvertedLoopState; return func; } /** * Visits a FunctionExpression node. * * @param node a FunctionExpression node. */ function visitFunctionExpression(node) { var ancestorFacts = ts.getEmitFlags(node) & 262144 /* EmitFlags.AsyncFunctionBody */ ? enterSubtree(32662 /* HierarchyFacts.AsyncFunctionBodyExcludes */, 69 /* HierarchyFacts.AsyncFunctionBodyIncludes */) : enterSubtree(32670 /* HierarchyFacts.FunctionExcludes */, 65 /* HierarchyFacts.FunctionIncludes */); var savedConvertedLoopState = convertedLoopState; convertedLoopState = undefined; var parameters = ts.visitParameterList(node.parameters, visitor, context); var body = transformFunctionBody(node); var name = hierarchyFacts & 32768 /* HierarchyFacts.NewTarget */ ? factory.getLocalName(node) : node.name; exitSubtree(ancestorFacts, 98304 /* HierarchyFacts.FunctionSubtreeExcludes */, 0 /* HierarchyFacts.None */); convertedLoopState = savedConvertedLoopState; return factory.updateFunctionExpression(node, /*modifiers*/ undefined, node.asteriskToken, name, /*typeParameters*/ undefined, parameters, /*type*/ undefined, body); } /** * Visits a FunctionDeclaration node. * * @param node a FunctionDeclaration node. */ function visitFunctionDeclaration(node) { var savedConvertedLoopState = convertedLoopState; convertedLoopState = undefined; var ancestorFacts = enterSubtree(32670 /* HierarchyFacts.FunctionExcludes */, 65 /* HierarchyFacts.FunctionIncludes */); var parameters = ts.visitParameterList(node.parameters, visitor, context); var body = transformFunctionBody(node); var name = hierarchyFacts & 32768 /* HierarchyFacts.NewTarget */ ? factory.getLocalName(node) : node.name; exitSubtree(ancestorFacts, 98304 /* HierarchyFacts.FunctionSubtreeExcludes */, 0 /* HierarchyFacts.None */); convertedLoopState = savedConvertedLoopState; return factory.updateFunctionDeclaration(node, /*decorators*/ undefined, ts.visitNodes(node.modifiers, visitor, ts.isModifier), node.asteriskToken, name, /*typeParameters*/ undefined, parameters, /*type*/ undefined, body); } /** * Transforms a function-like node into a FunctionExpression. * * @param node The function-like node to transform. * @param location The source-map location for the new FunctionExpression. * @param name The name of the new FunctionExpression. */ function transformFunctionLikeToExpression(node, location, name, container) { var savedConvertedLoopState = convertedLoopState; convertedLoopState = undefined; var ancestorFacts = container && ts.isClassLike(container) && !ts.isStatic(node) ? enterSubtree(32670 /* HierarchyFacts.FunctionExcludes */, 65 /* HierarchyFacts.FunctionIncludes */ | 8 /* HierarchyFacts.NonStaticClassElement */) : enterSubtree(32670 /* HierarchyFacts.FunctionExcludes */, 65 /* HierarchyFacts.FunctionIncludes */); var parameters = ts.visitParameterList(node.parameters, visitor, context); var body = transformFunctionBody(node); if (hierarchyFacts & 32768 /* HierarchyFacts.NewTarget */ && !name && (node.kind === 256 /* SyntaxKind.FunctionDeclaration */ || node.kind === 213 /* SyntaxKind.FunctionExpression */)) { name = factory.getGeneratedNameForNode(node); } exitSubtree(ancestorFacts, 98304 /* HierarchyFacts.FunctionSubtreeExcludes */, 0 /* HierarchyFacts.None */); convertedLoopState = savedConvertedLoopState; return ts.setOriginalNode(ts.setTextRange(factory.createFunctionExpression( /*modifiers*/ undefined, node.asteriskToken, name, /*typeParameters*/ undefined, parameters, /*type*/ undefined, body), location), /*original*/ node); } /** * Transforms the body of a function-like node. * * @param node A function-like node. */ function transformFunctionBody(node) { var multiLine = false; // indicates whether the block *must* be emitted as multiple lines var singleLine = false; // indicates whether the block *may* be emitted as a single line var statementsLocation; var closeBraceLocation; var prologue = []; var statements = []; var body = node.body; var statementOffset; resumeLexicalEnvironment(); if (ts.isBlock(body)) { // ensureUseStrict is false because no new prologue-directive should be added. // addStandardPrologue will put already-existing directives at the beginning of the target statement-array statementOffset = factory.copyStandardPrologue(body.statements, prologue, 0, /*ensureUseStrict*/ false); statementOffset = factory.copyCustomPrologue(body.statements, statements, statementOffset, visitor, ts.isHoistedFunction); statementOffset = factory.copyCustomPrologue(body.statements, statements, statementOffset, visitor, ts.isHoistedVariableStatement); } multiLine = addDefaultValueAssignmentsIfNeeded(statements, node) || multiLine; multiLine = addRestParameterIfNeeded(statements, node, /*inConstructorWithSynthesizedSuper*/ false) || multiLine; if (ts.isBlock(body)) { // addCustomPrologue puts already-existing directives at the beginning of the target statement-array statementOffset = factory.copyCustomPrologue(body.statements, statements, statementOffset, visitor); statementsLocation = body.statements; ts.addRange(statements, ts.visitNodes(body.statements, visitor, ts.isStatement, statementOffset)); // If the original body was a multi-line block, this must be a multi-line block. if (!multiLine && body.multiLine) { multiLine = true; } } else { ts.Debug.assert(node.kind === 214 /* SyntaxKind.ArrowFunction */); // To align with the old emitter, we use a synthetic end position on the location // for the statement list we synthesize when we down-level an arrow function with // an expression function body. This prevents both comments and source maps from // being emitted for the end position only. statementsLocation = ts.moveRangeEnd(body, -1); var equalsGreaterThanToken = node.equalsGreaterThanToken; if (!ts.nodeIsSynthesized(equalsGreaterThanToken) && !ts.nodeIsSynthesized(body)) { if (ts.rangeEndIsOnSameLineAsRangeStart(equalsGreaterThanToken, body, currentSourceFile)) { singleLine = true; } else { multiLine = true; } } var expression = ts.visitNode(body, visitor, ts.isExpression); var returnStatement = factory.createReturnStatement(expression); ts.setTextRange(returnStatement, body); ts.moveSyntheticComments(returnStatement, body); ts.setEmitFlags(returnStatement, 384 /* EmitFlags.NoTokenSourceMaps */ | 32 /* EmitFlags.NoTrailingSourceMap */ | 1024 /* EmitFlags.NoTrailingComments */); statements.push(returnStatement); // To align with the source map emit for the old emitter, we set a custom // source map location for the close brace. closeBraceLocation = body; } factory.mergeLexicalEnvironment(prologue, endLexicalEnvironment()); insertCaptureNewTargetIfNeeded(prologue, node, /*copyOnWrite*/ false); insertCaptureThisForNodeIfNeeded(prologue, node); // If we added any final generated statements, this must be a multi-line block if (ts.some(prologue)) { multiLine = true; } statements.unshift.apply(statements, prologue); if (ts.isBlock(body) && ts.arrayIsEqualTo(statements, body.statements)) { // no changes were made, preserve the tree return body; } var block = factory.createBlock(ts.setTextRange(factory.createNodeArray(statements), statementsLocation), multiLine); ts.setTextRange(block, node.body); if (!multiLine && singleLine) { ts.setEmitFlags(block, 1 /* EmitFlags.SingleLine */); } if (closeBraceLocation) { ts.setTokenSourceMapRange(block, 19 /* SyntaxKind.CloseBraceToken */, closeBraceLocation); } ts.setOriginalNode(block, node.body); return block; } function visitBlock(node, isFunctionBody) { if (isFunctionBody) { // A function body is not a block scope. return ts.visitEachChild(node, visitor, context); } var ancestorFacts = hierarchyFacts & 256 /* HierarchyFacts.IterationStatement */ ? enterSubtree(7104 /* HierarchyFacts.IterationStatementBlockExcludes */, 512 /* HierarchyFacts.IterationStatementBlockIncludes */) : enterSubtree(6976 /* HierarchyFacts.BlockExcludes */, 128 /* HierarchyFacts.BlockIncludes */); var updated = ts.visitEachChild(node, visitor, context); exitSubtree(ancestorFacts, 0 /* HierarchyFacts.None */, 0 /* HierarchyFacts.None */); return updated; } /** * Visits an ExpressionStatement that contains a destructuring assignment. * * @param node An ExpressionStatement node. */ function visitExpressionStatement(node) { return ts.visitEachChild(node, visitorWithUnusedExpressionResult, context); } /** * Visits a ParenthesizedExpression that may contain a destructuring assignment. * * @param node A ParenthesizedExpression node. * @param expressionResultIsUnused Indicates the result of an expression is unused by the parent node (i.e., the left side of a comma or the * expression of an `ExpressionStatement`). */ function visitParenthesizedExpression(node, expressionResultIsUnused) { return ts.visitEachChild(node, expressionResultIsUnused ? visitorWithUnusedExpressionResult : visitor, context); } /** * Visits a BinaryExpression that contains a destructuring assignment. * * @param node A BinaryExpression node. * @param expressionResultIsUnused Indicates the result of an expression is unused by the parent node (i.e., the left side of a comma or the * expression of an `ExpressionStatement`). */ function visitBinaryExpression(node, expressionResultIsUnused) { // If we are here it is because this is a destructuring assignment. if (ts.isDestructuringAssignment(node)) { return ts.flattenDestructuringAssignment(node, visitor, context, 0 /* FlattenLevel.All */, !expressionResultIsUnused); } if (node.operatorToken.kind === 27 /* SyntaxKind.CommaToken */) { return factory.updateBinaryExpression(node, ts.visitNode(node.left, visitorWithUnusedExpressionResult, ts.isExpression), node.operatorToken, ts.visitNode(node.right, expressionResultIsUnused ? visitorWithUnusedExpressionResult : visitor, ts.isExpression)); } return ts.visitEachChild(node, visitor, context); } /** * @param expressionResultIsUnused Indicates the result of an expression is unused by the parent node (i.e., the left side of a comma or the * expression of an `ExpressionStatement`). */ function visitCommaListExpression(node, expressionResultIsUnused) { if (expressionResultIsUnused) { return ts.visitEachChild(node, visitorWithUnusedExpressionResult, context); } var result; for (var i = 0; i < node.elements.length; i++) { var element = node.elements[i]; var visited = ts.visitNode(element, i < node.elements.length - 1 ? visitorWithUnusedExpressionResult : visitor, ts.isExpression); if (result || visited !== element) { result || (result = node.elements.slice(0, i)); result.push(visited); } } var elements = result ? ts.setTextRange(factory.createNodeArray(result), node.elements) : node.elements; return factory.updateCommaListExpression(node, elements); } function isVariableStatementOfTypeScriptClassWrapper(node) { return node.declarationList.declarations.length === 1 && !!node.declarationList.declarations[0].initializer && !!(ts.getEmitFlags(node.declarationList.declarations[0].initializer) & 33554432 /* EmitFlags.TypeScriptClassWrapper */); } function visitVariableStatement(node) { var ancestorFacts = enterSubtree(0 /* HierarchyFacts.None */, ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */) ? 32 /* HierarchyFacts.ExportedVariableStatement */ : 0 /* HierarchyFacts.None */); var updated; if (convertedLoopState && (node.declarationList.flags & 3 /* NodeFlags.BlockScoped */) === 0 && !isVariableStatementOfTypeScriptClassWrapper(node)) { // we are inside a converted loop - hoist variable declarations var assignments = void 0; for (var _i = 0, _a = node.declarationList.declarations; _i < _a.length; _i++) { var decl = _a[_i]; hoistVariableDeclarationDeclaredInConvertedLoop(convertedLoopState, decl); if (decl.initializer) { var assignment = void 0; if (ts.isBindingPattern(decl.name)) { assignment = ts.flattenDestructuringAssignment(decl, visitor, context, 0 /* FlattenLevel.All */); } else { assignment = factory.createBinaryExpression(decl.name, 63 /* SyntaxKind.EqualsToken */, ts.visitNode(decl.initializer, visitor, ts.isExpression)); ts.setTextRange(assignment, decl); } assignments = ts.append(assignments, assignment); } } if (assignments) { updated = ts.setTextRange(factory.createExpressionStatement(factory.inlineExpressions(assignments)), node); } else { // none of declarations has initializer - the entire variable statement can be deleted updated = undefined; } } else { updated = ts.visitEachChild(node, visitor, context); } exitSubtree(ancestorFacts, 0 /* HierarchyFacts.None */, 0 /* HierarchyFacts.None */); return updated; } /** * Visits a VariableDeclarationList that is block scoped (e.g. `let` or `const`). * * @param node A VariableDeclarationList node. */ function visitVariableDeclarationList(node) { if (node.flags & 3 /* NodeFlags.BlockScoped */ || node.transformFlags & 262144 /* TransformFlags.ContainsBindingPattern */) { if (node.flags & 3 /* NodeFlags.BlockScoped */) { enableSubstitutionsForBlockScopedBindings(); } var declarations = ts.flatMap(node.declarations, node.flags & 1 /* NodeFlags.Let */ ? visitVariableDeclarationInLetDeclarationList : visitVariableDeclaration); var declarationList = factory.createVariableDeclarationList(declarations); ts.setOriginalNode(declarationList, node); ts.setTextRange(declarationList, node); ts.setCommentRange(declarationList, node); // If the first or last declaration is a binding pattern, we need to modify // the source map range for the declaration list. if (node.transformFlags & 262144 /* TransformFlags.ContainsBindingPattern */ && (ts.isBindingPattern(node.declarations[0].name) || ts.isBindingPattern(ts.last(node.declarations).name))) { ts.setSourceMapRange(declarationList, getRangeUnion(declarations)); } return declarationList; } return ts.visitEachChild(node, visitor, context); } function getRangeUnion(declarations) { // declarations may not be sorted by position. // pos should be the minimum* position over all nodes (that's not -1), end should be the maximum end over all nodes. var pos = -1, end = -1; for (var _i = 0, declarations_10 = declarations; _i < declarations_10.length; _i++) { var node = declarations_10[_i]; pos = pos === -1 ? node.pos : node.pos === -1 ? pos : Math.min(pos, node.pos); end = Math.max(end, node.end); } return ts.createRange(pos, end); } /** * Gets a value indicating whether we should emit an explicit initializer for a variable * declaration in a `let` declaration list. * * @param node A VariableDeclaration node. */ function shouldEmitExplicitInitializerForLetDeclaration(node) { // Nested let bindings might need to be initialized explicitly to preserve // ES6 semantic: // // { let x = 1; } // { let x; } // x here should be undefined. not 1 // // Top level bindings never collide with anything and thus don't require // explicit initialization. As for nested let bindings there are two cases: // // - Nested let bindings that were not renamed definitely should be // initialized explicitly: // // { let x = 1; } // { let x; if (some-condition) { x = 1}; if (x) { /*1*/ } } // // Without explicit initialization code in /*1*/ can be executed even if // some-condition is evaluated to false. // // - Renaming introduces fresh name that should not collide with any // existing names, however renamed bindings sometimes also should be // explicitly initialized. One particular case: non-captured binding // declared inside loop body (but not in loop initializer): // // let x; // for (;;) { // let x; // } // // In downlevel codegen inner 'x' will be renamed so it won't collide // with outer 'x' however it will should be reset on every iteration as // if it was declared anew. // // * Why non-captured binding? // - Because if loop contains block scoped binding captured in some // function then loop body will be rewritten to have a fresh scope // on every iteration so everything will just work. // // * Why loop initializer is excluded? // - Since we've introduced a fresh name it already will be undefined. var flags = resolver.getNodeCheckFlags(node); var isCapturedInFunction = flags & 262144 /* NodeCheckFlags.CapturedBlockScopedBinding */; var isDeclaredInLoop = flags & 524288 /* NodeCheckFlags.BlockScopedBindingInLoop */; var emittedAsTopLevel = (hierarchyFacts & 64 /* HierarchyFacts.TopLevel */) !== 0 || (isCapturedInFunction && isDeclaredInLoop && (hierarchyFacts & 512 /* HierarchyFacts.IterationStatementBlock */) !== 0); var emitExplicitInitializer = !emittedAsTopLevel && (hierarchyFacts & 4096 /* HierarchyFacts.ForInOrForOfStatement */) === 0 && (!resolver.isDeclarationWithCollidingName(node) || (isDeclaredInLoop && !isCapturedInFunction && (hierarchyFacts & (2048 /* HierarchyFacts.ForStatement */ | 4096 /* HierarchyFacts.ForInOrForOfStatement */)) === 0)); return emitExplicitInitializer; } /** * Visits a VariableDeclaration in a `let` declaration list. * * @param node A VariableDeclaration node. */ function visitVariableDeclarationInLetDeclarationList(node) { // For binding pattern names that lack initializers there is no point to emit // explicit initializer since downlevel codegen for destructuring will fail // in the absence of initializer so all binding elements will say uninitialized var name = node.name; if (ts.isBindingPattern(name)) { return visitVariableDeclaration(node); } if (!node.initializer && shouldEmitExplicitInitializerForLetDeclaration(node)) { return factory.updateVariableDeclaration(node, node.name, /*exclamationToken*/ undefined, /*type*/ undefined, factory.createVoidZero()); } return ts.visitEachChild(node, visitor, context); } /** * Visits a VariableDeclaration node with a binding pattern. * * @param node A VariableDeclaration node. */ function visitVariableDeclaration(node) { var ancestorFacts = enterSubtree(32 /* HierarchyFacts.ExportedVariableStatement */, 0 /* HierarchyFacts.None */); var updated; if (ts.isBindingPattern(node.name)) { updated = ts.flattenDestructuringBinding(node, visitor, context, 0 /* FlattenLevel.All */, /*value*/ undefined, (ancestorFacts & 32 /* HierarchyFacts.ExportedVariableStatement */) !== 0); } else { updated = ts.visitEachChild(node, visitor, context); } exitSubtree(ancestorFacts, 0 /* HierarchyFacts.None */, 0 /* HierarchyFacts.None */); return updated; } function recordLabel(node) { convertedLoopState.labels.set(ts.idText(node.label), true); } function resetLabel(node) { convertedLoopState.labels.set(ts.idText(node.label), false); } function visitLabeledStatement(node) { if (convertedLoopState && !convertedLoopState.labels) { convertedLoopState.labels = new ts.Map(); } var statement = ts.unwrapInnermostStatementOfLabel(node, convertedLoopState && recordLabel); return ts.isIterationStatement(statement, /*lookInLabeledStatements*/ false) ? visitIterationStatement(statement, /*outermostLabeledStatement*/ node) : factory.restoreEnclosingLabel(ts.visitNode(statement, visitor, ts.isStatement, factory.liftToBlock), node, convertedLoopState && resetLabel); } function visitIterationStatement(node, outermostLabeledStatement) { switch (node.kind) { case 240 /* SyntaxKind.DoStatement */: case 241 /* SyntaxKind.WhileStatement */: return visitDoOrWhileStatement(node, outermostLabeledStatement); case 242 /* SyntaxKind.ForStatement */: return visitForStatement(node, outermostLabeledStatement); case 243 /* SyntaxKind.ForInStatement */: return visitForInStatement(node, outermostLabeledStatement); case 244 /* SyntaxKind.ForOfStatement */: return visitForOfStatement(node, outermostLabeledStatement); } } function visitIterationStatementWithFacts(excludeFacts, includeFacts, node, outermostLabeledStatement, convert) { var ancestorFacts = enterSubtree(excludeFacts, includeFacts); var updated = convertIterationStatementBodyIfNecessary(node, outermostLabeledStatement, ancestorFacts, convert); exitSubtree(ancestorFacts, 0 /* HierarchyFacts.None */, 0 /* HierarchyFacts.None */); return updated; } function visitDoOrWhileStatement(node, outermostLabeledStatement) { return visitIterationStatementWithFacts(0 /* HierarchyFacts.DoOrWhileStatementExcludes */, 1280 /* HierarchyFacts.DoOrWhileStatementIncludes */, node, outermostLabeledStatement); } function visitForStatement(node, outermostLabeledStatement) { return visitIterationStatementWithFacts(5056 /* HierarchyFacts.ForStatementExcludes */, 3328 /* HierarchyFacts.ForStatementIncludes */, node, outermostLabeledStatement); } function visitEachChildOfForStatement(node) { return factory.updateForStatement(node, ts.visitNode(node.initializer, visitorWithUnusedExpressionResult, ts.isForInitializer), ts.visitNode(node.condition, visitor, ts.isExpression), ts.visitNode(node.incrementor, visitorWithUnusedExpressionResult, ts.isExpression), ts.visitNode(node.statement, visitor, ts.isStatement, factory.liftToBlock)); } function visitForInStatement(node, outermostLabeledStatement) { return visitIterationStatementWithFacts(3008 /* HierarchyFacts.ForInOrForOfStatementExcludes */, 5376 /* HierarchyFacts.ForInOrForOfStatementIncludes */, node, outermostLabeledStatement); } function visitForOfStatement(node, outermostLabeledStatement) { return visitIterationStatementWithFacts(3008 /* HierarchyFacts.ForInOrForOfStatementExcludes */, 5376 /* HierarchyFacts.ForInOrForOfStatementIncludes */, node, outermostLabeledStatement, compilerOptions.downlevelIteration ? convertForOfStatementForIterable : convertForOfStatementForArray); } function convertForOfStatementHead(node, boundValue, convertedLoopBodyStatements) { var statements = []; var initializer = node.initializer; if (ts.isVariableDeclarationList(initializer)) { if (node.initializer.flags & 3 /* NodeFlags.BlockScoped */) { enableSubstitutionsForBlockScopedBindings(); } var firstOriginalDeclaration = ts.firstOrUndefined(initializer.declarations); if (firstOriginalDeclaration && ts.isBindingPattern(firstOriginalDeclaration.name)) { // This works whether the declaration is a var, let, or const. // It will use rhsIterationValue _a[_i] as the initializer. var declarations = ts.flattenDestructuringBinding(firstOriginalDeclaration, visitor, context, 0 /* FlattenLevel.All */, boundValue); var declarationList = ts.setTextRange(factory.createVariableDeclarationList(declarations), node.initializer); ts.setOriginalNode(declarationList, node.initializer); // Adjust the source map range for the first declaration to align with the old // emitter. ts.setSourceMapRange(declarationList, ts.createRange(declarations[0].pos, ts.last(declarations).end)); statements.push(factory.createVariableStatement( /*modifiers*/ undefined, declarationList)); } else { // The following call does not include the initializer, so we have // to emit it separately. statements.push(ts.setTextRange(factory.createVariableStatement( /*modifiers*/ undefined, ts.setOriginalNode(ts.setTextRange(factory.createVariableDeclarationList([ factory.createVariableDeclaration(firstOriginalDeclaration ? firstOriginalDeclaration.name : factory.createTempVariable(/*recordTempVariable*/ undefined), /*exclamationToken*/ undefined, /*type*/ undefined, boundValue) ]), ts.moveRangePos(initializer, -1)), initializer)), ts.moveRangeEnd(initializer, -1))); } } else { // Initializer is an expression. Emit the expression in the body, so that it's // evaluated on every iteration. var assignment = factory.createAssignment(initializer, boundValue); if (ts.isDestructuringAssignment(assignment)) { statements.push(factory.createExpressionStatement(visitBinaryExpression(assignment, /*expressionResultIsUnused*/ true))); } else { ts.setTextRangeEnd(assignment, initializer.end); statements.push(ts.setTextRange(factory.createExpressionStatement(ts.visitNode(assignment, visitor, ts.isExpression)), ts.moveRangeEnd(initializer, -1))); } } if (convertedLoopBodyStatements) { return createSyntheticBlockForConvertedStatements(ts.addRange(statements, convertedLoopBodyStatements)); } else { var statement = ts.visitNode(node.statement, visitor, ts.isStatement, factory.liftToBlock); if (ts.isBlock(statement)) { return factory.updateBlock(statement, ts.setTextRange(factory.createNodeArray(ts.concatenate(statements, statement.statements)), statement.statements)); } else { statements.push(statement); return createSyntheticBlockForConvertedStatements(statements); } } } function createSyntheticBlockForConvertedStatements(statements) { return ts.setEmitFlags(factory.createBlock(factory.createNodeArray(statements), /*multiLine*/ true), 48 /* EmitFlags.NoSourceMap */ | 384 /* EmitFlags.NoTokenSourceMaps */); } function convertForOfStatementForArray(node, outermostLabeledStatement, convertedLoopBodyStatements) { // The following ES6 code: // // for (let v of expr) { } // // should be emitted as // // for (var _i = 0, _a = expr; _i < _a.length; _i++) { // var v = _a[_i]; // } // // where _a and _i are temps emitted to capture the RHS and the counter, // respectively. // When the left hand side is an expression instead of a let declaration, // the "let v" is not emitted. // When the left hand side is a let/const, the v is renamed if there is // another v in scope. // Note that all assignments to the LHS are emitted in the body, including // all destructuring. // Note also that because an extra statement is needed to assign to the LHS, // for-of bodies are always emitted as blocks. var expression = ts.visitNode(node.expression, visitor, ts.isExpression); // In the case where the user wrote an identifier as the RHS, like this: // // for (let v of arr) { } // // we don't want to emit a temporary variable for the RHS, just use it directly. var counter = factory.createLoopVariable(); var rhsReference = ts.isIdentifier(expression) ? factory.getGeneratedNameForNode(expression) : factory.createTempVariable(/*recordTempVariable*/ undefined); // The old emitter does not emit source maps for the expression ts.setEmitFlags(expression, 48 /* EmitFlags.NoSourceMap */ | ts.getEmitFlags(expression)); var forStatement = ts.setTextRange(factory.createForStatement( /*initializer*/ ts.setEmitFlags(ts.setTextRange(factory.createVariableDeclarationList([ ts.setTextRange(factory.createVariableDeclaration(counter, /*exclamationToken*/ undefined, /*type*/ undefined, factory.createNumericLiteral(0)), ts.moveRangePos(node.expression, -1)), ts.setTextRange(factory.createVariableDeclaration(rhsReference, /*exclamationToken*/ undefined, /*type*/ undefined, expression), node.expression) ]), node.expression), 2097152 /* EmitFlags.NoHoisting */), /*condition*/ ts.setTextRange(factory.createLessThan(counter, factory.createPropertyAccessExpression(rhsReference, "length")), node.expression), /*incrementor*/ ts.setTextRange(factory.createPostfixIncrement(counter), node.expression), /*statement*/ convertForOfStatementHead(node, factory.createElementAccessExpression(rhsReference, counter), convertedLoopBodyStatements)), /*location*/ node); // Disable trailing source maps for the OpenParenToken to align source map emit with the old emitter. ts.setEmitFlags(forStatement, 256 /* EmitFlags.NoTokenTrailingSourceMaps */); ts.setTextRange(forStatement, node); return factory.restoreEnclosingLabel(forStatement, outermostLabeledStatement, convertedLoopState && resetLabel); } function convertForOfStatementForIterable(node, outermostLabeledStatement, convertedLoopBodyStatements, ancestorFacts) { var expression = ts.visitNode(node.expression, visitor, ts.isExpression); var iterator = ts.isIdentifier(expression) ? factory.getGeneratedNameForNode(expression) : factory.createTempVariable(/*recordTempVariable*/ undefined); var result = ts.isIdentifier(expression) ? factory.getGeneratedNameForNode(iterator) : factory.createTempVariable(/*recordTempVariable*/ undefined); var errorRecord = factory.createUniqueName("e"); var catchVariable = factory.getGeneratedNameForNode(errorRecord); var returnMethod = factory.createTempVariable(/*recordTempVariable*/ undefined); var values = ts.setTextRange(emitHelpers().createValuesHelper(expression), node.expression); var next = factory.createCallExpression(factory.createPropertyAccessExpression(iterator, "next"), /*typeArguments*/ undefined, []); hoistVariableDeclaration(errorRecord); hoistVariableDeclaration(returnMethod); // if we are enclosed in an outer loop ensure we reset 'errorRecord' per each iteration var initializer = ancestorFacts & 1024 /* HierarchyFacts.IterationContainer */ ? factory.inlineExpressions([factory.createAssignment(errorRecord, factory.createVoidZero()), values]) : values; var forStatement = ts.setEmitFlags(ts.setTextRange(factory.createForStatement( /*initializer*/ ts.setEmitFlags(ts.setTextRange(factory.createVariableDeclarationList([ ts.setTextRange(factory.createVariableDeclaration(iterator, /*exclamationToken*/ undefined, /*type*/ undefined, initializer), node.expression), factory.createVariableDeclaration(result, /*exclamationToken*/ undefined, /*type*/ undefined, next) ]), node.expression), 2097152 /* EmitFlags.NoHoisting */), /*condition*/ factory.createLogicalNot(factory.createPropertyAccessExpression(result, "done")), /*incrementor*/ factory.createAssignment(result, next), /*statement*/ convertForOfStatementHead(node, factory.createPropertyAccessExpression(result, "value"), convertedLoopBodyStatements)), /*location*/ node), 256 /* EmitFlags.NoTokenTrailingSourceMaps */); return factory.createTryStatement(factory.createBlock([ factory.restoreEnclosingLabel(forStatement, outermostLabeledStatement, convertedLoopState && resetLabel) ]), factory.createCatchClause(factory.createVariableDeclaration(catchVariable), ts.setEmitFlags(factory.createBlock([ factory.createExpressionStatement(factory.createAssignment(errorRecord, factory.createObjectLiteralExpression([ factory.createPropertyAssignment("error", catchVariable) ]))) ]), 1 /* EmitFlags.SingleLine */)), factory.createBlock([ factory.createTryStatement( /*tryBlock*/ factory.createBlock([ ts.setEmitFlags(factory.createIfStatement(factory.createLogicalAnd(factory.createLogicalAnd(result, factory.createLogicalNot(factory.createPropertyAccessExpression(result, "done"))), factory.createAssignment(returnMethod, factory.createPropertyAccessExpression(iterator, "return"))), factory.createExpressionStatement(factory.createFunctionCallCall(returnMethod, iterator, []))), 1 /* EmitFlags.SingleLine */), ]), /*catchClause*/ undefined, /*finallyBlock*/ ts.setEmitFlags(factory.createBlock([ ts.setEmitFlags(factory.createIfStatement(errorRecord, factory.createThrowStatement(factory.createPropertyAccessExpression(errorRecord, "error"))), 1 /* EmitFlags.SingleLine */) ]), 1 /* EmitFlags.SingleLine */)) ])); } /** * Visits an ObjectLiteralExpression with computed property names. * * @param node An ObjectLiteralExpression node. */ function visitObjectLiteralExpression(node) { var properties = node.properties; // Find the first computed property. // Everything until that point can be emitted as part of the initial object literal. var numInitialProperties = -1, hasComputed = false; for (var i = 0; i < properties.length; i++) { var property = properties[i]; if ((property.transformFlags & 524288 /* TransformFlags.ContainsYield */ && hierarchyFacts & 4 /* HierarchyFacts.AsyncFunctionBody */) || (hasComputed = ts.Debug.checkDefined(property.name).kind === 162 /* SyntaxKind.ComputedPropertyName */)) { numInitialProperties = i; break; } } if (numInitialProperties < 0) { return ts.visitEachChild(node, visitor, context); } // For computed properties, we need to create a unique handle to the object // literal so we can modify it without risking internal assignments tainting the object. var temp = factory.createTempVariable(hoistVariableDeclaration); // Write out the first non-computed properties, then emit the rest through indexing on the temp variable. var expressions = []; var assignment = factory.createAssignment(temp, ts.setEmitFlags(factory.createObjectLiteralExpression(ts.visitNodes(properties, visitor, ts.isObjectLiteralElementLike, 0, numInitialProperties), node.multiLine), hasComputed ? 65536 /* EmitFlags.Indented */ : 0)); if (node.multiLine) { ts.startOnNewLine(assignment); } expressions.push(assignment); addObjectLiteralMembers(expressions, node, temp, numInitialProperties); // We need to clone the temporary identifier so that we can write it on a // new line expressions.push(node.multiLine ? ts.startOnNewLine(ts.setParent(ts.setTextRange(factory.cloneNode(temp), temp), temp.parent)) : temp); return factory.inlineExpressions(expressions); } function shouldConvertPartOfIterationStatement(node) { return (resolver.getNodeCheckFlags(node) & 131072 /* NodeCheckFlags.ContainsCapturedBlockScopeBinding */) !== 0; } function shouldConvertInitializerOfForStatement(node) { return ts.isForStatement(node) && !!node.initializer && shouldConvertPartOfIterationStatement(node.initializer); } function shouldConvertConditionOfForStatement(node) { return ts.isForStatement(node) && !!node.condition && shouldConvertPartOfIterationStatement(node.condition); } function shouldConvertIncrementorOfForStatement(node) { return ts.isForStatement(node) && !!node.incrementor && shouldConvertPartOfIterationStatement(node.incrementor); } function shouldConvertIterationStatement(node) { return shouldConvertBodyOfIterationStatement(node) || shouldConvertInitializerOfForStatement(node); } function shouldConvertBodyOfIterationStatement(node) { return (resolver.getNodeCheckFlags(node) & 65536 /* NodeCheckFlags.LoopWithCapturedBlockScopedBinding */) !== 0; } /** * Records constituents of name for the given variable to be hoisted in the outer scope. */ function hoistVariableDeclarationDeclaredInConvertedLoop(state, node) { if (!state.hoistedLocalVariables) { state.hoistedLocalVariables = []; } visit(node.name); function visit(node) { if (node.kind === 79 /* SyntaxKind.Identifier */) { state.hoistedLocalVariables.push(node); } else { for (var _i = 0, _a = node.elements; _i < _a.length; _i++) { var element = _a[_i]; if (!ts.isOmittedExpression(element)) { visit(element.name); } } } } } function convertIterationStatementBodyIfNecessary(node, outermostLabeledStatement, ancestorFacts, convert) { if (!shouldConvertIterationStatement(node)) { var saveAllowedNonLabeledJumps = void 0; if (convertedLoopState) { // we get here if we are trying to emit normal loop loop inside converted loop // set allowedNonLabeledJumps to Break | Continue to mark that break\continue inside the loop should be emitted as is saveAllowedNonLabeledJumps = convertedLoopState.allowedNonLabeledJumps; convertedLoopState.allowedNonLabeledJumps = 2 /* Jump.Break */ | 4 /* Jump.Continue */; } var result = convert ? convert(node, outermostLabeledStatement, /*convertedLoopBodyStatements*/ undefined, ancestorFacts) : factory.restoreEnclosingLabel(ts.isForStatement(node) ? visitEachChildOfForStatement(node) : ts.visitEachChild(node, visitor, context), outermostLabeledStatement, convertedLoopState && resetLabel); if (convertedLoopState) { convertedLoopState.allowedNonLabeledJumps = saveAllowedNonLabeledJumps; } return result; } var currentState = createConvertedLoopState(node); var statements = []; var outerConvertedLoopState = convertedLoopState; convertedLoopState = currentState; var initializerFunction = shouldConvertInitializerOfForStatement(node) ? createFunctionForInitializerOfForStatement(node, currentState) : undefined; var bodyFunction = shouldConvertBodyOfIterationStatement(node) ? createFunctionForBodyOfIterationStatement(node, currentState, outerConvertedLoopState) : undefined; convertedLoopState = outerConvertedLoopState; if (initializerFunction) statements.push(initializerFunction.functionDeclaration); if (bodyFunction) statements.push(bodyFunction.functionDeclaration); addExtraDeclarationsForConvertedLoop(statements, currentState, outerConvertedLoopState); if (initializerFunction) { statements.push(generateCallToConvertedLoopInitializer(initializerFunction.functionName, initializerFunction.containsYield)); } var loop; if (bodyFunction) { if (convert) { loop = convert(node, outermostLabeledStatement, bodyFunction.part, ancestorFacts); } else { var clone_4 = convertIterationStatementCore(node, initializerFunction, factory.createBlock(bodyFunction.part, /*multiLine*/ true)); loop = factory.restoreEnclosingLabel(clone_4, outermostLabeledStatement, convertedLoopState && resetLabel); } } else { var clone_5 = convertIterationStatementCore(node, initializerFunction, ts.visitNode(node.statement, visitor, ts.isStatement, factory.liftToBlock)); loop = factory.restoreEnclosingLabel(clone_5, outermostLabeledStatement, convertedLoopState && resetLabel); } statements.push(loop); return statements; } function convertIterationStatementCore(node, initializerFunction, convertedLoopBody) { switch (node.kind) { case 242 /* SyntaxKind.ForStatement */: return convertForStatement(node, initializerFunction, convertedLoopBody); case 243 /* SyntaxKind.ForInStatement */: return convertForInStatement(node, convertedLoopBody); case 244 /* SyntaxKind.ForOfStatement */: return convertForOfStatement(node, convertedLoopBody); case 240 /* SyntaxKind.DoStatement */: return convertDoStatement(node, convertedLoopBody); case 241 /* SyntaxKind.WhileStatement */: return convertWhileStatement(node, convertedLoopBody); default: return ts.Debug.failBadSyntaxKind(node, "IterationStatement expected"); } } function convertForStatement(node, initializerFunction, convertedLoopBody) { var shouldConvertCondition = node.condition && shouldConvertPartOfIterationStatement(node.condition); var shouldConvertIncrementor = shouldConvertCondition || node.incrementor && shouldConvertPartOfIterationStatement(node.incrementor); return factory.updateForStatement(node, ts.visitNode(initializerFunction ? initializerFunction.part : node.initializer, visitorWithUnusedExpressionResult, ts.isForInitializer), ts.visitNode(shouldConvertCondition ? undefined : node.condition, visitor, ts.isExpression), ts.visitNode(shouldConvertIncrementor ? undefined : node.incrementor, visitorWithUnusedExpressionResult, ts.isExpression), convertedLoopBody); } function convertForOfStatement(node, convertedLoopBody) { return factory.updateForOfStatement(node, /*awaitModifier*/ undefined, ts.visitNode(node.initializer, visitor, ts.isForInitializer), ts.visitNode(node.expression, visitor, ts.isExpression), convertedLoopBody); } function convertForInStatement(node, convertedLoopBody) { return factory.updateForInStatement(node, ts.visitNode(node.initializer, visitor, ts.isForInitializer), ts.visitNode(node.expression, visitor, ts.isExpression), convertedLoopBody); } function convertDoStatement(node, convertedLoopBody) { return factory.updateDoStatement(node, convertedLoopBody, ts.visitNode(node.expression, visitor, ts.isExpression)); } function convertWhileStatement(node, convertedLoopBody) { return factory.updateWhileStatement(node, ts.visitNode(node.expression, visitor, ts.isExpression), convertedLoopBody); } function createConvertedLoopState(node) { var loopInitializer; switch (node.kind) { case 242 /* SyntaxKind.ForStatement */: case 243 /* SyntaxKind.ForInStatement */: case 244 /* SyntaxKind.ForOfStatement */: var initializer = node.initializer; if (initializer && initializer.kind === 255 /* SyntaxKind.VariableDeclarationList */) { loopInitializer = initializer; } break; } // variables that will be passed to the loop as parameters var loopParameters = []; // variables declared in the loop initializer that will be changed inside the loop var loopOutParameters = []; if (loopInitializer && (ts.getCombinedNodeFlags(loopInitializer) & 3 /* NodeFlags.BlockScoped */)) { var hasCapturedBindingsInForHead = shouldConvertInitializerOfForStatement(node) || shouldConvertConditionOfForStatement(node) || shouldConvertIncrementorOfForStatement(node); for (var _i = 0, _a = loopInitializer.declarations; _i < _a.length; _i++) { var decl = _a[_i]; processLoopVariableDeclaration(node, decl, loopParameters, loopOutParameters, hasCapturedBindingsInForHead); } } var currentState = { loopParameters: loopParameters, loopOutParameters: loopOutParameters }; if (convertedLoopState) { // convertedOuterLoopState !== undefined means that this converted loop is nested in another converted loop. // if outer converted loop has already accumulated some state - pass it through if (convertedLoopState.argumentsName) { // outer loop has already used 'arguments' so we've already have some name to alias it // use the same name in all nested loops currentState.argumentsName = convertedLoopState.argumentsName; } if (convertedLoopState.thisName) { // outer loop has already used 'this' so we've already have some name to alias it // use the same name in all nested loops currentState.thisName = convertedLoopState.thisName; } if (convertedLoopState.hoistedLocalVariables) { // we've already collected some non-block scoped variable declarations in enclosing loop // use the same storage in nested loop currentState.hoistedLocalVariables = convertedLoopState.hoistedLocalVariables; } } return currentState; } function addExtraDeclarationsForConvertedLoop(statements, state, outerState) { var extraVariableDeclarations; // propagate state from the inner loop to the outer loop if necessary if (state.argumentsName) { // if alias for arguments is set if (outerState) { // pass it to outer converted loop outerState.argumentsName = state.argumentsName; } else { // this is top level converted loop and we need to create an alias for 'arguments' object (extraVariableDeclarations || (extraVariableDeclarations = [])).push(factory.createVariableDeclaration(state.argumentsName, /*exclamationToken*/ undefined, /*type*/ undefined, factory.createIdentifier("arguments"))); } } if (state.thisName) { // if alias for this is set if (outerState) { // pass it to outer converted loop outerState.thisName = state.thisName; } else { // this is top level converted loop so we need to create an alias for 'this' here // NOTE: // if converted loops were all nested in arrow function then we'll always emit '_this' so convertedLoopState.thisName will not be set. // If it is set this means that all nested loops are not nested in arrow function and it is safe to capture 'this'. (extraVariableDeclarations || (extraVariableDeclarations = [])).push(factory.createVariableDeclaration(state.thisName, /*exclamationToken*/ undefined, /*type*/ undefined, factory.createIdentifier("this"))); } } if (state.hoistedLocalVariables) { // if hoistedLocalVariables !== undefined this means that we've possibly collected some variable declarations to be hoisted later if (outerState) { // pass them to outer converted loop outerState.hoistedLocalVariables = state.hoistedLocalVariables; } else { if (!extraVariableDeclarations) { extraVariableDeclarations = []; } // hoist collected variable declarations for (var _i = 0, _a = state.hoistedLocalVariables; _i < _a.length; _i++) { var identifier = _a[_i]; extraVariableDeclarations.push(factory.createVariableDeclaration(identifier)); } } } // add extra variables to hold out parameters if necessary if (state.loopOutParameters.length) { if (!extraVariableDeclarations) { extraVariableDeclarations = []; } for (var _b = 0, _c = state.loopOutParameters; _b < _c.length; _b++) { var outParam = _c[_b]; extraVariableDeclarations.push(factory.createVariableDeclaration(outParam.outParamName)); } } if (state.conditionVariable) { if (!extraVariableDeclarations) { extraVariableDeclarations = []; } extraVariableDeclarations.push(factory.createVariableDeclaration(state.conditionVariable, /*exclamationToken*/ undefined, /*type*/ undefined, factory.createFalse())); } // create variable statement to hold all introduced variable declarations if (extraVariableDeclarations) { statements.push(factory.createVariableStatement( /*modifiers*/ undefined, factory.createVariableDeclarationList(extraVariableDeclarations))); } } function createOutVariable(p) { return factory.createVariableDeclaration(p.originalName, /*exclamationToken*/ undefined, /*type*/ undefined, p.outParamName); } /** * Creates a `_loop_init` function for a `ForStatement` with a block-scoped initializer * that is captured in a closure inside of the initializer. The `_loop_init` function is * used to preserve the per-iteration environment semantics of * [13.7.4.8 RS: ForBodyEvaluation](https://tc39.github.io/ecma262/#sec-forbodyevaluation). */ function createFunctionForInitializerOfForStatement(node, currentState) { var functionName = factory.createUniqueName("_loop_init"); var containsYield = (node.initializer.transformFlags & 524288 /* TransformFlags.ContainsYield */) !== 0; var emitFlags = 0 /* EmitFlags.None */; if (currentState.containsLexicalThis) emitFlags |= 8 /* EmitFlags.CapturesThis */; if (containsYield && hierarchyFacts & 4 /* HierarchyFacts.AsyncFunctionBody */) emitFlags |= 262144 /* EmitFlags.AsyncFunctionBody */; var statements = []; statements.push(factory.createVariableStatement(/*modifiers*/ undefined, node.initializer)); copyOutParameters(currentState.loopOutParameters, 2 /* LoopOutParameterFlags.Initializer */, 1 /* CopyDirection.ToOutParameter */, statements); // This transforms the following ES2015 syntax: // // for (let i = (setImmediate(() => console.log(i)), 0); i < 2; i++) { // // loop body // } // // Into the following ES5 syntax: // // var _loop_init_1 = function () { // var i = (setImmediate(() => console.log(i)), 0); // out_i_1 = i; // }; // var out_i_1; // _loop_init_1(); // for (var i = out_i_1; i < 2; i++) { // // loop body // } // // Which prevents mutations to `i` in the per-iteration environment of the body // from affecting the initial value for `i` outside of the per-iteration environment. var functionDeclaration = factory.createVariableStatement( /*modifiers*/ undefined, ts.setEmitFlags(factory.createVariableDeclarationList([ factory.createVariableDeclaration(functionName, /*exclamationToken*/ undefined, /*type*/ undefined, ts.setEmitFlags(factory.createFunctionExpression( /*modifiers*/ undefined, containsYield ? factory.createToken(41 /* SyntaxKind.AsteriskToken */) : undefined, /*name*/ undefined, /*typeParameters*/ undefined, /*parameters*/ undefined, /*type*/ undefined, ts.visitNode(factory.createBlock(statements, /*multiLine*/ true), visitor, ts.isBlock)), emitFlags)) ]), 2097152 /* EmitFlags.NoHoisting */)); var part = factory.createVariableDeclarationList(ts.map(currentState.loopOutParameters, createOutVariable)); return { functionName: functionName, containsYield: containsYield, functionDeclaration: functionDeclaration, part: part }; } /** * Creates a `_loop` function for an `IterationStatement` with a block-scoped initializer * that is captured in a closure inside of the loop body. The `_loop` function is used to * preserve the per-iteration environment semantics of * [13.7.4.8 RS: ForBodyEvaluation](https://tc39.github.io/ecma262/#sec-forbodyevaluation). */ function createFunctionForBodyOfIterationStatement(node, currentState, outerState) { var functionName = factory.createUniqueName("_loop"); startLexicalEnvironment(); var statement = ts.visitNode(node.statement, visitor, ts.isStatement, factory.liftToBlock); var lexicalEnvironment = endLexicalEnvironment(); var statements = []; if (shouldConvertConditionOfForStatement(node) || shouldConvertIncrementorOfForStatement(node)) { // If a block-scoped variable declared in the initializer of `node` is captured in // the condition or incrementor, we must move the condition and incrementor into // the body of the for loop. // // This transforms the following ES2015 syntax: // // for (let i = 0; setImmediate(() => console.log(i)), i < 2; setImmediate(() => console.log(i)), i++) { // // loop body // } // // Into the following ES5 syntax: // // var _loop_1 = function (i) { // if (inc_1) // setImmediate(() => console.log(i)), i++; // else // inc_1 = true; // if (!(setImmediate(() => console.log(i)), i < 2)) // return out_i_1 = i, "break"; // // loop body // out_i_1 = i; // } // var out_i_1, inc_1 = false; // for (var i = 0;;) { // var state_1 = _loop_1(i); // i = out_i_1; // if (state_1 === "break") // break; // } // // Which prevents mutations to `i` in the per-iteration environment of the body // from affecting the value of `i` in the previous per-iteration environment. // // Note that the incrementor of a `for` loop is evaluated in a *new* per-iteration // environment that is carried over to the next iteration of the loop. As a result, // we must indicate whether this is the first evaluation of the loop body so that // we only evaluate the incrementor on subsequent evaluations. currentState.conditionVariable = factory.createUniqueName("inc"); if (node.incrementor) { statements.push(factory.createIfStatement(currentState.conditionVariable, factory.createExpressionStatement(ts.visitNode(node.incrementor, visitor, ts.isExpression)), factory.createExpressionStatement(factory.createAssignment(currentState.conditionVariable, factory.createTrue())))); } else { statements.push(factory.createIfStatement(factory.createLogicalNot(currentState.conditionVariable), factory.createExpressionStatement(factory.createAssignment(currentState.conditionVariable, factory.createTrue())))); } if (shouldConvertConditionOfForStatement(node)) { statements.push(factory.createIfStatement(factory.createPrefixUnaryExpression(53 /* SyntaxKind.ExclamationToken */, ts.visitNode(node.condition, visitor, ts.isExpression)), ts.visitNode(factory.createBreakStatement(), visitor, ts.isStatement))); } } if (ts.isBlock(statement)) { ts.addRange(statements, statement.statements); } else { statements.push(statement); } copyOutParameters(currentState.loopOutParameters, 1 /* LoopOutParameterFlags.Body */, 1 /* CopyDirection.ToOutParameter */, statements); ts.insertStatementsAfterStandardPrologue(statements, lexicalEnvironment); var loopBody = factory.createBlock(statements, /*multiLine*/ true); if (ts.isBlock(statement)) ts.setOriginalNode(loopBody, statement); var containsYield = (node.statement.transformFlags & 524288 /* TransformFlags.ContainsYield */) !== 0; var emitFlags = 524288 /* EmitFlags.ReuseTempVariableScope */; if (currentState.containsLexicalThis) emitFlags |= 8 /* EmitFlags.CapturesThis */; if (containsYield && (hierarchyFacts & 4 /* HierarchyFacts.AsyncFunctionBody */) !== 0) emitFlags |= 262144 /* EmitFlags.AsyncFunctionBody */; // This transforms the following ES2015 syntax (in addition to other variations): // // for (let i = 0; i < 2; i++) { // setImmediate(() => console.log(i)); // } // // Into the following ES5 syntax: // // var _loop_1 = function (i) { // setImmediate(() => console.log(i)); // }; // for (var i = 0; i < 2; i++) { // _loop_1(i); // } var functionDeclaration = factory.createVariableStatement( /*modifiers*/ undefined, ts.setEmitFlags(factory.createVariableDeclarationList([ factory.createVariableDeclaration(functionName, /*exclamationToken*/ undefined, /*type*/ undefined, ts.setEmitFlags(factory.createFunctionExpression( /*modifiers*/ undefined, containsYield ? factory.createToken(41 /* SyntaxKind.AsteriskToken */) : undefined, /*name*/ undefined, /*typeParameters*/ undefined, currentState.loopParameters, /*type*/ undefined, loopBody), emitFlags)) ]), 2097152 /* EmitFlags.NoHoisting */)); var part = generateCallToConvertedLoop(functionName, currentState, outerState, containsYield); return { functionName: functionName, containsYield: containsYield, functionDeclaration: functionDeclaration, part: part }; } function copyOutParameter(outParam, copyDirection) { var source = copyDirection === 0 /* CopyDirection.ToOriginal */ ? outParam.outParamName : outParam.originalName; var target = copyDirection === 0 /* CopyDirection.ToOriginal */ ? outParam.originalName : outParam.outParamName; return factory.createBinaryExpression(target, 63 /* SyntaxKind.EqualsToken */, source); } function copyOutParameters(outParams, partFlags, copyDirection, statements) { for (var _i = 0, outParams_1 = outParams; _i < outParams_1.length; _i++) { var outParam = outParams_1[_i]; if (outParam.flags & partFlags) { statements.push(factory.createExpressionStatement(copyOutParameter(outParam, copyDirection))); } } } function generateCallToConvertedLoopInitializer(initFunctionExpressionName, containsYield) { var call = factory.createCallExpression(initFunctionExpressionName, /*typeArguments*/ undefined, []); var callResult = containsYield ? factory.createYieldExpression(factory.createToken(41 /* SyntaxKind.AsteriskToken */), ts.setEmitFlags(call, 8388608 /* EmitFlags.Iterator */)) : call; return factory.createExpressionStatement(callResult); } function generateCallToConvertedLoop(loopFunctionExpressionName, state, outerState, containsYield) { var statements = []; // loop is considered simple if it does not have any return statements or break\continue that transfer control outside of the loop // simple loops are emitted as just 'loop()'; // NOTE: if loop uses only 'continue' it still will be emitted as simple loop var isSimpleLoop = !(state.nonLocalJumps & ~4 /* Jump.Continue */) && !state.labeledNonLocalBreaks && !state.labeledNonLocalContinues; var call = factory.createCallExpression(loopFunctionExpressionName, /*typeArguments*/ undefined, ts.map(state.loopParameters, function (p) { return p.name; })); var callResult = containsYield ? factory.createYieldExpression(factory.createToken(41 /* SyntaxKind.AsteriskToken */), ts.setEmitFlags(call, 8388608 /* EmitFlags.Iterator */)) : call; if (isSimpleLoop) { statements.push(factory.createExpressionStatement(callResult)); copyOutParameters(state.loopOutParameters, 1 /* LoopOutParameterFlags.Body */, 0 /* CopyDirection.ToOriginal */, statements); } else { var loopResultName = factory.createUniqueName("state"); var stateVariable = factory.createVariableStatement( /*modifiers*/ undefined, factory.createVariableDeclarationList([factory.createVariableDeclaration(loopResultName, /*exclamationToken*/ undefined, /*type*/ undefined, callResult)])); statements.push(stateVariable); copyOutParameters(state.loopOutParameters, 1 /* LoopOutParameterFlags.Body */, 0 /* CopyDirection.ToOriginal */, statements); if (state.nonLocalJumps & 8 /* Jump.Return */) { var returnStatement = void 0; if (outerState) { outerState.nonLocalJumps |= 8 /* Jump.Return */; returnStatement = factory.createReturnStatement(loopResultName); } else { returnStatement = factory.createReturnStatement(factory.createPropertyAccessExpression(loopResultName, "value")); } statements.push(factory.createIfStatement(factory.createTypeCheck(loopResultName, "object"), returnStatement)); } if (state.nonLocalJumps & 2 /* Jump.Break */) { statements.push(factory.createIfStatement(factory.createStrictEquality(loopResultName, factory.createStringLiteral("break")), factory.createBreakStatement())); } if (state.labeledNonLocalBreaks || state.labeledNonLocalContinues) { var caseClauses = []; processLabeledJumps(state.labeledNonLocalBreaks, /*isBreak*/ true, loopResultName, outerState, caseClauses); processLabeledJumps(state.labeledNonLocalContinues, /*isBreak*/ false, loopResultName, outerState, caseClauses); statements.push(factory.createSwitchStatement(loopResultName, factory.createCaseBlock(caseClauses))); } } return statements; } function setLabeledJump(state, isBreak, labelText, labelMarker) { if (isBreak) { if (!state.labeledNonLocalBreaks) { state.labeledNonLocalBreaks = new ts.Map(); } state.labeledNonLocalBreaks.set(labelText, labelMarker); } else { if (!state.labeledNonLocalContinues) { state.labeledNonLocalContinues = new ts.Map(); } state.labeledNonLocalContinues.set(labelText, labelMarker); } } function processLabeledJumps(table, isBreak, loopResultName, outerLoop, caseClauses) { if (!table) { return; } table.forEach(function (labelMarker, labelText) { var statements = []; // if there are no outer converted loop or outer label in question is located inside outer converted loop // then emit labeled break\continue // otherwise propagate pair 'label -> marker' to outer converted loop and emit 'return labelMarker' so outer loop can later decide what to do if (!outerLoop || (outerLoop.labels && outerLoop.labels.get(labelText))) { var label = factory.createIdentifier(labelText); statements.push(isBreak ? factory.createBreakStatement(label) : factory.createContinueStatement(label)); } else { setLabeledJump(outerLoop, isBreak, labelText, labelMarker); statements.push(factory.createReturnStatement(loopResultName)); } caseClauses.push(factory.createCaseClause(factory.createStringLiteral(labelMarker), statements)); }); } function processLoopVariableDeclaration(container, decl, loopParameters, loopOutParameters, hasCapturedBindingsInForHead) { var name = decl.name; if (ts.isBindingPattern(name)) { for (var _i = 0, _a = name.elements; _i < _a.length; _i++) { var element = _a[_i]; if (!ts.isOmittedExpression(element)) { processLoopVariableDeclaration(container, element, loopParameters, loopOutParameters, hasCapturedBindingsInForHead); } } } else { loopParameters.push(factory.createParameterDeclaration(/*decorators*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, name)); var checkFlags = resolver.getNodeCheckFlags(decl); if (checkFlags & 4194304 /* NodeCheckFlags.NeedsLoopOutParameter */ || hasCapturedBindingsInForHead) { var outParamName = factory.createUniqueName("out_" + ts.idText(name)); var flags = 0; if (checkFlags & 4194304 /* NodeCheckFlags.NeedsLoopOutParameter */) { flags |= 1 /* LoopOutParameterFlags.Body */; } if (ts.isForStatement(container)) { if (container.initializer && resolver.isBindingCapturedByNode(container.initializer, decl)) { flags |= 2 /* LoopOutParameterFlags.Initializer */; } if (container.condition && resolver.isBindingCapturedByNode(container.condition, decl) || container.incrementor && resolver.isBindingCapturedByNode(container.incrementor, decl)) { flags |= 1 /* LoopOutParameterFlags.Body */; } } loopOutParameters.push({ flags: flags, originalName: name, outParamName: outParamName }); } } } /** * Adds the members of an object literal to an array of expressions. * * @param expressions An array of expressions. * @param node An ObjectLiteralExpression node. * @param receiver The receiver for members of the ObjectLiteralExpression. * @param numInitialNonComputedProperties The number of initial properties without * computed property names. */ function addObjectLiteralMembers(expressions, node, receiver, start) { var properties = node.properties; var numProperties = properties.length; for (var i = start; i < numProperties; i++) { var property = properties[i]; switch (property.kind) { case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: var accessors = ts.getAllAccessorDeclarations(node.properties, property); if (property === accessors.firstAccessor) { expressions.push(transformAccessorsToExpression(receiver, accessors, node, !!node.multiLine)); } break; case 169 /* SyntaxKind.MethodDeclaration */: expressions.push(transformObjectLiteralMethodDeclarationToExpression(property, receiver, node, node.multiLine)); break; case 296 /* SyntaxKind.PropertyAssignment */: expressions.push(transformPropertyAssignmentToExpression(property, receiver, node.multiLine)); break; case 297 /* SyntaxKind.ShorthandPropertyAssignment */: expressions.push(transformShorthandPropertyAssignmentToExpression(property, receiver, node.multiLine)); break; default: ts.Debug.failBadSyntaxKind(node); break; } } } /** * Transforms a PropertyAssignment node into an expression. * * @param node The ObjectLiteralExpression that contains the PropertyAssignment. * @param property The PropertyAssignment node. * @param receiver The receiver for the assignment. */ function transformPropertyAssignmentToExpression(property, receiver, startsOnNewLine) { var expression = factory.createAssignment(ts.createMemberAccessForPropertyName(factory, receiver, ts.visitNode(property.name, visitor, ts.isPropertyName)), ts.visitNode(property.initializer, visitor, ts.isExpression)); ts.setTextRange(expression, property); if (startsOnNewLine) { ts.startOnNewLine(expression); } return expression; } /** * Transforms a ShorthandPropertyAssignment node into an expression. * * @param node The ObjectLiteralExpression that contains the ShorthandPropertyAssignment. * @param property The ShorthandPropertyAssignment node. * @param receiver The receiver for the assignment. */ function transformShorthandPropertyAssignmentToExpression(property, receiver, startsOnNewLine) { var expression = factory.createAssignment(ts.createMemberAccessForPropertyName(factory, receiver, ts.visitNode(property.name, visitor, ts.isPropertyName)), factory.cloneNode(property.name)); ts.setTextRange(expression, property); if (startsOnNewLine) { ts.startOnNewLine(expression); } return expression; } /** * Transforms a MethodDeclaration of an ObjectLiteralExpression into an expression. * * @param node The ObjectLiteralExpression that contains the MethodDeclaration. * @param method The MethodDeclaration node. * @param receiver The receiver for the assignment. */ function transformObjectLiteralMethodDeclarationToExpression(method, receiver, container, startsOnNewLine) { var expression = factory.createAssignment(ts.createMemberAccessForPropertyName(factory, receiver, ts.visitNode(method.name, visitor, ts.isPropertyName)), transformFunctionLikeToExpression(method, /*location*/ method, /*name*/ undefined, container)); ts.setTextRange(expression, method); if (startsOnNewLine) { ts.startOnNewLine(expression); } return expression; } function visitCatchClause(node) { var ancestorFacts = enterSubtree(7104 /* HierarchyFacts.BlockScopeExcludes */, 0 /* HierarchyFacts.BlockScopeIncludes */); var updated; ts.Debug.assert(!!node.variableDeclaration, "Catch clause variable should always be present when downleveling ES2015."); if (ts.isBindingPattern(node.variableDeclaration.name)) { var temp = factory.createTempVariable(/*recordTempVariable*/ undefined); var newVariableDeclaration = factory.createVariableDeclaration(temp); ts.setTextRange(newVariableDeclaration, node.variableDeclaration); var vars = ts.flattenDestructuringBinding(node.variableDeclaration, visitor, context, 0 /* FlattenLevel.All */, temp); var list = factory.createVariableDeclarationList(vars); ts.setTextRange(list, node.variableDeclaration); var destructure = factory.createVariableStatement(/*modifiers*/ undefined, list); updated = factory.updateCatchClause(node, newVariableDeclaration, addStatementToStartOfBlock(node.block, destructure)); } else { updated = ts.visitEachChild(node, visitor, context); } exitSubtree(ancestorFacts, 0 /* HierarchyFacts.None */, 0 /* HierarchyFacts.None */); return updated; } function addStatementToStartOfBlock(block, statement) { var transformedStatements = ts.visitNodes(block.statements, visitor, ts.isStatement); return factory.updateBlock(block, __spreadArray([statement], transformedStatements, true)); } /** * Visits a MethodDeclaration of an ObjectLiteralExpression and transforms it into a * PropertyAssignment. * * @param node A MethodDeclaration node. */ function visitMethodDeclaration(node) { // We should only get here for methods on an object literal with regular identifier names. // Methods on classes are handled in visitClassDeclaration/visitClassExpression. // Methods with computed property names are handled in visitObjectLiteralExpression. ts.Debug.assert(!ts.isComputedPropertyName(node.name)); var functionExpression = transformFunctionLikeToExpression(node, /*location*/ ts.moveRangePos(node, -1), /*name*/ undefined, /*container*/ undefined); ts.setEmitFlags(functionExpression, 512 /* EmitFlags.NoLeadingComments */ | ts.getEmitFlags(functionExpression)); return ts.setTextRange(factory.createPropertyAssignment(node.name, functionExpression), /*location*/ node); } /** * Visits an AccessorDeclaration of an ObjectLiteralExpression. * * @param node An AccessorDeclaration node. */ function visitAccessorDeclaration(node) { ts.Debug.assert(!ts.isComputedPropertyName(node.name)); var savedConvertedLoopState = convertedLoopState; convertedLoopState = undefined; var ancestorFacts = enterSubtree(32670 /* HierarchyFacts.FunctionExcludes */, 65 /* HierarchyFacts.FunctionIncludes */); var updated; var parameters = ts.visitParameterList(node.parameters, visitor, context); var body = transformFunctionBody(node); if (node.kind === 172 /* SyntaxKind.GetAccessor */) { updated = factory.updateGetAccessorDeclaration(node, node.decorators, node.modifiers, node.name, parameters, node.type, body); } else { updated = factory.updateSetAccessorDeclaration(node, node.decorators, node.modifiers, node.name, parameters, body); } exitSubtree(ancestorFacts, 98304 /* HierarchyFacts.FunctionSubtreeExcludes */, 0 /* HierarchyFacts.None */); convertedLoopState = savedConvertedLoopState; return updated; } /** * Visits a ShorthandPropertyAssignment and transforms it into a PropertyAssignment. * * @param node A ShorthandPropertyAssignment node. */ function visitShorthandPropertyAssignment(node) { return ts.setTextRange(factory.createPropertyAssignment(node.name, visitIdentifier(factory.cloneNode(node.name))), /*location*/ node); } function visitComputedPropertyName(node) { return ts.visitEachChild(node, visitor, context); } /** * Visits a YieldExpression node. * * @param node A YieldExpression node. */ function visitYieldExpression(node) { // `yield` expressions are transformed using the generators transformer. return ts.visitEachChild(node, visitor, context); } /** * Visits an ArrayLiteralExpression that contains a spread element. * * @param node An ArrayLiteralExpression node. */ function visitArrayLiteralExpression(node) { if (ts.some(node.elements, ts.isSpreadElement)) { // We are here because we contain a SpreadElementExpression. return transformAndSpreadElements(node.elements, /*isArgumentList*/ false, !!node.multiLine, /*hasTrailingComma*/ !!node.elements.hasTrailingComma); } return ts.visitEachChild(node, visitor, context); } /** * Visits a CallExpression that contains either a spread element or `super`. * * @param node a CallExpression. */ function visitCallExpression(node) { if (ts.getEmitFlags(node) & 33554432 /* EmitFlags.TypeScriptClassWrapper */) { return visitTypeScriptClassWrapper(node); } var expression = ts.skipOuterExpressions(node.expression); if (expression.kind === 106 /* SyntaxKind.SuperKeyword */ || ts.isSuperProperty(expression) || ts.some(node.arguments, ts.isSpreadElement)) { return visitCallExpressionWithPotentialCapturedThisAssignment(node, /*assignToCapturedThis*/ true); } return factory.updateCallExpression(node, ts.visitNode(node.expression, callExpressionVisitor, ts.isExpression), /*typeArguments*/ undefined, ts.visitNodes(node.arguments, visitor, ts.isExpression)); } function visitTypeScriptClassWrapper(node) { // This is a call to a class wrapper function (an IIFE) created by the 'ts' transformer. // The wrapper has a form similar to: // // (function() { // class C { // 1 // } // C.x = 1; // 2 // return C; // }()) // // When we transform the class, we end up with something like this: // // (function () { // var C = (function () { // 3 // function C() { // } // return C; // 4 // }()); // C.x = 1; // return C; // }()) // // We want to simplify the two nested IIFEs to end up with something like this: // // (function () { // function C() { // } // C.x = 1; // return C; // }()) // We skip any outer expressions in a number of places to get to the innermost // expression, but we will restore them later to preserve comments and source maps. var body = ts.cast(ts.cast(ts.skipOuterExpressions(node.expression), ts.isArrowFunction).body, ts.isBlock); // The class statements are the statements generated by visiting the first statement with initializer of the // body (1), while all other statements are added to remainingStatements (2) var isVariableStatementWithInitializer = function (stmt) { return ts.isVariableStatement(stmt) && !!ts.first(stmt.declarationList.declarations).initializer; }; // visit the class body statements outside of any converted loop body. var savedConvertedLoopState = convertedLoopState; convertedLoopState = undefined; var bodyStatements = ts.visitNodes(body.statements, classWrapperStatementVisitor, ts.isStatement); convertedLoopState = savedConvertedLoopState; var classStatements = ts.filter(bodyStatements, isVariableStatementWithInitializer); var remainingStatements = ts.filter(bodyStatements, function (stmt) { return !isVariableStatementWithInitializer(stmt); }); var varStatement = ts.cast(ts.first(classStatements), ts.isVariableStatement); // We know there is only one variable declaration here as we verified this in an // earlier call to isTypeScriptClassWrapper var variable = varStatement.declarationList.declarations[0]; var initializer = ts.skipOuterExpressions(variable.initializer); // Under certain conditions, the 'ts' transformer may introduce a class alias, which // we see as an assignment, for example: // // (function () { // var C_1; // var C = C_1 = (function () { // function C() { // } // C.x = function () { return C_1; } // return C; // }()); // C = C_1 = __decorate([dec], C); // return C; // }()) // var aliasAssignment = ts.tryCast(initializer, ts.isAssignmentExpression); if (!aliasAssignment && ts.isBinaryExpression(initializer) && initializer.operatorToken.kind === 27 /* SyntaxKind.CommaToken */) { aliasAssignment = ts.tryCast(initializer.left, ts.isAssignmentExpression); } // The underlying call (3) is another IIFE that may contain a '_super' argument. var call = ts.cast(aliasAssignment ? ts.skipOuterExpressions(aliasAssignment.right) : initializer, ts.isCallExpression); var func = ts.cast(ts.skipOuterExpressions(call.expression), ts.isFunctionExpression); var funcStatements = func.body.statements; var classBodyStart = 0; var classBodyEnd = -1; var statements = []; if (aliasAssignment) { // If we have a class alias assignment, we need to move it to the down-level constructor // function we generated for the class. var extendsCall = ts.tryCast(funcStatements[classBodyStart], ts.isExpressionStatement); if (extendsCall) { statements.push(extendsCall); classBodyStart++; } // The next statement is the function declaration. statements.push(funcStatements[classBodyStart]); classBodyStart++; // Add the class alias following the declaration. statements.push(factory.createExpressionStatement(factory.createAssignment(aliasAssignment.left, ts.cast(variable.name, ts.isIdentifier)))); } // Find the trailing 'return' statement (4) while (!ts.isReturnStatement(ts.elementAt(funcStatements, classBodyEnd))) { classBodyEnd--; } // When we extract the statements of the inner IIFE, we exclude the 'return' statement (4) // as we already have one that has been introduced by the 'ts' transformer. ts.addRange(statements, funcStatements, classBodyStart, classBodyEnd); if (classBodyEnd < -1) { // If there were any hoisted declarations following the return statement, we should // append them. ts.addRange(statements, funcStatements, classBodyEnd + 1); } // Add the remaining statements of the outer wrapper. ts.addRange(statements, remainingStatements); // The 'es2015' class transform may add an end-of-declaration marker. If so we will add it // after the remaining statements from the 'ts' transformer. ts.addRange(statements, classStatements, /*start*/ 1); // Recreate any outer parentheses or partially-emitted expressions to preserve source map // and comment locations. return factory.restoreOuterExpressions(node.expression, factory.restoreOuterExpressions(variable.initializer, factory.restoreOuterExpressions(aliasAssignment && aliasAssignment.right, factory.updateCallExpression(call, factory.restoreOuterExpressions(call.expression, factory.updateFunctionExpression(func, /*modifiers*/ undefined, /*asteriskToken*/ undefined, /*name*/ undefined, /*typeParameters*/ undefined, func.parameters, /*type*/ undefined, factory.updateBlock(func.body, statements))), /*typeArguments*/ undefined, call.arguments)))); } function visitSuperCallInBody(node) { return visitCallExpressionWithPotentialCapturedThisAssignment(node, /*assignToCapturedThis*/ false); } function visitCallExpressionWithPotentialCapturedThisAssignment(node, assignToCapturedThis) { // We are here either because SuperKeyword was used somewhere in the expression, or // because we contain a SpreadElementExpression. if (node.transformFlags & 16384 /* TransformFlags.ContainsRestOrSpread */ || node.expression.kind === 106 /* SyntaxKind.SuperKeyword */ || ts.isSuperProperty(ts.skipOuterExpressions(node.expression))) { var _a = factory.createCallBinding(node.expression, hoistVariableDeclaration), target = _a.target, thisArg = _a.thisArg; if (node.expression.kind === 106 /* SyntaxKind.SuperKeyword */) { ts.setEmitFlags(thisArg, 4 /* EmitFlags.NoSubstitution */); } var resultingCall = void 0; if (node.transformFlags & 16384 /* TransformFlags.ContainsRestOrSpread */) { // [source] // f(...a, b) // x.m(...a, b) // super(...a, b) // super.m(...a, b) // in static // super.m(...a, b) // in instance // // [output] // f.apply(void 0, a.concat([b])) // (_a = x).m.apply(_a, a.concat([b])) // _super.apply(this, a.concat([b])) // _super.m.apply(this, a.concat([b])) // _super.prototype.m.apply(this, a.concat([b])) resultingCall = factory.createFunctionApplyCall(ts.visitNode(target, callExpressionVisitor, ts.isExpression), node.expression.kind === 106 /* SyntaxKind.SuperKeyword */ ? thisArg : ts.visitNode(thisArg, visitor, ts.isExpression), transformAndSpreadElements(node.arguments, /*isArgumentList*/ true, /*multiLine*/ false, /*hasTrailingComma*/ false)); } else { // [source] // super(a) // super.m(a) // in static // super.m(a) // in instance // // [output] // _super.call(this, a) // _super.m.call(this, a) // _super.prototype.m.call(this, a) resultingCall = ts.setTextRange(factory.createFunctionCallCall(ts.visitNode(target, callExpressionVisitor, ts.isExpression), node.expression.kind === 106 /* SyntaxKind.SuperKeyword */ ? thisArg : ts.visitNode(thisArg, visitor, ts.isExpression), ts.visitNodes(node.arguments, visitor, ts.isExpression)), node); } if (node.expression.kind === 106 /* SyntaxKind.SuperKeyword */) { var initializer = factory.createLogicalOr(resultingCall, createActualThis()); resultingCall = assignToCapturedThis ? factory.createAssignment(factory.createUniqueName("_this", 16 /* GeneratedIdentifierFlags.Optimistic */ | 32 /* GeneratedIdentifierFlags.FileLevel */), initializer) : initializer; } return ts.setOriginalNode(resultingCall, node); } return ts.visitEachChild(node, visitor, context); } /** * Visits a NewExpression that contains a spread element. * * @param node A NewExpression node. */ function visitNewExpression(node) { if (ts.some(node.arguments, ts.isSpreadElement)) { // We are here because we contain a SpreadElementExpression. // [source] // new C(...a) // // [output] // new ((_a = C).bind.apply(_a, [void 0].concat(a)))() var _a = factory.createCallBinding(factory.createPropertyAccessExpression(node.expression, "bind"), hoistVariableDeclaration), target = _a.target, thisArg = _a.thisArg; return factory.createNewExpression(factory.createFunctionApplyCall(ts.visitNode(target, visitor, ts.isExpression), thisArg, transformAndSpreadElements(factory.createNodeArray(__spreadArray([factory.createVoidZero()], node.arguments, true)), /*isArgumentList*/ true, /*multiLine*/ false, /*hasTrailingComma*/ false)), /*typeArguments*/ undefined, []); } return ts.visitEachChild(node, visitor, context); } /** * Transforms an array of Expression nodes that contains a SpreadExpression. * * @param elements The array of Expression nodes. * @param isArgumentList A value indicating whether to ensure that the result is a fresh array. * This should be `false` when spreading into an `ArrayLiteral`, and `true` when spreading into an * argument list. * @param multiLine A value indicating whether the result should be emitted on multiple lines. */ function transformAndSpreadElements(elements, isArgumentList, multiLine, hasTrailingComma) { // When there is no leading SpreadElement: // // [source] // [a, ...b, c] // // [output (downlevelIteration)] // __spreadArray(__spreadArray([a], __read(b)), [c]) // // [output] // __spreadArray(__spreadArray([a], b), [c]) // // When there *is* a leading SpreadElement: // // [source] // [...a, b] // // [output (downlevelIteration)] // __spreadArray(__spreadArray([], __read(a)), [b]) // // [output] // __spreadArray(__spreadArray([], a), [b]) // // NOTE: We use `isPackedArrayLiteral` below rather than just `isArrayLiteral` // because ES2015 spread will replace _missing_ array elements with `undefined`, // so we cannot just use an array as is. For example: // // `[1, ...[2, , 3]]` becomes `[1, 2, undefined, 3]` // // However, for packed array literals (i.e., an array literal with no OmittedExpression // elements), we can use the array as-is. // Map spans of spread expressions into their expressions and spans of other // expressions into an array literal. var numElements = elements.length; var segments = ts.flatten( // As we visit each element, we return one of two functions to use as the "key": // - `visitSpanOfSpreads` for one or more contiguous `...` spread expressions, i.e. `...a, ...b` in `[1, 2, ...a, ...b]` // - `visitSpanOfNonSpreads` for one or more contiguous non-spread elements, i.e. `1, 2`, in `[1, 2, ...a, ...b]` ts.spanMap(elements, partitionSpread, function (partition, visitPartition, _start, end) { return visitPartition(partition, multiLine, hasTrailingComma && end === numElements); })); if (segments.length === 1) { var firstSegment = segments[0]; // If we don't need a unique copy, then we are spreading into an argument list for // a CallExpression or NewExpression. When using `--downlevelIteration`, we need // to coerce this into an array for use with `apply`, so we will use the code path // that follows instead. if (isArgumentList && !compilerOptions.downlevelIteration || ts.isPackedArrayLiteral(firstSegment.expression) // see NOTE (above) || ts.isCallToHelper(firstSegment.expression, "___spreadArray")) { return firstSegment.expression; } } var helpers = emitHelpers(); var startsWithSpread = segments[0].kind !== 0 /* SpreadSegmentKind.None */; var expression = startsWithSpread ? factory.createArrayLiteralExpression() : segments[0].expression; for (var i = startsWithSpread ? 0 : 1; i < segments.length; i++) { var segment = segments[i]; // If this is for an argument list, it doesn't matter if the array is packed or sparse expression = helpers.createSpreadArrayHelper(expression, segment.expression, segment.kind === 1 /* SpreadSegmentKind.UnpackedSpread */ && !isArgumentList); } return expression; } function partitionSpread(node) { return ts.isSpreadElement(node) ? visitSpanOfSpreads : visitSpanOfNonSpreads; } function visitSpanOfSpreads(chunk) { return ts.map(chunk, visitExpressionOfSpread); } function visitExpressionOfSpread(node) { var expression = ts.visitNode(node.expression, visitor, ts.isExpression); // We don't need to pack already packed array literals, or existing calls to the `__read` helper. var isCallToReadHelper = ts.isCallToHelper(expression, "___read"); var kind = isCallToReadHelper || ts.isPackedArrayLiteral(expression) ? 2 /* SpreadSegmentKind.PackedSpread */ : 1 /* SpreadSegmentKind.UnpackedSpread */; // We don't need the `__read` helper for array literals. Array packing will be performed by `__spreadArray`. if (compilerOptions.downlevelIteration && kind === 1 /* SpreadSegmentKind.UnpackedSpread */ && !ts.isArrayLiteralExpression(expression) && !isCallToReadHelper) { expression = emitHelpers().createReadHelper(expression, /*count*/ undefined); // the `__read` helper returns a packed array, so we don't need to ensure a packed array kind = 2 /* SpreadSegmentKind.PackedSpread */; } return createSpreadSegment(kind, expression); } function visitSpanOfNonSpreads(chunk, multiLine, hasTrailingComma) { var expression = factory.createArrayLiteralExpression(ts.visitNodes(factory.createNodeArray(chunk, hasTrailingComma), visitor, ts.isExpression), multiLine); // We do not pack non-spread segments, this is so that `[1, , ...[2, , 3], , 4]` is properly downleveled to // `[1, , 2, undefined, 3, , 4]`. See the NOTE in `transformAndSpreadElements` return createSpreadSegment(0 /* SpreadSegmentKind.None */, expression); } function visitSpreadElement(node) { return ts.visitNode(node.expression, visitor, ts.isExpression); } /** * Visits a template literal. * * @param node A template literal. */ function visitTemplateLiteral(node) { return ts.setTextRange(factory.createStringLiteral(node.text), node); } /** * Visits a string literal with an extended unicode escape. * * @param node A string literal. */ function visitStringLiteral(node) { if (node.hasExtendedUnicodeEscape) { return ts.setTextRange(factory.createStringLiteral(node.text), node); } return node; } /** * Visits a binary or octal (ES6) numeric literal. * * @param node A string literal. */ function visitNumericLiteral(node) { if (node.numericLiteralFlags & 384 /* TokenFlags.BinaryOrOctalSpecifier */) { return ts.setTextRange(factory.createNumericLiteral(node.text), node); } return node; } /** * Visits a TaggedTemplateExpression node. * * @param node A TaggedTemplateExpression node. */ function visitTaggedTemplateExpression(node) { return ts.processTaggedTemplateExpression(context, node, visitor, currentSourceFile, recordTaggedTemplateString, ts.ProcessLevel.All); } /** * Visits a TemplateExpression node. * * @param node A TemplateExpression node. */ function visitTemplateExpression(node) { var expression = factory.createStringLiteral(node.head.text); for (var _i = 0, _a = node.templateSpans; _i < _a.length; _i++) { var span = _a[_i]; var args = [ts.visitNode(span.expression, visitor, ts.isExpression)]; if (span.literal.text.length > 0) { args.push(factory.createStringLiteral(span.literal.text)); } expression = factory.createCallExpression(factory.createPropertyAccessExpression(expression, "concat"), /*typeArguments*/ undefined, args); } return ts.setTextRange(expression, node); } /** * Visits the `super` keyword */ function visitSuperKeyword(isExpressionOfCall) { return hierarchyFacts & 8 /* HierarchyFacts.NonStaticClassElement */ && !isExpressionOfCall ? factory.createPropertyAccessExpression(factory.createUniqueName("_super", 16 /* GeneratedIdentifierFlags.Optimistic */ | 32 /* GeneratedIdentifierFlags.FileLevel */), "prototype") : factory.createUniqueName("_super", 16 /* GeneratedIdentifierFlags.Optimistic */ | 32 /* GeneratedIdentifierFlags.FileLevel */); } function visitMetaProperty(node) { if (node.keywordToken === 103 /* SyntaxKind.NewKeyword */ && node.name.escapedText === "target") { hierarchyFacts |= 32768 /* HierarchyFacts.NewTarget */; return factory.createUniqueName("_newTarget", 16 /* GeneratedIdentifierFlags.Optimistic */ | 32 /* GeneratedIdentifierFlags.FileLevel */); } return node; } /** * Called by the printer just before a node is printed. * * @param hint A hint as to the intended usage of the node. * @param node The node to be printed. * @param emitCallback The callback used to emit the node. */ function onEmitNode(hint, node, emitCallback) { if (enabledSubstitutions & 1 /* ES2015SubstitutionFlags.CapturedThis */ && ts.isFunctionLike(node)) { // If we are tracking a captured `this`, keep track of the enclosing function. var ancestorFacts = enterSubtree(32670 /* HierarchyFacts.FunctionExcludes */, ts.getEmitFlags(node) & 8 /* EmitFlags.CapturesThis */ ? 65 /* HierarchyFacts.FunctionIncludes */ | 16 /* HierarchyFacts.CapturesThis */ : 65 /* HierarchyFacts.FunctionIncludes */); previousOnEmitNode(hint, node, emitCallback); exitSubtree(ancestorFacts, 0 /* HierarchyFacts.None */, 0 /* HierarchyFacts.None */); return; } previousOnEmitNode(hint, node, emitCallback); } /** * Enables a more costly code path for substitutions when we determine a source file * contains block-scoped bindings (e.g. `let` or `const`). */ function enableSubstitutionsForBlockScopedBindings() { if ((enabledSubstitutions & 2 /* ES2015SubstitutionFlags.BlockScopedBindings */) === 0) { enabledSubstitutions |= 2 /* ES2015SubstitutionFlags.BlockScopedBindings */; context.enableSubstitution(79 /* SyntaxKind.Identifier */); } } /** * Enables a more costly code path for substitutions when we determine a source file * contains a captured `this`. */ function enableSubstitutionsForCapturedThis() { if ((enabledSubstitutions & 1 /* ES2015SubstitutionFlags.CapturedThis */) === 0) { enabledSubstitutions |= 1 /* ES2015SubstitutionFlags.CapturedThis */; context.enableSubstitution(108 /* SyntaxKind.ThisKeyword */); context.enableEmitNotification(171 /* SyntaxKind.Constructor */); context.enableEmitNotification(169 /* SyntaxKind.MethodDeclaration */); context.enableEmitNotification(172 /* SyntaxKind.GetAccessor */); context.enableEmitNotification(173 /* SyntaxKind.SetAccessor */); context.enableEmitNotification(214 /* SyntaxKind.ArrowFunction */); context.enableEmitNotification(213 /* SyntaxKind.FunctionExpression */); context.enableEmitNotification(256 /* SyntaxKind.FunctionDeclaration */); } } /** * Hooks node substitutions. * * @param hint The context for the emitter. * @param node The node to substitute. */ function onSubstituteNode(hint, node) { node = previousOnSubstituteNode(hint, node); if (hint === 1 /* EmitHint.Expression */) { return substituteExpression(node); } if (ts.isIdentifier(node)) { return substituteIdentifier(node); } return node; } /** * Hooks substitutions for non-expression identifiers. */ function substituteIdentifier(node) { // Only substitute the identifier if we have enabled substitutions for block-scoped // bindings. if (enabledSubstitutions & 2 /* ES2015SubstitutionFlags.BlockScopedBindings */ && !ts.isInternalName(node)) { var original = ts.getParseTreeNode(node, ts.isIdentifier); if (original && isNameOfDeclarationWithCollidingName(original)) { return ts.setTextRange(factory.getGeneratedNameForNode(original), node); } } return node; } /** * Determines whether a name is the name of a declaration with a colliding name. * NOTE: This function expects to be called with an original source tree node. * * @param node An original source tree node. */ function isNameOfDeclarationWithCollidingName(node) { switch (node.parent.kind) { case 203 /* SyntaxKind.BindingElement */: case 257 /* SyntaxKind.ClassDeclaration */: case 260 /* SyntaxKind.EnumDeclaration */: case 254 /* SyntaxKind.VariableDeclaration */: return node.parent.name === node && resolver.isDeclarationWithCollidingName(node.parent); } return false; } /** * Substitutes an expression. * * @param node An Expression node. */ function substituteExpression(node) { switch (node.kind) { case 79 /* SyntaxKind.Identifier */: return substituteExpressionIdentifier(node); case 108 /* SyntaxKind.ThisKeyword */: return substituteThisKeyword(node); } return node; } /** * Substitutes an expression identifier. * * @param node An Identifier node. */ function substituteExpressionIdentifier(node) { if (enabledSubstitutions & 2 /* ES2015SubstitutionFlags.BlockScopedBindings */ && !ts.isInternalName(node)) { var declaration = resolver.getReferencedDeclarationWithCollidingName(node); if (declaration && !(ts.isClassLike(declaration) && isPartOfClassBody(declaration, node))) { return ts.setTextRange(factory.getGeneratedNameForNode(ts.getNameOfDeclaration(declaration)), node); } } return node; } function isPartOfClassBody(declaration, node) { var currentNode = ts.getParseTreeNode(node); if (!currentNode || currentNode === declaration || currentNode.end <= declaration.pos || currentNode.pos >= declaration.end) { // if the node has no correlation to a parse tree node, its definitely not // part of the body. // if the node is outside of the document range of the declaration, its // definitely not part of the body. return false; } var blockScope = ts.getEnclosingBlockScopeContainer(declaration); while (currentNode) { if (currentNode === blockScope || currentNode === declaration) { // if we are in the enclosing block scope of the declaration, we are definitely // not inside the class body. return false; } if (ts.isClassElement(currentNode) && currentNode.parent === declaration) { return true; } currentNode = currentNode.parent; } return false; } /** * Substitutes `this` when contained within an arrow function. * * @param node The ThisKeyword node. */ function substituteThisKeyword(node) { if (enabledSubstitutions & 1 /* ES2015SubstitutionFlags.CapturedThis */ && hierarchyFacts & 16 /* HierarchyFacts.CapturesThis */) { return ts.setTextRange(factory.createUniqueName("_this", 16 /* GeneratedIdentifierFlags.Optimistic */ | 32 /* GeneratedIdentifierFlags.FileLevel */), node); } return node; } function getClassMemberPrefix(node, member) { return ts.isStatic(member) ? factory.getInternalName(node) : factory.createPropertyAccessExpression(factory.getInternalName(node), "prototype"); } function hasSynthesizedDefaultSuperCall(constructor, hasExtendsClause) { if (!constructor || !hasExtendsClause) { return false; } if (ts.some(constructor.parameters)) { return false; } var statement = ts.firstOrUndefined(constructor.body.statements); if (!statement || !ts.nodeIsSynthesized(statement) || statement.kind !== 238 /* SyntaxKind.ExpressionStatement */) { return false; } var statementExpression = statement.expression; if (!ts.nodeIsSynthesized(statementExpression) || statementExpression.kind !== 208 /* SyntaxKind.CallExpression */) { return false; } var callTarget = statementExpression.expression; if (!ts.nodeIsSynthesized(callTarget) || callTarget.kind !== 106 /* SyntaxKind.SuperKeyword */) { return false; } var callArgument = ts.singleOrUndefined(statementExpression.arguments); if (!callArgument || !ts.nodeIsSynthesized(callArgument) || callArgument.kind !== 225 /* SyntaxKind.SpreadElement */) { return false; } var expression = callArgument.expression; return ts.isIdentifier(expression) && expression.escapedText === "arguments"; } } ts.transformES2015 = transformES2015; })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { /** * Transforms ES5 syntax into ES3 syntax. * * @param context Context and state information for the transformation. */ function transformES5(context) { var factory = context.factory; var compilerOptions = context.getCompilerOptions(); // enable emit notification only if using --jsx preserve or react-native var previousOnEmitNode; var noSubstitution; if (compilerOptions.jsx === 1 /* JsxEmit.Preserve */ || compilerOptions.jsx === 3 /* JsxEmit.ReactNative */) { previousOnEmitNode = context.onEmitNode; context.onEmitNode = onEmitNode; context.enableEmitNotification(280 /* SyntaxKind.JsxOpeningElement */); context.enableEmitNotification(281 /* SyntaxKind.JsxClosingElement */); context.enableEmitNotification(279 /* SyntaxKind.JsxSelfClosingElement */); noSubstitution = []; } var previousOnSubstituteNode = context.onSubstituteNode; context.onSubstituteNode = onSubstituteNode; context.enableSubstitution(206 /* SyntaxKind.PropertyAccessExpression */); context.enableSubstitution(296 /* SyntaxKind.PropertyAssignment */); return ts.chainBundle(context, transformSourceFile); /** * Transforms an ES5 source file to ES3. * * @param node A SourceFile */ function transformSourceFile(node) { return node; } /** * Called by the printer just before a node is printed. * * @param hint A hint as to the intended usage of the node. * @param node The node to emit. * @param emitCallback A callback used to emit the node. */ function onEmitNode(hint, node, emitCallback) { switch (node.kind) { case 280 /* SyntaxKind.JsxOpeningElement */: case 281 /* SyntaxKind.JsxClosingElement */: case 279 /* SyntaxKind.JsxSelfClosingElement */: var tagName = node.tagName; noSubstitution[ts.getOriginalNodeId(tagName)] = true; break; } previousOnEmitNode(hint, node, emitCallback); } /** * Hooks node substitutions. * * @param hint A hint as to the intended usage of the node. * @param node The node to substitute. */ function onSubstituteNode(hint, node) { if (node.id && noSubstitution && noSubstitution[node.id]) { return previousOnSubstituteNode(hint, node); } node = previousOnSubstituteNode(hint, node); if (ts.isPropertyAccessExpression(node)) { return substitutePropertyAccessExpression(node); } else if (ts.isPropertyAssignment(node)) { return substitutePropertyAssignment(node); } return node; } /** * Substitutes a PropertyAccessExpression whose name is a reserved word. * * @param node A PropertyAccessExpression */ function substitutePropertyAccessExpression(node) { if (ts.isPrivateIdentifier(node.name)) { return node; } var literalName = trySubstituteReservedName(node.name); if (literalName) { return ts.setTextRange(factory.createElementAccessExpression(node.expression, literalName), node); } return node; } /** * Substitutes a PropertyAssignment whose name is a reserved word. * * @param node A PropertyAssignment */ function substitutePropertyAssignment(node) { var literalName = ts.isIdentifier(node.name) && trySubstituteReservedName(node.name); if (literalName) { return factory.updatePropertyAssignment(node, literalName, node.initializer); } return node; } /** * If an identifier name is a reserved word, returns a string literal for the name. * * @param name An Identifier */ function trySubstituteReservedName(name) { var token = name.originalKeywordKind || (ts.nodeIsSynthesized(name) ? ts.stringToToken(ts.idText(name)) : undefined); if (token !== undefined && token >= 81 /* SyntaxKind.FirstReservedWord */ && token <= 116 /* SyntaxKind.LastReservedWord */) { return ts.setTextRange(factory.createStringLiteralFromNode(name), name); } return undefined; } } ts.transformES5 = transformES5; })(ts || (ts = {})); // Transforms generator functions into a compatible ES5 representation with similar runtime // semantics. This is accomplished by first transforming the body of each generator // function into an intermediate representation that is the compiled into a JavaScript // switch statement. // // Many functions in this transformer will contain comments indicating the expected // intermediate representation. For illustrative purposes, the following intermediate // language is used to define this intermediate representation: // // .nop - Performs no operation. // .local NAME, ... - Define local variable declarations. // .mark LABEL - Mark the location of a label. // .br LABEL - Jump to a label. If jumping out of a protected // region, all .finally blocks are executed. // .brtrue LABEL, (x) - Jump to a label IIF the expression `x` is truthy. // If jumping out of a protected region, all .finally // blocks are executed. // .brfalse LABEL, (x) - Jump to a label IIF the expression `x` is falsey. // If jumping out of a protected region, all .finally // blocks are executed. // .yield (x) - Yield the value of the optional expression `x`. // Resume at the next label. // .yieldstar (x) - Delegate yield to the value of the optional // expression `x`. Resume at the next label. // NOTE: `x` must be an Iterator, not an Iterable. // .loop CONTINUE, BREAK - Marks the beginning of a loop. Any "continue" or // "break" abrupt completions jump to the CONTINUE or // BREAK labels, respectively. // .endloop - Marks the end of a loop. // .with (x) - Marks the beginning of a WithStatement block, using // the supplied expression. // .endwith - Marks the end of a WithStatement. // .switch - Marks the beginning of a SwitchStatement. // .endswitch - Marks the end of a SwitchStatement. // .labeled NAME - Marks the beginning of a LabeledStatement with the // supplied name. // .endlabeled - Marks the end of a LabeledStatement. // .try TRY, CATCH, FINALLY, END - Marks the beginning of a protected region, and the // labels for each block. // .catch (x) - Marks the beginning of a catch block. // .finally - Marks the beginning of a finally block. // .endfinally - Marks the end of a finally block. // .endtry - Marks the end of a protected region. // .throw (x) - Throws the value of the expression `x`. // .return (x) - Returns the value of the expression `x`. // // In addition, the illustrative intermediate representation introduces some special // variables: // // %sent% - Either returns the next value sent to the generator, // returns the result of a delegated yield, or throws // the exception sent to the generator. // %error% - Returns the value of the current exception in a // catch block. // // This intermediate representation is then compiled into JavaScript syntax. The resulting // compilation output looks something like the following: // // function f() { // var /*locals*/; // /*functions*/ // return __generator(function (state) { // switch (state.label) { // /*cases per label*/ // } // }); // } // // Each of the above instructions corresponds to JavaScript emit similar to the following: // // .local NAME | var NAME; // -------------------------------|---------------------------------------------- // .mark LABEL | case LABEL: // -------------------------------|---------------------------------------------- // .br LABEL | return [3 /*break*/, LABEL]; // -------------------------------|---------------------------------------------- // .brtrue LABEL, (x) | if (x) return [3 /*break*/, LABEL]; // -------------------------------|---------------------------------------------- // .brfalse LABEL, (x) | if (!(x)) return [3, /*break*/, LABEL]; // -------------------------------|---------------------------------------------- // .yield (x) | return [4 /*yield*/, x]; // .mark RESUME | case RESUME: // a = %sent%; | a = state.sent(); // -------------------------------|---------------------------------------------- // .yieldstar (x) | return [5 /*yield**/, x]; // .mark RESUME | case RESUME: // a = %sent%; | a = state.sent(); // -------------------------------|---------------------------------------------- // .with (_a) | with (_a) { // a(); | a(); // | } // | state.label = LABEL; // .mark LABEL | case LABEL: // | with (_a) { // b(); | b(); // | } // .endwith | // -------------------------------|---------------------------------------------- // | case 0: // | state.trys = []; // | ... // .try TRY, CATCH, FINALLY, END | // .mark TRY | case TRY: // | state.trys.push([TRY, CATCH, FINALLY, END]); // .nop | // a(); | a(); // .br END | return [3 /*break*/, END]; // .catch (e) | // .mark CATCH | case CATCH: // | e = state.sent(); // b(); | b(); // .br END | return [3 /*break*/, END]; // .finally | // .mark FINALLY | case FINALLY: // c(); | c(); // .endfinally | return [7 /*endfinally*/]; // .endtry | // .mark END | case END: /*@internal*/ var ts; (function (ts) { var OpCode; (function (OpCode) { OpCode[OpCode["Nop"] = 0] = "Nop"; OpCode[OpCode["Statement"] = 1] = "Statement"; OpCode[OpCode["Assign"] = 2] = "Assign"; OpCode[OpCode["Break"] = 3] = "Break"; OpCode[OpCode["BreakWhenTrue"] = 4] = "BreakWhenTrue"; OpCode[OpCode["BreakWhenFalse"] = 5] = "BreakWhenFalse"; OpCode[OpCode["Yield"] = 6] = "Yield"; OpCode[OpCode["YieldStar"] = 7] = "YieldStar"; OpCode[OpCode["Return"] = 8] = "Return"; OpCode[OpCode["Throw"] = 9] = "Throw"; OpCode[OpCode["Endfinally"] = 10] = "Endfinally"; // Marks the end of a `finally` block })(OpCode || (OpCode = {})); // whether a generated code block is opening or closing at the current operation for a FunctionBuilder var BlockAction; (function (BlockAction) { BlockAction[BlockAction["Open"] = 0] = "Open"; BlockAction[BlockAction["Close"] = 1] = "Close"; })(BlockAction || (BlockAction = {})); // the kind for a generated code block in a FunctionBuilder var CodeBlockKind; (function (CodeBlockKind) { CodeBlockKind[CodeBlockKind["Exception"] = 0] = "Exception"; CodeBlockKind[CodeBlockKind["With"] = 1] = "With"; CodeBlockKind[CodeBlockKind["Switch"] = 2] = "Switch"; CodeBlockKind[CodeBlockKind["Loop"] = 3] = "Loop"; CodeBlockKind[CodeBlockKind["Labeled"] = 4] = "Labeled"; })(CodeBlockKind || (CodeBlockKind = {})); // the state for a generated code exception block var ExceptionBlockState; (function (ExceptionBlockState) { ExceptionBlockState[ExceptionBlockState["Try"] = 0] = "Try"; ExceptionBlockState[ExceptionBlockState["Catch"] = 1] = "Catch"; ExceptionBlockState[ExceptionBlockState["Finally"] = 2] = "Finally"; ExceptionBlockState[ExceptionBlockState["Done"] = 3] = "Done"; })(ExceptionBlockState || (ExceptionBlockState = {})); // NOTE: changes to this enum should be reflected in the __generator helper. var Instruction; (function (Instruction) { Instruction[Instruction["Next"] = 0] = "Next"; Instruction[Instruction["Throw"] = 1] = "Throw"; Instruction[Instruction["Return"] = 2] = "Return"; Instruction[Instruction["Break"] = 3] = "Break"; Instruction[Instruction["Yield"] = 4] = "Yield"; Instruction[Instruction["YieldStar"] = 5] = "YieldStar"; Instruction[Instruction["Catch"] = 6] = "Catch"; Instruction[Instruction["Endfinally"] = 7] = "Endfinally"; })(Instruction || (Instruction = {})); function getInstructionName(instruction) { switch (instruction) { case 2 /* Instruction.Return */: return "return"; case 3 /* Instruction.Break */: return "break"; case 4 /* Instruction.Yield */: return "yield"; case 5 /* Instruction.YieldStar */: return "yield*"; case 7 /* Instruction.Endfinally */: return "endfinally"; default: return undefined; // TODO: GH#18217 } } function transformGenerators(context) { var factory = context.factory, emitHelpers = context.getEmitHelperFactory, resumeLexicalEnvironment = context.resumeLexicalEnvironment, endLexicalEnvironment = context.endLexicalEnvironment, hoistFunctionDeclaration = context.hoistFunctionDeclaration, hoistVariableDeclaration = context.hoistVariableDeclaration; var compilerOptions = context.getCompilerOptions(); var languageVersion = ts.getEmitScriptTarget(compilerOptions); var resolver = context.getEmitResolver(); var previousOnSubstituteNode = context.onSubstituteNode; context.onSubstituteNode = onSubstituteNode; var renamedCatchVariables; var renamedCatchVariableDeclarations; var inGeneratorFunctionBody; var inStatementContainingYield; // The following three arrays store information about generated code blocks. // All three arrays are correlated by their index. This approach is used over allocating // objects to store the same information to avoid GC overhead. // var blocks; // Information about the code block var blockOffsets; // The operation offset at which a code block begins or ends var blockActions; // Whether the code block is opened or closed var blockStack; // A stack of currently open code blocks // Labels are used to mark locations in the code that can be the target of a Break (jump) // operation. These are translated into case clauses in a switch statement. // The following two arrays are correlated by their index. This approach is used over // allocating objects to store the same information to avoid GC overhead. // var labelOffsets; // The operation offset at which the label is defined. var labelExpressions; // The NumericLiteral nodes bound to each label. var nextLabelId = 1; // The next label id to use. // Operations store information about generated code for the function body. This // Includes things like statements, assignments, breaks (jumps), and yields. // The following three arrays are correlated by their index. This approach is used over // allocating objects to store the same information to avoid GC overhead. // var operations; // The operation to perform. var operationArguments; // The arguments to the operation. var operationLocations; // The source map location for the operation. var state; // The name of the state object used by the generator at runtime. // The following variables store information used by the `build` function: // var blockIndex = 0; // The index of the current block. var labelNumber = 0; // The current label number. var labelNumbers; var lastOperationWasAbrupt; // Indicates whether the last operation was abrupt (break/continue). var lastOperationWasCompletion; // Indicates whether the last operation was a completion (return/throw). var clauses; // The case clauses generated for labels. var statements; // The statements for the current label. var exceptionBlockStack; // A stack of containing exception blocks. var currentExceptionBlock; // The current exception block. var withBlockStack; // A stack containing `with` blocks. return ts.chainBundle(context, transformSourceFile); function transformSourceFile(node) { if (node.isDeclarationFile || (node.transformFlags & 2048 /* TransformFlags.ContainsGenerator */) === 0) { return node; } var visited = ts.visitEachChild(node, visitor, context); ts.addEmitHelpers(visited, context.readEmitHelpers()); return visited; } /** * Visits a node. * * @param node The node to visit. */ function visitor(node) { var transformFlags = node.transformFlags; if (inStatementContainingYield) { return visitJavaScriptInStatementContainingYield(node); } else if (inGeneratorFunctionBody) { return visitJavaScriptInGeneratorFunctionBody(node); } else if (ts.isFunctionLikeDeclaration(node) && node.asteriskToken) { return visitGenerator(node); } else if (transformFlags & 2048 /* TransformFlags.ContainsGenerator */) { return ts.visitEachChild(node, visitor, context); } else { return node; } } /** * Visits a node that is contained within a statement that contains yield. * * @param node The node to visit. */ function visitJavaScriptInStatementContainingYield(node) { switch (node.kind) { case 240 /* SyntaxKind.DoStatement */: return visitDoStatement(node); case 241 /* SyntaxKind.WhileStatement */: return visitWhileStatement(node); case 249 /* SyntaxKind.SwitchStatement */: return visitSwitchStatement(node); case 250 /* SyntaxKind.LabeledStatement */: return visitLabeledStatement(node); default: return visitJavaScriptInGeneratorFunctionBody(node); } } /** * Visits a node that is contained within a generator function. * * @param node The node to visit. */ function visitJavaScriptInGeneratorFunctionBody(node) { switch (node.kind) { case 256 /* SyntaxKind.FunctionDeclaration */: return visitFunctionDeclaration(node); case 213 /* SyntaxKind.FunctionExpression */: return visitFunctionExpression(node); case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: return visitAccessorDeclaration(node); case 237 /* SyntaxKind.VariableStatement */: return visitVariableStatement(node); case 242 /* SyntaxKind.ForStatement */: return visitForStatement(node); case 243 /* SyntaxKind.ForInStatement */: return visitForInStatement(node); case 246 /* SyntaxKind.BreakStatement */: return visitBreakStatement(node); case 245 /* SyntaxKind.ContinueStatement */: return visitContinueStatement(node); case 247 /* SyntaxKind.ReturnStatement */: return visitReturnStatement(node); default: if (node.transformFlags & 524288 /* TransformFlags.ContainsYield */) { return visitJavaScriptContainingYield(node); } else if (node.transformFlags & (2048 /* TransformFlags.ContainsGenerator */ | 2097152 /* TransformFlags.ContainsHoistedDeclarationOrCompletion */)) { return ts.visitEachChild(node, visitor, context); } else { return node; } } } /** * Visits a node that contains a YieldExpression. * * @param node The node to visit. */ function visitJavaScriptContainingYield(node) { switch (node.kind) { case 221 /* SyntaxKind.BinaryExpression */: return visitBinaryExpression(node); case 351 /* SyntaxKind.CommaListExpression */: return visitCommaListExpression(node); case 222 /* SyntaxKind.ConditionalExpression */: return visitConditionalExpression(node); case 224 /* SyntaxKind.YieldExpression */: return visitYieldExpression(node); case 204 /* SyntaxKind.ArrayLiteralExpression */: return visitArrayLiteralExpression(node); case 205 /* SyntaxKind.ObjectLiteralExpression */: return visitObjectLiteralExpression(node); case 207 /* SyntaxKind.ElementAccessExpression */: return visitElementAccessExpression(node); case 208 /* SyntaxKind.CallExpression */: return visitCallExpression(node); case 209 /* SyntaxKind.NewExpression */: return visitNewExpression(node); default: return ts.visitEachChild(node, visitor, context); } } /** * Visits a generator function. * * @param node The node to visit. */ function visitGenerator(node) { switch (node.kind) { case 256 /* SyntaxKind.FunctionDeclaration */: return visitFunctionDeclaration(node); case 213 /* SyntaxKind.FunctionExpression */: return visitFunctionExpression(node); default: return ts.Debug.failBadSyntaxKind(node); } } /** * Visits a function declaration. * * This will be called when one of the following conditions are met: * - The function declaration is a generator function. * - The function declaration is contained within the body of a generator function. * * @param node The node to visit. */ function visitFunctionDeclaration(node) { // Currently, we only support generators that were originally async functions. if (node.asteriskToken) { node = ts.setOriginalNode(ts.setTextRange(factory.createFunctionDeclaration( /*decorators*/ undefined, node.modifiers, /*asteriskToken*/ undefined, node.name, /*typeParameters*/ undefined, ts.visitParameterList(node.parameters, visitor, context), /*type*/ undefined, transformGeneratorFunctionBody(node.body)), /*location*/ node), node); } else { var savedInGeneratorFunctionBody = inGeneratorFunctionBody; var savedInStatementContainingYield = inStatementContainingYield; inGeneratorFunctionBody = false; inStatementContainingYield = false; node = ts.visitEachChild(node, visitor, context); inGeneratorFunctionBody = savedInGeneratorFunctionBody; inStatementContainingYield = savedInStatementContainingYield; } if (inGeneratorFunctionBody) { // Function declarations in a generator function body are hoisted // to the top of the lexical scope and elided from the current statement. hoistFunctionDeclaration(node); return undefined; } else { return node; } } /** * Visits a function expression. * * This will be called when one of the following conditions are met: * - The function expression is a generator function. * - The function expression is contained within the body of a generator function. * * @param node The node to visit. */ function visitFunctionExpression(node) { // Currently, we only support generators that were originally async functions. if (node.asteriskToken) { node = ts.setOriginalNode(ts.setTextRange(factory.createFunctionExpression( /*modifiers*/ undefined, /*asteriskToken*/ undefined, node.name, /*typeParameters*/ undefined, ts.visitParameterList(node.parameters, visitor, context), /*type*/ undefined, transformGeneratorFunctionBody(node.body)), /*location*/ node), node); } else { var savedInGeneratorFunctionBody = inGeneratorFunctionBody; var savedInStatementContainingYield = inStatementContainingYield; inGeneratorFunctionBody = false; inStatementContainingYield = false; node = ts.visitEachChild(node, visitor, context); inGeneratorFunctionBody = savedInGeneratorFunctionBody; inStatementContainingYield = savedInStatementContainingYield; } return node; } /** * Visits a get or set accessor declaration. * * This will be called when one of the following conditions are met: * - The accessor is contained within the body of a generator function. * * @param node The node to visit. */ function visitAccessorDeclaration(node) { var savedInGeneratorFunctionBody = inGeneratorFunctionBody; var savedInStatementContainingYield = inStatementContainingYield; inGeneratorFunctionBody = false; inStatementContainingYield = false; node = ts.visitEachChild(node, visitor, context); inGeneratorFunctionBody = savedInGeneratorFunctionBody; inStatementContainingYield = savedInStatementContainingYield; return node; } /** * Transforms the body of a generator function declaration. * * @param node The function body to transform. */ function transformGeneratorFunctionBody(body) { // Save existing generator state var statements = []; var savedInGeneratorFunctionBody = inGeneratorFunctionBody; var savedInStatementContainingYield = inStatementContainingYield; var savedBlocks = blocks; var savedBlockOffsets = blockOffsets; var savedBlockActions = blockActions; var savedBlockStack = blockStack; var savedLabelOffsets = labelOffsets; var savedLabelExpressions = labelExpressions; var savedNextLabelId = nextLabelId; var savedOperations = operations; var savedOperationArguments = operationArguments; var savedOperationLocations = operationLocations; var savedState = state; // Initialize generator state inGeneratorFunctionBody = true; inStatementContainingYield = false; blocks = undefined; blockOffsets = undefined; blockActions = undefined; blockStack = undefined; labelOffsets = undefined; labelExpressions = undefined; nextLabelId = 1; operations = undefined; operationArguments = undefined; operationLocations = undefined; state = factory.createTempVariable(/*recordTempVariable*/ undefined); // Build the generator resumeLexicalEnvironment(); var statementOffset = factory.copyPrologue(body.statements, statements, /*ensureUseStrict*/ false, visitor); transformAndEmitStatements(body.statements, statementOffset); var buildResult = build(); ts.insertStatementsAfterStandardPrologue(statements, endLexicalEnvironment()); statements.push(factory.createReturnStatement(buildResult)); // Restore previous generator state inGeneratorFunctionBody = savedInGeneratorFunctionBody; inStatementContainingYield = savedInStatementContainingYield; blocks = savedBlocks; blockOffsets = savedBlockOffsets; blockActions = savedBlockActions; blockStack = savedBlockStack; labelOffsets = savedLabelOffsets; labelExpressions = savedLabelExpressions; nextLabelId = savedNextLabelId; operations = savedOperations; operationArguments = savedOperationArguments; operationLocations = savedOperationLocations; state = savedState; return ts.setTextRange(factory.createBlock(statements, body.multiLine), body); } /** * Visits a variable statement. * * This will be called when one of the following conditions are met: * - The variable statement is contained within the body of a generator function. * * @param node The node to visit. */ function visitVariableStatement(node) { if (node.transformFlags & 524288 /* TransformFlags.ContainsYield */) { transformAndEmitVariableDeclarationList(node.declarationList); return undefined; } else { // Do not hoist custom prologues. if (ts.getEmitFlags(node) & 1048576 /* EmitFlags.CustomPrologue */) { return node; } for (var _i = 0, _a = node.declarationList.declarations; _i < _a.length; _i++) { var variable = _a[_i]; hoistVariableDeclaration(variable.name); } var variables = ts.getInitializedVariables(node.declarationList); if (variables.length === 0) { return undefined; } return ts.setSourceMapRange(factory.createExpressionStatement(factory.inlineExpressions(ts.map(variables, transformInitializedVariable))), node); } } /** * Visits a binary expression. * * This will be called when one of the following conditions are met: * - The node contains a YieldExpression. * * @param node The node to visit. */ function visitBinaryExpression(node) { var assoc = ts.getExpressionAssociativity(node); switch (assoc) { case 0 /* Associativity.Left */: return visitLeftAssociativeBinaryExpression(node); case 1 /* Associativity.Right */: return visitRightAssociativeBinaryExpression(node); default: return ts.Debug.assertNever(assoc); } } /** * Visits a right-associative binary expression containing `yield`. * * @param node The node to visit. */ function visitRightAssociativeBinaryExpression(node) { var left = node.left, right = node.right; if (containsYield(right)) { var target = void 0; switch (left.kind) { case 206 /* SyntaxKind.PropertyAccessExpression */: // [source] // a.b = yield; // // [intermediate] // .local _a // _a = a; // .yield resumeLabel // .mark resumeLabel // _a.b = %sent%; target = factory.updatePropertyAccessExpression(left, cacheExpression(ts.visitNode(left.expression, visitor, ts.isLeftHandSideExpression)), left.name); break; case 207 /* SyntaxKind.ElementAccessExpression */: // [source] // a[b] = yield; // // [intermediate] // .local _a, _b // _a = a; // _b = b; // .yield resumeLabel // .mark resumeLabel // _a[_b] = %sent%; target = factory.updateElementAccessExpression(left, cacheExpression(ts.visitNode(left.expression, visitor, ts.isLeftHandSideExpression)), cacheExpression(ts.visitNode(left.argumentExpression, visitor, ts.isExpression))); break; default: target = ts.visitNode(left, visitor, ts.isExpression); break; } var operator = node.operatorToken.kind; if (ts.isCompoundAssignment(operator)) { return ts.setTextRange(factory.createAssignment(target, ts.setTextRange(factory.createBinaryExpression(cacheExpression(target), ts.getNonAssignmentOperatorForCompoundAssignment(operator), ts.visitNode(right, visitor, ts.isExpression)), node)), node); } else { return factory.updateBinaryExpression(node, target, node.operatorToken, ts.visitNode(right, visitor, ts.isExpression)); } } return ts.visitEachChild(node, visitor, context); } function visitLeftAssociativeBinaryExpression(node) { if (containsYield(node.right)) { if (ts.isLogicalOperator(node.operatorToken.kind)) { return visitLogicalBinaryExpression(node); } else if (node.operatorToken.kind === 27 /* SyntaxKind.CommaToken */) { return visitCommaExpression(node); } // [source] // a() + (yield) + c() // // [intermediate] // .local _a // _a = a(); // .yield resumeLabel // _a + %sent% + c() return factory.updateBinaryExpression(node, cacheExpression(ts.visitNode(node.left, visitor, ts.isExpression)), node.operatorToken, ts.visitNode(node.right, visitor, ts.isExpression)); } return ts.visitEachChild(node, visitor, context); } /** * Visits a comma expression containing `yield`. * * @param node The node to visit. */ function visitCommaExpression(node) { // [source] // x = a(), yield, b(); // // [intermediate] // a(); // .yield resumeLabel // .mark resumeLabel // x = %sent%, b(); var pendingExpressions = []; visit(node.left); visit(node.right); return factory.inlineExpressions(pendingExpressions); function visit(node) { if (ts.isBinaryExpression(node) && node.operatorToken.kind === 27 /* SyntaxKind.CommaToken */) { visit(node.left); visit(node.right); } else { if (containsYield(node) && pendingExpressions.length > 0) { emitWorker(1 /* OpCode.Statement */, [factory.createExpressionStatement(factory.inlineExpressions(pendingExpressions))]); pendingExpressions = []; } pendingExpressions.push(ts.visitNode(node, visitor, ts.isExpression)); } } } /** * Visits a comma-list expression. * * @param node The node to visit. */ function visitCommaListExpression(node) { // flattened version of `visitCommaExpression` var pendingExpressions = []; for (var _i = 0, _a = node.elements; _i < _a.length; _i++) { var elem = _a[_i]; if (ts.isBinaryExpression(elem) && elem.operatorToken.kind === 27 /* SyntaxKind.CommaToken */) { pendingExpressions.push(visitCommaExpression(elem)); } else { if (containsYield(elem) && pendingExpressions.length > 0) { emitWorker(1 /* OpCode.Statement */, [factory.createExpressionStatement(factory.inlineExpressions(pendingExpressions))]); pendingExpressions = []; } pendingExpressions.push(ts.visitNode(elem, visitor, ts.isExpression)); } } return factory.inlineExpressions(pendingExpressions); } /** * Visits a logical binary expression containing `yield`. * * @param node A node to visit. */ function visitLogicalBinaryExpression(node) { // Logical binary expressions (`&&` and `||`) are shortcutting expressions and need // to be transformed as such: // // [source] // x = a() && yield; // // [intermediate] // .local _a // _a = a(); // .brfalse resultLabel, (_a) // .yield resumeLabel // .mark resumeLabel // _a = %sent%; // .mark resultLabel // x = _a; // // [source] // x = a() || yield; // // [intermediate] // .local _a // _a = a(); // .brtrue resultLabel, (_a) // .yield resumeLabel // .mark resumeLabel // _a = %sent%; // .mark resultLabel // x = _a; var resultLabel = defineLabel(); var resultLocal = declareLocal(); emitAssignment(resultLocal, ts.visitNode(node.left, visitor, ts.isExpression), /*location*/ node.left); if (node.operatorToken.kind === 55 /* SyntaxKind.AmpersandAmpersandToken */) { // Logical `&&` shortcuts when the left-hand operand is falsey. emitBreakWhenFalse(resultLabel, resultLocal, /*location*/ node.left); } else { // Logical `||` shortcuts when the left-hand operand is truthy. emitBreakWhenTrue(resultLabel, resultLocal, /*location*/ node.left); } emitAssignment(resultLocal, ts.visitNode(node.right, visitor, ts.isExpression), /*location*/ node.right); markLabel(resultLabel); return resultLocal; } /** * Visits a conditional expression containing `yield`. * * @param node The node to visit. */ function visitConditionalExpression(node) { // [source] // x = a() ? yield : b(); // // [intermediate] // .local _a // .brfalse whenFalseLabel, (a()) // .yield resumeLabel // .mark resumeLabel // _a = %sent%; // .br resultLabel // .mark whenFalseLabel // _a = b(); // .mark resultLabel // x = _a; // We only need to perform a specific transformation if a `yield` expression exists // in either the `whenTrue` or `whenFalse` branches. // A `yield` in the condition will be handled by the normal visitor. if (containsYield(node.whenTrue) || containsYield(node.whenFalse)) { var whenFalseLabel = defineLabel(); var resultLabel = defineLabel(); var resultLocal = declareLocal(); emitBreakWhenFalse(whenFalseLabel, ts.visitNode(node.condition, visitor, ts.isExpression), /*location*/ node.condition); emitAssignment(resultLocal, ts.visitNode(node.whenTrue, visitor, ts.isExpression), /*location*/ node.whenTrue); emitBreak(resultLabel); markLabel(whenFalseLabel); emitAssignment(resultLocal, ts.visitNode(node.whenFalse, visitor, ts.isExpression), /*location*/ node.whenFalse); markLabel(resultLabel); return resultLocal; } return ts.visitEachChild(node, visitor, context); } /** * Visits a `yield` expression. * * @param node The node to visit. */ function visitYieldExpression(node) { // [source] // x = yield a(); // // [intermediate] // .yield resumeLabel, (a()) // .mark resumeLabel // x = %sent%; var resumeLabel = defineLabel(); var expression = ts.visitNode(node.expression, visitor, ts.isExpression); if (node.asteriskToken) { // NOTE: `expression` must be defined for `yield*`. var iterator = (ts.getEmitFlags(node.expression) & 8388608 /* EmitFlags.Iterator */) === 0 ? ts.setTextRange(emitHelpers().createValuesHelper(expression), node) : expression; emitYieldStar(iterator, /*location*/ node); } else { emitYield(expression, /*location*/ node); } markLabel(resumeLabel); return createGeneratorResume(/*location*/ node); } /** * Visits an ArrayLiteralExpression that contains a YieldExpression. * * @param node The node to visit. */ function visitArrayLiteralExpression(node) { return visitElements(node.elements, /*leadingElement*/ undefined, /*location*/ undefined, node.multiLine); } /** * Visits an array of expressions containing one or more YieldExpression nodes * and returns an expression for the resulting value. * * @param elements The elements to visit. * @param multiLine Whether array literals created should be emitted on multiple lines. */ function visitElements(elements, leadingElement, location, multiLine) { // [source] // ar = [1, yield, 2]; // // [intermediate] // .local _a // _a = [1]; // .yield resumeLabel // .mark resumeLabel // ar = _a.concat([%sent%, 2]); var numInitialElements = countInitialNodesWithoutYield(elements); var temp; if (numInitialElements > 0) { temp = declareLocal(); var initialElements = ts.visitNodes(elements, visitor, ts.isExpression, 0, numInitialElements); emitAssignment(temp, factory.createArrayLiteralExpression(leadingElement ? __spreadArray([leadingElement], initialElements, true) : initialElements)); leadingElement = undefined; } var expressions = ts.reduceLeft(elements, reduceElement, [], numInitialElements); return temp ? factory.createArrayConcatCall(temp, [factory.createArrayLiteralExpression(expressions, multiLine)]) : ts.setTextRange(factory.createArrayLiteralExpression(leadingElement ? __spreadArray([leadingElement], expressions, true) : expressions, multiLine), location); function reduceElement(expressions, element) { if (containsYield(element) && expressions.length > 0) { var hasAssignedTemp = temp !== undefined; if (!temp) { temp = declareLocal(); } emitAssignment(temp, hasAssignedTemp ? factory.createArrayConcatCall(temp, [factory.createArrayLiteralExpression(expressions, multiLine)]) : factory.createArrayLiteralExpression(leadingElement ? __spreadArray([leadingElement], expressions, true) : expressions, multiLine)); leadingElement = undefined; expressions = []; } expressions.push(ts.visitNode(element, visitor, ts.isExpression)); return expressions; } } function visitObjectLiteralExpression(node) { // [source] // o = { // a: 1, // b: yield, // c: 2 // }; // // [intermediate] // .local _a // _a = { // a: 1 // }; // .yield resumeLabel // .mark resumeLabel // o = (_a.b = %sent%, // _a.c = 2, // _a); var properties = node.properties; var multiLine = node.multiLine; var numInitialProperties = countInitialNodesWithoutYield(properties); var temp = declareLocal(); emitAssignment(temp, factory.createObjectLiteralExpression(ts.visitNodes(properties, visitor, ts.isObjectLiteralElementLike, 0, numInitialProperties), multiLine)); var expressions = ts.reduceLeft(properties, reduceProperty, [], numInitialProperties); // TODO(rbuckton): Does this need to be parented? expressions.push(multiLine ? ts.startOnNewLine(ts.setParent(ts.setTextRange(factory.cloneNode(temp), temp), temp.parent)) : temp); return factory.inlineExpressions(expressions); function reduceProperty(expressions, property) { if (containsYield(property) && expressions.length > 0) { emitStatement(factory.createExpressionStatement(factory.inlineExpressions(expressions))); expressions = []; } var expression = ts.createExpressionForObjectLiteralElementLike(factory, node, property, temp); var visited = ts.visitNode(expression, visitor, ts.isExpression); if (visited) { if (multiLine) { ts.startOnNewLine(visited); } expressions.push(visited); } return expressions; } } /** * Visits an ElementAccessExpression that contains a YieldExpression. * * @param node The node to visit. */ function visitElementAccessExpression(node) { if (containsYield(node.argumentExpression)) { // [source] // a = x[yield]; // // [intermediate] // .local _a // _a = x; // .yield resumeLabel // .mark resumeLabel // a = _a[%sent%] return factory.updateElementAccessExpression(node, cacheExpression(ts.visitNode(node.expression, visitor, ts.isLeftHandSideExpression)), ts.visitNode(node.argumentExpression, visitor, ts.isExpression)); } return ts.visitEachChild(node, visitor, context); } function visitCallExpression(node) { if (!ts.isImportCall(node) && ts.forEach(node.arguments, containsYield)) { // [source] // a.b(1, yield, 2); // // [intermediate] // .local _a, _b, _c // _b = (_a = a).b; // _c = [1]; // .yield resumeLabel // .mark resumeLabel // _b.apply(_a, _c.concat([%sent%, 2])); var _a = factory.createCallBinding(node.expression, hoistVariableDeclaration, languageVersion, /*cacheIdentifiers*/ true), target = _a.target, thisArg = _a.thisArg; return ts.setOriginalNode(ts.setTextRange(factory.createFunctionApplyCall(cacheExpression(ts.visitNode(target, visitor, ts.isLeftHandSideExpression)), thisArg, visitElements(node.arguments)), node), node); } return ts.visitEachChild(node, visitor, context); } function visitNewExpression(node) { if (ts.forEach(node.arguments, containsYield)) { // [source] // new a.b(1, yield, 2); // // [intermediate] // .local _a, _b, _c // _b = (_a = a.b).bind; // _c = [1]; // .yield resumeLabel // .mark resumeLabel // new (_b.apply(_a, _c.concat([%sent%, 2]))); var _a = factory.createCallBinding(factory.createPropertyAccessExpression(node.expression, "bind"), hoistVariableDeclaration), target = _a.target, thisArg = _a.thisArg; return ts.setOriginalNode(ts.setTextRange(factory.createNewExpression(factory.createFunctionApplyCall(cacheExpression(ts.visitNode(target, visitor, ts.isExpression)), thisArg, visitElements(node.arguments, /*leadingElement*/ factory.createVoidZero())), /*typeArguments*/ undefined, []), node), node); } return ts.visitEachChild(node, visitor, context); } function transformAndEmitStatements(statements, start) { if (start === void 0) { start = 0; } var numStatements = statements.length; for (var i = start; i < numStatements; i++) { transformAndEmitStatement(statements[i]); } } function transformAndEmitEmbeddedStatement(node) { if (ts.isBlock(node)) { transformAndEmitStatements(node.statements); } else { transformAndEmitStatement(node); } } function transformAndEmitStatement(node) { var savedInStatementContainingYield = inStatementContainingYield; if (!inStatementContainingYield) { inStatementContainingYield = containsYield(node); } transformAndEmitStatementWorker(node); inStatementContainingYield = savedInStatementContainingYield; } function transformAndEmitStatementWorker(node) { switch (node.kind) { case 235 /* SyntaxKind.Block */: return transformAndEmitBlock(node); case 238 /* SyntaxKind.ExpressionStatement */: return transformAndEmitExpressionStatement(node); case 239 /* SyntaxKind.IfStatement */: return transformAndEmitIfStatement(node); case 240 /* SyntaxKind.DoStatement */: return transformAndEmitDoStatement(node); case 241 /* SyntaxKind.WhileStatement */: return transformAndEmitWhileStatement(node); case 242 /* SyntaxKind.ForStatement */: return transformAndEmitForStatement(node); case 243 /* SyntaxKind.ForInStatement */: return transformAndEmitForInStatement(node); case 245 /* SyntaxKind.ContinueStatement */: return transformAndEmitContinueStatement(node); case 246 /* SyntaxKind.BreakStatement */: return transformAndEmitBreakStatement(node); case 247 /* SyntaxKind.ReturnStatement */: return transformAndEmitReturnStatement(node); case 248 /* SyntaxKind.WithStatement */: return transformAndEmitWithStatement(node); case 249 /* SyntaxKind.SwitchStatement */: return transformAndEmitSwitchStatement(node); case 250 /* SyntaxKind.LabeledStatement */: return transformAndEmitLabeledStatement(node); case 251 /* SyntaxKind.ThrowStatement */: return transformAndEmitThrowStatement(node); case 252 /* SyntaxKind.TryStatement */: return transformAndEmitTryStatement(node); default: return emitStatement(ts.visitNode(node, visitor, ts.isStatement)); } } function transformAndEmitBlock(node) { if (containsYield(node)) { transformAndEmitStatements(node.statements); } else { emitStatement(ts.visitNode(node, visitor, ts.isStatement)); } } function transformAndEmitExpressionStatement(node) { emitStatement(ts.visitNode(node, visitor, ts.isStatement)); } function transformAndEmitVariableDeclarationList(node) { for (var _i = 0, _a = node.declarations; _i < _a.length; _i++) { var variable = _a[_i]; var name = factory.cloneNode(variable.name); ts.setCommentRange(name, variable.name); hoistVariableDeclaration(name); } var variables = ts.getInitializedVariables(node); var numVariables = variables.length; var variablesWritten = 0; var pendingExpressions = []; while (variablesWritten < numVariables) { for (var i = variablesWritten; i < numVariables; i++) { var variable = variables[i]; if (containsYield(variable.initializer) && pendingExpressions.length > 0) { break; } pendingExpressions.push(transformInitializedVariable(variable)); } if (pendingExpressions.length) { emitStatement(factory.createExpressionStatement(factory.inlineExpressions(pendingExpressions))); variablesWritten += pendingExpressions.length; pendingExpressions = []; } } return undefined; } function transformInitializedVariable(node) { return ts.setSourceMapRange(factory.createAssignment(ts.setSourceMapRange(factory.cloneNode(node.name), node.name), ts.visitNode(node.initializer, visitor, ts.isExpression)), node); } function transformAndEmitIfStatement(node) { if (containsYield(node)) { // [source] // if (x) // /*thenStatement*/ // else // /*elseStatement*/ // // [intermediate] // .brfalse elseLabel, (x) // /*thenStatement*/ // .br endLabel // .mark elseLabel // /*elseStatement*/ // .mark endLabel if (containsYield(node.thenStatement) || containsYield(node.elseStatement)) { var endLabel = defineLabel(); var elseLabel = node.elseStatement ? defineLabel() : undefined; emitBreakWhenFalse(node.elseStatement ? elseLabel : endLabel, ts.visitNode(node.expression, visitor, ts.isExpression), /*location*/ node.expression); transformAndEmitEmbeddedStatement(node.thenStatement); if (node.elseStatement) { emitBreak(endLabel); markLabel(elseLabel); transformAndEmitEmbeddedStatement(node.elseStatement); } markLabel(endLabel); } else { emitStatement(ts.visitNode(node, visitor, ts.isStatement)); } } else { emitStatement(ts.visitNode(node, visitor, ts.isStatement)); } } function transformAndEmitDoStatement(node) { if (containsYield(node)) { // [source] // do { // /*body*/ // } // while (i < 10); // // [intermediate] // .loop conditionLabel, endLabel // .mark loopLabel // /*body*/ // .mark conditionLabel // .brtrue loopLabel, (i < 10) // .endloop // .mark endLabel var conditionLabel = defineLabel(); var loopLabel = defineLabel(); beginLoopBlock(/*continueLabel*/ conditionLabel); markLabel(loopLabel); transformAndEmitEmbeddedStatement(node.statement); markLabel(conditionLabel); emitBreakWhenTrue(loopLabel, ts.visitNode(node.expression, visitor, ts.isExpression)); endLoopBlock(); } else { emitStatement(ts.visitNode(node, visitor, ts.isStatement)); } } function visitDoStatement(node) { if (inStatementContainingYield) { beginScriptLoopBlock(); node = ts.visitEachChild(node, visitor, context); endLoopBlock(); return node; } else { return ts.visitEachChild(node, visitor, context); } } function transformAndEmitWhileStatement(node) { if (containsYield(node)) { // [source] // while (i < 10) { // /*body*/ // } // // [intermediate] // .loop loopLabel, endLabel // .mark loopLabel // .brfalse endLabel, (i < 10) // /*body*/ // .br loopLabel // .endloop // .mark endLabel var loopLabel = defineLabel(); var endLabel = beginLoopBlock(loopLabel); markLabel(loopLabel); emitBreakWhenFalse(endLabel, ts.visitNode(node.expression, visitor, ts.isExpression)); transformAndEmitEmbeddedStatement(node.statement); emitBreak(loopLabel); endLoopBlock(); } else { emitStatement(ts.visitNode(node, visitor, ts.isStatement)); } } function visitWhileStatement(node) { if (inStatementContainingYield) { beginScriptLoopBlock(); node = ts.visitEachChild(node, visitor, context); endLoopBlock(); return node; } else { return ts.visitEachChild(node, visitor, context); } } function transformAndEmitForStatement(node) { if (containsYield(node)) { // [source] // for (var i = 0; i < 10; i++) { // /*body*/ // } // // [intermediate] // .local i // i = 0; // .loop incrementLabel, endLoopLabel // .mark conditionLabel // .brfalse endLoopLabel, (i < 10) // /*body*/ // .mark incrementLabel // i++; // .br conditionLabel // .endloop // .mark endLoopLabel var conditionLabel = defineLabel(); var incrementLabel = defineLabel(); var endLabel = beginLoopBlock(incrementLabel); if (node.initializer) { var initializer = node.initializer; if (ts.isVariableDeclarationList(initializer)) { transformAndEmitVariableDeclarationList(initializer); } else { emitStatement(ts.setTextRange(factory.createExpressionStatement(ts.visitNode(initializer, visitor, ts.isExpression)), initializer)); } } markLabel(conditionLabel); if (node.condition) { emitBreakWhenFalse(endLabel, ts.visitNode(node.condition, visitor, ts.isExpression)); } transformAndEmitEmbeddedStatement(node.statement); markLabel(incrementLabel); if (node.incrementor) { emitStatement(ts.setTextRange(factory.createExpressionStatement(ts.visitNode(node.incrementor, visitor, ts.isExpression)), node.incrementor)); } emitBreak(conditionLabel); endLoopBlock(); } else { emitStatement(ts.visitNode(node, visitor, ts.isStatement)); } } function visitForStatement(node) { if (inStatementContainingYield) { beginScriptLoopBlock(); } var initializer = node.initializer; if (initializer && ts.isVariableDeclarationList(initializer)) { for (var _i = 0, _a = initializer.declarations; _i < _a.length; _i++) { var variable = _a[_i]; hoistVariableDeclaration(variable.name); } var variables = ts.getInitializedVariables(initializer); node = factory.updateForStatement(node, variables.length > 0 ? factory.inlineExpressions(ts.map(variables, transformInitializedVariable)) : undefined, ts.visitNode(node.condition, visitor, ts.isExpression), ts.visitNode(node.incrementor, visitor, ts.isExpression), ts.visitIterationBody(node.statement, visitor, context)); } else { node = ts.visitEachChild(node, visitor, context); } if (inStatementContainingYield) { endLoopBlock(); } return node; } function transformAndEmitForInStatement(node) { // TODO(rbuckton): Source map locations if (containsYield(node)) { // [source] // for (var p in o) { // /*body*/ // } // // [intermediate] // .local _a, _b, _i // _a = []; // for (_b in o) _a.push(_b); // _i = 0; // .loop incrementLabel, endLoopLabel // .mark conditionLabel // .brfalse endLoopLabel, (_i < _a.length) // p = _a[_i]; // /*body*/ // .mark incrementLabel // _b++; // .br conditionLabel // .endloop // .mark endLoopLabel var keysArray = declareLocal(); // _a var key = declareLocal(); // _b var keysIndex = factory.createLoopVariable(); // _i var initializer = node.initializer; hoistVariableDeclaration(keysIndex); emitAssignment(keysArray, factory.createArrayLiteralExpression()); emitStatement(factory.createForInStatement(key, ts.visitNode(node.expression, visitor, ts.isExpression), factory.createExpressionStatement(factory.createCallExpression(factory.createPropertyAccessExpression(keysArray, "push"), /*typeArguments*/ undefined, [key])))); emitAssignment(keysIndex, factory.createNumericLiteral(0)); var conditionLabel = defineLabel(); var incrementLabel = defineLabel(); var endLabel = beginLoopBlock(incrementLabel); markLabel(conditionLabel); emitBreakWhenFalse(endLabel, factory.createLessThan(keysIndex, factory.createPropertyAccessExpression(keysArray, "length"))); var variable = void 0; if (ts.isVariableDeclarationList(initializer)) { for (var _i = 0, _a = initializer.declarations; _i < _a.length; _i++) { var variable_1 = _a[_i]; hoistVariableDeclaration(variable_1.name); } variable = factory.cloneNode(initializer.declarations[0].name); } else { variable = ts.visitNode(initializer, visitor, ts.isExpression); ts.Debug.assert(ts.isLeftHandSideExpression(variable)); } emitAssignment(variable, factory.createElementAccessExpression(keysArray, keysIndex)); transformAndEmitEmbeddedStatement(node.statement); markLabel(incrementLabel); emitStatement(factory.createExpressionStatement(factory.createPostfixIncrement(keysIndex))); emitBreak(conditionLabel); endLoopBlock(); } else { emitStatement(ts.visitNode(node, visitor, ts.isStatement)); } } function visitForInStatement(node) { // [source] // for (var x in a) { // /*body*/ // } // // [intermediate] // .local x // .loop // for (x in a) { // /*body*/ // } // .endloop if (inStatementContainingYield) { beginScriptLoopBlock(); } var initializer = node.initializer; if (ts.isVariableDeclarationList(initializer)) { for (var _i = 0, _a = initializer.declarations; _i < _a.length; _i++) { var variable = _a[_i]; hoistVariableDeclaration(variable.name); } node = factory.updateForInStatement(node, initializer.declarations[0].name, ts.visitNode(node.expression, visitor, ts.isExpression), ts.visitNode(node.statement, visitor, ts.isStatement, factory.liftToBlock)); } else { node = ts.visitEachChild(node, visitor, context); } if (inStatementContainingYield) { endLoopBlock(); } return node; } function transformAndEmitContinueStatement(node) { var label = findContinueTarget(node.label ? ts.idText(node.label) : undefined); if (label > 0) { emitBreak(label, /*location*/ node); } else { // invalid continue without a containing loop. Leave the node as is, per #17875. emitStatement(node); } } function visitContinueStatement(node) { if (inStatementContainingYield) { var label = findContinueTarget(node.label && ts.idText(node.label)); if (label > 0) { return createInlineBreak(label, /*location*/ node); } } return ts.visitEachChild(node, visitor, context); } function transformAndEmitBreakStatement(node) { var label = findBreakTarget(node.label ? ts.idText(node.label) : undefined); if (label > 0) { emitBreak(label, /*location*/ node); } else { // invalid break without a containing loop, switch, or labeled statement. Leave the node as is, per #17875. emitStatement(node); } } function visitBreakStatement(node) { if (inStatementContainingYield) { var label = findBreakTarget(node.label && ts.idText(node.label)); if (label > 0) { return createInlineBreak(label, /*location*/ node); } } return ts.visitEachChild(node, visitor, context); } function transformAndEmitReturnStatement(node) { emitReturn(ts.visitNode(node.expression, visitor, ts.isExpression), /*location*/ node); } function visitReturnStatement(node) { return createInlineReturn(ts.visitNode(node.expression, visitor, ts.isExpression), /*location*/ node); } function transformAndEmitWithStatement(node) { if (containsYield(node)) { // [source] // with (x) { // /*body*/ // } // // [intermediate] // .with (x) // /*body*/ // .endwith beginWithBlock(cacheExpression(ts.visitNode(node.expression, visitor, ts.isExpression))); transformAndEmitEmbeddedStatement(node.statement); endWithBlock(); } else { emitStatement(ts.visitNode(node, visitor, ts.isStatement)); } } function transformAndEmitSwitchStatement(node) { if (containsYield(node.caseBlock)) { // [source] // switch (x) { // case a: // /*caseStatements*/ // case b: // /*caseStatements*/ // default: // /*defaultStatements*/ // } // // [intermediate] // .local _a // .switch endLabel // _a = x; // switch (_a) { // case a: // .br clauseLabels[0] // } // switch (_a) { // case b: // .br clauseLabels[1] // } // .br clauseLabels[2] // .mark clauseLabels[0] // /*caseStatements*/ // .mark clauseLabels[1] // /*caseStatements*/ // .mark clauseLabels[2] // /*caseStatements*/ // .endswitch // .mark endLabel var caseBlock = node.caseBlock; var numClauses = caseBlock.clauses.length; var endLabel = beginSwitchBlock(); var expression = cacheExpression(ts.visitNode(node.expression, visitor, ts.isExpression)); // Create labels for each clause and find the index of the first default clause. var clauseLabels = []; var defaultClauseIndex = -1; for (var i = 0; i < numClauses; i++) { var clause = caseBlock.clauses[i]; clauseLabels.push(defineLabel()); if (clause.kind === 290 /* SyntaxKind.DefaultClause */ && defaultClauseIndex === -1) { defaultClauseIndex = i; } } // Emit switch statements for each run of case clauses either from the first case // clause or the next case clause with a `yield` in its expression, up to the next // case clause with a `yield` in its expression. var clausesWritten = 0; var pendingClauses = []; while (clausesWritten < numClauses) { var defaultClausesSkipped = 0; for (var i = clausesWritten; i < numClauses; i++) { var clause = caseBlock.clauses[i]; if (clause.kind === 289 /* SyntaxKind.CaseClause */) { if (containsYield(clause.expression) && pendingClauses.length > 0) { break; } pendingClauses.push(factory.createCaseClause(ts.visitNode(clause.expression, visitor, ts.isExpression), [ createInlineBreak(clauseLabels[i], /*location*/ clause.expression) ])); } else { defaultClausesSkipped++; } } if (pendingClauses.length) { emitStatement(factory.createSwitchStatement(expression, factory.createCaseBlock(pendingClauses))); clausesWritten += pendingClauses.length; pendingClauses = []; } if (defaultClausesSkipped > 0) { clausesWritten += defaultClausesSkipped; defaultClausesSkipped = 0; } } if (defaultClauseIndex >= 0) { emitBreak(clauseLabels[defaultClauseIndex]); } else { emitBreak(endLabel); } for (var i = 0; i < numClauses; i++) { markLabel(clauseLabels[i]); transformAndEmitStatements(caseBlock.clauses[i].statements); } endSwitchBlock(); } else { emitStatement(ts.visitNode(node, visitor, ts.isStatement)); } } function visitSwitchStatement(node) { if (inStatementContainingYield) { beginScriptSwitchBlock(); } node = ts.visitEachChild(node, visitor, context); if (inStatementContainingYield) { endSwitchBlock(); } return node; } function transformAndEmitLabeledStatement(node) { if (containsYield(node)) { // [source] // x: { // /*body*/ // } // // [intermediate] // .labeled "x", endLabel // /*body*/ // .endlabeled // .mark endLabel beginLabeledBlock(ts.idText(node.label)); transformAndEmitEmbeddedStatement(node.statement); endLabeledBlock(); } else { emitStatement(ts.visitNode(node, visitor, ts.isStatement)); } } function visitLabeledStatement(node) { if (inStatementContainingYield) { beginScriptLabeledBlock(ts.idText(node.label)); } node = ts.visitEachChild(node, visitor, context); if (inStatementContainingYield) { endLabeledBlock(); } return node; } function transformAndEmitThrowStatement(node) { var _a; // TODO(rbuckton): `expression` should be required on `throw`. emitThrow(ts.visitNode((_a = node.expression) !== null && _a !== void 0 ? _a : factory.createVoidZero(), visitor, ts.isExpression), /*location*/ node); } function transformAndEmitTryStatement(node) { if (containsYield(node)) { // [source] // try { // /*tryBlock*/ // } // catch (e) { // /*catchBlock*/ // } // finally { // /*finallyBlock*/ // } // // [intermediate] // .local _a // .try tryLabel, catchLabel, finallyLabel, endLabel // .mark tryLabel // .nop // /*tryBlock*/ // .br endLabel // .catch // .mark catchLabel // _a = %error%; // /*catchBlock*/ // .br endLabel // .finally // .mark finallyLabel // /*finallyBlock*/ // .endfinally // .endtry // .mark endLabel beginExceptionBlock(); transformAndEmitEmbeddedStatement(node.tryBlock); if (node.catchClause) { beginCatchBlock(node.catchClause.variableDeclaration); // TODO: GH#18217 transformAndEmitEmbeddedStatement(node.catchClause.block); } if (node.finallyBlock) { beginFinallyBlock(); transformAndEmitEmbeddedStatement(node.finallyBlock); } endExceptionBlock(); } else { emitStatement(ts.visitEachChild(node, visitor, context)); } } function containsYield(node) { return !!node && (node.transformFlags & 524288 /* TransformFlags.ContainsYield */) !== 0; } function countInitialNodesWithoutYield(nodes) { var numNodes = nodes.length; for (var i = 0; i < numNodes; i++) { if (containsYield(nodes[i])) { return i; } } return -1; } function onSubstituteNode(hint, node) { node = previousOnSubstituteNode(hint, node); if (hint === 1 /* EmitHint.Expression */) { return substituteExpression(node); } return node; } function substituteExpression(node) { if (ts.isIdentifier(node)) { return substituteExpressionIdentifier(node); } return node; } function substituteExpressionIdentifier(node) { if (!ts.isGeneratedIdentifier(node) && renamedCatchVariables && renamedCatchVariables.has(ts.idText(node))) { var original = ts.getOriginalNode(node); if (ts.isIdentifier(original) && original.parent) { var declaration = resolver.getReferencedValueDeclaration(original); if (declaration) { var name = renamedCatchVariableDeclarations[ts.getOriginalNodeId(declaration)]; if (name) { // TODO(rbuckton): Does this need to be parented? var clone_6 = ts.setParent(ts.setTextRange(factory.cloneNode(name), name), name.parent); ts.setSourceMapRange(clone_6, node); ts.setCommentRange(clone_6, node); return clone_6; } } } } return node; } function cacheExpression(node) { if (ts.isGeneratedIdentifier(node) || ts.getEmitFlags(node) & 4096 /* EmitFlags.HelperName */) { return node; } var temp = factory.createTempVariable(hoistVariableDeclaration); emitAssignment(temp, node, /*location*/ node); return temp; } function declareLocal(name) { var temp = name ? factory.createUniqueName(name) : factory.createTempVariable(/*recordTempVariable*/ undefined); hoistVariableDeclaration(temp); return temp; } /** * Defines a label, uses as the target of a Break operation. */ function defineLabel() { if (!labelOffsets) { labelOffsets = []; } var label = nextLabelId; nextLabelId++; labelOffsets[label] = -1; return label; } /** * Marks the current operation with the specified label. */ function markLabel(label) { ts.Debug.assert(labelOffsets !== undefined, "No labels were defined."); labelOffsets[label] = operations ? operations.length : 0; } /** * Begins a block operation (With, Break/Continue, Try/Catch/Finally) * * @param block Information about the block. */ function beginBlock(block) { if (!blocks) { blocks = []; blockActions = []; blockOffsets = []; blockStack = []; } var index = blockActions.length; blockActions[index] = 0 /* BlockAction.Open */; blockOffsets[index] = operations ? operations.length : 0; blocks[index] = block; blockStack.push(block); return index; } /** * Ends the current block operation. */ function endBlock() { var block = peekBlock(); if (block === undefined) return ts.Debug.fail("beginBlock was never called."); var index = blockActions.length; blockActions[index] = 1 /* BlockAction.Close */; blockOffsets[index] = operations ? operations.length : 0; blocks[index] = block; blockStack.pop(); return block; } /** * Gets the current open block. */ function peekBlock() { return ts.lastOrUndefined(blockStack); } /** * Gets the kind of the current open block. */ function peekBlockKind() { var block = peekBlock(); return block && block.kind; } /** * Begins a code block for a generated `with` statement. * * @param expression An identifier representing expression for the `with` block. */ function beginWithBlock(expression) { var startLabel = defineLabel(); var endLabel = defineLabel(); markLabel(startLabel); beginBlock({ kind: 1 /* CodeBlockKind.With */, expression: expression, startLabel: startLabel, endLabel: endLabel }); } /** * Ends a code block for a generated `with` statement. */ function endWithBlock() { ts.Debug.assert(peekBlockKind() === 1 /* CodeBlockKind.With */); var block = endBlock(); markLabel(block.endLabel); } /** * Begins a code block for a generated `try` statement. */ function beginExceptionBlock() { var startLabel = defineLabel(); var endLabel = defineLabel(); markLabel(startLabel); beginBlock({ kind: 0 /* CodeBlockKind.Exception */, state: 0 /* ExceptionBlockState.Try */, startLabel: startLabel, endLabel: endLabel }); emitNop(); return endLabel; } /** * Enters the `catch` clause of a generated `try` statement. * * @param variable The catch variable. */ function beginCatchBlock(variable) { ts.Debug.assert(peekBlockKind() === 0 /* CodeBlockKind.Exception */); // generated identifiers should already be unique within a file var name; if (ts.isGeneratedIdentifier(variable.name)) { name = variable.name; hoistVariableDeclaration(variable.name); } else { var text = ts.idText(variable.name); name = declareLocal(text); if (!renamedCatchVariables) { renamedCatchVariables = new ts.Map(); renamedCatchVariableDeclarations = []; context.enableSubstitution(79 /* SyntaxKind.Identifier */); } renamedCatchVariables.set(text, true); renamedCatchVariableDeclarations[ts.getOriginalNodeId(variable)] = name; } var exception = peekBlock(); ts.Debug.assert(exception.state < 1 /* ExceptionBlockState.Catch */); var endLabel = exception.endLabel; emitBreak(endLabel); var catchLabel = defineLabel(); markLabel(catchLabel); exception.state = 1 /* ExceptionBlockState.Catch */; exception.catchVariable = name; exception.catchLabel = catchLabel; emitAssignment(name, factory.createCallExpression(factory.createPropertyAccessExpression(state, "sent"), /*typeArguments*/ undefined, [])); emitNop(); } /** * Enters the `finally` block of a generated `try` statement. */ function beginFinallyBlock() { ts.Debug.assert(peekBlockKind() === 0 /* CodeBlockKind.Exception */); var exception = peekBlock(); ts.Debug.assert(exception.state < 2 /* ExceptionBlockState.Finally */); var endLabel = exception.endLabel; emitBreak(endLabel); var finallyLabel = defineLabel(); markLabel(finallyLabel); exception.state = 2 /* ExceptionBlockState.Finally */; exception.finallyLabel = finallyLabel; } /** * Ends the code block for a generated `try` statement. */ function endExceptionBlock() { ts.Debug.assert(peekBlockKind() === 0 /* CodeBlockKind.Exception */); var exception = endBlock(); var state = exception.state; if (state < 2 /* ExceptionBlockState.Finally */) { emitBreak(exception.endLabel); } else { emitEndfinally(); } markLabel(exception.endLabel); emitNop(); exception.state = 3 /* ExceptionBlockState.Done */; } /** * Begins a code block that supports `break` or `continue` statements that are defined in * the source tree and not from generated code. * * @param labelText Names from containing labeled statements. */ function beginScriptLoopBlock() { beginBlock({ kind: 3 /* CodeBlockKind.Loop */, isScript: true, breakLabel: -1, continueLabel: -1 }); } /** * Begins a code block that supports `break` or `continue` statements that are defined in * generated code. Returns a label used to mark the operation to which to jump when a * `break` statement targets this block. * * @param continueLabel A Label used to mark the operation to which to jump when a * `continue` statement targets this block. */ function beginLoopBlock(continueLabel) { var breakLabel = defineLabel(); beginBlock({ kind: 3 /* CodeBlockKind.Loop */, isScript: false, breakLabel: breakLabel, continueLabel: continueLabel, }); return breakLabel; } /** * Ends a code block that supports `break` or `continue` statements that are defined in * generated code or in the source tree. */ function endLoopBlock() { ts.Debug.assert(peekBlockKind() === 3 /* CodeBlockKind.Loop */); var block = endBlock(); var breakLabel = block.breakLabel; if (!block.isScript) { markLabel(breakLabel); } } /** * Begins a code block that supports `break` statements that are defined in the source * tree and not from generated code. * */ function beginScriptSwitchBlock() { beginBlock({ kind: 2 /* CodeBlockKind.Switch */, isScript: true, breakLabel: -1 }); } /** * Begins a code block that supports `break` statements that are defined in generated code. * Returns a label used to mark the operation to which to jump when a `break` statement * targets this block. */ function beginSwitchBlock() { var breakLabel = defineLabel(); beginBlock({ kind: 2 /* CodeBlockKind.Switch */, isScript: false, breakLabel: breakLabel, }); return breakLabel; } /** * Ends a code block that supports `break` statements that are defined in generated code. */ function endSwitchBlock() { ts.Debug.assert(peekBlockKind() === 2 /* CodeBlockKind.Switch */); var block = endBlock(); var breakLabel = block.breakLabel; if (!block.isScript) { markLabel(breakLabel); } } function beginScriptLabeledBlock(labelText) { beginBlock({ kind: 4 /* CodeBlockKind.Labeled */, isScript: true, labelText: labelText, breakLabel: -1 }); } function beginLabeledBlock(labelText) { var breakLabel = defineLabel(); beginBlock({ kind: 4 /* CodeBlockKind.Labeled */, isScript: false, labelText: labelText, breakLabel: breakLabel }); } function endLabeledBlock() { ts.Debug.assert(peekBlockKind() === 4 /* CodeBlockKind.Labeled */); var block = endBlock(); if (!block.isScript) { markLabel(block.breakLabel); } } /** * Indicates whether the provided block supports `break` statements. * * @param block A code block. */ function supportsUnlabeledBreak(block) { return block.kind === 2 /* CodeBlockKind.Switch */ || block.kind === 3 /* CodeBlockKind.Loop */; } /** * Indicates whether the provided block supports `break` statements with labels. * * @param block A code block. */ function supportsLabeledBreakOrContinue(block) { return block.kind === 4 /* CodeBlockKind.Labeled */; } /** * Indicates whether the provided block supports `continue` statements. * * @param block A code block. */ function supportsUnlabeledContinue(block) { return block.kind === 3 /* CodeBlockKind.Loop */; } function hasImmediateContainingLabeledBlock(labelText, start) { for (var j = start; j >= 0; j--) { var containingBlock = blockStack[j]; if (supportsLabeledBreakOrContinue(containingBlock)) { if (containingBlock.labelText === labelText) { return true; } } else { break; } } return false; } /** * Finds the label that is the target for a `break` statement. * * @param labelText An optional name of a containing labeled statement. */ function findBreakTarget(labelText) { if (blockStack) { if (labelText) { for (var i = blockStack.length - 1; i >= 0; i--) { var block = blockStack[i]; if (supportsLabeledBreakOrContinue(block) && block.labelText === labelText) { return block.breakLabel; } else if (supportsUnlabeledBreak(block) && hasImmediateContainingLabeledBlock(labelText, i - 1)) { return block.breakLabel; } } } else { for (var i = blockStack.length - 1; i >= 0; i--) { var block = blockStack[i]; if (supportsUnlabeledBreak(block)) { return block.breakLabel; } } } } return 0; } /** * Finds the label that is the target for a `continue` statement. * * @param labelText An optional name of a containing labeled statement. */ function findContinueTarget(labelText) { if (blockStack) { if (labelText) { for (var i = blockStack.length - 1; i >= 0; i--) { var block = blockStack[i]; if (supportsUnlabeledContinue(block) && hasImmediateContainingLabeledBlock(labelText, i - 1)) { return block.continueLabel; } } } else { for (var i = blockStack.length - 1; i >= 0; i--) { var block = blockStack[i]; if (supportsUnlabeledContinue(block)) { return block.continueLabel; } } } } return 0; } /** * Creates an expression that can be used to indicate the value for a label. * * @param label A label. */ function createLabel(label) { if (label !== undefined && label > 0) { if (labelExpressions === undefined) { labelExpressions = []; } var expression = factory.createNumericLiteral(-1); if (labelExpressions[label] === undefined) { labelExpressions[label] = [expression]; } else { labelExpressions[label].push(expression); } return expression; } return factory.createOmittedExpression(); } /** * Creates a numeric literal for the provided instruction. */ function createInstruction(instruction) { var literal = factory.createNumericLiteral(instruction); ts.addSyntheticTrailingComment(literal, 3 /* SyntaxKind.MultiLineCommentTrivia */, getInstructionName(instruction)); return literal; } /** * Creates a statement that can be used indicate a Break operation to the provided label. * * @param label A label. * @param location An optional source map location for the statement. */ function createInlineBreak(label, location) { ts.Debug.assertLessThan(0, label, "Invalid label"); return ts.setTextRange(factory.createReturnStatement(factory.createArrayLiteralExpression([ createInstruction(3 /* Instruction.Break */), createLabel(label) ])), location); } /** * Creates a statement that can be used indicate a Return operation. * * @param expression The expression for the return statement. * @param location An optional source map location for the statement. */ function createInlineReturn(expression, location) { return ts.setTextRange(factory.createReturnStatement(factory.createArrayLiteralExpression(expression ? [createInstruction(2 /* Instruction.Return */), expression] : [createInstruction(2 /* Instruction.Return */)])), location); } /** * Creates an expression that can be used to resume from a Yield operation. */ function createGeneratorResume(location) { return ts.setTextRange(factory.createCallExpression(factory.createPropertyAccessExpression(state, "sent"), /*typeArguments*/ undefined, []), location); } /** * Emits an empty instruction. */ function emitNop() { emitWorker(0 /* OpCode.Nop */); } /** * Emits a Statement. * * @param node A statement. */ function emitStatement(node) { if (node) { emitWorker(1 /* OpCode.Statement */, [node]); } else { emitNop(); } } /** * Emits an Assignment operation. * * @param left The left-hand side of the assignment. * @param right The right-hand side of the assignment. * @param location An optional source map location for the assignment. */ function emitAssignment(left, right, location) { emitWorker(2 /* OpCode.Assign */, [left, right], location); } /** * Emits a Break operation to the specified label. * * @param label A label. * @param location An optional source map location for the assignment. */ function emitBreak(label, location) { emitWorker(3 /* OpCode.Break */, [label], location); } /** * Emits a Break operation to the specified label when a condition evaluates to a truthy * value at runtime. * * @param label A label. * @param condition The condition. * @param location An optional source map location for the assignment. */ function emitBreakWhenTrue(label, condition, location) { emitWorker(4 /* OpCode.BreakWhenTrue */, [label, condition], location); } /** * Emits a Break to the specified label when a condition evaluates to a falsey value at * runtime. * * @param label A label. * @param condition The condition. * @param location An optional source map location for the assignment. */ function emitBreakWhenFalse(label, condition, location) { emitWorker(5 /* OpCode.BreakWhenFalse */, [label, condition], location); } /** * Emits a YieldStar operation for the provided expression. * * @param expression An optional value for the yield operation. * @param location An optional source map location for the assignment. */ function emitYieldStar(expression, location) { emitWorker(7 /* OpCode.YieldStar */, [expression], location); } /** * Emits a Yield operation for the provided expression. * * @param expression An optional value for the yield operation. * @param location An optional source map location for the assignment. */ function emitYield(expression, location) { emitWorker(6 /* OpCode.Yield */, [expression], location); } /** * Emits a Return operation for the provided expression. * * @param expression An optional value for the operation. * @param location An optional source map location for the assignment. */ function emitReturn(expression, location) { emitWorker(8 /* OpCode.Return */, [expression], location); } /** * Emits a Throw operation for the provided expression. * * @param expression A value for the operation. * @param location An optional source map location for the assignment. */ function emitThrow(expression, location) { emitWorker(9 /* OpCode.Throw */, [expression], location); } /** * Emits an Endfinally operation. This is used to handle `finally` block semantics. */ function emitEndfinally() { emitWorker(10 /* OpCode.Endfinally */); } /** * Emits an operation. * * @param code The OpCode for the operation. * @param args The optional arguments for the operation. */ function emitWorker(code, args, location) { if (operations === undefined) { operations = []; operationArguments = []; operationLocations = []; } if (labelOffsets === undefined) { // mark entry point markLabel(defineLabel()); } var operationIndex = operations.length; operations[operationIndex] = code; operationArguments[operationIndex] = args; operationLocations[operationIndex] = location; } /** * Builds the generator function body. */ function build() { blockIndex = 0; labelNumber = 0; labelNumbers = undefined; lastOperationWasAbrupt = false; lastOperationWasCompletion = false; clauses = undefined; statements = undefined; exceptionBlockStack = undefined; currentExceptionBlock = undefined; withBlockStack = undefined; var buildResult = buildStatements(); return emitHelpers().createGeneratorHelper(ts.setEmitFlags(factory.createFunctionExpression( /*modifiers*/ undefined, /*asteriskToken*/ undefined, /*name*/ undefined, /*typeParameters*/ undefined, [factory.createParameterDeclaration(/*decorators*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, state)], /*type*/ undefined, factory.createBlock(buildResult, /*multiLine*/ buildResult.length > 0)), 524288 /* EmitFlags.ReuseTempVariableScope */)); } /** * Builds the statements for the generator function body. */ function buildStatements() { if (operations) { for (var operationIndex = 0; operationIndex < operations.length; operationIndex++) { writeOperation(operationIndex); } flushFinalLabel(operations.length); } else { flushFinalLabel(0); } if (clauses) { var labelExpression = factory.createPropertyAccessExpression(state, "label"); var switchStatement = factory.createSwitchStatement(labelExpression, factory.createCaseBlock(clauses)); return [ts.startOnNewLine(switchStatement)]; } if (statements) { return statements; } return []; } /** * Flush the current label and advance to a new label. */ function flushLabel() { if (!statements) { return; } appendLabel(/*markLabelEnd*/ !lastOperationWasAbrupt); lastOperationWasAbrupt = false; lastOperationWasCompletion = false; labelNumber++; } /** * Flush the final label of the generator function body. */ function flushFinalLabel(operationIndex) { if (isFinalLabelReachable(operationIndex)) { tryEnterLabel(operationIndex); withBlockStack = undefined; writeReturn(/*expression*/ undefined, /*operationLocation*/ undefined); } if (statements && clauses) { appendLabel(/*markLabelEnd*/ false); } updateLabelExpressions(); } /** * Tests whether the final label of the generator function body * is reachable by user code. */ function isFinalLabelReachable(operationIndex) { // if the last operation was *not* a completion (return/throw) then // the final label is reachable. if (!lastOperationWasCompletion) { return true; } // if there are no labels defined or referenced, then the final label is // not reachable. if (!labelOffsets || !labelExpressions) { return false; } // if the label for this offset is referenced, then the final label // is reachable. for (var label = 0; label < labelOffsets.length; label++) { if (labelOffsets[label] === operationIndex && labelExpressions[label]) { return true; } } return false; } /** * Appends a case clause for the last label and sets the new label. * * @param markLabelEnd Indicates that the transition between labels was a fall-through * from a previous case clause and the change in labels should be * reflected on the `state` object. */ function appendLabel(markLabelEnd) { if (!clauses) { clauses = []; } if (statements) { if (withBlockStack) { // The previous label was nested inside one or more `with` blocks, so we // surround the statements in generated `with` blocks to create the same environment. for (var i = withBlockStack.length - 1; i >= 0; i--) { var withBlock = withBlockStack[i]; statements = [factory.createWithStatement(withBlock.expression, factory.createBlock(statements))]; } } if (currentExceptionBlock) { // The previous label was nested inside of an exception block, so we must // indicate entry into a protected region by pushing the label numbers // for each block in the protected region. var startLabel = currentExceptionBlock.startLabel, catchLabel = currentExceptionBlock.catchLabel, finallyLabel = currentExceptionBlock.finallyLabel, endLabel = currentExceptionBlock.endLabel; statements.unshift(factory.createExpressionStatement(factory.createCallExpression(factory.createPropertyAccessExpression(factory.createPropertyAccessExpression(state, "trys"), "push"), /*typeArguments*/ undefined, [ factory.createArrayLiteralExpression([ createLabel(startLabel), createLabel(catchLabel), createLabel(finallyLabel), createLabel(endLabel) ]) ]))); currentExceptionBlock = undefined; } if (markLabelEnd) { // The case clause for the last label falls through to this label, so we // add an assignment statement to reflect the change in labels. statements.push(factory.createExpressionStatement(factory.createAssignment(factory.createPropertyAccessExpression(state, "label"), factory.createNumericLiteral(labelNumber + 1)))); } } clauses.push(factory.createCaseClause(factory.createNumericLiteral(labelNumber), statements || [])); statements = undefined; } /** * Tries to enter into a new label at the current operation index. */ function tryEnterLabel(operationIndex) { if (!labelOffsets) { return; } for (var label = 0; label < labelOffsets.length; label++) { if (labelOffsets[label] === operationIndex) { flushLabel(); if (labelNumbers === undefined) { labelNumbers = []; } if (labelNumbers[labelNumber] === undefined) { labelNumbers[labelNumber] = [label]; } else { labelNumbers[labelNumber].push(label); } } } } /** * Updates literal expressions for labels with actual label numbers. */ function updateLabelExpressions() { if (labelExpressions !== undefined && labelNumbers !== undefined) { for (var labelNumber_1 = 0; labelNumber_1 < labelNumbers.length; labelNumber_1++) { var labels = labelNumbers[labelNumber_1]; if (labels !== undefined) { for (var _i = 0, labels_1 = labels; _i < labels_1.length; _i++) { var label = labels_1[_i]; var expressions = labelExpressions[label]; if (expressions !== undefined) { for (var _a = 0, expressions_1 = expressions; _a < expressions_1.length; _a++) { var expression = expressions_1[_a]; expression.text = String(labelNumber_1); } } } } } } } /** * Tries to enter or leave a code block. */ function tryEnterOrLeaveBlock(operationIndex) { if (blocks) { for (; blockIndex < blockActions.length && blockOffsets[blockIndex] <= operationIndex; blockIndex++) { var block = blocks[blockIndex]; var blockAction = blockActions[blockIndex]; switch (block.kind) { case 0 /* CodeBlockKind.Exception */: if (blockAction === 0 /* BlockAction.Open */) { if (!exceptionBlockStack) { exceptionBlockStack = []; } if (!statements) { statements = []; } exceptionBlockStack.push(currentExceptionBlock); currentExceptionBlock = block; } else if (blockAction === 1 /* BlockAction.Close */) { currentExceptionBlock = exceptionBlockStack.pop(); } break; case 1 /* CodeBlockKind.With */: if (blockAction === 0 /* BlockAction.Open */) { if (!withBlockStack) { withBlockStack = []; } withBlockStack.push(block); } else if (blockAction === 1 /* BlockAction.Close */) { withBlockStack.pop(); } break; // default: do nothing } } } } /** * Writes an operation as a statement to the current label's statement list. * * @param operation The OpCode of the operation */ function writeOperation(operationIndex) { tryEnterLabel(operationIndex); tryEnterOrLeaveBlock(operationIndex); // early termination, nothing else to process in this label if (lastOperationWasAbrupt) { return; } lastOperationWasAbrupt = false; lastOperationWasCompletion = false; var opcode = operations[operationIndex]; if (opcode === 0 /* OpCode.Nop */) { return; } else if (opcode === 10 /* OpCode.Endfinally */) { return writeEndfinally(); } var args = operationArguments[operationIndex]; if (opcode === 1 /* OpCode.Statement */) { return writeStatement(args[0]); } var location = operationLocations[operationIndex]; switch (opcode) { case 2 /* OpCode.Assign */: return writeAssign(args[0], args[1], location); case 3 /* OpCode.Break */: return writeBreak(args[0], location); case 4 /* OpCode.BreakWhenTrue */: return writeBreakWhenTrue(args[0], args[1], location); case 5 /* OpCode.BreakWhenFalse */: return writeBreakWhenFalse(args[0], args[1], location); case 6 /* OpCode.Yield */: return writeYield(args[0], location); case 7 /* OpCode.YieldStar */: return writeYieldStar(args[0], location); case 8 /* OpCode.Return */: return writeReturn(args[0], location); case 9 /* OpCode.Throw */: return writeThrow(args[0], location); } } /** * Writes a statement to the current label's statement list. * * @param statement A statement to write. */ function writeStatement(statement) { if (statement) { if (!statements) { statements = [statement]; } else { statements.push(statement); } } } /** * Writes an Assign operation to the current label's statement list. * * @param left The left-hand side of the assignment. * @param right The right-hand side of the assignment. * @param operationLocation The source map location for the operation. */ function writeAssign(left, right, operationLocation) { writeStatement(ts.setTextRange(factory.createExpressionStatement(factory.createAssignment(left, right)), operationLocation)); } /** * Writes a Throw operation to the current label's statement list. * * @param expression The value to throw. * @param operationLocation The source map location for the operation. */ function writeThrow(expression, operationLocation) { lastOperationWasAbrupt = true; lastOperationWasCompletion = true; writeStatement(ts.setTextRange(factory.createThrowStatement(expression), operationLocation)); } /** * Writes a Return operation to the current label's statement list. * * @param expression The value to return. * @param operationLocation The source map location for the operation. */ function writeReturn(expression, operationLocation) { lastOperationWasAbrupt = true; lastOperationWasCompletion = true; writeStatement(ts.setEmitFlags(ts.setTextRange(factory.createReturnStatement(factory.createArrayLiteralExpression(expression ? [createInstruction(2 /* Instruction.Return */), expression] : [createInstruction(2 /* Instruction.Return */)])), operationLocation), 384 /* EmitFlags.NoTokenSourceMaps */)); } /** * Writes a Break operation to the current label's statement list. * * @param label The label for the Break. * @param operationLocation The source map location for the operation. */ function writeBreak(label, operationLocation) { lastOperationWasAbrupt = true; writeStatement(ts.setEmitFlags(ts.setTextRange(factory.createReturnStatement(factory.createArrayLiteralExpression([ createInstruction(3 /* Instruction.Break */), createLabel(label) ])), operationLocation), 384 /* EmitFlags.NoTokenSourceMaps */)); } /** * Writes a BreakWhenTrue operation to the current label's statement list. * * @param label The label for the Break. * @param condition The condition for the Break. * @param operationLocation The source map location for the operation. */ function writeBreakWhenTrue(label, condition, operationLocation) { writeStatement(ts.setEmitFlags(factory.createIfStatement(condition, ts.setEmitFlags(ts.setTextRange(factory.createReturnStatement(factory.createArrayLiteralExpression([ createInstruction(3 /* Instruction.Break */), createLabel(label) ])), operationLocation), 384 /* EmitFlags.NoTokenSourceMaps */)), 1 /* EmitFlags.SingleLine */)); } /** * Writes a BreakWhenFalse operation to the current label's statement list. * * @param label The label for the Break. * @param condition The condition for the Break. * @param operationLocation The source map location for the operation. */ function writeBreakWhenFalse(label, condition, operationLocation) { writeStatement(ts.setEmitFlags(factory.createIfStatement(factory.createLogicalNot(condition), ts.setEmitFlags(ts.setTextRange(factory.createReturnStatement(factory.createArrayLiteralExpression([ createInstruction(3 /* Instruction.Break */), createLabel(label) ])), operationLocation), 384 /* EmitFlags.NoTokenSourceMaps */)), 1 /* EmitFlags.SingleLine */)); } /** * Writes a Yield operation to the current label's statement list. * * @param expression The expression to yield. * @param operationLocation The source map location for the operation. */ function writeYield(expression, operationLocation) { lastOperationWasAbrupt = true; writeStatement(ts.setEmitFlags(ts.setTextRange(factory.createReturnStatement(factory.createArrayLiteralExpression(expression ? [createInstruction(4 /* Instruction.Yield */), expression] : [createInstruction(4 /* Instruction.Yield */)])), operationLocation), 384 /* EmitFlags.NoTokenSourceMaps */)); } /** * Writes a YieldStar instruction to the current label's statement list. * * @param expression The expression to yield. * @param operationLocation The source map location for the operation. */ function writeYieldStar(expression, operationLocation) { lastOperationWasAbrupt = true; writeStatement(ts.setEmitFlags(ts.setTextRange(factory.createReturnStatement(factory.createArrayLiteralExpression([ createInstruction(5 /* Instruction.YieldStar */), expression ])), operationLocation), 384 /* EmitFlags.NoTokenSourceMaps */)); } /** * Writes an Endfinally instruction to the current label's statement list. */ function writeEndfinally() { lastOperationWasAbrupt = true; writeStatement(factory.createReturnStatement(factory.createArrayLiteralExpression([ createInstruction(7 /* Instruction.Endfinally */) ]))); } } ts.transformGenerators = transformGenerators; })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { function transformModule(context) { function getTransformModuleDelegate(moduleKind) { switch (moduleKind) { case ts.ModuleKind.AMD: return transformAMDModule; case ts.ModuleKind.UMD: return transformUMDModule; default: return transformCommonJSModule; } } var factory = context.factory, emitHelpers = context.getEmitHelperFactory, startLexicalEnvironment = context.startLexicalEnvironment, endLexicalEnvironment = context.endLexicalEnvironment, hoistVariableDeclaration = context.hoistVariableDeclaration; var compilerOptions = context.getCompilerOptions(); var resolver = context.getEmitResolver(); var host = context.getEmitHost(); var languageVersion = ts.getEmitScriptTarget(compilerOptions); var moduleKind = ts.getEmitModuleKind(compilerOptions); var previousOnSubstituteNode = context.onSubstituteNode; var previousOnEmitNode = context.onEmitNode; context.onSubstituteNode = onSubstituteNode; context.onEmitNode = onEmitNode; context.enableSubstitution(208 /* SyntaxKind.CallExpression */); // Substitute calls to imported/exported symbols to avoid incorrect `this`. context.enableSubstitution(210 /* SyntaxKind.TaggedTemplateExpression */); // Substitute calls to imported/exported symbols to avoid incorrect `this`. context.enableSubstitution(79 /* SyntaxKind.Identifier */); // Substitutes expression identifiers with imported/exported symbols. context.enableSubstitution(221 /* SyntaxKind.BinaryExpression */); // Substitutes assignments to exported symbols. context.enableSubstitution(297 /* SyntaxKind.ShorthandPropertyAssignment */); // Substitutes shorthand property assignments for imported/exported symbols. context.enableEmitNotification(305 /* SyntaxKind.SourceFile */); // Restore state when substituting nodes in a file. var moduleInfoMap = []; // The ExternalModuleInfo for each file. var deferredExports = []; // Exports to defer until an EndOfDeclarationMarker is found. var currentSourceFile; // The current file. var currentModuleInfo; // The ExternalModuleInfo for the current file. var noSubstitution = []; // Set of nodes for which substitution rules should be ignored. var needUMDDynamicImportHelper; return ts.chainBundle(context, transformSourceFile); /** * Transforms the module aspects of a SourceFile. * * @param node The SourceFile node. */ function transformSourceFile(node) { if (node.isDeclarationFile || !(ts.isEffectiveExternalModule(node, compilerOptions) || node.transformFlags & 4194304 /* TransformFlags.ContainsDynamicImport */ || (ts.isJsonSourceFile(node) && ts.hasJsonModuleEmitEnabled(compilerOptions) && ts.outFile(compilerOptions)))) { return node; } currentSourceFile = node; currentModuleInfo = ts.collectExternalModuleInfo(context, node, resolver, compilerOptions); moduleInfoMap[ts.getOriginalNodeId(node)] = currentModuleInfo; // Perform the transformation. var transformModule = getTransformModuleDelegate(moduleKind); var updated = transformModule(node); currentSourceFile = undefined; currentModuleInfo = undefined; needUMDDynamicImportHelper = false; return updated; } function shouldEmitUnderscoreUnderscoreESModule() { if (!currentModuleInfo.exportEquals && ts.isExternalModule(currentSourceFile)) { return true; } return false; } /** * Transforms a SourceFile into a CommonJS module. * * @param node The SourceFile node. */ function transformCommonJSModule(node) { startLexicalEnvironment(); var statements = []; var ensureUseStrict = ts.getStrictOptionValue(compilerOptions, "alwaysStrict") || (!compilerOptions.noImplicitUseStrict && ts.isExternalModule(currentSourceFile)); var statementOffset = factory.copyPrologue(node.statements, statements, ensureUseStrict && !ts.isJsonSourceFile(node), topLevelVisitor); if (shouldEmitUnderscoreUnderscoreESModule()) { ts.append(statements, createUnderscoreUnderscoreESModule()); } if (ts.length(currentModuleInfo.exportedNames)) { var chunkSize = 50; for (var i = 0; i < currentModuleInfo.exportedNames.length; i += chunkSize) { ts.append(statements, factory.createExpressionStatement(ts.reduceLeft(currentModuleInfo.exportedNames.slice(i, i + chunkSize), function (prev, nextId) { return factory.createAssignment(factory.createPropertyAccessExpression(factory.createIdentifier("exports"), factory.createIdentifier(ts.idText(nextId))), prev); }, factory.createVoidZero()))); } } ts.append(statements, ts.visitNode(currentModuleInfo.externalHelpersImportDeclaration, topLevelVisitor, ts.isStatement)); ts.addRange(statements, ts.visitNodes(node.statements, topLevelVisitor, ts.isStatement, statementOffset)); addExportEqualsIfNeeded(statements, /*emitAsReturn*/ false); ts.insertStatementsAfterStandardPrologue(statements, endLexicalEnvironment()); var updated = factory.updateSourceFile(node, ts.setTextRange(factory.createNodeArray(statements), node.statements)); ts.addEmitHelpers(updated, context.readEmitHelpers()); return updated; } /** * Transforms a SourceFile into an AMD module. * * @param node The SourceFile node. */ function transformAMDModule(node) { var define = factory.createIdentifier("define"); var moduleName = ts.tryGetModuleNameFromFile(factory, node, host, compilerOptions); var jsonSourceFile = ts.isJsonSourceFile(node) && node; // An AMD define function has the following shape: // // define(id?, dependencies?, factory); // // This has the shape of the following: // // define(name, ["module1", "module2"], function (module1Alias) { ... } // // The location of the alias in the parameter list in the factory function needs to // match the position of the module name in the dependency list. // // To ensure this is true in cases of modules with no aliases, e.g.: // // import "module" // // or // // /// // // we need to add modules without alias names to the end of the dependencies list var _a = collectAsynchronousDependencies(node, /*includeNonAmdDependencies*/ true), aliasedModuleNames = _a.aliasedModuleNames, unaliasedModuleNames = _a.unaliasedModuleNames, importAliasNames = _a.importAliasNames; // Create an updated SourceFile: // // define(mofactory.updateSourceFile", "module2"], function ... var updated = factory.updateSourceFile(node, ts.setTextRange(factory.createNodeArray([ factory.createExpressionStatement(factory.createCallExpression(define, /*typeArguments*/ undefined, __spreadArray(__spreadArray([], (moduleName ? [moduleName] : []), true), [ // Add the dependency array argument: // // ["require", "exports", module1", "module2", ...] factory.createArrayLiteralExpression(jsonSourceFile ? ts.emptyArray : __spreadArray(__spreadArray([ factory.createStringLiteral("require"), factory.createStringLiteral("exports") ], aliasedModuleNames, true), unaliasedModuleNames, true)), // Add the module body function argument: // // function (require, exports, module1, module2) ... jsonSourceFile ? jsonSourceFile.statements.length ? jsonSourceFile.statements[0].expression : factory.createObjectLiteralExpression() : factory.createFunctionExpression( /*modifiers*/ undefined, /*asteriskToken*/ undefined, /*name*/ undefined, /*typeParameters*/ undefined, __spreadArray([ factory.createParameterDeclaration(/*decorators*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, "require"), factory.createParameterDeclaration(/*decorators*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, "exports") ], importAliasNames, true), /*type*/ undefined, transformAsynchronousModuleBody(node)) ], false))) ]), /*location*/ node.statements)); ts.addEmitHelpers(updated, context.readEmitHelpers()); return updated; } /** * Transforms a SourceFile into a UMD module. * * @param node The SourceFile node. */ function transformUMDModule(node) { var _a = collectAsynchronousDependencies(node, /*includeNonAmdDependencies*/ false), aliasedModuleNames = _a.aliasedModuleNames, unaliasedModuleNames = _a.unaliasedModuleNames, importAliasNames = _a.importAliasNames; var moduleName = ts.tryGetModuleNameFromFile(factory, node, host, compilerOptions); var umdHeader = factory.createFunctionExpression( /*modifiers*/ undefined, /*asteriskToken*/ undefined, /*name*/ undefined, /*typeParameters*/ undefined, [factory.createParameterDeclaration(/*decorators*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, "factory")], /*type*/ undefined, ts.setTextRange(factory.createBlock([ factory.createIfStatement(factory.createLogicalAnd(factory.createTypeCheck(factory.createIdentifier("module"), "object"), factory.createTypeCheck(factory.createPropertyAccessExpression(factory.createIdentifier("module"), "exports"), "object")), factory.createBlock([ factory.createVariableStatement( /*modifiers*/ undefined, [ factory.createVariableDeclaration("v", /*exclamationToken*/ undefined, /*type*/ undefined, factory.createCallExpression(factory.createIdentifier("factory"), /*typeArguments*/ undefined, [ factory.createIdentifier("require"), factory.createIdentifier("exports") ])) ]), ts.setEmitFlags(factory.createIfStatement(factory.createStrictInequality(factory.createIdentifier("v"), factory.createIdentifier("undefined")), factory.createExpressionStatement(factory.createAssignment(factory.createPropertyAccessExpression(factory.createIdentifier("module"), "exports"), factory.createIdentifier("v")))), 1 /* EmitFlags.SingleLine */) ]), factory.createIfStatement(factory.createLogicalAnd(factory.createTypeCheck(factory.createIdentifier("define"), "function"), factory.createPropertyAccessExpression(factory.createIdentifier("define"), "amd")), factory.createBlock([ factory.createExpressionStatement(factory.createCallExpression(factory.createIdentifier("define"), /*typeArguments*/ undefined, __spreadArray(__spreadArray([], (moduleName ? [moduleName] : []), true), [ factory.createArrayLiteralExpression(__spreadArray(__spreadArray([ factory.createStringLiteral("require"), factory.createStringLiteral("exports") ], aliasedModuleNames, true), unaliasedModuleNames, true)), factory.createIdentifier("factory") ], false))) ]))) ], /*multiLine*/ true), /*location*/ undefined)); // Create an updated SourceFile: // // (function (factory) { // if (typeof module === "object" && typeof module.exports === "object") { // var v = factory(require, exports); // if (v !== undefined) module.exports = v; // } // else if (typeof define === 'function' && define.amd) { // define(["require", "exports"], factory); // } // })(function ...) var updated = factory.updateSourceFile(node, ts.setTextRange(factory.createNodeArray([ factory.createExpressionStatement(factory.createCallExpression(umdHeader, /*typeArguments*/ undefined, [ // Add the module body function argument: // // function (require, exports) ... factory.createFunctionExpression( /*modifiers*/ undefined, /*asteriskToken*/ undefined, /*name*/ undefined, /*typeParameters*/ undefined, __spreadArray([ factory.createParameterDeclaration(/*decorators*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, "require"), factory.createParameterDeclaration(/*decorators*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, "exports") ], importAliasNames, true), /*type*/ undefined, transformAsynchronousModuleBody(node)) ])) ]), /*location*/ node.statements)); ts.addEmitHelpers(updated, context.readEmitHelpers()); return updated; } /** * Collect the additional asynchronous dependencies for the module. * * @param node The source file. * @param includeNonAmdDependencies A value indicating whether to include non-AMD dependencies. */ function collectAsynchronousDependencies(node, includeNonAmdDependencies) { // names of modules with corresponding parameter in the factory function var aliasedModuleNames = []; // names of modules with no corresponding parameters in factory function var unaliasedModuleNames = []; // names of the parameters in the factory function; these // parameters need to match the indexes of the corresponding // module names in aliasedModuleNames. var importAliasNames = []; // Fill in amd-dependency tags for (var _i = 0, _a = node.amdDependencies; _i < _a.length; _i++) { var amdDependency = _a[_i]; if (amdDependency.name) { aliasedModuleNames.push(factory.createStringLiteral(amdDependency.path)); importAliasNames.push(factory.createParameterDeclaration(/*decorators*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, amdDependency.name)); } else { unaliasedModuleNames.push(factory.createStringLiteral(amdDependency.path)); } } for (var _b = 0, _c = currentModuleInfo.externalImports; _b < _c.length; _b++) { var importNode = _c[_b]; // Find the name of the external module var externalModuleName = ts.getExternalModuleNameLiteral(factory, importNode, currentSourceFile, host, resolver, compilerOptions); // Find the name of the module alias, if there is one var importAliasName = ts.getLocalNameForExternalImport(factory, importNode, currentSourceFile); // It is possible that externalModuleName is undefined if it is not string literal. // This can happen in the invalid import syntax. // E.g : "import * from alias from 'someLib';" if (externalModuleName) { if (includeNonAmdDependencies && importAliasName) { // Set emitFlags on the name of the classDeclaration // This is so that when printer will not substitute the identifier ts.setEmitFlags(importAliasName, 4 /* EmitFlags.NoSubstitution */); aliasedModuleNames.push(externalModuleName); importAliasNames.push(factory.createParameterDeclaration(/*decorators*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, importAliasName)); } else { unaliasedModuleNames.push(externalModuleName); } } } return { aliasedModuleNames: aliasedModuleNames, unaliasedModuleNames: unaliasedModuleNames, importAliasNames: importAliasNames }; } function getAMDImportExpressionForImport(node) { if (ts.isImportEqualsDeclaration(node) || ts.isExportDeclaration(node) || !ts.getExternalModuleNameLiteral(factory, node, currentSourceFile, host, resolver, compilerOptions)) { return undefined; } var name = ts.getLocalNameForExternalImport(factory, node, currentSourceFile); // TODO: GH#18217 var expr = getHelperExpressionForImport(node, name); if (expr === name) { return undefined; } return factory.createExpressionStatement(factory.createAssignment(name, expr)); } /** * Transforms a SourceFile into an AMD or UMD module body. * * @param node The SourceFile node. */ function transformAsynchronousModuleBody(node) { startLexicalEnvironment(); var statements = []; var statementOffset = factory.copyPrologue(node.statements, statements, /*ensureUseStrict*/ !compilerOptions.noImplicitUseStrict, topLevelVisitor); if (shouldEmitUnderscoreUnderscoreESModule()) { ts.append(statements, createUnderscoreUnderscoreESModule()); } if (ts.length(currentModuleInfo.exportedNames)) { ts.append(statements, factory.createExpressionStatement(ts.reduceLeft(currentModuleInfo.exportedNames, function (prev, nextId) { return factory.createAssignment(factory.createPropertyAccessExpression(factory.createIdentifier("exports"), factory.createIdentifier(ts.idText(nextId))), prev); }, factory.createVoidZero()))); } // Visit each statement of the module body. ts.append(statements, ts.visitNode(currentModuleInfo.externalHelpersImportDeclaration, topLevelVisitor, ts.isStatement)); if (moduleKind === ts.ModuleKind.AMD) { ts.addRange(statements, ts.mapDefined(currentModuleInfo.externalImports, getAMDImportExpressionForImport)); } ts.addRange(statements, ts.visitNodes(node.statements, topLevelVisitor, ts.isStatement, statementOffset)); // Append the 'export =' statement if provided. addExportEqualsIfNeeded(statements, /*emitAsReturn*/ true); // End the lexical environment for the module body // and merge any new lexical declarations. ts.insertStatementsAfterStandardPrologue(statements, endLexicalEnvironment()); var body = factory.createBlock(statements, /*multiLine*/ true); if (needUMDDynamicImportHelper) { ts.addEmitHelper(body, dynamicImportUMDHelper); } return body; } /** * Adds the down-level representation of `export=` to the statement list if one exists * in the source file. * * @param statements The Statement list to modify. * @param emitAsReturn A value indicating whether to emit the `export=` statement as a * return statement. */ function addExportEqualsIfNeeded(statements, emitAsReturn) { if (currentModuleInfo.exportEquals) { var expressionResult = ts.visitNode(currentModuleInfo.exportEquals.expression, visitor); if (expressionResult) { if (emitAsReturn) { var statement = factory.createReturnStatement(expressionResult); ts.setTextRange(statement, currentModuleInfo.exportEquals); ts.setEmitFlags(statement, 384 /* EmitFlags.NoTokenSourceMaps */ | 1536 /* EmitFlags.NoComments */); statements.push(statement); } else { var statement = factory.createExpressionStatement(factory.createAssignment(factory.createPropertyAccessExpression(factory.createIdentifier("module"), "exports"), expressionResult)); ts.setTextRange(statement, currentModuleInfo.exportEquals); ts.setEmitFlags(statement, 1536 /* EmitFlags.NoComments */); statements.push(statement); } } } } // // Top-Level Source Element Visitors // /** * Visits a node at the top level of the source file. * * @param node The node to visit. */ function topLevelVisitor(node) { switch (node.kind) { case 266 /* SyntaxKind.ImportDeclaration */: return visitImportDeclaration(node); case 265 /* SyntaxKind.ImportEqualsDeclaration */: return visitImportEqualsDeclaration(node); case 272 /* SyntaxKind.ExportDeclaration */: return visitExportDeclaration(node); case 271 /* SyntaxKind.ExportAssignment */: return visitExportAssignment(node); case 237 /* SyntaxKind.VariableStatement */: return visitVariableStatement(node); case 256 /* SyntaxKind.FunctionDeclaration */: return visitFunctionDeclaration(node); case 257 /* SyntaxKind.ClassDeclaration */: return visitClassDeclaration(node); case 352 /* SyntaxKind.MergeDeclarationMarker */: return visitMergeDeclarationMarker(node); case 353 /* SyntaxKind.EndOfDeclarationMarker */: return visitEndOfDeclarationMarker(node); default: return visitor(node); } } function visitorWorker(node, valueIsDiscarded) { // This visitor does not need to descend into the tree if there is no dynamic import, destructuring assignment, or update expression // as export/import statements are only transformed at the top level of a file. if (!(node.transformFlags & (4194304 /* TransformFlags.ContainsDynamicImport */ | 4096 /* TransformFlags.ContainsDestructuringAssignment */ | 67108864 /* TransformFlags.ContainsUpdateExpressionForIdentifier */))) { return node; } switch (node.kind) { case 242 /* SyntaxKind.ForStatement */: return visitForStatement(node); case 238 /* SyntaxKind.ExpressionStatement */: return visitExpressionStatement(node); case 212 /* SyntaxKind.ParenthesizedExpression */: return visitParenthesizedExpression(node, valueIsDiscarded); case 350 /* SyntaxKind.PartiallyEmittedExpression */: return visitPartiallyEmittedExpression(node, valueIsDiscarded); case 208 /* SyntaxKind.CallExpression */: if (ts.isImportCall(node) && currentSourceFile.impliedNodeFormat === undefined) { return visitImportCallExpression(node); } break; case 221 /* SyntaxKind.BinaryExpression */: if (ts.isDestructuringAssignment(node)) { return visitDestructuringAssignment(node, valueIsDiscarded); } break; case 219 /* SyntaxKind.PrefixUnaryExpression */: case 220 /* SyntaxKind.PostfixUnaryExpression */: return visitPreOrPostfixUnaryExpression(node, valueIsDiscarded); } return ts.visitEachChild(node, visitor, context); } function visitor(node) { return visitorWorker(node, /*valueIsDiscarded*/ false); } function discardedValueVisitor(node) { return visitorWorker(node, /*valueIsDiscarded*/ true); } function destructuringNeedsFlattening(node) { if (ts.isObjectLiteralExpression(node)) { for (var _i = 0, _a = node.properties; _i < _a.length; _i++) { var elem = _a[_i]; switch (elem.kind) { case 296 /* SyntaxKind.PropertyAssignment */: if (destructuringNeedsFlattening(elem.initializer)) { return true; } break; case 297 /* SyntaxKind.ShorthandPropertyAssignment */: if (destructuringNeedsFlattening(elem.name)) { return true; } break; case 298 /* SyntaxKind.SpreadAssignment */: if (destructuringNeedsFlattening(elem.expression)) { return true; } break; case 169 /* SyntaxKind.MethodDeclaration */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: return false; default: ts.Debug.assertNever(elem, "Unhandled object member kind"); } } } else if (ts.isArrayLiteralExpression(node)) { for (var _b = 0, _c = node.elements; _b < _c.length; _b++) { var elem = _c[_b]; if (ts.isSpreadElement(elem)) { if (destructuringNeedsFlattening(elem.expression)) { return true; } } else if (destructuringNeedsFlattening(elem)) { return true; } } } else if (ts.isIdentifier(node)) { return ts.length(getExports(node)) > (ts.isExportName(node) ? 1 : 0); } return false; } function visitDestructuringAssignment(node, valueIsDiscarded) { if (destructuringNeedsFlattening(node.left)) { return ts.flattenDestructuringAssignment(node, visitor, context, 0 /* FlattenLevel.All */, !valueIsDiscarded, createAllExportExpressions); } return ts.visitEachChild(node, visitor, context); } function visitForStatement(node) { return factory.updateForStatement(node, ts.visitNode(node.initializer, discardedValueVisitor, ts.isForInitializer), ts.visitNode(node.condition, visitor, ts.isExpression), ts.visitNode(node.incrementor, discardedValueVisitor, ts.isExpression), ts.visitIterationBody(node.statement, visitor, context)); } function visitExpressionStatement(node) { return factory.updateExpressionStatement(node, ts.visitNode(node.expression, discardedValueVisitor, ts.isExpression)); } function visitParenthesizedExpression(node, valueIsDiscarded) { return factory.updateParenthesizedExpression(node, ts.visitNode(node.expression, valueIsDiscarded ? discardedValueVisitor : visitor, ts.isExpression)); } function visitPartiallyEmittedExpression(node, valueIsDiscarded) { return factory.updatePartiallyEmittedExpression(node, ts.visitNode(node.expression, valueIsDiscarded ? discardedValueVisitor : visitor, ts.isExpression)); } function visitPreOrPostfixUnaryExpression(node, valueIsDiscarded) { // When we see a prefix or postfix increment expression whose operand is an exported // symbol, we should ensure all exports of that symbol are updated with the correct // value. // // - We do not transform generated identifiers for any reason. // - We do not transform identifiers tagged with the LocalName flag. // - We do not transform identifiers that were originally the name of an enum or // namespace due to how they are transformed in TypeScript. // - We only transform identifiers that are exported at the top level. if ((node.operator === 45 /* SyntaxKind.PlusPlusToken */ || node.operator === 46 /* SyntaxKind.MinusMinusToken */) && ts.isIdentifier(node.operand) && !ts.isGeneratedIdentifier(node.operand) && !ts.isLocalName(node.operand) && !ts.isDeclarationNameOfEnumOrNamespace(node.operand)) { var exportedNames = getExports(node.operand); if (exportedNames) { var temp = void 0; var expression = ts.visitNode(node.operand, visitor, ts.isExpression); if (ts.isPrefixUnaryExpression(node)) { expression = factory.updatePrefixUnaryExpression(node, expression); } else { expression = factory.updatePostfixUnaryExpression(node, expression); if (!valueIsDiscarded) { temp = factory.createTempVariable(hoistVariableDeclaration); expression = factory.createAssignment(temp, expression); ts.setTextRange(expression, node); } expression = factory.createComma(expression, factory.cloneNode(node.operand)); ts.setTextRange(expression, node); } for (var _i = 0, exportedNames_1 = exportedNames; _i < exportedNames_1.length; _i++) { var exportName = exportedNames_1[_i]; noSubstitution[ts.getNodeId(expression)] = true; expression = createExportExpression(exportName, expression); ts.setTextRange(expression, node); } if (temp) { noSubstitution[ts.getNodeId(expression)] = true; expression = factory.createComma(expression, temp); ts.setTextRange(expression, node); } return expression; } } return ts.visitEachChild(node, visitor, context); } function visitImportCallExpression(node) { var externalModuleName = ts.getExternalModuleNameLiteral(factory, node, currentSourceFile, host, resolver, compilerOptions); var firstArgument = ts.visitNode(ts.firstOrUndefined(node.arguments), visitor); // Only use the external module name if it differs from the first argument. This allows us to preserve the quote style of the argument on output. var argument = externalModuleName && (!firstArgument || !ts.isStringLiteral(firstArgument) || firstArgument.text !== externalModuleName.text) ? externalModuleName : firstArgument; var containsLexicalThis = !!(node.transformFlags & 8192 /* TransformFlags.ContainsLexicalThis */); switch (compilerOptions.module) { case ts.ModuleKind.AMD: return createImportCallExpressionAMD(argument, containsLexicalThis); case ts.ModuleKind.UMD: return createImportCallExpressionUMD(argument !== null && argument !== void 0 ? argument : factory.createVoidZero(), containsLexicalThis); case ts.ModuleKind.CommonJS: default: return createImportCallExpressionCommonJS(argument, containsLexicalThis); } } function createImportCallExpressionUMD(arg, containsLexicalThis) { // (function (factory) { // ... (regular UMD) // } // })(function (require, exports, useSyncRequire) { // "use strict"; // Object.defineProperty(exports, "__esModule", { value: true }); // var __syncRequire = typeof module === "object" && typeof module.exports === "object"; // var __resolved = new Promise(function (resolve) { resolve(); }); // ..... // __syncRequire // ? __resolved.then(function () { return require(x); }) /*CommonJs Require*/ // : new Promise(function (_a, _b) { require([x], _a, _b); }); /*Amd Require*/ // }); needUMDDynamicImportHelper = true; if (ts.isSimpleCopiableExpression(arg)) { var argClone = ts.isGeneratedIdentifier(arg) ? arg : ts.isStringLiteral(arg) ? factory.createStringLiteralFromNode(arg) : ts.setEmitFlags(ts.setTextRange(factory.cloneNode(arg), arg), 1536 /* EmitFlags.NoComments */); return factory.createConditionalExpression( /*condition*/ factory.createIdentifier("__syncRequire"), /*questionToken*/ undefined, /*whenTrue*/ createImportCallExpressionCommonJS(arg, containsLexicalThis), /*colonToken*/ undefined, /*whenFalse*/ createImportCallExpressionAMD(argClone, containsLexicalThis)); } else { var temp = factory.createTempVariable(hoistVariableDeclaration); return factory.createComma(factory.createAssignment(temp, arg), factory.createConditionalExpression( /*condition*/ factory.createIdentifier("__syncRequire"), /*questionToken*/ undefined, /*whenTrue*/ createImportCallExpressionCommonJS(temp, containsLexicalThis), /*colonToken*/ undefined, /*whenFalse*/ createImportCallExpressionAMD(temp, containsLexicalThis))); } } function createImportCallExpressionAMD(arg, containsLexicalThis) { // improt("./blah") // emit as // define(["require", "exports", "blah"], function (require, exports) { // ... // new Promise(function (_a, _b) { require([x], _a, _b); }); /*Amd Require*/ // }); var resolve = factory.createUniqueName("resolve"); var reject = factory.createUniqueName("reject"); var parameters = [ factory.createParameterDeclaration(/*decorator*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, /*name*/ resolve), factory.createParameterDeclaration(/*decorator*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, /*name*/ reject) ]; var body = factory.createBlock([ factory.createExpressionStatement(factory.createCallExpression(factory.createIdentifier("require"), /*typeArguments*/ undefined, [factory.createArrayLiteralExpression([arg || factory.createOmittedExpression()]), resolve, reject])) ]); var func; if (languageVersion >= 2 /* ScriptTarget.ES2015 */) { func = factory.createArrowFunction( /*modifiers*/ undefined, /*typeParameters*/ undefined, parameters, /*type*/ undefined, /*equalsGreaterThanToken*/ undefined, body); } else { func = factory.createFunctionExpression( /*modifiers*/ undefined, /*asteriskToken*/ undefined, /*name*/ undefined, /*typeParameters*/ undefined, parameters, /*type*/ undefined, body); // if there is a lexical 'this' in the import call arguments, ensure we indicate // that this new function expression indicates it captures 'this' so that the // es2015 transformer will properly substitute 'this' with '_this'. if (containsLexicalThis) { ts.setEmitFlags(func, 8 /* EmitFlags.CapturesThis */); } } var promise = factory.createNewExpression(factory.createIdentifier("Promise"), /*typeArguments*/ undefined, [func]); if (ts.getESModuleInterop(compilerOptions)) { return factory.createCallExpression(factory.createPropertyAccessExpression(promise, factory.createIdentifier("then")), /*typeArguments*/ undefined, [emitHelpers().createImportStarCallbackHelper()]); } return promise; } function createImportCallExpressionCommonJS(arg, containsLexicalThis) { // import("./blah") // emit as // Promise.resolve().then(function () { return require(x); }) /*CommonJs Require*/ // We have to wrap require in then callback so that require is done in asynchronously // if we simply do require in resolve callback in Promise constructor. We will execute the loading immediately var promiseResolveCall = factory.createCallExpression(factory.createPropertyAccessExpression(factory.createIdentifier("Promise"), "resolve"), /*typeArguments*/ undefined, /*argumentsArray*/ []); var requireCall = factory.createCallExpression(factory.createIdentifier("require"), /*typeArguments*/ undefined, arg ? [arg] : []); if (ts.getESModuleInterop(compilerOptions)) { requireCall = emitHelpers().createImportStarHelper(requireCall); } var func; if (languageVersion >= 2 /* ScriptTarget.ES2015 */) { func = factory.createArrowFunction( /*modifiers*/ undefined, /*typeParameters*/ undefined, /*parameters*/ [], /*type*/ undefined, /*equalsGreaterThanToken*/ undefined, requireCall); } else { func = factory.createFunctionExpression( /*modifiers*/ undefined, /*asteriskToken*/ undefined, /*name*/ undefined, /*typeParameters*/ undefined, /*parameters*/ [], /*type*/ undefined, factory.createBlock([factory.createReturnStatement(requireCall)])); // if there is a lexical 'this' in the import call arguments, ensure we indicate // that this new function expression indicates it captures 'this' so that the // es2015 transformer will properly substitute 'this' with '_this'. if (containsLexicalThis) { ts.setEmitFlags(func, 8 /* EmitFlags.CapturesThis */); } } return factory.createCallExpression(factory.createPropertyAccessExpression(promiseResolveCall, "then"), /*typeArguments*/ undefined, [func]); } function getHelperExpressionForExport(node, innerExpr) { if (!ts.getESModuleInterop(compilerOptions) || ts.getEmitFlags(node) & 67108864 /* EmitFlags.NeverApplyImportHelper */) { return innerExpr; } if (ts.getExportNeedsImportStarHelper(node)) { return emitHelpers().createImportStarHelper(innerExpr); } return innerExpr; } function getHelperExpressionForImport(node, innerExpr) { if (!ts.getESModuleInterop(compilerOptions) || ts.getEmitFlags(node) & 67108864 /* EmitFlags.NeverApplyImportHelper */) { return innerExpr; } if (ts.getImportNeedsImportStarHelper(node)) { return emitHelpers().createImportStarHelper(innerExpr); } if (ts.getImportNeedsImportDefaultHelper(node)) { return emitHelpers().createImportDefaultHelper(innerExpr); } return innerExpr; } /** * Visits an ImportDeclaration node. * * @param node The node to visit. */ function visitImportDeclaration(node) { var statements; var namespaceDeclaration = ts.getNamespaceDeclarationNode(node); if (moduleKind !== ts.ModuleKind.AMD) { if (!node.importClause) { // import "mod"; return ts.setOriginalNode(ts.setTextRange(factory.createExpressionStatement(createRequireCall(node)), node), node); } else { var variables = []; if (namespaceDeclaration && !ts.isDefaultImport(node)) { // import * as n from "mod"; variables.push(factory.createVariableDeclaration(factory.cloneNode(namespaceDeclaration.name), /*exclamationToken*/ undefined, /*type*/ undefined, getHelperExpressionForImport(node, createRequireCall(node)))); } else { // import d from "mod"; // import { x, y } from "mod"; // import d, { x, y } from "mod"; // import d, * as n from "mod"; variables.push(factory.createVariableDeclaration(factory.getGeneratedNameForNode(node), /*exclamationToken*/ undefined, /*type*/ undefined, getHelperExpressionForImport(node, createRequireCall(node)))); if (namespaceDeclaration && ts.isDefaultImport(node)) { variables.push(factory.createVariableDeclaration(factory.cloneNode(namespaceDeclaration.name), /*exclamationToken*/ undefined, /*type*/ undefined, factory.getGeneratedNameForNode(node))); } } statements = ts.append(statements, ts.setOriginalNode(ts.setTextRange(factory.createVariableStatement( /*modifiers*/ undefined, factory.createVariableDeclarationList(variables, languageVersion >= 2 /* ScriptTarget.ES2015 */ ? 2 /* NodeFlags.Const */ : 0 /* NodeFlags.None */)), /*location*/ node), /*original*/ node)); } } else if (namespaceDeclaration && ts.isDefaultImport(node)) { // import d, * as n from "mod"; statements = ts.append(statements, factory.createVariableStatement( /*modifiers*/ undefined, factory.createVariableDeclarationList([ ts.setOriginalNode(ts.setTextRange(factory.createVariableDeclaration(factory.cloneNode(namespaceDeclaration.name), /*exclamationToken*/ undefined, /*type*/ undefined, factory.getGeneratedNameForNode(node)), /*location*/ node), /*original*/ node) ], languageVersion >= 2 /* ScriptTarget.ES2015 */ ? 2 /* NodeFlags.Const */ : 0 /* NodeFlags.None */))); } if (hasAssociatedEndOfDeclarationMarker(node)) { // Defer exports until we encounter an EndOfDeclarationMarker node var id = ts.getOriginalNodeId(node); deferredExports[id] = appendExportsOfImportDeclaration(deferredExports[id], node); } else { statements = appendExportsOfImportDeclaration(statements, node); } return ts.singleOrMany(statements); } /** * Creates a `require()` call to import an external module. * * @param importNode The declararation to import. */ function createRequireCall(importNode) { var moduleName = ts.getExternalModuleNameLiteral(factory, importNode, currentSourceFile, host, resolver, compilerOptions); var args = []; if (moduleName) { args.push(moduleName); } return factory.createCallExpression(factory.createIdentifier("require"), /*typeArguments*/ undefined, args); } /** * Visits an ImportEqualsDeclaration node. * * @param node The node to visit. */ function visitImportEqualsDeclaration(node) { ts.Debug.assert(ts.isExternalModuleImportEqualsDeclaration(node), "import= for internal module references should be handled in an earlier transformer."); var statements; if (moduleKind !== ts.ModuleKind.AMD) { if (ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */)) { statements = ts.append(statements, ts.setOriginalNode(ts.setTextRange(factory.createExpressionStatement(createExportExpression(node.name, createRequireCall(node))), node), node)); } else { statements = ts.append(statements, ts.setOriginalNode(ts.setTextRange(factory.createVariableStatement( /*modifiers*/ undefined, factory.createVariableDeclarationList([ factory.createVariableDeclaration(factory.cloneNode(node.name), /*exclamationToken*/ undefined, /*type*/ undefined, createRequireCall(node)) ], /*flags*/ languageVersion >= 2 /* ScriptTarget.ES2015 */ ? 2 /* NodeFlags.Const */ : 0 /* NodeFlags.None */)), node), node)); } } else { if (ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */)) { statements = ts.append(statements, ts.setOriginalNode(ts.setTextRange(factory.createExpressionStatement(createExportExpression(factory.getExportName(node), factory.getLocalName(node))), node), node)); } } if (hasAssociatedEndOfDeclarationMarker(node)) { // Defer exports until we encounter an EndOfDeclarationMarker node var id = ts.getOriginalNodeId(node); deferredExports[id] = appendExportsOfImportEqualsDeclaration(deferredExports[id], node); } else { statements = appendExportsOfImportEqualsDeclaration(statements, node); } return ts.singleOrMany(statements); } /** * Visits an ExportDeclaration node. * * @param The node to visit. */ function visitExportDeclaration(node) { if (!node.moduleSpecifier) { // Elide export declarations with no module specifier as they are handled // elsewhere. return undefined; } var generatedName = factory.getGeneratedNameForNode(node); if (node.exportClause && ts.isNamedExports(node.exportClause)) { var statements = []; // export { x, y } from "mod"; if (moduleKind !== ts.ModuleKind.AMD) { statements.push(ts.setOriginalNode(ts.setTextRange(factory.createVariableStatement( /*modifiers*/ undefined, factory.createVariableDeclarationList([ factory.createVariableDeclaration(generatedName, /*exclamationToken*/ undefined, /*type*/ undefined, createRequireCall(node)) ])), /*location*/ node), /* original */ node)); } for (var _i = 0, _a = node.exportClause.elements; _i < _a.length; _i++) { var specifier = _a[_i]; if (languageVersion === 0 /* ScriptTarget.ES3 */) { statements.push(ts.setOriginalNode(ts.setTextRange(factory.createExpressionStatement(emitHelpers().createCreateBindingHelper(generatedName, factory.createStringLiteralFromNode(specifier.propertyName || specifier.name), specifier.propertyName ? factory.createStringLiteralFromNode(specifier.name) : undefined)), specifier), specifier)); } else { var exportNeedsImportDefault = !!ts.getESModuleInterop(compilerOptions) && !(ts.getEmitFlags(node) & 67108864 /* EmitFlags.NeverApplyImportHelper */) && ts.idText(specifier.propertyName || specifier.name) === "default"; var exportedValue = factory.createPropertyAccessExpression(exportNeedsImportDefault ? emitHelpers().createImportDefaultHelper(generatedName) : generatedName, specifier.propertyName || specifier.name); statements.push(ts.setOriginalNode(ts.setTextRange(factory.createExpressionStatement(createExportExpression(factory.getExportName(specifier), exportedValue, /* location */ undefined, /* liveBinding */ true)), specifier), specifier)); } } return ts.singleOrMany(statements); } else if (node.exportClause) { var statements = []; // export * as ns from "mod"; // export * as default from "mod"; statements.push(ts.setOriginalNode(ts.setTextRange(factory.createExpressionStatement(createExportExpression(factory.cloneNode(node.exportClause.name), getHelperExpressionForExport(node, moduleKind !== ts.ModuleKind.AMD ? createRequireCall(node) : ts.isExportNamespaceAsDefaultDeclaration(node) ? generatedName : factory.createIdentifier(ts.idText(node.exportClause.name))))), node), node)); return ts.singleOrMany(statements); } else { // export * from "mod"; return ts.setOriginalNode(ts.setTextRange(factory.createExpressionStatement(emitHelpers().createExportStarHelper(moduleKind !== ts.ModuleKind.AMD ? createRequireCall(node) : generatedName)), node), node); } } /** * Visits an ExportAssignment node. * * @param node The node to visit. */ function visitExportAssignment(node) { if (node.isExportEquals) { return undefined; } var statements; var original = node.original; if (original && hasAssociatedEndOfDeclarationMarker(original)) { // Defer exports until we encounter an EndOfDeclarationMarker node var id = ts.getOriginalNodeId(node); deferredExports[id] = appendExportStatement(deferredExports[id], factory.createIdentifier("default"), ts.visitNode(node.expression, visitor), /*location*/ node, /*allowComments*/ true); } else { statements = appendExportStatement(statements, factory.createIdentifier("default"), ts.visitNode(node.expression, visitor), /*location*/ node, /*allowComments*/ true); } return ts.singleOrMany(statements); } /** * Visits a FunctionDeclaration node. * * @param node The node to visit. */ function visitFunctionDeclaration(node) { var statements; if (ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */)) { statements = ts.append(statements, ts.setOriginalNode(ts.setTextRange(factory.createFunctionDeclaration( /*decorators*/ undefined, ts.visitNodes(node.modifiers, modifierVisitor, ts.isModifier), node.asteriskToken, factory.getDeclarationName(node, /*allowComments*/ true, /*allowSourceMaps*/ true), /*typeParameters*/ undefined, ts.visitNodes(node.parameters, visitor), /*type*/ undefined, ts.visitEachChild(node.body, visitor, context)), /*location*/ node), /*original*/ node)); } else { statements = ts.append(statements, ts.visitEachChild(node, visitor, context)); } if (hasAssociatedEndOfDeclarationMarker(node)) { // Defer exports until we encounter an EndOfDeclarationMarker node var id = ts.getOriginalNodeId(node); deferredExports[id] = appendExportsOfHoistedDeclaration(deferredExports[id], node); } else { statements = appendExportsOfHoistedDeclaration(statements, node); } return ts.singleOrMany(statements); } /** * Visits a ClassDeclaration node. * * @param node The node to visit. */ function visitClassDeclaration(node) { var statements; if (ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */)) { statements = ts.append(statements, ts.setOriginalNode(ts.setTextRange(factory.createClassDeclaration( /*decorators*/ undefined, ts.visitNodes(node.modifiers, modifierVisitor, ts.isModifier), factory.getDeclarationName(node, /*allowComments*/ true, /*allowSourceMaps*/ true), /*typeParameters*/ undefined, ts.visitNodes(node.heritageClauses, visitor), ts.visitNodes(node.members, visitor)), node), node)); } else { statements = ts.append(statements, ts.visitEachChild(node, visitor, context)); } if (hasAssociatedEndOfDeclarationMarker(node)) { // Defer exports until we encounter an EndOfDeclarationMarker node var id = ts.getOriginalNodeId(node); deferredExports[id] = appendExportsOfHoistedDeclaration(deferredExports[id], node); } else { statements = appendExportsOfHoistedDeclaration(statements, node); } return ts.singleOrMany(statements); } /** * Visits a VariableStatement node. * * @param node The node to visit. */ function visitVariableStatement(node) { var statements; var variables; var expressions; if (ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */)) { var modifiers = void 0; var removeCommentsOnExpressions = false; // If we're exporting these variables, then these just become assignments to 'exports.x'. for (var _i = 0, _a = node.declarationList.declarations; _i < _a.length; _i++) { var variable = _a[_i]; if (ts.isIdentifier(variable.name) && ts.isLocalName(variable.name)) { if (!modifiers) { modifiers = ts.visitNodes(node.modifiers, modifierVisitor, ts.isModifier); } variables = ts.append(variables, variable); } else if (variable.initializer) { if (!ts.isBindingPattern(variable.name) && (ts.isArrowFunction(variable.initializer) || ts.isFunctionExpression(variable.initializer) || ts.isClassExpression(variable.initializer))) { var expression = factory.createAssignment(ts.setTextRange(factory.createPropertyAccessExpression(factory.createIdentifier("exports"), variable.name), /*location*/ variable.name), factory.createIdentifier(ts.getTextOfIdentifierOrLiteral(variable.name))); var updatedVariable = factory.createVariableDeclaration(variable.name, variable.exclamationToken, variable.type, ts.visitNode(variable.initializer, visitor)); variables = ts.append(variables, updatedVariable); expressions = ts.append(expressions, expression); removeCommentsOnExpressions = true; } else { expressions = ts.append(expressions, transformInitializedVariable(variable)); } } } if (variables) { statements = ts.append(statements, factory.updateVariableStatement(node, modifiers, factory.updateVariableDeclarationList(node.declarationList, variables))); } if (expressions) { var statement = ts.setOriginalNode(ts.setTextRange(factory.createExpressionStatement(factory.inlineExpressions(expressions)), node), node); if (removeCommentsOnExpressions) { ts.removeAllComments(statement); } statements = ts.append(statements, statement); } } else { statements = ts.append(statements, ts.visitEachChild(node, visitor, context)); } if (hasAssociatedEndOfDeclarationMarker(node)) { // Defer exports until we encounter an EndOfDeclarationMarker node var id = ts.getOriginalNodeId(node); deferredExports[id] = appendExportsOfVariableStatement(deferredExports[id], node); } else { statements = appendExportsOfVariableStatement(statements, node); } return ts.singleOrMany(statements); } function createAllExportExpressions(name, value, location) { var exportedNames = getExports(name); if (exportedNames) { // For each additional export of the declaration, apply an export assignment. var expression = ts.isExportName(name) ? value : factory.createAssignment(name, value); for (var _i = 0, exportedNames_2 = exportedNames; _i < exportedNames_2.length; _i++) { var exportName = exportedNames_2[_i]; // Mark the node to prevent triggering substitution. ts.setEmitFlags(expression, 4 /* EmitFlags.NoSubstitution */); expression = createExportExpression(exportName, expression, /*location*/ location); } return expression; } return factory.createAssignment(name, value); } /** * Transforms an exported variable with an initializer into an expression. * * @param node The node to transform. */ function transformInitializedVariable(node) { if (ts.isBindingPattern(node.name)) { return ts.flattenDestructuringAssignment(ts.visitNode(node, visitor), /*visitor*/ undefined, context, 0 /* FlattenLevel.All */, /*needsValue*/ false, createAllExportExpressions); } else { return factory.createAssignment(ts.setTextRange(factory.createPropertyAccessExpression(factory.createIdentifier("exports"), node.name), /*location*/ node.name), node.initializer ? ts.visitNode(node.initializer, visitor) : factory.createVoidZero()); } } /** * Visits a MergeDeclarationMarker used as a placeholder for the beginning of a merged * and transformed declaration. * * @param node The node to visit. */ function visitMergeDeclarationMarker(node) { // For an EnumDeclaration or ModuleDeclaration that merges with a preceeding // declaration we do not emit a leading variable declaration. To preserve the // begin/end semantics of the declararation and to properly handle exports // we wrapped the leading variable declaration in a `MergeDeclarationMarker`. // // To balance the declaration, add the exports of the elided variable // statement. if (hasAssociatedEndOfDeclarationMarker(node) && node.original.kind === 237 /* SyntaxKind.VariableStatement */) { var id = ts.getOriginalNodeId(node); deferredExports[id] = appendExportsOfVariableStatement(deferredExports[id], node.original); } return node; } /** * Determines whether a node has an associated EndOfDeclarationMarker. * * @param node The node to test. */ function hasAssociatedEndOfDeclarationMarker(node) { return (ts.getEmitFlags(node) & 4194304 /* EmitFlags.HasEndOfDeclarationMarker */) !== 0; } /** * Visits a DeclarationMarker used as a placeholder for the end of a transformed * declaration. * * @param node The node to visit. */ function visitEndOfDeclarationMarker(node) { // For some transformations we emit an `EndOfDeclarationMarker` to mark the actual // end of the transformed declaration. We use this marker to emit any deferred exports // of the declaration. var id = ts.getOriginalNodeId(node); var statements = deferredExports[id]; if (statements) { delete deferredExports[id]; return ts.append(statements, node); } return node; } /** * Appends the exports of an ImportDeclaration to a statement list, returning the * statement list. * * @param statements A statement list to which the down-level export statements are to be * appended. If `statements` is `undefined`, a new array is allocated if statements are * appended. * @param decl The declaration whose exports are to be recorded. */ function appendExportsOfImportDeclaration(statements, decl) { if (currentModuleInfo.exportEquals) { return statements; } var importClause = decl.importClause; if (!importClause) { return statements; } if (importClause.name) { statements = appendExportsOfDeclaration(statements, importClause); } var namedBindings = importClause.namedBindings; if (namedBindings) { switch (namedBindings.kind) { case 268 /* SyntaxKind.NamespaceImport */: statements = appendExportsOfDeclaration(statements, namedBindings); break; case 269 /* SyntaxKind.NamedImports */: for (var _i = 0, _a = namedBindings.elements; _i < _a.length; _i++) { var importBinding = _a[_i]; statements = appendExportsOfDeclaration(statements, importBinding, /* liveBinding */ true); } break; } } return statements; } /** * Appends the exports of an ImportEqualsDeclaration to a statement list, returning the * statement list. * * @param statements A statement list to which the down-level export statements are to be * appended. If `statements` is `undefined`, a new array is allocated if statements are * appended. * @param decl The declaration whose exports are to be recorded. */ function appendExportsOfImportEqualsDeclaration(statements, decl) { if (currentModuleInfo.exportEquals) { return statements; } return appendExportsOfDeclaration(statements, decl); } /** * Appends the exports of a VariableStatement to a statement list, returning the statement * list. * * @param statements A statement list to which the down-level export statements are to be * appended. If `statements` is `undefined`, a new array is allocated if statements are * appended. * @param node The VariableStatement whose exports are to be recorded. */ function appendExportsOfVariableStatement(statements, node) { if (currentModuleInfo.exportEquals) { return statements; } for (var _i = 0, _a = node.declarationList.declarations; _i < _a.length; _i++) { var decl = _a[_i]; statements = appendExportsOfBindingElement(statements, decl); } return statements; } /** * Appends the exports of a VariableDeclaration or BindingElement to a statement list, * returning the statement list. * * @param statements A statement list to which the down-level export statements are to be * appended. If `statements` is `undefined`, a new array is allocated if statements are * appended. * @param decl The declaration whose exports are to be recorded. */ function appendExportsOfBindingElement(statements, decl) { if (currentModuleInfo.exportEquals) { return statements; } if (ts.isBindingPattern(decl.name)) { for (var _i = 0, _a = decl.name.elements; _i < _a.length; _i++) { var element = _a[_i]; if (!ts.isOmittedExpression(element)) { statements = appendExportsOfBindingElement(statements, element); } } } else if (!ts.isGeneratedIdentifier(decl.name)) { statements = appendExportsOfDeclaration(statements, decl); } return statements; } /** * Appends the exports of a ClassDeclaration or FunctionDeclaration to a statement list, * returning the statement list. * * @param statements A statement list to which the down-level export statements are to be * appended. If `statements` is `undefined`, a new array is allocated if statements are * appended. * @param decl The declaration whose exports are to be recorded. */ function appendExportsOfHoistedDeclaration(statements, decl) { if (currentModuleInfo.exportEquals) { return statements; } if (ts.hasSyntacticModifier(decl, 1 /* ModifierFlags.Export */)) { var exportName = ts.hasSyntacticModifier(decl, 512 /* ModifierFlags.Default */) ? factory.createIdentifier("default") : factory.getDeclarationName(decl); statements = appendExportStatement(statements, exportName, factory.getLocalName(decl), /*location*/ decl); } if (decl.name) { statements = appendExportsOfDeclaration(statements, decl); } return statements; } /** * Appends the exports of a declaration to a statement list, returning the statement list. * * @param statements A statement list to which the down-level export statements are to be * appended. If `statements` is `undefined`, a new array is allocated if statements are * appended. * @param decl The declaration to export. */ function appendExportsOfDeclaration(statements, decl, liveBinding) { var name = factory.getDeclarationName(decl); var exportSpecifiers = currentModuleInfo.exportSpecifiers.get(ts.idText(name)); if (exportSpecifiers) { for (var _i = 0, exportSpecifiers_1 = exportSpecifiers; _i < exportSpecifiers_1.length; _i++) { var exportSpecifier = exportSpecifiers_1[_i]; statements = appendExportStatement(statements, exportSpecifier.name, name, /*location*/ exportSpecifier.name, /* allowComments */ undefined, liveBinding); } } return statements; } /** * Appends the down-level representation of an export to a statement list, returning the * statement list. * * @param statements A statement list to which the down-level export statements are to be * appended. If `statements` is `undefined`, a new array is allocated if statements are * appended. * @param exportName The name of the export. * @param expression The expression to export. * @param location The location to use for source maps and comments for the export. * @param allowComments Whether to allow comments on the export. */ function appendExportStatement(statements, exportName, expression, location, allowComments, liveBinding) { statements = ts.append(statements, createExportStatement(exportName, expression, location, allowComments, liveBinding)); return statements; } function createUnderscoreUnderscoreESModule() { var statement; if (languageVersion === 0 /* ScriptTarget.ES3 */) { statement = factory.createExpressionStatement(createExportExpression(factory.createIdentifier("__esModule"), factory.createTrue())); } else { statement = factory.createExpressionStatement(factory.createCallExpression(factory.createPropertyAccessExpression(factory.createIdentifier("Object"), "defineProperty"), /*typeArguments*/ undefined, [ factory.createIdentifier("exports"), factory.createStringLiteral("__esModule"), factory.createObjectLiteralExpression([ factory.createPropertyAssignment("value", factory.createTrue()) ]) ])); } ts.setEmitFlags(statement, 1048576 /* EmitFlags.CustomPrologue */); return statement; } /** * Creates a call to the current file's export function to export a value. * * @param name The bound name of the export. * @param value The exported value. * @param location The location to use for source maps and comments for the export. * @param allowComments An optional value indicating whether to emit comments for the statement. */ function createExportStatement(name, value, location, allowComments, liveBinding) { var statement = ts.setTextRange(factory.createExpressionStatement(createExportExpression(name, value, /* location */ undefined, liveBinding)), location); ts.startOnNewLine(statement); if (!allowComments) { ts.setEmitFlags(statement, 1536 /* EmitFlags.NoComments */); } return statement; } /** * Creates a call to the current file's export function to export a value. * * @param name The bound name of the export. * @param value The exported value. * @param location The location to use for source maps and comments for the export. */ function createExportExpression(name, value, location, liveBinding) { return ts.setTextRange(liveBinding && languageVersion !== 0 /* ScriptTarget.ES3 */ ? factory.createCallExpression(factory.createPropertyAccessExpression(factory.createIdentifier("Object"), "defineProperty"), /*typeArguments*/ undefined, [ factory.createIdentifier("exports"), factory.createStringLiteralFromNode(name), factory.createObjectLiteralExpression([ factory.createPropertyAssignment("enumerable", factory.createTrue()), factory.createPropertyAssignment("get", factory.createFunctionExpression( /*modifiers*/ undefined, /*asteriskToken*/ undefined, /*name*/ undefined, /*typeParameters*/ undefined, /*parameters*/ [], /*type*/ undefined, factory.createBlock([factory.createReturnStatement(value)]))) ]) ]) : factory.createAssignment(factory.createPropertyAccessExpression(factory.createIdentifier("exports"), factory.cloneNode(name)), value), location); } // // Modifier Visitors // /** * Visit nodes to elide module-specific modifiers. * * @param node The node to visit. */ function modifierVisitor(node) { // Elide module-specific modifiers. switch (node.kind) { case 93 /* SyntaxKind.ExportKeyword */: case 88 /* SyntaxKind.DefaultKeyword */: return undefined; } return node; } // // Emit Notification // /** * Hook for node emit notifications. * * @param hint A hint as to the intended usage of the node. * @param node The node to emit. * @param emit A callback used to emit the node in the printer. */ function onEmitNode(hint, node, emitCallback) { if (node.kind === 305 /* SyntaxKind.SourceFile */) { currentSourceFile = node; currentModuleInfo = moduleInfoMap[ts.getOriginalNodeId(currentSourceFile)]; previousOnEmitNode(hint, node, emitCallback); currentSourceFile = undefined; currentModuleInfo = undefined; } else { previousOnEmitNode(hint, node, emitCallback); } } // // Substitutions // /** * Hooks node substitutions. * * @param hint A hint as to the intended usage of the node. * @param node The node to substitute. */ function onSubstituteNode(hint, node) { node = previousOnSubstituteNode(hint, node); if (node.id && noSubstitution[node.id]) { return node; } if (hint === 1 /* EmitHint.Expression */) { return substituteExpression(node); } else if (ts.isShorthandPropertyAssignment(node)) { return substituteShorthandPropertyAssignment(node); } return node; } /** * Substitution for a ShorthandPropertyAssignment whose declaration name is an imported * or exported symbol. * * @param node The node to substitute. */ function substituteShorthandPropertyAssignment(node) { var name = node.name; var exportedOrImportedName = substituteExpressionIdentifier(name); if (exportedOrImportedName !== name) { // A shorthand property with an assignment initializer is probably part of a // destructuring assignment if (node.objectAssignmentInitializer) { var initializer = factory.createAssignment(exportedOrImportedName, node.objectAssignmentInitializer); return ts.setTextRange(factory.createPropertyAssignment(name, initializer), node); } return ts.setTextRange(factory.createPropertyAssignment(name, exportedOrImportedName), node); } return node; } /** * Substitution for an Expression that may contain an imported or exported symbol. * * @param node The node to substitute. */ function substituteExpression(node) { switch (node.kind) { case 79 /* SyntaxKind.Identifier */: return substituteExpressionIdentifier(node); case 208 /* SyntaxKind.CallExpression */: return substituteCallExpression(node); case 210 /* SyntaxKind.TaggedTemplateExpression */: return substituteTaggedTemplateExpression(node); case 221 /* SyntaxKind.BinaryExpression */: return substituteBinaryExpression(node); } return node; } function substituteCallExpression(node) { if (ts.isIdentifier(node.expression)) { var expression = substituteExpressionIdentifier(node.expression); noSubstitution[ts.getNodeId(expression)] = true; if (!ts.isIdentifier(expression) && !(ts.getEmitFlags(node.expression) & 4096 /* EmitFlags.HelperName */)) { return ts.addEmitFlags(factory.updateCallExpression(node, expression, /*typeArguments*/ undefined, node.arguments), 536870912 /* EmitFlags.IndirectCall */); } } return node; } function substituteTaggedTemplateExpression(node) { if (ts.isIdentifier(node.tag)) { var tag = substituteExpressionIdentifier(node.tag); noSubstitution[ts.getNodeId(tag)] = true; if (!ts.isIdentifier(tag) && !(ts.getEmitFlags(node.tag) & 4096 /* EmitFlags.HelperName */)) { return ts.addEmitFlags(factory.updateTaggedTemplateExpression(node, tag, /*typeArguments*/ undefined, node.template), 536870912 /* EmitFlags.IndirectCall */); } } return node; } /** * Substitution for an Identifier expression that may contain an imported or exported * symbol. * * @param node The node to substitute. */ function substituteExpressionIdentifier(node) { var _a, _b; if (ts.getEmitFlags(node) & 4096 /* EmitFlags.HelperName */) { var externalHelpersModuleName = ts.getExternalHelpersModuleName(currentSourceFile); if (externalHelpersModuleName) { return factory.createPropertyAccessExpression(externalHelpersModuleName, node); } return node; } else if (!(ts.isGeneratedIdentifier(node) && !(node.autoGenerateFlags & 64 /* GeneratedIdentifierFlags.AllowNameSubstitution */)) && !ts.isLocalName(node)) { var exportContainer = resolver.getReferencedExportContainer(node, ts.isExportName(node)); if (exportContainer && exportContainer.kind === 305 /* SyntaxKind.SourceFile */) { return ts.setTextRange(factory.createPropertyAccessExpression(factory.createIdentifier("exports"), factory.cloneNode(node)), /*location*/ node); } var importDeclaration = resolver.getReferencedImportDeclaration(node); if (importDeclaration) { if (ts.isImportClause(importDeclaration)) { return ts.setTextRange(factory.createPropertyAccessExpression(factory.getGeneratedNameForNode(importDeclaration.parent), factory.createIdentifier("default")), /*location*/ node); } else if (ts.isImportSpecifier(importDeclaration)) { var name = importDeclaration.propertyName || importDeclaration.name; return ts.setTextRange(factory.createPropertyAccessExpression(factory.getGeneratedNameForNode(((_b = (_a = importDeclaration.parent) === null || _a === void 0 ? void 0 : _a.parent) === null || _b === void 0 ? void 0 : _b.parent) || importDeclaration), factory.cloneNode(name)), /*location*/ node); } } } return node; } /** * Substitution for a BinaryExpression that may contain an imported or exported symbol. * * @param node The node to substitute. */ function substituteBinaryExpression(node) { // When we see an assignment expression whose left-hand side is an exported symbol, // we should ensure all exports of that symbol are updated with the correct value. // // - We do not substitute generated identifiers for any reason. // - We do not substitute identifiers tagged with the LocalName flag. // - We do not substitute identifiers that were originally the name of an enum or // namespace due to how they are transformed in TypeScript. // - We only substitute identifiers that are exported at the top level. if (ts.isAssignmentOperator(node.operatorToken.kind) && ts.isIdentifier(node.left) && !ts.isGeneratedIdentifier(node.left) && !ts.isLocalName(node.left) && !ts.isDeclarationNameOfEnumOrNamespace(node.left)) { var exportedNames = getExports(node.left); if (exportedNames) { // For each additional export of the declaration, apply an export assignment. var expression = node; for (var _i = 0, exportedNames_3 = exportedNames; _i < exportedNames_3.length; _i++) { var exportName = exportedNames_3[_i]; // Mark the node to prevent triggering this rule again. noSubstitution[ts.getNodeId(expression)] = true; expression = createExportExpression(exportName, expression, /*location*/ node); } return expression; } } return node; } /** * Gets the additional exports of a name. * * @param name The name. */ function getExports(name) { if (!ts.isGeneratedIdentifier(name)) { var valueDeclaration = resolver.getReferencedImportDeclaration(name) || resolver.getReferencedValueDeclaration(name); if (valueDeclaration) { return currentModuleInfo && currentModuleInfo.exportedBindings[ts.getOriginalNodeId(valueDeclaration)]; } } } } ts.transformModule = transformModule; // emit helper for dynamic import var dynamicImportUMDHelper = { name: "typescript:dynamicimport-sync-require", scoped: true, text: "\n var __syncRequire = typeof module === \"object\" && typeof module.exports === \"object\";" }; })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { function transformSystemModule(context) { var factory = context.factory, startLexicalEnvironment = context.startLexicalEnvironment, endLexicalEnvironment = context.endLexicalEnvironment, hoistVariableDeclaration = context.hoistVariableDeclaration; var compilerOptions = context.getCompilerOptions(); var resolver = context.getEmitResolver(); var host = context.getEmitHost(); var previousOnSubstituteNode = context.onSubstituteNode; var previousOnEmitNode = context.onEmitNode; context.onSubstituteNode = onSubstituteNode; context.onEmitNode = onEmitNode; context.enableSubstitution(79 /* SyntaxKind.Identifier */); // Substitutes expression identifiers for imported symbols. context.enableSubstitution(297 /* SyntaxKind.ShorthandPropertyAssignment */); // Substitutes expression identifiers for imported symbols context.enableSubstitution(221 /* SyntaxKind.BinaryExpression */); // Substitutes assignments to exported symbols. context.enableSubstitution(231 /* SyntaxKind.MetaProperty */); // Substitutes 'import.meta' context.enableEmitNotification(305 /* SyntaxKind.SourceFile */); // Restore state when substituting nodes in a file. var moduleInfoMap = []; // The ExternalModuleInfo for each file. var deferredExports = []; // Exports to defer until an EndOfDeclarationMarker is found. var exportFunctionsMap = []; // The export function associated with a source file. var noSubstitutionMap = []; // Set of nodes for which substitution rules should be ignored for each file. var contextObjectMap = []; // The context object associated with a source file. var currentSourceFile; // The current file. var moduleInfo; // ExternalModuleInfo for the current file. var exportFunction; // The export function for the current file. var contextObject; // The context object for the current file. var hoistedStatements; var enclosingBlockScopedContainer; var noSubstitution; // Set of nodes for which substitution rules should be ignored. return ts.chainBundle(context, transformSourceFile); /** * Transforms the module aspects of a SourceFile. * * @param node The SourceFile node. */ function transformSourceFile(node) { if (node.isDeclarationFile || !(ts.isEffectiveExternalModule(node, compilerOptions) || node.transformFlags & 4194304 /* TransformFlags.ContainsDynamicImport */)) { return node; } var id = ts.getOriginalNodeId(node); currentSourceFile = node; enclosingBlockScopedContainer = node; // System modules have the following shape: // // System.register(['dep-1', ... 'dep-n'], function(exports) {/* module body function */}) // // The parameter 'exports' here is a callback '(name: string, value: T) => T' that // is used to publish exported values. 'exports' returns its 'value' argument so in // most cases expressions that mutate exported values can be rewritten as: // // expr -> exports('name', expr) // // The only exception in this rule is postfix unary operators, // see comment to 'substitutePostfixUnaryExpression' for more details // Collect information about the external module and dependency groups. moduleInfo = moduleInfoMap[id] = ts.collectExternalModuleInfo(context, node, resolver, compilerOptions); // Make sure that the name of the 'exports' function does not conflict with // existing identifiers. exportFunction = factory.createUniqueName("exports"); exportFunctionsMap[id] = exportFunction; contextObject = contextObjectMap[id] = factory.createUniqueName("context"); // Add the body of the module. var dependencyGroups = collectDependencyGroups(moduleInfo.externalImports); var moduleBodyBlock = createSystemModuleBody(node, dependencyGroups); var moduleBodyFunction = factory.createFunctionExpression( /*modifiers*/ undefined, /*asteriskToken*/ undefined, /*name*/ undefined, /*typeParameters*/ undefined, [ factory.createParameterDeclaration(/*decorators*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, exportFunction), factory.createParameterDeclaration(/*decorators*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, contextObject) ], /*type*/ undefined, moduleBodyBlock); // Write the call to `System.register` // Clear the emit-helpers flag for later passes since we'll have already used it in the module body // So the helper will be emit at the correct position instead of at the top of the source-file var moduleName = ts.tryGetModuleNameFromFile(factory, node, host, compilerOptions); var dependencies = factory.createArrayLiteralExpression(ts.map(dependencyGroups, function (dependencyGroup) { return dependencyGroup.name; })); var updated = ts.setEmitFlags(factory.updateSourceFile(node, ts.setTextRange(factory.createNodeArray([ factory.createExpressionStatement(factory.createCallExpression(factory.createPropertyAccessExpression(factory.createIdentifier("System"), "register"), /*typeArguments*/ undefined, moduleName ? [moduleName, dependencies, moduleBodyFunction] : [dependencies, moduleBodyFunction])) ]), node.statements)), 1024 /* EmitFlags.NoTrailingComments */); if (!ts.outFile(compilerOptions)) { ts.moveEmitHelpers(updated, moduleBodyBlock, function (helper) { return !helper.scoped; }); } if (noSubstitution) { noSubstitutionMap[id] = noSubstitution; noSubstitution = undefined; } currentSourceFile = undefined; moduleInfo = undefined; exportFunction = undefined; contextObject = undefined; hoistedStatements = undefined; enclosingBlockScopedContainer = undefined; return updated; } /** * Collects the dependency groups for this files imports. * * @param externalImports The imports for the file. */ function collectDependencyGroups(externalImports) { var groupIndices = new ts.Map(); var dependencyGroups = []; for (var _i = 0, externalImports_1 = externalImports; _i < externalImports_1.length; _i++) { var externalImport = externalImports_1[_i]; var externalModuleName = ts.getExternalModuleNameLiteral(factory, externalImport, currentSourceFile, host, resolver, compilerOptions); if (externalModuleName) { var text = externalModuleName.text; var groupIndex = groupIndices.get(text); if (groupIndex !== undefined) { // deduplicate/group entries in dependency list by the dependency name dependencyGroups[groupIndex].externalImports.push(externalImport); } else { groupIndices.set(text, dependencyGroups.length); dependencyGroups.push({ name: externalModuleName, externalImports: [externalImport] }); } } } return dependencyGroups; } /** * Adds the statements for the module body function for the source file. * * @param node The source file for the module. * @param dependencyGroups The grouped dependencies of the module. */ function createSystemModuleBody(node, dependencyGroups) { // Shape of the body in system modules: // // function (exports) { // // // // return { // setters: [ // // ], // execute: function() { // // } // } // // } // // i.e: // // import {x} from 'file1' // var y = 1; // export function foo() { return y + x(); } // console.log(y); // // Will be transformed to: // // function(exports) { // function foo() { return y + file_1.x(); } // exports("foo", foo); // var file_1, y; // return { // setters: [ // function(v) { file_1 = v } // ], // execute(): function() { // y = 1; // console.log(y); // } // }; // } var statements = []; // We start a new lexical environment in this function body, but *not* in the // body of the execute function. This allows us to emit temporary declarations // only in the outer module body and not in the inner one. startLexicalEnvironment(); // Add any prologue directives. var ensureUseStrict = ts.getStrictOptionValue(compilerOptions, "alwaysStrict") || (!compilerOptions.noImplicitUseStrict && ts.isExternalModule(currentSourceFile)); var statementOffset = factory.copyPrologue(node.statements, statements, ensureUseStrict, topLevelVisitor); // var __moduleName = context_1 && context_1.id; statements.push(factory.createVariableStatement( /*modifiers*/ undefined, factory.createVariableDeclarationList([ factory.createVariableDeclaration("__moduleName", /*exclamationToken*/ undefined, /*type*/ undefined, factory.createLogicalAnd(contextObject, factory.createPropertyAccessExpression(contextObject, "id"))) ]))); // Visit the synthetic external helpers import declaration if present ts.visitNode(moduleInfo.externalHelpersImportDeclaration, topLevelVisitor, ts.isStatement); // Visit the statements of the source file, emitting any transformations into // the `executeStatements` array. We do this *before* we fill the `setters` array // as we both emit transformations as well as aggregate some data used when creating // setters. This allows us to reduce the number of times we need to loop through the // statements of the source file. var executeStatements = ts.visitNodes(node.statements, topLevelVisitor, ts.isStatement, statementOffset); // Emit early exports for function declarations. ts.addRange(statements, hoistedStatements); // We emit hoisted variables early to align roughly with our previous emit output. // Two key differences in this approach are: // - Temporary variables will appear at the top rather than at the bottom of the file ts.insertStatementsAfterStandardPrologue(statements, endLexicalEnvironment()); var exportStarFunction = addExportStarIfNeeded(statements); // TODO: GH#18217 var modifiers = node.transformFlags & 1048576 /* TransformFlags.ContainsAwait */ ? factory.createModifiersFromModifierFlags(256 /* ModifierFlags.Async */) : undefined; var moduleObject = factory.createObjectLiteralExpression([ factory.createPropertyAssignment("setters", createSettersArray(exportStarFunction, dependencyGroups)), factory.createPropertyAssignment("execute", factory.createFunctionExpression(modifiers, /*asteriskToken*/ undefined, /*name*/ undefined, /*typeParameters*/ undefined, /*parameters*/ [], /*type*/ undefined, factory.createBlock(executeStatements, /*multiLine*/ true))) ], /*multiLine*/ true); statements.push(factory.createReturnStatement(moduleObject)); return factory.createBlock(statements, /*multiLine*/ true); } /** * Adds an exportStar function to a statement list if it is needed for the file. * * @param statements A statement list. */ function addExportStarIfNeeded(statements) { if (!moduleInfo.hasExportStarsToExportValues) { return; } // when resolving exports local exported entries/indirect exported entries in the module // should always win over entries with similar names that were added via star exports // to support this we store names of local/indirect exported entries in a set. // this set is used to filter names brought by star expors. // local names set should only be added if we have anything exported if (!moduleInfo.exportedNames && moduleInfo.exportSpecifiers.size === 0) { // no exported declarations (export var ...) or export specifiers (export {x}) // check if we have any non star export declarations. var hasExportDeclarationWithExportClause = false; for (var _i = 0, _a = moduleInfo.externalImports; _i < _a.length; _i++) { var externalImport = _a[_i]; if (externalImport.kind === 272 /* SyntaxKind.ExportDeclaration */ && externalImport.exportClause) { hasExportDeclarationWithExportClause = true; break; } } if (!hasExportDeclarationWithExportClause) { // we still need to emit exportStar helper var exportStarFunction_1 = createExportStarFunction(/*localNames*/ undefined); statements.push(exportStarFunction_1); return exportStarFunction_1.name; } } var exportedNames = []; if (moduleInfo.exportedNames) { for (var _b = 0, _c = moduleInfo.exportedNames; _b < _c.length; _b++) { var exportedLocalName = _c[_b]; if (exportedLocalName.escapedText === "default") { continue; } // write name of exported declaration, i.e 'export var x...' exportedNames.push(factory.createPropertyAssignment(factory.createStringLiteralFromNode(exportedLocalName), factory.createTrue())); } } var exportedNamesStorageRef = factory.createUniqueName("exportedNames"); statements.push(factory.createVariableStatement( /*modifiers*/ undefined, factory.createVariableDeclarationList([ factory.createVariableDeclaration(exportedNamesStorageRef, /*exclamationToken*/ undefined, /*type*/ undefined, factory.createObjectLiteralExpression(exportedNames, /*multiline*/ true)) ]))); var exportStarFunction = createExportStarFunction(exportedNamesStorageRef); statements.push(exportStarFunction); return exportStarFunction.name; } /** * Creates an exportStar function for the file, with an optional set of excluded local * names. * * @param localNames An optional reference to an object containing a set of excluded local * names. */ function createExportStarFunction(localNames) { var exportStarFunction = factory.createUniqueName("exportStar"); var m = factory.createIdentifier("m"); var n = factory.createIdentifier("n"); var exports = factory.createIdentifier("exports"); var condition = factory.createStrictInequality(n, factory.createStringLiteral("default")); if (localNames) { condition = factory.createLogicalAnd(condition, factory.createLogicalNot(factory.createCallExpression(factory.createPropertyAccessExpression(localNames, "hasOwnProperty"), /*typeArguments*/ undefined, [n]))); } return factory.createFunctionDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*asteriskToken*/ undefined, exportStarFunction, /*typeParameters*/ undefined, [factory.createParameterDeclaration(/*decorators*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, m)], /*type*/ undefined, factory.createBlock([ factory.createVariableStatement( /*modifiers*/ undefined, factory.createVariableDeclarationList([ factory.createVariableDeclaration(exports, /*exclamationToken*/ undefined, /*type*/ undefined, factory.createObjectLiteralExpression([])) ])), factory.createForInStatement(factory.createVariableDeclarationList([ factory.createVariableDeclaration(n) ]), m, factory.createBlock([ ts.setEmitFlags(factory.createIfStatement(condition, factory.createExpressionStatement(factory.createAssignment(factory.createElementAccessExpression(exports, n), factory.createElementAccessExpression(m, n)))), 1 /* EmitFlags.SingleLine */) ])), factory.createExpressionStatement(factory.createCallExpression(exportFunction, /*typeArguments*/ undefined, [exports])) ], /*multiline*/ true)); } /** * Creates an array setter callbacks for each dependency group. * * @param exportStarFunction A reference to an exportStarFunction for the file. * @param dependencyGroups An array of grouped dependencies. */ function createSettersArray(exportStarFunction, dependencyGroups) { var setters = []; for (var _i = 0, dependencyGroups_1 = dependencyGroups; _i < dependencyGroups_1.length; _i++) { var group_2 = dependencyGroups_1[_i]; // derive a unique name for parameter from the first named entry in the group var localName = ts.forEach(group_2.externalImports, function (i) { return ts.getLocalNameForExternalImport(factory, i, currentSourceFile); }); var parameterName = localName ? factory.getGeneratedNameForNode(localName) : factory.createUniqueName(""); var statements = []; for (var _a = 0, _b = group_2.externalImports; _a < _b.length; _a++) { var entry = _b[_a]; var importVariableName = ts.getLocalNameForExternalImport(factory, entry, currentSourceFile); // TODO: GH#18217 switch (entry.kind) { case 266 /* SyntaxKind.ImportDeclaration */: if (!entry.importClause) { // 'import "..."' case // module is imported only for side-effects, no emit required break; } // falls through case 265 /* SyntaxKind.ImportEqualsDeclaration */: ts.Debug.assert(importVariableName !== undefined); // save import into the local statements.push(factory.createExpressionStatement(factory.createAssignment(importVariableName, parameterName))); break; case 272 /* SyntaxKind.ExportDeclaration */: ts.Debug.assert(importVariableName !== undefined); if (entry.exportClause) { if (ts.isNamedExports(entry.exportClause)) { // export {a, b as c} from 'foo' // // emit as: // // exports_({ // "a": _["a"], // "c": _["b"] // }); var properties = []; for (var _c = 0, _d = entry.exportClause.elements; _c < _d.length; _c++) { var e = _d[_c]; properties.push(factory.createPropertyAssignment(factory.createStringLiteral(ts.idText(e.name)), factory.createElementAccessExpression(parameterName, factory.createStringLiteral(ts.idText(e.propertyName || e.name))))); } statements.push(factory.createExpressionStatement(factory.createCallExpression(exportFunction, /*typeArguments*/ undefined, [factory.createObjectLiteralExpression(properties, /*multiline*/ true)]))); } else { statements.push(factory.createExpressionStatement(factory.createCallExpression(exportFunction, /*typeArguments*/ undefined, [ factory.createStringLiteral(ts.idText(entry.exportClause.name)), parameterName ]))); } } else { // export * from 'foo' // // emit as: // // exportStar(foo_1_1); statements.push(factory.createExpressionStatement(factory.createCallExpression(exportStarFunction, /*typeArguments*/ undefined, [parameterName]))); } break; } } setters.push(factory.createFunctionExpression( /*modifiers*/ undefined, /*asteriskToken*/ undefined, /*name*/ undefined, /*typeParameters*/ undefined, [factory.createParameterDeclaration(/*decorators*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, parameterName)], /*type*/ undefined, factory.createBlock(statements, /*multiLine*/ true))); } return factory.createArrayLiteralExpression(setters, /*multiLine*/ true); } // // Top-level Source Element Visitors // /** * Visit source elements at the top-level of a module. * * @param node The node to visit. */ function topLevelVisitor(node) { switch (node.kind) { case 266 /* SyntaxKind.ImportDeclaration */: return visitImportDeclaration(node); case 265 /* SyntaxKind.ImportEqualsDeclaration */: return visitImportEqualsDeclaration(node); case 272 /* SyntaxKind.ExportDeclaration */: return visitExportDeclaration(node); case 271 /* SyntaxKind.ExportAssignment */: return visitExportAssignment(node); default: return topLevelNestedVisitor(node); } } /** * Visits an ImportDeclaration node. * * @param node The node to visit. */ function visitImportDeclaration(node) { var statements; if (node.importClause) { hoistVariableDeclaration(ts.getLocalNameForExternalImport(factory, node, currentSourceFile)); // TODO: GH#18217 } if (hasAssociatedEndOfDeclarationMarker(node)) { // Defer exports until we encounter an EndOfDeclarationMarker node var id = ts.getOriginalNodeId(node); deferredExports[id] = appendExportsOfImportDeclaration(deferredExports[id], node); } else { statements = appendExportsOfImportDeclaration(statements, node); } return ts.singleOrMany(statements); } function visitExportDeclaration(node) { ts.Debug.assertIsDefined(node); return undefined; } /** * Visits an ImportEqualsDeclaration node. * * @param node The node to visit. */ function visitImportEqualsDeclaration(node) { ts.Debug.assert(ts.isExternalModuleImportEqualsDeclaration(node), "import= for internal module references should be handled in an earlier transformer."); var statements; hoistVariableDeclaration(ts.getLocalNameForExternalImport(factory, node, currentSourceFile)); // TODO: GH#18217 if (hasAssociatedEndOfDeclarationMarker(node)) { // Defer exports until we encounter an EndOfDeclarationMarker node var id = ts.getOriginalNodeId(node); deferredExports[id] = appendExportsOfImportEqualsDeclaration(deferredExports[id], node); } else { statements = appendExportsOfImportEqualsDeclaration(statements, node); } return ts.singleOrMany(statements); } /** * Visits an ExportAssignment node. * * @param node The node to visit. */ function visitExportAssignment(node) { if (node.isExportEquals) { // Elide `export=` as it is illegal in a SystemJS module. return undefined; } var expression = ts.visitNode(node.expression, visitor, ts.isExpression); var original = node.original; if (original && hasAssociatedEndOfDeclarationMarker(original)) { // Defer exports until we encounter an EndOfDeclarationMarker node var id = ts.getOriginalNodeId(node); deferredExports[id] = appendExportStatement(deferredExports[id], factory.createIdentifier("default"), expression, /*allowComments*/ true); } else { return createExportStatement(factory.createIdentifier("default"), expression, /*allowComments*/ true); } } /** * Visits a FunctionDeclaration, hoisting it to the outer module body function. * * @param node The node to visit. */ function visitFunctionDeclaration(node) { if (ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */)) { hoistedStatements = ts.append(hoistedStatements, factory.updateFunctionDeclaration(node, node.decorators, ts.visitNodes(node.modifiers, modifierVisitor, ts.isModifier), node.asteriskToken, factory.getDeclarationName(node, /*allowComments*/ true, /*allowSourceMaps*/ true), /*typeParameters*/ undefined, ts.visitNodes(node.parameters, visitor, ts.isParameterDeclaration), /*type*/ undefined, ts.visitNode(node.body, visitor, ts.isBlock))); } else { hoistedStatements = ts.append(hoistedStatements, ts.visitEachChild(node, visitor, context)); } if (hasAssociatedEndOfDeclarationMarker(node)) { // Defer exports until we encounter an EndOfDeclarationMarker node var id = ts.getOriginalNodeId(node); deferredExports[id] = appendExportsOfHoistedDeclaration(deferredExports[id], node); } else { hoistedStatements = appendExportsOfHoistedDeclaration(hoistedStatements, node); } return undefined; } /** * Visits a ClassDeclaration, hoisting its name to the outer module body function. * * @param node The node to visit. */ function visitClassDeclaration(node) { var statements; // Hoist the name of the class declaration to the outer module body function. var name = factory.getLocalName(node); hoistVariableDeclaration(name); // Rewrite the class declaration into an assignment of a class expression. statements = ts.append(statements, ts.setTextRange(factory.createExpressionStatement(factory.createAssignment(name, ts.setTextRange(factory.createClassExpression(ts.visitNodes(node.decorators, visitor, ts.isDecorator), /*modifiers*/ undefined, node.name, /*typeParameters*/ undefined, ts.visitNodes(node.heritageClauses, visitor, ts.isHeritageClause), ts.visitNodes(node.members, visitor, ts.isClassElement)), node))), node)); if (hasAssociatedEndOfDeclarationMarker(node)) { // Defer exports until we encounter an EndOfDeclarationMarker node var id = ts.getOriginalNodeId(node); deferredExports[id] = appendExportsOfHoistedDeclaration(deferredExports[id], node); } else { statements = appendExportsOfHoistedDeclaration(statements, node); } return ts.singleOrMany(statements); } /** * Visits a variable statement, hoisting declared names to the top-level module body. * Each declaration is rewritten into an assignment expression. * * @param node The node to visit. */ function visitVariableStatement(node) { if (!shouldHoistVariableDeclarationList(node.declarationList)) { return ts.visitNode(node, visitor, ts.isStatement); } var expressions; var isExportedDeclaration = ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */); var isMarkedDeclaration = hasAssociatedEndOfDeclarationMarker(node); for (var _i = 0, _a = node.declarationList.declarations; _i < _a.length; _i++) { var variable = _a[_i]; if (variable.initializer) { expressions = ts.append(expressions, transformInitializedVariable(variable, isExportedDeclaration && !isMarkedDeclaration)); } else { hoistBindingElement(variable); } } var statements; if (expressions) { statements = ts.append(statements, ts.setTextRange(factory.createExpressionStatement(factory.inlineExpressions(expressions)), node)); } if (isMarkedDeclaration) { // Defer exports until we encounter an EndOfDeclarationMarker node var id = ts.getOriginalNodeId(node); deferredExports[id] = appendExportsOfVariableStatement(deferredExports[id], node, isExportedDeclaration); } else { statements = appendExportsOfVariableStatement(statements, node, /*exportSelf*/ false); } return ts.singleOrMany(statements); } /** * Hoists the declared names of a VariableDeclaration or BindingElement. * * @param node The declaration to hoist. */ function hoistBindingElement(node) { if (ts.isBindingPattern(node.name)) { for (var _i = 0, _a = node.name.elements; _i < _a.length; _i++) { var element = _a[_i]; if (!ts.isOmittedExpression(element)) { hoistBindingElement(element); } } } else { hoistVariableDeclaration(factory.cloneNode(node.name)); } } /** * Determines whether a VariableDeclarationList should be hoisted. * * @param node The node to test. */ function shouldHoistVariableDeclarationList(node) { // hoist only non-block scoped declarations or block scoped declarations parented by source file return (ts.getEmitFlags(node) & 2097152 /* EmitFlags.NoHoisting */) === 0 && (enclosingBlockScopedContainer.kind === 305 /* SyntaxKind.SourceFile */ || (ts.getOriginalNode(node).flags & 3 /* NodeFlags.BlockScoped */) === 0); } /** * Transform an initialized variable declaration into an expression. * * @param node The node to transform. * @param isExportedDeclaration A value indicating whether the variable is exported. */ function transformInitializedVariable(node, isExportedDeclaration) { var createAssignment = isExportedDeclaration ? createExportedVariableAssignment : createNonExportedVariableAssignment; return ts.isBindingPattern(node.name) ? ts.flattenDestructuringAssignment(node, visitor, context, 0 /* FlattenLevel.All */, /*needsValue*/ false, createAssignment) : node.initializer ? createAssignment(node.name, ts.visitNode(node.initializer, visitor, ts.isExpression)) : node.name; } /** * Creates an assignment expression for an exported variable declaration. * * @param name The name of the variable. * @param value The value of the variable's initializer. * @param location The source map location for the assignment. */ function createExportedVariableAssignment(name, value, location) { return createVariableAssignment(name, value, location, /*isExportedDeclaration*/ true); } /** * Creates an assignment expression for a non-exported variable declaration. * * @param name The name of the variable. * @param value The value of the variable's initializer. * @param location The source map location for the assignment. */ function createNonExportedVariableAssignment(name, value, location) { return createVariableAssignment(name, value, location, /*isExportedDeclaration*/ false); } /** * Creates an assignment expression for a variable declaration. * * @param name The name of the variable. * @param value The value of the variable's initializer. * @param location The source map location for the assignment. * @param isExportedDeclaration A value indicating whether the variable is exported. */ function createVariableAssignment(name, value, location, isExportedDeclaration) { hoistVariableDeclaration(factory.cloneNode(name)); return isExportedDeclaration ? createExportExpression(name, preventSubstitution(ts.setTextRange(factory.createAssignment(name, value), location))) : preventSubstitution(ts.setTextRange(factory.createAssignment(name, value), location)); } /** * Visits a MergeDeclarationMarker used as a placeholder for the beginning of a merged * and transformed declaration. * * @param node The node to visit. */ function visitMergeDeclarationMarker(node) { // For an EnumDeclaration or ModuleDeclaration that merges with a preceeding // declaration we do not emit a leading variable declaration. To preserve the // begin/end semantics of the declararation and to properly handle exports // we wrapped the leading variable declaration in a `MergeDeclarationMarker`. // // To balance the declaration, we defer the exports of the elided variable // statement until we visit this declaration's `EndOfDeclarationMarker`. if (hasAssociatedEndOfDeclarationMarker(node) && node.original.kind === 237 /* SyntaxKind.VariableStatement */) { var id = ts.getOriginalNodeId(node); var isExportedDeclaration = ts.hasSyntacticModifier(node.original, 1 /* ModifierFlags.Export */); deferredExports[id] = appendExportsOfVariableStatement(deferredExports[id], node.original, isExportedDeclaration); } return node; } /** * Determines whether a node has an associated EndOfDeclarationMarker. * * @param node The node to test. */ function hasAssociatedEndOfDeclarationMarker(node) { return (ts.getEmitFlags(node) & 4194304 /* EmitFlags.HasEndOfDeclarationMarker */) !== 0; } /** * Visits a DeclarationMarker used as a placeholder for the end of a transformed * declaration. * * @param node The node to visit. */ function visitEndOfDeclarationMarker(node) { // For some transformations we emit an `EndOfDeclarationMarker` to mark the actual // end of the transformed declaration. We use this marker to emit any deferred exports // of the declaration. var id = ts.getOriginalNodeId(node); var statements = deferredExports[id]; if (statements) { delete deferredExports[id]; return ts.append(statements, node); } else { var original = ts.getOriginalNode(node); if (ts.isModuleOrEnumDeclaration(original)) { return ts.append(appendExportsOfDeclaration(statements, original), node); } } return node; } /** * Appends the exports of an ImportDeclaration to a statement list, returning the * statement list. * * @param statements A statement list to which the down-level export statements are to be * appended. If `statements` is `undefined`, a new array is allocated if statements are * appended. * @param decl The declaration whose exports are to be recorded. */ function appendExportsOfImportDeclaration(statements, decl) { if (moduleInfo.exportEquals) { return statements; } var importClause = decl.importClause; if (!importClause) { return statements; } if (importClause.name) { statements = appendExportsOfDeclaration(statements, importClause); } var namedBindings = importClause.namedBindings; if (namedBindings) { switch (namedBindings.kind) { case 268 /* SyntaxKind.NamespaceImport */: statements = appendExportsOfDeclaration(statements, namedBindings); break; case 269 /* SyntaxKind.NamedImports */: for (var _i = 0, _a = namedBindings.elements; _i < _a.length; _i++) { var importBinding = _a[_i]; statements = appendExportsOfDeclaration(statements, importBinding); } break; } } return statements; } /** * Appends the export of an ImportEqualsDeclaration to a statement list, returning the * statement list. * * @param statements A statement list to which the down-level export statements are to be * appended. If `statements` is `undefined`, a new array is allocated if statements are * appended. * @param decl The declaration whose exports are to be recorded. */ function appendExportsOfImportEqualsDeclaration(statements, decl) { if (moduleInfo.exportEquals) { return statements; } return appendExportsOfDeclaration(statements, decl); } /** * Appends the exports of a VariableStatement to a statement list, returning the statement * list. * * @param statements A statement list to which the down-level export statements are to be * appended. If `statements` is `undefined`, a new array is allocated if statements are * appended. * @param node The VariableStatement whose exports are to be recorded. * @param exportSelf A value indicating whether to also export each VariableDeclaration of * `nodes` declaration list. */ function appendExportsOfVariableStatement(statements, node, exportSelf) { if (moduleInfo.exportEquals) { return statements; } for (var _i = 0, _a = node.declarationList.declarations; _i < _a.length; _i++) { var decl = _a[_i]; if (decl.initializer || exportSelf) { statements = appendExportsOfBindingElement(statements, decl, exportSelf); } } return statements; } /** * Appends the exports of a VariableDeclaration or BindingElement to a statement list, * returning the statement list. * * @param statements A statement list to which the down-level export statements are to be * appended. If `statements` is `undefined`, a new array is allocated if statements are * appended. * @param decl The declaration whose exports are to be recorded. * @param exportSelf A value indicating whether to also export the declaration itself. */ function appendExportsOfBindingElement(statements, decl, exportSelf) { if (moduleInfo.exportEquals) { return statements; } if (ts.isBindingPattern(decl.name)) { for (var _i = 0, _a = decl.name.elements; _i < _a.length; _i++) { var element = _a[_i]; if (!ts.isOmittedExpression(element)) { statements = appendExportsOfBindingElement(statements, element, exportSelf); } } } else if (!ts.isGeneratedIdentifier(decl.name)) { var excludeName = void 0; if (exportSelf) { statements = appendExportStatement(statements, decl.name, factory.getLocalName(decl)); excludeName = ts.idText(decl.name); } statements = appendExportsOfDeclaration(statements, decl, excludeName); } return statements; } /** * Appends the exports of a ClassDeclaration or FunctionDeclaration to a statement list, * returning the statement list. * * @param statements A statement list to which the down-level export statements are to be * appended. If `statements` is `undefined`, a new array is allocated if statements are * appended. * @param decl The declaration whose exports are to be recorded. */ function appendExportsOfHoistedDeclaration(statements, decl) { if (moduleInfo.exportEquals) { return statements; } var excludeName; if (ts.hasSyntacticModifier(decl, 1 /* ModifierFlags.Export */)) { var exportName = ts.hasSyntacticModifier(decl, 512 /* ModifierFlags.Default */) ? factory.createStringLiteral("default") : decl.name; statements = appendExportStatement(statements, exportName, factory.getLocalName(decl)); excludeName = ts.getTextOfIdentifierOrLiteral(exportName); } if (decl.name) { statements = appendExportsOfDeclaration(statements, decl, excludeName); } return statements; } /** * Appends the exports of a declaration to a statement list, returning the statement list. * * @param statements A statement list to which the down-level export statements are to be * appended. If `statements` is `undefined`, a new array is allocated if statements are * appended. * @param decl The declaration to export. * @param excludeName An optional name to exclude from exports. */ function appendExportsOfDeclaration(statements, decl, excludeName) { if (moduleInfo.exportEquals) { return statements; } var name = factory.getDeclarationName(decl); var exportSpecifiers = moduleInfo.exportSpecifiers.get(ts.idText(name)); if (exportSpecifiers) { for (var _i = 0, exportSpecifiers_2 = exportSpecifiers; _i < exportSpecifiers_2.length; _i++) { var exportSpecifier = exportSpecifiers_2[_i]; if (exportSpecifier.name.escapedText !== excludeName) { statements = appendExportStatement(statements, exportSpecifier.name, name); } } } return statements; } /** * Appends the down-level representation of an export to a statement list, returning the * statement list. * * @param statements A statement list to which the down-level export statements are to be * appended. If `statements` is `undefined`, a new array is allocated if statements are * appended. * @param exportName The name of the export. * @param expression The expression to export. * @param allowComments Whether to allow comments on the export. */ function appendExportStatement(statements, exportName, expression, allowComments) { statements = ts.append(statements, createExportStatement(exportName, expression, allowComments)); return statements; } /** * Creates a call to the current file's export function to export a value. * * @param name The bound name of the export. * @param value The exported value. * @param allowComments An optional value indicating whether to emit comments for the statement. */ function createExportStatement(name, value, allowComments) { var statement = factory.createExpressionStatement(createExportExpression(name, value)); ts.startOnNewLine(statement); if (!allowComments) { ts.setEmitFlags(statement, 1536 /* EmitFlags.NoComments */); } return statement; } /** * Creates a call to the current file's export function to export a value. * * @param name The bound name of the export. * @param value The exported value. */ function createExportExpression(name, value) { var exportName = ts.isIdentifier(name) ? factory.createStringLiteralFromNode(name) : name; ts.setEmitFlags(value, ts.getEmitFlags(value) | 1536 /* EmitFlags.NoComments */); return ts.setCommentRange(factory.createCallExpression(exportFunction, /*typeArguments*/ undefined, [exportName, value]), value); } // // Top-Level or Nested Source Element Visitors // /** * Visit nested elements at the top-level of a module. * * @param node The node to visit. */ function topLevelNestedVisitor(node) { switch (node.kind) { case 237 /* SyntaxKind.VariableStatement */: return visitVariableStatement(node); case 256 /* SyntaxKind.FunctionDeclaration */: return visitFunctionDeclaration(node); case 257 /* SyntaxKind.ClassDeclaration */: return visitClassDeclaration(node); case 242 /* SyntaxKind.ForStatement */: return visitForStatement(node, /*isTopLevel*/ true); case 243 /* SyntaxKind.ForInStatement */: return visitForInStatement(node); case 244 /* SyntaxKind.ForOfStatement */: return visitForOfStatement(node); case 240 /* SyntaxKind.DoStatement */: return visitDoStatement(node); case 241 /* SyntaxKind.WhileStatement */: return visitWhileStatement(node); case 250 /* SyntaxKind.LabeledStatement */: return visitLabeledStatement(node); case 248 /* SyntaxKind.WithStatement */: return visitWithStatement(node); case 249 /* SyntaxKind.SwitchStatement */: return visitSwitchStatement(node); case 263 /* SyntaxKind.CaseBlock */: return visitCaseBlock(node); case 289 /* SyntaxKind.CaseClause */: return visitCaseClause(node); case 290 /* SyntaxKind.DefaultClause */: return visitDefaultClause(node); case 252 /* SyntaxKind.TryStatement */: return visitTryStatement(node); case 292 /* SyntaxKind.CatchClause */: return visitCatchClause(node); case 235 /* SyntaxKind.Block */: return visitBlock(node); case 352 /* SyntaxKind.MergeDeclarationMarker */: return visitMergeDeclarationMarker(node); case 353 /* SyntaxKind.EndOfDeclarationMarker */: return visitEndOfDeclarationMarker(node); default: return visitor(node); } } /** * Visits the body of a ForStatement to hoist declarations. * * @param node The node to visit. */ function visitForStatement(node, isTopLevel) { var savedEnclosingBlockScopedContainer = enclosingBlockScopedContainer; enclosingBlockScopedContainer = node; node = factory.updateForStatement(node, ts.visitNode(node.initializer, isTopLevel ? visitForInitializer : discardedValueVisitor, ts.isForInitializer), ts.visitNode(node.condition, visitor, ts.isExpression), ts.visitNode(node.incrementor, discardedValueVisitor, ts.isExpression), ts.visitIterationBody(node.statement, isTopLevel ? topLevelNestedVisitor : visitor, context)); enclosingBlockScopedContainer = savedEnclosingBlockScopedContainer; return node; } /** * Visits the body of a ForInStatement to hoist declarations. * * @param node The node to visit. */ function visitForInStatement(node) { var savedEnclosingBlockScopedContainer = enclosingBlockScopedContainer; enclosingBlockScopedContainer = node; node = factory.updateForInStatement(node, visitForInitializer(node.initializer), ts.visitNode(node.expression, visitor, ts.isExpression), ts.visitIterationBody(node.statement, topLevelNestedVisitor, context)); enclosingBlockScopedContainer = savedEnclosingBlockScopedContainer; return node; } /** * Visits the body of a ForOfStatement to hoist declarations. * * @param node The node to visit. */ function visitForOfStatement(node) { var savedEnclosingBlockScopedContainer = enclosingBlockScopedContainer; enclosingBlockScopedContainer = node; node = factory.updateForOfStatement(node, node.awaitModifier, visitForInitializer(node.initializer), ts.visitNode(node.expression, visitor, ts.isExpression), ts.visitIterationBody(node.statement, topLevelNestedVisitor, context)); enclosingBlockScopedContainer = savedEnclosingBlockScopedContainer; return node; } /** * Determines whether to hoist the initializer of a ForStatement, ForInStatement, or * ForOfStatement. * * @param node The node to test. */ function shouldHoistForInitializer(node) { return ts.isVariableDeclarationList(node) && shouldHoistVariableDeclarationList(node); } /** * Visits the initializer of a ForStatement, ForInStatement, or ForOfStatement * * @param node The node to visit. */ function visitForInitializer(node) { if (shouldHoistForInitializer(node)) { var expressions = void 0; for (var _i = 0, _a = node.declarations; _i < _a.length; _i++) { var variable = _a[_i]; expressions = ts.append(expressions, transformInitializedVariable(variable, /*isExportedDeclaration*/ false)); if (!variable.initializer) { hoistBindingElement(variable); } } return expressions ? factory.inlineExpressions(expressions) : factory.createOmittedExpression(); } else { return ts.visitNode(node, discardedValueVisitor, ts.isExpression); } } /** * Visits the body of a DoStatement to hoist declarations. * * @param node The node to visit. */ function visitDoStatement(node) { return factory.updateDoStatement(node, ts.visitIterationBody(node.statement, topLevelNestedVisitor, context), ts.visitNode(node.expression, visitor, ts.isExpression)); } /** * Visits the body of a WhileStatement to hoist declarations. * * @param node The node to visit. */ function visitWhileStatement(node) { return factory.updateWhileStatement(node, ts.visitNode(node.expression, visitor, ts.isExpression), ts.visitIterationBody(node.statement, topLevelNestedVisitor, context)); } /** * Visits the body of a LabeledStatement to hoist declarations. * * @param node The node to visit. */ function visitLabeledStatement(node) { return factory.updateLabeledStatement(node, node.label, ts.visitNode(node.statement, topLevelNestedVisitor, ts.isStatement, factory.liftToBlock)); } /** * Visits the body of a WithStatement to hoist declarations. * * @param node The node to visit. */ function visitWithStatement(node) { return factory.updateWithStatement(node, ts.visitNode(node.expression, visitor, ts.isExpression), ts.visitNode(node.statement, topLevelNestedVisitor, ts.isStatement, factory.liftToBlock)); } /** * Visits the body of a SwitchStatement to hoist declarations. * * @param node The node to visit. */ function visitSwitchStatement(node) { return factory.updateSwitchStatement(node, ts.visitNode(node.expression, visitor, ts.isExpression), ts.visitNode(node.caseBlock, topLevelNestedVisitor, ts.isCaseBlock)); } /** * Visits the body of a CaseBlock to hoist declarations. * * @param node The node to visit. */ function visitCaseBlock(node) { var savedEnclosingBlockScopedContainer = enclosingBlockScopedContainer; enclosingBlockScopedContainer = node; node = factory.updateCaseBlock(node, ts.visitNodes(node.clauses, topLevelNestedVisitor, ts.isCaseOrDefaultClause)); enclosingBlockScopedContainer = savedEnclosingBlockScopedContainer; return node; } /** * Visits the body of a CaseClause to hoist declarations. * * @param node The node to visit. */ function visitCaseClause(node) { return factory.updateCaseClause(node, ts.visitNode(node.expression, visitor, ts.isExpression), ts.visitNodes(node.statements, topLevelNestedVisitor, ts.isStatement)); } /** * Visits the body of a DefaultClause to hoist declarations. * * @param node The node to visit. */ function visitDefaultClause(node) { return ts.visitEachChild(node, topLevelNestedVisitor, context); } /** * Visits the body of a TryStatement to hoist declarations. * * @param node The node to visit. */ function visitTryStatement(node) { return ts.visitEachChild(node, topLevelNestedVisitor, context); } /** * Visits the body of a CatchClause to hoist declarations. * * @param node The node to visit. */ function visitCatchClause(node) { var savedEnclosingBlockScopedContainer = enclosingBlockScopedContainer; enclosingBlockScopedContainer = node; node = factory.updateCatchClause(node, node.variableDeclaration, ts.visitNode(node.block, topLevelNestedVisitor, ts.isBlock)); enclosingBlockScopedContainer = savedEnclosingBlockScopedContainer; return node; } /** * Visits the body of a Block to hoist declarations. * * @param node The node to visit. */ function visitBlock(node) { var savedEnclosingBlockScopedContainer = enclosingBlockScopedContainer; enclosingBlockScopedContainer = node; node = ts.visitEachChild(node, topLevelNestedVisitor, context); enclosingBlockScopedContainer = savedEnclosingBlockScopedContainer; return node; } // // Destructuring Assignment Visitors // /** * Visit nodes to flatten destructuring assignments to exported symbols. * * @param node The node to visit. */ function visitorWorker(node, valueIsDiscarded) { if (!(node.transformFlags & (4096 /* TransformFlags.ContainsDestructuringAssignment */ | 4194304 /* TransformFlags.ContainsDynamicImport */ | 67108864 /* TransformFlags.ContainsUpdateExpressionForIdentifier */))) { return node; } switch (node.kind) { case 242 /* SyntaxKind.ForStatement */: return visitForStatement(node, /*isTopLevel*/ false); case 238 /* SyntaxKind.ExpressionStatement */: return visitExpressionStatement(node); case 212 /* SyntaxKind.ParenthesizedExpression */: return visitParenthesizedExpression(node, valueIsDiscarded); case 350 /* SyntaxKind.PartiallyEmittedExpression */: return visitPartiallyEmittedExpression(node, valueIsDiscarded); case 221 /* SyntaxKind.BinaryExpression */: if (ts.isDestructuringAssignment(node)) { return visitDestructuringAssignment(node, valueIsDiscarded); } break; case 208 /* SyntaxKind.CallExpression */: if (ts.isImportCall(node)) { return visitImportCallExpression(node); } break; case 219 /* SyntaxKind.PrefixUnaryExpression */: case 220 /* SyntaxKind.PostfixUnaryExpression */: return visitPrefixOrPostfixUnaryExpression(node, valueIsDiscarded); } return ts.visitEachChild(node, visitor, context); } /** * Visit nodes to flatten destructuring assignments to exported symbols. * * @param node The node to visit. */ function visitor(node) { return visitorWorker(node, /*valueIsDiscarded*/ false); } function discardedValueVisitor(node) { return visitorWorker(node, /*valueIsDiscarded*/ true); } function visitExpressionStatement(node) { return factory.updateExpressionStatement(node, ts.visitNode(node.expression, discardedValueVisitor, ts.isExpression)); } function visitParenthesizedExpression(node, valueIsDiscarded) { return factory.updateParenthesizedExpression(node, ts.visitNode(node.expression, valueIsDiscarded ? discardedValueVisitor : visitor, ts.isExpression)); } function visitPartiallyEmittedExpression(node, valueIsDiscarded) { return factory.updatePartiallyEmittedExpression(node, ts.visitNode(node.expression, valueIsDiscarded ? discardedValueVisitor : visitor, ts.isExpression)); } function visitImportCallExpression(node) { // import("./blah") // emit as // System.register([], function (_export, _context) { // return { // setters: [], // execute: () => { // _context.import('./blah'); // } // }; // }); var externalModuleName = ts.getExternalModuleNameLiteral(factory, node, currentSourceFile, host, resolver, compilerOptions); var firstArgument = ts.visitNode(ts.firstOrUndefined(node.arguments), visitor); // Only use the external module name if it differs from the first argument. This allows us to preserve the quote style of the argument on output. var argument = externalModuleName && (!firstArgument || !ts.isStringLiteral(firstArgument) || firstArgument.text !== externalModuleName.text) ? externalModuleName : firstArgument; return factory.createCallExpression(factory.createPropertyAccessExpression(contextObject, factory.createIdentifier("import")), /*typeArguments*/ undefined, argument ? [argument] : []); } /** * Visits a DestructuringAssignment to flatten destructuring to exported symbols. * * @param node The node to visit. */ function visitDestructuringAssignment(node, valueIsDiscarded) { if (hasExportedReferenceInDestructuringTarget(node.left)) { return ts.flattenDestructuringAssignment(node, visitor, context, 0 /* FlattenLevel.All */, !valueIsDiscarded); } return ts.visitEachChild(node, visitor, context); } /** * Determines whether the target of a destructuring assignment refers to an exported symbol. * * @param node The destructuring target. */ function hasExportedReferenceInDestructuringTarget(node) { if (ts.isAssignmentExpression(node, /*excludeCompoundAssignment*/ true)) { return hasExportedReferenceInDestructuringTarget(node.left); } else if (ts.isSpreadElement(node)) { return hasExportedReferenceInDestructuringTarget(node.expression); } else if (ts.isObjectLiteralExpression(node)) { return ts.some(node.properties, hasExportedReferenceInDestructuringTarget); } else if (ts.isArrayLiteralExpression(node)) { return ts.some(node.elements, hasExportedReferenceInDestructuringTarget); } else if (ts.isShorthandPropertyAssignment(node)) { return hasExportedReferenceInDestructuringTarget(node.name); } else if (ts.isPropertyAssignment(node)) { return hasExportedReferenceInDestructuringTarget(node.initializer); } else if (ts.isIdentifier(node)) { var container = resolver.getReferencedExportContainer(node); return container !== undefined && container.kind === 305 /* SyntaxKind.SourceFile */; } else { return false; } } function visitPrefixOrPostfixUnaryExpression(node, valueIsDiscarded) { // When we see a prefix or postfix increment expression whose operand is an exported // symbol, we should ensure all exports of that symbol are updated with the correct // value. // // - We do not transform generated identifiers for any reason. // - We do not transform identifiers tagged with the LocalName flag. // - We do not transform identifiers that were originally the name of an enum or // namespace due to how they are transformed in TypeScript. // - We only transform identifiers that are exported at the top level. if ((node.operator === 45 /* SyntaxKind.PlusPlusToken */ || node.operator === 46 /* SyntaxKind.MinusMinusToken */) && ts.isIdentifier(node.operand) && !ts.isGeneratedIdentifier(node.operand) && !ts.isLocalName(node.operand) && !ts.isDeclarationNameOfEnumOrNamespace(node.operand)) { var exportedNames = getExports(node.operand); if (exportedNames) { var temp = void 0; var expression = ts.visitNode(node.operand, visitor, ts.isExpression); if (ts.isPrefixUnaryExpression(node)) { expression = factory.updatePrefixUnaryExpression(node, expression); } else { expression = factory.updatePostfixUnaryExpression(node, expression); if (!valueIsDiscarded) { temp = factory.createTempVariable(hoistVariableDeclaration); expression = factory.createAssignment(temp, expression); ts.setTextRange(expression, node); } expression = factory.createComma(expression, factory.cloneNode(node.operand)); ts.setTextRange(expression, node); } for (var _i = 0, exportedNames_4 = exportedNames; _i < exportedNames_4.length; _i++) { var exportName = exportedNames_4[_i]; expression = createExportExpression(exportName, preventSubstitution(expression)); } if (temp) { expression = factory.createComma(expression, temp); ts.setTextRange(expression, node); } return expression; } } return ts.visitEachChild(node, visitor, context); } // // Modifier Visitors // /** * Visit nodes to elide module-specific modifiers. * * @param node The node to visit. */ function modifierVisitor(node) { switch (node.kind) { case 93 /* SyntaxKind.ExportKeyword */: case 88 /* SyntaxKind.DefaultKeyword */: return undefined; } return node; } // // Emit Notification // /** * Hook for node emit notifications. * * @param hint A hint as to the intended usage of the node. * @param node The node to emit. * @param emitCallback A callback used to emit the node in the printer. */ function onEmitNode(hint, node, emitCallback) { if (node.kind === 305 /* SyntaxKind.SourceFile */) { var id = ts.getOriginalNodeId(node); currentSourceFile = node; moduleInfo = moduleInfoMap[id]; exportFunction = exportFunctionsMap[id]; noSubstitution = noSubstitutionMap[id]; contextObject = contextObjectMap[id]; if (noSubstitution) { delete noSubstitutionMap[id]; } previousOnEmitNode(hint, node, emitCallback); currentSourceFile = undefined; moduleInfo = undefined; exportFunction = undefined; contextObject = undefined; noSubstitution = undefined; } else { previousOnEmitNode(hint, node, emitCallback); } } // // Substitutions // /** * Hooks node substitutions. * * @param hint A hint as to the intended usage of the node. * @param node The node to substitute. */ function onSubstituteNode(hint, node) { node = previousOnSubstituteNode(hint, node); if (isSubstitutionPrevented(node)) { return node; } if (hint === 1 /* EmitHint.Expression */) { return substituteExpression(node); } else if (hint === 4 /* EmitHint.Unspecified */) { return substituteUnspecified(node); } return node; } /** * Substitute the node, if necessary. * * @param node The node to substitute. */ function substituteUnspecified(node) { switch (node.kind) { case 297 /* SyntaxKind.ShorthandPropertyAssignment */: return substituteShorthandPropertyAssignment(node); } return node; } /** * Substitution for a ShorthandPropertyAssignment whose name that may contain an imported or exported symbol. * * @param node The node to substitute. */ function substituteShorthandPropertyAssignment(node) { var _a, _b; var name = node.name; if (!ts.isGeneratedIdentifier(name) && !ts.isLocalName(name)) { var importDeclaration = resolver.getReferencedImportDeclaration(name); if (importDeclaration) { if (ts.isImportClause(importDeclaration)) { return ts.setTextRange(factory.createPropertyAssignment(factory.cloneNode(name), factory.createPropertyAccessExpression(factory.getGeneratedNameForNode(importDeclaration.parent), factory.createIdentifier("default"))), /*location*/ node); } else if (ts.isImportSpecifier(importDeclaration)) { return ts.setTextRange(factory.createPropertyAssignment(factory.cloneNode(name), factory.createPropertyAccessExpression(factory.getGeneratedNameForNode(((_b = (_a = importDeclaration.parent) === null || _a === void 0 ? void 0 : _a.parent) === null || _b === void 0 ? void 0 : _b.parent) || importDeclaration), factory.cloneNode(importDeclaration.propertyName || importDeclaration.name))), /*location*/ node); } } } return node; } /** * Substitute the expression, if necessary. * * @param node The node to substitute. */ function substituteExpression(node) { switch (node.kind) { case 79 /* SyntaxKind.Identifier */: return substituteExpressionIdentifier(node); case 221 /* SyntaxKind.BinaryExpression */: return substituteBinaryExpression(node); case 231 /* SyntaxKind.MetaProperty */: return substituteMetaProperty(node); } return node; } /** * Substitution for an Identifier expression that may contain an imported or exported symbol. * * @param node The node to substitute. */ function substituteExpressionIdentifier(node) { var _a, _b; if (ts.getEmitFlags(node) & 4096 /* EmitFlags.HelperName */) { var externalHelpersModuleName = ts.getExternalHelpersModuleName(currentSourceFile); if (externalHelpersModuleName) { return factory.createPropertyAccessExpression(externalHelpersModuleName, node); } return node; } // When we see an identifier in an expression position that // points to an imported symbol, we should substitute a qualified // reference to the imported symbol if one is needed. // // - We do not substitute generated identifiers for any reason. // - We do not substitute identifiers tagged with the LocalName flag. if (!ts.isGeneratedIdentifier(node) && !ts.isLocalName(node)) { var importDeclaration = resolver.getReferencedImportDeclaration(node); if (importDeclaration) { if (ts.isImportClause(importDeclaration)) { return ts.setTextRange(factory.createPropertyAccessExpression(factory.getGeneratedNameForNode(importDeclaration.parent), factory.createIdentifier("default")), /*location*/ node); } else if (ts.isImportSpecifier(importDeclaration)) { return ts.setTextRange(factory.createPropertyAccessExpression(factory.getGeneratedNameForNode(((_b = (_a = importDeclaration.parent) === null || _a === void 0 ? void 0 : _a.parent) === null || _b === void 0 ? void 0 : _b.parent) || importDeclaration), factory.cloneNode(importDeclaration.propertyName || importDeclaration.name)), /*location*/ node); } } } return node; } /** * Substitution for a BinaryExpression that may contain an imported or exported symbol. * * @param node The node to substitute. */ function substituteBinaryExpression(node) { // When we see an assignment expression whose left-hand side is an exported symbol, // we should ensure all exports of that symbol are updated with the correct value. // // - We do not substitute generated identifiers for any reason. // - We do not substitute identifiers tagged with the LocalName flag. // - We do not substitute identifiers that were originally the name of an enum or // namespace due to how they are transformed in TypeScript. // - We only substitute identifiers that are exported at the top level. if (ts.isAssignmentOperator(node.operatorToken.kind) && ts.isIdentifier(node.left) && !ts.isGeneratedIdentifier(node.left) && !ts.isLocalName(node.left) && !ts.isDeclarationNameOfEnumOrNamespace(node.left)) { var exportedNames = getExports(node.left); if (exportedNames) { // For each additional export of the declaration, apply an export assignment. var expression = node; for (var _i = 0, exportedNames_5 = exportedNames; _i < exportedNames_5.length; _i++) { var exportName = exportedNames_5[_i]; expression = createExportExpression(exportName, preventSubstitution(expression)); } return expression; } } return node; } function substituteMetaProperty(node) { if (ts.isImportMeta(node)) { return factory.createPropertyAccessExpression(contextObject, factory.createIdentifier("meta")); } return node; } /** * Gets the exports of a name. * * @param name The name. */ function getExports(name) { var exportedNames; if (!ts.isGeneratedIdentifier(name)) { var valueDeclaration = resolver.getReferencedImportDeclaration(name) || resolver.getReferencedValueDeclaration(name); if (valueDeclaration) { var exportContainer = resolver.getReferencedExportContainer(name, /*prefixLocals*/ false); if (exportContainer && exportContainer.kind === 305 /* SyntaxKind.SourceFile */) { exportedNames = ts.append(exportedNames, factory.getDeclarationName(valueDeclaration)); } exportedNames = ts.addRange(exportedNames, moduleInfo && moduleInfo.exportedBindings[ts.getOriginalNodeId(valueDeclaration)]); } } return exportedNames; } /** * Prevent substitution of a node for this transformer. * * @param node The node which should not be substituted. */ function preventSubstitution(node) { if (noSubstitution === undefined) noSubstitution = []; noSubstitution[ts.getNodeId(node)] = true; return node; } /** * Determines whether a node should not be substituted. * * @param node The node to test. */ function isSubstitutionPrevented(node) { return noSubstitution && node.id && noSubstitution[node.id]; } } ts.transformSystemModule = transformSystemModule; })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { function transformECMAScriptModule(context) { var factory = context.factory, emitHelpers = context.getEmitHelperFactory; var host = context.getEmitHost(); var resolver = context.getEmitResolver(); var compilerOptions = context.getCompilerOptions(); var languageVersion = ts.getEmitScriptTarget(compilerOptions); var previousOnEmitNode = context.onEmitNode; var previousOnSubstituteNode = context.onSubstituteNode; context.onEmitNode = onEmitNode; context.onSubstituteNode = onSubstituteNode; context.enableEmitNotification(305 /* SyntaxKind.SourceFile */); context.enableSubstitution(79 /* SyntaxKind.Identifier */); var helperNameSubstitutions; var currentSourceFile; var importRequireStatements; return ts.chainBundle(context, transformSourceFile); function transformSourceFile(node) { if (node.isDeclarationFile) { return node; } if (ts.isExternalModule(node) || compilerOptions.isolatedModules) { currentSourceFile = node; importRequireStatements = undefined; var result = updateExternalModule(node); currentSourceFile = undefined; if (importRequireStatements) { result = factory.updateSourceFile(result, ts.setTextRange(factory.createNodeArray(ts.insertStatementsAfterCustomPrologue(result.statements.slice(), importRequireStatements)), result.statements)); } if (!ts.isExternalModule(node) || ts.some(result.statements, ts.isExternalModuleIndicator)) { return result; } return factory.updateSourceFile(result, ts.setTextRange(factory.createNodeArray(__spreadArray(__spreadArray([], result.statements, true), [ts.createEmptyExports(factory)], false)), result.statements)); } return node; } function updateExternalModule(node) { var externalHelpersImportDeclaration = ts.createExternalHelpersImportDeclarationIfNeeded(factory, emitHelpers(), node, compilerOptions); if (externalHelpersImportDeclaration) { var statements = []; var statementOffset = factory.copyPrologue(node.statements, statements); ts.append(statements, externalHelpersImportDeclaration); ts.addRange(statements, ts.visitNodes(node.statements, visitor, ts.isStatement, statementOffset)); return factory.updateSourceFile(node, ts.setTextRange(factory.createNodeArray(statements), node.statements)); } else { return ts.visitEachChild(node, visitor, context); } } function visitor(node) { switch (node.kind) { case 265 /* SyntaxKind.ImportEqualsDeclaration */: // Though an error in es2020 modules, in node-flavor es2020 modules, we can helpfully transform this to a synthetic `require` call // To give easy access to a synchronous `require` in node-flavor esm. We do the transform even in scenarios where we error, but `import.meta.url` // is available, just because the output is reasonable for a node-like runtime. return ts.getEmitScriptTarget(compilerOptions) >= ts.ModuleKind.ES2020 ? visitImportEqualsDeclaration(node) : undefined; case 271 /* SyntaxKind.ExportAssignment */: return visitExportAssignment(node); case 272 /* SyntaxKind.ExportDeclaration */: var exportDecl = node; return visitExportDeclaration(exportDecl); } return node; } /** * Creates a `require()` call to import an external module. * * @param importNode The declaration to import. */ function createRequireCall(importNode) { var moduleName = ts.getExternalModuleNameLiteral(factory, importNode, ts.Debug.checkDefined(currentSourceFile), host, resolver, compilerOptions); var args = []; if (moduleName) { args.push(moduleName); } if (!importRequireStatements) { var createRequireName = factory.createUniqueName("_createRequire", 16 /* GeneratedIdentifierFlags.Optimistic */ | 32 /* GeneratedIdentifierFlags.FileLevel */); var importStatement = factory.createImportDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, factory.createImportClause( /*isTypeOnly*/ false, /*name*/ undefined, factory.createNamedImports([ factory.createImportSpecifier(/*isTypeOnly*/ false, factory.createIdentifier("createRequire"), createRequireName) ])), factory.createStringLiteral("module")); var requireHelperName = factory.createUniqueName("__require", 16 /* GeneratedIdentifierFlags.Optimistic */ | 32 /* GeneratedIdentifierFlags.FileLevel */); var requireStatement = factory.createVariableStatement( /*modifiers*/ undefined, factory.createVariableDeclarationList([ factory.createVariableDeclaration(requireHelperName, /*exclamationToken*/ undefined, /*type*/ undefined, factory.createCallExpression(factory.cloneNode(createRequireName), /*typeArguments*/ undefined, [ factory.createPropertyAccessExpression(factory.createMetaProperty(100 /* SyntaxKind.ImportKeyword */, factory.createIdentifier("meta")), factory.createIdentifier("url")) ])) ], /*flags*/ languageVersion >= 2 /* ScriptTarget.ES2015 */ ? 2 /* NodeFlags.Const */ : 0 /* NodeFlags.None */)); importRequireStatements = [importStatement, requireStatement]; } var name = importRequireStatements[1].declarationList.declarations[0].name; ts.Debug.assertNode(name, ts.isIdentifier); return factory.createCallExpression(factory.cloneNode(name), /*typeArguments*/ undefined, args); } /** * Visits an ImportEqualsDeclaration node. * * @param node The node to visit. */ function visitImportEqualsDeclaration(node) { ts.Debug.assert(ts.isExternalModuleImportEqualsDeclaration(node), "import= for internal module references should be handled in an earlier transformer."); var statements; statements = ts.append(statements, ts.setOriginalNode(ts.setTextRange(factory.createVariableStatement( /*modifiers*/ undefined, factory.createVariableDeclarationList([ factory.createVariableDeclaration(factory.cloneNode(node.name), /*exclamationToken*/ undefined, /*type*/ undefined, createRequireCall(node)) ], /*flags*/ languageVersion >= 2 /* ScriptTarget.ES2015 */ ? 2 /* NodeFlags.Const */ : 0 /* NodeFlags.None */)), node), node)); statements = appendExportsOfImportEqualsDeclaration(statements, node); return ts.singleOrMany(statements); } function appendExportsOfImportEqualsDeclaration(statements, node) { if (ts.hasSyntacticModifier(node, 1 /* ModifierFlags.Export */)) { statements = ts.append(statements, factory.createExportDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, node.isTypeOnly, factory.createNamedExports([factory.createExportSpecifier(/*isTypeOnly*/ false, /*propertyName*/ undefined, ts.idText(node.name))]))); } return statements; } function visitExportAssignment(node) { // Elide `export=` as it is not legal with --module ES6 return node.isExportEquals ? undefined : node; } function visitExportDeclaration(node) { // `export * as ns` only needs to be transformed in ES2015 if (compilerOptions.module !== undefined && compilerOptions.module > ts.ModuleKind.ES2015) { return node; } // Either ill-formed or don't need to be tranformed. if (!node.exportClause || !ts.isNamespaceExport(node.exportClause) || !node.moduleSpecifier) { return node; } var oldIdentifier = node.exportClause.name; var synthName = factory.getGeneratedNameForNode(oldIdentifier); var importDecl = factory.createImportDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, factory.createImportClause( /*isTypeOnly*/ false, /*name*/ undefined, factory.createNamespaceImport(synthName)), node.moduleSpecifier, node.assertClause); ts.setOriginalNode(importDecl, node.exportClause); var exportDecl = ts.isExportNamespaceAsDefaultDeclaration(node) ? factory.createExportDefault(synthName) : factory.createExportDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*isTypeOnly*/ false, factory.createNamedExports([factory.createExportSpecifier(/*isTypeOnly*/ false, synthName, oldIdentifier)])); ts.setOriginalNode(exportDecl, node); return [importDecl, exportDecl]; } // // Emit Notification // /** * Hook for node emit. * * @param hint A hint as to the intended usage of the node. * @param node The node to emit. * @param emit A callback used to emit the node in the printer. */ function onEmitNode(hint, node, emitCallback) { if (ts.isSourceFile(node)) { if ((ts.isExternalModule(node) || compilerOptions.isolatedModules) && compilerOptions.importHelpers) { helperNameSubstitutions = new ts.Map(); } previousOnEmitNode(hint, node, emitCallback); helperNameSubstitutions = undefined; } else { previousOnEmitNode(hint, node, emitCallback); } } // // Substitutions // /** * Hooks node substitutions. * * @param hint A hint as to the intended usage of the node. * @param node The node to substitute. */ function onSubstituteNode(hint, node) { node = previousOnSubstituteNode(hint, node); if (helperNameSubstitutions && ts.isIdentifier(node) && ts.getEmitFlags(node) & 4096 /* EmitFlags.HelperName */) { return substituteHelperName(node); } return node; } function substituteHelperName(node) { var name = ts.idText(node); var substitution = helperNameSubstitutions.get(name); if (!substitution) { helperNameSubstitutions.set(name, substitution = factory.createUniqueName(name, 16 /* GeneratedIdentifierFlags.Optimistic */ | 32 /* GeneratedIdentifierFlags.FileLevel */)); } return substitution; } } ts.transformECMAScriptModule = transformECMAScriptModule; })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { function transformNodeModule(context) { var previousOnSubstituteNode = context.onSubstituteNode; var previousOnEmitNode = context.onEmitNode; var esmTransform = ts.transformECMAScriptModule(context); var esmOnSubstituteNode = context.onSubstituteNode; var esmOnEmitNode = context.onEmitNode; context.onSubstituteNode = previousOnSubstituteNode; context.onEmitNode = previousOnEmitNode; var cjsTransform = ts.transformModule(context); var cjsOnSubstituteNode = context.onSubstituteNode; var cjsOnEmitNode = context.onEmitNode; context.onSubstituteNode = onSubstituteNode; context.onEmitNode = onEmitNode; context.enableSubstitution(305 /* SyntaxKind.SourceFile */); context.enableEmitNotification(305 /* SyntaxKind.SourceFile */); var currentSourceFile; return transformSourceFileOrBundle; function onSubstituteNode(hint, node) { if (ts.isSourceFile(node)) { currentSourceFile = node; // Neither component transform wants substitution notifications for `SourceFile`s, and, in fact, relies on // the source file emit notification to setup scope variables for substitutions (so we _cannot_ call their substitute // functions on source files safely, as that context only gets setup in a later pipeline phase!) return previousOnSubstituteNode(hint, node); } else { if (!currentSourceFile) { return previousOnSubstituteNode(hint, node); } if (currentSourceFile.impliedNodeFormat === ts.ModuleKind.ESNext) { return esmOnSubstituteNode(hint, node); } return cjsOnSubstituteNode(hint, node); } } function onEmitNode(hint, node, emitCallback) { if (ts.isSourceFile(node)) { currentSourceFile = node; } if (!currentSourceFile) { return previousOnEmitNode(hint, node, emitCallback); } if (currentSourceFile.impliedNodeFormat === ts.ModuleKind.ESNext) { return esmOnEmitNode(hint, node, emitCallback); } return cjsOnEmitNode(hint, node, emitCallback); } function getModuleTransformForFile(file) { return file.impliedNodeFormat === ts.ModuleKind.ESNext ? esmTransform : cjsTransform; } function transformSourceFile(node) { if (node.isDeclarationFile) { return node; } currentSourceFile = node; var result = getModuleTransformForFile(node)(node); currentSourceFile = undefined; ts.Debug.assert(ts.isSourceFile(result)); return result; } function transformSourceFileOrBundle(node) { return node.kind === 305 /* SyntaxKind.SourceFile */ ? transformSourceFile(node) : transformBundle(node); } function transformBundle(node) { return context.factory.createBundle(ts.map(node.sourceFiles, transformSourceFile), node.prepends); } } ts.transformNodeModule = transformNodeModule; })(ts || (ts = {})); /* @internal */ var ts; (function (ts) { function canProduceDiagnostics(node) { return ts.isVariableDeclaration(node) || ts.isPropertyDeclaration(node) || ts.isPropertySignature(node) || ts.isBindingElement(node) || ts.isSetAccessor(node) || ts.isGetAccessor(node) || ts.isConstructSignatureDeclaration(node) || ts.isCallSignatureDeclaration(node) || ts.isMethodDeclaration(node) || ts.isMethodSignature(node) || ts.isFunctionDeclaration(node) || ts.isParameter(node) || ts.isTypeParameterDeclaration(node) || ts.isExpressionWithTypeArguments(node) || ts.isImportEqualsDeclaration(node) || ts.isTypeAliasDeclaration(node) || ts.isConstructorDeclaration(node) || ts.isIndexSignatureDeclaration(node) || ts.isPropertyAccessExpression(node) || ts.isJSDocTypeAlias(node); } ts.canProduceDiagnostics = canProduceDiagnostics; function createGetSymbolAccessibilityDiagnosticForNodeName(node) { if (ts.isSetAccessor(node) || ts.isGetAccessor(node)) { return getAccessorNameVisibilityError; } else if (ts.isMethodSignature(node) || ts.isMethodDeclaration(node)) { return getMethodNameVisibilityError; } else { return createGetSymbolAccessibilityDiagnosticForNode(node); } function getAccessorNameVisibilityError(symbolAccessibilityResult) { var diagnosticMessage = getAccessorNameVisibilityDiagnosticMessage(symbolAccessibilityResult); return diagnosticMessage !== undefined ? { diagnosticMessage: diagnosticMessage, errorNode: node, typeName: node.name } : undefined; } function getAccessorNameVisibilityDiagnosticMessage(symbolAccessibilityResult) { if (ts.isStatic(node)) { return symbolAccessibilityResult.errorModuleName ? symbolAccessibilityResult.accessibility === 2 /* SymbolAccessibility.CannotBeNamed */ ? ts.Diagnostics.Public_static_property_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named : ts.Diagnostics.Public_static_property_0_of_exported_class_has_or_is_using_name_1_from_private_module_2 : ts.Diagnostics.Public_static_property_0_of_exported_class_has_or_is_using_private_name_1; } else if (node.parent.kind === 257 /* SyntaxKind.ClassDeclaration */) { return symbolAccessibilityResult.errorModuleName ? symbolAccessibilityResult.accessibility === 2 /* SymbolAccessibility.CannotBeNamed */ ? ts.Diagnostics.Public_property_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named : ts.Diagnostics.Public_property_0_of_exported_class_has_or_is_using_name_1_from_private_module_2 : ts.Diagnostics.Public_property_0_of_exported_class_has_or_is_using_private_name_1; } else { return symbolAccessibilityResult.errorModuleName ? ts.Diagnostics.Property_0_of_exported_interface_has_or_is_using_name_1_from_private_module_2 : ts.Diagnostics.Property_0_of_exported_interface_has_or_is_using_private_name_1; } } function getMethodNameVisibilityError(symbolAccessibilityResult) { var diagnosticMessage = getMethodNameVisibilityDiagnosticMessage(symbolAccessibilityResult); return diagnosticMessage !== undefined ? { diagnosticMessage: diagnosticMessage, errorNode: node, typeName: node.name } : undefined; } function getMethodNameVisibilityDiagnosticMessage(symbolAccessibilityResult) { if (ts.isStatic(node)) { return symbolAccessibilityResult.errorModuleName ? symbolAccessibilityResult.accessibility === 2 /* SymbolAccessibility.CannotBeNamed */ ? ts.Diagnostics.Public_static_method_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named : ts.Diagnostics.Public_static_method_0_of_exported_class_has_or_is_using_name_1_from_private_module_2 : ts.Diagnostics.Public_static_method_0_of_exported_class_has_or_is_using_private_name_1; } else if (node.parent.kind === 257 /* SyntaxKind.ClassDeclaration */) { return symbolAccessibilityResult.errorModuleName ? symbolAccessibilityResult.accessibility === 2 /* SymbolAccessibility.CannotBeNamed */ ? ts.Diagnostics.Public_method_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named : ts.Diagnostics.Public_method_0_of_exported_class_has_or_is_using_name_1_from_private_module_2 : ts.Diagnostics.Public_method_0_of_exported_class_has_or_is_using_private_name_1; } else { return symbolAccessibilityResult.errorModuleName ? ts.Diagnostics.Method_0_of_exported_interface_has_or_is_using_name_1_from_private_module_2 : ts.Diagnostics.Method_0_of_exported_interface_has_or_is_using_private_name_1; } } } ts.createGetSymbolAccessibilityDiagnosticForNodeName = createGetSymbolAccessibilityDiagnosticForNodeName; function createGetSymbolAccessibilityDiagnosticForNode(node) { if (ts.isVariableDeclaration(node) || ts.isPropertyDeclaration(node) || ts.isPropertySignature(node) || ts.isPropertyAccessExpression(node) || ts.isBindingElement(node) || ts.isConstructorDeclaration(node)) { return getVariableDeclarationTypeVisibilityError; } else if (ts.isSetAccessor(node) || ts.isGetAccessor(node)) { return getAccessorDeclarationTypeVisibilityError; } else if (ts.isConstructSignatureDeclaration(node) || ts.isCallSignatureDeclaration(node) || ts.isMethodDeclaration(node) || ts.isMethodSignature(node) || ts.isFunctionDeclaration(node) || ts.isIndexSignatureDeclaration(node)) { return getReturnTypeVisibilityError; } else if (ts.isParameter(node)) { if (ts.isParameterPropertyDeclaration(node, node.parent) && ts.hasSyntacticModifier(node.parent, 8 /* ModifierFlags.Private */)) { return getVariableDeclarationTypeVisibilityError; } return getParameterDeclarationTypeVisibilityError; } else if (ts.isTypeParameterDeclaration(node)) { return getTypeParameterConstraintVisibilityError; } else if (ts.isExpressionWithTypeArguments(node)) { return getHeritageClauseVisibilityError; } else if (ts.isImportEqualsDeclaration(node)) { return getImportEntityNameVisibilityError; } else if (ts.isTypeAliasDeclaration(node) || ts.isJSDocTypeAlias(node)) { return getTypeAliasDeclarationVisibilityError; } else { return ts.Debug.assertNever(node, "Attempted to set a declaration diagnostic context for unhandled node kind: ".concat(ts.SyntaxKind[node.kind])); } function getVariableDeclarationTypeVisibilityDiagnosticMessage(symbolAccessibilityResult) { if (node.kind === 254 /* SyntaxKind.VariableDeclaration */ || node.kind === 203 /* SyntaxKind.BindingElement */) { return symbolAccessibilityResult.errorModuleName ? symbolAccessibilityResult.accessibility === 2 /* SymbolAccessibility.CannotBeNamed */ ? ts.Diagnostics.Exported_variable_0_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named : ts.Diagnostics.Exported_variable_0_has_or_is_using_name_1_from_private_module_2 : ts.Diagnostics.Exported_variable_0_has_or_is_using_private_name_1; } // This check is to ensure we don't report error on constructor parameter property as that error would be reported during parameter emit // The only exception here is if the constructor was marked as private. we are not emitting the constructor parameters at all. else if (node.kind === 167 /* SyntaxKind.PropertyDeclaration */ || node.kind === 206 /* SyntaxKind.PropertyAccessExpression */ || node.kind === 166 /* SyntaxKind.PropertySignature */ || (node.kind === 164 /* SyntaxKind.Parameter */ && ts.hasSyntacticModifier(node.parent, 8 /* ModifierFlags.Private */))) { // TODO(jfreeman): Deal with computed properties in error reporting. if (ts.isStatic(node)) { return symbolAccessibilityResult.errorModuleName ? symbolAccessibilityResult.accessibility === 2 /* SymbolAccessibility.CannotBeNamed */ ? ts.Diagnostics.Public_static_property_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named : ts.Diagnostics.Public_static_property_0_of_exported_class_has_or_is_using_name_1_from_private_module_2 : ts.Diagnostics.Public_static_property_0_of_exported_class_has_or_is_using_private_name_1; } else if (node.parent.kind === 257 /* SyntaxKind.ClassDeclaration */ || node.kind === 164 /* SyntaxKind.Parameter */) { return symbolAccessibilityResult.errorModuleName ? symbolAccessibilityResult.accessibility === 2 /* SymbolAccessibility.CannotBeNamed */ ? ts.Diagnostics.Public_property_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named : ts.Diagnostics.Public_property_0_of_exported_class_has_or_is_using_name_1_from_private_module_2 : ts.Diagnostics.Public_property_0_of_exported_class_has_or_is_using_private_name_1; } else { // Interfaces cannot have types that cannot be named return symbolAccessibilityResult.errorModuleName ? ts.Diagnostics.Property_0_of_exported_interface_has_or_is_using_name_1_from_private_module_2 : ts.Diagnostics.Property_0_of_exported_interface_has_or_is_using_private_name_1; } } } function getVariableDeclarationTypeVisibilityError(symbolAccessibilityResult) { var diagnosticMessage = getVariableDeclarationTypeVisibilityDiagnosticMessage(symbolAccessibilityResult); return diagnosticMessage !== undefined ? { diagnosticMessage: diagnosticMessage, errorNode: node, typeName: node.name } : undefined; } function getAccessorDeclarationTypeVisibilityError(symbolAccessibilityResult) { var diagnosticMessage; if (node.kind === 173 /* SyntaxKind.SetAccessor */) { // Getters can infer the return type from the returned expression, but setters cannot, so the // "_from_external_module_1_but_cannot_be_named" case cannot occur. if (ts.isStatic(node)) { diagnosticMessage = symbolAccessibilityResult.errorModuleName ? ts.Diagnostics.Parameter_type_of_public_static_setter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2 : ts.Diagnostics.Parameter_type_of_public_static_setter_0_from_exported_class_has_or_is_using_private_name_1; } else { diagnosticMessage = symbolAccessibilityResult.errorModuleName ? ts.Diagnostics.Parameter_type_of_public_setter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2 : ts.Diagnostics.Parameter_type_of_public_setter_0_from_exported_class_has_or_is_using_private_name_1; } } else { if (ts.isStatic(node)) { diagnosticMessage = symbolAccessibilityResult.errorModuleName ? symbolAccessibilityResult.accessibility === 2 /* SymbolAccessibility.CannotBeNamed */ ? ts.Diagnostics.Return_type_of_public_static_getter_0_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named : ts.Diagnostics.Return_type_of_public_static_getter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2 : ts.Diagnostics.Return_type_of_public_static_getter_0_from_exported_class_has_or_is_using_private_name_1; } else { diagnosticMessage = symbolAccessibilityResult.errorModuleName ? symbolAccessibilityResult.accessibility === 2 /* SymbolAccessibility.CannotBeNamed */ ? ts.Diagnostics.Return_type_of_public_getter_0_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named : ts.Diagnostics.Return_type_of_public_getter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2 : ts.Diagnostics.Return_type_of_public_getter_0_from_exported_class_has_or_is_using_private_name_1; } } return { diagnosticMessage: diagnosticMessage, errorNode: node.name, typeName: node.name }; } function getReturnTypeVisibilityError(symbolAccessibilityResult) { var diagnosticMessage; switch (node.kind) { case 175 /* SyntaxKind.ConstructSignature */: // Interfaces cannot have return types that cannot be named diagnosticMessage = symbolAccessibilityResult.errorModuleName ? ts.Diagnostics.Return_type_of_constructor_signature_from_exported_interface_has_or_is_using_name_0_from_private_module_1 : ts.Diagnostics.Return_type_of_constructor_signature_from_exported_interface_has_or_is_using_private_name_0; break; case 174 /* SyntaxKind.CallSignature */: // Interfaces cannot have return types that cannot be named diagnosticMessage = symbolAccessibilityResult.errorModuleName ? ts.Diagnostics.Return_type_of_call_signature_from_exported_interface_has_or_is_using_name_0_from_private_module_1 : ts.Diagnostics.Return_type_of_call_signature_from_exported_interface_has_or_is_using_private_name_0; break; case 176 /* SyntaxKind.IndexSignature */: // Interfaces cannot have return types that cannot be named diagnosticMessage = symbolAccessibilityResult.errorModuleName ? ts.Diagnostics.Return_type_of_index_signature_from_exported_interface_has_or_is_using_name_0_from_private_module_1 : ts.Diagnostics.Return_type_of_index_signature_from_exported_interface_has_or_is_using_private_name_0; break; case 169 /* SyntaxKind.MethodDeclaration */: case 168 /* SyntaxKind.MethodSignature */: if (ts.isStatic(node)) { diagnosticMessage = symbolAccessibilityResult.errorModuleName ? symbolAccessibilityResult.accessibility === 2 /* SymbolAccessibility.CannotBeNamed */ ? ts.Diagnostics.Return_type_of_public_static_method_from_exported_class_has_or_is_using_name_0_from_external_module_1_but_cannot_be_named : ts.Diagnostics.Return_type_of_public_static_method_from_exported_class_has_or_is_using_name_0_from_private_module_1 : ts.Diagnostics.Return_type_of_public_static_method_from_exported_class_has_or_is_using_private_name_0; } else if (node.parent.kind === 257 /* SyntaxKind.ClassDeclaration */) { diagnosticMessage = symbolAccessibilityResult.errorModuleName ? symbolAccessibilityResult.accessibility === 2 /* SymbolAccessibility.CannotBeNamed */ ? ts.Diagnostics.Return_type_of_public_method_from_exported_class_has_or_is_using_name_0_from_external_module_1_but_cannot_be_named : ts.Diagnostics.Return_type_of_public_method_from_exported_class_has_or_is_using_name_0_from_private_module_1 : ts.Diagnostics.Return_type_of_public_method_from_exported_class_has_or_is_using_private_name_0; } else { // Interfaces cannot have return types that cannot be named diagnosticMessage = symbolAccessibilityResult.errorModuleName ? ts.Diagnostics.Return_type_of_method_from_exported_interface_has_or_is_using_name_0_from_private_module_1 : ts.Diagnostics.Return_type_of_method_from_exported_interface_has_or_is_using_private_name_0; } break; case 256 /* SyntaxKind.FunctionDeclaration */: diagnosticMessage = symbolAccessibilityResult.errorModuleName ? symbolAccessibilityResult.accessibility === 2 /* SymbolAccessibility.CannotBeNamed */ ? ts.Diagnostics.Return_type_of_exported_function_has_or_is_using_name_0_from_external_module_1_but_cannot_be_named : ts.Diagnostics.Return_type_of_exported_function_has_or_is_using_name_0_from_private_module_1 : ts.Diagnostics.Return_type_of_exported_function_has_or_is_using_private_name_0; break; default: return ts.Debug.fail("This is unknown kind for signature: " + node.kind); } return { diagnosticMessage: diagnosticMessage, errorNode: node.name || node }; } function getParameterDeclarationTypeVisibilityError(symbolAccessibilityResult) { var diagnosticMessage = getParameterDeclarationTypeVisibilityDiagnosticMessage(symbolAccessibilityResult); return diagnosticMessage !== undefined ? { diagnosticMessage: diagnosticMessage, errorNode: node, typeName: node.name } : undefined; } function getParameterDeclarationTypeVisibilityDiagnosticMessage(symbolAccessibilityResult) { switch (node.parent.kind) { case 171 /* SyntaxKind.Constructor */: return symbolAccessibilityResult.errorModuleName ? symbolAccessibilityResult.accessibility === 2 /* SymbolAccessibility.CannotBeNamed */ ? ts.Diagnostics.Parameter_0_of_constructor_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named : ts.Diagnostics.Parameter_0_of_constructor_from_exported_class_has_or_is_using_name_1_from_private_module_2 : ts.Diagnostics.Parameter_0_of_constructor_from_exported_class_has_or_is_using_private_name_1; case 175 /* SyntaxKind.ConstructSignature */: case 180 /* SyntaxKind.ConstructorType */: // Interfaces cannot have parameter types that cannot be named return symbolAccessibilityResult.errorModuleName ? ts.Diagnostics.Parameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_name_1_from_private_module_2 : ts.Diagnostics.Parameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_private_name_1; case 174 /* SyntaxKind.CallSignature */: // Interfaces cannot have parameter types that cannot be named return symbolAccessibilityResult.errorModuleName ? ts.Diagnostics.Parameter_0_of_call_signature_from_exported_interface_has_or_is_using_name_1_from_private_module_2 : ts.Diagnostics.Parameter_0_of_call_signature_from_exported_interface_has_or_is_using_private_name_1; case 176 /* SyntaxKind.IndexSignature */: // Interfaces cannot have parameter types that cannot be named return symbolAccessibilityResult.errorModuleName ? ts.Diagnostics.Parameter_0_of_index_signature_from_exported_interface_has_or_is_using_name_1_from_private_module_2 : ts.Diagnostics.Parameter_0_of_index_signature_from_exported_interface_has_or_is_using_private_name_1; case 169 /* SyntaxKind.MethodDeclaration */: case 168 /* SyntaxKind.MethodSignature */: if (ts.isStatic(node.parent)) { return symbolAccessibilityResult.errorModuleName ? symbolAccessibilityResult.accessibility === 2 /* SymbolAccessibility.CannotBeNamed */ ? ts.Diagnostics.Parameter_0_of_public_static_method_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named : ts.Diagnostics.Parameter_0_of_public_static_method_from_exported_class_has_or_is_using_name_1_from_private_module_2 : ts.Diagnostics.Parameter_0_of_public_static_method_from_exported_class_has_or_is_using_private_name_1; } else if (node.parent.parent.kind === 257 /* SyntaxKind.ClassDeclaration */) { return symbolAccessibilityResult.errorModuleName ? symbolAccessibilityResult.accessibility === 2 /* SymbolAccessibility.CannotBeNamed */ ? ts.Diagnostics.Parameter_0_of_public_method_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named : ts.Diagnostics.Parameter_0_of_public_method_from_exported_class_has_or_is_using_name_1_from_private_module_2 : ts.Diagnostics.Parameter_0_of_public_method_from_exported_class_has_or_is_using_private_name_1; } else { // Interfaces cannot have parameter types that cannot be named return symbolAccessibilityResult.errorModuleName ? ts.Diagnostics.Parameter_0_of_method_from_exported_interface_has_or_is_using_name_1_from_private_module_2 : ts.Diagnostics.Parameter_0_of_method_from_exported_interface_has_or_is_using_private_name_1; } case 256 /* SyntaxKind.FunctionDeclaration */: case 179 /* SyntaxKind.FunctionType */: return symbolAccessibilityResult.errorModuleName ? symbolAccessibilityResult.accessibility === 2 /* SymbolAccessibility.CannotBeNamed */ ? ts.Diagnostics.Parameter_0_of_exported_function_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named : ts.Diagnostics.Parameter_0_of_exported_function_has_or_is_using_name_1_from_private_module_2 : ts.Diagnostics.Parameter_0_of_exported_function_has_or_is_using_private_name_1; case 173 /* SyntaxKind.SetAccessor */: case 172 /* SyntaxKind.GetAccessor */: return symbolAccessibilityResult.errorModuleName ? symbolAccessibilityResult.accessibility === 2 /* SymbolAccessibility.CannotBeNamed */ ? ts.Diagnostics.Parameter_0_of_accessor_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named : ts.Diagnostics.Parameter_0_of_accessor_has_or_is_using_name_1_from_private_module_2 : ts.Diagnostics.Parameter_0_of_accessor_has_or_is_using_private_name_1; default: return ts.Debug.fail("Unknown parent for parameter: ".concat(ts.SyntaxKind[node.parent.kind])); } } function getTypeParameterConstraintVisibilityError() { // Type parameter constraints are named by user so we should always be able to name it var diagnosticMessage; switch (node.parent.kind) { case 257 /* SyntaxKind.ClassDeclaration */: diagnosticMessage = ts.Diagnostics.Type_parameter_0_of_exported_class_has_or_is_using_private_name_1; break; case 258 /* SyntaxKind.InterfaceDeclaration */: diagnosticMessage = ts.Diagnostics.Type_parameter_0_of_exported_interface_has_or_is_using_private_name_1; break; case 195 /* SyntaxKind.MappedType */: diagnosticMessage = ts.Diagnostics.Type_parameter_0_of_exported_mapped_object_type_is_using_private_name_1; break; case 180 /* SyntaxKind.ConstructorType */: case 175 /* SyntaxKind.ConstructSignature */: diagnosticMessage = ts.Diagnostics.Type_parameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_private_name_1; break; case 174 /* SyntaxKind.CallSignature */: diagnosticMessage = ts.Diagnostics.Type_parameter_0_of_call_signature_from_exported_interface_has_or_is_using_private_name_1; break; case 169 /* SyntaxKind.MethodDeclaration */: case 168 /* SyntaxKind.MethodSignature */: if (ts.isStatic(node.parent)) { diagnosticMessage = ts.Diagnostics.Type_parameter_0_of_public_static_method_from_exported_class_has_or_is_using_private_name_1; } else if (node.parent.parent.kind === 257 /* SyntaxKind.ClassDeclaration */) { diagnosticMessage = ts.Diagnostics.Type_parameter_0_of_public_method_from_exported_class_has_or_is_using_private_name_1; } else { diagnosticMessage = ts.Diagnostics.Type_parameter_0_of_method_from_exported_interface_has_or_is_using_private_name_1; } break; case 179 /* SyntaxKind.FunctionType */: case 256 /* SyntaxKind.FunctionDeclaration */: diagnosticMessage = ts.Diagnostics.Type_parameter_0_of_exported_function_has_or_is_using_private_name_1; break; case 259 /* SyntaxKind.TypeAliasDeclaration */: diagnosticMessage = ts.Diagnostics.Type_parameter_0_of_exported_type_alias_has_or_is_using_private_name_1; break; default: return ts.Debug.fail("This is unknown parent for type parameter: " + node.parent.kind); } return { diagnosticMessage: diagnosticMessage, errorNode: node, typeName: node.name }; } function getHeritageClauseVisibilityError() { var diagnosticMessage; // Heritage clause is written by user so it can always be named if (ts.isClassDeclaration(node.parent.parent)) { // Class or Interface implemented/extended is inaccessible diagnosticMessage = ts.isHeritageClause(node.parent) && node.parent.token === 117 /* SyntaxKind.ImplementsKeyword */ ? ts.Diagnostics.Implements_clause_of_exported_class_0_has_or_is_using_private_name_1 : node.parent.parent.name ? ts.Diagnostics.extends_clause_of_exported_class_0_has_or_is_using_private_name_1 : ts.Diagnostics.extends_clause_of_exported_class_has_or_is_using_private_name_0; } else { // interface is inaccessible diagnosticMessage = ts.Diagnostics.extends_clause_of_exported_interface_0_has_or_is_using_private_name_1; } return { diagnosticMessage: diagnosticMessage, errorNode: node, typeName: ts.getNameOfDeclaration(node.parent.parent) }; } function getImportEntityNameVisibilityError() { return { diagnosticMessage: ts.Diagnostics.Import_declaration_0_is_using_private_name_1, errorNode: node, typeName: node.name }; } function getTypeAliasDeclarationVisibilityError(symbolAccessibilityResult) { return { diagnosticMessage: symbolAccessibilityResult.errorModuleName ? ts.Diagnostics.Exported_type_alias_0_has_or_is_using_private_name_1_from_module_2 : ts.Diagnostics.Exported_type_alias_0_has_or_is_using_private_name_1, errorNode: ts.isJSDocTypeAlias(node) ? ts.Debug.checkDefined(node.typeExpression) : node.type, typeName: ts.isJSDocTypeAlias(node) ? ts.getNameOfDeclaration(node) : node.name, }; } } ts.createGetSymbolAccessibilityDiagnosticForNode = createGetSymbolAccessibilityDiagnosticForNode; })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { function getDeclarationDiagnostics(host, resolver, file) { var compilerOptions = host.getCompilerOptions(); var result = ts.transformNodes(resolver, host, ts.factory, compilerOptions, file ? [file] : ts.filter(host.getSourceFiles(), ts.isSourceFileNotJson), [transformDeclarations], /*allowDtsFiles*/ false); return result.diagnostics; } ts.getDeclarationDiagnostics = getDeclarationDiagnostics; function hasInternalAnnotation(range, currentSourceFile) { var comment = currentSourceFile.text.substring(range.pos, range.end); return ts.stringContains(comment, "@internal"); } function isInternalDeclaration(node, currentSourceFile) { var parseTreeNode = ts.getParseTreeNode(node); if (parseTreeNode && parseTreeNode.kind === 164 /* SyntaxKind.Parameter */) { var paramIdx = parseTreeNode.parent.parameters.indexOf(parseTreeNode); var previousSibling = paramIdx > 0 ? parseTreeNode.parent.parameters[paramIdx - 1] : undefined; var text = currentSourceFile.text; var commentRanges = previousSibling ? ts.concatenate( // to handle // ... parameters, /* @internal */ // public param: string ts.getTrailingCommentRanges(text, ts.skipTrivia(text, previousSibling.end + 1, /* stopAfterLineBreak */ false, /* stopAtComments */ true)), ts.getLeadingCommentRanges(text, node.pos)) : ts.getTrailingCommentRanges(text, ts.skipTrivia(text, node.pos, /* stopAfterLineBreak */ false, /* stopAtComments */ true)); return commentRanges && commentRanges.length && hasInternalAnnotation(ts.last(commentRanges), currentSourceFile); } var leadingCommentRanges = parseTreeNode && ts.getLeadingCommentRangesOfNode(parseTreeNode, currentSourceFile); return !!ts.forEach(leadingCommentRanges, function (range) { return hasInternalAnnotation(range, currentSourceFile); }); } ts.isInternalDeclaration = isInternalDeclaration; var declarationEmitNodeBuilderFlags = 1024 /* NodeBuilderFlags.MultilineObjectLiterals */ | 2048 /* NodeBuilderFlags.WriteClassExpressionAsTypeLiteral */ | 4096 /* NodeBuilderFlags.UseTypeOfFunction */ | 8 /* NodeBuilderFlags.UseStructuralFallback */ | 524288 /* NodeBuilderFlags.AllowEmptyTuple */ | 4 /* NodeBuilderFlags.GenerateNamesForShadowedTypeParams */ | 1 /* NodeBuilderFlags.NoTruncation */; /** * Transforms a ts file into a .d.ts file * This process requires type information, which is retrieved through the emit resolver. Because of this, * in many places this transformer assumes it will be operating on parse tree nodes directly. * This means that _no transforms should be allowed to occur before this one_. */ function transformDeclarations(context) { var throwDiagnostic = function () { return ts.Debug.fail("Diagnostic emitted without context"); }; var getSymbolAccessibilityDiagnostic = throwDiagnostic; var needsDeclare = true; var isBundledEmit = false; var resultHasExternalModuleIndicator = false; var needsScopeFixMarker = false; var resultHasScopeMarker = false; var enclosingDeclaration; var necessaryTypeReferences; var lateMarkedStatements; var lateStatementReplacementMap; var suppressNewDiagnosticContexts; var exportedModulesFromDeclarationEmit; var factory = context.factory; var host = context.getEmitHost(); var symbolTracker = { trackSymbol: trackSymbol, reportInaccessibleThisError: reportInaccessibleThisError, reportInaccessibleUniqueSymbolError: reportInaccessibleUniqueSymbolError, reportCyclicStructureError: reportCyclicStructureError, reportPrivateInBaseOfClassExpression: reportPrivateInBaseOfClassExpression, reportLikelyUnsafeImportRequiredError: reportLikelyUnsafeImportRequiredError, reportTruncationError: reportTruncationError, moduleResolverHost: host, trackReferencedAmbientModule: trackReferencedAmbientModule, trackExternalModuleSymbolOfImportTypeNode: trackExternalModuleSymbolOfImportTypeNode, reportNonlocalAugmentation: reportNonlocalAugmentation, reportNonSerializableProperty: reportNonSerializableProperty, reportImportTypeNodeResolutionModeOverride: reportImportTypeNodeResolutionModeOverride, }; var errorNameNode; var errorFallbackNode; var currentSourceFile; var refs; var libs; var emittedImports; // must be declared in container so it can be `undefined` while transformer's first pass var resolver = context.getEmitResolver(); var options = context.getCompilerOptions(); var noResolve = options.noResolve, stripInternal = options.stripInternal; return transformRoot; function recordTypeReferenceDirectivesIfNecessary(typeReferenceDirectives) { if (!typeReferenceDirectives) { return; } necessaryTypeReferences = necessaryTypeReferences || new ts.Set(); for (var _i = 0, typeReferenceDirectives_2 = typeReferenceDirectives; _i < typeReferenceDirectives_2.length; _i++) { var ref = typeReferenceDirectives_2[_i]; necessaryTypeReferences.add(ref); } } function trackReferencedAmbientModule(node, symbol) { // If it is visible via `// `, then we should just use that var directives = resolver.getTypeReferenceDirectivesForSymbol(symbol, 67108863 /* SymbolFlags.All */); if (ts.length(directives)) { return recordTypeReferenceDirectivesIfNecessary(directives); } // Otherwise we should emit a path-based reference var container = ts.getSourceFileOfNode(node); refs.set(ts.getOriginalNodeId(container), container); } function handleSymbolAccessibilityError(symbolAccessibilityResult) { if (symbolAccessibilityResult.accessibility === 0 /* SymbolAccessibility.Accessible */) { // Add aliases back onto the possible imports list if they're not there so we can try them again with updated visibility info if (symbolAccessibilityResult && symbolAccessibilityResult.aliasesToMakeVisible) { if (!lateMarkedStatements) { lateMarkedStatements = symbolAccessibilityResult.aliasesToMakeVisible; } else { for (var _i = 0, _a = symbolAccessibilityResult.aliasesToMakeVisible; _i < _a.length; _i++) { var ref = _a[_i]; ts.pushIfUnique(lateMarkedStatements, ref); } } } // TODO: Do all these accessibility checks inside/after the first pass in the checker when declarations are enabled, if possible } else { // Report error var errorInfo = getSymbolAccessibilityDiagnostic(symbolAccessibilityResult); if (errorInfo) { if (errorInfo.typeName) { context.addDiagnostic(ts.createDiagnosticForNode(symbolAccessibilityResult.errorNode || errorInfo.errorNode, errorInfo.diagnosticMessage, ts.getTextOfNode(errorInfo.typeName), symbolAccessibilityResult.errorSymbolName, symbolAccessibilityResult.errorModuleName)); } else { context.addDiagnostic(ts.createDiagnosticForNode(symbolAccessibilityResult.errorNode || errorInfo.errorNode, errorInfo.diagnosticMessage, symbolAccessibilityResult.errorSymbolName, symbolAccessibilityResult.errorModuleName)); } return true; } } return false; } function trackExternalModuleSymbolOfImportTypeNode(symbol) { if (!isBundledEmit) { (exportedModulesFromDeclarationEmit || (exportedModulesFromDeclarationEmit = [])).push(symbol); } } function trackSymbol(symbol, enclosingDeclaration, meaning) { if (symbol.flags & 262144 /* SymbolFlags.TypeParameter */) return false; var issuedDiagnostic = handleSymbolAccessibilityError(resolver.isSymbolAccessible(symbol, enclosingDeclaration, meaning, /*shouldComputeAliasesToMakeVisible*/ true)); recordTypeReferenceDirectivesIfNecessary(resolver.getTypeReferenceDirectivesForSymbol(symbol, meaning)); return issuedDiagnostic; } function reportPrivateInBaseOfClassExpression(propertyName) { if (errorNameNode || errorFallbackNode) { context.addDiagnostic(ts.createDiagnosticForNode((errorNameNode || errorFallbackNode), ts.Diagnostics.Property_0_of_exported_class_expression_may_not_be_private_or_protected, propertyName)); } } function errorDeclarationNameWithFallback() { return errorNameNode ? ts.declarationNameToString(errorNameNode) : errorFallbackNode && ts.getNameOfDeclaration(errorFallbackNode) ? ts.declarationNameToString(ts.getNameOfDeclaration(errorFallbackNode)) : errorFallbackNode && ts.isExportAssignment(errorFallbackNode) ? errorFallbackNode.isExportEquals ? "export=" : "default" : "(Missing)"; // same fallback declarationNameToString uses when node is zero-width (ie, nameless) } function reportInaccessibleUniqueSymbolError() { if (errorNameNode || errorFallbackNode) { context.addDiagnostic(ts.createDiagnosticForNode((errorNameNode || errorFallbackNode), ts.Diagnostics.The_inferred_type_of_0_references_an_inaccessible_1_type_A_type_annotation_is_necessary, errorDeclarationNameWithFallback(), "unique symbol")); } } function reportCyclicStructureError() { if (errorNameNode || errorFallbackNode) { context.addDiagnostic(ts.createDiagnosticForNode((errorNameNode || errorFallbackNode), ts.Diagnostics.The_inferred_type_of_0_references_a_type_with_a_cyclic_structure_which_cannot_be_trivially_serialized_A_type_annotation_is_necessary, errorDeclarationNameWithFallback())); } } function reportInaccessibleThisError() { if (errorNameNode || errorFallbackNode) { context.addDiagnostic(ts.createDiagnosticForNode((errorNameNode || errorFallbackNode), ts.Diagnostics.The_inferred_type_of_0_references_an_inaccessible_1_type_A_type_annotation_is_necessary, errorDeclarationNameWithFallback(), "this")); } } function reportLikelyUnsafeImportRequiredError(specifier) { if (errorNameNode || errorFallbackNode) { context.addDiagnostic(ts.createDiagnosticForNode((errorNameNode || errorFallbackNode), ts.Diagnostics.The_inferred_type_of_0_cannot_be_named_without_a_reference_to_1_This_is_likely_not_portable_A_type_annotation_is_necessary, errorDeclarationNameWithFallback(), specifier)); } } function reportTruncationError() { if (errorNameNode || errorFallbackNode) { context.addDiagnostic(ts.createDiagnosticForNode((errorNameNode || errorFallbackNode), ts.Diagnostics.The_inferred_type_of_this_node_exceeds_the_maximum_length_the_compiler_will_serialize_An_explicit_type_annotation_is_needed)); } } function reportNonlocalAugmentation(containingFile, parentSymbol, symbol) { var _a; var primaryDeclaration = (_a = parentSymbol.declarations) === null || _a === void 0 ? void 0 : _a.find(function (d) { return ts.getSourceFileOfNode(d) === containingFile; }); var augmentingDeclarations = ts.filter(symbol.declarations, function (d) { return ts.getSourceFileOfNode(d) !== containingFile; }); if (augmentingDeclarations) { for (var _i = 0, augmentingDeclarations_1 = augmentingDeclarations; _i < augmentingDeclarations_1.length; _i++) { var augmentations = augmentingDeclarations_1[_i]; context.addDiagnostic(ts.addRelatedInfo(ts.createDiagnosticForNode(augmentations, ts.Diagnostics.Declaration_augments_declaration_in_another_file_This_cannot_be_serialized), ts.createDiagnosticForNode(primaryDeclaration, ts.Diagnostics.This_is_the_declaration_being_augmented_Consider_moving_the_augmenting_declaration_into_the_same_file))); } } } function reportNonSerializableProperty(propertyName) { if (errorNameNode || errorFallbackNode) { context.addDiagnostic(ts.createDiagnosticForNode((errorNameNode || errorFallbackNode), ts.Diagnostics.The_type_of_this_node_cannot_be_serialized_because_its_property_0_cannot_be_serialized, propertyName)); } } function reportImportTypeNodeResolutionModeOverride() { if (!ts.isNightly() && (errorNameNode || errorFallbackNode)) { context.addDiagnostic(ts.createDiagnosticForNode((errorNameNode || errorFallbackNode), ts.Diagnostics.The_type_of_this_expression_cannot_be_named_without_a_resolution_mode_assertion_which_is_an_unstable_feature_Use_nightly_TypeScript_to_silence_this_error_Try_updating_with_npm_install_D_typescript_next)); } } function transformDeclarationsForJS(sourceFile, bundled) { var oldDiag = getSymbolAccessibilityDiagnostic; getSymbolAccessibilityDiagnostic = function (s) { return (s.errorNode && ts.canProduceDiagnostics(s.errorNode) ? ts.createGetSymbolAccessibilityDiagnosticForNode(s.errorNode)(s) : ({ diagnosticMessage: s.errorModuleName ? ts.Diagnostics.Declaration_emit_for_this_file_requires_using_private_name_0_from_module_1_An_explicit_type_annotation_may_unblock_declaration_emit : ts.Diagnostics.Declaration_emit_for_this_file_requires_using_private_name_0_An_explicit_type_annotation_may_unblock_declaration_emit, errorNode: s.errorNode || sourceFile })); }; var result = resolver.getDeclarationStatementsForSourceFile(sourceFile, declarationEmitNodeBuilderFlags, symbolTracker, bundled); getSymbolAccessibilityDiagnostic = oldDiag; return result; } function transformRoot(node) { if (node.kind === 305 /* SyntaxKind.SourceFile */ && node.isDeclarationFile) { return node; } if (node.kind === 306 /* SyntaxKind.Bundle */) { isBundledEmit = true; refs = new ts.Map(); libs = new ts.Map(); var hasNoDefaultLib_1 = false; var bundle = factory.createBundle(ts.map(node.sourceFiles, function (sourceFile) { if (sourceFile.isDeclarationFile) return undefined; // Omit declaration files from bundle results, too // TODO: GH#18217 hasNoDefaultLib_1 = hasNoDefaultLib_1 || sourceFile.hasNoDefaultLib; currentSourceFile = sourceFile; enclosingDeclaration = sourceFile; lateMarkedStatements = undefined; suppressNewDiagnosticContexts = false; lateStatementReplacementMap = new ts.Map(); getSymbolAccessibilityDiagnostic = throwDiagnostic; needsScopeFixMarker = false; resultHasScopeMarker = false; collectReferences(sourceFile, refs); collectLibs(sourceFile, libs); if (ts.isExternalOrCommonJsModule(sourceFile) || ts.isJsonSourceFile(sourceFile)) { resultHasExternalModuleIndicator = false; // unused in external module bundle emit (all external modules are within module blocks, therefore are known to be modules) needsDeclare = false; var statements = ts.isSourceFileJS(sourceFile) ? factory.createNodeArray(transformDeclarationsForJS(sourceFile, /*bundled*/ true)) : ts.visitNodes(sourceFile.statements, visitDeclarationStatements); var newFile = factory.updateSourceFile(sourceFile, [factory.createModuleDeclaration([], [factory.createModifier(135 /* SyntaxKind.DeclareKeyword */)], factory.createStringLiteral(ts.getResolvedExternalModuleName(context.getEmitHost(), sourceFile)), factory.createModuleBlock(ts.setTextRange(factory.createNodeArray(transformAndReplaceLatePaintedStatements(statements)), sourceFile.statements)))], /*isDeclarationFile*/ true, /*referencedFiles*/ [], /*typeReferences*/ [], /*hasNoDefaultLib*/ false, /*libReferences*/ []); return newFile; } needsDeclare = true; var updated = ts.isSourceFileJS(sourceFile) ? factory.createNodeArray(transformDeclarationsForJS(sourceFile)) : ts.visitNodes(sourceFile.statements, visitDeclarationStatements); return factory.updateSourceFile(sourceFile, transformAndReplaceLatePaintedStatements(updated), /*isDeclarationFile*/ true, /*referencedFiles*/ [], /*typeReferences*/ [], /*hasNoDefaultLib*/ false, /*libReferences*/ []); }), ts.mapDefined(node.prepends, function (prepend) { if (prepend.kind === 308 /* SyntaxKind.InputFiles */) { var sourceFile = ts.createUnparsedSourceFile(prepend, "dts", stripInternal); hasNoDefaultLib_1 = hasNoDefaultLib_1 || !!sourceFile.hasNoDefaultLib; collectReferences(sourceFile, refs); recordTypeReferenceDirectivesIfNecessary(ts.map(sourceFile.typeReferenceDirectives, function (ref) { return [ref.fileName, ref.resolutionMode]; })); collectLibs(sourceFile, libs); return sourceFile; } return prepend; })); bundle.syntheticFileReferences = []; bundle.syntheticTypeReferences = getFileReferencesForUsedTypeReferences(); bundle.syntheticLibReferences = getLibReferences(); bundle.hasNoDefaultLib = hasNoDefaultLib_1; var outputFilePath_1 = ts.getDirectoryPath(ts.normalizeSlashes(ts.getOutputPathsFor(node, host, /*forceDtsPaths*/ true).declarationFilePath)); var referenceVisitor_1 = mapReferencesIntoArray(bundle.syntheticFileReferences, outputFilePath_1); refs.forEach(referenceVisitor_1); return bundle; } // Single source file needsDeclare = true; needsScopeFixMarker = false; resultHasScopeMarker = false; enclosingDeclaration = node; currentSourceFile = node; getSymbolAccessibilityDiagnostic = throwDiagnostic; isBundledEmit = false; resultHasExternalModuleIndicator = false; suppressNewDiagnosticContexts = false; lateMarkedStatements = undefined; lateStatementReplacementMap = new ts.Map(); necessaryTypeReferences = undefined; refs = collectReferences(currentSourceFile, new ts.Map()); libs = collectLibs(currentSourceFile, new ts.Map()); var references = []; var outputFilePath = ts.getDirectoryPath(ts.normalizeSlashes(ts.getOutputPathsFor(node, host, /*forceDtsPaths*/ true).declarationFilePath)); var referenceVisitor = mapReferencesIntoArray(references, outputFilePath); var combinedStatements; if (ts.isSourceFileJS(currentSourceFile)) { combinedStatements = factory.createNodeArray(transformDeclarationsForJS(node)); refs.forEach(referenceVisitor); emittedImports = ts.filter(combinedStatements, ts.isAnyImportSyntax); } else { var statements = ts.visitNodes(node.statements, visitDeclarationStatements); combinedStatements = ts.setTextRange(factory.createNodeArray(transformAndReplaceLatePaintedStatements(statements)), node.statements); refs.forEach(referenceVisitor); emittedImports = ts.filter(combinedStatements, ts.isAnyImportSyntax); if (ts.isExternalModule(node) && (!resultHasExternalModuleIndicator || (needsScopeFixMarker && !resultHasScopeMarker))) { combinedStatements = ts.setTextRange(factory.createNodeArray(__spreadArray(__spreadArray([], combinedStatements, true), [ts.createEmptyExports(factory)], false)), combinedStatements); } } var updated = factory.updateSourceFile(node, combinedStatements, /*isDeclarationFile*/ true, references, getFileReferencesForUsedTypeReferences(), node.hasNoDefaultLib, getLibReferences()); updated.exportedModulesFromDeclarationEmit = exportedModulesFromDeclarationEmit; return updated; function getLibReferences() { return ts.map(ts.arrayFrom(libs.keys()), function (lib) { return ({ fileName: lib, pos: -1, end: -1 }); }); } function getFileReferencesForUsedTypeReferences() { return necessaryTypeReferences ? ts.mapDefined(ts.arrayFrom(necessaryTypeReferences.keys()), getFileReferenceForSpecifierModeTuple) : []; } function getFileReferenceForSpecifierModeTuple(_a) { var typeName = _a[0], mode = _a[1]; // Elide type references for which we have imports if (emittedImports) { for (var _i = 0, emittedImports_1 = emittedImports; _i < emittedImports_1.length; _i++) { var importStatement = emittedImports_1[_i]; if (ts.isImportEqualsDeclaration(importStatement) && ts.isExternalModuleReference(importStatement.moduleReference)) { var expr = importStatement.moduleReference.expression; if (ts.isStringLiteralLike(expr) && expr.text === typeName) { return undefined; } } else if (ts.isImportDeclaration(importStatement) && ts.isStringLiteral(importStatement.moduleSpecifier) && importStatement.moduleSpecifier.text === typeName) { return undefined; } } } return __assign({ fileName: typeName, pos: -1, end: -1 }, (mode ? { resolutionMode: mode } : undefined)); } function mapReferencesIntoArray(references, outputFilePath) { return function (file) { var declFileName; if (file.isDeclarationFile) { // Neither decl files or js should have their refs changed declFileName = file.fileName; } else { if (isBundledEmit && ts.contains(node.sourceFiles, file)) return; // Omit references to files which are being merged var paths = ts.getOutputPathsFor(file, host, /*forceDtsPaths*/ true); declFileName = paths.declarationFilePath || paths.jsFilePath || file.fileName; } if (declFileName) { var specifier = ts.moduleSpecifiers.getModuleSpecifier(options, currentSourceFile, ts.toPath(outputFilePath, host.getCurrentDirectory(), host.getCanonicalFileName), ts.toPath(declFileName, host.getCurrentDirectory(), host.getCanonicalFileName), host); if (!ts.pathIsRelative(specifier)) { // If some compiler option/symlink/whatever allows access to the file containing the ambient module declaration // via a non-relative name, emit a type reference directive to that non-relative name, rather than // a relative path to the declaration file recordTypeReferenceDirectivesIfNecessary([[specifier, /*mode*/ undefined]]); return; } var fileName = ts.getRelativePathToDirectoryOrUrl(outputFilePath, declFileName, host.getCurrentDirectory(), host.getCanonicalFileName, /*isAbsolutePathAnUrl*/ false); if (ts.startsWith(fileName, "./") && ts.hasExtension(fileName)) { fileName = fileName.substring(2); } // omit references to files from node_modules (npm may disambiguate module // references when installing this package, making the path is unreliable). if (ts.startsWith(fileName, "node_modules/") || ts.pathContainsNodeModules(fileName)) { return; } references.push({ pos: -1, end: -1, fileName: fileName }); } }; } } function collectReferences(sourceFile, ret) { if (noResolve || (!ts.isUnparsedSource(sourceFile) && ts.isSourceFileJS(sourceFile))) return ret; ts.forEach(sourceFile.referencedFiles, function (f) { var elem = host.getSourceFileFromReference(sourceFile, f); if (elem) { ret.set(ts.getOriginalNodeId(elem), elem); } }); return ret; } function collectLibs(sourceFile, ret) { ts.forEach(sourceFile.libReferenceDirectives, function (ref) { var lib = host.getLibFileFromReference(ref); if (lib) { ret.set(ts.toFileNameLowerCase(ref.fileName), true); } }); return ret; } function filterBindingPatternInitializers(name) { if (name.kind === 79 /* SyntaxKind.Identifier */) { return name; } else { if (name.kind === 202 /* SyntaxKind.ArrayBindingPattern */) { return factory.updateArrayBindingPattern(name, ts.visitNodes(name.elements, visitBindingElement)); } else { return factory.updateObjectBindingPattern(name, ts.visitNodes(name.elements, visitBindingElement)); } } function visitBindingElement(elem) { if (elem.kind === 227 /* SyntaxKind.OmittedExpression */) { return elem; } return factory.updateBindingElement(elem, elem.dotDotDotToken, elem.propertyName, filterBindingPatternInitializers(elem.name), shouldPrintWithInitializer(elem) ? elem.initializer : undefined); } } function ensureParameter(p, modifierMask, type) { var oldDiag; if (!suppressNewDiagnosticContexts) { oldDiag = getSymbolAccessibilityDiagnostic; getSymbolAccessibilityDiagnostic = ts.createGetSymbolAccessibilityDiagnosticForNode(p); } var newParam = factory.updateParameterDeclaration(p, /*decorators*/ undefined, maskModifiers(p, modifierMask), p.dotDotDotToken, filterBindingPatternInitializers(p.name), resolver.isOptionalParameter(p) ? (p.questionToken || factory.createToken(57 /* SyntaxKind.QuestionToken */)) : undefined, ensureType(p, type || p.type, /*ignorePrivate*/ true), // Ignore private param props, since this type is going straight back into a param ensureNoInitializer(p)); if (!suppressNewDiagnosticContexts) { getSymbolAccessibilityDiagnostic = oldDiag; } return newParam; } function shouldPrintWithInitializer(node) { return canHaveLiteralInitializer(node) && resolver.isLiteralConstDeclaration(ts.getParseTreeNode(node)); // TODO: Make safe } function ensureNoInitializer(node) { if (shouldPrintWithInitializer(node)) { return resolver.createLiteralConstValue(ts.getParseTreeNode(node), symbolTracker); // TODO: Make safe } return undefined; } function ensureType(node, type, ignorePrivate) { if (!ignorePrivate && ts.hasEffectiveModifier(node, 8 /* ModifierFlags.Private */)) { // Private nodes emit no types (except private parameter properties, whose parameter types are actually visible) return; } if (shouldPrintWithInitializer(node)) { // Literal const declarations will have an initializer ensured rather than a type return; } var shouldUseResolverType = node.kind === 164 /* SyntaxKind.Parameter */ && (resolver.isRequiredInitializedParameter(node) || resolver.isOptionalUninitializedParameterProperty(node)); if (type && !shouldUseResolverType) { return ts.visitNode(type, visitDeclarationSubtree); } if (!ts.getParseTreeNode(node)) { return type ? ts.visitNode(type, visitDeclarationSubtree) : factory.createKeywordTypeNode(130 /* SyntaxKind.AnyKeyword */); } if (node.kind === 173 /* SyntaxKind.SetAccessor */) { // Set accessors with no associated type node (from it's param or get accessor return) are `any` since they are never contextually typed right now // (The inferred type here will be void, but the old declaration emitter printed `any`, so this replicates that) return factory.createKeywordTypeNode(130 /* SyntaxKind.AnyKeyword */); } errorNameNode = node.name; var oldDiag; if (!suppressNewDiagnosticContexts) { oldDiag = getSymbolAccessibilityDiagnostic; getSymbolAccessibilityDiagnostic = ts.createGetSymbolAccessibilityDiagnosticForNode(node); } if (node.kind === 254 /* SyntaxKind.VariableDeclaration */ || node.kind === 203 /* SyntaxKind.BindingElement */) { return cleanup(resolver.createTypeOfDeclaration(node, enclosingDeclaration, declarationEmitNodeBuilderFlags, symbolTracker)); } if (node.kind === 164 /* SyntaxKind.Parameter */ || node.kind === 167 /* SyntaxKind.PropertyDeclaration */ || node.kind === 166 /* SyntaxKind.PropertySignature */) { if (!node.initializer) return cleanup(resolver.createTypeOfDeclaration(node, enclosingDeclaration, declarationEmitNodeBuilderFlags, symbolTracker, shouldUseResolverType)); return cleanup(resolver.createTypeOfDeclaration(node, enclosingDeclaration, declarationEmitNodeBuilderFlags, symbolTracker, shouldUseResolverType) || resolver.createTypeOfExpression(node.initializer, enclosingDeclaration, declarationEmitNodeBuilderFlags, symbolTracker)); } return cleanup(resolver.createReturnTypeOfSignatureDeclaration(node, enclosingDeclaration, declarationEmitNodeBuilderFlags, symbolTracker)); function cleanup(returnValue) { errorNameNode = undefined; if (!suppressNewDiagnosticContexts) { getSymbolAccessibilityDiagnostic = oldDiag; } return returnValue || factory.createKeywordTypeNode(130 /* SyntaxKind.AnyKeyword */); } } function isDeclarationAndNotVisible(node) { node = ts.getParseTreeNode(node); switch (node.kind) { case 256 /* SyntaxKind.FunctionDeclaration */: case 261 /* SyntaxKind.ModuleDeclaration */: case 258 /* SyntaxKind.InterfaceDeclaration */: case 257 /* SyntaxKind.ClassDeclaration */: case 259 /* SyntaxKind.TypeAliasDeclaration */: case 260 /* SyntaxKind.EnumDeclaration */: return !resolver.isDeclarationVisible(node); // The following should be doing their own visibility checks based on filtering their members case 254 /* SyntaxKind.VariableDeclaration */: return !getBindingNameVisible(node); case 265 /* SyntaxKind.ImportEqualsDeclaration */: case 266 /* SyntaxKind.ImportDeclaration */: case 272 /* SyntaxKind.ExportDeclaration */: case 271 /* SyntaxKind.ExportAssignment */: return false; case 170 /* SyntaxKind.ClassStaticBlockDeclaration */: return true; } return false; } // If the ExpandoFunctionDeclaration have multiple overloads, then we only need to emit properties for the last one. function shouldEmitFunctionProperties(input) { var _a; if (input.body) { return true; } var overloadSignatures = (_a = input.symbol.declarations) === null || _a === void 0 ? void 0 : _a.filter(function (decl) { return ts.isFunctionDeclaration(decl) && !decl.body; }); return !overloadSignatures || overloadSignatures.indexOf(input) === overloadSignatures.length - 1; } function getBindingNameVisible(elem) { if (ts.isOmittedExpression(elem)) { return false; } if (ts.isBindingPattern(elem.name)) { // If any child binding pattern element has been marked visible (usually by collect linked aliases), then this is visible return ts.some(elem.name.elements, getBindingNameVisible); } else { return resolver.isDeclarationVisible(elem); } } function updateParamsList(node, params, modifierMask) { if (ts.hasEffectiveModifier(node, 8 /* ModifierFlags.Private */)) { return undefined; // TODO: GH#18217 } var newParams = ts.map(params, function (p) { return ensureParameter(p, modifierMask); }); if (!newParams) { return undefined; // TODO: GH#18217 } return factory.createNodeArray(newParams, params.hasTrailingComma); } function updateAccessorParamsList(input, isPrivate) { var newParams; if (!isPrivate) { var thisParameter = ts.getThisParameter(input); if (thisParameter) { newParams = [ensureParameter(thisParameter)]; } } if (ts.isSetAccessorDeclaration(input)) { var newValueParameter = void 0; if (!isPrivate) { var valueParameter = ts.getSetAccessorValueParameter(input); if (valueParameter) { var accessorType = getTypeAnnotationFromAllAccessorDeclarations(input, resolver.getAllAccessorDeclarations(input)); newValueParameter = ensureParameter(valueParameter, /*modifierMask*/ undefined, accessorType); } } if (!newValueParameter) { newValueParameter = factory.createParameterDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*dotDotDotToken*/ undefined, "value"); } newParams = ts.append(newParams, newValueParameter); } return factory.createNodeArray(newParams || ts.emptyArray); } function ensureTypeParams(node, params) { return ts.hasEffectiveModifier(node, 8 /* ModifierFlags.Private */) ? undefined : ts.visitNodes(params, visitDeclarationSubtree); } function isEnclosingDeclaration(node) { return ts.isSourceFile(node) || ts.isTypeAliasDeclaration(node) || ts.isModuleDeclaration(node) || ts.isClassDeclaration(node) || ts.isInterfaceDeclaration(node) || ts.isFunctionLike(node) || ts.isIndexSignatureDeclaration(node) || ts.isMappedTypeNode(node); } function checkEntityNameVisibility(entityName, enclosingDeclaration) { var visibilityResult = resolver.isEntityNameVisible(entityName, enclosingDeclaration); handleSymbolAccessibilityError(visibilityResult); recordTypeReferenceDirectivesIfNecessary(resolver.getTypeReferenceDirectivesForEntityName(entityName)); } function preserveJsDoc(updated, original) { if (ts.hasJSDocNodes(updated) && ts.hasJSDocNodes(original)) { updated.jsDoc = original.jsDoc; } return ts.setCommentRange(updated, ts.getCommentRange(original)); } function rewriteModuleSpecifier(parent, input) { if (!input) return undefined; // TODO: GH#18217 resultHasExternalModuleIndicator = resultHasExternalModuleIndicator || (parent.kind !== 261 /* SyntaxKind.ModuleDeclaration */ && parent.kind !== 200 /* SyntaxKind.ImportType */); if (ts.isStringLiteralLike(input)) { if (isBundledEmit) { var newName = ts.getExternalModuleNameFromDeclaration(context.getEmitHost(), resolver, parent); if (newName) { return factory.createStringLiteral(newName); } } else { var symbol = resolver.getSymbolOfExternalModuleSpecifier(input); if (symbol) { (exportedModulesFromDeclarationEmit || (exportedModulesFromDeclarationEmit = [])).push(symbol); } } } return input; } function transformImportEqualsDeclaration(decl) { if (!resolver.isDeclarationVisible(decl)) return; if (decl.moduleReference.kind === 277 /* SyntaxKind.ExternalModuleReference */) { // Rewrite external module names if necessary var specifier = ts.getExternalModuleImportEqualsDeclarationExpression(decl); return factory.updateImportEqualsDeclaration(decl, /*decorators*/ undefined, decl.modifiers, decl.isTypeOnly, decl.name, factory.updateExternalModuleReference(decl.moduleReference, rewriteModuleSpecifier(decl, specifier))); } else { var oldDiag = getSymbolAccessibilityDiagnostic; getSymbolAccessibilityDiagnostic = ts.createGetSymbolAccessibilityDiagnosticForNode(decl); checkEntityNameVisibility(decl.moduleReference, enclosingDeclaration); getSymbolAccessibilityDiagnostic = oldDiag; return decl; } } function transformImportDeclaration(decl) { if (!decl.importClause) { // import "mod" - possibly needed for side effects? (global interface patches, module augmentations, etc) return factory.updateImportDeclaration(decl, /*decorators*/ undefined, decl.modifiers, decl.importClause, rewriteModuleSpecifier(decl, decl.moduleSpecifier), getResolutionModeOverrideForClauseInNightly(decl.assertClause)); } // The `importClause` visibility corresponds to the default's visibility. var visibleDefaultBinding = decl.importClause && decl.importClause.name && resolver.isDeclarationVisible(decl.importClause) ? decl.importClause.name : undefined; if (!decl.importClause.namedBindings) { // No named bindings (either namespace or list), meaning the import is just default or should be elided return visibleDefaultBinding && factory.updateImportDeclaration(decl, /*decorators*/ undefined, decl.modifiers, factory.updateImportClause(decl.importClause, decl.importClause.isTypeOnly, visibleDefaultBinding, /*namedBindings*/ undefined), rewriteModuleSpecifier(decl, decl.moduleSpecifier), getResolutionModeOverrideForClauseInNightly(decl.assertClause)); } if (decl.importClause.namedBindings.kind === 268 /* SyntaxKind.NamespaceImport */) { // Namespace import (optionally with visible default) var namedBindings = resolver.isDeclarationVisible(decl.importClause.namedBindings) ? decl.importClause.namedBindings : /*namedBindings*/ undefined; return visibleDefaultBinding || namedBindings ? factory.updateImportDeclaration(decl, /*decorators*/ undefined, decl.modifiers, factory.updateImportClause(decl.importClause, decl.importClause.isTypeOnly, visibleDefaultBinding, namedBindings), rewriteModuleSpecifier(decl, decl.moduleSpecifier), getResolutionModeOverrideForClauseInNightly(decl.assertClause)) : undefined; } // Named imports (optionally with visible default) var bindingList = ts.mapDefined(decl.importClause.namedBindings.elements, function (b) { return resolver.isDeclarationVisible(b) ? b : undefined; }); if ((bindingList && bindingList.length) || visibleDefaultBinding) { return factory.updateImportDeclaration(decl, /*decorators*/ undefined, decl.modifiers, factory.updateImportClause(decl.importClause, decl.importClause.isTypeOnly, visibleDefaultBinding, bindingList && bindingList.length ? factory.updateNamedImports(decl.importClause.namedBindings, bindingList) : undefined), rewriteModuleSpecifier(decl, decl.moduleSpecifier), getResolutionModeOverrideForClauseInNightly(decl.assertClause)); } // Augmentation of export depends on import if (resolver.isImportRequiredByAugmentation(decl)) { return factory.updateImportDeclaration(decl, /*decorators*/ undefined, decl.modifiers, /*importClause*/ undefined, rewriteModuleSpecifier(decl, decl.moduleSpecifier), getResolutionModeOverrideForClauseInNightly(decl.assertClause)); } // Nothing visible } function getResolutionModeOverrideForClauseInNightly(assertClause) { var mode = ts.getResolutionModeOverrideForClause(assertClause); if (mode !== undefined) { if (!ts.isNightly()) { context.addDiagnostic(ts.createDiagnosticForNode(assertClause, ts.Diagnostics.resolution_mode_assertions_are_unstable_Use_nightly_TypeScript_to_silence_this_error_Try_updating_with_npm_install_D_typescript_next)); } return assertClause; } return undefined; } function transformAndReplaceLatePaintedStatements(statements) { // This is a `while` loop because `handleSymbolAccessibilityError` can see additional import aliases marked as visible during // error handling which must now be included in the output and themselves checked for errors. // For example: // ``` // module A { // export module Q {} // import B = Q; // import C = B; // export import D = C; // } // ``` // In such a scenario, only Q and D are initially visible, but we don't consider imports as private names - instead we say they if they are referenced they must // be recorded. So while checking D's visibility we mark C as visible, then we must check C which in turn marks B, completing the chain of // dependent imports and allowing a valid declaration file output. Today, this dependent alias marking only happens for internal import aliases. while (ts.length(lateMarkedStatements)) { var i = lateMarkedStatements.shift(); if (!ts.isLateVisibilityPaintedStatement(i)) { return ts.Debug.fail("Late replaced statement was found which is not handled by the declaration transformer!: ".concat(ts.SyntaxKind ? ts.SyntaxKind[i.kind] : i.kind)); } var priorNeedsDeclare = needsDeclare; needsDeclare = i.parent && ts.isSourceFile(i.parent) && !(ts.isExternalModule(i.parent) && isBundledEmit); var result = transformTopLevelDeclaration(i); needsDeclare = priorNeedsDeclare; lateStatementReplacementMap.set(ts.getOriginalNodeId(i), result); } // And lastly, we need to get the final form of all those indetermine import declarations from before and add them to the output list // (and remove them from the set to examine for outter declarations) return ts.visitNodes(statements, visitLateVisibilityMarkedStatements); function visitLateVisibilityMarkedStatements(statement) { if (ts.isLateVisibilityPaintedStatement(statement)) { var key = ts.getOriginalNodeId(statement); if (lateStatementReplacementMap.has(key)) { var result = lateStatementReplacementMap.get(key); lateStatementReplacementMap.delete(key); if (result) { if (ts.isArray(result) ? ts.some(result, ts.needsScopeMarker) : ts.needsScopeMarker(result)) { // Top-level declarations in .d.ts files are always considered exported even without a modifier unless there's an export assignment or specifier needsScopeFixMarker = true; } if (ts.isSourceFile(statement.parent) && (ts.isArray(result) ? ts.some(result, ts.isExternalModuleIndicator) : ts.isExternalModuleIndicator(result))) { resultHasExternalModuleIndicator = true; } } return result; } } return statement; } } function visitDeclarationSubtree(input) { if (shouldStripInternal(input)) return; if (ts.isDeclaration(input)) { if (isDeclarationAndNotVisible(input)) return; if (ts.hasDynamicName(input) && !resolver.isLateBound(ts.getParseTreeNode(input))) { return; } } // Elide implementation signatures from overload sets if (ts.isFunctionLike(input) && resolver.isImplementationOfOverload(input)) return; // Elide semicolon class statements if (ts.isSemicolonClassElement(input)) return; var previousEnclosingDeclaration; if (isEnclosingDeclaration(input)) { previousEnclosingDeclaration = enclosingDeclaration; enclosingDeclaration = input; } var oldDiag = getSymbolAccessibilityDiagnostic; // Setup diagnostic-related flags before first potential `cleanup` call, otherwise // We'd see a TDZ violation at runtime var canProduceDiagnostic = ts.canProduceDiagnostics(input); var oldWithinObjectLiteralType = suppressNewDiagnosticContexts; var shouldEnterSuppressNewDiagnosticsContextContext = ((input.kind === 182 /* SyntaxKind.TypeLiteral */ || input.kind === 195 /* SyntaxKind.MappedType */) && input.parent.kind !== 259 /* SyntaxKind.TypeAliasDeclaration */); // Emit methods which are private as properties with no type information if (ts.isMethodDeclaration(input) || ts.isMethodSignature(input)) { if (ts.hasEffectiveModifier(input, 8 /* ModifierFlags.Private */)) { if (input.symbol && input.symbol.declarations && input.symbol.declarations[0] !== input) return; // Elide all but the first overload return cleanup(factory.createPropertyDeclaration(/*decorators*/ undefined, ensureModifiers(input), input.name, /*questionToken*/ undefined, /*type*/ undefined, /*initializer*/ undefined)); } } if (canProduceDiagnostic && !suppressNewDiagnosticContexts) { getSymbolAccessibilityDiagnostic = ts.createGetSymbolAccessibilityDiagnosticForNode(input); } if (ts.isTypeQueryNode(input)) { checkEntityNameVisibility(input.exprName, enclosingDeclaration); } if (shouldEnterSuppressNewDiagnosticsContextContext) { // We stop making new diagnostic contexts within object literal types. Unless it's an object type on the RHS of a type alias declaration. Then we do. suppressNewDiagnosticContexts = true; } if (isProcessedComponent(input)) { switch (input.kind) { case 228 /* SyntaxKind.ExpressionWithTypeArguments */: { if ((ts.isEntityName(input.expression) || ts.isEntityNameExpression(input.expression))) { checkEntityNameVisibility(input.expression, enclosingDeclaration); } var node = ts.visitEachChild(input, visitDeclarationSubtree, context); return cleanup(factory.updateExpressionWithTypeArguments(node, node.expression, node.typeArguments)); } case 178 /* SyntaxKind.TypeReference */: { checkEntityNameVisibility(input.typeName, enclosingDeclaration); var node = ts.visitEachChild(input, visitDeclarationSubtree, context); return cleanup(factory.updateTypeReferenceNode(node, node.typeName, node.typeArguments)); } case 175 /* SyntaxKind.ConstructSignature */: return cleanup(factory.updateConstructSignature(input, ensureTypeParams(input, input.typeParameters), updateParamsList(input, input.parameters), ensureType(input, input.type))); case 171 /* SyntaxKind.Constructor */: { // A constructor declaration may not have a type annotation var ctor = factory.createConstructorDeclaration( /*decorators*/ undefined, /*modifiers*/ ensureModifiers(input), updateParamsList(input, input.parameters, 0 /* ModifierFlags.None */), /*body*/ undefined); return cleanup(ctor); } case 169 /* SyntaxKind.MethodDeclaration */: { if (ts.isPrivateIdentifier(input.name)) { return cleanup(/*returnValue*/ undefined); } var sig = factory.createMethodDeclaration( /*decorators*/ undefined, ensureModifiers(input), /*asteriskToken*/ undefined, input.name, input.questionToken, ensureTypeParams(input, input.typeParameters), updateParamsList(input, input.parameters), ensureType(input, input.type), /*body*/ undefined); return cleanup(sig); } case 172 /* SyntaxKind.GetAccessor */: { if (ts.isPrivateIdentifier(input.name)) { return cleanup(/*returnValue*/ undefined); } var accessorType = getTypeAnnotationFromAllAccessorDeclarations(input, resolver.getAllAccessorDeclarations(input)); return cleanup(factory.updateGetAccessorDeclaration(input, /*decorators*/ undefined, ensureModifiers(input), input.name, updateAccessorParamsList(input, ts.hasEffectiveModifier(input, 8 /* ModifierFlags.Private */)), ensureType(input, accessorType), /*body*/ undefined)); } case 173 /* SyntaxKind.SetAccessor */: { if (ts.isPrivateIdentifier(input.name)) { return cleanup(/*returnValue*/ undefined); } return cleanup(factory.updateSetAccessorDeclaration(input, /*decorators*/ undefined, ensureModifiers(input), input.name, updateAccessorParamsList(input, ts.hasEffectiveModifier(input, 8 /* ModifierFlags.Private */)), /*body*/ undefined)); } case 167 /* SyntaxKind.PropertyDeclaration */: if (ts.isPrivateIdentifier(input.name)) { return cleanup(/*returnValue*/ undefined); } return cleanup(factory.updatePropertyDeclaration(input, /*decorators*/ undefined, ensureModifiers(input), input.name, input.questionToken, ensureType(input, input.type), ensureNoInitializer(input))); case 166 /* SyntaxKind.PropertySignature */: if (ts.isPrivateIdentifier(input.name)) { return cleanup(/*returnValue*/ undefined); } return cleanup(factory.updatePropertySignature(input, ensureModifiers(input), input.name, input.questionToken, ensureType(input, input.type))); case 168 /* SyntaxKind.MethodSignature */: { if (ts.isPrivateIdentifier(input.name)) { return cleanup(/*returnValue*/ undefined); } return cleanup(factory.updateMethodSignature(input, ensureModifiers(input), input.name, input.questionToken, ensureTypeParams(input, input.typeParameters), updateParamsList(input, input.parameters), ensureType(input, input.type))); } case 174 /* SyntaxKind.CallSignature */: { return cleanup(factory.updateCallSignature(input, ensureTypeParams(input, input.typeParameters), updateParamsList(input, input.parameters), ensureType(input, input.type))); } case 176 /* SyntaxKind.IndexSignature */: { return cleanup(factory.updateIndexSignature(input, /*decorators*/ undefined, ensureModifiers(input), updateParamsList(input, input.parameters), ts.visitNode(input.type, visitDeclarationSubtree) || factory.createKeywordTypeNode(130 /* SyntaxKind.AnyKeyword */))); } case 254 /* SyntaxKind.VariableDeclaration */: { if (ts.isBindingPattern(input.name)) { return recreateBindingPattern(input.name); } shouldEnterSuppressNewDiagnosticsContextContext = true; suppressNewDiagnosticContexts = true; // Variable declaration types also suppress new diagnostic contexts, provided the contexts wouldn't be made for binding pattern types return cleanup(factory.updateVariableDeclaration(input, input.name, /*exclamationToken*/ undefined, ensureType(input, input.type), ensureNoInitializer(input))); } case 163 /* SyntaxKind.TypeParameter */: { if (isPrivateMethodTypeParameter(input) && (input.default || input.constraint)) { return cleanup(factory.updateTypeParameterDeclaration(input, input.modifiers, input.name, /*constraint*/ undefined, /*defaultType*/ undefined)); } return cleanup(ts.visitEachChild(input, visitDeclarationSubtree, context)); } case 189 /* SyntaxKind.ConditionalType */: { // We have to process conditional types in a special way because for visibility purposes we need to push a new enclosingDeclaration // just for the `infer` types in the true branch. It's an implicit declaration scope that only applies to _part_ of the type. var checkType = ts.visitNode(input.checkType, visitDeclarationSubtree); var extendsType = ts.visitNode(input.extendsType, visitDeclarationSubtree); var oldEnclosingDecl = enclosingDeclaration; enclosingDeclaration = input.trueType; var trueType = ts.visitNode(input.trueType, visitDeclarationSubtree); enclosingDeclaration = oldEnclosingDecl; var falseType = ts.visitNode(input.falseType, visitDeclarationSubtree); return cleanup(factory.updateConditionalTypeNode(input, checkType, extendsType, trueType, falseType)); } case 179 /* SyntaxKind.FunctionType */: { return cleanup(factory.updateFunctionTypeNode(input, ts.visitNodes(input.typeParameters, visitDeclarationSubtree), updateParamsList(input, input.parameters), ts.visitNode(input.type, visitDeclarationSubtree))); } case 180 /* SyntaxKind.ConstructorType */: { return cleanup(factory.updateConstructorTypeNode(input, ensureModifiers(input), ts.visitNodes(input.typeParameters, visitDeclarationSubtree), updateParamsList(input, input.parameters), ts.visitNode(input.type, visitDeclarationSubtree))); } case 200 /* SyntaxKind.ImportType */: { if (!ts.isLiteralImportTypeNode(input)) return cleanup(input); return cleanup(factory.updateImportTypeNode(input, factory.updateLiteralTypeNode(input.argument, rewriteModuleSpecifier(input, input.argument.literal)), input.assertions, input.qualifier, ts.visitNodes(input.typeArguments, visitDeclarationSubtree, ts.isTypeNode), input.isTypeOf)); } default: ts.Debug.assertNever(input, "Attempted to process unhandled node kind: ".concat(ts.SyntaxKind[input.kind])); } } if (ts.isTupleTypeNode(input) && (ts.getLineAndCharacterOfPosition(currentSourceFile, input.pos).line === ts.getLineAndCharacterOfPosition(currentSourceFile, input.end).line)) { ts.setEmitFlags(input, 1 /* EmitFlags.SingleLine */); } return cleanup(ts.visitEachChild(input, visitDeclarationSubtree, context)); function cleanup(returnValue) { if (returnValue && canProduceDiagnostic && ts.hasDynamicName(input)) { checkName(input); } if (isEnclosingDeclaration(input)) { enclosingDeclaration = previousEnclosingDeclaration; } if (canProduceDiagnostic && !suppressNewDiagnosticContexts) { getSymbolAccessibilityDiagnostic = oldDiag; } if (shouldEnterSuppressNewDiagnosticsContextContext) { suppressNewDiagnosticContexts = oldWithinObjectLiteralType; } if (returnValue === input) { return returnValue; } return returnValue && ts.setOriginalNode(preserveJsDoc(returnValue, input), input); } } function isPrivateMethodTypeParameter(node) { return node.parent.kind === 169 /* SyntaxKind.MethodDeclaration */ && ts.hasEffectiveModifier(node.parent, 8 /* ModifierFlags.Private */); } function visitDeclarationStatements(input) { if (!isPreservedDeclarationStatement(input)) { // return undefined for unmatched kinds to omit them from the tree return; } if (shouldStripInternal(input)) return; switch (input.kind) { case 272 /* SyntaxKind.ExportDeclaration */: { if (ts.isSourceFile(input.parent)) { resultHasExternalModuleIndicator = true; } resultHasScopeMarker = true; // Always visible if the parent node isn't dropped for being not visible // Rewrite external module names if necessary return factory.updateExportDeclaration(input, /*decorators*/ undefined, input.modifiers, input.isTypeOnly, input.exportClause, rewriteModuleSpecifier(input, input.moduleSpecifier), ts.getResolutionModeOverrideForClause(input.assertClause) ? input.assertClause : undefined); } case 271 /* SyntaxKind.ExportAssignment */: { // Always visible if the parent node isn't dropped for being not visible if (ts.isSourceFile(input.parent)) { resultHasExternalModuleIndicator = true; } resultHasScopeMarker = true; if (input.expression.kind === 79 /* SyntaxKind.Identifier */) { return input; } else { var newId = factory.createUniqueName("_default", 16 /* GeneratedIdentifierFlags.Optimistic */); getSymbolAccessibilityDiagnostic = function () { return ({ diagnosticMessage: ts.Diagnostics.Default_export_of_the_module_has_or_is_using_private_name_0, errorNode: input }); }; errorFallbackNode = input; var varDecl = factory.createVariableDeclaration(newId, /*exclamationToken*/ undefined, resolver.createTypeOfExpression(input.expression, input, declarationEmitNodeBuilderFlags, symbolTracker), /*initializer*/ undefined); errorFallbackNode = undefined; var statement = factory.createVariableStatement(needsDeclare ? [factory.createModifier(135 /* SyntaxKind.DeclareKeyword */)] : [], factory.createVariableDeclarationList([varDecl], 2 /* NodeFlags.Const */)); preserveJsDoc(statement, input); ts.removeAllComments(input); return [statement, factory.updateExportAssignment(input, input.decorators, input.modifiers, newId)]; } } } var result = transformTopLevelDeclaration(input); // Don't actually transform yet; just leave as original node - will be elided/swapped by late pass lateStatementReplacementMap.set(ts.getOriginalNodeId(input), result); return input; } function stripExportModifiers(statement) { if (ts.isImportEqualsDeclaration(statement) || ts.hasEffectiveModifier(statement, 512 /* ModifierFlags.Default */) || !ts.canHaveModifiers(statement)) { // `export import` statements should remain as-is, as imports are _not_ implicitly exported in an ambient namespace // Likewise, `export default` classes and the like and just be `default`, so we preserve their `export` modifiers, too return statement; } var modifiers = factory.createModifiersFromModifierFlags(ts.getEffectiveModifierFlags(statement) & (125951 /* ModifierFlags.All */ ^ 1 /* ModifierFlags.Export */)); return factory.updateModifiers(statement, modifiers); } function transformTopLevelDeclaration(input) { if (lateMarkedStatements) { while (ts.orderedRemoveItem(lateMarkedStatements, input)) ; } if (shouldStripInternal(input)) return; switch (input.kind) { case 265 /* SyntaxKind.ImportEqualsDeclaration */: { return transformImportEqualsDeclaration(input); } case 266 /* SyntaxKind.ImportDeclaration */: { return transformImportDeclaration(input); } } if (ts.isDeclaration(input) && isDeclarationAndNotVisible(input)) return; // Elide implementation signatures from overload sets if (ts.isFunctionLike(input) && resolver.isImplementationOfOverload(input)) return; var previousEnclosingDeclaration; if (isEnclosingDeclaration(input)) { previousEnclosingDeclaration = enclosingDeclaration; enclosingDeclaration = input; } var canProdiceDiagnostic = ts.canProduceDiagnostics(input); var oldDiag = getSymbolAccessibilityDiagnostic; if (canProdiceDiagnostic) { getSymbolAccessibilityDiagnostic = ts.createGetSymbolAccessibilityDiagnosticForNode(input); } var previousNeedsDeclare = needsDeclare; switch (input.kind) { case 259 /* SyntaxKind.TypeAliasDeclaration */: // Type aliases get `declare`d if need be (for legacy support), but that's all return cleanup(factory.updateTypeAliasDeclaration(input, /*decorators*/ undefined, ensureModifiers(input), input.name, ts.visitNodes(input.typeParameters, visitDeclarationSubtree, ts.isTypeParameterDeclaration), ts.visitNode(input.type, visitDeclarationSubtree, ts.isTypeNode))); case 258 /* SyntaxKind.InterfaceDeclaration */: { return cleanup(factory.updateInterfaceDeclaration(input, /*decorators*/ undefined, ensureModifiers(input), input.name, ensureTypeParams(input, input.typeParameters), transformHeritageClauses(input.heritageClauses), ts.visitNodes(input.members, visitDeclarationSubtree))); } case 256 /* SyntaxKind.FunctionDeclaration */: { // Generators lose their generator-ness, excepting their return type var clean = cleanup(factory.updateFunctionDeclaration(input, /*decorators*/ undefined, ensureModifiers(input), /*asteriskToken*/ undefined, input.name, ensureTypeParams(input, input.typeParameters), updateParamsList(input, input.parameters), ensureType(input, input.type), /*body*/ undefined)); if (clean && resolver.isExpandoFunctionDeclaration(input) && shouldEmitFunctionProperties(input)) { var props = resolver.getPropertiesOfContainerFunction(input); // Use parseNodeFactory so it is usable as an enclosing declaration var fakespace_1 = ts.parseNodeFactory.createModuleDeclaration(/*decorators*/ undefined, /*modifiers*/ undefined, clean.name || factory.createIdentifier("_default"), factory.createModuleBlock([]), 16 /* NodeFlags.Namespace */); ts.setParent(fakespace_1, enclosingDeclaration); fakespace_1.locals = ts.createSymbolTable(props); fakespace_1.symbol = props[0].parent; var exportMappings_1 = []; var declarations = ts.mapDefined(props, function (p) { if (!p.valueDeclaration || !ts.isPropertyAccessExpression(p.valueDeclaration)) { return undefined; // TODO GH#33569: Handle element access expressions that created late bound names (rather than silently omitting them) } getSymbolAccessibilityDiagnostic = ts.createGetSymbolAccessibilityDiagnosticForNode(p.valueDeclaration); var type = resolver.createTypeOfDeclaration(p.valueDeclaration, fakespace_1, declarationEmitNodeBuilderFlags, symbolTracker); getSymbolAccessibilityDiagnostic = oldDiag; var nameStr = ts.unescapeLeadingUnderscores(p.escapedName); var isNonContextualKeywordName = ts.isStringANonContextualKeyword(nameStr); var name = isNonContextualKeywordName ? factory.getGeneratedNameForNode(p.valueDeclaration) : factory.createIdentifier(nameStr); if (isNonContextualKeywordName) { exportMappings_1.push([name, nameStr]); } var varDecl = factory.createVariableDeclaration(name, /*exclamationToken*/ undefined, type, /*initializer*/ undefined); return factory.createVariableStatement(isNonContextualKeywordName ? undefined : [factory.createToken(93 /* SyntaxKind.ExportKeyword */)], factory.createVariableDeclarationList([varDecl])); }); if (!exportMappings_1.length) { declarations = ts.mapDefined(declarations, function (declaration) { return factory.updateModifiers(declaration, 0 /* ModifierFlags.None */); }); } else { declarations.push(factory.createExportDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*isTypeOnly*/ false, factory.createNamedExports(ts.map(exportMappings_1, function (_a) { var gen = _a[0], exp = _a[1]; return factory.createExportSpecifier(/*isTypeOnly*/ false, gen, exp); })))); } var namespaceDecl = factory.createModuleDeclaration(/*decorators*/ undefined, ensureModifiers(input), input.name, factory.createModuleBlock(declarations), 16 /* NodeFlags.Namespace */); if (!ts.hasEffectiveModifier(clean, 512 /* ModifierFlags.Default */)) { return [clean, namespaceDecl]; } var modifiers = factory.createModifiersFromModifierFlags((ts.getEffectiveModifierFlags(clean) & ~513 /* ModifierFlags.ExportDefault */) | 2 /* ModifierFlags.Ambient */); var cleanDeclaration = factory.updateFunctionDeclaration(clean, /*decorators*/ undefined, modifiers, /*asteriskToken*/ undefined, clean.name, clean.typeParameters, clean.parameters, clean.type, /*body*/ undefined); var namespaceDeclaration = factory.updateModuleDeclaration(namespaceDecl, /*decorators*/ undefined, modifiers, namespaceDecl.name, namespaceDecl.body); var exportDefaultDeclaration = factory.createExportAssignment( /*decorators*/ undefined, /*modifiers*/ undefined, /*isExportEquals*/ false, namespaceDecl.name); if (ts.isSourceFile(input.parent)) { resultHasExternalModuleIndicator = true; } resultHasScopeMarker = true; return [cleanDeclaration, namespaceDeclaration, exportDefaultDeclaration]; } else { return clean; } } case 261 /* SyntaxKind.ModuleDeclaration */: { needsDeclare = false; var inner = input.body; if (inner && inner.kind === 262 /* SyntaxKind.ModuleBlock */) { var oldNeedsScopeFix = needsScopeFixMarker; var oldHasScopeFix = resultHasScopeMarker; resultHasScopeMarker = false; needsScopeFixMarker = false; var statements = ts.visitNodes(inner.statements, visitDeclarationStatements); var lateStatements = transformAndReplaceLatePaintedStatements(statements); if (input.flags & 16777216 /* NodeFlags.Ambient */) { needsScopeFixMarker = false; // If it was `declare`'d everything is implicitly exported already, ignore late printed "privates" } // With the final list of statements, there are 3 possibilities: // 1. There's an export assignment or export declaration in the namespace - do nothing // 2. Everything is exported and there are no export assignments or export declarations - strip all export modifiers // 3. Some things are exported, some are not, and there's no marker - add an empty marker if (!ts.isGlobalScopeAugmentation(input) && !hasScopeMarker(lateStatements) && !resultHasScopeMarker) { if (needsScopeFixMarker) { lateStatements = factory.createNodeArray(__spreadArray(__spreadArray([], lateStatements, true), [ts.createEmptyExports(factory)], false)); } else { lateStatements = ts.visitNodes(lateStatements, stripExportModifiers); } } var body = factory.updateModuleBlock(inner, lateStatements); needsDeclare = previousNeedsDeclare; needsScopeFixMarker = oldNeedsScopeFix; resultHasScopeMarker = oldHasScopeFix; var mods = ensureModifiers(input); return cleanup(factory.updateModuleDeclaration(input, /*decorators*/ undefined, mods, ts.isExternalModuleAugmentation(input) ? rewriteModuleSpecifier(input, input.name) : input.name, body)); } else { needsDeclare = previousNeedsDeclare; var mods = ensureModifiers(input); needsDeclare = false; ts.visitNode(inner, visitDeclarationStatements); // eagerly transform nested namespaces (the nesting doesn't need any elision or painting done) var id = ts.getOriginalNodeId(inner); // TODO: GH#18217 var body = lateStatementReplacementMap.get(id); lateStatementReplacementMap.delete(id); return cleanup(factory.updateModuleDeclaration(input, /*decorators*/ undefined, mods, input.name, body)); } } case 257 /* SyntaxKind.ClassDeclaration */: { errorNameNode = input.name; errorFallbackNode = input; var modifiers = factory.createNodeArray(ensureModifiers(input)); var typeParameters = ensureTypeParams(input, input.typeParameters); var ctor = ts.getFirstConstructorWithBody(input); var parameterProperties = void 0; if (ctor) { var oldDiag_1 = getSymbolAccessibilityDiagnostic; parameterProperties = ts.compact(ts.flatMap(ctor.parameters, function (param) { if (!ts.hasSyntacticModifier(param, 16476 /* ModifierFlags.ParameterPropertyModifier */) || shouldStripInternal(param)) return; getSymbolAccessibilityDiagnostic = ts.createGetSymbolAccessibilityDiagnosticForNode(param); if (param.name.kind === 79 /* SyntaxKind.Identifier */) { return preserveJsDoc(factory.createPropertyDeclaration( /*decorators*/ undefined, ensureModifiers(param), param.name, param.questionToken, ensureType(param, param.type), ensureNoInitializer(param)), param); } else { // Pattern - this is currently an error, but we emit declarations for it somewhat correctly return walkBindingPattern(param.name); } function walkBindingPattern(pattern) { var elems; for (var _i = 0, _a = pattern.elements; _i < _a.length; _i++) { var elem = _a[_i]; if (ts.isOmittedExpression(elem)) continue; if (ts.isBindingPattern(elem.name)) { elems = ts.concatenate(elems, walkBindingPattern(elem.name)); } elems = elems || []; elems.push(factory.createPropertyDeclaration( /*decorators*/ undefined, ensureModifiers(param), elem.name, /*questionToken*/ undefined, ensureType(elem, /*type*/ undefined), /*initializer*/ undefined)); } return elems; } })); getSymbolAccessibilityDiagnostic = oldDiag_1; } var hasPrivateIdentifier = ts.some(input.members, function (member) { return !!member.name && ts.isPrivateIdentifier(member.name); }); // When the class has at least one private identifier, create a unique constant identifier to retain the nominal typing behavior // Prevents other classes with the same public members from being used in place of the current class var privateIdentifier = hasPrivateIdentifier ? [ factory.createPropertyDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, factory.createPrivateIdentifier("#private"), /*questionToken*/ undefined, /*type*/ undefined, /*initializer*/ undefined) ] : undefined; var memberNodes = ts.concatenate(ts.concatenate(privateIdentifier, parameterProperties), ts.visitNodes(input.members, visitDeclarationSubtree)); var members = factory.createNodeArray(memberNodes); var extendsClause_1 = ts.getEffectiveBaseTypeNode(input); if (extendsClause_1 && !ts.isEntityNameExpression(extendsClause_1.expression) && extendsClause_1.expression.kind !== 104 /* SyntaxKind.NullKeyword */) { // We must add a temporary declaration for the extends clause expression var oldId = input.name ? ts.unescapeLeadingUnderscores(input.name.escapedText) : "default"; var newId_1 = factory.createUniqueName("".concat(oldId, "_base"), 16 /* GeneratedIdentifierFlags.Optimistic */); getSymbolAccessibilityDiagnostic = function () { return ({ diagnosticMessage: ts.Diagnostics.extends_clause_of_exported_class_0_has_or_is_using_private_name_1, errorNode: extendsClause_1, typeName: input.name }); }; var varDecl = factory.createVariableDeclaration(newId_1, /*exclamationToken*/ undefined, resolver.createTypeOfExpression(extendsClause_1.expression, input, declarationEmitNodeBuilderFlags, symbolTracker), /*initializer*/ undefined); var statement = factory.createVariableStatement(needsDeclare ? [factory.createModifier(135 /* SyntaxKind.DeclareKeyword */)] : [], factory.createVariableDeclarationList([varDecl], 2 /* NodeFlags.Const */)); var heritageClauses = factory.createNodeArray(ts.map(input.heritageClauses, function (clause) { if (clause.token === 94 /* SyntaxKind.ExtendsKeyword */) { var oldDiag_2 = getSymbolAccessibilityDiagnostic; getSymbolAccessibilityDiagnostic = ts.createGetSymbolAccessibilityDiagnosticForNode(clause.types[0]); var newClause = factory.updateHeritageClause(clause, ts.map(clause.types, function (t) { return factory.updateExpressionWithTypeArguments(t, newId_1, ts.visitNodes(t.typeArguments, visitDeclarationSubtree)); })); getSymbolAccessibilityDiagnostic = oldDiag_2; return newClause; } return factory.updateHeritageClause(clause, ts.visitNodes(factory.createNodeArray(ts.filter(clause.types, function (t) { return ts.isEntityNameExpression(t.expression) || t.expression.kind === 104 /* SyntaxKind.NullKeyword */; })), visitDeclarationSubtree)); })); return [statement, cleanup(factory.updateClassDeclaration(input, /*decorators*/ undefined, modifiers, input.name, typeParameters, heritageClauses, members))]; // TODO: GH#18217 } else { var heritageClauses = transformHeritageClauses(input.heritageClauses); return cleanup(factory.updateClassDeclaration(input, /*decorators*/ undefined, modifiers, input.name, typeParameters, heritageClauses, members)); } } case 237 /* SyntaxKind.VariableStatement */: { return cleanup(transformVariableStatement(input)); } case 260 /* SyntaxKind.EnumDeclaration */: { return cleanup(factory.updateEnumDeclaration(input, /*decorators*/ undefined, factory.createNodeArray(ensureModifiers(input)), input.name, factory.createNodeArray(ts.mapDefined(input.members, function (m) { if (shouldStripInternal(m)) return; // Rewrite enum values to their constants, if available var constValue = resolver.getConstantValue(m); return preserveJsDoc(factory.updateEnumMember(m, m.name, constValue !== undefined ? typeof constValue === "string" ? factory.createStringLiteral(constValue) : factory.createNumericLiteral(constValue) : undefined), m); })))); } } // Anything left unhandled is an error, so this should be unreachable return ts.Debug.assertNever(input, "Unhandled top-level node in declaration emit: ".concat(ts.SyntaxKind[input.kind])); function cleanup(node) { if (isEnclosingDeclaration(input)) { enclosingDeclaration = previousEnclosingDeclaration; } if (canProdiceDiagnostic) { getSymbolAccessibilityDiagnostic = oldDiag; } if (input.kind === 261 /* SyntaxKind.ModuleDeclaration */) { needsDeclare = previousNeedsDeclare; } if (node === input) { return node; } errorFallbackNode = undefined; errorNameNode = undefined; return node && ts.setOriginalNode(preserveJsDoc(node, input), input); } } function transformVariableStatement(input) { if (!ts.forEach(input.declarationList.declarations, getBindingNameVisible)) return; var nodes = ts.visitNodes(input.declarationList.declarations, visitDeclarationSubtree); if (!ts.length(nodes)) return; return factory.updateVariableStatement(input, factory.createNodeArray(ensureModifiers(input)), factory.updateVariableDeclarationList(input.declarationList, nodes)); } function recreateBindingPattern(d) { return ts.flatten(ts.mapDefined(d.elements, function (e) { return recreateBindingElement(e); })); } function recreateBindingElement(e) { if (e.kind === 227 /* SyntaxKind.OmittedExpression */) { return; } if (e.name) { if (!getBindingNameVisible(e)) return; if (ts.isBindingPattern(e.name)) { return recreateBindingPattern(e.name); } else { return factory.createVariableDeclaration(e.name, /*exclamationToken*/ undefined, ensureType(e, /*type*/ undefined), /*initializer*/ undefined); } } } function checkName(node) { var oldDiag; if (!suppressNewDiagnosticContexts) { oldDiag = getSymbolAccessibilityDiagnostic; getSymbolAccessibilityDiagnostic = ts.createGetSymbolAccessibilityDiagnosticForNodeName(node); } errorNameNode = node.name; ts.Debug.assert(resolver.isLateBound(ts.getParseTreeNode(node))); // Should only be called with dynamic names var decl = node; var entityName = decl.name.expression; checkEntityNameVisibility(entityName, enclosingDeclaration); if (!suppressNewDiagnosticContexts) { getSymbolAccessibilityDiagnostic = oldDiag; } errorNameNode = undefined; } function shouldStripInternal(node) { return !!stripInternal && !!node && isInternalDeclaration(node, currentSourceFile); } function isScopeMarker(node) { return ts.isExportAssignment(node) || ts.isExportDeclaration(node); } function hasScopeMarker(statements) { return ts.some(statements, isScopeMarker); } function ensureModifiers(node) { var currentFlags = ts.getEffectiveModifierFlags(node); var newFlags = ensureModifierFlags(node); if (currentFlags === newFlags) { return node.modifiers; } return factory.createModifiersFromModifierFlags(newFlags); } function ensureModifierFlags(node) { var mask = 125951 /* ModifierFlags.All */ ^ (4 /* ModifierFlags.Public */ | 256 /* ModifierFlags.Async */ | 16384 /* ModifierFlags.Override */); // No async and override modifiers in declaration files var additions = (needsDeclare && !isAlwaysType(node)) ? 2 /* ModifierFlags.Ambient */ : 0 /* ModifierFlags.None */; var parentIsFile = node.parent.kind === 305 /* SyntaxKind.SourceFile */; if (!parentIsFile || (isBundledEmit && parentIsFile && ts.isExternalModule(node.parent))) { mask ^= 2 /* ModifierFlags.Ambient */; additions = 0 /* ModifierFlags.None */; } return maskModifierFlags(node, mask, additions); } function getTypeAnnotationFromAllAccessorDeclarations(node, accessors) { var accessorType = getTypeAnnotationFromAccessor(node); if (!accessorType && node !== accessors.firstAccessor) { accessorType = getTypeAnnotationFromAccessor(accessors.firstAccessor); // If we end up pulling the type from the second accessor, we also need to change the diagnostic context to get the expected error message getSymbolAccessibilityDiagnostic = ts.createGetSymbolAccessibilityDiagnosticForNode(accessors.firstAccessor); } if (!accessorType && accessors.secondAccessor && node !== accessors.secondAccessor) { accessorType = getTypeAnnotationFromAccessor(accessors.secondAccessor); // If we end up pulling the type from the second accessor, we also need to change the diagnostic context to get the expected error message getSymbolAccessibilityDiagnostic = ts.createGetSymbolAccessibilityDiagnosticForNode(accessors.secondAccessor); } return accessorType; } function transformHeritageClauses(nodes) { return factory.createNodeArray(ts.filter(ts.map(nodes, function (clause) { return factory.updateHeritageClause(clause, ts.visitNodes(factory.createNodeArray(ts.filter(clause.types, function (t) { return ts.isEntityNameExpression(t.expression) || (clause.token === 94 /* SyntaxKind.ExtendsKeyword */ && t.expression.kind === 104 /* SyntaxKind.NullKeyword */); })), visitDeclarationSubtree)); }), function (clause) { return clause.types && !!clause.types.length; })); } } ts.transformDeclarations = transformDeclarations; function isAlwaysType(node) { if (node.kind === 258 /* SyntaxKind.InterfaceDeclaration */) { return true; } return false; } // Elide "public" modifier, as it is the default function maskModifiers(node, modifierMask, modifierAdditions) { return ts.factory.createModifiersFromModifierFlags(maskModifierFlags(node, modifierMask, modifierAdditions)); } function maskModifierFlags(node, modifierMask, modifierAdditions) { if (modifierMask === void 0) { modifierMask = 125951 /* ModifierFlags.All */ ^ 4 /* ModifierFlags.Public */; } if (modifierAdditions === void 0) { modifierAdditions = 0 /* ModifierFlags.None */; } var flags = (ts.getEffectiveModifierFlags(node) & modifierMask) | modifierAdditions; if (flags & 512 /* ModifierFlags.Default */ && !(flags & 1 /* ModifierFlags.Export */)) { // A non-exported default is a nonsequitor - we usually try to remove all export modifiers // from statements in ambient declarations; but a default export must retain its export modifier to be syntactically valid flags ^= 1 /* ModifierFlags.Export */; } if (flags & 512 /* ModifierFlags.Default */ && flags & 2 /* ModifierFlags.Ambient */) { flags ^= 2 /* ModifierFlags.Ambient */; // `declare` is never required alongside `default` (and would be an error if printed) } return flags; } function getTypeAnnotationFromAccessor(accessor) { if (accessor) { return accessor.kind === 172 /* SyntaxKind.GetAccessor */ ? accessor.type // Getter - return type : accessor.parameters.length > 0 ? accessor.parameters[0].type // Setter parameter type : undefined; } } function canHaveLiteralInitializer(node) { switch (node.kind) { case 167 /* SyntaxKind.PropertyDeclaration */: case 166 /* SyntaxKind.PropertySignature */: return !ts.hasEffectiveModifier(node, 8 /* ModifierFlags.Private */); case 164 /* SyntaxKind.Parameter */: case 254 /* SyntaxKind.VariableDeclaration */: return true; } return false; } function isPreservedDeclarationStatement(node) { switch (node.kind) { case 256 /* SyntaxKind.FunctionDeclaration */: case 261 /* SyntaxKind.ModuleDeclaration */: case 265 /* SyntaxKind.ImportEqualsDeclaration */: case 258 /* SyntaxKind.InterfaceDeclaration */: case 257 /* SyntaxKind.ClassDeclaration */: case 259 /* SyntaxKind.TypeAliasDeclaration */: case 260 /* SyntaxKind.EnumDeclaration */: case 237 /* SyntaxKind.VariableStatement */: case 266 /* SyntaxKind.ImportDeclaration */: case 272 /* SyntaxKind.ExportDeclaration */: case 271 /* SyntaxKind.ExportAssignment */: return true; } return false; } function isProcessedComponent(node) { switch (node.kind) { case 175 /* SyntaxKind.ConstructSignature */: case 171 /* SyntaxKind.Constructor */: case 169 /* SyntaxKind.MethodDeclaration */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 167 /* SyntaxKind.PropertyDeclaration */: case 166 /* SyntaxKind.PropertySignature */: case 168 /* SyntaxKind.MethodSignature */: case 174 /* SyntaxKind.CallSignature */: case 176 /* SyntaxKind.IndexSignature */: case 254 /* SyntaxKind.VariableDeclaration */: case 163 /* SyntaxKind.TypeParameter */: case 228 /* SyntaxKind.ExpressionWithTypeArguments */: case 178 /* SyntaxKind.TypeReference */: case 189 /* SyntaxKind.ConditionalType */: case 179 /* SyntaxKind.FunctionType */: case 180 /* SyntaxKind.ConstructorType */: case 200 /* SyntaxKind.ImportType */: return true; } return false; } })(ts || (ts = {})); /* @internal */ var ts; (function (ts) { function getModuleTransformer(moduleKind) { switch (moduleKind) { case ts.ModuleKind.ESNext: case ts.ModuleKind.ES2022: case ts.ModuleKind.ES2020: case ts.ModuleKind.ES2015: return ts.transformECMAScriptModule; case ts.ModuleKind.System: return ts.transformSystemModule; case ts.ModuleKind.Node16: case ts.ModuleKind.NodeNext: return ts.transformNodeModule; default: return ts.transformModule; } } var TransformationState; (function (TransformationState) { TransformationState[TransformationState["Uninitialized"] = 0] = "Uninitialized"; TransformationState[TransformationState["Initialized"] = 1] = "Initialized"; TransformationState[TransformationState["Completed"] = 2] = "Completed"; TransformationState[TransformationState["Disposed"] = 3] = "Disposed"; })(TransformationState || (TransformationState = {})); var SyntaxKindFeatureFlags; (function (SyntaxKindFeatureFlags) { SyntaxKindFeatureFlags[SyntaxKindFeatureFlags["Substitution"] = 1] = "Substitution"; SyntaxKindFeatureFlags[SyntaxKindFeatureFlags["EmitNotifications"] = 2] = "EmitNotifications"; })(SyntaxKindFeatureFlags || (SyntaxKindFeatureFlags = {})); ts.noTransformers = { scriptTransformers: ts.emptyArray, declarationTransformers: ts.emptyArray }; function getTransformers(compilerOptions, customTransformers, emitOnlyDtsFiles) { return { scriptTransformers: getScriptTransformers(compilerOptions, customTransformers, emitOnlyDtsFiles), declarationTransformers: getDeclarationTransformers(customTransformers), }; } ts.getTransformers = getTransformers; function getScriptTransformers(compilerOptions, customTransformers, emitOnlyDtsFiles) { if (emitOnlyDtsFiles) return ts.emptyArray; var languageVersion = ts.getEmitScriptTarget(compilerOptions); var moduleKind = ts.getEmitModuleKind(compilerOptions); var transformers = []; ts.addRange(transformers, customTransformers && ts.map(customTransformers.before, wrapScriptTransformerFactory)); transformers.push(ts.transformTypeScript); transformers.push(ts.transformClassFields); if (ts.getJSXTransformEnabled(compilerOptions)) { transformers.push(ts.transformJsx); } if (languageVersion < 99 /* ScriptTarget.ESNext */) { transformers.push(ts.transformESNext); } if (languageVersion < 8 /* ScriptTarget.ES2021 */) { transformers.push(ts.transformES2021); } if (languageVersion < 7 /* ScriptTarget.ES2020 */) { transformers.push(ts.transformES2020); } if (languageVersion < 6 /* ScriptTarget.ES2019 */) { transformers.push(ts.transformES2019); } if (languageVersion < 5 /* ScriptTarget.ES2018 */) { transformers.push(ts.transformES2018); } if (languageVersion < 4 /* ScriptTarget.ES2017 */) { transformers.push(ts.transformES2017); } if (languageVersion < 3 /* ScriptTarget.ES2016 */) { transformers.push(ts.transformES2016); } if (languageVersion < 2 /* ScriptTarget.ES2015 */) { transformers.push(ts.transformES2015); transformers.push(ts.transformGenerators); } transformers.push(getModuleTransformer(moduleKind)); // The ES5 transformer is last so that it can substitute expressions like `exports.default` // for ES3. if (languageVersion < 1 /* ScriptTarget.ES5 */) { transformers.push(ts.transformES5); } ts.addRange(transformers, customTransformers && ts.map(customTransformers.after, wrapScriptTransformerFactory)); return transformers; } function getDeclarationTransformers(customTransformers) { var transformers = []; transformers.push(ts.transformDeclarations); ts.addRange(transformers, customTransformers && ts.map(customTransformers.afterDeclarations, wrapDeclarationTransformerFactory)); return transformers; } /** * Wrap a custom script or declaration transformer object in a `Transformer` callback with fallback support for transforming bundles. */ function wrapCustomTransformer(transformer) { return function (node) { return ts.isBundle(node) ? transformer.transformBundle(node) : transformer.transformSourceFile(node); }; } /** * Wrap a transformer factory that may return a custom script or declaration transformer object. */ function wrapCustomTransformerFactory(transformer, handleDefault) { return function (context) { var customTransformer = transformer(context); return typeof customTransformer === "function" ? handleDefault(context, customTransformer) : wrapCustomTransformer(customTransformer); }; } function wrapScriptTransformerFactory(transformer) { return wrapCustomTransformerFactory(transformer, ts.chainBundle); } function wrapDeclarationTransformerFactory(transformer) { return wrapCustomTransformerFactory(transformer, function (_, node) { return node; }); } function noEmitSubstitution(_hint, node) { return node; } ts.noEmitSubstitution = noEmitSubstitution; function noEmitNotification(hint, node, callback) { callback(hint, node); } ts.noEmitNotification = noEmitNotification; /** * Transforms an array of SourceFiles by passing them through each transformer. * * @param resolver The emit resolver provided by the checker. * @param host The emit host object used to interact with the file system. * @param options Compiler options to surface in the `TransformationContext`. * @param nodes An array of nodes to transform. * @param transforms An array of `TransformerFactory` callbacks. * @param allowDtsFiles A value indicating whether to allow the transformation of .d.ts files. */ function transformNodes(resolver, host, factory, options, nodes, transformers, allowDtsFiles) { var enabledSyntaxKindFeatures = new Array(355 /* SyntaxKind.Count */); var lexicalEnvironmentVariableDeclarations; var lexicalEnvironmentFunctionDeclarations; var lexicalEnvironmentStatements; var lexicalEnvironmentFlags = 0 /* LexicalEnvironmentFlags.None */; var lexicalEnvironmentVariableDeclarationsStack = []; var lexicalEnvironmentFunctionDeclarationsStack = []; var lexicalEnvironmentStatementsStack = []; var lexicalEnvironmentFlagsStack = []; var lexicalEnvironmentStackOffset = 0; var lexicalEnvironmentSuspended = false; var blockScopedVariableDeclarationsStack = []; var blockScopeStackOffset = 0; var blockScopedVariableDeclarations; var emitHelpers; var onSubstituteNode = noEmitSubstitution; var onEmitNode = noEmitNotification; var state = 0 /* TransformationState.Uninitialized */; var diagnostics = []; // The transformation context is provided to each transformer as part of transformer // initialization. var context = { factory: factory, getCompilerOptions: function () { return options; }, getEmitResolver: function () { return resolver; }, getEmitHost: function () { return host; }, getEmitHelperFactory: ts.memoize(function () { return ts.createEmitHelperFactory(context); }), startLexicalEnvironment: startLexicalEnvironment, suspendLexicalEnvironment: suspendLexicalEnvironment, resumeLexicalEnvironment: resumeLexicalEnvironment, endLexicalEnvironment: endLexicalEnvironment, setLexicalEnvironmentFlags: setLexicalEnvironmentFlags, getLexicalEnvironmentFlags: getLexicalEnvironmentFlags, hoistVariableDeclaration: hoistVariableDeclaration, hoistFunctionDeclaration: hoistFunctionDeclaration, addInitializationStatement: addInitializationStatement, startBlockScope: startBlockScope, endBlockScope: endBlockScope, addBlockScopedVariable: addBlockScopedVariable, requestEmitHelper: requestEmitHelper, readEmitHelpers: readEmitHelpers, enableSubstitution: enableSubstitution, enableEmitNotification: enableEmitNotification, isSubstitutionEnabled: isSubstitutionEnabled, isEmitNotificationEnabled: isEmitNotificationEnabled, get onSubstituteNode() { return onSubstituteNode; }, set onSubstituteNode(value) { ts.Debug.assert(state < 1 /* TransformationState.Initialized */, "Cannot modify transformation hooks after initialization has completed."); ts.Debug.assert(value !== undefined, "Value must not be 'undefined'"); onSubstituteNode = value; }, get onEmitNode() { return onEmitNode; }, set onEmitNode(value) { ts.Debug.assert(state < 1 /* TransformationState.Initialized */, "Cannot modify transformation hooks after initialization has completed."); ts.Debug.assert(value !== undefined, "Value must not be 'undefined'"); onEmitNode = value; }, addDiagnostic: function (diag) { diagnostics.push(diag); } }; // Ensure the parse tree is clean before applying transformations for (var _i = 0, nodes_2 = nodes; _i < nodes_2.length; _i++) { var node = nodes_2[_i]; ts.disposeEmitNodes(ts.getSourceFileOfNode(ts.getParseTreeNode(node))); } ts.performance.mark("beforeTransform"); // Chain together and initialize each transformer. var transformersWithContext = transformers.map(function (t) { return t(context); }); var transformation = function (node) { for (var _i = 0, transformersWithContext_1 = transformersWithContext; _i < transformersWithContext_1.length; _i++) { var transform = transformersWithContext_1[_i]; node = transform(node); } return node; }; // prevent modification of transformation hooks. state = 1 /* TransformationState.Initialized */; // Transform each node. var transformed = []; for (var _a = 0, nodes_3 = nodes; _a < nodes_3.length; _a++) { var node = nodes_3[_a]; ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("emit" /* tracing.Phase.Emit */, "transformNodes", node.kind === 305 /* SyntaxKind.SourceFile */ ? { path: node.path } : { kind: node.kind, pos: node.pos, end: node.end }); transformed.push((allowDtsFiles ? transformation : transformRoot)(node)); ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); } // prevent modification of the lexical environment. state = 2 /* TransformationState.Completed */; ts.performance.mark("afterTransform"); ts.performance.measure("transformTime", "beforeTransform", "afterTransform"); return { transformed: transformed, substituteNode: substituteNode, emitNodeWithNotification: emitNodeWithNotification, isEmitNotificationEnabled: isEmitNotificationEnabled, dispose: dispose, diagnostics: diagnostics }; function transformRoot(node) { return node && (!ts.isSourceFile(node) || !node.isDeclarationFile) ? transformation(node) : node; } /** * Enables expression substitutions in the pretty printer for the provided SyntaxKind. */ function enableSubstitution(kind) { ts.Debug.assert(state < 2 /* TransformationState.Completed */, "Cannot modify the transformation context after transformation has completed."); enabledSyntaxKindFeatures[kind] |= 1 /* SyntaxKindFeatureFlags.Substitution */; } /** * Determines whether expression substitutions are enabled for the provided node. */ function isSubstitutionEnabled(node) { return (enabledSyntaxKindFeatures[node.kind] & 1 /* SyntaxKindFeatureFlags.Substitution */) !== 0 && (ts.getEmitFlags(node) & 4 /* EmitFlags.NoSubstitution */) === 0; } /** * Emits a node with possible substitution. * * @param hint A hint as to the intended usage of the node. * @param node The node to emit. * @param emitCallback The callback used to emit the node or its substitute. */ function substituteNode(hint, node) { ts.Debug.assert(state < 3 /* TransformationState.Disposed */, "Cannot substitute a node after the result is disposed."); return node && isSubstitutionEnabled(node) && onSubstituteNode(hint, node) || node; } /** * Enables before/after emit notifications in the pretty printer for the provided SyntaxKind. */ function enableEmitNotification(kind) { ts.Debug.assert(state < 2 /* TransformationState.Completed */, "Cannot modify the transformation context after transformation has completed."); enabledSyntaxKindFeatures[kind] |= 2 /* SyntaxKindFeatureFlags.EmitNotifications */; } /** * Determines whether before/after emit notifications should be raised in the pretty * printer when it emits a node. */ function isEmitNotificationEnabled(node) { return (enabledSyntaxKindFeatures[node.kind] & 2 /* SyntaxKindFeatureFlags.EmitNotifications */) !== 0 || (ts.getEmitFlags(node) & 2 /* EmitFlags.AdviseOnEmitNode */) !== 0; } /** * Emits a node with possible emit notification. * * @param hint A hint as to the intended usage of the node. * @param node The node to emit. * @param emitCallback The callback used to emit the node. */ function emitNodeWithNotification(hint, node, emitCallback) { ts.Debug.assert(state < 3 /* TransformationState.Disposed */, "Cannot invoke TransformationResult callbacks after the result is disposed."); if (node) { // TODO: Remove check and unconditionally use onEmitNode when API is breakingly changed // (see https://github.com/microsoft/TypeScript/pull/36248/files/5062623f39120171b98870c71344b3242eb03d23#r369766739) if (isEmitNotificationEnabled(node)) { onEmitNode(hint, node, emitCallback); } else { emitCallback(hint, node); } } } /** * Records a hoisted variable declaration for the provided name within a lexical environment. */ function hoistVariableDeclaration(name) { ts.Debug.assert(state > 0 /* TransformationState.Uninitialized */, "Cannot modify the lexical environment during initialization."); ts.Debug.assert(state < 2 /* TransformationState.Completed */, "Cannot modify the lexical environment after transformation has completed."); var decl = ts.setEmitFlags(factory.createVariableDeclaration(name), 64 /* EmitFlags.NoNestedSourceMaps */); if (!lexicalEnvironmentVariableDeclarations) { lexicalEnvironmentVariableDeclarations = [decl]; } else { lexicalEnvironmentVariableDeclarations.push(decl); } if (lexicalEnvironmentFlags & 1 /* LexicalEnvironmentFlags.InParameters */) { lexicalEnvironmentFlags |= 2 /* LexicalEnvironmentFlags.VariablesHoistedInParameters */; } } /** * Records a hoisted function declaration within a lexical environment. */ function hoistFunctionDeclaration(func) { ts.Debug.assert(state > 0 /* TransformationState.Uninitialized */, "Cannot modify the lexical environment during initialization."); ts.Debug.assert(state < 2 /* TransformationState.Completed */, "Cannot modify the lexical environment after transformation has completed."); ts.setEmitFlags(func, 1048576 /* EmitFlags.CustomPrologue */); if (!lexicalEnvironmentFunctionDeclarations) { lexicalEnvironmentFunctionDeclarations = [func]; } else { lexicalEnvironmentFunctionDeclarations.push(func); } } /** * Adds an initialization statement to the top of the lexical environment. */ function addInitializationStatement(node) { ts.Debug.assert(state > 0 /* TransformationState.Uninitialized */, "Cannot modify the lexical environment during initialization."); ts.Debug.assert(state < 2 /* TransformationState.Completed */, "Cannot modify the lexical environment after transformation has completed."); ts.setEmitFlags(node, 1048576 /* EmitFlags.CustomPrologue */); if (!lexicalEnvironmentStatements) { lexicalEnvironmentStatements = [node]; } else { lexicalEnvironmentStatements.push(node); } } /** * Starts a new lexical environment. Any existing hoisted variable or function declarations * are pushed onto a stack, and the related storage variables are reset. */ function startLexicalEnvironment() { ts.Debug.assert(state > 0 /* TransformationState.Uninitialized */, "Cannot modify the lexical environment during initialization."); ts.Debug.assert(state < 2 /* TransformationState.Completed */, "Cannot modify the lexical environment after transformation has completed."); ts.Debug.assert(!lexicalEnvironmentSuspended, "Lexical environment is suspended."); // Save the current lexical environment. Rather than resizing the array we adjust the // stack size variable. This allows us to reuse existing array slots we've // already allocated between transformations to avoid allocation and GC overhead during // transformation. lexicalEnvironmentVariableDeclarationsStack[lexicalEnvironmentStackOffset] = lexicalEnvironmentVariableDeclarations; lexicalEnvironmentFunctionDeclarationsStack[lexicalEnvironmentStackOffset] = lexicalEnvironmentFunctionDeclarations; lexicalEnvironmentStatementsStack[lexicalEnvironmentStackOffset] = lexicalEnvironmentStatements; lexicalEnvironmentFlagsStack[lexicalEnvironmentStackOffset] = lexicalEnvironmentFlags; lexicalEnvironmentStackOffset++; lexicalEnvironmentVariableDeclarations = undefined; lexicalEnvironmentFunctionDeclarations = undefined; lexicalEnvironmentStatements = undefined; lexicalEnvironmentFlags = 0 /* LexicalEnvironmentFlags.None */; } /** Suspends the current lexical environment, usually after visiting a parameter list. */ function suspendLexicalEnvironment() { ts.Debug.assert(state > 0 /* TransformationState.Uninitialized */, "Cannot modify the lexical environment during initialization."); ts.Debug.assert(state < 2 /* TransformationState.Completed */, "Cannot modify the lexical environment after transformation has completed."); ts.Debug.assert(!lexicalEnvironmentSuspended, "Lexical environment is already suspended."); lexicalEnvironmentSuspended = true; } /** Resumes a suspended lexical environment, usually before visiting a function body. */ function resumeLexicalEnvironment() { ts.Debug.assert(state > 0 /* TransformationState.Uninitialized */, "Cannot modify the lexical environment during initialization."); ts.Debug.assert(state < 2 /* TransformationState.Completed */, "Cannot modify the lexical environment after transformation has completed."); ts.Debug.assert(lexicalEnvironmentSuspended, "Lexical environment is not suspended."); lexicalEnvironmentSuspended = false; } /** * Ends a lexical environment. The previous set of hoisted declarations are restored and * any hoisted declarations added in this environment are returned. */ function endLexicalEnvironment() { ts.Debug.assert(state > 0 /* TransformationState.Uninitialized */, "Cannot modify the lexical environment during initialization."); ts.Debug.assert(state < 2 /* TransformationState.Completed */, "Cannot modify the lexical environment after transformation has completed."); ts.Debug.assert(!lexicalEnvironmentSuspended, "Lexical environment is suspended."); var statements; if (lexicalEnvironmentVariableDeclarations || lexicalEnvironmentFunctionDeclarations || lexicalEnvironmentStatements) { if (lexicalEnvironmentFunctionDeclarations) { statements = __spreadArray([], lexicalEnvironmentFunctionDeclarations, true); } if (lexicalEnvironmentVariableDeclarations) { var statement = factory.createVariableStatement( /*modifiers*/ undefined, factory.createVariableDeclarationList(lexicalEnvironmentVariableDeclarations)); ts.setEmitFlags(statement, 1048576 /* EmitFlags.CustomPrologue */); if (!statements) { statements = [statement]; } else { statements.push(statement); } } if (lexicalEnvironmentStatements) { if (!statements) { statements = __spreadArray([], lexicalEnvironmentStatements, true); } else { statements = __spreadArray(__spreadArray([], statements, true), lexicalEnvironmentStatements, true); } } } // Restore the previous lexical environment. lexicalEnvironmentStackOffset--; lexicalEnvironmentVariableDeclarations = lexicalEnvironmentVariableDeclarationsStack[lexicalEnvironmentStackOffset]; lexicalEnvironmentFunctionDeclarations = lexicalEnvironmentFunctionDeclarationsStack[lexicalEnvironmentStackOffset]; lexicalEnvironmentStatements = lexicalEnvironmentStatementsStack[lexicalEnvironmentStackOffset]; lexicalEnvironmentFlags = lexicalEnvironmentFlagsStack[lexicalEnvironmentStackOffset]; if (lexicalEnvironmentStackOffset === 0) { lexicalEnvironmentVariableDeclarationsStack = []; lexicalEnvironmentFunctionDeclarationsStack = []; lexicalEnvironmentStatementsStack = []; lexicalEnvironmentFlagsStack = []; } return statements; } function setLexicalEnvironmentFlags(flags, value) { lexicalEnvironmentFlags = value ? lexicalEnvironmentFlags | flags : lexicalEnvironmentFlags & ~flags; } function getLexicalEnvironmentFlags() { return lexicalEnvironmentFlags; } /** * Starts a block scope. Any existing block hoisted variables are pushed onto the stack and the related storage variables are reset. */ function startBlockScope() { ts.Debug.assert(state > 0 /* TransformationState.Uninitialized */, "Cannot start a block scope during initialization."); ts.Debug.assert(state < 2 /* TransformationState.Completed */, "Cannot start a block scope after transformation has completed."); blockScopedVariableDeclarationsStack[blockScopeStackOffset] = blockScopedVariableDeclarations; blockScopeStackOffset++; blockScopedVariableDeclarations = undefined; } /** * Ends a block scope. The previous set of block hoisted variables are restored. Any hoisted declarations are returned. */ function endBlockScope() { ts.Debug.assert(state > 0 /* TransformationState.Uninitialized */, "Cannot end a block scope during initialization."); ts.Debug.assert(state < 2 /* TransformationState.Completed */, "Cannot end a block scope after transformation has completed."); var statements = ts.some(blockScopedVariableDeclarations) ? [ factory.createVariableStatement( /*modifiers*/ undefined, factory.createVariableDeclarationList(blockScopedVariableDeclarations.map(function (identifier) { return factory.createVariableDeclaration(identifier); }), 1 /* NodeFlags.Let */)) ] : undefined; blockScopeStackOffset--; blockScopedVariableDeclarations = blockScopedVariableDeclarationsStack[blockScopeStackOffset]; if (blockScopeStackOffset === 0) { blockScopedVariableDeclarationsStack = []; } return statements; } function addBlockScopedVariable(name) { ts.Debug.assert(blockScopeStackOffset > 0, "Cannot add a block scoped variable outside of an iteration body."); (blockScopedVariableDeclarations || (blockScopedVariableDeclarations = [])).push(name); } function requestEmitHelper(helper) { ts.Debug.assert(state > 0 /* TransformationState.Uninitialized */, "Cannot modify the transformation context during initialization."); ts.Debug.assert(state < 2 /* TransformationState.Completed */, "Cannot modify the transformation context after transformation has completed."); ts.Debug.assert(!helper.scoped, "Cannot request a scoped emit helper."); if (helper.dependencies) { for (var _i = 0, _a = helper.dependencies; _i < _a.length; _i++) { var h = _a[_i]; requestEmitHelper(h); } } emitHelpers = ts.append(emitHelpers, helper); } function readEmitHelpers() { ts.Debug.assert(state > 0 /* TransformationState.Uninitialized */, "Cannot modify the transformation context during initialization."); ts.Debug.assert(state < 2 /* TransformationState.Completed */, "Cannot modify the transformation context after transformation has completed."); var helpers = emitHelpers; emitHelpers = undefined; return helpers; } function dispose() { if (state < 3 /* TransformationState.Disposed */) { // Clean up emit nodes on parse tree for (var _i = 0, nodes_4 = nodes; _i < nodes_4.length; _i++) { var node = nodes_4[_i]; ts.disposeEmitNodes(ts.getSourceFileOfNode(ts.getParseTreeNode(node))); } // Release references to external entries for GC purposes. lexicalEnvironmentVariableDeclarations = undefined; lexicalEnvironmentVariableDeclarationsStack = undefined; lexicalEnvironmentFunctionDeclarations = undefined; lexicalEnvironmentFunctionDeclarationsStack = undefined; onSubstituteNode = undefined; onEmitNode = undefined; emitHelpers = undefined; // Prevent further use of the transformation result. state = 3 /* TransformationState.Disposed */; } } } ts.transformNodes = transformNodes; ts.nullTransformationContext = { factory: ts.factory, getCompilerOptions: function () { return ({}); }, getEmitResolver: ts.notImplemented, getEmitHost: ts.notImplemented, getEmitHelperFactory: ts.notImplemented, startLexicalEnvironment: ts.noop, resumeLexicalEnvironment: ts.noop, suspendLexicalEnvironment: ts.noop, endLexicalEnvironment: ts.returnUndefined, setLexicalEnvironmentFlags: ts.noop, getLexicalEnvironmentFlags: function () { return 0; }, hoistVariableDeclaration: ts.noop, hoistFunctionDeclaration: ts.noop, addInitializationStatement: ts.noop, startBlockScope: ts.noop, endBlockScope: ts.returnUndefined, addBlockScopedVariable: ts.noop, requestEmitHelper: ts.noop, readEmitHelpers: ts.notImplemented, enableSubstitution: ts.noop, enableEmitNotification: ts.noop, isSubstitutionEnabled: ts.notImplemented, isEmitNotificationEnabled: ts.notImplemented, onSubstituteNode: noEmitSubstitution, onEmitNode: noEmitNotification, addDiagnostic: ts.noop, }; })(ts || (ts = {})); var ts; (function (ts) { var brackets = createBracketsMap(); /*@internal*/ function isBuildInfoFile(file) { return ts.fileExtensionIs(file, ".tsbuildinfo" /* Extension.TsBuildInfo */); } ts.isBuildInfoFile = isBuildInfoFile; /*@internal*/ /** * Iterates over the source files that are expected to have an emit output. * * @param host An EmitHost. * @param action The action to execute. * @param sourceFilesOrTargetSourceFile * If an array, the full list of source files to emit. * Else, calls `getSourceFilesToEmit` with the (optional) target source file to determine the list of source files to emit. */ function forEachEmittedFile(host, action, sourceFilesOrTargetSourceFile, forceDtsEmit, onlyBuildInfo, includeBuildInfo) { if (forceDtsEmit === void 0) { forceDtsEmit = false; } var sourceFiles = ts.isArray(sourceFilesOrTargetSourceFile) ? sourceFilesOrTargetSourceFile : ts.getSourceFilesToEmit(host, sourceFilesOrTargetSourceFile, forceDtsEmit); var options = host.getCompilerOptions(); if (ts.outFile(options)) { var prepends = host.getPrependNodes(); if (sourceFiles.length || prepends.length) { var bundle = ts.factory.createBundle(sourceFiles, prepends); var result = action(getOutputPathsFor(bundle, host, forceDtsEmit), bundle); if (result) { return result; } } } else { if (!onlyBuildInfo) { for (var _a = 0, sourceFiles_1 = sourceFiles; _a < sourceFiles_1.length; _a++) { var sourceFile = sourceFiles_1[_a]; var result = action(getOutputPathsFor(sourceFile, host, forceDtsEmit), sourceFile); if (result) { return result; } } } if (includeBuildInfo) { var buildInfoPath = getTsBuildInfoEmitOutputFilePath(options); if (buildInfoPath) return action({ buildInfoPath: buildInfoPath }, /*sourceFileOrBundle*/ undefined); } } } ts.forEachEmittedFile = forEachEmittedFile; function getTsBuildInfoEmitOutputFilePath(options) { var configFile = options.configFilePath; if (!ts.isIncrementalCompilation(options)) return undefined; if (options.tsBuildInfoFile) return options.tsBuildInfoFile; var outPath = ts.outFile(options); var buildInfoExtensionLess; if (outPath) { buildInfoExtensionLess = ts.removeFileExtension(outPath); } else { if (!configFile) return undefined; var configFileExtensionLess = ts.removeFileExtension(configFile); buildInfoExtensionLess = options.outDir ? options.rootDir ? ts.resolvePath(options.outDir, ts.getRelativePathFromDirectory(options.rootDir, configFileExtensionLess, /*ignoreCase*/ true)) : ts.combinePaths(options.outDir, ts.getBaseFileName(configFileExtensionLess)) : configFileExtensionLess; } return buildInfoExtensionLess + ".tsbuildinfo" /* Extension.TsBuildInfo */; } ts.getTsBuildInfoEmitOutputFilePath = getTsBuildInfoEmitOutputFilePath; /*@internal*/ function getOutputPathsForBundle(options, forceDtsPaths) { var outPath = ts.outFile(options); var jsFilePath = options.emitDeclarationOnly ? undefined : outPath; var sourceMapFilePath = jsFilePath && getSourceMapFilePath(jsFilePath, options); var declarationFilePath = (forceDtsPaths || ts.getEmitDeclarations(options)) ? ts.removeFileExtension(outPath) + ".d.ts" /* Extension.Dts */ : undefined; var declarationMapPath = declarationFilePath && ts.getAreDeclarationMapsEnabled(options) ? declarationFilePath + ".map" : undefined; var buildInfoPath = getTsBuildInfoEmitOutputFilePath(options); return { jsFilePath: jsFilePath, sourceMapFilePath: sourceMapFilePath, declarationFilePath: declarationFilePath, declarationMapPath: declarationMapPath, buildInfoPath: buildInfoPath }; } ts.getOutputPathsForBundle = getOutputPathsForBundle; /*@internal*/ function getOutputPathsFor(sourceFile, host, forceDtsPaths) { var options = host.getCompilerOptions(); if (sourceFile.kind === 306 /* SyntaxKind.Bundle */) { return getOutputPathsForBundle(options, forceDtsPaths); } else { var ownOutputFilePath = ts.getOwnEmitOutputFilePath(sourceFile.fileName, host, getOutputExtension(sourceFile.fileName, options)); var isJsonFile = ts.isJsonSourceFile(sourceFile); // If json file emits to the same location skip writing it, if emitDeclarationOnly skip writing it var isJsonEmittedToSameLocation = isJsonFile && ts.comparePaths(sourceFile.fileName, ownOutputFilePath, host.getCurrentDirectory(), !host.useCaseSensitiveFileNames()) === 0 /* Comparison.EqualTo */; var jsFilePath = options.emitDeclarationOnly || isJsonEmittedToSameLocation ? undefined : ownOutputFilePath; var sourceMapFilePath = !jsFilePath || ts.isJsonSourceFile(sourceFile) ? undefined : getSourceMapFilePath(jsFilePath, options); var declarationFilePath = (forceDtsPaths || (ts.getEmitDeclarations(options) && !isJsonFile)) ? ts.getDeclarationEmitOutputFilePath(sourceFile.fileName, host) : undefined; var declarationMapPath = declarationFilePath && ts.getAreDeclarationMapsEnabled(options) ? declarationFilePath + ".map" : undefined; return { jsFilePath: jsFilePath, sourceMapFilePath: sourceMapFilePath, declarationFilePath: declarationFilePath, declarationMapPath: declarationMapPath, buildInfoPath: undefined }; } } ts.getOutputPathsFor = getOutputPathsFor; function getSourceMapFilePath(jsFilePath, options) { return (options.sourceMap && !options.inlineSourceMap) ? jsFilePath + ".map" : undefined; } /* @internal */ function getOutputExtension(fileName, options) { return ts.fileExtensionIs(fileName, ".json" /* Extension.Json */) ? ".json" /* Extension.Json */ : options.jsx === 1 /* JsxEmit.Preserve */ && ts.fileExtensionIsOneOf(fileName, [".jsx" /* Extension.Jsx */, ".tsx" /* Extension.Tsx */]) ? ".jsx" /* Extension.Jsx */ : ts.fileExtensionIsOneOf(fileName, [".mts" /* Extension.Mts */, ".mjs" /* Extension.Mjs */]) ? ".mjs" /* Extension.Mjs */ : ts.fileExtensionIsOneOf(fileName, [".cts" /* Extension.Cts */, ".cjs" /* Extension.Cjs */]) ? ".cjs" /* Extension.Cjs */ : ".js" /* Extension.Js */; } ts.getOutputExtension = getOutputExtension; function getOutputPathWithoutChangingExt(inputFileName, configFile, ignoreCase, outputDir, getCommonSourceDirectory) { return outputDir ? ts.resolvePath(outputDir, ts.getRelativePathFromDirectory(getCommonSourceDirectory ? getCommonSourceDirectory() : getCommonSourceDirectoryOfConfig(configFile, ignoreCase), inputFileName, ignoreCase)) : inputFileName; } /* @internal */ function getOutputDeclarationFileName(inputFileName, configFile, ignoreCase, getCommonSourceDirectory) { return ts.changeExtension(getOutputPathWithoutChangingExt(inputFileName, configFile, ignoreCase, configFile.options.declarationDir || configFile.options.outDir, getCommonSourceDirectory), ts.getDeclarationEmitExtensionForPath(inputFileName)); } ts.getOutputDeclarationFileName = getOutputDeclarationFileName; function getOutputJSFileName(inputFileName, configFile, ignoreCase, getCommonSourceDirectory) { if (configFile.options.emitDeclarationOnly) return undefined; var isJsonFile = ts.fileExtensionIs(inputFileName, ".json" /* Extension.Json */); var outputFileName = ts.changeExtension(getOutputPathWithoutChangingExt(inputFileName, configFile, ignoreCase, configFile.options.outDir, getCommonSourceDirectory), getOutputExtension(inputFileName, configFile.options)); return !isJsonFile || ts.comparePaths(inputFileName, outputFileName, ts.Debug.checkDefined(configFile.options.configFilePath), ignoreCase) !== 0 /* Comparison.EqualTo */ ? outputFileName : undefined; } function createAddOutput() { var outputs; return { addOutput: addOutput, getOutputs: getOutputs }; function addOutput(path) { if (path) { (outputs || (outputs = [])).push(path); } } function getOutputs() { return outputs || ts.emptyArray; } } function getSingleOutputFileNames(configFile, addOutput) { var _a = getOutputPathsForBundle(configFile.options, /*forceDtsPaths*/ false), jsFilePath = _a.jsFilePath, sourceMapFilePath = _a.sourceMapFilePath, declarationFilePath = _a.declarationFilePath, declarationMapPath = _a.declarationMapPath, buildInfoPath = _a.buildInfoPath; addOutput(jsFilePath); addOutput(sourceMapFilePath); addOutput(declarationFilePath); addOutput(declarationMapPath); addOutput(buildInfoPath); } function getOwnOutputFileNames(configFile, inputFileName, ignoreCase, addOutput, getCommonSourceDirectory) { if (ts.isDeclarationFileName(inputFileName)) return; var js = getOutputJSFileName(inputFileName, configFile, ignoreCase, getCommonSourceDirectory); addOutput(js); if (ts.fileExtensionIs(inputFileName, ".json" /* Extension.Json */)) return; if (js && configFile.options.sourceMap) { addOutput("".concat(js, ".map")); } if (ts.getEmitDeclarations(configFile.options)) { var dts = getOutputDeclarationFileName(inputFileName, configFile, ignoreCase, getCommonSourceDirectory); addOutput(dts); if (configFile.options.declarationMap) { addOutput("".concat(dts, ".map")); } } } /*@internal*/ function getCommonSourceDirectory(options, emittedFiles, currentDirectory, getCanonicalFileName, checkSourceFilesBelongToPath) { var commonSourceDirectory; if (options.rootDir) { // If a rootDir is specified use it as the commonSourceDirectory commonSourceDirectory = ts.getNormalizedAbsolutePath(options.rootDir, currentDirectory); checkSourceFilesBelongToPath === null || checkSourceFilesBelongToPath === void 0 ? void 0 : checkSourceFilesBelongToPath(options.rootDir); } else if (options.composite && options.configFilePath) { // Project compilations never infer their root from the input source paths commonSourceDirectory = ts.getDirectoryPath(ts.normalizeSlashes(options.configFilePath)); checkSourceFilesBelongToPath === null || checkSourceFilesBelongToPath === void 0 ? void 0 : checkSourceFilesBelongToPath(commonSourceDirectory); } else { commonSourceDirectory = ts.computeCommonSourceDirectoryOfFilenames(emittedFiles(), currentDirectory, getCanonicalFileName); } if (commonSourceDirectory && commonSourceDirectory[commonSourceDirectory.length - 1] !== ts.directorySeparator) { // Make sure directory path ends with directory separator so this string can directly // used to replace with "" to get the relative path of the source file and the relative path doesn't // start with / making it rooted path commonSourceDirectory += ts.directorySeparator; } return commonSourceDirectory; } ts.getCommonSourceDirectory = getCommonSourceDirectory; /*@internal*/ function getCommonSourceDirectoryOfConfig(_a, ignoreCase) { var options = _a.options, fileNames = _a.fileNames; return getCommonSourceDirectory(options, function () { return ts.filter(fileNames, function (file) { return !(options.noEmitForJsFiles && ts.fileExtensionIsOneOf(file, ts.supportedJSExtensionsFlat)) && !ts.isDeclarationFileName(file); }); }, ts.getDirectoryPath(ts.normalizeSlashes(ts.Debug.checkDefined(options.configFilePath))), ts.createGetCanonicalFileName(!ignoreCase)); } ts.getCommonSourceDirectoryOfConfig = getCommonSourceDirectoryOfConfig; /*@internal*/ function getAllProjectOutputs(configFile, ignoreCase) { var _a = createAddOutput(), addOutput = _a.addOutput, getOutputs = _a.getOutputs; if (ts.outFile(configFile.options)) { getSingleOutputFileNames(configFile, addOutput); } else { var getCommonSourceDirectory_1 = ts.memoize(function () { return getCommonSourceDirectoryOfConfig(configFile, ignoreCase); }); for (var _b = 0, _c = configFile.fileNames; _b < _c.length; _b++) { var inputFileName = _c[_b]; getOwnOutputFileNames(configFile, inputFileName, ignoreCase, addOutput, getCommonSourceDirectory_1); } addOutput(getTsBuildInfoEmitOutputFilePath(configFile.options)); } return getOutputs(); } ts.getAllProjectOutputs = getAllProjectOutputs; function getOutputFileNames(commandLine, inputFileName, ignoreCase) { inputFileName = ts.normalizePath(inputFileName); ts.Debug.assert(ts.contains(commandLine.fileNames, inputFileName), "Expected fileName to be present in command line"); var _a = createAddOutput(), addOutput = _a.addOutput, getOutputs = _a.getOutputs; if (ts.outFile(commandLine.options)) { getSingleOutputFileNames(commandLine, addOutput); } else { getOwnOutputFileNames(commandLine, inputFileName, ignoreCase, addOutput); } return getOutputs(); } ts.getOutputFileNames = getOutputFileNames; /*@internal*/ function getFirstProjectOutput(configFile, ignoreCase) { if (ts.outFile(configFile.options)) { var jsFilePath = getOutputPathsForBundle(configFile.options, /*forceDtsPaths*/ false).jsFilePath; return ts.Debug.checkDefined(jsFilePath, "project ".concat(configFile.options.configFilePath, " expected to have at least one output")); } var getCommonSourceDirectory = ts.memoize(function () { return getCommonSourceDirectoryOfConfig(configFile, ignoreCase); }); for (var _a = 0, _b = configFile.fileNames; _a < _b.length; _a++) { var inputFileName = _b[_a]; if (ts.isDeclarationFileName(inputFileName)) continue; var jsFilePath = getOutputJSFileName(inputFileName, configFile, ignoreCase, getCommonSourceDirectory); if (jsFilePath) return jsFilePath; if (ts.fileExtensionIs(inputFileName, ".json" /* Extension.Json */)) continue; if (ts.getEmitDeclarations(configFile.options)) { return getOutputDeclarationFileName(inputFileName, configFile, ignoreCase, getCommonSourceDirectory); } } var buildInfoPath = getTsBuildInfoEmitOutputFilePath(configFile.options); if (buildInfoPath) return buildInfoPath; return ts.Debug.fail("project ".concat(configFile.options.configFilePath, " expected to have at least one output")); } ts.getFirstProjectOutput = getFirstProjectOutput; /*@internal*/ // targetSourceFile is when users only want one file in entire project to be emitted. This is used in compileOnSave feature function emitFiles(resolver, host, targetSourceFile, _a, emitOnlyDtsFiles, onlyBuildInfo, forceDtsEmit) { var scriptTransformers = _a.scriptTransformers, declarationTransformers = _a.declarationTransformers; var compilerOptions = host.getCompilerOptions(); var sourceMapDataList = (compilerOptions.sourceMap || compilerOptions.inlineSourceMap || ts.getAreDeclarationMapsEnabled(compilerOptions)) ? [] : undefined; var emittedFilesList = compilerOptions.listEmittedFiles ? [] : undefined; var emitterDiagnostics = ts.createDiagnosticCollection(); var newLine = ts.getNewLineCharacter(compilerOptions, function () { return host.getNewLine(); }); var writer = ts.createTextWriter(newLine); var _b = ts.performance.createTimer("printTime", "beforePrint", "afterPrint"), enter = _b.enter, exit = _b.exit; var bundleBuildInfo; var emitSkipped = false; var exportedModulesFromDeclarationEmit; // Emit each output file enter(); forEachEmittedFile(host, emitSourceFileOrBundle, ts.getSourceFilesToEmit(host, targetSourceFile, forceDtsEmit), forceDtsEmit, onlyBuildInfo, !targetSourceFile); exit(); return { emitSkipped: emitSkipped, diagnostics: emitterDiagnostics.getDiagnostics(), emittedFiles: emittedFilesList, sourceMaps: sourceMapDataList, exportedModulesFromDeclarationEmit: exportedModulesFromDeclarationEmit }; function emitSourceFileOrBundle(_a, sourceFileOrBundle) { var jsFilePath = _a.jsFilePath, sourceMapFilePath = _a.sourceMapFilePath, declarationFilePath = _a.declarationFilePath, declarationMapPath = _a.declarationMapPath, buildInfoPath = _a.buildInfoPath; var buildInfoDirectory; if (buildInfoPath && sourceFileOrBundle && ts.isBundle(sourceFileOrBundle)) { buildInfoDirectory = ts.getDirectoryPath(ts.getNormalizedAbsolutePath(buildInfoPath, host.getCurrentDirectory())); bundleBuildInfo = { commonSourceDirectory: relativeToBuildInfo(host.getCommonSourceDirectory()), sourceFiles: sourceFileOrBundle.sourceFiles.map(function (file) { return relativeToBuildInfo(ts.getNormalizedAbsolutePath(file.fileName, host.getCurrentDirectory())); }) }; } ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("emit" /* tracing.Phase.Emit */, "emitJsFileOrBundle", { jsFilePath: jsFilePath }); emitJsFileOrBundle(sourceFileOrBundle, jsFilePath, sourceMapFilePath, relativeToBuildInfo); ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("emit" /* tracing.Phase.Emit */, "emitDeclarationFileOrBundle", { declarationFilePath: declarationFilePath }); emitDeclarationFileOrBundle(sourceFileOrBundle, declarationFilePath, declarationMapPath, relativeToBuildInfo); ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("emit" /* tracing.Phase.Emit */, "emitBuildInfo", { buildInfoPath: buildInfoPath }); emitBuildInfo(bundleBuildInfo, buildInfoPath); ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); if (!emitSkipped && emittedFilesList) { if (!emitOnlyDtsFiles) { if (jsFilePath) { emittedFilesList.push(jsFilePath); } if (sourceMapFilePath) { emittedFilesList.push(sourceMapFilePath); } if (buildInfoPath) { emittedFilesList.push(buildInfoPath); } } if (declarationFilePath) { emittedFilesList.push(declarationFilePath); } if (declarationMapPath) { emittedFilesList.push(declarationMapPath); } } function relativeToBuildInfo(path) { return ts.ensurePathIsNonModuleName(ts.getRelativePathFromDirectory(buildInfoDirectory, path, host.getCanonicalFileName)); } } function emitBuildInfo(bundle, buildInfoPath) { // Write build information if applicable if (!buildInfoPath || targetSourceFile || emitSkipped) return; var program = host.getProgramBuildInfo(); if (host.isEmitBlocked(buildInfoPath)) { emitSkipped = true; return; } var version = ts.version; // Extracted into a const so the form is stable between namespace and module ts.writeFile(host, emitterDiagnostics, buildInfoPath, getBuildInfoText({ bundle: bundle, program: program, version: version }), /*writeByteOrderMark*/ false); } function emitJsFileOrBundle(sourceFileOrBundle, jsFilePath, sourceMapFilePath, relativeToBuildInfo) { if (!sourceFileOrBundle || emitOnlyDtsFiles || !jsFilePath) { return; } // Make sure not to write js file and source map file if any of them cannot be written if ((jsFilePath && host.isEmitBlocked(jsFilePath)) || compilerOptions.noEmit) { emitSkipped = true; return; } // Transform the source files var transform = ts.transformNodes(resolver, host, ts.factory, compilerOptions, [sourceFileOrBundle], scriptTransformers, /*allowDtsFiles*/ false); var printerOptions = { removeComments: compilerOptions.removeComments, newLine: compilerOptions.newLine, noEmitHelpers: compilerOptions.noEmitHelpers, module: compilerOptions.module, target: compilerOptions.target, sourceMap: compilerOptions.sourceMap, inlineSourceMap: compilerOptions.inlineSourceMap, inlineSources: compilerOptions.inlineSources, extendedDiagnostics: compilerOptions.extendedDiagnostics, writeBundleFileInfo: !!bundleBuildInfo, relativeToBuildInfo: relativeToBuildInfo }; // Create a printer to print the nodes var printer = createPrinter(printerOptions, { // resolver hooks hasGlobalName: resolver.hasGlobalName, // transform hooks onEmitNode: transform.emitNodeWithNotification, isEmitNotificationEnabled: transform.isEmitNotificationEnabled, substituteNode: transform.substituteNode, }); ts.Debug.assert(transform.transformed.length === 1, "Should only see one output from the transform"); printSourceFileOrBundle(jsFilePath, sourceMapFilePath, transform.transformed[0], printer, compilerOptions); // Clean up emit nodes on parse tree transform.dispose(); if (bundleBuildInfo) bundleBuildInfo.js = printer.bundleFileInfo; } function emitDeclarationFileOrBundle(sourceFileOrBundle, declarationFilePath, declarationMapPath, relativeToBuildInfo) { if (!sourceFileOrBundle) return; if (!declarationFilePath) { if (emitOnlyDtsFiles || compilerOptions.emitDeclarationOnly) emitSkipped = true; return; } var sourceFiles = ts.isSourceFile(sourceFileOrBundle) ? [sourceFileOrBundle] : sourceFileOrBundle.sourceFiles; var filesForEmit = forceDtsEmit ? sourceFiles : ts.filter(sourceFiles, ts.isSourceFileNotJson); // Setup and perform the transformation to retrieve declarations from the input files var inputListOrBundle = ts.outFile(compilerOptions) ? [ts.factory.createBundle(filesForEmit, !ts.isSourceFile(sourceFileOrBundle) ? sourceFileOrBundle.prepends : undefined)] : filesForEmit; if (emitOnlyDtsFiles && !ts.getEmitDeclarations(compilerOptions)) { // Checker wont collect the linked aliases since thats only done when declaration is enabled. // Do that here when emitting only dts files filesForEmit.forEach(collectLinkedAliases); } var declarationTransform = ts.transformNodes(resolver, host, ts.factory, compilerOptions, inputListOrBundle, declarationTransformers, /*allowDtsFiles*/ false); if (ts.length(declarationTransform.diagnostics)) { for (var _a = 0, _b = declarationTransform.diagnostics; _a < _b.length; _a++) { var diagnostic = _b[_a]; emitterDiagnostics.add(diagnostic); } } var printerOptions = { removeComments: compilerOptions.removeComments, newLine: compilerOptions.newLine, noEmitHelpers: true, module: compilerOptions.module, target: compilerOptions.target, sourceMap: compilerOptions.sourceMap, inlineSourceMap: compilerOptions.inlineSourceMap, extendedDiagnostics: compilerOptions.extendedDiagnostics, onlyPrintJsDocStyle: true, writeBundleFileInfo: !!bundleBuildInfo, recordInternalSection: !!bundleBuildInfo, relativeToBuildInfo: relativeToBuildInfo }; var declarationPrinter = createPrinter(printerOptions, { // resolver hooks hasGlobalName: resolver.hasGlobalName, // transform hooks onEmitNode: declarationTransform.emitNodeWithNotification, isEmitNotificationEnabled: declarationTransform.isEmitNotificationEnabled, substituteNode: declarationTransform.substituteNode, }); var declBlocked = (!!declarationTransform.diagnostics && !!declarationTransform.diagnostics.length) || !!host.isEmitBlocked(declarationFilePath) || !!compilerOptions.noEmit; emitSkipped = emitSkipped || declBlocked; if (!declBlocked || forceDtsEmit) { ts.Debug.assert(declarationTransform.transformed.length === 1, "Should only see one output from the decl transform"); printSourceFileOrBundle(declarationFilePath, declarationMapPath, declarationTransform.transformed[0], declarationPrinter, { sourceMap: !forceDtsEmit && compilerOptions.declarationMap, sourceRoot: compilerOptions.sourceRoot, mapRoot: compilerOptions.mapRoot, extendedDiagnostics: compilerOptions.extendedDiagnostics, // Explicitly do not passthru either `inline` option }); if (forceDtsEmit && declarationTransform.transformed[0].kind === 305 /* SyntaxKind.SourceFile */) { var sourceFile = declarationTransform.transformed[0]; exportedModulesFromDeclarationEmit = sourceFile.exportedModulesFromDeclarationEmit; } } declarationTransform.dispose(); if (bundleBuildInfo) bundleBuildInfo.dts = declarationPrinter.bundleFileInfo; } function collectLinkedAliases(node) { if (ts.isExportAssignment(node)) { if (node.expression.kind === 79 /* SyntaxKind.Identifier */) { resolver.collectLinkedAliases(node.expression, /*setVisibility*/ true); } return; } else if (ts.isExportSpecifier(node)) { resolver.collectLinkedAliases(node.propertyName || node.name, /*setVisibility*/ true); return; } ts.forEachChild(node, collectLinkedAliases); } function printSourceFileOrBundle(jsFilePath, sourceMapFilePath, sourceFileOrBundle, printer, mapOptions) { var bundle = sourceFileOrBundle.kind === 306 /* SyntaxKind.Bundle */ ? sourceFileOrBundle : undefined; var sourceFile = sourceFileOrBundle.kind === 305 /* SyntaxKind.SourceFile */ ? sourceFileOrBundle : undefined; var sourceFiles = bundle ? bundle.sourceFiles : [sourceFile]; var sourceMapGenerator; if (shouldEmitSourceMaps(mapOptions, sourceFileOrBundle)) { sourceMapGenerator = ts.createSourceMapGenerator(host, ts.getBaseFileName(ts.normalizeSlashes(jsFilePath)), getSourceRoot(mapOptions), getSourceMapDirectory(mapOptions, jsFilePath, sourceFile), mapOptions); } if (bundle) { printer.writeBundle(bundle, writer, sourceMapGenerator); } else { printer.writeFile(sourceFile, writer, sourceMapGenerator); } var sourceMapUrlPos; if (sourceMapGenerator) { if (sourceMapDataList) { sourceMapDataList.push({ inputSourceFileNames: sourceMapGenerator.getSources(), sourceMap: sourceMapGenerator.toJSON() }); } var sourceMappingURL = getSourceMappingURL(mapOptions, sourceMapGenerator, jsFilePath, sourceMapFilePath, sourceFile); if (sourceMappingURL) { if (!writer.isAtStartOfLine()) writer.rawWrite(newLine); sourceMapUrlPos = writer.getTextPos(); writer.writeComment("//# ".concat("sourceMappingURL", "=").concat(sourceMappingURL)); // Tools can sometimes see this line as a source mapping url comment } // Write the source map if (sourceMapFilePath) { var sourceMap = sourceMapGenerator.toString(); ts.writeFile(host, emitterDiagnostics, sourceMapFilePath, sourceMap, /*writeByteOrderMark*/ false, sourceFiles); } } else { writer.writeLine(); } // Write the output file ts.writeFile(host, emitterDiagnostics, jsFilePath, writer.getText(), !!compilerOptions.emitBOM, sourceFiles, { sourceMapUrlPos: sourceMapUrlPos }); // Reset state writer.clear(); } function shouldEmitSourceMaps(mapOptions, sourceFileOrBundle) { return (mapOptions.sourceMap || mapOptions.inlineSourceMap) && (sourceFileOrBundle.kind !== 305 /* SyntaxKind.SourceFile */ || !ts.fileExtensionIs(sourceFileOrBundle.fileName, ".json" /* Extension.Json */)); } function getSourceRoot(mapOptions) { // Normalize source root and make sure it has trailing "/" so that it can be used to combine paths with the // relative paths of the sources list in the sourcemap var sourceRoot = ts.normalizeSlashes(mapOptions.sourceRoot || ""); return sourceRoot ? ts.ensureTrailingDirectorySeparator(sourceRoot) : sourceRoot; } function getSourceMapDirectory(mapOptions, filePath, sourceFile) { if (mapOptions.sourceRoot) return host.getCommonSourceDirectory(); if (mapOptions.mapRoot) { var sourceMapDir = ts.normalizeSlashes(mapOptions.mapRoot); if (sourceFile) { // For modules or multiple emit files the mapRoot will have directory structure like the sources // So if src\a.ts and src\lib\b.ts are compiled together user would be moving the maps into mapRoot\a.js.map and mapRoot\lib\b.js.map sourceMapDir = ts.getDirectoryPath(ts.getSourceFilePathInNewDir(sourceFile.fileName, host, sourceMapDir)); } if (ts.getRootLength(sourceMapDir) === 0) { // The relative paths are relative to the common directory sourceMapDir = ts.combinePaths(host.getCommonSourceDirectory(), sourceMapDir); } return sourceMapDir; } return ts.getDirectoryPath(ts.normalizePath(filePath)); } function getSourceMappingURL(mapOptions, sourceMapGenerator, filePath, sourceMapFilePath, sourceFile) { if (mapOptions.inlineSourceMap) { // Encode the sourceMap into the sourceMap url var sourceMapText = sourceMapGenerator.toString(); var base64SourceMapText = ts.base64encode(ts.sys, sourceMapText); return "data:application/json;base64,".concat(base64SourceMapText); } var sourceMapFile = ts.getBaseFileName(ts.normalizeSlashes(ts.Debug.checkDefined(sourceMapFilePath))); if (mapOptions.mapRoot) { var sourceMapDir = ts.normalizeSlashes(mapOptions.mapRoot); if (sourceFile) { // For modules or multiple emit files the mapRoot will have directory structure like the sources // So if src\a.ts and src\lib\b.ts are compiled together user would be moving the maps into mapRoot\a.js.map and mapRoot\lib\b.js.map sourceMapDir = ts.getDirectoryPath(ts.getSourceFilePathInNewDir(sourceFile.fileName, host, sourceMapDir)); } if (ts.getRootLength(sourceMapDir) === 0) { // The relative paths are relative to the common directory sourceMapDir = ts.combinePaths(host.getCommonSourceDirectory(), sourceMapDir); return encodeURI(ts.getRelativePathToDirectoryOrUrl(ts.getDirectoryPath(ts.normalizePath(filePath)), // get the relative sourceMapDir path based on jsFilePath ts.combinePaths(sourceMapDir, sourceMapFile), // this is where user expects to see sourceMap host.getCurrentDirectory(), host.getCanonicalFileName, /*isAbsolutePathAnUrl*/ true)); } else { return encodeURI(ts.combinePaths(sourceMapDir, sourceMapFile)); } } return encodeURI(sourceMapFile); } } ts.emitFiles = emitFiles; /*@internal*/ function getBuildInfoText(buildInfo) { return JSON.stringify(buildInfo); } ts.getBuildInfoText = getBuildInfoText; /*@internal*/ function getBuildInfo(buildInfoText) { return JSON.parse(buildInfoText); } ts.getBuildInfo = getBuildInfo; /*@internal*/ ts.notImplementedResolver = { hasGlobalName: ts.notImplemented, getReferencedExportContainer: ts.notImplemented, getReferencedImportDeclaration: ts.notImplemented, getReferencedDeclarationWithCollidingName: ts.notImplemented, isDeclarationWithCollidingName: ts.notImplemented, isValueAliasDeclaration: ts.notImplemented, isReferencedAliasDeclaration: ts.notImplemented, isTopLevelValueImportEqualsWithEntityName: ts.notImplemented, getNodeCheckFlags: ts.notImplemented, isDeclarationVisible: ts.notImplemented, isLateBound: function (_node) { return false; }, collectLinkedAliases: ts.notImplemented, isImplementationOfOverload: ts.notImplemented, isRequiredInitializedParameter: ts.notImplemented, isOptionalUninitializedParameterProperty: ts.notImplemented, isExpandoFunctionDeclaration: ts.notImplemented, getPropertiesOfContainerFunction: ts.notImplemented, createTypeOfDeclaration: ts.notImplemented, createReturnTypeOfSignatureDeclaration: ts.notImplemented, createTypeOfExpression: ts.notImplemented, createLiteralConstValue: ts.notImplemented, isSymbolAccessible: ts.notImplemented, isEntityNameVisible: ts.notImplemented, // Returns the constant value this property access resolves to: notImplemented, or 'undefined' for a non-constant getConstantValue: ts.notImplemented, getReferencedValueDeclaration: ts.notImplemented, getTypeReferenceSerializationKind: ts.notImplemented, isOptionalParameter: ts.notImplemented, moduleExportsSomeValue: ts.notImplemented, isArgumentsLocalBinding: ts.notImplemented, getExternalModuleFileFromDeclaration: ts.notImplemented, getTypeReferenceDirectivesForEntityName: ts.notImplemented, getTypeReferenceDirectivesForSymbol: ts.notImplemented, isLiteralConstDeclaration: ts.notImplemented, getJsxFactoryEntity: ts.notImplemented, getJsxFragmentFactoryEntity: ts.notImplemented, getAllAccessorDeclarations: ts.notImplemented, getSymbolOfExternalModuleSpecifier: ts.notImplemented, isBindingCapturedByNode: ts.notImplemented, getDeclarationStatementsForSourceFile: ts.notImplemented, isImportRequiredByAugmentation: ts.notImplemented, }; function createSourceFilesFromBundleBuildInfo(bundle, buildInfoDirectory, host) { var _a; var jsBundle = ts.Debug.checkDefined(bundle.js); var prologueMap = ((_a = jsBundle.sources) === null || _a === void 0 ? void 0 : _a.prologues) && ts.arrayToMap(jsBundle.sources.prologues, function (prologueInfo) { return prologueInfo.file; }); return bundle.sourceFiles.map(function (fileName, index) { var _a, _b; var prologueInfo = prologueMap === null || prologueMap === void 0 ? void 0 : prologueMap.get(index); var statements = prologueInfo === null || prologueInfo === void 0 ? void 0 : prologueInfo.directives.map(function (directive) { var literal = ts.setTextRange(ts.factory.createStringLiteral(directive.expression.text), directive.expression); var statement = ts.setTextRange(ts.factory.createExpressionStatement(literal), directive); ts.setParent(literal, statement); return statement; }); var eofToken = ts.factory.createToken(1 /* SyntaxKind.EndOfFileToken */); var sourceFile = ts.factory.createSourceFile(statements !== null && statements !== void 0 ? statements : [], eofToken, 0 /* NodeFlags.None */); sourceFile.fileName = ts.getRelativePathFromDirectory(host.getCurrentDirectory(), ts.getNormalizedAbsolutePath(fileName, buildInfoDirectory), !host.useCaseSensitiveFileNames()); sourceFile.text = (_a = prologueInfo === null || prologueInfo === void 0 ? void 0 : prologueInfo.text) !== null && _a !== void 0 ? _a : ""; ts.setTextRangePosWidth(sourceFile, 0, (_b = prologueInfo === null || prologueInfo === void 0 ? void 0 : prologueInfo.text.length) !== null && _b !== void 0 ? _b : 0); ts.setEachParent(sourceFile.statements, sourceFile); ts.setTextRangePosWidth(eofToken, sourceFile.end, 0); ts.setParent(eofToken, sourceFile); return sourceFile; }); } /*@internal*/ function emitUsingBuildInfo(config, host, getCommandLine, customTransformers) { var _a = getOutputPathsForBundle(config.options, /*forceDtsPaths*/ false), buildInfoPath = _a.buildInfoPath, jsFilePath = _a.jsFilePath, sourceMapFilePath = _a.sourceMapFilePath, declarationFilePath = _a.declarationFilePath, declarationMapPath = _a.declarationMapPath; var buildInfoText = host.readFile(ts.Debug.checkDefined(buildInfoPath)); if (!buildInfoText) return buildInfoPath; var jsFileText = host.readFile(ts.Debug.checkDefined(jsFilePath)); if (!jsFileText) return jsFilePath; var sourceMapText = sourceMapFilePath && host.readFile(sourceMapFilePath); // error if no source map or for now if inline sourcemap if ((sourceMapFilePath && !sourceMapText) || config.options.inlineSourceMap) return sourceMapFilePath || "inline sourcemap decoding"; // read declaration text var declarationText = declarationFilePath && host.readFile(declarationFilePath); if (declarationFilePath && !declarationText) return declarationFilePath; var declarationMapText = declarationMapPath && host.readFile(declarationMapPath); // error if no source map or for now if inline sourcemap if ((declarationMapPath && !declarationMapText) || config.options.inlineSourceMap) return declarationMapPath || "inline sourcemap decoding"; var buildInfo = getBuildInfo(buildInfoText); if (!buildInfo.bundle || !buildInfo.bundle.js || (declarationText && !buildInfo.bundle.dts)) return buildInfoPath; var buildInfoDirectory = ts.getDirectoryPath(ts.getNormalizedAbsolutePath(buildInfoPath, host.getCurrentDirectory())); var ownPrependInput = ts.createInputFiles(jsFileText, declarationText, sourceMapFilePath, sourceMapText, declarationMapPath, declarationMapText, jsFilePath, declarationFilePath, buildInfoPath, buildInfo, /*onlyOwnText*/ true); var outputFiles = []; var prependNodes = ts.createPrependNodes(config.projectReferences, getCommandLine, function (f) { return host.readFile(f); }); var sourceFilesForJsEmit = createSourceFilesFromBundleBuildInfo(buildInfo.bundle, buildInfoDirectory, host); var emitHost = { getPrependNodes: ts.memoize(function () { return __spreadArray(__spreadArray([], prependNodes, true), [ownPrependInput], false); }), getCanonicalFileName: host.getCanonicalFileName, getCommonSourceDirectory: function () { return ts.getNormalizedAbsolutePath(buildInfo.bundle.commonSourceDirectory, buildInfoDirectory); }, getCompilerOptions: function () { return config.options; }, getCurrentDirectory: function () { return host.getCurrentDirectory(); }, getNewLine: function () { return host.getNewLine(); }, getSourceFile: ts.returnUndefined, getSourceFileByPath: ts.returnUndefined, getSourceFiles: function () { return sourceFilesForJsEmit; }, getLibFileFromReference: ts.notImplemented, isSourceFileFromExternalLibrary: ts.returnFalse, getResolvedProjectReferenceToRedirect: ts.returnUndefined, getProjectReferenceRedirect: ts.returnUndefined, isSourceOfProjectReferenceRedirect: ts.returnFalse, writeFile: function (name, text, writeByteOrderMark) { switch (name) { case jsFilePath: if (jsFileText === text) return; break; case sourceMapFilePath: if (sourceMapText === text) return; break; case buildInfoPath: var newBuildInfo = getBuildInfo(text); newBuildInfo.program = buildInfo.program; // Update sourceFileInfo var _a = buildInfo.bundle, js = _a.js, dts = _a.dts, sourceFiles = _a.sourceFiles; newBuildInfo.bundle.js.sources = js.sources; if (dts) { newBuildInfo.bundle.dts.sources = dts.sources; } newBuildInfo.bundle.sourceFiles = sourceFiles; outputFiles.push({ name: name, text: getBuildInfoText(newBuildInfo), writeByteOrderMark: writeByteOrderMark }); return; case declarationFilePath: if (declarationText === text) return; break; case declarationMapPath: if (declarationMapText === text) return; break; default: ts.Debug.fail("Unexpected path: ".concat(name)); } outputFiles.push({ name: name, text: text, writeByteOrderMark: writeByteOrderMark }); }, isEmitBlocked: ts.returnFalse, readFile: function (f) { return host.readFile(f); }, fileExists: function (f) { return host.fileExists(f); }, useCaseSensitiveFileNames: function () { return host.useCaseSensitiveFileNames(); }, getProgramBuildInfo: ts.returnUndefined, getSourceFileFromReference: ts.returnUndefined, redirectTargetsMap: ts.createMultiMap(), getFileIncludeReasons: ts.notImplemented, }; emitFiles(ts.notImplementedResolver, emitHost, /*targetSourceFile*/ undefined, ts.getTransformers(config.options, customTransformers)); return outputFiles; } ts.emitUsingBuildInfo = emitUsingBuildInfo; var PipelinePhase; (function (PipelinePhase) { PipelinePhase[PipelinePhase["Notification"] = 0] = "Notification"; PipelinePhase[PipelinePhase["Substitution"] = 1] = "Substitution"; PipelinePhase[PipelinePhase["Comments"] = 2] = "Comments"; PipelinePhase[PipelinePhase["SourceMaps"] = 3] = "SourceMaps"; PipelinePhase[PipelinePhase["Emit"] = 4] = "Emit"; })(PipelinePhase || (PipelinePhase = {})); function createPrinter(printerOptions, handlers) { if (printerOptions === void 0) { printerOptions = {}; } if (handlers === void 0) { handlers = {}; } var hasGlobalName = handlers.hasGlobalName, _a = handlers.onEmitNode, onEmitNode = _a === void 0 ? ts.noEmitNotification : _a, isEmitNotificationEnabled = handlers.isEmitNotificationEnabled, _b = handlers.substituteNode, substituteNode = _b === void 0 ? ts.noEmitSubstitution : _b, onBeforeEmitNode = handlers.onBeforeEmitNode, onAfterEmitNode = handlers.onAfterEmitNode, onBeforeEmitNodeArray = handlers.onBeforeEmitNodeArray, onAfterEmitNodeArray = handlers.onAfterEmitNodeArray, onBeforeEmitToken = handlers.onBeforeEmitToken, onAfterEmitToken = handlers.onAfterEmitToken; var extendedDiagnostics = !!printerOptions.extendedDiagnostics; var newLine = ts.getNewLineCharacter(printerOptions); var moduleKind = ts.getEmitModuleKind(printerOptions); var bundledHelpers = new ts.Map(); var currentSourceFile; var nodeIdToGeneratedName; // Map of generated names for specific nodes. var autoGeneratedIdToGeneratedName; // Map of generated names for temp and loop variables. var generatedNames; // Set of names generated by the NameGenerator. var tempFlagsStack; // Stack of enclosing name generation scopes. var tempFlags; // TempFlags for the current name generation scope. var reservedNamesStack; // Stack of TempFlags reserved in enclosing name generation scopes. var reservedNames; // TempFlags to reserve in nested name generation scopes. var preserveSourceNewlines = printerOptions.preserveSourceNewlines; // Can be overridden inside nodes with the `IgnoreSourceNewlines` emit flag. var nextListElementPos; // See comment in `getLeadingLineTerminatorCount`. var writer; var ownWriter; // Reusable `EmitTextWriter` for basic printing. var write = writeBase; var isOwnFileEmit; var bundleFileInfo = printerOptions.writeBundleFileInfo ? { sections: [] } : undefined; var relativeToBuildInfo = bundleFileInfo ? ts.Debug.checkDefined(printerOptions.relativeToBuildInfo) : undefined; var recordInternalSection = printerOptions.recordInternalSection; var sourceFileTextPos = 0; var sourceFileTextKind = "text" /* BundleFileSectionKind.Text */; // Source Maps var sourceMapsDisabled = true; var sourceMapGenerator; var sourceMapSource; var sourceMapSourceIndex = -1; var mostRecentlyAddedSourceMapSource; var mostRecentlyAddedSourceMapSourceIndex = -1; // Comments var containerPos = -1; var containerEnd = -1; var declarationListContainerEnd = -1; var currentLineMap; var detachedCommentsInfo; var hasWrittenComment = false; var commentsDisabled = !!printerOptions.removeComments; var lastSubstitution; var currentParenthesizerRule; var _c = ts.performance.createTimerIf(extendedDiagnostics, "commentTime", "beforeComment", "afterComment"), enterComment = _c.enter, exitComment = _c.exit; var parenthesizer = ts.factory.parenthesizer; var typeArgumentParenthesizerRuleSelector = { select: function (index) { return index === 0 ? parenthesizer.parenthesizeLeadingTypeArgument : undefined; } }; var emitBinaryExpression = createEmitBinaryExpression(); reset(); return { // public API printNode: printNode, printList: printList, printFile: printFile, printBundle: printBundle, // internal API writeNode: writeNode, writeList: writeList, writeFile: writeFile, writeBundle: writeBundle, bundleFileInfo: bundleFileInfo }; function printNode(hint, node, sourceFile) { switch (hint) { case 0 /* EmitHint.SourceFile */: ts.Debug.assert(ts.isSourceFile(node), "Expected a SourceFile node."); break; case 2 /* EmitHint.IdentifierName */: ts.Debug.assert(ts.isIdentifier(node), "Expected an Identifier node."); break; case 1 /* EmitHint.Expression */: ts.Debug.assert(ts.isExpression(node), "Expected an Expression node."); break; } switch (node.kind) { case 305 /* SyntaxKind.SourceFile */: return printFile(node); case 306 /* SyntaxKind.Bundle */: return printBundle(node); case 307 /* SyntaxKind.UnparsedSource */: return printUnparsedSource(node); } writeNode(hint, node, sourceFile, beginPrint()); return endPrint(); } function printList(format, nodes, sourceFile) { writeList(format, nodes, sourceFile, beginPrint()); return endPrint(); } function printBundle(bundle) { writeBundle(bundle, beginPrint(), /*sourceMapEmitter*/ undefined); return endPrint(); } function printFile(sourceFile) { writeFile(sourceFile, beginPrint(), /*sourceMapEmitter*/ undefined); return endPrint(); } function printUnparsedSource(unparsed) { writeUnparsedSource(unparsed, beginPrint()); return endPrint(); } function writeNode(hint, node, sourceFile, output) { var previousWriter = writer; setWriter(output, /*_sourceMapGenerator*/ undefined); print(hint, node, sourceFile); reset(); writer = previousWriter; } function writeList(format, nodes, sourceFile, output) { var previousWriter = writer; setWriter(output, /*_sourceMapGenerator*/ undefined); if (sourceFile) { setSourceFile(sourceFile); } emitList(/*parentNode*/ undefined, nodes, format); reset(); writer = previousWriter; } function getTextPosWithWriteLine() { return writer.getTextPosWithWriteLine ? writer.getTextPosWithWriteLine() : writer.getTextPos(); } function updateOrPushBundleFileTextLike(pos, end, kind) { var last = ts.lastOrUndefined(bundleFileInfo.sections); if (last && last.kind === kind) { last.end = end; } else { bundleFileInfo.sections.push({ pos: pos, end: end, kind: kind }); } } function recordBundleFileInternalSectionStart(node) { if (recordInternalSection && bundleFileInfo && currentSourceFile && (ts.isDeclaration(node) || ts.isVariableStatement(node)) && ts.isInternalDeclaration(node, currentSourceFile) && sourceFileTextKind !== "internal" /* BundleFileSectionKind.Internal */) { var prevSourceFileTextKind = sourceFileTextKind; recordBundleFileTextLikeSection(writer.getTextPos()); sourceFileTextPos = getTextPosWithWriteLine(); sourceFileTextKind = "internal" /* BundleFileSectionKind.Internal */; return prevSourceFileTextKind; } return undefined; } function recordBundleFileInternalSectionEnd(prevSourceFileTextKind) { if (prevSourceFileTextKind) { recordBundleFileTextLikeSection(writer.getTextPos()); sourceFileTextPos = getTextPosWithWriteLine(); sourceFileTextKind = prevSourceFileTextKind; } } function recordBundleFileTextLikeSection(end) { if (sourceFileTextPos < end) { updateOrPushBundleFileTextLike(sourceFileTextPos, end, sourceFileTextKind); return true; } return false; } function writeBundle(bundle, output, sourceMapGenerator) { var _a; isOwnFileEmit = false; var previousWriter = writer; setWriter(output, sourceMapGenerator); emitShebangIfNeeded(bundle); emitPrologueDirectivesIfNeeded(bundle); emitHelpers(bundle); emitSyntheticTripleSlashReferencesIfNeeded(bundle); for (var _b = 0, _c = bundle.prepends; _b < _c.length; _b++) { var prepend = _c[_b]; writeLine(); var pos = writer.getTextPos(); var savedSections = bundleFileInfo && bundleFileInfo.sections; if (savedSections) bundleFileInfo.sections = []; print(4 /* EmitHint.Unspecified */, prepend, /*sourceFile*/ undefined); if (bundleFileInfo) { var newSections = bundleFileInfo.sections; bundleFileInfo.sections = savedSections; if (prepend.oldFileOfCurrentEmit) (_a = bundleFileInfo.sections).push.apply(_a, newSections); else { newSections.forEach(function (section) { return ts.Debug.assert(ts.isBundleFileTextLike(section)); }); bundleFileInfo.sections.push({ pos: pos, end: writer.getTextPos(), kind: "prepend" /* BundleFileSectionKind.Prepend */, data: relativeToBuildInfo(prepend.fileName), texts: newSections }); } } } sourceFileTextPos = getTextPosWithWriteLine(); for (var _d = 0, _e = bundle.sourceFiles; _d < _e.length; _d++) { var sourceFile = _e[_d]; print(0 /* EmitHint.SourceFile */, sourceFile, sourceFile); } if (bundleFileInfo && bundle.sourceFiles.length) { var end = writer.getTextPos(); if (recordBundleFileTextLikeSection(end)) { // Store prologues var prologues = getPrologueDirectivesFromBundledSourceFiles(bundle); if (prologues) { if (!bundleFileInfo.sources) bundleFileInfo.sources = {}; bundleFileInfo.sources.prologues = prologues; } // Store helpes var helpers = getHelpersFromBundledSourceFiles(bundle); if (helpers) { if (!bundleFileInfo.sources) bundleFileInfo.sources = {}; bundleFileInfo.sources.helpers = helpers; } } } reset(); writer = previousWriter; } function writeUnparsedSource(unparsed, output) { var previousWriter = writer; setWriter(output, /*_sourceMapGenerator*/ undefined); print(4 /* EmitHint.Unspecified */, unparsed, /*sourceFile*/ undefined); reset(); writer = previousWriter; } function writeFile(sourceFile, output, sourceMapGenerator) { isOwnFileEmit = true; var previousWriter = writer; setWriter(output, sourceMapGenerator); emitShebangIfNeeded(sourceFile); emitPrologueDirectivesIfNeeded(sourceFile); print(0 /* EmitHint.SourceFile */, sourceFile, sourceFile); reset(); writer = previousWriter; } function beginPrint() { return ownWriter || (ownWriter = ts.createTextWriter(newLine)); } function endPrint() { var text = ownWriter.getText(); ownWriter.clear(); return text; } function print(hint, node, sourceFile) { if (sourceFile) { setSourceFile(sourceFile); } pipelineEmit(hint, node, /*parenthesizerRule*/ undefined); } function setSourceFile(sourceFile) { currentSourceFile = sourceFile; currentLineMap = undefined; detachedCommentsInfo = undefined; if (sourceFile) { setSourceMapSource(sourceFile); } } function setWriter(_writer, _sourceMapGenerator) { if (_writer && printerOptions.omitTrailingSemicolon) { _writer = ts.getTrailingSemicolonDeferringWriter(_writer); } writer = _writer; // TODO: GH#18217 sourceMapGenerator = _sourceMapGenerator; sourceMapsDisabled = !writer || !sourceMapGenerator; } function reset() { nodeIdToGeneratedName = []; autoGeneratedIdToGeneratedName = []; generatedNames = new ts.Set(); tempFlagsStack = []; tempFlags = 0 /* TempFlags.Auto */; reservedNamesStack = []; currentSourceFile = undefined; currentLineMap = undefined; detachedCommentsInfo = undefined; setWriter(/*output*/ undefined, /*_sourceMapGenerator*/ undefined); } function getCurrentLineMap() { return currentLineMap || (currentLineMap = ts.getLineStarts(ts.Debug.checkDefined(currentSourceFile))); } function emit(node, parenthesizerRule) { if (node === undefined) return; var prevSourceFileTextKind = recordBundleFileInternalSectionStart(node); pipelineEmit(4 /* EmitHint.Unspecified */, node, parenthesizerRule); recordBundleFileInternalSectionEnd(prevSourceFileTextKind); } function emitIdentifierName(node) { if (node === undefined) return; pipelineEmit(2 /* EmitHint.IdentifierName */, node, /*parenthesizerRule*/ undefined); } function emitExpression(node, parenthesizerRule) { if (node === undefined) return; pipelineEmit(1 /* EmitHint.Expression */, node, parenthesizerRule); } function emitJsxAttributeValue(node) { pipelineEmit(ts.isStringLiteral(node) ? 6 /* EmitHint.JsxAttributeValue */ : 4 /* EmitHint.Unspecified */, node); } function beforeEmitNode(node) { if (preserveSourceNewlines && (ts.getEmitFlags(node) & 134217728 /* EmitFlags.IgnoreSourceNewlines */)) { preserveSourceNewlines = false; } } function afterEmitNode(savedPreserveSourceNewlines) { preserveSourceNewlines = savedPreserveSourceNewlines; } function pipelineEmit(emitHint, node, parenthesizerRule) { currentParenthesizerRule = parenthesizerRule; var pipelinePhase = getPipelinePhase(0 /* PipelinePhase.Notification */, emitHint, node); pipelinePhase(emitHint, node); currentParenthesizerRule = undefined; } function shouldEmitComments(node) { return !commentsDisabled && !ts.isSourceFile(node); } function shouldEmitSourceMaps(node) { return !sourceMapsDisabled && !ts.isSourceFile(node) && !ts.isInJsonFile(node) && !ts.isUnparsedSource(node) && !ts.isUnparsedPrepend(node); } function getPipelinePhase(phase, emitHint, node) { switch (phase) { case 0 /* PipelinePhase.Notification */: if (onEmitNode !== ts.noEmitNotification && (!isEmitNotificationEnabled || isEmitNotificationEnabled(node))) { return pipelineEmitWithNotification; } // falls through case 1 /* PipelinePhase.Substitution */: if (substituteNode !== ts.noEmitSubstitution && (lastSubstitution = substituteNode(emitHint, node) || node) !== node) { if (currentParenthesizerRule) { lastSubstitution = currentParenthesizerRule(lastSubstitution); } return pipelineEmitWithSubstitution; } // falls through case 2 /* PipelinePhase.Comments */: if (shouldEmitComments(node)) { return pipelineEmitWithComments; } // falls through case 3 /* PipelinePhase.SourceMaps */: if (shouldEmitSourceMaps(node)) { return pipelineEmitWithSourceMaps; } // falls through case 4 /* PipelinePhase.Emit */: return pipelineEmitWithHint; default: return ts.Debug.assertNever(phase); } } function getNextPipelinePhase(currentPhase, emitHint, node) { return getPipelinePhase(currentPhase + 1, emitHint, node); } function pipelineEmitWithNotification(hint, node) { var pipelinePhase = getNextPipelinePhase(0 /* PipelinePhase.Notification */, hint, node); onEmitNode(hint, node, pipelinePhase); } function pipelineEmitWithHint(hint, node) { onBeforeEmitNode === null || onBeforeEmitNode === void 0 ? void 0 : onBeforeEmitNode(node); if (preserveSourceNewlines) { var savedPreserveSourceNewlines = preserveSourceNewlines; beforeEmitNode(node); pipelineEmitWithHintWorker(hint, node); afterEmitNode(savedPreserveSourceNewlines); } else { pipelineEmitWithHintWorker(hint, node); } onAfterEmitNode === null || onAfterEmitNode === void 0 ? void 0 : onAfterEmitNode(node); // clear the parenthesizer rule as we ascend currentParenthesizerRule = undefined; } function pipelineEmitWithHintWorker(hint, node, allowSnippets) { if (allowSnippets === void 0) { allowSnippets = true; } if (allowSnippets) { var snippet = ts.getSnippetElement(node); if (snippet) { return emitSnippetNode(hint, node, snippet); } } if (hint === 0 /* EmitHint.SourceFile */) return emitSourceFile(ts.cast(node, ts.isSourceFile)); if (hint === 2 /* EmitHint.IdentifierName */) return emitIdentifier(ts.cast(node, ts.isIdentifier)); if (hint === 6 /* EmitHint.JsxAttributeValue */) return emitLiteral(ts.cast(node, ts.isStringLiteral), /*jsxAttributeEscape*/ true); if (hint === 3 /* EmitHint.MappedTypeParameter */) return emitMappedTypeParameter(ts.cast(node, ts.isTypeParameterDeclaration)); if (hint === 5 /* EmitHint.EmbeddedStatement */) { ts.Debug.assertNode(node, ts.isEmptyStatement); return emitEmptyStatement(/*isEmbeddedStatement*/ true); } if (hint === 4 /* EmitHint.Unspecified */) { switch (node.kind) { // Pseudo-literals case 15 /* SyntaxKind.TemplateHead */: case 16 /* SyntaxKind.TemplateMiddle */: case 17 /* SyntaxKind.TemplateTail */: return emitLiteral(node, /*jsxAttributeEscape*/ false); // Identifiers case 79 /* SyntaxKind.Identifier */: return emitIdentifier(node); // PrivateIdentifiers case 80 /* SyntaxKind.PrivateIdentifier */: return emitPrivateIdentifier(node); // Parse tree nodes // Names case 161 /* SyntaxKind.QualifiedName */: return emitQualifiedName(node); case 162 /* SyntaxKind.ComputedPropertyName */: return emitComputedPropertyName(node); // Signature elements case 163 /* SyntaxKind.TypeParameter */: return emitTypeParameter(node); case 164 /* SyntaxKind.Parameter */: return emitParameter(node); case 165 /* SyntaxKind.Decorator */: return emitDecorator(node); // Type members case 166 /* SyntaxKind.PropertySignature */: return emitPropertySignature(node); case 167 /* SyntaxKind.PropertyDeclaration */: return emitPropertyDeclaration(node); case 168 /* SyntaxKind.MethodSignature */: return emitMethodSignature(node); case 169 /* SyntaxKind.MethodDeclaration */: return emitMethodDeclaration(node); case 170 /* SyntaxKind.ClassStaticBlockDeclaration */: return emitClassStaticBlockDeclaration(node); case 171 /* SyntaxKind.Constructor */: return emitConstructor(node); case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: return emitAccessorDeclaration(node); case 174 /* SyntaxKind.CallSignature */: return emitCallSignature(node); case 175 /* SyntaxKind.ConstructSignature */: return emitConstructSignature(node); case 176 /* SyntaxKind.IndexSignature */: return emitIndexSignature(node); // Types case 177 /* SyntaxKind.TypePredicate */: return emitTypePredicate(node); case 178 /* SyntaxKind.TypeReference */: return emitTypeReference(node); case 179 /* SyntaxKind.FunctionType */: return emitFunctionType(node); case 180 /* SyntaxKind.ConstructorType */: return emitConstructorType(node); case 181 /* SyntaxKind.TypeQuery */: return emitTypeQuery(node); case 182 /* SyntaxKind.TypeLiteral */: return emitTypeLiteral(node); case 183 /* SyntaxKind.ArrayType */: return emitArrayType(node); case 184 /* SyntaxKind.TupleType */: return emitTupleType(node); case 185 /* SyntaxKind.OptionalType */: return emitOptionalType(node); // SyntaxKind.RestType is handled below case 187 /* SyntaxKind.UnionType */: return emitUnionType(node); case 188 /* SyntaxKind.IntersectionType */: return emitIntersectionType(node); case 189 /* SyntaxKind.ConditionalType */: return emitConditionalType(node); case 190 /* SyntaxKind.InferType */: return emitInferType(node); case 191 /* SyntaxKind.ParenthesizedType */: return emitParenthesizedType(node); case 228 /* SyntaxKind.ExpressionWithTypeArguments */: return emitExpressionWithTypeArguments(node); case 192 /* SyntaxKind.ThisType */: return emitThisType(); case 193 /* SyntaxKind.TypeOperator */: return emitTypeOperator(node); case 194 /* SyntaxKind.IndexedAccessType */: return emitIndexedAccessType(node); case 195 /* SyntaxKind.MappedType */: return emitMappedType(node); case 196 /* SyntaxKind.LiteralType */: return emitLiteralType(node); case 197 /* SyntaxKind.NamedTupleMember */: return emitNamedTupleMember(node); case 198 /* SyntaxKind.TemplateLiteralType */: return emitTemplateType(node); case 199 /* SyntaxKind.TemplateLiteralTypeSpan */: return emitTemplateTypeSpan(node); case 200 /* SyntaxKind.ImportType */: return emitImportTypeNode(node); // Binding patterns case 201 /* SyntaxKind.ObjectBindingPattern */: return emitObjectBindingPattern(node); case 202 /* SyntaxKind.ArrayBindingPattern */: return emitArrayBindingPattern(node); case 203 /* SyntaxKind.BindingElement */: return emitBindingElement(node); // Misc case 233 /* SyntaxKind.TemplateSpan */: return emitTemplateSpan(node); case 234 /* SyntaxKind.SemicolonClassElement */: return emitSemicolonClassElement(); // Statements case 235 /* SyntaxKind.Block */: return emitBlock(node); case 237 /* SyntaxKind.VariableStatement */: return emitVariableStatement(node); case 236 /* SyntaxKind.EmptyStatement */: return emitEmptyStatement(/*isEmbeddedStatement*/ false); case 238 /* SyntaxKind.ExpressionStatement */: return emitExpressionStatement(node); case 239 /* SyntaxKind.IfStatement */: return emitIfStatement(node); case 240 /* SyntaxKind.DoStatement */: return emitDoStatement(node); case 241 /* SyntaxKind.WhileStatement */: return emitWhileStatement(node); case 242 /* SyntaxKind.ForStatement */: return emitForStatement(node); case 243 /* SyntaxKind.ForInStatement */: return emitForInStatement(node); case 244 /* SyntaxKind.ForOfStatement */: return emitForOfStatement(node); case 245 /* SyntaxKind.ContinueStatement */: return emitContinueStatement(node); case 246 /* SyntaxKind.BreakStatement */: return emitBreakStatement(node); case 247 /* SyntaxKind.ReturnStatement */: return emitReturnStatement(node); case 248 /* SyntaxKind.WithStatement */: return emitWithStatement(node); case 249 /* SyntaxKind.SwitchStatement */: return emitSwitchStatement(node); case 250 /* SyntaxKind.LabeledStatement */: return emitLabeledStatement(node); case 251 /* SyntaxKind.ThrowStatement */: return emitThrowStatement(node); case 252 /* SyntaxKind.TryStatement */: return emitTryStatement(node); case 253 /* SyntaxKind.DebuggerStatement */: return emitDebuggerStatement(node); // Declarations case 254 /* SyntaxKind.VariableDeclaration */: return emitVariableDeclaration(node); case 255 /* SyntaxKind.VariableDeclarationList */: return emitVariableDeclarationList(node); case 256 /* SyntaxKind.FunctionDeclaration */: return emitFunctionDeclaration(node); case 257 /* SyntaxKind.ClassDeclaration */: return emitClassDeclaration(node); case 258 /* SyntaxKind.InterfaceDeclaration */: return emitInterfaceDeclaration(node); case 259 /* SyntaxKind.TypeAliasDeclaration */: return emitTypeAliasDeclaration(node); case 260 /* SyntaxKind.EnumDeclaration */: return emitEnumDeclaration(node); case 261 /* SyntaxKind.ModuleDeclaration */: return emitModuleDeclaration(node); case 262 /* SyntaxKind.ModuleBlock */: return emitModuleBlock(node); case 263 /* SyntaxKind.CaseBlock */: return emitCaseBlock(node); case 264 /* SyntaxKind.NamespaceExportDeclaration */: return emitNamespaceExportDeclaration(node); case 265 /* SyntaxKind.ImportEqualsDeclaration */: return emitImportEqualsDeclaration(node); case 266 /* SyntaxKind.ImportDeclaration */: return emitImportDeclaration(node); case 267 /* SyntaxKind.ImportClause */: return emitImportClause(node); case 268 /* SyntaxKind.NamespaceImport */: return emitNamespaceImport(node); case 274 /* SyntaxKind.NamespaceExport */: return emitNamespaceExport(node); case 269 /* SyntaxKind.NamedImports */: return emitNamedImports(node); case 270 /* SyntaxKind.ImportSpecifier */: return emitImportSpecifier(node); case 271 /* SyntaxKind.ExportAssignment */: return emitExportAssignment(node); case 272 /* SyntaxKind.ExportDeclaration */: return emitExportDeclaration(node); case 273 /* SyntaxKind.NamedExports */: return emitNamedExports(node); case 275 /* SyntaxKind.ExportSpecifier */: return emitExportSpecifier(node); case 293 /* SyntaxKind.AssertClause */: return emitAssertClause(node); case 294 /* SyntaxKind.AssertEntry */: return emitAssertEntry(node); case 276 /* SyntaxKind.MissingDeclaration */: return; // Module references case 277 /* SyntaxKind.ExternalModuleReference */: return emitExternalModuleReference(node); // JSX (non-expression) case 11 /* SyntaxKind.JsxText */: return emitJsxText(node); case 280 /* SyntaxKind.JsxOpeningElement */: case 283 /* SyntaxKind.JsxOpeningFragment */: return emitJsxOpeningElementOrFragment(node); case 281 /* SyntaxKind.JsxClosingElement */: case 284 /* SyntaxKind.JsxClosingFragment */: return emitJsxClosingElementOrFragment(node); case 285 /* SyntaxKind.JsxAttribute */: return emitJsxAttribute(node); case 286 /* SyntaxKind.JsxAttributes */: return emitJsxAttributes(node); case 287 /* SyntaxKind.JsxSpreadAttribute */: return emitJsxSpreadAttribute(node); case 288 /* SyntaxKind.JsxExpression */: return emitJsxExpression(node); // Clauses case 289 /* SyntaxKind.CaseClause */: return emitCaseClause(node); case 290 /* SyntaxKind.DefaultClause */: return emitDefaultClause(node); case 291 /* SyntaxKind.HeritageClause */: return emitHeritageClause(node); case 292 /* SyntaxKind.CatchClause */: return emitCatchClause(node); // Property assignments case 296 /* SyntaxKind.PropertyAssignment */: return emitPropertyAssignment(node); case 297 /* SyntaxKind.ShorthandPropertyAssignment */: return emitShorthandPropertyAssignment(node); case 298 /* SyntaxKind.SpreadAssignment */: return emitSpreadAssignment(node); // Enum case 299 /* SyntaxKind.EnumMember */: return emitEnumMember(node); // Unparsed case 300 /* SyntaxKind.UnparsedPrologue */: return writeUnparsedNode(node); case 307 /* SyntaxKind.UnparsedSource */: case 301 /* SyntaxKind.UnparsedPrepend */: return emitUnparsedSourceOrPrepend(node); case 302 /* SyntaxKind.UnparsedText */: case 303 /* SyntaxKind.UnparsedInternalText */: return emitUnparsedTextLike(node); case 304 /* SyntaxKind.UnparsedSyntheticReference */: return emitUnparsedSyntheticReference(node); // Top-level nodes case 305 /* SyntaxKind.SourceFile */: return emitSourceFile(node); case 306 /* SyntaxKind.Bundle */: return ts.Debug.fail("Bundles should be printed using printBundle"); // SyntaxKind.UnparsedSource (handled above) case 308 /* SyntaxKind.InputFiles */: return ts.Debug.fail("InputFiles should not be printed"); // JSDoc nodes (only used in codefixes currently) case 309 /* SyntaxKind.JSDocTypeExpression */: return emitJSDocTypeExpression(node); case 310 /* SyntaxKind.JSDocNameReference */: return emitJSDocNameReference(node); case 312 /* SyntaxKind.JSDocAllType */: return writePunctuation("*"); case 313 /* SyntaxKind.JSDocUnknownType */: return writePunctuation("?"); case 314 /* SyntaxKind.JSDocNullableType */: return emitJSDocNullableType(node); case 315 /* SyntaxKind.JSDocNonNullableType */: return emitJSDocNonNullableType(node); case 316 /* SyntaxKind.JSDocOptionalType */: return emitJSDocOptionalType(node); case 317 /* SyntaxKind.JSDocFunctionType */: return emitJSDocFunctionType(node); case 186 /* SyntaxKind.RestType */: case 318 /* SyntaxKind.JSDocVariadicType */: return emitRestOrJSDocVariadicType(node); case 319 /* SyntaxKind.JSDocNamepathType */: return; case 320 /* SyntaxKind.JSDoc */: return emitJSDoc(node); case 322 /* SyntaxKind.JSDocTypeLiteral */: return emitJSDocTypeLiteral(node); case 323 /* SyntaxKind.JSDocSignature */: return emitJSDocSignature(node); case 327 /* SyntaxKind.JSDocTag */: case 332 /* SyntaxKind.JSDocClassTag */: case 337 /* SyntaxKind.JSDocOverrideTag */: return emitJSDocSimpleTag(node); case 328 /* SyntaxKind.JSDocAugmentsTag */: case 329 /* SyntaxKind.JSDocImplementsTag */: return emitJSDocHeritageTag(node); case 330 /* SyntaxKind.JSDocAuthorTag */: case 331 /* SyntaxKind.JSDocDeprecatedTag */: return; // SyntaxKind.JSDocClassTag (see JSDocTag, above) case 333 /* SyntaxKind.JSDocPublicTag */: case 334 /* SyntaxKind.JSDocPrivateTag */: case 335 /* SyntaxKind.JSDocProtectedTag */: case 336 /* SyntaxKind.JSDocReadonlyTag */: return; case 338 /* SyntaxKind.JSDocCallbackTag */: return emitJSDocCallbackTag(node); // SyntaxKind.JSDocEnumTag (see below) case 340 /* SyntaxKind.JSDocParameterTag */: case 347 /* SyntaxKind.JSDocPropertyTag */: return emitJSDocPropertyLikeTag(node); case 339 /* SyntaxKind.JSDocEnumTag */: case 341 /* SyntaxKind.JSDocReturnTag */: case 342 /* SyntaxKind.JSDocThisTag */: case 343 /* SyntaxKind.JSDocTypeTag */: return emitJSDocSimpleTypedTag(node); case 344 /* SyntaxKind.JSDocTemplateTag */: return emitJSDocTemplateTag(node); case 345 /* SyntaxKind.JSDocTypedefTag */: return emitJSDocTypedefTag(node); case 346 /* SyntaxKind.JSDocSeeTag */: return emitJSDocSeeTag(node); // SyntaxKind.JSDocPropertyTag (see JSDocParameterTag, above) // Transformation nodes case 349 /* SyntaxKind.NotEmittedStatement */: case 353 /* SyntaxKind.EndOfDeclarationMarker */: case 352 /* SyntaxKind.MergeDeclarationMarker */: return; } if (ts.isExpression(node)) { hint = 1 /* EmitHint.Expression */; if (substituteNode !== ts.noEmitSubstitution) { var substitute = substituteNode(hint, node) || node; if (substitute !== node) { node = substitute; if (currentParenthesizerRule) { node = currentParenthesizerRule(node); } } } } } if (hint === 1 /* EmitHint.Expression */) { switch (node.kind) { // Literals case 8 /* SyntaxKind.NumericLiteral */: case 9 /* SyntaxKind.BigIntLiteral */: return emitNumericOrBigIntLiteral(node); case 10 /* SyntaxKind.StringLiteral */: case 13 /* SyntaxKind.RegularExpressionLiteral */: case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: return emitLiteral(node, /*jsxAttributeEscape*/ false); // Identifiers case 79 /* SyntaxKind.Identifier */: return emitIdentifier(node); case 80 /* SyntaxKind.PrivateIdentifier */: return emitPrivateIdentifier(node); // Expressions case 204 /* SyntaxKind.ArrayLiteralExpression */: return emitArrayLiteralExpression(node); case 205 /* SyntaxKind.ObjectLiteralExpression */: return emitObjectLiteralExpression(node); case 206 /* SyntaxKind.PropertyAccessExpression */: return emitPropertyAccessExpression(node); case 207 /* SyntaxKind.ElementAccessExpression */: return emitElementAccessExpression(node); case 208 /* SyntaxKind.CallExpression */: return emitCallExpression(node); case 209 /* SyntaxKind.NewExpression */: return emitNewExpression(node); case 210 /* SyntaxKind.TaggedTemplateExpression */: return emitTaggedTemplateExpression(node); case 211 /* SyntaxKind.TypeAssertionExpression */: return emitTypeAssertionExpression(node); case 212 /* SyntaxKind.ParenthesizedExpression */: return emitParenthesizedExpression(node); case 213 /* SyntaxKind.FunctionExpression */: return emitFunctionExpression(node); case 214 /* SyntaxKind.ArrowFunction */: return emitArrowFunction(node); case 215 /* SyntaxKind.DeleteExpression */: return emitDeleteExpression(node); case 216 /* SyntaxKind.TypeOfExpression */: return emitTypeOfExpression(node); case 217 /* SyntaxKind.VoidExpression */: return emitVoidExpression(node); case 218 /* SyntaxKind.AwaitExpression */: return emitAwaitExpression(node); case 219 /* SyntaxKind.PrefixUnaryExpression */: return emitPrefixUnaryExpression(node); case 220 /* SyntaxKind.PostfixUnaryExpression */: return emitPostfixUnaryExpression(node); case 221 /* SyntaxKind.BinaryExpression */: return emitBinaryExpression(node); case 222 /* SyntaxKind.ConditionalExpression */: return emitConditionalExpression(node); case 223 /* SyntaxKind.TemplateExpression */: return emitTemplateExpression(node); case 224 /* SyntaxKind.YieldExpression */: return emitYieldExpression(node); case 225 /* SyntaxKind.SpreadElement */: return emitSpreadElement(node); case 226 /* SyntaxKind.ClassExpression */: return emitClassExpression(node); case 227 /* SyntaxKind.OmittedExpression */: return; case 229 /* SyntaxKind.AsExpression */: return emitAsExpression(node); case 230 /* SyntaxKind.NonNullExpression */: return emitNonNullExpression(node); case 228 /* SyntaxKind.ExpressionWithTypeArguments */: return emitExpressionWithTypeArguments(node); case 231 /* SyntaxKind.MetaProperty */: return emitMetaProperty(node); case 232 /* SyntaxKind.SyntheticExpression */: return ts.Debug.fail("SyntheticExpression should never be printed."); // JSX case 278 /* SyntaxKind.JsxElement */: return emitJsxElement(node); case 279 /* SyntaxKind.JsxSelfClosingElement */: return emitJsxSelfClosingElement(node); case 282 /* SyntaxKind.JsxFragment */: return emitJsxFragment(node); // Synthesized list case 348 /* SyntaxKind.SyntaxList */: return ts.Debug.fail("SyntaxList should not be printed"); // Transformation nodes case 349 /* SyntaxKind.NotEmittedStatement */: return; case 350 /* SyntaxKind.PartiallyEmittedExpression */: return emitPartiallyEmittedExpression(node); case 351 /* SyntaxKind.CommaListExpression */: return emitCommaList(node); case 352 /* SyntaxKind.MergeDeclarationMarker */: case 353 /* SyntaxKind.EndOfDeclarationMarker */: return; case 354 /* SyntaxKind.SyntheticReferenceExpression */: return ts.Debug.fail("SyntheticReferenceExpression should not be printed"); } } if (ts.isKeyword(node.kind)) return writeTokenNode(node, writeKeyword); if (ts.isTokenKind(node.kind)) return writeTokenNode(node, writePunctuation); ts.Debug.fail("Unhandled SyntaxKind: ".concat(ts.Debug.formatSyntaxKind(node.kind), ".")); } function emitMappedTypeParameter(node) { emit(node.name); writeSpace(); writeKeyword("in"); writeSpace(); emit(node.constraint); } function pipelineEmitWithSubstitution(hint, node) { var pipelinePhase = getNextPipelinePhase(1 /* PipelinePhase.Substitution */, hint, node); ts.Debug.assertIsDefined(lastSubstitution); node = lastSubstitution; lastSubstitution = undefined; pipelinePhase(hint, node); } function getHelpersFromBundledSourceFiles(bundle) { var result; if (moduleKind === ts.ModuleKind.None || printerOptions.noEmitHelpers) { return undefined; } var bundledHelpers = new ts.Map(); for (var _a = 0, _b = bundle.sourceFiles; _a < _b.length; _a++) { var sourceFile = _b[_a]; var shouldSkip = ts.getExternalHelpersModuleName(sourceFile) !== undefined; var helpers = getSortedEmitHelpers(sourceFile); if (!helpers) continue; for (var _c = 0, helpers_5 = helpers; _c < helpers_5.length; _c++) { var helper = helpers_5[_c]; if (!helper.scoped && !shouldSkip && !bundledHelpers.get(helper.name)) { bundledHelpers.set(helper.name, true); (result || (result = [])).push(helper.name); } } } return result; } function emitHelpers(node) { var helpersEmitted = false; var bundle = node.kind === 306 /* SyntaxKind.Bundle */ ? node : undefined; if (bundle && moduleKind === ts.ModuleKind.None) { return; } var numPrepends = bundle ? bundle.prepends.length : 0; var numNodes = bundle ? bundle.sourceFiles.length + numPrepends : 1; for (var i = 0; i < numNodes; i++) { var currentNode = bundle ? i < numPrepends ? bundle.prepends[i] : bundle.sourceFiles[i - numPrepends] : node; var sourceFile = ts.isSourceFile(currentNode) ? currentNode : ts.isUnparsedSource(currentNode) ? undefined : currentSourceFile; var shouldSkip = printerOptions.noEmitHelpers || (!!sourceFile && ts.hasRecordedExternalHelpers(sourceFile)); var shouldBundle = (ts.isSourceFile(currentNode) || ts.isUnparsedSource(currentNode)) && !isOwnFileEmit; var helpers = ts.isUnparsedSource(currentNode) ? currentNode.helpers : getSortedEmitHelpers(currentNode); if (helpers) { for (var _a = 0, helpers_6 = helpers; _a < helpers_6.length; _a++) { var helper = helpers_6[_a]; if (!helper.scoped) { // Skip the helper if it can be skipped and the noEmitHelpers compiler // option is set, or if it can be imported and the importHelpers compiler // option is set. if (shouldSkip) continue; // Skip the helper if it can be bundled but hasn't already been emitted and we // are emitting a bundled module. if (shouldBundle) { if (bundledHelpers.get(helper.name)) { continue; } bundledHelpers.set(helper.name, true); } } else if (bundle) { // Skip the helper if it is scoped and we are emitting bundled helpers continue; } var pos = getTextPosWithWriteLine(); if (typeof helper.text === "string") { writeLines(helper.text); } else { writeLines(helper.text(makeFileLevelOptimisticUniqueName)); } if (bundleFileInfo) bundleFileInfo.sections.push({ pos: pos, end: writer.getTextPos(), kind: "emitHelpers" /* BundleFileSectionKind.EmitHelpers */, data: helper.name }); helpersEmitted = true; } } } return helpersEmitted; } function getSortedEmitHelpers(node) { var helpers = ts.getEmitHelpers(node); return helpers && ts.stableSort(helpers, ts.compareEmitHelpers); } // // Literals/Pseudo-literals // // SyntaxKind.NumericLiteral // SyntaxKind.BigIntLiteral function emitNumericOrBigIntLiteral(node) { emitLiteral(node, /*jsxAttributeEscape*/ false); } // SyntaxKind.StringLiteral // SyntaxKind.RegularExpressionLiteral // SyntaxKind.NoSubstitutionTemplateLiteral // SyntaxKind.TemplateHead // SyntaxKind.TemplateMiddle // SyntaxKind.TemplateTail function emitLiteral(node, jsxAttributeEscape) { var text = getLiteralTextOfNode(node, printerOptions.neverAsciiEscape, jsxAttributeEscape); if ((printerOptions.sourceMap || printerOptions.inlineSourceMap) && (node.kind === 10 /* SyntaxKind.StringLiteral */ || ts.isTemplateLiteralKind(node.kind))) { writeLiteral(text); } else { // Quick info expects all literals to be called with writeStringLiteral, as there's no specific type for numberLiterals writeStringLiteral(text); } } // SyntaxKind.UnparsedSource // SyntaxKind.UnparsedPrepend function emitUnparsedSourceOrPrepend(unparsed) { for (var _a = 0, _b = unparsed.texts; _a < _b.length; _a++) { var text = _b[_a]; writeLine(); emit(text); } } // SyntaxKind.UnparsedPrologue // SyntaxKind.UnparsedText // SyntaxKind.UnparsedInternal // SyntaxKind.UnparsedSyntheticReference function writeUnparsedNode(unparsed) { writer.rawWrite(unparsed.parent.text.substring(unparsed.pos, unparsed.end)); } // SyntaxKind.UnparsedText // SyntaxKind.UnparsedInternal function emitUnparsedTextLike(unparsed) { var pos = getTextPosWithWriteLine(); writeUnparsedNode(unparsed); if (bundleFileInfo) { updateOrPushBundleFileTextLike(pos, writer.getTextPos(), unparsed.kind === 302 /* SyntaxKind.UnparsedText */ ? "text" /* BundleFileSectionKind.Text */ : "internal" /* BundleFileSectionKind.Internal */); } } // SyntaxKind.UnparsedSyntheticReference function emitUnparsedSyntheticReference(unparsed) { var pos = getTextPosWithWriteLine(); writeUnparsedNode(unparsed); if (bundleFileInfo) { var section = ts.clone(unparsed.section); section.pos = pos; section.end = writer.getTextPos(); bundleFileInfo.sections.push(section); } } // // Snippet Elements // function emitSnippetNode(hint, node, snippet) { switch (snippet.kind) { case 1 /* SnippetKind.Placeholder */: emitPlaceholder(hint, node, snippet); break; case 0 /* SnippetKind.TabStop */: emitTabStop(hint, node, snippet); break; } } function emitPlaceholder(hint, node, snippet) { nonEscapingWrite("${".concat(snippet.order, ":")); // `${2:` pipelineEmitWithHintWorker(hint, node, /*allowSnippets*/ false); // `...` nonEscapingWrite("}"); // `}` // `${2:...}` } function emitTabStop(hint, node, snippet) { // A tab stop should only be attached to an empty node, i.e. a node that doesn't emit any text. ts.Debug.assert(node.kind === 236 /* SyntaxKind.EmptyStatement */, "A tab stop cannot be attached to a node of kind ".concat(ts.Debug.formatSyntaxKind(node.kind), ".")); ts.Debug.assert(hint !== 5 /* EmitHint.EmbeddedStatement */, "A tab stop cannot be attached to an embedded statement."); nonEscapingWrite("$".concat(snippet.order)); } // // Identifiers // function emitIdentifier(node) { var writeText = node.symbol ? writeSymbol : write; writeText(getTextOfNode(node, /*includeTrivia*/ false), node.symbol); emitList(node, node.typeArguments, 53776 /* ListFormat.TypeParameters */); // Call emitList directly since it could be an array of TypeParameterDeclarations _or_ type arguments } // // Names // function emitPrivateIdentifier(node) { var writeText = node.symbol ? writeSymbol : write; writeText(getTextOfNode(node, /*includeTrivia*/ false), node.symbol); } function emitQualifiedName(node) { emitEntityName(node.left); writePunctuation("."); emit(node.right); } function emitEntityName(node) { if (node.kind === 79 /* SyntaxKind.Identifier */) { emitExpression(node); } else { emit(node); } } function emitComputedPropertyName(node) { writePunctuation("["); emitExpression(node.expression, parenthesizer.parenthesizeExpressionOfComputedPropertyName); writePunctuation("]"); } // // Signature elements // function emitTypeParameter(node) { emitModifiers(node, node.modifiers); emit(node.name); if (node.constraint) { writeSpace(); writeKeyword("extends"); writeSpace(); emit(node.constraint); } if (node.default) { writeSpace(); writeOperator("="); writeSpace(); emit(node.default); } } function emitParameter(node) { emitDecorators(node, node.decorators); emitModifiers(node, node.modifiers); emit(node.dotDotDotToken); emitNodeWithWriter(node.name, writeParameter); emit(node.questionToken); if (node.parent && node.parent.kind === 317 /* SyntaxKind.JSDocFunctionType */ && !node.name) { emit(node.type); } else { emitTypeAnnotation(node.type); } // The comment position has to fallback to any present node within the parameterdeclaration because as it turns out, the parser can make parameter declarations with _just_ an initializer. emitInitializer(node.initializer, node.type ? node.type.end : node.questionToken ? node.questionToken.end : node.name ? node.name.end : node.modifiers ? node.modifiers.end : node.decorators ? node.decorators.end : node.pos, node, parenthesizer.parenthesizeExpressionForDisallowedComma); } function emitDecorator(decorator) { writePunctuation("@"); emitExpression(decorator.expression, parenthesizer.parenthesizeLeftSideOfAccess); } // // Type members // function emitPropertySignature(node) { emitDecorators(node, node.decorators); emitModifiers(node, node.modifiers); emitNodeWithWriter(node.name, writeProperty); emit(node.questionToken); emitTypeAnnotation(node.type); writeTrailingSemicolon(); } function emitPropertyDeclaration(node) { emitDecorators(node, node.decorators); emitModifiers(node, node.modifiers); emit(node.name); emit(node.questionToken); emit(node.exclamationToken); emitTypeAnnotation(node.type); emitInitializer(node.initializer, node.type ? node.type.end : node.questionToken ? node.questionToken.end : node.name.end, node); writeTrailingSemicolon(); } function emitMethodSignature(node) { pushNameGenerationScope(node); emitDecorators(node, node.decorators); emitModifiers(node, node.modifiers); emit(node.name); emit(node.questionToken); emitTypeParameters(node, node.typeParameters); emitParameters(node, node.parameters); emitTypeAnnotation(node.type); writeTrailingSemicolon(); popNameGenerationScope(node); } function emitMethodDeclaration(node) { emitDecorators(node, node.decorators); emitModifiers(node, node.modifiers); emit(node.asteriskToken); emit(node.name); emit(node.questionToken); emitSignatureAndBody(node, emitSignatureHead); } function emitClassStaticBlockDeclaration(node) { emitDecorators(node, node.decorators); emitModifiers(node, node.modifiers); writeKeyword("static"); emitBlockFunctionBody(node.body); } function emitConstructor(node) { emitModifiers(node, node.modifiers); writeKeyword("constructor"); emitSignatureAndBody(node, emitSignatureHead); } function emitAccessorDeclaration(node) { emitDecorators(node, node.decorators); emitModifiers(node, node.modifiers); writeKeyword(node.kind === 172 /* SyntaxKind.GetAccessor */ ? "get" : "set"); writeSpace(); emit(node.name); emitSignatureAndBody(node, emitSignatureHead); } function emitCallSignature(node) { pushNameGenerationScope(node); emitDecorators(node, node.decorators); emitModifiers(node, node.modifiers); emitTypeParameters(node, node.typeParameters); emitParameters(node, node.parameters); emitTypeAnnotation(node.type); writeTrailingSemicolon(); popNameGenerationScope(node); } function emitConstructSignature(node) { pushNameGenerationScope(node); emitDecorators(node, node.decorators); emitModifiers(node, node.modifiers); writeKeyword("new"); writeSpace(); emitTypeParameters(node, node.typeParameters); emitParameters(node, node.parameters); emitTypeAnnotation(node.type); writeTrailingSemicolon(); popNameGenerationScope(node); } function emitIndexSignature(node) { emitDecorators(node, node.decorators); emitModifiers(node, node.modifiers); emitParametersForIndexSignature(node, node.parameters); emitTypeAnnotation(node.type); writeTrailingSemicolon(); } function emitTemplateTypeSpan(node) { emit(node.type); emit(node.literal); } function emitSemicolonClassElement() { writeTrailingSemicolon(); } // // Types // function emitTypePredicate(node) { if (node.assertsModifier) { emit(node.assertsModifier); writeSpace(); } emit(node.parameterName); if (node.type) { writeSpace(); writeKeyword("is"); writeSpace(); emit(node.type); } } function emitTypeReference(node) { emit(node.typeName); emitTypeArguments(node, node.typeArguments); } function emitFunctionType(node) { pushNameGenerationScope(node); emitTypeParameters(node, node.typeParameters); emitParametersForArrow(node, node.parameters); writeSpace(); writePunctuation("=>"); writeSpace(); emit(node.type); popNameGenerationScope(node); } function emitJSDocFunctionType(node) { writeKeyword("function"); emitParameters(node, node.parameters); writePunctuation(":"); emit(node.type); } function emitJSDocNullableType(node) { writePunctuation("?"); emit(node.type); } function emitJSDocNonNullableType(node) { writePunctuation("!"); emit(node.type); } function emitJSDocOptionalType(node) { emit(node.type); writePunctuation("="); } function emitConstructorType(node) { pushNameGenerationScope(node); emitModifiers(node, node.modifiers); writeKeyword("new"); writeSpace(); emitTypeParameters(node, node.typeParameters); emitParameters(node, node.parameters); writeSpace(); writePunctuation("=>"); writeSpace(); emit(node.type); popNameGenerationScope(node); } function emitTypeQuery(node) { writeKeyword("typeof"); writeSpace(); emit(node.exprName); emitTypeArguments(node, node.typeArguments); } function emitTypeLiteral(node) { writePunctuation("{"); var flags = ts.getEmitFlags(node) & 1 /* EmitFlags.SingleLine */ ? 768 /* ListFormat.SingleLineTypeLiteralMembers */ : 32897 /* ListFormat.MultiLineTypeLiteralMembers */; emitList(node, node.members, flags | 524288 /* ListFormat.NoSpaceIfEmpty */); writePunctuation("}"); } function emitArrayType(node) { emit(node.elementType, parenthesizer.parenthesizeNonArrayTypeOfPostfixType); writePunctuation("["); writePunctuation("]"); } function emitRestOrJSDocVariadicType(node) { writePunctuation("..."); emit(node.type); } function emitTupleType(node) { emitTokenWithComment(22 /* SyntaxKind.OpenBracketToken */, node.pos, writePunctuation, node); var flags = ts.getEmitFlags(node) & 1 /* EmitFlags.SingleLine */ ? 528 /* ListFormat.SingleLineTupleTypeElements */ : 657 /* ListFormat.MultiLineTupleTypeElements */; emitList(node, node.elements, flags | 524288 /* ListFormat.NoSpaceIfEmpty */, parenthesizer.parenthesizeElementTypeOfTupleType); emitTokenWithComment(23 /* SyntaxKind.CloseBracketToken */, node.elements.end, writePunctuation, node); } function emitNamedTupleMember(node) { emit(node.dotDotDotToken); emit(node.name); emit(node.questionToken); emitTokenWithComment(58 /* SyntaxKind.ColonToken */, node.name.end, writePunctuation, node); writeSpace(); emit(node.type); } function emitOptionalType(node) { emit(node.type, parenthesizer.parenthesizeTypeOfOptionalType); writePunctuation("?"); } function emitUnionType(node) { emitList(node, node.types, 516 /* ListFormat.UnionTypeConstituents */, parenthesizer.parenthesizeConstituentTypeOfUnionType); } function emitIntersectionType(node) { emitList(node, node.types, 520 /* ListFormat.IntersectionTypeConstituents */, parenthesizer.parenthesizeConstituentTypeOfIntersectionType); } function emitConditionalType(node) { emit(node.checkType, parenthesizer.parenthesizeCheckTypeOfConditionalType); writeSpace(); writeKeyword("extends"); writeSpace(); emit(node.extendsType, parenthesizer.parenthesizeExtendsTypeOfConditionalType); writeSpace(); writePunctuation("?"); writeSpace(); emit(node.trueType); writeSpace(); writePunctuation(":"); writeSpace(); emit(node.falseType); } function emitInferType(node) { writeKeyword("infer"); writeSpace(); emit(node.typeParameter); } function emitParenthesizedType(node) { writePunctuation("("); emit(node.type); writePunctuation(")"); } function emitThisType() { writeKeyword("this"); } function emitTypeOperator(node) { writeTokenText(node.operator, writeKeyword); writeSpace(); var parenthesizerRule = node.operator === 145 /* SyntaxKind.ReadonlyKeyword */ ? parenthesizer.parenthesizeOperandOfReadonlyTypeOperator : parenthesizer.parenthesizeOperandOfTypeOperator; emit(node.type, parenthesizerRule); } function emitIndexedAccessType(node) { emit(node.objectType, parenthesizer.parenthesizeNonArrayTypeOfPostfixType); writePunctuation("["); emit(node.indexType); writePunctuation("]"); } function emitMappedType(node) { var emitFlags = ts.getEmitFlags(node); writePunctuation("{"); if (emitFlags & 1 /* EmitFlags.SingleLine */) { writeSpace(); } else { writeLine(); increaseIndent(); } if (node.readonlyToken) { emit(node.readonlyToken); if (node.readonlyToken.kind !== 145 /* SyntaxKind.ReadonlyKeyword */) { writeKeyword("readonly"); } writeSpace(); } writePunctuation("["); pipelineEmit(3 /* EmitHint.MappedTypeParameter */, node.typeParameter); if (node.nameType) { writeSpace(); writeKeyword("as"); writeSpace(); emit(node.nameType); } writePunctuation("]"); if (node.questionToken) { emit(node.questionToken); if (node.questionToken.kind !== 57 /* SyntaxKind.QuestionToken */) { writePunctuation("?"); } } writePunctuation(":"); writeSpace(); emit(node.type); writeTrailingSemicolon(); if (emitFlags & 1 /* EmitFlags.SingleLine */) { writeSpace(); } else { writeLine(); decreaseIndent(); } emitList(node, node.members, 2 /* ListFormat.PreserveLines */); writePunctuation("}"); } function emitLiteralType(node) { emitExpression(node.literal); } function emitTemplateType(node) { emit(node.head); emitList(node, node.templateSpans, 262144 /* ListFormat.TemplateExpressionSpans */); } function emitImportTypeNode(node) { if (node.isTypeOf) { writeKeyword("typeof"); writeSpace(); } writeKeyword("import"); writePunctuation("("); emit(node.argument); if (node.assertions) { writePunctuation(","); writeSpace(); writePunctuation("{"); writeSpace(); writeKeyword("assert"); writePunctuation(":"); writeSpace(); var elements = node.assertions.assertClause.elements; emitList(node.assertions.assertClause, elements, 526226 /* ListFormat.ImportClauseEntries */); writeSpace(); writePunctuation("}"); } writePunctuation(")"); if (node.qualifier) { writePunctuation("."); emit(node.qualifier); } emitTypeArguments(node, node.typeArguments); } // // Binding patterns // function emitObjectBindingPattern(node) { writePunctuation("{"); emitList(node, node.elements, 525136 /* ListFormat.ObjectBindingPatternElements */); writePunctuation("}"); } function emitArrayBindingPattern(node) { writePunctuation("["); emitList(node, node.elements, 524880 /* ListFormat.ArrayBindingPatternElements */); writePunctuation("]"); } function emitBindingElement(node) { emit(node.dotDotDotToken); if (node.propertyName) { emit(node.propertyName); writePunctuation(":"); writeSpace(); } emit(node.name); emitInitializer(node.initializer, node.name.end, node, parenthesizer.parenthesizeExpressionForDisallowedComma); } // // Expressions // function emitArrayLiteralExpression(node) { var elements = node.elements; var preferNewLine = node.multiLine ? 65536 /* ListFormat.PreferNewLine */ : 0 /* ListFormat.None */; emitExpressionList(node, elements, 8914 /* ListFormat.ArrayLiteralExpressionElements */ | preferNewLine, parenthesizer.parenthesizeExpressionForDisallowedComma); } function emitObjectLiteralExpression(node) { ts.forEach(node.properties, generateMemberNames); var indentedFlag = ts.getEmitFlags(node) & 65536 /* EmitFlags.Indented */; if (indentedFlag) { increaseIndent(); } var preferNewLine = node.multiLine ? 65536 /* ListFormat.PreferNewLine */ : 0 /* ListFormat.None */; var allowTrailingComma = currentSourceFile && currentSourceFile.languageVersion >= 1 /* ScriptTarget.ES5 */ && !ts.isJsonSourceFile(currentSourceFile) ? 64 /* ListFormat.AllowTrailingComma */ : 0 /* ListFormat.None */; emitList(node, node.properties, 526226 /* ListFormat.ObjectLiteralExpressionProperties */ | allowTrailingComma | preferNewLine); if (indentedFlag) { decreaseIndent(); } } function emitPropertyAccessExpression(node) { emitExpression(node.expression, parenthesizer.parenthesizeLeftSideOfAccess); var token = node.questionDotToken || ts.setTextRangePosEnd(ts.factory.createToken(24 /* SyntaxKind.DotToken */), node.expression.end, node.name.pos); var linesBeforeDot = getLinesBetweenNodes(node, node.expression, token); var linesAfterDot = getLinesBetweenNodes(node, token, node.name); writeLinesAndIndent(linesBeforeDot, /*writeSpaceIfNotIndenting*/ false); var shouldEmitDotDot = token.kind !== 28 /* SyntaxKind.QuestionDotToken */ && mayNeedDotDotForPropertyAccess(node.expression) && !writer.hasTrailingComment() && !writer.hasTrailingWhitespace(); if (shouldEmitDotDot) { writePunctuation("."); } if (node.questionDotToken) { emit(token); } else { emitTokenWithComment(token.kind, node.expression.end, writePunctuation, node); } writeLinesAndIndent(linesAfterDot, /*writeSpaceIfNotIndenting*/ false); emit(node.name); decreaseIndentIf(linesBeforeDot, linesAfterDot); } // 1..toString is a valid property access, emit a dot after the literal // Also emit a dot if expression is a integer const enum value - it will appear in generated code as numeric literal function mayNeedDotDotForPropertyAccess(expression) { expression = ts.skipPartiallyEmittedExpressions(expression); if (ts.isNumericLiteral(expression)) { // check if numeric literal is a decimal literal that was originally written with a dot var text = getLiteralTextOfNode(expression, /*neverAsciiEscape*/ true, /*jsxAttributeEscape*/ false); // If he number will be printed verbatim and it doesn't already contain a dot, add one // if the expression doesn't have any comments that will be emitted. return !expression.numericLiteralFlags && !ts.stringContains(text, ts.tokenToString(24 /* SyntaxKind.DotToken */)); } else if (ts.isAccessExpression(expression)) { // check if constant enum value is integer var constantValue = ts.getConstantValue(expression); // isFinite handles cases when constantValue is undefined return typeof constantValue === "number" && isFinite(constantValue) && Math.floor(constantValue) === constantValue; } } function emitElementAccessExpression(node) { emitExpression(node.expression, parenthesizer.parenthesizeLeftSideOfAccess); emit(node.questionDotToken); emitTokenWithComment(22 /* SyntaxKind.OpenBracketToken */, node.expression.end, writePunctuation, node); emitExpression(node.argumentExpression); emitTokenWithComment(23 /* SyntaxKind.CloseBracketToken */, node.argumentExpression.end, writePunctuation, node); } function emitCallExpression(node) { var indirectCall = ts.getEmitFlags(node) & 536870912 /* EmitFlags.IndirectCall */; if (indirectCall) { writePunctuation("("); writeLiteral("0"); writePunctuation(","); writeSpace(); } emitExpression(node.expression, parenthesizer.parenthesizeLeftSideOfAccess); if (indirectCall) { writePunctuation(")"); } emit(node.questionDotToken); emitTypeArguments(node, node.typeArguments); emitExpressionList(node, node.arguments, 2576 /* ListFormat.CallExpressionArguments */, parenthesizer.parenthesizeExpressionForDisallowedComma); } function emitNewExpression(node) { emitTokenWithComment(103 /* SyntaxKind.NewKeyword */, node.pos, writeKeyword, node); writeSpace(); emitExpression(node.expression, parenthesizer.parenthesizeExpressionOfNew); emitTypeArguments(node, node.typeArguments); emitExpressionList(node, node.arguments, 18960 /* ListFormat.NewExpressionArguments */, parenthesizer.parenthesizeExpressionForDisallowedComma); } function emitTaggedTemplateExpression(node) { var indirectCall = ts.getEmitFlags(node) & 536870912 /* EmitFlags.IndirectCall */; if (indirectCall) { writePunctuation("("); writeLiteral("0"); writePunctuation(","); writeSpace(); } emitExpression(node.tag, parenthesizer.parenthesizeLeftSideOfAccess); if (indirectCall) { writePunctuation(")"); } emitTypeArguments(node, node.typeArguments); writeSpace(); emitExpression(node.template); } function emitTypeAssertionExpression(node) { writePunctuation("<"); emit(node.type); writePunctuation(">"); emitExpression(node.expression, parenthesizer.parenthesizeOperandOfPrefixUnary); } function emitParenthesizedExpression(node) { var openParenPos = emitTokenWithComment(20 /* SyntaxKind.OpenParenToken */, node.pos, writePunctuation, node); var indented = writeLineSeparatorsAndIndentBefore(node.expression, node); emitExpression(node.expression, /*parenthesizerRules*/ undefined); writeLineSeparatorsAfter(node.expression, node); decreaseIndentIf(indented); emitTokenWithComment(21 /* SyntaxKind.CloseParenToken */, node.expression ? node.expression.end : openParenPos, writePunctuation, node); } function emitFunctionExpression(node) { generateNameIfNeeded(node.name); emitFunctionDeclarationOrExpression(node); } function emitArrowFunction(node) { emitDecorators(node, node.decorators); emitModifiers(node, node.modifiers); emitSignatureAndBody(node, emitArrowFunctionHead); } function emitArrowFunctionHead(node) { emitTypeParameters(node, node.typeParameters); emitParametersForArrow(node, node.parameters); emitTypeAnnotation(node.type); writeSpace(); emit(node.equalsGreaterThanToken); } function emitDeleteExpression(node) { emitTokenWithComment(89 /* SyntaxKind.DeleteKeyword */, node.pos, writeKeyword, node); writeSpace(); emitExpression(node.expression, parenthesizer.parenthesizeOperandOfPrefixUnary); } function emitTypeOfExpression(node) { emitTokenWithComment(112 /* SyntaxKind.TypeOfKeyword */, node.pos, writeKeyword, node); writeSpace(); emitExpression(node.expression, parenthesizer.parenthesizeOperandOfPrefixUnary); } function emitVoidExpression(node) { emitTokenWithComment(114 /* SyntaxKind.VoidKeyword */, node.pos, writeKeyword, node); writeSpace(); emitExpression(node.expression, parenthesizer.parenthesizeOperandOfPrefixUnary); } function emitAwaitExpression(node) { emitTokenWithComment(132 /* SyntaxKind.AwaitKeyword */, node.pos, writeKeyword, node); writeSpace(); emitExpression(node.expression, parenthesizer.parenthesizeOperandOfPrefixUnary); } function emitPrefixUnaryExpression(node) { writeTokenText(node.operator, writeOperator); if (shouldEmitWhitespaceBeforeOperand(node)) { writeSpace(); } emitExpression(node.operand, parenthesizer.parenthesizeOperandOfPrefixUnary); } function shouldEmitWhitespaceBeforeOperand(node) { // In some cases, we need to emit a space between the operator and the operand. One obvious case // is when the operator is an identifier, like delete or typeof. We also need to do this for plus // and minus expressions in certain cases. Specifically, consider the following two cases (parens // are just for clarity of exposition, and not part of the source code): // // (+(+1)) // (+(++1)) // // We need to emit a space in both cases. In the first case, the absence of a space will make // the resulting expression a prefix increment operation. And in the second, it will make the resulting // expression a prefix increment whose operand is a plus expression - (++(+x)) // The same is true of minus of course. var operand = node.operand; return operand.kind === 219 /* SyntaxKind.PrefixUnaryExpression */ && ((node.operator === 39 /* SyntaxKind.PlusToken */ && (operand.operator === 39 /* SyntaxKind.PlusToken */ || operand.operator === 45 /* SyntaxKind.PlusPlusToken */)) || (node.operator === 40 /* SyntaxKind.MinusToken */ && (operand.operator === 40 /* SyntaxKind.MinusToken */ || operand.operator === 46 /* SyntaxKind.MinusMinusToken */))); } function emitPostfixUnaryExpression(node) { emitExpression(node.operand, parenthesizer.parenthesizeOperandOfPostfixUnary); writeTokenText(node.operator, writeOperator); } function createEmitBinaryExpression() { return ts.createBinaryExpressionTrampoline(onEnter, onLeft, onOperator, onRight, onExit, /*foldState*/ undefined); function onEnter(node, state) { if (state) { state.stackIndex++; state.preserveSourceNewlinesStack[state.stackIndex] = preserveSourceNewlines; state.containerPosStack[state.stackIndex] = containerPos; state.containerEndStack[state.stackIndex] = containerEnd; state.declarationListContainerEndStack[state.stackIndex] = declarationListContainerEnd; var emitComments_1 = state.shouldEmitCommentsStack[state.stackIndex] = shouldEmitComments(node); var emitSourceMaps = state.shouldEmitSourceMapsStack[state.stackIndex] = shouldEmitSourceMaps(node); onBeforeEmitNode === null || onBeforeEmitNode === void 0 ? void 0 : onBeforeEmitNode(node); if (emitComments_1) emitCommentsBeforeNode(node); if (emitSourceMaps) emitSourceMapsBeforeNode(node); beforeEmitNode(node); } else { state = { stackIndex: 0, preserveSourceNewlinesStack: [undefined], containerPosStack: [-1], containerEndStack: [-1], declarationListContainerEndStack: [-1], shouldEmitCommentsStack: [false], shouldEmitSourceMapsStack: [false], }; } return state; } function onLeft(next, _workArea, parent) { return maybeEmitExpression(next, parent, "left"); } function onOperator(operatorToken, _state, node) { var isCommaOperator = operatorToken.kind !== 27 /* SyntaxKind.CommaToken */; var linesBeforeOperator = getLinesBetweenNodes(node, node.left, operatorToken); var linesAfterOperator = getLinesBetweenNodes(node, operatorToken, node.right); writeLinesAndIndent(linesBeforeOperator, isCommaOperator); emitLeadingCommentsOfPosition(operatorToken.pos); writeTokenNode(operatorToken, operatorToken.kind === 101 /* SyntaxKind.InKeyword */ ? writeKeyword : writeOperator); emitTrailingCommentsOfPosition(operatorToken.end, /*prefixSpace*/ true); // Binary operators should have a space before the comment starts writeLinesAndIndent(linesAfterOperator, /*writeSpaceIfNotIndenting*/ true); } function onRight(next, _workArea, parent) { return maybeEmitExpression(next, parent, "right"); } function onExit(node, state) { var linesBeforeOperator = getLinesBetweenNodes(node, node.left, node.operatorToken); var linesAfterOperator = getLinesBetweenNodes(node, node.operatorToken, node.right); decreaseIndentIf(linesBeforeOperator, linesAfterOperator); if (state.stackIndex > 0) { var savedPreserveSourceNewlines = state.preserveSourceNewlinesStack[state.stackIndex]; var savedContainerPos = state.containerPosStack[state.stackIndex]; var savedContainerEnd = state.containerEndStack[state.stackIndex]; var savedDeclarationListContainerEnd = state.declarationListContainerEndStack[state.stackIndex]; var shouldEmitComments_1 = state.shouldEmitCommentsStack[state.stackIndex]; var shouldEmitSourceMaps_1 = state.shouldEmitSourceMapsStack[state.stackIndex]; afterEmitNode(savedPreserveSourceNewlines); if (shouldEmitSourceMaps_1) emitSourceMapsAfterNode(node); if (shouldEmitComments_1) emitCommentsAfterNode(node, savedContainerPos, savedContainerEnd, savedDeclarationListContainerEnd); onAfterEmitNode === null || onAfterEmitNode === void 0 ? void 0 : onAfterEmitNode(node); state.stackIndex--; } } function maybeEmitExpression(next, parent, side) { var parenthesizerRule = side === "left" ? parenthesizer.getParenthesizeLeftSideOfBinaryForOperator(parent.operatorToken.kind) : parenthesizer.getParenthesizeRightSideOfBinaryForOperator(parent.operatorToken.kind); var pipelinePhase = getPipelinePhase(0 /* PipelinePhase.Notification */, 1 /* EmitHint.Expression */, next); if (pipelinePhase === pipelineEmitWithSubstitution) { ts.Debug.assertIsDefined(lastSubstitution); next = parenthesizerRule(ts.cast(lastSubstitution, ts.isExpression)); pipelinePhase = getNextPipelinePhase(1 /* PipelinePhase.Substitution */, 1 /* EmitHint.Expression */, next); lastSubstitution = undefined; } if (pipelinePhase === pipelineEmitWithComments || pipelinePhase === pipelineEmitWithSourceMaps || pipelinePhase === pipelineEmitWithHint) { if (ts.isBinaryExpression(next)) { return next; } } currentParenthesizerRule = parenthesizerRule; pipelinePhase(1 /* EmitHint.Expression */, next); } } function emitConditionalExpression(node) { var linesBeforeQuestion = getLinesBetweenNodes(node, node.condition, node.questionToken); var linesAfterQuestion = getLinesBetweenNodes(node, node.questionToken, node.whenTrue); var linesBeforeColon = getLinesBetweenNodes(node, node.whenTrue, node.colonToken); var linesAfterColon = getLinesBetweenNodes(node, node.colonToken, node.whenFalse); emitExpression(node.condition, parenthesizer.parenthesizeConditionOfConditionalExpression); writeLinesAndIndent(linesBeforeQuestion, /*writeSpaceIfNotIndenting*/ true); emit(node.questionToken); writeLinesAndIndent(linesAfterQuestion, /*writeSpaceIfNotIndenting*/ true); emitExpression(node.whenTrue, parenthesizer.parenthesizeBranchOfConditionalExpression); decreaseIndentIf(linesBeforeQuestion, linesAfterQuestion); writeLinesAndIndent(linesBeforeColon, /*writeSpaceIfNotIndenting*/ true); emit(node.colonToken); writeLinesAndIndent(linesAfterColon, /*writeSpaceIfNotIndenting*/ true); emitExpression(node.whenFalse, parenthesizer.parenthesizeBranchOfConditionalExpression); decreaseIndentIf(linesBeforeColon, linesAfterColon); } function emitTemplateExpression(node) { emit(node.head); emitList(node, node.templateSpans, 262144 /* ListFormat.TemplateExpressionSpans */); } function emitYieldExpression(node) { emitTokenWithComment(125 /* SyntaxKind.YieldKeyword */, node.pos, writeKeyword, node); emit(node.asteriskToken); emitExpressionWithLeadingSpace(node.expression && parenthesizeExpressionForNoAsi(node.expression), parenthesizeExpressionForNoAsiAndDisallowedComma); } function emitSpreadElement(node) { emitTokenWithComment(25 /* SyntaxKind.DotDotDotToken */, node.pos, writePunctuation, node); emitExpression(node.expression, parenthesizer.parenthesizeExpressionForDisallowedComma); } function emitClassExpression(node) { generateNameIfNeeded(node.name); emitClassDeclarationOrExpression(node); } function emitExpressionWithTypeArguments(node) { emitExpression(node.expression, parenthesizer.parenthesizeLeftSideOfAccess); emitTypeArguments(node, node.typeArguments); } function emitAsExpression(node) { emitExpression(node.expression, /*parenthesizerRules*/ undefined); if (node.type) { writeSpace(); writeKeyword("as"); writeSpace(); emit(node.type); } } function emitNonNullExpression(node) { emitExpression(node.expression, parenthesizer.parenthesizeLeftSideOfAccess); writeOperator("!"); } function emitMetaProperty(node) { writeToken(node.keywordToken, node.pos, writePunctuation); writePunctuation("."); emit(node.name); } // // Misc // function emitTemplateSpan(node) { emitExpression(node.expression); emit(node.literal); } // // Statements // function emitBlock(node) { emitBlockStatements(node, /*forceSingleLine*/ !node.multiLine && isEmptyBlock(node)); } function emitBlockStatements(node, forceSingleLine) { emitTokenWithComment(18 /* SyntaxKind.OpenBraceToken */, node.pos, writePunctuation, /*contextNode*/ node); var format = forceSingleLine || ts.getEmitFlags(node) & 1 /* EmitFlags.SingleLine */ ? 768 /* ListFormat.SingleLineBlockStatements */ : 129 /* ListFormat.MultiLineBlockStatements */; emitList(node, node.statements, format); emitTokenWithComment(19 /* SyntaxKind.CloseBraceToken */, node.statements.end, writePunctuation, /*contextNode*/ node, /*indentLeading*/ !!(format & 1 /* ListFormat.MultiLine */)); } function emitVariableStatement(node) { emitModifiers(node, node.modifiers); emit(node.declarationList); writeTrailingSemicolon(); } function emitEmptyStatement(isEmbeddedStatement) { // While most trailing semicolons are possibly insignificant, an embedded "empty" // statement is significant and cannot be elided by a trailing-semicolon-omitting writer. if (isEmbeddedStatement) { writePunctuation(";"); } else { writeTrailingSemicolon(); } } function emitExpressionStatement(node) { emitExpression(node.expression, parenthesizer.parenthesizeExpressionOfExpressionStatement); // Emit semicolon in non json files // or if json file that created synthesized expression(eg.define expression statement when --out and amd code generation) if (!currentSourceFile || !ts.isJsonSourceFile(currentSourceFile) || ts.nodeIsSynthesized(node.expression)) { writeTrailingSemicolon(); } } function emitIfStatement(node) { var openParenPos = emitTokenWithComment(99 /* SyntaxKind.IfKeyword */, node.pos, writeKeyword, node); writeSpace(); emitTokenWithComment(20 /* SyntaxKind.OpenParenToken */, openParenPos, writePunctuation, node); emitExpression(node.expression); emitTokenWithComment(21 /* SyntaxKind.CloseParenToken */, node.expression.end, writePunctuation, node); emitEmbeddedStatement(node, node.thenStatement); if (node.elseStatement) { writeLineOrSpace(node, node.thenStatement, node.elseStatement); emitTokenWithComment(91 /* SyntaxKind.ElseKeyword */, node.thenStatement.end, writeKeyword, node); if (node.elseStatement.kind === 239 /* SyntaxKind.IfStatement */) { writeSpace(); emit(node.elseStatement); } else { emitEmbeddedStatement(node, node.elseStatement); } } } function emitWhileClause(node, startPos) { var openParenPos = emitTokenWithComment(115 /* SyntaxKind.WhileKeyword */, startPos, writeKeyword, node); writeSpace(); emitTokenWithComment(20 /* SyntaxKind.OpenParenToken */, openParenPos, writePunctuation, node); emitExpression(node.expression); emitTokenWithComment(21 /* SyntaxKind.CloseParenToken */, node.expression.end, writePunctuation, node); } function emitDoStatement(node) { emitTokenWithComment(90 /* SyntaxKind.DoKeyword */, node.pos, writeKeyword, node); emitEmbeddedStatement(node, node.statement); if (ts.isBlock(node.statement) && !preserveSourceNewlines) { writeSpace(); } else { writeLineOrSpace(node, node.statement, node.expression); } emitWhileClause(node, node.statement.end); writeTrailingSemicolon(); } function emitWhileStatement(node) { emitWhileClause(node, node.pos); emitEmbeddedStatement(node, node.statement); } function emitForStatement(node) { var openParenPos = emitTokenWithComment(97 /* SyntaxKind.ForKeyword */, node.pos, writeKeyword, node); writeSpace(); var pos = emitTokenWithComment(20 /* SyntaxKind.OpenParenToken */, openParenPos, writePunctuation, /*contextNode*/ node); emitForBinding(node.initializer); pos = emitTokenWithComment(26 /* SyntaxKind.SemicolonToken */, node.initializer ? node.initializer.end : pos, writePunctuation, node); emitExpressionWithLeadingSpace(node.condition); pos = emitTokenWithComment(26 /* SyntaxKind.SemicolonToken */, node.condition ? node.condition.end : pos, writePunctuation, node); emitExpressionWithLeadingSpace(node.incrementor); emitTokenWithComment(21 /* SyntaxKind.CloseParenToken */, node.incrementor ? node.incrementor.end : pos, writePunctuation, node); emitEmbeddedStatement(node, node.statement); } function emitForInStatement(node) { var openParenPos = emitTokenWithComment(97 /* SyntaxKind.ForKeyword */, node.pos, writeKeyword, node); writeSpace(); emitTokenWithComment(20 /* SyntaxKind.OpenParenToken */, openParenPos, writePunctuation, node); emitForBinding(node.initializer); writeSpace(); emitTokenWithComment(101 /* SyntaxKind.InKeyword */, node.initializer.end, writeKeyword, node); writeSpace(); emitExpression(node.expression); emitTokenWithComment(21 /* SyntaxKind.CloseParenToken */, node.expression.end, writePunctuation, node); emitEmbeddedStatement(node, node.statement); } function emitForOfStatement(node) { var openParenPos = emitTokenWithComment(97 /* SyntaxKind.ForKeyword */, node.pos, writeKeyword, node); writeSpace(); emitWithTrailingSpace(node.awaitModifier); emitTokenWithComment(20 /* SyntaxKind.OpenParenToken */, openParenPos, writePunctuation, node); emitForBinding(node.initializer); writeSpace(); emitTokenWithComment(160 /* SyntaxKind.OfKeyword */, node.initializer.end, writeKeyword, node); writeSpace(); emitExpression(node.expression); emitTokenWithComment(21 /* SyntaxKind.CloseParenToken */, node.expression.end, writePunctuation, node); emitEmbeddedStatement(node, node.statement); } function emitForBinding(node) { if (node !== undefined) { if (node.kind === 255 /* SyntaxKind.VariableDeclarationList */) { emit(node); } else { emitExpression(node); } } } function emitContinueStatement(node) { emitTokenWithComment(86 /* SyntaxKind.ContinueKeyword */, node.pos, writeKeyword, node); emitWithLeadingSpace(node.label); writeTrailingSemicolon(); } function emitBreakStatement(node) { emitTokenWithComment(81 /* SyntaxKind.BreakKeyword */, node.pos, writeKeyword, node); emitWithLeadingSpace(node.label); writeTrailingSemicolon(); } function emitTokenWithComment(token, pos, writer, contextNode, indentLeading) { var node = ts.getParseTreeNode(contextNode); var isSimilarNode = node && node.kind === contextNode.kind; var startPos = pos; if (isSimilarNode && currentSourceFile) { pos = ts.skipTrivia(currentSourceFile.text, pos); } if (isSimilarNode && contextNode.pos !== startPos) { var needsIndent = indentLeading && currentSourceFile && !ts.positionsAreOnSameLine(startPos, pos, currentSourceFile); if (needsIndent) { increaseIndent(); } emitLeadingCommentsOfPosition(startPos); if (needsIndent) { decreaseIndent(); } } pos = writeTokenText(token, writer, pos); if (isSimilarNode && contextNode.end !== pos) { var isJsxExprContext = contextNode.kind === 288 /* SyntaxKind.JsxExpression */; emitTrailingCommentsOfPosition(pos, /*prefixSpace*/ !isJsxExprContext, /*forceNoNewline*/ isJsxExprContext); } return pos; } function commentWillEmitNewLine(node) { return node.kind === 2 /* SyntaxKind.SingleLineCommentTrivia */ || !!node.hasTrailingNewLine; } function willEmitLeadingNewLine(node) { if (!currentSourceFile) return false; if (ts.some(ts.getLeadingCommentRanges(currentSourceFile.text, node.pos), commentWillEmitNewLine)) return true; if (ts.some(ts.getSyntheticLeadingComments(node), commentWillEmitNewLine)) return true; if (ts.isPartiallyEmittedExpression(node)) { if (node.pos !== node.expression.pos) { if (ts.some(ts.getTrailingCommentRanges(currentSourceFile.text, node.expression.pos), commentWillEmitNewLine)) return true; } return willEmitLeadingNewLine(node.expression); } return false; } /** * Wraps an expression in parens if we would emit a leading comment that would introduce a line separator * between the node and its parent. */ function parenthesizeExpressionForNoAsi(node) { if (!commentsDisabled && ts.isPartiallyEmittedExpression(node) && willEmitLeadingNewLine(node)) { var parseNode = ts.getParseTreeNode(node); if (parseNode && ts.isParenthesizedExpression(parseNode)) { // If the original node was a parenthesized expression, restore it to preserve comment and source map emit var parens = ts.factory.createParenthesizedExpression(node.expression); ts.setOriginalNode(parens, node); ts.setTextRange(parens, parseNode); return parens; } return ts.factory.createParenthesizedExpression(node); } return node; } function parenthesizeExpressionForNoAsiAndDisallowedComma(node) { return parenthesizeExpressionForNoAsi(parenthesizer.parenthesizeExpressionForDisallowedComma(node)); } function emitReturnStatement(node) { emitTokenWithComment(105 /* SyntaxKind.ReturnKeyword */, node.pos, writeKeyword, /*contextNode*/ node); emitExpressionWithLeadingSpace(node.expression && parenthesizeExpressionForNoAsi(node.expression), parenthesizeExpressionForNoAsi); writeTrailingSemicolon(); } function emitWithStatement(node) { var openParenPos = emitTokenWithComment(116 /* SyntaxKind.WithKeyword */, node.pos, writeKeyword, node); writeSpace(); emitTokenWithComment(20 /* SyntaxKind.OpenParenToken */, openParenPos, writePunctuation, node); emitExpression(node.expression); emitTokenWithComment(21 /* SyntaxKind.CloseParenToken */, node.expression.end, writePunctuation, node); emitEmbeddedStatement(node, node.statement); } function emitSwitchStatement(node) { var openParenPos = emitTokenWithComment(107 /* SyntaxKind.SwitchKeyword */, node.pos, writeKeyword, node); writeSpace(); emitTokenWithComment(20 /* SyntaxKind.OpenParenToken */, openParenPos, writePunctuation, node); emitExpression(node.expression); emitTokenWithComment(21 /* SyntaxKind.CloseParenToken */, node.expression.end, writePunctuation, node); writeSpace(); emit(node.caseBlock); } function emitLabeledStatement(node) { emit(node.label); emitTokenWithComment(58 /* SyntaxKind.ColonToken */, node.label.end, writePunctuation, node); writeSpace(); emit(node.statement); } function emitThrowStatement(node) { emitTokenWithComment(109 /* SyntaxKind.ThrowKeyword */, node.pos, writeKeyword, node); emitExpressionWithLeadingSpace(parenthesizeExpressionForNoAsi(node.expression), parenthesizeExpressionForNoAsi); writeTrailingSemicolon(); } function emitTryStatement(node) { emitTokenWithComment(111 /* SyntaxKind.TryKeyword */, node.pos, writeKeyword, node); writeSpace(); emit(node.tryBlock); if (node.catchClause) { writeLineOrSpace(node, node.tryBlock, node.catchClause); emit(node.catchClause); } if (node.finallyBlock) { writeLineOrSpace(node, node.catchClause || node.tryBlock, node.finallyBlock); emitTokenWithComment(96 /* SyntaxKind.FinallyKeyword */, (node.catchClause || node.tryBlock).end, writeKeyword, node); writeSpace(); emit(node.finallyBlock); } } function emitDebuggerStatement(node) { writeToken(87 /* SyntaxKind.DebuggerKeyword */, node.pos, writeKeyword); writeTrailingSemicolon(); } // // Declarations // function emitVariableDeclaration(node) { var _a, _b, _c, _d, _e; emit(node.name); emit(node.exclamationToken); emitTypeAnnotation(node.type); emitInitializer(node.initializer, (_e = (_b = (_a = node.type) === null || _a === void 0 ? void 0 : _a.end) !== null && _b !== void 0 ? _b : (_d = (_c = node.name.emitNode) === null || _c === void 0 ? void 0 : _c.typeNode) === null || _d === void 0 ? void 0 : _d.end) !== null && _e !== void 0 ? _e : node.name.end, node, parenthesizer.parenthesizeExpressionForDisallowedComma); } function emitVariableDeclarationList(node) { writeKeyword(ts.isLet(node) ? "let" : ts.isVarConst(node) ? "const" : "var"); writeSpace(); emitList(node, node.declarations, 528 /* ListFormat.VariableDeclarationList */); } function emitFunctionDeclaration(node) { emitFunctionDeclarationOrExpression(node); } function emitFunctionDeclarationOrExpression(node) { emitDecorators(node, node.decorators); emitModifiers(node, node.modifiers); writeKeyword("function"); emit(node.asteriskToken); writeSpace(); emitIdentifierName(node.name); emitSignatureAndBody(node, emitSignatureHead); } function emitSignatureAndBody(node, emitSignatureHead) { var body = node.body; if (body) { if (ts.isBlock(body)) { var indentedFlag = ts.getEmitFlags(node) & 65536 /* EmitFlags.Indented */; if (indentedFlag) { increaseIndent(); } pushNameGenerationScope(node); ts.forEach(node.parameters, generateNames); generateNames(node.body); emitSignatureHead(node); emitBlockFunctionBody(body); popNameGenerationScope(node); if (indentedFlag) { decreaseIndent(); } } else { emitSignatureHead(node); writeSpace(); emitExpression(body, parenthesizer.parenthesizeConciseBodyOfArrowFunction); } } else { emitSignatureHead(node); writeTrailingSemicolon(); } } function emitSignatureHead(node) { emitTypeParameters(node, node.typeParameters); emitParameters(node, node.parameters); emitTypeAnnotation(node.type); } function shouldEmitBlockFunctionBodyOnSingleLine(body) { // We must emit a function body as a single-line body in the following case: // * The body has NodeEmitFlags.SingleLine specified. // We must emit a function body as a multi-line body in the following cases: // * The body is explicitly marked as multi-line. // * A non-synthesized body's start and end position are on different lines. // * Any statement in the body starts on a new line. if (ts.getEmitFlags(body) & 1 /* EmitFlags.SingleLine */) { return true; } if (body.multiLine) { return false; } if (!ts.nodeIsSynthesized(body) && currentSourceFile && !ts.rangeIsOnSingleLine(body, currentSourceFile)) { return false; } if (getLeadingLineTerminatorCount(body, body.statements, 2 /* ListFormat.PreserveLines */) || getClosingLineTerminatorCount(body, body.statements, 2 /* ListFormat.PreserveLines */)) { return false; } var previousStatement; for (var _a = 0, _b = body.statements; _a < _b.length; _a++) { var statement = _b[_a]; if (getSeparatingLineTerminatorCount(previousStatement, statement, 2 /* ListFormat.PreserveLines */) > 0) { return false; } previousStatement = statement; } return true; } function emitBlockFunctionBody(body) { onBeforeEmitNode === null || onBeforeEmitNode === void 0 ? void 0 : onBeforeEmitNode(body); writeSpace(); writePunctuation("{"); increaseIndent(); var emitBlockFunctionBody = shouldEmitBlockFunctionBodyOnSingleLine(body) ? emitBlockFunctionBodyOnSingleLine : emitBlockFunctionBodyWorker; emitBodyWithDetachedComments(body, body.statements, emitBlockFunctionBody); decreaseIndent(); writeToken(19 /* SyntaxKind.CloseBraceToken */, body.statements.end, writePunctuation, body); onAfterEmitNode === null || onAfterEmitNode === void 0 ? void 0 : onAfterEmitNode(body); } function emitBlockFunctionBodyOnSingleLine(body) { emitBlockFunctionBodyWorker(body, /*emitBlockFunctionBodyOnSingleLine*/ true); } function emitBlockFunctionBodyWorker(body, emitBlockFunctionBodyOnSingleLine) { // Emit all the prologue directives (like "use strict"). var statementOffset = emitPrologueDirectives(body.statements); var pos = writer.getTextPos(); emitHelpers(body); if (statementOffset === 0 && pos === writer.getTextPos() && emitBlockFunctionBodyOnSingleLine) { decreaseIndent(); emitList(body, body.statements, 768 /* ListFormat.SingleLineFunctionBodyStatements */); increaseIndent(); } else { emitList(body, body.statements, 1 /* ListFormat.MultiLineFunctionBodyStatements */, /*parenthesizerRule*/ undefined, statementOffset); } } function emitClassDeclaration(node) { emitClassDeclarationOrExpression(node); } function emitClassDeclarationOrExpression(node) { ts.forEach(node.members, generateMemberNames); emitDecorators(node, node.decorators); emitModifiers(node, node.modifiers); writeKeyword("class"); if (node.name) { writeSpace(); emitIdentifierName(node.name); } var indentedFlag = ts.getEmitFlags(node) & 65536 /* EmitFlags.Indented */; if (indentedFlag) { increaseIndent(); } emitTypeParameters(node, node.typeParameters); emitList(node, node.heritageClauses, 0 /* ListFormat.ClassHeritageClauses */); writeSpace(); writePunctuation("{"); emitList(node, node.members, 129 /* ListFormat.ClassMembers */); writePunctuation("}"); if (indentedFlag) { decreaseIndent(); } } function emitInterfaceDeclaration(node) { emitDecorators(node, node.decorators); emitModifiers(node, node.modifiers); writeKeyword("interface"); writeSpace(); emit(node.name); emitTypeParameters(node, node.typeParameters); emitList(node, node.heritageClauses, 512 /* ListFormat.HeritageClauses */); writeSpace(); writePunctuation("{"); emitList(node, node.members, 129 /* ListFormat.InterfaceMembers */); writePunctuation("}"); } function emitTypeAliasDeclaration(node) { emitDecorators(node, node.decorators); emitModifiers(node, node.modifiers); writeKeyword("type"); writeSpace(); emit(node.name); emitTypeParameters(node, node.typeParameters); writeSpace(); writePunctuation("="); writeSpace(); emit(node.type); writeTrailingSemicolon(); } function emitEnumDeclaration(node) { emitModifiers(node, node.modifiers); writeKeyword("enum"); writeSpace(); emit(node.name); writeSpace(); writePunctuation("{"); emitList(node, node.members, 145 /* ListFormat.EnumMembers */); writePunctuation("}"); } function emitModuleDeclaration(node) { emitModifiers(node, node.modifiers); if (~node.flags & 1024 /* NodeFlags.GlobalAugmentation */) { writeKeyword(node.flags & 16 /* NodeFlags.Namespace */ ? "namespace" : "module"); writeSpace(); } emit(node.name); var body = node.body; if (!body) return writeTrailingSemicolon(); while (body && ts.isModuleDeclaration(body)) { writePunctuation("."); emit(body.name); body = body.body; } writeSpace(); emit(body); } function emitModuleBlock(node) { pushNameGenerationScope(node); ts.forEach(node.statements, generateNames); emitBlockStatements(node, /*forceSingleLine*/ isEmptyBlock(node)); popNameGenerationScope(node); } function emitCaseBlock(node) { emitTokenWithComment(18 /* SyntaxKind.OpenBraceToken */, node.pos, writePunctuation, node); emitList(node, node.clauses, 129 /* ListFormat.CaseBlockClauses */); emitTokenWithComment(19 /* SyntaxKind.CloseBraceToken */, node.clauses.end, writePunctuation, node, /*indentLeading*/ true); } function emitImportEqualsDeclaration(node) { emitModifiers(node, node.modifiers); emitTokenWithComment(100 /* SyntaxKind.ImportKeyword */, node.modifiers ? node.modifiers.end : node.pos, writeKeyword, node); writeSpace(); if (node.isTypeOnly) { emitTokenWithComment(152 /* SyntaxKind.TypeKeyword */, node.pos, writeKeyword, node); writeSpace(); } emit(node.name); writeSpace(); emitTokenWithComment(63 /* SyntaxKind.EqualsToken */, node.name.end, writePunctuation, node); writeSpace(); emitModuleReference(node.moduleReference); writeTrailingSemicolon(); } function emitModuleReference(node) { if (node.kind === 79 /* SyntaxKind.Identifier */) { emitExpression(node); } else { emit(node); } } function emitImportDeclaration(node) { emitModifiers(node, node.modifiers); emitTokenWithComment(100 /* SyntaxKind.ImportKeyword */, node.modifiers ? node.modifiers.end : node.pos, writeKeyword, node); writeSpace(); if (node.importClause) { emit(node.importClause); writeSpace(); emitTokenWithComment(156 /* SyntaxKind.FromKeyword */, node.importClause.end, writeKeyword, node); writeSpace(); } emitExpression(node.moduleSpecifier); if (node.assertClause) { emitWithLeadingSpace(node.assertClause); } writeTrailingSemicolon(); } function emitImportClause(node) { if (node.isTypeOnly) { emitTokenWithComment(152 /* SyntaxKind.TypeKeyword */, node.pos, writeKeyword, node); writeSpace(); } emit(node.name); if (node.name && node.namedBindings) { emitTokenWithComment(27 /* SyntaxKind.CommaToken */, node.name.end, writePunctuation, node); writeSpace(); } emit(node.namedBindings); } function emitNamespaceImport(node) { var asPos = emitTokenWithComment(41 /* SyntaxKind.AsteriskToken */, node.pos, writePunctuation, node); writeSpace(); emitTokenWithComment(127 /* SyntaxKind.AsKeyword */, asPos, writeKeyword, node); writeSpace(); emit(node.name); } function emitNamedImports(node) { emitNamedImportsOrExports(node); } function emitImportSpecifier(node) { emitImportOrExportSpecifier(node); } function emitExportAssignment(node) { var nextPos = emitTokenWithComment(93 /* SyntaxKind.ExportKeyword */, node.pos, writeKeyword, node); writeSpace(); if (node.isExportEquals) { emitTokenWithComment(63 /* SyntaxKind.EqualsToken */, nextPos, writeOperator, node); } else { emitTokenWithComment(88 /* SyntaxKind.DefaultKeyword */, nextPos, writeKeyword, node); } writeSpace(); emitExpression(node.expression, node.isExportEquals ? parenthesizer.getParenthesizeRightSideOfBinaryForOperator(63 /* SyntaxKind.EqualsToken */) : parenthesizer.parenthesizeExpressionOfExportDefault); writeTrailingSemicolon(); } function emitExportDeclaration(node) { var nextPos = emitTokenWithComment(93 /* SyntaxKind.ExportKeyword */, node.pos, writeKeyword, node); writeSpace(); if (node.isTypeOnly) { nextPos = emitTokenWithComment(152 /* SyntaxKind.TypeKeyword */, nextPos, writeKeyword, node); writeSpace(); } if (node.exportClause) { emit(node.exportClause); } else { nextPos = emitTokenWithComment(41 /* SyntaxKind.AsteriskToken */, nextPos, writePunctuation, node); } if (node.moduleSpecifier) { writeSpace(); var fromPos = node.exportClause ? node.exportClause.end : nextPos; emitTokenWithComment(156 /* SyntaxKind.FromKeyword */, fromPos, writeKeyword, node); writeSpace(); emitExpression(node.moduleSpecifier); } if (node.assertClause) { emitWithLeadingSpace(node.assertClause); } writeTrailingSemicolon(); } function emitAssertClause(node) { emitTokenWithComment(129 /* SyntaxKind.AssertKeyword */, node.pos, writeKeyword, node); writeSpace(); var elements = node.elements; emitList(node, elements, 526226 /* ListFormat.ImportClauseEntries */); } function emitAssertEntry(node) { emit(node.name); writePunctuation(":"); writeSpace(); var value = node.value; /** @see {emitPropertyAssignment} */ if ((ts.getEmitFlags(value) & 512 /* EmitFlags.NoLeadingComments */) === 0) { var commentRange = ts.getCommentRange(value); emitTrailingCommentsOfPosition(commentRange.pos); } emit(value); } function emitNamespaceExportDeclaration(node) { var nextPos = emitTokenWithComment(93 /* SyntaxKind.ExportKeyword */, node.pos, writeKeyword, node); writeSpace(); nextPos = emitTokenWithComment(127 /* SyntaxKind.AsKeyword */, nextPos, writeKeyword, node); writeSpace(); nextPos = emitTokenWithComment(142 /* SyntaxKind.NamespaceKeyword */, nextPos, writeKeyword, node); writeSpace(); emit(node.name); writeTrailingSemicolon(); } function emitNamespaceExport(node) { var asPos = emitTokenWithComment(41 /* SyntaxKind.AsteriskToken */, node.pos, writePunctuation, node); writeSpace(); emitTokenWithComment(127 /* SyntaxKind.AsKeyword */, asPos, writeKeyword, node); writeSpace(); emit(node.name); } function emitNamedExports(node) { emitNamedImportsOrExports(node); } function emitExportSpecifier(node) { emitImportOrExportSpecifier(node); } function emitNamedImportsOrExports(node) { writePunctuation("{"); emitList(node, node.elements, 525136 /* ListFormat.NamedImportsOrExportsElements */); writePunctuation("}"); } function emitImportOrExportSpecifier(node) { if (node.isTypeOnly) { writeKeyword("type"); writeSpace(); } if (node.propertyName) { emit(node.propertyName); writeSpace(); emitTokenWithComment(127 /* SyntaxKind.AsKeyword */, node.propertyName.end, writeKeyword, node); writeSpace(); } emit(node.name); } // // Module references // function emitExternalModuleReference(node) { writeKeyword("require"); writePunctuation("("); emitExpression(node.expression); writePunctuation(")"); } // // JSX // function emitJsxElement(node) { emit(node.openingElement); emitList(node, node.children, 262144 /* ListFormat.JsxElementOrFragmentChildren */); emit(node.closingElement); } function emitJsxSelfClosingElement(node) { writePunctuation("<"); emitJsxTagName(node.tagName); emitTypeArguments(node, node.typeArguments); writeSpace(); emit(node.attributes); writePunctuation("/>"); } function emitJsxFragment(node) { emit(node.openingFragment); emitList(node, node.children, 262144 /* ListFormat.JsxElementOrFragmentChildren */); emit(node.closingFragment); } function emitJsxOpeningElementOrFragment(node) { writePunctuation("<"); if (ts.isJsxOpeningElement(node)) { var indented = writeLineSeparatorsAndIndentBefore(node.tagName, node); emitJsxTagName(node.tagName); emitTypeArguments(node, node.typeArguments); if (node.attributes.properties && node.attributes.properties.length > 0) { writeSpace(); } emit(node.attributes); writeLineSeparatorsAfter(node.attributes, node); decreaseIndentIf(indented); } writePunctuation(">"); } function emitJsxText(node) { writer.writeLiteral(node.text); } function emitJsxClosingElementOrFragment(node) { writePunctuation(""); } function emitJsxAttributes(node) { emitList(node, node.properties, 262656 /* ListFormat.JsxElementAttributes */); } function emitJsxAttribute(node) { emit(node.name); emitNodeWithPrefix("=", writePunctuation, node.initializer, emitJsxAttributeValue); } function emitJsxSpreadAttribute(node) { writePunctuation("{..."); emitExpression(node.expression); writePunctuation("}"); } function hasTrailingCommentsAtPosition(pos) { var result = false; ts.forEachTrailingCommentRange((currentSourceFile === null || currentSourceFile === void 0 ? void 0 : currentSourceFile.text) || "", pos + 1, function () { return result = true; }); return result; } function hasLeadingCommentsAtPosition(pos) { var result = false; ts.forEachLeadingCommentRange((currentSourceFile === null || currentSourceFile === void 0 ? void 0 : currentSourceFile.text) || "", pos + 1, function () { return result = true; }); return result; } function hasCommentsAtPosition(pos) { return hasTrailingCommentsAtPosition(pos) || hasLeadingCommentsAtPosition(pos); } function emitJsxExpression(node) { var _a; if (node.expression || (!commentsDisabled && !ts.nodeIsSynthesized(node) && hasCommentsAtPosition(node.pos))) { // preserve empty expressions if they contain comments! var isMultiline = currentSourceFile && !ts.nodeIsSynthesized(node) && ts.getLineAndCharacterOfPosition(currentSourceFile, node.pos).line !== ts.getLineAndCharacterOfPosition(currentSourceFile, node.end).line; if (isMultiline) { writer.increaseIndent(); } var end = emitTokenWithComment(18 /* SyntaxKind.OpenBraceToken */, node.pos, writePunctuation, node); emit(node.dotDotDotToken); emitExpression(node.expression); emitTokenWithComment(19 /* SyntaxKind.CloseBraceToken */, ((_a = node.expression) === null || _a === void 0 ? void 0 : _a.end) || end, writePunctuation, node); if (isMultiline) { writer.decreaseIndent(); } } } function emitJsxTagName(node) { if (node.kind === 79 /* SyntaxKind.Identifier */) { emitExpression(node); } else { emit(node); } } // // Clauses // function emitCaseClause(node) { emitTokenWithComment(82 /* SyntaxKind.CaseKeyword */, node.pos, writeKeyword, node); writeSpace(); emitExpression(node.expression, parenthesizer.parenthesizeExpressionForDisallowedComma); emitCaseOrDefaultClauseRest(node, node.statements, node.expression.end); } function emitDefaultClause(node) { var pos = emitTokenWithComment(88 /* SyntaxKind.DefaultKeyword */, node.pos, writeKeyword, node); emitCaseOrDefaultClauseRest(node, node.statements, pos); } function emitCaseOrDefaultClauseRest(parentNode, statements, colonPos) { var emitAsSingleStatement = statements.length === 1 && ( // treat synthesized nodes as located on the same line for emit purposes !currentSourceFile || ts.nodeIsSynthesized(parentNode) || ts.nodeIsSynthesized(statements[0]) || ts.rangeStartPositionsAreOnSameLine(parentNode, statements[0], currentSourceFile)); var format = 163969 /* ListFormat.CaseOrDefaultClauseStatements */; if (emitAsSingleStatement) { writeToken(58 /* SyntaxKind.ColonToken */, colonPos, writePunctuation, parentNode); writeSpace(); format &= ~(1 /* ListFormat.MultiLine */ | 128 /* ListFormat.Indented */); } else { emitTokenWithComment(58 /* SyntaxKind.ColonToken */, colonPos, writePunctuation, parentNode); } emitList(parentNode, statements, format); } function emitHeritageClause(node) { writeSpace(); writeTokenText(node.token, writeKeyword); writeSpace(); emitList(node, node.types, 528 /* ListFormat.HeritageClauseTypes */); } function emitCatchClause(node) { var openParenPos = emitTokenWithComment(83 /* SyntaxKind.CatchKeyword */, node.pos, writeKeyword, node); writeSpace(); if (node.variableDeclaration) { emitTokenWithComment(20 /* SyntaxKind.OpenParenToken */, openParenPos, writePunctuation, node); emit(node.variableDeclaration); emitTokenWithComment(21 /* SyntaxKind.CloseParenToken */, node.variableDeclaration.end, writePunctuation, node); writeSpace(); } emit(node.block); } // // Property assignments // function emitPropertyAssignment(node) { emit(node.name); writePunctuation(":"); writeSpace(); // This is to ensure that we emit comment in the following case: // For example: // obj = { // id: /*comment1*/ ()=>void // } // "comment1" is not considered to be leading comment for node.initializer // but rather a trailing comment on the previous node. var initializer = node.initializer; if ((ts.getEmitFlags(initializer) & 512 /* EmitFlags.NoLeadingComments */) === 0) { var commentRange = ts.getCommentRange(initializer); emitTrailingCommentsOfPosition(commentRange.pos); } emitExpression(initializer, parenthesizer.parenthesizeExpressionForDisallowedComma); } function emitShorthandPropertyAssignment(node) { emit(node.name); if (node.objectAssignmentInitializer) { writeSpace(); writePunctuation("="); writeSpace(); emitExpression(node.objectAssignmentInitializer, parenthesizer.parenthesizeExpressionForDisallowedComma); } } function emitSpreadAssignment(node) { if (node.expression) { emitTokenWithComment(25 /* SyntaxKind.DotDotDotToken */, node.pos, writePunctuation, node); emitExpression(node.expression, parenthesizer.parenthesizeExpressionForDisallowedComma); } } // // Enum // function emitEnumMember(node) { emit(node.name); emitInitializer(node.initializer, node.name.end, node, parenthesizer.parenthesizeExpressionForDisallowedComma); } // // JSDoc // function emitJSDoc(node) { write("/**"); if (node.comment) { var text = ts.getTextOfJSDocComment(node.comment); if (text) { var lines = text.split(/\r\n?|\n/g); for (var _a = 0, lines_2 = lines; _a < lines_2.length; _a++) { var line = lines_2[_a]; writeLine(); writeSpace(); writePunctuation("*"); writeSpace(); write(line); } } } if (node.tags) { if (node.tags.length === 1 && node.tags[0].kind === 343 /* SyntaxKind.JSDocTypeTag */ && !node.comment) { writeSpace(); emit(node.tags[0]); } else { emitList(node, node.tags, 33 /* ListFormat.JSDocComment */); } } writeSpace(); write("*/"); } function emitJSDocSimpleTypedTag(tag) { emitJSDocTagName(tag.tagName); emitJSDocTypeExpression(tag.typeExpression); emitJSDocComment(tag.comment); } function emitJSDocSeeTag(tag) { emitJSDocTagName(tag.tagName); emit(tag.name); emitJSDocComment(tag.comment); } function emitJSDocNameReference(node) { writeSpace(); writePunctuation("{"); emit(node.name); writePunctuation("}"); } function emitJSDocHeritageTag(tag) { emitJSDocTagName(tag.tagName); writeSpace(); writePunctuation("{"); emit(tag.class); writePunctuation("}"); emitJSDocComment(tag.comment); } function emitJSDocTemplateTag(tag) { emitJSDocTagName(tag.tagName); emitJSDocTypeExpression(tag.constraint); writeSpace(); emitList(tag, tag.typeParameters, 528 /* ListFormat.CommaListElements */); emitJSDocComment(tag.comment); } function emitJSDocTypedefTag(tag) { emitJSDocTagName(tag.tagName); if (tag.typeExpression) { if (tag.typeExpression.kind === 309 /* SyntaxKind.JSDocTypeExpression */) { emitJSDocTypeExpression(tag.typeExpression); } else { writeSpace(); writePunctuation("{"); write("Object"); if (tag.typeExpression.isArrayType) { writePunctuation("["); writePunctuation("]"); } writePunctuation("}"); } } if (tag.fullName) { writeSpace(); emit(tag.fullName); } emitJSDocComment(tag.comment); if (tag.typeExpression && tag.typeExpression.kind === 322 /* SyntaxKind.JSDocTypeLiteral */) { emitJSDocTypeLiteral(tag.typeExpression); } } function emitJSDocCallbackTag(tag) { emitJSDocTagName(tag.tagName); if (tag.name) { writeSpace(); emit(tag.name); } emitJSDocComment(tag.comment); emitJSDocSignature(tag.typeExpression); } function emitJSDocSimpleTag(tag) { emitJSDocTagName(tag.tagName); emitJSDocComment(tag.comment); } function emitJSDocTypeLiteral(lit) { emitList(lit, ts.factory.createNodeArray(lit.jsDocPropertyTags), 33 /* ListFormat.JSDocComment */); } function emitJSDocSignature(sig) { if (sig.typeParameters) { emitList(sig, ts.factory.createNodeArray(sig.typeParameters), 33 /* ListFormat.JSDocComment */); } if (sig.parameters) { emitList(sig, ts.factory.createNodeArray(sig.parameters), 33 /* ListFormat.JSDocComment */); } if (sig.type) { writeLine(); writeSpace(); writePunctuation("*"); writeSpace(); emit(sig.type); } } function emitJSDocPropertyLikeTag(param) { emitJSDocTagName(param.tagName); emitJSDocTypeExpression(param.typeExpression); writeSpace(); if (param.isBracketed) { writePunctuation("["); } emit(param.name); if (param.isBracketed) { writePunctuation("]"); } emitJSDocComment(param.comment); } function emitJSDocTagName(tagName) { writePunctuation("@"); emit(tagName); } function emitJSDocComment(comment) { var text = ts.getTextOfJSDocComment(comment); if (text) { writeSpace(); write(text); } } function emitJSDocTypeExpression(typeExpression) { if (typeExpression) { writeSpace(); writePunctuation("{"); emit(typeExpression.type); writePunctuation("}"); } } // // Top-level nodes // function emitSourceFile(node) { writeLine(); var statements = node.statements; // Emit detached comment if there are no prologue directives or if the first node is synthesized. // The synthesized node will have no leading comment so some comments may be missed. var shouldEmitDetachedComment = statements.length === 0 || !ts.isPrologueDirective(statements[0]) || ts.nodeIsSynthesized(statements[0]); if (shouldEmitDetachedComment) { emitBodyWithDetachedComments(node, statements, emitSourceFileWorker); return; } emitSourceFileWorker(node); } function emitSyntheticTripleSlashReferencesIfNeeded(node) { emitTripleSlashDirectives(!!node.hasNoDefaultLib, node.syntheticFileReferences || [], node.syntheticTypeReferences || [], node.syntheticLibReferences || []); for (var _a = 0, _b = node.prepends; _a < _b.length; _a++) { var prepend = _b[_a]; if (ts.isUnparsedSource(prepend) && prepend.syntheticReferences) { for (var _c = 0, _d = prepend.syntheticReferences; _c < _d.length; _c++) { var ref = _d[_c]; emit(ref); writeLine(); } } } } function emitTripleSlashDirectivesIfNeeded(node) { if (node.isDeclarationFile) emitTripleSlashDirectives(node.hasNoDefaultLib, node.referencedFiles, node.typeReferenceDirectives, node.libReferenceDirectives); } function emitTripleSlashDirectives(hasNoDefaultLib, files, types, libs) { if (hasNoDefaultLib) { var pos = writer.getTextPos(); writeComment("/// "); if (bundleFileInfo) bundleFileInfo.sections.push({ pos: pos, end: writer.getTextPos(), kind: "no-default-lib" /* BundleFileSectionKind.NoDefaultLib */ }); writeLine(); } if (currentSourceFile && currentSourceFile.moduleName) { writeComment("/// ")); writeLine(); } if (currentSourceFile && currentSourceFile.amdDependencies) { for (var _a = 0, _b = currentSourceFile.amdDependencies; _a < _b.length; _a++) { var dep = _b[_a]; if (dep.name) { writeComment("/// ")); } else { writeComment("/// ")); } writeLine(); } } for (var _c = 0, files_2 = files; _c < files_2.length; _c++) { var directive = files_2[_c]; var pos = writer.getTextPos(); writeComment("/// ")); if (bundleFileInfo) bundleFileInfo.sections.push({ pos: pos, end: writer.getTextPos(), kind: "reference" /* BundleFileSectionKind.Reference */, data: directive.fileName }); writeLine(); } for (var _d = 0, types_24 = types; _d < types_24.length; _d++) { var directive = types_24[_d]; var pos = writer.getTextPos(); var resolutionMode = directive.resolutionMode && directive.resolutionMode !== (currentSourceFile === null || currentSourceFile === void 0 ? void 0 : currentSourceFile.impliedNodeFormat) ? "resolution-mode=\"".concat(directive.resolutionMode === ts.ModuleKind.ESNext ? "import" : "require", "\"") : ""; writeComment("/// ")); if (bundleFileInfo) bundleFileInfo.sections.push({ pos: pos, end: writer.getTextPos(), kind: !directive.resolutionMode ? "type" /* BundleFileSectionKind.Type */ : directive.resolutionMode === ts.ModuleKind.ESNext ? "type-import" /* BundleFileSectionKind.TypeResolutionModeImport */ : "type-require" /* BundleFileSectionKind.TypeResolutionModeRequire */, data: directive.fileName }); writeLine(); } for (var _e = 0, libs_1 = libs; _e < libs_1.length; _e++) { var directive = libs_1[_e]; var pos = writer.getTextPos(); writeComment("/// ")); if (bundleFileInfo) bundleFileInfo.sections.push({ pos: pos, end: writer.getTextPos(), kind: "lib" /* BundleFileSectionKind.Lib */, data: directive.fileName }); writeLine(); } } function emitSourceFileWorker(node) { var statements = node.statements; pushNameGenerationScope(node); ts.forEach(node.statements, generateNames); emitHelpers(node); var index = ts.findIndex(statements, function (statement) { return !ts.isPrologueDirective(statement); }); emitTripleSlashDirectivesIfNeeded(node); emitList(node, statements, 1 /* ListFormat.MultiLine */, /*parenthesizerRule*/ undefined, index === -1 ? statements.length : index); popNameGenerationScope(node); } // Transformation nodes function emitPartiallyEmittedExpression(node) { var emitFlags = ts.getEmitFlags(node); if (!(emitFlags & 512 /* EmitFlags.NoLeadingComments */) && node.pos !== node.expression.pos) { emitTrailingCommentsOfPosition(node.expression.pos); } emitExpression(node.expression); if (!(emitFlags & 1024 /* EmitFlags.NoTrailingComments */) && node.end !== node.expression.end) { emitLeadingCommentsOfPosition(node.expression.end); } } function emitCommaList(node) { emitExpressionList(node, node.elements, 528 /* ListFormat.CommaListElements */, /*parenthesizerRule*/ undefined); } /** * Emits any prologue directives at the start of a Statement list, returning the * number of prologue directives written to the output. */ function emitPrologueDirectives(statements, sourceFile, seenPrologueDirectives, recordBundleFileSection) { var needsToSetSourceFile = !!sourceFile; for (var i = 0; i < statements.length; i++) { var statement = statements[i]; if (ts.isPrologueDirective(statement)) { var shouldEmitPrologueDirective = seenPrologueDirectives ? !seenPrologueDirectives.has(statement.expression.text) : true; if (shouldEmitPrologueDirective) { if (needsToSetSourceFile) { needsToSetSourceFile = false; setSourceFile(sourceFile); } writeLine(); var pos = writer.getTextPos(); emit(statement); if (recordBundleFileSection && bundleFileInfo) bundleFileInfo.sections.push({ pos: pos, end: writer.getTextPos(), kind: "prologue" /* BundleFileSectionKind.Prologue */, data: statement.expression.text }); if (seenPrologueDirectives) { seenPrologueDirectives.add(statement.expression.text); } } } else { // return index of the first non prologue directive return i; } } return statements.length; } function emitUnparsedPrologues(prologues, seenPrologueDirectives) { for (var _a = 0, prologues_1 = prologues; _a < prologues_1.length; _a++) { var prologue = prologues_1[_a]; if (!seenPrologueDirectives.has(prologue.data)) { writeLine(); var pos = writer.getTextPos(); emit(prologue); if (bundleFileInfo) bundleFileInfo.sections.push({ pos: pos, end: writer.getTextPos(), kind: "prologue" /* BundleFileSectionKind.Prologue */, data: prologue.data }); if (seenPrologueDirectives) { seenPrologueDirectives.add(prologue.data); } } } } function emitPrologueDirectivesIfNeeded(sourceFileOrBundle) { if (ts.isSourceFile(sourceFileOrBundle)) { emitPrologueDirectives(sourceFileOrBundle.statements, sourceFileOrBundle); } else { var seenPrologueDirectives = new ts.Set(); for (var _a = 0, _b = sourceFileOrBundle.prepends; _a < _b.length; _a++) { var prepend = _b[_a]; emitUnparsedPrologues(prepend.prologues, seenPrologueDirectives); } for (var _c = 0, _d = sourceFileOrBundle.sourceFiles; _c < _d.length; _c++) { var sourceFile = _d[_c]; emitPrologueDirectives(sourceFile.statements, sourceFile, seenPrologueDirectives, /*recordBundleFileSection*/ true); } setSourceFile(undefined); } } function getPrologueDirectivesFromBundledSourceFiles(bundle) { var seenPrologueDirectives = new ts.Set(); var prologues; for (var index = 0; index < bundle.sourceFiles.length; index++) { var sourceFile = bundle.sourceFiles[index]; var directives = void 0; var end = 0; for (var _a = 0, _b = sourceFile.statements; _a < _b.length; _a++) { var statement = _b[_a]; if (!ts.isPrologueDirective(statement)) break; if (seenPrologueDirectives.has(statement.expression.text)) continue; seenPrologueDirectives.add(statement.expression.text); (directives || (directives = [])).push({ pos: statement.pos, end: statement.end, expression: { pos: statement.expression.pos, end: statement.expression.end, text: statement.expression.text } }); end = end < statement.end ? statement.end : end; } if (directives) (prologues || (prologues = [])).push({ file: index, text: sourceFile.text.substring(0, end), directives: directives }); } return prologues; } function emitShebangIfNeeded(sourceFileOrBundle) { if (ts.isSourceFile(sourceFileOrBundle) || ts.isUnparsedSource(sourceFileOrBundle)) { var shebang = ts.getShebang(sourceFileOrBundle.text); if (shebang) { writeComment(shebang); writeLine(); return true; } } else { for (var _a = 0, _b = sourceFileOrBundle.prepends; _a < _b.length; _a++) { var prepend = _b[_a]; ts.Debug.assertNode(prepend, ts.isUnparsedSource); if (emitShebangIfNeeded(prepend)) { return true; } } for (var _c = 0, _d = sourceFileOrBundle.sourceFiles; _c < _d.length; _c++) { var sourceFile = _d[_c]; // Emit only the first encountered shebang if (emitShebangIfNeeded(sourceFile)) { return true; } } } } // // Helpers // function emitNodeWithWriter(node, writer) { if (!node) return; var savedWrite = write; write = writer; emit(node); write = savedWrite; } function emitModifiers(node, modifiers) { if (modifiers && modifiers.length) { emitList(node, modifiers, 262656 /* ListFormat.Modifiers */); writeSpace(); } } function emitTypeAnnotation(node) { if (node) { writePunctuation(":"); writeSpace(); emit(node); } } function emitInitializer(node, equalCommentStartPos, container, parenthesizerRule) { if (node) { writeSpace(); emitTokenWithComment(63 /* SyntaxKind.EqualsToken */, equalCommentStartPos, writeOperator, container); writeSpace(); emitExpression(node, parenthesizerRule); } } function emitNodeWithPrefix(prefix, prefixWriter, node, emit) { if (node) { prefixWriter(prefix); emit(node); } } function emitWithLeadingSpace(node) { if (node) { writeSpace(); emit(node); } } function emitExpressionWithLeadingSpace(node, parenthesizerRule) { if (node) { writeSpace(); emitExpression(node, parenthesizerRule); } } function emitWithTrailingSpace(node) { if (node) { emit(node); writeSpace(); } } function emitEmbeddedStatement(parent, node) { if (ts.isBlock(node) || ts.getEmitFlags(parent) & 1 /* EmitFlags.SingleLine */) { writeSpace(); emit(node); } else { writeLine(); increaseIndent(); if (ts.isEmptyStatement(node)) { pipelineEmit(5 /* EmitHint.EmbeddedStatement */, node); } else { emit(node); } decreaseIndent(); } } function emitDecorators(parentNode, decorators) { emitList(parentNode, decorators, 2146305 /* ListFormat.Decorators */); } function emitTypeArguments(parentNode, typeArguments) { emitList(parentNode, typeArguments, 53776 /* ListFormat.TypeArguments */, typeArgumentParenthesizerRuleSelector); } function emitTypeParameters(parentNode, typeParameters) { if (ts.isFunctionLike(parentNode) && parentNode.typeArguments) { // Quick info uses type arguments in place of type parameters on instantiated signatures return emitTypeArguments(parentNode, parentNode.typeArguments); } emitList(parentNode, typeParameters, 53776 /* ListFormat.TypeParameters */); } function emitParameters(parentNode, parameters) { emitList(parentNode, parameters, 2576 /* ListFormat.Parameters */); } function canEmitSimpleArrowHead(parentNode, parameters) { var parameter = ts.singleOrUndefined(parameters); return parameter && parameter.pos === parentNode.pos // may not have parsed tokens between parent and parameter && ts.isArrowFunction(parentNode) // only arrow functions may have simple arrow head && !parentNode.type // arrow function may not have return type annotation && !ts.some(parentNode.decorators) // parent may not have decorators && !ts.some(parentNode.modifiers) // parent may not have modifiers && !ts.some(parentNode.typeParameters) // parent may not have type parameters && !ts.some(parameter.decorators) // parameter may not have decorators && !ts.some(parameter.modifiers) // parameter may not have modifiers && !parameter.dotDotDotToken // parameter may not be rest && !parameter.questionToken // parameter may not be optional && !parameter.type // parameter may not have a type annotation && !parameter.initializer // parameter may not have an initializer && ts.isIdentifier(parameter.name); // parameter name must be identifier } function emitParametersForArrow(parentNode, parameters) { if (canEmitSimpleArrowHead(parentNode, parameters)) { emitList(parentNode, parameters, 2576 /* ListFormat.Parameters */ & ~2048 /* ListFormat.Parenthesis */); } else { emitParameters(parentNode, parameters); } } function emitParametersForIndexSignature(parentNode, parameters) { emitList(parentNode, parameters, 8848 /* ListFormat.IndexSignatureParameters */); } function writeDelimiter(format) { switch (format & 60 /* ListFormat.DelimitersMask */) { case 0 /* ListFormat.None */: break; case 16 /* ListFormat.CommaDelimited */: writePunctuation(","); break; case 4 /* ListFormat.BarDelimited */: writeSpace(); writePunctuation("|"); break; case 32 /* ListFormat.AsteriskDelimited */: writeSpace(); writePunctuation("*"); writeSpace(); break; case 8 /* ListFormat.AmpersandDelimited */: writeSpace(); writePunctuation("&"); break; } } function emitList(parentNode, children, format, parenthesizerRule, start, count) { emitNodeList(emit, parentNode, children, format, parenthesizerRule, start, count); } function emitExpressionList(parentNode, children, format, parenthesizerRule, start, count) { emitNodeList(emitExpression, parentNode, children, format, parenthesizerRule, start, count); } function emitNodeList(emit, parentNode, children, format, parenthesizerRule, start, count) { if (start === void 0) { start = 0; } if (count === void 0) { count = children ? children.length - start : 0; } var isUndefined = children === undefined; if (isUndefined && format & 16384 /* ListFormat.OptionalIfUndefined */) { return; } var isEmpty = children === undefined || start >= children.length || count === 0; if (isEmpty && format & 32768 /* ListFormat.OptionalIfEmpty */) { if (onBeforeEmitNodeArray) { onBeforeEmitNodeArray(children); } if (onAfterEmitNodeArray) { onAfterEmitNodeArray(children); } return; } if (format & 15360 /* ListFormat.BracketsMask */) { writePunctuation(getOpeningBracket(format)); if (isEmpty && children) { emitTrailingCommentsOfPosition(children.pos, /*prefixSpace*/ true); // Emit comments within empty bracketed lists } } if (onBeforeEmitNodeArray) { onBeforeEmitNodeArray(children); } if (isEmpty) { // Write a line terminator if the parent node was multi-line if (format & 1 /* ListFormat.MultiLine */ && !(preserveSourceNewlines && (!parentNode || currentSourceFile && ts.rangeIsOnSingleLine(parentNode, currentSourceFile)))) { writeLine(); } else if (format & 256 /* ListFormat.SpaceBetweenBraces */ && !(format & 524288 /* ListFormat.NoSpaceIfEmpty */)) { writeSpace(); } } else { ts.Debug.type(children); // Write the opening line terminator or leading whitespace. var mayEmitInterveningComments = (format & 262144 /* ListFormat.NoInterveningComments */) === 0; var shouldEmitInterveningComments = mayEmitInterveningComments; var leadingLineTerminatorCount = getLeadingLineTerminatorCount(parentNode, children, format); // TODO: GH#18217 if (leadingLineTerminatorCount) { writeLine(leadingLineTerminatorCount); shouldEmitInterveningComments = false; } else if (format & 256 /* ListFormat.SpaceBetweenBraces */) { writeSpace(); } // Increase the indent, if requested. if (format & 128 /* ListFormat.Indented */) { increaseIndent(); } var emitListItem = getEmitListItem(emit, parenthesizerRule); // Emit each child. var previousSibling = void 0; var previousSourceFileTextKind = void 0; var shouldDecreaseIndentAfterEmit = false; for (var i = 0; i < count; i++) { var child = children[start + i]; // Write the delimiter if this is not the first node. if (format & 32 /* ListFormat.AsteriskDelimited */) { // always write JSDoc in the format "\n *" writeLine(); writeDelimiter(format); } else if (previousSibling) { // i.e // function commentedParameters( // /* Parameter a */ // a // /* End of parameter a */ -> this comment isn't considered to be trailing comment of parameter "a" due to newline // , if (format & 60 /* ListFormat.DelimitersMask */ && previousSibling.end !== (parentNode ? parentNode.end : -1)) { emitLeadingCommentsOfPosition(previousSibling.end); } writeDelimiter(format); recordBundleFileInternalSectionEnd(previousSourceFileTextKind); // Write either a line terminator or whitespace to separate the elements. var separatingLineTerminatorCount = getSeparatingLineTerminatorCount(previousSibling, child, format); if (separatingLineTerminatorCount > 0) { // If a synthesized node in a single-line list starts on a new // line, we should increase the indent. if ((format & (3 /* ListFormat.LinesMask */ | 128 /* ListFormat.Indented */)) === 0 /* ListFormat.SingleLine */) { increaseIndent(); shouldDecreaseIndentAfterEmit = true; } writeLine(separatingLineTerminatorCount); shouldEmitInterveningComments = false; } else if (previousSibling && format & 512 /* ListFormat.SpaceBetweenSiblings */) { writeSpace(); } } // Emit this child. previousSourceFileTextKind = recordBundleFileInternalSectionStart(child); if (shouldEmitInterveningComments) { var commentRange = ts.getCommentRange(child); emitTrailingCommentsOfPosition(commentRange.pos); } else { shouldEmitInterveningComments = mayEmitInterveningComments; } nextListElementPos = child.pos; emitListItem(child, emit, parenthesizerRule, i); if (shouldDecreaseIndentAfterEmit) { decreaseIndent(); shouldDecreaseIndentAfterEmit = false; } previousSibling = child; } // Write a trailing comma, if requested. var emitFlags = previousSibling ? ts.getEmitFlags(previousSibling) : 0; var skipTrailingComments = commentsDisabled || !!(emitFlags & 1024 /* EmitFlags.NoTrailingComments */); var hasTrailingComma = (children === null || children === void 0 ? void 0 : children.hasTrailingComma) && (format & 64 /* ListFormat.AllowTrailingComma */) && (format & 16 /* ListFormat.CommaDelimited */); if (hasTrailingComma) { if (previousSibling && !skipTrailingComments) { emitTokenWithComment(27 /* SyntaxKind.CommaToken */, previousSibling.end, writePunctuation, previousSibling); } else { writePunctuation(","); } } // Emit any trailing comment of the last element in the list // i.e // var array = [... // 2 // /* end of element 2 */ // ]; if (previousSibling && (parentNode ? parentNode.end : -1) !== previousSibling.end && (format & 60 /* ListFormat.DelimitersMask */) && !skipTrailingComments) { emitLeadingCommentsOfPosition(hasTrailingComma && (children === null || children === void 0 ? void 0 : children.end) ? children.end : previousSibling.end); } // Decrease the indent, if requested. if (format & 128 /* ListFormat.Indented */) { decreaseIndent(); } recordBundleFileInternalSectionEnd(previousSourceFileTextKind); // Write the closing line terminator or closing whitespace. var closingLineTerminatorCount = getClosingLineTerminatorCount(parentNode, children, format); if (closingLineTerminatorCount) { writeLine(closingLineTerminatorCount); } else if (format & (2097152 /* ListFormat.SpaceAfterList */ | 256 /* ListFormat.SpaceBetweenBraces */)) { writeSpace(); } } if (onAfterEmitNodeArray) { onAfterEmitNodeArray(children); } if (format & 15360 /* ListFormat.BracketsMask */) { if (isEmpty && children) { emitLeadingCommentsOfPosition(children.end); // Emit leading comments within empty lists } writePunctuation(getClosingBracket(format)); } } // Writers function writeLiteral(s) { writer.writeLiteral(s); } function writeStringLiteral(s) { writer.writeStringLiteral(s); } function writeBase(s) { writer.write(s); } function writeSymbol(s, sym) { writer.writeSymbol(s, sym); } function writePunctuation(s) { writer.writePunctuation(s); } function writeTrailingSemicolon() { writer.writeTrailingSemicolon(";"); } function writeKeyword(s) { writer.writeKeyword(s); } function writeOperator(s) { writer.writeOperator(s); } function writeParameter(s) { writer.writeParameter(s); } function writeComment(s) { writer.writeComment(s); } function writeSpace() { writer.writeSpace(" "); } function writeProperty(s) { writer.writeProperty(s); } function nonEscapingWrite(s) { // This should be defined in a snippet-escaping text writer. if (writer.nonEscapingWrite) { writer.nonEscapingWrite(s); } else { writer.write(s); } } function writeLine(count) { if (count === void 0) { count = 1; } for (var i = 0; i < count; i++) { writer.writeLine(i > 0); } } function increaseIndent() { writer.increaseIndent(); } function decreaseIndent() { writer.decreaseIndent(); } function writeToken(token, pos, writer, contextNode) { return !sourceMapsDisabled ? emitTokenWithSourceMap(contextNode, token, writer, pos, writeTokenText) : writeTokenText(token, writer, pos); } function writeTokenNode(node, writer) { if (onBeforeEmitToken) { onBeforeEmitToken(node); } writer(ts.tokenToString(node.kind)); if (onAfterEmitToken) { onAfterEmitToken(node); } } function writeTokenText(token, writer, pos) { var tokenString = ts.tokenToString(token); writer(tokenString); return pos < 0 ? pos : pos + tokenString.length; } function writeLineOrSpace(parentNode, prevChildNode, nextChildNode) { if (ts.getEmitFlags(parentNode) & 1 /* EmitFlags.SingleLine */) { writeSpace(); } else if (preserveSourceNewlines) { var lines = getLinesBetweenNodes(parentNode, prevChildNode, nextChildNode); if (lines) { writeLine(lines); } else { writeSpace(); } } else { writeLine(); } } function writeLines(text) { var lines = text.split(/\r\n?|\n/g); var indentation = ts.guessIndentation(lines); for (var _a = 0, lines_3 = lines; _a < lines_3.length; _a++) { var lineText = lines_3[_a]; var line = indentation ? lineText.slice(indentation) : lineText; if (line.length) { writeLine(); write(line); } } } function writeLinesAndIndent(lineCount, writeSpaceIfNotIndenting) { if (lineCount) { increaseIndent(); writeLine(lineCount); } else if (writeSpaceIfNotIndenting) { writeSpace(); } } // Helper function to decrease the indent if we previously indented. Allows multiple // previous indent values to be considered at a time. This also allows caller to just // call this once, passing in all their appropriate indent values, instead of needing // to call this helper function multiple times. function decreaseIndentIf(value1, value2) { if (value1) { decreaseIndent(); } if (value2) { decreaseIndent(); } } function getLeadingLineTerminatorCount(parentNode, children, format) { if (format & 2 /* ListFormat.PreserveLines */ || preserveSourceNewlines) { if (format & 65536 /* ListFormat.PreferNewLine */) { return 1; } var firstChild_1 = children[0]; if (firstChild_1 === undefined) { return !parentNode || currentSourceFile && ts.rangeIsOnSingleLine(parentNode, currentSourceFile) ? 0 : 1; } if (firstChild_1.pos === nextListElementPos) { // If this child starts at the beginning of a list item in a parent list, its leading // line terminators have already been written as the separating line terminators of the // parent list. Example: // // class Foo { // constructor() {} // public foo() {} // } // // The outer list is the list of class members, with one line terminator between the // constructor and the method. The constructor is written, the separating line terminator // is written, and then we start emitting the method. Its modifiers ([public]) constitute an inner // list, so we look for its leading line terminators. If we didn't know that we had already // written a newline as part of the parent list, it would appear that we need to write a // leading newline to start the modifiers. return 0; } if (firstChild_1.kind === 11 /* SyntaxKind.JsxText */) { // JsxText will be written with its leading whitespace, so don't add more manually. return 0; } if (currentSourceFile && parentNode && !ts.positionIsSynthesized(parentNode.pos) && !ts.nodeIsSynthesized(firstChild_1) && (!firstChild_1.parent || ts.getOriginalNode(firstChild_1.parent) === ts.getOriginalNode(parentNode))) { if (preserveSourceNewlines) { return getEffectiveLines(function (includeComments) { return ts.getLinesBetweenPositionAndPrecedingNonWhitespaceCharacter(firstChild_1.pos, parentNode.pos, currentSourceFile, includeComments); }); } return ts.rangeStartPositionsAreOnSameLine(parentNode, firstChild_1, currentSourceFile) ? 0 : 1; } if (synthesizedNodeStartsOnNewLine(firstChild_1, format)) { return 1; } } return format & 1 /* ListFormat.MultiLine */ ? 1 : 0; } function getSeparatingLineTerminatorCount(previousNode, nextNode, format) { if (format & 2 /* ListFormat.PreserveLines */ || preserveSourceNewlines) { if (previousNode === undefined || nextNode === undefined) { return 0; } if (nextNode.kind === 11 /* SyntaxKind.JsxText */) { // JsxText will be written with its leading whitespace, so don't add more manually. return 0; } else if (currentSourceFile && !ts.nodeIsSynthesized(previousNode) && !ts.nodeIsSynthesized(nextNode)) { if (preserveSourceNewlines && siblingNodePositionsAreComparable(previousNode, nextNode)) { return getEffectiveLines(function (includeComments) { return ts.getLinesBetweenRangeEndAndRangeStart(previousNode, nextNode, currentSourceFile, includeComments); }); } // If `preserveSourceNewlines` is `false` we do not intend to preserve the effective lines between the // previous and next node. Instead we naively check whether nodes are on separate lines within the // same node parent. If so, we intend to preserve a single line terminator. This is less precise and // expensive than checking with `preserveSourceNewlines` as above, but the goal is not to preserve the // effective source lines between two sibling nodes. else if (!preserveSourceNewlines && originalNodesHaveSameParent(previousNode, nextNode)) { return ts.rangeEndIsOnSameLineAsRangeStart(previousNode, nextNode, currentSourceFile) ? 0 : 1; } // If the two nodes are not comparable, add a line terminator based on the format that can indicate // whether new lines are preferred or not. return format & 65536 /* ListFormat.PreferNewLine */ ? 1 : 0; } else if (synthesizedNodeStartsOnNewLine(previousNode, format) || synthesizedNodeStartsOnNewLine(nextNode, format)) { return 1; } } else if (ts.getStartsOnNewLine(nextNode)) { return 1; } return format & 1 /* ListFormat.MultiLine */ ? 1 : 0; } function getClosingLineTerminatorCount(parentNode, children, format) { if (format & 2 /* ListFormat.PreserveLines */ || preserveSourceNewlines) { if (format & 65536 /* ListFormat.PreferNewLine */) { return 1; } var lastChild = ts.lastOrUndefined(children); if (lastChild === undefined) { return !parentNode || currentSourceFile && ts.rangeIsOnSingleLine(parentNode, currentSourceFile) ? 0 : 1; } if (currentSourceFile && parentNode && !ts.positionIsSynthesized(parentNode.pos) && !ts.nodeIsSynthesized(lastChild) && (!lastChild.parent || lastChild.parent === parentNode)) { if (preserveSourceNewlines) { var end_1 = ts.isNodeArray(children) && !ts.positionIsSynthesized(children.end) ? children.end : lastChild.end; return getEffectiveLines(function (includeComments) { return ts.getLinesBetweenPositionAndNextNonWhitespaceCharacter(end_1, parentNode.end, currentSourceFile, includeComments); }); } return ts.rangeEndPositionsAreOnSameLine(parentNode, lastChild, currentSourceFile) ? 0 : 1; } if (synthesizedNodeStartsOnNewLine(lastChild, format)) { return 1; } } if (format & 1 /* ListFormat.MultiLine */ && !(format & 131072 /* ListFormat.NoTrailingNewLine */)) { return 1; } return 0; } function getEffectiveLines(getLineDifference) { // If 'preserveSourceNewlines' is disabled, we should never call this function // because it could be more expensive than alternative approximations. ts.Debug.assert(!!preserveSourceNewlines); // We start by measuring the line difference from a position to its adjacent comments, // so that this is counted as a one-line difference, not two: // // node1; // // NODE2 COMMENT // node2; var lines = getLineDifference(/*includeComments*/ true); if (lines === 0) { // However, if the line difference considering comments was 0, we might have this: // // node1; // NODE2 COMMENT // node2; // // in which case we should be ignoring node2's comment, so this too is counted as // a one-line difference, not zero. return getLineDifference(/*includeComments*/ false); } return lines; } function writeLineSeparatorsAndIndentBefore(node, parent) { var leadingNewlines = preserveSourceNewlines && getLeadingLineTerminatorCount(parent, [node], 0 /* ListFormat.None */); if (leadingNewlines) { writeLinesAndIndent(leadingNewlines, /*writeSpaceIfNotIndenting*/ false); } return !!leadingNewlines; } function writeLineSeparatorsAfter(node, parent) { var trailingNewlines = preserveSourceNewlines && getClosingLineTerminatorCount(parent, [node], 0 /* ListFormat.None */); if (trailingNewlines) { writeLine(trailingNewlines); } } function synthesizedNodeStartsOnNewLine(node, format) { if (ts.nodeIsSynthesized(node)) { var startsOnNewLine = ts.getStartsOnNewLine(node); if (startsOnNewLine === undefined) { return (format & 65536 /* ListFormat.PreferNewLine */) !== 0; } return startsOnNewLine; } return (format & 65536 /* ListFormat.PreferNewLine */) !== 0; } function getLinesBetweenNodes(parent, node1, node2) { if (ts.getEmitFlags(parent) & 131072 /* EmitFlags.NoIndentation */) { return 0; } parent = skipSynthesizedParentheses(parent); node1 = skipSynthesizedParentheses(node1); node2 = skipSynthesizedParentheses(node2); // Always use a newline for synthesized code if the synthesizer desires it. if (ts.getStartsOnNewLine(node2)) { return 1; } if (currentSourceFile && !ts.nodeIsSynthesized(parent) && !ts.nodeIsSynthesized(node1) && !ts.nodeIsSynthesized(node2)) { if (preserveSourceNewlines) { return getEffectiveLines(function (includeComments) { return ts.getLinesBetweenRangeEndAndRangeStart(node1, node2, currentSourceFile, includeComments); }); } return ts.rangeEndIsOnSameLineAsRangeStart(node1, node2, currentSourceFile) ? 0 : 1; } return 0; } function isEmptyBlock(block) { return block.statements.length === 0 && (!currentSourceFile || ts.rangeEndIsOnSameLineAsRangeStart(block, block, currentSourceFile)); } function skipSynthesizedParentheses(node) { while (node.kind === 212 /* SyntaxKind.ParenthesizedExpression */ && ts.nodeIsSynthesized(node)) { node = node.expression; } return node; } function getTextOfNode(node, includeTrivia) { if (ts.isGeneratedIdentifier(node)) { return generateName(node); } if (ts.isStringLiteral(node) && node.textSourceNode) { return getTextOfNode(node.textSourceNode, includeTrivia); } var sourceFile = currentSourceFile; // const needed for control flow var canUseSourceFile = !!sourceFile && !!node.parent && !ts.nodeIsSynthesized(node); if (ts.isMemberName(node)) { if (!canUseSourceFile || ts.getSourceFileOfNode(node) !== ts.getOriginalNode(sourceFile)) { return ts.idText(node); } } else { ts.Debug.assertNode(node, ts.isLiteralExpression); // not strictly necessary if (!canUseSourceFile) { return node.text; } } return ts.getSourceTextOfNodeFromSourceFile(sourceFile, node, includeTrivia); } function getLiteralTextOfNode(node, neverAsciiEscape, jsxAttributeEscape) { if (node.kind === 10 /* SyntaxKind.StringLiteral */ && node.textSourceNode) { var textSourceNode = node.textSourceNode; if (ts.isIdentifier(textSourceNode) || ts.isNumericLiteral(textSourceNode)) { var text = ts.isNumericLiteral(textSourceNode) ? textSourceNode.text : getTextOfNode(textSourceNode); return jsxAttributeEscape ? "\"".concat(ts.escapeJsxAttributeString(text), "\"") : neverAsciiEscape || (ts.getEmitFlags(node) & 16777216 /* EmitFlags.NoAsciiEscaping */) ? "\"".concat(ts.escapeString(text), "\"") : "\"".concat(ts.escapeNonAsciiString(text), "\""); } else { return getLiteralTextOfNode(textSourceNode, neverAsciiEscape, jsxAttributeEscape); } } var flags = (neverAsciiEscape ? 1 /* GetLiteralTextFlags.NeverAsciiEscape */ : 0) | (jsxAttributeEscape ? 2 /* GetLiteralTextFlags.JsxAttributeEscape */ : 0) | (printerOptions.terminateUnterminatedLiterals ? 4 /* GetLiteralTextFlags.TerminateUnterminatedLiterals */ : 0) | (printerOptions.target && printerOptions.target === 99 /* ScriptTarget.ESNext */ ? 8 /* GetLiteralTextFlags.AllowNumericSeparator */ : 0); return ts.getLiteralText(node, currentSourceFile, flags); } /** * Push a new name generation scope. */ function pushNameGenerationScope(node) { if (node && ts.getEmitFlags(node) & 524288 /* EmitFlags.ReuseTempVariableScope */) { return; } tempFlagsStack.push(tempFlags); tempFlags = 0; reservedNamesStack.push(reservedNames); } /** * Pop the current name generation scope. */ function popNameGenerationScope(node) { if (node && ts.getEmitFlags(node) & 524288 /* EmitFlags.ReuseTempVariableScope */) { return; } tempFlags = tempFlagsStack.pop(); reservedNames = reservedNamesStack.pop(); } function reserveNameInNestedScopes(name) { if (!reservedNames || reservedNames === ts.lastOrUndefined(reservedNamesStack)) { reservedNames = new ts.Set(); } reservedNames.add(name); } function generateNames(node) { if (!node) return; switch (node.kind) { case 235 /* SyntaxKind.Block */: ts.forEach(node.statements, generateNames); break; case 250 /* SyntaxKind.LabeledStatement */: case 248 /* SyntaxKind.WithStatement */: case 240 /* SyntaxKind.DoStatement */: case 241 /* SyntaxKind.WhileStatement */: generateNames(node.statement); break; case 239 /* SyntaxKind.IfStatement */: generateNames(node.thenStatement); generateNames(node.elseStatement); break; case 242 /* SyntaxKind.ForStatement */: case 244 /* SyntaxKind.ForOfStatement */: case 243 /* SyntaxKind.ForInStatement */: generateNames(node.initializer); generateNames(node.statement); break; case 249 /* SyntaxKind.SwitchStatement */: generateNames(node.caseBlock); break; case 263 /* SyntaxKind.CaseBlock */: ts.forEach(node.clauses, generateNames); break; case 289 /* SyntaxKind.CaseClause */: case 290 /* SyntaxKind.DefaultClause */: ts.forEach(node.statements, generateNames); break; case 252 /* SyntaxKind.TryStatement */: generateNames(node.tryBlock); generateNames(node.catchClause); generateNames(node.finallyBlock); break; case 292 /* SyntaxKind.CatchClause */: generateNames(node.variableDeclaration); generateNames(node.block); break; case 237 /* SyntaxKind.VariableStatement */: generateNames(node.declarationList); break; case 255 /* SyntaxKind.VariableDeclarationList */: ts.forEach(node.declarations, generateNames); break; case 254 /* SyntaxKind.VariableDeclaration */: case 164 /* SyntaxKind.Parameter */: case 203 /* SyntaxKind.BindingElement */: case 257 /* SyntaxKind.ClassDeclaration */: generateNameIfNeeded(node.name); break; case 256 /* SyntaxKind.FunctionDeclaration */: generateNameIfNeeded(node.name); if (ts.getEmitFlags(node) & 524288 /* EmitFlags.ReuseTempVariableScope */) { ts.forEach(node.parameters, generateNames); generateNames(node.body); } break; case 201 /* SyntaxKind.ObjectBindingPattern */: case 202 /* SyntaxKind.ArrayBindingPattern */: ts.forEach(node.elements, generateNames); break; case 266 /* SyntaxKind.ImportDeclaration */: generateNames(node.importClause); break; case 267 /* SyntaxKind.ImportClause */: generateNameIfNeeded(node.name); generateNames(node.namedBindings); break; case 268 /* SyntaxKind.NamespaceImport */: generateNameIfNeeded(node.name); break; case 274 /* SyntaxKind.NamespaceExport */: generateNameIfNeeded(node.name); break; case 269 /* SyntaxKind.NamedImports */: ts.forEach(node.elements, generateNames); break; case 270 /* SyntaxKind.ImportSpecifier */: generateNameIfNeeded(node.propertyName || node.name); break; } } function generateMemberNames(node) { if (!node) return; switch (node.kind) { case 296 /* SyntaxKind.PropertyAssignment */: case 297 /* SyntaxKind.ShorthandPropertyAssignment */: case 167 /* SyntaxKind.PropertyDeclaration */: case 169 /* SyntaxKind.MethodDeclaration */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: generateNameIfNeeded(node.name); break; } } function generateNameIfNeeded(name) { if (name) { if (ts.isGeneratedIdentifier(name)) { generateName(name); } else if (ts.isBindingPattern(name)) { generateNames(name); } } } /** * Generate the text for a generated identifier. */ function generateName(name) { if ((name.autoGenerateFlags & 7 /* GeneratedIdentifierFlags.KindMask */) === 4 /* GeneratedIdentifierFlags.Node */) { // Node names generate unique names based on their original node // and are cached based on that node's id. return generateNameCached(getNodeForGeneratedName(name), name.autoGenerateFlags); } else { // Auto, Loop, and Unique names are cached based on their unique // autoGenerateId. var autoGenerateId = name.autoGenerateId; return autoGeneratedIdToGeneratedName[autoGenerateId] || (autoGeneratedIdToGeneratedName[autoGenerateId] = makeName(name)); } } function generateNameCached(node, flags) { var nodeId = ts.getNodeId(node); return nodeIdToGeneratedName[nodeId] || (nodeIdToGeneratedName[nodeId] = generateNameForNode(node, flags)); } /** * Returns a value indicating whether a name is unique globally, within the current file, * or within the NameGenerator. */ function isUniqueName(name) { return isFileLevelUniqueName(name) && !generatedNames.has(name) && !(reservedNames && reservedNames.has(name)); } /** * Returns a value indicating whether a name is unique globally or within the current file. */ function isFileLevelUniqueName(name) { return currentSourceFile ? ts.isFileLevelUniqueName(currentSourceFile, name, hasGlobalName) : true; } /** * Returns a value indicating whether a name is unique within a container. */ function isUniqueLocalName(name, container) { for (var node = container; ts.isNodeDescendantOf(node, container); node = node.nextContainer) { if (node.locals) { var local = node.locals.get(ts.escapeLeadingUnderscores(name)); // We conservatively include alias symbols to cover cases where they're emitted as locals if (local && local.flags & (111551 /* SymbolFlags.Value */ | 1048576 /* SymbolFlags.ExportValue */ | 2097152 /* SymbolFlags.Alias */)) { return false; } } } return true; } /** * Return the next available name in the pattern _a ... _z, _0, _1, ... * TempFlags._i or TempFlags._n may be used to express a preference for that dedicated name. * Note that names generated by makeTempVariableName and makeUniqueName will never conflict. */ function makeTempVariableName(flags, reservedInNestedScopes) { if (flags && !(tempFlags & flags)) { var name = flags === 268435456 /* TempFlags._i */ ? "_i" : "_n"; if (isUniqueName(name)) { tempFlags |= flags; if (reservedInNestedScopes) { reserveNameInNestedScopes(name); } return name; } } while (true) { var count = tempFlags & 268435455 /* TempFlags.CountMask */; tempFlags++; // Skip over 'i' and 'n' if (count !== 8 && count !== 13) { var name = count < 26 ? "_" + String.fromCharCode(97 /* CharacterCodes.a */ + count) : "_" + (count - 26); if (isUniqueName(name)) { if (reservedInNestedScopes) { reserveNameInNestedScopes(name); } return name; } } } } /** * Generate a name that is unique within the current file and doesn't conflict with any names * in global scope. The name is formed by adding an '_n' suffix to the specified base name, * where n is a positive integer. Note that names generated by makeTempVariableName and * makeUniqueName are guaranteed to never conflict. * If `optimistic` is set, the first instance will use 'baseName' verbatim instead of 'baseName_1' */ function makeUniqueName(baseName, checkFn, optimistic, scoped) { if (checkFn === void 0) { checkFn = isUniqueName; } if (optimistic) { if (checkFn(baseName)) { if (scoped) { reserveNameInNestedScopes(baseName); } else { generatedNames.add(baseName); } return baseName; } } // Find the first unique 'name_n', where n is a positive number if (baseName.charCodeAt(baseName.length - 1) !== 95 /* CharacterCodes._ */) { baseName += "_"; } var i = 1; while (true) { var generatedName = baseName + i; if (checkFn(generatedName)) { if (scoped) { reserveNameInNestedScopes(generatedName); } else { generatedNames.add(generatedName); } return generatedName; } i++; } } function makeFileLevelOptimisticUniqueName(name) { return makeUniqueName(name, isFileLevelUniqueName, /*optimistic*/ true); } /** * Generates a unique name for a ModuleDeclaration or EnumDeclaration. */ function generateNameForModuleOrEnum(node) { var name = getTextOfNode(node.name); // Use module/enum name itself if it is unique, otherwise make a unique variation return isUniqueLocalName(name, node) ? name : makeUniqueName(name); } /** * Generates a unique name for an ImportDeclaration or ExportDeclaration. */ function generateNameForImportOrExportDeclaration(node) { var expr = ts.getExternalModuleName(node); // TODO: GH#18217 var baseName = ts.isStringLiteral(expr) ? ts.makeIdentifierFromModuleName(expr.text) : "module"; return makeUniqueName(baseName); } /** * Generates a unique name for a default export. */ function generateNameForExportDefault() { return makeUniqueName("default"); } /** * Generates a unique name for a class expression. */ function generateNameForClassExpression() { return makeUniqueName("class"); } function generateNameForMethodOrAccessor(node) { if (ts.isIdentifier(node.name)) { return generateNameCached(node.name); } return makeTempVariableName(0 /* TempFlags.Auto */); } /** * Generates a unique name from a node. */ function generateNameForNode(node, flags) { switch (node.kind) { case 79 /* SyntaxKind.Identifier */: return makeUniqueName(getTextOfNode(node), isUniqueName, !!(flags & 16 /* GeneratedIdentifierFlags.Optimistic */), !!(flags & 8 /* GeneratedIdentifierFlags.ReservedInNestedScopes */)); case 261 /* SyntaxKind.ModuleDeclaration */: case 260 /* SyntaxKind.EnumDeclaration */: return generateNameForModuleOrEnum(node); case 266 /* SyntaxKind.ImportDeclaration */: case 272 /* SyntaxKind.ExportDeclaration */: return generateNameForImportOrExportDeclaration(node); case 256 /* SyntaxKind.FunctionDeclaration */: case 257 /* SyntaxKind.ClassDeclaration */: case 271 /* SyntaxKind.ExportAssignment */: return generateNameForExportDefault(); case 226 /* SyntaxKind.ClassExpression */: return generateNameForClassExpression(); case 169 /* SyntaxKind.MethodDeclaration */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: return generateNameForMethodOrAccessor(node); case 162 /* SyntaxKind.ComputedPropertyName */: return makeTempVariableName(0 /* TempFlags.Auto */, /*reserveInNestedScopes*/ true); default: return makeTempVariableName(0 /* TempFlags.Auto */); } } /** * Generates a unique identifier for a node. */ function makeName(name) { switch (name.autoGenerateFlags & 7 /* GeneratedIdentifierFlags.KindMask */) { case 1 /* GeneratedIdentifierFlags.Auto */: return makeTempVariableName(0 /* TempFlags.Auto */, !!(name.autoGenerateFlags & 8 /* GeneratedIdentifierFlags.ReservedInNestedScopes */)); case 2 /* GeneratedIdentifierFlags.Loop */: return makeTempVariableName(268435456 /* TempFlags._i */, !!(name.autoGenerateFlags & 8 /* GeneratedIdentifierFlags.ReservedInNestedScopes */)); case 3 /* GeneratedIdentifierFlags.Unique */: return makeUniqueName(ts.idText(name), (name.autoGenerateFlags & 32 /* GeneratedIdentifierFlags.FileLevel */) ? isFileLevelUniqueName : isUniqueName, !!(name.autoGenerateFlags & 16 /* GeneratedIdentifierFlags.Optimistic */), !!(name.autoGenerateFlags & 8 /* GeneratedIdentifierFlags.ReservedInNestedScopes */)); } return ts.Debug.fail("Unsupported GeneratedIdentifierKind."); } /** * Gets the node from which a name should be generated. */ function getNodeForGeneratedName(name) { var autoGenerateId = name.autoGenerateId; var node = name; var original = node.original; while (original) { node = original; // if "node" is a different generated name (having a different // "autoGenerateId"), use it and stop traversing. if (ts.isIdentifier(node) && !!(node.autoGenerateFlags & 4 /* GeneratedIdentifierFlags.Node */) && node.autoGenerateId !== autoGenerateId) { break; } original = node.original; } // otherwise, return the original node for the source; return node; } // Comments function pipelineEmitWithComments(hint, node) { var pipelinePhase = getNextPipelinePhase(2 /* PipelinePhase.Comments */, hint, node); var savedContainerPos = containerPos; var savedContainerEnd = containerEnd; var savedDeclarationListContainerEnd = declarationListContainerEnd; emitCommentsBeforeNode(node); pipelinePhase(hint, node); emitCommentsAfterNode(node, savedContainerPos, savedContainerEnd, savedDeclarationListContainerEnd); } function emitCommentsBeforeNode(node) { var emitFlags = ts.getEmitFlags(node); var commentRange = ts.getCommentRange(node); // Emit leading comments emitLeadingCommentsOfNode(node, emitFlags, commentRange.pos, commentRange.end); if (emitFlags & 2048 /* EmitFlags.NoNestedComments */) { commentsDisabled = true; } } function emitCommentsAfterNode(node, savedContainerPos, savedContainerEnd, savedDeclarationListContainerEnd) { var emitFlags = ts.getEmitFlags(node); var commentRange = ts.getCommentRange(node); // Emit trailing comments if (emitFlags & 2048 /* EmitFlags.NoNestedComments */) { commentsDisabled = false; } emitTrailingCommentsOfNode(node, emitFlags, commentRange.pos, commentRange.end, savedContainerPos, savedContainerEnd, savedDeclarationListContainerEnd); var typeNode = ts.getTypeNode(node); if (typeNode) { emitTrailingCommentsOfNode(node, emitFlags, typeNode.pos, typeNode.end, savedContainerPos, savedContainerEnd, savedDeclarationListContainerEnd); } } function emitLeadingCommentsOfNode(node, emitFlags, pos, end) { enterComment(); hasWrittenComment = false; // We have to explicitly check that the node is JsxText because if the compilerOptions.jsx is "preserve" we will not do any transformation. // It is expensive to walk entire tree just to set one kind of node to have no comments. var skipLeadingComments = pos < 0 || (emitFlags & 512 /* EmitFlags.NoLeadingComments */) !== 0 || node.kind === 11 /* SyntaxKind.JsxText */; var skipTrailingComments = end < 0 || (emitFlags & 1024 /* EmitFlags.NoTrailingComments */) !== 0 || node.kind === 11 /* SyntaxKind.JsxText */; // Save current container state on the stack. if ((pos > 0 || end > 0) && pos !== end) { // Emit leading comments if the position is not synthesized and the node // has not opted out from emitting leading comments. if (!skipLeadingComments) { emitLeadingComments(pos, /*isEmittedNode*/ node.kind !== 349 /* SyntaxKind.NotEmittedStatement */); } if (!skipLeadingComments || (pos >= 0 && (emitFlags & 512 /* EmitFlags.NoLeadingComments */) !== 0)) { // Advance the container position if comments get emitted or if they've been disabled explicitly using NoLeadingComments. containerPos = pos; } if (!skipTrailingComments || (end >= 0 && (emitFlags & 1024 /* EmitFlags.NoTrailingComments */) !== 0)) { // As above. containerEnd = end; // To avoid invalid comment emit in a down-level binding pattern, we // keep track of the last declaration list container's end if (node.kind === 255 /* SyntaxKind.VariableDeclarationList */) { declarationListContainerEnd = end; } } } ts.forEach(ts.getSyntheticLeadingComments(node), emitLeadingSynthesizedComment); exitComment(); } function emitTrailingCommentsOfNode(node, emitFlags, pos, end, savedContainerPos, savedContainerEnd, savedDeclarationListContainerEnd) { enterComment(); var skipTrailingComments = end < 0 || (emitFlags & 1024 /* EmitFlags.NoTrailingComments */) !== 0 || node.kind === 11 /* SyntaxKind.JsxText */; ts.forEach(ts.getSyntheticTrailingComments(node), emitTrailingSynthesizedComment); if ((pos > 0 || end > 0) && pos !== end) { // Restore previous container state. containerPos = savedContainerPos; containerEnd = savedContainerEnd; declarationListContainerEnd = savedDeclarationListContainerEnd; // Emit trailing comments if the position is not synthesized and the node // has not opted out from emitting leading comments and is an emitted node. if (!skipTrailingComments && node.kind !== 349 /* SyntaxKind.NotEmittedStatement */) { emitTrailingComments(end); } } exitComment(); } function emitLeadingSynthesizedComment(comment) { if (comment.hasLeadingNewline || comment.kind === 2 /* SyntaxKind.SingleLineCommentTrivia */) { writer.writeLine(); } writeSynthesizedComment(comment); if (comment.hasTrailingNewLine || comment.kind === 2 /* SyntaxKind.SingleLineCommentTrivia */) { writer.writeLine(); } else { writer.writeSpace(" "); } } function emitTrailingSynthesizedComment(comment) { if (!writer.isAtStartOfLine()) { writer.writeSpace(" "); } writeSynthesizedComment(comment); if (comment.hasTrailingNewLine) { writer.writeLine(); } } function writeSynthesizedComment(comment) { var text = formatSynthesizedComment(comment); var lineMap = comment.kind === 3 /* SyntaxKind.MultiLineCommentTrivia */ ? ts.computeLineStarts(text) : undefined; ts.writeCommentRange(text, lineMap, writer, 0, text.length, newLine); } function formatSynthesizedComment(comment) { return comment.kind === 3 /* SyntaxKind.MultiLineCommentTrivia */ ? "/*".concat(comment.text, "*/") : "//".concat(comment.text); } function emitBodyWithDetachedComments(node, detachedRange, emitCallback) { enterComment(); var pos = detachedRange.pos, end = detachedRange.end; var emitFlags = ts.getEmitFlags(node); var skipLeadingComments = pos < 0 || (emitFlags & 512 /* EmitFlags.NoLeadingComments */) !== 0; var skipTrailingComments = commentsDisabled || end < 0 || (emitFlags & 1024 /* EmitFlags.NoTrailingComments */) !== 0; if (!skipLeadingComments) { emitDetachedCommentsAndUpdateCommentsInfo(detachedRange); } exitComment(); if (emitFlags & 2048 /* EmitFlags.NoNestedComments */ && !commentsDisabled) { commentsDisabled = true; emitCallback(node); commentsDisabled = false; } else { emitCallback(node); } enterComment(); if (!skipTrailingComments) { emitLeadingComments(detachedRange.end, /*isEmittedNode*/ true); if (hasWrittenComment && !writer.isAtStartOfLine()) { writer.writeLine(); } } exitComment(); } function originalNodesHaveSameParent(nodeA, nodeB) { nodeA = ts.getOriginalNode(nodeA); // For performance, do not call `getOriginalNode` for `nodeB` if `nodeA` doesn't even // have a parent node. return nodeA.parent && nodeA.parent === ts.getOriginalNode(nodeB).parent; } function siblingNodePositionsAreComparable(previousNode, nextNode) { if (nextNode.pos < previousNode.end) { return false; } previousNode = ts.getOriginalNode(previousNode); nextNode = ts.getOriginalNode(nextNode); var parent = previousNode.parent; if (!parent || parent !== nextNode.parent) { return false; } var parentNodeArray = ts.getContainingNodeArray(previousNode); var prevNodeIndex = parentNodeArray === null || parentNodeArray === void 0 ? void 0 : parentNodeArray.indexOf(previousNode); return prevNodeIndex !== undefined && prevNodeIndex > -1 && parentNodeArray.indexOf(nextNode) === prevNodeIndex + 1; } function emitLeadingComments(pos, isEmittedNode) { hasWrittenComment = false; if (isEmittedNode) { if (pos === 0 && (currentSourceFile === null || currentSourceFile === void 0 ? void 0 : currentSourceFile.isDeclarationFile)) { forEachLeadingCommentToEmit(pos, emitNonTripleSlashLeadingComment); } else { forEachLeadingCommentToEmit(pos, emitLeadingComment); } } else if (pos === 0) { // If the node will not be emitted in JS, remove all the comments(normal, pinned and ///) associated with the node, // unless it is a triple slash comment at the top of the file. // For Example: // /// // declare var x; // /// // interface F {} // The first /// will NOT be removed while the second one will be removed even though both node will not be emitted forEachLeadingCommentToEmit(pos, emitTripleSlashLeadingComment); } } function emitTripleSlashLeadingComment(commentPos, commentEnd, kind, hasTrailingNewLine, rangePos) { if (isTripleSlashComment(commentPos, commentEnd)) { emitLeadingComment(commentPos, commentEnd, kind, hasTrailingNewLine, rangePos); } } function emitNonTripleSlashLeadingComment(commentPos, commentEnd, kind, hasTrailingNewLine, rangePos) { if (!isTripleSlashComment(commentPos, commentEnd)) { emitLeadingComment(commentPos, commentEnd, kind, hasTrailingNewLine, rangePos); } } function shouldWriteComment(text, pos) { if (printerOptions.onlyPrintJsDocStyle) { return (ts.isJSDocLikeText(text, pos) || ts.isPinnedComment(text, pos)); } return true; } function emitLeadingComment(commentPos, commentEnd, kind, hasTrailingNewLine, rangePos) { if (!currentSourceFile || !shouldWriteComment(currentSourceFile.text, commentPos)) return; if (!hasWrittenComment) { ts.emitNewLineBeforeLeadingCommentOfPosition(getCurrentLineMap(), writer, rangePos, commentPos); hasWrittenComment = true; } // Leading comments are emitted at /*leading comment1 */space/*leading comment*/space emitPos(commentPos); ts.writeCommentRange(currentSourceFile.text, getCurrentLineMap(), writer, commentPos, commentEnd, newLine); emitPos(commentEnd); if (hasTrailingNewLine) { writer.writeLine(); } else if (kind === 3 /* SyntaxKind.MultiLineCommentTrivia */) { writer.writeSpace(" "); } } function emitLeadingCommentsOfPosition(pos) { if (commentsDisabled || pos === -1) { return; } emitLeadingComments(pos, /*isEmittedNode*/ true); } function emitTrailingComments(pos) { forEachTrailingCommentToEmit(pos, emitTrailingComment); } function emitTrailingComment(commentPos, commentEnd, _kind, hasTrailingNewLine) { if (!currentSourceFile || !shouldWriteComment(currentSourceFile.text, commentPos)) return; // trailing comments are emitted at space/*trailing comment1 */space/*trailing comment2*/ if (!writer.isAtStartOfLine()) { writer.writeSpace(" "); } emitPos(commentPos); ts.writeCommentRange(currentSourceFile.text, getCurrentLineMap(), writer, commentPos, commentEnd, newLine); emitPos(commentEnd); if (hasTrailingNewLine) { writer.writeLine(); } } function emitTrailingCommentsOfPosition(pos, prefixSpace, forceNoNewline) { if (commentsDisabled) { return; } enterComment(); forEachTrailingCommentToEmit(pos, prefixSpace ? emitTrailingComment : forceNoNewline ? emitTrailingCommentOfPositionNoNewline : emitTrailingCommentOfPosition); exitComment(); } function emitTrailingCommentOfPositionNoNewline(commentPos, commentEnd, kind) { if (!currentSourceFile) return; // trailing comments of a position are emitted at /*trailing comment1 */space/*trailing comment*/space emitPos(commentPos); ts.writeCommentRange(currentSourceFile.text, getCurrentLineMap(), writer, commentPos, commentEnd, newLine); emitPos(commentEnd); if (kind === 2 /* SyntaxKind.SingleLineCommentTrivia */) { writer.writeLine(); // still write a newline for single-line comments, so closing tokens aren't written on the same line } } function emitTrailingCommentOfPosition(commentPos, commentEnd, _kind, hasTrailingNewLine) { if (!currentSourceFile) return; // trailing comments of a position are emitted at /*trailing comment1 */space/*trailing comment*/space emitPos(commentPos); ts.writeCommentRange(currentSourceFile.text, getCurrentLineMap(), writer, commentPos, commentEnd, newLine); emitPos(commentEnd); if (hasTrailingNewLine) { writer.writeLine(); } else { writer.writeSpace(" "); } } function forEachLeadingCommentToEmit(pos, cb) { // Emit the leading comments only if the container's pos doesn't match because the container should take care of emitting these comments if (currentSourceFile && (containerPos === -1 || pos !== containerPos)) { if (hasDetachedComments(pos)) { forEachLeadingCommentWithoutDetachedComments(cb); } else { ts.forEachLeadingCommentRange(currentSourceFile.text, pos, cb, /*state*/ pos); } } } function forEachTrailingCommentToEmit(end, cb) { // Emit the trailing comments only if the container's end doesn't match because the container should take care of emitting these comments if (currentSourceFile && (containerEnd === -1 || (end !== containerEnd && end !== declarationListContainerEnd))) { ts.forEachTrailingCommentRange(currentSourceFile.text, end, cb); } } function hasDetachedComments(pos) { return detachedCommentsInfo !== undefined && ts.last(detachedCommentsInfo).nodePos === pos; } function forEachLeadingCommentWithoutDetachedComments(cb) { if (!currentSourceFile) return; // get the leading comments from detachedPos var pos = ts.last(detachedCommentsInfo).detachedCommentEndPos; if (detachedCommentsInfo.length - 1) { detachedCommentsInfo.pop(); } else { detachedCommentsInfo = undefined; } ts.forEachLeadingCommentRange(currentSourceFile.text, pos, cb, /*state*/ pos); } function emitDetachedCommentsAndUpdateCommentsInfo(range) { var currentDetachedCommentInfo = currentSourceFile && ts.emitDetachedComments(currentSourceFile.text, getCurrentLineMap(), writer, emitComment, range, newLine, commentsDisabled); if (currentDetachedCommentInfo) { if (detachedCommentsInfo) { detachedCommentsInfo.push(currentDetachedCommentInfo); } else { detachedCommentsInfo = [currentDetachedCommentInfo]; } } } function emitComment(text, lineMap, writer, commentPos, commentEnd, newLine) { if (!currentSourceFile || !shouldWriteComment(currentSourceFile.text, commentPos)) return; emitPos(commentPos); ts.writeCommentRange(text, lineMap, writer, commentPos, commentEnd, newLine); emitPos(commentEnd); } /** * Determine if the given comment is a triple-slash * * @return true if the comment is a triple-slash comment else false */ function isTripleSlashComment(commentPos, commentEnd) { return !!currentSourceFile && ts.isRecognizedTripleSlashComment(currentSourceFile.text, commentPos, commentEnd); } // Source Maps function getParsedSourceMap(node) { if (node.parsedSourceMap === undefined && node.sourceMapText !== undefined) { node.parsedSourceMap = ts.tryParseRawSourceMap(node.sourceMapText) || false; } return node.parsedSourceMap || undefined; } function pipelineEmitWithSourceMaps(hint, node) { var pipelinePhase = getNextPipelinePhase(3 /* PipelinePhase.SourceMaps */, hint, node); emitSourceMapsBeforeNode(node); pipelinePhase(hint, node); emitSourceMapsAfterNode(node); } function emitSourceMapsBeforeNode(node) { var emitFlags = ts.getEmitFlags(node); var sourceMapRange = ts.getSourceMapRange(node); // Emit leading sourcemap if (ts.isUnparsedNode(node)) { ts.Debug.assertIsDefined(node.parent, "UnparsedNodes must have parent pointers"); var parsed = getParsedSourceMap(node.parent); if (parsed && sourceMapGenerator) { sourceMapGenerator.appendSourceMap(writer.getLine(), writer.getColumn(), parsed, node.parent.sourceMapPath, node.parent.getLineAndCharacterOfPosition(node.pos), node.parent.getLineAndCharacterOfPosition(node.end)); } } else { var source = sourceMapRange.source || sourceMapSource; if (node.kind !== 349 /* SyntaxKind.NotEmittedStatement */ && (emitFlags & 16 /* EmitFlags.NoLeadingSourceMap */) === 0 && sourceMapRange.pos >= 0) { emitSourcePos(sourceMapRange.source || sourceMapSource, skipSourceTrivia(source, sourceMapRange.pos)); } if (emitFlags & 64 /* EmitFlags.NoNestedSourceMaps */) { sourceMapsDisabled = true; } } } function emitSourceMapsAfterNode(node) { var emitFlags = ts.getEmitFlags(node); var sourceMapRange = ts.getSourceMapRange(node); // Emit trailing sourcemap if (!ts.isUnparsedNode(node)) { if (emitFlags & 64 /* EmitFlags.NoNestedSourceMaps */) { sourceMapsDisabled = false; } if (node.kind !== 349 /* SyntaxKind.NotEmittedStatement */ && (emitFlags & 32 /* EmitFlags.NoTrailingSourceMap */) === 0 && sourceMapRange.end >= 0) { emitSourcePos(sourceMapRange.source || sourceMapSource, sourceMapRange.end); } } } /** * Skips trivia such as comments and white-space that can be optionally overridden by the source-map source */ function skipSourceTrivia(source, pos) { return source.skipTrivia ? source.skipTrivia(pos) : ts.skipTrivia(source.text, pos); } /** * Emits a mapping. * * If the position is synthetic (undefined or a negative value), no mapping will be * created. * * @param pos The position. */ function emitPos(pos) { if (sourceMapsDisabled || ts.positionIsSynthesized(pos) || isJsonSourceMapSource(sourceMapSource)) { return; } var _a = ts.getLineAndCharacterOfPosition(sourceMapSource, pos), sourceLine = _a.line, sourceCharacter = _a.character; sourceMapGenerator.addMapping(writer.getLine(), writer.getColumn(), sourceMapSourceIndex, sourceLine, sourceCharacter, /*nameIndex*/ undefined); } function emitSourcePos(source, pos) { if (source !== sourceMapSource) { var savedSourceMapSource = sourceMapSource; var savedSourceMapSourceIndex = sourceMapSourceIndex; setSourceMapSource(source); emitPos(pos); resetSourceMapSource(savedSourceMapSource, savedSourceMapSourceIndex); } else { emitPos(pos); } } /** * Emits a token of a node with possible leading and trailing source maps. * * @param node The node containing the token. * @param token The token to emit. * @param tokenStartPos The start pos of the token. * @param emitCallback The callback used to emit the token. */ function emitTokenWithSourceMap(node, token, writer, tokenPos, emitCallback) { if (sourceMapsDisabled || node && ts.isInJsonFile(node)) { return emitCallback(token, writer, tokenPos); } var emitNode = node && node.emitNode; var emitFlags = emitNode && emitNode.flags || 0 /* EmitFlags.None */; var range = emitNode && emitNode.tokenSourceMapRanges && emitNode.tokenSourceMapRanges[token]; var source = range && range.source || sourceMapSource; tokenPos = skipSourceTrivia(source, range ? range.pos : tokenPos); if ((emitFlags & 128 /* EmitFlags.NoTokenLeadingSourceMaps */) === 0 && tokenPos >= 0) { emitSourcePos(source, tokenPos); } tokenPos = emitCallback(token, writer, tokenPos); if (range) tokenPos = range.end; if ((emitFlags & 256 /* EmitFlags.NoTokenTrailingSourceMaps */) === 0 && tokenPos >= 0) { emitSourcePos(source, tokenPos); } return tokenPos; } function setSourceMapSource(source) { if (sourceMapsDisabled) { return; } sourceMapSource = source; if (source === mostRecentlyAddedSourceMapSource) { // Fast path for when the new source map is the most recently added, in which case // we use its captured index without going through the source map generator. sourceMapSourceIndex = mostRecentlyAddedSourceMapSourceIndex; return; } if (isJsonSourceMapSource(source)) { return; } sourceMapSourceIndex = sourceMapGenerator.addSource(source.fileName); if (printerOptions.inlineSources) { sourceMapGenerator.setSourceContent(sourceMapSourceIndex, source.text); } mostRecentlyAddedSourceMapSource = source; mostRecentlyAddedSourceMapSourceIndex = sourceMapSourceIndex; } function resetSourceMapSource(source, sourceIndex) { sourceMapSource = source; sourceMapSourceIndex = sourceIndex; } function isJsonSourceMapSource(sourceFile) { return ts.fileExtensionIs(sourceFile.fileName, ".json" /* Extension.Json */); } } ts.createPrinter = createPrinter; function createBracketsMap() { var brackets = []; brackets[1024 /* ListFormat.Braces */] = ["{", "}"]; brackets[2048 /* ListFormat.Parenthesis */] = ["(", ")"]; brackets[4096 /* ListFormat.AngleBrackets */] = ["<", ">"]; brackets[8192 /* ListFormat.SquareBrackets */] = ["[", "]"]; return brackets; } function getOpeningBracket(format) { return brackets[format & 15360 /* ListFormat.BracketsMask */][0]; } function getClosingBracket(format) { return brackets[format & 15360 /* ListFormat.BracketsMask */][1]; } // Flags enum to track count of temp variables and a few dedicated names var TempFlags; (function (TempFlags) { TempFlags[TempFlags["Auto"] = 0] = "Auto"; TempFlags[TempFlags["CountMask"] = 268435455] = "CountMask"; TempFlags[TempFlags["_i"] = 268435456] = "_i"; })(TempFlags || (TempFlags = {})); function emitListItemNoParenthesizer(node, emit, _parenthesizerRule, _index) { emit(node); } function emitListItemWithParenthesizerRuleSelector(node, emit, parenthesizerRuleSelector, index) { emit(node, parenthesizerRuleSelector.select(index)); } function emitListItemWithParenthesizerRule(node, emit, parenthesizerRule, _index) { emit(node, parenthesizerRule); } function getEmitListItem(emit, parenthesizerRule) { return emit.length === 1 ? emitListItemNoParenthesizer : typeof parenthesizerRule === "object" ? emitListItemWithParenthesizerRuleSelector : emitListItemWithParenthesizerRule; } })(ts || (ts = {})); /* @internal */ var ts; (function (ts) { function createCachedDirectoryStructureHost(host, currentDirectory, useCaseSensitiveFileNames) { if (!host.getDirectories || !host.readDirectory) { return undefined; } var cachedReadDirectoryResult = new ts.Map(); var getCanonicalFileName = ts.createGetCanonicalFileName(useCaseSensitiveFileNames); return { useCaseSensitiveFileNames: useCaseSensitiveFileNames, fileExists: fileExists, readFile: function (path, encoding) { return host.readFile(path, encoding); }, directoryExists: host.directoryExists && directoryExists, getDirectories: getDirectories, readDirectory: readDirectory, createDirectory: host.createDirectory && createDirectory, writeFile: host.writeFile && writeFile, addOrDeleteFileOrDirectory: addOrDeleteFileOrDirectory, addOrDeleteFile: addOrDeleteFile, clearCache: clearCache, realpath: host.realpath && realpath }; function toPath(fileName) { return ts.toPath(fileName, currentDirectory, getCanonicalFileName); } function getCachedFileSystemEntries(rootDirPath) { return cachedReadDirectoryResult.get(ts.ensureTrailingDirectorySeparator(rootDirPath)); } function getCachedFileSystemEntriesForBaseDir(path) { return getCachedFileSystemEntries(ts.getDirectoryPath(path)); } function getBaseNameOfFileName(fileName) { return ts.getBaseFileName(ts.normalizePath(fileName)); } function createCachedFileSystemEntries(rootDir, rootDirPath) { var _a; if (!host.realpath || ts.ensureTrailingDirectorySeparator(toPath(host.realpath(rootDir))) === rootDirPath) { var resultFromHost = { files: ts.map(host.readDirectory(rootDir, /*extensions*/ undefined, /*exclude*/ undefined, /*include*/ ["*.*"]), getBaseNameOfFileName) || [], directories: host.getDirectories(rootDir) || [] }; cachedReadDirectoryResult.set(ts.ensureTrailingDirectorySeparator(rootDirPath), resultFromHost); return resultFromHost; } // If the directory is symlink do not cache the result if ((_a = host.directoryExists) === null || _a === void 0 ? void 0 : _a.call(host, rootDir)) { cachedReadDirectoryResult.set(rootDirPath, false); return false; } // Non existing directory return undefined; } /** * If the readDirectory result was already cached, it returns that * Otherwise gets result from host and caches it. * The host request is done under try catch block to avoid caching incorrect result */ function tryReadDirectory(rootDir, rootDirPath) { rootDirPath = ts.ensureTrailingDirectorySeparator(rootDirPath); var cachedResult = getCachedFileSystemEntries(rootDirPath); if (cachedResult) { return cachedResult; } try { return createCachedFileSystemEntries(rootDir, rootDirPath); } catch (_e) { // If there is exception to read directories, dont cache the result and direct the calls to host ts.Debug.assert(!cachedReadDirectoryResult.has(ts.ensureTrailingDirectorySeparator(rootDirPath))); return undefined; } } function fileNameEqual(name1, name2) { return getCanonicalFileName(name1) === getCanonicalFileName(name2); } function hasEntry(entries, name) { return ts.some(entries, function (file) { return fileNameEqual(file, name); }); } function updateFileSystemEntry(entries, baseName, isValid) { if (hasEntry(entries, baseName)) { if (!isValid) { return ts.filterMutate(entries, function (entry) { return !fileNameEqual(entry, baseName); }); } } else if (isValid) { return entries.push(baseName); } } function writeFile(fileName, data, writeByteOrderMark) { var path = toPath(fileName); var result = getCachedFileSystemEntriesForBaseDir(path); if (result) { updateFilesOfFileSystemEntry(result, getBaseNameOfFileName(fileName), /*fileExists*/ true); } return host.writeFile(fileName, data, writeByteOrderMark); } function fileExists(fileName) { var path = toPath(fileName); var result = getCachedFileSystemEntriesForBaseDir(path); return result && hasEntry(result.files, getBaseNameOfFileName(fileName)) || host.fileExists(fileName); } function directoryExists(dirPath) { var path = toPath(dirPath); return cachedReadDirectoryResult.has(ts.ensureTrailingDirectorySeparator(path)) || host.directoryExists(dirPath); } function createDirectory(dirPath) { var path = toPath(dirPath); var result = getCachedFileSystemEntriesForBaseDir(path); var baseFileName = getBaseNameOfFileName(dirPath); if (result) { updateFileSystemEntry(result.directories, baseFileName, /*isValid*/ true); } host.createDirectory(dirPath); } function getDirectories(rootDir) { var rootDirPath = toPath(rootDir); var result = tryReadDirectory(rootDir, rootDirPath); if (result) { return result.directories.slice(); } return host.getDirectories(rootDir); } function readDirectory(rootDir, extensions, excludes, includes, depth) { var rootDirPath = toPath(rootDir); var rootResult = tryReadDirectory(rootDir, rootDirPath); var rootSymLinkResult; if (rootResult !== undefined) { return ts.matchFiles(rootDir, extensions, excludes, includes, useCaseSensitiveFileNames, currentDirectory, depth, getFileSystemEntries, realpath); } return host.readDirectory(rootDir, extensions, excludes, includes, depth); function getFileSystemEntries(dir) { var path = toPath(dir); if (path === rootDirPath) { return rootResult || getFileSystemEntriesFromHost(dir, path); } var result = tryReadDirectory(dir, path); return result !== undefined ? result || getFileSystemEntriesFromHost(dir, path) : ts.emptyFileSystemEntries; } function getFileSystemEntriesFromHost(dir, path) { if (rootSymLinkResult && path === rootDirPath) return rootSymLinkResult; var result = { files: ts.map(host.readDirectory(dir, /*extensions*/ undefined, /*exclude*/ undefined, /*include*/ ["*.*"]), getBaseNameOfFileName) || ts.emptyArray, directories: host.getDirectories(dir) || ts.emptyArray }; if (path === rootDirPath) rootSymLinkResult = result; return result; } } function realpath(s) { return host.realpath ? host.realpath(s) : s; } function addOrDeleteFileOrDirectory(fileOrDirectory, fileOrDirectoryPath) { var existingResult = getCachedFileSystemEntries(fileOrDirectoryPath); if (existingResult !== undefined) { // Just clear the cache for now // For now just clear the cache, since this could mean that multiple level entries might need to be re-evaluated clearCache(); return undefined; } var parentResult = getCachedFileSystemEntriesForBaseDir(fileOrDirectoryPath); if (!parentResult) { return undefined; } // This was earlier a file (hence not in cached directory contents) // or we never cached the directory containing it if (!host.directoryExists) { // Since host doesnt support directory exists, clear the cache as otherwise it might not be same clearCache(); return undefined; } var baseName = getBaseNameOfFileName(fileOrDirectory); var fsQueryResult = { fileExists: host.fileExists(fileOrDirectoryPath), directoryExists: host.directoryExists(fileOrDirectoryPath) }; if (fsQueryResult.directoryExists || hasEntry(parentResult.directories, baseName)) { // Folder added or removed, clear the cache instead of updating the folder and its structure clearCache(); } else { // No need to update the directory structure, just files updateFilesOfFileSystemEntry(parentResult, baseName, fsQueryResult.fileExists); } return fsQueryResult; } function addOrDeleteFile(fileName, filePath, eventKind) { if (eventKind === ts.FileWatcherEventKind.Changed) { return; } var parentResult = getCachedFileSystemEntriesForBaseDir(filePath); if (parentResult) { updateFilesOfFileSystemEntry(parentResult, getBaseNameOfFileName(fileName), eventKind === ts.FileWatcherEventKind.Created); } } function updateFilesOfFileSystemEntry(parentResult, baseName, fileExists) { updateFileSystemEntry(parentResult.files, baseName, fileExists); } function clearCache() { cachedReadDirectoryResult.clear(); } } ts.createCachedDirectoryStructureHost = createCachedDirectoryStructureHost; var ConfigFileProgramReloadLevel; (function (ConfigFileProgramReloadLevel) { ConfigFileProgramReloadLevel[ConfigFileProgramReloadLevel["None"] = 0] = "None"; /** Update the file name list from the disk */ ConfigFileProgramReloadLevel[ConfigFileProgramReloadLevel["Partial"] = 1] = "Partial"; /** Reload completely by re-reading contents of config file from disk and updating program */ ConfigFileProgramReloadLevel[ConfigFileProgramReloadLevel["Full"] = 2] = "Full"; })(ConfigFileProgramReloadLevel = ts.ConfigFileProgramReloadLevel || (ts.ConfigFileProgramReloadLevel = {})); /** * Updates the map of shared extended config file watches with a new set of extended config files from a base config file of the project */ function updateSharedExtendedConfigFileWatcher(projectPath, options, extendedConfigFilesMap, createExtendedConfigFileWatch, toPath) { var _a; var extendedConfigs = ts.arrayToMap(((_a = options === null || options === void 0 ? void 0 : options.configFile) === null || _a === void 0 ? void 0 : _a.extendedSourceFiles) || ts.emptyArray, toPath); // remove project from all unrelated watchers extendedConfigFilesMap.forEach(function (watcher, extendedConfigFilePath) { if (!extendedConfigs.has(extendedConfigFilePath)) { watcher.projects.delete(projectPath); watcher.close(); } }); // Update the extended config files watcher extendedConfigs.forEach(function (extendedConfigFileName, extendedConfigFilePath) { var existing = extendedConfigFilesMap.get(extendedConfigFilePath); if (existing) { existing.projects.add(projectPath); } else { // start watching previously unseen extended config extendedConfigFilesMap.set(extendedConfigFilePath, { projects: new ts.Set([projectPath]), watcher: createExtendedConfigFileWatch(extendedConfigFileName, extendedConfigFilePath), close: function () { var existing = extendedConfigFilesMap.get(extendedConfigFilePath); if (!existing || existing.projects.size !== 0) return; existing.watcher.close(); extendedConfigFilesMap.delete(extendedConfigFilePath); }, }); } }); } ts.updateSharedExtendedConfigFileWatcher = updateSharedExtendedConfigFileWatcher; /** * Remove the project from the extended config file watchers and close not needed watches */ function clearSharedExtendedConfigFileWatcher(projectPath, extendedConfigFilesMap) { extendedConfigFilesMap.forEach(function (watcher) { if (watcher.projects.delete(projectPath)) watcher.close(); }); } ts.clearSharedExtendedConfigFileWatcher = clearSharedExtendedConfigFileWatcher; /** * Clean the extendsConfigCache when extended config file has changed */ function cleanExtendedConfigCache(extendedConfigCache, extendedConfigFilePath, toPath) { if (!extendedConfigCache.delete(extendedConfigFilePath)) return; extendedConfigCache.forEach(function (_a, key) { var _b; var extendedResult = _a.extendedResult; if ((_b = extendedResult.extendedSourceFiles) === null || _b === void 0 ? void 0 : _b.some(function (extendedFile) { return toPath(extendedFile) === extendedConfigFilePath; })) { cleanExtendedConfigCache(extendedConfigCache, key, toPath); } }); } ts.cleanExtendedConfigCache = cleanExtendedConfigCache; /** * Updates watchers based on the package json files used in module resolution */ function updatePackageJsonWatch(lookups, packageJsonWatches, createPackageJsonWatch) { var newMap = new ts.Map(lookups); ts.mutateMap(packageJsonWatches, newMap, { createNewValue: createPackageJsonWatch, onDeleteValue: ts.closeFileWatcher }); } ts.updatePackageJsonWatch = updatePackageJsonWatch; /** * Updates the existing missing file watches with the new set of missing files after new program is created */ function updateMissingFilePathsWatch(program, missingFileWatches, createMissingFileWatch) { var missingFilePaths = program.getMissingFilePaths(); // TODO(rbuckton): Should be a `Set` but that requires changing the below code that uses `mutateMap` var newMissingFilePathMap = ts.arrayToMap(missingFilePaths, ts.identity, ts.returnTrue); // Update the missing file paths watcher ts.mutateMap(missingFileWatches, newMissingFilePathMap, { // Watch the missing files createNewValue: createMissingFileWatch, // Files that are no longer missing (e.g. because they are no longer required) // should no longer be watched. onDeleteValue: ts.closeFileWatcher }); } ts.updateMissingFilePathsWatch = updateMissingFilePathsWatch; /** * Updates the existing wild card directory watches with the new set of wild card directories from the config file * after new program is created because the config file was reloaded or program was created first time from the config file * Note that there is no need to call this function when the program is updated with additional files without reloading config files, * as wildcard directories wont change unless reloading config file */ function updateWatchingWildcardDirectories(existingWatchedForWildcards, wildcardDirectories, watchDirectory) { ts.mutateMap(existingWatchedForWildcards, wildcardDirectories, { // Create new watch and recursive info createNewValue: createWildcardDirectoryWatcher, // Close existing watch thats not needed any more onDeleteValue: closeFileWatcherOf, // Close existing watch that doesnt match in the flags onExistingValue: updateWildcardDirectoryWatcher }); function createWildcardDirectoryWatcher(directory, flags) { // Create new watch and recursive info return { watcher: watchDirectory(directory, flags), flags: flags }; } function updateWildcardDirectoryWatcher(existingWatcher, flags, directory) { // Watcher needs to be updated if the recursive flags dont match if (existingWatcher.flags === flags) { return; } existingWatcher.watcher.close(); existingWatchedForWildcards.set(directory, createWildcardDirectoryWatcher(directory, flags)); } } ts.updateWatchingWildcardDirectories = updateWatchingWildcardDirectories; /* @internal */ function isIgnoredFileFromWildCardWatching(_a) { var watchedDirPath = _a.watchedDirPath, fileOrDirectory = _a.fileOrDirectory, fileOrDirectoryPath = _a.fileOrDirectoryPath, configFileName = _a.configFileName, options = _a.options, program = _a.program, extraFileExtensions = _a.extraFileExtensions, currentDirectory = _a.currentDirectory, useCaseSensitiveFileNames = _a.useCaseSensitiveFileNames, writeLog = _a.writeLog, toPath = _a.toPath; var newPath = ts.removeIgnoredPath(fileOrDirectoryPath); if (!newPath) { writeLog("Project: ".concat(configFileName, " Detected ignored path: ").concat(fileOrDirectory)); return true; } fileOrDirectoryPath = newPath; if (fileOrDirectoryPath === watchedDirPath) return false; // If the the added or created file or directory is not supported file name, ignore the file // But when watched directory is added/removed, we need to reload the file list if (ts.hasExtension(fileOrDirectoryPath) && !ts.isSupportedSourceFileName(fileOrDirectory, options, extraFileExtensions)) { writeLog("Project: ".concat(configFileName, " Detected file add/remove of non supported extension: ").concat(fileOrDirectory)); return true; } if (ts.isExcludedFile(fileOrDirectory, options.configFile.configFileSpecs, ts.getNormalizedAbsolutePath(ts.getDirectoryPath(configFileName), currentDirectory), useCaseSensitiveFileNames, currentDirectory)) { writeLog("Project: ".concat(configFileName, " Detected excluded file: ").concat(fileOrDirectory)); return true; } if (!program) return false; // We want to ignore emit file check if file is not going to be emitted next to source file // In that case we follow config file inclusion rules if (ts.outFile(options) || options.outDir) return false; // File if emitted next to input needs to be ignored if (ts.isDeclarationFileName(fileOrDirectoryPath)) { // If its declaration directory: its not ignored if not excluded by config if (options.declarationDir) return false; } else if (!ts.fileExtensionIsOneOf(fileOrDirectoryPath, ts.supportedJSExtensionsFlat)) { return false; } // just check if sourceFile with the name exists var filePathWithoutExtension = ts.removeFileExtension(fileOrDirectoryPath); var realProgram = ts.isArray(program) ? undefined : isBuilderProgram(program) ? program.getProgramOrUndefined() : program; var builderProgram = !realProgram && !ts.isArray(program) ? program : undefined; if (hasSourceFile((filePathWithoutExtension + ".ts" /* Extension.Ts */)) || hasSourceFile((filePathWithoutExtension + ".tsx" /* Extension.Tsx */))) { writeLog("Project: ".concat(configFileName, " Detected output file: ").concat(fileOrDirectory)); return true; } return false; function hasSourceFile(file) { return realProgram ? !!realProgram.getSourceFileByPath(file) : builderProgram ? builderProgram.getState().fileInfos.has(file) : !!ts.find(program, function (rootFile) { return toPath(rootFile) === file; }); } } ts.isIgnoredFileFromWildCardWatching = isIgnoredFileFromWildCardWatching; function isBuilderProgram(program) { return !!program.getState; } function isEmittedFileOfProgram(program, file) { if (!program) { return false; } return program.isEmittedFile(file); } ts.isEmittedFileOfProgram = isEmittedFileOfProgram; var WatchLogLevel; (function (WatchLogLevel) { WatchLogLevel[WatchLogLevel["None"] = 0] = "None"; WatchLogLevel[WatchLogLevel["TriggerOnly"] = 1] = "TriggerOnly"; WatchLogLevel[WatchLogLevel["Verbose"] = 2] = "Verbose"; })(WatchLogLevel = ts.WatchLogLevel || (ts.WatchLogLevel = {})); function getWatchFactory(host, watchLogLevel, log, getDetailWatchInfo) { ts.setSysLog(watchLogLevel === WatchLogLevel.Verbose ? log : ts.noop); var plainInvokeFactory = { watchFile: function (file, callback, pollingInterval, options) { return host.watchFile(file, callback, pollingInterval, options); }, watchDirectory: function (directory, callback, flags, options) { return host.watchDirectory(directory, callback, (flags & 1 /* WatchDirectoryFlags.Recursive */) !== 0, options); }, }; var triggerInvokingFactory = watchLogLevel !== WatchLogLevel.None ? { watchFile: createTriggerLoggingAddWatch("watchFile"), watchDirectory: createTriggerLoggingAddWatch("watchDirectory") } : undefined; var factory = watchLogLevel === WatchLogLevel.Verbose ? { watchFile: createFileWatcherWithLogging, watchDirectory: createDirectoryWatcherWithLogging } : triggerInvokingFactory || plainInvokeFactory; var excludeWatcherFactory = watchLogLevel === WatchLogLevel.Verbose ? createExcludeWatcherWithLogging : ts.returnNoopFileWatcher; return { watchFile: createExcludeHandlingAddWatch("watchFile"), watchDirectory: createExcludeHandlingAddWatch("watchDirectory") }; function createExcludeHandlingAddWatch(key) { return function (file, cb, flags, options, detailInfo1, detailInfo2) { var _a; return !ts.matchesExclude(file, key === "watchFile" ? options === null || options === void 0 ? void 0 : options.excludeFiles : options === null || options === void 0 ? void 0 : options.excludeDirectories, useCaseSensitiveFileNames(), ((_a = host.getCurrentDirectory) === null || _a === void 0 ? void 0 : _a.call(host)) || "") ? factory[key].call(/*thisArgs*/ undefined, file, cb, flags, options, detailInfo1, detailInfo2) : excludeWatcherFactory(file, flags, options, detailInfo1, detailInfo2); }; } function useCaseSensitiveFileNames() { return typeof host.useCaseSensitiveFileNames === "boolean" ? host.useCaseSensitiveFileNames : host.useCaseSensitiveFileNames(); } function createExcludeWatcherWithLogging(file, flags, options, detailInfo1, detailInfo2) { log("ExcludeWatcher:: Added:: ".concat(getWatchInfo(file, flags, options, detailInfo1, detailInfo2, getDetailWatchInfo))); return { close: function () { return log("ExcludeWatcher:: Close:: ".concat(getWatchInfo(file, flags, options, detailInfo1, detailInfo2, getDetailWatchInfo))); } }; } function createFileWatcherWithLogging(file, cb, flags, options, detailInfo1, detailInfo2) { log("FileWatcher:: Added:: ".concat(getWatchInfo(file, flags, options, detailInfo1, detailInfo2, getDetailWatchInfo))); var watcher = triggerInvokingFactory.watchFile(file, cb, flags, options, detailInfo1, detailInfo2); return { close: function () { log("FileWatcher:: Close:: ".concat(getWatchInfo(file, flags, options, detailInfo1, detailInfo2, getDetailWatchInfo))); watcher.close(); } }; } function createDirectoryWatcherWithLogging(file, cb, flags, options, detailInfo1, detailInfo2) { var watchInfo = "DirectoryWatcher:: Added:: ".concat(getWatchInfo(file, flags, options, detailInfo1, detailInfo2, getDetailWatchInfo)); log(watchInfo); var start = ts.timestamp(); var watcher = triggerInvokingFactory.watchDirectory(file, cb, flags, options, detailInfo1, detailInfo2); var elapsed = ts.timestamp() - start; log("Elapsed:: ".concat(elapsed, "ms ").concat(watchInfo)); return { close: function () { var watchInfo = "DirectoryWatcher:: Close:: ".concat(getWatchInfo(file, flags, options, detailInfo1, detailInfo2, getDetailWatchInfo)); log(watchInfo); var start = ts.timestamp(); watcher.close(); var elapsed = ts.timestamp() - start; log("Elapsed:: ".concat(elapsed, "ms ").concat(watchInfo)); } }; } function createTriggerLoggingAddWatch(key) { return function (file, cb, flags, options, detailInfo1, detailInfo2) { return plainInvokeFactory[key].call(/*thisArgs*/ undefined, file, function () { var args = []; for (var _i = 0; _i < arguments.length; _i++) { args[_i] = arguments[_i]; } var triggerredInfo = "".concat(key === "watchFile" ? "FileWatcher" : "DirectoryWatcher", ":: Triggered with ").concat(args[0], " ").concat(args[1] !== undefined ? args[1] : "", ":: ").concat(getWatchInfo(file, flags, options, detailInfo1, detailInfo2, getDetailWatchInfo)); log(triggerredInfo); var start = ts.timestamp(); cb.call.apply(cb, __spreadArray([/*thisArg*/ undefined], args, false)); var elapsed = ts.timestamp() - start; log("Elapsed:: ".concat(elapsed, "ms ").concat(triggerredInfo)); }, flags, options, detailInfo1, detailInfo2); }; } function getWatchInfo(file, flags, options, detailInfo1, detailInfo2, getDetailWatchInfo) { return "WatchInfo: ".concat(file, " ").concat(flags, " ").concat(JSON.stringify(options), " ").concat(getDetailWatchInfo ? getDetailWatchInfo(detailInfo1, detailInfo2) : detailInfo2 === undefined ? detailInfo1 : "".concat(detailInfo1, " ").concat(detailInfo2)); } } ts.getWatchFactory = getWatchFactory; function getFallbackOptions(options) { var fallbackPolling = options === null || options === void 0 ? void 0 : options.fallbackPolling; return { watchFile: fallbackPolling !== undefined ? fallbackPolling : ts.WatchFileKind.PriorityPollingInterval }; } ts.getFallbackOptions = getFallbackOptions; function closeFileWatcherOf(objWithWatcher) { objWithWatcher.watcher.close(); } ts.closeFileWatcherOf = closeFileWatcherOf; })(ts || (ts = {})); var ts; (function (ts) { function findConfigFile(searchPath, fileExists, configName) { if (configName === void 0) { configName = "tsconfig.json"; } return ts.forEachAncestorDirectory(searchPath, function (ancestor) { var fileName = ts.combinePaths(ancestor, configName); return fileExists(fileName) ? fileName : undefined; }); } ts.findConfigFile = findConfigFile; function resolveTripleslashReference(moduleName, containingFile) { var basePath = ts.getDirectoryPath(containingFile); var referencedFileName = ts.isRootedDiskPath(moduleName) ? moduleName : ts.combinePaths(basePath, moduleName); return ts.normalizePath(referencedFileName); } ts.resolveTripleslashReference = resolveTripleslashReference; /* @internal */ function computeCommonSourceDirectoryOfFilenames(fileNames, currentDirectory, getCanonicalFileName) { var commonPathComponents; var failed = ts.forEach(fileNames, function (sourceFile) { // Each file contributes into common source file path var sourcePathComponents = ts.getNormalizedPathComponents(sourceFile, currentDirectory); sourcePathComponents.pop(); // The base file name is not part of the common directory path if (!commonPathComponents) { // first file commonPathComponents = sourcePathComponents; return; } var n = Math.min(commonPathComponents.length, sourcePathComponents.length); for (var i = 0; i < n; i++) { if (getCanonicalFileName(commonPathComponents[i]) !== getCanonicalFileName(sourcePathComponents[i])) { if (i === 0) { // Failed to find any common path component return true; } // New common path found that is 0 -> i-1 commonPathComponents.length = i; break; } } // If the sourcePathComponents was shorter than the commonPathComponents, truncate to the sourcePathComponents if (sourcePathComponents.length < commonPathComponents.length) { commonPathComponents.length = sourcePathComponents.length; } }); // A common path can not be found when paths span multiple drives on windows, for example if (failed) { return ""; } if (!commonPathComponents) { // Can happen when all input files are .d.ts files return currentDirectory; } return ts.getPathFromPathComponents(commonPathComponents); } ts.computeCommonSourceDirectoryOfFilenames = computeCommonSourceDirectoryOfFilenames; function createCompilerHost(options, setParentNodes) { return createCompilerHostWorker(options, setParentNodes); } ts.createCompilerHost = createCompilerHost; /*@internal*/ // TODO(shkamat): update this after reworking ts build API function createCompilerHostWorker(options, setParentNodes, system) { if (system === void 0) { system = ts.sys; } var existingDirectories = new ts.Map(); var getCanonicalFileName = ts.createGetCanonicalFileName(system.useCaseSensitiveFileNames); var computeHash = ts.maybeBind(system, system.createHash) || ts.generateDjb2Hash; function getSourceFile(fileName, languageVersionOrOptions, onError) { var text; try { ts.performance.mark("beforeIORead"); text = compilerHost.readFile(fileName); ts.performance.mark("afterIORead"); ts.performance.measure("I/O Read", "beforeIORead", "afterIORead"); } catch (e) { if (onError) { onError(e.message); } text = ""; } return text !== undefined ? ts.createSourceFile(fileName, text, languageVersionOrOptions, setParentNodes) : undefined; } function directoryExists(directoryPath) { if (existingDirectories.has(directoryPath)) { return true; } if ((compilerHost.directoryExists || system.directoryExists)(directoryPath)) { existingDirectories.set(directoryPath, true); return true; } return false; } function writeFile(fileName, data, writeByteOrderMark, onError) { try { ts.performance.mark("beforeIOWrite"); // NOTE: If patchWriteFileEnsuringDirectory has been called, // the system.writeFile will do its own directory creation and // the ensureDirectoriesExist call will always be redundant. ts.writeFileEnsuringDirectories(fileName, data, writeByteOrderMark, function (path, data, writeByteOrderMark) { return writeFileWorker(path, data, writeByteOrderMark); }, function (path) { return (compilerHost.createDirectory || system.createDirectory)(path); }, function (path) { return directoryExists(path); }); ts.performance.mark("afterIOWrite"); ts.performance.measure("I/O Write", "beforeIOWrite", "afterIOWrite"); } catch (e) { if (onError) { onError(e.message); } } } var outputFingerprints; function writeFileWorker(fileName, data, writeByteOrderMark) { if (!ts.isWatchSet(options) || !system.getModifiedTime) { system.writeFile(fileName, data, writeByteOrderMark); return; } if (!outputFingerprints) { outputFingerprints = new ts.Map(); } var hash = computeHash(data); var mtimeBefore = system.getModifiedTime(fileName); if (mtimeBefore) { var fingerprint = outputFingerprints.get(fileName); // If output has not been changed, and the file has no external modification if (fingerprint && fingerprint.byteOrderMark === writeByteOrderMark && fingerprint.hash === hash && fingerprint.mtime.getTime() === mtimeBefore.getTime()) { return; } } system.writeFile(fileName, data, writeByteOrderMark); var mtimeAfter = system.getModifiedTime(fileName) || ts.missingFileModifiedTime; outputFingerprints.set(fileName, { hash: hash, byteOrderMark: writeByteOrderMark, mtime: mtimeAfter }); } function getDefaultLibLocation() { return ts.getDirectoryPath(ts.normalizePath(system.getExecutingFilePath())); } var newLine = ts.getNewLineCharacter(options, function () { return system.newLine; }); var realpath = system.realpath && (function (path) { return system.realpath(path); }); var compilerHost = { getSourceFile: getSourceFile, getDefaultLibLocation: getDefaultLibLocation, getDefaultLibFileName: function (options) { return ts.combinePaths(getDefaultLibLocation(), ts.getDefaultLibFileName(options)); }, writeFile: writeFile, getCurrentDirectory: ts.memoize(function () { return system.getCurrentDirectory(); }), useCaseSensitiveFileNames: function () { return system.useCaseSensitiveFileNames; }, getCanonicalFileName: getCanonicalFileName, getNewLine: function () { return newLine; }, fileExists: function (fileName) { return system.fileExists(fileName); }, readFile: function (fileName) { return system.readFile(fileName); }, trace: function (s) { return system.write(s + newLine); }, directoryExists: function (directoryName) { return system.directoryExists(directoryName); }, getEnvironmentVariable: function (name) { return system.getEnvironmentVariable ? system.getEnvironmentVariable(name) : ""; }, getDirectories: function (path) { return system.getDirectories(path); }, realpath: realpath, readDirectory: function (path, extensions, include, exclude, depth) { return system.readDirectory(path, extensions, include, exclude, depth); }, createDirectory: function (d) { return system.createDirectory(d); }, createHash: ts.maybeBind(system, system.createHash) }; return compilerHost; } ts.createCompilerHostWorker = createCompilerHostWorker; /*@internal*/ function changeCompilerHostLikeToUseCache(host, toPath, getSourceFile) { var originalReadFile = host.readFile; var originalFileExists = host.fileExists; var originalDirectoryExists = host.directoryExists; var originalCreateDirectory = host.createDirectory; var originalWriteFile = host.writeFile; var readFileCache = new ts.Map(); var fileExistsCache = new ts.Map(); var directoryExistsCache = new ts.Map(); var sourceFileCache = new ts.Map(); var readFileWithCache = function (fileName) { var key = toPath(fileName); var value = readFileCache.get(key); if (value !== undefined) return value !== false ? value : undefined; return setReadFileCache(key, fileName); }; var setReadFileCache = function (key, fileName) { var newValue = originalReadFile.call(host, fileName); readFileCache.set(key, newValue !== undefined ? newValue : false); return newValue; }; host.readFile = function (fileName) { var key = toPath(fileName); var value = readFileCache.get(key); if (value !== undefined) return value !== false ? value : undefined; // could be .d.ts from output // Cache json or buildInfo if (!ts.fileExtensionIs(fileName, ".json" /* Extension.Json */) && !ts.isBuildInfoFile(fileName)) { return originalReadFile.call(host, fileName); } return setReadFileCache(key, fileName); }; var getSourceFileWithCache = getSourceFile ? function (fileName, languageVersion, onError, shouldCreateNewSourceFile) { var key = toPath(fileName); var value = sourceFileCache.get(key); if (value) return value; var sourceFile = getSourceFile(fileName, languageVersion, onError, shouldCreateNewSourceFile); if (sourceFile && (ts.isDeclarationFileName(fileName) || ts.fileExtensionIs(fileName, ".json" /* Extension.Json */))) { sourceFileCache.set(key, sourceFile); } return sourceFile; } : undefined; // fileExists for any kind of extension host.fileExists = function (fileName) { var key = toPath(fileName); var value = fileExistsCache.get(key); if (value !== undefined) return value; var newValue = originalFileExists.call(host, fileName); fileExistsCache.set(key, !!newValue); return newValue; }; if (originalWriteFile) { host.writeFile = function (fileName, data) { var rest = []; for (var _i = 2; _i < arguments.length; _i++) { rest[_i - 2] = arguments[_i]; } var key = toPath(fileName); fileExistsCache.delete(key); var value = readFileCache.get(key); if (value !== undefined && value !== data) { readFileCache.delete(key); sourceFileCache.delete(key); } else if (getSourceFileWithCache) { var sourceFile = sourceFileCache.get(key); if (sourceFile && sourceFile.text !== data) { sourceFileCache.delete(key); } } originalWriteFile.call.apply(originalWriteFile, __spreadArray([host, fileName, data], rest, false)); }; } // directoryExists if (originalDirectoryExists && originalCreateDirectory) { host.directoryExists = function (directory) { var key = toPath(directory); var value = directoryExistsCache.get(key); if (value !== undefined) return value; var newValue = originalDirectoryExists.call(host, directory); directoryExistsCache.set(key, !!newValue); return newValue; }; host.createDirectory = function (directory) { var key = toPath(directory); directoryExistsCache.delete(key); originalCreateDirectory.call(host, directory); }; } return { originalReadFile: originalReadFile, originalFileExists: originalFileExists, originalDirectoryExists: originalDirectoryExists, originalCreateDirectory: originalCreateDirectory, originalWriteFile: originalWriteFile, getSourceFileWithCache: getSourceFileWithCache, readFileWithCache: readFileWithCache }; } ts.changeCompilerHostLikeToUseCache = changeCompilerHostLikeToUseCache; function getPreEmitDiagnostics(program, sourceFile, cancellationToken) { var diagnostics; diagnostics = ts.addRange(diagnostics, program.getConfigFileParsingDiagnostics()); diagnostics = ts.addRange(diagnostics, program.getOptionsDiagnostics(cancellationToken)); diagnostics = ts.addRange(diagnostics, program.getSyntacticDiagnostics(sourceFile, cancellationToken)); diagnostics = ts.addRange(diagnostics, program.getGlobalDiagnostics(cancellationToken)); diagnostics = ts.addRange(diagnostics, program.getSemanticDiagnostics(sourceFile, cancellationToken)); if (ts.getEmitDeclarations(program.getCompilerOptions())) { diagnostics = ts.addRange(diagnostics, program.getDeclarationDiagnostics(sourceFile, cancellationToken)); } return ts.sortAndDeduplicateDiagnostics(diagnostics || ts.emptyArray); } ts.getPreEmitDiagnostics = getPreEmitDiagnostics; function formatDiagnostics(diagnostics, host) { var output = ""; for (var _i = 0, diagnostics_3 = diagnostics; _i < diagnostics_3.length; _i++) { var diagnostic = diagnostics_3[_i]; output += formatDiagnostic(diagnostic, host); } return output; } ts.formatDiagnostics = formatDiagnostics; function formatDiagnostic(diagnostic, host) { var errorMessage = "".concat(ts.diagnosticCategoryName(diagnostic), " TS").concat(diagnostic.code, ": ").concat(flattenDiagnosticMessageText(diagnostic.messageText, host.getNewLine())).concat(host.getNewLine()); if (diagnostic.file) { var _a = ts.getLineAndCharacterOfPosition(diagnostic.file, diagnostic.start), line = _a.line, character = _a.character; // TODO: GH#18217 var fileName = diagnostic.file.fileName; var relativeFileName = ts.convertToRelativePath(fileName, host.getCurrentDirectory(), function (fileName) { return host.getCanonicalFileName(fileName); }); return "".concat(relativeFileName, "(").concat(line + 1, ",").concat(character + 1, "): ") + errorMessage; } return errorMessage; } ts.formatDiagnostic = formatDiagnostic; /** @internal */ var ForegroundColorEscapeSequences; (function (ForegroundColorEscapeSequences) { ForegroundColorEscapeSequences["Grey"] = "\u001B[90m"; ForegroundColorEscapeSequences["Red"] = "\u001B[91m"; ForegroundColorEscapeSequences["Yellow"] = "\u001B[93m"; ForegroundColorEscapeSequences["Blue"] = "\u001B[94m"; ForegroundColorEscapeSequences["Cyan"] = "\u001B[96m"; })(ForegroundColorEscapeSequences = ts.ForegroundColorEscapeSequences || (ts.ForegroundColorEscapeSequences = {})); var gutterStyleSequence = "\u001b[7m"; var gutterSeparator = " "; var resetEscapeSequence = "\u001b[0m"; var ellipsis = "..."; var halfIndent = " "; var indent = " "; function getCategoryFormat(category) { switch (category) { case ts.DiagnosticCategory.Error: return ForegroundColorEscapeSequences.Red; case ts.DiagnosticCategory.Warning: return ForegroundColorEscapeSequences.Yellow; case ts.DiagnosticCategory.Suggestion: return ts.Debug.fail("Should never get an Info diagnostic on the command line."); case ts.DiagnosticCategory.Message: return ForegroundColorEscapeSequences.Blue; } } /** @internal */ function formatColorAndReset(text, formatStyle) { return formatStyle + text + resetEscapeSequence; } ts.formatColorAndReset = formatColorAndReset; function formatCodeSpan(file, start, length, indent, squiggleColor, host) { var _a = ts.getLineAndCharacterOfPosition(file, start), firstLine = _a.line, firstLineChar = _a.character; var _b = ts.getLineAndCharacterOfPosition(file, start + length), lastLine = _b.line, lastLineChar = _b.character; var lastLineInFile = ts.getLineAndCharacterOfPosition(file, file.text.length).line; var hasMoreThanFiveLines = (lastLine - firstLine) >= 4; var gutterWidth = (lastLine + 1 + "").length; if (hasMoreThanFiveLines) { gutterWidth = Math.max(ellipsis.length, gutterWidth); } var context = ""; for (var i = firstLine; i <= lastLine; i++) { context += host.getNewLine(); // If the error spans over 5 lines, we'll only show the first 2 and last 2 lines, // so we'll skip ahead to the second-to-last line. if (hasMoreThanFiveLines && firstLine + 1 < i && i < lastLine - 1) { context += indent + formatColorAndReset(ts.padLeft(ellipsis, gutterWidth), gutterStyleSequence) + gutterSeparator + host.getNewLine(); i = lastLine - 1; } var lineStart = ts.getPositionOfLineAndCharacter(file, i, 0); var lineEnd = i < lastLineInFile ? ts.getPositionOfLineAndCharacter(file, i + 1, 0) : file.text.length; var lineContent = file.text.slice(lineStart, lineEnd); lineContent = ts.trimStringEnd(lineContent); // trim from end lineContent = lineContent.replace(/\t/g, " "); // convert tabs to single spaces // Output the gutter and the actual contents of the line. context += indent + formatColorAndReset(ts.padLeft(i + 1 + "", gutterWidth), gutterStyleSequence) + gutterSeparator; context += lineContent + host.getNewLine(); // Output the gutter and the error span for the line using tildes. context += indent + formatColorAndReset(ts.padLeft("", gutterWidth), gutterStyleSequence) + gutterSeparator; context += squiggleColor; if (i === firstLine) { // If we're on the last line, then limit it to the last character of the last line. // Otherwise, we'll just squiggle the rest of the line, giving 'slice' no end position. var lastCharForLine = i === lastLine ? lastLineChar : undefined; context += lineContent.slice(0, firstLineChar).replace(/\S/g, " "); context += lineContent.slice(firstLineChar, lastCharForLine).replace(/./g, "~"); } else if (i === lastLine) { context += lineContent.slice(0, lastLineChar).replace(/./g, "~"); } else { // Squiggle the entire line. context += lineContent.replace(/./g, "~"); } context += resetEscapeSequence; } return context; } /* @internal */ function formatLocation(file, start, host, color) { if (color === void 0) { color = formatColorAndReset; } var _a = ts.getLineAndCharacterOfPosition(file, start), firstLine = _a.line, firstLineChar = _a.character; // TODO: GH#18217 var relativeFileName = host ? ts.convertToRelativePath(file.fileName, host.getCurrentDirectory(), function (fileName) { return host.getCanonicalFileName(fileName); }) : file.fileName; var output = ""; output += color(relativeFileName, ForegroundColorEscapeSequences.Cyan); output += ":"; output += color("".concat(firstLine + 1), ForegroundColorEscapeSequences.Yellow); output += ":"; output += color("".concat(firstLineChar + 1), ForegroundColorEscapeSequences.Yellow); return output; } ts.formatLocation = formatLocation; function formatDiagnosticsWithColorAndContext(diagnostics, host) { var output = ""; for (var _i = 0, diagnostics_4 = diagnostics; _i < diagnostics_4.length; _i++) { var diagnostic = diagnostics_4[_i]; if (diagnostic.file) { var file = diagnostic.file, start = diagnostic.start; output += formatLocation(file, start, host); // TODO: GH#18217 output += " - "; } output += formatColorAndReset(ts.diagnosticCategoryName(diagnostic), getCategoryFormat(diagnostic.category)); output += formatColorAndReset(" TS".concat(diagnostic.code, ": "), ForegroundColorEscapeSequences.Grey); output += flattenDiagnosticMessageText(diagnostic.messageText, host.getNewLine()); if (diagnostic.file) { output += host.getNewLine(); output += formatCodeSpan(diagnostic.file, diagnostic.start, diagnostic.length, "", getCategoryFormat(diagnostic.category), host); // TODO: GH#18217 } if (diagnostic.relatedInformation) { output += host.getNewLine(); for (var _a = 0, _b = diagnostic.relatedInformation; _a < _b.length; _a++) { var _c = _b[_a], file = _c.file, start = _c.start, length_9 = _c.length, messageText = _c.messageText; if (file) { output += host.getNewLine(); output += halfIndent + formatLocation(file, start, host); // TODO: GH#18217 output += formatCodeSpan(file, start, length_9, indent, ForegroundColorEscapeSequences.Cyan, host); // TODO: GH#18217 } output += host.getNewLine(); output += indent + flattenDiagnosticMessageText(messageText, host.getNewLine()); } } output += host.getNewLine(); } return output; } ts.formatDiagnosticsWithColorAndContext = formatDiagnosticsWithColorAndContext; function flattenDiagnosticMessageText(diag, newLine, indent) { if (indent === void 0) { indent = 0; } if (ts.isString(diag)) { return diag; } else if (diag === undefined) { return ""; } var result = ""; if (indent) { result += newLine; for (var i = 0; i < indent; i++) { result += " "; } } result += diag.messageText; indent++; if (diag.next) { for (var _i = 0, _a = diag.next; _i < _a.length; _i++) { var kid = _a[_i]; result += flattenDiagnosticMessageText(kid, newLine, indent); } } return result; } ts.flattenDiagnosticMessageText = flattenDiagnosticMessageText; /* @internal */ function loadWithTypeDirectiveCache(names, containingFile, redirectedReference, containingFileMode, loader) { if (names.length === 0) { return []; } var resolutions = []; var cache = new ts.Map(); for (var _i = 0, names_2 = names; _i < names_2.length; _i++) { var name = names_2[_i]; var result = void 0; var mode = getModeForFileReference(name, containingFileMode); // We lower-case all type references because npm automatically lowercases all packages. See GH#9824. var strName = ts.isString(name) ? name : name.fileName.toLowerCase(); var cacheKey = mode !== undefined ? "".concat(mode, "|").concat(strName) : strName; if (cache.has(cacheKey)) { result = cache.get(cacheKey); } else { cache.set(cacheKey, result = loader(strName, containingFile, redirectedReference, mode)); } resolutions.push(result); } return resolutions; } ts.loadWithTypeDirectiveCache = loadWithTypeDirectiveCache; ; /** * Calculates the resulting resolution mode for some reference in some file - this is generally the explicitly * provided resolution mode in the reference, unless one is not present, in which case it is the mode of the containing file. */ function getModeForFileReference(ref, containingFileMode) { return (ts.isString(ref) ? containingFileMode : ref.resolutionMode) || containingFileMode; } ts.getModeForFileReference = getModeForFileReference; function getModeForResolutionAtIndex(file, index) { if (file.impliedNodeFormat === undefined) return undefined; // we ensure all elements of file.imports and file.moduleAugmentations have the relevant parent pointers set during program setup, // so it's safe to use them even pre-bind return getModeForUsageLocation(file, getModuleNameStringLiteralAt(file, index)); } ts.getModeForResolutionAtIndex = getModeForResolutionAtIndex; /* @internal */ function isExclusivelyTypeOnlyImportOrExport(decl) { var _a; if (ts.isExportDeclaration(decl)) { return decl.isTypeOnly; } if ((_a = decl.importClause) === null || _a === void 0 ? void 0 : _a.isTypeOnly) { return true; } return false; } ts.isExclusivelyTypeOnlyImportOrExport = isExclusivelyTypeOnlyImportOrExport; /** * Calculates the final resolution mode for a given module reference node. This is generally the explicitly provided resolution mode, if * one exists, or the mode of the containing source file. (Excepting import=require, which is always commonjs, and dynamic import, which is always esm). * Notably, this function always returns `undefined` if the containing file has an `undefined` `impliedNodeFormat` - this field is only set when * `moduleResolution` is `node16`+. * @param file The file the import or import-like reference is contained within * @param usage The module reference string * @returns The final resolution mode of the import */ function getModeForUsageLocation(file, usage) { var _a, _b; if (file.impliedNodeFormat === undefined) return undefined; if ((ts.isImportDeclaration(usage.parent) || ts.isExportDeclaration(usage.parent))) { var isTypeOnly = isExclusivelyTypeOnlyImportOrExport(usage.parent); if (isTypeOnly) { var override = getResolutionModeOverrideForClause(usage.parent.assertClause); if (override) { return override; } } } if (usage.parent.parent && ts.isImportTypeNode(usage.parent.parent)) { var override = getResolutionModeOverrideForClause((_a = usage.parent.parent.assertions) === null || _a === void 0 ? void 0 : _a.assertClause); if (override) { return override; } } if (file.impliedNodeFormat !== ts.ModuleKind.ESNext) { // in cjs files, import call expressions are esm format, otherwise everything is cjs return ts.isImportCall(ts.walkUpParenthesizedExpressions(usage.parent)) ? ts.ModuleKind.ESNext : ts.ModuleKind.CommonJS; } // in esm files, import=require statements are cjs format, otherwise everything is esm // imports are only parent'd up to their containing declaration/expression, so access farther parents with care var exprParentParent = (_b = ts.walkUpParenthesizedExpressions(usage.parent)) === null || _b === void 0 ? void 0 : _b.parent; return exprParentParent && ts.isImportEqualsDeclaration(exprParentParent) ? ts.ModuleKind.CommonJS : ts.ModuleKind.ESNext; } ts.getModeForUsageLocation = getModeForUsageLocation; /* @internal */ function getResolutionModeOverrideForClause(clause, grammarErrorOnNode) { if (!clause) return undefined; if (ts.length(clause.elements) !== 1) { grammarErrorOnNode === null || grammarErrorOnNode === void 0 ? void 0 : grammarErrorOnNode(clause, ts.Diagnostics.Type_import_assertions_should_have_exactly_one_key_resolution_mode_with_value_import_or_require); return undefined; } var elem = clause.elements[0]; if (!ts.isStringLiteralLike(elem.name)) return undefined; if (elem.name.text !== "resolution-mode") { grammarErrorOnNode === null || grammarErrorOnNode === void 0 ? void 0 : grammarErrorOnNode(elem.name, ts.Diagnostics.resolution_mode_is_the_only_valid_key_for_type_import_assertions); return undefined; } if (!ts.isStringLiteralLike(elem.value)) return undefined; if (elem.value.text !== "import" && elem.value.text !== "require") { grammarErrorOnNode === null || grammarErrorOnNode === void 0 ? void 0 : grammarErrorOnNode(elem.value, ts.Diagnostics.resolution_mode_should_be_either_require_or_import); return undefined; } return elem.value.text === "import" ? ts.ModuleKind.ESNext : ts.ModuleKind.CommonJS; } ts.getResolutionModeOverrideForClause = getResolutionModeOverrideForClause; /* @internal */ function loadWithModeAwareCache(names, containingFile, containingFileName, redirectedReference, loader) { if (names.length === 0) { return []; } var resolutions = []; var cache = new ts.Map(); var i = 0; for (var _i = 0, names_3 = names; _i < names_3.length; _i++) { var name = names_3[_i]; var result = void 0; var mode = getModeForResolutionAtIndex(containingFile, i); i++; var cacheKey = mode !== undefined ? "".concat(mode, "|").concat(name) : name; if (cache.has(cacheKey)) { result = cache.get(cacheKey); } else { cache.set(cacheKey, result = loader(name, mode, containingFileName, redirectedReference)); } resolutions.push(result); } return resolutions; } ts.loadWithModeAwareCache = loadWithModeAwareCache; /* @internal */ function forEachResolvedProjectReference(resolvedProjectReferences, cb) { return forEachProjectReference(/*projectReferences*/ undefined, resolvedProjectReferences, function (resolvedRef, parent) { return resolvedRef && cb(resolvedRef, parent); }); } ts.forEachResolvedProjectReference = forEachResolvedProjectReference; function forEachProjectReference(projectReferences, resolvedProjectReferences, cbResolvedRef, cbRef) { var seenResolvedRefs; return worker(projectReferences, resolvedProjectReferences, /*parent*/ undefined); function worker(projectReferences, resolvedProjectReferences, parent) { // Visit project references first if (cbRef) { var result = cbRef(projectReferences, parent); if (result) return result; } return ts.forEach(resolvedProjectReferences, function (resolvedRef, index) { if (resolvedRef && (seenResolvedRefs === null || seenResolvedRefs === void 0 ? void 0 : seenResolvedRefs.has(resolvedRef.sourceFile.path))) { // ignore recursives return undefined; } var result = cbResolvedRef(resolvedRef, parent, index); if (result || !resolvedRef) return result; (seenResolvedRefs || (seenResolvedRefs = new ts.Set())).add(resolvedRef.sourceFile.path); return worker(resolvedRef.commandLine.projectReferences, resolvedRef.references, resolvedRef); }); } } /* @internal */ ts.inferredTypesContainingFile = "__inferred type names__.ts"; /*@internal*/ function isReferencedFile(reason) { switch (reason === null || reason === void 0 ? void 0 : reason.kind) { case ts.FileIncludeKind.Import: case ts.FileIncludeKind.ReferenceFile: case ts.FileIncludeKind.TypeReferenceDirective: case ts.FileIncludeKind.LibReferenceDirective: return true; default: return false; } } ts.isReferencedFile = isReferencedFile; /*@internal*/ function isReferenceFileLocation(location) { return location.pos !== undefined; } ts.isReferenceFileLocation = isReferenceFileLocation; /*@internal*/ function getReferencedFileLocation(getSourceFileByPath, ref) { var _a, _b, _c; var _d, _e, _f, _g; var file = ts.Debug.checkDefined(getSourceFileByPath(ref.file)); var kind = ref.kind, index = ref.index; var pos, end, packageId, resolutionMode; switch (kind) { case ts.FileIncludeKind.Import: var importLiteral = getModuleNameStringLiteralAt(file, index); packageId = (_e = (_d = file.resolvedModules) === null || _d === void 0 ? void 0 : _d.get(importLiteral.text, getModeForResolutionAtIndex(file, index))) === null || _e === void 0 ? void 0 : _e.packageId; if (importLiteral.pos === -1) return { file: file, packageId: packageId, text: importLiteral.text }; pos = ts.skipTrivia(file.text, importLiteral.pos); end = importLiteral.end; break; case ts.FileIncludeKind.ReferenceFile: (_a = file.referencedFiles[index], pos = _a.pos, end = _a.end); break; case ts.FileIncludeKind.TypeReferenceDirective: (_b = file.typeReferenceDirectives[index], pos = _b.pos, end = _b.end, resolutionMode = _b.resolutionMode); packageId = (_g = (_f = file.resolvedTypeReferenceDirectiveNames) === null || _f === void 0 ? void 0 : _f.get(ts.toFileNameLowerCase(file.typeReferenceDirectives[index].fileName), resolutionMode || file.impliedNodeFormat)) === null || _g === void 0 ? void 0 : _g.packageId; break; case ts.FileIncludeKind.LibReferenceDirective: (_c = file.libReferenceDirectives[index], pos = _c.pos, end = _c.end); break; default: return ts.Debug.assertNever(kind); } return { file: file, pos: pos, end: end, packageId: packageId }; } ts.getReferencedFileLocation = getReferencedFileLocation; /** * Determines if program structure is upto date or needs to be recreated */ /* @internal */ function isProgramUptoDate(program, rootFileNames, newOptions, getSourceVersion, fileExists, hasInvalidatedResolution, hasChangedAutomaticTypeDirectiveNames, getParsedCommandLine, projectReferences) { // If we haven't created a program yet or have changed automatic type directives, then it is not up-to-date if (!program || (hasChangedAutomaticTypeDirectiveNames === null || hasChangedAutomaticTypeDirectiveNames === void 0 ? void 0 : hasChangedAutomaticTypeDirectiveNames())) return false; // If root file names don't match if (!ts.arrayIsEqualTo(program.getRootFileNames(), rootFileNames)) return false; var seenResolvedRefs; // If project references don't match if (!ts.arrayIsEqualTo(program.getProjectReferences(), projectReferences, projectReferenceUptoDate)) return false; // If any file is not up-to-date, then the whole program is not up-to-date if (program.getSourceFiles().some(sourceFileNotUptoDate)) return false; // If any of the missing file paths are now created if (program.getMissingFilePaths().some(fileExists)) return false; var currentOptions = program.getCompilerOptions(); // If the compilation settings do no match, then the program is not up-to-date if (!ts.compareDataObjects(currentOptions, newOptions)) return false; // If everything matches but the text of config file is changed, // error locations can change for program options, so update the program if (currentOptions.configFile && newOptions.configFile) return currentOptions.configFile.text === newOptions.configFile.text; return true; function sourceFileNotUptoDate(sourceFile) { return !sourceFileVersionUptoDate(sourceFile) || hasInvalidatedResolution(sourceFile.path); } function sourceFileVersionUptoDate(sourceFile) { return sourceFile.version === getSourceVersion(sourceFile.resolvedPath, sourceFile.fileName); } function projectReferenceUptoDate(oldRef, newRef, index) { return ts.projectReferenceIsEqualTo(oldRef, newRef) && resolvedProjectReferenceUptoDate(program.getResolvedProjectReferences()[index], oldRef); } function resolvedProjectReferenceUptoDate(oldResolvedRef, oldRef) { if (oldResolvedRef) { // Assume true if (ts.contains(seenResolvedRefs, oldResolvedRef)) return true; var refPath_1 = resolveProjectReferencePath(oldRef); var newParsedCommandLine = getParsedCommandLine(refPath_1); // Check if config file exists if (!newParsedCommandLine) return false; // If change in source file if (oldResolvedRef.commandLine.options.configFile !== newParsedCommandLine.options.configFile) return false; // check file names if (!ts.arrayIsEqualTo(oldResolvedRef.commandLine.fileNames, newParsedCommandLine.fileNames)) return false; // Add to seen before checking the referenced paths of this config file (seenResolvedRefs || (seenResolvedRefs = [])).push(oldResolvedRef); // If child project references are upto date, this project reference is uptodate return !ts.forEach(oldResolvedRef.references, function (childResolvedRef, index) { return !resolvedProjectReferenceUptoDate(childResolvedRef, oldResolvedRef.commandLine.projectReferences[index]); }); } // In old program, not able to resolve project reference path, // so if config file doesnt exist, it is uptodate. var refPath = resolveProjectReferencePath(oldRef); return !getParsedCommandLine(refPath); } } ts.isProgramUptoDate = isProgramUptoDate; function getConfigFileParsingDiagnostics(configFileParseResult) { return configFileParseResult.options.configFile ? __spreadArray(__spreadArray([], configFileParseResult.options.configFile.parseDiagnostics, true), configFileParseResult.errors, true) : configFileParseResult.errors; } ts.getConfigFileParsingDiagnostics = getConfigFileParsingDiagnostics; /** * A function for determining if a given file is esm or cjs format, assuming modern node module resolution rules, as configured by the * `options` parameter. * * @param fileName The normalized absolute path to check the format of (it need not exist on disk) * @param [packageJsonInfoCache] A cache for package file lookups - it's best to have a cache when this function is called often * @param host The ModuleResolutionHost which can perform the filesystem lookups for package json data * @param options The compiler options to perform the analysis under - relevant options are `moduleResolution` and `traceResolution` * @returns `undefined` if the path has no relevant implied format, `ModuleKind.ESNext` for esm format, and `ModuleKind.CommonJS` for cjs format */ function getImpliedNodeFormatForFile(fileName, packageJsonInfoCache, host, options) { switch (ts.getEmitModuleResolutionKind(options)) { case ts.ModuleResolutionKind.Node16: case ts.ModuleResolutionKind.NodeNext: return ts.fileExtensionIsOneOf(fileName, [".d.mts" /* Extension.Dmts */, ".mts" /* Extension.Mts */, ".mjs" /* Extension.Mjs */]) ? ts.ModuleKind.ESNext : ts.fileExtensionIsOneOf(fileName, [".d.cts" /* Extension.Dcts */, ".cts" /* Extension.Cts */, ".cjs" /* Extension.Cjs */]) ? ts.ModuleKind.CommonJS : ts.fileExtensionIsOneOf(fileName, [".d.ts" /* Extension.Dts */, ".ts" /* Extension.Ts */, ".tsx" /* Extension.Tsx */, ".js" /* Extension.Js */, ".jsx" /* Extension.Jsx */]) ? lookupFromPackageJson() : undefined; // other extensions, like `json` or `tsbuildinfo`, are set as `undefined` here but they should never be fed through the transformer pipeline default: return undefined; } function lookupFromPackageJson() { var scope = ts.getPackageScopeForPath(fileName, packageJsonInfoCache, host, options); return (scope === null || scope === void 0 ? void 0 : scope.packageJsonContent.type) === "module" ? ts.ModuleKind.ESNext : ts.ModuleKind.CommonJS; } } ts.getImpliedNodeFormatForFile = getImpliedNodeFormatForFile; /** @internal */ ts.plainJSErrors = new ts.Set([ // binder errors ts.Diagnostics.Cannot_redeclare_block_scoped_variable_0.code, ts.Diagnostics.A_module_cannot_have_multiple_default_exports.code, ts.Diagnostics.Another_export_default_is_here.code, ts.Diagnostics.The_first_export_default_is_here.code, ts.Diagnostics.Identifier_expected_0_is_a_reserved_word_at_the_top_level_of_a_module.code, ts.Diagnostics.Identifier_expected_0_is_a_reserved_word_in_strict_mode_Modules_are_automatically_in_strict_mode.code, ts.Diagnostics.Identifier_expected_0_is_a_reserved_word_that_cannot_be_used_here.code, ts.Diagnostics.constructor_is_a_reserved_word.code, ts.Diagnostics.delete_cannot_be_called_on_an_identifier_in_strict_mode.code, ts.Diagnostics.Code_contained_in_a_class_is_evaluated_in_JavaScript_s_strict_mode_which_does_not_allow_this_use_of_0_For_more_information_see_https_Colon_Slash_Slashdeveloper_mozilla_org_Slashen_US_Slashdocs_SlashWeb_SlashJavaScript_SlashReference_SlashStrict_mode.code, ts.Diagnostics.Invalid_use_of_0_Modules_are_automatically_in_strict_mode.code, ts.Diagnostics.Invalid_use_of_0_in_strict_mode.code, ts.Diagnostics.A_label_is_not_allowed_here.code, ts.Diagnostics.Octal_literals_are_not_allowed_in_strict_mode.code, ts.Diagnostics.with_statements_are_not_allowed_in_strict_mode.code, // grammar errors ts.Diagnostics.A_break_statement_can_only_be_used_within_an_enclosing_iteration_or_switch_statement.code, ts.Diagnostics.A_break_statement_can_only_jump_to_a_label_of_an_enclosing_statement.code, ts.Diagnostics.A_class_declaration_without_the_default_modifier_must_have_a_name.code, ts.Diagnostics.A_class_member_cannot_have_the_0_keyword.code, ts.Diagnostics.A_comma_expression_is_not_allowed_in_a_computed_property_name.code, ts.Diagnostics.A_continue_statement_can_only_be_used_within_an_enclosing_iteration_statement.code, ts.Diagnostics.A_continue_statement_can_only_jump_to_a_label_of_an_enclosing_iteration_statement.code, ts.Diagnostics.A_continue_statement_can_only_jump_to_a_label_of_an_enclosing_iteration_statement.code, ts.Diagnostics.A_default_clause_cannot_appear_more_than_once_in_a_switch_statement.code, ts.Diagnostics.A_default_export_must_be_at_the_top_level_of_a_file_or_module_declaration.code, ts.Diagnostics.A_definite_assignment_assertion_is_not_permitted_in_this_context.code, ts.Diagnostics.A_destructuring_declaration_must_have_an_initializer.code, ts.Diagnostics.A_get_accessor_cannot_have_parameters.code, ts.Diagnostics.A_rest_element_cannot_contain_a_binding_pattern.code, ts.Diagnostics.A_rest_element_cannot_have_a_property_name.code, ts.Diagnostics.A_rest_element_cannot_have_an_initializer.code, ts.Diagnostics.A_rest_element_must_be_last_in_a_destructuring_pattern.code, ts.Diagnostics.A_rest_parameter_cannot_have_an_initializer.code, ts.Diagnostics.A_rest_parameter_must_be_last_in_a_parameter_list.code, ts.Diagnostics.A_rest_parameter_or_binding_pattern_may_not_have_a_trailing_comma.code, ts.Diagnostics.A_return_statement_cannot_be_used_inside_a_class_static_block.code, ts.Diagnostics.A_set_accessor_cannot_have_rest_parameter.code, ts.Diagnostics.A_set_accessor_must_have_exactly_one_parameter.code, ts.Diagnostics.An_export_declaration_can_only_be_used_at_the_top_level_of_a_module.code, ts.Diagnostics.An_export_declaration_cannot_have_modifiers.code, ts.Diagnostics.An_import_declaration_can_only_be_used_at_the_top_level_of_a_module.code, ts.Diagnostics.An_import_declaration_cannot_have_modifiers.code, ts.Diagnostics.An_object_member_cannot_be_declared_optional.code, ts.Diagnostics.Argument_of_dynamic_import_cannot_be_spread_element.code, ts.Diagnostics.Cannot_assign_to_private_method_0_Private_methods_are_not_writable.code, ts.Diagnostics.Cannot_redeclare_identifier_0_in_catch_clause.code, ts.Diagnostics.Catch_clause_variable_cannot_have_an_initializer.code, ts.Diagnostics.Class_decorators_can_t_be_used_with_static_private_identifier_Consider_removing_the_experimental_decorator.code, ts.Diagnostics.Classes_can_only_extend_a_single_class.code, ts.Diagnostics.Classes_may_not_have_a_field_named_constructor.code, ts.Diagnostics.Did_you_mean_to_use_a_Colon_An_can_only_follow_a_property_name_when_the_containing_object_literal_is_part_of_a_destructuring_pattern.code, ts.Diagnostics.Duplicate_label_0.code, ts.Diagnostics.Dynamic_imports_can_only_accept_a_module_specifier_and_an_optional_assertion_as_arguments.code, ts.Diagnostics.For_await_loops_cannot_be_used_inside_a_class_static_block.code, ts.Diagnostics.JSX_attributes_must_only_be_assigned_a_non_empty_expression.code, ts.Diagnostics.JSX_elements_cannot_have_multiple_attributes_with_the_same_name.code, ts.Diagnostics.JSX_expressions_may_not_use_the_comma_operator_Did_you_mean_to_write_an_array.code, ts.Diagnostics.JSX_property_access_expressions_cannot_include_JSX_namespace_names.code, ts.Diagnostics.Jump_target_cannot_cross_function_boundary.code, ts.Diagnostics.Line_terminator_not_permitted_before_arrow.code, ts.Diagnostics.Modifiers_cannot_appear_here.code, ts.Diagnostics.Only_a_single_variable_declaration_is_allowed_in_a_for_in_statement.code, ts.Diagnostics.Only_a_single_variable_declaration_is_allowed_in_a_for_of_statement.code, ts.Diagnostics.Private_identifiers_are_not_allowed_outside_class_bodies.code, ts.Diagnostics.Private_identifiers_are_only_allowed_in_class_bodies_and_may_only_be_used_as_part_of_a_class_member_declaration_property_access_or_on_the_left_hand_side_of_an_in_expression.code, ts.Diagnostics.Property_0_is_not_accessible_outside_class_1_because_it_has_a_private_identifier.code, ts.Diagnostics.Tagged_template_expressions_are_not_permitted_in_an_optional_chain.code, ts.Diagnostics.The_left_hand_side_of_a_for_of_statement_may_not_be_async.code, ts.Diagnostics.The_variable_declaration_of_a_for_in_statement_cannot_have_an_initializer.code, ts.Diagnostics.The_variable_declaration_of_a_for_of_statement_cannot_have_an_initializer.code, ts.Diagnostics.Trailing_comma_not_allowed.code, ts.Diagnostics.Variable_declaration_list_cannot_be_empty.code, ts.Diagnostics._0_and_1_operations_cannot_be_mixed_without_parentheses.code, ts.Diagnostics._0_expected.code, ts.Diagnostics._0_is_not_a_valid_meta_property_for_keyword_1_Did_you_mean_2.code, ts.Diagnostics._0_list_cannot_be_empty.code, ts.Diagnostics._0_modifier_already_seen.code, ts.Diagnostics._0_modifier_cannot_appear_on_a_constructor_declaration.code, ts.Diagnostics._0_modifier_cannot_appear_on_a_module_or_namespace_element.code, ts.Diagnostics._0_modifier_cannot_appear_on_a_parameter.code, ts.Diagnostics._0_modifier_cannot_appear_on_class_elements_of_this_kind.code, ts.Diagnostics._0_modifier_cannot_be_used_here.code, ts.Diagnostics._0_modifier_must_precede_1_modifier.code, ts.Diagnostics.const_declarations_can_only_be_declared_inside_a_block.code, ts.Diagnostics.const_declarations_must_be_initialized.code, ts.Diagnostics.extends_clause_already_seen.code, ts.Diagnostics.let_declarations_can_only_be_declared_inside_a_block.code, ts.Diagnostics.let_is_not_allowed_to_be_used_as_a_name_in_let_or_const_declarations.code, ]); /** * Determine if source file needs to be re-created even if its text hasn't changed */ function shouldProgramCreateNewSourceFiles(program, newOptions) { if (!program) return false; // If any compiler options change, we can't reuse old source file even if version match // The change in options like these could result in change in syntax tree or `sourceFile.bindDiagnostics`. return ts.optionsHaveChanges(program.getCompilerOptions(), newOptions, ts.sourceFileAffectingCompilerOptions); } function createCreateProgramOptions(rootNames, options, host, oldProgram, configFileParsingDiagnostics) { return { rootNames: rootNames, options: options, host: host, oldProgram: oldProgram, configFileParsingDiagnostics: configFileParsingDiagnostics }; } function createProgram(rootNamesOrOptions, _options, _host, _oldProgram, _configFileParsingDiagnostics) { var _a, _b, _c, _d; var createProgramOptions = ts.isArray(rootNamesOrOptions) ? createCreateProgramOptions(rootNamesOrOptions, _options, _host, _oldProgram, _configFileParsingDiagnostics) : rootNamesOrOptions; // TODO: GH#18217 var rootNames = createProgramOptions.rootNames, options = createProgramOptions.options, configFileParsingDiagnostics = createProgramOptions.configFileParsingDiagnostics, projectReferences = createProgramOptions.projectReferences; var oldProgram = createProgramOptions.oldProgram; var processingDefaultLibFiles; var processingOtherFiles; var files; var symlinks; var commonSourceDirectory; var typeChecker; var classifiableNames; var ambientModuleNameToUnmodifiedFileName = new ts.Map(); var fileReasons = ts.createMultiMap(); var cachedBindAndCheckDiagnosticsForFile = {}; var cachedDeclarationDiagnosticsForFile = {}; var resolvedTypeReferenceDirectives = ts.createModeAwareCache(); var fileProcessingDiagnostics; // The below settings are to track if a .js file should be add to the program if loaded via searching under node_modules. // This works as imported modules are discovered recursively in a depth first manner, specifically: // - For each root file, findSourceFile is called. // - This calls processImportedModules for each module imported in the source file. // - This calls resolveModuleNames, and then calls findSourceFile for each resolved module. // As all these operations happen - and are nested - within the createProgram call, they close over the below variables. // The current resolution depth is tracked by incrementing/decrementing as the depth first search progresses. var maxNodeModuleJsDepth = typeof options.maxNodeModuleJsDepth === "number" ? options.maxNodeModuleJsDepth : 0; var currentNodeModulesDepth = 0; // If a module has some of its imports skipped due to being at the depth limit under node_modules, then track // this, as it may be imported at a shallower depth later, and then it will need its skipped imports processed. var modulesWithElidedImports = new ts.Map(); // Track source files that are source files found by searching under node_modules, as these shouldn't be compiled. var sourceFilesFoundSearchingNodeModules = new ts.Map(); ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("program" /* tracing.Phase.Program */, "createProgram", { configFilePath: options.configFilePath, rootDir: options.rootDir }, /*separateBeginAndEnd*/ true); ts.performance.mark("beforeProgram"); var host = createProgramOptions.host || createCompilerHost(options); var configParsingHost = parseConfigHostFromCompilerHostLike(host); var skipDefaultLib = options.noLib; var getDefaultLibraryFileName = ts.memoize(function () { return host.getDefaultLibFileName(options); }); var defaultLibraryPath = host.getDefaultLibLocation ? host.getDefaultLibLocation() : ts.getDirectoryPath(getDefaultLibraryFileName()); var programDiagnostics = ts.createDiagnosticCollection(); var currentDirectory = host.getCurrentDirectory(); var supportedExtensions = ts.getSupportedExtensions(options); var supportedExtensionsWithJsonIfResolveJsonModule = ts.getSupportedExtensionsWithJsonIfResolveJsonModule(options, supportedExtensions); // Map storing if there is emit blocking diagnostics for given input var hasEmitBlockingDiagnostics = new ts.Map(); var _compilerOptionsObjectLiteralSyntax; var moduleResolutionCache; var typeReferenceDirectiveResolutionCache; var actualResolveModuleNamesWorker; var hasInvalidatedResolution = host.hasInvalidatedResolution || ts.returnFalse; if (host.resolveModuleNames) { actualResolveModuleNamesWorker = function (moduleNames, containingFile, containingFileName, reusedNames, redirectedReference) { return host.resolveModuleNames(ts.Debug.checkEachDefined(moduleNames), containingFileName, reusedNames, redirectedReference, options, containingFile).map(function (resolved) { // An older host may have omitted extension, in which case we should infer it from the file extension of resolvedFileName. if (!resolved || resolved.extension !== undefined) { return resolved; } var withExtension = ts.clone(resolved); withExtension.extension = ts.extensionFromPath(resolved.resolvedFileName); return withExtension; }); }; moduleResolutionCache = (_a = host.getModuleResolutionCache) === null || _a === void 0 ? void 0 : _a.call(host); } else { moduleResolutionCache = ts.createModuleResolutionCache(currentDirectory, getCanonicalFileName, options); var loader_1 = function (moduleName, resolverMode, containingFileName, redirectedReference) { return ts.resolveModuleName(moduleName, containingFileName, options, host, moduleResolutionCache, redirectedReference, resolverMode).resolvedModule; }; // TODO: GH#18217 actualResolveModuleNamesWorker = function (moduleNames, containingFile, containingFileName, _reusedNames, redirectedReference) { return loadWithModeAwareCache(ts.Debug.checkEachDefined(moduleNames), containingFile, containingFileName, redirectedReference, loader_1); }; } var actualResolveTypeReferenceDirectiveNamesWorker; if (host.resolveTypeReferenceDirectives) { actualResolveTypeReferenceDirectiveNamesWorker = function (typeDirectiveNames, containingFile, redirectedReference, containingFileMode) { return host.resolveTypeReferenceDirectives(ts.Debug.checkEachDefined(typeDirectiveNames), containingFile, redirectedReference, options, containingFileMode); }; } else { typeReferenceDirectiveResolutionCache = ts.createTypeReferenceDirectiveResolutionCache(currentDirectory, getCanonicalFileName, /*options*/ undefined, moduleResolutionCache === null || moduleResolutionCache === void 0 ? void 0 : moduleResolutionCache.getPackageJsonInfoCache()); var loader_2 = function (typesRef, containingFile, redirectedReference, resolutionMode) { return ts.resolveTypeReferenceDirective(typesRef, containingFile, options, host, redirectedReference, typeReferenceDirectiveResolutionCache, resolutionMode).resolvedTypeReferenceDirective; }; // TODO: GH#18217 actualResolveTypeReferenceDirectiveNamesWorker = function (typeReferenceDirectiveNames, containingFile, redirectedReference, containingFileMode) { return loadWithTypeDirectiveCache(ts.Debug.checkEachDefined(typeReferenceDirectiveNames), containingFile, redirectedReference, containingFileMode, loader_2); }; } // Map from a stringified PackageId to the source file with that id. // Only one source file may have a given packageId. Others become redirects (see createRedirectSourceFile). // `packageIdToSourceFile` is only used while building the program, while `sourceFileToPackageName` and `isSourceFileTargetOfRedirect` are kept around. var packageIdToSourceFile = new ts.Map(); // Maps from a SourceFile's `.path` to the name of the package it was imported with. var sourceFileToPackageName = new ts.Map(); // Key is a file name. Value is the (non-empty, or undefined) list of files that redirect to it. var redirectTargetsMap = ts.createMultiMap(); var usesUriStyleNodeCoreModules = false; /** * map with * - SourceFile if present * - false if sourceFile missing for source of project reference redirect * - undefined otherwise */ var filesByName = new ts.Map(); var missingFilePaths; // stores 'filename -> file association' ignoring case // used to track cases when two file names differ only in casing var filesByNameIgnoreCase = host.useCaseSensitiveFileNames() ? new ts.Map() : undefined; // A parallel array to projectReferences storing the results of reading in the referenced tsconfig files var resolvedProjectReferences; var projectReferenceRedirects; var mapFromFileToProjectReferenceRedirects; var mapFromToProjectReferenceRedirectSource; var useSourceOfProjectReferenceRedirect = !!((_b = host.useSourceOfProjectReferenceRedirect) === null || _b === void 0 ? void 0 : _b.call(host)) && !options.disableSourceOfProjectReferenceRedirect; var _e = updateHostForUseSourceOfProjectReferenceRedirect({ compilerHost: host, getSymlinkCache: getSymlinkCache, useSourceOfProjectReferenceRedirect: useSourceOfProjectReferenceRedirect, toPath: toPath, getResolvedProjectReferences: getResolvedProjectReferences, getSourceOfProjectReferenceRedirect: getSourceOfProjectReferenceRedirect, forEachResolvedProjectReference: forEachResolvedProjectReference }), onProgramCreateComplete = _e.onProgramCreateComplete, fileExists = _e.fileExists, directoryExists = _e.directoryExists; var readFile = host.readFile.bind(host); ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("program" /* tracing.Phase.Program */, "shouldProgramCreateNewSourceFiles", { hasOldProgram: !!oldProgram }); var shouldCreateNewSourceFile = shouldProgramCreateNewSourceFiles(oldProgram, options); ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); // We set `structuralIsReused` to `undefined` because `tryReuseStructureFromOldProgram` calls `tryReuseStructureFromOldProgram` which checks // `structuralIsReused`, which would be a TDZ violation if it was not set in advance to `undefined`. var structureIsReused; ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("program" /* tracing.Phase.Program */, "tryReuseStructureFromOldProgram", {}); structureIsReused = tryReuseStructureFromOldProgram(); // eslint-disable-line prefer-const ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); if (structureIsReused !== 2 /* StructureIsReused.Completely */) { processingDefaultLibFiles = []; processingOtherFiles = []; if (projectReferences) { if (!resolvedProjectReferences) { resolvedProjectReferences = projectReferences.map(parseProjectReferenceConfigFile); } if (rootNames.length) { resolvedProjectReferences === null || resolvedProjectReferences === void 0 ? void 0 : resolvedProjectReferences.forEach(function (parsedRef, index) { if (!parsedRef) return; var out = ts.outFile(parsedRef.commandLine.options); if (useSourceOfProjectReferenceRedirect) { if (out || ts.getEmitModuleKind(parsedRef.commandLine.options) === ts.ModuleKind.None) { for (var _i = 0, _a = parsedRef.commandLine.fileNames; _i < _a.length; _i++) { var fileName = _a[_i]; processProjectReferenceFile(fileName, { kind: ts.FileIncludeKind.SourceFromProjectReference, index: index }); } } } else { if (out) { processProjectReferenceFile(ts.changeExtension(out, ".d.ts"), { kind: ts.FileIncludeKind.OutputFromProjectReference, index: index }); } else if (ts.getEmitModuleKind(parsedRef.commandLine.options) === ts.ModuleKind.None) { var getCommonSourceDirectory_2 = ts.memoize(function () { return ts.getCommonSourceDirectoryOfConfig(parsedRef.commandLine, !host.useCaseSensitiveFileNames()); }); for (var _b = 0, _c = parsedRef.commandLine.fileNames; _b < _c.length; _b++) { var fileName = _c[_b]; if (!ts.isDeclarationFileName(fileName) && !ts.fileExtensionIs(fileName, ".json" /* Extension.Json */)) { processProjectReferenceFile(ts.getOutputDeclarationFileName(fileName, parsedRef.commandLine, !host.useCaseSensitiveFileNames(), getCommonSourceDirectory_2), { kind: ts.FileIncludeKind.OutputFromProjectReference, index: index }); } } } } }); } } ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("program" /* tracing.Phase.Program */, "processRootFiles", { count: rootNames.length }); ts.forEach(rootNames, function (name, index) { return processRootFile(name, /*isDefaultLib*/ false, /*ignoreNoDefaultLib*/ false, { kind: ts.FileIncludeKind.RootFile, index: index }); }); ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); // load type declarations specified via 'types' argument or implicitly from types/ and node_modules/@types folders var typeReferences = rootNames.length ? ts.getAutomaticTypeDirectiveNames(options, host) : ts.emptyArray; if (typeReferences.length) { ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("program" /* tracing.Phase.Program */, "processTypeReferences", { count: typeReferences.length }); // This containingFilename needs to match with the one used in managed-side var containingDirectory = options.configFilePath ? ts.getDirectoryPath(options.configFilePath) : host.getCurrentDirectory(); var containingFilename = ts.combinePaths(containingDirectory, ts.inferredTypesContainingFile); var resolutions = resolveTypeReferenceDirectiveNamesWorker(typeReferences, containingFilename); for (var i = 0; i < typeReferences.length; i++) { // under node16/nodenext module resolution, load `types`/ata include names as cjs resolution results by passing an `undefined` mode processTypeReferenceDirective(typeReferences[i], /*mode*/ undefined, resolutions[i], { kind: ts.FileIncludeKind.AutomaticTypeDirectiveFile, typeReference: typeReferences[i], packageId: (_c = resolutions[i]) === null || _c === void 0 ? void 0 : _c.packageId }); } ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); } // Do not process the default library if: // - The '--noLib' flag is used. // - A 'no-default-lib' reference comment is encountered in // processing the root files. if (rootNames.length && !skipDefaultLib) { // If '--lib' is not specified, include default library file according to '--target' // otherwise, using options specified in '--lib' instead of '--target' default library file var defaultLibraryFileName = getDefaultLibraryFileName(); if (!options.lib && defaultLibraryFileName) { processRootFile(defaultLibraryFileName, /*isDefaultLib*/ true, /*ignoreNoDefaultLib*/ false, { kind: ts.FileIncludeKind.LibFile }); } else { ts.forEach(options.lib, function (libFileName, index) { processRootFile(pathForLibFile(libFileName), /*isDefaultLib*/ true, /*ignoreNoDefaultLib*/ false, { kind: ts.FileIncludeKind.LibFile, index: index }); }); } } missingFilePaths = ts.arrayFrom(ts.mapDefinedIterator(filesByName.entries(), function (_a) { var path = _a[0], file = _a[1]; return file === undefined ? path : undefined; })); files = ts.stableSort(processingDefaultLibFiles, compareDefaultLibFiles).concat(processingOtherFiles); processingDefaultLibFiles = undefined; processingOtherFiles = undefined; } ts.Debug.assert(!!missingFilePaths); // Release any files we have acquired in the old program but are // not part of the new program. if (oldProgram && host.onReleaseOldSourceFile) { var oldSourceFiles = oldProgram.getSourceFiles(); for (var _i = 0, oldSourceFiles_1 = oldSourceFiles; _i < oldSourceFiles_1.length; _i++) { var oldSourceFile = oldSourceFiles_1[_i]; var newFile = getSourceFileByPath(oldSourceFile.resolvedPath); if (shouldCreateNewSourceFile || !newFile || // old file wasn't redirect but new file is (oldSourceFile.resolvedPath === oldSourceFile.path && newFile.resolvedPath !== oldSourceFile.path)) { host.onReleaseOldSourceFile(oldSourceFile, oldProgram.getCompilerOptions(), !!getSourceFileByPath(oldSourceFile.path)); } } if (!host.getParsedCommandLine) { oldProgram.forEachResolvedProjectReference(function (resolvedProjectReference) { if (!getResolvedProjectReferenceByPath(resolvedProjectReference.sourceFile.path)) { host.onReleaseOldSourceFile(resolvedProjectReference.sourceFile, oldProgram.getCompilerOptions(), /*hasSourceFileByPath*/ false); } }); } } // Release commandlines that new program does not use if (oldProgram && host.onReleaseParsedCommandLine) { forEachProjectReference(oldProgram.getProjectReferences(), oldProgram.getResolvedProjectReferences(), function (oldResolvedRef, parent, index) { var oldReference = (parent === null || parent === void 0 ? void 0 : parent.commandLine.projectReferences[index]) || oldProgram.getProjectReferences()[index]; var oldRefPath = resolveProjectReferencePath(oldReference); if (!(projectReferenceRedirects === null || projectReferenceRedirects === void 0 ? void 0 : projectReferenceRedirects.has(toPath(oldRefPath)))) { host.onReleaseParsedCommandLine(oldRefPath, oldResolvedRef, oldProgram.getCompilerOptions()); } }); } typeReferenceDirectiveResolutionCache = undefined; // unconditionally set oldProgram to undefined to prevent it from being captured in closure oldProgram = undefined; var program = { getRootFileNames: function () { return rootNames; }, getSourceFile: getSourceFile, getSourceFileByPath: getSourceFileByPath, getSourceFiles: function () { return files; }, getMissingFilePaths: function () { return missingFilePaths; }, getModuleResolutionCache: function () { return moduleResolutionCache; }, getFilesByNameMap: function () { return filesByName; }, getCompilerOptions: function () { return options; }, getSyntacticDiagnostics: getSyntacticDiagnostics, getOptionsDiagnostics: getOptionsDiagnostics, getGlobalDiagnostics: getGlobalDiagnostics, getSemanticDiagnostics: getSemanticDiagnostics, getCachedSemanticDiagnostics: getCachedSemanticDiagnostics, getSuggestionDiagnostics: getSuggestionDiagnostics, getDeclarationDiagnostics: getDeclarationDiagnostics, getBindAndCheckDiagnostics: getBindAndCheckDiagnostics, getProgramDiagnostics: getProgramDiagnostics, getTypeChecker: getTypeChecker, getClassifiableNames: getClassifiableNames, getCommonSourceDirectory: getCommonSourceDirectory, emit: emit, getCurrentDirectory: function () { return currentDirectory; }, getNodeCount: function () { return getTypeChecker().getNodeCount(); }, getIdentifierCount: function () { return getTypeChecker().getIdentifierCount(); }, getSymbolCount: function () { return getTypeChecker().getSymbolCount(); }, getTypeCount: function () { return getTypeChecker().getTypeCount(); }, getInstantiationCount: function () { return getTypeChecker().getInstantiationCount(); }, getRelationCacheSizes: function () { return getTypeChecker().getRelationCacheSizes(); }, getFileProcessingDiagnostics: function () { return fileProcessingDiagnostics; }, getResolvedTypeReferenceDirectives: function () { return resolvedTypeReferenceDirectives; }, isSourceFileFromExternalLibrary: isSourceFileFromExternalLibrary, isSourceFileDefaultLibrary: isSourceFileDefaultLibrary, getSourceFileFromReference: getSourceFileFromReference, getLibFileFromReference: getLibFileFromReference, sourceFileToPackageName: sourceFileToPackageName, redirectTargetsMap: redirectTargetsMap, usesUriStyleNodeCoreModules: usesUriStyleNodeCoreModules, isEmittedFile: isEmittedFile, getConfigFileParsingDiagnostics: getConfigFileParsingDiagnostics, getResolvedModuleWithFailedLookupLocationsFromCache: getResolvedModuleWithFailedLookupLocationsFromCache, getProjectReferences: getProjectReferences, getResolvedProjectReferences: getResolvedProjectReferences, getProjectReferenceRedirect: getProjectReferenceRedirect, getResolvedProjectReferenceToRedirect: getResolvedProjectReferenceToRedirect, getResolvedProjectReferenceByPath: getResolvedProjectReferenceByPath, forEachResolvedProjectReference: forEachResolvedProjectReference, isSourceOfProjectReferenceRedirect: isSourceOfProjectReferenceRedirect, emitBuildInfo: emitBuildInfo, fileExists: fileExists, readFile: readFile, directoryExists: directoryExists, getSymlinkCache: getSymlinkCache, realpath: (_d = host.realpath) === null || _d === void 0 ? void 0 : _d.bind(host), useCaseSensitiveFileNames: function () { return host.useCaseSensitiveFileNames(); }, getFileIncludeReasons: function () { return fileReasons; }, structureIsReused: structureIsReused, writeFile: writeFile, }; onProgramCreateComplete(); // Add file processingDiagnostics fileProcessingDiagnostics === null || fileProcessingDiagnostics === void 0 ? void 0 : fileProcessingDiagnostics.forEach(function (diagnostic) { switch (diagnostic.kind) { case 1 /* FilePreprocessingDiagnosticsKind.FilePreprocessingFileExplainingDiagnostic */: return programDiagnostics.add(createDiagnosticExplainingFile(diagnostic.file && getSourceFileByPath(diagnostic.file), diagnostic.fileProcessingReason, diagnostic.diagnostic, diagnostic.args || ts.emptyArray)); case 0 /* FilePreprocessingDiagnosticsKind.FilePreprocessingReferencedDiagnostic */: var _a = getReferencedFileLocation(getSourceFileByPath, diagnostic.reason), file = _a.file, pos = _a.pos, end = _a.end; return programDiagnostics.add(ts.createFileDiagnostic.apply(void 0, __spreadArray([file, ts.Debug.checkDefined(pos), ts.Debug.checkDefined(end) - pos, diagnostic.diagnostic], diagnostic.args || ts.emptyArray, false))); default: ts.Debug.assertNever(diagnostic); } }); verifyCompilerOptions(); ts.performance.mark("afterProgram"); ts.performance.measure("Program", "beforeProgram", "afterProgram"); ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); return program; function addResolutionDiagnostics(list) { if (!list) return; for (var _i = 0, list_3 = list; _i < list_3.length; _i++) { var elem = list_3[_i]; programDiagnostics.add(elem); } } function pullDiagnosticsFromCache(names, containingFile) { var _a; if (!moduleResolutionCache) return; var containingFileName = ts.getNormalizedAbsolutePath(containingFile.originalFileName, currentDirectory); var containingFileMode = !ts.isString(containingFile) ? containingFile.impliedNodeFormat : undefined; var containingDir = ts.getDirectoryPath(containingFileName); var redirectedReference = getRedirectReferenceForResolution(containingFile); var i = 0; for (var _i = 0, names_4 = names; _i < names_4.length; _i++) { var n = names_4[_i]; // mimics logic done in the resolution cache, should be resilient to upgrading it to use `FileReference`s for non-type-reference modal lookups to make it rely on the index in the list less var mode = typeof n === "string" ? getModeForResolutionAtIndex(containingFile, i) : getModeForFileReference(n, containingFileMode); var name = typeof n === "string" ? n : n.fileName; i++; // only nonrelative names hit the cache, and, at least as of right now, only nonrelative names can issue diagnostics // (Since diagnostics are only issued via import or export map lookup) // This may totally change if/when the issue of output paths not mapping to input files is fixed in a broader context // When it is, how we extract diagnostics from the module name resolver will have the be refined - the current cache // APIs wrapping the underlying resolver make it almost impossible to smuggle the diagnostics out in a generalized way if (ts.isExternalModuleNameRelative(name)) continue; var diags = (_a = moduleResolutionCache.getOrCreateCacheForModuleName(name, mode, redirectedReference).get(containingDir)) === null || _a === void 0 ? void 0 : _a.resolutionDiagnostics; addResolutionDiagnostics(diags); } } function resolveModuleNamesWorker(moduleNames, containingFile, reusedNames) { if (!moduleNames.length) return ts.emptyArray; var containingFileName = ts.getNormalizedAbsolutePath(containingFile.originalFileName, currentDirectory); var redirectedReference = getRedirectReferenceForResolution(containingFile); ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("program" /* tracing.Phase.Program */, "resolveModuleNamesWorker", { containingFileName: containingFileName }); ts.performance.mark("beforeResolveModule"); var result = actualResolveModuleNamesWorker(moduleNames, containingFile, containingFileName, reusedNames, redirectedReference); ts.performance.mark("afterResolveModule"); ts.performance.measure("ResolveModule", "beforeResolveModule", "afterResolveModule"); ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); pullDiagnosticsFromCache(moduleNames, containingFile); return result; } function resolveTypeReferenceDirectiveNamesWorker(typeDirectiveNames, containingFile) { if (!typeDirectiveNames.length) return []; var containingFileName = !ts.isString(containingFile) ? ts.getNormalizedAbsolutePath(containingFile.originalFileName, currentDirectory) : containingFile; var redirectedReference = !ts.isString(containingFile) ? getRedirectReferenceForResolution(containingFile) : undefined; var containingFileMode = !ts.isString(containingFile) ? containingFile.impliedNodeFormat : undefined; ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("program" /* tracing.Phase.Program */, "resolveTypeReferenceDirectiveNamesWorker", { containingFileName: containingFileName }); ts.performance.mark("beforeResolveTypeReference"); var result = actualResolveTypeReferenceDirectiveNamesWorker(typeDirectiveNames, containingFileName, redirectedReference, containingFileMode); ts.performance.mark("afterResolveTypeReference"); ts.performance.measure("ResolveTypeReference", "beforeResolveTypeReference", "afterResolveTypeReference"); ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); return result; } function getRedirectReferenceForResolution(file) { var redirect = getResolvedProjectReferenceToRedirect(file.originalFileName); if (redirect || !ts.isDeclarationFileName(file.originalFileName)) return redirect; // The originalFileName could not be actual source file name if file found was d.ts from referecned project // So in this case try to look up if this is output from referenced project, if it is use the redirected project in that case var resultFromDts = getRedirectReferenceForResolutionFromSourceOfProject(file.path); if (resultFromDts) return resultFromDts; // If preserveSymlinks is true, module resolution wont jump the symlink // but the resolved real path may be the .d.ts from project reference // Note:: Currently we try the real path only if the // file is from node_modules to avoid having to run real path on all file paths if (!host.realpath || !options.preserveSymlinks || !ts.stringContains(file.originalFileName, ts.nodeModulesPathPart)) return undefined; var realDeclarationPath = toPath(host.realpath(file.originalFileName)); return realDeclarationPath === file.path ? undefined : getRedirectReferenceForResolutionFromSourceOfProject(realDeclarationPath); } function getRedirectReferenceForResolutionFromSourceOfProject(filePath) { var source = getSourceOfProjectReferenceRedirect(filePath); if (ts.isString(source)) return getResolvedProjectReferenceToRedirect(source); if (!source) return undefined; // Output of .d.ts file so return resolved ref that matches the out file name return forEachResolvedProjectReference(function (resolvedRef) { var out = ts.outFile(resolvedRef.commandLine.options); if (!out) return undefined; return toPath(out) === filePath ? resolvedRef : undefined; }); } function compareDefaultLibFiles(a, b) { return ts.compareValues(getDefaultLibFilePriority(a), getDefaultLibFilePriority(b)); } function getDefaultLibFilePriority(a) { if (ts.containsPath(defaultLibraryPath, a.fileName, /*ignoreCase*/ false)) { var basename = ts.getBaseFileName(a.fileName); if (basename === "lib.d.ts" || basename === "lib.es6.d.ts") return 0; var name = ts.removeSuffix(ts.removePrefix(basename, "lib."), ".d.ts"); var index = ts.libs.indexOf(name); if (index !== -1) return index + 1; } return ts.libs.length + 2; } function getResolvedModuleWithFailedLookupLocationsFromCache(moduleName, containingFile, mode) { return moduleResolutionCache && ts.resolveModuleNameFromCache(moduleName, containingFile, moduleResolutionCache, mode); } function toPath(fileName) { return ts.toPath(fileName, currentDirectory, getCanonicalFileName); } function getCommonSourceDirectory() { if (commonSourceDirectory === undefined) { var emittedFiles_1 = ts.filter(files, function (file) { return ts.sourceFileMayBeEmitted(file, program); }); commonSourceDirectory = ts.getCommonSourceDirectory(options, function () { return ts.mapDefined(emittedFiles_1, function (file) { return file.isDeclarationFile ? undefined : file.fileName; }); }, currentDirectory, getCanonicalFileName, function (commonSourceDirectory) { return checkSourceFilesBelongToPath(emittedFiles_1, commonSourceDirectory); }); } return commonSourceDirectory; } function getClassifiableNames() { var _a; if (!classifiableNames) { // Initialize a checker so that all our files are bound. getTypeChecker(); classifiableNames = new ts.Set(); for (var _i = 0, files_3 = files; _i < files_3.length; _i++) { var sourceFile = files_3[_i]; (_a = sourceFile.classifiableNames) === null || _a === void 0 ? void 0 : _a.forEach(function (value) { return classifiableNames.add(value); }); } } return classifiableNames; } function resolveModuleNamesReusingOldState(moduleNames, file) { if (structureIsReused === 0 /* StructureIsReused.Not */ && !file.ambientModuleNames.length) { // If the old program state does not permit reusing resolutions and `file` does not contain locally defined ambient modules, // the best we can do is fallback to the default logic. return resolveModuleNamesWorker(moduleNames, file, /*reusedNames*/ undefined); } var oldSourceFile = oldProgram && oldProgram.getSourceFile(file.fileName); if (oldSourceFile !== file && file.resolvedModules) { // `file` was created for the new program. // // We only set `file.resolvedModules` via work from the current function, // so it is defined iff we already called the current function on `file`. // That call happened no later than the creation of the `file` object, // which per above occurred during the current program creation. // Since we assume the filesystem does not change during program creation, // it is safe to reuse resolutions from the earlier call. var result_14 = []; var i = 0; for (var _i = 0, moduleNames_1 = moduleNames; _i < moduleNames_1.length; _i++) { var moduleName = moduleNames_1[_i]; var resolvedModule = file.resolvedModules.get(moduleName, getModeForResolutionAtIndex(file, i)); i++; result_14.push(resolvedModule); } return result_14; } // At this point, we know at least one of the following hold: // - file has local declarations for ambient modules // - old program state is available // With this information, we can infer some module resolutions without performing resolution. /** An ordered list of module names for which we cannot recover the resolution. */ var unknownModuleNames; /** * The indexing of elements in this list matches that of `moduleNames`. * * Before combining results, result[i] is in one of the following states: * * undefined: needs to be recomputed, * * predictedToResolveToAmbientModuleMarker: known to be an ambient module. * Needs to be reset to undefined before returning, * * ResolvedModuleFull instance: can be reused. */ var result; var reusedNames; /** A transient placeholder used to mark predicted resolution in the result list. */ var predictedToResolveToAmbientModuleMarker = {}; for (var i = 0; i < moduleNames.length; i++) { var moduleName = moduleNames[i]; // If the source file is unchanged and doesnt have invalidated resolution, reuse the module resolutions if (file === oldSourceFile && !hasInvalidatedResolution(oldSourceFile.path)) { var oldResolvedModule = ts.getResolvedModule(oldSourceFile, moduleName, getModeForResolutionAtIndex(oldSourceFile, i)); if (oldResolvedModule) { if (ts.isTraceEnabled(options, host)) { ts.trace(host, oldResolvedModule.packageId ? ts.Diagnostics.Reusing_resolution_of_module_0_from_1_of_old_program_it_was_successfully_resolved_to_2_with_Package_ID_3 : ts.Diagnostics.Reusing_resolution_of_module_0_from_1_of_old_program_it_was_successfully_resolved_to_2, moduleName, ts.getNormalizedAbsolutePath(file.originalFileName, currentDirectory), oldResolvedModule.resolvedFileName, oldResolvedModule.packageId && ts.packageIdToString(oldResolvedModule.packageId)); } (result || (result = new Array(moduleNames.length)))[i] = oldResolvedModule; (reusedNames || (reusedNames = [])).push(moduleName); continue; } } // We know moduleName resolves to an ambient module provided that moduleName: // - is in the list of ambient modules locally declared in the current source file. // - resolved to an ambient module in the old program whose declaration is in an unmodified file // (so the same module declaration will land in the new program) var resolvesToAmbientModuleInNonModifiedFile = false; if (ts.contains(file.ambientModuleNames, moduleName)) { resolvesToAmbientModuleInNonModifiedFile = true; if (ts.isTraceEnabled(options, host)) { ts.trace(host, ts.Diagnostics.Module_0_was_resolved_as_locally_declared_ambient_module_in_file_1, moduleName, ts.getNormalizedAbsolutePath(file.originalFileName, currentDirectory)); } } else { resolvesToAmbientModuleInNonModifiedFile = moduleNameResolvesToAmbientModuleInNonModifiedFile(moduleName, i); } if (resolvesToAmbientModuleInNonModifiedFile) { (result || (result = new Array(moduleNames.length)))[i] = predictedToResolveToAmbientModuleMarker; } else { // Resolution failed in the old program, or resolved to an ambient module for which we can't reuse the result. (unknownModuleNames || (unknownModuleNames = [])).push(moduleName); } } var resolutions = unknownModuleNames && unknownModuleNames.length ? resolveModuleNamesWorker(unknownModuleNames, file, reusedNames) : ts.emptyArray; // Combine results of resolutions and predicted results if (!result) { // There were no unresolved/ambient resolutions. ts.Debug.assert(resolutions.length === moduleNames.length); return resolutions; } var j = 0; for (var i = 0; i < result.length; i++) { if (result[i]) { // `result[i]` is either a `ResolvedModuleFull` or a marker. // If it is the former, we can leave it as is. if (result[i] === predictedToResolveToAmbientModuleMarker) { result[i] = undefined; // TODO: GH#18217 } } else { result[i] = resolutions[j]; j++; } } ts.Debug.assert(j === resolutions.length); return result; // If we change our policy of rechecking failed lookups on each program create, // we should adjust the value returned here. function moduleNameResolvesToAmbientModuleInNonModifiedFile(moduleName, index) { if (index >= ts.length(oldSourceFile === null || oldSourceFile === void 0 ? void 0 : oldSourceFile.imports) + ts.length(oldSourceFile === null || oldSourceFile === void 0 ? void 0 : oldSourceFile.moduleAugmentations)) return false; // mode index out of bounds, don't reuse resolution var resolutionToFile = ts.getResolvedModule(oldSourceFile, moduleName, oldSourceFile && getModeForResolutionAtIndex(oldSourceFile, index)); var resolvedFile = resolutionToFile && oldProgram.getSourceFile(resolutionToFile.resolvedFileName); if (resolutionToFile && resolvedFile) { // In the old program, we resolved to an ambient module that was in the same // place as we expected to find an actual module file. // We actually need to return 'false' here even though this seems like a 'true' case // because the normal module resolution algorithm will find this anyway. return false; } // at least one of declarations should come from non-modified source file var unmodifiedFile = ambientModuleNameToUnmodifiedFileName.get(moduleName); if (!unmodifiedFile) { return false; } if (ts.isTraceEnabled(options, host)) { ts.trace(host, ts.Diagnostics.Module_0_was_resolved_as_ambient_module_declared_in_1_since_this_file_was_not_modified, moduleName, unmodifiedFile); } return true; } } function canReuseProjectReferences() { return !forEachProjectReference(oldProgram.getProjectReferences(), oldProgram.getResolvedProjectReferences(), function (oldResolvedRef, parent, index) { var newRef = (parent ? parent.commandLine.projectReferences : projectReferences)[index]; var newResolvedRef = parseProjectReferenceConfigFile(newRef); if (oldResolvedRef) { // Resolved project reference has gone missing or changed return !newResolvedRef || newResolvedRef.sourceFile !== oldResolvedRef.sourceFile || !ts.arrayIsEqualTo(oldResolvedRef.commandLine.fileNames, newResolvedRef.commandLine.fileNames); } else { // A previously-unresolved reference may be resolved now return newResolvedRef !== undefined; } }, function (oldProjectReferences, parent) { // If array of references is changed, we cant resue old program var newReferences = parent ? getResolvedProjectReferenceByPath(parent.sourceFile.path).commandLine.projectReferences : projectReferences; return !ts.arrayIsEqualTo(oldProjectReferences, newReferences, ts.projectReferenceIsEqualTo); }); } function tryReuseStructureFromOldProgram() { var _a; if (!oldProgram) { return 0 /* StructureIsReused.Not */; } // check properties that can affect structure of the program or module resolution strategy // if any of these properties has changed - structure cannot be reused var oldOptions = oldProgram.getCompilerOptions(); if (ts.changesAffectModuleResolution(oldOptions, options)) { return 0 /* StructureIsReused.Not */; } // there is an old program, check if we can reuse its structure var oldRootNames = oldProgram.getRootFileNames(); if (!ts.arrayIsEqualTo(oldRootNames, rootNames)) { return 0 /* StructureIsReused.Not */; } // Check if any referenced project tsconfig files are different if (!canReuseProjectReferences()) { return 0 /* StructureIsReused.Not */; } if (projectReferences) { resolvedProjectReferences = projectReferences.map(parseProjectReferenceConfigFile); } // check if program source files has changed in the way that can affect structure of the program var newSourceFiles = []; var modifiedSourceFiles = []; structureIsReused = 2 /* StructureIsReused.Completely */; // If the missing file paths are now present, it can change the progam structure, // and hence cant reuse the structure. // This is same as how we dont reuse the structure if one of the file from old program is now missing if (oldProgram.getMissingFilePaths().some(function (missingFilePath) { return host.fileExists(missingFilePath); })) { return 0 /* StructureIsReused.Not */; } var oldSourceFiles = oldProgram.getSourceFiles(); var SeenPackageName; (function (SeenPackageName) { SeenPackageName[SeenPackageName["Exists"] = 0] = "Exists"; SeenPackageName[SeenPackageName["Modified"] = 1] = "Modified"; })(SeenPackageName || (SeenPackageName = {})); var seenPackageNames = new ts.Map(); for (var _i = 0, oldSourceFiles_2 = oldSourceFiles; _i < oldSourceFiles_2.length; _i++) { var oldSourceFile = oldSourceFiles_2[_i]; var newSourceFile = host.getSourceFileByPath ? host.getSourceFileByPath(oldSourceFile.fileName, oldSourceFile.resolvedPath, getCreateSourceFileOptions(oldSourceFile.fileName, moduleResolutionCache, host, options), /*onError*/ undefined, shouldCreateNewSourceFile) : host.getSourceFile(oldSourceFile.fileName, getCreateSourceFileOptions(oldSourceFile.fileName, moduleResolutionCache, host, options), /*onError*/ undefined, shouldCreateNewSourceFile); // TODO: GH#18217 if (!newSourceFile) { return 0 /* StructureIsReused.Not */; } ts.Debug.assert(!newSourceFile.redirectInfo, "Host should not return a redirect source file from `getSourceFile`"); var fileChanged = void 0; if (oldSourceFile.redirectInfo) { // We got `newSourceFile` by path, so it is actually for the unredirected file. // This lets us know if the unredirected file has changed. If it has we should break the redirect. if (newSourceFile !== oldSourceFile.redirectInfo.unredirected) { // Underlying file has changed. Might not redirect anymore. Must rebuild program. return 0 /* StructureIsReused.Not */; } fileChanged = false; newSourceFile = oldSourceFile; // Use the redirect. } else if (oldProgram.redirectTargetsMap.has(oldSourceFile.path)) { // If a redirected-to source file changes, the redirect may be broken. if (newSourceFile !== oldSourceFile) { return 0 /* StructureIsReused.Not */; } fileChanged = false; } else { fileChanged = newSourceFile !== oldSourceFile; } // Since the project references havent changed, its right to set originalFileName and resolvedPath here newSourceFile.path = oldSourceFile.path; newSourceFile.originalFileName = oldSourceFile.originalFileName; newSourceFile.resolvedPath = oldSourceFile.resolvedPath; newSourceFile.fileName = oldSourceFile.fileName; var packageName = oldProgram.sourceFileToPackageName.get(oldSourceFile.path); if (packageName !== undefined) { // If there are 2 different source files for the same package name and at least one of them changes, // they might become redirects. So we must rebuild the program. var prevKind = seenPackageNames.get(packageName); var newKind = fileChanged ? 1 /* SeenPackageName.Modified */ : 0 /* SeenPackageName.Exists */; if ((prevKind !== undefined && newKind === 1 /* SeenPackageName.Modified */) || prevKind === 1 /* SeenPackageName.Modified */) { return 0 /* StructureIsReused.Not */; } seenPackageNames.set(packageName, newKind); } if (fileChanged) { // The `newSourceFile` object was created for the new program. if (!ts.arrayIsEqualTo(oldSourceFile.libReferenceDirectives, newSourceFile.libReferenceDirectives, fileReferenceIsEqualTo)) { // 'lib' references has changed. Matches behavior in changesAffectModuleResolution structureIsReused = 1 /* StructureIsReused.SafeModules */; } if (oldSourceFile.hasNoDefaultLib !== newSourceFile.hasNoDefaultLib) { // value of no-default-lib has changed // this will affect if default library is injected into the list of files structureIsReused = 1 /* StructureIsReused.SafeModules */; } // check tripleslash references if (!ts.arrayIsEqualTo(oldSourceFile.referencedFiles, newSourceFile.referencedFiles, fileReferenceIsEqualTo)) { // tripleslash references has changed structureIsReused = 1 /* StructureIsReused.SafeModules */; } // check imports and module augmentations collectExternalModuleReferences(newSourceFile); if (!ts.arrayIsEqualTo(oldSourceFile.imports, newSourceFile.imports, moduleNameIsEqualTo)) { // imports has changed structureIsReused = 1 /* StructureIsReused.SafeModules */; } if (!ts.arrayIsEqualTo(oldSourceFile.moduleAugmentations, newSourceFile.moduleAugmentations, moduleNameIsEqualTo)) { // moduleAugmentations has changed structureIsReused = 1 /* StructureIsReused.SafeModules */; } if ((oldSourceFile.flags & 6291456 /* NodeFlags.PermanentlySetIncrementalFlags */) !== (newSourceFile.flags & 6291456 /* NodeFlags.PermanentlySetIncrementalFlags */)) { // dynamicImport has changed structureIsReused = 1 /* StructureIsReused.SafeModules */; } if (!ts.arrayIsEqualTo(oldSourceFile.typeReferenceDirectives, newSourceFile.typeReferenceDirectives, fileReferenceIsEqualTo)) { // 'types' references has changed structureIsReused = 1 /* StructureIsReused.SafeModules */; } // tentatively approve the file modifiedSourceFiles.push({ oldFile: oldSourceFile, newFile: newSourceFile }); } else if (hasInvalidatedResolution(oldSourceFile.path)) { // 'module/types' references could have changed structureIsReused = 1 /* StructureIsReused.SafeModules */; // add file to the modified list so that we will resolve it later modifiedSourceFiles.push({ oldFile: oldSourceFile, newFile: newSourceFile }); } // if file has passed all checks it should be safe to reuse it newSourceFiles.push(newSourceFile); } if (structureIsReused !== 2 /* StructureIsReused.Completely */) { return structureIsReused; } var modifiedFiles = modifiedSourceFiles.map(function (f) { return f.oldFile; }); for (var _b = 0, oldSourceFiles_3 = oldSourceFiles; _b < oldSourceFiles_3.length; _b++) { var oldFile = oldSourceFiles_3[_b]; if (!ts.contains(modifiedFiles, oldFile)) { for (var _c = 0, _d = oldFile.ambientModuleNames; _c < _d.length; _c++) { var moduleName = _d[_c]; ambientModuleNameToUnmodifiedFileName.set(moduleName, oldFile.fileName); } } } // try to verify results of module resolution for (var _e = 0, modifiedSourceFiles_1 = modifiedSourceFiles; _e < modifiedSourceFiles_1.length; _e++) { var _f = modifiedSourceFiles_1[_e], oldSourceFile = _f.oldFile, newSourceFile = _f.newFile; var moduleNames = getModuleNames(newSourceFile); var resolutions = resolveModuleNamesReusingOldState(moduleNames, newSourceFile); // ensure that module resolution results are still correct var resolutionsChanged = ts.hasChangesInResolutions(moduleNames, resolutions, oldSourceFile.resolvedModules, oldSourceFile, ts.moduleResolutionIsEqualTo); if (resolutionsChanged) { structureIsReused = 1 /* StructureIsReused.SafeModules */; newSourceFile.resolvedModules = ts.zipToModeAwareCache(newSourceFile, moduleNames, resolutions); } else { newSourceFile.resolvedModules = oldSourceFile.resolvedModules; } var typesReferenceDirectives = newSourceFile.typeReferenceDirectives; var typeReferenceResolutions = resolveTypeReferenceDirectiveNamesWorker(typesReferenceDirectives, newSourceFile); // ensure that types resolutions are still correct var typeReferenceResolutionsChanged = ts.hasChangesInResolutions(typesReferenceDirectives, typeReferenceResolutions, oldSourceFile.resolvedTypeReferenceDirectiveNames, oldSourceFile, ts.typeDirectiveIsEqualTo); if (typeReferenceResolutionsChanged) { structureIsReused = 1 /* StructureIsReused.SafeModules */; newSourceFile.resolvedTypeReferenceDirectiveNames = ts.zipToModeAwareCache(newSourceFile, typesReferenceDirectives, typeReferenceResolutions); } else { newSourceFile.resolvedTypeReferenceDirectiveNames = oldSourceFile.resolvedTypeReferenceDirectiveNames; } } if (structureIsReused !== 2 /* StructureIsReused.Completely */) { return structureIsReused; } if (ts.changesAffectingProgramStructure(oldOptions, options) || ((_a = host.hasChangedAutomaticTypeDirectiveNames) === null || _a === void 0 ? void 0 : _a.call(host))) { return 1 /* StructureIsReused.SafeModules */; } missingFilePaths = oldProgram.getMissingFilePaths(); // update fileName -> file mapping ts.Debug.assert(newSourceFiles.length === oldProgram.getSourceFiles().length); for (var _g = 0, newSourceFiles_1 = newSourceFiles; _g < newSourceFiles_1.length; _g++) { var newSourceFile = newSourceFiles_1[_g]; filesByName.set(newSourceFile.path, newSourceFile); } var oldFilesByNameMap = oldProgram.getFilesByNameMap(); oldFilesByNameMap.forEach(function (oldFile, path) { if (!oldFile) { filesByName.set(path, oldFile); return; } if (oldFile.path === path) { // Set the file as found during node modules search if it was found that way in old progra, if (oldProgram.isSourceFileFromExternalLibrary(oldFile)) { sourceFilesFoundSearchingNodeModules.set(oldFile.path, true); } return; } filesByName.set(path, filesByName.get(oldFile.path)); }); files = newSourceFiles; fileReasons = oldProgram.getFileIncludeReasons(); fileProcessingDiagnostics = oldProgram.getFileProcessingDiagnostics(); resolvedTypeReferenceDirectives = oldProgram.getResolvedTypeReferenceDirectives(); sourceFileToPackageName = oldProgram.sourceFileToPackageName; redirectTargetsMap = oldProgram.redirectTargetsMap; usesUriStyleNodeCoreModules = oldProgram.usesUriStyleNodeCoreModules; return 2 /* StructureIsReused.Completely */; } function getEmitHost(writeFileCallback) { return { getPrependNodes: getPrependNodes, getCanonicalFileName: getCanonicalFileName, getCommonSourceDirectory: program.getCommonSourceDirectory, getCompilerOptions: program.getCompilerOptions, getCurrentDirectory: function () { return currentDirectory; }, getNewLine: function () { return host.getNewLine(); }, getSourceFile: program.getSourceFile, getSourceFileByPath: program.getSourceFileByPath, getSourceFiles: program.getSourceFiles, getLibFileFromReference: program.getLibFileFromReference, isSourceFileFromExternalLibrary: isSourceFileFromExternalLibrary, getResolvedProjectReferenceToRedirect: getResolvedProjectReferenceToRedirect, getProjectReferenceRedirect: getProjectReferenceRedirect, isSourceOfProjectReferenceRedirect: isSourceOfProjectReferenceRedirect, getSymlinkCache: getSymlinkCache, writeFile: writeFileCallback || writeFile, isEmitBlocked: isEmitBlocked, readFile: function (f) { return host.readFile(f); }, fileExists: function (f) { // Use local caches var path = toPath(f); if (getSourceFileByPath(path)) return true; if (ts.contains(missingFilePaths, path)) return false; // Before falling back to the host return host.fileExists(f); }, useCaseSensitiveFileNames: function () { return host.useCaseSensitiveFileNames(); }, getProgramBuildInfo: function () { return program.getProgramBuildInfo && program.getProgramBuildInfo(); }, getSourceFileFromReference: function (file, ref) { return program.getSourceFileFromReference(file, ref); }, redirectTargetsMap: redirectTargetsMap, getFileIncludeReasons: program.getFileIncludeReasons, }; } function writeFile(fileName, text, writeByteOrderMark, onError, sourceFiles, data) { host.writeFile(fileName, text, writeByteOrderMark, onError, sourceFiles, data); } function emitBuildInfo(writeFileCallback) { ts.Debug.assert(!ts.outFile(options)); ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("emit" /* tracing.Phase.Emit */, "emitBuildInfo", {}, /*separateBeginAndEnd*/ true); ts.performance.mark("beforeEmit"); var emitResult = ts.emitFiles(ts.notImplementedResolver, getEmitHost(writeFileCallback), /*targetSourceFile*/ undefined, /*transformers*/ ts.noTransformers, /*emitOnlyDtsFiles*/ false, /*onlyBuildInfo*/ true); ts.performance.mark("afterEmit"); ts.performance.measure("Emit", "beforeEmit", "afterEmit"); ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); return emitResult; } function getResolvedProjectReferences() { return resolvedProjectReferences; } function getProjectReferences() { return projectReferences; } function getPrependNodes() { return createPrependNodes(projectReferences, function (_ref, index) { var _a; return (_a = resolvedProjectReferences[index]) === null || _a === void 0 ? void 0 : _a.commandLine; }, function (fileName) { var path = toPath(fileName); var sourceFile = getSourceFileByPath(path); return sourceFile ? sourceFile.text : filesByName.has(path) ? undefined : host.readFile(path); }); } function isSourceFileFromExternalLibrary(file) { return !!sourceFilesFoundSearchingNodeModules.get(file.path); } function isSourceFileDefaultLibrary(file) { if (!file.isDeclarationFile) { return false; } if (file.hasNoDefaultLib) { return true; } if (!options.noLib) { return false; } // If '--lib' is not specified, include default library file according to '--target' // otherwise, using options specified in '--lib' instead of '--target' default library file var equalityComparer = host.useCaseSensitiveFileNames() ? ts.equateStringsCaseSensitive : ts.equateStringsCaseInsensitive; if (!options.lib) { return equalityComparer(file.fileName, getDefaultLibraryFileName()); } else { return ts.some(options.lib, function (libFileName) { return equalityComparer(file.fileName, pathForLibFile(libFileName)); }); } } function getTypeChecker() { return typeChecker || (typeChecker = ts.createTypeChecker(program)); } function emit(sourceFile, writeFileCallback, cancellationToken, emitOnlyDtsFiles, transformers, forceDtsEmit) { ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("emit" /* tracing.Phase.Emit */, "emit", { path: sourceFile === null || sourceFile === void 0 ? void 0 : sourceFile.path }, /*separateBeginAndEnd*/ true); var result = runWithCancellationToken(function () { return emitWorker(program, sourceFile, writeFileCallback, cancellationToken, emitOnlyDtsFiles, transformers, forceDtsEmit); }); ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); return result; } function isEmitBlocked(emitFileName) { return hasEmitBlockingDiagnostics.has(toPath(emitFileName)); } function emitWorker(program, sourceFile, writeFileCallback, cancellationToken, emitOnlyDtsFiles, customTransformers, forceDtsEmit) { if (!forceDtsEmit) { var result = handleNoEmitOptions(program, sourceFile, writeFileCallback, cancellationToken); if (result) return result; } // Create the emit resolver outside of the "emitTime" tracking code below. That way // any cost associated with it (like type checking) are appropriate associated with // the type-checking counter. // // If the -out option is specified, we should not pass the source file to getEmitResolver. // This is because in the -out scenario all files need to be emitted, and therefore all // files need to be type checked. And the way to specify that all files need to be type // checked is to not pass the file to getEmitResolver. var emitResolver = getTypeChecker().getEmitResolver(ts.outFile(options) ? undefined : sourceFile, cancellationToken); ts.performance.mark("beforeEmit"); var emitResult = ts.emitFiles(emitResolver, getEmitHost(writeFileCallback), sourceFile, ts.getTransformers(options, customTransformers, emitOnlyDtsFiles), emitOnlyDtsFiles, /*onlyBuildInfo*/ false, forceDtsEmit); ts.performance.mark("afterEmit"); ts.performance.measure("Emit", "beforeEmit", "afterEmit"); return emitResult; } function getSourceFile(fileName) { return getSourceFileByPath(toPath(fileName)); } function getSourceFileByPath(path) { return filesByName.get(path) || undefined; } function getDiagnosticsHelper(sourceFile, getDiagnostics, cancellationToken) { if (sourceFile) { return getDiagnostics(sourceFile, cancellationToken); } return ts.sortAndDeduplicateDiagnostics(ts.flatMap(program.getSourceFiles(), function (sourceFile) { if (cancellationToken) { cancellationToken.throwIfCancellationRequested(); } return getDiagnostics(sourceFile, cancellationToken); })); } function getSyntacticDiagnostics(sourceFile, cancellationToken) { return getDiagnosticsHelper(sourceFile, getSyntacticDiagnosticsForFile, cancellationToken); } function getSemanticDiagnostics(sourceFile, cancellationToken) { return getDiagnosticsHelper(sourceFile, getSemanticDiagnosticsForFile, cancellationToken); } function getCachedSemanticDiagnostics(sourceFile) { var _a; return sourceFile ? (_a = cachedBindAndCheckDiagnosticsForFile.perFile) === null || _a === void 0 ? void 0 : _a.get(sourceFile.path) : cachedBindAndCheckDiagnosticsForFile.allDiagnostics; } function getBindAndCheckDiagnostics(sourceFile, cancellationToken) { return getBindAndCheckDiagnosticsForFile(sourceFile, cancellationToken); } function getProgramDiagnostics(sourceFile) { var _a; if (ts.skipTypeChecking(sourceFile, options, program)) { return ts.emptyArray; } var programDiagnosticsInFile = programDiagnostics.getDiagnostics(sourceFile.fileName); if (!((_a = sourceFile.commentDirectives) === null || _a === void 0 ? void 0 : _a.length)) { return programDiagnosticsInFile; } return getDiagnosticsWithPrecedingDirectives(sourceFile, sourceFile.commentDirectives, programDiagnosticsInFile).diagnostics; } function getDeclarationDiagnostics(sourceFile, cancellationToken) { var options = program.getCompilerOptions(); // collect diagnostics from the program only once if either no source file was specified or out/outFile is set (bundled emit) if (!sourceFile || ts.outFile(options)) { return getDeclarationDiagnosticsWorker(sourceFile, cancellationToken); } else { return getDiagnosticsHelper(sourceFile, getDeclarationDiagnosticsForFile, cancellationToken); } } function getSyntacticDiagnosticsForFile(sourceFile) { // For JavaScript files, we report semantic errors for using TypeScript-only // constructs from within a JavaScript file as syntactic errors. if (ts.isSourceFileJS(sourceFile)) { if (!sourceFile.additionalSyntacticDiagnostics) { sourceFile.additionalSyntacticDiagnostics = getJSSyntacticDiagnosticsForFile(sourceFile); } return ts.concatenate(sourceFile.additionalSyntacticDiagnostics, sourceFile.parseDiagnostics); } return sourceFile.parseDiagnostics; } function runWithCancellationToken(func) { try { return func(); } catch (e) { if (e instanceof ts.OperationCanceledException) { // We were canceled while performing the operation. Because our type checker // might be a bad state, we need to throw it away. typeChecker = undefined; } throw e; } } function getSemanticDiagnosticsForFile(sourceFile, cancellationToken) { return ts.concatenate(filterSemanticDiagnostics(getBindAndCheckDiagnosticsForFile(sourceFile, cancellationToken), options), getProgramDiagnostics(sourceFile)); } function getBindAndCheckDiagnosticsForFile(sourceFile, cancellationToken) { return getAndCacheDiagnostics(sourceFile, cancellationToken, cachedBindAndCheckDiagnosticsForFile, getBindAndCheckDiagnosticsForFileNoCache); } function getBindAndCheckDiagnosticsForFileNoCache(sourceFile, cancellationToken) { return runWithCancellationToken(function () { if (ts.skipTypeChecking(sourceFile, options, program)) { return ts.emptyArray; } var typeChecker = getTypeChecker(); ts.Debug.assert(!!sourceFile.bindDiagnostics); var isJs = sourceFile.scriptKind === 1 /* ScriptKind.JS */ || sourceFile.scriptKind === 2 /* ScriptKind.JSX */; var isCheckJs = isJs && ts.isCheckJsEnabledForFile(sourceFile, options); var isPlainJs = ts.isPlainJsFile(sourceFile, options.checkJs); var isTsNoCheck = !!sourceFile.checkJsDirective && sourceFile.checkJsDirective.enabled === false; // By default, only type-check .ts, .tsx, Deferred, plain JS, checked JS and External // - plain JS: .js files with no // ts-check and checkJs: undefined // - check JS: .js files with either // ts-check or checkJs: true // - external: files that are added by plugins var includeBindAndCheckDiagnostics = !isTsNoCheck && (sourceFile.scriptKind === 3 /* ScriptKind.TS */ || sourceFile.scriptKind === 4 /* ScriptKind.TSX */ || sourceFile.scriptKind === 5 /* ScriptKind.External */ || isPlainJs || isCheckJs || sourceFile.scriptKind === 7 /* ScriptKind.Deferred */); var bindDiagnostics = includeBindAndCheckDiagnostics ? sourceFile.bindDiagnostics : ts.emptyArray; var checkDiagnostics = includeBindAndCheckDiagnostics ? typeChecker.getDiagnostics(sourceFile, cancellationToken) : ts.emptyArray; if (isPlainJs) { bindDiagnostics = ts.filter(bindDiagnostics, function (d) { return ts.plainJSErrors.has(d.code); }); checkDiagnostics = ts.filter(checkDiagnostics, function (d) { return ts.plainJSErrors.has(d.code); }); } // skip ts-expect-error errors in plain JS files, and skip JSDoc errors except in checked JS return getMergedBindAndCheckDiagnostics(sourceFile, includeBindAndCheckDiagnostics && !isPlainJs, bindDiagnostics, checkDiagnostics, isCheckJs ? sourceFile.jsDocDiagnostics : undefined); }); } function getMergedBindAndCheckDiagnostics(sourceFile, includeBindAndCheckDiagnostics) { var _a; var allDiagnostics = []; for (var _i = 2; _i < arguments.length; _i++) { allDiagnostics[_i - 2] = arguments[_i]; } var flatDiagnostics = ts.flatten(allDiagnostics); if (!includeBindAndCheckDiagnostics || !((_a = sourceFile.commentDirectives) === null || _a === void 0 ? void 0 : _a.length)) { return flatDiagnostics; } var _b = getDiagnosticsWithPrecedingDirectives(sourceFile, sourceFile.commentDirectives, flatDiagnostics), diagnostics = _b.diagnostics, directives = _b.directives; for (var _c = 0, _d = directives.getUnusedExpectations(); _c < _d.length; _c++) { var errorExpectation = _d[_c]; diagnostics.push(ts.createDiagnosticForRange(sourceFile, errorExpectation.range, ts.Diagnostics.Unused_ts_expect_error_directive)); } return diagnostics; } /** * Creates a map of comment directives along with the diagnostics immediately preceded by one of them. * Comments that match to any of those diagnostics are marked as used. */ function getDiagnosticsWithPrecedingDirectives(sourceFile, commentDirectives, flatDiagnostics) { // Diagnostics are only reported if there is no comment directive preceding them // This will modify the directives map by marking "used" ones with a corresponding diagnostic var directives = ts.createCommentDirectivesMap(sourceFile, commentDirectives); var diagnostics = flatDiagnostics.filter(function (diagnostic) { return markPrecedingCommentDirectiveLine(diagnostic, directives) === -1; }); return { diagnostics: diagnostics, directives: directives }; } function getSuggestionDiagnostics(sourceFile, cancellationToken) { return runWithCancellationToken(function () { return getTypeChecker().getSuggestionDiagnostics(sourceFile, cancellationToken); }); } /** * @returns The line index marked as preceding the diagnostic, or -1 if none was. */ function markPrecedingCommentDirectiveLine(diagnostic, directives) { var file = diagnostic.file, start = diagnostic.start; if (!file) { return -1; } // Start out with the line just before the text var lineStarts = ts.getLineStarts(file); var line = ts.computeLineAndCharacterOfPosition(lineStarts, start).line - 1; // TODO: GH#18217 while (line >= 0) { // As soon as that line is known to have a comment directive, use that if (directives.markUsed(line)) { return line; } // Stop searching if the line is not empty and not a comment var lineText = file.text.slice(lineStarts[line], lineStarts[line + 1]).trim(); if (lineText !== "" && !/^(\s*)\/\/(.*)$/.test(lineText)) { return -1; } line--; } return -1; } function getJSSyntacticDiagnosticsForFile(sourceFile) { return runWithCancellationToken(function () { var diagnostics = []; walk(sourceFile, sourceFile); ts.forEachChildRecursively(sourceFile, walk, walkArray); return diagnostics; function walk(node, parent) { // Return directly from the case if the given node doesnt want to visit each child // Otherwise break to visit each child switch (parent.kind) { case 164 /* SyntaxKind.Parameter */: case 167 /* SyntaxKind.PropertyDeclaration */: case 169 /* SyntaxKind.MethodDeclaration */: if (parent.questionToken === node) { diagnostics.push(createDiagnosticForNode(node, ts.Diagnostics.The_0_modifier_can_only_be_used_in_TypeScript_files, "?")); return "skip"; } // falls through case 168 /* SyntaxKind.MethodSignature */: case 171 /* SyntaxKind.Constructor */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 213 /* SyntaxKind.FunctionExpression */: case 256 /* SyntaxKind.FunctionDeclaration */: case 214 /* SyntaxKind.ArrowFunction */: case 254 /* SyntaxKind.VariableDeclaration */: // type annotation if (parent.type === node) { diagnostics.push(createDiagnosticForNode(node, ts.Diagnostics.Type_annotations_can_only_be_used_in_TypeScript_files)); return "skip"; } } switch (node.kind) { case 267 /* SyntaxKind.ImportClause */: if (node.isTypeOnly) { diagnostics.push(createDiagnosticForNode(parent, ts.Diagnostics._0_declarations_can_only_be_used_in_TypeScript_files, "import type")); return "skip"; } break; case 272 /* SyntaxKind.ExportDeclaration */: if (node.isTypeOnly) { diagnostics.push(createDiagnosticForNode(node, ts.Diagnostics._0_declarations_can_only_be_used_in_TypeScript_files, "export type")); return "skip"; } break; case 270 /* SyntaxKind.ImportSpecifier */: case 275 /* SyntaxKind.ExportSpecifier */: if (node.isTypeOnly) { diagnostics.push(createDiagnosticForNode(node, ts.Diagnostics._0_declarations_can_only_be_used_in_TypeScript_files, ts.isImportSpecifier(node) ? "import...type" : "export...type")); return "skip"; } break; case 265 /* SyntaxKind.ImportEqualsDeclaration */: diagnostics.push(createDiagnosticForNode(node, ts.Diagnostics.import_can_only_be_used_in_TypeScript_files)); return "skip"; case 271 /* SyntaxKind.ExportAssignment */: if (node.isExportEquals) { diagnostics.push(createDiagnosticForNode(node, ts.Diagnostics.export_can_only_be_used_in_TypeScript_files)); return "skip"; } break; case 291 /* SyntaxKind.HeritageClause */: var heritageClause = node; if (heritageClause.token === 117 /* SyntaxKind.ImplementsKeyword */) { diagnostics.push(createDiagnosticForNode(node, ts.Diagnostics.implements_clauses_can_only_be_used_in_TypeScript_files)); return "skip"; } break; case 258 /* SyntaxKind.InterfaceDeclaration */: var interfaceKeyword = ts.tokenToString(118 /* SyntaxKind.InterfaceKeyword */); ts.Debug.assertIsDefined(interfaceKeyword); diagnostics.push(createDiagnosticForNode(node, ts.Diagnostics._0_declarations_can_only_be_used_in_TypeScript_files, interfaceKeyword)); return "skip"; case 261 /* SyntaxKind.ModuleDeclaration */: var moduleKeyword = node.flags & 16 /* NodeFlags.Namespace */ ? ts.tokenToString(142 /* SyntaxKind.NamespaceKeyword */) : ts.tokenToString(141 /* SyntaxKind.ModuleKeyword */); ts.Debug.assertIsDefined(moduleKeyword); diagnostics.push(createDiagnosticForNode(node, ts.Diagnostics._0_declarations_can_only_be_used_in_TypeScript_files, moduleKeyword)); return "skip"; case 259 /* SyntaxKind.TypeAliasDeclaration */: diagnostics.push(createDiagnosticForNode(node, ts.Diagnostics.Type_aliases_can_only_be_used_in_TypeScript_files)); return "skip"; case 260 /* SyntaxKind.EnumDeclaration */: var enumKeyword = ts.Debug.checkDefined(ts.tokenToString(92 /* SyntaxKind.EnumKeyword */)); diagnostics.push(createDiagnosticForNode(node, ts.Diagnostics._0_declarations_can_only_be_used_in_TypeScript_files, enumKeyword)); return "skip"; case 230 /* SyntaxKind.NonNullExpression */: diagnostics.push(createDiagnosticForNode(node, ts.Diagnostics.Non_null_assertions_can_only_be_used_in_TypeScript_files)); return "skip"; case 229 /* SyntaxKind.AsExpression */: diagnostics.push(createDiagnosticForNode(node.type, ts.Diagnostics.Type_assertion_expressions_can_only_be_used_in_TypeScript_files)); return "skip"; case 211 /* SyntaxKind.TypeAssertionExpression */: ts.Debug.fail(); // Won't parse these in a JS file anyway, as they are interpreted as JSX. } } function walkArray(nodes, parent) { if (parent.decorators === nodes && !options.experimentalDecorators) { diagnostics.push(createDiagnosticForNode(parent, ts.Diagnostics.Experimental_support_for_decorators_is_a_feature_that_is_subject_to_change_in_a_future_release_Set_the_experimentalDecorators_option_in_your_tsconfig_or_jsconfig_to_remove_this_warning)); } switch (parent.kind) { case 257 /* SyntaxKind.ClassDeclaration */: case 226 /* SyntaxKind.ClassExpression */: case 169 /* SyntaxKind.MethodDeclaration */: case 171 /* SyntaxKind.Constructor */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 213 /* SyntaxKind.FunctionExpression */: case 256 /* SyntaxKind.FunctionDeclaration */: case 214 /* SyntaxKind.ArrowFunction */: // Check type parameters if (nodes === parent.typeParameters) { diagnostics.push(createDiagnosticForNodeArray(nodes, ts.Diagnostics.Type_parameter_declarations_can_only_be_used_in_TypeScript_files)); return "skip"; } // falls through case 237 /* SyntaxKind.VariableStatement */: // Check modifiers if (nodes === parent.modifiers) { checkModifiers(parent.modifiers, parent.kind === 237 /* SyntaxKind.VariableStatement */); return "skip"; } break; case 167 /* SyntaxKind.PropertyDeclaration */: // Check modifiers of property declaration if (nodes === parent.modifiers) { for (var _i = 0, _a = nodes; _i < _a.length; _i++) { var modifier = _a[_i]; if (modifier.kind !== 124 /* SyntaxKind.StaticKeyword */) { diagnostics.push(createDiagnosticForNode(modifier, ts.Diagnostics.The_0_modifier_can_only_be_used_in_TypeScript_files, ts.tokenToString(modifier.kind))); } } return "skip"; } break; case 164 /* SyntaxKind.Parameter */: // Check modifiers of parameter declaration if (nodes === parent.modifiers) { diagnostics.push(createDiagnosticForNodeArray(nodes, ts.Diagnostics.Parameter_modifiers_can_only_be_used_in_TypeScript_files)); return "skip"; } break; case 208 /* SyntaxKind.CallExpression */: case 209 /* SyntaxKind.NewExpression */: case 228 /* SyntaxKind.ExpressionWithTypeArguments */: case 279 /* SyntaxKind.JsxSelfClosingElement */: case 280 /* SyntaxKind.JsxOpeningElement */: case 210 /* SyntaxKind.TaggedTemplateExpression */: // Check type arguments if (nodes === parent.typeArguments) { diagnostics.push(createDiagnosticForNodeArray(nodes, ts.Diagnostics.Type_arguments_can_only_be_used_in_TypeScript_files)); return "skip"; } break; } } function checkModifiers(modifiers, isConstValid) { for (var _i = 0, modifiers_2 = modifiers; _i < modifiers_2.length; _i++) { var modifier = modifiers_2[_i]; switch (modifier.kind) { case 85 /* SyntaxKind.ConstKeyword */: if (isConstValid) { continue; } // to report error, // falls through case 123 /* SyntaxKind.PublicKeyword */: case 121 /* SyntaxKind.PrivateKeyword */: case 122 /* SyntaxKind.ProtectedKeyword */: case 145 /* SyntaxKind.ReadonlyKeyword */: case 135 /* SyntaxKind.DeclareKeyword */: case 126 /* SyntaxKind.AbstractKeyword */: case 159 /* SyntaxKind.OverrideKeyword */: case 101 /* SyntaxKind.InKeyword */: case 144 /* SyntaxKind.OutKeyword */: diagnostics.push(createDiagnosticForNode(modifier, ts.Diagnostics.The_0_modifier_can_only_be_used_in_TypeScript_files, ts.tokenToString(modifier.kind))); break; // These are all legal modifiers. case 124 /* SyntaxKind.StaticKeyword */: case 93 /* SyntaxKind.ExportKeyword */: case 88 /* SyntaxKind.DefaultKeyword */: } } } function createDiagnosticForNodeArray(nodes, message, arg0, arg1, arg2) { var start = nodes.pos; return ts.createFileDiagnostic(sourceFile, start, nodes.end - start, message, arg0, arg1, arg2); } // Since these are syntactic diagnostics, parent might not have been set // this means the sourceFile cannot be infered from the node function createDiagnosticForNode(node, message, arg0, arg1, arg2) { return ts.createDiagnosticForNodeInSourceFile(sourceFile, node, message, arg0, arg1, arg2); } }); } function getDeclarationDiagnosticsWorker(sourceFile, cancellationToken) { return getAndCacheDiagnostics(sourceFile, cancellationToken, cachedDeclarationDiagnosticsForFile, getDeclarationDiagnosticsForFileNoCache); } function getDeclarationDiagnosticsForFileNoCache(sourceFile, cancellationToken) { return runWithCancellationToken(function () { var resolver = getTypeChecker().getEmitResolver(sourceFile, cancellationToken); // Don't actually write any files since we're just getting diagnostics. return ts.getDeclarationDiagnostics(getEmitHost(ts.noop), resolver, sourceFile) || ts.emptyArray; }); } function getAndCacheDiagnostics(sourceFile, cancellationToken, cache, getDiagnostics) { var _a; var cachedResult = sourceFile ? (_a = cache.perFile) === null || _a === void 0 ? void 0 : _a.get(sourceFile.path) : cache.allDiagnostics; if (cachedResult) { return cachedResult; } var result = getDiagnostics(sourceFile, cancellationToken); if (sourceFile) { (cache.perFile || (cache.perFile = new ts.Map())).set(sourceFile.path, result); } else { cache.allDiagnostics = result; } return result; } function getDeclarationDiagnosticsForFile(sourceFile, cancellationToken) { return sourceFile.isDeclarationFile ? [] : getDeclarationDiagnosticsWorker(sourceFile, cancellationToken); } function getOptionsDiagnostics() { return ts.sortAndDeduplicateDiagnostics(ts.concatenate(programDiagnostics.getGlobalDiagnostics(), getOptionsDiagnosticsOfConfigFile())); } function getOptionsDiagnosticsOfConfigFile() { if (!options.configFile) return ts.emptyArray; var diagnostics = programDiagnostics.getDiagnostics(options.configFile.fileName); forEachResolvedProjectReference(function (resolvedRef) { diagnostics = ts.concatenate(diagnostics, programDiagnostics.getDiagnostics(resolvedRef.sourceFile.fileName)); }); return diagnostics; } function getGlobalDiagnostics() { return rootNames.length ? ts.sortAndDeduplicateDiagnostics(getTypeChecker().getGlobalDiagnostics().slice()) : ts.emptyArray; } function getConfigFileParsingDiagnostics() { return configFileParsingDiagnostics || ts.emptyArray; } function processRootFile(fileName, isDefaultLib, ignoreNoDefaultLib, reason) { processSourceFile(ts.normalizePath(fileName), isDefaultLib, ignoreNoDefaultLib, /*packageId*/ undefined, reason); } function fileReferenceIsEqualTo(a, b) { return a.fileName === b.fileName; } function moduleNameIsEqualTo(a, b) { return a.kind === 79 /* SyntaxKind.Identifier */ ? b.kind === 79 /* SyntaxKind.Identifier */ && a.escapedText === b.escapedText : b.kind === 10 /* SyntaxKind.StringLiteral */ && a.text === b.text; } function createSyntheticImport(text, file) { var externalHelpersModuleReference = ts.factory.createStringLiteral(text); var importDecl = ts.factory.createImportDeclaration(/*decorators*/ undefined, /*modifiers*/ undefined, /*importClause*/ undefined, externalHelpersModuleReference, /*assertClause*/ undefined); ts.addEmitFlags(importDecl, 67108864 /* EmitFlags.NeverApplyImportHelper */); ts.setParent(externalHelpersModuleReference, importDecl); ts.setParent(importDecl, file); // explicitly unset the synthesized flag on these declarations so the checker API will answer questions about them // (which is required to build the dependency graph for incremental emit) externalHelpersModuleReference.flags &= ~8 /* NodeFlags.Synthesized */; importDecl.flags &= ~8 /* NodeFlags.Synthesized */; return externalHelpersModuleReference; } function collectExternalModuleReferences(file) { if (file.imports) { return; } var isJavaScriptFile = ts.isSourceFileJS(file); var isExternalModuleFile = ts.isExternalModule(file); // file.imports may not be undefined if there exists dynamic import var imports; var moduleAugmentations; var ambientModules; // If we are importing helpers, we need to add a synthetic reference to resolve the // helpers library. if ((options.isolatedModules || isExternalModuleFile) && !file.isDeclarationFile) { if (options.importHelpers) { // synthesize 'import "tslib"' declaration imports = [createSyntheticImport(ts.externalHelpersModuleNameText, file)]; } var jsxImport = ts.getJSXRuntimeImport(ts.getJSXImplicitImportBase(options, file), options); if (jsxImport) { // synthesize `import "base/jsx-runtime"` declaration (imports || (imports = [])).push(createSyntheticImport(jsxImport, file)); } } for (var _i = 0, _a = file.statements; _i < _a.length; _i++) { var node = _a[_i]; collectModuleReferences(node, /*inAmbientModule*/ false); } if ((file.flags & 2097152 /* NodeFlags.PossiblyContainsDynamicImport */) || isJavaScriptFile) { collectDynamicImportOrRequireCalls(file); } file.imports = imports || ts.emptyArray; file.moduleAugmentations = moduleAugmentations || ts.emptyArray; file.ambientModuleNames = ambientModules || ts.emptyArray; return; function collectModuleReferences(node, inAmbientModule) { if (ts.isAnyImportOrReExport(node)) { var moduleNameExpr = ts.getExternalModuleName(node); // TypeScript 1.0 spec (April 2014): 12.1.6 // An ExternalImportDeclaration in an AmbientExternalModuleDeclaration may reference other external modules // only through top - level external module names. Relative external module names are not permitted. if (moduleNameExpr && ts.isStringLiteral(moduleNameExpr) && moduleNameExpr.text && (!inAmbientModule || !ts.isExternalModuleNameRelative(moduleNameExpr.text))) { ts.setParentRecursive(node, /*incremental*/ false); // we need parent data on imports before the program is fully bound, so we ensure it's set here imports = ts.append(imports, moduleNameExpr); if (!usesUriStyleNodeCoreModules && currentNodeModulesDepth === 0 && !file.isDeclarationFile) { usesUriStyleNodeCoreModules = ts.startsWith(moduleNameExpr.text, "node:"); } } } else if (ts.isModuleDeclaration(node)) { if (ts.isAmbientModule(node) && (inAmbientModule || ts.hasSyntacticModifier(node, 2 /* ModifierFlags.Ambient */) || file.isDeclarationFile)) { node.name.parent = node; var nameText = ts.getTextOfIdentifierOrLiteral(node.name); // Ambient module declarations can be interpreted as augmentations for some existing external modules. // This will happen in two cases: // - if current file is external module then module augmentation is a ambient module declaration defined in the top level scope // - if current file is not external module then module augmentation is an ambient module declaration with non-relative module name // immediately nested in top level ambient module declaration . if (isExternalModuleFile || (inAmbientModule && !ts.isExternalModuleNameRelative(nameText))) { (moduleAugmentations || (moduleAugmentations = [])).push(node.name); } else if (!inAmbientModule) { if (file.isDeclarationFile) { // for global .d.ts files record name of ambient module (ambientModules || (ambientModules = [])).push(nameText); } // An AmbientExternalModuleDeclaration declares an external module. // This type of declaration is permitted only in the global module. // The StringLiteral must specify a top - level external module name. // Relative external module names are not permitted // NOTE: body of ambient module is always a module block, if it exists var body = node.body; if (body) { for (var _i = 0, _a = body.statements; _i < _a.length; _i++) { var statement = _a[_i]; collectModuleReferences(statement, /*inAmbientModule*/ true); } } } } } } function collectDynamicImportOrRequireCalls(file) { var r = /import|require/g; while (r.exec(file.text) !== null) { // eslint-disable-line no-null/no-null var node = getNodeAtPosition(file, r.lastIndex); if (isJavaScriptFile && ts.isRequireCall(node, /*checkArgumentIsStringLiteralLike*/ true)) { ts.setParentRecursive(node, /*incremental*/ false); // we need parent data on imports before the program is fully bound, so we ensure it's set here imports = ts.append(imports, node.arguments[0]); } // we have to check the argument list has length of at least 1. We will still have to process these even though we have parsing error. else if (ts.isImportCall(node) && node.arguments.length >= 1 && ts.isStringLiteralLike(node.arguments[0])) { ts.setParentRecursive(node, /*incremental*/ false); // we need parent data on imports before the program is fully bound, so we ensure it's set here imports = ts.append(imports, node.arguments[0]); } else if (ts.isLiteralImportTypeNode(node)) { ts.setParentRecursive(node, /*incremental*/ false); // we need parent data on imports before the program is fully bound, so we ensure it's set here imports = ts.append(imports, node.argument.literal); } } } /** Returns a token if position is in [start-of-leading-trivia, end), includes JSDoc only in JS files */ function getNodeAtPosition(sourceFile, position) { var current = sourceFile; var getContainingChild = function (child) { if (child.pos <= position && (position < child.end || (position === child.end && (child.kind === 1 /* SyntaxKind.EndOfFileToken */)))) { return child; } }; while (true) { var child = isJavaScriptFile && ts.hasJSDocNodes(current) && ts.forEach(current.jsDoc, getContainingChild) || ts.forEachChild(current, getContainingChild); if (!child) { return current; } current = child; } } } function getLibFileFromReference(ref) { var libName = ts.toFileNameLowerCase(ref.fileName); var libFileName = ts.libMap.get(libName); if (libFileName) { return getSourceFile(pathForLibFile(libFileName)); } } /** This should have similar behavior to 'processSourceFile' without diagnostics or mutation. */ function getSourceFileFromReference(referencingFile, ref) { return getSourceFileFromReferenceWorker(resolveTripleslashReference(ref.fileName, referencingFile.fileName), getSourceFile); } function getSourceFileFromReferenceWorker(fileName, getSourceFile, fail, reason) { if (ts.hasExtension(fileName)) { var canonicalFileName_1 = host.getCanonicalFileName(fileName); if (!options.allowNonTsExtensions && !ts.forEach(ts.flatten(supportedExtensionsWithJsonIfResolveJsonModule), function (extension) { return ts.fileExtensionIs(canonicalFileName_1, extension); })) { if (fail) { if (ts.hasJSFileExtension(canonicalFileName_1)) { fail(ts.Diagnostics.File_0_is_a_JavaScript_file_Did_you_mean_to_enable_the_allowJs_option, fileName); } else { fail(ts.Diagnostics.File_0_has_an_unsupported_extension_The_only_supported_extensions_are_1, fileName, "'" + ts.flatten(supportedExtensions).join("', '") + "'"); } } return undefined; } var sourceFile = getSourceFile(fileName); if (fail) { if (!sourceFile) { var redirect = getProjectReferenceRedirect(fileName); if (redirect) { fail(ts.Diagnostics.Output_file_0_has_not_been_built_from_source_file_1, redirect, fileName); } else { fail(ts.Diagnostics.File_0_not_found, fileName); } } else if (isReferencedFile(reason) && canonicalFileName_1 === host.getCanonicalFileName(getSourceFileByPath(reason.file).fileName)) { fail(ts.Diagnostics.A_file_cannot_have_a_reference_to_itself); } } return sourceFile; } else { var sourceFileNoExtension = options.allowNonTsExtensions && getSourceFile(fileName); if (sourceFileNoExtension) return sourceFileNoExtension; if (fail && options.allowNonTsExtensions) { fail(ts.Diagnostics.File_0_not_found, fileName); return undefined; } // Only try adding extensions from the first supported group (which should be .ts/.tsx/.d.ts) var sourceFileWithAddedExtension = ts.forEach(supportedExtensions[0], function (extension) { return getSourceFile(fileName + extension); }); if (fail && !sourceFileWithAddedExtension) fail(ts.Diagnostics.Could_not_resolve_the_path_0_with_the_extensions_Colon_1, fileName, "'" + ts.flatten(supportedExtensions).join("', '") + "'"); return sourceFileWithAddedExtension; } } /** This has side effects through `findSourceFile`. */ function processSourceFile(fileName, isDefaultLib, ignoreNoDefaultLib, packageId, reason) { getSourceFileFromReferenceWorker(fileName, function (fileName) { return findSourceFile(fileName, isDefaultLib, ignoreNoDefaultLib, reason, packageId); }, // TODO: GH#18217 function (diagnostic) { var args = []; for (var _i = 1; _i < arguments.length; _i++) { args[_i - 1] = arguments[_i]; } return addFilePreprocessingFileExplainingDiagnostic(/*file*/ undefined, reason, diagnostic, args); }, reason); } function processProjectReferenceFile(fileName, reason) { return processSourceFile(fileName, /*isDefaultLib*/ false, /*ignoreNoDefaultLib*/ false, /*packageId*/ undefined, reason); } function reportFileNamesDifferOnlyInCasingError(fileName, existingFile, reason) { var hasExistingReasonToReportErrorOn = !isReferencedFile(reason) && ts.some(fileReasons.get(existingFile.path), isReferencedFile); if (hasExistingReasonToReportErrorOn) { addFilePreprocessingFileExplainingDiagnostic(existingFile, reason, ts.Diagnostics.Already_included_file_name_0_differs_from_file_name_1_only_in_casing, [existingFile.fileName, fileName]); } else { addFilePreprocessingFileExplainingDiagnostic(existingFile, reason, ts.Diagnostics.File_name_0_differs_from_already_included_file_name_1_only_in_casing, [fileName, existingFile.fileName]); } } function createRedirectSourceFile(redirectTarget, unredirected, fileName, path, resolvedPath, originalFileName) { var redirect = Object.create(redirectTarget); redirect.fileName = fileName; redirect.path = path; redirect.resolvedPath = resolvedPath; redirect.originalFileName = originalFileName; redirect.redirectInfo = { redirectTarget: redirectTarget, unredirected: unredirected }; sourceFilesFoundSearchingNodeModules.set(path, currentNodeModulesDepth > 0); Object.defineProperties(redirect, { id: { get: function () { return this.redirectInfo.redirectTarget.id; }, set: function (value) { this.redirectInfo.redirectTarget.id = value; }, }, symbol: { get: function () { return this.redirectInfo.redirectTarget.symbol; }, set: function (value) { this.redirectInfo.redirectTarget.symbol = value; }, }, }); return redirect; } // Get source file from normalized fileName function findSourceFile(fileName, isDefaultLib, ignoreNoDefaultLib, reason, packageId) { ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("program" /* tracing.Phase.Program */, "findSourceFile", { fileName: fileName, isDefaultLib: isDefaultLib || undefined, fileIncludeKind: ts.FileIncludeKind[reason.kind], }); var result = findSourceFileWorker(fileName, isDefaultLib, ignoreNoDefaultLib, reason, packageId); ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); return result; } function getCreateSourceFileOptions(fileName, moduleResolutionCache, host, options) { // It's a _little odd_ that we can't set `impliedNodeFormat` until the program step - but it's the first and only time we have a resolution cache // and a freshly made source file node on hand at the same time, and we need both to set the field. Persisting the resolution cache all the way // to the check and emit steps would be bad - so we much prefer detecting and storing the format information on the source file node upfront. var impliedNodeFormat = getImpliedNodeFormatForFile(toPath(fileName), moduleResolutionCache === null || moduleResolutionCache === void 0 ? void 0 : moduleResolutionCache.getPackageJsonInfoCache(), host, options); return { languageVersion: ts.getEmitScriptTarget(options), impliedNodeFormat: impliedNodeFormat, setExternalModuleIndicator: ts.getSetExternalModuleIndicator(options) }; } function findSourceFileWorker(fileName, isDefaultLib, ignoreNoDefaultLib, reason, packageId) { var path = toPath(fileName); if (useSourceOfProjectReferenceRedirect) { var source = getSourceOfProjectReferenceRedirect(path); // If preserveSymlinks is true, module resolution wont jump the symlink // but the resolved real path may be the .d.ts from project reference // Note:: Currently we try the real path only if the // file is from node_modules to avoid having to run real path on all file paths if (!source && host.realpath && options.preserveSymlinks && ts.isDeclarationFileName(fileName) && ts.stringContains(fileName, ts.nodeModulesPathPart)) { var realPath = toPath(host.realpath(fileName)); if (realPath !== path) source = getSourceOfProjectReferenceRedirect(realPath); } if (source) { var file_1 = ts.isString(source) ? findSourceFile(source, isDefaultLib, ignoreNoDefaultLib, reason, packageId) : undefined; if (file_1) addFileToFilesByName(file_1, path, /*redirectedPath*/ undefined); return file_1; } } var originalFileName = fileName; if (filesByName.has(path)) { var file_2 = filesByName.get(path); addFileIncludeReason(file_2 || undefined, reason); // try to check if we've already seen this file but with a different casing in path // NOTE: this only makes sense for case-insensitive file systems, and only on files which are not redirected if (file_2 && options.forceConsistentCasingInFileNames) { var checkedName = file_2.fileName; var isRedirect = toPath(checkedName) !== toPath(fileName); if (isRedirect) { fileName = getProjectReferenceRedirect(fileName) || fileName; } // Check if it differs only in drive letters its ok to ignore that error: var checkedAbsolutePath = ts.getNormalizedAbsolutePathWithoutRoot(checkedName, currentDirectory); var inputAbsolutePath = ts.getNormalizedAbsolutePathWithoutRoot(fileName, currentDirectory); if (checkedAbsolutePath !== inputAbsolutePath) { reportFileNamesDifferOnlyInCasingError(fileName, file_2, reason); } } // If the file was previously found via a node_modules search, but is now being processed as a root file, // then everything it sucks in may also be marked incorrectly, and needs to be checked again. if (file_2 && sourceFilesFoundSearchingNodeModules.get(file_2.path) && currentNodeModulesDepth === 0) { sourceFilesFoundSearchingNodeModules.set(file_2.path, false); if (!options.noResolve) { processReferencedFiles(file_2, isDefaultLib); processTypeReferenceDirectives(file_2); } if (!options.noLib) { processLibReferenceDirectives(file_2); } modulesWithElidedImports.set(file_2.path, false); processImportedModules(file_2); } // See if we need to reprocess the imports due to prior skipped imports else if (file_2 && modulesWithElidedImports.get(file_2.path)) { if (currentNodeModulesDepth < maxNodeModuleJsDepth) { modulesWithElidedImports.set(file_2.path, false); processImportedModules(file_2); } } return file_2 || undefined; } var redirectedPath; if (isReferencedFile(reason) && !useSourceOfProjectReferenceRedirect) { var redirectProject = getProjectReferenceRedirectProject(fileName); if (redirectProject) { if (ts.outFile(redirectProject.commandLine.options)) { // Shouldnt create many to 1 mapping file in --out scenario return undefined; } var redirect = getProjectReferenceOutputName(redirectProject, fileName); fileName = redirect; // Once we start redirecting to a file, we can potentially come back to it // via a back-reference from another file in the .d.ts folder. If that happens we'll // end up trying to add it to the program *again* because we were tracking it via its // original (un-redirected) name. So we have to map both the original path and the redirected path // to the source file we're about to find/create redirectedPath = toPath(redirect); } } // We haven't looked for this file, do so now and cache result var file = host.getSourceFile(fileName, getCreateSourceFileOptions(fileName, moduleResolutionCache, host, options), function (hostErrorMessage) { return addFilePreprocessingFileExplainingDiagnostic(/*file*/ undefined, reason, ts.Diagnostics.Cannot_read_file_0_Colon_1, [fileName, hostErrorMessage]); }, shouldCreateNewSourceFile); if (packageId) { var packageIdKey = ts.packageIdToString(packageId); var fileFromPackageId = packageIdToSourceFile.get(packageIdKey); if (fileFromPackageId) { // Some other SourceFile already exists with this package name and version. // Instead of creating a duplicate, just redirect to the existing one. var dupFile = createRedirectSourceFile(fileFromPackageId, file, fileName, path, toPath(fileName), originalFileName); // TODO: GH#18217 redirectTargetsMap.add(fileFromPackageId.path, fileName); addFileToFilesByName(dupFile, path, redirectedPath); addFileIncludeReason(dupFile, reason); sourceFileToPackageName.set(path, ts.packageIdToPackageName(packageId)); processingOtherFiles.push(dupFile); return dupFile; } else if (file) { // This is the first source file to have this packageId. packageIdToSourceFile.set(packageIdKey, file); sourceFileToPackageName.set(path, ts.packageIdToPackageName(packageId)); } } addFileToFilesByName(file, path, redirectedPath); if (file) { sourceFilesFoundSearchingNodeModules.set(path, currentNodeModulesDepth > 0); file.fileName = fileName; // Ensure that source file has same name as what we were looking for file.path = path; file.resolvedPath = toPath(fileName); file.originalFileName = originalFileName; addFileIncludeReason(file, reason); if (host.useCaseSensitiveFileNames()) { var pathLowerCase = ts.toFileNameLowerCase(path); // for case-sensitive file systems check if we've already seen some file with similar filename ignoring case var existingFile = filesByNameIgnoreCase.get(pathLowerCase); if (existingFile) { reportFileNamesDifferOnlyInCasingError(fileName, existingFile, reason); } else { filesByNameIgnoreCase.set(pathLowerCase, file); } } skipDefaultLib = skipDefaultLib || (file.hasNoDefaultLib && !ignoreNoDefaultLib); if (!options.noResolve) { processReferencedFiles(file, isDefaultLib); processTypeReferenceDirectives(file); } if (!options.noLib) { processLibReferenceDirectives(file); } // always process imported modules to record module name resolutions processImportedModules(file); if (isDefaultLib) { processingDefaultLibFiles.push(file); } else { processingOtherFiles.push(file); } } return file; } function addFileIncludeReason(file, reason) { if (file) fileReasons.add(file.path, reason); } function addFileToFilesByName(file, path, redirectedPath) { if (redirectedPath) { filesByName.set(redirectedPath, file); filesByName.set(path, file || false); } else { filesByName.set(path, file); } } function getProjectReferenceRedirect(fileName) { var referencedProject = getProjectReferenceRedirectProject(fileName); return referencedProject && getProjectReferenceOutputName(referencedProject, fileName); } function getProjectReferenceRedirectProject(fileName) { // Ignore dts or any json files if (!resolvedProjectReferences || !resolvedProjectReferences.length || ts.isDeclarationFileName(fileName) || ts.fileExtensionIs(fileName, ".json" /* Extension.Json */)) { return undefined; } // If this file is produced by a referenced project, we need to rewrite it to // look in the output folder of the referenced project rather than the input return getResolvedProjectReferenceToRedirect(fileName); } function getProjectReferenceOutputName(referencedProject, fileName) { var out = ts.outFile(referencedProject.commandLine.options); return out ? ts.changeExtension(out, ".d.ts" /* Extension.Dts */) : ts.getOutputDeclarationFileName(fileName, referencedProject.commandLine, !host.useCaseSensitiveFileNames()); } /** * Get the referenced project if the file is input file from that reference project */ function getResolvedProjectReferenceToRedirect(fileName) { if (mapFromFileToProjectReferenceRedirects === undefined) { mapFromFileToProjectReferenceRedirects = new ts.Map(); forEachResolvedProjectReference(function (referencedProject) { // not input file from the referenced project, ignore if (toPath(options.configFilePath) !== referencedProject.sourceFile.path) { referencedProject.commandLine.fileNames.forEach(function (f) { return mapFromFileToProjectReferenceRedirects.set(toPath(f), referencedProject.sourceFile.path); }); } }); } var referencedProjectPath = mapFromFileToProjectReferenceRedirects.get(toPath(fileName)); return referencedProjectPath && getResolvedProjectReferenceByPath(referencedProjectPath); } function forEachResolvedProjectReference(cb) { return ts.forEachResolvedProjectReference(resolvedProjectReferences, cb); } function getSourceOfProjectReferenceRedirect(path) { if (!ts.isDeclarationFileName(path)) return undefined; if (mapFromToProjectReferenceRedirectSource === undefined) { mapFromToProjectReferenceRedirectSource = new ts.Map(); forEachResolvedProjectReference(function (resolvedRef) { var out = ts.outFile(resolvedRef.commandLine.options); if (out) { // Dont know which source file it means so return true? var outputDts = ts.changeExtension(out, ".d.ts" /* Extension.Dts */); mapFromToProjectReferenceRedirectSource.set(toPath(outputDts), true); } else { var getCommonSourceDirectory_3 = ts.memoize(function () { return ts.getCommonSourceDirectoryOfConfig(resolvedRef.commandLine, !host.useCaseSensitiveFileNames()); }); ts.forEach(resolvedRef.commandLine.fileNames, function (fileName) { if (!ts.isDeclarationFileName(fileName) && !ts.fileExtensionIs(fileName, ".json" /* Extension.Json */)) { var outputDts = ts.getOutputDeclarationFileName(fileName, resolvedRef.commandLine, !host.useCaseSensitiveFileNames(), getCommonSourceDirectory_3); mapFromToProjectReferenceRedirectSource.set(toPath(outputDts), fileName); } }); } }); } return mapFromToProjectReferenceRedirectSource.get(path); } function isSourceOfProjectReferenceRedirect(fileName) { return useSourceOfProjectReferenceRedirect && !!getResolvedProjectReferenceToRedirect(fileName); } function getResolvedProjectReferenceByPath(projectReferencePath) { if (!projectReferenceRedirects) { return undefined; } return projectReferenceRedirects.get(projectReferencePath) || undefined; } function processReferencedFiles(file, isDefaultLib) { ts.forEach(file.referencedFiles, function (ref, index) { processSourceFile(resolveTripleslashReference(ref.fileName, file.fileName), isDefaultLib, /*ignoreNoDefaultLib*/ false, /*packageId*/ undefined, { kind: ts.FileIncludeKind.ReferenceFile, file: file.path, index: index, }); }); } function processTypeReferenceDirectives(file) { var typeDirectives = file.typeReferenceDirectives; if (!typeDirectives) { return; } var resolutions = resolveTypeReferenceDirectiveNamesWorker(typeDirectives, file); for (var index = 0; index < typeDirectives.length; index++) { var ref = file.typeReferenceDirectives[index]; var resolvedTypeReferenceDirective = resolutions[index]; // store resolved type directive on the file var fileName = ts.toFileNameLowerCase(ref.fileName); ts.setResolvedTypeReferenceDirective(file, fileName, resolvedTypeReferenceDirective); var mode = ref.resolutionMode || file.impliedNodeFormat; if (mode && ts.getEmitModuleResolutionKind(options) !== ts.ModuleResolutionKind.Node16 && ts.getEmitModuleResolutionKind(options) !== ts.ModuleResolutionKind.NodeNext) { programDiagnostics.add(ts.createDiagnosticForRange(file, ref, ts.Diagnostics.resolution_mode_assertions_are_only_supported_when_moduleResolution_is_node16_or_nodenext)); } processTypeReferenceDirective(fileName, mode, resolvedTypeReferenceDirective, { kind: ts.FileIncludeKind.TypeReferenceDirective, file: file.path, index: index, }); } } function processTypeReferenceDirective(typeReferenceDirective, mode, resolvedTypeReferenceDirective, reason) { ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.push("program" /* tracing.Phase.Program */, "processTypeReferenceDirective", { directive: typeReferenceDirective, hasResolved: !!resolveModuleNamesReusingOldState, refKind: reason.kind, refPath: isReferencedFile(reason) ? reason.file : undefined }); processTypeReferenceDirectiveWorker(typeReferenceDirective, mode, resolvedTypeReferenceDirective, reason); ts.tracing === null || ts.tracing === void 0 ? void 0 : ts.tracing.pop(); } function processTypeReferenceDirectiveWorker(typeReferenceDirective, mode, resolvedTypeReferenceDirective, reason) { // If we already found this library as a primary reference - nothing to do var previousResolution = resolvedTypeReferenceDirectives.get(typeReferenceDirective, mode); if (previousResolution && previousResolution.primary) { return; } var saveResolution = true; if (resolvedTypeReferenceDirective) { if (resolvedTypeReferenceDirective.isExternalLibraryImport) currentNodeModulesDepth++; if (resolvedTypeReferenceDirective.primary) { // resolved from the primary path processSourceFile(resolvedTypeReferenceDirective.resolvedFileName, /*isDefaultLib*/ false, /*ignoreNoDefaultLib*/ false, resolvedTypeReferenceDirective.packageId, reason); // TODO: GH#18217 } else { // If we already resolved to this file, it must have been a secondary reference. Check file contents // for sameness and possibly issue an error if (previousResolution) { // Don't bother reading the file again if it's the same file. if (resolvedTypeReferenceDirective.resolvedFileName !== previousResolution.resolvedFileName) { var otherFileText = host.readFile(resolvedTypeReferenceDirective.resolvedFileName); var existingFile = getSourceFile(previousResolution.resolvedFileName); if (otherFileText !== existingFile.text) { addFilePreprocessingFileExplainingDiagnostic(existingFile, reason, ts.Diagnostics.Conflicting_definitions_for_0_found_at_1_and_2_Consider_installing_a_specific_version_of_this_library_to_resolve_the_conflict, [typeReferenceDirective, resolvedTypeReferenceDirective.resolvedFileName, previousResolution.resolvedFileName]); } } // don't overwrite previous resolution result saveResolution = false; } else { // First resolution of this library processSourceFile(resolvedTypeReferenceDirective.resolvedFileName, /*isDefaultLib*/ false, /*ignoreNoDefaultLib*/ false, resolvedTypeReferenceDirective.packageId, reason); } } if (resolvedTypeReferenceDirective.isExternalLibraryImport) currentNodeModulesDepth--; } else { addFilePreprocessingFileExplainingDiagnostic(/*file*/ undefined, reason, ts.Diagnostics.Cannot_find_type_definition_file_for_0, [typeReferenceDirective]); } if (saveResolution) { resolvedTypeReferenceDirectives.set(typeReferenceDirective, mode, resolvedTypeReferenceDirective); } } function pathForLibFile(libFileName) { // Support resolving to lib.dom.d.ts -> @typescript/lib-dom, and // lib.dom.iterable.d.ts -> @typescript/lib-dom/iterable // lib.es2015.symbol.wellknown.d.ts -> @typescript/lib-es2015/symbol-wellknown var components = libFileName.split("."); var path = components[1]; var i = 2; while (components[i] && components[i] !== "d") { path += (i === 2 ? "/" : "-") + components[i]; i++; } var resolveFrom = ts.combinePaths(currentDirectory, "__lib_node_modules_lookup_".concat(libFileName, "__.ts")); var localOverrideModuleResult = ts.resolveModuleName("@typescript/lib-" + path, resolveFrom, { moduleResolution: ts.ModuleResolutionKind.NodeJs }, host, moduleResolutionCache); if (localOverrideModuleResult === null || localOverrideModuleResult === void 0 ? void 0 : localOverrideModuleResult.resolvedModule) { return localOverrideModuleResult.resolvedModule.resolvedFileName; } return ts.combinePaths(defaultLibraryPath, libFileName); } function processLibReferenceDirectives(file) { ts.forEach(file.libReferenceDirectives, function (libReference, index) { var libName = ts.toFileNameLowerCase(libReference.fileName); var libFileName = ts.libMap.get(libName); if (libFileName) { // we ignore any 'no-default-lib' reference set on this file. processRootFile(pathForLibFile(libFileName), /*isDefaultLib*/ true, /*ignoreNoDefaultLib*/ true, { kind: ts.FileIncludeKind.LibReferenceDirective, file: file.path, index: index, }); } else { var unqualifiedLibName = ts.removeSuffix(ts.removePrefix(libName, "lib."), ".d.ts"); var suggestion = ts.getSpellingSuggestion(unqualifiedLibName, ts.libs, ts.identity); var diagnostic = suggestion ? ts.Diagnostics.Cannot_find_lib_definition_for_0_Did_you_mean_1 : ts.Diagnostics.Cannot_find_lib_definition_for_0; (fileProcessingDiagnostics || (fileProcessingDiagnostics = [])).push({ kind: 0 /* FilePreprocessingDiagnosticsKind.FilePreprocessingReferencedDiagnostic */, reason: { kind: ts.FileIncludeKind.LibReferenceDirective, file: file.path, index: index, }, diagnostic: diagnostic, args: [libName, suggestion] }); } }); } function getCanonicalFileName(fileName) { return host.getCanonicalFileName(fileName); } function processImportedModules(file) { var _a; collectExternalModuleReferences(file); if (file.imports.length || file.moduleAugmentations.length) { // Because global augmentation doesn't have string literal name, we can check for global augmentation as such. var moduleNames = getModuleNames(file); var resolutions = resolveModuleNamesReusingOldState(moduleNames, file); ts.Debug.assert(resolutions.length === moduleNames.length); var optionsForFile = (useSourceOfProjectReferenceRedirect ? (_a = getRedirectReferenceForResolution(file)) === null || _a === void 0 ? void 0 : _a.commandLine.options : undefined) || options; for (var index = 0; index < moduleNames.length; index++) { var resolution = resolutions[index]; ts.setResolvedModule(file, moduleNames[index], resolution, getModeForResolutionAtIndex(file, index)); if (!resolution) { continue; } var isFromNodeModulesSearch = resolution.isExternalLibraryImport; var isJsFile = !ts.resolutionExtensionIsTSOrJson(resolution.extension); var isJsFileFromNodeModules = isFromNodeModulesSearch && isJsFile; var resolvedFileName = resolution.resolvedFileName; if (isFromNodeModulesSearch) { currentNodeModulesDepth++; } // add file to program only if: // - resolution was successful // - noResolve is falsy // - module name comes from the list of imports // - it's not a top level JavaScript module that exceeded the search max var elideImport = isJsFileFromNodeModules && currentNodeModulesDepth > maxNodeModuleJsDepth; // Don't add the file if it has a bad extension (e.g. 'tsx' if we don't have '--allowJs') // This may still end up being an untyped module -- the file won't be included but imports will be allowed. var shouldAddFile = resolvedFileName && !getResolutionDiagnostic(optionsForFile, resolution) && !optionsForFile.noResolve && index < file.imports.length && !elideImport && !(isJsFile && !ts.getAllowJSCompilerOption(optionsForFile)) && (ts.isInJSFile(file.imports[index]) || !(file.imports[index].flags & 8388608 /* NodeFlags.JSDoc */)); if (elideImport) { modulesWithElidedImports.set(file.path, true); } else if (shouldAddFile) { findSourceFile(resolvedFileName, /*isDefaultLib*/ false, /*ignoreNoDefaultLib*/ false, { kind: ts.FileIncludeKind.Import, file: file.path, index: index, }, resolution.packageId); } if (isFromNodeModulesSearch) { currentNodeModulesDepth--; } } } else { // no imports - drop cached module resolutions file.resolvedModules = undefined; } } function checkSourceFilesBelongToPath(sourceFiles, rootDirectory) { var allFilesBelongToPath = true; var absoluteRootDirectoryPath = host.getCanonicalFileName(ts.getNormalizedAbsolutePath(rootDirectory, currentDirectory)); for (var _i = 0, sourceFiles_2 = sourceFiles; _i < sourceFiles_2.length; _i++) { var sourceFile = sourceFiles_2[_i]; if (!sourceFile.isDeclarationFile) { var absoluteSourceFilePath = host.getCanonicalFileName(ts.getNormalizedAbsolutePath(sourceFile.fileName, currentDirectory)); if (absoluteSourceFilePath.indexOf(absoluteRootDirectoryPath) !== 0) { addProgramDiagnosticExplainingFile(sourceFile, ts.Diagnostics.File_0_is_not_under_rootDir_1_rootDir_is_expected_to_contain_all_source_files, [sourceFile.fileName, rootDirectory]); allFilesBelongToPath = false; } } } return allFilesBelongToPath; } function parseProjectReferenceConfigFile(ref) { if (!projectReferenceRedirects) { projectReferenceRedirects = new ts.Map(); } // The actual filename (i.e. add "/tsconfig.json" if necessary) var refPath = resolveProjectReferencePath(ref); var sourceFilePath = toPath(refPath); var fromCache = projectReferenceRedirects.get(sourceFilePath); if (fromCache !== undefined) { return fromCache || undefined; } var commandLine; var sourceFile; if (host.getParsedCommandLine) { commandLine = host.getParsedCommandLine(refPath); if (!commandLine) { addFileToFilesByName(/*sourceFile*/ undefined, sourceFilePath, /*redirectedPath*/ undefined); projectReferenceRedirects.set(sourceFilePath, false); return undefined; } sourceFile = ts.Debug.checkDefined(commandLine.options.configFile); ts.Debug.assert(!sourceFile.path || sourceFile.path === sourceFilePath); addFileToFilesByName(sourceFile, sourceFilePath, /*redirectedPath*/ undefined); } else { // An absolute path pointing to the containing directory of the config file var basePath = ts.getNormalizedAbsolutePath(ts.getDirectoryPath(refPath), host.getCurrentDirectory()); sourceFile = host.getSourceFile(refPath, 100 /* ScriptTarget.JSON */); addFileToFilesByName(sourceFile, sourceFilePath, /*redirectedPath*/ undefined); if (sourceFile === undefined) { projectReferenceRedirects.set(sourceFilePath, false); return undefined; } commandLine = ts.parseJsonSourceFileConfigFileContent(sourceFile, configParsingHost, basePath, /*existingOptions*/ undefined, refPath); } sourceFile.fileName = refPath; sourceFile.path = sourceFilePath; sourceFile.resolvedPath = sourceFilePath; sourceFile.originalFileName = refPath; var resolvedRef = { commandLine: commandLine, sourceFile: sourceFile }; projectReferenceRedirects.set(sourceFilePath, resolvedRef); if (commandLine.projectReferences) { resolvedRef.references = commandLine.projectReferences.map(parseProjectReferenceConfigFile); } return resolvedRef; } function verifyCompilerOptions() { if (options.strictPropertyInitialization && !ts.getStrictOptionValue(options, "strictNullChecks")) { createDiagnosticForOptionName(ts.Diagnostics.Option_0_cannot_be_specified_without_specifying_option_1, "strictPropertyInitialization", "strictNullChecks"); } if (options.exactOptionalPropertyTypes && !ts.getStrictOptionValue(options, "strictNullChecks")) { createDiagnosticForOptionName(ts.Diagnostics.Option_0_cannot_be_specified_without_specifying_option_1, "exactOptionalPropertyTypes", "strictNullChecks"); } if (options.isolatedModules) { if (options.out) { createDiagnosticForOptionName(ts.Diagnostics.Option_0_cannot_be_specified_with_option_1, "out", "isolatedModules"); } if (options.outFile) { createDiagnosticForOptionName(ts.Diagnostics.Option_0_cannot_be_specified_with_option_1, "outFile", "isolatedModules"); } } if (options.inlineSourceMap) { if (options.sourceMap) { createDiagnosticForOptionName(ts.Diagnostics.Option_0_cannot_be_specified_with_option_1, "sourceMap", "inlineSourceMap"); } if (options.mapRoot) { createDiagnosticForOptionName(ts.Diagnostics.Option_0_cannot_be_specified_with_option_1, "mapRoot", "inlineSourceMap"); } } if (options.composite) { if (options.declaration === false) { createDiagnosticForOptionName(ts.Diagnostics.Composite_projects_may_not_disable_declaration_emit, "declaration"); } if (options.incremental === false) { createDiagnosticForOptionName(ts.Diagnostics.Composite_projects_may_not_disable_incremental_compilation, "declaration"); } } var outputFile = ts.outFile(options); if (options.tsBuildInfoFile) { if (!ts.isIncrementalCompilation(options)) { createDiagnosticForOptionName(ts.Diagnostics.Option_0_cannot_be_specified_without_specifying_option_1_or_option_2, "tsBuildInfoFile", "incremental", "composite"); } } else if (options.incremental && !outputFile && !options.configFilePath) { programDiagnostics.add(ts.createCompilerDiagnostic(ts.Diagnostics.Option_incremental_can_only_be_specified_using_tsconfig_emitting_to_single_file_or_when_option_tsBuildInfoFile_is_specified)); } verifyProjectReferences(); // List of collected files is complete; validate exhautiveness if this is a project with a file list if (options.composite) { var rootPaths = new ts.Set(rootNames.map(toPath)); for (var _i = 0, files_4 = files; _i < files_4.length; _i++) { var file = files_4[_i]; // Ignore file that is not emitted if (ts.sourceFileMayBeEmitted(file, program) && !rootPaths.has(file.path)) { addProgramDiagnosticExplainingFile(file, ts.Diagnostics.File_0_is_not_listed_within_the_file_list_of_project_1_Projects_must_list_all_files_or_use_an_include_pattern, [file.fileName, options.configFilePath || ""]); } } } if (options.paths) { for (var key in options.paths) { if (!ts.hasProperty(options.paths, key)) { continue; } if (!ts.hasZeroOrOneAsteriskCharacter(key)) { createDiagnosticForOptionPaths(/*onKey*/ true, key, ts.Diagnostics.Pattern_0_can_have_at_most_one_Asterisk_character, key); } if (ts.isArray(options.paths[key])) { var len = options.paths[key].length; if (len === 0) { createDiagnosticForOptionPaths(/*onKey*/ false, key, ts.Diagnostics.Substitutions_for_pattern_0_shouldn_t_be_an_empty_array, key); } for (var i = 0; i < len; i++) { var subst = options.paths[key][i]; var typeOfSubst = typeof subst; if (typeOfSubst === "string") { if (!ts.hasZeroOrOneAsteriskCharacter(subst)) { createDiagnosticForOptionPathKeyValue(key, i, ts.Diagnostics.Substitution_0_in_pattern_1_can_have_at_most_one_Asterisk_character, subst, key); } if (!options.baseUrl && !ts.pathIsRelative(subst) && !ts.pathIsAbsolute(subst)) { createDiagnosticForOptionPathKeyValue(key, i, ts.Diagnostics.Non_relative_paths_are_not_allowed_when_baseUrl_is_not_set_Did_you_forget_a_leading_Slash); } } else { createDiagnosticForOptionPathKeyValue(key, i, ts.Diagnostics.Substitution_0_for_pattern_1_has_incorrect_type_expected_string_got_2, subst, key, typeOfSubst); } } } else { createDiagnosticForOptionPaths(/*onKey*/ false, key, ts.Diagnostics.Substitutions_for_pattern_0_should_be_an_array, key); } } } if (!options.sourceMap && !options.inlineSourceMap) { if (options.inlineSources) { createDiagnosticForOptionName(ts.Diagnostics.Option_0_can_only_be_used_when_either_option_inlineSourceMap_or_option_sourceMap_is_provided, "inlineSources"); } if (options.sourceRoot) { createDiagnosticForOptionName(ts.Diagnostics.Option_0_can_only_be_used_when_either_option_inlineSourceMap_or_option_sourceMap_is_provided, "sourceRoot"); } } if (options.out && options.outFile) { createDiagnosticForOptionName(ts.Diagnostics.Option_0_cannot_be_specified_with_option_1, "out", "outFile"); } if (options.mapRoot && !(options.sourceMap || options.declarationMap)) { // Error to specify --mapRoot without --sourcemap createDiagnosticForOptionName(ts.Diagnostics.Option_0_cannot_be_specified_without_specifying_option_1_or_option_2, "mapRoot", "sourceMap", "declarationMap"); } if (options.declarationDir) { if (!ts.getEmitDeclarations(options)) { createDiagnosticForOptionName(ts.Diagnostics.Option_0_cannot_be_specified_without_specifying_option_1_or_option_2, "declarationDir", "declaration", "composite"); } if (outputFile) { createDiagnosticForOptionName(ts.Diagnostics.Option_0_cannot_be_specified_with_option_1, "declarationDir", options.out ? "out" : "outFile"); } } if (options.declarationMap && !ts.getEmitDeclarations(options)) { createDiagnosticForOptionName(ts.Diagnostics.Option_0_cannot_be_specified_without_specifying_option_1_or_option_2, "declarationMap", "declaration", "composite"); } if (options.lib && options.noLib) { createDiagnosticForOptionName(ts.Diagnostics.Option_0_cannot_be_specified_with_option_1, "lib", "noLib"); } if (options.noImplicitUseStrict && ts.getStrictOptionValue(options, "alwaysStrict")) { createDiagnosticForOptionName(ts.Diagnostics.Option_0_cannot_be_specified_with_option_1, "noImplicitUseStrict", "alwaysStrict"); } var languageVersion = ts.getEmitScriptTarget(options); var firstNonAmbientExternalModuleSourceFile = ts.find(files, function (f) { return ts.isExternalModule(f) && !f.isDeclarationFile; }); if (options.isolatedModules) { if (options.module === ts.ModuleKind.None && languageVersion < 2 /* ScriptTarget.ES2015 */) { createDiagnosticForOptionName(ts.Diagnostics.Option_isolatedModules_can_only_be_used_when_either_option_module_is_provided_or_option_target_is_ES2015_or_higher, "isolatedModules", "target"); } if (options.preserveConstEnums === false) { createDiagnosticForOptionName(ts.Diagnostics.Option_preserveConstEnums_cannot_be_disabled_when_isolatedModules_is_enabled, "preserveConstEnums", "isolatedModules"); } var firstNonExternalModuleSourceFile = ts.find(files, function (f) { return !ts.isExternalModule(f) && !ts.isSourceFileJS(f) && !f.isDeclarationFile && f.scriptKind !== 6 /* ScriptKind.JSON */; }); if (firstNonExternalModuleSourceFile) { var span = ts.getErrorSpanForNode(firstNonExternalModuleSourceFile, firstNonExternalModuleSourceFile); programDiagnostics.add(ts.createFileDiagnostic(firstNonExternalModuleSourceFile, span.start, span.length, ts.Diagnostics._0_cannot_be_compiled_under_isolatedModules_because_it_is_considered_a_global_script_file_Add_an_import_export_or_an_empty_export_statement_to_make_it_a_module, ts.getBaseFileName(firstNonExternalModuleSourceFile.fileName))); } } else if (firstNonAmbientExternalModuleSourceFile && languageVersion < 2 /* ScriptTarget.ES2015 */ && options.module === ts.ModuleKind.None) { // We cannot use createDiagnosticFromNode because nodes do not have parents yet var span = ts.getErrorSpanForNode(firstNonAmbientExternalModuleSourceFile, typeof firstNonAmbientExternalModuleSourceFile.externalModuleIndicator === "boolean" ? firstNonAmbientExternalModuleSourceFile : firstNonAmbientExternalModuleSourceFile.externalModuleIndicator); programDiagnostics.add(ts.createFileDiagnostic(firstNonAmbientExternalModuleSourceFile, span.start, span.length, ts.Diagnostics.Cannot_use_imports_exports_or_module_augmentations_when_module_is_none)); } // Cannot specify module gen that isn't amd or system with --out if (outputFile && !options.emitDeclarationOnly) { if (options.module && !(options.module === ts.ModuleKind.AMD || options.module === ts.ModuleKind.System)) { createDiagnosticForOptionName(ts.Diagnostics.Only_amd_and_system_modules_are_supported_alongside_0, options.out ? "out" : "outFile", "module"); } else if (options.module === undefined && firstNonAmbientExternalModuleSourceFile) { var span = ts.getErrorSpanForNode(firstNonAmbientExternalModuleSourceFile, typeof firstNonAmbientExternalModuleSourceFile.externalModuleIndicator === "boolean" ? firstNonAmbientExternalModuleSourceFile : firstNonAmbientExternalModuleSourceFile.externalModuleIndicator); programDiagnostics.add(ts.createFileDiagnostic(firstNonAmbientExternalModuleSourceFile, span.start, span.length, ts.Diagnostics.Cannot_compile_modules_using_option_0_unless_the_module_flag_is_amd_or_system, options.out ? "out" : "outFile")); } } if (options.resolveJsonModule) { if (ts.getEmitModuleResolutionKind(options) !== ts.ModuleResolutionKind.NodeJs && ts.getEmitModuleResolutionKind(options) !== ts.ModuleResolutionKind.Node16 && ts.getEmitModuleResolutionKind(options) !== ts.ModuleResolutionKind.NodeNext) { createDiagnosticForOptionName(ts.Diagnostics.Option_resolveJsonModule_cannot_be_specified_without_node_module_resolution_strategy, "resolveJsonModule"); } // Any emit other than common js, amd, es2015 or esnext is error else if (!ts.hasJsonModuleEmitEnabled(options)) { createDiagnosticForOptionName(ts.Diagnostics.Option_resolveJsonModule_can_only_be_specified_when_module_code_generation_is_commonjs_amd_es2015_or_esNext, "resolveJsonModule", "module"); } } // there has to be common source directory if user specified --outdir || --rootDir || --sourceRoot // if user specified --mapRoot, there needs to be common source directory if there would be multiple files being emitted if (options.outDir || // there is --outDir specified options.rootDir || // there is --rootDir specified options.sourceRoot || // there is --sourceRoot specified options.mapRoot) { // there is --mapRoot specified // Precalculate and cache the common source directory var dir = getCommonSourceDirectory(); // If we failed to find a good common directory, but outDir is specified and at least one of our files is on a windows drive/URL/other resource, add a failure if (options.outDir && dir === "" && files.some(function (file) { return ts.getRootLength(file.fileName) > 1; })) { createDiagnosticForOptionName(ts.Diagnostics.Cannot_find_the_common_subdirectory_path_for_the_input_files, "outDir"); } } if (options.useDefineForClassFields && languageVersion === 0 /* ScriptTarget.ES3 */) { createDiagnosticForOptionName(ts.Diagnostics.Option_0_cannot_be_specified_when_option_target_is_ES3, "useDefineForClassFields"); } if (options.checkJs && !ts.getAllowJSCompilerOption(options)) { programDiagnostics.add(ts.createCompilerDiagnostic(ts.Diagnostics.Option_0_cannot_be_specified_without_specifying_option_1, "checkJs", "allowJs")); } if (options.emitDeclarationOnly) { if (!ts.getEmitDeclarations(options)) { createDiagnosticForOptionName(ts.Diagnostics.Option_0_cannot_be_specified_without_specifying_option_1_or_option_2, "emitDeclarationOnly", "declaration", "composite"); } if (options.noEmit) { createDiagnosticForOptionName(ts.Diagnostics.Option_0_cannot_be_specified_with_option_1, "emitDeclarationOnly", "noEmit"); } } if (options.emitDecoratorMetadata && !options.experimentalDecorators) { createDiagnosticForOptionName(ts.Diagnostics.Option_0_cannot_be_specified_without_specifying_option_1, "emitDecoratorMetadata", "experimentalDecorators"); } if (options.jsxFactory) { if (options.reactNamespace) { createDiagnosticForOptionName(ts.Diagnostics.Option_0_cannot_be_specified_with_option_1, "reactNamespace", "jsxFactory"); } if (options.jsx === 4 /* JsxEmit.ReactJSX */ || options.jsx === 5 /* JsxEmit.ReactJSXDev */) { createDiagnosticForOptionName(ts.Diagnostics.Option_0_cannot_be_specified_when_option_jsx_is_1, "jsxFactory", ts.inverseJsxOptionMap.get("" + options.jsx)); } if (!ts.parseIsolatedEntityName(options.jsxFactory, languageVersion)) { createOptionValueDiagnostic("jsxFactory", ts.Diagnostics.Invalid_value_for_jsxFactory_0_is_not_a_valid_identifier_or_qualified_name, options.jsxFactory); } } else if (options.reactNamespace && !ts.isIdentifierText(options.reactNamespace, languageVersion)) { createOptionValueDiagnostic("reactNamespace", ts.Diagnostics.Invalid_value_for_reactNamespace_0_is_not_a_valid_identifier, options.reactNamespace); } if (options.jsxFragmentFactory) { if (!options.jsxFactory) { createDiagnosticForOptionName(ts.Diagnostics.Option_0_cannot_be_specified_without_specifying_option_1, "jsxFragmentFactory", "jsxFactory"); } if (options.jsx === 4 /* JsxEmit.ReactJSX */ || options.jsx === 5 /* JsxEmit.ReactJSXDev */) { createDiagnosticForOptionName(ts.Diagnostics.Option_0_cannot_be_specified_when_option_jsx_is_1, "jsxFragmentFactory", ts.inverseJsxOptionMap.get("" + options.jsx)); } if (!ts.parseIsolatedEntityName(options.jsxFragmentFactory, languageVersion)) { createOptionValueDiagnostic("jsxFragmentFactory", ts.Diagnostics.Invalid_value_for_jsxFragmentFactory_0_is_not_a_valid_identifier_or_qualified_name, options.jsxFragmentFactory); } } if (options.reactNamespace) { if (options.jsx === 4 /* JsxEmit.ReactJSX */ || options.jsx === 5 /* JsxEmit.ReactJSXDev */) { createDiagnosticForOptionName(ts.Diagnostics.Option_0_cannot_be_specified_when_option_jsx_is_1, "reactNamespace", ts.inverseJsxOptionMap.get("" + options.jsx)); } } if (options.jsxImportSource) { if (options.jsx === 2 /* JsxEmit.React */) { createDiagnosticForOptionName(ts.Diagnostics.Option_0_cannot_be_specified_when_option_jsx_is_1, "jsxImportSource", ts.inverseJsxOptionMap.get("" + options.jsx)); } } if (options.preserveValueImports && ts.getEmitModuleKind(options) < ts.ModuleKind.ES2015) { createOptionValueDiagnostic("importsNotUsedAsValues", ts.Diagnostics.Option_preserveValueImports_can_only_be_used_when_module_is_set_to_es2015_or_later); } // If the emit is enabled make sure that every output file is unique and not overwriting any of the input files if (!options.noEmit && !options.suppressOutputPathCheck) { var emitHost = getEmitHost(); var emitFilesSeen_1 = new ts.Set(); ts.forEachEmittedFile(emitHost, function (emitFileNames) { if (!options.emitDeclarationOnly) { verifyEmitFilePath(emitFileNames.jsFilePath, emitFilesSeen_1); } verifyEmitFilePath(emitFileNames.declarationFilePath, emitFilesSeen_1); }); } // Verify that all the emit files are unique and don't overwrite input files function verifyEmitFilePath(emitFileName, emitFilesSeen) { if (emitFileName) { var emitFilePath = toPath(emitFileName); // Report error if the output overwrites input file if (filesByName.has(emitFilePath)) { var chain = void 0; if (!options.configFilePath) { // The program is from either an inferred project or an external project chain = ts.chainDiagnosticMessages(/*details*/ undefined, ts.Diagnostics.Adding_a_tsconfig_json_file_will_help_organize_projects_that_contain_both_TypeScript_and_JavaScript_files_Learn_more_at_https_Colon_Slash_Slashaka_ms_Slashtsconfig); } chain = ts.chainDiagnosticMessages(chain, ts.Diagnostics.Cannot_write_file_0_because_it_would_overwrite_input_file, emitFileName); blockEmittingOfFile(emitFileName, ts.createCompilerDiagnosticFromMessageChain(chain)); } var emitFileKey = !host.useCaseSensitiveFileNames() ? ts.toFileNameLowerCase(emitFilePath) : emitFilePath; // Report error if multiple files write into same file if (emitFilesSeen.has(emitFileKey)) { // Already seen the same emit file - report error blockEmittingOfFile(emitFileName, ts.createCompilerDiagnostic(ts.Diagnostics.Cannot_write_file_0_because_it_would_be_overwritten_by_multiple_input_files, emitFileName)); } else { emitFilesSeen.add(emitFileKey); } } } } function createDiagnosticExplainingFile(file, fileProcessingReason, diagnostic, args) { var _a; var fileIncludeReasons; var relatedInfo; var locationReason = isReferencedFile(fileProcessingReason) ? fileProcessingReason : undefined; if (file) (_a = fileReasons.get(file.path)) === null || _a === void 0 ? void 0 : _a.forEach(processReason); if (fileProcessingReason) processReason(fileProcessingReason); // If we have location and there is only one reason file is in which is the location, dont add details for file include if (locationReason && (fileIncludeReasons === null || fileIncludeReasons === void 0 ? void 0 : fileIncludeReasons.length) === 1) fileIncludeReasons = undefined; var location = locationReason && getReferencedFileLocation(getSourceFileByPath, locationReason); var fileIncludeReasonDetails = fileIncludeReasons && ts.chainDiagnosticMessages(fileIncludeReasons, ts.Diagnostics.The_file_is_in_the_program_because_Colon); var redirectInfo = file && ts.explainIfFileIsRedirect(file); var chain = ts.chainDiagnosticMessages.apply(void 0, __spreadArray([redirectInfo ? fileIncludeReasonDetails ? __spreadArray([fileIncludeReasonDetails], redirectInfo, true) : redirectInfo : fileIncludeReasonDetails, diagnostic], args || ts.emptyArray, false)); return location && isReferenceFileLocation(location) ? ts.createFileDiagnosticFromMessageChain(location.file, location.pos, location.end - location.pos, chain, relatedInfo) : ts.createCompilerDiagnosticFromMessageChain(chain, relatedInfo); function processReason(reason) { (fileIncludeReasons || (fileIncludeReasons = [])).push(ts.fileIncludeReasonToDiagnostics(program, reason)); if (!locationReason && isReferencedFile(reason)) { // Report error at first reference file or file currently in processing and dont report in related information locationReason = reason; } else if (locationReason !== reason) { relatedInfo = ts.append(relatedInfo, fileIncludeReasonToRelatedInformation(reason)); } // Remove fileProcessingReason if its already included in fileReasons of the program if (reason === fileProcessingReason) fileProcessingReason = undefined; } } function addFilePreprocessingFileExplainingDiagnostic(file, fileProcessingReason, diagnostic, args) { (fileProcessingDiagnostics || (fileProcessingDiagnostics = [])).push({ kind: 1 /* FilePreprocessingDiagnosticsKind.FilePreprocessingFileExplainingDiagnostic */, file: file && file.path, fileProcessingReason: fileProcessingReason, diagnostic: diagnostic, args: args }); } function addProgramDiagnosticExplainingFile(file, diagnostic, args) { programDiagnostics.add(createDiagnosticExplainingFile(file, /*fileProcessingReason*/ undefined, diagnostic, args)); } function fileIncludeReasonToRelatedInformation(reason) { if (isReferencedFile(reason)) { var referenceLocation = getReferencedFileLocation(getSourceFileByPath, reason); var message_2; switch (reason.kind) { case ts.FileIncludeKind.Import: message_2 = ts.Diagnostics.File_is_included_via_import_here; break; case ts.FileIncludeKind.ReferenceFile: message_2 = ts.Diagnostics.File_is_included_via_reference_here; break; case ts.FileIncludeKind.TypeReferenceDirective: message_2 = ts.Diagnostics.File_is_included_via_type_library_reference_here; break; case ts.FileIncludeKind.LibReferenceDirective: message_2 = ts.Diagnostics.File_is_included_via_library_reference_here; break; default: ts.Debug.assertNever(reason); } return isReferenceFileLocation(referenceLocation) ? ts.createFileDiagnostic(referenceLocation.file, referenceLocation.pos, referenceLocation.end - referenceLocation.pos, message_2) : undefined; } if (!options.configFile) return undefined; var configFileNode; var message; switch (reason.kind) { case ts.FileIncludeKind.RootFile: if (!options.configFile.configFileSpecs) return undefined; var fileName = ts.getNormalizedAbsolutePath(rootNames[reason.index], currentDirectory); var matchedByFiles = ts.getMatchedFileSpec(program, fileName); if (matchedByFiles) { configFileNode = ts.getTsConfigPropArrayElementValue(options.configFile, "files", matchedByFiles); message = ts.Diagnostics.File_is_matched_by_files_list_specified_here; break; } var matchedByInclude = ts.getMatchedIncludeSpec(program, fileName); // Could be additional files specified as roots if (!matchedByInclude) return undefined; configFileNode = ts.getTsConfigPropArrayElementValue(options.configFile, "include", matchedByInclude); message = ts.Diagnostics.File_is_matched_by_include_pattern_specified_here; break; case ts.FileIncludeKind.SourceFromProjectReference: case ts.FileIncludeKind.OutputFromProjectReference: var referencedResolvedRef_1 = ts.Debug.checkDefined(resolvedProjectReferences === null || resolvedProjectReferences === void 0 ? void 0 : resolvedProjectReferences[reason.index]); var referenceInfo = forEachProjectReference(projectReferences, resolvedProjectReferences, function (resolvedRef, parent, index) { return resolvedRef === referencedResolvedRef_1 ? { sourceFile: (parent === null || parent === void 0 ? void 0 : parent.sourceFile) || options.configFile, index: index } : undefined; }); if (!referenceInfo) return undefined; var sourceFile = referenceInfo.sourceFile, index = referenceInfo.index; var referencesSyntax = ts.firstDefined(ts.getTsConfigPropArray(sourceFile, "references"), function (property) { return ts.isArrayLiteralExpression(property.initializer) ? property.initializer : undefined; }); return referencesSyntax && referencesSyntax.elements.length > index ? ts.createDiagnosticForNodeInSourceFile(sourceFile, referencesSyntax.elements[index], reason.kind === ts.FileIncludeKind.OutputFromProjectReference ? ts.Diagnostics.File_is_output_from_referenced_project_specified_here : ts.Diagnostics.File_is_source_from_referenced_project_specified_here) : undefined; case ts.FileIncludeKind.AutomaticTypeDirectiveFile: if (!options.types) return undefined; configFileNode = getOptionsSyntaxByArrayElementValue("types", reason.typeReference); message = ts.Diagnostics.File_is_entry_point_of_type_library_specified_here; break; case ts.FileIncludeKind.LibFile: if (reason.index !== undefined) { configFileNode = getOptionsSyntaxByArrayElementValue("lib", options.lib[reason.index]); message = ts.Diagnostics.File_is_library_specified_here; break; } var target = ts.forEachEntry(ts.targetOptionDeclaration.type, function (value, key) { return value === ts.getEmitScriptTarget(options) ? key : undefined; }); configFileNode = target ? getOptionsSyntaxByValue("target", target) : undefined; message = ts.Diagnostics.File_is_default_library_for_target_specified_here; break; default: ts.Debug.assertNever(reason); } return configFileNode && ts.createDiagnosticForNodeInSourceFile(options.configFile, configFileNode, message); } function verifyProjectReferences() { var buildInfoPath = !options.suppressOutputPathCheck ? ts.getTsBuildInfoEmitOutputFilePath(options) : undefined; forEachProjectReference(projectReferences, resolvedProjectReferences, function (resolvedRef, parent, index) { var ref = (parent ? parent.commandLine.projectReferences : projectReferences)[index]; var parentFile = parent && parent.sourceFile; if (!resolvedRef) { createDiagnosticForReference(parentFile, index, ts.Diagnostics.File_0_not_found, ref.path); return; } var options = resolvedRef.commandLine.options; if (!options.composite || options.noEmit) { // ok to not have composite if the current program is container only var inputs = parent ? parent.commandLine.fileNames : rootNames; if (inputs.length) { if (!options.composite) createDiagnosticForReference(parentFile, index, ts.Diagnostics.Referenced_project_0_must_have_setting_composite_Colon_true, ref.path); if (options.noEmit) createDiagnosticForReference(parentFile, index, ts.Diagnostics.Referenced_project_0_may_not_disable_emit, ref.path); } } if (ref.prepend) { var out = ts.outFile(options); if (out) { if (!host.fileExists(out)) { createDiagnosticForReference(parentFile, index, ts.Diagnostics.Output_file_0_from_project_1_does_not_exist, out, ref.path); } } else { createDiagnosticForReference(parentFile, index, ts.Diagnostics.Cannot_prepend_project_0_because_it_does_not_have_outFile_set, ref.path); } } if (!parent && buildInfoPath && buildInfoPath === ts.getTsBuildInfoEmitOutputFilePath(options)) { createDiagnosticForReference(parentFile, index, ts.Diagnostics.Cannot_write_file_0_because_it_will_overwrite_tsbuildinfo_file_generated_by_referenced_project_1, buildInfoPath, ref.path); hasEmitBlockingDiagnostics.set(toPath(buildInfoPath), true); } }); } function createDiagnosticForOptionPathKeyValue(key, valueIndex, message, arg0, arg1, arg2) { var needCompilerDiagnostic = true; var pathsSyntax = getOptionPathsSyntax(); for (var _i = 0, pathsSyntax_1 = pathsSyntax; _i < pathsSyntax_1.length; _i++) { var pathProp = pathsSyntax_1[_i]; if (ts.isObjectLiteralExpression(pathProp.initializer)) { for (var _a = 0, _b = ts.getPropertyAssignment(pathProp.initializer, key); _a < _b.length; _a++) { var keyProps = _b[_a]; var initializer = keyProps.initializer; if (ts.isArrayLiteralExpression(initializer) && initializer.elements.length > valueIndex) { programDiagnostics.add(ts.createDiagnosticForNodeInSourceFile(options.configFile, initializer.elements[valueIndex], message, arg0, arg1, arg2)); needCompilerDiagnostic = false; } } } } if (needCompilerDiagnostic) { programDiagnostics.add(ts.createCompilerDiagnostic(message, arg0, arg1, arg2)); } } function createDiagnosticForOptionPaths(onKey, key, message, arg0) { var needCompilerDiagnostic = true; var pathsSyntax = getOptionPathsSyntax(); for (var _i = 0, pathsSyntax_2 = pathsSyntax; _i < pathsSyntax_2.length; _i++) { var pathProp = pathsSyntax_2[_i]; if (ts.isObjectLiteralExpression(pathProp.initializer) && createOptionDiagnosticInObjectLiteralSyntax(pathProp.initializer, onKey, key, /*key2*/ undefined, message, arg0)) { needCompilerDiagnostic = false; } } if (needCompilerDiagnostic) { programDiagnostics.add(ts.createCompilerDiagnostic(message, arg0)); } } function getOptionsSyntaxByName(name) { var compilerOptionsObjectLiteralSyntax = getCompilerOptionsObjectLiteralSyntax(); return compilerOptionsObjectLiteralSyntax && ts.getPropertyAssignment(compilerOptionsObjectLiteralSyntax, name); } function getOptionPathsSyntax() { return getOptionsSyntaxByName("paths") || ts.emptyArray; } function getOptionsSyntaxByValue(name, value) { var syntaxByName = getOptionsSyntaxByName(name); return syntaxByName && ts.firstDefined(syntaxByName, function (property) { return ts.isStringLiteral(property.initializer) && property.initializer.text === value ? property.initializer : undefined; }); } function getOptionsSyntaxByArrayElementValue(name, value) { var compilerOptionsObjectLiteralSyntax = getCompilerOptionsObjectLiteralSyntax(); return compilerOptionsObjectLiteralSyntax && ts.getPropertyArrayElementValue(compilerOptionsObjectLiteralSyntax, name, value); } function createDiagnosticForOptionName(message, option1, option2, option3) { createDiagnosticForOption(/*onKey*/ true, option1, option2, message, option1, option2, option3); } function createOptionValueDiagnostic(option1, message, arg0, arg1) { createDiagnosticForOption(/*onKey*/ false, option1, /*option2*/ undefined, message, arg0, arg1); } function createDiagnosticForReference(sourceFile, index, message, arg0, arg1) { var referencesSyntax = ts.firstDefined(ts.getTsConfigPropArray(sourceFile || options.configFile, "references"), function (property) { return ts.isArrayLiteralExpression(property.initializer) ? property.initializer : undefined; }); if (referencesSyntax && referencesSyntax.elements.length > index) { programDiagnostics.add(ts.createDiagnosticForNodeInSourceFile(sourceFile || options.configFile, referencesSyntax.elements[index], message, arg0, arg1)); } else { programDiagnostics.add(ts.createCompilerDiagnostic(message, arg0, arg1)); } } function createDiagnosticForOption(onKey, option1, option2, message, arg0, arg1, arg2) { var compilerOptionsObjectLiteralSyntax = getCompilerOptionsObjectLiteralSyntax(); var needCompilerDiagnostic = !compilerOptionsObjectLiteralSyntax || !createOptionDiagnosticInObjectLiteralSyntax(compilerOptionsObjectLiteralSyntax, onKey, option1, option2, message, arg0, arg1, arg2); if (needCompilerDiagnostic) { programDiagnostics.add(ts.createCompilerDiagnostic(message, arg0, arg1, arg2)); } } function getCompilerOptionsObjectLiteralSyntax() { if (_compilerOptionsObjectLiteralSyntax === undefined) { _compilerOptionsObjectLiteralSyntax = false; var jsonObjectLiteral = ts.getTsConfigObjectLiteralExpression(options.configFile); if (jsonObjectLiteral) { for (var _i = 0, _a = ts.getPropertyAssignment(jsonObjectLiteral, "compilerOptions"); _i < _a.length; _i++) { var prop = _a[_i]; if (ts.isObjectLiteralExpression(prop.initializer)) { _compilerOptionsObjectLiteralSyntax = prop.initializer; break; } } } } return _compilerOptionsObjectLiteralSyntax || undefined; } function createOptionDiagnosticInObjectLiteralSyntax(objectLiteral, onKey, key1, key2, message, arg0, arg1, arg2) { var props = ts.getPropertyAssignment(objectLiteral, key1, key2); for (var _i = 0, props_3 = props; _i < props_3.length; _i++) { var prop = props_3[_i]; programDiagnostics.add(ts.createDiagnosticForNodeInSourceFile(options.configFile, onKey ? prop.name : prop.initializer, message, arg0, arg1, arg2)); } return !!props.length; } function blockEmittingOfFile(emitFileName, diag) { hasEmitBlockingDiagnostics.set(toPath(emitFileName), true); programDiagnostics.add(diag); } function isEmittedFile(file) { if (options.noEmit) { return false; } // If this is source file, its not emitted file var filePath = toPath(file); if (getSourceFileByPath(filePath)) { return false; } // If options have --outFile or --out just check that var out = ts.outFile(options); if (out) { return isSameFile(filePath, out) || isSameFile(filePath, ts.removeFileExtension(out) + ".d.ts" /* Extension.Dts */); } // If declarationDir is specified, return if its a file in that directory if (options.declarationDir && ts.containsPath(options.declarationDir, filePath, currentDirectory, !host.useCaseSensitiveFileNames())) { return true; } // If --outDir, check if file is in that directory if (options.outDir) { return ts.containsPath(options.outDir, filePath, currentDirectory, !host.useCaseSensitiveFileNames()); } if (ts.fileExtensionIsOneOf(filePath, ts.supportedJSExtensionsFlat) || ts.isDeclarationFileName(filePath)) { // Otherwise just check if sourceFile with the name exists var filePathWithoutExtension = ts.removeFileExtension(filePath); return !!getSourceFileByPath((filePathWithoutExtension + ".ts" /* Extension.Ts */)) || !!getSourceFileByPath((filePathWithoutExtension + ".tsx" /* Extension.Tsx */)); } return false; } function isSameFile(file1, file2) { return ts.comparePaths(file1, file2, currentDirectory, !host.useCaseSensitiveFileNames()) === 0 /* Comparison.EqualTo */; } function getSymlinkCache() { if (host.getSymlinkCache) { return host.getSymlinkCache(); } if (!symlinks) { symlinks = ts.createSymlinkCache(currentDirectory, getCanonicalFileName); } if (files && resolvedTypeReferenceDirectives && !symlinks.hasProcessedResolutions()) { symlinks.setSymlinksFromResolutions(files, resolvedTypeReferenceDirectives); } return symlinks; } } ts.createProgram = createProgram; function updateHostForUseSourceOfProjectReferenceRedirect(host) { var setOfDeclarationDirectories; var originalFileExists = host.compilerHost.fileExists; var originalDirectoryExists = host.compilerHost.directoryExists; var originalGetDirectories = host.compilerHost.getDirectories; var originalRealpath = host.compilerHost.realpath; if (!host.useSourceOfProjectReferenceRedirect) return { onProgramCreateComplete: ts.noop, fileExists: fileExists }; host.compilerHost.fileExists = fileExists; var directoryExists; if (originalDirectoryExists) { // This implementation of directoryExists checks if the directory being requested is // directory of .d.ts file for the referenced Project. // If it is it returns true irrespective of whether that directory exists on host directoryExists = host.compilerHost.directoryExists = function (path) { if (originalDirectoryExists.call(host.compilerHost, path)) { handleDirectoryCouldBeSymlink(path); return true; } if (!host.getResolvedProjectReferences()) return false; if (!setOfDeclarationDirectories) { setOfDeclarationDirectories = new ts.Set(); host.forEachResolvedProjectReference(function (ref) { var out = ts.outFile(ref.commandLine.options); if (out) { setOfDeclarationDirectories.add(ts.getDirectoryPath(host.toPath(out))); } else { // Set declaration's in different locations only, if they are next to source the directory present doesnt change var declarationDir = ref.commandLine.options.declarationDir || ref.commandLine.options.outDir; if (declarationDir) { setOfDeclarationDirectories.add(host.toPath(declarationDir)); } } }); } return fileOrDirectoryExistsUsingSource(path, /*isFile*/ false); }; } if (originalGetDirectories) { // Call getDirectories only if directory actually present on the host // This is needed to ensure that we arent getting directories that we fake about presence for host.compilerHost.getDirectories = function (path) { return !host.getResolvedProjectReferences() || (originalDirectoryExists && originalDirectoryExists.call(host.compilerHost, path)) ? originalGetDirectories.call(host.compilerHost, path) : []; }; } // This is something we keep for life time of the host if (originalRealpath) { host.compilerHost.realpath = function (s) { var _a; return ((_a = host.getSymlinkCache().getSymlinkedFiles()) === null || _a === void 0 ? void 0 : _a.get(host.toPath(s))) || originalRealpath.call(host.compilerHost, s); }; } return { onProgramCreateComplete: onProgramCreateComplete, fileExists: fileExists, directoryExists: directoryExists }; function onProgramCreateComplete() { host.compilerHost.fileExists = originalFileExists; host.compilerHost.directoryExists = originalDirectoryExists; host.compilerHost.getDirectories = originalGetDirectories; // DO not revert realpath as it could be used later } // This implementation of fileExists checks if the file being requested is // .d.ts file for the referenced Project. // If it is it returns true irrespective of whether that file exists on host function fileExists(file) { if (originalFileExists.call(host.compilerHost, file)) return true; if (!host.getResolvedProjectReferences()) return false; if (!ts.isDeclarationFileName(file)) return false; // Project references go to source file instead of .d.ts file return fileOrDirectoryExistsUsingSource(file, /*isFile*/ true); } function fileExistsIfProjectReferenceDts(file) { var source = host.getSourceOfProjectReferenceRedirect(host.toPath(file)); return source !== undefined ? ts.isString(source) ? originalFileExists.call(host.compilerHost, source) : true : undefined; } function directoryExistsIfProjectReferenceDeclDir(dir) { var dirPath = host.toPath(dir); var dirPathWithTrailingDirectorySeparator = "".concat(dirPath).concat(ts.directorySeparator); return ts.forEachKey(setOfDeclarationDirectories, function (declDirPath) { return dirPath === declDirPath || // Any parent directory of declaration dir ts.startsWith(declDirPath, dirPathWithTrailingDirectorySeparator) || // Any directory inside declaration dir ts.startsWith(dirPath, "".concat(declDirPath, "/")); }); } function handleDirectoryCouldBeSymlink(directory) { var _a; if (!host.getResolvedProjectReferences() || ts.containsIgnoredPath(directory)) return; // Because we already watch node_modules, handle symlinks in there if (!originalRealpath || !ts.stringContains(directory, ts.nodeModulesPathPart)) return; var symlinkCache = host.getSymlinkCache(); var directoryPath = ts.ensureTrailingDirectorySeparator(host.toPath(directory)); if ((_a = symlinkCache.getSymlinkedDirectories()) === null || _a === void 0 ? void 0 : _a.has(directoryPath)) return; var real = ts.normalizePath(originalRealpath.call(host.compilerHost, directory)); var realPath; if (real === directory || (realPath = ts.ensureTrailingDirectorySeparator(host.toPath(real))) === directoryPath) { // not symlinked symlinkCache.setSymlinkedDirectory(directoryPath, false); return; } symlinkCache.setSymlinkedDirectory(directory, { real: ts.ensureTrailingDirectorySeparator(real), realPath: realPath }); } function fileOrDirectoryExistsUsingSource(fileOrDirectory, isFile) { var _a; var fileOrDirectoryExistsUsingSource = isFile ? function (file) { return fileExistsIfProjectReferenceDts(file); } : function (dir) { return directoryExistsIfProjectReferenceDeclDir(dir); }; // Check current directory or file var result = fileOrDirectoryExistsUsingSource(fileOrDirectory); if (result !== undefined) return result; var symlinkCache = host.getSymlinkCache(); var symlinkedDirectories = symlinkCache.getSymlinkedDirectories(); if (!symlinkedDirectories) return false; var fileOrDirectoryPath = host.toPath(fileOrDirectory); if (!ts.stringContains(fileOrDirectoryPath, ts.nodeModulesPathPart)) return false; if (isFile && ((_a = symlinkCache.getSymlinkedFiles()) === null || _a === void 0 ? void 0 : _a.has(fileOrDirectoryPath))) return true; // If it contains node_modules check if its one of the symlinked path we know of return ts.firstDefinedIterator(symlinkedDirectories.entries(), function (_a) { var directoryPath = _a[0], symlinkedDirectory = _a[1]; if (!symlinkedDirectory || !ts.startsWith(fileOrDirectoryPath, directoryPath)) return undefined; var result = fileOrDirectoryExistsUsingSource(fileOrDirectoryPath.replace(directoryPath, symlinkedDirectory.realPath)); if (isFile && result) { // Store the real path for the file' var absolutePath = ts.getNormalizedAbsolutePath(fileOrDirectory, host.compilerHost.getCurrentDirectory()); symlinkCache.setSymlinkedFile(fileOrDirectoryPath, "".concat(symlinkedDirectory.real).concat(absolutePath.replace(new RegExp(directoryPath, "i"), ""))); } return result; }) || false; } } /*@internal*/ ts.emitSkippedWithNoDiagnostics = { diagnostics: ts.emptyArray, sourceMaps: undefined, emittedFiles: undefined, emitSkipped: true }; /*@internal*/ function handleNoEmitOptions(program, sourceFile, writeFile, cancellationToken) { var options = program.getCompilerOptions(); if (options.noEmit) { // Cache the semantic diagnostics program.getSemanticDiagnostics(sourceFile, cancellationToken); return sourceFile || ts.outFile(options) ? ts.emitSkippedWithNoDiagnostics : program.emitBuildInfo(writeFile, cancellationToken); } // If the noEmitOnError flag is set, then check if we have any errors so far. If so, // immediately bail out. Note that we pass 'undefined' for 'sourceFile' so that we // get any preEmit diagnostics, not just the ones if (!options.noEmitOnError) return undefined; var diagnostics = __spreadArray(__spreadArray(__spreadArray(__spreadArray([], program.getOptionsDiagnostics(cancellationToken), true), program.getSyntacticDiagnostics(sourceFile, cancellationToken), true), program.getGlobalDiagnostics(cancellationToken), true), program.getSemanticDiagnostics(sourceFile, cancellationToken), true); if (diagnostics.length === 0 && ts.getEmitDeclarations(program.getCompilerOptions())) { diagnostics = program.getDeclarationDiagnostics(/*sourceFile*/ undefined, cancellationToken); } if (!diagnostics.length) return undefined; var emittedFiles; if (!sourceFile && !ts.outFile(options)) { var emitResult = program.emitBuildInfo(writeFile, cancellationToken); if (emitResult.diagnostics) diagnostics = __spreadArray(__spreadArray([], diagnostics, true), emitResult.diagnostics, true); emittedFiles = emitResult.emittedFiles; } return { diagnostics: diagnostics, sourceMaps: undefined, emittedFiles: emittedFiles, emitSkipped: true }; } ts.handleNoEmitOptions = handleNoEmitOptions; /*@internal*/ function filterSemanticDiagnostics(diagnostic, option) { return ts.filter(diagnostic, function (d) { return !d.skippedOn || !option[d.skippedOn]; }); } ts.filterSemanticDiagnostics = filterSemanticDiagnostics; /* @internal */ function parseConfigHostFromCompilerHostLike(host, directoryStructureHost) { if (directoryStructureHost === void 0) { directoryStructureHost = host; } return { fileExists: function (f) { return directoryStructureHost.fileExists(f); }, readDirectory: function (root, extensions, excludes, includes, depth) { ts.Debug.assertIsDefined(directoryStructureHost.readDirectory, "'CompilerHost.readDirectory' must be implemented to correctly process 'projectReferences'"); return directoryStructureHost.readDirectory(root, extensions, excludes, includes, depth); }, readFile: function (f) { return directoryStructureHost.readFile(f); }, useCaseSensitiveFileNames: host.useCaseSensitiveFileNames(), getCurrentDirectory: function () { return host.getCurrentDirectory(); }, onUnRecoverableConfigFileDiagnostic: host.onUnRecoverableConfigFileDiagnostic || ts.returnUndefined, trace: host.trace ? function (s) { return host.trace(s); } : undefined }; } ts.parseConfigHostFromCompilerHostLike = parseConfigHostFromCompilerHostLike; /* @internal */ function createPrependNodes(projectReferences, getCommandLine, readFile) { if (!projectReferences) return ts.emptyArray; var nodes; for (var i = 0; i < projectReferences.length; i++) { var ref = projectReferences[i]; var resolvedRefOpts = getCommandLine(ref, i); if (ref.prepend && resolvedRefOpts && resolvedRefOpts.options) { var out = ts.outFile(resolvedRefOpts.options); // Upstream project didn't have outFile set -- skip (error will have been issued earlier) if (!out) continue; var _a = ts.getOutputPathsForBundle(resolvedRefOpts.options, /*forceDtsPaths*/ true), jsFilePath = _a.jsFilePath, sourceMapFilePath = _a.sourceMapFilePath, declarationFilePath = _a.declarationFilePath, declarationMapPath = _a.declarationMapPath, buildInfoPath = _a.buildInfoPath; var node = ts.createInputFiles(readFile, jsFilePath, sourceMapFilePath, declarationFilePath, declarationMapPath, buildInfoPath); (nodes || (nodes = [])).push(node); } } return nodes || ts.emptyArray; } ts.createPrependNodes = createPrependNodes; function resolveProjectReferencePath(hostOrRef, ref) { var passedInRef = ref ? ref : hostOrRef; return ts.resolveConfigFileProjectName(passedInRef.path); } ts.resolveProjectReferencePath = resolveProjectReferencePath; /* @internal */ /** * Returns a DiagnosticMessage if we won't include a resolved module due to its extension. * The DiagnosticMessage's parameters are the imported module name, and the filename it resolved to. * This returns a diagnostic even if the module will be an untyped module. */ function getResolutionDiagnostic(options, _a) { var extension = _a.extension; switch (extension) { case ".ts" /* Extension.Ts */: case ".d.ts" /* Extension.Dts */: // These are always allowed. return undefined; case ".tsx" /* Extension.Tsx */: return needJsx(); case ".jsx" /* Extension.Jsx */: return needJsx() || needAllowJs(); case ".js" /* Extension.Js */: return needAllowJs(); case ".json" /* Extension.Json */: return needResolveJsonModule(); } function needJsx() { return options.jsx ? undefined : ts.Diagnostics.Module_0_was_resolved_to_1_but_jsx_is_not_set; } function needAllowJs() { return ts.getAllowJSCompilerOption(options) || !ts.getStrictOptionValue(options, "noImplicitAny") ? undefined : ts.Diagnostics.Could_not_find_a_declaration_file_for_module_0_1_implicitly_has_an_any_type; } function needResolveJsonModule() { return options.resolveJsonModule ? undefined : ts.Diagnostics.Module_0_was_resolved_to_1_but_resolveJsonModule_is_not_used; } } ts.getResolutionDiagnostic = getResolutionDiagnostic; function getModuleNames(_a) { var imports = _a.imports, moduleAugmentations = _a.moduleAugmentations; var res = imports.map(function (i) { return i.text; }); for (var _i = 0, moduleAugmentations_1 = moduleAugmentations; _i < moduleAugmentations_1.length; _i++) { var aug = moduleAugmentations_1[_i]; if (aug.kind === 10 /* SyntaxKind.StringLiteral */) { res.push(aug.text); } // Do nothing if it's an Identifier; we don't need to do module resolution for `declare global`. } return res; } /* @internal */ function getModuleNameStringLiteralAt(_a, index) { var imports = _a.imports, moduleAugmentations = _a.moduleAugmentations; if (index < imports.length) return imports[index]; var augIndex = imports.length; for (var _i = 0, moduleAugmentations_2 = moduleAugmentations; _i < moduleAugmentations_2.length; _i++) { var aug = moduleAugmentations_2[_i]; if (aug.kind === 10 /* SyntaxKind.StringLiteral */) { if (index === augIndex) return aug; augIndex++; } // Do nothing if it's an Identifier; we don't need to do module resolution for `declare global`. } ts.Debug.fail("should never ask for module name at index higher than possible module name"); } ts.getModuleNameStringLiteralAt = getModuleNameStringLiteralAt; })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { function getFileEmitOutput(program, sourceFile, emitOnlyDtsFiles, cancellationToken, customTransformers, forceDtsEmit) { var outputFiles = []; var _a = program.emit(sourceFile, writeFile, cancellationToken, emitOnlyDtsFiles, customTransformers, forceDtsEmit), emitSkipped = _a.emitSkipped, diagnostics = _a.diagnostics, exportedModulesFromDeclarationEmit = _a.exportedModulesFromDeclarationEmit; return { outputFiles: outputFiles, emitSkipped: emitSkipped, diagnostics: diagnostics, exportedModulesFromDeclarationEmit: exportedModulesFromDeclarationEmit }; function writeFile(fileName, text, writeByteOrderMark) { outputFiles.push({ name: fileName, writeByteOrderMark: writeByteOrderMark, text: text }); } } ts.getFileEmitOutput = getFileEmitOutput; var BuilderState; (function (BuilderState) { function createManyToManyPathMap() { function create(forward, reverse, deleted) { var map = { clone: function () { return create(new ts.Map(forward), new ts.Map(reverse), deleted && new ts.Set(deleted)); }, forEach: function (fn) { return forward.forEach(fn); }, getKeys: function (v) { return reverse.get(v); }, getValues: function (k) { return forward.get(k); }, hasKey: function (k) { return forward.has(k); }, keys: function () { return forward.keys(); }, deletedKeys: function () { return deleted; }, deleteKey: function (k) { (deleted || (deleted = new ts.Set())).add(k); var set = forward.get(k); if (!set) { return false; } set.forEach(function (v) { return deleteFromMultimap(reverse, v, k); }); forward.delete(k); return true; }, set: function (k, vSet) { deleted === null || deleted === void 0 ? void 0 : deleted.delete(k); var existingVSet = forward.get(k); forward.set(k, vSet); existingVSet === null || existingVSet === void 0 ? void 0 : existingVSet.forEach(function (v) { if (!vSet.has(v)) { deleteFromMultimap(reverse, v, k); } }); vSet.forEach(function (v) { if (!(existingVSet === null || existingVSet === void 0 ? void 0 : existingVSet.has(v))) { addToMultimap(reverse, v, k); } }); return map; }, clear: function () { forward.clear(); reverse.clear(); deleted === null || deleted === void 0 ? void 0 : deleted.clear(); } }; return map; } return create(new ts.Map(), new ts.Map(), /*deleted*/ undefined); } BuilderState.createManyToManyPathMap = createManyToManyPathMap; function addToMultimap(map, k, v) { var set = map.get(k); if (!set) { set = new ts.Set(); map.set(k, set); } set.add(v); } function deleteFromMultimap(map, k, v) { var set = map.get(k); if (set === null || set === void 0 ? void 0 : set.delete(v)) { if (!set.size) { map.delete(k); } return true; } return false; } function getReferencedFilesFromImportedModuleSymbol(symbol) { return ts.mapDefined(symbol.declarations, function (declaration) { var _a; return (_a = ts.getSourceFileOfNode(declaration)) === null || _a === void 0 ? void 0 : _a.resolvedPath; }); } /** * Get the module source file and all augmenting files from the import name node from file */ function getReferencedFilesFromImportLiteral(checker, importName) { var symbol = checker.getSymbolAtLocation(importName); return symbol && getReferencedFilesFromImportedModuleSymbol(symbol); } /** * Gets the path to reference file from file name, it could be resolvedPath if present otherwise path */ function getReferencedFileFromFileName(program, fileName, sourceFileDirectory, getCanonicalFileName) { return ts.toPath(program.getProjectReferenceRedirect(fileName) || fileName, sourceFileDirectory, getCanonicalFileName); } /** * Gets the referenced files for a file from the program with values for the keys as referenced file's path to be true */ function getReferencedFiles(program, sourceFile, getCanonicalFileName) { var referencedFiles; // We need to use a set here since the code can contain the same import twice, // but that will only be one dependency. // To avoid invernal conversion, the key of the referencedFiles map must be of type Path if (sourceFile.imports && sourceFile.imports.length > 0) { var checker = program.getTypeChecker(); for (var _i = 0, _a = sourceFile.imports; _i < _a.length; _i++) { var importName = _a[_i]; var declarationSourceFilePaths = getReferencedFilesFromImportLiteral(checker, importName); declarationSourceFilePaths === null || declarationSourceFilePaths === void 0 ? void 0 : declarationSourceFilePaths.forEach(addReferencedFile); } } var sourceFileDirectory = ts.getDirectoryPath(sourceFile.resolvedPath); // Handle triple slash references if (sourceFile.referencedFiles && sourceFile.referencedFiles.length > 0) { for (var _b = 0, _c = sourceFile.referencedFiles; _b < _c.length; _b++) { var referencedFile = _c[_b]; var referencedPath = getReferencedFileFromFileName(program, referencedFile.fileName, sourceFileDirectory, getCanonicalFileName); addReferencedFile(referencedPath); } } // Handle type reference directives if (sourceFile.resolvedTypeReferenceDirectiveNames) { sourceFile.resolvedTypeReferenceDirectiveNames.forEach(function (resolvedTypeReferenceDirective) { if (!resolvedTypeReferenceDirective) { return; } var fileName = resolvedTypeReferenceDirective.resolvedFileName; // TODO: GH#18217 var typeFilePath = getReferencedFileFromFileName(program, fileName, sourceFileDirectory, getCanonicalFileName); addReferencedFile(typeFilePath); }); } // Add module augmentation as references if (sourceFile.moduleAugmentations.length) { var checker = program.getTypeChecker(); for (var _d = 0, _e = sourceFile.moduleAugmentations; _d < _e.length; _d++) { var moduleName = _e[_d]; if (!ts.isStringLiteral(moduleName)) continue; var symbol = checker.getSymbolAtLocation(moduleName); if (!symbol) continue; // Add any file other than our own as reference addReferenceFromAmbientModule(symbol); } } // From ambient modules for (var _f = 0, _g = program.getTypeChecker().getAmbientModules(); _f < _g.length; _f++) { var ambientModule = _g[_f]; if (ambientModule.declarations && ambientModule.declarations.length > 1) { addReferenceFromAmbientModule(ambientModule); } } return referencedFiles; function addReferenceFromAmbientModule(symbol) { if (!symbol.declarations) { return; } // Add any file other than our own as reference for (var _i = 0, _a = symbol.declarations; _i < _a.length; _i++) { var declaration = _a[_i]; var declarationSourceFile = ts.getSourceFileOfNode(declaration); if (declarationSourceFile && declarationSourceFile !== sourceFile) { addReferencedFile(declarationSourceFile.resolvedPath); } } } function addReferencedFile(referencedPath) { (referencedFiles || (referencedFiles = new ts.Set())).add(referencedPath); } } /** * Returns true if oldState is reusable, that is the emitKind = module/non module has not changed */ function canReuseOldState(newReferencedMap, oldState) { return oldState && !oldState.referencedMap === !newReferencedMap; } BuilderState.canReuseOldState = canReuseOldState; /** * Creates the state of file references and signature for the new program from oldState if it is safe */ function create(newProgram, getCanonicalFileName, oldState, disableUseFileVersionAsSignature) { var fileInfos = new ts.Map(); var referencedMap = newProgram.getCompilerOptions().module !== ts.ModuleKind.None ? createManyToManyPathMap() : undefined; var exportedModulesMap = referencedMap ? createManyToManyPathMap() : undefined; var hasCalledUpdateShapeSignature = new ts.Set(); var useOldState = canReuseOldState(referencedMap, oldState); // Ensure source files have parent pointers set newProgram.getTypeChecker(); // Create the reference map, and set the file infos for (var _i = 0, _a = newProgram.getSourceFiles(); _i < _a.length; _i++) { var sourceFile = _a[_i]; var version_2 = ts.Debug.checkDefined(sourceFile.version, "Program intended to be used with Builder should have source files with versions set"); var oldInfo = useOldState ? oldState.fileInfos.get(sourceFile.resolvedPath) : undefined; if (referencedMap) { var newReferences = getReferencedFiles(newProgram, sourceFile, getCanonicalFileName); if (newReferences) { referencedMap.set(sourceFile.resolvedPath, newReferences); } // Copy old visible to outside files map if (useOldState) { var exportedModules = oldState.exportedModulesMap.getValues(sourceFile.resolvedPath); if (exportedModules) { exportedModulesMap.set(sourceFile.resolvedPath, exportedModules); } } } fileInfos.set(sourceFile.resolvedPath, { version: version_2, signature: oldInfo && oldInfo.signature, affectsGlobalScope: isFileAffectingGlobalScope(sourceFile) || undefined, impliedFormat: sourceFile.impliedNodeFormat }); } return { fileInfos: fileInfos, referencedMap: referencedMap, exportedModulesMap: exportedModulesMap, hasCalledUpdateShapeSignature: hasCalledUpdateShapeSignature, useFileVersionAsSignature: !disableUseFileVersionAsSignature && !useOldState }; } BuilderState.create = create; /** * Releases needed properties */ function releaseCache(state) { state.allFilesExcludingDefaultLibraryFile = undefined; state.allFileNames = undefined; } BuilderState.releaseCache = releaseCache; /** * Creates a clone of the state */ function clone(state) { var _a, _b; // Dont need to backup allFiles info since its cache anyway return { fileInfos: new ts.Map(state.fileInfos), referencedMap: (_a = state.referencedMap) === null || _a === void 0 ? void 0 : _a.clone(), exportedModulesMap: (_b = state.exportedModulesMap) === null || _b === void 0 ? void 0 : _b.clone(), hasCalledUpdateShapeSignature: new ts.Set(state.hasCalledUpdateShapeSignature), useFileVersionAsSignature: state.useFileVersionAsSignature, }; } BuilderState.clone = clone; /** * Gets the files affected by the path from the program */ function getFilesAffectedBy(state, programOfThisState, path, cancellationToken, computeHash, cacheToUpdateSignature, exportedModulesMapCache) { // Since the operation could be cancelled, the signatures are always stored in the cache // They will be committed once it is safe to use them // eg when calling this api from tsserver, if there is no cancellation of the operation // In the other cases the affected files signatures are committed only after the iteration through the result is complete var signatureCache = cacheToUpdateSignature || new ts.Map(); var sourceFile = programOfThisState.getSourceFileByPath(path); if (!sourceFile) { return ts.emptyArray; } if (!updateShapeSignature(state, programOfThisState, sourceFile, signatureCache, cancellationToken, computeHash, exportedModulesMapCache)) { return [sourceFile]; } var result = (state.referencedMap ? getFilesAffectedByUpdatedShapeWhenModuleEmit : getFilesAffectedByUpdatedShapeWhenNonModuleEmit)(state, programOfThisState, sourceFile, signatureCache, cancellationToken, computeHash, exportedModulesMapCache); if (!cacheToUpdateSignature) { // Commit all the signatures in the signature cache updateSignaturesFromCache(state, signatureCache); } return result; } BuilderState.getFilesAffectedBy = getFilesAffectedBy; /** * Updates the signatures from the cache into state's fileinfo signatures * This should be called whenever it is safe to commit the state of the builder */ function updateSignaturesFromCache(state, signatureCache) { signatureCache.forEach(function (signature, path) { return updateSignatureOfFile(state, signature, path); }); } BuilderState.updateSignaturesFromCache = updateSignaturesFromCache; function updateSignatureOfFile(state, signature, path) { state.fileInfos.get(path).signature = signature; state.hasCalledUpdateShapeSignature.add(path); } BuilderState.updateSignatureOfFile = updateSignatureOfFile; /** * Returns if the shape of the signature has changed since last emit */ function updateShapeSignature(state, programOfThisState, sourceFile, cacheToUpdateSignature, cancellationToken, computeHash, exportedModulesMapCache, useFileVersionAsSignature) { if (useFileVersionAsSignature === void 0) { useFileVersionAsSignature = state.useFileVersionAsSignature; } ts.Debug.assert(!!sourceFile); ts.Debug.assert(!exportedModulesMapCache || !!state.exportedModulesMap, "Compute visible to outside map only if visibleToOutsideReferencedMap present in the state"); // If we have cached the result for this file, that means hence forth we should assume file shape is uptodate if (state.hasCalledUpdateShapeSignature.has(sourceFile.resolvedPath) || cacheToUpdateSignature.has(sourceFile.resolvedPath)) { return false; } var info = state.fileInfos.get(sourceFile.resolvedPath); if (!info) return ts.Debug.fail(); var prevSignature = info.signature; var latestSignature; if (!sourceFile.isDeclarationFile && !useFileVersionAsSignature) { var emitOutput_1 = getFileEmitOutput(programOfThisState, sourceFile, /*emitOnlyDtsFiles*/ true, cancellationToken, /*customTransformers*/ undefined, /*forceDtsEmit*/ true); var firstDts_1 = ts.firstOrUndefined(emitOutput_1.outputFiles); if (firstDts_1) { ts.Debug.assert(ts.isDeclarationFileName(firstDts_1.name), "File extension for signature expected to be dts", function () { return "Found: ".concat(ts.getAnyExtensionFromPath(firstDts_1.name), " for ").concat(firstDts_1.name, ":: All output files: ").concat(JSON.stringify(emitOutput_1.outputFiles.map(function (f) { return f.name; }))); }); latestSignature = (computeHash || ts.generateDjb2Hash)(firstDts_1.text); if (exportedModulesMapCache && latestSignature !== prevSignature) { updateExportedModules(sourceFile, emitOutput_1.exportedModulesFromDeclarationEmit, exportedModulesMapCache); } } } // Default is to use file version as signature if (latestSignature === undefined) { latestSignature = sourceFile.version; if (exportedModulesMapCache && latestSignature !== prevSignature) { // All the references in this file are exported var references = state.referencedMap ? state.referencedMap.getValues(sourceFile.resolvedPath) : undefined; if (references) { exportedModulesMapCache.set(sourceFile.resolvedPath, references); } else { exportedModulesMapCache.deleteKey(sourceFile.resolvedPath); } } } cacheToUpdateSignature.set(sourceFile.resolvedPath, latestSignature); return latestSignature !== prevSignature; } BuilderState.updateShapeSignature = updateShapeSignature; /** * Coverts the declaration emit result into exported modules map */ function updateExportedModules(sourceFile, exportedModulesFromDeclarationEmit, exportedModulesMapCache) { if (!exportedModulesFromDeclarationEmit) { exportedModulesMapCache.deleteKey(sourceFile.resolvedPath); return; } var exportedModules; exportedModulesFromDeclarationEmit.forEach(function (symbol) { return addExportedModule(getReferencedFilesFromImportedModuleSymbol(symbol)); }); if (exportedModules) { exportedModulesMapCache.set(sourceFile.resolvedPath, exportedModules); } else { exportedModulesMapCache.deleteKey(sourceFile.resolvedPath); } function addExportedModule(exportedModulePaths) { if (exportedModulePaths === null || exportedModulePaths === void 0 ? void 0 : exportedModulePaths.length) { if (!exportedModules) { exportedModules = new ts.Set(); } exportedModulePaths.forEach(function (path) { return exportedModules.add(path); }); } } } BuilderState.updateExportedModules = updateExportedModules; /** * Updates the exported modules from cache into state's exported modules map * This should be called whenever it is safe to commit the state of the builder */ function updateExportedFilesMapFromCache(state, exportedModulesMapCache) { var _a; if (exportedModulesMapCache) { ts.Debug.assert(!!state.exportedModulesMap); (_a = exportedModulesMapCache.deletedKeys()) === null || _a === void 0 ? void 0 : _a.forEach(function (path) { return state.exportedModulesMap.deleteKey(path); }); exportedModulesMapCache.forEach(function (exportedModules, path) { return state.exportedModulesMap.set(path, exportedModules); }); } } BuilderState.updateExportedFilesMapFromCache = updateExportedFilesMapFromCache; /** * Get all the dependencies of the sourceFile */ function getAllDependencies(state, programOfThisState, sourceFile) { var compilerOptions = programOfThisState.getCompilerOptions(); // With --out or --outFile all outputs go into single file, all files depend on each other if (ts.outFile(compilerOptions)) { return getAllFileNames(state, programOfThisState); } // If this is non module emit, or its a global file, it depends on all the source files if (!state.referencedMap || isFileAffectingGlobalScope(sourceFile)) { return getAllFileNames(state, programOfThisState); } // Get the references, traversing deep from the referenceMap var seenMap = new ts.Set(); var queue = [sourceFile.resolvedPath]; while (queue.length) { var path = queue.pop(); if (!seenMap.has(path)) { seenMap.add(path); var references = state.referencedMap.getValues(path); if (references) { var iterator = references.keys(); for (var iterResult = iterator.next(); !iterResult.done; iterResult = iterator.next()) { queue.push(iterResult.value); } } } } return ts.arrayFrom(ts.mapDefinedIterator(seenMap.keys(), function (path) { var _a, _b; return (_b = (_a = programOfThisState.getSourceFileByPath(path)) === null || _a === void 0 ? void 0 : _a.fileName) !== null && _b !== void 0 ? _b : path; })); } BuilderState.getAllDependencies = getAllDependencies; /** * Gets the names of all files from the program */ function getAllFileNames(state, programOfThisState) { if (!state.allFileNames) { var sourceFiles = programOfThisState.getSourceFiles(); state.allFileNames = sourceFiles === ts.emptyArray ? ts.emptyArray : sourceFiles.map(function (file) { return file.fileName; }); } return state.allFileNames; } /** * Gets the files referenced by the the file path */ function getReferencedByPaths(state, referencedFilePath) { var keys = state.referencedMap.getKeys(referencedFilePath); return keys ? ts.arrayFrom(keys.keys()) : []; } BuilderState.getReferencedByPaths = getReferencedByPaths; /** * For script files that contains only ambient external modules, although they are not actually external module files, * they can only be consumed via importing elements from them. Regular script files cannot consume them. Therefore, * there are no point to rebuild all script files if these special files have changed. However, if any statement * in the file is not ambient external module, we treat it as a regular script file. */ function containsOnlyAmbientModules(sourceFile) { for (var _i = 0, _a = sourceFile.statements; _i < _a.length; _i++) { var statement = _a[_i]; if (!ts.isModuleWithStringLiteralName(statement)) { return false; } } return true; } /** * Return true if file contains anything that augments to global scope we need to build them as if * they are global files as well as module */ function containsGlobalScopeAugmentation(sourceFile) { return ts.some(sourceFile.moduleAugmentations, function (augmentation) { return ts.isGlobalScopeAugmentation(augmentation.parent); }); } /** * Return true if the file will invalidate all files because it affectes global scope */ function isFileAffectingGlobalScope(sourceFile) { return containsGlobalScopeAugmentation(sourceFile) || !ts.isExternalOrCommonJsModule(sourceFile) && !ts.isJsonSourceFile(sourceFile) && !containsOnlyAmbientModules(sourceFile); } /** * Gets all files of the program excluding the default library file */ function getAllFilesExcludingDefaultLibraryFile(state, programOfThisState, firstSourceFile) { // Use cached result if (state.allFilesExcludingDefaultLibraryFile) { return state.allFilesExcludingDefaultLibraryFile; } var result; if (firstSourceFile) addSourceFile(firstSourceFile); for (var _i = 0, _a = programOfThisState.getSourceFiles(); _i < _a.length; _i++) { var sourceFile = _a[_i]; if (sourceFile !== firstSourceFile) { addSourceFile(sourceFile); } } state.allFilesExcludingDefaultLibraryFile = result || ts.emptyArray; return state.allFilesExcludingDefaultLibraryFile; function addSourceFile(sourceFile) { if (!programOfThisState.isSourceFileDefaultLibrary(sourceFile)) { (result || (result = [])).push(sourceFile); } } } BuilderState.getAllFilesExcludingDefaultLibraryFile = getAllFilesExcludingDefaultLibraryFile; /** * When program emits non modular code, gets the files affected by the sourceFile whose shape has changed */ function getFilesAffectedByUpdatedShapeWhenNonModuleEmit(state, programOfThisState, sourceFileWithUpdatedShape) { var compilerOptions = programOfThisState.getCompilerOptions(); // If `--out` or `--outFile` is specified, any new emit will result in re-emitting the entire project, // so returning the file itself is good enough. if (compilerOptions && ts.outFile(compilerOptions)) { return [sourceFileWithUpdatedShape]; } return getAllFilesExcludingDefaultLibraryFile(state, programOfThisState, sourceFileWithUpdatedShape); } /** * When program emits modular code, gets the files affected by the sourceFile whose shape has changed */ function getFilesAffectedByUpdatedShapeWhenModuleEmit(state, programOfThisState, sourceFileWithUpdatedShape, cacheToUpdateSignature, cancellationToken, computeHash, exportedModulesMapCache) { if (isFileAffectingGlobalScope(sourceFileWithUpdatedShape)) { return getAllFilesExcludingDefaultLibraryFile(state, programOfThisState, sourceFileWithUpdatedShape); } var compilerOptions = programOfThisState.getCompilerOptions(); if (compilerOptions && (compilerOptions.isolatedModules || ts.outFile(compilerOptions))) { return [sourceFileWithUpdatedShape]; } // Now we need to if each file in the referencedBy list has a shape change as well. // Because if so, its own referencedBy files need to be saved as well to make the // emitting result consistent with files on disk. var seenFileNamesMap = new ts.Map(); // Start with the paths this file was referenced by seenFileNamesMap.set(sourceFileWithUpdatedShape.resolvedPath, sourceFileWithUpdatedShape); var queue = getReferencedByPaths(state, sourceFileWithUpdatedShape.resolvedPath); while (queue.length > 0) { var currentPath = queue.pop(); if (!seenFileNamesMap.has(currentPath)) { var currentSourceFile = programOfThisState.getSourceFileByPath(currentPath); seenFileNamesMap.set(currentPath, currentSourceFile); if (currentSourceFile && updateShapeSignature(state, programOfThisState, currentSourceFile, cacheToUpdateSignature, cancellationToken, computeHash, exportedModulesMapCache)) { queue.push.apply(queue, getReferencedByPaths(state, currentSourceFile.resolvedPath)); } } } // Return array of values that needs emit return ts.arrayFrom(ts.mapDefinedIterator(seenFileNamesMap.values(), function (value) { return value; })); } })(BuilderState = ts.BuilderState || (ts.BuilderState = {})); })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { var BuilderFileEmit; (function (BuilderFileEmit) { BuilderFileEmit[BuilderFileEmit["DtsOnly"] = 0] = "DtsOnly"; BuilderFileEmit[BuilderFileEmit["Full"] = 1] = "Full"; })(BuilderFileEmit = ts.BuilderFileEmit || (ts.BuilderFileEmit = {})); function hasSameKeys(map1, map2) { // Has same size and every key is present in both maps return map1 === map2 || map1 !== undefined && map2 !== undefined && map1.size === map2.size && !ts.forEachKey(map1, function (key) { return !map2.has(key); }); } /** * Create the state so that we can iterate on changedFiles/affected files */ function createBuilderProgramState(newProgram, getCanonicalFileName, oldState, disableUseFileVersionAsSignature) { var state = ts.BuilderState.create(newProgram, getCanonicalFileName, oldState, disableUseFileVersionAsSignature); state.program = newProgram; var compilerOptions = newProgram.getCompilerOptions(); state.compilerOptions = compilerOptions; // With --out or --outFile, any change affects all semantic diagnostics so no need to cache them if (!ts.outFile(compilerOptions)) { state.semanticDiagnosticsPerFile = new ts.Map(); } state.changedFilesSet = new ts.Set(); var useOldState = ts.BuilderState.canReuseOldState(state.referencedMap, oldState); var oldCompilerOptions = useOldState ? oldState.compilerOptions : undefined; var canCopySemanticDiagnostics = useOldState && oldState.semanticDiagnosticsPerFile && !!state.semanticDiagnosticsPerFile && !ts.compilerOptionsAffectSemanticDiagnostics(compilerOptions, oldCompilerOptions); if (useOldState) { // Verify the sanity of old state if (!oldState.currentChangedFilePath) { var affectedSignatures = oldState.currentAffectedFilesSignatures; ts.Debug.assert(!oldState.affectedFiles && (!affectedSignatures || !affectedSignatures.size), "Cannot reuse if only few affected files of currentChangedFile were iterated"); } var changedFilesSet = oldState.changedFilesSet; if (canCopySemanticDiagnostics) { ts.Debug.assert(!changedFilesSet || !ts.forEachKey(changedFilesSet, function (path) { return oldState.semanticDiagnosticsPerFile.has(path); }), "Semantic diagnostics shouldnt be available for changed files"); } // Copy old state's changed files set changedFilesSet === null || changedFilesSet === void 0 ? void 0 : changedFilesSet.forEach(function (value) { return state.changedFilesSet.add(value); }); if (!ts.outFile(compilerOptions) && oldState.affectedFilesPendingEmit) { state.affectedFilesPendingEmit = oldState.affectedFilesPendingEmit.slice(); state.affectedFilesPendingEmitKind = oldState.affectedFilesPendingEmitKind && new ts.Map(oldState.affectedFilesPendingEmitKind); state.affectedFilesPendingEmitIndex = oldState.affectedFilesPendingEmitIndex; state.seenAffectedFiles = new ts.Set(); } } // Update changed files and copy semantic diagnostics if we can var referencedMap = state.referencedMap; var oldReferencedMap = useOldState ? oldState.referencedMap : undefined; var copyDeclarationFileDiagnostics = canCopySemanticDiagnostics && !compilerOptions.skipLibCheck === !oldCompilerOptions.skipLibCheck; var copyLibFileDiagnostics = copyDeclarationFileDiagnostics && !compilerOptions.skipDefaultLibCheck === !oldCompilerOptions.skipDefaultLibCheck; state.fileInfos.forEach(function (info, sourceFilePath) { var oldInfo; var newReferences; // if not using old state, every file is changed if (!useOldState || // File wasn't present in old state !(oldInfo = oldState.fileInfos.get(sourceFilePath)) || // versions dont match oldInfo.version !== info.version || // Referenced files changed !hasSameKeys(newReferences = referencedMap && referencedMap.getValues(sourceFilePath), oldReferencedMap && oldReferencedMap.getValues(sourceFilePath)) || // Referenced file was deleted in the new program newReferences && ts.forEachKey(newReferences, function (path) { return !state.fileInfos.has(path) && oldState.fileInfos.has(path); })) { // Register file as changed file and do not copy semantic diagnostics, since all changed files need to be re-evaluated state.changedFilesSet.add(sourceFilePath); } else if (canCopySemanticDiagnostics) { var sourceFile = newProgram.getSourceFileByPath(sourceFilePath); if (sourceFile.isDeclarationFile && !copyDeclarationFileDiagnostics) return; if (sourceFile.hasNoDefaultLib && !copyLibFileDiagnostics) return; // Unchanged file copy diagnostics var diagnostics = oldState.semanticDiagnosticsPerFile.get(sourceFilePath); if (diagnostics) { state.semanticDiagnosticsPerFile.set(sourceFilePath, oldState.hasReusableDiagnostic ? convertToDiagnostics(diagnostics, newProgram, getCanonicalFileName) : diagnostics); if (!state.semanticDiagnosticsFromOldState) { state.semanticDiagnosticsFromOldState = new ts.Set(); } state.semanticDiagnosticsFromOldState.add(sourceFilePath); } } }); // If the global file is removed, add all files as changed if (useOldState && ts.forEachEntry(oldState.fileInfos, function (info, sourceFilePath) { return info.affectsGlobalScope && !state.fileInfos.has(sourceFilePath); })) { ts.BuilderState.getAllFilesExcludingDefaultLibraryFile(state, newProgram, /*firstSourceFile*/ undefined) .forEach(function (file) { return state.changedFilesSet.add(file.resolvedPath); }); } else if (oldCompilerOptions && !ts.outFile(compilerOptions) && ts.compilerOptionsAffectEmit(compilerOptions, oldCompilerOptions)) { // Add all files to affectedFilesPendingEmit since emit changed newProgram.getSourceFiles().forEach(function (f) { return addToAffectedFilesPendingEmit(state, f.resolvedPath, 1 /* BuilderFileEmit.Full */); }); ts.Debug.assert(!state.seenAffectedFiles || !state.seenAffectedFiles.size); state.seenAffectedFiles = state.seenAffectedFiles || new ts.Set(); } if (useOldState) { // Any time the interpretation of a source file changes, mark it as changed ts.forEachEntry(oldState.fileInfos, function (info, sourceFilePath) { if (state.fileInfos.has(sourceFilePath) && state.fileInfos.get(sourceFilePath).impliedFormat !== info.impliedFormat) { state.changedFilesSet.add(sourceFilePath); } }); } state.buildInfoEmitPending = !!state.changedFilesSet.size; return state; } function convertToDiagnostics(diagnostics, newProgram, getCanonicalFileName) { if (!diagnostics.length) return ts.emptyArray; var buildInfoDirectory = ts.getDirectoryPath(ts.getNormalizedAbsolutePath(ts.getTsBuildInfoEmitOutputFilePath(newProgram.getCompilerOptions()), newProgram.getCurrentDirectory())); return diagnostics.map(function (diagnostic) { var result = convertToDiagnosticRelatedInformation(diagnostic, newProgram, toPath); result.reportsUnnecessary = diagnostic.reportsUnnecessary; result.reportsDeprecated = diagnostic.reportDeprecated; result.source = diagnostic.source; result.skippedOn = diagnostic.skippedOn; var relatedInformation = diagnostic.relatedInformation; result.relatedInformation = relatedInformation ? relatedInformation.length ? relatedInformation.map(function (r) { return convertToDiagnosticRelatedInformation(r, newProgram, toPath); }) : [] : undefined; return result; }); function toPath(path) { return ts.toPath(path, buildInfoDirectory, getCanonicalFileName); } } function convertToDiagnosticRelatedInformation(diagnostic, newProgram, toPath) { var file = diagnostic.file; return __assign(__assign({}, diagnostic), { file: file ? newProgram.getSourceFileByPath(toPath(file)) : undefined }); } /** * Releases program and other related not needed properties */ function releaseCache(state) { ts.BuilderState.releaseCache(state); state.program = undefined; } /** * Creates a clone of the state */ function cloneBuilderProgramState(state) { var _a; var newState = ts.BuilderState.clone(state); newState.semanticDiagnosticsPerFile = state.semanticDiagnosticsPerFile && new ts.Map(state.semanticDiagnosticsPerFile); newState.changedFilesSet = new ts.Set(state.changedFilesSet); newState.affectedFiles = state.affectedFiles; newState.affectedFilesIndex = state.affectedFilesIndex; newState.currentChangedFilePath = state.currentChangedFilePath; newState.currentAffectedFilesSignatures = state.currentAffectedFilesSignatures && new ts.Map(state.currentAffectedFilesSignatures); newState.currentAffectedFilesExportedModulesMap = (_a = state.currentAffectedFilesExportedModulesMap) === null || _a === void 0 ? void 0 : _a.clone(); newState.seenAffectedFiles = state.seenAffectedFiles && new ts.Set(state.seenAffectedFiles); newState.cleanedDiagnosticsOfLibFiles = state.cleanedDiagnosticsOfLibFiles; newState.semanticDiagnosticsFromOldState = state.semanticDiagnosticsFromOldState && new ts.Set(state.semanticDiagnosticsFromOldState); newState.program = state.program; newState.compilerOptions = state.compilerOptions; newState.affectedFilesPendingEmit = state.affectedFilesPendingEmit && state.affectedFilesPendingEmit.slice(); newState.affectedFilesPendingEmitKind = state.affectedFilesPendingEmitKind && new ts.Map(state.affectedFilesPendingEmitKind); newState.affectedFilesPendingEmitIndex = state.affectedFilesPendingEmitIndex; newState.seenEmittedFiles = state.seenEmittedFiles && new ts.Map(state.seenEmittedFiles); newState.programEmitComplete = state.programEmitComplete; return newState; } /** * Verifies that source file is ok to be used in calls that arent handled by next */ function assertSourceFileOkWithoutNextAffectedCall(state, sourceFile) { ts.Debug.assert(!sourceFile || !state.affectedFiles || state.affectedFiles[state.affectedFilesIndex - 1] !== sourceFile || !state.semanticDiagnosticsPerFile.has(sourceFile.resolvedPath)); } /** * This function returns the next affected file to be processed. * Note that until doneAffected is called it would keep reporting same result * This is to allow the callers to be able to actually remove affected file only when the operation is complete * eg. if during diagnostics check cancellation token ends up cancelling the request, the affected file should be retained */ function getNextAffectedFile(state, cancellationToken, computeHash, host) { var _a; while (true) { var affectedFiles = state.affectedFiles; if (affectedFiles) { var seenAffectedFiles = state.seenAffectedFiles; var affectedFilesIndex = state.affectedFilesIndex; // TODO: GH#18217 while (affectedFilesIndex < affectedFiles.length) { var affectedFile = affectedFiles[affectedFilesIndex]; if (!seenAffectedFiles.has(affectedFile.resolvedPath)) { // Set the next affected file as seen and remove the cached semantic diagnostics state.affectedFilesIndex = affectedFilesIndex; handleDtsMayChangeOfAffectedFile(state, affectedFile, cancellationToken, computeHash, host); return affectedFile; } affectedFilesIndex++; } // Remove the changed file from the change set state.changedFilesSet.delete(state.currentChangedFilePath); state.currentChangedFilePath = undefined; // Commit the changes in file signature ts.BuilderState.updateSignaturesFromCache(state, state.currentAffectedFilesSignatures); state.currentAffectedFilesSignatures.clear(); ts.BuilderState.updateExportedFilesMapFromCache(state, state.currentAffectedFilesExportedModulesMap); (_a = state.currentAffectedFilesExportedModulesMap) === null || _a === void 0 ? void 0 : _a.clear(); state.affectedFiles = undefined; } // Get next changed file var nextKey = state.changedFilesSet.keys().next(); if (nextKey.done) { // Done return undefined; } // With --out or --outFile all outputs go into single file // so operations are performed directly on program, return program var program = ts.Debug.checkDefined(state.program); var compilerOptions = program.getCompilerOptions(); if (ts.outFile(compilerOptions)) { ts.Debug.assert(!state.semanticDiagnosticsPerFile); return program; } // Get next batch of affected files if (!state.currentAffectedFilesSignatures) state.currentAffectedFilesSignatures = new ts.Map(); if (state.exportedModulesMap) { state.currentAffectedFilesExportedModulesMap || (state.currentAffectedFilesExportedModulesMap = ts.BuilderState.createManyToManyPathMap()); } state.affectedFiles = ts.BuilderState.getFilesAffectedBy(state, program, nextKey.value, cancellationToken, computeHash, state.currentAffectedFilesSignatures, state.currentAffectedFilesExportedModulesMap); state.currentChangedFilePath = nextKey.value; state.affectedFilesIndex = 0; if (!state.seenAffectedFiles) state.seenAffectedFiles = new ts.Set(); } } function clearAffectedFilesPendingEmit(state) { state.affectedFilesPendingEmit = undefined; state.affectedFilesPendingEmitKind = undefined; state.affectedFilesPendingEmitIndex = undefined; } /** * Returns next file to be emitted from files that retrieved semantic diagnostics but did not emit yet */ function getNextAffectedFilePendingEmit(state) { var affectedFilesPendingEmit = state.affectedFilesPendingEmit; if (affectedFilesPendingEmit) { var seenEmittedFiles = (state.seenEmittedFiles || (state.seenEmittedFiles = new ts.Map())); for (var i = state.affectedFilesPendingEmitIndex; i < affectedFilesPendingEmit.length; i++) { var affectedFile = ts.Debug.checkDefined(state.program).getSourceFileByPath(affectedFilesPendingEmit[i]); if (affectedFile) { var seenKind = seenEmittedFiles.get(affectedFile.resolvedPath); var emitKind = ts.Debug.checkDefined(ts.Debug.checkDefined(state.affectedFilesPendingEmitKind).get(affectedFile.resolvedPath)); if (seenKind === undefined || seenKind < emitKind) { // emit this file state.affectedFilesPendingEmitIndex = i; return { affectedFile: affectedFile, emitKind: emitKind }; } } } clearAffectedFilesPendingEmit(state); } return undefined; } function removeDiagnosticsOfLibraryFiles(state) { if (!state.cleanedDiagnosticsOfLibFiles) { state.cleanedDiagnosticsOfLibFiles = true; var program_1 = ts.Debug.checkDefined(state.program); var options_2 = program_1.getCompilerOptions(); ts.forEach(program_1.getSourceFiles(), function (f) { return program_1.isSourceFileDefaultLibrary(f) && !ts.skipTypeChecking(f, options_2, program_1) && removeSemanticDiagnosticsOf(state, f.resolvedPath); }); } } /** * Handles semantic diagnostics and dts emit for affectedFile and files, that are referencing modules that export entities from affected file * This is because even though js emit doesnt change, dts emit / type used can change resulting in need for dts emit and js change */ function handleDtsMayChangeOfAffectedFile(state, affectedFile, cancellationToken, computeHash, host) { var _a; removeSemanticDiagnosticsOf(state, affectedFile.resolvedPath); // If affected files is everything except default library, then nothing more to do if (state.allFilesExcludingDefaultLibraryFile === state.affectedFiles) { removeDiagnosticsOfLibraryFiles(state); // When a change affects the global scope, all files are considered to be affected without updating their signature // That means when affected file is handled, its signature can be out of date // To avoid this, ensure that we update the signature for any affected file in this scenario. ts.BuilderState.updateShapeSignature(state, ts.Debug.checkDefined(state.program), affectedFile, ts.Debug.checkDefined(state.currentAffectedFilesSignatures), cancellationToken, computeHash, state.currentAffectedFilesExportedModulesMap); return; } ts.Debug.assert(state.hasCalledUpdateShapeSignature.has(affectedFile.resolvedPath) || ((_a = state.currentAffectedFilesSignatures) === null || _a === void 0 ? void 0 : _a.has(affectedFile.resolvedPath)), "Signature not updated for affected file: ".concat(affectedFile.fileName)); if (state.compilerOptions.assumeChangesOnlyAffectDirectDependencies) return; handleDtsMayChangeOfReferencingExportOfAffectedFile(state, affectedFile, cancellationToken, computeHash, host); } /** * Handle the dts may change, so they need to be added to pending emit if dts emit is enabled, * Also we need to make sure signature is updated for these files */ function handleDtsMayChangeOf(state, path, cancellationToken, computeHash, host) { removeSemanticDiagnosticsOf(state, path); if (!state.changedFilesSet.has(path)) { var program = ts.Debug.checkDefined(state.program); var sourceFile = program.getSourceFileByPath(path); if (sourceFile) { // Even though the js emit doesnt change and we are already handling dts emit and semantic diagnostics // we need to update the signature to reflect correctness of the signature(which is output d.ts emit) of this file // This ensures that we dont later during incremental builds considering wrong signature. // Eg where this also is needed to ensure that .tsbuildinfo generated by incremental build should be same as if it was first fresh build // But we avoid expensive full shape computation, as using file version as shape is enough for correctness. ts.BuilderState.updateShapeSignature(state, program, sourceFile, ts.Debug.checkDefined(state.currentAffectedFilesSignatures), cancellationToken, computeHash, state.currentAffectedFilesExportedModulesMap, !host.disableUseFileVersionAsSignature); // If not dts emit, nothing more to do if (ts.getEmitDeclarations(state.compilerOptions)) { addToAffectedFilesPendingEmit(state, path, 0 /* BuilderFileEmit.DtsOnly */); } } } } /** * Removes semantic diagnostics for path and * returns true if there are no more semantic diagnostics from the old state */ function removeSemanticDiagnosticsOf(state, path) { if (!state.semanticDiagnosticsFromOldState) { return true; } state.semanticDiagnosticsFromOldState.delete(path); state.semanticDiagnosticsPerFile.delete(path); return !state.semanticDiagnosticsFromOldState.size; } function isChangedSignature(state, path) { var newSignature = ts.Debug.checkDefined(state.currentAffectedFilesSignatures).get(path); var oldSignature = ts.Debug.checkDefined(state.fileInfos.get(path)).signature; return newSignature !== oldSignature; } function forEachKeyOfExportedModulesMap(state, filePath, fn) { // Go through exported modules from cache first var keys = state.currentAffectedFilesExportedModulesMap.getKeys(filePath); var result = keys && ts.forEachKey(keys, fn); if (result) return result; // If exported from path is not from cache and exported modules has path, all files referencing file exported from are affected keys = state.exportedModulesMap.getKeys(filePath); return keys && ts.forEachKey(keys, function (exportedFromPath) { var _a; // If the cache had an updated value, skip return !state.currentAffectedFilesExportedModulesMap.hasKey(exportedFromPath) && !((_a = state.currentAffectedFilesExportedModulesMap.deletedKeys()) === null || _a === void 0 ? void 0 : _a.has(exportedFromPath)) ? fn(exportedFromPath) : undefined; }); } function handleDtsMayChangeOfGlobalScope(state, filePath, cancellationToken, computeHash, host) { var _a; if (!((_a = state.fileInfos.get(filePath)) === null || _a === void 0 ? void 0 : _a.affectsGlobalScope)) return false; // Every file needs to be handled ts.BuilderState.getAllFilesExcludingDefaultLibraryFile(state, state.program, /*firstSourceFile*/ undefined) .forEach(function (file) { return handleDtsMayChangeOf(state, file.resolvedPath, cancellationToken, computeHash, host); }); removeDiagnosticsOfLibraryFiles(state); return true; } /** * Iterate on referencing modules that export entities from affected file and delete diagnostics and add pending emit */ function handleDtsMayChangeOfReferencingExportOfAffectedFile(state, affectedFile, cancellationToken, computeHash, host) { // If there was change in signature (dts output) for the changed file, // then only we need to handle pending file emit if (!state.exportedModulesMap || !state.changedFilesSet.has(affectedFile.resolvedPath)) return; if (!isChangedSignature(state, affectedFile.resolvedPath)) return; // Since isolated modules dont change js files, files affected by change in signature is itself // But we need to cleanup semantic diagnostics and queue dts emit for affected files if (state.compilerOptions.isolatedModules) { var seenFileNamesMap = new ts.Map(); seenFileNamesMap.set(affectedFile.resolvedPath, true); var queue = ts.BuilderState.getReferencedByPaths(state, affectedFile.resolvedPath); while (queue.length > 0) { var currentPath = queue.pop(); if (!seenFileNamesMap.has(currentPath)) { seenFileNamesMap.set(currentPath, true); if (handleDtsMayChangeOfGlobalScope(state, currentPath, cancellationToken, computeHash, host)) return; handleDtsMayChangeOf(state, currentPath, cancellationToken, computeHash, host); if (isChangedSignature(state, currentPath)) { var currentSourceFile = ts.Debug.checkDefined(state.program).getSourceFileByPath(currentPath); queue.push.apply(queue, ts.BuilderState.getReferencedByPaths(state, currentSourceFile.resolvedPath)); } } } } ts.Debug.assert(!!state.currentAffectedFilesExportedModulesMap); var seenFileAndExportsOfFile = new ts.Set(); // Go through exported modules from cache first // If exported modules has path, all files referencing file exported from are affected forEachKeyOfExportedModulesMap(state, affectedFile.resolvedPath, function (exportedFromPath) { if (handleDtsMayChangeOfGlobalScope(state, exportedFromPath, cancellationToken, computeHash, host)) return true; var references = state.referencedMap.getKeys(exportedFromPath); return references && ts.forEachKey(references, function (filePath) { return handleDtsMayChangeOfFileAndExportsOfFile(state, filePath, seenFileAndExportsOfFile, cancellationToken, computeHash, host); }); }); } /** * handle dts and semantic diagnostics on file and iterate on anything that exports this file * return true when all work is done and we can exit handling dts emit and semantic diagnostics */ function handleDtsMayChangeOfFileAndExportsOfFile(state, filePath, seenFileAndExportsOfFile, cancellationToken, computeHash, host) { var _a; if (!ts.tryAddToSet(seenFileAndExportsOfFile, filePath)) return undefined; if (handleDtsMayChangeOfGlobalScope(state, filePath, cancellationToken, computeHash, host)) return true; handleDtsMayChangeOf(state, filePath, cancellationToken, computeHash, host); ts.Debug.assert(!!state.currentAffectedFilesExportedModulesMap); // If exported modules has path, all files referencing file exported from are affected forEachKeyOfExportedModulesMap(state, filePath, function (exportedFromPath) { return handleDtsMayChangeOfFileAndExportsOfFile(state, exportedFromPath, seenFileAndExportsOfFile, cancellationToken, computeHash, host); }); // Remove diagnostics of files that import this file (without going to exports of referencing files) (_a = state.referencedMap.getKeys(filePath)) === null || _a === void 0 ? void 0 : _a.forEach(function (referencingFilePath) { return !seenFileAndExportsOfFile.has(referencingFilePath) && // Not already removed diagnostic file handleDtsMayChangeOf(// Dont add to seen since this is not yet done with the export removal state, referencingFilePath, cancellationToken, computeHash, host); }); return undefined; } /** * This is called after completing operation on the next affected file. * The operations here are postponed to ensure that cancellation during the iteration is handled correctly */ function doneWithAffectedFile(state, affected, emitKind, isPendingEmit, isBuildInfoEmit) { if (isBuildInfoEmit) { state.buildInfoEmitPending = false; } else if (affected === state.program) { state.changedFilesSet.clear(); state.programEmitComplete = true; } else { state.seenAffectedFiles.add(affected.resolvedPath); if (emitKind !== undefined) { (state.seenEmittedFiles || (state.seenEmittedFiles = new ts.Map())).set(affected.resolvedPath, emitKind); } if (isPendingEmit) { state.affectedFilesPendingEmitIndex++; state.buildInfoEmitPending = true; } else { state.affectedFilesIndex++; } } } /** * Returns the result with affected file */ function toAffectedFileResult(state, result, affected) { doneWithAffectedFile(state, affected); return { result: result, affected: affected }; } /** * Returns the result with affected file */ function toAffectedFileEmitResult(state, result, affected, emitKind, isPendingEmit, isBuildInfoEmit) { doneWithAffectedFile(state, affected, emitKind, isPendingEmit, isBuildInfoEmit); return { result: result, affected: affected }; } /** * Gets semantic diagnostics for the file which are * bindAndCheckDiagnostics (from cache) and program diagnostics */ function getSemanticDiagnosticsOfFile(state, sourceFile, cancellationToken) { return ts.concatenate(getBinderAndCheckerDiagnosticsOfFile(state, sourceFile, cancellationToken), ts.Debug.checkDefined(state.program).getProgramDiagnostics(sourceFile)); } /** * Gets the binder and checker diagnostics either from cache if present, or otherwise from program and caches it * Note that it is assumed that when asked about binder and checker diagnostics, the file has been taken out of affected files/changed file set */ function getBinderAndCheckerDiagnosticsOfFile(state, sourceFile, cancellationToken) { var path = sourceFile.resolvedPath; if (state.semanticDiagnosticsPerFile) { var cachedDiagnostics = state.semanticDiagnosticsPerFile.get(path); // Report the bind and check diagnostics from the cache if we already have those diagnostics present if (cachedDiagnostics) { return ts.filterSemanticDiagnostics(cachedDiagnostics, state.compilerOptions); } } // Diagnostics werent cached, get them from program, and cache the result var diagnostics = ts.Debug.checkDefined(state.program).getBindAndCheckDiagnostics(sourceFile, cancellationToken); if (state.semanticDiagnosticsPerFile) { state.semanticDiagnosticsPerFile.set(path, diagnostics); } return ts.filterSemanticDiagnostics(diagnostics, state.compilerOptions); } /** * Gets the program information to be emitted in buildInfo so that we can use it to create new program */ function getProgramBuildInfo(state, getCanonicalFileName) { if (ts.outFile(state.compilerOptions)) return undefined; var currentDirectory = ts.Debug.checkDefined(state.program).getCurrentDirectory(); var buildInfoDirectory = ts.getDirectoryPath(ts.getNormalizedAbsolutePath(ts.getTsBuildInfoEmitOutputFilePath(state.compilerOptions), currentDirectory)); var fileNames = []; var fileNameToFileId = new ts.Map(); var fileIdsList; var fileNamesToFileIdListId; var fileInfos = ts.arrayFrom(state.fileInfos.entries(), function (_a) { var key = _a[0], value = _a[1]; // Ensure fileId var fileId = toFileId(key); ts.Debug.assert(fileNames[fileId - 1] === relativeToBuildInfo(key)); var signature = state.currentAffectedFilesSignatures && state.currentAffectedFilesSignatures.get(key); var actualSignature = signature !== null && signature !== void 0 ? signature : value.signature; return value.version === actualSignature ? value.affectsGlobalScope || value.impliedFormat ? // If file version is same as signature, dont serialize signature { version: value.version, signature: undefined, affectsGlobalScope: value.affectsGlobalScope, impliedFormat: value.impliedFormat } : // If file info only contains version and signature and both are same we can just write string value.version : actualSignature !== undefined ? // If signature is not same as version, encode signature in the fileInfo signature === undefined ? // If we havent computed signature, use fileInfo as is value : // Serialize fileInfo with new updated signature { version: value.version, signature: signature, affectsGlobalScope: value.affectsGlobalScope, impliedFormat: value.impliedFormat } : // Signature of the FileInfo is undefined, serialize it as false { version: value.version, signature: false, affectsGlobalScope: value.affectsGlobalScope, impliedFormat: value.impliedFormat }; }); var referencedMap; if (state.referencedMap) { referencedMap = ts.arrayFrom(state.referencedMap.keys()).sort(ts.compareStringsCaseSensitive).map(function (key) { return [ toFileId(key), toFileIdListId(state.referencedMap.getValues(key)) ]; }); } var exportedModulesMap; if (state.exportedModulesMap) { exportedModulesMap = ts.mapDefined(ts.arrayFrom(state.exportedModulesMap.keys()).sort(ts.compareStringsCaseSensitive), function (key) { var _a; if (state.currentAffectedFilesExportedModulesMap) { if ((_a = state.currentAffectedFilesExportedModulesMap.deletedKeys()) === null || _a === void 0 ? void 0 : _a.has(key)) { return undefined; } var newValue = state.currentAffectedFilesExportedModulesMap.getValues(key); if (newValue) { return [toFileId(key), toFileIdListId(newValue)]; } } // Not in temporary cache, use existing value return [toFileId(key), toFileIdListId(state.exportedModulesMap.getValues(key))]; }); } var semanticDiagnosticsPerFile; if (state.semanticDiagnosticsPerFile) { for (var _i = 0, _a = ts.arrayFrom(state.semanticDiagnosticsPerFile.keys()).sort(ts.compareStringsCaseSensitive); _i < _a.length; _i++) { var key = _a[_i]; var value = state.semanticDiagnosticsPerFile.get(key); (semanticDiagnosticsPerFile || (semanticDiagnosticsPerFile = [])).push(value.length ? [ toFileId(key), state.hasReusableDiagnostic ? value : convertToReusableDiagnostics(value, relativeToBuildInfo) ] : toFileId(key)); } } var affectedFilesPendingEmit; if (state.affectedFilesPendingEmit) { var seenFiles = new ts.Set(); for (var _b = 0, _c = state.affectedFilesPendingEmit.slice(state.affectedFilesPendingEmitIndex).sort(ts.compareStringsCaseSensitive); _b < _c.length; _b++) { var path = _c[_b]; if (ts.tryAddToSet(seenFiles, path)) { (affectedFilesPendingEmit || (affectedFilesPendingEmit = [])).push([toFileId(path), state.affectedFilesPendingEmitKind.get(path)]); } } } return { fileNames: fileNames, fileInfos: fileInfos, options: convertToProgramBuildInfoCompilerOptions(state.compilerOptions, relativeToBuildInfoEnsuringAbsolutePath), fileIdsList: fileIdsList, referencedMap: referencedMap, exportedModulesMap: exportedModulesMap, semanticDiagnosticsPerFile: semanticDiagnosticsPerFile, affectedFilesPendingEmit: affectedFilesPendingEmit, }; function relativeToBuildInfoEnsuringAbsolutePath(path) { return relativeToBuildInfo(ts.getNormalizedAbsolutePath(path, currentDirectory)); } function relativeToBuildInfo(path) { return ts.ensurePathIsNonModuleName(ts.getRelativePathFromDirectory(buildInfoDirectory, path, getCanonicalFileName)); } function toFileId(path) { var fileId = fileNameToFileId.get(path); if (fileId === undefined) { fileNames.push(relativeToBuildInfo(path)); fileNameToFileId.set(path, fileId = fileNames.length); } return fileId; } function toFileIdListId(set) { var fileIds = ts.arrayFrom(set.keys(), toFileId).sort(ts.compareValues); var key = fileIds.join(); var fileIdListId = fileNamesToFileIdListId === null || fileNamesToFileIdListId === void 0 ? void 0 : fileNamesToFileIdListId.get(key); if (fileIdListId === undefined) { (fileIdsList || (fileIdsList = [])).push(fileIds); (fileNamesToFileIdListId || (fileNamesToFileIdListId = new ts.Map())).set(key, fileIdListId = fileIdsList.length); } return fileIdListId; } } function convertToProgramBuildInfoCompilerOptions(options, relativeToBuildInfo) { var result; var optionsNameMap = ts.getOptionsNameMap().optionsNameMap; for (var _i = 0, _a = ts.getOwnKeys(options).sort(ts.compareStringsCaseSensitive); _i < _a.length; _i++) { var name = _a[_i]; var optionKey = name.toLowerCase(); var optionInfo = optionsNameMap.get(optionKey); if ((optionInfo === null || optionInfo === void 0 ? void 0 : optionInfo.affectsEmit) || (optionInfo === null || optionInfo === void 0 ? void 0 : optionInfo.affectsSemanticDiagnostics) || // We need to store `strict`, even though it won't be examined directly, so that the // flags it controls (e.g. `strictNullChecks`) will be retrieved correctly from the buildinfo optionKey === "strict" || // We need to store these to determine whether `lib` files need to be rechecked. optionKey === "skiplibcheck" || optionKey === "skipdefaultlibcheck") { (result || (result = {}))[name] = convertToReusableCompilerOptionValue(optionInfo, options[name], relativeToBuildInfo); } } return result; } function convertToReusableCompilerOptionValue(option, value, relativeToBuildInfo) { if (option) { if (option.type === "list") { var values = value; if (option.element.isFilePath && values.length) { return values.map(relativeToBuildInfo); } } else if (option.isFilePath) { return relativeToBuildInfo(value); } } return value; } function convertToReusableDiagnostics(diagnostics, relativeToBuildInfo) { ts.Debug.assert(!!diagnostics.length); return diagnostics.map(function (diagnostic) { var result = convertToReusableDiagnosticRelatedInformation(diagnostic, relativeToBuildInfo); result.reportsUnnecessary = diagnostic.reportsUnnecessary; result.reportDeprecated = diagnostic.reportsDeprecated; result.source = diagnostic.source; result.skippedOn = diagnostic.skippedOn; var relatedInformation = diagnostic.relatedInformation; result.relatedInformation = relatedInformation ? relatedInformation.length ? relatedInformation.map(function (r) { return convertToReusableDiagnosticRelatedInformation(r, relativeToBuildInfo); }) : [] : undefined; return result; }); } function convertToReusableDiagnosticRelatedInformation(diagnostic, relativeToBuildInfo) { var file = diagnostic.file; return __assign(__assign({}, diagnostic), { file: file ? relativeToBuildInfo(file.resolvedPath) : undefined }); } var BuilderProgramKind; (function (BuilderProgramKind) { BuilderProgramKind[BuilderProgramKind["SemanticDiagnosticsBuilderProgram"] = 0] = "SemanticDiagnosticsBuilderProgram"; BuilderProgramKind[BuilderProgramKind["EmitAndSemanticDiagnosticsBuilderProgram"] = 1] = "EmitAndSemanticDiagnosticsBuilderProgram"; })(BuilderProgramKind = ts.BuilderProgramKind || (ts.BuilderProgramKind = {})); function getBuilderCreationParameters(newProgramOrRootNames, hostOrOptions, oldProgramOrHost, configFileParsingDiagnosticsOrOldProgram, configFileParsingDiagnostics, projectReferences) { var host; var newProgram; var oldProgram; if (newProgramOrRootNames === undefined) { ts.Debug.assert(hostOrOptions === undefined); host = oldProgramOrHost; oldProgram = configFileParsingDiagnosticsOrOldProgram; ts.Debug.assert(!!oldProgram); newProgram = oldProgram.getProgram(); } else if (ts.isArray(newProgramOrRootNames)) { oldProgram = configFileParsingDiagnosticsOrOldProgram; newProgram = ts.createProgram({ rootNames: newProgramOrRootNames, options: hostOrOptions, host: oldProgramOrHost, oldProgram: oldProgram && oldProgram.getProgramOrUndefined(), configFileParsingDiagnostics: configFileParsingDiagnostics, projectReferences: projectReferences }); host = oldProgramOrHost; } else { newProgram = newProgramOrRootNames; host = hostOrOptions; oldProgram = oldProgramOrHost; configFileParsingDiagnostics = configFileParsingDiagnosticsOrOldProgram; } return { host: host, newProgram: newProgram, oldProgram: oldProgram, configFileParsingDiagnostics: configFileParsingDiagnostics || ts.emptyArray }; } ts.getBuilderCreationParameters = getBuilderCreationParameters; function createBuilderProgram(kind, _a) { var newProgram = _a.newProgram, host = _a.host, oldProgram = _a.oldProgram, configFileParsingDiagnostics = _a.configFileParsingDiagnostics; // Return same program if underlying program doesnt change var oldState = oldProgram && oldProgram.getState(); if (oldState && newProgram === oldState.program && configFileParsingDiagnostics === newProgram.getConfigFileParsingDiagnostics()) { newProgram = undefined; // TODO: GH#18217 oldState = undefined; return oldProgram; } /** * Create the canonical file name for identity */ var getCanonicalFileName = ts.createGetCanonicalFileName(host.useCaseSensitiveFileNames()); /** * Computing hash to for signature verification */ var computeHash = ts.maybeBind(host, host.createHash); var state = createBuilderProgramState(newProgram, getCanonicalFileName, oldState, host.disableUseFileVersionAsSignature); var backupState; newProgram.getProgramBuildInfo = function () { return getProgramBuildInfo(state, getCanonicalFileName); }; // To ensure that we arent storing any references to old program or new program without state newProgram = undefined; // TODO: GH#18217 oldProgram = undefined; oldState = undefined; var getState = function () { return state; }; var builderProgram = createRedirectedBuilderProgram(getState, configFileParsingDiagnostics); builderProgram.getState = getState; builderProgram.backupState = function () { ts.Debug.assert(backupState === undefined); backupState = cloneBuilderProgramState(state); }; builderProgram.restoreState = function () { state = ts.Debug.checkDefined(backupState); backupState = undefined; }; builderProgram.getAllDependencies = function (sourceFile) { return ts.BuilderState.getAllDependencies(state, ts.Debug.checkDefined(state.program), sourceFile); }; builderProgram.getSemanticDiagnostics = getSemanticDiagnostics; builderProgram.emit = emit; builderProgram.releaseProgram = function () { releaseCache(state); backupState = undefined; }; if (kind === BuilderProgramKind.SemanticDiagnosticsBuilderProgram) { builderProgram.getSemanticDiagnosticsOfNextAffectedFile = getSemanticDiagnosticsOfNextAffectedFile; } else if (kind === BuilderProgramKind.EmitAndSemanticDiagnosticsBuilderProgram) { builderProgram.getSemanticDiagnosticsOfNextAffectedFile = getSemanticDiagnosticsOfNextAffectedFile; builderProgram.emitNextAffectedFile = emitNextAffectedFile; builderProgram.emitBuildInfo = emitBuildInfo; } else { ts.notImplemented(); } return builderProgram; function emitBuildInfo(writeFile, cancellationToken) { if (state.buildInfoEmitPending) { var result = ts.Debug.checkDefined(state.program).emitBuildInfo(writeFile || ts.maybeBind(host, host.writeFile), cancellationToken); state.buildInfoEmitPending = false; return result; } return ts.emitSkippedWithNoDiagnostics; } /** * Emits the next affected file's emit result (EmitResult and sourceFiles emitted) or returns undefined if iteration is complete * The first of writeFile if provided, writeFile of BuilderProgramHost if provided, writeFile of compiler host * in that order would be used to write the files */ function emitNextAffectedFile(writeFile, cancellationToken, emitOnlyDtsFiles, customTransformers) { var affected = getNextAffectedFile(state, cancellationToken, computeHash, host); var emitKind = 1 /* BuilderFileEmit.Full */; var isPendingEmitFile = false; if (!affected) { if (!ts.outFile(state.compilerOptions)) { var pendingAffectedFile = getNextAffectedFilePendingEmit(state); if (!pendingAffectedFile) { if (!state.buildInfoEmitPending) { return undefined; } var affected_1 = ts.Debug.checkDefined(state.program); return toAffectedFileEmitResult(state, // When whole program is affected, do emit only once (eg when --out or --outFile is specified) // Otherwise just affected file affected_1.emitBuildInfo(writeFile || ts.maybeBind(host, host.writeFile), cancellationToken), affected_1, 1 /* BuilderFileEmit.Full */, /*isPendingEmitFile*/ false, /*isBuildInfoEmit*/ true); } (affected = pendingAffectedFile.affectedFile, emitKind = pendingAffectedFile.emitKind); isPendingEmitFile = true; } else { var program = ts.Debug.checkDefined(state.program); if (state.programEmitComplete) return undefined; affected = program; } } return toAffectedFileEmitResult(state, // When whole program is affected, do emit only once (eg when --out or --outFile is specified) // Otherwise just affected file ts.Debug.checkDefined(state.program).emit(affected === state.program ? undefined : affected, affected !== state.program && ts.getEmitDeclarations(state.compilerOptions) && !customTransformers ? getWriteFileUpdatingSignatureCallback(writeFile) : writeFile || ts.maybeBind(host, host.writeFile), cancellationToken, emitOnlyDtsFiles || emitKind === 0 /* BuilderFileEmit.DtsOnly */, customTransformers), affected, emitKind, isPendingEmitFile); } function getWriteFileUpdatingSignatureCallback(writeFile) { return function (fileName, text, writeByteOrderMark, onError, sourceFiles, data) { var _a; if (ts.isDeclarationFileName(fileName)) { ts.Debug.assert((sourceFiles === null || sourceFiles === void 0 ? void 0 : sourceFiles.length) === 1); var file = sourceFiles[0]; var info = state.fileInfos.get(file.resolvedPath); var signature = ((_a = state.currentAffectedFilesSignatures) === null || _a === void 0 ? void 0 : _a.get(file.resolvedPath)) || info.signature; if (signature === file.version) { var newSignature = (computeHash || ts.generateDjb2Hash)((data === null || data === void 0 ? void 0 : data.sourceMapUrlPos) !== undefined ? text.substring(0, data.sourceMapUrlPos) : text); if (newSignature !== file.version) { // Update it if (host.storeFilesChangingSignatureDuringEmit) (state.filesChangingSignature || (state.filesChangingSignature = new ts.Set())).add(file.resolvedPath); if (state.exportedModulesMap) ts.BuilderState.updateExportedModules(file, file.exportedModulesFromDeclarationEmit, state.currentAffectedFilesExportedModulesMap || (state.currentAffectedFilesExportedModulesMap = ts.BuilderState.createManyToManyPathMap())); if (state.affectedFiles && state.affectedFilesIndex < state.affectedFiles.length) { state.currentAffectedFilesSignatures.set(file.resolvedPath, newSignature); } else { info.signature = newSignature; if (state.exportedModulesMap) ts.BuilderState.updateExportedFilesMapFromCache(state, state.currentAffectedFilesExportedModulesMap); } } } } if (writeFile) writeFile(fileName, text, writeByteOrderMark, onError, sourceFiles, data); else if (host.writeFile) host.writeFile(fileName, text, writeByteOrderMark, onError, sourceFiles, data); else state.program.writeFile(fileName, text, writeByteOrderMark, onError, sourceFiles, data); }; } /** * Emits the JavaScript and declaration files. * When targetSource file is specified, emits the files corresponding to that source file, * otherwise for the whole program. * In case of EmitAndSemanticDiagnosticsBuilderProgram, when targetSourceFile is specified, * it is assumed that that file is handled from affected file list. If targetSourceFile is not specified, * it will only emit all the affected files instead of whole program * * The first of writeFile if provided, writeFile of BuilderProgramHost if provided, writeFile of compiler host * in that order would be used to write the files */ function emit(targetSourceFile, writeFile, cancellationToken, emitOnlyDtsFiles, customTransformers) { var _a; if (kind === BuilderProgramKind.EmitAndSemanticDiagnosticsBuilderProgram) { assertSourceFileOkWithoutNextAffectedCall(state, targetSourceFile); } var result = ts.handleNoEmitOptions(builderProgram, targetSourceFile, writeFile, cancellationToken); if (result) return result; // Emit only affected files if using builder for emit if (!targetSourceFile) { if (kind === BuilderProgramKind.EmitAndSemanticDiagnosticsBuilderProgram) { // Emit and report any errors we ran into. var sourceMaps = []; var emitSkipped = false; var diagnostics = void 0; var emittedFiles = []; var affectedEmitResult = void 0; while (affectedEmitResult = emitNextAffectedFile(writeFile, cancellationToken, emitOnlyDtsFiles, customTransformers)) { emitSkipped = emitSkipped || affectedEmitResult.result.emitSkipped; diagnostics = ts.addRange(diagnostics, affectedEmitResult.result.diagnostics); emittedFiles = ts.addRange(emittedFiles, affectedEmitResult.result.emittedFiles); sourceMaps = ts.addRange(sourceMaps, affectedEmitResult.result.sourceMaps); } return { emitSkipped: emitSkipped, diagnostics: diagnostics || ts.emptyArray, emittedFiles: emittedFiles, sourceMaps: sourceMaps }; } // In non Emit builder, clear affected files pending emit else if ((_a = state.affectedFilesPendingEmitKind) === null || _a === void 0 ? void 0 : _a.size) { ts.Debug.assert(kind === BuilderProgramKind.SemanticDiagnosticsBuilderProgram); // State can clear affected files pending emit if if (!emitOnlyDtsFiles // If we are doing complete emit, affected files pending emit can be cleared // If every file pending emit is pending on only dts emit || ts.every(state.affectedFilesPendingEmit, function (path, index) { return index < state.affectedFilesPendingEmitIndex || state.affectedFilesPendingEmitKind.get(path) === 0 /* BuilderFileEmit.DtsOnly */; })) { clearAffectedFilesPendingEmit(state); } } } return ts.Debug.checkDefined(state.program).emit(targetSourceFile, !ts.outFile(state.compilerOptions) && ts.getEmitDeclarations(state.compilerOptions) && !customTransformers ? getWriteFileUpdatingSignatureCallback(writeFile) : writeFile || ts.maybeBind(host, host.writeFile), cancellationToken, emitOnlyDtsFiles, customTransformers); } /** * Return the semantic diagnostics for the next affected file or undefined if iteration is complete * If provided ignoreSourceFile would be called before getting the diagnostics and would ignore the sourceFile if the returned value was true */ function getSemanticDiagnosticsOfNextAffectedFile(cancellationToken, ignoreSourceFile) { while (true) { var affected = getNextAffectedFile(state, cancellationToken, computeHash, host); if (!affected) { // Done return undefined; } else if (affected === state.program) { // When whole program is affected, get all semantic diagnostics (eg when --out or --outFile is specified) return toAffectedFileResult(state, state.program.getSemanticDiagnostics(/*targetSourceFile*/ undefined, cancellationToken), affected); } // Add file to affected file pending emit to handle for later emit time // Apart for emit builder do this for tsbuildinfo, do this for non emit builder when noEmit is set as tsbuildinfo is written and reused between emitters if (kind === BuilderProgramKind.EmitAndSemanticDiagnosticsBuilderProgram || state.compilerOptions.noEmit || state.compilerOptions.noEmitOnError) { addToAffectedFilesPendingEmit(state, affected.resolvedPath, 1 /* BuilderFileEmit.Full */); } // Get diagnostics for the affected file if its not ignored if (ignoreSourceFile && ignoreSourceFile(affected)) { // Get next affected file doneWithAffectedFile(state, affected); continue; } return toAffectedFileResult(state, getSemanticDiagnosticsOfFile(state, affected, cancellationToken), affected); } } /** * Gets the semantic diagnostics from the program corresponding to this state of file (if provided) or whole program * The semantic diagnostics are cached and managed here * Note that it is assumed that when asked about semantic diagnostics through this API, * the file has been taken out of affected files so it is safe to use cache or get from program and cache the diagnostics * In case of SemanticDiagnosticsBuilderProgram if the source file is not provided, * it will iterate through all the affected files, to ensure that cache stays valid and yet provide a way to get all semantic diagnostics */ function getSemanticDiagnostics(sourceFile, cancellationToken) { assertSourceFileOkWithoutNextAffectedCall(state, sourceFile); var compilerOptions = ts.Debug.checkDefined(state.program).getCompilerOptions(); if (ts.outFile(compilerOptions)) { ts.Debug.assert(!state.semanticDiagnosticsPerFile); // We dont need to cache the diagnostics just return them from program return ts.Debug.checkDefined(state.program).getSemanticDiagnostics(sourceFile, cancellationToken); } if (sourceFile) { return getSemanticDiagnosticsOfFile(state, sourceFile, cancellationToken); } // When semantic builder asks for diagnostics of the whole program, // ensure that all the affected files are handled // eslint-disable-next-line no-empty while (getSemanticDiagnosticsOfNextAffectedFile(cancellationToken)) { } var diagnostics; for (var _i = 0, _a = ts.Debug.checkDefined(state.program).getSourceFiles(); _i < _a.length; _i++) { var sourceFile_1 = _a[_i]; diagnostics = ts.addRange(diagnostics, getSemanticDiagnosticsOfFile(state, sourceFile_1, cancellationToken)); } return diagnostics || ts.emptyArray; } } ts.createBuilderProgram = createBuilderProgram; function addToAffectedFilesPendingEmit(state, affectedFilePendingEmit, kind) { if (!state.affectedFilesPendingEmit) state.affectedFilesPendingEmit = []; if (!state.affectedFilesPendingEmitKind) state.affectedFilesPendingEmitKind = new ts.Map(); var existingKind = state.affectedFilesPendingEmitKind.get(affectedFilePendingEmit); state.affectedFilesPendingEmit.push(affectedFilePendingEmit); state.affectedFilesPendingEmitKind.set(affectedFilePendingEmit, existingKind || kind); // affectedFilesPendingEmitIndex === undefined // - means the emit state.affectedFilesPendingEmit was undefined before adding current affected files // so start from 0 as array would be affectedFilesPendingEmit // else, continue to iterate from existing index, the current set is appended to existing files if (state.affectedFilesPendingEmitIndex === undefined) { state.affectedFilesPendingEmitIndex = 0; } } function toBuilderStateFileInfo(fileInfo) { return ts.isString(fileInfo) ? { version: fileInfo, signature: fileInfo, affectsGlobalScope: undefined, impliedFormat: undefined } : ts.isString(fileInfo.signature) ? fileInfo : { version: fileInfo.version, signature: fileInfo.signature === false ? undefined : fileInfo.version, affectsGlobalScope: fileInfo.affectsGlobalScope, impliedFormat: fileInfo.impliedFormat }; } ts.toBuilderStateFileInfo = toBuilderStateFileInfo; function createBuildProgramUsingProgramBuildInfo(program, buildInfoPath, host) { var _a; var buildInfoDirectory = ts.getDirectoryPath(ts.getNormalizedAbsolutePath(buildInfoPath, host.getCurrentDirectory())); var getCanonicalFileName = ts.createGetCanonicalFileName(host.useCaseSensitiveFileNames()); var filePaths = program.fileNames.map(toPath); var filePathsSetList = (_a = program.fileIdsList) === null || _a === void 0 ? void 0 : _a.map(function (fileIds) { return new ts.Set(fileIds.map(toFilePath)); }); var fileInfos = new ts.Map(); program.fileInfos.forEach(function (fileInfo, index) { return fileInfos.set(toFilePath(index + 1), toBuilderStateFileInfo(fileInfo)); }); var state = { fileInfos: fileInfos, compilerOptions: program.options ? ts.convertToOptionsWithAbsolutePaths(program.options, toAbsolutePath) : {}, referencedMap: toManyToManyPathMap(program.referencedMap), exportedModulesMap: toManyToManyPathMap(program.exportedModulesMap), semanticDiagnosticsPerFile: program.semanticDiagnosticsPerFile && ts.arrayToMap(program.semanticDiagnosticsPerFile, function (value) { return toFilePath(ts.isNumber(value) ? value : value[0]); }, function (value) { return ts.isNumber(value) ? ts.emptyArray : value[1]; }), hasReusableDiagnostic: true, affectedFilesPendingEmit: ts.map(program.affectedFilesPendingEmit, function (value) { return toFilePath(value[0]); }), affectedFilesPendingEmitKind: program.affectedFilesPendingEmit && ts.arrayToMap(program.affectedFilesPendingEmit, function (value) { return toFilePath(value[0]); }, function (value) { return value[1]; }), affectedFilesPendingEmitIndex: program.affectedFilesPendingEmit && 0, }; return { getState: function () { return state; }, backupState: ts.noop, restoreState: ts.noop, getProgram: ts.notImplemented, getProgramOrUndefined: ts.returnUndefined, releaseProgram: ts.noop, getCompilerOptions: function () { return state.compilerOptions; }, getSourceFile: ts.notImplemented, getSourceFiles: ts.notImplemented, getOptionsDiagnostics: ts.notImplemented, getGlobalDiagnostics: ts.notImplemented, getConfigFileParsingDiagnostics: ts.notImplemented, getSyntacticDiagnostics: ts.notImplemented, getDeclarationDiagnostics: ts.notImplemented, getSemanticDiagnostics: ts.notImplemented, emit: ts.notImplemented, getAllDependencies: ts.notImplemented, getCurrentDirectory: ts.notImplemented, emitNextAffectedFile: ts.notImplemented, getSemanticDiagnosticsOfNextAffectedFile: ts.notImplemented, emitBuildInfo: ts.notImplemented, close: ts.noop, }; function toPath(path) { return ts.toPath(path, buildInfoDirectory, getCanonicalFileName); } function toAbsolutePath(path) { return ts.getNormalizedAbsolutePath(path, buildInfoDirectory); } function toFilePath(fileId) { return filePaths[fileId - 1]; } function toFilePathsSet(fileIdsListId) { return filePathsSetList[fileIdsListId - 1]; } function toManyToManyPathMap(referenceMap) { if (!referenceMap) { return undefined; } var map = ts.BuilderState.createManyToManyPathMap(); referenceMap.forEach(function (_a) { var fileId = _a[0], fileIdListId = _a[1]; return map.set(toFilePath(fileId), toFilePathsSet(fileIdListId)); }); return map; } } ts.createBuildProgramUsingProgramBuildInfo = createBuildProgramUsingProgramBuildInfo; function createRedirectedBuilderProgram(getState, configFileParsingDiagnostics) { return { getState: ts.notImplemented, backupState: ts.noop, restoreState: ts.noop, getProgram: getProgram, getProgramOrUndefined: function () { return getState().program; }, releaseProgram: function () { return getState().program = undefined; }, getCompilerOptions: function () { return getState().compilerOptions; }, getSourceFile: function (fileName) { return getProgram().getSourceFile(fileName); }, getSourceFiles: function () { return getProgram().getSourceFiles(); }, getOptionsDiagnostics: function (cancellationToken) { return getProgram().getOptionsDiagnostics(cancellationToken); }, getGlobalDiagnostics: function (cancellationToken) { return getProgram().getGlobalDiagnostics(cancellationToken); }, getConfigFileParsingDiagnostics: function () { return configFileParsingDiagnostics; }, getSyntacticDiagnostics: function (sourceFile, cancellationToken) { return getProgram().getSyntacticDiagnostics(sourceFile, cancellationToken); }, getDeclarationDiagnostics: function (sourceFile, cancellationToken) { return getProgram().getDeclarationDiagnostics(sourceFile, cancellationToken); }, getSemanticDiagnostics: function (sourceFile, cancellationToken) { return getProgram().getSemanticDiagnostics(sourceFile, cancellationToken); }, emit: function (sourceFile, writeFile, cancellationToken, emitOnlyDts, customTransformers) { return getProgram().emit(sourceFile, writeFile, cancellationToken, emitOnlyDts, customTransformers); }, emitBuildInfo: function (writeFile, cancellationToken) { return getProgram().emitBuildInfo(writeFile, cancellationToken); }, getAllDependencies: ts.notImplemented, getCurrentDirectory: function () { return getProgram().getCurrentDirectory(); }, close: ts.noop, }; function getProgram() { return ts.Debug.checkDefined(getState().program); } } ts.createRedirectedBuilderProgram = createRedirectedBuilderProgram; })(ts || (ts = {})); var ts; (function (ts) { function createSemanticDiagnosticsBuilderProgram(newProgramOrRootNames, hostOrOptions, oldProgramOrHost, configFileParsingDiagnosticsOrOldProgram, configFileParsingDiagnostics, projectReferences) { return ts.createBuilderProgram(ts.BuilderProgramKind.SemanticDiagnosticsBuilderProgram, ts.getBuilderCreationParameters(newProgramOrRootNames, hostOrOptions, oldProgramOrHost, configFileParsingDiagnosticsOrOldProgram, configFileParsingDiagnostics, projectReferences)); } ts.createSemanticDiagnosticsBuilderProgram = createSemanticDiagnosticsBuilderProgram; function createEmitAndSemanticDiagnosticsBuilderProgram(newProgramOrRootNames, hostOrOptions, oldProgramOrHost, configFileParsingDiagnosticsOrOldProgram, configFileParsingDiagnostics, projectReferences) { return ts.createBuilderProgram(ts.BuilderProgramKind.EmitAndSemanticDiagnosticsBuilderProgram, ts.getBuilderCreationParameters(newProgramOrRootNames, hostOrOptions, oldProgramOrHost, configFileParsingDiagnosticsOrOldProgram, configFileParsingDiagnostics, projectReferences)); } ts.createEmitAndSemanticDiagnosticsBuilderProgram = createEmitAndSemanticDiagnosticsBuilderProgram; function createAbstractBuilder(newProgramOrRootNames, hostOrOptions, oldProgramOrHost, configFileParsingDiagnosticsOrOldProgram, configFileParsingDiagnostics, projectReferences) { var _a = ts.getBuilderCreationParameters(newProgramOrRootNames, hostOrOptions, oldProgramOrHost, configFileParsingDiagnosticsOrOldProgram, configFileParsingDiagnostics, projectReferences), newProgram = _a.newProgram, newConfigFileParsingDiagnostics = _a.configFileParsingDiagnostics; return ts.createRedirectedBuilderProgram(function () { return ({ program: newProgram, compilerOptions: newProgram.getCompilerOptions() }); }, newConfigFileParsingDiagnostics); } ts.createAbstractBuilder = createAbstractBuilder; })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { function removeIgnoredPath(path) { // Consider whole staging folder as if node_modules changed. if (ts.endsWith(path, "/node_modules/.staging")) { return ts.removeSuffix(path, "/.staging"); } return ts.some(ts.ignoredPaths, function (searchPath) { return ts.stringContains(path, searchPath); }) ? undefined : path; } ts.removeIgnoredPath = removeIgnoredPath; /** * Filter out paths like * "/", "/user", "/user/username", "/user/username/folderAtRoot", * "c:/", "c:/users", "c:/users/username", "c:/users/username/folderAtRoot", "c:/folderAtRoot" * @param dirPath */ function canWatchDirectory(dirPath) { var rootLength = ts.getRootLength(dirPath); if (dirPath.length === rootLength) { // Ignore "/", "c:/" return false; } var nextDirectorySeparator = dirPath.indexOf(ts.directorySeparator, rootLength); if (nextDirectorySeparator === -1) { // ignore "/user", "c:/users" or "c:/folderAtRoot" return false; } var pathPartForUserCheck = dirPath.substring(rootLength, nextDirectorySeparator + 1); var isNonDirectorySeparatorRoot = rootLength > 1 || dirPath.charCodeAt(0) !== 47 /* CharacterCodes.slash */; if (isNonDirectorySeparatorRoot && dirPath.search(/[a-zA-Z]:/) !== 0 && // Non dos style paths pathPartForUserCheck.search(/[a-zA-z]\$\//) === 0) { // Dos style nextPart nextDirectorySeparator = dirPath.indexOf(ts.directorySeparator, nextDirectorySeparator + 1); if (nextDirectorySeparator === -1) { // ignore "//vda1cs4850/c$/folderAtRoot" return false; } pathPartForUserCheck = dirPath.substring(rootLength + pathPartForUserCheck.length, nextDirectorySeparator + 1); } if (isNonDirectorySeparatorRoot && pathPartForUserCheck.search(/users\//i) !== 0) { // Paths like c:/folderAtRoot/subFolder are allowed return true; } for (var searchIndex = nextDirectorySeparator + 1, searchLevels = 2; searchLevels > 0; searchLevels--) { searchIndex = dirPath.indexOf(ts.directorySeparator, searchIndex) + 1; if (searchIndex === 0) { // Folder isnt at expected minimum levels return false; } } return true; } ts.canWatchDirectory = canWatchDirectory; function createResolutionCache(resolutionHost, rootDirForResolution, logChangesWhenResolvingModule) { var filesWithChangedSetOfUnresolvedImports; var filesWithInvalidatedResolutions; var filesWithInvalidatedNonRelativeUnresolvedImports; var nonRelativeExternalModuleResolutions = ts.createMultiMap(); var resolutionsWithFailedLookups = []; var resolvedFileToResolution = ts.createMultiMap(); var hasChangedAutomaticTypeDirectiveNames = false; var failedLookupChecks; var startsWithPathChecks; var isInDirectoryChecks; var getCurrentDirectory = ts.memoize(function () { return resolutionHost.getCurrentDirectory(); }); // TODO: GH#18217 var cachedDirectoryStructureHost = resolutionHost.getCachedDirectoryStructureHost(); // The resolvedModuleNames and resolvedTypeReferenceDirectives are the cache of resolutions per file. // The key in the map is source file's path. // The values are Map of resolutions with key being name lookedup. var resolvedModuleNames = new ts.Map(); var perDirectoryResolvedModuleNames = ts.createCacheWithRedirects(); var nonRelativeModuleNameCache = ts.createCacheWithRedirects(); var moduleResolutionCache = ts.createModuleResolutionCache(getCurrentDirectory(), resolutionHost.getCanonicalFileName, /*options*/ undefined, perDirectoryResolvedModuleNames, nonRelativeModuleNameCache); var resolvedTypeReferenceDirectives = new ts.Map(); var perDirectoryResolvedTypeReferenceDirectives = ts.createCacheWithRedirects(); var typeReferenceDirectiveResolutionCache = ts.createTypeReferenceDirectiveResolutionCache(getCurrentDirectory(), resolutionHost.getCanonicalFileName, /*options*/ undefined, moduleResolutionCache.getPackageJsonInfoCache(), perDirectoryResolvedTypeReferenceDirectives); /** * These are the extensions that failed lookup files will have by default, * any other extension of failed lookup will be store that path in custom failed lookup path * This helps in not having to comb through all resolutions when files are added/removed * Note that .d.ts file also has .d.ts extension hence will be part of default extensions */ var failedLookupDefaultExtensions = [".ts" /* Extension.Ts */, ".tsx" /* Extension.Tsx */, ".js" /* Extension.Js */, ".jsx" /* Extension.Jsx */, ".json" /* Extension.Json */]; var customFailedLookupPaths = new ts.Map(); var directoryWatchesOfFailedLookups = new ts.Map(); var rootDir = rootDirForResolution && ts.removeTrailingDirectorySeparator(ts.getNormalizedAbsolutePath(rootDirForResolution, getCurrentDirectory())); var rootPath = (rootDir && resolutionHost.toPath(rootDir)); // TODO: GH#18217 var rootSplitLength = rootPath !== undefined ? rootPath.split(ts.directorySeparator).length : 0; // TypeRoot watches for the types that get added as part of getAutomaticTypeDirectiveNames var typeRootsWatches = new ts.Map(); return { getModuleResolutionCache: function () { return moduleResolutionCache; }, startRecordingFilesWithChangedResolutions: startRecordingFilesWithChangedResolutions, finishRecordingFilesWithChangedResolutions: finishRecordingFilesWithChangedResolutions, // perDirectoryResolvedModuleNames and perDirectoryResolvedTypeReferenceDirectives could be non empty if there was exception during program update // (between startCachingPerDirectoryResolution and finishCachingPerDirectoryResolution) startCachingPerDirectoryResolution: clearPerDirectoryResolutions, finishCachingPerDirectoryResolution: finishCachingPerDirectoryResolution, resolveModuleNames: resolveModuleNames, getResolvedModuleWithFailedLookupLocationsFromCache: getResolvedModuleWithFailedLookupLocationsFromCache, resolveTypeReferenceDirectives: resolveTypeReferenceDirectives, removeResolutionsFromProjectReferenceRedirects: removeResolutionsFromProjectReferenceRedirects, removeResolutionsOfFile: removeResolutionsOfFile, hasChangedAutomaticTypeDirectiveNames: function () { return hasChangedAutomaticTypeDirectiveNames; }, invalidateResolutionOfFile: invalidateResolutionOfFile, invalidateResolutionsOfFailedLookupLocations: invalidateResolutionsOfFailedLookupLocations, setFilesWithInvalidatedNonRelativeUnresolvedImports: setFilesWithInvalidatedNonRelativeUnresolvedImports, createHasInvalidatedResolution: createHasInvalidatedResolution, isFileWithInvalidatedNonRelativeUnresolvedImports: isFileWithInvalidatedNonRelativeUnresolvedImports, updateTypeRootsWatch: updateTypeRootsWatch, closeTypeRootsWatch: closeTypeRootsWatch, clear: clear }; function getResolvedModule(resolution) { return resolution.resolvedModule; } function getResolvedTypeReferenceDirective(resolution) { return resolution.resolvedTypeReferenceDirective; } function isInDirectoryPath(dir, file) { if (dir === undefined || file.length <= dir.length) { return false; } return ts.startsWith(file, dir) && file[dir.length] === ts.directorySeparator; } function clear() { ts.clearMap(directoryWatchesOfFailedLookups, ts.closeFileWatcherOf); customFailedLookupPaths.clear(); nonRelativeExternalModuleResolutions.clear(); closeTypeRootsWatch(); resolvedModuleNames.clear(); resolvedTypeReferenceDirectives.clear(); resolvedFileToResolution.clear(); resolutionsWithFailedLookups.length = 0; failedLookupChecks = undefined; startsWithPathChecks = undefined; isInDirectoryChecks = undefined; // perDirectoryResolvedModuleNames and perDirectoryResolvedTypeReferenceDirectives could be non empty if there was exception during program update // (between startCachingPerDirectoryResolution and finishCachingPerDirectoryResolution) clearPerDirectoryResolutions(); hasChangedAutomaticTypeDirectiveNames = false; } function startRecordingFilesWithChangedResolutions() { filesWithChangedSetOfUnresolvedImports = []; } function finishRecordingFilesWithChangedResolutions() { var collected = filesWithChangedSetOfUnresolvedImports; filesWithChangedSetOfUnresolvedImports = undefined; return collected; } function isFileWithInvalidatedNonRelativeUnresolvedImports(path) { if (!filesWithInvalidatedNonRelativeUnresolvedImports) { return false; } // Invalidated if file has unresolved imports var value = filesWithInvalidatedNonRelativeUnresolvedImports.get(path); return !!value && !!value.length; } function createHasInvalidatedResolution(forceAllFilesAsInvalidated) { // Ensure pending resolutions are applied invalidateResolutionsOfFailedLookupLocations(); if (forceAllFilesAsInvalidated) { // Any file asked would have invalidated resolution filesWithInvalidatedResolutions = undefined; return ts.returnTrue; } var collected = filesWithInvalidatedResolutions; filesWithInvalidatedResolutions = undefined; return function (path) { return (!!collected && collected.has(path)) || isFileWithInvalidatedNonRelativeUnresolvedImports(path); }; } function clearPerDirectoryResolutions() { moduleResolutionCache.clear(); typeReferenceDirectiveResolutionCache.clear(); nonRelativeExternalModuleResolutions.forEach(watchFailedLookupLocationOfNonRelativeModuleResolutions); nonRelativeExternalModuleResolutions.clear(); } function finishCachingPerDirectoryResolution() { filesWithInvalidatedNonRelativeUnresolvedImports = undefined; clearPerDirectoryResolutions(); directoryWatchesOfFailedLookups.forEach(function (watcher, path) { if (watcher.refCount === 0) { directoryWatchesOfFailedLookups.delete(path); watcher.watcher.close(); } }); hasChangedAutomaticTypeDirectiveNames = false; } function resolveModuleName(moduleName, containingFile, compilerOptions, host, redirectedReference, _containingSourceFile, mode) { var _a; var primaryResult = ts.resolveModuleName(moduleName, containingFile, compilerOptions, host, moduleResolutionCache, redirectedReference, mode); // return result immediately only if global cache support is not enabled or if it is .ts, .tsx or .d.ts if (!resolutionHost.getGlobalCache) { return primaryResult; } // otherwise try to load typings from @types var globalCache = resolutionHost.getGlobalCache(); if (globalCache !== undefined && !ts.isExternalModuleNameRelative(moduleName) && !(primaryResult.resolvedModule && ts.extensionIsTS(primaryResult.resolvedModule.extension))) { // create different collection of failed lookup locations for second pass // if it will fail and we've already found something during the first pass - we don't want to pollute its results var _b = ts.loadModuleFromGlobalCache(ts.Debug.checkDefined(resolutionHost.globalCacheResolutionModuleName)(moduleName), resolutionHost.projectName, compilerOptions, host, globalCache, moduleResolutionCache), resolvedModule = _b.resolvedModule, failedLookupLocations = _b.failedLookupLocations; if (resolvedModule) { // Modify existing resolution so its saved in the directory cache as well primaryResult.resolvedModule = resolvedModule; (_a = primaryResult.failedLookupLocations).push.apply(_a, failedLookupLocations); return primaryResult; } } // Default return the result from the first pass return primaryResult; } function resolveTypeReferenceDirective(typeReferenceDirectiveName, containingFile, options, host, redirectedReference, _containingSourceFile, resolutionMode) { return ts.resolveTypeReferenceDirective(typeReferenceDirectiveName, containingFile, options, host, redirectedReference, typeReferenceDirectiveResolutionCache, resolutionMode); } function resolveNamesWithLocalCache(_a) { var _b, _c, _d; var names = _a.names, containingFile = _a.containingFile, redirectedReference = _a.redirectedReference, cache = _a.cache, perDirectoryCacheWithRedirects = _a.perDirectoryCacheWithRedirects, loader = _a.loader, getResolutionWithResolvedFileName = _a.getResolutionWithResolvedFileName, shouldRetryResolution = _a.shouldRetryResolution, reusedNames = _a.reusedNames, logChanges = _a.logChanges, containingSourceFile = _a.containingSourceFile, containingSourceFileMode = _a.containingSourceFileMode; var path = resolutionHost.toPath(containingFile); var resolutionsInFile = cache.get(path) || cache.set(path, ts.createModeAwareCache()).get(path); var dirPath = ts.getDirectoryPath(path); var perDirectoryCache = perDirectoryCacheWithRedirects.getOrCreateMapOfCacheRedirects(redirectedReference); var perDirectoryResolution = perDirectoryCache.get(dirPath); if (!perDirectoryResolution) { perDirectoryResolution = ts.createModeAwareCache(); perDirectoryCache.set(dirPath, perDirectoryResolution); } var resolvedModules = []; var compilerOptions = resolutionHost.getCompilationSettings(); var hasInvalidatedNonRelativeUnresolvedImport = logChanges && isFileWithInvalidatedNonRelativeUnresolvedImports(path); // All the resolutions in this file are invalidated if this file wasn't resolved using same redirect var program = resolutionHost.getCurrentProgram(); var oldRedirect = program && program.getResolvedProjectReferenceToRedirect(containingFile); var unmatchedRedirects = oldRedirect ? !redirectedReference || redirectedReference.sourceFile.path !== oldRedirect.sourceFile.path : !!redirectedReference; var seenNamesInFile = ts.createModeAwareCache(); var i = 0; for (var _i = 0, names_5 = names; _i < names_5.length; _i++) { var entry = names_5[_i]; var name = ts.isString(entry) ? entry : entry.fileName.toLowerCase(); // Imports supply a `containingSourceFile` but no `containingSourceFileMode` - it would be redundant // they require calculating the mode for a given import from it's position in the resolution table, since a given // import's syntax may override the file's default mode. // Type references instead supply a `containingSourceFileMode` and a non-string entry which contains // a default file mode override if applicable. var mode = !ts.isString(entry) ? ts.getModeForFileReference(entry, containingSourceFileMode) : containingSourceFile ? ts.getModeForResolutionAtIndex(containingSourceFile, i) : undefined; i++; var resolution = resolutionsInFile.get(name, mode); // Resolution is valid if it is present and not invalidated if (!seenNamesInFile.has(name, mode) && unmatchedRedirects || !resolution || resolution.isInvalidated || // If the name is unresolved import that was invalidated, recalculate (hasInvalidatedNonRelativeUnresolvedImport && !ts.isExternalModuleNameRelative(name) && shouldRetryResolution(resolution))) { var existingResolution = resolution; var resolutionInDirectory = perDirectoryResolution.get(name, mode); if (resolutionInDirectory) { resolution = resolutionInDirectory; var host = ((_b = resolutionHost.getCompilerHost) === null || _b === void 0 ? void 0 : _b.call(resolutionHost)) || resolutionHost; if (ts.isTraceEnabled(compilerOptions, host)) { var resolved = getResolutionWithResolvedFileName(resolution); ts.trace(host, loader === resolveModuleName ? (resolved === null || resolved === void 0 ? void 0 : resolved.resolvedFileName) ? resolved.packagetId ? ts.Diagnostics.Reusing_resolution_of_module_0_from_1_found_in_cache_from_location_2_it_was_successfully_resolved_to_3_with_Package_ID_4 : ts.Diagnostics.Reusing_resolution_of_module_0_from_1_found_in_cache_from_location_2_it_was_successfully_resolved_to_3 : ts.Diagnostics.Reusing_resolution_of_module_0_from_1_found_in_cache_from_location_2_it_was_not_resolved : (resolved === null || resolved === void 0 ? void 0 : resolved.resolvedFileName) ? resolved.packagetId ? ts.Diagnostics.Reusing_resolution_of_type_reference_directive_0_from_1_found_in_cache_from_location_2_it_was_successfully_resolved_to_3_with_Package_ID_4 : ts.Diagnostics.Reusing_resolution_of_type_reference_directive_0_from_1_found_in_cache_from_location_2_it_was_successfully_resolved_to_3 : ts.Diagnostics.Reusing_resolution_of_type_reference_directive_0_from_1_found_in_cache_from_location_2_it_was_not_resolved, name, containingFile, ts.getDirectoryPath(containingFile), resolved === null || resolved === void 0 ? void 0 : resolved.resolvedFileName, (resolved === null || resolved === void 0 ? void 0 : resolved.packagetId) && ts.packageIdToString(resolved.packagetId)); } } else { resolution = loader(name, containingFile, compilerOptions, ((_c = resolutionHost.getCompilerHost) === null || _c === void 0 ? void 0 : _c.call(resolutionHost)) || resolutionHost, redirectedReference, containingSourceFile, mode); perDirectoryResolution.set(name, mode, resolution); if (resolutionHost.onDiscoveredSymlink && resolutionIsSymlink(resolution)) { resolutionHost.onDiscoveredSymlink(); } } resolutionsInFile.set(name, mode, resolution); watchFailedLookupLocationsOfExternalModuleResolutions(name, resolution, path, getResolutionWithResolvedFileName); if (existingResolution) { stopWatchFailedLookupLocationOfResolution(existingResolution, path, getResolutionWithResolvedFileName); } if (logChanges && filesWithChangedSetOfUnresolvedImports && !resolutionIsEqualTo(existingResolution, resolution)) { filesWithChangedSetOfUnresolvedImports.push(path); // reset log changes to avoid recording the same file multiple times logChanges = false; } } else { var host = ((_d = resolutionHost.getCompilerHost) === null || _d === void 0 ? void 0 : _d.call(resolutionHost)) || resolutionHost; if (ts.isTraceEnabled(compilerOptions, host) && !seenNamesInFile.has(name, mode)) { var resolved = getResolutionWithResolvedFileName(resolution); ts.trace(host, loader === resolveModuleName ? (resolved === null || resolved === void 0 ? void 0 : resolved.resolvedFileName) ? resolved.packagetId ? ts.Diagnostics.Reusing_resolution_of_module_0_from_1_of_old_program_it_was_successfully_resolved_to_2_with_Package_ID_3 : ts.Diagnostics.Reusing_resolution_of_module_0_from_1_of_old_program_it_was_successfully_resolved_to_2 : ts.Diagnostics.Reusing_resolution_of_module_0_from_1_of_old_program_it_was_not_resolved : (resolved === null || resolved === void 0 ? void 0 : resolved.resolvedFileName) ? resolved.packagetId ? ts.Diagnostics.Reusing_resolution_of_type_reference_directive_0_from_1_of_old_program_it_was_successfully_resolved_to_2_with_Package_ID_3 : ts.Diagnostics.Reusing_resolution_of_type_reference_directive_0_from_1_of_old_program_it_was_successfully_resolved_to_2 : ts.Diagnostics.Reusing_resolution_of_type_reference_directive_0_from_1_of_old_program_it_was_not_resolved, name, containingFile, resolved === null || resolved === void 0 ? void 0 : resolved.resolvedFileName, (resolved === null || resolved === void 0 ? void 0 : resolved.packagetId) && ts.packageIdToString(resolved.packagetId)); } } ts.Debug.assert(resolution !== undefined && !resolution.isInvalidated); seenNamesInFile.set(name, mode, true); resolvedModules.push(getResolutionWithResolvedFileName(resolution)); } // Stop watching and remove the unused name resolutionsInFile.forEach(function (resolution, name, mode) { if (!seenNamesInFile.has(name, mode) && !ts.contains(reusedNames, name)) { stopWatchFailedLookupLocationOfResolution(resolution, path, getResolutionWithResolvedFileName); resolutionsInFile.delete(name, mode); } }); return resolvedModules; function resolutionIsEqualTo(oldResolution, newResolution) { if (oldResolution === newResolution) { return true; } if (!oldResolution || !newResolution) { return false; } var oldResult = getResolutionWithResolvedFileName(oldResolution); var newResult = getResolutionWithResolvedFileName(newResolution); if (oldResult === newResult) { return true; } if (!oldResult || !newResult) { return false; } return oldResult.resolvedFileName === newResult.resolvedFileName; } } function resolveTypeReferenceDirectives(typeDirectiveNames, containingFile, redirectedReference, containingFileMode) { return resolveNamesWithLocalCache({ names: typeDirectiveNames, containingFile: containingFile, redirectedReference: redirectedReference, cache: resolvedTypeReferenceDirectives, perDirectoryCacheWithRedirects: perDirectoryResolvedTypeReferenceDirectives, loader: resolveTypeReferenceDirective, getResolutionWithResolvedFileName: getResolvedTypeReferenceDirective, shouldRetryResolution: function (resolution) { return resolution.resolvedTypeReferenceDirective === undefined; }, containingSourceFileMode: containingFileMode }); } function resolveModuleNames(moduleNames, containingFile, reusedNames, redirectedReference, containingSourceFile) { return resolveNamesWithLocalCache({ names: moduleNames, containingFile: containingFile, redirectedReference: redirectedReference, cache: resolvedModuleNames, perDirectoryCacheWithRedirects: perDirectoryResolvedModuleNames, loader: resolveModuleName, getResolutionWithResolvedFileName: getResolvedModule, shouldRetryResolution: function (resolution) { return !resolution.resolvedModule || !ts.resolutionExtensionIsTSOrJson(resolution.resolvedModule.extension); }, reusedNames: reusedNames, logChanges: logChangesWhenResolvingModule, containingSourceFile: containingSourceFile, }); } function getResolvedModuleWithFailedLookupLocationsFromCache(moduleName, containingFile, resolutionMode) { var cache = resolvedModuleNames.get(resolutionHost.toPath(containingFile)); if (!cache) return undefined; return cache.get(moduleName, resolutionMode); } function isNodeModulesAtTypesDirectory(dirPath) { return ts.endsWith(dirPath, "/node_modules/@types"); } function getDirectoryToWatchFailedLookupLocation(failedLookupLocation, failedLookupLocationPath) { if (isInDirectoryPath(rootPath, failedLookupLocationPath)) { // Ensure failed look up is normalized path failedLookupLocation = ts.isRootedDiskPath(failedLookupLocation) ? ts.normalizePath(failedLookupLocation) : ts.getNormalizedAbsolutePath(failedLookupLocation, getCurrentDirectory()); var failedLookupPathSplit = failedLookupLocationPath.split(ts.directorySeparator); var failedLookupSplit = failedLookupLocation.split(ts.directorySeparator); ts.Debug.assert(failedLookupSplit.length === failedLookupPathSplit.length, "FailedLookup: ".concat(failedLookupLocation, " failedLookupLocationPath: ").concat(failedLookupLocationPath)); if (failedLookupPathSplit.length > rootSplitLength + 1) { // Instead of watching root, watch directory in root to avoid watching excluded directories not needed for module resolution return { dir: failedLookupSplit.slice(0, rootSplitLength + 1).join(ts.directorySeparator), dirPath: failedLookupPathSplit.slice(0, rootSplitLength + 1).join(ts.directorySeparator) }; } else { // Always watch root directory non recursively return { dir: rootDir, dirPath: rootPath, nonRecursive: false }; } } return getDirectoryToWatchFromFailedLookupLocationDirectory(ts.getDirectoryPath(ts.getNormalizedAbsolutePath(failedLookupLocation, getCurrentDirectory())), ts.getDirectoryPath(failedLookupLocationPath)); } function getDirectoryToWatchFromFailedLookupLocationDirectory(dir, dirPath) { // If directory path contains node module, get the most parent node_modules directory for watching while (ts.pathContainsNodeModules(dirPath)) { dir = ts.getDirectoryPath(dir); dirPath = ts.getDirectoryPath(dirPath); } // If the directory is node_modules use it to watch, always watch it recursively if (ts.isNodeModulesDirectory(dirPath)) { return canWatchDirectory(ts.getDirectoryPath(dirPath)) ? { dir: dir, dirPath: dirPath } : undefined; } var nonRecursive = true; // Use some ancestor of the root directory var subDirectoryPath, subDirectory; if (rootPath !== undefined) { while (!isInDirectoryPath(dirPath, rootPath)) { var parentPath = ts.getDirectoryPath(dirPath); if (parentPath === dirPath) { break; } nonRecursive = false; subDirectoryPath = dirPath; subDirectory = dir; dirPath = parentPath; dir = ts.getDirectoryPath(dir); } } return canWatchDirectory(dirPath) ? { dir: subDirectory || dir, dirPath: subDirectoryPath || dirPath, nonRecursive: nonRecursive } : undefined; } function isPathWithDefaultFailedLookupExtension(path) { return ts.fileExtensionIsOneOf(path, failedLookupDefaultExtensions); } function watchFailedLookupLocationsOfExternalModuleResolutions(name, resolution, filePath, getResolutionWithResolvedFileName) { if (resolution.refCount) { resolution.refCount++; ts.Debug.assertIsDefined(resolution.files); } else { resolution.refCount = 1; ts.Debug.assert(ts.length(resolution.files) === 0); // This resolution shouldnt be referenced by any file yet if (ts.isExternalModuleNameRelative(name)) { watchFailedLookupLocationOfResolution(resolution); } else { nonRelativeExternalModuleResolutions.add(name, resolution); } var resolved = getResolutionWithResolvedFileName(resolution); if (resolved && resolved.resolvedFileName) { resolvedFileToResolution.add(resolutionHost.toPath(resolved.resolvedFileName), resolution); } } (resolution.files || (resolution.files = [])).push(filePath); } function watchFailedLookupLocationOfResolution(resolution) { ts.Debug.assert(!!resolution.refCount); var failedLookupLocations = resolution.failedLookupLocations; if (!failedLookupLocations.length) return; resolutionsWithFailedLookups.push(resolution); var setAtRoot = false; for (var _i = 0, failedLookupLocations_1 = failedLookupLocations; _i < failedLookupLocations_1.length; _i++) { var failedLookupLocation = failedLookupLocations_1[_i]; var failedLookupLocationPath = resolutionHost.toPath(failedLookupLocation); var toWatch = getDirectoryToWatchFailedLookupLocation(failedLookupLocation, failedLookupLocationPath); if (toWatch) { var dir = toWatch.dir, dirPath = toWatch.dirPath, nonRecursive = toWatch.nonRecursive; // If the failed lookup location path is not one of the supported extensions, // store it in the custom path if (!isPathWithDefaultFailedLookupExtension(failedLookupLocationPath)) { var refCount = customFailedLookupPaths.get(failedLookupLocationPath) || 0; customFailedLookupPaths.set(failedLookupLocationPath, refCount + 1); } if (dirPath === rootPath) { ts.Debug.assert(!nonRecursive); setAtRoot = true; } else { setDirectoryWatcher(dir, dirPath, nonRecursive); } } } if (setAtRoot) { // This is always non recursive setDirectoryWatcher(rootDir, rootPath, /*nonRecursive*/ true); // TODO: GH#18217 } } function watchFailedLookupLocationOfNonRelativeModuleResolutions(resolutions, name) { var program = resolutionHost.getCurrentProgram(); if (!program || !program.getTypeChecker().tryFindAmbientModuleWithoutAugmentations(name)) { resolutions.forEach(watchFailedLookupLocationOfResolution); } } function setDirectoryWatcher(dir, dirPath, nonRecursive) { var dirWatcher = directoryWatchesOfFailedLookups.get(dirPath); if (dirWatcher) { ts.Debug.assert(!!nonRecursive === !!dirWatcher.nonRecursive); dirWatcher.refCount++; } else { directoryWatchesOfFailedLookups.set(dirPath, { watcher: createDirectoryWatcher(dir, dirPath, nonRecursive), refCount: 1, nonRecursive: nonRecursive }); } } function stopWatchFailedLookupLocationOfResolution(resolution, filePath, getResolutionWithResolvedFileName) { ts.unorderedRemoveItem(ts.Debug.checkDefined(resolution.files), filePath); resolution.refCount--; if (resolution.refCount) { return; } var resolved = getResolutionWithResolvedFileName(resolution); if (resolved && resolved.resolvedFileName) { resolvedFileToResolution.remove(resolutionHost.toPath(resolved.resolvedFileName), resolution); } if (!ts.unorderedRemoveItem(resolutionsWithFailedLookups, resolution)) { // If not watching failed lookups, it wont be there in resolutionsWithFailedLookups return; } var failedLookupLocations = resolution.failedLookupLocations; var removeAtRoot = false; for (var _i = 0, failedLookupLocations_2 = failedLookupLocations; _i < failedLookupLocations_2.length; _i++) { var failedLookupLocation = failedLookupLocations_2[_i]; var failedLookupLocationPath = resolutionHost.toPath(failedLookupLocation); var toWatch = getDirectoryToWatchFailedLookupLocation(failedLookupLocation, failedLookupLocationPath); if (toWatch) { var dirPath = toWatch.dirPath; var refCount = customFailedLookupPaths.get(failedLookupLocationPath); if (refCount) { if (refCount === 1) { customFailedLookupPaths.delete(failedLookupLocationPath); } else { ts.Debug.assert(refCount > 1); customFailedLookupPaths.set(failedLookupLocationPath, refCount - 1); } } if (dirPath === rootPath) { removeAtRoot = true; } else { removeDirectoryWatcher(dirPath); } } } if (removeAtRoot) { removeDirectoryWatcher(rootPath); } } function removeDirectoryWatcher(dirPath) { var dirWatcher = directoryWatchesOfFailedLookups.get(dirPath); // Do not close the watcher yet since it might be needed by other failed lookup locations. dirWatcher.refCount--; } function createDirectoryWatcher(directory, dirPath, nonRecursive) { return resolutionHost.watchDirectoryOfFailedLookupLocation(directory, function (fileOrDirectory) { var fileOrDirectoryPath = resolutionHost.toPath(fileOrDirectory); if (cachedDirectoryStructureHost) { // Since the file existence changed, update the sourceFiles cache cachedDirectoryStructureHost.addOrDeleteFileOrDirectory(fileOrDirectory, fileOrDirectoryPath); } scheduleInvalidateResolutionOfFailedLookupLocation(fileOrDirectoryPath, dirPath === fileOrDirectoryPath); }, nonRecursive ? 0 /* WatchDirectoryFlags.None */ : 1 /* WatchDirectoryFlags.Recursive */); } function removeResolutionsOfFileFromCache(cache, filePath, getResolutionWithResolvedFileName) { // Deleted file, stop watching failed lookups for all the resolutions in the file var resolutions = cache.get(filePath); if (resolutions) { resolutions.forEach(function (resolution) { return stopWatchFailedLookupLocationOfResolution(resolution, filePath, getResolutionWithResolvedFileName); }); cache.delete(filePath); } } function removeResolutionsFromProjectReferenceRedirects(filePath) { if (!ts.fileExtensionIs(filePath, ".json" /* Extension.Json */)) return; var program = resolutionHost.getCurrentProgram(); if (!program) return; // If this file is input file for the referenced project, get it var resolvedProjectReference = program.getResolvedProjectReferenceByPath(filePath); if (!resolvedProjectReference) return; // filePath is for the projectReference and the containing file is from this project reference, invalidate the resolution resolvedProjectReference.commandLine.fileNames.forEach(function (f) { return removeResolutionsOfFile(resolutionHost.toPath(f)); }); } function removeResolutionsOfFile(filePath) { removeResolutionsOfFileFromCache(resolvedModuleNames, filePath, getResolvedModule); removeResolutionsOfFileFromCache(resolvedTypeReferenceDirectives, filePath, getResolvedTypeReferenceDirective); } function invalidateResolutions(resolutions, canInvalidate) { if (!resolutions) return false; var invalidated = false; for (var _i = 0, resolutions_1 = resolutions; _i < resolutions_1.length; _i++) { var resolution = resolutions_1[_i]; if (resolution.isInvalidated || !canInvalidate(resolution)) continue; resolution.isInvalidated = invalidated = true; for (var _a = 0, _b = ts.Debug.checkDefined(resolution.files); _a < _b.length; _a++) { var containingFilePath = _b[_a]; (filesWithInvalidatedResolutions || (filesWithInvalidatedResolutions = new ts.Set())).add(containingFilePath); // When its a file with inferred types resolution, invalidate type reference directive resolution hasChangedAutomaticTypeDirectiveNames = hasChangedAutomaticTypeDirectiveNames || ts.endsWith(containingFilePath, ts.inferredTypesContainingFile); } } return invalidated; } function invalidateResolutionOfFile(filePath) { removeResolutionsOfFile(filePath); // Resolution is invalidated if the resulting file name is same as the deleted file path var prevHasChangedAutomaticTypeDirectiveNames = hasChangedAutomaticTypeDirectiveNames; if (invalidateResolutions(resolvedFileToResolution.get(filePath), ts.returnTrue) && hasChangedAutomaticTypeDirectiveNames && !prevHasChangedAutomaticTypeDirectiveNames) { resolutionHost.onChangedAutomaticTypeDirectiveNames(); } } function setFilesWithInvalidatedNonRelativeUnresolvedImports(filesMap) { ts.Debug.assert(filesWithInvalidatedNonRelativeUnresolvedImports === filesMap || filesWithInvalidatedNonRelativeUnresolvedImports === undefined); filesWithInvalidatedNonRelativeUnresolvedImports = filesMap; } function scheduleInvalidateResolutionOfFailedLookupLocation(fileOrDirectoryPath, isCreatingWatchedDirectory) { if (isCreatingWatchedDirectory) { // Watching directory is created // Invalidate any resolution has failed lookup in this directory (isInDirectoryChecks || (isInDirectoryChecks = [])).push(fileOrDirectoryPath); } else { // If something to do with folder/file starting with "." in node_modules folder, skip it var updatedPath = removeIgnoredPath(fileOrDirectoryPath); if (!updatedPath) return false; fileOrDirectoryPath = updatedPath; // prevent saving an open file from over-eagerly triggering invalidation if (resolutionHost.fileIsOpen(fileOrDirectoryPath)) { return false; } // Some file or directory in the watching directory is created // Return early if it does not have any of the watching extension or not the custom failed lookup path var dirOfFileOrDirectory = ts.getDirectoryPath(fileOrDirectoryPath); if (isNodeModulesAtTypesDirectory(fileOrDirectoryPath) || ts.isNodeModulesDirectory(fileOrDirectoryPath) || isNodeModulesAtTypesDirectory(dirOfFileOrDirectory) || ts.isNodeModulesDirectory(dirOfFileOrDirectory)) { // Invalidate any resolution from this directory (failedLookupChecks || (failedLookupChecks = [])).push(fileOrDirectoryPath); (startsWithPathChecks || (startsWithPathChecks = new ts.Set())).add(fileOrDirectoryPath); } else { if (!isPathWithDefaultFailedLookupExtension(fileOrDirectoryPath) && !customFailedLookupPaths.has(fileOrDirectoryPath)) { return false; } // Ignore emits from the program if (ts.isEmittedFileOfProgram(resolutionHost.getCurrentProgram(), fileOrDirectoryPath)) { return false; } // Resolution need to be invalidated if failed lookup location is same as the file or directory getting created (failedLookupChecks || (failedLookupChecks = [])).push(fileOrDirectoryPath); // If the invalidated file is from a node_modules package, invalidate everything else // in the package since we might not get notifications for other files in the package. // This hardens our logic against unreliable file watchers. var packagePath = ts.parseNodeModuleFromPath(fileOrDirectoryPath); if (packagePath) (startsWithPathChecks || (startsWithPathChecks = new ts.Set())).add(packagePath); } } resolutionHost.scheduleInvalidateResolutionsOfFailedLookupLocations(); } function invalidateResolutionsOfFailedLookupLocations() { if (!failedLookupChecks && !startsWithPathChecks && !isInDirectoryChecks) { return false; } var invalidated = invalidateResolutions(resolutionsWithFailedLookups, canInvalidateFailedLookupResolution); failedLookupChecks = undefined; startsWithPathChecks = undefined; isInDirectoryChecks = undefined; return invalidated; } function canInvalidateFailedLookupResolution(resolution) { return resolution.failedLookupLocations.some(function (location) { var locationPath = resolutionHost.toPath(location); return ts.contains(failedLookupChecks, locationPath) || ts.firstDefinedIterator((startsWithPathChecks === null || startsWithPathChecks === void 0 ? void 0 : startsWithPathChecks.keys()) || ts.emptyIterator, function (fileOrDirectoryPath) { return ts.startsWith(locationPath, fileOrDirectoryPath) ? true : undefined; }) || (isInDirectoryChecks === null || isInDirectoryChecks === void 0 ? void 0 : isInDirectoryChecks.some(function (fileOrDirectoryPath) { return isInDirectoryPath(fileOrDirectoryPath, locationPath); })); }); } function closeTypeRootsWatch() { ts.clearMap(typeRootsWatches, ts.closeFileWatcher); } function getDirectoryToWatchFailedLookupLocationFromTypeRoot(typeRoot, typeRootPath) { if (isInDirectoryPath(rootPath, typeRootPath)) { return rootPath; } var toWatch = getDirectoryToWatchFromFailedLookupLocationDirectory(typeRoot, typeRootPath); return toWatch && directoryWatchesOfFailedLookups.has(toWatch.dirPath) ? toWatch.dirPath : undefined; } function createTypeRootsWatch(typeRootPath, typeRoot) { // Create new watch and recursive info return resolutionHost.watchTypeRootsDirectory(typeRoot, function (fileOrDirectory) { var fileOrDirectoryPath = resolutionHost.toPath(fileOrDirectory); if (cachedDirectoryStructureHost) { // Since the file existence changed, update the sourceFiles cache cachedDirectoryStructureHost.addOrDeleteFileOrDirectory(fileOrDirectory, fileOrDirectoryPath); } // For now just recompile // We could potentially store more data here about whether it was/would be really be used or not // and with that determine to trigger compilation but for now this is enough hasChangedAutomaticTypeDirectiveNames = true; resolutionHost.onChangedAutomaticTypeDirectiveNames(); // Since directory watchers invoked are flaky, the failed lookup location events might not be triggered // So handle to failed lookup locations here as well to ensure we are invalidating resolutions var dirPath = getDirectoryToWatchFailedLookupLocationFromTypeRoot(typeRoot, typeRootPath); if (dirPath) { scheduleInvalidateResolutionOfFailedLookupLocation(fileOrDirectoryPath, dirPath === fileOrDirectoryPath); } }, 1 /* WatchDirectoryFlags.Recursive */); } /** * Watches the types that would get added as part of getAutomaticTypeDirectiveNames * To be called when compiler options change */ function updateTypeRootsWatch() { var options = resolutionHost.getCompilationSettings(); if (options.types) { // No need to do any watch since resolution cache is going to handle the failed lookups // for the types added by this closeTypeRootsWatch(); return; } // we need to assume the directories exist to ensure that we can get all the type root directories that get included // But filter directories that are at root level to say directory doesnt exist, so that we arent watching them var typeRoots = ts.getEffectiveTypeRoots(options, { directoryExists: directoryExistsForTypeRootWatch, getCurrentDirectory: getCurrentDirectory }); if (typeRoots) { ts.mutateMap(typeRootsWatches, ts.arrayToMap(typeRoots, function (tr) { return resolutionHost.toPath(tr); }), { createNewValue: createTypeRootsWatch, onDeleteValue: ts.closeFileWatcher }); } else { closeTypeRootsWatch(); } } /** * Use this function to return if directory exists to get type roots to watch * If we return directory exists then only the paths will be added to type roots * Hence return true for all directories except root directories which are filtered from watching */ function directoryExistsForTypeRootWatch(nodeTypesDirectory) { var dir = ts.getDirectoryPath(ts.getDirectoryPath(nodeTypesDirectory)); var dirPath = resolutionHost.toPath(dir); return dirPath === rootPath || canWatchDirectory(dirPath); } } ts.createResolutionCache = createResolutionCache; function resolutionIsSymlink(resolution) { var _a, _b; return !!(((_a = resolution.resolvedModule) === null || _a === void 0 ? void 0 : _a.originalPath) || ((_b = resolution.resolvedTypeReferenceDirective) === null || _b === void 0 ? void 0 : _b.originalPath)); } })(ts || (ts = {})); // Used by importFixes, getEditsForFileRename, and declaration emit to synthesize import module specifiers. /* @internal */ var ts; (function (ts) { var moduleSpecifiers; (function (moduleSpecifiers_1) { var RelativePreference; (function (RelativePreference) { RelativePreference[RelativePreference["Relative"] = 0] = "Relative"; RelativePreference[RelativePreference["NonRelative"] = 1] = "NonRelative"; RelativePreference[RelativePreference["Shortest"] = 2] = "Shortest"; RelativePreference[RelativePreference["ExternalNonRelative"] = 3] = "ExternalNonRelative"; })(RelativePreference || (RelativePreference = {})); // See UserPreferences#importPathEnding var Ending; (function (Ending) { Ending[Ending["Minimal"] = 0] = "Minimal"; Ending[Ending["Index"] = 1] = "Index"; Ending[Ending["JsExtension"] = 2] = "JsExtension"; })(Ending || (Ending = {})); function getPreferences(host, _a, compilerOptions, importingSourceFile) { var importModuleSpecifierPreference = _a.importModuleSpecifierPreference, importModuleSpecifierEnding = _a.importModuleSpecifierEnding; return { relativePreference: importModuleSpecifierPreference === "relative" ? 0 /* RelativePreference.Relative */ : importModuleSpecifierPreference === "non-relative" ? 1 /* RelativePreference.NonRelative */ : importModuleSpecifierPreference === "project-relative" ? 3 /* RelativePreference.ExternalNonRelative */ : 2 /* RelativePreference.Shortest */, ending: getEnding(), }; function getEnding() { switch (importModuleSpecifierEnding) { case "minimal": return 0 /* Ending.Minimal */; case "index": return 1 /* Ending.Index */; case "js": return 2 /* Ending.JsExtension */; default: return usesJsExtensionOnImports(importingSourceFile) || isFormatRequiringExtensions(compilerOptions, importingSourceFile.path, host) ? 2 /* Ending.JsExtension */ : ts.getEmitModuleResolutionKind(compilerOptions) !== ts.ModuleResolutionKind.NodeJs ? 1 /* Ending.Index */ : 0 /* Ending.Minimal */; } } } function getPreferencesForUpdate(compilerOptions, oldImportSpecifier, importingSourceFileName, host) { return { relativePreference: ts.isExternalModuleNameRelative(oldImportSpecifier) ? 0 /* RelativePreference.Relative */ : 1 /* RelativePreference.NonRelative */, ending: ts.hasJSFileExtension(oldImportSpecifier) || isFormatRequiringExtensions(compilerOptions, importingSourceFileName, host) ? 2 /* Ending.JsExtension */ : ts.getEmitModuleResolutionKind(compilerOptions) !== ts.ModuleResolutionKind.NodeJs || ts.endsWith(oldImportSpecifier, "index") ? 1 /* Ending.Index */ : 0 /* Ending.Minimal */, }; } function isFormatRequiringExtensions(compilerOptions, importingSourceFileName, host) { var _a; if (ts.getEmitModuleResolutionKind(compilerOptions) !== ts.ModuleResolutionKind.Node16 && ts.getEmitModuleResolutionKind(compilerOptions) !== ts.ModuleResolutionKind.NodeNext) { return false; } return ts.getImpliedNodeFormatForFile(importingSourceFileName, (_a = host.getPackageJsonInfoCache) === null || _a === void 0 ? void 0 : _a.call(host), getModuleResolutionHost(host), compilerOptions) !== ts.ModuleKind.CommonJS; } function getModuleResolutionHost(host) { var _a; return { fileExists: host.fileExists, readFile: ts.Debug.checkDefined(host.readFile), directoryExists: host.directoryExists, getCurrentDirectory: host.getCurrentDirectory, realpath: host.realpath, useCaseSensitiveFileNames: (_a = host.useCaseSensitiveFileNames) === null || _a === void 0 ? void 0 : _a.call(host), }; } // `importingSourceFile` and `importingSourceFileName`? Why not just use `importingSourceFile.path`? // Because when this is called by the file renamer, `importingSourceFile` is the file being renamed, // while `importingSourceFileName` its *new* name. We need a source file just to get its // `impliedNodeFormat` and to detect certain preferences from existing import module specifiers. function updateModuleSpecifier(compilerOptions, importingSourceFile, importingSourceFileName, toFileName, host, oldImportSpecifier, options) { if (options === void 0) { options = {}; } var res = getModuleSpecifierWorker(compilerOptions, importingSourceFile, importingSourceFileName, toFileName, host, getPreferencesForUpdate(compilerOptions, oldImportSpecifier, importingSourceFileName, host), {}, options); if (res === oldImportSpecifier) return undefined; return res; } moduleSpecifiers_1.updateModuleSpecifier = updateModuleSpecifier; // `importingSourceFile` and `importingSourceFileName`? Why not just use `importingSourceFile.path`? // Because when this is called by the declaration emitter, `importingSourceFile` is the implementation // file, but `importingSourceFileName` and `toFileName` refer to declaration files (the former to the // one currently being produced; the latter to the one being imported). We need an implementation file // just to get its `impliedNodeFormat` and to detect certain preferences from existing import module // specifiers. function getModuleSpecifier(compilerOptions, importingSourceFile, importingSourceFileName, toFileName, host, options) { if (options === void 0) { options = {}; } return getModuleSpecifierWorker(compilerOptions, importingSourceFile, importingSourceFileName, toFileName, host, getPreferences(host, {}, compilerOptions, importingSourceFile), {}, options); } moduleSpecifiers_1.getModuleSpecifier = getModuleSpecifier; function getNodeModulesPackageName(compilerOptions, importingSourceFile, nodeModulesFileName, host, preferences, options) { if (options === void 0) { options = {}; } var info = getInfo(importingSourceFile.path, host); var modulePaths = getAllModulePaths(importingSourceFile.path, nodeModulesFileName, host, preferences, options); return ts.firstDefined(modulePaths, function (modulePath) { return tryGetModuleNameAsNodeModule(modulePath, info, importingSourceFile, host, compilerOptions, preferences, /*packageNameOnly*/ true, options.overrideImportMode); }); } moduleSpecifiers_1.getNodeModulesPackageName = getNodeModulesPackageName; function getModuleSpecifierWorker(compilerOptions, importingSourceFile, importingSourceFileName, toFileName, host, preferences, userPreferences, options) { if (options === void 0) { options = {}; } var info = getInfo(importingSourceFileName, host); var modulePaths = getAllModulePaths(importingSourceFileName, toFileName, host, userPreferences, options); return ts.firstDefined(modulePaths, function (modulePath) { return tryGetModuleNameAsNodeModule(modulePath, info, importingSourceFile, host, compilerOptions, userPreferences, /*packageNameOnly*/ undefined, options.overrideImportMode); }) || getLocalModuleSpecifier(toFileName, info, compilerOptions, host, preferences); } function tryGetModuleSpecifiersFromCache(moduleSymbol, importingSourceFile, host, userPreferences, options) { if (options === void 0) { options = {}; } return tryGetModuleSpecifiersFromCacheWorker(moduleSymbol, importingSourceFile, host, userPreferences, options)[0]; } moduleSpecifiers_1.tryGetModuleSpecifiersFromCache = tryGetModuleSpecifiersFromCache; function tryGetModuleSpecifiersFromCacheWorker(moduleSymbol, importingSourceFile, host, userPreferences, options) { var _a; if (options === void 0) { options = {}; } var moduleSourceFile = ts.getSourceFileOfModule(moduleSymbol); if (!moduleSourceFile) { return ts.emptyArray; } var cache = (_a = host.getModuleSpecifierCache) === null || _a === void 0 ? void 0 : _a.call(host); var cached = cache === null || cache === void 0 ? void 0 : cache.get(importingSourceFile.path, moduleSourceFile.path, userPreferences, options); return [cached === null || cached === void 0 ? void 0 : cached.moduleSpecifiers, moduleSourceFile, cached === null || cached === void 0 ? void 0 : cached.modulePaths, cache]; } /** Returns an import for each symlink and for the realpath. */ function getModuleSpecifiers(moduleSymbol, checker, compilerOptions, importingSourceFile, host, userPreferences, options) { if (options === void 0) { options = {}; } return getModuleSpecifiersWithCacheInfo(moduleSymbol, checker, compilerOptions, importingSourceFile, host, userPreferences, options).moduleSpecifiers; } moduleSpecifiers_1.getModuleSpecifiers = getModuleSpecifiers; function getModuleSpecifiersWithCacheInfo(moduleSymbol, checker, compilerOptions, importingSourceFile, host, userPreferences, options) { if (options === void 0) { options = {}; } var computedWithoutCache = false; var ambient = tryGetModuleNameFromAmbientModule(moduleSymbol, checker); if (ambient) return { moduleSpecifiers: [ambient], computedWithoutCache: computedWithoutCache }; // eslint-disable-next-line prefer-const var _a = tryGetModuleSpecifiersFromCacheWorker(moduleSymbol, importingSourceFile, host, userPreferences, options), specifiers = _a[0], moduleSourceFile = _a[1], modulePaths = _a[2], cache = _a[3]; if (specifiers) return { moduleSpecifiers: specifiers, computedWithoutCache: computedWithoutCache }; if (!moduleSourceFile) return { moduleSpecifiers: ts.emptyArray, computedWithoutCache: computedWithoutCache }; computedWithoutCache = true; modulePaths || (modulePaths = getAllModulePathsWorker(importingSourceFile.path, moduleSourceFile.originalFileName, host)); var result = computeModuleSpecifiers(modulePaths, compilerOptions, importingSourceFile, host, userPreferences, options); cache === null || cache === void 0 ? void 0 : cache.set(importingSourceFile.path, moduleSourceFile.path, userPreferences, options, modulePaths, result); return { moduleSpecifiers: result, computedWithoutCache: computedWithoutCache }; } moduleSpecifiers_1.getModuleSpecifiersWithCacheInfo = getModuleSpecifiersWithCacheInfo; function computeModuleSpecifiers(modulePaths, compilerOptions, importingSourceFile, host, userPreferences, options) { if (options === void 0) { options = {}; } var info = getInfo(importingSourceFile.path, host); var preferences = getPreferences(host, userPreferences, compilerOptions, importingSourceFile); var existingSpecifier = ts.forEach(modulePaths, function (modulePath) { return ts.forEach(host.getFileIncludeReasons().get(ts.toPath(modulePath.path, host.getCurrentDirectory(), info.getCanonicalFileName)), function (reason) { if (reason.kind !== ts.FileIncludeKind.Import || reason.file !== importingSourceFile.path) return undefined; // If the candidate import mode doesn't match the mode we're generating for, don't consider it // TODO: maybe useful to keep around as an alternative option for certain contexts where the mode is overridable if (importingSourceFile.impliedNodeFormat && importingSourceFile.impliedNodeFormat !== ts.getModeForResolutionAtIndex(importingSourceFile, reason.index)) return undefined; var specifier = ts.getModuleNameStringLiteralAt(importingSourceFile, reason.index).text; // If the preference is for non relative and the module specifier is relative, ignore it return preferences.relativePreference !== 1 /* RelativePreference.NonRelative */ || !ts.pathIsRelative(specifier) ? specifier : undefined; }); }); if (existingSpecifier) { var moduleSpecifiers_2 = [existingSpecifier]; return moduleSpecifiers_2; } var importedFileIsInNodeModules = ts.some(modulePaths, function (p) { return p.isInNodeModules; }); // Module specifier priority: // 1. "Bare package specifiers" (e.g. "@foo/bar") resulting from a path through node_modules to a package.json's "types" entry // 2. Specifiers generated using "paths" from tsconfig // 3. Non-relative specfiers resulting from a path through node_modules (e.g. "@foo/bar/path/to/file") // 4. Relative paths var nodeModulesSpecifiers; var pathsSpecifiers; var relativeSpecifiers; for (var _i = 0, modulePaths_1 = modulePaths; _i < modulePaths_1.length; _i++) { var modulePath = modulePaths_1[_i]; var specifier = tryGetModuleNameAsNodeModule(modulePath, info, importingSourceFile, host, compilerOptions, userPreferences, /*packageNameOnly*/ undefined, options.overrideImportMode); nodeModulesSpecifiers = ts.append(nodeModulesSpecifiers, specifier); if (specifier && modulePath.isRedirect) { // If we got a specifier for a redirect, it was a bare package specifier (e.g. "@foo/bar", // not "@foo/bar/path/to/file"). No other specifier will be this good, so stop looking. return nodeModulesSpecifiers; } if (!specifier && !modulePath.isRedirect) { var local = getLocalModuleSpecifier(modulePath.path, info, compilerOptions, host, preferences); if (ts.pathIsBareSpecifier(local)) { pathsSpecifiers = ts.append(pathsSpecifiers, local); } else if (!importedFileIsInNodeModules || modulePath.isInNodeModules) { // Why this extra conditional, not just an `else`? If some path to the file contained // 'node_modules', but we can't create a non-relative specifier (e.g. "@foo/bar/path/to/file"), // that means we had to go through a *sibling's* node_modules, not one we can access directly. // If some path to the file was in node_modules but another was not, this likely indicates that // we have a monorepo structure with symlinks. In this case, the non-node_modules path is // probably the realpath, e.g. "../bar/path/to/file", but a relative path to another package // in a monorepo is probably not portable. So, the module specifier we actually go with will be // the relative path through node_modules, so that the declaration emitter can produce a // portability error. (See declarationEmitReexportedSymlinkReference3) relativeSpecifiers = ts.append(relativeSpecifiers, local); } } } return (pathsSpecifiers === null || pathsSpecifiers === void 0 ? void 0 : pathsSpecifiers.length) ? pathsSpecifiers : (nodeModulesSpecifiers === null || nodeModulesSpecifiers === void 0 ? void 0 : nodeModulesSpecifiers.length) ? nodeModulesSpecifiers : ts.Debug.checkDefined(relativeSpecifiers); } // importingSourceFileName is separate because getEditsForFileRename may need to specify an updated path function getInfo(importingSourceFileName, host) { var getCanonicalFileName = ts.createGetCanonicalFileName(host.useCaseSensitiveFileNames ? host.useCaseSensitiveFileNames() : true); var sourceDirectory = ts.getDirectoryPath(importingSourceFileName); return { getCanonicalFileName: getCanonicalFileName, importingSourceFileName: importingSourceFileName, sourceDirectory: sourceDirectory }; } function getLocalModuleSpecifier(moduleFileName, info, compilerOptions, host, _a) { var ending = _a.ending, relativePreference = _a.relativePreference; var baseUrl = compilerOptions.baseUrl, paths = compilerOptions.paths, rootDirs = compilerOptions.rootDirs; var sourceDirectory = info.sourceDirectory, getCanonicalFileName = info.getCanonicalFileName; var relativePath = rootDirs && tryGetModuleNameFromRootDirs(rootDirs, moduleFileName, sourceDirectory, getCanonicalFileName, ending, compilerOptions) || removeExtensionAndIndexPostFix(ts.ensurePathIsNonModuleName(ts.getRelativePathFromDirectory(sourceDirectory, moduleFileName, getCanonicalFileName)), ending, compilerOptions); if (!baseUrl && !paths || relativePreference === 0 /* RelativePreference.Relative */) { return relativePath; } var baseDirectory = ts.getNormalizedAbsolutePath(ts.getPathsBasePath(compilerOptions, host) || baseUrl, host.getCurrentDirectory()); var relativeToBaseUrl = getRelativePathIfInDirectory(moduleFileName, baseDirectory, getCanonicalFileName); if (!relativeToBaseUrl) { return relativePath; } var importRelativeToBaseUrl = removeExtensionAndIndexPostFix(relativeToBaseUrl, ending, compilerOptions); var fromPaths = paths && tryGetModuleNameFromPaths(ts.removeFileExtension(relativeToBaseUrl), importRelativeToBaseUrl, paths); var nonRelative = fromPaths === undefined && baseUrl !== undefined ? importRelativeToBaseUrl : fromPaths; if (!nonRelative) { return relativePath; } if (relativePreference === 1 /* RelativePreference.NonRelative */) { return nonRelative; } if (relativePreference === 3 /* RelativePreference.ExternalNonRelative */) { var projectDirectory = compilerOptions.configFilePath ? ts.toPath(ts.getDirectoryPath(compilerOptions.configFilePath), host.getCurrentDirectory(), info.getCanonicalFileName) : info.getCanonicalFileName(host.getCurrentDirectory()); var modulePath = ts.toPath(moduleFileName, projectDirectory, getCanonicalFileName); var sourceIsInternal = ts.startsWith(sourceDirectory, projectDirectory); var targetIsInternal = ts.startsWith(modulePath, projectDirectory); if (sourceIsInternal && !targetIsInternal || !sourceIsInternal && targetIsInternal) { // 1. The import path crosses the boundary of the tsconfig.json-containing directory. // // src/ // tsconfig.json // index.ts ------- // lib/ | (path crosses tsconfig.json) // imported.ts <--- // return nonRelative; } var nearestTargetPackageJson = getNearestAncestorDirectoryWithPackageJson(host, ts.getDirectoryPath(modulePath)); var nearestSourcePackageJson = getNearestAncestorDirectoryWithPackageJson(host, sourceDirectory); if (nearestSourcePackageJson !== nearestTargetPackageJson) { // 2. The importing and imported files are part of different packages. // // packages/a/ // package.json // index.ts -------- // packages/b/ | (path crosses package.json) // package.json | // component.ts <--- // return nonRelative; } return relativePath; } if (relativePreference !== 2 /* RelativePreference.Shortest */) ts.Debug.assertNever(relativePreference); // Prefer a relative import over a baseUrl import if it has fewer components. return isPathRelativeToParent(nonRelative) || countPathComponents(relativePath) < countPathComponents(nonRelative) ? relativePath : nonRelative; } function countPathComponents(path) { var count = 0; for (var i = ts.startsWith(path, "./") ? 2 : 0; i < path.length; i++) { if (path.charCodeAt(i) === 47 /* CharacterCodes.slash */) count++; } return count; } moduleSpecifiers_1.countPathComponents = countPathComponents; function usesJsExtensionOnImports(_a) { var imports = _a.imports; return ts.firstDefined(imports, function (_a) { var text = _a.text; return ts.pathIsRelative(text) ? ts.hasJSFileExtension(text) : undefined; }) || false; } function comparePathsByRedirectAndNumberOfDirectorySeparators(a, b) { return ts.compareBooleans(b.isRedirect, a.isRedirect) || ts.compareNumberOfDirectorySeparators(a.path, b.path); } function getNearestAncestorDirectoryWithPackageJson(host, fileName) { if (host.getNearestAncestorDirectoryWithPackageJson) { return host.getNearestAncestorDirectoryWithPackageJson(fileName); } return !!ts.forEachAncestorDirectory(fileName, function (directory) { return host.fileExists(ts.combinePaths(directory, "package.json")) ? true : undefined; }); } function forEachFileNameOfModule(importingFileName, importedFileName, host, preferSymlinks, cb) { var _a; var getCanonicalFileName = ts.hostGetCanonicalFileName(host); var cwd = host.getCurrentDirectory(); var referenceRedirect = host.isSourceOfProjectReferenceRedirect(importedFileName) ? host.getProjectReferenceRedirect(importedFileName) : undefined; var importedPath = ts.toPath(importedFileName, cwd, getCanonicalFileName); var redirects = host.redirectTargetsMap.get(importedPath) || ts.emptyArray; var importedFileNames = __spreadArray(__spreadArray(__spreadArray([], (referenceRedirect ? [referenceRedirect] : ts.emptyArray), true), [importedFileName], false), redirects, true); var targets = importedFileNames.map(function (f) { return ts.getNormalizedAbsolutePath(f, cwd); }); var shouldFilterIgnoredPaths = !ts.every(targets, ts.containsIgnoredPath); if (!preferSymlinks) { // Symlinks inside ignored paths are already filtered out of the symlink cache, // so we only need to remove them from the realpath filenames. var result_15 = ts.forEach(targets, function (p) { return !(shouldFilterIgnoredPaths && ts.containsIgnoredPath(p)) && cb(p, referenceRedirect === p); }); if (result_15) return result_15; } var symlinkedDirectories = (_a = host.getSymlinkCache) === null || _a === void 0 ? void 0 : _a.call(host).getSymlinkedDirectoriesByRealpath(); var fullImportedFileName = ts.getNormalizedAbsolutePath(importedFileName, cwd); var result = symlinkedDirectories && ts.forEachAncestorDirectory(ts.getDirectoryPath(fullImportedFileName), function (realPathDirectory) { var symlinkDirectories = symlinkedDirectories.get(ts.ensureTrailingDirectorySeparator(ts.toPath(realPathDirectory, cwd, getCanonicalFileName))); if (!symlinkDirectories) return undefined; // Continue to ancestor directory // Don't want to a package to globally import from itself (importNameCodeFix_symlink_own_package.ts) if (ts.startsWithDirectory(importingFileName, realPathDirectory, getCanonicalFileName)) { return false; // Stop search, each ancestor directory will also hit this condition } return ts.forEach(targets, function (target) { if (!ts.startsWithDirectory(target, realPathDirectory, getCanonicalFileName)) { return; } var relative = ts.getRelativePathFromDirectory(realPathDirectory, target, getCanonicalFileName); for (var _i = 0, symlinkDirectories_1 = symlinkDirectories; _i < symlinkDirectories_1.length; _i++) { var symlinkDirectory = symlinkDirectories_1[_i]; var option = ts.resolvePath(symlinkDirectory, relative); var result_16 = cb(option, target === referenceRedirect); shouldFilterIgnoredPaths = true; // We found a non-ignored path in symlinks, so we can reject ignored-path realpaths if (result_16) return result_16; } }); }); return result || (preferSymlinks ? ts.forEach(targets, function (p) { return shouldFilterIgnoredPaths && ts.containsIgnoredPath(p) ? undefined : cb(p, p === referenceRedirect); }) : undefined); } moduleSpecifiers_1.forEachFileNameOfModule = forEachFileNameOfModule; /** * Looks for existing imports that use symlinks to this module. * Symlinks will be returned first so they are preferred over the real path. */ function getAllModulePaths(importingFilePath, importedFileName, host, preferences, options) { var _a; if (options === void 0) { options = {}; } var importedFilePath = ts.toPath(importedFileName, host.getCurrentDirectory(), ts.hostGetCanonicalFileName(host)); var cache = (_a = host.getModuleSpecifierCache) === null || _a === void 0 ? void 0 : _a.call(host); if (cache) { var cached = cache.get(importingFilePath, importedFilePath, preferences, options); if (cached === null || cached === void 0 ? void 0 : cached.modulePaths) return cached.modulePaths; } var modulePaths = getAllModulePathsWorker(importingFilePath, importedFileName, host); if (cache) { cache.setModulePaths(importingFilePath, importedFilePath, preferences, options, modulePaths); } return modulePaths; } function getAllModulePathsWorker(importingFileName, importedFileName, host) { var getCanonicalFileName = ts.hostGetCanonicalFileName(host); var allFileNames = new ts.Map(); var importedFileFromNodeModules = false; forEachFileNameOfModule(importingFileName, importedFileName, host, /*preferSymlinks*/ true, function (path, isRedirect) { var isInNodeModules = ts.pathContainsNodeModules(path); allFileNames.set(path, { path: getCanonicalFileName(path), isRedirect: isRedirect, isInNodeModules: isInNodeModules }); importedFileFromNodeModules = importedFileFromNodeModules || isInNodeModules; // don't return value, so we collect everything }); // Sort by paths closest to importing file Name directory var sortedPaths = []; var _loop_32 = function (directory) { var directoryStart = ts.ensureTrailingDirectorySeparator(directory); var pathsInDirectory; allFileNames.forEach(function (_a, fileName) { var path = _a.path, isRedirect = _a.isRedirect, isInNodeModules = _a.isInNodeModules; if (ts.startsWith(path, directoryStart)) { (pathsInDirectory || (pathsInDirectory = [])).push({ path: fileName, isRedirect: isRedirect, isInNodeModules: isInNodeModules }); allFileNames.delete(fileName); } }); if (pathsInDirectory) { if (pathsInDirectory.length > 1) { pathsInDirectory.sort(comparePathsByRedirectAndNumberOfDirectorySeparators); } sortedPaths.push.apply(sortedPaths, pathsInDirectory); } var newDirectory = ts.getDirectoryPath(directory); if (newDirectory === directory) return out_directory_1 = directory, "break"; directory = newDirectory; out_directory_1 = directory; }; var out_directory_1; for (var directory = ts.getDirectoryPath(importingFileName); allFileNames.size !== 0;) { var state_10 = _loop_32(directory); directory = out_directory_1; if (state_10 === "break") break; } if (allFileNames.size) { var remainingPaths = ts.arrayFrom(allFileNames.values()); if (remainingPaths.length > 1) remainingPaths.sort(comparePathsByRedirectAndNumberOfDirectorySeparators); sortedPaths.push.apply(sortedPaths, remainingPaths); } return sortedPaths; } function tryGetModuleNameFromAmbientModule(moduleSymbol, checker) { var _a; var decl = (_a = moduleSymbol.declarations) === null || _a === void 0 ? void 0 : _a.find(function (d) { return ts.isNonGlobalAmbientModule(d) && (!ts.isExternalModuleAugmentation(d) || !ts.isExternalModuleNameRelative(ts.getTextOfIdentifierOrLiteral(d.name))); }); if (decl) { return decl.name.text; } // the module could be a namespace, which is export through "export=" from an ambient module. /** * declare module "m" { * namespace ns { * class c {} * } * export = ns; * } */ // `import {c} from "m";` is valid, in which case, `moduleSymbol` is "ns", but the module name should be "m" var ambientModuleDeclareCandidates = ts.mapDefined(moduleSymbol.declarations, function (d) { var _a, _b, _c, _d; if (!ts.isModuleDeclaration(d)) return; var topNamespace = getTopNamespace(d); if (!(((_a = topNamespace === null || topNamespace === void 0 ? void 0 : topNamespace.parent) === null || _a === void 0 ? void 0 : _a.parent) && ts.isModuleBlock(topNamespace.parent) && ts.isAmbientModule(topNamespace.parent.parent) && ts.isSourceFile(topNamespace.parent.parent.parent))) return; var exportAssignment = (_d = (_c = (_b = topNamespace.parent.parent.symbol.exports) === null || _b === void 0 ? void 0 : _b.get("export=")) === null || _c === void 0 ? void 0 : _c.valueDeclaration) === null || _d === void 0 ? void 0 : _d.expression; if (!exportAssignment) return; var exportSymbol = checker.getSymbolAtLocation(exportAssignment); if (!exportSymbol) return; var originalExportSymbol = (exportSymbol === null || exportSymbol === void 0 ? void 0 : exportSymbol.flags) & 2097152 /* SymbolFlags.Alias */ ? checker.getAliasedSymbol(exportSymbol) : exportSymbol; if (originalExportSymbol === d.symbol) return topNamespace.parent.parent; function getTopNamespace(namespaceDeclaration) { while (namespaceDeclaration.flags & 4 /* NodeFlags.NestedNamespace */) { namespaceDeclaration = namespaceDeclaration.parent; } return namespaceDeclaration; } }); var ambientModuleDeclare = ambientModuleDeclareCandidates[0]; if (ambientModuleDeclare) { return ambientModuleDeclare.name.text; } } function tryGetModuleNameFromPaths(relativeToBaseUrlWithIndex, relativeToBaseUrl, paths) { for (var key in paths) { for (var _i = 0, _a = paths[key]; _i < _a.length; _i++) { var patternText_1 = _a[_i]; var pattern = ts.removeFileExtension(ts.normalizePath(patternText_1)); var indexOfStar = pattern.indexOf("*"); if (indexOfStar !== -1) { var prefix = pattern.substr(0, indexOfStar); var suffix = pattern.substr(indexOfStar + 1); if (relativeToBaseUrl.length >= prefix.length + suffix.length && ts.startsWith(relativeToBaseUrl, prefix) && ts.endsWith(relativeToBaseUrl, suffix) || !suffix && relativeToBaseUrl === ts.removeTrailingDirectorySeparator(prefix)) { var matchedStar = relativeToBaseUrl.substr(prefix.length, relativeToBaseUrl.length - suffix.length - prefix.length); return key.replace("*", matchedStar); } } else if (pattern === relativeToBaseUrl || pattern === relativeToBaseUrlWithIndex) { return key; } } } } var MatchingMode; (function (MatchingMode) { MatchingMode[MatchingMode["Exact"] = 0] = "Exact"; MatchingMode[MatchingMode["Directory"] = 1] = "Directory"; MatchingMode[MatchingMode["Pattern"] = 2] = "Pattern"; })(MatchingMode || (MatchingMode = {})); function tryGetModuleNameFromExports(options, targetFilePath, packageDirectory, packageName, exports, conditions, mode) { if (mode === void 0) { mode = 0 /* MatchingMode.Exact */; } if (typeof exports === "string") { var pathOrPattern = ts.getNormalizedAbsolutePath(ts.combinePaths(packageDirectory, exports), /*currentDirectory*/ undefined); var extensionSwappedTarget = ts.hasTSFileExtension(targetFilePath) ? ts.removeFileExtension(targetFilePath) + tryGetJSExtensionForFile(targetFilePath, options) : undefined; switch (mode) { case 0 /* MatchingMode.Exact */: if (ts.comparePaths(targetFilePath, pathOrPattern) === 0 /* Comparison.EqualTo */ || (extensionSwappedTarget && ts.comparePaths(extensionSwappedTarget, pathOrPattern) === 0 /* Comparison.EqualTo */)) { return { moduleFileToTry: packageName }; } break; case 1 /* MatchingMode.Directory */: if (ts.containsPath(pathOrPattern, targetFilePath)) { var fragment = ts.getRelativePathFromDirectory(pathOrPattern, targetFilePath, /*ignoreCase*/ false); return { moduleFileToTry: ts.getNormalizedAbsolutePath(ts.combinePaths(ts.combinePaths(packageName, exports), fragment), /*currentDirectory*/ undefined) }; } break; case 2 /* MatchingMode.Pattern */: var starPos = pathOrPattern.indexOf("*"); var leadingSlice = pathOrPattern.slice(0, starPos); var trailingSlice = pathOrPattern.slice(starPos + 1); if (ts.startsWith(targetFilePath, leadingSlice) && ts.endsWith(targetFilePath, trailingSlice)) { var starReplacement = targetFilePath.slice(leadingSlice.length, targetFilePath.length - trailingSlice.length); return { moduleFileToTry: packageName.replace("*", starReplacement) }; } if (extensionSwappedTarget && ts.startsWith(extensionSwappedTarget, leadingSlice) && ts.endsWith(extensionSwappedTarget, trailingSlice)) { var starReplacement = extensionSwappedTarget.slice(leadingSlice.length, extensionSwappedTarget.length - trailingSlice.length); return { moduleFileToTry: packageName.replace("*", starReplacement) }; } break; } } else if (Array.isArray(exports)) { return ts.forEach(exports, function (e) { return tryGetModuleNameFromExports(options, targetFilePath, packageDirectory, packageName, e, conditions); }); } else if (typeof exports === "object" && exports !== null) { // eslint-disable-line no-null/no-null if (ts.allKeysStartWithDot(exports)) { // sub-mappings // 3 cases: // * directory mappings (legacyish, key ends with / (technically allows index/extension resolution under cjs mode)) // * pattern mappings (contains a *) // * exact mappings (no *, does not end with /) return ts.forEach(ts.getOwnKeys(exports), function (k) { var subPackageName = ts.getNormalizedAbsolutePath(ts.combinePaths(packageName, k), /*currentDirectory*/ undefined); var mode = ts.endsWith(k, "/") ? 1 /* MatchingMode.Directory */ : ts.stringContains(k, "*") ? 2 /* MatchingMode.Pattern */ : 0 /* MatchingMode.Exact */; return tryGetModuleNameFromExports(options, targetFilePath, packageDirectory, subPackageName, exports[k], conditions, mode); }); } else { // conditional mapping for (var _i = 0, _a = ts.getOwnKeys(exports); _i < _a.length; _i++) { var key = _a[_i]; if (key === "default" || conditions.indexOf(key) >= 0 || ts.isApplicableVersionedTypesKey(conditions, key)) { var subTarget = exports[key]; var result = tryGetModuleNameFromExports(options, targetFilePath, packageDirectory, packageName, subTarget, conditions); if (result) { return result; } } } } } return undefined; } function tryGetModuleNameFromRootDirs(rootDirs, moduleFileName, sourceDirectory, getCanonicalFileName, ending, compilerOptions) { var normalizedTargetPath = getPathRelativeToRootDirs(moduleFileName, rootDirs, getCanonicalFileName); if (normalizedTargetPath === undefined) { return undefined; } var normalizedSourcePath = getPathRelativeToRootDirs(sourceDirectory, rootDirs, getCanonicalFileName); var relativePath = normalizedSourcePath !== undefined ? ts.ensurePathIsNonModuleName(ts.getRelativePathFromDirectory(normalizedSourcePath, normalizedTargetPath, getCanonicalFileName)) : normalizedTargetPath; return ts.getEmitModuleResolutionKind(compilerOptions) === ts.ModuleResolutionKind.NodeJs ? removeExtensionAndIndexPostFix(relativePath, ending, compilerOptions) : ts.removeFileExtension(relativePath); } function tryGetModuleNameAsNodeModule(_a, _b, importingSourceFile, host, options, userPreferences, packageNameOnly, overrideMode) { var path = _a.path, isRedirect = _a.isRedirect; var getCanonicalFileName = _b.getCanonicalFileName, sourceDirectory = _b.sourceDirectory; if (!host.fileExists || !host.readFile) { return undefined; } var parts = ts.getNodeModulePathParts(path); if (!parts) { return undefined; } // Simplify the full file path to something that can be resolved by Node. var moduleSpecifier = path; var isPackageRootPath = false; if (!packageNameOnly) { var preferences = getPreferences(host, userPreferences, options, importingSourceFile); var packageRootIndex = parts.packageRootIndex; var moduleFileName = void 0; while (true) { // If the module could be imported by a directory name, use that directory's name var _c = tryDirectoryWithPackageJson(packageRootIndex), moduleFileToTry = _c.moduleFileToTry, packageRootPath = _c.packageRootPath, blockedByExports = _c.blockedByExports, verbatimFromExports = _c.verbatimFromExports; if (ts.getEmitModuleResolutionKind(options) !== ts.ModuleResolutionKind.Classic) { if (blockedByExports) { return undefined; // File is under this package.json, but is not publicly exported - there's no way to name it via `node_modules` resolution } if (verbatimFromExports) { return moduleFileToTry; } } if (packageRootPath) { moduleSpecifier = packageRootPath; isPackageRootPath = true; break; } if (!moduleFileName) moduleFileName = moduleFileToTry; // try with next level of directory packageRootIndex = path.indexOf(ts.directorySeparator, packageRootIndex + 1); if (packageRootIndex === -1) { moduleSpecifier = removeExtensionAndIndexPostFix(moduleFileName, preferences.ending, options, host); break; } } } if (isRedirect && !isPackageRootPath) { return undefined; } var globalTypingsCacheLocation = host.getGlobalTypingsCacheLocation && host.getGlobalTypingsCacheLocation(); // Get a path that's relative to node_modules or the importing file's path // if node_modules folder is in this folder or any of its parent folders, no need to keep it. var pathToTopLevelNodeModules = getCanonicalFileName(moduleSpecifier.substring(0, parts.topLevelNodeModulesIndex)); if (!(ts.startsWith(sourceDirectory, pathToTopLevelNodeModules) || globalTypingsCacheLocation && ts.startsWith(getCanonicalFileName(globalTypingsCacheLocation), pathToTopLevelNodeModules))) { return undefined; } // If the module was found in @types, get the actual Node package name var nodeModulesDirectoryName = moduleSpecifier.substring(parts.topLevelPackageNameIndex + 1); var packageName = ts.getPackageNameFromTypesPackageName(nodeModulesDirectoryName); // For classic resolution, only allow importing from node_modules/@types, not other node_modules return ts.getEmitModuleResolutionKind(options) === ts.ModuleResolutionKind.Classic && packageName === nodeModulesDirectoryName ? undefined : packageName; function tryDirectoryWithPackageJson(packageRootIndex) { var _a, _b; var packageRootPath = path.substring(0, packageRootIndex); var packageJsonPath = ts.combinePaths(packageRootPath, "package.json"); var moduleFileToTry = path; var cachedPackageJson = (_b = (_a = host.getPackageJsonInfoCache) === null || _a === void 0 ? void 0 : _a.call(host)) === null || _b === void 0 ? void 0 : _b.getPackageJsonInfo(packageJsonPath); if (typeof cachedPackageJson === "object" || cachedPackageJson === undefined && host.fileExists(packageJsonPath)) { var packageJsonContent = (cachedPackageJson === null || cachedPackageJson === void 0 ? void 0 : cachedPackageJson.packageJsonContent) || JSON.parse(host.readFile(packageJsonPath)); if (ts.getEmitModuleResolutionKind(options) === ts.ModuleResolutionKind.Node16 || ts.getEmitModuleResolutionKind(options) === ts.ModuleResolutionKind.NodeNext) { // `conditions` *could* be made to go against `importingSourceFile.impliedNodeFormat` if something wanted to generate // an ImportEqualsDeclaration in an ESM-implied file or an ImportCall in a CJS-implied file. But since this function is // usually called to conjure an import out of thin air, we don't have an existing usage to call `getModeForUsageAtIndex` // with, so for now we just stick with the mode of the file. var conditions = ["node", overrideMode || importingSourceFile.impliedNodeFormat === ts.ModuleKind.ESNext ? "import" : "require", "types"]; var fromExports = packageJsonContent.exports && typeof packageJsonContent.name === "string" ? tryGetModuleNameFromExports(options, path, packageRootPath, ts.getPackageNameFromTypesPackageName(packageJsonContent.name), packageJsonContent.exports, conditions) : undefined; if (fromExports) { var withJsExtension = !ts.hasTSFileExtension(fromExports.moduleFileToTry) ? fromExports : { moduleFileToTry: ts.removeFileExtension(fromExports.moduleFileToTry) + tryGetJSExtensionForFile(fromExports.moduleFileToTry, options) }; return __assign(__assign({}, withJsExtension), { verbatimFromExports: true }); } if (packageJsonContent.exports) { return { moduleFileToTry: path, blockedByExports: true }; } } var versionPaths = packageJsonContent.typesVersions ? ts.getPackageJsonTypesVersionsPaths(packageJsonContent.typesVersions) : undefined; if (versionPaths) { var subModuleName = path.slice(packageRootPath.length + 1); var fromPaths = tryGetModuleNameFromPaths(ts.removeFileExtension(subModuleName), removeExtensionAndIndexPostFix(subModuleName, 0 /* Ending.Minimal */, options), versionPaths.paths); if (fromPaths !== undefined) { moduleFileToTry = ts.combinePaths(packageRootPath, fromPaths); } } // If the file is the main module, it can be imported by the package name var mainFileRelative = packageJsonContent.typings || packageJsonContent.types || packageJsonContent.main || "index.js"; if (ts.isString(mainFileRelative)) { var mainExportFile = ts.toPath(mainFileRelative, packageRootPath, getCanonicalFileName); if (ts.removeFileExtension(mainExportFile) === ts.removeFileExtension(getCanonicalFileName(moduleFileToTry))) { return { packageRootPath: packageRootPath, moduleFileToTry: moduleFileToTry }; } } } else { // No package.json exists; an index.js will still resolve as the package name var fileName = getCanonicalFileName(moduleFileToTry.substring(parts.packageRootIndex + 1)); if (fileName === "index.d.ts" || fileName === "index.js" || fileName === "index.ts" || fileName === "index.tsx") { return { moduleFileToTry: moduleFileToTry, packageRootPath: packageRootPath }; } } return { moduleFileToTry: moduleFileToTry }; } } function tryGetAnyFileFromPath(host, path) { if (!host.fileExists) return; // We check all js, `node` and `json` extensions in addition to TS, since node module resolution would also choose those over the directory var extensions = ts.flatten(ts.getSupportedExtensions({ allowJs: true }, [{ extension: "node", isMixedContent: false }, { extension: "json", isMixedContent: false, scriptKind: 6 /* ScriptKind.JSON */ }])); for (var _i = 0, extensions_3 = extensions; _i < extensions_3.length; _i++) { var e = extensions_3[_i]; var fullPath = path + e; if (host.fileExists(fullPath)) { return fullPath; } } } function getPathRelativeToRootDirs(path, rootDirs, getCanonicalFileName) { return ts.firstDefined(rootDirs, function (rootDir) { var relativePath = getRelativePathIfInDirectory(path, rootDir, getCanonicalFileName); return relativePath !== undefined && isPathRelativeToParent(relativePath) ? undefined : relativePath; }); } function removeExtensionAndIndexPostFix(fileName, ending, options, host) { if (ts.fileExtensionIsOneOf(fileName, [".json" /* Extension.Json */, ".mjs" /* Extension.Mjs */, ".cjs" /* Extension.Cjs */])) return fileName; var noExtension = ts.removeFileExtension(fileName); if (fileName === noExtension) return fileName; if (ts.fileExtensionIsOneOf(fileName, [".d.mts" /* Extension.Dmts */, ".mts" /* Extension.Mts */, ".d.cts" /* Extension.Dcts */, ".cts" /* Extension.Cts */])) return noExtension + getJSExtensionForFile(fileName, options); switch (ending) { case 0 /* Ending.Minimal */: var withoutIndex = ts.removeSuffix(noExtension, "/index"); if (host && withoutIndex !== noExtension && tryGetAnyFileFromPath(host, withoutIndex)) { // Can't remove index if there's a file by the same name as the directory. // Probably more callers should pass `host` so we can determine this? return noExtension; } return withoutIndex; case 1 /* Ending.Index */: return noExtension; case 2 /* Ending.JsExtension */: return noExtension + getJSExtensionForFile(fileName, options); default: return ts.Debug.assertNever(ending); } } function getJSExtensionForFile(fileName, options) { var _a; return (_a = tryGetJSExtensionForFile(fileName, options)) !== null && _a !== void 0 ? _a : ts.Debug.fail("Extension ".concat(ts.extensionFromPath(fileName), " is unsupported:: FileName:: ").concat(fileName)); } function tryGetJSExtensionForFile(fileName, options) { var ext = ts.tryGetExtensionFromPath(fileName); switch (ext) { case ".ts" /* Extension.Ts */: case ".d.ts" /* Extension.Dts */: return ".js" /* Extension.Js */; case ".tsx" /* Extension.Tsx */: return options.jsx === 1 /* JsxEmit.Preserve */ ? ".jsx" /* Extension.Jsx */ : ".js" /* Extension.Js */; case ".js" /* Extension.Js */: case ".jsx" /* Extension.Jsx */: case ".json" /* Extension.Json */: return ext; case ".d.mts" /* Extension.Dmts */: case ".mts" /* Extension.Mts */: case ".mjs" /* Extension.Mjs */: return ".mjs" /* Extension.Mjs */; case ".d.cts" /* Extension.Dcts */: case ".cts" /* Extension.Cts */: case ".cjs" /* Extension.Cjs */: return ".cjs" /* Extension.Cjs */; default: return undefined; } } moduleSpecifiers_1.tryGetJSExtensionForFile = tryGetJSExtensionForFile; function getRelativePathIfInDirectory(path, directoryPath, getCanonicalFileName) { var relativePath = ts.getRelativePathToDirectoryOrUrl(directoryPath, path, directoryPath, getCanonicalFileName, /*isAbsolutePathAnUrl*/ false); return ts.isRootedDiskPath(relativePath) ? undefined : relativePath; } function isPathRelativeToParent(path) { return ts.startsWith(path, ".."); } })(moduleSpecifiers = ts.moduleSpecifiers || (ts.moduleSpecifiers = {})); })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { var sysFormatDiagnosticsHost = ts.sys ? { getCurrentDirectory: function () { return ts.sys.getCurrentDirectory(); }, getNewLine: function () { return ts.sys.newLine; }, getCanonicalFileName: ts.createGetCanonicalFileName(ts.sys.useCaseSensitiveFileNames) } : undefined; /** * Create a function that reports error by writing to the system and handles the formatting of the diagnostic */ function createDiagnosticReporter(system, pretty) { var host = system === ts.sys && sysFormatDiagnosticsHost ? sysFormatDiagnosticsHost : { getCurrentDirectory: function () { return system.getCurrentDirectory(); }, getNewLine: function () { return system.newLine; }, getCanonicalFileName: ts.createGetCanonicalFileName(system.useCaseSensitiveFileNames), }; if (!pretty) { return function (diagnostic) { return system.write(ts.formatDiagnostic(diagnostic, host)); }; } var diagnostics = new Array(1); return function (diagnostic) { diagnostics[0] = diagnostic; system.write(ts.formatDiagnosticsWithColorAndContext(diagnostics, host) + host.getNewLine()); diagnostics[0] = undefined; // TODO: GH#18217 }; } ts.createDiagnosticReporter = createDiagnosticReporter; /** * @returns Whether the screen was cleared. */ function clearScreenIfNotWatchingForFileChanges(system, diagnostic, options) { if (system.clearScreen && !options.preserveWatchOutput && !options.extendedDiagnostics && !options.diagnostics && ts.contains(ts.screenStartingMessageCodes, diagnostic.code)) { system.clearScreen(); return true; } return false; } ts.screenStartingMessageCodes = [ ts.Diagnostics.Starting_compilation_in_watch_mode.code, ts.Diagnostics.File_change_detected_Starting_incremental_compilation.code, ]; function getPlainDiagnosticFollowingNewLines(diagnostic, newLine) { return ts.contains(ts.screenStartingMessageCodes, diagnostic.code) ? newLine + newLine : newLine; } /** * Get locale specific time based on whether we are in test mode */ function getLocaleTimeString(system) { return !system.now ? new Date().toLocaleTimeString() : system.now().toLocaleTimeString("en-US", { timeZone: "UTC" }); } ts.getLocaleTimeString = getLocaleTimeString; /** * Create a function that reports watch status by writing to the system and handles the formatting of the diagnostic */ function createWatchStatusReporter(system, pretty) { return pretty ? function (diagnostic, newLine, options) { clearScreenIfNotWatchingForFileChanges(system, diagnostic, options); var output = "[".concat(ts.formatColorAndReset(getLocaleTimeString(system), ts.ForegroundColorEscapeSequences.Grey), "] "); output += "".concat(ts.flattenDiagnosticMessageText(diagnostic.messageText, system.newLine)).concat(newLine + newLine); system.write(output); } : function (diagnostic, newLine, options) { var output = ""; if (!clearScreenIfNotWatchingForFileChanges(system, diagnostic, options)) { output += newLine; } output += "".concat(getLocaleTimeString(system), " - "); output += "".concat(ts.flattenDiagnosticMessageText(diagnostic.messageText, system.newLine)).concat(getPlainDiagnosticFollowingNewLines(diagnostic, newLine)); system.write(output); }; } ts.createWatchStatusReporter = createWatchStatusReporter; /** Parses config file using System interface */ function parseConfigFileWithSystem(configFileName, optionsToExtend, extendedConfigCache, watchOptionsToExtend, system, reportDiagnostic) { var host = system; host.onUnRecoverableConfigFileDiagnostic = function (diagnostic) { return reportUnrecoverableDiagnostic(system, reportDiagnostic, diagnostic); }; var result = ts.getParsedCommandLineOfConfigFile(configFileName, optionsToExtend, host, extendedConfigCache, watchOptionsToExtend); host.onUnRecoverableConfigFileDiagnostic = undefined; // TODO: GH#18217 return result; } ts.parseConfigFileWithSystem = parseConfigFileWithSystem; function getErrorCountForSummary(diagnostics) { return ts.countWhere(diagnostics, function (diagnostic) { return diagnostic.category === ts.DiagnosticCategory.Error; }); } ts.getErrorCountForSummary = getErrorCountForSummary; function getFilesInErrorForSummary(diagnostics) { var filesInError = ts.filter(diagnostics, function (diagnostic) { return diagnostic.category === ts.DiagnosticCategory.Error; }) .map(function (errorDiagnostic) { if (errorDiagnostic.file === undefined) return; return "".concat(errorDiagnostic.file.fileName); }); return filesInError.map(function (fileName) { var diagnosticForFileName = ts.find(diagnostics, function (diagnostic) { return diagnostic.file !== undefined && diagnostic.file.fileName === fileName; }); if (diagnosticForFileName !== undefined) { var line = ts.getLineAndCharacterOfPosition(diagnosticForFileName.file, diagnosticForFileName.start).line; return { fileName: fileName, line: line + 1, }; } }); } ts.getFilesInErrorForSummary = getFilesInErrorForSummary; function getWatchErrorSummaryDiagnosticMessage(errorCount) { return errorCount === 1 ? ts.Diagnostics.Found_1_error_Watching_for_file_changes : ts.Diagnostics.Found_0_errors_Watching_for_file_changes; } ts.getWatchErrorSummaryDiagnosticMessage = getWatchErrorSummaryDiagnosticMessage; function prettyPathForFileError(error, cwd) { var line = ts.formatColorAndReset(":" + error.line, ts.ForegroundColorEscapeSequences.Grey); if (ts.pathIsAbsolute(error.fileName) && ts.pathIsAbsolute(cwd)) { return ts.getRelativePathFromDirectory(cwd, error.fileName, /* ignoreCase */ false) + line; } return error.fileName + line; } function getErrorSummaryText(errorCount, filesInError, newLine, host) { if (errorCount === 0) return ""; var nonNilFiles = filesInError.filter(function (fileInError) { return fileInError !== undefined; }); var distinctFileNamesWithLines = nonNilFiles.map(function (fileInError) { return "".concat(fileInError.fileName, ":").concat(fileInError.line); }) .filter(function (value, index, self) { return self.indexOf(value) === index; }); var firstFileReference = nonNilFiles[0] && prettyPathForFileError(nonNilFiles[0], host.getCurrentDirectory()); var d = errorCount === 1 ? ts.createCompilerDiagnostic(filesInError[0] !== undefined ? ts.Diagnostics.Found_1_error_in_1 : ts.Diagnostics.Found_1_error, errorCount, firstFileReference) : ts.createCompilerDiagnostic(distinctFileNamesWithLines.length === 0 ? ts.Diagnostics.Found_0_errors : distinctFileNamesWithLines.length === 1 ? ts.Diagnostics.Found_0_errors_in_the_same_file_starting_at_Colon_1 : ts.Diagnostics.Found_0_errors_in_1_files, errorCount, distinctFileNamesWithLines.length === 1 ? firstFileReference : distinctFileNamesWithLines.length); var suffix = distinctFileNamesWithLines.length > 1 ? createTabularErrorsDisplay(nonNilFiles, host) : ""; return "".concat(newLine).concat(ts.flattenDiagnosticMessageText(d.messageText, newLine)).concat(newLine).concat(newLine).concat(suffix); } ts.getErrorSummaryText = getErrorSummaryText; function createTabularErrorsDisplay(filesInError, host) { var distinctFiles = filesInError.filter(function (value, index, self) { return index === self.findIndex(function (file) { return (file === null || file === void 0 ? void 0 : file.fileName) === (value === null || value === void 0 ? void 0 : value.fileName); }); }); if (distinctFiles.length === 0) return ""; var numberLength = function (num) { return Math.log(num) * Math.LOG10E + 1; }; var fileToErrorCount = distinctFiles.map(function (file) { return [file, ts.countWhere(filesInError, function (fileInError) { return fileInError.fileName === file.fileName; })]; }); var maxErrors = fileToErrorCount.reduce(function (acc, value) { return Math.max(acc, value[1] || 0); }, 0); var headerRow = ts.Diagnostics.Errors_Files.message; var leftColumnHeadingLength = headerRow.split(" ")[0].length; var leftPaddingGoal = Math.max(leftColumnHeadingLength, numberLength(maxErrors)); var headerPadding = Math.max(numberLength(maxErrors) - leftColumnHeadingLength, 0); var tabularData = ""; tabularData += " ".repeat(headerPadding) + headerRow + "\n"; fileToErrorCount.forEach(function (row) { var file = row[0], errorCount = row[1]; var errorCountDigitsLength = Math.log(errorCount) * Math.LOG10E + 1 | 0; var leftPadding = errorCountDigitsLength < leftPaddingGoal ? " ".repeat(leftPaddingGoal - errorCountDigitsLength) : ""; var fileRef = prettyPathForFileError(file, host.getCurrentDirectory()); tabularData += "".concat(leftPadding).concat(errorCount, " ").concat(fileRef, "\n"); }); return tabularData; } function isBuilderProgram(program) { return !!program.getState; } ts.isBuilderProgram = isBuilderProgram; function listFiles(program, write) { var options = program.getCompilerOptions(); if (options.explainFiles) { explainFiles(isBuilderProgram(program) ? program.getProgram() : program, write); } else if (options.listFiles || options.listFilesOnly) { ts.forEach(program.getSourceFiles(), function (file) { write(file.fileName); }); } } ts.listFiles = listFiles; function explainFiles(program, write) { var _a, _b; var reasons = program.getFileIncludeReasons(); var getCanonicalFileName = ts.createGetCanonicalFileName(program.useCaseSensitiveFileNames()); var relativeFileName = function (fileName) { return ts.convertToRelativePath(fileName, program.getCurrentDirectory(), getCanonicalFileName); }; for (var _i = 0, _c = program.getSourceFiles(); _i < _c.length; _i++) { var file = _c[_i]; write("".concat(toFileName(file, relativeFileName))); (_a = reasons.get(file.path)) === null || _a === void 0 ? void 0 : _a.forEach(function (reason) { return write(" ".concat(fileIncludeReasonToDiagnostics(program, reason, relativeFileName).messageText)); }); (_b = explainIfFileIsRedirect(file, relativeFileName)) === null || _b === void 0 ? void 0 : _b.forEach(function (d) { return write(" ".concat(d.messageText)); }); } } ts.explainFiles = explainFiles; function explainIfFileIsRedirect(file, fileNameConvertor) { var result; if (file.path !== file.resolvedPath) { (result || (result = [])).push(ts.chainDiagnosticMessages( /*details*/ undefined, ts.Diagnostics.File_is_output_of_project_reference_source_0, toFileName(file.originalFileName, fileNameConvertor))); } if (file.redirectInfo) { (result || (result = [])).push(ts.chainDiagnosticMessages( /*details*/ undefined, ts.Diagnostics.File_redirects_to_file_0, toFileName(file.redirectInfo.redirectTarget, fileNameConvertor))); } return result; } ts.explainIfFileIsRedirect = explainIfFileIsRedirect; function getMatchedFileSpec(program, fileName) { var _a; var configFile = program.getCompilerOptions().configFile; if (!((_a = configFile === null || configFile === void 0 ? void 0 : configFile.configFileSpecs) === null || _a === void 0 ? void 0 : _a.validatedFilesSpec)) return undefined; var getCanonicalFileName = ts.createGetCanonicalFileName(program.useCaseSensitiveFileNames()); var filePath = getCanonicalFileName(fileName); var basePath = ts.getDirectoryPath(ts.getNormalizedAbsolutePath(configFile.fileName, program.getCurrentDirectory())); return ts.find(configFile.configFileSpecs.validatedFilesSpec, function (fileSpec) { return getCanonicalFileName(ts.getNormalizedAbsolutePath(fileSpec, basePath)) === filePath; }); } ts.getMatchedFileSpec = getMatchedFileSpec; function getMatchedIncludeSpec(program, fileName) { var _a, _b; var configFile = program.getCompilerOptions().configFile; if (!((_a = configFile === null || configFile === void 0 ? void 0 : configFile.configFileSpecs) === null || _a === void 0 ? void 0 : _a.validatedIncludeSpecs)) return undefined; var isJsonFile = ts.fileExtensionIs(fileName, ".json" /* Extension.Json */); var basePath = ts.getDirectoryPath(ts.getNormalizedAbsolutePath(configFile.fileName, program.getCurrentDirectory())); var useCaseSensitiveFileNames = program.useCaseSensitiveFileNames(); return ts.find((_b = configFile === null || configFile === void 0 ? void 0 : configFile.configFileSpecs) === null || _b === void 0 ? void 0 : _b.validatedIncludeSpecs, function (includeSpec) { if (isJsonFile && !ts.endsWith(includeSpec, ".json" /* Extension.Json */)) return false; var pattern = ts.getPatternFromSpec(includeSpec, basePath, "files"); return !!pattern && ts.getRegexFromPattern("(".concat(pattern, ")$"), useCaseSensitiveFileNames).test(fileName); }); } ts.getMatchedIncludeSpec = getMatchedIncludeSpec; function fileIncludeReasonToDiagnostics(program, reason, fileNameConvertor) { var _a, _b; var options = program.getCompilerOptions(); if (ts.isReferencedFile(reason)) { var referenceLocation = ts.getReferencedFileLocation(function (path) { return program.getSourceFileByPath(path); }, reason); var referenceText = ts.isReferenceFileLocation(referenceLocation) ? referenceLocation.file.text.substring(referenceLocation.pos, referenceLocation.end) : "\"".concat(referenceLocation.text, "\""); var message = void 0; ts.Debug.assert(ts.isReferenceFileLocation(referenceLocation) || reason.kind === ts.FileIncludeKind.Import, "Only synthetic references are imports"); switch (reason.kind) { case ts.FileIncludeKind.Import: if (ts.isReferenceFileLocation(referenceLocation)) { message = referenceLocation.packageId ? ts.Diagnostics.Imported_via_0_from_file_1_with_packageId_2 : ts.Diagnostics.Imported_via_0_from_file_1; } else if (referenceLocation.text === ts.externalHelpersModuleNameText) { message = referenceLocation.packageId ? ts.Diagnostics.Imported_via_0_from_file_1_with_packageId_2_to_import_importHelpers_as_specified_in_compilerOptions : ts.Diagnostics.Imported_via_0_from_file_1_to_import_importHelpers_as_specified_in_compilerOptions; } else { message = referenceLocation.packageId ? ts.Diagnostics.Imported_via_0_from_file_1_with_packageId_2_to_import_jsx_and_jsxs_factory_functions : ts.Diagnostics.Imported_via_0_from_file_1_to_import_jsx_and_jsxs_factory_functions; } break; case ts.FileIncludeKind.ReferenceFile: ts.Debug.assert(!referenceLocation.packageId); message = ts.Diagnostics.Referenced_via_0_from_file_1; break; case ts.FileIncludeKind.TypeReferenceDirective: message = referenceLocation.packageId ? ts.Diagnostics.Type_library_referenced_via_0_from_file_1_with_packageId_2 : ts.Diagnostics.Type_library_referenced_via_0_from_file_1; break; case ts.FileIncludeKind.LibReferenceDirective: ts.Debug.assert(!referenceLocation.packageId); message = ts.Diagnostics.Library_referenced_via_0_from_file_1; break; default: ts.Debug.assertNever(reason); } return ts.chainDiagnosticMessages( /*details*/ undefined, message, referenceText, toFileName(referenceLocation.file, fileNameConvertor), referenceLocation.packageId && ts.packageIdToString(referenceLocation.packageId)); } switch (reason.kind) { case ts.FileIncludeKind.RootFile: if (!((_a = options.configFile) === null || _a === void 0 ? void 0 : _a.configFileSpecs)) return ts.chainDiagnosticMessages(/*details*/ undefined, ts.Diagnostics.Root_file_specified_for_compilation); var fileName = ts.getNormalizedAbsolutePath(program.getRootFileNames()[reason.index], program.getCurrentDirectory()); var matchedByFiles = getMatchedFileSpec(program, fileName); if (matchedByFiles) return ts.chainDiagnosticMessages(/*details*/ undefined, ts.Diagnostics.Part_of_files_list_in_tsconfig_json); var matchedByInclude = getMatchedIncludeSpec(program, fileName); return matchedByInclude ? ts.chainDiagnosticMessages( /*details*/ undefined, ts.Diagnostics.Matched_by_include_pattern_0_in_1, matchedByInclude, toFileName(options.configFile, fileNameConvertor)) : // Could be additional files specified as roots ts.chainDiagnosticMessages(/*details*/ undefined, ts.Diagnostics.Root_file_specified_for_compilation); case ts.FileIncludeKind.SourceFromProjectReference: case ts.FileIncludeKind.OutputFromProjectReference: var isOutput = reason.kind === ts.FileIncludeKind.OutputFromProjectReference; var referencedResolvedRef = ts.Debug.checkDefined((_b = program.getResolvedProjectReferences()) === null || _b === void 0 ? void 0 : _b[reason.index]); return ts.chainDiagnosticMessages( /*details*/ undefined, ts.outFile(options) ? isOutput ? ts.Diagnostics.Output_from_referenced_project_0_included_because_1_specified : ts.Diagnostics.Source_from_referenced_project_0_included_because_1_specified : isOutput ? ts.Diagnostics.Output_from_referenced_project_0_included_because_module_is_specified_as_none : ts.Diagnostics.Source_from_referenced_project_0_included_because_module_is_specified_as_none, toFileName(referencedResolvedRef.sourceFile.fileName, fileNameConvertor), options.outFile ? "--outFile" : "--out"); case ts.FileIncludeKind.AutomaticTypeDirectiveFile: return ts.chainDiagnosticMessages( /*details*/ undefined, options.types ? reason.packageId ? ts.Diagnostics.Entry_point_of_type_library_0_specified_in_compilerOptions_with_packageId_1 : ts.Diagnostics.Entry_point_of_type_library_0_specified_in_compilerOptions : reason.packageId ? ts.Diagnostics.Entry_point_for_implicit_type_library_0_with_packageId_1 : ts.Diagnostics.Entry_point_for_implicit_type_library_0, reason.typeReference, reason.packageId && ts.packageIdToString(reason.packageId)); case ts.FileIncludeKind.LibFile: if (reason.index !== undefined) return ts.chainDiagnosticMessages(/*details*/ undefined, ts.Diagnostics.Library_0_specified_in_compilerOptions, options.lib[reason.index]); var target = ts.forEachEntry(ts.targetOptionDeclaration.type, function (value, key) { return value === ts.getEmitScriptTarget(options) ? key : undefined; }); return ts.chainDiagnosticMessages( /*details*/ undefined, target ? ts.Diagnostics.Default_library_for_target_0 : ts.Diagnostics.Default_library, target); default: ts.Debug.assertNever(reason); } } ts.fileIncludeReasonToDiagnostics = fileIncludeReasonToDiagnostics; function toFileName(file, fileNameConvertor) { var fileName = ts.isString(file) ? file : file.fileName; return fileNameConvertor ? fileNameConvertor(fileName) : fileName; } /** * Helper that emit files, report diagnostics and lists emitted and/or source files depending on compiler options */ function emitFilesAndReportErrors(program, reportDiagnostic, write, reportSummary, writeFile, cancellationToken, emitOnlyDtsFiles, customTransformers) { var isListFilesOnly = !!program.getCompilerOptions().listFilesOnly; // First get and report any syntactic errors. var allDiagnostics = program.getConfigFileParsingDiagnostics().slice(); var configFileParsingDiagnosticsLength = allDiagnostics.length; ts.addRange(allDiagnostics, program.getSyntacticDiagnostics(/*sourceFile*/ undefined, cancellationToken)); // If we didn't have any syntactic errors, then also try getting the global and // semantic errors. if (allDiagnostics.length === configFileParsingDiagnosticsLength) { ts.addRange(allDiagnostics, program.getOptionsDiagnostics(cancellationToken)); if (!isListFilesOnly) { ts.addRange(allDiagnostics, program.getGlobalDiagnostics(cancellationToken)); if (allDiagnostics.length === configFileParsingDiagnosticsLength) { ts.addRange(allDiagnostics, program.getSemanticDiagnostics(/*sourceFile*/ undefined, cancellationToken)); } } } // Emit and report any errors we ran into. var emitResult = isListFilesOnly ? { emitSkipped: true, diagnostics: ts.emptyArray } : program.emit(/*targetSourceFile*/ undefined, writeFile, cancellationToken, emitOnlyDtsFiles, customTransformers); var emittedFiles = emitResult.emittedFiles, emitDiagnostics = emitResult.diagnostics; ts.addRange(allDiagnostics, emitDiagnostics); var diagnostics = ts.sortAndDeduplicateDiagnostics(allDiagnostics); diagnostics.forEach(reportDiagnostic); if (write) { var currentDir_1 = program.getCurrentDirectory(); ts.forEach(emittedFiles, function (file) { var filepath = ts.getNormalizedAbsolutePath(file, currentDir_1); write("TSFILE: ".concat(filepath)); }); listFiles(program, write); } if (reportSummary) { reportSummary(getErrorCountForSummary(diagnostics), getFilesInErrorForSummary(diagnostics)); } return { emitResult: emitResult, diagnostics: diagnostics, }; } ts.emitFilesAndReportErrors = emitFilesAndReportErrors; function emitFilesAndReportErrorsAndGetExitStatus(program, reportDiagnostic, write, reportSummary, writeFile, cancellationToken, emitOnlyDtsFiles, customTransformers) { var _a = emitFilesAndReportErrors(program, reportDiagnostic, write, reportSummary, writeFile, cancellationToken, emitOnlyDtsFiles, customTransformers), emitResult = _a.emitResult, diagnostics = _a.diagnostics; if (emitResult.emitSkipped && diagnostics.length > 0) { // If the emitter didn't emit anything, then pass that value along. return ts.ExitStatus.DiagnosticsPresent_OutputsSkipped; } else if (diagnostics.length > 0) { // The emitter emitted something, inform the caller if that happened in the presence // of diagnostics or not. return ts.ExitStatus.DiagnosticsPresent_OutputsGenerated; } return ts.ExitStatus.Success; } ts.emitFilesAndReportErrorsAndGetExitStatus = emitFilesAndReportErrorsAndGetExitStatus; ts.noopFileWatcher = { close: ts.noop }; ts.returnNoopFileWatcher = function () { return ts.noopFileWatcher; }; function createWatchHost(system, reportWatchStatus) { if (system === void 0) { system = ts.sys; } var onWatchStatusChange = reportWatchStatus || createWatchStatusReporter(system); return { onWatchStatusChange: onWatchStatusChange, watchFile: ts.maybeBind(system, system.watchFile) || ts.returnNoopFileWatcher, watchDirectory: ts.maybeBind(system, system.watchDirectory) || ts.returnNoopFileWatcher, setTimeout: ts.maybeBind(system, system.setTimeout) || ts.noop, clearTimeout: ts.maybeBind(system, system.clearTimeout) || ts.noop }; } ts.createWatchHost = createWatchHost; ts.WatchType = { ConfigFile: "Config file", ExtendedConfigFile: "Extended config file", SourceFile: "Source file", MissingFile: "Missing file", WildcardDirectory: "Wild card directory", FailedLookupLocations: "Failed Lookup Locations", TypeRoots: "Type roots", ConfigFileOfReferencedProject: "Config file of referened project", ExtendedConfigOfReferencedProject: "Extended config file of referenced project", WildcardDirectoryOfReferencedProject: "Wild card directory of referenced project", PackageJson: "package.json file", }; function createWatchFactory(host, options) { var watchLogLevel = host.trace ? options.extendedDiagnostics ? ts.WatchLogLevel.Verbose : options.diagnostics ? ts.WatchLogLevel.TriggerOnly : ts.WatchLogLevel.None : ts.WatchLogLevel.None; var writeLog = watchLogLevel !== ts.WatchLogLevel.None ? (function (s) { return host.trace(s); }) : ts.noop; var result = ts.getWatchFactory(host, watchLogLevel, writeLog); result.writeLog = writeLog; return result; } ts.createWatchFactory = createWatchFactory; function createCompilerHostFromProgramHost(host, getCompilerOptions, directoryStructureHost) { if (directoryStructureHost === void 0) { directoryStructureHost = host; } var useCaseSensitiveFileNames = host.useCaseSensitiveFileNames(); var hostGetNewLine = ts.memoize(function () { return host.getNewLine(); }); return { getSourceFile: function (fileName, languageVersionOrOptions, onError) { var text; try { ts.performance.mark("beforeIORead"); text = host.readFile(fileName, getCompilerOptions().charset); ts.performance.mark("afterIORead"); ts.performance.measure("I/O Read", "beforeIORead", "afterIORead"); } catch (e) { if (onError) { onError(e.message); } text = ""; } return text !== undefined ? ts.createSourceFile(fileName, text, languageVersionOrOptions) : undefined; }, getDefaultLibLocation: ts.maybeBind(host, host.getDefaultLibLocation), getDefaultLibFileName: function (options) { return host.getDefaultLibFileName(options); }, writeFile: writeFile, getCurrentDirectory: ts.memoize(function () { return host.getCurrentDirectory(); }), useCaseSensitiveFileNames: function () { return useCaseSensitiveFileNames; }, getCanonicalFileName: ts.createGetCanonicalFileName(useCaseSensitiveFileNames), getNewLine: function () { return ts.getNewLineCharacter(getCompilerOptions(), hostGetNewLine); }, fileExists: function (f) { return host.fileExists(f); }, readFile: function (f) { return host.readFile(f); }, trace: ts.maybeBind(host, host.trace), directoryExists: ts.maybeBind(directoryStructureHost, directoryStructureHost.directoryExists), getDirectories: ts.maybeBind(directoryStructureHost, directoryStructureHost.getDirectories), realpath: ts.maybeBind(host, host.realpath), getEnvironmentVariable: ts.maybeBind(host, host.getEnvironmentVariable) || (function () { return ""; }), createHash: ts.maybeBind(host, host.createHash), readDirectory: ts.maybeBind(host, host.readDirectory), disableUseFileVersionAsSignature: host.disableUseFileVersionAsSignature, storeFilesChangingSignatureDuringEmit: host.storeFilesChangingSignatureDuringEmit, }; function writeFile(fileName, text, writeByteOrderMark, onError) { try { ts.performance.mark("beforeIOWrite"); // NOTE: If patchWriteFileEnsuringDirectory has been called, // the host.writeFile will do its own directory creation and // the ensureDirectoriesExist call will always be redundant. ts.writeFileEnsuringDirectories(fileName, text, writeByteOrderMark, function (path, data, writeByteOrderMark) { return host.writeFile(path, data, writeByteOrderMark); }, function (path) { return host.createDirectory(path); }, function (path) { return host.directoryExists(path); }); ts.performance.mark("afterIOWrite"); ts.performance.measure("I/O Write", "beforeIOWrite", "afterIOWrite"); } catch (e) { if (onError) { onError(e.message); } } } } ts.createCompilerHostFromProgramHost = createCompilerHostFromProgramHost; function setGetSourceFileAsHashVersioned(compilerHost, host) { var originalGetSourceFile = compilerHost.getSourceFile; var computeHash = ts.maybeBind(host, host.createHash) || ts.generateDjb2Hash; compilerHost.getSourceFile = function () { var args = []; for (var _i = 0; _i < arguments.length; _i++) { args[_i] = arguments[_i]; } var result = originalGetSourceFile.call.apply(originalGetSourceFile, __spreadArray([compilerHost], args, false)); if (result) { result.version = computeHash(result.text); } return result; }; } ts.setGetSourceFileAsHashVersioned = setGetSourceFileAsHashVersioned; /** * Creates the watch compiler host that can be extended with config file or root file names and options host */ function createProgramHost(system, createProgram) { var getDefaultLibLocation = ts.memoize(function () { return ts.getDirectoryPath(ts.normalizePath(system.getExecutingFilePath())); }); return { useCaseSensitiveFileNames: function () { return system.useCaseSensitiveFileNames; }, getNewLine: function () { return system.newLine; }, getCurrentDirectory: ts.memoize(function () { return system.getCurrentDirectory(); }), getDefaultLibLocation: getDefaultLibLocation, getDefaultLibFileName: function (options) { return ts.combinePaths(getDefaultLibLocation(), ts.getDefaultLibFileName(options)); }, fileExists: function (path) { return system.fileExists(path); }, readFile: function (path, encoding) { return system.readFile(path, encoding); }, directoryExists: function (path) { return system.directoryExists(path); }, getDirectories: function (path) { return system.getDirectories(path); }, readDirectory: function (path, extensions, exclude, include, depth) { return system.readDirectory(path, extensions, exclude, include, depth); }, realpath: ts.maybeBind(system, system.realpath), getEnvironmentVariable: ts.maybeBind(system, system.getEnvironmentVariable), trace: function (s) { return system.write(s + system.newLine); }, createDirectory: function (path) { return system.createDirectory(path); }, writeFile: function (path, data, writeByteOrderMark) { return system.writeFile(path, data, writeByteOrderMark); }, createHash: ts.maybeBind(system, system.createHash), createProgram: createProgram || ts.createEmitAndSemanticDiagnosticsBuilderProgram, disableUseFileVersionAsSignature: system.disableUseFileVersionAsSignature, storeFilesChangingSignatureDuringEmit: system.storeFilesChangingSignatureDuringEmit, }; } ts.createProgramHost = createProgramHost; /** * Creates the watch compiler host that can be extended with config file or root file names and options host */ function createWatchCompilerHost(system, createProgram, reportDiagnostic, reportWatchStatus) { if (system === void 0) { system = ts.sys; } var write = function (s) { return system.write(s + system.newLine); }; var result = createProgramHost(system, createProgram); ts.copyProperties(result, createWatchHost(system, reportWatchStatus)); result.afterProgramCreate = function (builderProgram) { var compilerOptions = builderProgram.getCompilerOptions(); var newLine = ts.getNewLineCharacter(compilerOptions, function () { return system.newLine; }); emitFilesAndReportErrors(builderProgram, reportDiagnostic, write, function (errorCount) { return result.onWatchStatusChange(ts.createCompilerDiagnostic(getWatchErrorSummaryDiagnosticMessage(errorCount), errorCount), newLine, compilerOptions, errorCount); }); }; return result; } /** * Report error and exit */ function reportUnrecoverableDiagnostic(system, reportDiagnostic, diagnostic) { reportDiagnostic(diagnostic); system.exit(ts.ExitStatus.DiagnosticsPresent_OutputsSkipped); } /** * Creates the watch compiler host from system for config file in watch mode */ function createWatchCompilerHostOfConfigFile(_a) { var configFileName = _a.configFileName, optionsToExtend = _a.optionsToExtend, watchOptionsToExtend = _a.watchOptionsToExtend, extraFileExtensions = _a.extraFileExtensions, system = _a.system, createProgram = _a.createProgram, reportDiagnostic = _a.reportDiagnostic, reportWatchStatus = _a.reportWatchStatus; var diagnosticReporter = reportDiagnostic || createDiagnosticReporter(system); var host = createWatchCompilerHost(system, createProgram, diagnosticReporter, reportWatchStatus); host.onUnRecoverableConfigFileDiagnostic = function (diagnostic) { return reportUnrecoverableDiagnostic(system, diagnosticReporter, diagnostic); }; host.configFileName = configFileName; host.optionsToExtend = optionsToExtend; host.watchOptionsToExtend = watchOptionsToExtend; host.extraFileExtensions = extraFileExtensions; return host; } ts.createWatchCompilerHostOfConfigFile = createWatchCompilerHostOfConfigFile; /** * Creates the watch compiler host from system for compiling root files and options in watch mode */ function createWatchCompilerHostOfFilesAndCompilerOptions(_a) { var rootFiles = _a.rootFiles, options = _a.options, watchOptions = _a.watchOptions, projectReferences = _a.projectReferences, system = _a.system, createProgram = _a.createProgram, reportDiagnostic = _a.reportDiagnostic, reportWatchStatus = _a.reportWatchStatus; var host = createWatchCompilerHost(system, createProgram, reportDiagnostic || createDiagnosticReporter(system), reportWatchStatus); host.rootFiles = rootFiles; host.options = options; host.watchOptions = watchOptions; host.projectReferences = projectReferences; return host; } ts.createWatchCompilerHostOfFilesAndCompilerOptions = createWatchCompilerHostOfFilesAndCompilerOptions; function performIncrementalCompilation(input) { var system = input.system || ts.sys; var host = input.host || (input.host = ts.createIncrementalCompilerHost(input.options, system)); var builderProgram = ts.createIncrementalProgram(input); var exitStatus = emitFilesAndReportErrorsAndGetExitStatus(builderProgram, input.reportDiagnostic || createDiagnosticReporter(system), function (s) { return host.trace && host.trace(s); }, input.reportErrorSummary || input.options.pretty ? function (errorCount, filesInError) { return system.write(getErrorSummaryText(errorCount, filesInError, system.newLine, host)); } : undefined); if (input.afterProgramEmitAndDiagnostics) input.afterProgramEmitAndDiagnostics(builderProgram); return exitStatus; } ts.performIncrementalCompilation = performIncrementalCompilation; })(ts || (ts = {})); var ts; (function (ts) { function readBuilderProgram(compilerOptions, host) { if (ts.outFile(compilerOptions)) return undefined; var buildInfoPath = ts.getTsBuildInfoEmitOutputFilePath(compilerOptions); if (!buildInfoPath) return undefined; var content = host.readFile(buildInfoPath); if (!content) return undefined; var buildInfo = ts.getBuildInfo(content); if (buildInfo.version !== ts.version) return undefined; if (!buildInfo.program) return undefined; return ts.createBuildProgramUsingProgramBuildInfo(buildInfo.program, buildInfoPath, host); } ts.readBuilderProgram = readBuilderProgram; function createIncrementalCompilerHost(options, system) { if (system === void 0) { system = ts.sys; } var host = ts.createCompilerHostWorker(options, /*setParentNodes*/ undefined, system); host.createHash = ts.maybeBind(system, system.createHash); host.disableUseFileVersionAsSignature = system.disableUseFileVersionAsSignature; host.storeFilesChangingSignatureDuringEmit = system.storeFilesChangingSignatureDuringEmit; ts.setGetSourceFileAsHashVersioned(host, system); ts.changeCompilerHostLikeToUseCache(host, function (fileName) { return ts.toPath(fileName, host.getCurrentDirectory(), host.getCanonicalFileName); }); return host; } ts.createIncrementalCompilerHost = createIncrementalCompilerHost; function createIncrementalProgram(_a) { var rootNames = _a.rootNames, options = _a.options, configFileParsingDiagnostics = _a.configFileParsingDiagnostics, projectReferences = _a.projectReferences, host = _a.host, createProgram = _a.createProgram; host = host || createIncrementalCompilerHost(options); createProgram = createProgram || ts.createEmitAndSemanticDiagnosticsBuilderProgram; var oldProgram = readBuilderProgram(options, host); return createProgram(rootNames, options, host, oldProgram, configFileParsingDiagnostics, projectReferences); } ts.createIncrementalProgram = createIncrementalProgram; function createWatchCompilerHost(rootFilesOrConfigFileName, options, system, createProgram, reportDiagnostic, reportWatchStatus, projectReferencesOrWatchOptionsToExtend, watchOptionsOrExtraFileExtensions) { if (ts.isArray(rootFilesOrConfigFileName)) { return ts.createWatchCompilerHostOfFilesAndCompilerOptions({ rootFiles: rootFilesOrConfigFileName, options: options, watchOptions: watchOptionsOrExtraFileExtensions, projectReferences: projectReferencesOrWatchOptionsToExtend, system: system, createProgram: createProgram, reportDiagnostic: reportDiagnostic, reportWatchStatus: reportWatchStatus, }); } else { return ts.createWatchCompilerHostOfConfigFile({ configFileName: rootFilesOrConfigFileName, optionsToExtend: options, watchOptionsToExtend: projectReferencesOrWatchOptionsToExtend, extraFileExtensions: watchOptionsOrExtraFileExtensions, system: system, createProgram: createProgram, reportDiagnostic: reportDiagnostic, reportWatchStatus: reportWatchStatus, }); } } ts.createWatchCompilerHost = createWatchCompilerHost; function createWatchProgram(host) { var builderProgram; var reloadLevel; // level to indicate if the program needs to be reloaded from config file/just filenames etc var missingFilesMap; // Map of file watchers for the missing files var packageJsonMap; // map of watchers for package json files used in module resolution var watchedWildcardDirectories; // map of watchers for the wild card directories in the config file var timerToUpdateProgram; // timer callback to recompile the program var timerToInvalidateFailedLookupResolutions; // timer callback to invalidate resolutions for changes in failed lookup locations var parsedConfigs; // Parsed commandline and watching cached for referenced projects var sharedExtendedConfigFileWatchers; // Map of file watchers for extended files, shared between different referenced projects var extendedConfigCache = host.extendedConfigCache; // Cache for extended config evaluation var changesAffectResolution = false; // Flag for indicating non-config changes affect module resolution var reportFileChangeDetectedOnCreateProgram = false; // True if synchronizeProgram should report "File change detected..." when a new program is created var sourceFilesCache = new ts.Map(); // Cache that stores the source file and version info var missingFilePathsRequestedForRelease; // These paths are held temporarily so that we can remove the entry from source file cache if the file is not tracked by missing files var hasChangedCompilerOptions = false; // True if the compiler options have changed between compilations var useCaseSensitiveFileNames = host.useCaseSensitiveFileNames(); var currentDirectory = host.getCurrentDirectory(); var configFileName = host.configFileName, _a = host.optionsToExtend, optionsToExtendForConfigFile = _a === void 0 ? {} : _a, watchOptionsToExtend = host.watchOptionsToExtend, extraFileExtensions = host.extraFileExtensions, createProgram = host.createProgram; var rootFileNames = host.rootFiles, compilerOptions = host.options, watchOptions = host.watchOptions, projectReferences = host.projectReferences; var wildcardDirectories; var configFileParsingDiagnostics; var canConfigFileJsonReportNoInputFiles = false; var hasChangedConfigFileParsingErrors = false; var cachedDirectoryStructureHost = configFileName === undefined ? undefined : ts.createCachedDirectoryStructureHost(host, currentDirectory, useCaseSensitiveFileNames); var directoryStructureHost = cachedDirectoryStructureHost || host; var parseConfigFileHost = ts.parseConfigHostFromCompilerHostLike(host, directoryStructureHost); // From tsc we want to get already parsed result and hence check for rootFileNames var newLine = updateNewLine(); if (configFileName && host.configFileParsingResult) { setConfigFileParsingResult(host.configFileParsingResult); newLine = updateNewLine(); } reportWatchDiagnostic(ts.Diagnostics.Starting_compilation_in_watch_mode); if (configFileName && !host.configFileParsingResult) { newLine = ts.getNewLineCharacter(optionsToExtendForConfigFile, function () { return host.getNewLine(); }); ts.Debug.assert(!rootFileNames); parseConfigFile(); newLine = updateNewLine(); } var _b = ts.createWatchFactory(host, compilerOptions), watchFile = _b.watchFile, watchDirectory = _b.watchDirectory, writeLog = _b.writeLog; var getCanonicalFileName = ts.createGetCanonicalFileName(useCaseSensitiveFileNames); writeLog("Current directory: ".concat(currentDirectory, " CaseSensitiveFileNames: ").concat(useCaseSensitiveFileNames)); var configFileWatcher; if (configFileName) { configFileWatcher = watchFile(configFileName, scheduleProgramReload, ts.PollingInterval.High, watchOptions, ts.WatchType.ConfigFile); } var compilerHost = ts.createCompilerHostFromProgramHost(host, function () { return compilerOptions; }, directoryStructureHost); ts.setGetSourceFileAsHashVersioned(compilerHost, host); // Members for CompilerHost var getNewSourceFile = compilerHost.getSourceFile; compilerHost.getSourceFile = function (fileName) { var args = []; for (var _i = 1; _i < arguments.length; _i++) { args[_i - 1] = arguments[_i]; } return getVersionedSourceFileByPath.apply(void 0, __spreadArray([fileName, toPath(fileName)], args, false)); }; compilerHost.getSourceFileByPath = getVersionedSourceFileByPath; compilerHost.getNewLine = function () { return newLine; }; compilerHost.fileExists = fileExists; compilerHost.onReleaseOldSourceFile = onReleaseOldSourceFile; compilerHost.onReleaseParsedCommandLine = onReleaseParsedCommandLine; // Members for ResolutionCacheHost compilerHost.toPath = toPath; compilerHost.getCompilationSettings = function () { return compilerOptions; }; compilerHost.useSourceOfProjectReferenceRedirect = ts.maybeBind(host, host.useSourceOfProjectReferenceRedirect); compilerHost.watchDirectoryOfFailedLookupLocation = function (dir, cb, flags) { return watchDirectory(dir, cb, flags, watchOptions, ts.WatchType.FailedLookupLocations); }; compilerHost.watchTypeRootsDirectory = function (dir, cb, flags) { return watchDirectory(dir, cb, flags, watchOptions, ts.WatchType.TypeRoots); }; compilerHost.getCachedDirectoryStructureHost = function () { return cachedDirectoryStructureHost; }; compilerHost.scheduleInvalidateResolutionsOfFailedLookupLocations = scheduleInvalidateResolutionsOfFailedLookupLocations; compilerHost.onInvalidatedResolution = scheduleProgramUpdate; compilerHost.onChangedAutomaticTypeDirectiveNames = scheduleProgramUpdate; compilerHost.fileIsOpen = ts.returnFalse; compilerHost.getCurrentProgram = getCurrentProgram; compilerHost.writeLog = writeLog; compilerHost.getParsedCommandLine = getParsedCommandLine; // Cache for the module resolution var resolutionCache = ts.createResolutionCache(compilerHost, configFileName ? ts.getDirectoryPath(ts.getNormalizedAbsolutePath(configFileName, currentDirectory)) : currentDirectory, /*logChangesWhenResolvingModule*/ false); // Resolve module using host module resolution strategy if provided otherwise use resolution cache to resolve module names compilerHost.resolveModuleNames = host.resolveModuleNames ? (function () { var args = []; for (var _i = 0; _i < arguments.length; _i++) { args[_i] = arguments[_i]; } return host.resolveModuleNames.apply(host, args); }) : (function (moduleNames, containingFile, reusedNames, redirectedReference, _options, sourceFile) { return resolutionCache.resolveModuleNames(moduleNames, containingFile, reusedNames, redirectedReference, sourceFile); }); compilerHost.resolveTypeReferenceDirectives = host.resolveTypeReferenceDirectives ? (function () { var args = []; for (var _i = 0; _i < arguments.length; _i++) { args[_i] = arguments[_i]; } return host.resolveTypeReferenceDirectives.apply(host, args); }) : (function (typeDirectiveNames, containingFile, redirectedReference, _options, containingFileMode) { return resolutionCache.resolveTypeReferenceDirectives(typeDirectiveNames, containingFile, redirectedReference, containingFileMode); }); var userProvidedResolution = !!host.resolveModuleNames || !!host.resolveTypeReferenceDirectives; builderProgram = readBuilderProgram(compilerOptions, compilerHost); synchronizeProgram(); // Update the wild card directory watch watchConfigFileWildCardDirectories(); // Update extended config file watch if (configFileName) updateExtendedConfigFilesWatches(toPath(configFileName), compilerOptions, watchOptions, ts.WatchType.ExtendedConfigFile); return configFileName ? { getCurrentProgram: getCurrentBuilderProgram, getProgram: updateProgram, close: close } : { getCurrentProgram: getCurrentBuilderProgram, getProgram: updateProgram, updateRootFileNames: updateRootFileNames, close: close }; function close() { clearInvalidateResolutionsOfFailedLookupLocations(); resolutionCache.clear(); ts.clearMap(sourceFilesCache, function (value) { if (value && value.fileWatcher) { value.fileWatcher.close(); value.fileWatcher = undefined; } }); if (configFileWatcher) { configFileWatcher.close(); configFileWatcher = undefined; } extendedConfigCache === null || extendedConfigCache === void 0 ? void 0 : extendedConfigCache.clear(); extendedConfigCache = undefined; if (sharedExtendedConfigFileWatchers) { ts.clearMap(sharedExtendedConfigFileWatchers, ts.closeFileWatcherOf); sharedExtendedConfigFileWatchers = undefined; } if (watchedWildcardDirectories) { ts.clearMap(watchedWildcardDirectories, ts.closeFileWatcherOf); watchedWildcardDirectories = undefined; } if (missingFilesMap) { ts.clearMap(missingFilesMap, ts.closeFileWatcher); missingFilesMap = undefined; } if (parsedConfigs) { ts.clearMap(parsedConfigs, function (config) { var _a; (_a = config.watcher) === null || _a === void 0 ? void 0 : _a.close(); config.watcher = undefined; if (config.watchedDirectories) ts.clearMap(config.watchedDirectories, ts.closeFileWatcherOf); config.watchedDirectories = undefined; }); parsedConfigs = undefined; } if (packageJsonMap) { ts.clearMap(packageJsonMap, ts.closeFileWatcher); packageJsonMap = undefined; } } function getCurrentBuilderProgram() { return builderProgram; } function getCurrentProgram() { return builderProgram && builderProgram.getProgramOrUndefined(); } function synchronizeProgram() { writeLog("Synchronizing program"); clearInvalidateResolutionsOfFailedLookupLocations(); var program = getCurrentBuilderProgram(); if (hasChangedCompilerOptions) { newLine = updateNewLine(); if (program && (changesAffectResolution || ts.changesAffectModuleResolution(program.getCompilerOptions(), compilerOptions))) { resolutionCache.clear(); } } // All resolutions are invalid if user provided resolutions var hasInvalidatedResolution = resolutionCache.createHasInvalidatedResolution(userProvidedResolution || changesAffectResolution); if (ts.isProgramUptoDate(getCurrentProgram(), rootFileNames, compilerOptions, getSourceVersion, fileExists, hasInvalidatedResolution, hasChangedAutomaticTypeDirectiveNames, getParsedCommandLine, projectReferences)) { if (hasChangedConfigFileParsingErrors) { if (reportFileChangeDetectedOnCreateProgram) { reportWatchDiagnostic(ts.Diagnostics.File_change_detected_Starting_incremental_compilation); } builderProgram = createProgram(/*rootNames*/ undefined, /*options*/ undefined, compilerHost, builderProgram, configFileParsingDiagnostics, projectReferences); hasChangedConfigFileParsingErrors = false; } } else { if (reportFileChangeDetectedOnCreateProgram) { reportWatchDiagnostic(ts.Diagnostics.File_change_detected_Starting_incremental_compilation); } createNewProgram(hasInvalidatedResolution); } changesAffectResolution = false; // reset for next sync reportFileChangeDetectedOnCreateProgram = false; if (host.afterProgramCreate && program !== builderProgram) { host.afterProgramCreate(builderProgram); } return builderProgram; } function createNewProgram(hasInvalidatedResolution) { // Compile the program writeLog("CreatingProgramWith::"); writeLog(" roots: ".concat(JSON.stringify(rootFileNames))); writeLog(" options: ".concat(JSON.stringify(compilerOptions))); if (projectReferences) writeLog(" projectReferences: ".concat(JSON.stringify(projectReferences))); var needsUpdateInTypeRootWatch = hasChangedCompilerOptions || !getCurrentProgram(); hasChangedCompilerOptions = false; hasChangedConfigFileParsingErrors = false; resolutionCache.startCachingPerDirectoryResolution(); compilerHost.hasInvalidatedResolution = hasInvalidatedResolution; compilerHost.hasChangedAutomaticTypeDirectiveNames = hasChangedAutomaticTypeDirectiveNames; builderProgram = createProgram(rootFileNames, compilerOptions, compilerHost, builderProgram, configFileParsingDiagnostics, projectReferences); // map package json cache entries to their realpaths so we don't try to watch across symlinks var packageCacheEntries = ts.map(resolutionCache.getModuleResolutionCache().getPackageJsonInfoCache().entries(), function (_a) { var path = _a[0], data = _a[1]; return [compilerHost.realpath ? toPath(compilerHost.realpath(path)) : path, data]; }); resolutionCache.finishCachingPerDirectoryResolution(); // Update watches ts.updateMissingFilePathsWatch(builderProgram.getProgram(), missingFilesMap || (missingFilesMap = new ts.Map()), watchMissingFilePath); ts.updatePackageJsonWatch(packageCacheEntries, packageJsonMap || (packageJsonMap = new ts.Map()), watchPackageJsonLookupPath); if (needsUpdateInTypeRootWatch) { resolutionCache.updateTypeRootsWatch(); } if (missingFilePathsRequestedForRelease) { // These are the paths that program creater told us as not in use any more but were missing on the disk. // We didnt remove the entry for them from sourceFiles cache so that we dont have to do File IO, // if there is already watcher for it (for missing files) // At this point our watches were updated, hence now we know that these paths are not tracked and need to be removed // so that at later time we have correct result of their presence for (var _i = 0, missingFilePathsRequestedForRelease_1 = missingFilePathsRequestedForRelease; _i < missingFilePathsRequestedForRelease_1.length; _i++) { var missingFilePath = missingFilePathsRequestedForRelease_1[_i]; if (!missingFilesMap.has(missingFilePath)) { sourceFilesCache.delete(missingFilePath); } } missingFilePathsRequestedForRelease = undefined; } } function updateRootFileNames(files) { ts.Debug.assert(!configFileName, "Cannot update root file names with config file watch mode"); rootFileNames = files; scheduleProgramUpdate(); } function updateNewLine() { return ts.getNewLineCharacter(compilerOptions || optionsToExtendForConfigFile, function () { return host.getNewLine(); }); } function toPath(fileName) { return ts.toPath(fileName, currentDirectory, getCanonicalFileName); } function isFileMissingOnHost(hostSourceFile) { return typeof hostSourceFile === "boolean"; } function isFilePresenceUnknownOnHost(hostSourceFile) { return typeof hostSourceFile.version === "boolean"; } function fileExists(fileName) { var path = toPath(fileName); // If file is missing on host from cache, we can definitely say file doesnt exist // otherwise we need to ensure from the disk if (isFileMissingOnHost(sourceFilesCache.get(path))) { return false; } return directoryStructureHost.fileExists(fileName); } function getVersionedSourceFileByPath(fileName, path, languageVersionOrOptions, onError, shouldCreateNewSourceFile) { var hostSourceFile = sourceFilesCache.get(path); // No source file on the host if (isFileMissingOnHost(hostSourceFile)) { return undefined; } // Create new source file if requested or the versions dont match if (hostSourceFile === undefined || shouldCreateNewSourceFile || isFilePresenceUnknownOnHost(hostSourceFile)) { var sourceFile = getNewSourceFile(fileName, languageVersionOrOptions, onError); if (hostSourceFile) { if (sourceFile) { // Set the source file and create file watcher now that file was present on the disk hostSourceFile.sourceFile = sourceFile; hostSourceFile.version = sourceFile.version; if (!hostSourceFile.fileWatcher) { hostSourceFile.fileWatcher = watchFilePath(path, fileName, onSourceFileChange, ts.PollingInterval.Low, watchOptions, ts.WatchType.SourceFile); } } else { // There is no source file on host any more, close the watch, missing file paths will track it if (hostSourceFile.fileWatcher) { hostSourceFile.fileWatcher.close(); } sourceFilesCache.set(path, false); } } else { if (sourceFile) { var fileWatcher = watchFilePath(path, fileName, onSourceFileChange, ts.PollingInterval.Low, watchOptions, ts.WatchType.SourceFile); sourceFilesCache.set(path, { sourceFile: sourceFile, version: sourceFile.version, fileWatcher: fileWatcher }); } else { sourceFilesCache.set(path, false); } } if (sourceFile) { sourceFile.impliedNodeFormat = ts.getImpliedNodeFormatForFile(path, resolutionCache.getModuleResolutionCache().getPackageJsonInfoCache(), compilerHost, compilerHost.getCompilationSettings()); } return sourceFile; } return hostSourceFile.sourceFile; } function nextSourceFileVersion(path) { var hostSourceFile = sourceFilesCache.get(path); if (hostSourceFile !== undefined) { if (isFileMissingOnHost(hostSourceFile)) { // The next version, lets set it as presence unknown file sourceFilesCache.set(path, { version: false }); } else { hostSourceFile.version = false; } } } function getSourceVersion(path) { var hostSourceFile = sourceFilesCache.get(path); return !hostSourceFile || !hostSourceFile.version ? undefined : hostSourceFile.version; } function onReleaseOldSourceFile(oldSourceFile, _oldOptions, hasSourceFileByPath) { var hostSourceFileInfo = sourceFilesCache.get(oldSourceFile.resolvedPath); // If this is the source file thats in the cache and new program doesnt need it, // remove the cached entry. // Note we arent deleting entry if file became missing in new program or // there was version update and new source file was created. if (hostSourceFileInfo !== undefined) { // record the missing file paths so they can be removed later if watchers arent tracking them if (isFileMissingOnHost(hostSourceFileInfo)) { (missingFilePathsRequestedForRelease || (missingFilePathsRequestedForRelease = [])).push(oldSourceFile.path); } else if (hostSourceFileInfo.sourceFile === oldSourceFile) { if (hostSourceFileInfo.fileWatcher) { hostSourceFileInfo.fileWatcher.close(); } sourceFilesCache.delete(oldSourceFile.resolvedPath); if (!hasSourceFileByPath) { resolutionCache.removeResolutionsOfFile(oldSourceFile.path); } } } } function reportWatchDiagnostic(message) { if (host.onWatchStatusChange) { host.onWatchStatusChange(ts.createCompilerDiagnostic(message), newLine, compilerOptions || optionsToExtendForConfigFile); } } function hasChangedAutomaticTypeDirectiveNames() { return resolutionCache.hasChangedAutomaticTypeDirectiveNames(); } function clearInvalidateResolutionsOfFailedLookupLocations() { if (!timerToInvalidateFailedLookupResolutions) return false; host.clearTimeout(timerToInvalidateFailedLookupResolutions); timerToInvalidateFailedLookupResolutions = undefined; return true; } function scheduleInvalidateResolutionsOfFailedLookupLocations() { if (!host.setTimeout || !host.clearTimeout) { return resolutionCache.invalidateResolutionsOfFailedLookupLocations(); } var pending = clearInvalidateResolutionsOfFailedLookupLocations(); writeLog("Scheduling invalidateFailedLookup".concat(pending ? ", Cancelled earlier one" : "")); timerToInvalidateFailedLookupResolutions = host.setTimeout(invalidateResolutionsOfFailedLookup, 250); } function invalidateResolutionsOfFailedLookup() { timerToInvalidateFailedLookupResolutions = undefined; if (resolutionCache.invalidateResolutionsOfFailedLookupLocations()) { scheduleProgramUpdate(); } } // Upon detecting a file change, wait for 250ms and then perform a recompilation. This gives batch // operations (such as saving all modified files in an editor) a chance to complete before we kick // off a new compilation. function scheduleProgramUpdate() { if (!host.setTimeout || !host.clearTimeout) { return; } if (timerToUpdateProgram) { host.clearTimeout(timerToUpdateProgram); } writeLog("Scheduling update"); timerToUpdateProgram = host.setTimeout(updateProgramWithWatchStatus, 250); } function scheduleProgramReload() { ts.Debug.assert(!!configFileName); reloadLevel = ts.ConfigFileProgramReloadLevel.Full; scheduleProgramUpdate(); } function updateProgramWithWatchStatus() { timerToUpdateProgram = undefined; reportFileChangeDetectedOnCreateProgram = true; updateProgram(); } function updateProgram() { switch (reloadLevel) { case ts.ConfigFileProgramReloadLevel.Partial: ts.perfLogger.logStartUpdateProgram("PartialConfigReload"); reloadFileNamesFromConfigFile(); break; case ts.ConfigFileProgramReloadLevel.Full: ts.perfLogger.logStartUpdateProgram("FullConfigReload"); reloadConfigFile(); break; default: ts.perfLogger.logStartUpdateProgram("SynchronizeProgram"); synchronizeProgram(); break; } ts.perfLogger.logStopUpdateProgram("Done"); return getCurrentBuilderProgram(); } function reloadFileNamesFromConfigFile() { writeLog("Reloading new file names and options"); reloadLevel = ts.ConfigFileProgramReloadLevel.None; rootFileNames = ts.getFileNamesFromConfigSpecs(compilerOptions.configFile.configFileSpecs, ts.getNormalizedAbsolutePath(ts.getDirectoryPath(configFileName), currentDirectory), compilerOptions, parseConfigFileHost, extraFileExtensions); if (ts.updateErrorForNoInputFiles(rootFileNames, ts.getNormalizedAbsolutePath(configFileName, currentDirectory), compilerOptions.configFile.configFileSpecs, configFileParsingDiagnostics, canConfigFileJsonReportNoInputFiles)) { hasChangedConfigFileParsingErrors = true; } // Update the program synchronizeProgram(); } function reloadConfigFile() { writeLog("Reloading config file: ".concat(configFileName)); reloadLevel = ts.ConfigFileProgramReloadLevel.None; if (cachedDirectoryStructureHost) { cachedDirectoryStructureHost.clearCache(); } parseConfigFile(); hasChangedCompilerOptions = true; synchronizeProgram(); // Update the wild card directory watch watchConfigFileWildCardDirectories(); // Update extended config file watch updateExtendedConfigFilesWatches(toPath(configFileName), compilerOptions, watchOptions, ts.WatchType.ExtendedConfigFile); } function parseConfigFile() { setConfigFileParsingResult(ts.getParsedCommandLineOfConfigFile(configFileName, optionsToExtendForConfigFile, parseConfigFileHost, extendedConfigCache || (extendedConfigCache = new ts.Map()), watchOptionsToExtend, extraFileExtensions)); // TODO: GH#18217 } function setConfigFileParsingResult(configFileParseResult) { rootFileNames = configFileParseResult.fileNames; compilerOptions = configFileParseResult.options; watchOptions = configFileParseResult.watchOptions; projectReferences = configFileParseResult.projectReferences; wildcardDirectories = configFileParseResult.wildcardDirectories; configFileParsingDiagnostics = ts.getConfigFileParsingDiagnostics(configFileParseResult).slice(); canConfigFileJsonReportNoInputFiles = ts.canJsonReportNoInputFiles(configFileParseResult.raw); hasChangedConfigFileParsingErrors = true; } function getParsedCommandLine(configFileName) { var configPath = toPath(configFileName); var config = parsedConfigs === null || parsedConfigs === void 0 ? void 0 : parsedConfigs.get(configPath); if (config) { if (!config.reloadLevel) return config.parsedCommandLine; // With host implementing getParsedCommandLine we cant just update file names if (config.parsedCommandLine && config.reloadLevel === ts.ConfigFileProgramReloadLevel.Partial && !host.getParsedCommandLine) { writeLog("Reloading new file names and options"); var fileNames = ts.getFileNamesFromConfigSpecs(config.parsedCommandLine.options.configFile.configFileSpecs, ts.getNormalizedAbsolutePath(ts.getDirectoryPath(configFileName), currentDirectory), compilerOptions, parseConfigFileHost); config.parsedCommandLine = __assign(__assign({}, config.parsedCommandLine), { fileNames: fileNames }); config.reloadLevel = undefined; return config.parsedCommandLine; } } writeLog("Loading config file: ".concat(configFileName)); var parsedCommandLine = host.getParsedCommandLine ? host.getParsedCommandLine(configFileName) : getParsedCommandLineFromConfigFileHost(configFileName); if (config) { config.parsedCommandLine = parsedCommandLine; config.reloadLevel = undefined; } else { (parsedConfigs || (parsedConfigs = new ts.Map())).set(configPath, config = { parsedCommandLine: parsedCommandLine }); } watchReferencedProject(configFileName, configPath, config); return parsedCommandLine; } function getParsedCommandLineFromConfigFileHost(configFileName) { // Ignore the file absent errors var onUnRecoverableConfigFileDiagnostic = parseConfigFileHost.onUnRecoverableConfigFileDiagnostic; parseConfigFileHost.onUnRecoverableConfigFileDiagnostic = ts.noop; var parsedCommandLine = ts.getParsedCommandLineOfConfigFile(configFileName, /*optionsToExtend*/ undefined, parseConfigFileHost, extendedConfigCache || (extendedConfigCache = new ts.Map()), watchOptionsToExtend); parseConfigFileHost.onUnRecoverableConfigFileDiagnostic = onUnRecoverableConfigFileDiagnostic; return parsedCommandLine; } function onReleaseParsedCommandLine(fileName) { var _a; var path = toPath(fileName); var config = parsedConfigs === null || parsedConfigs === void 0 ? void 0 : parsedConfigs.get(path); if (!config) return; parsedConfigs.delete(path); if (config.watchedDirectories) ts.clearMap(config.watchedDirectories, ts.closeFileWatcherOf); (_a = config.watcher) === null || _a === void 0 ? void 0 : _a.close(); ts.clearSharedExtendedConfigFileWatcher(path, sharedExtendedConfigFileWatchers); } function watchFilePath(path, file, callback, pollingInterval, options, watchType) { return watchFile(file, function (fileName, eventKind) { return callback(fileName, eventKind, path); }, pollingInterval, options, watchType); } function onSourceFileChange(fileName, eventKind, path) { updateCachedSystemWithFile(fileName, path, eventKind); // Update the source file cache if (eventKind === ts.FileWatcherEventKind.Deleted && sourceFilesCache.has(path)) { resolutionCache.invalidateResolutionOfFile(path); } nextSourceFileVersion(path); // Update the program scheduleProgramUpdate(); } function updateCachedSystemWithFile(fileName, path, eventKind) { if (cachedDirectoryStructureHost) { cachedDirectoryStructureHost.addOrDeleteFile(fileName, path, eventKind); } } function watchMissingFilePath(missingFilePath) { // If watching missing referenced config file, we are already watching it so no need for separate watcher return (parsedConfigs === null || parsedConfigs === void 0 ? void 0 : parsedConfigs.has(missingFilePath)) ? ts.noopFileWatcher : watchFilePath(missingFilePath, missingFilePath, onMissingFileChange, ts.PollingInterval.Medium, watchOptions, ts.WatchType.MissingFile); } function watchPackageJsonLookupPath(packageJsonPath) { // If the package.json is pulled into the compilation itself (eg, via json imports), don't add a second watcher here return sourceFilesCache.has(packageJsonPath) ? ts.noopFileWatcher : watchFilePath(packageJsonPath, packageJsonPath, onPackageJsonChange, ts.PollingInterval.High, watchOptions, ts.WatchType.PackageJson); } function onPackageJsonChange(fileName, eventKind, path) { updateCachedSystemWithFile(fileName, path, eventKind); // package.json changes invalidate module resolution and can change the set of loaded files // so if we witness a change to one, we have to do a full reload reloadLevel = ts.ConfigFileProgramReloadLevel.Full; changesAffectResolution = true; // Update the program scheduleProgramUpdate(); } function onMissingFileChange(fileName, eventKind, missingFilePath) { updateCachedSystemWithFile(fileName, missingFilePath, eventKind); if (eventKind === ts.FileWatcherEventKind.Created && missingFilesMap.has(missingFilePath)) { missingFilesMap.get(missingFilePath).close(); missingFilesMap.delete(missingFilePath); // Delete the entry in the source files cache so that new source file is created nextSourceFileVersion(missingFilePath); // When a missing file is created, we should update the graph. scheduleProgramUpdate(); } } function watchConfigFileWildCardDirectories() { if (wildcardDirectories) { ts.updateWatchingWildcardDirectories(watchedWildcardDirectories || (watchedWildcardDirectories = new ts.Map()), new ts.Map(ts.getEntries(wildcardDirectories)), watchWildcardDirectory); } else if (watchedWildcardDirectories) { ts.clearMap(watchedWildcardDirectories, ts.closeFileWatcherOf); } } function watchWildcardDirectory(directory, flags) { return watchDirectory(directory, function (fileOrDirectory) { ts.Debug.assert(!!configFileName); var fileOrDirectoryPath = toPath(fileOrDirectory); // Since the file existence changed, update the sourceFiles cache if (cachedDirectoryStructureHost) { cachedDirectoryStructureHost.addOrDeleteFileOrDirectory(fileOrDirectory, fileOrDirectoryPath); } nextSourceFileVersion(fileOrDirectoryPath); if (ts.isIgnoredFileFromWildCardWatching({ watchedDirPath: toPath(directory), fileOrDirectory: fileOrDirectory, fileOrDirectoryPath: fileOrDirectoryPath, configFileName: configFileName, extraFileExtensions: extraFileExtensions, options: compilerOptions, program: getCurrentBuilderProgram() || rootFileNames, currentDirectory: currentDirectory, useCaseSensitiveFileNames: useCaseSensitiveFileNames, writeLog: writeLog, toPath: toPath, })) return; // Reload is pending, do the reload if (reloadLevel !== ts.ConfigFileProgramReloadLevel.Full) { reloadLevel = ts.ConfigFileProgramReloadLevel.Partial; // Schedule Update the program scheduleProgramUpdate(); } }, flags, watchOptions, ts.WatchType.WildcardDirectory); } function updateExtendedConfigFilesWatches(forProjectPath, options, watchOptions, watchType) { ts.updateSharedExtendedConfigFileWatcher(forProjectPath, options, sharedExtendedConfigFileWatchers || (sharedExtendedConfigFileWatchers = new ts.Map()), function (extendedConfigFileName, extendedConfigFilePath) { return watchFile(extendedConfigFileName, function (_fileName, eventKind) { var _a; updateCachedSystemWithFile(extendedConfigFileName, extendedConfigFilePath, eventKind); // Update extended config cache if (extendedConfigCache) ts.cleanExtendedConfigCache(extendedConfigCache, extendedConfigFilePath, toPath); // Update projects var projects = (_a = sharedExtendedConfigFileWatchers.get(extendedConfigFilePath)) === null || _a === void 0 ? void 0 : _a.projects; // If there are no referenced projects this extended config file watcher depend on ignore if (!(projects === null || projects === void 0 ? void 0 : projects.size)) return; projects.forEach(function (projectPath) { if (toPath(configFileName) === projectPath) { // If this is the config file of the project, reload completely reloadLevel = ts.ConfigFileProgramReloadLevel.Full; } else { // Reload config for the referenced projects and remove the resolutions from referenced projects since the config file changed var config = parsedConfigs === null || parsedConfigs === void 0 ? void 0 : parsedConfigs.get(projectPath); if (config) config.reloadLevel = ts.ConfigFileProgramReloadLevel.Full; resolutionCache.removeResolutionsFromProjectReferenceRedirects(projectPath); } scheduleProgramUpdate(); }); }, ts.PollingInterval.High, watchOptions, watchType); }, toPath); } function watchReferencedProject(configFileName, configPath, commandLine) { var _a, _b, _c, _d, _e; // Watch file commandLine.watcher || (commandLine.watcher = watchFile(configFileName, function (_fileName, eventKind) { updateCachedSystemWithFile(configFileName, configPath, eventKind); var config = parsedConfigs === null || parsedConfigs === void 0 ? void 0 : parsedConfigs.get(configPath); if (config) config.reloadLevel = ts.ConfigFileProgramReloadLevel.Full; resolutionCache.removeResolutionsFromProjectReferenceRedirects(configPath); scheduleProgramUpdate(); }, ts.PollingInterval.High, ((_a = commandLine.parsedCommandLine) === null || _a === void 0 ? void 0 : _a.watchOptions) || watchOptions, ts.WatchType.ConfigFileOfReferencedProject)); // Watch Wild card if ((_b = commandLine.parsedCommandLine) === null || _b === void 0 ? void 0 : _b.wildcardDirectories) { ts.updateWatchingWildcardDirectories(commandLine.watchedDirectories || (commandLine.watchedDirectories = new ts.Map()), new ts.Map(ts.getEntries((_c = commandLine.parsedCommandLine) === null || _c === void 0 ? void 0 : _c.wildcardDirectories)), function (directory, flags) { var _a; return watchDirectory(directory, function (fileOrDirectory) { var fileOrDirectoryPath = toPath(fileOrDirectory); // Since the file existence changed, update the sourceFiles cache if (cachedDirectoryStructureHost) { cachedDirectoryStructureHost.addOrDeleteFileOrDirectory(fileOrDirectory, fileOrDirectoryPath); } nextSourceFileVersion(fileOrDirectoryPath); var config = parsedConfigs === null || parsedConfigs === void 0 ? void 0 : parsedConfigs.get(configPath); if (!(config === null || config === void 0 ? void 0 : config.parsedCommandLine)) return; if (ts.isIgnoredFileFromWildCardWatching({ watchedDirPath: toPath(directory), fileOrDirectory: fileOrDirectory, fileOrDirectoryPath: fileOrDirectoryPath, configFileName: configFileName, options: config.parsedCommandLine.options, program: config.parsedCommandLine.fileNames, currentDirectory: currentDirectory, useCaseSensitiveFileNames: useCaseSensitiveFileNames, writeLog: writeLog, toPath: toPath, })) return; // Reload is pending, do the reload if (config.reloadLevel !== ts.ConfigFileProgramReloadLevel.Full) { config.reloadLevel = ts.ConfigFileProgramReloadLevel.Partial; // Schedule Update the program scheduleProgramUpdate(); } }, flags, ((_a = commandLine.parsedCommandLine) === null || _a === void 0 ? void 0 : _a.watchOptions) || watchOptions, ts.WatchType.WildcardDirectoryOfReferencedProject); }); } else if (commandLine.watchedDirectories) { ts.clearMap(commandLine.watchedDirectories, ts.closeFileWatcherOf); commandLine.watchedDirectories = undefined; } // Watch extended config files updateExtendedConfigFilesWatches(configPath, (_d = commandLine.parsedCommandLine) === null || _d === void 0 ? void 0 : _d.options, ((_e = commandLine.parsedCommandLine) === null || _e === void 0 ? void 0 : _e.watchOptions) || watchOptions, ts.WatchType.ExtendedConfigOfReferencedProject); } } ts.createWatchProgram = createWatchProgram; })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { var UpToDateStatusType; (function (UpToDateStatusType) { UpToDateStatusType[UpToDateStatusType["Unbuildable"] = 0] = "Unbuildable"; UpToDateStatusType[UpToDateStatusType["UpToDate"] = 1] = "UpToDate"; /** * The project appears out of date because its upstream inputs are newer than its outputs, * but all of its outputs are actually newer than the previous identical outputs of its (.d.ts) inputs. * This means we can Pseudo-build (just touch timestamps), as if we had actually built this project. */ UpToDateStatusType[UpToDateStatusType["UpToDateWithUpstreamTypes"] = 2] = "UpToDateWithUpstreamTypes"; /** * The project appears out of date because its upstream inputs are newer than its outputs, * but all of its outputs are actually newer than the previous identical outputs of its (.d.ts) inputs. * This means we can Pseudo-build (just manipulate outputs), as if we had actually built this project. */ UpToDateStatusType[UpToDateStatusType["OutOfDateWithPrepend"] = 3] = "OutOfDateWithPrepend"; UpToDateStatusType[UpToDateStatusType["OutputMissing"] = 4] = "OutputMissing"; UpToDateStatusType[UpToDateStatusType["OutOfDateWithSelf"] = 5] = "OutOfDateWithSelf"; UpToDateStatusType[UpToDateStatusType["OutOfDateWithUpstream"] = 6] = "OutOfDateWithUpstream"; UpToDateStatusType[UpToDateStatusType["UpstreamOutOfDate"] = 7] = "UpstreamOutOfDate"; UpToDateStatusType[UpToDateStatusType["UpstreamBlocked"] = 8] = "UpstreamBlocked"; UpToDateStatusType[UpToDateStatusType["ComputingUpstream"] = 9] = "ComputingUpstream"; UpToDateStatusType[UpToDateStatusType["TsVersionOutputOfDate"] = 10] = "TsVersionOutputOfDate"; /** * Projects with no outputs (i.e. "solution" files) */ UpToDateStatusType[UpToDateStatusType["ContainerOnly"] = 11] = "ContainerOnly"; })(UpToDateStatusType = ts.UpToDateStatusType || (ts.UpToDateStatusType = {})); function resolveConfigFileProjectName(project) { if (ts.fileExtensionIs(project, ".json" /* Extension.Json */)) { return project; } return ts.combinePaths(project, "tsconfig.json"); } ts.resolveConfigFileProjectName = resolveConfigFileProjectName; })(ts || (ts = {})); var ts; (function (ts) { var minimumDate = new Date(-8640000000000000); var maximumDate = new Date(8640000000000000); var BuildResultFlags; (function (BuildResultFlags) { BuildResultFlags[BuildResultFlags["None"] = 0] = "None"; /** * No errors of any kind occurred during build */ BuildResultFlags[BuildResultFlags["Success"] = 1] = "Success"; /** * None of the .d.ts files emitted by this build were * different from the existing files on disk */ BuildResultFlags[BuildResultFlags["DeclarationOutputUnchanged"] = 2] = "DeclarationOutputUnchanged"; BuildResultFlags[BuildResultFlags["ConfigFileErrors"] = 4] = "ConfigFileErrors"; BuildResultFlags[BuildResultFlags["SyntaxErrors"] = 8] = "SyntaxErrors"; BuildResultFlags[BuildResultFlags["TypeErrors"] = 16] = "TypeErrors"; BuildResultFlags[BuildResultFlags["DeclarationEmitErrors"] = 32] = "DeclarationEmitErrors"; BuildResultFlags[BuildResultFlags["EmitErrors"] = 64] = "EmitErrors"; BuildResultFlags[BuildResultFlags["AnyErrors"] = 124] = "AnyErrors"; })(BuildResultFlags || (BuildResultFlags = {})); function getOrCreateValueFromConfigFileMap(configFileMap, resolved, createT) { var existingValue = configFileMap.get(resolved); var newValue; if (!existingValue) { newValue = createT(); configFileMap.set(resolved, newValue); } return existingValue || newValue; } function getOrCreateValueMapFromConfigFileMap(configFileMap, resolved) { return getOrCreateValueFromConfigFileMap(configFileMap, resolved, function () { return new ts.Map(); }); } function newer(date1, date2) { return date2 > date1 ? date2 : date1; } /*@internal*/ function isCircularBuildOrder(buildOrder) { return !!buildOrder && !!buildOrder.buildOrder; } ts.isCircularBuildOrder = isCircularBuildOrder; /*@internal*/ function getBuildOrderFromAnyBuildOrder(anyBuildOrder) { return isCircularBuildOrder(anyBuildOrder) ? anyBuildOrder.buildOrder : anyBuildOrder; } ts.getBuildOrderFromAnyBuildOrder = getBuildOrderFromAnyBuildOrder; /** * Create a function that reports watch status by writing to the system and handles the formating of the diagnostic */ function createBuilderStatusReporter(system, pretty) { return function (diagnostic) { var output = pretty ? "[".concat(ts.formatColorAndReset(ts.getLocaleTimeString(system), ts.ForegroundColorEscapeSequences.Grey), "] ") : "".concat(ts.getLocaleTimeString(system), " - "); output += "".concat(ts.flattenDiagnosticMessageText(diagnostic.messageText, system.newLine)).concat(system.newLine + system.newLine); system.write(output); }; } ts.createBuilderStatusReporter = createBuilderStatusReporter; function createSolutionBuilderHostBase(system, createProgram, reportDiagnostic, reportSolutionBuilderStatus) { var host = ts.createProgramHost(system, createProgram); host.getModifiedTime = system.getModifiedTime ? function (path) { return system.getModifiedTime(path); } : ts.returnUndefined; host.setModifiedTime = system.setModifiedTime ? function (path, date) { return system.setModifiedTime(path, date); } : ts.noop; host.deleteFile = system.deleteFile ? function (path) { return system.deleteFile(path); } : ts.noop; host.reportDiagnostic = reportDiagnostic || ts.createDiagnosticReporter(system); host.reportSolutionBuilderStatus = reportSolutionBuilderStatus || createBuilderStatusReporter(system); host.now = ts.maybeBind(system, system.now); // For testing return host; } function createSolutionBuilderHost(system, createProgram, reportDiagnostic, reportSolutionBuilderStatus, reportErrorSummary) { if (system === void 0) { system = ts.sys; } var host = createSolutionBuilderHostBase(system, createProgram, reportDiagnostic, reportSolutionBuilderStatus); host.reportErrorSummary = reportErrorSummary; return host; } ts.createSolutionBuilderHost = createSolutionBuilderHost; function createSolutionBuilderWithWatchHost(system, createProgram, reportDiagnostic, reportSolutionBuilderStatus, reportWatchStatus) { if (system === void 0) { system = ts.sys; } var host = createSolutionBuilderHostBase(system, createProgram, reportDiagnostic, reportSolutionBuilderStatus); var watchHost = ts.createWatchHost(system, reportWatchStatus); ts.copyProperties(host, watchHost); return host; } ts.createSolutionBuilderWithWatchHost = createSolutionBuilderWithWatchHost; function getCompilerOptionsOfBuildOptions(buildOptions) { var result = {}; ts.commonOptionsWithBuild.forEach(function (option) { if (ts.hasProperty(buildOptions, option.name)) result[option.name] = buildOptions[option.name]; }); return result; } function createSolutionBuilder(host, rootNames, defaultOptions) { return createSolutionBuilderWorker(/*watch*/ false, host, rootNames, defaultOptions); } ts.createSolutionBuilder = createSolutionBuilder; function createSolutionBuilderWithWatch(host, rootNames, defaultOptions, baseWatchOptions) { return createSolutionBuilderWorker(/*watch*/ true, host, rootNames, defaultOptions, baseWatchOptions); } ts.createSolutionBuilderWithWatch = createSolutionBuilderWithWatch; function createSolutionBuilderState(watch, hostOrHostWithWatch, rootNames, options, baseWatchOptions) { var host = hostOrHostWithWatch; var hostWithWatch = hostOrHostWithWatch; var currentDirectory = host.getCurrentDirectory(); var getCanonicalFileName = ts.createGetCanonicalFileName(host.useCaseSensitiveFileNames()); // State of the solution var baseCompilerOptions = getCompilerOptionsOfBuildOptions(options); var compilerHost = ts.createCompilerHostFromProgramHost(host, function () { return state.projectCompilerOptions; }); ts.setGetSourceFileAsHashVersioned(compilerHost, host); compilerHost.getParsedCommandLine = function (fileName) { return parseConfigFile(state, fileName, toResolvedConfigFilePath(state, fileName)); }; compilerHost.resolveModuleNames = ts.maybeBind(host, host.resolveModuleNames); compilerHost.resolveTypeReferenceDirectives = ts.maybeBind(host, host.resolveTypeReferenceDirectives); var moduleResolutionCache = !compilerHost.resolveModuleNames ? ts.createModuleResolutionCache(currentDirectory, getCanonicalFileName) : undefined; var typeReferenceDirectiveResolutionCache = !compilerHost.resolveTypeReferenceDirectives ? ts.createTypeReferenceDirectiveResolutionCache(currentDirectory, getCanonicalFileName, /*options*/ undefined, moduleResolutionCache === null || moduleResolutionCache === void 0 ? void 0 : moduleResolutionCache.getPackageJsonInfoCache()) : undefined; if (!compilerHost.resolveModuleNames) { var loader_3 = function (moduleName, resolverMode, containingFile, redirectedReference) { return ts.resolveModuleName(moduleName, containingFile, state.projectCompilerOptions, compilerHost, moduleResolutionCache, redirectedReference, resolverMode).resolvedModule; }; compilerHost.resolveModuleNames = function (moduleNames, containingFile, _reusedNames, redirectedReference, _options, containingSourceFile) { return ts.loadWithModeAwareCache(ts.Debug.checkEachDefined(moduleNames), ts.Debug.checkDefined(containingSourceFile), containingFile, redirectedReference, loader_3); }; compilerHost.getModuleResolutionCache = function () { return moduleResolutionCache; }; } if (!compilerHost.resolveTypeReferenceDirectives) { var loader_4 = function (moduleName, containingFile, redirectedReference, containingFileMode) { return ts.resolveTypeReferenceDirective(moduleName, containingFile, state.projectCompilerOptions, compilerHost, redirectedReference, state.typeReferenceDirectiveResolutionCache, containingFileMode).resolvedTypeReferenceDirective; }; compilerHost.resolveTypeReferenceDirectives = function (typeReferenceDirectiveNames, containingFile, redirectedReference, _options, containingFileMode) { return ts.loadWithTypeDirectiveCache(ts.Debug.checkEachDefined(typeReferenceDirectiveNames), containingFile, redirectedReference, containingFileMode, loader_4); }; } var _a = ts.createWatchFactory(hostWithWatch, options), watchFile = _a.watchFile, watchDirectory = _a.watchDirectory, writeLog = _a.writeLog; var state = { host: host, hostWithWatch: hostWithWatch, currentDirectory: currentDirectory, getCanonicalFileName: getCanonicalFileName, parseConfigFileHost: ts.parseConfigHostFromCompilerHostLike(host), write: ts.maybeBind(host, host.trace), // State of solution options: options, baseCompilerOptions: baseCompilerOptions, rootNames: rootNames, baseWatchOptions: baseWatchOptions, resolvedConfigFilePaths: new ts.Map(), configFileCache: new ts.Map(), projectStatus: new ts.Map(), buildInfoChecked: new ts.Map(), extendedConfigCache: new ts.Map(), builderPrograms: new ts.Map(), diagnostics: new ts.Map(), projectPendingBuild: new ts.Map(), projectErrorsReported: new ts.Map(), compilerHost: compilerHost, moduleResolutionCache: moduleResolutionCache, typeReferenceDirectiveResolutionCache: typeReferenceDirectiveResolutionCache, // Mutable state buildOrder: undefined, readFileWithCache: function (f) { return host.readFile(f); }, projectCompilerOptions: baseCompilerOptions, cache: undefined, allProjectBuildPending: true, needsSummary: true, watchAllProjectsPending: watch, currentInvalidatedProject: undefined, // Watch state watch: watch, allWatchedWildcardDirectories: new ts.Map(), allWatchedInputFiles: new ts.Map(), allWatchedConfigFiles: new ts.Map(), allWatchedExtendedConfigFiles: new ts.Map(), allWatchedPackageJsonFiles: new ts.Map(), lastCachedPackageJsonLookups: new ts.Map(), timerToBuildInvalidatedProject: undefined, reportFileChangeDetected: false, watchFile: watchFile, watchDirectory: watchDirectory, writeLog: writeLog, }; return state; } function toPath(state, fileName) { return ts.toPath(fileName, state.currentDirectory, state.getCanonicalFileName); } function toResolvedConfigFilePath(state, fileName) { var resolvedConfigFilePaths = state.resolvedConfigFilePaths; var path = resolvedConfigFilePaths.get(fileName); if (path !== undefined) return path; var resolvedPath = toPath(state, fileName); resolvedConfigFilePaths.set(fileName, resolvedPath); return resolvedPath; } function isParsedCommandLine(entry) { return !!entry.options; } function getCachedParsedConfigFile(state, configFilePath) { var value = state.configFileCache.get(configFilePath); return value && isParsedCommandLine(value) ? value : undefined; } function parseConfigFile(state, configFileName, configFilePath) { var configFileCache = state.configFileCache; var value = configFileCache.get(configFilePath); if (value) { return isParsedCommandLine(value) ? value : undefined; } var diagnostic; var parseConfigFileHost = state.parseConfigFileHost, baseCompilerOptions = state.baseCompilerOptions, baseWatchOptions = state.baseWatchOptions, extendedConfigCache = state.extendedConfigCache, host = state.host; var parsed; if (host.getParsedCommandLine) { parsed = host.getParsedCommandLine(configFileName); if (!parsed) diagnostic = ts.createCompilerDiagnostic(ts.Diagnostics.File_0_not_found, configFileName); } else { parseConfigFileHost.onUnRecoverableConfigFileDiagnostic = function (d) { return diagnostic = d; }; parsed = ts.getParsedCommandLineOfConfigFile(configFileName, baseCompilerOptions, parseConfigFileHost, extendedConfigCache, baseWatchOptions); parseConfigFileHost.onUnRecoverableConfigFileDiagnostic = ts.noop; } configFileCache.set(configFilePath, parsed || diagnostic); return parsed; } function resolveProjectName(state, name) { return ts.resolveConfigFileProjectName(ts.resolvePath(state.currentDirectory, name)); } function createBuildOrder(state, roots) { var temporaryMarks = new ts.Map(); var permanentMarks = new ts.Map(); var circularityReportStack = []; var buildOrder; var circularDiagnostics; for (var _i = 0, roots_1 = roots; _i < roots_1.length; _i++) { var root = roots_1[_i]; visit(root); } return circularDiagnostics ? { buildOrder: buildOrder || ts.emptyArray, circularDiagnostics: circularDiagnostics } : buildOrder || ts.emptyArray; function visit(configFileName, inCircularContext) { var projPath = toResolvedConfigFilePath(state, configFileName); // Already visited if (permanentMarks.has(projPath)) return; // Circular if (temporaryMarks.has(projPath)) { if (!inCircularContext) { (circularDiagnostics || (circularDiagnostics = [])).push(ts.createCompilerDiagnostic(ts.Diagnostics.Project_references_may_not_form_a_circular_graph_Cycle_detected_Colon_0, circularityReportStack.join("\r\n"))); } return; } temporaryMarks.set(projPath, true); circularityReportStack.push(configFileName); var parsed = parseConfigFile(state, configFileName, projPath); if (parsed && parsed.projectReferences) { for (var _i = 0, _a = parsed.projectReferences; _i < _a.length; _i++) { var ref = _a[_i]; var resolvedRefPath = resolveProjectName(state, ref.path); visit(resolvedRefPath, inCircularContext || ref.circular); } } circularityReportStack.pop(); permanentMarks.set(projPath, true); (buildOrder || (buildOrder = [])).push(configFileName); } } function getBuildOrder(state) { return state.buildOrder || createStateBuildOrder(state); } function createStateBuildOrder(state) { var buildOrder = createBuildOrder(state, state.rootNames.map(function (f) { return resolveProjectName(state, f); })); // Clear all to ResolvedConfigFilePaths cache to start fresh state.resolvedConfigFilePaths.clear(); // TODO(rbuckton): Should be a `Set`, but that requires changing the code below that uses `mutateMapSkippingNewValues` var currentProjects = new ts.Map(getBuildOrderFromAnyBuildOrder(buildOrder).map(function (resolved) { return [toResolvedConfigFilePath(state, resolved), true]; })); var noopOnDelete = { onDeleteValue: ts.noop }; // Config file cache ts.mutateMapSkippingNewValues(state.configFileCache, currentProjects, noopOnDelete); ts.mutateMapSkippingNewValues(state.projectStatus, currentProjects, noopOnDelete); ts.mutateMapSkippingNewValues(state.buildInfoChecked, currentProjects, noopOnDelete); ts.mutateMapSkippingNewValues(state.builderPrograms, currentProjects, noopOnDelete); ts.mutateMapSkippingNewValues(state.diagnostics, currentProjects, noopOnDelete); ts.mutateMapSkippingNewValues(state.projectPendingBuild, currentProjects, noopOnDelete); ts.mutateMapSkippingNewValues(state.projectErrorsReported, currentProjects, noopOnDelete); // Remove watches for the program no longer in the solution if (state.watch) { ts.mutateMapSkippingNewValues(state.allWatchedConfigFiles, currentProjects, { onDeleteValue: ts.closeFileWatcher }); state.allWatchedExtendedConfigFiles.forEach(function (watcher) { watcher.projects.forEach(function (project) { if (!currentProjects.has(project)) { watcher.projects.delete(project); } }); watcher.close(); }); ts.mutateMapSkippingNewValues(state.allWatchedWildcardDirectories, currentProjects, { onDeleteValue: function (existingMap) { return existingMap.forEach(ts.closeFileWatcherOf); } }); ts.mutateMapSkippingNewValues(state.allWatchedInputFiles, currentProjects, { onDeleteValue: function (existingMap) { return existingMap.forEach(ts.closeFileWatcher); } }); ts.mutateMapSkippingNewValues(state.allWatchedPackageJsonFiles, currentProjects, { onDeleteValue: function (existingMap) { return existingMap.forEach(ts.closeFileWatcher); } }); } return state.buildOrder = buildOrder; } function getBuildOrderFor(state, project, onlyReferences) { var resolvedProject = project && resolveProjectName(state, project); var buildOrderFromState = getBuildOrder(state); if (isCircularBuildOrder(buildOrderFromState)) return buildOrderFromState; if (resolvedProject) { var projectPath_1 = toResolvedConfigFilePath(state, resolvedProject); var projectIndex = ts.findIndex(buildOrderFromState, function (configFileName) { return toResolvedConfigFilePath(state, configFileName) === projectPath_1; }); if (projectIndex === -1) return undefined; } var buildOrder = resolvedProject ? createBuildOrder(state, [resolvedProject]) : buildOrderFromState; ts.Debug.assert(!isCircularBuildOrder(buildOrder)); ts.Debug.assert(!onlyReferences || resolvedProject !== undefined); ts.Debug.assert(!onlyReferences || buildOrder[buildOrder.length - 1] === resolvedProject); return onlyReferences ? buildOrder.slice(0, buildOrder.length - 1) : buildOrder; } function enableCache(state) { if (state.cache) { disableCache(state); } var compilerHost = state.compilerHost, host = state.host; var originalReadFileWithCache = state.readFileWithCache; var originalGetSourceFile = compilerHost.getSourceFile; var _a = ts.changeCompilerHostLikeToUseCache(host, function (fileName) { return toPath(state, fileName); }, function () { var args = []; for (var _i = 0; _i < arguments.length; _i++) { args[_i] = arguments[_i]; } return originalGetSourceFile.call.apply(originalGetSourceFile, __spreadArray([compilerHost], args, false)); }), originalReadFile = _a.originalReadFile, originalFileExists = _a.originalFileExists, originalDirectoryExists = _a.originalDirectoryExists, originalCreateDirectory = _a.originalCreateDirectory, originalWriteFile = _a.originalWriteFile, getSourceFileWithCache = _a.getSourceFileWithCache, readFileWithCache = _a.readFileWithCache; state.readFileWithCache = readFileWithCache; compilerHost.getSourceFile = getSourceFileWithCache; state.cache = { originalReadFile: originalReadFile, originalFileExists: originalFileExists, originalDirectoryExists: originalDirectoryExists, originalCreateDirectory: originalCreateDirectory, originalWriteFile: originalWriteFile, originalReadFileWithCache: originalReadFileWithCache, originalGetSourceFile: originalGetSourceFile, }; } function disableCache(state) { if (!state.cache) return; var cache = state.cache, host = state.host, compilerHost = state.compilerHost, extendedConfigCache = state.extendedConfigCache, moduleResolutionCache = state.moduleResolutionCache, typeReferenceDirectiveResolutionCache = state.typeReferenceDirectiveResolutionCache; host.readFile = cache.originalReadFile; host.fileExists = cache.originalFileExists; host.directoryExists = cache.originalDirectoryExists; host.createDirectory = cache.originalCreateDirectory; host.writeFile = cache.originalWriteFile; compilerHost.getSourceFile = cache.originalGetSourceFile; state.readFileWithCache = cache.originalReadFileWithCache; extendedConfigCache.clear(); moduleResolutionCache === null || moduleResolutionCache === void 0 ? void 0 : moduleResolutionCache.clear(); typeReferenceDirectiveResolutionCache === null || typeReferenceDirectiveResolutionCache === void 0 ? void 0 : typeReferenceDirectiveResolutionCache.clear(); state.cache = undefined; } function clearProjectStatus(state, resolved) { state.projectStatus.delete(resolved); state.diagnostics.delete(resolved); } function addProjToQueue(_a, proj, reloadLevel) { var projectPendingBuild = _a.projectPendingBuild; var value = projectPendingBuild.get(proj); if (value === undefined) { projectPendingBuild.set(proj, reloadLevel); } else if (value < reloadLevel) { projectPendingBuild.set(proj, reloadLevel); } } function setupInitialBuild(state, cancellationToken) { // Set initial build if not already built if (!state.allProjectBuildPending) return; state.allProjectBuildPending = false; if (state.options.watch) reportWatchStatus(state, ts.Diagnostics.Starting_compilation_in_watch_mode); enableCache(state); var buildOrder = getBuildOrderFromAnyBuildOrder(getBuildOrder(state)); buildOrder.forEach(function (configFileName) { return state.projectPendingBuild.set(toResolvedConfigFilePath(state, configFileName), ts.ConfigFileProgramReloadLevel.None); }); if (cancellationToken) { cancellationToken.throwIfCancellationRequested(); } } var InvalidatedProjectKind; (function (InvalidatedProjectKind) { InvalidatedProjectKind[InvalidatedProjectKind["Build"] = 0] = "Build"; InvalidatedProjectKind[InvalidatedProjectKind["UpdateBundle"] = 1] = "UpdateBundle"; InvalidatedProjectKind[InvalidatedProjectKind["UpdateOutputFileStamps"] = 2] = "UpdateOutputFileStamps"; })(InvalidatedProjectKind = ts.InvalidatedProjectKind || (ts.InvalidatedProjectKind = {})); function doneInvalidatedProject(state, projectPath) { state.projectPendingBuild.delete(projectPath); state.currentInvalidatedProject = undefined; return state.diagnostics.has(projectPath) ? ts.ExitStatus.DiagnosticsPresent_OutputsSkipped : ts.ExitStatus.Success; } function createUpdateOutputFileStampsProject(state, project, projectPath, config, buildOrder) { var updateOutputFileStampsPending = true; return { kind: InvalidatedProjectKind.UpdateOutputFileStamps, project: project, projectPath: projectPath, buildOrder: buildOrder, getCompilerOptions: function () { return config.options; }, getCurrentDirectory: function () { return state.currentDirectory; }, updateOutputFileStatmps: function () { updateOutputTimestamps(state, config, projectPath); updateOutputFileStampsPending = false; }, done: function () { if (updateOutputFileStampsPending) { updateOutputTimestamps(state, config, projectPath); } return doneInvalidatedProject(state, projectPath); } }; } var BuildStep; (function (BuildStep) { BuildStep[BuildStep["CreateProgram"] = 0] = "CreateProgram"; BuildStep[BuildStep["SyntaxDiagnostics"] = 1] = "SyntaxDiagnostics"; BuildStep[BuildStep["SemanticDiagnostics"] = 2] = "SemanticDiagnostics"; BuildStep[BuildStep["Emit"] = 3] = "Emit"; BuildStep[BuildStep["EmitBundle"] = 4] = "EmitBundle"; BuildStep[BuildStep["EmitBuildInfo"] = 5] = "EmitBuildInfo"; BuildStep[BuildStep["BuildInvalidatedProjectOfBundle"] = 6] = "BuildInvalidatedProjectOfBundle"; BuildStep[BuildStep["QueueReferencingProjects"] = 7] = "QueueReferencingProjects"; BuildStep[BuildStep["Done"] = 8] = "Done"; })(BuildStep || (BuildStep = {})); function createBuildOrUpdateInvalidedProject(kind, state, project, projectPath, projectIndex, config, buildOrder) { var step = kind === InvalidatedProjectKind.Build ? BuildStep.CreateProgram : BuildStep.EmitBundle; var program; var buildResult; var invalidatedProjectOfBundle; return kind === InvalidatedProjectKind.Build ? { kind: kind, project: project, projectPath: projectPath, buildOrder: buildOrder, getCompilerOptions: function () { return config.options; }, getCurrentDirectory: function () { return state.currentDirectory; }, getBuilderProgram: function () { return withProgramOrUndefined(ts.identity); }, getProgram: function () { return withProgramOrUndefined(function (program) { return program.getProgramOrUndefined(); }); }, getSourceFile: function (fileName) { return withProgramOrUndefined(function (program) { return program.getSourceFile(fileName); }); }, getSourceFiles: function () { return withProgramOrEmptyArray(function (program) { return program.getSourceFiles(); }); }, getOptionsDiagnostics: function (cancellationToken) { return withProgramOrEmptyArray(function (program) { return program.getOptionsDiagnostics(cancellationToken); }); }, getGlobalDiagnostics: function (cancellationToken) { return withProgramOrEmptyArray(function (program) { return program.getGlobalDiagnostics(cancellationToken); }); }, getConfigFileParsingDiagnostics: function () { return withProgramOrEmptyArray(function (program) { return program.getConfigFileParsingDiagnostics(); }); }, getSyntacticDiagnostics: function (sourceFile, cancellationToken) { return withProgramOrEmptyArray(function (program) { return program.getSyntacticDiagnostics(sourceFile, cancellationToken); }); }, getAllDependencies: function (sourceFile) { return withProgramOrEmptyArray(function (program) { return program.getAllDependencies(sourceFile); }); }, getSemanticDiagnostics: function (sourceFile, cancellationToken) { return withProgramOrEmptyArray(function (program) { return program.getSemanticDiagnostics(sourceFile, cancellationToken); }); }, getSemanticDiagnosticsOfNextAffectedFile: function (cancellationToken, ignoreSourceFile) { return withProgramOrUndefined(function (program) { return (program.getSemanticDiagnosticsOfNextAffectedFile) && program.getSemanticDiagnosticsOfNextAffectedFile(cancellationToken, ignoreSourceFile); }); }, emit: function (targetSourceFile, writeFile, cancellationToken, emitOnlyDtsFiles, customTransformers) { if (targetSourceFile || emitOnlyDtsFiles) { return withProgramOrUndefined(function (program) { var _a, _b; return program.emit(targetSourceFile, writeFile, cancellationToken, emitOnlyDtsFiles, customTransformers || ((_b = (_a = state.host).getCustomTransformers) === null || _b === void 0 ? void 0 : _b.call(_a, project))); }); } executeSteps(BuildStep.SemanticDiagnostics, cancellationToken); if (step === BuildStep.EmitBuildInfo) { return emitBuildInfo(writeFile, cancellationToken); } if (step !== BuildStep.Emit) return undefined; return emit(writeFile, cancellationToken, customTransformers); }, done: done } : { kind: kind, project: project, projectPath: projectPath, buildOrder: buildOrder, getCompilerOptions: function () { return config.options; }, getCurrentDirectory: function () { return state.currentDirectory; }, emit: function (writeFile, customTransformers) { if (step !== BuildStep.EmitBundle) return invalidatedProjectOfBundle; return emitBundle(writeFile, customTransformers); }, done: done, }; function done(cancellationToken, writeFile, customTransformers) { executeSteps(BuildStep.Done, cancellationToken, writeFile, customTransformers); return doneInvalidatedProject(state, projectPath); } function withProgramOrUndefined(action) { executeSteps(BuildStep.CreateProgram); return program && action(program); } function withProgramOrEmptyArray(action) { return withProgramOrUndefined(action) || ts.emptyArray; } function createProgram() { var _a, _b; ts.Debug.assert(program === undefined); if (state.options.dry) { reportStatus(state, ts.Diagnostics.A_non_dry_build_would_build_project_0, project); buildResult = BuildResultFlags.Success; step = BuildStep.QueueReferencingProjects; return; } if (state.options.verbose) reportStatus(state, ts.Diagnostics.Building_project_0, project); if (config.fileNames.length === 0) { reportAndStoreErrors(state, projectPath, ts.getConfigFileParsingDiagnostics(config)); // Nothing to build - must be a solution file, basically buildResult = BuildResultFlags.None; step = BuildStep.QueueReferencingProjects; return; } var host = state.host, compilerHost = state.compilerHost; state.projectCompilerOptions = config.options; // Update module resolution cache if needed (_a = state.moduleResolutionCache) === null || _a === void 0 ? void 0 : _a.update(config.options); (_b = state.typeReferenceDirectiveResolutionCache) === null || _b === void 0 ? void 0 : _b.update(config.options); // Create program program = host.createProgram(config.fileNames, config.options, compilerHost, getOldProgram(state, projectPath, config), ts.getConfigFileParsingDiagnostics(config), config.projectReferences); if (state.watch) { state.lastCachedPackageJsonLookups.set(projectPath, state.moduleResolutionCache && ts.map(state.moduleResolutionCache.getPackageJsonInfoCache().entries(), function (_a) { var path = _a[0], data = _a[1]; return [state.host.realpath && data ? toPath(state, state.host.realpath(path)) : path, data]; })); state.builderPrograms.set(projectPath, program); } step++; } function handleDiagnostics(diagnostics, errorFlags, errorType) { var _a; if (diagnostics.length) { (_a = buildErrors(state, projectPath, program, config, diagnostics, errorFlags, errorType), buildResult = _a.buildResult, step = _a.step); } else { step++; } } function getSyntaxDiagnostics(cancellationToken) { ts.Debug.assertIsDefined(program); handleDiagnostics(__spreadArray(__spreadArray(__spreadArray(__spreadArray([], program.getConfigFileParsingDiagnostics(), true), program.getOptionsDiagnostics(cancellationToken), true), program.getGlobalDiagnostics(cancellationToken), true), program.getSyntacticDiagnostics(/*sourceFile*/ undefined, cancellationToken), true), BuildResultFlags.SyntaxErrors, "Syntactic"); } function getSemanticDiagnostics(cancellationToken) { handleDiagnostics(ts.Debug.checkDefined(program).getSemanticDiagnostics(/*sourceFile*/ undefined, cancellationToken), BuildResultFlags.TypeErrors, "Semantic"); } function emit(writeFileCallback, cancellationToken, customTransformers) { var _a; var _b, _c; ts.Debug.assertIsDefined(program); ts.Debug.assert(step === BuildStep.Emit); // Before emitting lets backup state, so we can revert it back if there are declaration errors to handle emit and declaration errors correctly program.backupState(); var declDiagnostics; var reportDeclarationDiagnostics = function (d) { return (declDiagnostics || (declDiagnostics = [])).push(d); }; var outputFiles = []; var emitResult = ts.emitFilesAndReportErrors(program, reportDeclarationDiagnostics, /*write*/ undefined, /*reportSummary*/ undefined, function (name, text, writeByteOrderMark) { return outputFiles.push({ name: name, text: text, writeByteOrderMark: writeByteOrderMark }); }, cancellationToken, /*emitOnlyDts*/ false, customTransformers || ((_c = (_b = state.host).getCustomTransformers) === null || _c === void 0 ? void 0 : _c.call(_b, project))).emitResult; // Don't emit .d.ts if there are decl file errors if (declDiagnostics) { program.restoreState(); (_a = buildErrors(state, projectPath, program, config, declDiagnostics, BuildResultFlags.DeclarationEmitErrors, "Declaration file"), buildResult = _a.buildResult, step = _a.step); return { emitSkipped: true, diagnostics: emitResult.diagnostics }; } // Actual Emit var host = state.host, compilerHost = state.compilerHost; var resultFlags = BuildResultFlags.DeclarationOutputUnchanged; var newestDeclarationFileContentChangedTime = minimumDate; var anyDtsChanged = false; var emitterDiagnostics = ts.createDiagnosticCollection(); var emittedOutputs = new ts.Map(); outputFiles.forEach(function (_a) { var name = _a.name, text = _a.text, writeByteOrderMark = _a.writeByteOrderMark; var priorChangeTime; if (!anyDtsChanged && ts.isDeclarationFileName(name)) { // Check for unchanged .d.ts files if (host.fileExists(name) && state.readFileWithCache(name) === text) { priorChangeTime = host.getModifiedTime(name); } else { resultFlags &= ~BuildResultFlags.DeclarationOutputUnchanged; anyDtsChanged = true; } } emittedOutputs.set(toPath(state, name), name); ts.writeFile(writeFileCallback ? { writeFile: writeFileCallback } : compilerHost, emitterDiagnostics, name, text, writeByteOrderMark); if (priorChangeTime !== undefined) { newestDeclarationFileContentChangedTime = newer(priorChangeTime, newestDeclarationFileContentChangedTime); } }); finishEmit(emitterDiagnostics, emittedOutputs, newestDeclarationFileContentChangedTime, /*newestDeclarationFileContentChangedTimeIsMaximumDate*/ anyDtsChanged, outputFiles.length ? outputFiles[0].name : ts.getFirstProjectOutput(config, !host.useCaseSensitiveFileNames()), resultFlags); return emitResult; } function emitBuildInfo(writeFileCallback, cancellationToken) { ts.Debug.assertIsDefined(program); ts.Debug.assert(step === BuildStep.EmitBuildInfo); var emitResult = program.emitBuildInfo(writeFileCallback, cancellationToken); if (emitResult.diagnostics.length) { reportErrors(state, emitResult.diagnostics); state.diagnostics.set(projectPath, __spreadArray(__spreadArray([], state.diagnostics.get(projectPath), true), emitResult.diagnostics, true)); buildResult = BuildResultFlags.EmitErrors & buildResult; } if (emitResult.emittedFiles && state.write) { emitResult.emittedFiles.forEach(function (name) { return listEmittedFile(state, config, name); }); } afterProgramDone(state, program, config); step = BuildStep.QueueReferencingProjects; return emitResult; } function finishEmit(emitterDiagnostics, emittedOutputs, priorNewestUpdateTime, newestDeclarationFileContentChangedTimeIsMaximumDate, oldestOutputFileName, resultFlags) { var _a; var emitDiagnostics = emitterDiagnostics.getDiagnostics(); if (emitDiagnostics.length) { (_a = buildErrors(state, projectPath, program, config, emitDiagnostics, BuildResultFlags.EmitErrors, "Emit"), buildResult = _a.buildResult, step = _a.step); return emitDiagnostics; } if (state.write) { emittedOutputs.forEach(function (name) { return listEmittedFile(state, config, name); }); } // Update time stamps for rest of the outputs var newestDeclarationFileContentChangedTime = updateOutputTimestampsWorker(state, config, priorNewestUpdateTime, ts.Diagnostics.Updating_unchanged_output_timestamps_of_project_0, emittedOutputs); state.diagnostics.delete(projectPath); state.projectStatus.set(projectPath, { type: ts.UpToDateStatusType.UpToDate, newestDeclarationFileContentChangedTime: newestDeclarationFileContentChangedTimeIsMaximumDate ? maximumDate : newestDeclarationFileContentChangedTime, oldestOutputFileName: oldestOutputFileName }); afterProgramDone(state, program, config); step = BuildStep.QueueReferencingProjects; buildResult = resultFlags; return emitDiagnostics; } function emitBundle(writeFileCallback, customTransformers) { var _a, _b; ts.Debug.assert(kind === InvalidatedProjectKind.UpdateBundle); if (state.options.dry) { reportStatus(state, ts.Diagnostics.A_non_dry_build_would_update_output_of_project_0, project); buildResult = BuildResultFlags.Success; step = BuildStep.QueueReferencingProjects; return undefined; } if (state.options.verbose) reportStatus(state, ts.Diagnostics.Updating_output_of_project_0, project); // Update js, and source map var compilerHost = state.compilerHost; state.projectCompilerOptions = config.options; var outputFiles = ts.emitUsingBuildInfo(config, compilerHost, function (ref) { var refName = resolveProjectName(state, ref.path); return parseConfigFile(state, refName, toResolvedConfigFilePath(state, refName)); }, customTransformers || ((_b = (_a = state.host).getCustomTransformers) === null || _b === void 0 ? void 0 : _b.call(_a, project))); if (ts.isString(outputFiles)) { reportStatus(state, ts.Diagnostics.Cannot_update_output_of_project_0_because_there_was_error_reading_file_1, project, relName(state, outputFiles)); step = BuildStep.BuildInvalidatedProjectOfBundle; return invalidatedProjectOfBundle = createBuildOrUpdateInvalidedProject(InvalidatedProjectKind.Build, state, project, projectPath, projectIndex, config, buildOrder); } // Actual Emit ts.Debug.assert(!!outputFiles.length); var emitterDiagnostics = ts.createDiagnosticCollection(); var emittedOutputs = new ts.Map(); outputFiles.forEach(function (_a) { var name = _a.name, text = _a.text, writeByteOrderMark = _a.writeByteOrderMark; emittedOutputs.set(toPath(state, name), name); ts.writeFile(writeFileCallback ? { writeFile: writeFileCallback } : compilerHost, emitterDiagnostics, name, text, writeByteOrderMark); }); var emitDiagnostics = finishEmit(emitterDiagnostics, emittedOutputs, minimumDate, /*newestDeclarationFileContentChangedTimeIsMaximumDate*/ false, outputFiles[0].name, BuildResultFlags.DeclarationOutputUnchanged); return { emitSkipped: false, diagnostics: emitDiagnostics }; } function executeSteps(till, cancellationToken, writeFile, customTransformers) { while (step <= till && step < BuildStep.Done) { var currentStep = step; switch (step) { case BuildStep.CreateProgram: createProgram(); break; case BuildStep.SyntaxDiagnostics: getSyntaxDiagnostics(cancellationToken); break; case BuildStep.SemanticDiagnostics: getSemanticDiagnostics(cancellationToken); break; case BuildStep.Emit: emit(writeFile, cancellationToken, customTransformers); break; case BuildStep.EmitBuildInfo: emitBuildInfo(writeFile, cancellationToken); break; case BuildStep.EmitBundle: emitBundle(writeFile, customTransformers); break; case BuildStep.BuildInvalidatedProjectOfBundle: ts.Debug.checkDefined(invalidatedProjectOfBundle).done(cancellationToken, writeFile, customTransformers); step = BuildStep.Done; break; case BuildStep.QueueReferencingProjects: queueReferencingProjects(state, project, projectPath, projectIndex, config, buildOrder, ts.Debug.checkDefined(buildResult)); step++; break; // Should never be done case BuildStep.Done: default: ts.assertType(step); } ts.Debug.assert(step > currentStep); } } } function needsBuild(_a, status, config) { var options = _a.options; if (status.type !== ts.UpToDateStatusType.OutOfDateWithPrepend || options.force) return true; return config.fileNames.length === 0 || !!ts.getConfigFileParsingDiagnostics(config).length || !ts.isIncrementalCompilation(config.options); } function getNextInvalidatedProject(state, buildOrder, reportQueue) { if (!state.projectPendingBuild.size) return undefined; if (isCircularBuildOrder(buildOrder)) return undefined; if (state.currentInvalidatedProject) { // Only if same buildOrder the currentInvalidated project can be sent again return ts.arrayIsEqualTo(state.currentInvalidatedProject.buildOrder, buildOrder) ? state.currentInvalidatedProject : undefined; } var options = state.options, projectPendingBuild = state.projectPendingBuild; for (var projectIndex = 0; projectIndex < buildOrder.length; projectIndex++) { var project = buildOrder[projectIndex]; var projectPath = toResolvedConfigFilePath(state, project); var reloadLevel = state.projectPendingBuild.get(projectPath); if (reloadLevel === undefined) continue; if (reportQueue) { reportQueue = false; reportBuildQueue(state, buildOrder); } var config = parseConfigFile(state, project, projectPath); if (!config) { reportParseConfigFileDiagnostic(state, projectPath); projectPendingBuild.delete(projectPath); continue; } if (reloadLevel === ts.ConfigFileProgramReloadLevel.Full) { watchConfigFile(state, project, projectPath, config); watchExtendedConfigFiles(state, projectPath, config); watchWildCardDirectories(state, project, projectPath, config); watchInputFiles(state, project, projectPath, config); watchPackageJsonFiles(state, project, projectPath, config); } else if (reloadLevel === ts.ConfigFileProgramReloadLevel.Partial) { // Update file names config.fileNames = ts.getFileNamesFromConfigSpecs(config.options.configFile.configFileSpecs, ts.getDirectoryPath(project), config.options, state.parseConfigFileHost); ts.updateErrorForNoInputFiles(config.fileNames, project, config.options.configFile.configFileSpecs, config.errors, ts.canJsonReportNoInputFiles(config.raw)); watchInputFiles(state, project, projectPath, config); watchPackageJsonFiles(state, project, projectPath, config); } var status = getUpToDateStatus(state, config, projectPath); verboseReportProjectStatus(state, project, status); if (!options.force) { if (status.type === ts.UpToDateStatusType.UpToDate) { reportAndStoreErrors(state, projectPath, ts.getConfigFileParsingDiagnostics(config)); projectPendingBuild.delete(projectPath); // Up to date, skip if (options.dry) { // In a dry build, inform the user of this fact reportStatus(state, ts.Diagnostics.Project_0_is_up_to_date, project); } continue; } if (status.type === ts.UpToDateStatusType.UpToDateWithUpstreamTypes) { reportAndStoreErrors(state, projectPath, ts.getConfigFileParsingDiagnostics(config)); return createUpdateOutputFileStampsProject(state, project, projectPath, config, buildOrder); } } if (status.type === ts.UpToDateStatusType.UpstreamBlocked) { reportAndStoreErrors(state, projectPath, ts.getConfigFileParsingDiagnostics(config)); projectPendingBuild.delete(projectPath); if (options.verbose) { reportStatus(state, status.upstreamProjectBlocked ? ts.Diagnostics.Skipping_build_of_project_0_because_its_dependency_1_was_not_built : ts.Diagnostics.Skipping_build_of_project_0_because_its_dependency_1_has_errors, project, status.upstreamProjectName); } continue; } if (status.type === ts.UpToDateStatusType.ContainerOnly) { reportAndStoreErrors(state, projectPath, ts.getConfigFileParsingDiagnostics(config)); projectPendingBuild.delete(projectPath); // Do nothing continue; } return createBuildOrUpdateInvalidedProject(needsBuild(state, status, config) ? InvalidatedProjectKind.Build : InvalidatedProjectKind.UpdateBundle, state, project, projectPath, projectIndex, config, buildOrder); } return undefined; } function listEmittedFile(_a, proj, file) { var write = _a.write; if (write && proj.options.listEmittedFiles) { write("TSFILE: ".concat(file)); } } function getOldProgram(_a, proj, parsed) { var options = _a.options, builderPrograms = _a.builderPrograms, compilerHost = _a.compilerHost; if (options.force) return undefined; var value = builderPrograms.get(proj); if (value) return value; return ts.readBuilderProgram(parsed.options, compilerHost); } function afterProgramDone(state, program, config) { if (program) { if (program && state.write) ts.listFiles(program, state.write); if (state.host.afterProgramEmitAndDiagnostics) { state.host.afterProgramEmitAndDiagnostics(program); } program.releaseProgram(); } else if (state.host.afterEmitBundle) { state.host.afterEmitBundle(config); } state.projectCompilerOptions = state.baseCompilerOptions; } function buildErrors(state, resolvedPath, program, config, diagnostics, buildResult, errorType) { var canEmitBuildInfo = !(buildResult & BuildResultFlags.SyntaxErrors) && program && !ts.outFile(program.getCompilerOptions()); reportAndStoreErrors(state, resolvedPath, diagnostics); state.projectStatus.set(resolvedPath, { type: ts.UpToDateStatusType.Unbuildable, reason: "".concat(errorType, " errors") }); if (canEmitBuildInfo) return { buildResult: buildResult, step: BuildStep.EmitBuildInfo }; afterProgramDone(state, program, config); return { buildResult: buildResult, step: BuildStep.QueueReferencingProjects }; } function checkConfigFileUpToDateStatus(state, configFile, oldestOutputFileTime, oldestOutputFileName) { // Check tsconfig time var tsconfigTime = ts.getModifiedTime(state.host, configFile); if (oldestOutputFileTime < tsconfigTime) { return { type: ts.UpToDateStatusType.OutOfDateWithSelf, outOfDateOutputFileName: oldestOutputFileName, newerInputFileName: configFile }; } } function getUpToDateStatusWorker(state, project, resolvedPath) { var force = !!state.options.force; var newestInputFileName = undefined; var newestInputFileTime = minimumDate; var host = state.host; // Get timestamps of input files for (var _i = 0, _a = project.fileNames; _i < _a.length; _i++) { var inputFile = _a[_i]; if (!host.fileExists(inputFile)) { return { type: ts.UpToDateStatusType.Unbuildable, reason: "".concat(inputFile, " does not exist") }; } if (!force) { var inputTime = ts.getModifiedTime(host, inputFile); if (inputTime > newestInputFileTime) { newestInputFileName = inputFile; newestInputFileTime = inputTime; } } } // Container if no files are specified in the project if (!project.fileNames.length && !ts.canJsonReportNoInputFiles(project.raw)) { return { type: ts.UpToDateStatusType.ContainerOnly }; } // Collect the expected outputs of this project var outputs = ts.getAllProjectOutputs(project, !host.useCaseSensitiveFileNames()); // Now see if all outputs are newer than the newest input var oldestOutputFileName = "(none)"; var oldestOutputFileTime = maximumDate; var newestOutputFileName = "(none)"; var newestOutputFileTime = minimumDate; var missingOutputFileName; var newestDeclarationFileContentChangedTime = minimumDate; var isOutOfDateWithInputs = false; if (!force) { for (var _b = 0, outputs_1 = outputs; _b < outputs_1.length; _b++) { var output = outputs_1[_b]; // Output is missing; can stop checking // Don't immediately return because we can still be upstream-blocked, which is a higher-priority status if (!host.fileExists(output)) { missingOutputFileName = output; break; } var outputTime = ts.getModifiedTime(host, output); if (outputTime < oldestOutputFileTime) { oldestOutputFileTime = outputTime; oldestOutputFileName = output; } // If an output is older than the newest input, we can stop checking // Don't immediately return because we can still be upstream-blocked, which is a higher-priority status if (outputTime < newestInputFileTime) { isOutOfDateWithInputs = true; break; } if (outputTime > newestOutputFileTime) { newestOutputFileTime = outputTime; newestOutputFileName = output; } // Keep track of when the most recent time a .d.ts file was changed. // In addition to file timestamps, we also keep track of when a .d.ts file // had its file touched but not had its contents changed - this allows us // to skip a downstream typecheck if (ts.isDeclarationFileName(output)) { var outputModifiedTime = ts.getModifiedTime(host, output); newestDeclarationFileContentChangedTime = newer(newestDeclarationFileContentChangedTime, outputModifiedTime); } } } var pseudoUpToDate = false; var usesPrepend = false; var upstreamChangedProject; if (project.projectReferences) { state.projectStatus.set(resolvedPath, { type: ts.UpToDateStatusType.ComputingUpstream }); for (var _c = 0, _d = project.projectReferences; _c < _d.length; _c++) { var ref = _d[_c]; usesPrepend = usesPrepend || !!(ref.prepend); var resolvedRef = ts.resolveProjectReferencePath(ref); var resolvedRefPath = toResolvedConfigFilePath(state, resolvedRef); var refStatus = getUpToDateStatus(state, parseConfigFile(state, resolvedRef, resolvedRefPath), resolvedRefPath); // Its a circular reference ignore the status of this project if (refStatus.type === ts.UpToDateStatusType.ComputingUpstream || refStatus.type === ts.UpToDateStatusType.ContainerOnly) { // Container only ignore this project continue; } // An upstream project is blocked if (refStatus.type === ts.UpToDateStatusType.Unbuildable || refStatus.type === ts.UpToDateStatusType.UpstreamBlocked) { return { type: ts.UpToDateStatusType.UpstreamBlocked, upstreamProjectName: ref.path, upstreamProjectBlocked: refStatus.type === ts.UpToDateStatusType.UpstreamBlocked }; } // If the upstream project is out of date, then so are we (someone shouldn't have asked, though?) if (refStatus.type !== ts.UpToDateStatusType.UpToDate) { return { type: ts.UpToDateStatusType.UpstreamOutOfDate, upstreamProjectName: ref.path }; } // Check oldest output file name only if there is no missing output file name // (a check we will have skipped if this is a forced build) if (!force && !missingOutputFileName) { // If the upstream project's newest file is older than our oldest output, we // can't be out of date because of it if (refStatus.newestInputFileTime && refStatus.newestInputFileTime <= oldestOutputFileTime) { continue; } // If the upstream project has only change .d.ts files, and we've built // *after* those files, then we're "psuedo up to date" and eligible for a fast rebuild if (refStatus.newestDeclarationFileContentChangedTime && refStatus.newestDeclarationFileContentChangedTime <= oldestOutputFileTime) { pseudoUpToDate = true; upstreamChangedProject = ref.path; continue; } // We have an output older than an upstream output - we are out of date ts.Debug.assert(oldestOutputFileName !== undefined, "Should have an oldest output filename here"); return { type: ts.UpToDateStatusType.OutOfDateWithUpstream, outOfDateOutputFileName: oldestOutputFileName, newerProjectName: ref.path }; } } } if (missingOutputFileName !== undefined) { return { type: ts.UpToDateStatusType.OutputMissing, missingOutputFileName: missingOutputFileName }; } if (isOutOfDateWithInputs) { return { type: ts.UpToDateStatusType.OutOfDateWithSelf, outOfDateOutputFileName: oldestOutputFileName, newerInputFileName: newestInputFileName }; } else { // Check tsconfig time var configStatus = checkConfigFileUpToDateStatus(state, project.options.configFilePath, oldestOutputFileTime, oldestOutputFileName); if (configStatus) return configStatus; // Check extended config time var extendedConfigStatus = ts.forEach(project.options.configFile.extendedSourceFiles || ts.emptyArray, function (configFile) { return checkConfigFileUpToDateStatus(state, configFile, oldestOutputFileTime, oldestOutputFileName); }); if (extendedConfigStatus) return extendedConfigStatus; // Check package file time var dependentPackageFileStatus = ts.forEach(state.lastCachedPackageJsonLookups.get(resolvedPath) || ts.emptyArray, function (_a) { var path = _a[0]; return checkConfigFileUpToDateStatus(state, path, oldestOutputFileTime, oldestOutputFileName); }); if (dependentPackageFileStatus) return dependentPackageFileStatus; } if (!force && !state.buildInfoChecked.has(resolvedPath)) { state.buildInfoChecked.set(resolvedPath, true); var buildInfoPath = ts.getTsBuildInfoEmitOutputFilePath(project.options); if (buildInfoPath) { var value = state.readFileWithCache(buildInfoPath); var buildInfo = value && ts.getBuildInfo(value); if (buildInfo && (buildInfo.bundle || buildInfo.program) && buildInfo.version !== ts.version) { return { type: ts.UpToDateStatusType.TsVersionOutputOfDate, version: buildInfo.version }; } } } if (usesPrepend && pseudoUpToDate) { return { type: ts.UpToDateStatusType.OutOfDateWithPrepend, outOfDateOutputFileName: oldestOutputFileName, newerProjectName: upstreamChangedProject }; } // Up to date return { type: pseudoUpToDate ? ts.UpToDateStatusType.UpToDateWithUpstreamTypes : ts.UpToDateStatusType.UpToDate, newestDeclarationFileContentChangedTime: newestDeclarationFileContentChangedTime, newestInputFileTime: newestInputFileTime, newestOutputFileTime: newestOutputFileTime, newestInputFileName: newestInputFileName, newestOutputFileName: newestOutputFileName, oldestOutputFileName: oldestOutputFileName }; } function getUpToDateStatus(state, project, resolvedPath) { if (project === undefined) { return { type: ts.UpToDateStatusType.Unbuildable, reason: "File deleted mid-build" }; } var prior = state.projectStatus.get(resolvedPath); if (prior !== undefined) { return prior; } var actual = getUpToDateStatusWorker(state, project, resolvedPath); state.projectStatus.set(resolvedPath, actual); return actual; } function updateOutputTimestampsWorker(state, proj, priorNewestUpdateTime, verboseMessage, skipOutputs) { if (proj.options.noEmit) return priorNewestUpdateTime; var host = state.host; var outputs = ts.getAllProjectOutputs(proj, !host.useCaseSensitiveFileNames()); if (!skipOutputs || outputs.length !== skipOutputs.size) { var reportVerbose = !!state.options.verbose; var now = host.now ? host.now() : new Date(); for (var _i = 0, outputs_2 = outputs; _i < outputs_2.length; _i++) { var file = outputs_2[_i]; if (skipOutputs && skipOutputs.has(toPath(state, file))) { continue; } if (reportVerbose) { reportVerbose = false; reportStatus(state, verboseMessage, proj.options.configFilePath); } if (ts.isDeclarationFileName(file)) { priorNewestUpdateTime = newer(priorNewestUpdateTime, ts.getModifiedTime(host, file)); } host.setModifiedTime(file, now); } } return priorNewestUpdateTime; } function updateOutputTimestamps(state, proj, resolvedPath) { if (state.options.dry) { return reportStatus(state, ts.Diagnostics.A_non_dry_build_would_update_timestamps_for_output_of_project_0, proj.options.configFilePath); } var priorNewestUpdateTime = updateOutputTimestampsWorker(state, proj, minimumDate, ts.Diagnostics.Updating_output_timestamps_of_project_0); state.projectStatus.set(resolvedPath, { type: ts.UpToDateStatusType.UpToDate, newestDeclarationFileContentChangedTime: priorNewestUpdateTime, oldestOutputFileName: ts.getFirstProjectOutput(proj, !state.host.useCaseSensitiveFileNames()) }); } function queueReferencingProjects(state, project, projectPath, projectIndex, config, buildOrder, buildResult) { // Queue only if there are no errors if (buildResult & BuildResultFlags.AnyErrors) return; // Only composite projects can be referenced by other projects if (!config.options.composite) return; // Always use build order to queue projects for (var index = projectIndex + 1; index < buildOrder.length; index++) { var nextProject = buildOrder[index]; var nextProjectPath = toResolvedConfigFilePath(state, nextProject); if (state.projectPendingBuild.has(nextProjectPath)) continue; var nextProjectConfig = parseConfigFile(state, nextProject, nextProjectPath); if (!nextProjectConfig || !nextProjectConfig.projectReferences) continue; for (var _i = 0, _a = nextProjectConfig.projectReferences; _i < _a.length; _i++) { var ref = _a[_i]; var resolvedRefPath = resolveProjectName(state, ref.path); if (toResolvedConfigFilePath(state, resolvedRefPath) !== projectPath) continue; // If the project is referenced with prepend, always build downstream projects, // If declaration output is changed, build the project // otherwise mark the project UpToDateWithUpstreamTypes so it updates output time stamps var status = state.projectStatus.get(nextProjectPath); if (status) { switch (status.type) { case ts.UpToDateStatusType.UpToDate: if (buildResult & BuildResultFlags.DeclarationOutputUnchanged) { if (ref.prepend) { state.projectStatus.set(nextProjectPath, { type: ts.UpToDateStatusType.OutOfDateWithPrepend, outOfDateOutputFileName: status.oldestOutputFileName, newerProjectName: project }); } else { status.type = ts.UpToDateStatusType.UpToDateWithUpstreamTypes; } break; } // falls through case ts.UpToDateStatusType.UpToDateWithUpstreamTypes: case ts.UpToDateStatusType.OutOfDateWithPrepend: if (!(buildResult & BuildResultFlags.DeclarationOutputUnchanged)) { state.projectStatus.set(nextProjectPath, { type: ts.UpToDateStatusType.OutOfDateWithUpstream, outOfDateOutputFileName: status.type === ts.UpToDateStatusType.OutOfDateWithPrepend ? status.outOfDateOutputFileName : status.oldestOutputFileName, newerProjectName: project }); } break; case ts.UpToDateStatusType.UpstreamBlocked: if (toResolvedConfigFilePath(state, resolveProjectName(state, status.upstreamProjectName)) === projectPath) { clearProjectStatus(state, nextProjectPath); } break; } } addProjToQueue(state, nextProjectPath, ts.ConfigFileProgramReloadLevel.None); break; } } } function build(state, project, cancellationToken, writeFile, getCustomTransformers, onlyReferences) { var buildOrder = getBuildOrderFor(state, project, onlyReferences); if (!buildOrder) return ts.ExitStatus.InvalidProject_OutputsSkipped; setupInitialBuild(state, cancellationToken); var reportQueue = true; var successfulProjects = 0; while (true) { var invalidatedProject = getNextInvalidatedProject(state, buildOrder, reportQueue); if (!invalidatedProject) break; reportQueue = false; invalidatedProject.done(cancellationToken, writeFile, getCustomTransformers === null || getCustomTransformers === void 0 ? void 0 : getCustomTransformers(invalidatedProject.project)); if (!state.diagnostics.has(invalidatedProject.projectPath)) successfulProjects++; } disableCache(state); reportErrorSummary(state, buildOrder); startWatching(state, buildOrder); return isCircularBuildOrder(buildOrder) ? ts.ExitStatus.ProjectReferenceCycle_OutputsSkipped : !buildOrder.some(function (p) { return state.diagnostics.has(toResolvedConfigFilePath(state, p)); }) ? ts.ExitStatus.Success : successfulProjects ? ts.ExitStatus.DiagnosticsPresent_OutputsGenerated : ts.ExitStatus.DiagnosticsPresent_OutputsSkipped; } function clean(state, project, onlyReferences) { var buildOrder = getBuildOrderFor(state, project, onlyReferences); if (!buildOrder) return ts.ExitStatus.InvalidProject_OutputsSkipped; if (isCircularBuildOrder(buildOrder)) { reportErrors(state, buildOrder.circularDiagnostics); return ts.ExitStatus.ProjectReferenceCycle_OutputsSkipped; } var options = state.options, host = state.host; var filesToDelete = options.dry ? [] : undefined; for (var _i = 0, buildOrder_1 = buildOrder; _i < buildOrder_1.length; _i++) { var proj = buildOrder_1[_i]; var resolvedPath = toResolvedConfigFilePath(state, proj); var parsed = parseConfigFile(state, proj, resolvedPath); if (parsed === undefined) { // File has gone missing; fine to ignore here reportParseConfigFileDiagnostic(state, resolvedPath); continue; } var outputs = ts.getAllProjectOutputs(parsed, !host.useCaseSensitiveFileNames()); if (!outputs.length) continue; var inputFileNames = new ts.Set(parsed.fileNames.map(function (f) { return toPath(state, f); })); for (var _a = 0, outputs_3 = outputs; _a < outputs_3.length; _a++) { var output = outputs_3[_a]; // If output name is same as input file name, do not delete and ignore the error if (inputFileNames.has(toPath(state, output))) continue; if (host.fileExists(output)) { if (filesToDelete) { filesToDelete.push(output); } else { host.deleteFile(output); invalidateProject(state, resolvedPath, ts.ConfigFileProgramReloadLevel.None); } } } } if (filesToDelete) { reportStatus(state, ts.Diagnostics.A_non_dry_build_would_delete_the_following_files_Colon_0, filesToDelete.map(function (f) { return "\r\n * ".concat(f); }).join("")); } return ts.ExitStatus.Success; } function invalidateProject(state, resolved, reloadLevel) { // If host implements getParsedCommandLine, we cant get list of files from parseConfigFileHost if (state.host.getParsedCommandLine && reloadLevel === ts.ConfigFileProgramReloadLevel.Partial) { reloadLevel = ts.ConfigFileProgramReloadLevel.Full; } if (reloadLevel === ts.ConfigFileProgramReloadLevel.Full) { state.configFileCache.delete(resolved); state.buildOrder = undefined; } state.needsSummary = true; clearProjectStatus(state, resolved); addProjToQueue(state, resolved, reloadLevel); enableCache(state); } function invalidateProjectAndScheduleBuilds(state, resolvedPath, reloadLevel) { state.reportFileChangeDetected = true; invalidateProject(state, resolvedPath, reloadLevel); scheduleBuildInvalidatedProject(state); } function scheduleBuildInvalidatedProject(state) { var hostWithWatch = state.hostWithWatch; if (!hostWithWatch.setTimeout || !hostWithWatch.clearTimeout) { return; } if (state.timerToBuildInvalidatedProject) { hostWithWatch.clearTimeout(state.timerToBuildInvalidatedProject); } state.timerToBuildInvalidatedProject = hostWithWatch.setTimeout(buildNextInvalidatedProject, 250, state); } function buildNextInvalidatedProject(state) { state.timerToBuildInvalidatedProject = undefined; if (state.reportFileChangeDetected) { state.reportFileChangeDetected = false; state.projectErrorsReported.clear(); reportWatchStatus(state, ts.Diagnostics.File_change_detected_Starting_incremental_compilation); } var buildOrder = getBuildOrder(state); var invalidatedProject = getNextInvalidatedProject(state, buildOrder, /*reportQueue*/ false); if (invalidatedProject) { invalidatedProject.done(); if (state.projectPendingBuild.size) { // Schedule next project for build if (state.watch && !state.timerToBuildInvalidatedProject) { scheduleBuildInvalidatedProject(state); } return; } } disableCache(state); reportErrorSummary(state, buildOrder); } function watchConfigFile(state, resolved, resolvedPath, parsed) { if (!state.watch || state.allWatchedConfigFiles.has(resolvedPath)) return; state.allWatchedConfigFiles.set(resolvedPath, state.watchFile(resolved, function () { invalidateProjectAndScheduleBuilds(state, resolvedPath, ts.ConfigFileProgramReloadLevel.Full); }, ts.PollingInterval.High, parsed === null || parsed === void 0 ? void 0 : parsed.watchOptions, ts.WatchType.ConfigFile, resolved)); } function watchExtendedConfigFiles(state, resolvedPath, parsed) { ts.updateSharedExtendedConfigFileWatcher(resolvedPath, parsed === null || parsed === void 0 ? void 0 : parsed.options, state.allWatchedExtendedConfigFiles, function (extendedConfigFileName, extendedConfigFilePath) { return state.watchFile(extendedConfigFileName, function () { var _a; return (_a = state.allWatchedExtendedConfigFiles.get(extendedConfigFilePath)) === null || _a === void 0 ? void 0 : _a.projects.forEach(function (projectConfigFilePath) { return invalidateProjectAndScheduleBuilds(state, projectConfigFilePath, ts.ConfigFileProgramReloadLevel.Full); }); }, ts.PollingInterval.High, parsed === null || parsed === void 0 ? void 0 : parsed.watchOptions, ts.WatchType.ExtendedConfigFile); }, function (fileName) { return toPath(state, fileName); }); } function watchWildCardDirectories(state, resolved, resolvedPath, parsed) { if (!state.watch) return; ts.updateWatchingWildcardDirectories(getOrCreateValueMapFromConfigFileMap(state.allWatchedWildcardDirectories, resolvedPath), new ts.Map(ts.getEntries(parsed.wildcardDirectories)), function (dir, flags) { return state.watchDirectory(dir, function (fileOrDirectory) { var _a; if (ts.isIgnoredFileFromWildCardWatching({ watchedDirPath: toPath(state, dir), fileOrDirectory: fileOrDirectory, fileOrDirectoryPath: toPath(state, fileOrDirectory), configFileName: resolved, currentDirectory: state.currentDirectory, options: parsed.options, program: state.builderPrograms.get(resolvedPath) || ((_a = getCachedParsedConfigFile(state, resolvedPath)) === null || _a === void 0 ? void 0 : _a.fileNames), useCaseSensitiveFileNames: state.parseConfigFileHost.useCaseSensitiveFileNames, writeLog: function (s) { return state.writeLog(s); }, toPath: function (fileName) { return toPath(state, fileName); } })) return; invalidateProjectAndScheduleBuilds(state, resolvedPath, ts.ConfigFileProgramReloadLevel.Partial); }, flags, parsed === null || parsed === void 0 ? void 0 : parsed.watchOptions, ts.WatchType.WildcardDirectory, resolved); }); } function watchInputFiles(state, resolved, resolvedPath, parsed) { if (!state.watch) return; ts.mutateMap(getOrCreateValueMapFromConfigFileMap(state.allWatchedInputFiles, resolvedPath), ts.arrayToMap(parsed.fileNames, function (fileName) { return toPath(state, fileName); }), { createNewValue: function (_path, input) { return state.watchFile(input, function () { return invalidateProjectAndScheduleBuilds(state, resolvedPath, ts.ConfigFileProgramReloadLevel.None); }, ts.PollingInterval.Low, parsed === null || parsed === void 0 ? void 0 : parsed.watchOptions, ts.WatchType.SourceFile, resolved); }, onDeleteValue: ts.closeFileWatcher, }); } function watchPackageJsonFiles(state, resolved, resolvedPath, parsed) { if (!state.watch || !state.lastCachedPackageJsonLookups) return; ts.mutateMap(getOrCreateValueMapFromConfigFileMap(state.allWatchedPackageJsonFiles, resolvedPath), new ts.Map(state.lastCachedPackageJsonLookups.get(resolvedPath)), { createNewValue: function (path, _input) { return state.watchFile(path, function () { return invalidateProjectAndScheduleBuilds(state, resolvedPath, ts.ConfigFileProgramReloadLevel.None); }, ts.PollingInterval.High, parsed === null || parsed === void 0 ? void 0 : parsed.watchOptions, ts.WatchType.PackageJson, resolved); }, onDeleteValue: ts.closeFileWatcher, }); } function startWatching(state, buildOrder) { if (!state.watchAllProjectsPending) return; state.watchAllProjectsPending = false; for (var _i = 0, _a = getBuildOrderFromAnyBuildOrder(buildOrder); _i < _a.length; _i++) { var resolved = _a[_i]; var resolvedPath = toResolvedConfigFilePath(state, resolved); var cfg = parseConfigFile(state, resolved, resolvedPath); // Watch this file watchConfigFile(state, resolved, resolvedPath, cfg); watchExtendedConfigFiles(state, resolvedPath, cfg); if (cfg) { // Update watchers for wildcard directories watchWildCardDirectories(state, resolved, resolvedPath, cfg); // Watch input files watchInputFiles(state, resolved, resolvedPath, cfg); // Watch package json files watchPackageJsonFiles(state, resolved, resolvedPath, cfg); } } } function stopWatching(state) { ts.clearMap(state.allWatchedConfigFiles, ts.closeFileWatcher); ts.clearMap(state.allWatchedExtendedConfigFiles, ts.closeFileWatcherOf); ts.clearMap(state.allWatchedWildcardDirectories, function (watchedWildcardDirectories) { return ts.clearMap(watchedWildcardDirectories, ts.closeFileWatcherOf); }); ts.clearMap(state.allWatchedInputFiles, function (watchedWildcardDirectories) { return ts.clearMap(watchedWildcardDirectories, ts.closeFileWatcher); }); ts.clearMap(state.allWatchedPackageJsonFiles, function (watchedPacageJsonFiles) { return ts.clearMap(watchedPacageJsonFiles, ts.closeFileWatcher); }); } function createSolutionBuilderWorker(watch, hostOrHostWithWatch, rootNames, options, baseWatchOptions) { var state = createSolutionBuilderState(watch, hostOrHostWithWatch, rootNames, options, baseWatchOptions); return { build: function (project, cancellationToken, writeFile, getCustomTransformers) { return build(state, project, cancellationToken, writeFile, getCustomTransformers); }, clean: function (project) { return clean(state, project); }, buildReferences: function (project, cancellationToken, writeFile, getCustomTransformers) { return build(state, project, cancellationToken, writeFile, getCustomTransformers, /*onlyReferences*/ true); }, cleanReferences: function (project) { return clean(state, project, /*onlyReferences*/ true); }, getNextInvalidatedProject: function (cancellationToken) { setupInitialBuild(state, cancellationToken); return getNextInvalidatedProject(state, getBuildOrder(state), /*reportQueue*/ false); }, getBuildOrder: function () { return getBuildOrder(state); }, getUpToDateStatusOfProject: function (project) { var configFileName = resolveProjectName(state, project); var configFilePath = toResolvedConfigFilePath(state, configFileName); return getUpToDateStatus(state, parseConfigFile(state, configFileName, configFilePath), configFilePath); }, invalidateProject: function (configFilePath, reloadLevel) { return invalidateProject(state, configFilePath, reloadLevel || ts.ConfigFileProgramReloadLevel.None); }, buildNextInvalidatedProject: function () { return buildNextInvalidatedProject(state); }, getAllParsedConfigs: function () { return ts.arrayFrom(ts.mapDefinedIterator(state.configFileCache.values(), function (config) { return isParsedCommandLine(config) ? config : undefined; })); }, close: function () { return stopWatching(state); }, }; } function relName(state, path) { return ts.convertToRelativePath(path, state.currentDirectory, function (f) { return state.getCanonicalFileName(f); }); } function reportStatus(state, message) { var args = []; for (var _i = 2; _i < arguments.length; _i++) { args[_i - 2] = arguments[_i]; } state.host.reportSolutionBuilderStatus(ts.createCompilerDiagnostic.apply(void 0, __spreadArray([message], args, false))); } function reportWatchStatus(state, message) { var _a, _b; var args = []; for (var _i = 2; _i < arguments.length; _i++) { args[_i - 2] = arguments[_i]; } (_b = (_a = state.hostWithWatch).onWatchStatusChange) === null || _b === void 0 ? void 0 : _b.call(_a, ts.createCompilerDiagnostic.apply(void 0, __spreadArray([message], args, false)), state.host.getNewLine(), state.baseCompilerOptions); } function reportErrors(_a, errors) { var host = _a.host; errors.forEach(function (err) { return host.reportDiagnostic(err); }); } function reportAndStoreErrors(state, proj, errors) { reportErrors(state, errors); state.projectErrorsReported.set(proj, true); if (errors.length) { state.diagnostics.set(proj, errors); } } function reportParseConfigFileDiagnostic(state, proj) { reportAndStoreErrors(state, proj, [state.configFileCache.get(proj)]); } function reportErrorSummary(state, buildOrder) { if (!state.needsSummary) return; state.needsSummary = false; var canReportSummary = state.watch || !!state.host.reportErrorSummary; var diagnostics = state.diagnostics; var totalErrors = 0; var filesInError = []; if (isCircularBuildOrder(buildOrder)) { reportBuildQueue(state, buildOrder.buildOrder); reportErrors(state, buildOrder.circularDiagnostics); if (canReportSummary) totalErrors += ts.getErrorCountForSummary(buildOrder.circularDiagnostics); if (canReportSummary) filesInError = __spreadArray(__spreadArray([], filesInError, true), ts.getFilesInErrorForSummary(buildOrder.circularDiagnostics), true); } else { // Report errors from the other projects buildOrder.forEach(function (project) { var projectPath = toResolvedConfigFilePath(state, project); if (!state.projectErrorsReported.has(projectPath)) { reportErrors(state, diagnostics.get(projectPath) || ts.emptyArray); } }); if (canReportSummary) diagnostics.forEach(function (singleProjectErrors) { return totalErrors += ts.getErrorCountForSummary(singleProjectErrors); }); if (canReportSummary) diagnostics.forEach(function (singleProjectErrors) { return __spreadArray(__spreadArray([], filesInError, true), ts.getFilesInErrorForSummary(singleProjectErrors), true); }); } if (state.watch) { reportWatchStatus(state, ts.getWatchErrorSummaryDiagnosticMessage(totalErrors), totalErrors); } else if (state.host.reportErrorSummary) { state.host.reportErrorSummary(totalErrors, filesInError); } } /** * Report the build ordering inferred from the current project graph if we're in verbose mode */ function reportBuildQueue(state, buildQueue) { if (state.options.verbose) { reportStatus(state, ts.Diagnostics.Projects_in_this_build_Colon_0, buildQueue.map(function (s) { return "\r\n * " + relName(state, s); }).join("")); } } function reportUpToDateStatus(state, configFileName, status) { if (state.options.force && (status.type === ts.UpToDateStatusType.UpToDate || status.type === ts.UpToDateStatusType.UpToDateWithUpstreamTypes)) { return reportStatus(state, ts.Diagnostics.Project_0_is_being_forcibly_rebuilt, relName(state, configFileName)); } switch (status.type) { case ts.UpToDateStatusType.OutOfDateWithSelf: return reportStatus(state, ts.Diagnostics.Project_0_is_out_of_date_because_oldest_output_1_is_older_than_newest_input_2, relName(state, configFileName), relName(state, status.outOfDateOutputFileName), relName(state, status.newerInputFileName)); case ts.UpToDateStatusType.OutOfDateWithUpstream: return reportStatus(state, ts.Diagnostics.Project_0_is_out_of_date_because_oldest_output_1_is_older_than_newest_input_2, relName(state, configFileName), relName(state, status.outOfDateOutputFileName), relName(state, status.newerProjectName)); case ts.UpToDateStatusType.OutputMissing: return reportStatus(state, ts.Diagnostics.Project_0_is_out_of_date_because_output_file_1_does_not_exist, relName(state, configFileName), relName(state, status.missingOutputFileName)); case ts.UpToDateStatusType.UpToDate: if (status.newestInputFileTime !== undefined) { return reportStatus(state, ts.Diagnostics.Project_0_is_up_to_date_because_newest_input_1_is_older_than_oldest_output_2, relName(state, configFileName), relName(state, status.newestInputFileName || ""), relName(state, status.oldestOutputFileName || "")); } // Don't report anything for "up to date because it was already built" -- too verbose break; case ts.UpToDateStatusType.OutOfDateWithPrepend: return reportStatus(state, ts.Diagnostics.Project_0_is_out_of_date_because_output_of_its_dependency_1_has_changed, relName(state, configFileName), relName(state, status.newerProjectName)); case ts.UpToDateStatusType.UpToDateWithUpstreamTypes: return reportStatus(state, ts.Diagnostics.Project_0_is_up_to_date_with_d_ts_files_from_its_dependencies, relName(state, configFileName)); case ts.UpToDateStatusType.UpstreamOutOfDate: return reportStatus(state, ts.Diagnostics.Project_0_is_out_of_date_because_its_dependency_1_is_out_of_date, relName(state, configFileName), relName(state, status.upstreamProjectName)); case ts.UpToDateStatusType.UpstreamBlocked: return reportStatus(state, status.upstreamProjectBlocked ? ts.Diagnostics.Project_0_can_t_be_built_because_its_dependency_1_was_not_built : ts.Diagnostics.Project_0_can_t_be_built_because_its_dependency_1_has_errors, relName(state, configFileName), relName(state, status.upstreamProjectName)); case ts.UpToDateStatusType.Unbuildable: return reportStatus(state, ts.Diagnostics.Failed_to_parse_file_0_Colon_1, relName(state, configFileName), status.reason); case ts.UpToDateStatusType.TsVersionOutputOfDate: return reportStatus(state, ts.Diagnostics.Project_0_is_out_of_date_because_output_for_it_was_generated_with_version_1_that_differs_with_current_version_2, relName(state, configFileName), status.version, ts.version); case ts.UpToDateStatusType.ContainerOnly: // Don't report status on "solution" projects // falls through case ts.UpToDateStatusType.ComputingUpstream: // Should never leak from getUptoDateStatusWorker break; default: ts.assertType(status); } } /** * Report the up-to-date status of a project if we're in verbose mode */ function verboseReportProjectStatus(state, configFileName, status) { if (state.options.verbose) { reportUpToDateStatus(state, configFileName, status); } } })(ts || (ts = {})); var ts; (function (ts) { var ScriptSnapshot; (function (ScriptSnapshot) { var StringScriptSnapshot = /** @class */ (function () { function StringScriptSnapshot(text) { this.text = text; } StringScriptSnapshot.prototype.getText = function (start, end) { return start === 0 && end === this.text.length ? this.text : this.text.substring(start, end); }; StringScriptSnapshot.prototype.getLength = function () { return this.text.length; }; StringScriptSnapshot.prototype.getChangeRange = function () { // Text-based snapshots do not support incremental parsing. Return undefined // to signal that to the caller. return undefined; }; return StringScriptSnapshot; }()); function fromString(text) { return new StringScriptSnapshot(text); } ScriptSnapshot.fromString = fromString; })(ScriptSnapshot = ts.ScriptSnapshot || (ts.ScriptSnapshot = {})); /* @internal */ var PackageJsonDependencyGroup; (function (PackageJsonDependencyGroup) { PackageJsonDependencyGroup[PackageJsonDependencyGroup["Dependencies"] = 1] = "Dependencies"; PackageJsonDependencyGroup[PackageJsonDependencyGroup["DevDependencies"] = 2] = "DevDependencies"; PackageJsonDependencyGroup[PackageJsonDependencyGroup["PeerDependencies"] = 4] = "PeerDependencies"; PackageJsonDependencyGroup[PackageJsonDependencyGroup["OptionalDependencies"] = 8] = "OptionalDependencies"; PackageJsonDependencyGroup[PackageJsonDependencyGroup["All"] = 15] = "All"; })(PackageJsonDependencyGroup = ts.PackageJsonDependencyGroup || (ts.PackageJsonDependencyGroup = {})); /* @internal */ var PackageJsonAutoImportPreference; (function (PackageJsonAutoImportPreference) { PackageJsonAutoImportPreference[PackageJsonAutoImportPreference["Off"] = 0] = "Off"; PackageJsonAutoImportPreference[PackageJsonAutoImportPreference["On"] = 1] = "On"; PackageJsonAutoImportPreference[PackageJsonAutoImportPreference["Auto"] = 2] = "Auto"; })(PackageJsonAutoImportPreference = ts.PackageJsonAutoImportPreference || (ts.PackageJsonAutoImportPreference = {})); var LanguageServiceMode; (function (LanguageServiceMode) { LanguageServiceMode[LanguageServiceMode["Semantic"] = 0] = "Semantic"; LanguageServiceMode[LanguageServiceMode["PartialSemantic"] = 1] = "PartialSemantic"; LanguageServiceMode[LanguageServiceMode["Syntactic"] = 2] = "Syntactic"; })(LanguageServiceMode = ts.LanguageServiceMode || (ts.LanguageServiceMode = {})); /* @internal */ ts.emptyOptions = {}; var SemanticClassificationFormat; (function (SemanticClassificationFormat) { SemanticClassificationFormat["Original"] = "original"; SemanticClassificationFormat["TwentyTwenty"] = "2020"; })(SemanticClassificationFormat = ts.SemanticClassificationFormat || (ts.SemanticClassificationFormat = {})); var CompletionTriggerKind; (function (CompletionTriggerKind) { /** Completion was triggered by typing an identifier, manual invocation (e.g Ctrl+Space) or via API. */ CompletionTriggerKind[CompletionTriggerKind["Invoked"] = 1] = "Invoked"; /** Completion was triggered by a trigger character. */ CompletionTriggerKind[CompletionTriggerKind["TriggerCharacter"] = 2] = "TriggerCharacter"; /** Completion was re-triggered as the current completion list is incomplete. */ CompletionTriggerKind[CompletionTriggerKind["TriggerForIncompleteCompletions"] = 3] = "TriggerForIncompleteCompletions"; })(CompletionTriggerKind = ts.CompletionTriggerKind || (ts.CompletionTriggerKind = {})); var InlayHintKind; (function (InlayHintKind) { InlayHintKind["Type"] = "Type"; InlayHintKind["Parameter"] = "Parameter"; InlayHintKind["Enum"] = "Enum"; })(InlayHintKind = ts.InlayHintKind || (ts.InlayHintKind = {})); var HighlightSpanKind; (function (HighlightSpanKind) { HighlightSpanKind["none"] = "none"; HighlightSpanKind["definition"] = "definition"; HighlightSpanKind["reference"] = "reference"; HighlightSpanKind["writtenReference"] = "writtenReference"; })(HighlightSpanKind = ts.HighlightSpanKind || (ts.HighlightSpanKind = {})); var IndentStyle; (function (IndentStyle) { IndentStyle[IndentStyle["None"] = 0] = "None"; IndentStyle[IndentStyle["Block"] = 1] = "Block"; IndentStyle[IndentStyle["Smart"] = 2] = "Smart"; })(IndentStyle = ts.IndentStyle || (ts.IndentStyle = {})); var SemicolonPreference; (function (SemicolonPreference) { SemicolonPreference["Ignore"] = "ignore"; SemicolonPreference["Insert"] = "insert"; SemicolonPreference["Remove"] = "remove"; })(SemicolonPreference = ts.SemicolonPreference || (ts.SemicolonPreference = {})); function getDefaultFormatCodeSettings(newLineCharacter) { return { indentSize: 4, tabSize: 4, newLineCharacter: newLineCharacter || "\n", convertTabsToSpaces: true, indentStyle: IndentStyle.Smart, insertSpaceAfterConstructor: false, insertSpaceAfterCommaDelimiter: true, insertSpaceAfterSemicolonInForStatements: true, insertSpaceBeforeAndAfterBinaryOperators: true, insertSpaceAfterKeywordsInControlFlowStatements: true, insertSpaceAfterFunctionKeywordForAnonymousFunctions: false, insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis: false, insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets: false, insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces: true, insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces: false, insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces: false, insertSpaceBeforeFunctionParenthesis: false, placeOpenBraceOnNewLineForFunctions: false, placeOpenBraceOnNewLineForControlBlocks: false, semicolons: SemicolonPreference.Ignore, trimTrailingWhitespace: true }; } ts.getDefaultFormatCodeSettings = getDefaultFormatCodeSettings; /* @internal */ ts.testFormatSettings = getDefaultFormatCodeSettings("\n"); var SymbolDisplayPartKind; (function (SymbolDisplayPartKind) { SymbolDisplayPartKind[SymbolDisplayPartKind["aliasName"] = 0] = "aliasName"; SymbolDisplayPartKind[SymbolDisplayPartKind["className"] = 1] = "className"; SymbolDisplayPartKind[SymbolDisplayPartKind["enumName"] = 2] = "enumName"; SymbolDisplayPartKind[SymbolDisplayPartKind["fieldName"] = 3] = "fieldName"; SymbolDisplayPartKind[SymbolDisplayPartKind["interfaceName"] = 4] = "interfaceName"; SymbolDisplayPartKind[SymbolDisplayPartKind["keyword"] = 5] = "keyword"; SymbolDisplayPartKind[SymbolDisplayPartKind["lineBreak"] = 6] = "lineBreak"; SymbolDisplayPartKind[SymbolDisplayPartKind["numericLiteral"] = 7] = "numericLiteral"; SymbolDisplayPartKind[SymbolDisplayPartKind["stringLiteral"] = 8] = "stringLiteral"; SymbolDisplayPartKind[SymbolDisplayPartKind["localName"] = 9] = "localName"; SymbolDisplayPartKind[SymbolDisplayPartKind["methodName"] = 10] = "methodName"; SymbolDisplayPartKind[SymbolDisplayPartKind["moduleName"] = 11] = "moduleName"; SymbolDisplayPartKind[SymbolDisplayPartKind["operator"] = 12] = "operator"; SymbolDisplayPartKind[SymbolDisplayPartKind["parameterName"] = 13] = "parameterName"; SymbolDisplayPartKind[SymbolDisplayPartKind["propertyName"] = 14] = "propertyName"; SymbolDisplayPartKind[SymbolDisplayPartKind["punctuation"] = 15] = "punctuation"; SymbolDisplayPartKind[SymbolDisplayPartKind["space"] = 16] = "space"; SymbolDisplayPartKind[SymbolDisplayPartKind["text"] = 17] = "text"; SymbolDisplayPartKind[SymbolDisplayPartKind["typeParameterName"] = 18] = "typeParameterName"; SymbolDisplayPartKind[SymbolDisplayPartKind["enumMemberName"] = 19] = "enumMemberName"; SymbolDisplayPartKind[SymbolDisplayPartKind["functionName"] = 20] = "functionName"; SymbolDisplayPartKind[SymbolDisplayPartKind["regularExpressionLiteral"] = 21] = "regularExpressionLiteral"; SymbolDisplayPartKind[SymbolDisplayPartKind["link"] = 22] = "link"; SymbolDisplayPartKind[SymbolDisplayPartKind["linkName"] = 23] = "linkName"; SymbolDisplayPartKind[SymbolDisplayPartKind["linkText"] = 24] = "linkText"; })(SymbolDisplayPartKind = ts.SymbolDisplayPartKind || (ts.SymbolDisplayPartKind = {})); // Do not change existing values, as they exist in telemetry. var CompletionInfoFlags; (function (CompletionInfoFlags) { CompletionInfoFlags[CompletionInfoFlags["None"] = 0] = "None"; CompletionInfoFlags[CompletionInfoFlags["MayIncludeAutoImports"] = 1] = "MayIncludeAutoImports"; CompletionInfoFlags[CompletionInfoFlags["IsImportStatementCompletion"] = 2] = "IsImportStatementCompletion"; CompletionInfoFlags[CompletionInfoFlags["IsContinuation"] = 4] = "IsContinuation"; CompletionInfoFlags[CompletionInfoFlags["ResolvedModuleSpecifiers"] = 8] = "ResolvedModuleSpecifiers"; CompletionInfoFlags[CompletionInfoFlags["ResolvedModuleSpecifiersBeyondLimit"] = 16] = "ResolvedModuleSpecifiersBeyondLimit"; CompletionInfoFlags[CompletionInfoFlags["MayIncludeMethodSnippets"] = 32] = "MayIncludeMethodSnippets"; })(CompletionInfoFlags = ts.CompletionInfoFlags || (ts.CompletionInfoFlags = {})); var OutliningSpanKind; (function (OutliningSpanKind) { /** Single or multi-line comments */ OutliningSpanKind["Comment"] = "comment"; /** Sections marked by '// #region' and '// #endregion' comments */ OutliningSpanKind["Region"] = "region"; /** Declarations and expressions */ OutliningSpanKind["Code"] = "code"; /** Contiguous blocks of import declarations */ OutliningSpanKind["Imports"] = "imports"; })(OutliningSpanKind = ts.OutliningSpanKind || (ts.OutliningSpanKind = {})); var OutputFileType; (function (OutputFileType) { OutputFileType[OutputFileType["JavaScript"] = 0] = "JavaScript"; OutputFileType[OutputFileType["SourceMap"] = 1] = "SourceMap"; OutputFileType[OutputFileType["Declaration"] = 2] = "Declaration"; })(OutputFileType = ts.OutputFileType || (ts.OutputFileType = {})); var EndOfLineState; (function (EndOfLineState) { EndOfLineState[EndOfLineState["None"] = 0] = "None"; EndOfLineState[EndOfLineState["InMultiLineCommentTrivia"] = 1] = "InMultiLineCommentTrivia"; EndOfLineState[EndOfLineState["InSingleQuoteStringLiteral"] = 2] = "InSingleQuoteStringLiteral"; EndOfLineState[EndOfLineState["InDoubleQuoteStringLiteral"] = 3] = "InDoubleQuoteStringLiteral"; EndOfLineState[EndOfLineState["InTemplateHeadOrNoSubstitutionTemplate"] = 4] = "InTemplateHeadOrNoSubstitutionTemplate"; EndOfLineState[EndOfLineState["InTemplateMiddleOrTail"] = 5] = "InTemplateMiddleOrTail"; EndOfLineState[EndOfLineState["InTemplateSubstitutionPosition"] = 6] = "InTemplateSubstitutionPosition"; })(EndOfLineState = ts.EndOfLineState || (ts.EndOfLineState = {})); var TokenClass; (function (TokenClass) { TokenClass[TokenClass["Punctuation"] = 0] = "Punctuation"; TokenClass[TokenClass["Keyword"] = 1] = "Keyword"; TokenClass[TokenClass["Operator"] = 2] = "Operator"; TokenClass[TokenClass["Comment"] = 3] = "Comment"; TokenClass[TokenClass["Whitespace"] = 4] = "Whitespace"; TokenClass[TokenClass["Identifier"] = 5] = "Identifier"; TokenClass[TokenClass["NumberLiteral"] = 6] = "NumberLiteral"; TokenClass[TokenClass["BigIntLiteral"] = 7] = "BigIntLiteral"; TokenClass[TokenClass["StringLiteral"] = 8] = "StringLiteral"; TokenClass[TokenClass["RegExpLiteral"] = 9] = "RegExpLiteral"; })(TokenClass = ts.TokenClass || (ts.TokenClass = {})); var ScriptElementKind; (function (ScriptElementKind) { ScriptElementKind["unknown"] = ""; ScriptElementKind["warning"] = "warning"; /** predefined type (void) or keyword (class) */ ScriptElementKind["keyword"] = "keyword"; /** top level script node */ ScriptElementKind["scriptElement"] = "script"; /** module foo {} */ ScriptElementKind["moduleElement"] = "module"; /** class X {} */ ScriptElementKind["classElement"] = "class"; /** var x = class X {} */ ScriptElementKind["localClassElement"] = "local class"; /** interface Y {} */ ScriptElementKind["interfaceElement"] = "interface"; /** type T = ... */ ScriptElementKind["typeElement"] = "type"; /** enum E */ ScriptElementKind["enumElement"] = "enum"; ScriptElementKind["enumMemberElement"] = "enum member"; /** * Inside module and script only * const v = .. */ ScriptElementKind["variableElement"] = "var"; /** Inside function */ ScriptElementKind["localVariableElement"] = "local var"; /** * Inside module and script only * function f() { } */ ScriptElementKind["functionElement"] = "function"; /** Inside function */ ScriptElementKind["localFunctionElement"] = "local function"; /** class X { [public|private]* foo() {} } */ ScriptElementKind["memberFunctionElement"] = "method"; /** class X { [public|private]* [get|set] foo:number; } */ ScriptElementKind["memberGetAccessorElement"] = "getter"; ScriptElementKind["memberSetAccessorElement"] = "setter"; /** * class X { [public|private]* foo:number; } * interface Y { foo:number; } */ ScriptElementKind["memberVariableElement"] = "property"; /** * class X { constructor() { } } * class X { static { } } */ ScriptElementKind["constructorImplementationElement"] = "constructor"; /** interface Y { ():number; } */ ScriptElementKind["callSignatureElement"] = "call"; /** interface Y { []:number; } */ ScriptElementKind["indexSignatureElement"] = "index"; /** interface Y { new():Y; } */ ScriptElementKind["constructSignatureElement"] = "construct"; /** function foo(*Y*: string) */ ScriptElementKind["parameterElement"] = "parameter"; ScriptElementKind["typeParameterElement"] = "type parameter"; ScriptElementKind["primitiveType"] = "primitive type"; ScriptElementKind["label"] = "label"; ScriptElementKind["alias"] = "alias"; ScriptElementKind["constElement"] = "const"; ScriptElementKind["letElement"] = "let"; ScriptElementKind["directory"] = "directory"; ScriptElementKind["externalModuleName"] = "external module name"; /** * * @deprecated */ ScriptElementKind["jsxAttribute"] = "JSX attribute"; /** String literal */ ScriptElementKind["string"] = "string"; /** Jsdoc @link: in `{@link C link text}`, the before and after text "{@link " and "}" */ ScriptElementKind["link"] = "link"; /** Jsdoc @link: in `{@link C link text}`, the entity name "C" */ ScriptElementKind["linkName"] = "link name"; /** Jsdoc @link: in `{@link C link text}`, the link text "link text" */ ScriptElementKind["linkText"] = "link text"; })(ScriptElementKind = ts.ScriptElementKind || (ts.ScriptElementKind = {})); var ScriptElementKindModifier; (function (ScriptElementKindModifier) { ScriptElementKindModifier["none"] = ""; ScriptElementKindModifier["publicMemberModifier"] = "public"; ScriptElementKindModifier["privateMemberModifier"] = "private"; ScriptElementKindModifier["protectedMemberModifier"] = "protected"; ScriptElementKindModifier["exportedModifier"] = "export"; ScriptElementKindModifier["ambientModifier"] = "declare"; ScriptElementKindModifier["staticModifier"] = "static"; ScriptElementKindModifier["abstractModifier"] = "abstract"; ScriptElementKindModifier["optionalModifier"] = "optional"; ScriptElementKindModifier["deprecatedModifier"] = "deprecated"; ScriptElementKindModifier["dtsModifier"] = ".d.ts"; ScriptElementKindModifier["tsModifier"] = ".ts"; ScriptElementKindModifier["tsxModifier"] = ".tsx"; ScriptElementKindModifier["jsModifier"] = ".js"; ScriptElementKindModifier["jsxModifier"] = ".jsx"; ScriptElementKindModifier["jsonModifier"] = ".json"; ScriptElementKindModifier["dmtsModifier"] = ".d.mts"; ScriptElementKindModifier["mtsModifier"] = ".mts"; ScriptElementKindModifier["mjsModifier"] = ".mjs"; ScriptElementKindModifier["dctsModifier"] = ".d.cts"; ScriptElementKindModifier["ctsModifier"] = ".cts"; ScriptElementKindModifier["cjsModifier"] = ".cjs"; })(ScriptElementKindModifier = ts.ScriptElementKindModifier || (ts.ScriptElementKindModifier = {})); var ClassificationTypeNames; (function (ClassificationTypeNames) { ClassificationTypeNames["comment"] = "comment"; ClassificationTypeNames["identifier"] = "identifier"; ClassificationTypeNames["keyword"] = "keyword"; ClassificationTypeNames["numericLiteral"] = "number"; ClassificationTypeNames["bigintLiteral"] = "bigint"; ClassificationTypeNames["operator"] = "operator"; ClassificationTypeNames["stringLiteral"] = "string"; ClassificationTypeNames["whiteSpace"] = "whitespace"; ClassificationTypeNames["text"] = "text"; ClassificationTypeNames["punctuation"] = "punctuation"; ClassificationTypeNames["className"] = "class name"; ClassificationTypeNames["enumName"] = "enum name"; ClassificationTypeNames["interfaceName"] = "interface name"; ClassificationTypeNames["moduleName"] = "module name"; ClassificationTypeNames["typeParameterName"] = "type parameter name"; ClassificationTypeNames["typeAliasName"] = "type alias name"; ClassificationTypeNames["parameterName"] = "parameter name"; ClassificationTypeNames["docCommentTagName"] = "doc comment tag name"; ClassificationTypeNames["jsxOpenTagName"] = "jsx open tag name"; ClassificationTypeNames["jsxCloseTagName"] = "jsx close tag name"; ClassificationTypeNames["jsxSelfClosingTagName"] = "jsx self closing tag name"; ClassificationTypeNames["jsxAttribute"] = "jsx attribute"; ClassificationTypeNames["jsxText"] = "jsx text"; ClassificationTypeNames["jsxAttributeStringLiteralValue"] = "jsx attribute string literal value"; })(ClassificationTypeNames = ts.ClassificationTypeNames || (ts.ClassificationTypeNames = {})); var ClassificationType; (function (ClassificationType) { ClassificationType[ClassificationType["comment"] = 1] = "comment"; ClassificationType[ClassificationType["identifier"] = 2] = "identifier"; ClassificationType[ClassificationType["keyword"] = 3] = "keyword"; ClassificationType[ClassificationType["numericLiteral"] = 4] = "numericLiteral"; ClassificationType[ClassificationType["operator"] = 5] = "operator"; ClassificationType[ClassificationType["stringLiteral"] = 6] = "stringLiteral"; ClassificationType[ClassificationType["regularExpressionLiteral"] = 7] = "regularExpressionLiteral"; ClassificationType[ClassificationType["whiteSpace"] = 8] = "whiteSpace"; ClassificationType[ClassificationType["text"] = 9] = "text"; ClassificationType[ClassificationType["punctuation"] = 10] = "punctuation"; ClassificationType[ClassificationType["className"] = 11] = "className"; ClassificationType[ClassificationType["enumName"] = 12] = "enumName"; ClassificationType[ClassificationType["interfaceName"] = 13] = "interfaceName"; ClassificationType[ClassificationType["moduleName"] = 14] = "moduleName"; ClassificationType[ClassificationType["typeParameterName"] = 15] = "typeParameterName"; ClassificationType[ClassificationType["typeAliasName"] = 16] = "typeAliasName"; ClassificationType[ClassificationType["parameterName"] = 17] = "parameterName"; ClassificationType[ClassificationType["docCommentTagName"] = 18] = "docCommentTagName"; ClassificationType[ClassificationType["jsxOpenTagName"] = 19] = "jsxOpenTagName"; ClassificationType[ClassificationType["jsxCloseTagName"] = 20] = "jsxCloseTagName"; ClassificationType[ClassificationType["jsxSelfClosingTagName"] = 21] = "jsxSelfClosingTagName"; ClassificationType[ClassificationType["jsxAttribute"] = 22] = "jsxAttribute"; ClassificationType[ClassificationType["jsxText"] = 23] = "jsxText"; ClassificationType[ClassificationType["jsxAttributeStringLiteralValue"] = 24] = "jsxAttributeStringLiteralValue"; ClassificationType[ClassificationType["bigintLiteral"] = 25] = "bigintLiteral"; })(ClassificationType = ts.ClassificationType || (ts.ClassificationType = {})); })(ts || (ts = {})); /* @internal */ var ts; (function (ts) { // These utilities are common to multiple language service features. //#region ts.scanner = ts.createScanner(99 /* ScriptTarget.Latest */, /*skipTrivia*/ true); var SemanticMeaning; (function (SemanticMeaning) { SemanticMeaning[SemanticMeaning["None"] = 0] = "None"; SemanticMeaning[SemanticMeaning["Value"] = 1] = "Value"; SemanticMeaning[SemanticMeaning["Type"] = 2] = "Type"; SemanticMeaning[SemanticMeaning["Namespace"] = 4] = "Namespace"; SemanticMeaning[SemanticMeaning["All"] = 7] = "All"; })(SemanticMeaning = ts.SemanticMeaning || (ts.SemanticMeaning = {})); function getMeaningFromDeclaration(node) { switch (node.kind) { case 254 /* SyntaxKind.VariableDeclaration */: return ts.isInJSFile(node) && ts.getJSDocEnumTag(node) ? 7 /* SemanticMeaning.All */ : 1 /* SemanticMeaning.Value */; case 164 /* SyntaxKind.Parameter */: case 203 /* SyntaxKind.BindingElement */: case 167 /* SyntaxKind.PropertyDeclaration */: case 166 /* SyntaxKind.PropertySignature */: case 296 /* SyntaxKind.PropertyAssignment */: case 297 /* SyntaxKind.ShorthandPropertyAssignment */: case 169 /* SyntaxKind.MethodDeclaration */: case 168 /* SyntaxKind.MethodSignature */: case 171 /* SyntaxKind.Constructor */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 256 /* SyntaxKind.FunctionDeclaration */: case 213 /* SyntaxKind.FunctionExpression */: case 214 /* SyntaxKind.ArrowFunction */: case 292 /* SyntaxKind.CatchClause */: case 285 /* SyntaxKind.JsxAttribute */: return 1 /* SemanticMeaning.Value */; case 163 /* SyntaxKind.TypeParameter */: case 258 /* SyntaxKind.InterfaceDeclaration */: case 259 /* SyntaxKind.TypeAliasDeclaration */: case 182 /* SyntaxKind.TypeLiteral */: return 2 /* SemanticMeaning.Type */; case 345 /* SyntaxKind.JSDocTypedefTag */: // If it has no name node, it shares the name with the value declaration below it. return node.name === undefined ? 1 /* SemanticMeaning.Value */ | 2 /* SemanticMeaning.Type */ : 2 /* SemanticMeaning.Type */; case 299 /* SyntaxKind.EnumMember */: case 257 /* SyntaxKind.ClassDeclaration */: return 1 /* SemanticMeaning.Value */ | 2 /* SemanticMeaning.Type */; case 261 /* SyntaxKind.ModuleDeclaration */: if (ts.isAmbientModule(node)) { return 4 /* SemanticMeaning.Namespace */ | 1 /* SemanticMeaning.Value */; } else if (ts.getModuleInstanceState(node) === 1 /* ModuleInstanceState.Instantiated */) { return 4 /* SemanticMeaning.Namespace */ | 1 /* SemanticMeaning.Value */; } else { return 4 /* SemanticMeaning.Namespace */; } case 260 /* SyntaxKind.EnumDeclaration */: case 269 /* SyntaxKind.NamedImports */: case 270 /* SyntaxKind.ImportSpecifier */: case 265 /* SyntaxKind.ImportEqualsDeclaration */: case 266 /* SyntaxKind.ImportDeclaration */: case 271 /* SyntaxKind.ExportAssignment */: case 272 /* SyntaxKind.ExportDeclaration */: return 7 /* SemanticMeaning.All */; // An external module can be a Value case 305 /* SyntaxKind.SourceFile */: return 4 /* SemanticMeaning.Namespace */ | 1 /* SemanticMeaning.Value */; } return 7 /* SemanticMeaning.All */; } ts.getMeaningFromDeclaration = getMeaningFromDeclaration; function getMeaningFromLocation(node) { node = getAdjustedReferenceLocation(node); var parent = node.parent; if (node.kind === 305 /* SyntaxKind.SourceFile */) { return 1 /* SemanticMeaning.Value */; } else if (ts.isExportAssignment(parent) || ts.isExportSpecifier(parent) || ts.isExternalModuleReference(parent) || ts.isImportSpecifier(parent) || ts.isImportClause(parent) || ts.isImportEqualsDeclaration(parent) && node === parent.name) { return 7 /* SemanticMeaning.All */; } else if (isInRightSideOfInternalImportEqualsDeclaration(node)) { return getMeaningFromRightHandSideOfImportEquals(node); } else if (ts.isDeclarationName(node)) { return getMeaningFromDeclaration(parent); } else if (ts.isEntityName(node) && ts.findAncestor(node, ts.or(ts.isJSDocNameReference, ts.isJSDocLinkLike, ts.isJSDocMemberName))) { return 7 /* SemanticMeaning.All */; } else if (isTypeReference(node)) { return 2 /* SemanticMeaning.Type */; } else if (isNamespaceReference(node)) { return 4 /* SemanticMeaning.Namespace */; } else if (ts.isTypeParameterDeclaration(parent)) { ts.Debug.assert(ts.isJSDocTemplateTag(parent.parent)); // Else would be handled by isDeclarationName return 2 /* SemanticMeaning.Type */; } else if (ts.isLiteralTypeNode(parent)) { // This might be T["name"], which is actually referencing a property and not a type. So allow both meanings. return 2 /* SemanticMeaning.Type */ | 1 /* SemanticMeaning.Value */; } else { return 1 /* SemanticMeaning.Value */; } } ts.getMeaningFromLocation = getMeaningFromLocation; function getMeaningFromRightHandSideOfImportEquals(node) { // import a = |b|; // Namespace // import a = |b.c|; // Value, type, namespace // import a = |b.c|.d; // Namespace var name = node.kind === 161 /* SyntaxKind.QualifiedName */ ? node : ts.isQualifiedName(node.parent) && node.parent.right === node ? node.parent : undefined; return name && name.parent.kind === 265 /* SyntaxKind.ImportEqualsDeclaration */ ? 7 /* SemanticMeaning.All */ : 4 /* SemanticMeaning.Namespace */; } function isInRightSideOfInternalImportEqualsDeclaration(node) { while (node.parent.kind === 161 /* SyntaxKind.QualifiedName */) { node = node.parent; } return ts.isInternalModuleImportEqualsDeclaration(node.parent) && node.parent.moduleReference === node; } ts.isInRightSideOfInternalImportEqualsDeclaration = isInRightSideOfInternalImportEqualsDeclaration; function isNamespaceReference(node) { return isQualifiedNameNamespaceReference(node) || isPropertyAccessNamespaceReference(node); } function isQualifiedNameNamespaceReference(node) { var root = node; var isLastClause = true; if (root.parent.kind === 161 /* SyntaxKind.QualifiedName */) { while (root.parent && root.parent.kind === 161 /* SyntaxKind.QualifiedName */) { root = root.parent; } isLastClause = root.right === node; } return root.parent.kind === 178 /* SyntaxKind.TypeReference */ && !isLastClause; } function isPropertyAccessNamespaceReference(node) { var root = node; var isLastClause = true; if (root.parent.kind === 206 /* SyntaxKind.PropertyAccessExpression */) { while (root.parent && root.parent.kind === 206 /* SyntaxKind.PropertyAccessExpression */) { root = root.parent; } isLastClause = root.name === node; } if (!isLastClause && root.parent.kind === 228 /* SyntaxKind.ExpressionWithTypeArguments */ && root.parent.parent.kind === 291 /* SyntaxKind.HeritageClause */) { var decl = root.parent.parent.parent; return (decl.kind === 257 /* SyntaxKind.ClassDeclaration */ && root.parent.parent.token === 117 /* SyntaxKind.ImplementsKeyword */) || (decl.kind === 258 /* SyntaxKind.InterfaceDeclaration */ && root.parent.parent.token === 94 /* SyntaxKind.ExtendsKeyword */); } return false; } function isTypeReference(node) { if (ts.isRightSideOfQualifiedNameOrPropertyAccess(node)) { node = node.parent; } switch (node.kind) { case 108 /* SyntaxKind.ThisKeyword */: return !ts.isExpressionNode(node); case 192 /* SyntaxKind.ThisType */: return true; } switch (node.parent.kind) { case 178 /* SyntaxKind.TypeReference */: return true; case 200 /* SyntaxKind.ImportType */: return !node.parent.isTypeOf; case 228 /* SyntaxKind.ExpressionWithTypeArguments */: return ts.isPartOfTypeNode(node.parent); } return false; } function isCallExpressionTarget(node, includeElementAccess, skipPastOuterExpressions) { if (includeElementAccess === void 0) { includeElementAccess = false; } if (skipPastOuterExpressions === void 0) { skipPastOuterExpressions = false; } return isCalleeWorker(node, ts.isCallExpression, selectExpressionOfCallOrNewExpressionOrDecorator, includeElementAccess, skipPastOuterExpressions); } ts.isCallExpressionTarget = isCallExpressionTarget; function isNewExpressionTarget(node, includeElementAccess, skipPastOuterExpressions) { if (includeElementAccess === void 0) { includeElementAccess = false; } if (skipPastOuterExpressions === void 0) { skipPastOuterExpressions = false; } return isCalleeWorker(node, ts.isNewExpression, selectExpressionOfCallOrNewExpressionOrDecorator, includeElementAccess, skipPastOuterExpressions); } ts.isNewExpressionTarget = isNewExpressionTarget; function isCallOrNewExpressionTarget(node, includeElementAccess, skipPastOuterExpressions) { if (includeElementAccess === void 0) { includeElementAccess = false; } if (skipPastOuterExpressions === void 0) { skipPastOuterExpressions = false; } return isCalleeWorker(node, ts.isCallOrNewExpression, selectExpressionOfCallOrNewExpressionOrDecorator, includeElementAccess, skipPastOuterExpressions); } ts.isCallOrNewExpressionTarget = isCallOrNewExpressionTarget; function isTaggedTemplateTag(node, includeElementAccess, skipPastOuterExpressions) { if (includeElementAccess === void 0) { includeElementAccess = false; } if (skipPastOuterExpressions === void 0) { skipPastOuterExpressions = false; } return isCalleeWorker(node, ts.isTaggedTemplateExpression, selectTagOfTaggedTemplateExpression, includeElementAccess, skipPastOuterExpressions); } ts.isTaggedTemplateTag = isTaggedTemplateTag; function isDecoratorTarget(node, includeElementAccess, skipPastOuterExpressions) { if (includeElementAccess === void 0) { includeElementAccess = false; } if (skipPastOuterExpressions === void 0) { skipPastOuterExpressions = false; } return isCalleeWorker(node, ts.isDecorator, selectExpressionOfCallOrNewExpressionOrDecorator, includeElementAccess, skipPastOuterExpressions); } ts.isDecoratorTarget = isDecoratorTarget; function isJsxOpeningLikeElementTagName(node, includeElementAccess, skipPastOuterExpressions) { if (includeElementAccess === void 0) { includeElementAccess = false; } if (skipPastOuterExpressions === void 0) { skipPastOuterExpressions = false; } return isCalleeWorker(node, ts.isJsxOpeningLikeElement, selectTagNameOfJsxOpeningLikeElement, includeElementAccess, skipPastOuterExpressions); } ts.isJsxOpeningLikeElementTagName = isJsxOpeningLikeElementTagName; function selectExpressionOfCallOrNewExpressionOrDecorator(node) { return node.expression; } function selectTagOfTaggedTemplateExpression(node) { return node.tag; } function selectTagNameOfJsxOpeningLikeElement(node) { return node.tagName; } function isCalleeWorker(node, pred, calleeSelector, includeElementAccess, skipPastOuterExpressions) { var target = includeElementAccess ? climbPastPropertyOrElementAccess(node) : climbPastPropertyAccess(node); if (skipPastOuterExpressions) { target = ts.skipOuterExpressions(target); } return !!target && !!target.parent && pred(target.parent) && calleeSelector(target.parent) === target; } function climbPastPropertyAccess(node) { return isRightSideOfPropertyAccess(node) ? node.parent : node; } ts.climbPastPropertyAccess = climbPastPropertyAccess; function climbPastPropertyOrElementAccess(node) { return isRightSideOfPropertyAccess(node) || isArgumentExpressionOfElementAccess(node) ? node.parent : node; } ts.climbPastPropertyOrElementAccess = climbPastPropertyOrElementAccess; function getTargetLabel(referenceNode, labelName) { while (referenceNode) { if (referenceNode.kind === 250 /* SyntaxKind.LabeledStatement */ && referenceNode.label.escapedText === labelName) { return referenceNode.label; } referenceNode = referenceNode.parent; } return undefined; } ts.getTargetLabel = getTargetLabel; function hasPropertyAccessExpressionWithName(node, funcName) { if (!ts.isPropertyAccessExpression(node.expression)) { return false; } return node.expression.name.text === funcName; } ts.hasPropertyAccessExpressionWithName = hasPropertyAccessExpressionWithName; function isJumpStatementTarget(node) { var _a; return ts.isIdentifier(node) && ((_a = ts.tryCast(node.parent, ts.isBreakOrContinueStatement)) === null || _a === void 0 ? void 0 : _a.label) === node; } ts.isJumpStatementTarget = isJumpStatementTarget; function isLabelOfLabeledStatement(node) { var _a; return ts.isIdentifier(node) && ((_a = ts.tryCast(node.parent, ts.isLabeledStatement)) === null || _a === void 0 ? void 0 : _a.label) === node; } ts.isLabelOfLabeledStatement = isLabelOfLabeledStatement; function isLabelName(node) { return isLabelOfLabeledStatement(node) || isJumpStatementTarget(node); } ts.isLabelName = isLabelName; function isTagName(node) { var _a; return ((_a = ts.tryCast(node.parent, ts.isJSDocTag)) === null || _a === void 0 ? void 0 : _a.tagName) === node; } ts.isTagName = isTagName; function isRightSideOfQualifiedName(node) { var _a; return ((_a = ts.tryCast(node.parent, ts.isQualifiedName)) === null || _a === void 0 ? void 0 : _a.right) === node; } ts.isRightSideOfQualifiedName = isRightSideOfQualifiedName; function isRightSideOfPropertyAccess(node) { var _a; return ((_a = ts.tryCast(node.parent, ts.isPropertyAccessExpression)) === null || _a === void 0 ? void 0 : _a.name) === node; } ts.isRightSideOfPropertyAccess = isRightSideOfPropertyAccess; function isArgumentExpressionOfElementAccess(node) { var _a; return ((_a = ts.tryCast(node.parent, ts.isElementAccessExpression)) === null || _a === void 0 ? void 0 : _a.argumentExpression) === node; } ts.isArgumentExpressionOfElementAccess = isArgumentExpressionOfElementAccess; function isNameOfModuleDeclaration(node) { var _a; return ((_a = ts.tryCast(node.parent, ts.isModuleDeclaration)) === null || _a === void 0 ? void 0 : _a.name) === node; } ts.isNameOfModuleDeclaration = isNameOfModuleDeclaration; function isNameOfFunctionDeclaration(node) { var _a; return ts.isIdentifier(node) && ((_a = ts.tryCast(node.parent, ts.isFunctionLike)) === null || _a === void 0 ? void 0 : _a.name) === node; } ts.isNameOfFunctionDeclaration = isNameOfFunctionDeclaration; function isLiteralNameOfPropertyDeclarationOrIndexAccess(node) { switch (node.parent.kind) { case 167 /* SyntaxKind.PropertyDeclaration */: case 166 /* SyntaxKind.PropertySignature */: case 296 /* SyntaxKind.PropertyAssignment */: case 299 /* SyntaxKind.EnumMember */: case 169 /* SyntaxKind.MethodDeclaration */: case 168 /* SyntaxKind.MethodSignature */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 261 /* SyntaxKind.ModuleDeclaration */: return ts.getNameOfDeclaration(node.parent) === node; case 207 /* SyntaxKind.ElementAccessExpression */: return node.parent.argumentExpression === node; case 162 /* SyntaxKind.ComputedPropertyName */: return true; case 196 /* SyntaxKind.LiteralType */: return node.parent.parent.kind === 194 /* SyntaxKind.IndexedAccessType */; default: return false; } } ts.isLiteralNameOfPropertyDeclarationOrIndexAccess = isLiteralNameOfPropertyDeclarationOrIndexAccess; function isExpressionOfExternalModuleImportEqualsDeclaration(node) { return ts.isExternalModuleImportEqualsDeclaration(node.parent.parent) && ts.getExternalModuleImportEqualsDeclarationExpression(node.parent.parent) === node; } ts.isExpressionOfExternalModuleImportEqualsDeclaration = isExpressionOfExternalModuleImportEqualsDeclaration; function getContainerNode(node) { if (ts.isJSDocTypeAlias(node)) { // This doesn't just apply to the node immediately under the comment, but to everything in its parent's scope. // node.parent = the JSDoc comment, node.parent.parent = the node having the comment. // Then we get parent again in the loop. node = node.parent.parent; } while (true) { node = node.parent; if (!node) { return undefined; } switch (node.kind) { case 305 /* SyntaxKind.SourceFile */: case 169 /* SyntaxKind.MethodDeclaration */: case 168 /* SyntaxKind.MethodSignature */: case 256 /* SyntaxKind.FunctionDeclaration */: case 213 /* SyntaxKind.FunctionExpression */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 257 /* SyntaxKind.ClassDeclaration */: case 258 /* SyntaxKind.InterfaceDeclaration */: case 260 /* SyntaxKind.EnumDeclaration */: case 261 /* SyntaxKind.ModuleDeclaration */: return node; } } } ts.getContainerNode = getContainerNode; function getNodeKind(node) { switch (node.kind) { case 305 /* SyntaxKind.SourceFile */: return ts.isExternalModule(node) ? "module" /* ScriptElementKind.moduleElement */ : "script" /* ScriptElementKind.scriptElement */; case 261 /* SyntaxKind.ModuleDeclaration */: return "module" /* ScriptElementKind.moduleElement */; case 257 /* SyntaxKind.ClassDeclaration */: case 226 /* SyntaxKind.ClassExpression */: return "class" /* ScriptElementKind.classElement */; case 258 /* SyntaxKind.InterfaceDeclaration */: return "interface" /* ScriptElementKind.interfaceElement */; case 259 /* SyntaxKind.TypeAliasDeclaration */: case 338 /* SyntaxKind.JSDocCallbackTag */: case 345 /* SyntaxKind.JSDocTypedefTag */: return "type" /* ScriptElementKind.typeElement */; case 260 /* SyntaxKind.EnumDeclaration */: return "enum" /* ScriptElementKind.enumElement */; case 254 /* SyntaxKind.VariableDeclaration */: return getKindOfVariableDeclaration(node); case 203 /* SyntaxKind.BindingElement */: return getKindOfVariableDeclaration(ts.getRootDeclaration(node)); case 214 /* SyntaxKind.ArrowFunction */: case 256 /* SyntaxKind.FunctionDeclaration */: case 213 /* SyntaxKind.FunctionExpression */: return "function" /* ScriptElementKind.functionElement */; case 172 /* SyntaxKind.GetAccessor */: return "getter" /* ScriptElementKind.memberGetAccessorElement */; case 173 /* SyntaxKind.SetAccessor */: return "setter" /* ScriptElementKind.memberSetAccessorElement */; case 169 /* SyntaxKind.MethodDeclaration */: case 168 /* SyntaxKind.MethodSignature */: return "method" /* ScriptElementKind.memberFunctionElement */; case 296 /* SyntaxKind.PropertyAssignment */: var initializer = node.initializer; return ts.isFunctionLike(initializer) ? "method" /* ScriptElementKind.memberFunctionElement */ : "property" /* ScriptElementKind.memberVariableElement */; case 167 /* SyntaxKind.PropertyDeclaration */: case 166 /* SyntaxKind.PropertySignature */: case 297 /* SyntaxKind.ShorthandPropertyAssignment */: case 298 /* SyntaxKind.SpreadAssignment */: return "property" /* ScriptElementKind.memberVariableElement */; case 176 /* SyntaxKind.IndexSignature */: return "index" /* ScriptElementKind.indexSignatureElement */; case 175 /* SyntaxKind.ConstructSignature */: return "construct" /* ScriptElementKind.constructSignatureElement */; case 174 /* SyntaxKind.CallSignature */: return "call" /* ScriptElementKind.callSignatureElement */; case 171 /* SyntaxKind.Constructor */: case 170 /* SyntaxKind.ClassStaticBlockDeclaration */: return "constructor" /* ScriptElementKind.constructorImplementationElement */; case 163 /* SyntaxKind.TypeParameter */: return "type parameter" /* ScriptElementKind.typeParameterElement */; case 299 /* SyntaxKind.EnumMember */: return "enum member" /* ScriptElementKind.enumMemberElement */; case 164 /* SyntaxKind.Parameter */: return ts.hasSyntacticModifier(node, 16476 /* ModifierFlags.ParameterPropertyModifier */) ? "property" /* ScriptElementKind.memberVariableElement */ : "parameter" /* ScriptElementKind.parameterElement */; case 265 /* SyntaxKind.ImportEqualsDeclaration */: case 270 /* SyntaxKind.ImportSpecifier */: case 275 /* SyntaxKind.ExportSpecifier */: case 268 /* SyntaxKind.NamespaceImport */: case 274 /* SyntaxKind.NamespaceExport */: return "alias" /* ScriptElementKind.alias */; case 221 /* SyntaxKind.BinaryExpression */: var kind = ts.getAssignmentDeclarationKind(node); var right = node.right; switch (kind) { case 7 /* AssignmentDeclarationKind.ObjectDefinePropertyValue */: case 8 /* AssignmentDeclarationKind.ObjectDefinePropertyExports */: case 9 /* AssignmentDeclarationKind.ObjectDefinePrototypeProperty */: case 0 /* AssignmentDeclarationKind.None */: return "" /* ScriptElementKind.unknown */; case 1 /* AssignmentDeclarationKind.ExportsProperty */: case 2 /* AssignmentDeclarationKind.ModuleExports */: var rightKind = getNodeKind(right); return rightKind === "" /* ScriptElementKind.unknown */ ? "const" /* ScriptElementKind.constElement */ : rightKind; case 3 /* AssignmentDeclarationKind.PrototypeProperty */: return ts.isFunctionExpression(right) ? "method" /* ScriptElementKind.memberFunctionElement */ : "property" /* ScriptElementKind.memberVariableElement */; case 4 /* AssignmentDeclarationKind.ThisProperty */: return "property" /* ScriptElementKind.memberVariableElement */; // property case 5 /* AssignmentDeclarationKind.Property */: // static method / property return ts.isFunctionExpression(right) ? "method" /* ScriptElementKind.memberFunctionElement */ : "property" /* ScriptElementKind.memberVariableElement */; case 6 /* AssignmentDeclarationKind.Prototype */: return "local class" /* ScriptElementKind.localClassElement */; default: { ts.assertType(kind); return "" /* ScriptElementKind.unknown */; } } case 79 /* SyntaxKind.Identifier */: return ts.isImportClause(node.parent) ? "alias" /* ScriptElementKind.alias */ : "" /* ScriptElementKind.unknown */; case 271 /* SyntaxKind.ExportAssignment */: var scriptKind = getNodeKind(node.expression); // If the expression didn't come back with something (like it does for an identifiers) return scriptKind === "" /* ScriptElementKind.unknown */ ? "const" /* ScriptElementKind.constElement */ : scriptKind; default: return "" /* ScriptElementKind.unknown */; } function getKindOfVariableDeclaration(v) { return ts.isVarConst(v) ? "const" /* ScriptElementKind.constElement */ : ts.isLet(v) ? "let" /* ScriptElementKind.letElement */ : "var" /* ScriptElementKind.variableElement */; } } ts.getNodeKind = getNodeKind; function isThis(node) { switch (node.kind) { case 108 /* SyntaxKind.ThisKeyword */: // case SyntaxKind.ThisType: TODO: GH#9267 return true; case 79 /* SyntaxKind.Identifier */: // 'this' as a parameter return ts.identifierIsThisKeyword(node) && node.parent.kind === 164 /* SyntaxKind.Parameter */; default: return false; } } ts.isThis = isThis; // Matches the beginning of a triple slash directive var tripleSlashDirectivePrefixRegex = /^\/\/\/\s*= range.end; } ts.startEndContainsRange = startEndContainsRange; function rangeContainsStartEnd(range, start, end) { return range.pos <= start && range.end >= end; } ts.rangeContainsStartEnd = rangeContainsStartEnd; function rangeOverlapsWithStartEnd(r1, start, end) { return startEndOverlapsWithStartEnd(r1.pos, r1.end, start, end); } ts.rangeOverlapsWithStartEnd = rangeOverlapsWithStartEnd; function nodeOverlapsWithStartEnd(node, sourceFile, start, end) { return startEndOverlapsWithStartEnd(node.getStart(sourceFile), node.end, start, end); } ts.nodeOverlapsWithStartEnd = nodeOverlapsWithStartEnd; function startEndOverlapsWithStartEnd(start1, end1, start2, end2) { var start = Math.max(start1, start2); var end = Math.min(end1, end2); return start < end; } ts.startEndOverlapsWithStartEnd = startEndOverlapsWithStartEnd; /** * Assumes `candidate.start <= position` holds. */ function positionBelongsToNode(candidate, position, sourceFile) { ts.Debug.assert(candidate.pos <= position); return position < candidate.end || !isCompletedNode(candidate, sourceFile); } ts.positionBelongsToNode = positionBelongsToNode; function isCompletedNode(n, sourceFile) { if (n === undefined || ts.nodeIsMissing(n)) { return false; } switch (n.kind) { case 257 /* SyntaxKind.ClassDeclaration */: case 258 /* SyntaxKind.InterfaceDeclaration */: case 260 /* SyntaxKind.EnumDeclaration */: case 205 /* SyntaxKind.ObjectLiteralExpression */: case 201 /* SyntaxKind.ObjectBindingPattern */: case 182 /* SyntaxKind.TypeLiteral */: case 235 /* SyntaxKind.Block */: case 262 /* SyntaxKind.ModuleBlock */: case 263 /* SyntaxKind.CaseBlock */: case 269 /* SyntaxKind.NamedImports */: case 273 /* SyntaxKind.NamedExports */: return nodeEndsWith(n, 19 /* SyntaxKind.CloseBraceToken */, sourceFile); case 292 /* SyntaxKind.CatchClause */: return isCompletedNode(n.block, sourceFile); case 209 /* SyntaxKind.NewExpression */: if (!n.arguments) { return true; } // falls through case 208 /* SyntaxKind.CallExpression */: case 212 /* SyntaxKind.ParenthesizedExpression */: case 191 /* SyntaxKind.ParenthesizedType */: return nodeEndsWith(n, 21 /* SyntaxKind.CloseParenToken */, sourceFile); case 179 /* SyntaxKind.FunctionType */: case 180 /* SyntaxKind.ConstructorType */: return isCompletedNode(n.type, sourceFile); case 171 /* SyntaxKind.Constructor */: case 172 /* SyntaxKind.GetAccessor */: case 173 /* SyntaxKind.SetAccessor */: case 256 /* SyntaxKind.FunctionDeclaration */: case 213 /* SyntaxKind.FunctionExpression */: case 169 /* SyntaxKind.MethodDeclaration */: case 168 /* SyntaxKind.MethodSignature */: case 175 /* SyntaxKind.ConstructSignature */: case 174 /* SyntaxKind.CallSignature */: case 214 /* SyntaxKind.ArrowFunction */: if (n.body) { return isCompletedNode(n.body, sourceFile); } if (n.type) { return isCompletedNode(n.type, sourceFile); } // Even though type parameters can be unclosed, we can get away with // having at least a closing paren. return hasChildOfKind(n, 21 /* SyntaxKind.CloseParenToken */, sourceFile); case 261 /* SyntaxKind.ModuleDeclaration */: return !!n.body && isCompletedNode(n.body, sourceFile); case 239 /* SyntaxKind.IfStatement */: if (n.elseStatement) { return isCompletedNode(n.elseStatement, sourceFile); } return isCompletedNode(n.thenStatement, sourceFile); case 238 /* SyntaxKind.ExpressionStatement */: return isCompletedNode(n.expression, sourceFile) || hasChildOfKind(n, 26 /* SyntaxKind.SemicolonToken */, sourceFile); case 204 /* SyntaxKind.ArrayLiteralExpression */: case 202 /* SyntaxKind.ArrayBindingPattern */: case 207 /* SyntaxKind.ElementAccessExpression */: case 162 /* SyntaxKind.ComputedPropertyName */: case 184 /* SyntaxKind.TupleType */: return nodeEndsWith(n, 23 /* SyntaxKind.CloseBracketToken */, sourceFile); case 176 /* SyntaxKind.IndexSignature */: if (n.type) { return isCompletedNode(n.type, sourceFile); } return hasChildOfKind(n, 23 /* SyntaxKind.CloseBracketToken */, sourceFile); case 289 /* SyntaxKind.CaseClause */: case 290 /* SyntaxKind.DefaultClause */: // there is no such thing as terminator token for CaseClause/DefaultClause so for simplicity always consider them non-completed return false; case 242 /* SyntaxKind.ForStatement */: case 243 /* SyntaxKind.ForInStatement */: case 244 /* SyntaxKind.ForOfStatement */: case 241 /* SyntaxKind.WhileStatement */: return isCompletedNode(n.statement, sourceFile); case 240 /* SyntaxKind.DoStatement */: // rough approximation: if DoStatement has While keyword - then if node is completed is checking the presence of ')'; return hasChildOfKind(n, 115 /* SyntaxKind.WhileKeyword */, sourceFile) ? nodeEndsWith(n, 21 /* SyntaxKind.CloseParenToken */, sourceFile) : isCompletedNode(n.statement, sourceFile); case 181 /* SyntaxKind.TypeQuery */: return isCompletedNode(n.exprName, sourceFile); case 216 /* SyntaxKind.TypeOfExpression */: case 215 /* SyntaxKind.DeleteExpression */: case 217 /* SyntaxKind.VoidExpression */: case 224 /* SyntaxKind.YieldExpression */: case 225 /* SyntaxKind.SpreadElement */: var unaryWordExpression = n; return isCompletedNode(unaryWordExpression.expression, sourceFile); case 210 /* SyntaxKind.TaggedTemplateExpression */: return isCompletedNode(n.template, sourceFile); case 223 /* SyntaxKind.TemplateExpression */: var lastSpan = ts.lastOrUndefined(n.templateSpans); return isCompletedNode(lastSpan, sourceFile); case 233 /* SyntaxKind.TemplateSpan */: return ts.nodeIsPresent(n.literal); case 272 /* SyntaxKind.ExportDeclaration */: case 266 /* SyntaxKind.ImportDeclaration */: return ts.nodeIsPresent(n.moduleSpecifier); case 219 /* SyntaxKind.PrefixUnaryExpression */: return isCompletedNode(n.operand, sourceFile); case 221 /* SyntaxKind.BinaryExpression */: return isCompletedNode(n.right, sourceFile); case 222 /* SyntaxKind.ConditionalExpression */: return isCompletedNode(n.whenFalse, sourceFile); default: return true; } } /* * Checks if node ends with 'expectedLastToken'. * If child at position 'length - 1' is 'SemicolonToken' it is skipped and 'expectedLastToken' is compared with child at position 'length - 2'. */ function nodeEndsWith(n, expectedLastToken, sourceFile) { var children = n.getChildren(sourceFile); if (children.length) { var lastChild = ts.last(children); if (lastChild.kind === expectedLastToken) { return true; } else if (lastChild.kind === 26 /* SyntaxKind.SemicolonToken */ && children.length !== 1) { return children[children.length - 2].kind === expectedLastToken; } } return false; } function findListItemInfo(node) { var list = findContainingList(node); // It is possible at this point for syntaxList to be undefined, either if // node.parent had no list child, or if none of its list children contained // the span of node. If this happens, return undefined. The caller should // handle this case. if (!list) { return undefined; } var children = list.getChildren(); var listItemIndex = ts.indexOfNode(children, node); return { listItemIndex: listItemIndex, list: list }; } ts.findListItemInfo = findListItemInfo; function hasChildOfKind(n, kind, sourceFile) { return !!findChildOfKind(n, kind, sourceFile); } ts.hasChildOfKind = hasChildOfKind; function findChildOfKind(n, kind, sourceFile) { return ts.find(n.getChildren(sourceFile), function (c) { return c.kind === kind; }); } ts.findChildOfKind = findChildOfKind; function findContainingList(node) { // The node might be a list element (nonsynthetic) or a comma (synthetic). Either way, it will // be parented by the container of the SyntaxList, not the SyntaxList itself. // In order to find the list item index, we first need to locate SyntaxList itself and then search // for the position of the relevant node (or comma). var syntaxList = ts.find(node.parent.getChildren(), function (c) { return ts.isSyntaxList(c) && rangeContainsRange(c, node); }); // Either we didn't find an appropriate list, or the list must contain us. ts.Debug.assert(!syntaxList || ts.contains(syntaxList.getChildren(), node)); return syntaxList; } ts.findContainingList = findContainingList; function isDefaultModifier(node) { return node.kind === 88 /* SyntaxKind.DefaultKeyword */; } function isClassKeyword(node) { return node.kind === 84 /* SyntaxKind.ClassKeyword */; } function isFunctionKeyword(node) { return node.kind === 98 /* SyntaxKind.FunctionKeyword */; } function getAdjustedLocationForClass(node) { if (ts.isNamedDeclaration(node)) { return node.name; } if (ts.isClassDeclaration(node)) { // for class and function declarations, use the `default` modifier // when the declaration is unnamed. var defaultModifier = node.modifiers && ts.find(node.modifiers, isDefaultModifier); if (defaultModifier) return defaultModifier; } if (ts.isClassExpression(node)) { // for class expressions, use the `class` keyword when the class is unnamed var classKeyword = ts.find(node.getChildren(), isClassKeyword); if (classKeyword) return classKeyword; } } function getAdjustedLocationForFunction(node) { if (ts.isNamedDeclaration(node)) { return node.name; } if (ts.isFunctionDeclaration(node)) { // for class and function declarations, use the `default` modifier // when the declaration is unnamed. var defaultModifier = ts.find(node.modifiers, isDefaultModifier); if (defaultModifier) return defaultModifier; } if (ts.isFunctionExpression(node)) { // for function expressions, use the `function` keyword when the function is unnamed var functionKeyword = ts.find(node.getChildren(), isFunctionKeyword); if (functionKeyword) return functionKeyword; } } function getAncestorTypeNode(node) { var lastTypeNode; ts.findAncestor(node, function (a) { if (ts.isTypeNode(a)) { lastTypeNode = a; } return !ts.isQualifiedName(a.parent) && !ts.isTypeNode(a.parent) && !ts.isTypeElement(a.parent); }); return lastTypeNode; } function getContextualTypeFromParentOrAncestorTypeNode(node, checker) { var contextualType = getContextualTypeFromParent(node, checker); if (contextualType) return contextualType; var ancestorTypeNode = getAncestorTypeNode(node); return ancestorTypeNode && checker.getTypeAtLocation(ancestorTypeNode); } ts.getContextualTypeFromParentOrAncestorTypeNode = getContextualTypeFromParentOrAncestorTypeNode; function getAdjustedLocationForDeclaration(node, forRename) { if (!forRename) { switch (node.kind) { case 257 /* SyntaxKind.ClassDeclaration */: case 226 /* SyntaxKind.ClassExpression */: return getAdjustedLocationForClass(node); case 256 /* SyntaxKind.FunctionDeclaration */: case 213 /* SyntaxKind.FunctionExpression */: return getAdjustedLocationForFunction(node); } } if (ts.isNamedDeclaration(node)) { return node.name; } } function getAdjustedLocationForImportDeclaration(node, forRename) { if (node.importClause) { if (node.importClause.name && node.importClause.namedBindings) { // do not adjust if we have both a name and named bindings return; } // /**/import [|name|] from ...; // import /**/type [|name|] from ...; if (node.importClause.name) { return node.importClause.name; } // /**/import { [|name|] } from ...; // /**/import { propertyName as [|name|] } from ...; // /**/import * as [|name|] from ...; // import /**/type { [|name|] } from ...; // import /**/type { propertyName as [|name|] } from ...; // import /**/type * as [|name|] from ...; if (node.importClause.namedBindings) { if (ts.isNamedImports(node.importClause.namedBindings)) { // do nothing if there is more than one binding var onlyBinding = ts.singleOrUndefined(node.importClause.namedBindings.elements); if (!onlyBinding) { return; } return onlyBinding.name; } else if (ts.isNamespaceImport(node.importClause.namedBindings)) { return node.importClause.namedBindings.name; } } } if (!forRename) { // /**/import "[|module|]"; // /**/import ... from "[|module|]"; // import /**/type ... from "[|module|]"; return node.moduleSpecifier; } } function getAdjustedLocationForExportDeclaration(node, forRename) { if (node.exportClause) { // /**/export { [|name|] } ... // /**/export { propertyName as [|name|] } ... // /**/export * as [|name|] ... // export /**/type { [|name|] } from ... // export /**/type { propertyName as [|name|] } from ... // export /**/type * as [|name|] ... if (ts.isNamedExports(node.exportClause)) { // do nothing if there is more than one binding var onlyBinding = ts.singleOrUndefined(node.exportClause.elements); if (!onlyBinding) { return; } return node.exportClause.elements[0].name; } else if (ts.isNamespaceExport(node.exportClause)) { return node.exportClause.name; } } if (!forRename) { // /**/export * from "[|module|]"; // export /**/type * from "[|module|]"; return node.moduleSpecifier; } } function getAdjustedLocationForHeritageClause(node) { // /**/extends [|name|] // /**/implements [|name|] if (node.types.length === 1) { return node.types[0].expression; } // /**/extends name1, name2 ... // /**/implements name1, name2 ... } function getAdjustedLocation(node, forRename) { var parent = node.parent; // /**/ [|name|] ... // /**/ [|name|] ... // /**/ [|name|] ... // /**/import [|name|] = ... // // NOTE: If the node is a modifier, we don't adjust its location if it is the `default` modifier as that is handled // specially by `getSymbolAtLocation`. if (ts.isModifier(node) && (forRename || node.kind !== 88 /* SyntaxKind.DefaultKeyword */) ? ts.contains(parent.modifiers, node) : node.kind === 84 /* SyntaxKind.ClassKeyword */ ? ts.isClassDeclaration(parent) || ts.isClassExpression(node) : node.kind === 98 /* SyntaxKind.FunctionKeyword */ ? ts.isFunctionDeclaration(parent) || ts.isFunctionExpression(node) : node.kind === 118 /* SyntaxKind.InterfaceKeyword */ ? ts.isInterfaceDeclaration(parent) : node.kind === 92 /* SyntaxKind.EnumKeyword */ ? ts.isEnumDeclaration(parent) : node.kind === 152 /* SyntaxKind.TypeKeyword */ ? ts.isTypeAliasDeclaration(parent) : node.kind === 142 /* SyntaxKind.NamespaceKeyword */ || node.kind === 141 /* SyntaxKind.ModuleKeyword */ ? ts.isModuleDeclaration(parent) : node.kind === 100 /* SyntaxKind.ImportKeyword */ ? ts.isImportEqualsDeclaration(parent) : node.kind === 136 /* SyntaxKind.GetKeyword */ ? ts.isGetAccessorDeclaration(parent) : node.kind === 149 /* SyntaxKind.SetKeyword */ && ts.isSetAccessorDeclaration(parent)) { var location = getAdjustedLocationForDeclaration(parent, forRename); if (location) { return location; } } // /**/ [|name|] ... if ((node.kind === 113 /* SyntaxKind.VarKeyword */ || node.kind === 85 /* SyntaxKind.ConstKeyword */ || node.kind === 119 /* SyntaxKind.LetKeyword */) && ts.isVariableDeclarationList(parent) && parent.declarations.length === 1) { var decl = parent.declarations[0]; if (ts.isIdentifier(decl.name)) { return decl.name; } } if (node.kind === 152 /* SyntaxKind.TypeKeyword */) { // import /**/type [|name|] from ...; // import /**/type { [|name|] } from ...; // import /**/type { propertyName as [|name|] } from ...; // import /**/type ... from "[|module|]"; if (ts.isImportClause(parent) && parent.isTypeOnly) { var location = getAdjustedLocationForImportDeclaration(parent.parent, forRename); if (location) { return location; } } // export /**/type { [|name|] } from ...; // export /**/type { propertyName as [|name|] } from ...; // export /**/type * from "[|module|]"; // export /**/type * as ... from "[|module|]"; if (ts.isExportDeclaration(parent) && parent.isTypeOnly) { var location = getAdjustedLocationForExportDeclaration(parent, forRename); if (location) { return location; } } } // import { propertyName /**/as [|name|] } ... // import * /**/as [|name|] ... // export { propertyName /**/as [|name|] } ... // export * /**/as [|name|] ... if (node.kind === 127 /* SyntaxKind.AsKeyword */) { if (ts.isImportSpecifier(parent) && parent.propertyName || ts.isExportSpecifier(parent) && parent.propertyName || ts.isNamespaceImport(parent) || ts.isNamespaceExport(parent)) { return parent.name; } if (ts.isExportDeclaration(parent) && parent.exportClause && ts.isNamespaceExport(parent.exportClause)) { return parent.exportClause.name; } } // /**/import [|name|] from ...; // /**/import { [|name|] } from ...; // /**/import { propertyName as [|name|] } from ...; // /**/import ... from "[|module|]"; // /**/import "[|module|]"; if (node.kind === 100 /* SyntaxKind.ImportKeyword */ && ts.isImportDeclaration(parent)) { var location = getAdjustedLocationForImportDeclaration(parent, forRename); if (location) { return location; } } if (node.kind === 93 /* SyntaxKind.ExportKeyword */) { // /**/export { [|name|] } ...; // /**/export { propertyName as [|name|] } ...; // /**/export * from "[|module|]"; // /**/export * as ... from "[|module|]"; if (ts.isExportDeclaration(parent)) { var location = getAdjustedLocationForExportDeclaration(parent, forRename); if (location) { return location; } } // NOTE: We don't adjust the location of the `default` keyword as that is handled specially by `getSymbolAtLocation`. // /**/export default [|name|]; // /**/export = [|name|]; if (ts.isExportAssignment(parent)) { return ts.skipOuterExpressions(parent.expression); } } // import name = /**/require("[|module|]"); if (node.kind === 146 /* SyntaxKind.RequireKeyword */ && ts.isExternalModuleReference(parent)) { return parent.expression; } // import ... /**/from "[|module|]"; // export ... /**/from "[|module|]"; if (node.kind === 156 /* SyntaxKind.FromKeyword */ && (ts.isImportDeclaration(parent) || ts.isExportDeclaration(parent)) && parent.moduleSpecifier) { return parent.moduleSpecifier; } // class ... /**/extends [|name|] ... // class ... /**/implements [|name|] ... // class ... /**/implements name1, name2 ... // interface ... /**/extends [|name|] ... // interface ... /**/extends name1, name2 ... if ((node.kind === 94 /* SyntaxKind.ExtendsKeyword */ || node.kind === 117 /* SyntaxKind.ImplementsKeyword */) && ts.isHeritageClause(parent) && parent.token === node.kind) { var location = getAdjustedLocationForHeritageClause(parent); if (location) { return location; } } if (node.kind === 94 /* SyntaxKind.ExtendsKeyword */) { // ... ... if (ts.isTypeParameterDeclaration(parent) && parent.constraint && ts.isTypeReferenceNode(parent.constraint)) { return parent.constraint.typeName; } // ... T /**/extends [|U|] ? ... if (ts.isConditionalTypeNode(parent) && ts.isTypeReferenceNode(parent.extendsType)) { return parent.extendsType.typeName; } } // ... T extends /**/infer [|U|] ? ... if (node.kind === 137 /* SyntaxKind.InferKeyword */ && ts.isInferTypeNode(parent)) { return parent.typeParameter.name; } // { [ [|K|] /**/in keyof T]: ... } if (node.kind === 101 /* SyntaxKind.InKeyword */ && ts.isTypeParameterDeclaration(parent) && ts.isMappedTypeNode(parent.parent)) { return parent.name; } // /**/keyof [|T|] if (node.kind === 140 /* SyntaxKind.KeyOfKeyword */ && ts.isTypeOperatorNode(parent) && parent.operator === 140 /* SyntaxKind.KeyOfKeyword */ && ts.isTypeReferenceNode(parent.type)) { return parent.type.typeName; } // /**/readonly [|name|][] if (node.kind === 145 /* SyntaxKind.ReadonlyKeyword */ && ts.isTypeOperatorNode(parent) && parent.operator === 145 /* SyntaxKind.ReadonlyKeyword */ && ts.isArrayTypeNode(parent.type) && ts.isTypeReferenceNode(parent.type.elementType)) { return parent.type.elementType.typeName; } if (!forRename) { // /**/new [|name|] // /**/void [|name|] // /**/void obj.[|name|] // /**/typeof [|name|] // /**/typeof obj.[|name|] // /**/await [|name|] // /**/await obj.[|name|] // /**/yield [|name|] // /**/yield obj.[|name|] // /**/delete obj.[|name|] if (node.kind === 103 /* SyntaxKind.NewKeyword */ && ts.isNewExpression(parent) || node.kind === 114 /* SyntaxKind.VoidKeyword */ && ts.isVoidExpression(parent) || node.kind === 112 /* SyntaxKind.TypeOfKeyword */ && ts.isTypeOfExpression(parent) || node.kind === 132 /* SyntaxKind.AwaitKeyword */ && ts.isAwaitExpression(parent) || node.kind === 125 /* SyntaxKind.YieldKeyword */ && ts.isYieldExpression(parent) || node.kind === 89 /* SyntaxKind.DeleteKeyword */ && ts.isDeleteExpression(parent)) { if (parent.expression) { return ts.skipOuterExpressions(parent.expression); } } // left /**/in [|name|] // left /**/instanceof [|name|] if ((node.kind === 101 /* SyntaxKind.InKeyword */ || node.kind === 102 /* SyntaxKind.InstanceOfKeyword */) && ts.isBinaryExpression(parent) && parent.operatorToken === node) { return ts.skipOuterExpressions(parent.right); } // left /**/as [|name|] if (node.kind === 127 /* SyntaxKind.AsKeyword */ && ts.isAsExpression(parent) && ts.isTypeReferenceNode(parent.type)) { return parent.type.typeName; } // for (... /**/in [|name|]) // for (... /**/of [|name|]) if (node.kind === 101 /* SyntaxKind.InKeyword */ && ts.isForInStatement(parent) || node.kind === 160 /* SyntaxKind.OfKeyword */ && ts.isForOfStatement(parent)) { return ts.skipOuterExpressions(parent.expression); } } return node; } /** * Adjusts the location used for "find references" and "go to definition" when the cursor was not * on a property name. */ function getAdjustedReferenceLocation(node) { return getAdjustedLocation(node, /*forRename*/ false); } ts.getAdjustedReferenceLocation = getAdjustedReferenceLocation; /** * Adjusts the location used for "rename" when the cursor was not on a property name. */ function getAdjustedRenameLocation(node) { return getAdjustedLocation(node, /*forRename*/ true); } ts.getAdjustedRenameLocation = getAdjustedRenameLocation; /** * Gets the token whose text has range [start, end) and * position >= start and (position < end or (position === end && token is literal or keyword or identifier)) */ function getTouchingPropertyName(sourceFile, position) { return getTouchingToken(sourceFile, position, function (n) { return ts.isPropertyNameLiteral(n) || ts.isKeyword(n.kind) || ts.isPrivateIdentifier(n); }); } ts.getTouchingPropertyName = getTouchingPropertyName; /** * Returns the token if position is in [start, end). * If position === end, returns the preceding token if includeItemAtEndPosition(previousToken) === true */ function getTouchingToken(sourceFile, position, includePrecedingTokenAtEndPosition) { return getTokenAtPositionWorker(sourceFile, position, /*allowPositionInLeadingTrivia*/ false, includePrecedingTokenAtEndPosition, /*includeEndPosition*/ false); } ts.getTouchingToken = getTouchingToken; /** Returns a token if position is in [start-of-leading-trivia, end) */ function getTokenAtPosition(sourceFile, position) { return getTokenAtPositionWorker(sourceFile, position, /*allowPositionInLeadingTrivia*/ true, /*includePrecedingTokenAtEndPosition*/ undefined, /*includeEndPosition*/ false); } ts.getTokenAtPosition = getTokenAtPosition; /** Get the token whose text contains the position */ function getTokenAtPositionWorker(sourceFile, position, allowPositionInLeadingTrivia, includePrecedingTokenAtEndPosition, includeEndPosition) { var current = sourceFile; var foundToken; var _loop_1 = function () { // find the child that contains 'position' var children = current.getChildren(sourceFile); var i = ts.binarySearchKey(children, position, function (_, i) { return i; }, function (middle, _) { // This last callback is more of a selector than a comparator - // `EqualTo` causes the `middle` result to be returned // `GreaterThan` causes recursion on the left of the middle // `LessThan` causes recursion on the right of the middle // Let's say you have 3 nodes, spanning positons // pos: 1, end: 3 // pos: 3, end: 3 // pos: 3, end: 5 // and you're looking for the token at positon 3 - all 3 of these nodes are overlapping with position 3. // In fact, there's a _good argument_ that node 2 shouldn't even be allowed to exist - depending on if // the start or end of the ranges are considered inclusive, it's either wholly subsumed by the first or the last node. // Unfortunately, such nodes do exist. :( - See fourslash/completionsImport_tsx.tsx - empty jsx attributes create // a zero-length node. // What also you may not expect is that which node we return depends on the includePrecedingTokenAtEndPosition flag. // Specifically, if includePrecedingTokenAtEndPosition is set, we return the 1-3 node, while if it's unset, we // return the 3-5 node. (The zero length node is never correct.) This is because the includePrecedingTokenAtEndPosition // flag causes us to return the first node whose end position matches the position and which produces and acceptable token // kind. Meanwhile, if includePrecedingTokenAtEndPosition is unset, we look for the first node whose start is <= the // position and whose end is greater than the position. var start = allowPositionInLeadingTrivia ? children[middle].getFullStart() : children[middle].getStart(sourceFile, /*includeJsDoc*/ true); if (start > position) { return 1 /* Comparison.GreaterThan */; } // first element whose start position is before the input and whose end position is after or equal to the input if (nodeContainsPosition(children[middle])) { if (children[middle - 1]) { // we want the _first_ element that contains the position, so left-recur if the prior node also contains the position if (nodeContainsPosition(children[middle - 1])) { return 1 /* Comparison.GreaterThan */; } } return 0 /* Comparison.EqualTo */; } // this complex condition makes us left-recur around a zero-length node when includePrecedingTokenAtEndPosition is set, rather than right-recur on it if (includePrecedingTokenAtEndPosition && start === position && children[middle - 1] && children[middle - 1].getEnd() === position && nodeContainsPosition(children[middle - 1])) { return 1 /* Comparison.GreaterThan */; } return -1 /* Comparison.LessThan */; }); if (foundToken) { return { value: foundToken }; } if (i >= 0 && children[i]) { current = children[i]; return "continue-outer"; } return { value: current }; }; outer: while (true) { var state_1 = _loop_1(); if (typeof state_1 === "object") return state_1.value; switch (state_1) { case "continue-outer": continue outer; } } function nodeContainsPosition(node) { var start = allowPositionInLeadingTrivia ? node.getFullStart() : node.getStart(sourceFile, /*includeJsDoc*/ true); if (start > position) { // If this child begins after position, then all subsequent children will as well. return false; } var end = node.getEnd(); if (position < end || (position === end && (node.kind === 1 /* SyntaxKind.EndOfFileToken */ || includeEndPosition))) { return true; } else if (includePrecedingTokenAtEndPosition && end === position) { var previousToken = findPrecedingToken(position, sourceFile, node); if (previousToken && includePrecedingTokenAtEndPosition(previousToken)) { foundToken = previousToken; return true; } } return false; } } /** * Returns the first token where position is in [start, end), * excluding `JsxText` tokens containing only whitespace. */ function findFirstNonJsxWhitespaceToken(sourceFile, position) { var tokenAtPosition = getTokenAtPosition(sourceFile, position); while (isWhiteSpaceOnlyJsxText(tokenAtPosition)) { var nextToken = findNextToken(tokenAtPosition, tokenAtPosition.parent, sourceFile); if (!nextToken) return; tokenAtPosition = nextToken; } return tokenAtPosition; } ts.findFirstNonJsxWhitespaceToken = findFirstNonJsxWhitespaceToken; /** * The token on the left of the position is the token that strictly includes the position * or sits to the left of the cursor if it is on a boundary. For example * * fo|o -> will return foo * foo |bar -> will return foo * */ function findTokenOnLeftOfPosition(file, position) { // Ideally, getTokenAtPosition should return a token. However, it is currently // broken, so we do a check to make sure the result was indeed a token. var tokenAtPosition = getTokenAtPosition(file, position); if (ts.isToken(tokenAtPosition) && position > tokenAtPosition.getStart(file) && position < tokenAtPosition.getEnd()) { return tokenAtPosition; } return findPrecedingToken(position, file); } ts.findTokenOnLeftOfPosition = findTokenOnLeftOfPosition; function findNextToken(previousToken, parent, sourceFile) { return find(parent); function find(n) { if (ts.isToken(n) && n.pos === previousToken.end) { // this is token that starts at the end of previous token - return it return n; } return ts.firstDefined(n.getChildren(sourceFile), function (child) { var shouldDiveInChildNode = // previous token is enclosed somewhere in the child (child.pos <= previousToken.pos && child.end > previousToken.end) || // previous token ends exactly at the beginning of child (child.pos === previousToken.end); return shouldDiveInChildNode && nodeHasTokens(child, sourceFile) ? find(child) : undefined; }); } } ts.findNextToken = findNextToken; function findPrecedingToken(position, sourceFile, startNode, excludeJsdoc) { var result = find((startNode || sourceFile)); ts.Debug.assert(!(result && isWhiteSpaceOnlyJsxText(result))); return result; function find(n) { if (isNonWhitespaceToken(n) && n.kind !== 1 /* SyntaxKind.EndOfFileToken */) { return n; } var children = n.getChildren(sourceFile); var i = ts.binarySearchKey(children, position, function (_, i) { return i; }, function (middle, _) { // This last callback is more of a selector than a comparator - // `EqualTo` causes the `middle` result to be returned // `GreaterThan` causes recursion on the left of the middle // `LessThan` causes recursion on the right of the middle if (position < children[middle].end) { // first element whose end position is greater than the input position if (!children[middle - 1] || position >= children[middle - 1].end) { return 0 /* Comparison.EqualTo */; } return 1 /* Comparison.GreaterThan */; } return -1 /* Comparison.LessThan */; }); if (i >= 0 && children[i]) { var child = children[i]; // Note that the span of a node's tokens is [node.getStart(...), node.end). // Given that `position < child.end` and child has constituent tokens, we distinguish these cases: // 1) `position` precedes `child`'s tokens or `child` has no tokens (ie: in a comment or whitespace preceding `child`): // we need to find the last token in a previous child. // 2) `position` is within the same span: we recurse on `child`. if (position < child.end) { var start = child.getStart(sourceFile, /*includeJsDoc*/ !excludeJsdoc); var lookInPreviousChild = (start >= position) || // cursor in the leading trivia !nodeHasTokens(child, sourceFile) || isWhiteSpaceOnlyJsxText(child); if (lookInPreviousChild) { // actual start of the node is past the position - previous token should be at the end of previous child var candidate_1 = findRightmostChildNodeWithTokens(children, /*exclusiveStartPosition*/ i, sourceFile, n.kind); return candidate_1 && findRightmostToken(candidate_1, sourceFile); } else { // candidate should be in this node return find(child); } } } ts.Debug.assert(startNode !== undefined || n.kind === 305 /* SyntaxKind.SourceFile */ || n.kind === 1 /* SyntaxKind.EndOfFileToken */ || ts.isJSDocCommentContainingNode(n)); // Here we know that none of child token nodes embrace the position, // the only known case is when position is at the end of the file. // Try to find the rightmost token in the file without filtering. // Namely we are skipping the check: 'position < node.end' var candidate = findRightmostChildNodeWithTokens(children, /*exclusiveStartPosition*/ children.length, sourceFile, n.kind); return candidate && findRightmostToken(candidate, sourceFile); } } ts.findPrecedingToken = findPrecedingToken; function isNonWhitespaceToken(n) { return ts.isToken(n) && !isWhiteSpaceOnlyJsxText(n); } function findRightmostToken(n, sourceFile) { if (isNonWhitespaceToken(n)) { return n; } var children = n.getChildren(sourceFile); if (children.length === 0) { return n; } var candidate = findRightmostChildNodeWithTokens(children, /*exclusiveStartPosition*/ children.length, sourceFile, n.kind); return candidate && findRightmostToken(candidate, sourceFile); } /** * Finds the rightmost child to the left of `children[exclusiveStartPosition]` which is a non-all-whitespace token or has constituent tokens. */ function findRightmostChildNodeWithTokens(children, exclusiveStartPosition, sourceFile, parentKind) { for (var i = exclusiveStartPosition - 1; i >= 0; i--) { var child = children[i]; if (isWhiteSpaceOnlyJsxText(child)) { if (i === 0 && (parentKind === 11 /* SyntaxKind.JsxText */ || parentKind === 279 /* SyntaxKind.JsxSelfClosingElement */)) { ts.Debug.fail("`JsxText` tokens should not be the first child of `JsxElement | JsxSelfClosingElement`"); } } else if (nodeHasTokens(children[i], sourceFile)) { return children[i]; } } } function isInString(sourceFile, position, previousToken) { if (previousToken === void 0) { previousToken = findPrecedingToken(position, sourceFile); } if (previousToken && ts.isStringTextContainingNode(previousToken)) { var start = previousToken.getStart(sourceFile); var end = previousToken.getEnd(); // To be "in" one of these literals, the position has to be: // 1. entirely within the token text. // 2. at the end position of an unterminated token. // 3. at the end of a regular expression (due to trailing flags like '/foo/g'). if (start < position && position < end) { return true; } if (position === end) { return !!previousToken.isUnterminated; } } return false; } ts.isInString = isInString; /** * returns true if the position is in between the open and close elements of an JSX expression. */ function isInsideJsxElementOrAttribute(sourceFile, position) { var token = getTokenAtPosition(sourceFile, position); if (!token) { return false; } if (token.kind === 11 /* SyntaxKind.JsxText */) { return true; } //
Hello |
if (token.kind === 29 /* SyntaxKind.LessThanToken */ && token.parent.kind === 11 /* SyntaxKind.JsxText */) { return true; } //
{ |
or
if (token.kind === 29 /* SyntaxKind.LessThanToken */ && token.parent.kind === 288 /* SyntaxKind.JsxExpression */) { return true; } //
{ // | // } < /div> if (token && token.kind === 19 /* SyntaxKind.CloseBraceToken */ && token.parent.kind === 288 /* SyntaxKind.JsxExpression */) { return true; } //
|
if (token.kind === 29 /* SyntaxKind.LessThanToken */ && token.parent.kind === 281 /* SyntaxKind.JsxClosingElement */) { return true; } return false; } ts.isInsideJsxElementOrAttribute = isInsideJsxElementOrAttribute; function isWhiteSpaceOnlyJsxText(node) { return ts.isJsxText(node) && node.containsOnlyTriviaWhiteSpaces; } function isInTemplateString(sourceFile, position) { var token = getTokenAtPosition(sourceFile, position); return ts.isTemplateLiteralKind(token.kind) && position > token.getStart(sourceFile); } ts.isInTemplateString = isInTemplateString; function isInJSXText(sourceFile, position) { var token = getTokenAtPosition(sourceFile, position); if (ts.isJsxText(token)) { return true; } if (token.kind === 18 /* SyntaxKind.OpenBraceToken */ && ts.isJsxExpression(token.parent) && ts.isJsxElement(token.parent.parent)) { return true; } if (token.kind === 29 /* SyntaxKind.LessThanToken */ && ts.isJsxOpeningLikeElement(token.parent) && ts.isJsxElement(token.parent.parent)) { return true; } return false; } ts.isInJSXText = isInJSXText; function isInsideJsxElement(sourceFile, position) { function isInsideJsxElementTraversal(node) { while (node) { if (node.kind >= 279 /* SyntaxKind.JsxSelfClosingElement */ && node.kind <= 288 /* SyntaxKind.JsxExpression */ || node.kind === 11 /* SyntaxKind.JsxText */ || node.kind === 29 /* SyntaxKind.LessThanToken */ || node.kind === 31 /* SyntaxKind.GreaterThanToken */ || node.kind === 79 /* SyntaxKind.Identifier */ || node.kind === 19 /* SyntaxKind.CloseBraceToken */ || node.kind === 18 /* SyntaxKind.OpenBraceToken */ || node.kind === 43 /* SyntaxKind.SlashToken */) { node = node.parent; } else if (node.kind === 278 /* SyntaxKind.JsxElement */) { if (position > node.getStart(sourceFile)) return true; node = node.parent; } else { return false; } } return false; } return isInsideJsxElementTraversal(getTokenAtPosition(sourceFile, position)); } ts.isInsideJsxElement = isInsideJsxElement; function findPrecedingMatchingToken(token, matchingTokenKind, sourceFile) { var closeTokenText = ts.tokenToString(token.kind); var matchingTokenText = ts.tokenToString(matchingTokenKind); var tokenFullStart = token.getFullStart(); // Text-scan based fast path - can be bamboozled by comments and other trivia, but often provides // a good, fast approximation without too much extra work in the cases where it fails. var bestGuessIndex = sourceFile.text.lastIndexOf(matchingTokenText, tokenFullStart); if (bestGuessIndex === -1) { return undefined; // if the token text doesn't appear in the file, there can't be a match - super fast bail } // we can only use the textual result directly if we didn't have to count any close tokens within the range if (sourceFile.text.lastIndexOf(closeTokenText, tokenFullStart - 1) < bestGuessIndex) { var nodeAtGuess = findPrecedingToken(bestGuessIndex + 1, sourceFile); if (nodeAtGuess && nodeAtGuess.kind === matchingTokenKind) { return nodeAtGuess; } } var tokenKind = token.kind; var remainingMatchingTokens = 0; while (true) { var preceding = findPrecedingToken(token.getFullStart(), sourceFile); if (!preceding) { return undefined; } token = preceding; if (token.kind === matchingTokenKind) { if (remainingMatchingTokens === 0) { return token; } remainingMatchingTokens--; } else if (token.kind === tokenKind) { remainingMatchingTokens++; } } } ts.findPrecedingMatchingToken = findPrecedingMatchingToken; function removeOptionality(type, isOptionalExpression, isOptionalChain) { return isOptionalExpression ? type.getNonNullableType() : isOptionalChain ? type.getNonOptionalType() : type; } ts.removeOptionality = removeOptionality; function isPossiblyTypeArgumentPosition(token, sourceFile, checker) { var info = getPossibleTypeArgumentsInfo(token, sourceFile); return info !== undefined && (ts.isPartOfTypeNode(info.called) || getPossibleGenericSignatures(info.called, info.nTypeArguments, checker).length !== 0 || isPossiblyTypeArgumentPosition(info.called, sourceFile, checker)); } ts.isPossiblyTypeArgumentPosition = isPossiblyTypeArgumentPosition; function getPossibleGenericSignatures(called, typeArgumentCount, checker) { var type = checker.getTypeAtLocation(called); if (ts.isOptionalChain(called.parent)) { type = removeOptionality(type, ts.isOptionalChainRoot(called.parent), /*isOptionalChain*/ true); } var signatures = ts.isNewExpression(called.parent) ? type.getConstructSignatures() : type.getCallSignatures(); return signatures.filter(function (candidate) { return !!candidate.typeParameters && candidate.typeParameters.length >= typeArgumentCount; }); } ts.getPossibleGenericSignatures = getPossibleGenericSignatures; // Get info for an expression like `f <` that may be the start of type arguments. function getPossibleTypeArgumentsInfo(tokenIn, sourceFile) { // This is a rare case, but one that saves on a _lot_ of work if true - if the source file has _no_ `<` character, // then there obviously can't be any type arguments - no expensive brace-matching backwards scanning required if (sourceFile.text.lastIndexOf("<", tokenIn ? tokenIn.pos : sourceFile.text.length) === -1) { return undefined; } var token = tokenIn; // This function determines if the node could be type argument position // Since during editing, when type argument list is not complete, // the tree could be of any shape depending on the tokens parsed before current node, // scanning of the previous identifier followed by "<" before current node would give us better result // Note that we also balance out the already provided type arguments, arrays, object literals while doing so var remainingLessThanTokens = 0; var nTypeArguments = 0; while (token) { switch (token.kind) { case 29 /* SyntaxKind.LessThanToken */: // Found the beginning of the generic argument expression token = findPrecedingToken(token.getFullStart(), sourceFile); if (token && token.kind === 28 /* SyntaxKind.QuestionDotToken */) { token = findPrecedingToken(token.getFullStart(), sourceFile); } if (!token || !ts.isIdentifier(token)) return undefined; if (!remainingLessThanTokens) { return ts.isDeclarationName(token) ? undefined : { called: token, nTypeArguments: nTypeArguments }; } remainingLessThanTokens--; break; case 49 /* SyntaxKind.GreaterThanGreaterThanGreaterThanToken */: remainingLessThanTokens = +3; break; case 48 /* SyntaxKind.GreaterThanGreaterThanToken */: remainingLessThanTokens = +2; break; case 31 /* SyntaxKind.GreaterThanToken */: remainingLessThanTokens++; break; case 19 /* SyntaxKind.CloseBraceToken */: // This can be object type, skip until we find the matching open brace token // Skip until the matching open brace token token = findPrecedingMatchingToken(token, 18 /* SyntaxKind.OpenBraceToken */, sourceFile); if (!token) return undefined; break; case 21 /* SyntaxKind.CloseParenToken */: // This can be object type, skip until we find the matching open brace token // Skip until the matching open brace token token = findPrecedingMatchingToken(token, 20 /* SyntaxKind.OpenParenToken */, sourceFile); if (!token) return undefined; break; case 23 /* SyntaxKind.CloseBracketToken */: // This can be object type, skip until we find the matching open brace token // Skip until the matching open brace token token = findPrecedingMatchingToken(token, 22 /* SyntaxKind.OpenBracketToken */, sourceFile); if (!token) return undefined; break; // Valid tokens in a type name. Skip. case 27 /* SyntaxKind.CommaToken */: nTypeArguments++; break; case 38 /* SyntaxKind.EqualsGreaterThanToken */: // falls through case 79 /* SyntaxKind.Identifier */: case 10 /* SyntaxKind.StringLiteral */: case 8 /* SyntaxKind.NumericLiteral */: case 9 /* SyntaxKind.BigIntLiteral */: case 110 /* SyntaxKind.TrueKeyword */: case 95 /* SyntaxKind.FalseKeyword */: // falls through case 112 /* SyntaxKind.TypeOfKeyword */: case 94 /* SyntaxKind.ExtendsKeyword */: case 140 /* SyntaxKind.KeyOfKeyword */: case 24 /* SyntaxKind.DotToken */: case 51 /* SyntaxKind.BarToken */: case 57 /* SyntaxKind.QuestionToken */: case 58 /* SyntaxKind.ColonToken */: break; default: if (ts.isTypeNode(token)) { break; } // Invalid token in type return undefined; } token = findPrecedingToken(token.getFullStart(), sourceFile); } return undefined; } ts.getPossibleTypeArgumentsInfo = getPossibleTypeArgumentsInfo; /** * Returns true if the cursor at position in sourceFile is within a comment. * * @param tokenAtPosition Must equal `getTokenAtPosition(sourceFile, position) * @param predicate Additional predicate to test on the comment range. */ function isInComment(sourceFile, position, tokenAtPosition) { return ts.formatting.getRangeOfEnclosingComment(sourceFile, position, /*precedingToken*/ undefined, tokenAtPosition); } ts.isInComment = isInComment; function hasDocComment(sourceFile, position) { var token = getTokenAtPosition(sourceFile, position); return !!ts.findAncestor(token, ts.isJSDoc); } ts.hasDocComment = hasDocComment; function nodeHasTokens(n, sourceFile) { // If we have a token or node that has a non-zero width, it must have tokens. // Note: getWidth() does not take trivia into account. return n.kind === 1 /* SyntaxKind.EndOfFileToken */ ? !!n.jsDoc : n.getWidth(sourceFile) !== 0; } function getNodeModifiers(node, excludeFlags) { if (excludeFlags === void 0) { excludeFlags = 0 /* ModifierFlags.None */; } var result = []; var flags = ts.isDeclaration(node) ? ts.getCombinedNodeFlagsAlwaysIncludeJSDoc(node) & ~excludeFlags : 0 /* ModifierFlags.None */; if (flags & 8 /* ModifierFlags.Private */) result.push("private" /* ScriptElementKindModifier.privateMemberModifier */); if (flags & 16 /* ModifierFlags.Protected */) result.push("protected" /* ScriptElementKindModifier.protectedMemberModifier */); if (flags & 4 /* ModifierFlags.Public */) result.push("public" /* ScriptElementKindModifier.publicMemberModifier */); if (flags & 32 /* ModifierFlags.Static */ || ts.isClassStaticBlockDeclaration(node)) result.push("static" /* ScriptElementKindModifier.staticModifier */); if (flags & 128 /* ModifierFlags.Abstract */) result.push("abstract" /* ScriptElementKindModifier.abstractModifier */); if (flags & 1 /* ModifierFlags.Export */) result.push("export" /* ScriptElementKindModifier.exportedModifier */); if (flags & 8192 /* ModifierFlags.Deprecated */) result.push("deprecated" /* ScriptElementKindModifier.deprecatedModifier */); if (node.flags & 16777216 /* NodeFlags.Ambient */) result.push("declare" /* ScriptElementKindModifier.ambientModifier */); if (node.kind === 271 /* SyntaxKind.ExportAssignment */) result.push("export" /* ScriptElementKindModifier.exportedModifier */); return result.length > 0 ? result.join(",") : "" /* ScriptElementKindModifier.none */; } ts.getNodeModifiers = getNodeModifiers; function getTypeArgumentOrTypeParameterList(node) { if (node.kind === 178 /* SyntaxKind.TypeReference */ || node.kind === 208 /* SyntaxKind.CallExpression */) { return node.typeArguments; } if (ts.isFunctionLike(node) || node.kind === 257 /* SyntaxKind.ClassDeclaration */ || node.kind === 258 /* SyntaxKind.InterfaceDeclaration */) { return node.typeParameters; } return undefined; } ts.getTypeArgumentOrTypeParameterList = getTypeArgumentOrTypeParameterList; function isComment(kind) { return kind === 2 /* SyntaxKind.SingleLineCommentTrivia */ || kind === 3 /* SyntaxKind.MultiLineCommentTrivia */; } ts.isComment = isComment; function isStringOrRegularExpressionOrTemplateLiteral(kind) { if (kind === 10 /* SyntaxKind.StringLiteral */ || kind === 13 /* SyntaxKind.RegularExpressionLiteral */ || ts.isTemplateLiteralKind(kind)) { return true; } return false; } ts.isStringOrRegularExpressionOrTemplateLiteral = isStringOrRegularExpressionOrTemplateLiteral; function isPunctuation(kind) { return 18 /* SyntaxKind.FirstPunctuation */ <= kind && kind <= 78 /* SyntaxKind.LastPunctuation */; } ts.isPunctuation = isPunctuation; function isInsideTemplateLiteral(node, position, sourceFile) { return ts.isTemplateLiteralKind(node.kind) && (node.getStart(sourceFile) < position && position < node.end) || (!!node.isUnterminated && position === node.end); } ts.isInsideTemplateLiteral = isInsideTemplateLiteral; function isAccessibilityModifier(kind) { switch (kind) { case 123 /* SyntaxKind.PublicKeyword */: case 121 /* SyntaxKind.PrivateKeyword */: case 122 /* SyntaxKind.ProtectedKeyword */: return true; } return false; } ts.isAccessibilityModifier = isAccessibilityModifier; function cloneCompilerOptions(options) { var result = ts.clone(options); ts.setConfigFileInOptions(result, options && options.configFile); return result; } ts.cloneCompilerOptions = cloneCompilerOptions; function isArrayLiteralOrObjectLiteralDestructuringPattern(node) { if (node.kind === 204 /* SyntaxKind.ArrayLiteralExpression */ || node.kind === 205 /* SyntaxKind.ObjectLiteralExpression */) { // [a,b,c] from: // [a, b, c] = someExpression; if (node.parent.kind === 221 /* SyntaxKind.BinaryExpression */ && node.parent.left === node && node.parent.operatorToken.kind === 63 /* SyntaxKind.EqualsToken */) { return true; } // [a, b, c] from: // for([a, b, c] of expression) if (node.parent.kind === 244 /* SyntaxKind.ForOfStatement */ && node.parent.initializer === node) { return true; } // [a, b, c] of // [x, [a, b, c] ] = someExpression // or // {x, a: {a, b, c} } = someExpression if (isArrayLiteralOrObjectLiteralDestructuringPattern(node.parent.kind === 296 /* SyntaxKind.PropertyAssignment */ ? node.parent.parent : node.parent)) { return true; } } return false; } ts.isArrayLiteralOrObjectLiteralDestructuringPattern = isArrayLiteralOrObjectLiteralDestructuringPattern; function isInReferenceComment(sourceFile, position) { return isInReferenceCommentWorker(sourceFile, position, /*shouldBeReference*/ true); } ts.isInReferenceComment = isInReferenceComment; function isInNonReferenceComment(sourceFile, position) { return isInReferenceCommentWorker(sourceFile, position, /*shouldBeReference*/ false); } ts.isInNonReferenceComment = isInNonReferenceComment; function isInReferenceCommentWorker(sourceFile, position, shouldBeReference) { var range = isInComment(sourceFile, position, /*tokenAtPosition*/ undefined); return !!range && shouldBeReference === tripleSlashDirectivePrefixRegex.test(sourceFile.text.substring(range.pos, range.end)); } function getReplacementSpanForContextToken(contextToken) { if (!contextToken) return undefined; switch (contextToken.kind) { case 10 /* SyntaxKind.StringLiteral */: case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: return createTextSpanFromStringLiteralLikeContent(contextToken); default: return createTextSpanFromNode(contextToken); } } ts.getReplacementSpanForContextToken = getReplacementSpanForContextToken; function createTextSpanFromNode(node, sourceFile, endNode) { return ts.createTextSpanFromBounds(node.getStart(sourceFile), (endNode || node).getEnd()); } ts.createTextSpanFromNode = createTextSpanFromNode; function createTextSpanFromStringLiteralLikeContent(node) { if (node.isUnterminated) return undefined; return ts.createTextSpanFromBounds(node.getStart() + 1, node.getEnd() - 1); } ts.createTextSpanFromStringLiteralLikeContent = createTextSpanFromStringLiteralLikeContent; function createTextRangeFromNode(node, sourceFile) { return ts.createRange(node.getStart(sourceFile), node.end); } ts.createTextRangeFromNode = createTextRangeFromNode; function createTextSpanFromRange(range) { return ts.createTextSpanFromBounds(range.pos, range.end); } ts.createTextSpanFromRange = createTextSpanFromRange; function createTextRangeFromSpan(span) { return ts.createRange(span.start, span.start + span.length); } ts.createTextRangeFromSpan = createTextRangeFromSpan; function createTextChangeFromStartLength(start, length, newText) { return createTextChange(ts.createTextSpan(start, length), newText); } ts.createTextChangeFromStartLength = createTextChangeFromStartLength; function createTextChange(span, newText) { return { span: span, newText: newText }; } ts.createTextChange = createTextChange; ts.typeKeywords = [ 130 /* SyntaxKind.AnyKeyword */, 128 /* SyntaxKind.AssertsKeyword */, 158 /* SyntaxKind.BigIntKeyword */, 133 /* SyntaxKind.BooleanKeyword */, 95 /* SyntaxKind.FalseKeyword */, 137 /* SyntaxKind.InferKeyword */, 140 /* SyntaxKind.KeyOfKeyword */, 143 /* SyntaxKind.NeverKeyword */, 104 /* SyntaxKind.NullKeyword */, 147 /* SyntaxKind.NumberKeyword */, 148 /* SyntaxKind.ObjectKeyword */, 145 /* SyntaxKind.ReadonlyKeyword */, 150 /* SyntaxKind.StringKeyword */, 151 /* SyntaxKind.SymbolKeyword */, 110 /* SyntaxKind.TrueKeyword */, 114 /* SyntaxKind.VoidKeyword */, 153 /* SyntaxKind.UndefinedKeyword */, 154 /* SyntaxKind.UniqueKeyword */, 155 /* SyntaxKind.UnknownKeyword */, ]; function isTypeKeyword(kind) { return ts.contains(ts.typeKeywords, kind); } ts.isTypeKeyword = isTypeKeyword; function isTypeKeywordToken(node) { return node.kind === 152 /* SyntaxKind.TypeKeyword */; } ts.isTypeKeywordToken = isTypeKeywordToken; function isTypeKeywordTokenOrIdentifier(node) { return isTypeKeywordToken(node) || ts.isIdentifier(node) && node.text === "type"; } ts.isTypeKeywordTokenOrIdentifier = isTypeKeywordTokenOrIdentifier; /** True if the symbol is for an external module, as opposed to a namespace. */ function isExternalModuleSymbol(moduleSymbol) { return !!(moduleSymbol.flags & 1536 /* SymbolFlags.Module */) && moduleSymbol.name.charCodeAt(0) === 34 /* CharacterCodes.doubleQuote */; } ts.isExternalModuleSymbol = isExternalModuleSymbol; function nodeSeenTracker() { var seen = []; return function (node) { var id = ts.getNodeId(node); return !seen[id] && (seen[id] = true); }; } ts.nodeSeenTracker = nodeSeenTracker; function getSnapshotText(snap) { return snap.getText(0, snap.getLength()); } ts.getSnapshotText = getSnapshotText; function repeatString(str, count) { var result = ""; for (var i = 0; i < count; i++) { result += str; } return result; } ts.repeatString = repeatString; function skipConstraint(type) { return type.isTypeParameter() ? type.getConstraint() || type : type; } ts.skipConstraint = skipConstraint; function getNameFromPropertyName(name) { return name.kind === 162 /* SyntaxKind.ComputedPropertyName */ // treat computed property names where expression is string/numeric literal as just string/numeric literal ? ts.isStringOrNumericLiteralLike(name.expression) ? name.expression.text : undefined : ts.isPrivateIdentifier(name) ? ts.idText(name) : ts.getTextOfIdentifierOrLiteral(name); } ts.getNameFromPropertyName = getNameFromPropertyName; function programContainsModules(program) { return program.getSourceFiles().some(function (s) { return !s.isDeclarationFile && !program.isSourceFileFromExternalLibrary(s) && !!(s.externalModuleIndicator || s.commonJsModuleIndicator); }); } ts.programContainsModules = programContainsModules; function programContainsEsModules(program) { return program.getSourceFiles().some(function (s) { return !s.isDeclarationFile && !program.isSourceFileFromExternalLibrary(s) && !!s.externalModuleIndicator; }); } ts.programContainsEsModules = programContainsEsModules; function compilerOptionsIndicateEsModules(compilerOptions) { return !!compilerOptions.module || ts.getEmitScriptTarget(compilerOptions) >= 2 /* ScriptTarget.ES2015 */ || !!compilerOptions.noEmit; } ts.compilerOptionsIndicateEsModules = compilerOptionsIndicateEsModules; function createModuleSpecifierResolutionHost(program, host) { // Mix in `getSymlinkCache` from Program when host doesn't have it // in order for non-Project hosts to have a symlinks cache. return { fileExists: function (fileName) { return program.fileExists(fileName); }, getCurrentDirectory: function () { return host.getCurrentDirectory(); }, readFile: ts.maybeBind(host, host.readFile), useCaseSensitiveFileNames: ts.maybeBind(host, host.useCaseSensitiveFileNames), getSymlinkCache: ts.maybeBind(host, host.getSymlinkCache) || program.getSymlinkCache, getModuleSpecifierCache: ts.maybeBind(host, host.getModuleSpecifierCache), getPackageJsonInfoCache: function () { var _a; return (_a = program.getModuleResolutionCache()) === null || _a === void 0 ? void 0 : _a.getPackageJsonInfoCache(); }, getGlobalTypingsCacheLocation: ts.maybeBind(host, host.getGlobalTypingsCacheLocation), redirectTargetsMap: program.redirectTargetsMap, getProjectReferenceRedirect: function (fileName) { return program.getProjectReferenceRedirect(fileName); }, isSourceOfProjectReferenceRedirect: function (fileName) { return program.isSourceOfProjectReferenceRedirect(fileName); }, getNearestAncestorDirectoryWithPackageJson: ts.maybeBind(host, host.getNearestAncestorDirectoryWithPackageJson), getFileIncludeReasons: function () { return program.getFileIncludeReasons(); }, }; } ts.createModuleSpecifierResolutionHost = createModuleSpecifierResolutionHost; function getModuleSpecifierResolverHost(program, host) { return __assign(__assign({}, createModuleSpecifierResolutionHost(program, host)), { getCommonSourceDirectory: function () { return program.getCommonSourceDirectory(); } }); } ts.getModuleSpecifierResolverHost = getModuleSpecifierResolverHost; function moduleResolutionRespectsExports(moduleResolution) { return moduleResolution >= ts.ModuleResolutionKind.Node16 && moduleResolution <= ts.ModuleResolutionKind.NodeNext; } ts.moduleResolutionRespectsExports = moduleResolutionRespectsExports; function moduleResolutionUsesNodeModules(moduleResolution) { return moduleResolution === ts.ModuleResolutionKind.NodeJs || moduleResolution >= ts.ModuleResolutionKind.Node16 && moduleResolution <= ts.ModuleResolutionKind.NodeNext; } ts.moduleResolutionUsesNodeModules = moduleResolutionUsesNodeModules; function makeImportIfNecessary(defaultImport, namedImports, moduleSpecifier, quotePreference) { return defaultImport || namedImports && namedImports.length ? makeImport(defaultImport, namedImports, moduleSpecifier, quotePreference) : undefined; } ts.makeImportIfNecessary = makeImportIfNecessary; function makeImport(defaultImport, namedImports, moduleSpecifier, quotePreference, isTypeOnly) { return ts.factory.createImportDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, defaultImport || namedImports ? ts.factory.createImportClause(!!isTypeOnly, defaultImport, namedImports && namedImports.length ? ts.factory.createNamedImports(namedImports) : undefined) : undefined, typeof moduleSpecifier === "string" ? makeStringLiteral(moduleSpecifier, quotePreference) : moduleSpecifier, /*assertClause*/ undefined); } ts.makeImport = makeImport; function makeStringLiteral(text, quotePreference) { return ts.factory.createStringLiteral(text, quotePreference === 0 /* QuotePreference.Single */); } ts.makeStringLiteral = makeStringLiteral; var QuotePreference; (function (QuotePreference) { QuotePreference[QuotePreference["Single"] = 0] = "Single"; QuotePreference[QuotePreference["Double"] = 1] = "Double"; })(QuotePreference = ts.QuotePreference || (ts.QuotePreference = {})); function quotePreferenceFromString(str, sourceFile) { return ts.isStringDoubleQuoted(str, sourceFile) ? 1 /* QuotePreference.Double */ : 0 /* QuotePreference.Single */; } ts.quotePreferenceFromString = quotePreferenceFromString; function getQuotePreference(sourceFile, preferences) { if (preferences.quotePreference && preferences.quotePreference !== "auto") { return preferences.quotePreference === "single" ? 0 /* QuotePreference.Single */ : 1 /* QuotePreference.Double */; } else { // ignore synthetic import added when importHelpers: true var firstModuleSpecifier = sourceFile.imports && ts.find(sourceFile.imports, function (n) { return ts.isStringLiteral(n) && !ts.nodeIsSynthesized(n.parent); }); return firstModuleSpecifier ? quotePreferenceFromString(firstModuleSpecifier, sourceFile) : 1 /* QuotePreference.Double */; } } ts.getQuotePreference = getQuotePreference; function getQuoteFromPreference(qp) { switch (qp) { case 0 /* QuotePreference.Single */: return "'"; case 1 /* QuotePreference.Double */: return '"'; default: return ts.Debug.assertNever(qp); } } ts.getQuoteFromPreference = getQuoteFromPreference; function symbolNameNoDefault(symbol) { var escaped = symbolEscapedNameNoDefault(symbol); return escaped === undefined ? undefined : ts.unescapeLeadingUnderscores(escaped); } ts.symbolNameNoDefault = symbolNameNoDefault; function symbolEscapedNameNoDefault(symbol) { if (symbol.escapedName !== "default" /* InternalSymbolName.Default */) { return symbol.escapedName; } return ts.firstDefined(symbol.declarations, function (decl) { var name = ts.getNameOfDeclaration(decl); return name && name.kind === 79 /* SyntaxKind.Identifier */ ? name.escapedText : undefined; }); } ts.symbolEscapedNameNoDefault = symbolEscapedNameNoDefault; function isModuleSpecifierLike(node) { return ts.isStringLiteralLike(node) && (ts.isExternalModuleReference(node.parent) || ts.isImportDeclaration(node.parent) || ts.isRequireCall(node.parent, /*requireStringLiteralLikeArgument*/ false) && node.parent.arguments[0] === node || ts.isImportCall(node.parent) && node.parent.arguments[0] === node); } ts.isModuleSpecifierLike = isModuleSpecifierLike; function isObjectBindingElementWithoutPropertyName(bindingElement) { return ts.isBindingElement(bindingElement) && ts.isObjectBindingPattern(bindingElement.parent) && ts.isIdentifier(bindingElement.name) && !bindingElement.propertyName; } ts.isObjectBindingElementWithoutPropertyName = isObjectBindingElementWithoutPropertyName; function getPropertySymbolFromBindingElement(checker, bindingElement) { var typeOfPattern = checker.getTypeAtLocation(bindingElement.parent); return typeOfPattern && checker.getPropertyOfType(typeOfPattern, bindingElement.name.text); } ts.getPropertySymbolFromBindingElement = getPropertySymbolFromBindingElement; function getParentNodeInSpan(node, file, span) { if (!node) return undefined; while (node.parent) { if (ts.isSourceFile(node.parent) || !spanContainsNode(span, node.parent, file)) { return node; } node = node.parent; } } ts.getParentNodeInSpan = getParentNodeInSpan; function spanContainsNode(span, node, file) { return ts.textSpanContainsPosition(span, node.getStart(file)) && node.getEnd() <= ts.textSpanEnd(span); } function findModifier(node, kind) { return node.modifiers && ts.find(node.modifiers, function (m) { return m.kind === kind; }); } ts.findModifier = findModifier; function insertImports(changes, sourceFile, imports, blankLineBetween) { var decl = ts.isArray(imports) ? imports[0] : imports; var importKindPredicate = decl.kind === 237 /* SyntaxKind.VariableStatement */ ? ts.isRequireVariableStatement : ts.isAnyImportSyntax; var existingImportStatements = ts.filter(sourceFile.statements, importKindPredicate); var sortedNewImports = ts.isArray(imports) ? ts.stableSort(imports, ts.OrganizeImports.compareImportsOrRequireStatements) : [imports]; if (!existingImportStatements.length) { changes.insertNodesAtTopOfFile(sourceFile, sortedNewImports, blankLineBetween); } else if (existingImportStatements && ts.OrganizeImports.importsAreSorted(existingImportStatements)) { for (var _i = 0, sortedNewImports_1 = sortedNewImports; _i < sortedNewImports_1.length; _i++) { var newImport = sortedNewImports_1[_i]; var insertionIndex = ts.OrganizeImports.getImportDeclarationInsertionIndex(existingImportStatements, newImport); if (insertionIndex === 0) { // If the first import is top-of-file, insert after the leading comment which is likely the header. var options = existingImportStatements[0] === sourceFile.statements[0] ? { leadingTriviaOption: ts.textChanges.LeadingTriviaOption.Exclude } : {}; changes.insertNodeBefore(sourceFile, existingImportStatements[0], newImport, /*blankLineBetween*/ false, options); } else { var prevImport = existingImportStatements[insertionIndex - 1]; changes.insertNodeAfter(sourceFile, prevImport, newImport); } } } else { var lastExistingImport = ts.lastOrUndefined(existingImportStatements); if (lastExistingImport) { changes.insertNodesAfter(sourceFile, lastExistingImport, sortedNewImports); } else { changes.insertNodesAtTopOfFile(sourceFile, sortedNewImports, blankLineBetween); } } } ts.insertImports = insertImports; function getTypeKeywordOfTypeOnlyImport(importClause, sourceFile) { ts.Debug.assert(importClause.isTypeOnly); return ts.cast(importClause.getChildAt(0, sourceFile), isTypeKeywordToken); } ts.getTypeKeywordOfTypeOnlyImport = getTypeKeywordOfTypeOnlyImport; function textSpansEqual(a, b) { return !!a && !!b && a.start === b.start && a.length === b.length; } ts.textSpansEqual = textSpansEqual; function documentSpansEqual(a, b) { return a.fileName === b.fileName && textSpansEqual(a.textSpan, b.textSpan); } ts.documentSpansEqual = documentSpansEqual; /** * Iterates through 'array' by index and performs the callback on each element of array until the callback * returns a truthy value, then returns that value. * If no such value is found, the callback is applied to each element of array and undefined is returned. */ function forEachUnique(array, callback) { if (array) { for (var i = 0; i < array.length; i++) { if (array.indexOf(array[i]) === i) { var result = callback(array[i], i); if (result) { return result; } } } } return undefined; } ts.forEachUnique = forEachUnique; function isTextWhiteSpaceLike(text, startPos, endPos) { for (var i = startPos; i < endPos; i++) { if (!ts.isWhiteSpaceLike(text.charCodeAt(i))) { return false; } } return true; } ts.isTextWhiteSpaceLike = isTextWhiteSpaceLike; // #endregion // Display-part writer helpers // #region function isFirstDeclarationOfSymbolParameter(symbol) { var declaration = symbol.declarations ? ts.firstOrUndefined(symbol.declarations) : undefined; return !!ts.findAncestor(declaration, function (n) { return ts.isParameter(n) ? true : ts.isBindingElement(n) || ts.isObjectBindingPattern(n) || ts.isArrayBindingPattern(n) ? false : "quit"; }); } ts.isFirstDeclarationOfSymbolParameter = isFirstDeclarationOfSymbolParameter; var displayPartWriter = getDisplayPartWriter(); function getDisplayPartWriter() { var absoluteMaximumLength = ts.defaultMaximumTruncationLength * 10; // A hard cutoff to avoid overloading the messaging channel in worst-case scenarios var displayParts; var lineStart; var indent; var length; resetWriter(); var unknownWrite = function (text) { return writeKind(text, ts.SymbolDisplayPartKind.text); }; return { displayParts: function () { var finalText = displayParts.length && displayParts[displayParts.length - 1].text; if (length > absoluteMaximumLength && finalText && finalText !== "...") { if (!ts.isWhiteSpaceLike(finalText.charCodeAt(finalText.length - 1))) { displayParts.push(displayPart(" ", ts.SymbolDisplayPartKind.space)); } displayParts.push(displayPart("...", ts.SymbolDisplayPartKind.punctuation)); } return displayParts; }, writeKeyword: function (text) { return writeKind(text, ts.SymbolDisplayPartKind.keyword); }, writeOperator: function (text) { return writeKind(text, ts.SymbolDisplayPartKind.operator); }, writePunctuation: function (text) { return writeKind(text, ts.SymbolDisplayPartKind.punctuation); }, writeTrailingSemicolon: function (text) { return writeKind(text, ts.SymbolDisplayPartKind.punctuation); }, writeSpace: function (text) { return writeKind(text, ts.SymbolDisplayPartKind.space); }, writeStringLiteral: function (text) { return writeKind(text, ts.SymbolDisplayPartKind.stringLiteral); }, writeParameter: function (text) { return writeKind(text, ts.SymbolDisplayPartKind.parameterName); }, writeProperty: function (text) { return writeKind(text, ts.SymbolDisplayPartKind.propertyName); }, writeLiteral: function (text) { return writeKind(text, ts.SymbolDisplayPartKind.stringLiteral); }, writeSymbol: writeSymbol, writeLine: writeLine, write: unknownWrite, writeComment: unknownWrite, getText: function () { return ""; }, getTextPos: function () { return 0; }, getColumn: function () { return 0; }, getLine: function () { return 0; }, isAtStartOfLine: function () { return false; }, hasTrailingWhitespace: function () { return false; }, hasTrailingComment: function () { return false; }, rawWrite: ts.notImplemented, getIndent: function () { return indent; }, increaseIndent: function () { indent++; }, decreaseIndent: function () { indent--; }, clear: resetWriter, trackSymbol: function () { return false; }, reportInaccessibleThisError: ts.noop, reportInaccessibleUniqueSymbolError: ts.noop, reportPrivateInBaseOfClassExpression: ts.noop, }; function writeIndent() { if (length > absoluteMaximumLength) return; if (lineStart) { var indentString = ts.getIndentString(indent); if (indentString) { length += indentString.length; displayParts.push(displayPart(indentString, ts.SymbolDisplayPartKind.space)); } lineStart = false; } } function writeKind(text, kind) { if (length > absoluteMaximumLength) return; writeIndent(); length += text.length; displayParts.push(displayPart(text, kind)); } function writeSymbol(text, symbol) { if (length > absoluteMaximumLength) return; writeIndent(); length += text.length; displayParts.push(symbolPart(text, symbol)); } function writeLine() { if (length > absoluteMaximumLength) return; length += 1; displayParts.push(lineBreakPart()); lineStart = true; } function resetWriter() { displayParts = []; lineStart = true; indent = 0; length = 0; } } function symbolPart(text, symbol) { return displayPart(text, displayPartKind(symbol)); function displayPartKind(symbol) { var flags = symbol.flags; if (flags & 3 /* SymbolFlags.Variable */) { return isFirstDeclarationOfSymbolParameter(symbol) ? ts.SymbolDisplayPartKind.parameterName : ts.SymbolDisplayPartKind.localName; } if (flags & 4 /* SymbolFlags.Property */) return ts.SymbolDisplayPartKind.propertyName; if (flags & 32768 /* SymbolFlags.GetAccessor */) return ts.SymbolDisplayPartKind.propertyName; if (flags & 65536 /* SymbolFlags.SetAccessor */) return ts.SymbolDisplayPartKind.propertyName; if (flags & 8 /* SymbolFlags.EnumMember */) return ts.SymbolDisplayPartKind.enumMemberName; if (flags & 16 /* SymbolFlags.Function */) return ts.SymbolDisplayPartKind.functionName; if (flags & 32 /* SymbolFlags.Class */) return ts.SymbolDisplayPartKind.className; if (flags & 64 /* SymbolFlags.Interface */) return ts.SymbolDisplayPartKind.interfaceName; if (flags & 384 /* SymbolFlags.Enum */) return ts.SymbolDisplayPartKind.enumName; if (flags & 1536 /* SymbolFlags.Module */) return ts.SymbolDisplayPartKind.moduleName; if (flags & 8192 /* SymbolFlags.Method */) return ts.SymbolDisplayPartKind.methodName; if (flags & 262144 /* SymbolFlags.TypeParameter */) return ts.SymbolDisplayPartKind.typeParameterName; if (flags & 524288 /* SymbolFlags.TypeAlias */) return ts.SymbolDisplayPartKind.aliasName; if (flags & 2097152 /* SymbolFlags.Alias */) return ts.SymbolDisplayPartKind.aliasName; return ts.SymbolDisplayPartKind.text; } } ts.symbolPart = symbolPart; function displayPart(text, kind) { return { text: text, kind: ts.SymbolDisplayPartKind[kind] }; } ts.displayPart = displayPart; function spacePart() { return displayPart(" ", ts.SymbolDisplayPartKind.space); } ts.spacePart = spacePart; function keywordPart(kind) { return displayPart(ts.tokenToString(kind), ts.SymbolDisplayPartKind.keyword); } ts.keywordPart = keywordPart; function punctuationPart(kind) { return displayPart(ts.tokenToString(kind), ts.SymbolDisplayPartKind.punctuation); } ts.punctuationPart = punctuationPart; function operatorPart(kind) { return displayPart(ts.tokenToString(kind), ts.SymbolDisplayPartKind.operator); } ts.operatorPart = operatorPart; function parameterNamePart(text) { return displayPart(text, ts.SymbolDisplayPartKind.parameterName); } ts.parameterNamePart = parameterNamePart; function propertyNamePart(text) { return displayPart(text, ts.SymbolDisplayPartKind.propertyName); } ts.propertyNamePart = propertyNamePart; function textOrKeywordPart(text) { var kind = ts.stringToToken(text); return kind === undefined ? textPart(text) : keywordPart(kind); } ts.textOrKeywordPart = textOrKeywordPart; function textPart(text) { return displayPart(text, ts.SymbolDisplayPartKind.text); } ts.textPart = textPart; function typeAliasNamePart(text) { return displayPart(text, ts.SymbolDisplayPartKind.aliasName); } ts.typeAliasNamePart = typeAliasNamePart; function typeParameterNamePart(text) { return displayPart(text, ts.SymbolDisplayPartKind.typeParameterName); } ts.typeParameterNamePart = typeParameterNamePart; function linkTextPart(text) { return displayPart(text, ts.SymbolDisplayPartKind.linkText); } ts.linkTextPart = linkTextPart; function linkNamePart(text, target) { return { text: text, kind: ts.SymbolDisplayPartKind[ts.SymbolDisplayPartKind.linkName], target: { fileName: ts.getSourceFileOfNode(target).fileName, textSpan: createTextSpanFromNode(target), }, }; } ts.linkNamePart = linkNamePart; function linkPart(text) { return displayPart(text, ts.SymbolDisplayPartKind.link); } ts.linkPart = linkPart; function buildLinkParts(link, checker) { var _a; var prefix = ts.isJSDocLink(link) ? "link" : ts.isJSDocLinkCode(link) ? "linkcode" : "linkplain"; var parts = [linkPart("{@".concat(prefix, " "))]; if (!link.name) { if (link.text) { parts.push(linkTextPart(link.text)); } } else { var symbol = checker === null || checker === void 0 ? void 0 : checker.getSymbolAtLocation(link.name); var suffix = findLinkNameEnd(link.text); var name = ts.getTextOfNode(link.name) + link.text.slice(0, suffix); var text = skipSeparatorFromLinkText(link.text.slice(suffix)); var decl = (symbol === null || symbol === void 0 ? void 0 : symbol.valueDeclaration) || ((_a = symbol === null || symbol === void 0 ? void 0 : symbol.declarations) === null || _a === void 0 ? void 0 : _a[0]); if (decl) { parts.push(linkNamePart(name, decl)); if (text) parts.push(linkTextPart(text)); } else { parts.push(linkTextPart(name + (suffix || text.indexOf("://") === 0 ? "" : " ") + text)); } } parts.push(linkPart("}")); return parts; } ts.buildLinkParts = buildLinkParts; function skipSeparatorFromLinkText(text) { var pos = 0; if (text.charCodeAt(pos++) === 124 /* CharacterCodes.bar */) { while (pos < text.length && text.charCodeAt(pos) === 32 /* CharacterCodes.space */) pos++; return text.slice(pos); } return text; } function findLinkNameEnd(text) { if (text.indexOf("()") === 0) return 2; if (text[0] !== "<") return 0; var brackets = 0; var i = 0; while (i < text.length) { if (text[i] === "<") brackets++; if (text[i] === ">") brackets--; i++; if (!brackets) return i; } return 0; } var carriageReturnLineFeed = "\r\n"; /** * The default is CRLF. */ function getNewLineOrDefaultFromHost(host, formatSettings) { var _a; return (formatSettings === null || formatSettings === void 0 ? void 0 : formatSettings.newLineCharacter) || ((_a = host.getNewLine) === null || _a === void 0 ? void 0 : _a.call(host)) || carriageReturnLineFeed; } ts.getNewLineOrDefaultFromHost = getNewLineOrDefaultFromHost; function lineBreakPart() { return displayPart("\n", ts.SymbolDisplayPartKind.lineBreak); } ts.lineBreakPart = lineBreakPart; function mapToDisplayParts(writeDisplayParts) { try { writeDisplayParts(displayPartWriter); return displayPartWriter.displayParts(); } finally { displayPartWriter.clear(); } } ts.mapToDisplayParts = mapToDisplayParts; function typeToDisplayParts(typechecker, type, enclosingDeclaration, flags) { if (flags === void 0) { flags = 0 /* TypeFormatFlags.None */; } return mapToDisplayParts(function (writer) { typechecker.writeType(type, enclosingDeclaration, flags | 1024 /* TypeFormatFlags.MultilineObjectLiterals */ | 16384 /* TypeFormatFlags.UseAliasDefinedOutsideCurrentScope */, writer); }); } ts.typeToDisplayParts = typeToDisplayParts; function symbolToDisplayParts(typeChecker, symbol, enclosingDeclaration, meaning, flags) { if (flags === void 0) { flags = 0 /* SymbolFormatFlags.None */; } return mapToDisplayParts(function (writer) { typeChecker.writeSymbol(symbol, enclosingDeclaration, meaning, flags | 8 /* SymbolFormatFlags.UseAliasDefinedOutsideCurrentScope */, writer); }); } ts.symbolToDisplayParts = symbolToDisplayParts; function signatureToDisplayParts(typechecker, signature, enclosingDeclaration, flags) { if (flags === void 0) { flags = 0 /* TypeFormatFlags.None */; } flags |= 16384 /* TypeFormatFlags.UseAliasDefinedOutsideCurrentScope */ | 1024 /* TypeFormatFlags.MultilineObjectLiterals */ | 32 /* TypeFormatFlags.WriteTypeArgumentsOfSignature */ | 8192 /* TypeFormatFlags.OmitParameterModifiers */; return mapToDisplayParts(function (writer) { typechecker.writeSignature(signature, enclosingDeclaration, flags, /*signatureKind*/ undefined, writer); }); } ts.signatureToDisplayParts = signatureToDisplayParts; function nodeToDisplayParts(node, enclosingDeclaration) { var file = enclosingDeclaration.getSourceFile(); return mapToDisplayParts(function (writer) { var printer = ts.createPrinter({ removeComments: true, omitTrailingSemicolon: true }); printer.writeNode(4 /* EmitHint.Unspecified */, node, file, writer); }); } ts.nodeToDisplayParts = nodeToDisplayParts; function isImportOrExportSpecifierName(location) { return !!location.parent && ts.isImportOrExportSpecifier(location.parent) && location.parent.propertyName === location; } ts.isImportOrExportSpecifierName = isImportOrExportSpecifierName; function getScriptKind(fileName, host) { // First check to see if the script kind was specified by the host. Chances are the host // may override the default script kind for the file extension. return ts.ensureScriptKind(fileName, host.getScriptKind && host.getScriptKind(fileName)); } ts.getScriptKind = getScriptKind; function getSymbolTarget(symbol, checker) { var next = symbol; while (isAliasSymbol(next) || (isTransientSymbol(next) && next.target)) { if (isTransientSymbol(next) && next.target) { next = next.target; } else { next = ts.skipAlias(next, checker); } } return next; } ts.getSymbolTarget = getSymbolTarget; function isTransientSymbol(symbol) { return (symbol.flags & 33554432 /* SymbolFlags.Transient */) !== 0; } function isAliasSymbol(symbol) { return (symbol.flags & 2097152 /* SymbolFlags.Alias */) !== 0; } function getUniqueSymbolId(symbol, checker) { return ts.getSymbolId(ts.skipAlias(symbol, checker)); } ts.getUniqueSymbolId = getUniqueSymbolId; function getFirstNonSpaceCharacterPosition(text, position) { while (ts.isWhiteSpaceLike(text.charCodeAt(position))) { position += 1; } return position; } ts.getFirstNonSpaceCharacterPosition = getFirstNonSpaceCharacterPosition; function getPrecedingNonSpaceCharacterPosition(text, position) { while (position > -1 && ts.isWhiteSpaceSingleLine(text.charCodeAt(position))) { position -= 1; } return position + 1; } ts.getPrecedingNonSpaceCharacterPosition = getPrecedingNonSpaceCharacterPosition; /** * Creates a deep, memberwise clone of a node with no source map location. * * WARNING: This is an expensive operation and is only intended to be used in refactorings * and code fixes (because those are triggered by explicit user actions). */ function getSynthesizedDeepClone(node, includeTrivia) { if (includeTrivia === void 0) { includeTrivia = true; } var clone = node && getSynthesizedDeepCloneWorker(node); if (clone && !includeTrivia) suppressLeadingAndTrailingTrivia(clone); return clone; } ts.getSynthesizedDeepClone = getSynthesizedDeepClone; function getSynthesizedDeepCloneWithReplacements(node, includeTrivia, replaceNode) { var clone = replaceNode(node); if (clone) { ts.setOriginalNode(clone, node); } else { clone = getSynthesizedDeepCloneWorker(node, replaceNode); } if (clone && !includeTrivia) suppressLeadingAndTrailingTrivia(clone); return clone; } ts.getSynthesizedDeepCloneWithReplacements = getSynthesizedDeepCloneWithReplacements; function getSynthesizedDeepCloneWorker(node, replaceNode) { var nodeClone = replaceNode ? function (n) { return getSynthesizedDeepCloneWithReplacements(n, /*includeTrivia*/ true, replaceNode); } : getSynthesizedDeepClone; var nodesClone = replaceNode ? function (ns) { return ns && getSynthesizedDeepClonesWithReplacements(ns, /*includeTrivia*/ true, replaceNode); } : function (ns) { return ns && getSynthesizedDeepClones(ns); }; var visited = ts.visitEachChild(node, nodeClone, ts.nullTransformationContext, nodesClone, nodeClone); if (visited === node) { // This only happens for leaf nodes - internal nodes always see their children change. var clone_1 = ts.isStringLiteral(node) ? ts.setOriginalNode(ts.factory.createStringLiteralFromNode(node), node) : ts.isNumericLiteral(node) ? ts.setOriginalNode(ts.factory.createNumericLiteral(node.text, node.numericLiteralFlags), node) : ts.factory.cloneNode(node); return ts.setTextRange(clone_1, node); } // PERF: As an optimization, rather than calling factory.cloneNode, we'll update // the new node created by visitEachChild with the extra changes factory.cloneNode // would have made. visited.parent = undefined; return visited; } function getSynthesizedDeepClones(nodes, includeTrivia) { if (includeTrivia === void 0) { includeTrivia = true; } return nodes && ts.factory.createNodeArray(nodes.map(function (n) { return getSynthesizedDeepClone(n, includeTrivia); }), nodes.hasTrailingComma); } ts.getSynthesizedDeepClones = getSynthesizedDeepClones; function getSynthesizedDeepClonesWithReplacements(nodes, includeTrivia, replaceNode) { return ts.factory.createNodeArray(nodes.map(function (n) { return getSynthesizedDeepCloneWithReplacements(n, includeTrivia, replaceNode); }), nodes.hasTrailingComma); } ts.getSynthesizedDeepClonesWithReplacements = getSynthesizedDeepClonesWithReplacements; /** * Sets EmitFlags to suppress leading and trailing trivia on the node. */ function suppressLeadingAndTrailingTrivia(node) { suppressLeadingTrivia(node); suppressTrailingTrivia(node); } ts.suppressLeadingAndTrailingTrivia = suppressLeadingAndTrailingTrivia; /** * Sets EmitFlags to suppress leading trivia on the node. */ function suppressLeadingTrivia(node) { addEmitFlagsRecursively(node, 512 /* EmitFlags.NoLeadingComments */, getFirstChild); } ts.suppressLeadingTrivia = suppressLeadingTrivia; /** * Sets EmitFlags to suppress trailing trivia on the node. */ function suppressTrailingTrivia(node) { addEmitFlagsRecursively(node, 1024 /* EmitFlags.NoTrailingComments */, ts.getLastChild); } ts.suppressTrailingTrivia = suppressTrailingTrivia; function copyComments(sourceNode, targetNode) { var sourceFile = sourceNode.getSourceFile(); var text = sourceFile.text; if (hasLeadingLineBreak(sourceNode, text)) { copyLeadingComments(sourceNode, targetNode, sourceFile); } else { copyTrailingAsLeadingComments(sourceNode, targetNode, sourceFile); } copyTrailingComments(sourceNode, targetNode, sourceFile); } ts.copyComments = copyComments; function hasLeadingLineBreak(node, text) { var start = node.getFullStart(); var end = node.getStart(); for (var i = start; i < end; i++) { if (text.charCodeAt(i) === 10 /* CharacterCodes.lineFeed */) return true; } return false; } function addEmitFlagsRecursively(node, flag, getChild) { ts.addEmitFlags(node, flag); var child = getChild(node); if (child) addEmitFlagsRecursively(child, flag, getChild); } function getFirstChild(node) { return node.forEachChild(function (child) { return child; }); } function getUniqueName(baseName, sourceFile) { var nameText = baseName; for (var i = 1; !ts.isFileLevelUniqueName(sourceFile, nameText); i++) { nameText = "".concat(baseName, "_").concat(i); } return nameText; } ts.getUniqueName = getUniqueName; /** * @return The index of the (only) reference to the extracted symbol. We want the cursor * to be on the reference, rather than the declaration, because it's closer to where the * user was before extracting it. */ function getRenameLocation(edits, renameFilename, name, preferLastLocation) { var delta = 0; var lastPos = -1; for (var _i = 0, edits_1 = edits; _i < edits_1.length; _i++) { var _a = edits_1[_i], fileName = _a.fileName, textChanges_2 = _a.textChanges; ts.Debug.assert(fileName === renameFilename); for (var _b = 0, textChanges_1 = textChanges_2; _b < textChanges_1.length; _b++) { var change = textChanges_1[_b]; var span = change.span, newText = change.newText; var index = indexInTextChange(newText, name); if (index !== -1) { lastPos = span.start + delta + index; // If the reference comes first, return immediately. if (!preferLastLocation) { return lastPos; } } delta += newText.length - span.length; } } // If the declaration comes first, return the position of the last occurrence. ts.Debug.assert(preferLastLocation); ts.Debug.assert(lastPos >= 0); return lastPos; } ts.getRenameLocation = getRenameLocation; function copyLeadingComments(sourceNode, targetNode, sourceFile, commentKind, hasTrailingNewLine) { ts.forEachLeadingCommentRange(sourceFile.text, sourceNode.pos, getAddCommentsFunction(targetNode, sourceFile, commentKind, hasTrailingNewLine, ts.addSyntheticLeadingComment)); } ts.copyLeadingComments = copyLeadingComments; function copyTrailingComments(sourceNode, targetNode, sourceFile, commentKind, hasTrailingNewLine) { ts.forEachTrailingCommentRange(sourceFile.text, sourceNode.end, getAddCommentsFunction(targetNode, sourceFile, commentKind, hasTrailingNewLine, ts.addSyntheticTrailingComment)); } ts.copyTrailingComments = copyTrailingComments; /** * This function copies the trailing comments for the token that comes before `sourceNode`, as leading comments of `targetNode`. * This is useful because sometimes a comment that refers to `sourceNode` will be a leading comment for `sourceNode`, according to the * notion of trivia ownership, and instead will be a trailing comment for the token before `sourceNode`, e.g.: * `function foo(\* not leading comment for a *\ a: string) {}` * The comment refers to `a` but belongs to the `(` token, but we might want to copy it. */ function copyTrailingAsLeadingComments(sourceNode, targetNode, sourceFile, commentKind, hasTrailingNewLine) { ts.forEachTrailingCommentRange(sourceFile.text, sourceNode.pos, getAddCommentsFunction(targetNode, sourceFile, commentKind, hasTrailingNewLine, ts.addSyntheticLeadingComment)); } ts.copyTrailingAsLeadingComments = copyTrailingAsLeadingComments; function getAddCommentsFunction(targetNode, sourceFile, commentKind, hasTrailingNewLine, cb) { return function (pos, end, kind, htnl) { if (kind === 3 /* SyntaxKind.MultiLineCommentTrivia */) { // Remove leading /* pos += 2; // Remove trailing */ end -= 2; } else { // Remove leading // pos += 2; } cb(targetNode, commentKind || kind, sourceFile.text.slice(pos, end), hasTrailingNewLine !== undefined ? hasTrailingNewLine : htnl); }; } function indexInTextChange(change, name) { if (ts.startsWith(change, name)) return 0; // Add a " " to avoid references inside words var idx = change.indexOf(" " + name); if (idx === -1) idx = change.indexOf("." + name); if (idx === -1) idx = change.indexOf('"' + name); return idx === -1 ? -1 : idx + 1; } /* @internal */ function needsParentheses(expression) { return ts.isBinaryExpression(expression) && expression.operatorToken.kind === 27 /* SyntaxKind.CommaToken */ || ts.isObjectLiteralExpression(expression) || ts.isAsExpression(expression) && ts.isObjectLiteralExpression(expression.expression); } ts.needsParentheses = needsParentheses; function getContextualTypeFromParent(node, checker) { var parent = node.parent; switch (parent.kind) { case 209 /* SyntaxKind.NewExpression */: return checker.getContextualType(parent); case 221 /* SyntaxKind.BinaryExpression */: { var _a = parent, left = _a.left, operatorToken = _a.operatorToken, right = _a.right; return isEqualityOperatorKind(operatorToken.kind) ? checker.getTypeAtLocation(node === right ? left : right) : checker.getContextualType(node); } case 289 /* SyntaxKind.CaseClause */: return parent.expression === node ? getSwitchedType(parent, checker) : undefined; default: return checker.getContextualType(node); } } ts.getContextualTypeFromParent = getContextualTypeFromParent; function quote(sourceFile, preferences, text) { // Editors can pass in undefined or empty string - we want to infer the preference in those cases. var quotePreference = getQuotePreference(sourceFile, preferences); var quoted = JSON.stringify(text); return quotePreference === 0 /* QuotePreference.Single */ ? "'".concat(ts.stripQuotes(quoted).replace(/'/g, "\\'").replace(/\\"/g, '"'), "'") : quoted; } ts.quote = quote; function isEqualityOperatorKind(kind) { switch (kind) { case 36 /* SyntaxKind.EqualsEqualsEqualsToken */: case 34 /* SyntaxKind.EqualsEqualsToken */: case 37 /* SyntaxKind.ExclamationEqualsEqualsToken */: case 35 /* SyntaxKind.ExclamationEqualsToken */: return true; default: return false; } } ts.isEqualityOperatorKind = isEqualityOperatorKind; function isStringLiteralOrTemplate(node) { switch (node.kind) { case 10 /* SyntaxKind.StringLiteral */: case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: case 223 /* SyntaxKind.TemplateExpression */: case 210 /* SyntaxKind.TaggedTemplateExpression */: return true; default: return false; } } ts.isStringLiteralOrTemplate = isStringLiteralOrTemplate; function hasIndexSignature(type) { return !!type.getStringIndexType() || !!type.getNumberIndexType(); } ts.hasIndexSignature = hasIndexSignature; function getSwitchedType(caseClause, checker) { return checker.getTypeAtLocation(caseClause.parent.parent.expression); } ts.getSwitchedType = getSwitchedType; ts.ANONYMOUS = "anonymous function"; function getTypeNodeIfAccessible(type, enclosingScope, program, host) { var checker = program.getTypeChecker(); var typeIsAccessible = true; var notAccessible = function () { return typeIsAccessible = false; }; var res = checker.typeToTypeNode(type, enclosingScope, 1 /* NodeBuilderFlags.NoTruncation */, { trackSymbol: function (symbol, declaration, meaning) { typeIsAccessible = typeIsAccessible && checker.isSymbolAccessible(symbol, declaration, meaning, /*shouldComputeAliasToMarkVisible*/ false).accessibility === 0 /* SymbolAccessibility.Accessible */; return !typeIsAccessible; }, reportInaccessibleThisError: notAccessible, reportPrivateInBaseOfClassExpression: notAccessible, reportInaccessibleUniqueSymbolError: notAccessible, moduleResolverHost: getModuleSpecifierResolverHost(program, host) }); return typeIsAccessible ? res : undefined; } ts.getTypeNodeIfAccessible = getTypeNodeIfAccessible; function syntaxRequiresTrailingCommaOrSemicolonOrASI(kind) { return kind === 174 /* SyntaxKind.CallSignature */ || kind === 175 /* SyntaxKind.ConstructSignature */ || kind === 176 /* SyntaxKind.IndexSignature */ || kind === 166 /* SyntaxKind.PropertySignature */ || kind === 168 /* SyntaxKind.MethodSignature */; } function syntaxRequiresTrailingFunctionBlockOrSemicolonOrASI(kind) { return kind === 256 /* SyntaxKind.FunctionDeclaration */ || kind === 171 /* SyntaxKind.Constructor */ || kind === 169 /* SyntaxKind.MethodDeclaration */ || kind === 172 /* SyntaxKind.GetAccessor */ || kind === 173 /* SyntaxKind.SetAccessor */; } function syntaxRequiresTrailingModuleBlockOrSemicolonOrASI(kind) { return kind === 261 /* SyntaxKind.ModuleDeclaration */; } function syntaxRequiresTrailingSemicolonOrASI(kind) { return kind === 237 /* SyntaxKind.VariableStatement */ || kind === 238 /* SyntaxKind.ExpressionStatement */ || kind === 240 /* SyntaxKind.DoStatement */ || kind === 245 /* SyntaxKind.ContinueStatement */ || kind === 246 /* SyntaxKind.BreakStatement */ || kind === 247 /* SyntaxKind.ReturnStatement */ || kind === 251 /* SyntaxKind.ThrowStatement */ || kind === 253 /* SyntaxKind.DebuggerStatement */ || kind === 167 /* SyntaxKind.PropertyDeclaration */ || kind === 259 /* SyntaxKind.TypeAliasDeclaration */ || kind === 266 /* SyntaxKind.ImportDeclaration */ || kind === 265 /* SyntaxKind.ImportEqualsDeclaration */ || kind === 272 /* SyntaxKind.ExportDeclaration */ || kind === 264 /* SyntaxKind.NamespaceExportDeclaration */ || kind === 271 /* SyntaxKind.ExportAssignment */; } ts.syntaxRequiresTrailingSemicolonOrASI = syntaxRequiresTrailingSemicolonOrASI; ts.syntaxMayBeASICandidate = ts.or(syntaxRequiresTrailingCommaOrSemicolonOrASI, syntaxRequiresTrailingFunctionBlockOrSemicolonOrASI, syntaxRequiresTrailingModuleBlockOrSemicolonOrASI, syntaxRequiresTrailingSemicolonOrASI); function nodeIsASICandidate(node, sourceFile) { var lastToken = node.getLastToken(sourceFile); if (lastToken && lastToken.kind === 26 /* SyntaxKind.SemicolonToken */) { return false; } if (syntaxRequiresTrailingCommaOrSemicolonOrASI(node.kind)) { if (lastToken && lastToken.kind === 27 /* SyntaxKind.CommaToken */) { return false; } } else if (syntaxRequiresTrailingModuleBlockOrSemicolonOrASI(node.kind)) { var lastChild = ts.last(node.getChildren(sourceFile)); if (lastChild && ts.isModuleBlock(lastChild)) { return false; } } else if (syntaxRequiresTrailingFunctionBlockOrSemicolonOrASI(node.kind)) { var lastChild = ts.last(node.getChildren(sourceFile)); if (lastChild && ts.isFunctionBlock(lastChild)) { return false; } } else if (!syntaxRequiresTrailingSemicolonOrASI(node.kind)) { return false; } // See comment in parser’s `parseDoStatement` if (node.kind === 240 /* SyntaxKind.DoStatement */) { return true; } var topNode = ts.findAncestor(node, function (ancestor) { return !ancestor.parent; }); var nextToken = findNextToken(node, topNode, sourceFile); if (!nextToken || nextToken.kind === 19 /* SyntaxKind.CloseBraceToken */) { return true; } var startLine = sourceFile.getLineAndCharacterOfPosition(node.getEnd()).line; var endLine = sourceFile.getLineAndCharacterOfPosition(nextToken.getStart(sourceFile)).line; return startLine !== endLine; } function positionIsASICandidate(pos, context, sourceFile) { var contextAncestor = ts.findAncestor(context, function (ancestor) { if (ancestor.end !== pos) { return "quit"; } return ts.syntaxMayBeASICandidate(ancestor.kind); }); return !!contextAncestor && nodeIsASICandidate(contextAncestor, sourceFile); } ts.positionIsASICandidate = positionIsASICandidate; function probablyUsesSemicolons(sourceFile) { var withSemicolon = 0; var withoutSemicolon = 0; var nStatementsToObserve = 5; ts.forEachChild(sourceFile, function visit(node) { if (syntaxRequiresTrailingSemicolonOrASI(node.kind)) { var lastToken = node.getLastToken(sourceFile); if ((lastToken === null || lastToken === void 0 ? void 0 : lastToken.kind) === 26 /* SyntaxKind.SemicolonToken */) { withSemicolon++; } else { withoutSemicolon++; } } else if (syntaxRequiresTrailingCommaOrSemicolonOrASI(node.kind)) { var lastToken = node.getLastToken(sourceFile); if ((lastToken === null || lastToken === void 0 ? void 0 : lastToken.kind) === 26 /* SyntaxKind.SemicolonToken */) { withSemicolon++; } else if (lastToken && lastToken.kind !== 27 /* SyntaxKind.CommaToken */) { var lastTokenLine = ts.getLineAndCharacterOfPosition(sourceFile, lastToken.getStart(sourceFile)).line; var nextTokenLine = ts.getLineAndCharacterOfPosition(sourceFile, ts.getSpanOfTokenAtPosition(sourceFile, lastToken.end).start).line; // Avoid counting missing semicolon in single-line objects: // `function f(p: { x: string /*no semicolon here is insignificant*/ }) {` if (lastTokenLine !== nextTokenLine) { withoutSemicolon++; } } } if (withSemicolon + withoutSemicolon >= nStatementsToObserve) { return true; } return ts.forEachChild(node, visit); }); // One statement missing a semicolon isn't sufficient evidence to say the user // doesn’t want semicolons, because they may not even be done writing that statement. if (withSemicolon === 0 && withoutSemicolon <= 1) { return true; } // If even 2/5 places have a semicolon, the user probably wants semicolons return withSemicolon / withoutSemicolon > 1 / nStatementsToObserve; } ts.probablyUsesSemicolons = probablyUsesSemicolons; function tryGetDirectories(host, directoryName) { return tryIOAndConsumeErrors(host, host.getDirectories, directoryName) || []; } ts.tryGetDirectories = tryGetDirectories; function tryReadDirectory(host, path, extensions, exclude, include) { return tryIOAndConsumeErrors(host, host.readDirectory, path, extensions, exclude, include) || ts.emptyArray; } ts.tryReadDirectory = tryReadDirectory; function tryFileExists(host, path) { return tryIOAndConsumeErrors(host, host.fileExists, path); } ts.tryFileExists = tryFileExists; function tryDirectoryExists(host, path) { return tryAndIgnoreErrors(function () { return ts.directoryProbablyExists(path, host); }) || false; } ts.tryDirectoryExists = tryDirectoryExists; function tryAndIgnoreErrors(cb) { try { return cb(); } catch (_a) { return undefined; } } ts.tryAndIgnoreErrors = tryAndIgnoreErrors; function tryIOAndConsumeErrors(host, toApply) { var args = []; for (var _i = 2; _i < arguments.length; _i++) { args[_i - 2] = arguments[_i]; } return tryAndIgnoreErrors(function () { return toApply && toApply.apply(host, args); }); } ts.tryIOAndConsumeErrors = tryIOAndConsumeErrors; function findPackageJsons(startDirectory, host, stopDirectory) { var paths = []; ts.forEachAncestorDirectory(startDirectory, function (ancestor) { if (ancestor === stopDirectory) { return true; } var currentConfigPath = ts.combinePaths(ancestor, "package.json"); if (tryFileExists(host, currentConfigPath)) { paths.push(currentConfigPath); } }); return paths; } ts.findPackageJsons = findPackageJsons; function findPackageJson(directory, host) { var packageJson; ts.forEachAncestorDirectory(directory, function (ancestor) { if (ancestor === "node_modules") return true; packageJson = ts.findConfigFile(ancestor, function (f) { return tryFileExists(host, f); }, "package.json"); if (packageJson) { return true; // break out } }); return packageJson; } ts.findPackageJson = findPackageJson; function getPackageJsonsVisibleToFile(fileName, host) { if (!host.fileExists) { return []; } var packageJsons = []; ts.forEachAncestorDirectory(ts.getDirectoryPath(fileName), function (ancestor) { var packageJsonFileName = ts.combinePaths(ancestor, "package.json"); if (host.fileExists(packageJsonFileName)) { var info = createPackageJsonInfo(packageJsonFileName, host); if (info) { packageJsons.push(info); } } }); return packageJsons; } ts.getPackageJsonsVisibleToFile = getPackageJsonsVisibleToFile; function createPackageJsonInfo(fileName, host) { if (!host.readFile) { return undefined; } var dependencyKeys = ["dependencies", "devDependencies", "optionalDependencies", "peerDependencies"]; var stringContent = host.readFile(fileName) || ""; var content = tryParseJson(stringContent); var info = {}; if (content) { for (var _i = 0, dependencyKeys_1 = dependencyKeys; _i < dependencyKeys_1.length; _i++) { var key = dependencyKeys_1[_i]; var dependencies = content[key]; if (!dependencies) { continue; } var dependencyMap = new ts.Map(); for (var packageName in dependencies) { dependencyMap.set(packageName, dependencies[packageName]); } info[key] = dependencyMap; } } var dependencyGroups = [ [1 /* PackageJsonDependencyGroup.Dependencies */, info.dependencies], [2 /* PackageJsonDependencyGroup.DevDependencies */, info.devDependencies], [8 /* PackageJsonDependencyGroup.OptionalDependencies */, info.optionalDependencies], [4 /* PackageJsonDependencyGroup.PeerDependencies */, info.peerDependencies], ]; return __assign(__assign({}, info), { parseable: !!content, fileName: fileName, get: get, has: function (dependencyName, inGroups) { return !!get(dependencyName, inGroups); } }); function get(dependencyName, inGroups) { if (inGroups === void 0) { inGroups = 15 /* PackageJsonDependencyGroup.All */; } for (var _i = 0, dependencyGroups_1 = dependencyGroups; _i < dependencyGroups_1.length; _i++) { var _a = dependencyGroups_1[_i], group_1 = _a[0], deps = _a[1]; if (deps && (inGroups & group_1)) { var dep = deps.get(dependencyName); if (dep !== undefined) { return dep; } } } } } ts.createPackageJsonInfo = createPackageJsonInfo; function createPackageJsonImportFilter(fromFile, preferences, host) { var packageJsons = ((host.getPackageJsonsVisibleToFile && host.getPackageJsonsVisibleToFile(fromFile.fileName)) || getPackageJsonsVisibleToFile(fromFile.fileName, host)).filter(function (p) { return p.parseable; }); var usesNodeCoreModules; return { allowsImportingAmbientModule: allowsImportingAmbientModule, allowsImportingSourceFile: allowsImportingSourceFile, allowsImportingSpecifier: allowsImportingSpecifier }; function moduleSpecifierIsCoveredByPackageJson(specifier) { var packageName = getNodeModuleRootSpecifier(specifier); for (var _i = 0, packageJsons_1 = packageJsons; _i < packageJsons_1.length; _i++) { var packageJson = packageJsons_1[_i]; if (packageJson.has(packageName) || packageJson.has(ts.getTypesPackageName(packageName))) { return true; } } return false; } function allowsImportingAmbientModule(moduleSymbol, moduleSpecifierResolutionHost) { if (!packageJsons.length || !moduleSymbol.valueDeclaration) { return true; } var declaringSourceFile = moduleSymbol.valueDeclaration.getSourceFile(); var declaringNodeModuleName = getNodeModulesPackageNameFromFileName(declaringSourceFile.fileName, moduleSpecifierResolutionHost); if (typeof declaringNodeModuleName === "undefined") { return true; } var declaredModuleSpecifier = ts.stripQuotes(moduleSymbol.getName()); if (isAllowedCoreNodeModulesImport(declaredModuleSpecifier)) { return true; } return moduleSpecifierIsCoveredByPackageJson(declaringNodeModuleName) || moduleSpecifierIsCoveredByPackageJson(declaredModuleSpecifier); } function allowsImportingSourceFile(sourceFile, moduleSpecifierResolutionHost) { if (!packageJsons.length) { return true; } var moduleSpecifier = getNodeModulesPackageNameFromFileName(sourceFile.fileName, moduleSpecifierResolutionHost); if (!moduleSpecifier) { return true; } return moduleSpecifierIsCoveredByPackageJson(moduleSpecifier); } function allowsImportingSpecifier(moduleSpecifier) { if (!packageJsons.length || isAllowedCoreNodeModulesImport(moduleSpecifier)) { return true; } if (ts.pathIsRelative(moduleSpecifier) || ts.isRootedDiskPath(moduleSpecifier)) { return true; } return moduleSpecifierIsCoveredByPackageJson(moduleSpecifier); } function isAllowedCoreNodeModulesImport(moduleSpecifier) { // If we’re in JavaScript, it can be difficult to tell whether the user wants to import // from Node core modules or not. We can start by seeing if the user is actually using // any node core modules, as opposed to simply having @types/node accidentally as a // dependency of a dependency. if (ts.isSourceFileJS(fromFile) && ts.JsTyping.nodeCoreModules.has(moduleSpecifier)) { if (usesNodeCoreModules === undefined) { usesNodeCoreModules = consumesNodeCoreModules(fromFile); } if (usesNodeCoreModules) { return true; } } return false; } function getNodeModulesPackageNameFromFileName(importedFileName, moduleSpecifierResolutionHost) { if (!ts.stringContains(importedFileName, "node_modules")) { return undefined; } var specifier = ts.moduleSpecifiers.getNodeModulesPackageName(host.getCompilationSettings(), fromFile, importedFileName, moduleSpecifierResolutionHost, preferences); if (!specifier) { return undefined; } // Paths here are not node_modules, so we don’t care about them; // returning anything will trigger a lookup in package.json. if (!ts.pathIsRelative(specifier) && !ts.isRootedDiskPath(specifier)) { return getNodeModuleRootSpecifier(specifier); } } function getNodeModuleRootSpecifier(fullSpecifier) { var components = ts.getPathComponents(ts.getPackageNameFromTypesPackageName(fullSpecifier)).slice(1); // Scoped packages if (ts.startsWith(components[0], "@")) { return "".concat(components[0], "/").concat(components[1]); } return components[0]; } } ts.createPackageJsonImportFilter = createPackageJsonImportFilter; function tryParseJson(text) { try { return JSON.parse(text); } catch (_a) { return undefined; } } function consumesNodeCoreModules(sourceFile) { return ts.some(sourceFile.imports, function (_a) { var text = _a.text; return ts.JsTyping.nodeCoreModules.has(text); }); } ts.consumesNodeCoreModules = consumesNodeCoreModules; function isInsideNodeModules(fileOrDirectory) { return ts.contains(ts.getPathComponents(fileOrDirectory), "node_modules"); } ts.isInsideNodeModules = isInsideNodeModules; function isDiagnosticWithLocation(diagnostic) { return diagnostic.file !== undefined && diagnostic.start !== undefined && diagnostic.length !== undefined; } ts.isDiagnosticWithLocation = isDiagnosticWithLocation; function findDiagnosticForNode(node, sortedFileDiagnostics) { var span = createTextSpanFromNode(node); var index = ts.binarySearchKey(sortedFileDiagnostics, span, ts.identity, ts.compareTextSpans); if (index >= 0) { var diagnostic = sortedFileDiagnostics[index]; ts.Debug.assertEqual(diagnostic.file, node.getSourceFile(), "Diagnostics proided to 'findDiagnosticForNode' must be from a single SourceFile"); return ts.cast(diagnostic, isDiagnosticWithLocation); } } ts.findDiagnosticForNode = findDiagnosticForNode; function getDiagnosticsWithinSpan(span, sortedFileDiagnostics) { var _a; var index = ts.binarySearchKey(sortedFileDiagnostics, span.start, function (diag) { return diag.start; }, ts.compareValues); if (index < 0) { index = ~index; } while (((_a = sortedFileDiagnostics[index - 1]) === null || _a === void 0 ? void 0 : _a.start) === span.start) { index--; } var result = []; var end = ts.textSpanEnd(span); while (true) { var diagnostic = ts.tryCast(sortedFileDiagnostics[index], isDiagnosticWithLocation); if (!diagnostic || diagnostic.start > end) { break; } if (ts.textSpanContainsTextSpan(span, diagnostic)) { result.push(diagnostic); } index++; } return result; } ts.getDiagnosticsWithinSpan = getDiagnosticsWithinSpan; /* @internal */ function getRefactorContextSpan(_a) { var startPosition = _a.startPosition, endPosition = _a.endPosition; return ts.createTextSpanFromBounds(startPosition, endPosition === undefined ? startPosition : endPosition); } ts.getRefactorContextSpan = getRefactorContextSpan; /* @internal */ function getFixableErrorSpanExpression(sourceFile, span) { var token = getTokenAtPosition(sourceFile, span.start); // Checker has already done work to determine that await might be possible, and has attached // related info to the node, so start by finding the expression that exactly matches up // with the diagnostic range. var expression = ts.findAncestor(token, function (node) { if (node.getStart(sourceFile) < span.start || node.getEnd() > ts.textSpanEnd(span)) { return "quit"; } return ts.isExpression(node) && textSpansEqual(span, createTextSpanFromNode(node, sourceFile)); }); return expression; } ts.getFixableErrorSpanExpression = getFixableErrorSpanExpression; function mapOneOrMany(valueOrArray, f, resultSelector) { if (resultSelector === void 0) { resultSelector = ts.identity; } return valueOrArray ? ts.isArray(valueOrArray) ? resultSelector(ts.map(valueOrArray, f)) : f(valueOrArray, 0) : undefined; } ts.mapOneOrMany = mapOneOrMany; /** * If the provided value is an array, the first element of the array is returned; otherwise, the provided value is returned instead. */ function firstOrOnly(valueOrArray) { return ts.isArray(valueOrArray) ? ts.first(valueOrArray) : valueOrArray; } ts.firstOrOnly = firstOrOnly; function getNamesForExportedSymbol(symbol, scriptTarget) { if (needsNameFromDeclaration(symbol)) { var fromDeclaration = getDefaultLikeExportNameFromDeclaration(symbol); if (fromDeclaration) return fromDeclaration; var fileNameCase = ts.codefix.moduleSymbolToValidIdentifier(getSymbolParentOrFail(symbol), scriptTarget, /*preferCapitalized*/ false); var capitalized = ts.codefix.moduleSymbolToValidIdentifier(getSymbolParentOrFail(symbol), scriptTarget, /*preferCapitalized*/ true); if (fileNameCase === capitalized) return fileNameCase; return [fileNameCase, capitalized]; } return symbol.name; } ts.getNamesForExportedSymbol = getNamesForExportedSymbol; function getNameForExportedSymbol(symbol, scriptTarget, preferCapitalized) { if (needsNameFromDeclaration(symbol)) { // Name of "export default foo;" is "foo". Name of "export default 0" is the filename converted to camelCase. return getDefaultLikeExportNameFromDeclaration(symbol) || ts.codefix.moduleSymbolToValidIdentifier(getSymbolParentOrFail(symbol), scriptTarget, !!preferCapitalized); } return symbol.name; } ts.getNameForExportedSymbol = getNameForExportedSymbol; function needsNameFromDeclaration(symbol) { return !(symbol.flags & 33554432 /* SymbolFlags.Transient */) && (symbol.escapedName === "export=" /* InternalSymbolName.ExportEquals */ || symbol.escapedName === "default" /* InternalSymbolName.Default */); } function getDefaultLikeExportNameFromDeclaration(symbol) { return ts.firstDefined(symbol.declarations, function (d) { var _a; return ts.isExportAssignment(d) ? (_a = ts.tryCast(ts.skipOuterExpressions(d.expression), ts.isIdentifier)) === null || _a === void 0 ? void 0 : _a.text : undefined; }); } function getSymbolParentOrFail(symbol) { var _a; return ts.Debug.checkDefined(symbol.parent, "Symbol parent was undefined. Flags: ".concat(ts.Debug.formatSymbolFlags(symbol.flags), ". ") + "Declarations: ".concat((_a = symbol.declarations) === null || _a === void 0 ? void 0 : _a.map(function (d) { var kind = ts.Debug.formatSyntaxKind(d.kind); var inJS = ts.isInJSFile(d); var expression = d.expression; return (inJS ? "[JS]" : "") + kind + (expression ? " (expression: ".concat(ts.Debug.formatSyntaxKind(expression.kind), ")") : ""); }).join(", "), ".")); } /** * Useful to check whether a string contains another string at a specific index * without allocating another string or traversing the entire contents of the outer string. * * This function is useful in place of either of the following: * * ```ts * // Allocates * haystack.substr(startIndex, needle.length) === needle * * // Full traversal * haystack.indexOf(needle, startIndex) === startIndex * ``` * * @param haystack The string that potentially contains `needle`. * @param needle The string whose content might sit within `haystack`. * @param startIndex The index within `haystack` to start searching for `needle`. */ function stringContainsAt(haystack, needle, startIndex) { var needleLength = needle.length; if (needleLength + startIndex > haystack.length) { return false; } for (var i = 0; i < needleLength; i++) { if (needle.charCodeAt(i) !== haystack.charCodeAt(i + startIndex)) return false; } return true; } ts.stringContainsAt = stringContainsAt; function startsWithUnderscore(name) { return name.charCodeAt(0) === 95 /* CharacterCodes._ */; } ts.startsWithUnderscore = startsWithUnderscore; function isGlobalDeclaration(declaration) { return !isNonGlobalDeclaration(declaration); } ts.isGlobalDeclaration = isGlobalDeclaration; function isNonGlobalDeclaration(declaration) { var sourceFile = declaration.getSourceFile(); // If the file is not a module, the declaration is global if (!sourceFile.externalModuleIndicator && !sourceFile.commonJsModuleIndicator) { return false; } // If the file is a module written in TypeScript, it still might be in a `declare global` augmentation return ts.isInJSFile(declaration) || !ts.findAncestor(declaration, ts.isGlobalScopeAugmentation); } ts.isNonGlobalDeclaration = isNonGlobalDeclaration; function isDeprecatedDeclaration(decl) { return !!(ts.getCombinedNodeFlagsAlwaysIncludeJSDoc(decl) & 8192 /* ModifierFlags.Deprecated */); } ts.isDeprecatedDeclaration = isDeprecatedDeclaration; function shouldUseUriStyleNodeCoreModules(file, program) { var decisionFromFile = ts.firstDefined(file.imports, function (node) { if (ts.JsTyping.nodeCoreModules.has(node.text)) { return ts.startsWith(node.text, "node:"); } }); return decisionFromFile !== null && decisionFromFile !== void 0 ? decisionFromFile : program.usesUriStyleNodeCoreModules; } ts.shouldUseUriStyleNodeCoreModules = shouldUseUriStyleNodeCoreModules; function getNewLineKind(newLineCharacter) { return newLineCharacter === "\n" ? 1 /* NewLineKind.LineFeed */ : 0 /* NewLineKind.CarriageReturnLineFeed */; } ts.getNewLineKind = getNewLineKind; function diagnosticToString(diag) { return ts.isArray(diag) ? ts.formatStringFromArgs(ts.getLocaleSpecificMessage(diag[0]), diag.slice(1)) : ts.getLocaleSpecificMessage(diag); } ts.diagnosticToString = diagnosticToString; /** * Get format code settings for a code writing context (e.g. when formatting text changes or completions code). */ function getFormatCodeSettingsForWriting(_a, sourceFile) { var options = _a.options; var shouldAutoDetectSemicolonPreference = !options.semicolons || options.semicolons === ts.SemicolonPreference.Ignore; var shouldRemoveSemicolons = options.semicolons === ts.SemicolonPreference.Remove || shouldAutoDetectSemicolonPreference && !probablyUsesSemicolons(sourceFile); return __assign(__assign({}, options), { semicolons: shouldRemoveSemicolons ? ts.SemicolonPreference.Remove : ts.SemicolonPreference.Ignore }); } ts.getFormatCodeSettingsForWriting = getFormatCodeSettingsForWriting; function jsxModeNeedsExplicitImport(jsx) { return jsx === 2 /* JsxEmit.React */ || jsx === 3 /* JsxEmit.ReactNative */; } ts.jsxModeNeedsExplicitImport = jsxModeNeedsExplicitImport; // #endregion })(ts || (ts = {})); /*@internal*/ var ts; (function (ts) { var ImportKind; (function (ImportKind) { ImportKind[ImportKind["Named"] = 0] = "Named"; ImportKind[ImportKind["Default"] = 1] = "Default"; ImportKind[ImportKind["Namespace"] = 2] = "Namespace"; ImportKind[ImportKind["CommonJS"] = 3] = "CommonJS"; })(ImportKind = ts.ImportKind || (ts.ImportKind = {})); var ExportKind; (function (ExportKind) { ExportKind[ExportKind["Named"] = 0] = "Named"; ExportKind[ExportKind["Default"] = 1] = "Default"; ExportKind[ExportKind["ExportEquals"] = 2] = "ExportEquals"; ExportKind[ExportKind["UMD"] = 3] = "UMD"; })(ExportKind = ts.ExportKind || (ts.ExportKind = {})); function createCacheableExportInfoMap(host) { var exportInfoId = 1; var exportInfo = ts.createMultiMap(); var symbols = new ts.Map(); /** * Key: node_modules package name (no @types). * Value: path to deepest node_modules folder seen that is * both visible to `usableByFileName` and contains the package. * * Later, we can see if a given SymbolExportInfo is shadowed by * a another installation of the same package in a deeper * node_modules folder by seeing if its path starts with the * value stored here. */ var packages = new ts.Map(); var usableByFileName; var cache = { isUsableByFile: function (importingFile) { return importingFile === usableByFileName; }, isEmpty: function () { return !exportInfo.size; }, clear: function () { exportInfo.clear(); symbols.clear(); usableByFileName = undefined; }, add: function (importingFile, symbol, symbolTableKey, moduleSymbol, moduleFile, exportKind, isFromPackageJson, checker) { if (importingFile !== usableByFileName) { cache.clear(); usableByFileName = importingFile; } var packageName; if (moduleFile) { var nodeModulesPathParts = ts.getNodeModulePathParts(moduleFile.fileName); if (nodeModulesPathParts) { var topLevelNodeModulesIndex = nodeModulesPathParts.topLevelNodeModulesIndex, topLevelPackageNameIndex = nodeModulesPathParts.topLevelPackageNameIndex, packageRootIndex = nodeModulesPathParts.packageRootIndex; packageName = ts.unmangleScopedPackageName(ts.getPackageNameFromTypesPackageName(moduleFile.fileName.substring(topLevelPackageNameIndex + 1, packageRootIndex))); if (ts.startsWith(importingFile, moduleFile.path.substring(0, topLevelNodeModulesIndex))) { var prevDeepestNodeModulesPath = packages.get(packageName); var nodeModulesPath = moduleFile.fileName.substring(0, topLevelPackageNameIndex + 1); if (prevDeepestNodeModulesPath) { var prevDeepestNodeModulesIndex = prevDeepestNodeModulesPath.indexOf(ts.nodeModulesPathPart); if (topLevelNodeModulesIndex > prevDeepestNodeModulesIndex) { packages.set(packageName, nodeModulesPath); } } else { packages.set(packageName, nodeModulesPath); } } } } var isDefault = exportKind === 1 /* ExportKind.Default */; var namedSymbol = isDefault && ts.getLocalSymbolForExportDefault(symbol) || symbol; // 1. A named export must be imported by its key in `moduleSymbol.exports` or `moduleSymbol.members`. // 2. A re-export merged with an export from a module augmentation can result in `symbol` // being an external module symbol; the name it is re-exported by will be `symbolTableKey` // (which comes from the keys of `moduleSymbol.exports`.) // 3. Otherwise, we have a default/namespace import that can be imported by any name, and // `symbolTableKey` will be something undesirable like `export=` or `default`, so we try to // get a better name. var names = exportKind === 0 /* ExportKind.Named */ || ts.isExternalModuleSymbol(namedSymbol) ? ts.unescapeLeadingUnderscores(symbolTableKey) : ts.getNamesForExportedSymbol(namedSymbol, /*scriptTarget*/ undefined); var symbolName = typeof names === "string" ? names : names[0]; var capitalizedSymbolName = typeof names === "string" ? undefined : names[1]; var moduleName = ts.stripQuotes(moduleSymbol.name); var id = exportInfoId++; var target = ts.skipAlias(symbol, checker); var storedSymbol = symbol.flags & 33554432 /* SymbolFlags.Transient */ ? undefined : symbol; var storedModuleSymbol = moduleSymbol.flags & 33554432 /* SymbolFlags.Transient */ ? undefined : moduleSymbol; if (!storedSymbol || !storedModuleSymbol) symbols.set(id, [symbol, moduleSymbol]); exportInfo.add(key(symbolName, symbol, ts.isExternalModuleNameRelative(moduleName) ? undefined : moduleName, checker), { id: id, symbolTableKey: symbolTableKey, symbolName: symbolName, capitalizedSymbolName: capitalizedSymbolName, moduleName: moduleName, moduleFile: moduleFile, moduleFileName: moduleFile === null || moduleFile === void 0 ? void 0 : moduleFile.fileName, packageName: packageName, exportKind: exportKind, targetFlags: target.flags, isFromPackageJson: isFromPackageJson, symbol: storedSymbol, moduleSymbol: storedModuleSymbol, }); }, get: function (importingFile, key) { if (importingFile !== usableByFileName) return; var result = exportInfo.get(key); return result === null || result === void 0 ? void 0 : result.map(rehydrateCachedInfo); }, search: function (importingFile, preferCapitalized, matches, action) { if (importingFile !== usableByFileName) return; exportInfo.forEach(function (info, key) { var _a = parseKey(key), symbolName = _a.symbolName, ambientModuleName = _a.ambientModuleName; var name = preferCapitalized && info[0].capitalizedSymbolName || symbolName; if (matches(name, info[0].targetFlags)) { var rehydrated = info.map(rehydrateCachedInfo); var filtered = rehydrated.filter(function (r, i) { return isNotShadowedByDeeperNodeModulesPackage(r, info[i].packageName); }); if (filtered.length) { action(filtered, name, !!ambientModuleName, key); } } }); }, releaseSymbols: function () { symbols.clear(); }, onFileChanged: function (oldSourceFile, newSourceFile, typeAcquisitionEnabled) { if (fileIsGlobalOnly(oldSourceFile) && fileIsGlobalOnly(newSourceFile)) { // File is purely global; doesn't affect export map return false; } if (usableByFileName && usableByFileName !== newSourceFile.path || // If ATA is enabled, auto-imports uses existing imports to guess whether you want auto-imports from node. // Adding or removing imports from node could change the outcome of that guess, so could change the suggestions list. typeAcquisitionEnabled && ts.consumesNodeCoreModules(oldSourceFile) !== ts.consumesNodeCoreModules(newSourceFile) || // Module agumentation and ambient module changes can add or remove exports available to be auto-imported. // Changes elsewhere in the file can change the *type* of an export in a module augmentation, // but type info is gathered in getCompletionEntryDetails, which doesn’t use the cache. !ts.arrayIsEqualTo(oldSourceFile.moduleAugmentations, newSourceFile.moduleAugmentations) || !ambientModuleDeclarationsAreEqual(oldSourceFile, newSourceFile)) { cache.clear(); return true; } usableByFileName = newSourceFile.path; return false; }, }; if (ts.Debug.isDebugging) { Object.defineProperty(cache, "__cache", { get: function () { return exportInfo; } }); } return cache; function rehydrateCachedInfo(info) { if (info.symbol && info.moduleSymbol) return info; var id = info.id, exportKind = info.exportKind, targetFlags = info.targetFlags, isFromPackageJson = info.isFromPackageJson, moduleFileName = info.moduleFileName; var _a = symbols.get(id) || ts.emptyArray, cachedSymbol = _a[0], cachedModuleSymbol = _a[1]; if (cachedSymbol && cachedModuleSymbol) { return { symbol: cachedSymbol, moduleSymbol: cachedModuleSymbol, moduleFileName: moduleFileName, exportKind: exportKind, targetFlags: targetFlags, isFromPackageJson: isFromPackageJson, }; } var checker = (isFromPackageJson ? host.getPackageJsonAutoImportProvider() : host.getCurrentProgram()).getTypeChecker(); var moduleSymbol = info.moduleSymbol || cachedModuleSymbol || ts.Debug.checkDefined(info.moduleFile ? checker.getMergedSymbol(info.moduleFile.symbol) : checker.tryFindAmbientModule(info.moduleName)); var symbol = info.symbol || cachedSymbol || ts.Debug.checkDefined(exportKind === 2 /* ExportKind.ExportEquals */ ? checker.resolveExternalModuleSymbol(moduleSymbol) : checker.tryGetMemberInModuleExportsAndProperties(ts.unescapeLeadingUnderscores(info.symbolTableKey), moduleSymbol), "Could not find symbol '".concat(info.symbolName, "' by key '").concat(info.symbolTableKey, "' in module ").concat(moduleSymbol.name)); symbols.set(id, [symbol, moduleSymbol]); return { symbol: symbol, moduleSymbol: moduleSymbol, moduleFileName: moduleFileName, exportKind: exportKind, targetFlags: targetFlags, isFromPackageJson: isFromPackageJson, }; } function key(importedName, symbol, ambientModuleName, checker) { var moduleKey = ambientModuleName || ""; return "".concat(importedName, "|").concat(ts.getSymbolId(ts.skipAlias(symbol, checker)), "|").concat(moduleKey); } function parseKey(key) { var symbolName = key.substring(0, key.indexOf("|")); var moduleKey = key.substring(key.lastIndexOf("|") + 1); var ambientModuleName = moduleKey === "" ? undefined : moduleKey; return { symbolName: symbolName, ambientModuleName: ambientModuleName }; } function fileIsGlobalOnly(file) { return !file.commonJsModuleIndicator && !file.externalModuleIndicator && !file.moduleAugmentations && !file.ambientModuleNames; } function ambientModuleDeclarationsAreEqual(oldSourceFile, newSourceFile) { if (!ts.arrayIsEqualTo(oldSourceFile.ambientModuleNames, newSourceFile.ambientModuleNames)) { return false; } var oldFileStatementIndex = -1; var newFileStatementIndex = -1; var _loop_2 = function (ambientModuleName) { var isMatchingModuleDeclaration = function (node) { return ts.isNonGlobalAmbientModule(node) && node.name.text === ambientModuleName; }; oldFileStatementIndex = ts.findIndex(oldSourceFile.statements, isMatchingModuleDeclaration, oldFileStatementIndex + 1); newFileStatementIndex = ts.findIndex(newSourceFile.statements, isMatchingModuleDeclaration, newFileStatementIndex + 1); if (oldSourceFile.statements[oldFileStatementIndex] !== newSourceFile.statements[newFileStatementIndex]) { return { value: false }; } }; for (var _i = 0, _a = newSourceFile.ambientModuleNames; _i < _a.length; _i++) { var ambientModuleName = _a[_i]; var state_2 = _loop_2(ambientModuleName); if (typeof state_2 === "object") return state_2.value; } return true; } function isNotShadowedByDeeperNodeModulesPackage(info, packageName) { if (!packageName || !info.moduleFileName) return true; var typingsCacheLocation = host.getGlobalTypingsCacheLocation(); if (typingsCacheLocation && ts.startsWith(info.moduleFileName, typingsCacheLocation)) return true; var packageDeepestNodeModulesPath = packages.get(packageName); return !packageDeepestNodeModulesPath || ts.startsWith(info.moduleFileName, packageDeepestNodeModulesPath); } } ts.createCacheableExportInfoMap = createCacheableExportInfoMap; function isImportableFile(program, from, to, preferences, packageJsonFilter, moduleSpecifierResolutionHost, moduleSpecifierCache) { var _a; if (from === to) return false; var cachedResult = moduleSpecifierCache === null || moduleSpecifierCache === void 0 ? void 0 : moduleSpecifierCache.get(from.path, to.path, preferences, {}); if ((cachedResult === null || cachedResult === void 0 ? void 0 : cachedResult.isBlockedByPackageJsonDependencies) !== undefined) { return !cachedResult.isBlockedByPackageJsonDependencies; } var getCanonicalFileName = ts.hostGetCanonicalFileName(moduleSpecifierResolutionHost); var globalTypingsCache = (_a = moduleSpecifierResolutionHost.getGlobalTypingsCacheLocation) === null || _a === void 0 ? void 0 : _a.call(moduleSpecifierResolutionHost); var hasImportablePath = !!ts.moduleSpecifiers.forEachFileNameOfModule(from.fileName, to.fileName, moduleSpecifierResolutionHost, /*preferSymlinks*/ false, function (toPath) { var toFile = program.getSourceFile(toPath); // Determine to import using toPath only if toPath is what we were looking at // or there doesnt exist the file in the program by the symlink return (toFile === to || !toFile) && isImportablePath(from.fileName, toPath, getCanonicalFileName, globalTypingsCache); }); if (packageJsonFilter) { var isAutoImportable = hasImportablePath && packageJsonFilter.allowsImportingSourceFile(to, moduleSpecifierResolutionHost); moduleSpecifierCache === null || moduleSpecifierCache === void 0 ? void 0 : moduleSpecifierCache.setBlockedByPackageJsonDependencies(from.path, to.path, preferences, {}, !isAutoImportable); return isAutoImportable; } return hasImportablePath; } ts.isImportableFile = isImportableFile; /** * Don't include something from a `node_modules` that isn't actually reachable by a global import. * A relative import to node_modules is usually a bad idea. */ function isImportablePath(fromPath, toPath, getCanonicalFileName, globalCachePath) { // If it's in a `node_modules` but is not reachable from here via a global import, don't bother. var toNodeModules = ts.forEachAncestorDirectory(toPath, function (ancestor) { return ts.getBaseFileName(ancestor) === "node_modules" ? ancestor : undefined; }); var toNodeModulesParent = toNodeModules && ts.getDirectoryPath(getCanonicalFileName(toNodeModules)); return toNodeModulesParent === undefined || ts.startsWith(getCanonicalFileName(fromPath), toNodeModulesParent) || (!!globalCachePath && ts.startsWith(getCanonicalFileName(globalCachePath), toNodeModulesParent)); } function forEachExternalModuleToImportFrom(program, host, useAutoImportProvider, cb) { var _a, _b; forEachExternalModule(program.getTypeChecker(), program.getSourceFiles(), function (module, file) { return cb(module, file, program, /*isFromPackageJson*/ false); }); var autoImportProvider = useAutoImportProvider && ((_a = host.getPackageJsonAutoImportProvider) === null || _a === void 0 ? void 0 : _a.call(host)); if (autoImportProvider) { var start = ts.timestamp(); forEachExternalModule(autoImportProvider.getTypeChecker(), autoImportProvider.getSourceFiles(), function (module, file) { return cb(module, file, autoImportProvider, /*isFromPackageJson*/ true); }); (_b = host.log) === null || _b === void 0 ? void 0 : _b.call(host, "forEachExternalModuleToImportFrom autoImportProvider: ".concat(ts.timestamp() - start)); } } ts.forEachExternalModuleToImportFrom = forEachExternalModuleToImportFrom; function forEachExternalModule(checker, allSourceFiles, cb) { for (var _i = 0, _a = checker.getAmbientModules(); _i < _a.length; _i++) { var ambient = _a[_i]; if (!ts.stringContains(ambient.name, "*")) { cb(ambient, /*sourceFile*/ undefined); } } for (var _b = 0, allSourceFiles_1 = allSourceFiles; _b < allSourceFiles_1.length; _b++) { var sourceFile = allSourceFiles_1[_b]; if (ts.isExternalOrCommonJsModule(sourceFile)) { cb(checker.getMergedSymbol(sourceFile.symbol), sourceFile); } } } function getExportInfoMap(importingFile, host, program, cancellationToken) { var _a, _b, _c, _d, _e; var start = ts.timestamp(); // Pulling the AutoImportProvider project will trigger its updateGraph if pending, // which will invalidate the export map cache if things change, so pull it before // checking the cache. (_a = host.getPackageJsonAutoImportProvider) === null || _a === void 0 ? void 0 : _a.call(host); var cache = ((_b = host.getCachedExportInfoMap) === null || _b === void 0 ? void 0 : _b.call(host)) || createCacheableExportInfoMap({ getCurrentProgram: function () { return program; }, getPackageJsonAutoImportProvider: function () { var _a; return (_a = host.getPackageJsonAutoImportProvider) === null || _a === void 0 ? void 0 : _a.call(host); }, getGlobalTypingsCacheLocation: function () { var _a; return (_a = host.getGlobalTypingsCacheLocation) === null || _a === void 0 ? void 0 : _a.call(host); }, }); if (cache.isUsableByFile(importingFile.path)) { (_c = host.log) === null || _c === void 0 ? void 0 : _c.call(host, "getExportInfoMap: cache hit"); return cache; } (_d = host.log) === null || _d === void 0 ? void 0 : _d.call(host, "getExportInfoMap: cache miss or empty; calculating new results"); var compilerOptions = program.getCompilerOptions(); var moduleCount = 0; try { forEachExternalModuleToImportFrom(program, host, /*useAutoImportProvider*/ true, function (moduleSymbol, moduleFile, program, isFromPackageJson) { if (++moduleCount % 100 === 0) cancellationToken === null || cancellationToken === void 0 ? void 0 : cancellationToken.throwIfCancellationRequested(); var seenExports = new ts.Map(); var checker = program.getTypeChecker(); var defaultInfo = getDefaultLikeExportInfo(moduleSymbol, checker, compilerOptions); // Note: I think we shouldn't actually see resolved module symbols here, but weird merges // can cause it to happen: see 'completionsImport_mergedReExport.ts' if (defaultInfo && isImportableSymbol(defaultInfo.symbol, checker)) { cache.add(importingFile.path, defaultInfo.symbol, defaultInfo.exportKind === 1 /* ExportKind.Default */ ? "default" /* InternalSymbolName.Default */ : "export=" /* InternalSymbolName.ExportEquals */, moduleSymbol, moduleFile, defaultInfo.exportKind, isFromPackageJson, checker); } checker.forEachExportAndPropertyOfModule(moduleSymbol, function (exported, key) { if (exported !== (defaultInfo === null || defaultInfo === void 0 ? void 0 : defaultInfo.symbol) && isImportableSymbol(exported, checker) && ts.addToSeen(seenExports, key)) { cache.add(importingFile.path, exported, key, moduleSymbol, moduleFile, 0 /* ExportKind.Named */, isFromPackageJson, checker); } }); }); } catch (err) { // Ensure cache is reset if operation is cancelled cache.clear(); throw err; } (_e = host.log) === null || _e === void 0 ? void 0 : _e.call(host, "getExportInfoMap: done in ".concat(ts.timestamp() - start, " ms")); return cache; } ts.getExportInfoMap = getExportInfoMap; function getDefaultLikeExportInfo(moduleSymbol, checker, compilerOptions) { var exported = getDefaultLikeExportWorker(moduleSymbol, checker); if (!exported) return undefined; var symbol = exported.symbol, exportKind = exported.exportKind; var info = getDefaultExportInfoWorker(symbol, checker, compilerOptions); return info && __assign({ symbol: symbol, exportKind: exportKind }, info); } ts.getDefaultLikeExportInfo = getDefaultLikeExportInfo; function isImportableSymbol(symbol, checker) { return !checker.isUndefinedSymbol(symbol) && !checker.isUnknownSymbol(symbol) && !ts.isKnownSymbol(symbol) && !ts.isPrivateIdentifierSymbol(symbol); } function getDefaultLikeExportWorker(moduleSymbol, checker) { var exportEquals = checker.resolveExternalModuleSymbol(moduleSymbol); if (exportEquals !== moduleSymbol) return { symbol: exportEquals, exportKind: 2 /* ExportKind.ExportEquals */ }; var defaultExport = checker.tryGetMemberInModuleExports("default" /* InternalSymbolName.Default */, moduleSymbol); if (defaultExport) return { symbol: defaultExport, exportKind: 1 /* ExportKind.Default */ }; } function getDefaultExportInfoWorker(defaultExport, checker, compilerOptions) { var localSymbol = ts.getLocalSymbolForExportDefault(defaultExport); if (localSymbol) return { symbolForMeaning: localSymbol, name: localSymbol.name }; var name = getNameForExportDefault(defaultExport); if (name !== undefined) return { symbolForMeaning: defaultExport, name: name }; if (defaultExport.flags & 2097152 /* SymbolFlags.Alias */) { var aliased = checker.getImmediateAliasedSymbol(defaultExport); if (aliased && aliased.parent) { // - `aliased` will be undefined if the module is exporting an unresolvable name, // but we can still offer completions for it. // - `aliased.parent` will be undefined if the module is exporting `globalThis.something`, // or another expression that resolves to a global. return getDefaultExportInfoWorker(aliased, checker, compilerOptions); } } if (defaultExport.escapedName !== "default" /* InternalSymbolName.Default */ && defaultExport.escapedName !== "export=" /* InternalSymbolName.ExportEquals */) { return { symbolForMeaning: defaultExport, name: defaultExport.getName() }; } return { symbolForMeaning: defaultExport, name: ts.getNameForExportedSymbol(defaultExport, compilerOptions.target) }; } function getNameForExportDefault(symbol) { return symbol.declarations && ts.firstDefined(symbol.declarations, function (declaration) { var _a; if (ts.isExportAssignment(declaration)) { return (_a = ts.tryCast(ts.skipOuterExpressions(declaration.expression), ts.isIdentifier)) === null || _a === void 0 ? void 0 : _a.text; } else if (ts.isExportSpecifier(declaration)) { ts.Debug.assert(declaration.name.text === "default" /* InternalSymbolName.Default */, "Expected the specifier to be a default export"); return declaration.propertyName && declaration.propertyName.text; } }); } })(ts || (ts = {})); var ts; (function (ts) { /** The classifier is used for syntactic highlighting in editors via the TSServer */ function createClassifier() { var scanner = ts.createScanner(99 /* ScriptTarget.Latest */, /*skipTrivia*/ false); function getClassificationsForLine(text, lexState, syntacticClassifierAbsent) { return convertClassificationsToResult(getEncodedLexicalClassifications(text, lexState, syntacticClassifierAbsent), text); } // If there is a syntactic classifier ('syntacticClassifierAbsent' is false), // we will be more conservative in order to avoid conflicting with the syntactic classifier. function getEncodedLexicalClassifications(text, lexState, syntacticClassifierAbsent) { var token = 0 /* SyntaxKind.Unknown */; var lastNonTriviaToken = 0 /* SyntaxKind.Unknown */; // Just a stack of TemplateHeads and OpenCurlyBraces, used to perform rudimentary (inexact) // classification on template strings. Because of the context free nature of templates, // the only precise way to classify a template portion would be by propagating the stack across // lines, just as we do with the end-of-line state. However, this is a burden for implementers, // and the behavior is entirely subsumed by the syntactic classifier anyway, so we instead // flatten any nesting when the template stack is non-empty and encode it in the end-of-line state. // Situations in which this fails are // 1) When template strings are nested across different lines: // `hello ${ `world // ` }` // // Where on the second line, you will get the closing of a template, // a closing curly, and a new template. // // 2) When substitution expressions have curly braces and the curly brace falls on the next line: // `hello ${ () => { // return "world" } } ` // // Where on the second line, you will get the 'return' keyword, // a string literal, and a template end consisting of '} } `'. var templateStack = []; var _a = getPrefixFromLexState(lexState), prefix = _a.prefix, pushTemplate = _a.pushTemplate; text = prefix + text; var offset = prefix.length; if (pushTemplate) { templateStack.push(15 /* SyntaxKind.TemplateHead */); } scanner.setText(text); var endOfLineState = 0 /* EndOfLineState.None */; var spans = []; // We can run into an unfortunate interaction between the lexical and syntactic classifier // when the user is typing something generic. Consider the case where the user types: // // Foo tokens. It's a weak heuristic, but should // work well enough in practice. var angleBracketStack = 0; do { token = scanner.scan(); if (!ts.isTrivia(token)) { handleToken(); lastNonTriviaToken = token; } var end = scanner.getTextPos(); pushEncodedClassification(scanner.getTokenPos(), end, offset, classFromKind(token), spans); if (end >= text.length) { var end_1 = getNewEndOfLineState(scanner, token, ts.lastOrUndefined(templateStack)); if (end_1 !== undefined) { endOfLineState = end_1; } } } while (token !== 1 /* SyntaxKind.EndOfFileToken */); function handleToken() { switch (token) { case 43 /* SyntaxKind.SlashToken */: case 68 /* SyntaxKind.SlashEqualsToken */: if (!noRegexTable[lastNonTriviaToken] && scanner.reScanSlashToken() === 13 /* SyntaxKind.RegularExpressionLiteral */) { token = 13 /* SyntaxKind.RegularExpressionLiteral */; } break; case 29 /* SyntaxKind.LessThanToken */: if (lastNonTriviaToken === 79 /* SyntaxKind.Identifier */) { // Could be the start of something generic. Keep track of that by bumping // up the current count of generic contexts we may be in. angleBracketStack++; } break; case 31 /* SyntaxKind.GreaterThanToken */: if (angleBracketStack > 0) { // If we think we're currently in something generic, then mark that that // generic entity is complete. angleBracketStack--; } break; case 130 /* SyntaxKind.AnyKeyword */: case 150 /* SyntaxKind.StringKeyword */: case 147 /* SyntaxKind.NumberKeyword */: case 133 /* SyntaxKind.BooleanKeyword */: case 151 /* SyntaxKind.SymbolKeyword */: if (angleBracketStack > 0 && !syntacticClassifierAbsent) { // If it looks like we're could be in something generic, don't classify this // as a keyword. We may just get overwritten by the syntactic classifier, // causing a noisy experience for the user. token = 79 /* SyntaxKind.Identifier */; } break; case 15 /* SyntaxKind.TemplateHead */: templateStack.push(token); break; case 18 /* SyntaxKind.OpenBraceToken */: // If we don't have anything on the template stack, // then we aren't trying to keep track of a previously scanned template head. if (templateStack.length > 0) { templateStack.push(token); } break; case 19 /* SyntaxKind.CloseBraceToken */: // If we don't have anything on the template stack, // then we aren't trying to keep track of a previously scanned template head. if (templateStack.length > 0) { var lastTemplateStackToken = ts.lastOrUndefined(templateStack); if (lastTemplateStackToken === 15 /* SyntaxKind.TemplateHead */) { token = scanner.reScanTemplateToken(/* isTaggedTemplate */ false); // Only pop on a TemplateTail; a TemplateMiddle indicates there is more for us. if (token === 17 /* SyntaxKind.TemplateTail */) { templateStack.pop(); } else { ts.Debug.assertEqual(token, 16 /* SyntaxKind.TemplateMiddle */, "Should have been a template middle."); } } else { ts.Debug.assertEqual(lastTemplateStackToken, 18 /* SyntaxKind.OpenBraceToken */, "Should have been an open brace"); templateStack.pop(); } } break; default: if (!ts.isKeyword(token)) { break; } if (lastNonTriviaToken === 24 /* SyntaxKind.DotToken */) { token = 79 /* SyntaxKind.Identifier */; } else if (ts.isKeyword(lastNonTriviaToken) && ts.isKeyword(token) && !canFollow(lastNonTriviaToken, token)) { // We have two keywords in a row. Only treat the second as a keyword if // it's a sequence that could legally occur in the language. Otherwise // treat it as an identifier. This way, if someone writes "private var" // we recognize that 'var' is actually an identifier here. token = 79 /* SyntaxKind.Identifier */; } } } return { endOfLineState: endOfLineState, spans: spans }; } return { getClassificationsForLine: getClassificationsForLine, getEncodedLexicalClassifications: getEncodedLexicalClassifications }; } ts.createClassifier = createClassifier; /// We do not have a full parser support to know when we should parse a regex or not /// If we consider every slash token to be a regex, we could be missing cases like "1/2/3", where /// we have a series of divide operator. this list allows us to be more accurate by ruling out /// locations where a regexp cannot exist. var noRegexTable = ts.arrayToNumericMap([ 79 /* SyntaxKind.Identifier */, 10 /* SyntaxKind.StringLiteral */, 8 /* SyntaxKind.NumericLiteral */, 9 /* SyntaxKind.BigIntLiteral */, 13 /* SyntaxKind.RegularExpressionLiteral */, 108 /* SyntaxKind.ThisKeyword */, 45 /* SyntaxKind.PlusPlusToken */, 46 /* SyntaxKind.MinusMinusToken */, 21 /* SyntaxKind.CloseParenToken */, 23 /* SyntaxKind.CloseBracketToken */, 19 /* SyntaxKind.CloseBraceToken */, 110 /* SyntaxKind.TrueKeyword */, 95 /* SyntaxKind.FalseKeyword */, ], function (token) { return token; }, function () { return true; }); function getNewEndOfLineState(scanner, token, lastOnTemplateStack) { switch (token) { case 10 /* SyntaxKind.StringLiteral */: { // Check to see if we finished up on a multiline string literal. if (!scanner.isUnterminated()) return undefined; var tokenText = scanner.getTokenText(); var lastCharIndex = tokenText.length - 1; var numBackslashes = 0; while (tokenText.charCodeAt(lastCharIndex - numBackslashes) === 92 /* CharacterCodes.backslash */) { numBackslashes++; } // If we have an odd number of backslashes, then the multiline string is unclosed if ((numBackslashes & 1) === 0) return undefined; return tokenText.charCodeAt(0) === 34 /* CharacterCodes.doubleQuote */ ? 3 /* EndOfLineState.InDoubleQuoteStringLiteral */ : 2 /* EndOfLineState.InSingleQuoteStringLiteral */; } case 3 /* SyntaxKind.MultiLineCommentTrivia */: // Check to see if the multiline comment was unclosed. return scanner.isUnterminated() ? 1 /* EndOfLineState.InMultiLineCommentTrivia */ : undefined; default: if (ts.isTemplateLiteralKind(token)) { if (!scanner.isUnterminated()) { return undefined; } switch (token) { case 17 /* SyntaxKind.TemplateTail */: return 5 /* EndOfLineState.InTemplateMiddleOrTail */; case 14 /* SyntaxKind.NoSubstitutionTemplateLiteral */: return 4 /* EndOfLineState.InTemplateHeadOrNoSubstitutionTemplate */; default: return ts.Debug.fail("Only 'NoSubstitutionTemplateLiteral's and 'TemplateTail's can be unterminated; got SyntaxKind #" + token); } } return lastOnTemplateStack === 15 /* SyntaxKind.TemplateHead */ ? 6 /* EndOfLineState.InTemplateSubstitutionPosition */ : undefined; } } function pushEncodedClassification(start, end, offset, classification, result) { if (classification === 8 /* ClassificationType.whiteSpace */) { // Don't bother with whitespace classifications. They're not needed. return; } if (start === 0 && offset > 0) { // We're classifying the first token, and this was a case where we prepended text. // We should consider the start of this token to be at the start of the original text. start += offset; } var length = end - start; if (length > 0) { // All our tokens are in relation to the augmented text. Move them back to be // relative to the original text. result.push(start - offset, length, classification); } } function convertClassificationsToResult(classifications, text) { var entries = []; var dense = classifications.spans; var lastEnd = 0; for (var i = 0; i < dense.length; i += 3) { var start = dense[i]; var length_1 = dense[i + 1]; var type = dense[i + 2]; // Make a whitespace entry between the last item and this one. if (lastEnd >= 0) { var whitespaceLength_1 = start - lastEnd; if (whitespaceLength_1 > 0) { entries.push({ length: whitespaceLength_1, classification: ts.TokenClass.Whitespace }); } } entries.push({ length: length_1, classification: convertClassification(type) }); lastEnd = start + length_1; } var whitespaceLength = text.length - lastEnd; if (whitespaceLength > 0) { entries.push({ length: whitespaceLength, classification: ts.TokenClass.Whitespace }); } return { entries: entries, finalLexState: classifications.endOfLineState }; } function convertClassification(type) { switch (type) { case 1 /* ClassificationType.comment */: return ts.TokenClass.Comment; case 3 /* ClassificationType.keyword */: return ts.TokenClass.Keyword; case 4 /* ClassificationType.numericLiteral */: return ts.TokenClass.NumberLiteral; case 25 /* ClassificationType.bigintLiteral */: return ts.TokenClass.BigIntLiteral; case 5 /* ClassificationType.operator */: return ts.TokenClass.Operator; case 6 /* ClassificationType.stringLiteral */: return ts.TokenClass.StringLiteral; case 8 /* ClassificationType.whiteSpace */: return ts.TokenClass.Whitespace; case 10 /* ClassificationType.punctuation */: return ts.TokenClass.Punctuation; case 2 /* ClassificationType.identifier */: case 11 /* ClassificationType.className */: case 12 /* ClassificationType.enumName */: case 13 /* ClassificationType.interfaceName */: case 14 /* ClassificationType.moduleName */: case 15 /* ClassificationType.typeParameterName */: case 16 /* ClassificationType.typeAliasName */: case 9 /* ClassificationType.text */: case 17 /* ClassificationType.parameterName */: return ts.TokenClass.Identifier; default: return undefined; // TODO: GH#18217 Debug.assertNever(type); } } /** Returns true if 'keyword2' can legally follow 'keyword1' in any language construct. */ function canFollow(keyword1, keyword2) { if (!ts.isAccessibilityModifier(keyword1)) { // Assume any other keyword combination is legal. // This can be refined in the future if there are more cases we want the classifier to be better at. return true; } switch (keyword2) { case 136 /* SyntaxKind.GetKeyword */: case 149 /* SyntaxKind.SetKeyword */: case 134 /* SyntaxKind.ConstructorKeyword */: case 124 /* SyntaxKind.StaticKeyword */: return true; // Allow things like "public get", "public constructor" and "public static". default: return false; // Any other keyword following "public" is actually an identifier, not a real keyword. } } function getPrefixFromLexState(lexState) { // If we're in a string literal, then prepend: "\ // (and a newline). That way when we lex we'll think we're still in a string literal. // // If we're in a multiline comment, then prepend: /* // (and a newline). That way when we lex we'll think we're still in a multiline comment. switch (lexState) { case 3 /* EndOfLineState.InDoubleQuoteStringLiteral */: return { prefix: "\"\\\n" }; case 2 /* EndOfLineState.InSingleQuoteStringLiteral */: return { prefix: "'\\\n" }; case 1 /* EndOfLineState.InMultiLineCommentTrivia */: return { prefix: "/*\n" }; case 4 /* EndOfLineState.InTemplateHeadOrNoSubstitutionTemplate */: return { prefix: "`\n" }; case 5 /* EndOfLineState.InTemplateMiddleOrTail */: return { prefix: "}\n", pushTemplate: true }; case 6 /* EndOfLineState.InTemplateSubstitutionPosition */: return { prefix: "", pushTemplate: true }; case 0 /* EndOfLineState.None */: return { prefix: "" }; default: return ts.Debug.assertNever(lexState); } } function isBinaryExpressionOperatorToken(token) { switch (token) { case 41 /* SyntaxKind.AsteriskToken */: case 43 /* SyntaxKind.SlashToken */: case 44 /* SyntaxKind.PercentToken */: case 39 /* SyntaxKind.PlusToken */: case 40 /* SyntaxKind.MinusToken */: case 47 /* SyntaxKind.LessThanLessThanToken */: case 48 /* SyntaxKind.GreaterThanGreaterThanToken */: case 49 /* SyntaxKind.GreaterThanGreaterThanGreaterThanToken */: case 29 /* SyntaxKind.LessThanToken */: case 31 /* SyntaxKind.GreaterThanToken */: case 32 /* SyntaxKind.LessThanEqualsToken */: case 33 /* SyntaxKind.GreaterThanEqualsToken */: case 102 /* SyntaxKind.InstanceOfKeyword */: case 101 /* SyntaxKind.InKeyword */: case 127 /* SyntaxKind.AsKeyword */: case 34 /* SyntaxKind.EqualsEqualsToken */: case 35 /* SyntaxKind.ExclamationEqualsToken */: case 36 /* SyntaxKind.EqualsEqualsEqualsToken */: case 37 /* SyntaxKind.ExclamationEqualsEqualsToken */: case 50 /* SyntaxKind.AmpersandToken */: case 52 /* SyntaxKind.CaretToken */: case 51 /* SyntaxKind.BarToken */: case 55 /* SyntaxKind.AmpersandAmpersandToken */: case 56 /* SyntaxKind.BarBarToken */: case 74 /* SyntaxKind.BarEqualsToken */: case 73 /* SyntaxKind.AmpersandEqualsToken */: case 78 /* SyntaxKind.CaretEqualsToken */: case 70 /* SyntaxKind.LessThanLessThanEqualsToken */: case 71 /* SyntaxKind.GreaterThanGreaterThanEqualsToken */: case 72 /* SyntaxKind.GreaterThanGreaterThanGreaterThanEqualsToken */: case 64 /* SyntaxKind.PlusEqualsToken */: case 65 /* SyntaxKind.MinusEqualsToken */: case 66 /* SyntaxKind.AsteriskEqualsToken */: case 68 /* SyntaxKind.SlashEqualsToken */: case 69 /* SyntaxKind.PercentEqualsToken */: case 63 /* SyntaxKind.EqualsToken */: case 27 /* SyntaxKind.CommaToken */: case 60 /* SyntaxKind.QuestionQuestionToken */: case 75 /* SyntaxKind.BarBarEqualsToken */: case 76 /* SyntaxKind.AmpersandAmpersandEqualsToken */: case 77 /* SyntaxKind.QuestionQuestionEqualsToken */: return true; default: return false; } } function isPrefixUnaryExpressionOperatorToken(token) { switch (token) { case 39 /* SyntaxKind.PlusToken */: case 40 /* SyntaxKind.MinusToken */: case 54 /* SyntaxKind.TildeToken */: case 53 /* SyntaxKind.ExclamationToken */: case 45 /* SyntaxKind.PlusPlusToken */: case 46 /* SyntaxKind.MinusMinusToken */: return true; default: return false; } } function classFromKind(token) { if (ts.isKeyword(token)) { return 3 /* ClassificationType.keyword */; } else if (isBinaryExpressionOperatorToken(token) || isPrefixUnaryExpressionOperatorToken(token)) { return 5 /* ClassificationType.operator */; } else if (token >= 18 /* SyntaxKind.FirstPunctuation */ && token <= 78 /* SyntaxKind.LastPunctuation */) { return 10 /* ClassificationType.punctuation */; } switch (token) { case 8 /* SyntaxKind.NumericLiteral */: return 4 /* ClassificationType.numericLiteral */; case 9 /* SyntaxKind.BigIntLiteral */: return 25 /* ClassificationType.bigintLiteral */; case 10 /* SyntaxKind.StringLiteral */: return 6 /* ClassificationType.stringLiteral */; case 13 /* SyntaxKind.RegularExpressionLiteral */: return 7 /* ClassificationType.regularExpressionLiteral */; case 7 /* SyntaxKind.ConflictMarkerTrivia */: case 3 /* SyntaxKind.MultiLineCommentTrivia */: case 2 /* SyntaxKind.SingleLineCommentTrivia */: return 1 /* ClassificationType.comment */; case 5 /* SyntaxKind.WhitespaceTrivia */: case 4 /* SyntaxKind.NewLineTrivia */: return 8 /* ClassificationType.whiteSpace */; case 79 /* SyntaxKind.Identifier */: default: if (ts.isTemplateLiteralKind(token)) { return 6 /* ClassificationType.stringLiteral */; } return 2 /* ClassificationType.identifier */; } } /* @internal */ function getSemanticClassifications(typeChecker, cancellationToken, sourceFile, classifiableNames, span) { return convertClassificationsToSpans(getEncodedSemanticClassifications(typeChecker, cancellationToken, sourceFile, classifiableNames, span)); } ts.getSemanticClassifications = getSemanticClassifications; function checkForClassificationCancellation(cancellationToken, kind) { // We don't want to actually call back into our host on every node to find out if we've // been canceled. That would be an enormous amount of chattyness, along with the all // the overhead of marshalling the data to/from the host. So instead we pick a few // reasonable node kinds to bother checking on. These node kinds represent high level // constructs that we would expect to see commonly, but just at a far less frequent // interval. // // For example, in checker.ts (around 750k) we only have around 600 of these constructs. // That means we're calling back into the host around every 1.2k of the file we process. // Lib.d.ts has similar numbers. switch (kind) { case 261 /* SyntaxKind.ModuleDeclaration */: case 257 /* SyntaxKind.ClassDeclaration */: case 258 /* SyntaxKind.InterfaceDeclaration */: case 256 /* SyntaxKind.FunctionDeclaration */: case 226 /* SyntaxKind.ClassExpression */: case 213 /* SyntaxKind.FunctionExpression */: case 214 /* SyntaxKind.ArrowFunction */: cancellationToken.throwIfCancellationRequested(); } } /* @internal */ function getEncodedSemanticClassifications(typeChecker, cancellationToken, sourceFile, classifiableNames, span) { var spans = []; sourceFile.forEachChild(function cb(node) { // Only walk into nodes that intersect the requested span. if (!node || !ts.textSpanIntersectsWith(span, node.pos, node.getFullWidth())) { return; } checkForClassificationCancellation(cancellationToken, node.kind); // Only bother calling into the typechecker if this is an identifier that // could possibly resolve to a type name. This makes classification run // in a third of the time it would normally take. if (ts.isIdentifier(node) && !ts.nodeIsMissing(node) && classifiableNames.has(node.escapedText)) { var symbol = typeChecker.getSymbolAtLocation(node); var type = symbol && classifySymbol(symbol, ts.getMeaningFromLocation(node), typeChecker); if (type) { pushClassification(node.getStart(sourceFile), node.getEnd(), type); } } node.forEachChild(cb); }); return { spans: spans, endOfLineState: 0 /* EndOfLineState.None */ }; function pushClassification(start, end, type) { var length = end - start; ts.Debug.assert(length > 0, "Classification had non-positive length of ".concat(length)); spans.push(start); spans.push(length); spans.push(type); } } ts.getEncodedSemanticClassifications = getEncodedSemanticClassifications; function classifySymbol(symbol, meaningAtPosition, checker) { var flags = symbol.getFlags(); if ((flags & 2885600 /* SymbolFlags.Classifiable */) === 0 /* SymbolFlags.None */) { return undefined; } else if (flags & 32 /* SymbolFlags.Class */) { return 11 /* ClassificationType.className */; } else if (flags & 384 /* SymbolFlags.Enum */) { return 12 /* ClassificationType.enumName */; } else if (flags & 524288 /* SymbolFlags.TypeAlias */) { return 16 /* ClassificationType.typeAliasName */; } else if (flags & 1536 /* SymbolFlags.Module */) { // Only classify a module as such if // - It appears in a namespace context. // - There exists a module declaration which actually impacts the value side. return meaningAtPosition & 4 /* SemanticMeaning.Namespace */ || meaningAtPosition & 1 /* SemanticMeaning.Value */ && hasValueSideModule(symbol) ? 14 /* ClassificationType.moduleName */ : undefined; } else if (flags & 2097152 /* SymbolFlags.Alias */) { return classifySymbol(checker.getAliasedSymbol(symbol), meaningAtPosition, checker); } else if (meaningAtPosition & 2 /* SemanticMeaning.Type */) { return flags & 64 /* SymbolFlags.Interface */ ? 13 /* ClassificationType.interfaceName */ : flags & 262144 /* SymbolFlags.TypeParameter */ ? 15 /* ClassificationType.typeParameterName */ : undefined; } else { return undefined; } } /** Returns true if there exists a module that introduces entities on the value side. */ function hasValueSideModule(symbol) { return ts.some(symbol.declarations, function (declaration) { return ts.isModuleDeclaration(declaration) && ts.getModuleInstanceState(declaration) === 1 /* ModuleInstanceState.Instantiated */; }); } function getClassificationTypeName(type) { switch (type) { case 1 /* ClassificationType.comment */: return "comment" /* ClassificationTypeNames.comment */; case 2 /* ClassificationType.identifier */: return "identifier" /* ClassificationTypeNames.identifier */; case 3 /* ClassificationType.keyword */: return "keyword" /* ClassificationTypeNames.keyword */; case 4 /* ClassificationType.numericLiteral */: return "number" /* ClassificationTypeNames.numericLiteral */; case 25 /* ClassificationType.bigintLiteral */: return "bigint" /* ClassificationTypeNames.bigintLiteral */; case 5 /* ClassificationType.operator */: return "operator" /* ClassificationTypeNames.operator */; case 6 /* ClassificationType.stringLiteral */: return "string" /* ClassificationTypeNames.stringLiteral */; case 8 /* ClassificationType.whiteSpace */: return "whitespace" /* ClassificationTypeNames.whiteSpace */; case 9 /* ClassificationType.text */: return "text" /* ClassificationTypeNames.text */; case 10 /* ClassificationType.punctuation */: return "punctuation" /* ClassificationTypeNames.punctuation */; case 11 /* ClassificationType.className */: return "class name" /* ClassificationTypeNames.className */; case 12 /* ClassificationType.enumName */: return "enum name" /* ClassificationTypeNames.enumName */; case 13 /* ClassificationType.interfaceName */: return "interface name" /* ClassificationTypeNames.interfaceName */; case 14 /* ClassificationType.moduleName */: return "module name" /* ClassificationTypeNames.moduleName */; case 15 /* ClassificationType.typeParameterName */: return "type parameter name" /* ClassificationTypeNames.typeParameterName */; case 16 /* ClassificationType.typeAliasName */: return "type alias name" /* ClassificationTypeNames.typeAliasName */; case 17 /* ClassificationType.parameterName */: return "parameter name" /* ClassificationTypeNames.parameterName */; case 18 /* ClassificationType.docCommentTagName */: return "doc comment tag name" /* ClassificationTypeNames.docCommentTagName */; case 19 /* ClassificationType.jsxOpenTagName */: return "jsx open tag name" /* ClassificationTypeNames.jsxOpenTagName */; case 20 /* ClassificationType.jsxCloseTagName */: return "jsx close tag name" /* ClassificationTypeNames.jsxCloseTagName */; case 21 /* ClassificationType.jsxSelfClosingTagName */: return "jsx self closing tag name" /* ClassificationTypeNames.jsxSelfClosingTagName */; case 22 /* ClassificationType.jsxAttribute */: return "jsx attribute" /* ClassificationTypeNames.jsxAttribute */; case 23 /* ClassificationType.jsxText */: return "jsx text" /* ClassificationTypeNames.jsxText */; case 24 /* ClassificationType.jsxAttributeStringLiteralValue */: return "jsx attribute string literal value" /* ClassificationTypeNames.jsxAttributeStringLiteralValue */; default: return undefined; // TODO: GH#18217 throw Debug.assertNever(type); } } function convertClassificationsToSpans(classifications) { ts.Debug.assert(classifications.spans.length % 3 === 0); var dense = classifications.spans; var result = []; for (var i = 0; i < dense.length; i += 3) { result.push({ textSpan: ts.createTextSpan(dense[i], dense[i + 1]), classificationType: getClassificationTypeName(dense[i + 2]) }); } return result; } /* @internal */ function getSyntacticClassifications(cancellationToken, sourceFile, span) { return convertClassificationsToSpans(getEncodedSyntacticClassifications(cancellationToken, sourceFile, span)); } ts.getSyntacticClassifications = getSyntacticClassifications; /* @internal */ function getEncodedSyntacticClassifications(cancellationToken, sourceFile, span) { var spanStart = span.start; var spanLength = span.length; // Make a scanner we can get trivia from. var triviaScanner = ts.createScanner(99 /* ScriptTarget.Latest */, /*skipTrivia*/ false, sourceFile.languageVariant, sourceFile.text); var mergeConflictScanner = ts.createScanner(99 /* ScriptTarget.Latest */, /*skipTrivia*/ false, sourceFile.languageVariant, sourceFile.text); var result = []; processElement(sourceFile); return { spans: result, endOfLineState: 0 /* EndOfLineState.None */ }; function pushClassification(start, length, type) { result.push(start); result.push(length); result.push(type); } function classifyLeadingTriviaAndGetTokenStart(token) { triviaScanner.setTextPos(token.pos); while (true) { var start = triviaScanner.getTextPos(); // only bother scanning if we have something that could be trivia. if (!ts.couldStartTrivia(sourceFile.text, start)) { return start; } var kind = triviaScanner.scan(); var end = triviaScanner.getTextPos(); var width = end - start; // The moment we get something that isn't trivia, then stop processing. if (!ts.isTrivia(kind)) { return start; } switch (kind) { case 4 /* SyntaxKind.NewLineTrivia */: case 5 /* SyntaxKind.WhitespaceTrivia */: // Don't bother with newlines/whitespace. continue; case 2 /* SyntaxKind.SingleLineCommentTrivia */: case 3 /* SyntaxKind.MultiLineCommentTrivia */: // Only bother with the trivia if it at least intersects the span of interest. classifyComment(token, kind, start, width); // Classifying a comment might cause us to reuse the trivia scanner // (because of jsdoc comments). So after we classify the comment make // sure we set the scanner position back to where it needs to be. triviaScanner.setTextPos(end); continue; case 7 /* SyntaxKind.ConflictMarkerTrivia */: var text = sourceFile.text; var ch = text.charCodeAt(start); // for the <<<<<<< and >>>>>>> markers, we just add them in as comments // in the classification stream. if (ch === 60 /* CharacterCodes.lessThan */ || ch === 62 /* CharacterCodes.greaterThan */) { pushClassification(start, width, 1 /* ClassificationType.comment */); continue; } // for the ||||||| and ======== markers, add a comment for the first line, // and then lex all subsequent lines up until the end of the conflict marker. ts.Debug.assert(ch === 124 /* CharacterCodes.bar */ || ch === 61 /* CharacterCodes.equals */); classifyDisabledMergeCode(text, start, end); break; case 6 /* SyntaxKind.ShebangTrivia */: // TODO: Maybe we should classify these. break; default: ts.Debug.assertNever(kind); } } } function classifyComment(token, kind, start, width) { if (kind === 3 /* SyntaxKind.MultiLineCommentTrivia */) { // See if this is a doc comment. If so, we'll classify certain portions of it // specially. var docCommentAndDiagnostics = ts.parseIsolatedJSDocComment(sourceFile.text, start, width); if (docCommentAndDiagnostics && docCommentAndDiagnostics.jsDoc) { // TODO: This should be predicated on `token["kind"]` being compatible with `HasJSDoc["kind"]` ts.setParent(docCommentAndDiagnostics.jsDoc, token); classifyJSDocComment(docCommentAndDiagnostics.jsDoc); return; } } else if (kind === 2 /* SyntaxKind.SingleLineCommentTrivia */) { if (tryClassifyTripleSlashComment(start, width)) { return; } } // Simple comment. Just add as is. pushCommentRange(start, width); } function pushCommentRange(start, width) { pushClassification(start, width, 1 /* ClassificationType.comment */); } function classifyJSDocComment(docComment) { var _a, _b, _c, _d, _e, _f, _g; var pos = docComment.pos; if (docComment.tags) { for (var _i = 0, _h = docComment.tags; _i < _h.length; _i++) { var tag = _h[_i]; // As we walk through each tag, classify the portion of text from the end of // the last tag (or the start of the entire doc comment) as 'comment'. if (tag.pos !== pos) { pushCommentRange(pos, tag.pos - pos); } pushClassification(tag.pos, 1, 10 /* ClassificationType.punctuation */); // "@" pushClassification(tag.tagName.pos, tag.tagName.end - tag.tagName.pos, 18 /* ClassificationType.docCommentTagName */); // e.g. "param" pos = tag.tagName.end; var commentStart = tag.tagName.end; switch (tag.kind) { case 340 /* SyntaxKind.JSDocParameterTag */: var param = tag; processJSDocParameterTag(param); commentStart = param.isNameFirst && ((_a = param.typeExpression) === null || _a === void 0 ? void 0 : _a.end) || param.name.end; break; case 347 /* SyntaxKind.JSDocPropertyTag */: var prop = tag; commentStart = prop.isNameFirst && ((_b = prop.typeExpression) === null || _b === void 0 ? void 0 : _b.end) || prop.name.end; break; case 344 /* SyntaxKind.JSDocTemplateTag */: processJSDocTemplateTag(tag); pos = tag.end; commentStart = tag.typeParameters.end; break; case 345 /* SyntaxKind.JSDocTypedefTag */: var type = tag; commentStart = ((_c = type.typeExpression) === null || _c === void 0 ? void 0 : _c.kind) === 309 /* SyntaxKind.JSDocTypeExpression */ && ((_d = type.fullName) === null || _d === void 0 ? void 0 : _d.end) || ((_e = type.typeExpression) === null || _e === void 0 ? void 0 : _e.end) || commentStart; break; case 338 /* SyntaxKind.JSDocCallbackTag */: commentStart = tag.typeExpression.end; break; case 343 /* SyntaxKind.JSDocTypeTag */: processElement(tag.typeExpression); pos = tag.end; commentStart = tag.typeExpression.end; break; case 342 /* SyntaxKind.JSDocThisTag */: case 339 /* SyntaxKind.JSDocEnumTag */: commentStart = tag.typeExpression.end; break; case 341 /* SyntaxKind.JSDocReturnTag */: processElement(tag.typeExpression); pos = tag.end; commentStart = ((_f = tag.typeExpression) === null || _f === void 0 ? void 0 : _f.end) || commentStart; break; case 346 /* SyntaxKind.JSDocSeeTag */: commentStart = ((_g = tag.name) === null || _g === void 0 ? void 0 : _g.end) || commentStart; break; case 328 /* SyntaxKind.JSDocAugmentsTag */: case 329 /* SyntaxKind.JSDocImplementsTag */: commentStart = tag.class.end; break; } if (typeof tag.comment === "object") { pushCommentRange(tag.comment.pos, tag.comment.end - tag.comment.pos); } else if (typeof tag.comment === "string") { pushCommentRange(commentStart, tag.end - commentStart); } } } if (pos !== docComment.end) { pushCommentRange(pos, docComment.end - pos); } return; function processJSDocParameterTag(tag) { if (tag.isNameFirst) { pushCommentRange(pos, tag.name.pos - pos); pushClassification(tag.name.pos, tag.name.end - tag.name.pos, 17 /* ClassificationType.parameterName */); pos = tag.name.end; } if (tag.typeExpression) { pushCommentRange(pos, tag.typeExpression.pos - pos); processElement(tag.typeExpression); pos = tag.typeExpression.end; } if (!tag.isNameFirst) { pushCommentRange(pos, tag.name.pos - pos); pushClassification(tag.name.pos, tag.name.end - tag.name.pos, 17 /* ClassificationType.parameterName */); pos = tag.name.end; } } } function tryClassifyTripleSlashComment(start, width) { var tripleSlashXMLCommentRegEx = /^(\/\/\/\s*)(<)(?:(\S+)((?:[^/]|\/[^>])*)(\/>)?)?/im; // Require a leading whitespace character (the parser already does) to prevent terrible backtracking performance var attributeRegex = /(\s)(\S+)(\s*)(=)(\s*)('[^']+'|"[^"]+")/img; var text = sourceFile.text.substr(start, width); var match = tripleSlashXMLCommentRegEx.exec(text); if (!match) { return false; } // Limiting classification to exactly the elements and attributes // defined in `ts.commentPragmas` would be excessive, but we can avoid // some obvious false positives (e.g. in XML-like doc comments) by // checking the element name. // eslint-disable-next-line no-in-operator if (!match[3] || !(match[3] in ts.commentPragmas)) { return false; } var pos = start; pushCommentRange(pos, match[1].length); // /// pos += match[1].length; pushClassification(pos, match[2].length, 10 /* ClassificationType.punctuation */); // < pos += match[2].length; pushClassification(pos, match[3].length, 21 /* ClassificationType.jsxSelfClosingTagName */); // element name pos += match[3].length; var attrText = match[4]; var attrPos = pos; while (true) { var attrMatch = attributeRegex.exec(attrText); if (!attrMatch) { break; } var newAttrPos = pos + attrMatch.index + attrMatch[1].length; // whitespace if (newAttrPos > attrPos) { pushCommentRange(attrPos, newAttrPos - attrPos); attrPos = newAttrPos; } pushClassification(attrPos, attrMatch[2].length, 22 /* ClassificationType.jsxAttribute */); // attribute name attrPos += attrMatch[2].length; if (attrMatch[3].length) { pushCommentRange(attrPos, attrMatch[3].length); // whitespace attrPos += attrMatch[3].length; } pushClassification(attrPos, attrMatch[4].length, 5 /* ClassificationType.operator */); // = attrPos += attrMatch[4].length; if (attrMatch[5].length) { pushCommentRange(attrPos, attrMatch[5].length); // whitespace attrPos += attrMatch[5].length; } pushClassification(attrPos, attrMatch[6].length, 24 /* ClassificationType.jsxAttributeStringLiteralValue */); // attribute value attrPos += attrMatch[6].length; } pos += match[4].length; if (pos > attrPos) { pushCommentRange(attrPos, pos - attrPos); } if (match[5]) { pushClassification(pos, match[5].length, 10 /* ClassificationType.punctuation */); // /> pos += match[5].length; } var end = start + width; if (pos < end) { pushCommentRange(pos, end - pos); } return true; } function processJSDocTemplateTag(tag) { for (var _i = 0, _a = tag.getChildren(); _i < _a.length; _i++) { var child = _a[_i]; processElement(child); } } function classifyDisabledMergeCode(text, start, end) { // Classify the line that the ||||||| or ======= marker is on as a comment. // Then just lex all further tokens and add them to the result. var i; for (i = start; i < end; i++) { if (ts.isLineBreak(text.charCodeAt(i))) { break; } } pushClassification(start, i - start, 1 /* ClassificationType.comment */); mergeConflictScanner.setTextPos(i); while (mergeConflictScanner.getTextPos() < end) { classifyDisabledCodeToken(); } } function classifyDisabledCodeToken() { var start = mergeConflictScanner.getTextPos(); var tokenKind = mergeConflictScanner.scan(); var end = mergeConflictScanner.getTextPos(); var type = classifyTokenType(tokenKind); if (type) { pushClassification(start, end - start, type); } } /** * Returns true if node should be treated as classified and no further processing is required. * False will mean that node is not classified and traverse routine should recurse into node contents. */ function tryClassifyNode(node) { if (ts.isJSDoc(node)) { return true; } if (ts.nodeIsMissing(node)) { return true; } var classifiedElementName = tryClassifyJsxElementName(node); if (!ts.isToken(node) && node.kind !== 11 /* SyntaxKind.JsxText */ && classifiedElementName === undefined) { return false; } var tokenStart = node.kind === 11 /* SyntaxKind.JsxText */ ? node.pos : classifyLeadingTriviaAndGetTokenStart(node); var tokenWidth = node.end - tokenStart; ts.Debug.assert(tokenWidth >= 0); if (tokenWidth > 0) { var type = classifiedElementName || classifyTokenType(node.kind, node); if (type) { pushClassification(tokenStart, tokenWidth, type); } } return true; } function tryClassifyJsxElementName(token) { switch (token.parent && token.parent.kind) { case 280 /* SyntaxKind.JsxOpeningElement */: if (token.parent.tagName === token) { return 19 /* ClassificationType.jsxOpenTagName */; } break; case 281 /* SyntaxKind.JsxClosingElement */: if (token.parent.tagName === token) { return 20 /* ClassificationType.jsxCloseTagName */; } break; case 279 /* SyntaxKind.JsxSelfClosingElement */: if (token.parent.tagName === token) { return 21 /* ClassificationType.jsxSelfClosingTagName */; } break; case 285 /* SyntaxKind.JsxAttribute */: if (token.parent.name === token) { return 22 /* ClassificationType.jsxAttribute */; } break; } return undefined; } // for accurate classification, the actual token should be passed in. however, for // cases like 'disabled merge code' classification, we just get the token kind and // classify based on that instead. function classifyTokenType(tokenKind, token) { if (ts.isKeyword(tokenKind)) { return 3 /* ClassificationType.keyword */; } // Special case `<` and `>`: If they appear in a generic context they are punctuation, // not operators. if (tokenKind === 29 /* SyntaxKind.LessThanToken */ || tokenKind === 31 /* SyntaxKind.GreaterThanToken */) { // If the node owning the token has a type argument list or type parameter list, then // we can effectively assume that a '<' and '>' belong to those lists. if (token && ts.getTypeArgumentOrTypeParameterList(token.parent)) { return 10 /* ClassificationType.punctuation */; } } if (ts.isPunctuation(tokenKind)) { if (token) { var parent = token.parent; if (tokenKind === 63 /* SyntaxKind.EqualsToken */) { // the '=' in a variable declaration is special cased here. if (parent.kind === 254 /* SyntaxKind.VariableDeclaration */ || parent.kind === 167 /* SyntaxKind.PropertyDeclaration */ || parent.kind === 164 /* SyntaxKind.Parameter */ || parent.kind === 285 /* SyntaxKind.JsxAttribute */) { return 5 /* ClassificationType.operator */; } } if (parent.kind === 221 /* SyntaxKind.BinaryExpression */ || parent.kind === 219 /* SyntaxKind.PrefixUnaryExpression */ || parent.kind === 220 /* SyntaxKind.PostfixUnaryExpression */ || parent.kind === 222 /* SyntaxKind.ConditionalExpression */) { return 5 /* ClassificationType.operator */; } } return 10 /* ClassificationType.punctuation */; } else if (tokenKind === 8 /* SyntaxKind.NumericLiteral */) { return 4 /* ClassificationType.numericLiteral */; } else if (tokenKind === 9 /* SyntaxKind.BigIntLiteral */) { return 25 /* ClassificationType.bigintLiteral */; } else if (tokenKind === 10 /* SyntaxKind.StringLiteral */) { return token && token.parent.kind === 285 /* SyntaxKind.JsxAttribute */ ? 24 /* ClassificationType.jsxAttributeStringLiteralValue */ : 6 /* ClassificationType.stringLiteral */; } else if (tokenKind === 13 /* SyntaxKind.RegularExpressionLiteral */) { // TODO: we should get another classification type for these literals. return 6 /* ClassificationType.stringLiteral */; } else if (ts.isTemplateLiteralKind(tokenKind)) { // TODO (drosen): we should *also* get another classification type for these literals. return 6 /* ClassificationType.stringLiteral */; } else if (tokenKind === 11 /* SyntaxKind.JsxText */) { return 23 /* ClassificationType.jsxText */; } else if (tokenKind === 79 /* SyntaxKind.Identifier */) { if (token) { switch (token.parent.kind) { case 257 /* SyntaxKind.ClassDeclaration */: if (token.parent.name === token) { return 11 /* ClassificationType.className */; } return; case 163 /* SyntaxKind.TypeParameter */: if (token.parent.name === token) { return 15 /* ClassificationType.typeParameterName */; } return; case 258 /* SyntaxKind.InterfaceDeclaration */: if (token.parent.name === token) { return 13 /* ClassificationType.interfaceName */; } return; case 260 /* SyntaxKind.EnumDeclaration */: if (token.parent.name === token) { return 12 /* ClassificationType.enumName */; } return; case 261 /* SyntaxKind.ModuleDeclaration */: if (token.parent.name === token) { return 14 /* ClassificationType.moduleName */; } return; case 164 /* SyntaxKind.Parameter */: if (token.parent.name === token) { return ts.isThisIdentifier(token) ? 3 /* ClassificationType.keyword */ : 17 /* ClassificationType.parameterName */; } return; } if (ts.isConstTypeReference(token.parent)) { return 3 /* ClassificationType.keyword */; } } return 2 /* ClassificationType.identifier */; } } function processElement(element) { if (!element) { return; } // Ignore nodes that don't intersect the original span to classify. if (ts.decodedTextSpanIntersectsWith(spanStart, spanLength, element.pos, element.getFullWidth())) { checkForClassificationCancellation(cancellationToken, element.kind); for (var _i = 0, _a = element.getChildren(sourceFile); _i < _a.length; _i++) { var child = _a[_i]; if (!tryClassifyNode(child)) { // Recurse into our child nodes. processElement(child); } } } } } ts.getEncodedSyntacticClassifications = getEncodedSyntacticClassifications; })(ts || (ts = {})); /** @internal */ var ts; (function (ts) { var classifier; (function (classifier) { var v2020; (function (v2020) { var TokenEncodingConsts; (function (TokenEncodingConsts) { TokenEncodingConsts[TokenEncodingConsts["typeOffset"] = 8] = "typeOffset"; TokenEncodingConsts[TokenEncodingConsts["modifierMask"] = 255] = "modifierMask"; })(TokenEncodingConsts = v2020.TokenEncodingConsts || (v2020.TokenEncodingConsts = {})); var TokenType; (function (TokenType) { TokenType[TokenType["class"] = 0] = "class"; TokenType[TokenType["enum"] = 1] = "enum"; TokenType[TokenType["interface"] = 2] = "interface"; TokenType[TokenType["namespace"] = 3] = "namespace"; TokenType[TokenType["typeParameter"] = 4] = "typeParameter"; TokenType[TokenType["type"] = 5] = "type"; TokenType[TokenType["parameter"] = 6] = "parameter"; TokenType[TokenType["variable"] = 7] = "variable"; TokenType[TokenType["enumMember"] = 8] = "enumMember"; TokenType[TokenType["property"] = 9] = "property"; TokenType[TokenType["function"] = 10] = "function"; TokenType[TokenType["member"] = 11] = "member"; })(TokenType = v2020.TokenType || (v2020.TokenType = {})); var TokenModifier; (function (TokenModifier) { TokenModifier[TokenModifier["declaration"] = 0] = "declaration"; TokenModifier[TokenModifier["static"] = 1] = "static"; TokenModifier[TokenModifier["async"] = 2] = "async"; TokenModifier[TokenModifier["readonly"] = 3] = "readonly"; TokenModifier[TokenModifier["defaultLibrary"] = 4] = "defaultLibrary"; TokenModifier[TokenModifier["local"] = 5] = "local"; })(TokenModifier = v2020.TokenModifier || (v2020.TokenModifier = {})); /** This is mainly used internally for testing */ function getSemanticClassifications(program, cancellationToken, sourceFile, span) { var classifications = getEncodedSemanticClassifications(program, cancellationToken, sourceFile, span); ts.Debug.assert(classifications.spans.length % 3 === 0); var dense = classifications.spans; var result = []; for (var i = 0; i < dense.length; i += 3) { result.push({ textSpan: ts.createTextSpan(dense[i], dense[i + 1]), classificationType: dense[i + 2] }); } return result; } v2020.getSemanticClassifications = getSemanticClassifications; function getEncodedSemanticClassifications(program, cancellationToken, sourceFile, span) { return { spans: getSemanticTokens(program, sourceFile, span, cancellationToken), endOfLineState: 0 /* EndOfLineState.None */ }; } v2020.getEncodedSemanticClassifications = getEncodedSemanticClassifications; function getSemanticTokens(program, sourceFile, span, cancellationToken) { var resultTokens = []; var collector = function (node, typeIdx, modifierSet) { resultTokens.push(node.getStart(sourceFile), node.getWidth(sourceFile), ((typeIdx + 1) << 8 /* TokenEncodingConsts.typeOffset */) + modifierSet); }; if (program && sourceFile) { collectTokens(program, sourceFile, span, collector, cancellationToken); } return resultTokens; } function collectTokens(program, sourceFile, span, collector, cancellationToken) { var typeChecker = program.getTypeChecker(); var inJSXElement = false; function visit(node) { switch (node.kind) { case 261 /* SyntaxKind.ModuleDeclaration */: case 257 /* SyntaxKind.ClassDeclaration */: case 258 /* SyntaxKind.InterfaceDeclaration */: case 256 /* SyntaxKind.FunctionDeclaration */: case 226 /* SyntaxKind.ClassExpression */: case 213 /* SyntaxKind.FunctionExpression */: case 214 /* SyntaxKind.ArrowFunction */: cancellationToken.throwIfCancellationRequested(); } if (!node || !ts.textSpanIntersectsWith(span, node.pos, node.getFullWidth()) || node.getFullWidth() === 0) { return; } var prevInJSXElement = inJSXElement; if (ts.isJsxElement(node) || ts.isJsxSelfClosingElement(node)) { inJSXElement = true; } if (ts.isJsxExpression(node)) { inJSXElement = false; } if (ts.isIdentifier(node) && !inJSXElement && !inImportClause(node) && !ts.isInfinityOrNaNString(node.escapedText)) { var symbol = typeChecker.getSymbolAtLocation(node); if (symbol) { if (symbol.flags & 2097152 /* SymbolFlags.Alias */) { symbol = typeChecker.getAliasedSymbol(symbol); } var typeIdx = classifySymbol(symbol, ts.getMeaningFromLocation(node)); if (typeIdx !== undefined) { var modifierSet = 0; if (node.parent) { var parentIsDeclaration = (ts.isBindingElement(node.parent) || tokenFromDeclarationMapping.get(node.parent.kind) === typeIdx); if (parentIsDeclaration && node.parent.name === node) { modifierSet = 1 << 0 /* TokenModifier.declaration */; } } // property declaration in constructor if (typeIdx === 6 /* TokenType.parameter */ && isRightSideOfQualifiedNameOrPropertyAccess(node)) { typeIdx = 9 /* TokenType.property */; } typeIdx = reclassifyByType(typeChecker, node, typeIdx); var decl = symbol.valueDeclaration; if (decl) { var modifiers = ts.getCombinedModifierFlags(decl); var nodeFlags = ts.getCombinedNodeFlags(decl); if (modifiers & 32 /* ModifierFlags.Static */) { modifierSet |= 1 << 1 /* TokenModifier.static */; } if (modifiers & 256 /* ModifierFlags.Async */) { modifierSet |= 1 << 2 /* TokenModifier.async */; } if (typeIdx !== 0 /* TokenType.class */ && typeIdx !== 2 /* TokenType.interface */) { if ((modifiers & 64 /* ModifierFlags.Readonly */) || (nodeFlags & 2 /* NodeFlags.Const */) || (symbol.getFlags() & 8 /* SymbolFlags.EnumMember */)) { modifierSet |= 1 << 3 /* TokenModifier.readonly */; } } if ((typeIdx === 7 /* TokenType.variable */ || typeIdx === 10 /* TokenType.function */) && isLocalDeclaration(decl, sourceFile)) { modifierSet |= 1 << 5 /* TokenModifier.local */; } if (program.isSourceFileDefaultLibrary(decl.getSourceFile())) { modifierSet |= 1 << 4 /* TokenModifier.defaultLibrary */; } } else if (symbol.declarations && symbol.declarations.some(function (d) { return program.isSourceFileDefaultLibrary(d.getSourceFile()); })) { modifierSet |= 1 << 4 /* TokenModifier.defaultLibrary */; } collector(node, typeIdx, modifierSet); } } } ts.forEachChild(node, visit); inJSXElement = prevInJSXElement; } visit(sourceFile); } function classifySymbol(symbol, meaning) { var flags = symbol.getFlags(); if (flags & 32 /* SymbolFlags.Class */) { return 0 /* TokenType.class */; } else if (flags & 384 /* SymbolFlags.Enum */) { return 1 /* TokenType.enum */; } else if (flags & 524288 /* SymbolFlags.TypeAlias */) { return 5 /* TokenType.type */; } else if (flags & 64 /* SymbolFlags.Interface */) { if (meaning & 2 /* SemanticMeaning.Type */) { return 2 /* TokenType.interface */; } } else if (flags & 262144 /* SymbolFlags.TypeParameter */) { return 4 /* TokenType.typeParameter */; } var decl = symbol.valueDeclaration || symbol.declarations && symbol.declarations[0]; if (decl && ts.isBindingElement(decl)) { decl = getDeclarationForBindingElement(decl); } return decl && tokenFromDeclarationMapping.get(decl.kind); } function reclassifyByType(typeChecker, node, typeIdx) { // type based classifications if (typeIdx === 7 /* TokenType.variable */ || typeIdx === 9 /* TokenType.property */ || typeIdx === 6 /* TokenType.parameter */) { var type_1 = typeChecker.getTypeAtLocation(node); if (type_1) { var test = function (condition) { return condition(type_1) || type_1.isUnion() && type_1.types.some(condition); }; if (typeIdx !== 6 /* TokenType.parameter */ && test(function (t) { return t.getConstructSignatures().length > 0; })) { return 0 /* TokenType.class */; } if (test(function (t) { return t.getCallSignatures().length > 0; }) && !test(function (t) { return t.getProperties().length > 0; }) || isExpressionInCallExpression(node)) { return typeIdx === 9 /* TokenType.property */ ? 11 /* TokenType.member */ : 10 /* TokenType.function */; } } } return typeIdx; } function isLocalDeclaration(decl, sourceFile) { if (ts.isBindingElement(decl)) { decl = getDeclarationForBindingElement(decl); } if (ts.isVariableDeclaration(decl)) { return (!ts.isSourceFile(decl.parent.parent.parent) || ts.isCatchClause(decl.parent)) && decl.getSourceFile() === sourceFile; } else if (ts.isFunctionDeclaration(decl)) { return !ts.isSourceFile(decl.parent) && decl.getSourceFile() === sourceFile; } return false; } function getDeclarationForBindingElement(element) { while (true) { if (ts.isBindingElement(element.parent.parent)) { element = element.parent.parent; } else { return element.parent.parent; } } } function inImportClause(node) { var parent = node.parent; return parent && (ts.isImportClause(parent) || ts.isImportSpecifier(parent) || ts.isNamespaceImport(parent)); } function isExpressionInCallExpression(node) { while (isRightSideOfQualifiedNameOrPropertyAccess(node)) { node = node.parent; } return ts.isCallExpression(node.parent) && node.parent.expression === node; } function isRightSideOfQualifiedNameOrPropertyAccess(node) { return (ts.isQualifiedName(node.parent) && node.parent.right === node) || (ts.isPropertyAccessExpression(node.parent) && node.parent.name === node); } var tokenFromDeclarationMapping = new ts.Map([ [254 /* SyntaxKind.VariableDeclaration */, 7 /* TokenType.variable */], [164 /* SyntaxKind.Parameter */, 6 /* TokenType.parameter */], [167 /* SyntaxKind.PropertyDeclaration */, 9 /* TokenType.property */], [261 /* SyntaxKind.ModuleDeclaration */, 3 /* TokenType.namespace */], [260 /* SyntaxKind.EnumDeclaration */, 1 /* TokenType.enum */], [299 /* SyntaxKind.EnumMember */, 8 /* TokenType.enumMember */], [257 /* SyntaxKind.ClassDeclaration */, 0 /* TokenType.class */], [169 /* SyntaxKind.MethodDeclaration */, 11 /* TokenType.member */], [256 /* SyntaxKind.FunctionDeclaration */, 10 /* TokenType.function */], [213 /* SyntaxKind.FunctionExpression */, 10 /* TokenType.function */], [168 /* SyntaxKind.MethodSignature */, 11 /* TokenType.member */], [172 /* SyntaxKind.GetAccessor */, 9 /* TokenType.property */], [173 /* SyntaxKind.SetAccessor */, 9 /* TokenType.property */], [166 /* SyntaxKind.PropertySignature */, 9 /* TokenType.property */], [258 /* SyntaxKind.InterfaceDeclaration */, 2 /* TokenType.interface */], [259 /* SyntaxKind.TypeAliasDeclaration */, 5 /* TokenType.type */], [163 /* SyntaxKind.TypeParameter */, 4 /* TokenType.typeParameter */], [296 /* SyntaxKind.PropertyAssignment */, 9 /* TokenType.property */], [297 /* SyntaxKind.ShorthandPropertyAssignment */, 9 /* TokenType.property */] ]); })(v2020 = classifier.v2020 || (classifier.v2020 = {})); })(classifier = ts.classifier || (ts.classifier = {})); })(ts || (ts = {})); /* @internal */ var ts; (function (ts) { var Completions; (function (Completions) { var StringCompletions; (function (StringCompletions) { function getStringLiteralCompletions(sourceFile, position, contextToken, options, host, program, log, preferences) { if (ts.isInReferenceComment(sourceFile, position)) { var entries = getTripleSlashReferenceCompletion(sourceFile, position, options, host); return entries && convertPathCompletions(entries); } if (ts.isInString(sourceFile, position, contextToken)) { if (!contextToken || !ts.isStringLiteralLike(contextToken)) return undefined; var entries = getStringLiteralCompletionEntries(sourceFile, contextToken, position, program.getTypeChecker(), options, host, preferences); return convertStringLiteralCompletions(entries, contextToken, sourceFile, host, program, log, options, preferences); } } StringCompletions.getStringLiteralCompletions = getStringLiteralCompletions; function convertStringLiteralCompletions(completion, contextToken, sourceFile, host, program, log, options, preferences) { if (completion === undefined) { return undefined; } var optionalReplacementSpan = ts.createTextSpanFromStringLiteralLikeContent(contextToken); switch (completion.kind) { case 0 /* StringLiteralCompletionKind.Paths */: return convertPathCompletions(completion.paths); case 1 /* StringLiteralCompletionKind.Properties */: { var entries = ts.createSortedArray(); Completions.getCompletionEntriesFromSymbols(completion.symbols, entries, contextToken, contextToken, sourceFile, sourceFile, host, program, 99 /* ScriptTarget.ESNext */, log, 4 /* CompletionKind.String */, preferences, options, /*formatContext*/ undefined); // Target will not be used, so arbitrary return { isGlobalCompletion: false, isMemberCompletion: true, isNewIdentifierLocation: completion.hasIndexSignature, optionalReplacementSpan: optionalReplacementSpan, entries: entries }; } case 2 /* StringLiteralCompletionKind.Types */: { var entries = completion.types.map(function (type) { return ({ name: type.value, kindModifiers: "" /* ScriptElementKindModifier.none */, kind: "string" /* ScriptElementKind.string */, sortText: Completions.SortText.LocationPriority, replacementSpan: ts.getReplacementSpanForContextToken(contextToken) }); }); return { isGlobalCompletion: false, isMemberCompletion: false, isNewIdentifierLocation: completion.isNewIdentifier, optionalReplacementSpan: optionalReplacementSpan, entries: entries }; } default: return ts.Debug.assertNever(completion); } } function getStringLiteralCompletionDetails(name, sourceFile, position, contextToken, checker, options, host, cancellationToken, preferences) { if (!contextToken || !ts.isStringLiteralLike(contextToken)) return undefined; var completions = getStringLiteralCompletionEntries(sourceFile, contextToken, position, checker, options, host, preferences); return completions && stringLiteralCompletionDetails(name, contextToken, completions, sourceFile, checker, cancellationToken); } StringCompletions.getStringLiteralCompletionDetails = getStringLiteralCompletionDetails; function stringLiteralCompletionDetails(name, location, completion, sourceFile, checker, cancellationToken) { switch (completion.kind) { case 0 /* StringLiteralCompletionKind.Paths */: { var match = ts.find(completion.paths, function (p) { return p.name === name; }); return match && Completions.createCompletionDetails(name, kindModifiersFromExtension(match.extension), match.kind, [ts.textPart(name)]); } case 1 /* StringLiteralCompletionKind.Properties */: { var match = ts.find(completion.symbols, function (s) { return s.name === name; }); return match && Completions.createCompletionDetailsForSymbol(match, checker, sourceFile, location, cancellationToken); } case 2 /* StringLiteralCompletionKind.Types */: return ts.find(completion.types, function (t) { return t.value === name; }) ? Completions.createCompletionDetails(name, "" /* ScriptElementKindModifier.none */, "type" /* ScriptElementKind.typeElement */, [ts.textPart(name)]) : undefined; default: return ts.Debug.assertNever(completion); } } function convertPathCompletions(pathCompletions) { var isGlobalCompletion = false; // We don't want the editor to offer any other completions, such as snippets, inside a comment. var isNewIdentifierLocation = true; // The user may type in a path that doesn't yet exist, creating a "new identifier" with respect to the collection of identifiers the server is aware of. var entries = pathCompletions.map(function (_a) { var name = _a.name, kind = _a.kind, span = _a.span, extension = _a.extension; return ({ name: name, kind: kind, kindModifiers: kindModifiersFromExtension(extension), sortText: Completions.SortText.LocationPriority, replacementSpan: span }); }); return { isGlobalCompletion: isGlobalCompletion, isMemberCompletion: false, isNewIdentifierLocation: isNewIdentifierLocation, entries: entries }; } function kindModifiersFromExtension(extension) { switch (extension) { case ".d.ts" /* Extension.Dts */: return ".d.ts" /* ScriptElementKindModifier.dtsModifier */; case ".js" /* Extension.Js */: return ".js" /* ScriptElementKindModifier.jsModifier */; case ".json" /* Extension.Json */: return ".json" /* ScriptElementKindModifier.jsonModifier */; case ".jsx" /* Extension.Jsx */: return ".jsx" /* ScriptElementKindModifier.jsxModifier */; case ".ts" /* Extension.Ts */: return ".ts" /* ScriptElementKindModifier.tsModifier */; case ".tsx" /* Extension.Tsx */: return ".tsx" /* ScriptElementKindModifier.tsxModifier */; case ".d.mts" /* Extension.Dmts */: return ".d.mts" /* ScriptElementKindModifier.dmtsModifier */; case ".mjs" /* Extension.Mjs */: return ".mjs" /* ScriptElementKindModifier.mjsModifier */; case ".mts" /* Extension.Mts */: return ".mts" /* ScriptElementKindModifier.mtsModifier */; case ".d.cts" /* Extension.Dcts */: return ".d.cts" /* ScriptElementKindModifier.dctsModifier */; case ".cjs" /* Extension.Cjs */: return ".cjs" /* ScriptElementKindModifier.cjsModifier */; case ".cts" /* Extension.Cts */: return ".cts" /* ScriptElementKindModifier.ctsModifier */; case ".tsbuildinfo" /* Extension.TsBuildInfo */: return ts.Debug.fail("Extension ".concat(".tsbuildinfo" /* Extension.TsBuildInfo */, " is unsupported.")); case undefined: return "" /* ScriptElementKindModifier.none */; default: return ts.Debug.assertNever(extension); } } var StringLiteralCompletionKind; (function (StringLiteralCompletionKind) { StringLiteralCompletionKind[StringLiteralCompletionKind["Paths"] = 0] = "Paths"; StringLiteralCompletionKind[StringLiteralCompletionKind["Properties"] = 1] = "Properties"; StringLiteralCompletionKind[StringLiteralCompletionKind["Types"] = 2] = "Types"; })(StringLiteralCompletionKind || (StringLiteralCompletionKind = {})); function getStringLiteralCompletionEntries(sourceFile, node, position, typeChecker, compilerOptions, host, preferences) { var parent = walkUpParentheses(node.parent); switch (parent.kind) { case 196 /* SyntaxKind.LiteralType */: { var grandParent = walkUpParentheses(parent.parent); switch (grandParent.kind) { case 178 /* SyntaxKind.TypeReference */: { var typeReference_1 = grandParent; var typeArgument = ts.findAncestor(parent, function (n) { return n.parent === typeReference_1; }); if (typeArgument) { return { kind: 2 /* StringLiteralCompletionKind.Types */, types: getStringLiteralTypes(typeChecker.getTypeArgumentConstraint(typeArgument)), isNewIdentifier: false }; } return undefined; } case 194 /* SyntaxKind.IndexedAccessType */: // Get all apparent property names // i.e. interface Foo { // foo: string; // bar: string; // } // let x: Foo["/*completion position*/"] var _a = grandParent, indexType = _a.indexType, objectType = _a.objectType; if (!ts.rangeContainsPosition(indexType, position)) { return undefined; } return stringLiteralCompletionsFromProperties(typeChecker.getTypeFromTypeNode(objectType)); case 200 /* SyntaxKind.ImportType */: return { kind: 0 /* StringLiteralCompletionKind.Paths */, paths: getStringLiteralCompletionsFromModuleNames(sourceFile, node, compilerOptions, host, typeChecker, preferences) }; case 187 /* SyntaxKind.UnionType */: { if (!ts.isTypeReferenceNode(grandParent.parent)) { return undefined; } var alreadyUsedTypes_1 = getAlreadyUsedTypesInStringLiteralUnion(grandParent, parent); var types = getStringLiteralTypes(typeChecker.getTypeArgumentConstraint(grandParent)).filter(function (t) { return !ts.contains(alreadyUsedTypes_1, t.value); }); return { kind: 2 /* StringLiteralCompletionKind.Types */, types: types, isNewIdentifier: false }; } default: return undefined; } } case 296 /* SyntaxKind.PropertyAssignment */: if (ts.isObjectLiteralExpression(parent.parent) && parent.name === node) { // Get quoted name of properties of the object literal expression // i.e. interface ConfigFiles { // 'jspm:dev': string // } // let files: ConfigFiles = { // '/*completion position*/' // } // // function foo(c: ConfigFiles) {} // foo({ // '/*completion position*/' // }); return stringLiteralCompletionsForObjectLiteral(typeChecker, parent.parent); } return fromContextualType(); case 207 /* SyntaxKind.ElementAccessExpression */: { var _b = parent, expression = _b.expression, argumentExpression = _b.argumentExpression; if (node === ts.skipParentheses(argumentExpression)) { // Get all names of properties on the expression // i.e. interface A { // 'prop1': string // } // let a: A; // a['/*completion position*/'] return stringLiteralCompletionsFromProperties(typeChecker.getTypeAtLocation(expression)); } return undefined; } case 208 /* SyntaxKind.CallExpression */: case 209 /* SyntaxKind.NewExpression */: case 285 /* SyntaxKind.JsxAttribute */: if (!isRequireCallArgument(node) && !ts.isImportCall(parent)) { var argumentInfo = ts.SignatureHelp.getArgumentInfoForCompletions(parent.kind === 285 /* SyntaxKind.JsxAttribute */ ? parent.parent : node, position, sourceFile); // Get string literal completions from specialized signatures of the target // i.e. declare function f(a: 'A'); // f("/*completion position*/") return argumentInfo ? getStringLiteralCompletionsFromSignature(argumentInfo.invocation, node, argumentInfo, typeChecker) : fromContextualType(); } // falls through (is `require("")` or `require(""` or `import("")`) case 266 /* SyntaxKind.ImportDeclaration */: case 272 /* SyntaxKind.ExportDeclaration */: case 277 /* SyntaxKind.ExternalModuleReference */: // Get all known external module names or complete a path to a module // i.e. import * as ns from "/*completion position*/"; // var y = import("/*completion position*/"); // import x = require("/*completion position*/"); // var y = require("/*completion position*/"); // export * from "/*completion position*/"; return { kind: 0 /* StringLiteralCompletionKind.Paths */, paths: getStringLiteralCompletionsFromModuleNames(sourceFile, node, compilerOptions, host, typeChecker, preferences) }; default: return fromContextualType(); } function fromContextualType() { // Get completion for string literal from string literal type // i.e. var x: "hi" | "hello" = "/*completion position*/" return { kind: 2 /* StringLiteralCompletionKind.Types */, types: getStringLiteralTypes(ts.getContextualTypeFromParent(node, typeChecker)), isNewIdentifier: false }; } } function walkUpParentheses(node) { switch (node.kind) { case 191 /* SyntaxKind.ParenthesizedType */: return ts.walkUpParenthesizedTypes(node); case 212 /* SyntaxKind.ParenthesizedExpression */: return ts.walkUpParenthesizedExpressions(node); default: return node; } } function getAlreadyUsedTypesInStringLiteralUnion(union, current) { return ts.mapDefined(union.types, function (type) { return type !== current && ts.isLiteralTypeNode(type) && ts.isStringLiteral(type.literal) ? type.literal.text : undefined; }); } function getStringLiteralCompletionsFromSignature(call, arg, argumentInfo, checker) { var isNewIdentifier = false; var uniques = new ts.Map(); var candidates = []; var editingArgument = ts.isJsxOpeningLikeElement(call) ? ts.Debug.checkDefined(ts.findAncestor(arg.parent, ts.isJsxAttribute)) : arg; checker.getResolvedSignatureForStringLiteralCompletions(call, editingArgument, candidates); var types = ts.flatMap(candidates, function (candidate) { if (!ts.signatureHasRestParameter(candidate) && argumentInfo.argumentCount > candidate.parameters.length) return; var type = candidate.getTypeParameterAtPosition(argumentInfo.argumentIndex); if (ts.isJsxOpeningLikeElement(call)) { var propType = checker.getTypeOfPropertyOfType(type, editingArgument.name.text); if (propType) { type = propType; } } isNewIdentifier = isNewIdentifier || !!(type.flags & 4 /* TypeFlags.String */); return getStringLiteralTypes(type, uniques); }); return { kind: 2 /* StringLiteralCompletionKind.Types */, types: types, isNewIdentifier: isNewIdentifier }; } function stringLiteralCompletionsFromProperties(type) { return type && { kind: 1 /* StringLiteralCompletionKind.Properties */, symbols: ts.filter(type.getApparentProperties(), function (prop) { return !(prop.valueDeclaration && ts.isPrivateIdentifierClassElementDeclaration(prop.valueDeclaration)); }), hasIndexSignature: ts.hasIndexSignature(type) }; } function stringLiteralCompletionsForObjectLiteral(checker, objectLiteralExpression) { var contextualType = checker.getContextualType(objectLiteralExpression); if (!contextualType) return undefined; var completionsType = checker.getContextualType(objectLiteralExpression, 4 /* ContextFlags.Completions */); var symbols = Completions.getPropertiesForObjectExpression(contextualType, completionsType, objectLiteralExpression, checker); return { kind: 1 /* StringLiteralCompletionKind.Properties */, symbols: symbols, hasIndexSignature: ts.hasIndexSignature(contextualType) }; } function getStringLiteralTypes(type, uniques) { if (uniques === void 0) { uniques = new ts.Map(); } if (!type) return ts.emptyArray; type = ts.skipConstraint(type); return type.isUnion() ? ts.flatMap(type.types, function (t) { return getStringLiteralTypes(t, uniques); }) : type.isStringLiteral() && !(type.flags & 1024 /* TypeFlags.EnumLiteral */) && ts.addToSeen(uniques, type.value) ? [type] : ts.emptyArray; } function nameAndKind(name, kind, extension) { return { name: name, kind: kind, extension: extension }; } function directoryResult(name) { return nameAndKind(name, "directory" /* ScriptElementKind.directory */, /*extension*/ undefined); } function addReplacementSpans(text, textStart, names) { var span = getDirectoryFragmentTextSpan(text, textStart); var wholeSpan = text.length === 0 ? undefined : ts.createTextSpan(textStart, text.length); return names.map(function (_a) { var name = _a.name, kind = _a.kind, extension = _a.extension; return Math.max(name.indexOf(ts.directorySeparator), name.indexOf(ts.altDirectorySeparator)) !== -1 ? { name: name, kind: kind, extension: extension, span: wholeSpan } : { name: name, kind: kind, extension: extension, span: span }; }); } function getStringLiteralCompletionsFromModuleNames(sourceFile, node, compilerOptions, host, typeChecker, preferences) { return addReplacementSpans(node.text, node.getStart(sourceFile) + 1, getStringLiteralCompletionsFromModuleNamesWorker(sourceFile, node, compilerOptions, host, typeChecker, preferences)); } function getStringLiteralCompletionsFromModuleNamesWorker(sourceFile, node, compilerOptions, host, typeChecker, preferences) { var literalValue = ts.normalizeSlashes(node.text); var scriptPath = sourceFile.path; var scriptDirectory = ts.getDirectoryPath(scriptPath); return isPathRelativeToScript(literalValue) || !compilerOptions.baseUrl && (ts.isRootedDiskPath(literalValue) || ts.isUrl(literalValue)) ? getCompletionEntriesForRelativeModules(literalValue, scriptDirectory, compilerOptions, host, scriptPath, getIncludeExtensionOption()) : getCompletionEntriesForNonRelativeModules(literalValue, scriptDirectory, compilerOptions, host, typeChecker); function getIncludeExtensionOption() { var mode = ts.isStringLiteralLike(node) ? ts.getModeForUsageLocation(sourceFile, node) : undefined; return preferences.importModuleSpecifierEnding === "js" || mode === ts.ModuleKind.ESNext ? 2 /* IncludeExtensionsOption.ModuleSpecifierCompletion */ : 0 /* IncludeExtensionsOption.Exclude */; } } function getExtensionOptions(compilerOptions, includeExtensionsOption) { if (includeExtensionsOption === void 0) { includeExtensionsOption = 0 /* IncludeExtensionsOption.Exclude */; } return { extensions: ts.flatten(getSupportedExtensionsForModuleResolution(compilerOptions)), includeExtensionsOption: includeExtensionsOption }; } function getCompletionEntriesForRelativeModules(literalValue, scriptDirectory, compilerOptions, host, scriptPath, includeExtensions) { var extensionOptions = getExtensionOptions(compilerOptions, includeExtensions); if (compilerOptions.rootDirs) { return getCompletionEntriesForDirectoryFragmentWithRootDirs(compilerOptions.rootDirs, literalValue, scriptDirectory, extensionOptions, compilerOptions, host, scriptPath); } else { return getCompletionEntriesForDirectoryFragment(literalValue, scriptDirectory, extensionOptions, host, scriptPath); } } function isEmitResolutionKindUsingNodeModules(compilerOptions) { return ts.getEmitModuleResolutionKind(compilerOptions) === ts.ModuleResolutionKind.NodeJs || ts.getEmitModuleResolutionKind(compilerOptions) === ts.ModuleResolutionKind.Node16 || ts.getEmitModuleResolutionKind(compilerOptions) === ts.ModuleResolutionKind.NodeNext; } function isEmitModuleResolutionRespectingExportMaps(compilerOptions) { return ts.getEmitModuleResolutionKind(compilerOptions) === ts.ModuleResolutionKind.Node16 || ts.getEmitModuleResolutionKind(compilerOptions) === ts.ModuleResolutionKind.NodeNext; } function getSupportedExtensionsForModuleResolution(compilerOptions) { var extensions = ts.getSupportedExtensions(compilerOptions); return isEmitResolutionKindUsingNodeModules(compilerOptions) ? ts.getSupportedExtensionsWithJsonIfResolveJsonModule(compilerOptions, extensions) : extensions; } /** * Takes a script path and returns paths for all potential folders that could be merged with its * containing folder via the "rootDirs" compiler option */ function getBaseDirectoriesFromRootDirs(rootDirs, basePath, scriptDirectory, ignoreCase) { // Make all paths absolute/normalized if they are not already rootDirs = rootDirs.map(function (rootDirectory) { return ts.normalizePath(ts.isRootedDiskPath(rootDirectory) ? rootDirectory : ts.combinePaths(basePath, rootDirectory)); }); // Determine the path to the directory containing the script relative to the root directory it is contained within var relativeDirectory = ts.firstDefined(rootDirs, function (rootDirectory) { return ts.containsPath(rootDirectory, scriptDirectory, basePath, ignoreCase) ? scriptDirectory.substr(rootDirectory.length) : undefined; }); // TODO: GH#18217 // Now find a path for each potential directory that is to be merged with the one containing the script return ts.deduplicate(__spreadArray(__spreadArray([], rootDirs.map(function (rootDirectory) { return ts.combinePaths(rootDirectory, relativeDirectory); }), true), [scriptDirectory], false), ts.equateStringsCaseSensitive, ts.compareStringsCaseSensitive); } function getCompletionEntriesForDirectoryFragmentWithRootDirs(rootDirs, fragment, scriptDirectory, extensionOptions, compilerOptions, host, exclude) { var basePath = compilerOptions.project || host.getCurrentDirectory(); var ignoreCase = !(host.useCaseSensitiveFileNames && host.useCaseSensitiveFileNames()); var baseDirectories = getBaseDirectoriesFromRootDirs(rootDirs, basePath, scriptDirectory, ignoreCase); return ts.flatMap(baseDirectories, function (baseDirectory) { return getCompletionEntriesForDirectoryFragment(fragment, baseDirectory, extensionOptions, host, exclude); }); } var IncludeExtensionsOption; (function (IncludeExtensionsOption) { IncludeExtensionsOption[IncludeExtensionsOption["Exclude"] = 0] = "Exclude"; IncludeExtensionsOption[IncludeExtensionsOption["Include"] = 1] = "Include"; IncludeExtensionsOption[IncludeExtensionsOption["ModuleSpecifierCompletion"] = 2] = "ModuleSpecifierCompletion"; })(IncludeExtensionsOption || (IncludeExtensionsOption = {})); /** * Given a path ending at a directory, gets the completions for the path, and filters for those entries containing the basename. */ function getCompletionEntriesForDirectoryFragment(fragment, scriptPath, _a, host, exclude, result) { var extensions = _a.extensions, includeExtensionsOption = _a.includeExtensionsOption; if (result === void 0) { result = []; } if (fragment === undefined) { fragment = ""; } fragment = ts.normalizeSlashes(fragment); /** * Remove the basename from the path. Note that we don't use the basename to filter completions; * the client is responsible for refining completions. */ if (!ts.hasTrailingDirectorySeparator(fragment)) { fragment = ts.getDirectoryPath(fragment); } if (fragment === "") { fragment = "." + ts.directorySeparator; } fragment = ts.ensureTrailingDirectorySeparator(fragment); // const absolutePath = normalizeAndPreserveTrailingSlash(isRootedDiskPath(fragment) ? fragment : combinePaths(scriptPath, fragment)); // TODO(rbuckton): should use resolvePaths var absolutePath = ts.resolvePath(scriptPath, fragment); var baseDirectory = ts.hasTrailingDirectorySeparator(absolutePath) ? absolutePath : ts.getDirectoryPath(absolutePath); var ignoreCase = !(host.useCaseSensitiveFileNames && host.useCaseSensitiveFileNames()); if (!ts.tryDirectoryExists(host, baseDirectory)) return result; // Enumerate the available files if possible var files = ts.tryReadDirectory(host, baseDirectory, extensions, /*exclude*/ undefined, /*include*/ ["./*"]); if (files) { /** * Multiple file entries might map to the same truncated name once we remove extensions * (happens iff includeExtensionsOption === includeExtensionsOption.Exclude) so we use a set-like data structure. Eg: * * both foo.ts and foo.tsx become foo */ var foundFiles = new ts.Map(); // maps file to its extension for (var _i = 0, files_1 = files; _i < files_1.length; _i++) { var filePath = files_1[_i]; filePath = ts.normalizePath(filePath); if (exclude && ts.comparePaths(filePath, exclude, scriptPath, ignoreCase) === 0 /* Comparison.EqualTo */) { continue; } var foundFileName = void 0; var outputExtension = ts.moduleSpecifiers.tryGetJSExtensionForFile(filePath, host.getCompilationSettings()); if (includeExtensionsOption === 0 /* IncludeExtensionsOption.Exclude */ && !ts.fileExtensionIsOneOf(filePath, [".json" /* Extension.Json */, ".mts" /* Extension.Mts */, ".cts" /* Extension.Cts */, ".d.mts" /* Extension.Dmts */, ".d.cts" /* Extension.Dcts */, ".mjs" /* Extension.Mjs */, ".cjs" /* Extension.Cjs */])) { foundFileName = ts.removeFileExtension(ts.getBaseFileName(filePath)); foundFiles.set(foundFileName, ts.tryGetExtensionFromPath(filePath)); } else if ((ts.fileExtensionIsOneOf(filePath, [".mts" /* Extension.Mts */, ".cts" /* Extension.Cts */, ".d.mts" /* Extension.Dmts */, ".d.cts" /* Extension.Dcts */, ".mjs" /* Extension.Mjs */, ".cjs" /* Extension.Cjs */]) || includeExtensionsOption === 2 /* IncludeExtensionsOption.ModuleSpecifierCompletion */) && outputExtension) { foundFileName = ts.changeExtension(ts.getBaseFileName(filePath), outputExtension); foundFiles.set(foundFileName, outputExtension); } else { foundFileName = ts.getBaseFileName(filePath); foundFiles.set(foundFileName, ts.tryGetExtensionFromPath(filePath)); } } foundFiles.forEach(function (ext, foundFile) { result.push(nameAndKind(foundFile, "script" /* ScriptElementKind.scriptElement */, ext)); }); } // If possible, get folder completion as well var directories = ts.tryGetDirectories(host, baseDirectory); if (directories) { for (var _b = 0, directories_1 = directories; _b < directories_1.length; _b++) { var directory = directories_1[_b]; var directoryName = ts.getBaseFileName(ts.normalizePath(directory)); if (directoryName !== "@types") { result.push(directoryResult(directoryName)); } } } // check for a version redirect var packageJsonPath = ts.findPackageJson(baseDirectory, host); if (packageJsonPath) { var packageJson = ts.readJson(packageJsonPath, host); var typesVersions = packageJson.typesVersions; if (typeof typesVersions === "object") { var versionResult = ts.getPackageJsonTypesVersionsPaths(typesVersions); var versionPaths = versionResult && versionResult.paths; var rest = absolutePath.slice(ts.ensureTrailingDirectorySeparator(baseDirectory).length); if (versionPaths) { addCompletionEntriesFromPaths(result, rest, baseDirectory, extensions, versionPaths, host); } } } return result; } function addCompletionEntriesFromPaths(result, fragment, baseDirectory, fileExtensions, paths, host) { for (var path in paths) { if (!ts.hasProperty(paths, path)) continue; var patterns = paths[path]; if (patterns) { var _loop_3 = function (name, kind, extension) { // Path mappings may provide a duplicate way to get to something we've already added, so don't add again. if (!result.some(function (entry) { return entry.name === name; })) { result.push(nameAndKind(name, kind, extension)); } }; for (var _i = 0, _a = getCompletionsForPathMapping(path, patterns, fragment, baseDirectory, fileExtensions, host); _i < _a.length; _i++) { var _b = _a[_i], name = _b.name, kind = _b.kind, extension = _b.extension; _loop_3(name, kind, extension); } } } } /** * Check all of the declared modules and those in node modules. Possible sources of modules: * Modules that are found by the type checker * Modules found relative to "baseUrl" compliler options (including patterns from "paths" compiler option) * Modules from node_modules (i.e. those listed in package.json) * This includes all files that are found in node_modules/moduleName/ with acceptable file extensions */ function getCompletionEntriesForNonRelativeModules(fragment, scriptPath, compilerOptions, host, typeChecker) { var baseUrl = compilerOptions.baseUrl, paths = compilerOptions.paths; var result = []; var extensionOptions = getExtensionOptions(compilerOptions); if (baseUrl) { var projectDir = compilerOptions.project || host.getCurrentDirectory(); var absolute = ts.normalizePath(ts.combinePaths(projectDir, baseUrl)); getCompletionEntriesForDirectoryFragment(fragment, absolute, extensionOptions, host, /*exclude*/ undefined, result); if (paths) { addCompletionEntriesFromPaths(result, fragment, absolute, extensionOptions.extensions, paths, host); } } var fragmentDirectory = getFragmentDirectory(fragment); for (var _i = 0, _a = getAmbientModuleCompletions(fragment, fragmentDirectory, typeChecker); _i < _a.length; _i++) { var ambientName = _a[_i]; result.push(nameAndKind(ambientName, "external module name" /* ScriptElementKind.externalModuleName */, /*extension*/ undefined)); } getCompletionEntriesFromTypings(host, compilerOptions, scriptPath, fragmentDirectory, extensionOptions, result); if (isEmitResolutionKindUsingNodeModules(compilerOptions)) { // If looking for a global package name, don't just include everything in `node_modules` because that includes dependencies' own dependencies. // (But do if we didn't find anything, e.g. 'package.json' missing.) var foundGlobal = false; if (fragmentDirectory === undefined) { var _loop_4 = function (moduleName) { if (!result.some(function (entry) { return entry.name === moduleName; })) { foundGlobal = true; result.push(nameAndKind(moduleName, "external module name" /* ScriptElementKind.externalModuleName */, /*extension*/ undefined)); } }; for (var _b = 0, _c = enumerateNodeModulesVisibleToScript(host, scriptPath); _b < _c.length; _b++) { var moduleName = _c[_b]; _loop_4(moduleName); } } if (!foundGlobal) { var ancestorLookup = function (ancestor) { var nodeModules = ts.combinePaths(ancestor, "node_modules"); if (ts.tryDirectoryExists(host, nodeModules)) { getCompletionEntriesForDirectoryFragment(fragment, nodeModules, extensionOptions, host, /*exclude*/ undefined, result); } }; if (fragmentDirectory && isEmitModuleResolutionRespectingExportMaps(compilerOptions)) { var nodeModulesDirectoryLookup_1 = ancestorLookup; ancestorLookup = function (ancestor) { var components = ts.getPathComponents(fragment); components.shift(); // shift off empty root var packagePath = components.shift(); if (!packagePath) { return nodeModulesDirectoryLookup_1(ancestor); } if (ts.startsWith(packagePath, "@")) { var subName = components.shift(); if (!subName) { return nodeModulesDirectoryLookup_1(ancestor); } packagePath = ts.combinePaths(packagePath, subName); } var packageFile = ts.combinePaths(ancestor, "node_modules", packagePath, "package.json"); if (ts.tryFileExists(host, packageFile)) { var packageJson = ts.readJson(packageFile, host); var exports = packageJson.exports; if (exports) { if (typeof exports !== "object" || exports === null) { // eslint-disable-line no-null/no-null return; // null exports or entrypoint only, no sub-modules available } var keys = ts.getOwnKeys(exports); var fragmentSubpath_1 = components.join("/"); var processedKeys = ts.mapDefined(keys, function (k) { if (k === ".") return undefined; if (!ts.startsWith(k, "./")) return undefined; var subpath = k.substring(2); if (!ts.startsWith(subpath, fragmentSubpath_1)) return undefined; // subpath is a valid export (barring conditions, which we don't currently check here) if (!ts.stringContains(subpath, "*")) { return subpath; } // pattern export - only return everything up to the `*`, so the user can autocomplete, then // keep filling in the pattern (we could speculatively return a list of options by hitting disk, // but conditions will make that somewhat awkward, as each condition may have a different set of possible // options for the `*`. return subpath.slice(0, subpath.indexOf("*")); }); ts.forEach(processedKeys, function (k) { if (k) { result.push(nameAndKind(k, "external module name" /* ScriptElementKind.externalModuleName */, /*extension*/ undefined)); } }); return; } } return nodeModulesDirectoryLookup_1(ancestor); }; } ts.forEachAncestorDirectory(scriptPath, ancestorLookup); } } return result; } function getFragmentDirectory(fragment) { return containsSlash(fragment) ? ts.hasTrailingDirectorySeparator(fragment) ? fragment : ts.getDirectoryPath(fragment) : undefined; } function getCompletionsForPathMapping(path, patterns, fragment, baseUrl, fileExtensions, host) { if (!ts.endsWith(path, "*")) { // For a path mapping "foo": ["/x/y/z.ts"], add "foo" itself as a completion. return !ts.stringContains(path, "*") ? justPathMappingName(path) : ts.emptyArray; } var pathPrefix = path.slice(0, path.length - 1); var remainingFragment = ts.tryRemovePrefix(fragment, pathPrefix); return remainingFragment === undefined ? justPathMappingName(pathPrefix) : ts.flatMap(patterns, function (pattern) { return getModulesForPathsPattern(remainingFragment, baseUrl, pattern, fileExtensions, host); }); function justPathMappingName(name) { return ts.startsWith(name, fragment) ? [directoryResult(name)] : ts.emptyArray; } } function getModulesForPathsPattern(fragment, baseUrl, pattern, fileExtensions, host) { if (!host.readDirectory) { return undefined; } var parsed = ts.tryParsePattern(pattern); if (parsed === undefined || ts.isString(parsed)) { return undefined; } // The prefix has two effective parts: the directory path and the base component after the filepath that is not a // full directory component. For example: directory/path/of/prefix/base* var normalizedPrefix = ts.resolvePath(parsed.prefix); var normalizedPrefixDirectory = ts.hasTrailingDirectorySeparator(parsed.prefix) ? normalizedPrefix : ts.getDirectoryPath(normalizedPrefix); var normalizedPrefixBase = ts.hasTrailingDirectorySeparator(parsed.prefix) ? "" : ts.getBaseFileName(normalizedPrefix); var fragmentHasPath = containsSlash(fragment); var fragmentDirectory = fragmentHasPath ? ts.hasTrailingDirectorySeparator(fragment) ? fragment : ts.getDirectoryPath(fragment) : undefined; // Try and expand the prefix to include any path from the fragment so that we can limit the readDirectory call var expandedPrefixDirectory = fragmentHasPath ? ts.combinePaths(normalizedPrefixDirectory, normalizedPrefixBase + fragmentDirectory) : normalizedPrefixDirectory; var normalizedSuffix = ts.normalizePath(parsed.suffix); // Need to normalize after combining: If we combinePaths("a", "../b"), we want "b" and not "a/../b". var baseDirectory = ts.normalizePath(ts.combinePaths(baseUrl, expandedPrefixDirectory)); var completePrefix = fragmentHasPath ? baseDirectory : ts.ensureTrailingDirectorySeparator(baseDirectory) + normalizedPrefixBase; // If we have a suffix, then we need to read the directory all the way down. We could create a glob // that encodes the suffix, but we would have to escape the character "?" which readDirectory // doesn't support. For now, this is safer but slower var includeGlob = normalizedSuffix ? "**/*" : "./*"; var matches = ts.mapDefined(ts.tryReadDirectory(host, baseDirectory, fileExtensions, /*exclude*/ undefined, [includeGlob]), function (match) { var extension = ts.tryGetExtensionFromPath(match); var name = trimPrefixAndSuffix(match); return name === undefined ? undefined : nameAndKind(ts.removeFileExtension(name), "script" /* ScriptElementKind.scriptElement */, extension); }); var directories = ts.mapDefined(ts.tryGetDirectories(host, baseDirectory).map(function (d) { return ts.combinePaths(baseDirectory, d); }), function (dir) { var name = trimPrefixAndSuffix(dir); return name === undefined ? undefined : directoryResult(name); }); return __spreadArray(__spreadArray([], matches, true), directories, true); function trimPrefixAndSuffix(path) { var inner = withoutStartAndEnd(ts.normalizePath(path), completePrefix, normalizedSuffix); return inner === undefined ? undefined : removeLeadingDirectorySeparator(inner); } } function withoutStartAndEnd(s, start, end) { return ts.startsWith(s, start) && ts.endsWith(s, end) ? s.slice(start.length, s.length - end.length) : undefined; } function removeLeadingDirectorySeparator(path) { return path[0] === ts.directorySeparator ? path.slice(1) : path; } function getAmbientModuleCompletions(fragment, fragmentDirectory, checker) { // Get modules that the type checker picked up var ambientModules = checker.getAmbientModules().map(function (sym) { return ts.stripQuotes(sym.name); }); var nonRelativeModuleNames = ambientModules.filter(function (moduleName) { return ts.startsWith(moduleName, fragment); }); // Nested modules of the form "module-name/sub" need to be adjusted to only return the string // after the last '/' that appears in the fragment because that's where the replacement span // starts if (fragmentDirectory !== undefined) { var moduleNameWithSeparator_1 = ts.ensureTrailingDirectorySeparator(fragmentDirectory); return nonRelativeModuleNames.map(function (nonRelativeModuleName) { return ts.removePrefix(nonRelativeModuleName, moduleNameWithSeparator_1); }); } return nonRelativeModuleNames; } function getTripleSlashReferenceCompletion(sourceFile, position, compilerOptions, host) { var token = ts.getTokenAtPosition(sourceFile, position); var commentRanges = ts.getLeadingCommentRanges(sourceFile.text, token.pos); var range = commentRanges && ts.find(commentRanges, function (commentRange) { return position >= commentRange.pos && position <= commentRange.end; }); if (!range) { return undefined; } var text = sourceFile.text.slice(range.pos, position); var match = tripleSlashDirectiveFragmentRegex.exec(text); if (!match) { return undefined; } var prefix = match[1], kind = match[2], toComplete = match[3]; var scriptPath = ts.getDirectoryPath(sourceFile.path); var names = kind === "path" ? getCompletionEntriesForDirectoryFragment(toComplete, scriptPath, getExtensionOptions(compilerOptions, 1 /* IncludeExtensionsOption.Include */), host, sourceFile.path) : kind === "types" ? getCompletionEntriesFromTypings(host, compilerOptions, scriptPath, getFragmentDirectory(toComplete), getExtensionOptions(compilerOptions)) : ts.Debug.fail(); return addReplacementSpans(toComplete, range.pos + prefix.length, names); } function getCompletionEntriesFromTypings(host, options, scriptPath, fragmentDirectory, extensionOptions, result) { if (result === void 0) { result = []; } // Check for typings specified in compiler options var seen = new ts.Map(); var typeRoots = ts.tryAndIgnoreErrors(function () { return ts.getEffectiveTypeRoots(options, host); }) || ts.emptyArray; for (var _i = 0, typeRoots_1 = typeRoots; _i < typeRoots_1.length; _i++) { var root = typeRoots_1[_i]; getCompletionEntriesFromDirectories(root); } // Also get all @types typings installed in visible node_modules directories for (var _a = 0, _b = ts.findPackageJsons(scriptPath, host); _a < _b.length; _a++) { var packageJson = _b[_a]; var typesDir = ts.combinePaths(ts.getDirectoryPath(packageJson), "node_modules/@types"); getCompletionEntriesFromDirectories(typesDir); } return result; function getCompletionEntriesFromDirectories(directory) { if (!ts.tryDirectoryExists(host, directory)) return; for (var _i = 0, _a = ts.tryGetDirectories(host, directory); _i < _a.length; _i++) { var typeDirectoryName = _a[_i]; var packageName = ts.unmangleScopedPackageName(typeDirectoryName); if (options.types && !ts.contains(options.types, packageName)) continue; if (fragmentDirectory === undefined) { if (!seen.has(packageName)) { result.push(nameAndKind(packageName, "external module name" /* ScriptElementKind.externalModuleName */, /*extension*/ undefined)); seen.set(packageName, true); } } else { var baseDirectory = ts.combinePaths(directory, typeDirectoryName); var remainingFragment = ts.tryRemoveDirectoryPrefix(fragmentDirectory, packageName, ts.hostGetCanonicalFileName(host)); if (remainingFragment !== undefined) { getCompletionEntriesForDirectoryFragment(remainingFragment, baseDirectory, extensionOptions, host, /*exclude*/ undefined, result); } } } } } function enumerateNodeModulesVisibleToScript(host, scriptPath) { if (!host.readFile || !host.fileExists) return ts.emptyArray; var result = []; for (var _i = 0, _a = ts.findPackageJsons(scriptPath, host); _i < _a.length; _i++) { var packageJson = _a[_i]; var contents = ts.readJson(packageJson, host); // Cast to assert that readFile is defined // Provide completions for all non @types dependencies for (var _b = 0, nodeModulesDependencyKeys_1 = nodeModulesDependencyKeys; _b < nodeModulesDependencyKeys_1.length; _b++) { var key = nodeModulesDependencyKeys_1[_b]; var dependencies = contents[key]; if (!dependencies) continue; for (var dep in dependencies) { if (dependencies.hasOwnProperty(dep) && !ts.startsWith(dep, "@types/")) { result.push(dep); } } } } return result; } // Replace everything after the last directory separator that appears function getDirectoryFragmentTextSpan(text, textStart) { var index = Math.max(text.lastIndexOf(ts.directorySeparator), text.lastIndexOf(ts.altDirectorySeparator)); var offset = index !== -1 ? index + 1 : 0; // If the range is an identifier, span is unnecessary. var length = text.length - offset; return length === 0 || ts.isIdentifierText(text.substr(offset, length), 99 /* ScriptTarget.ESNext */) ? undefined : ts.createTextSpan(textStart + offset, length); } // Returns true if the path is explicitly relative to the script (i.e. relative to . or ..) function isPathRelativeToScript(path) { if (path && path.length >= 2 && path.charCodeAt(0) === 46 /* CharacterCodes.dot */) { var slashIndex = path.length >= 3 && path.charCodeAt(1) === 46 /* CharacterCodes.dot */ ? 2 : 1; var slashCharCode = path.charCodeAt(slashIndex); return slashCharCode === 47 /* CharacterCodes.slash */ || slashCharCode === 92 /* CharacterCodes.backslash */; } return false; } /** * Matches a triple slash reference directive with an incomplete string literal for its path. Used * to determine if the caret is currently within the string literal and capture the literal fragment * for completions. * For example, this matches * * /// 0; }, resolvedBeyondLimit: function () { return resolvedCount > Completions.moduleSpecifierResolutionLimit; }, }); var hitRateMessage = cacheAttemptCount ? " (".concat((resolvedFromCacheCount / cacheAttemptCount * 100).toFixed(1), "% hit rate)") : ""; (_a = host.log) === null || _a === void 0 ? void 0 : _a.call(host, "".concat(logPrefix, ": resolved ").concat(resolvedCount, " module specifiers, plus ").concat(ambientCount, " ambient and ").concat(resolvedFromCacheCount, " from cache").concat(hitRateMessage)); (_b = host.log) === null || _b === void 0 ? void 0 : _b.call(host, "".concat(logPrefix, ": response is ").concat(skippedAny ? "incomplete" : "complete")); (_c = host.log) === null || _c === void 0 ? void 0 : _c.call(host, "".concat(logPrefix, ": ").concat(ts.timestamp() - start)); return result; function tryResolve(exportInfo, symbolName, isFromAmbientModule) { if (isFromAmbientModule) { var result_1 = resolver.getModuleSpecifierForBestExportInfo(exportInfo, symbolName, position, isValidTypeOnlyUseSite); if (result_1) { ambientCount++; } return result_1 || "failed"; } var shouldResolveModuleSpecifier = needsFullResolution || preferences.allowIncompleteCompletions && resolvedCount < Completions.moduleSpecifierResolutionLimit; var shouldGetModuleSpecifierFromCache = !shouldResolveModuleSpecifier && preferences.allowIncompleteCompletions && cacheAttemptCount < Completions.moduleSpecifierResolutionCacheAttemptLimit; var result = (shouldResolveModuleSpecifier || shouldGetModuleSpecifierFromCache) ? resolver.getModuleSpecifierForBestExportInfo(exportInfo, symbolName, position, isValidTypeOnlyUseSite, shouldGetModuleSpecifierFromCache) : undefined; if (!shouldResolveModuleSpecifier && !shouldGetModuleSpecifierFromCache || shouldGetModuleSpecifierFromCache && !result) { skippedAny = true; } resolvedCount += (result === null || result === void 0 ? void 0 : result.computedWithoutCacheCount) || 0; resolvedFromCacheCount += exportInfo.length - ((result === null || result === void 0 ? void 0 : result.computedWithoutCacheCount) || 0); if (shouldGetModuleSpecifierFromCache) { cacheAttemptCount++; } return result || (needsFullResolution ? "failed" : "skipped"); } } function getCompletionsAtPosition(host, program, log, sourceFile, position, preferences, triggerCharacter, completionKind, cancellationToken, formatContext) { var _a; var previousToken = getRelevantTokens(position, sourceFile).previousToken; if (triggerCharacter && !ts.isInString(sourceFile, position, previousToken) && !isValidTrigger(sourceFile, triggerCharacter, previousToken, position)) { return undefined; } if (triggerCharacter === " ") { // `isValidTrigger` ensures we are at `import |` if (preferences.includeCompletionsForImportStatements && preferences.includeCompletionsWithInsertText) { return { isGlobalCompletion: true, isMemberCompletion: false, isNewIdentifierLocation: true, isIncomplete: true, entries: [] }; } return undefined; } // If the request is a continuation of an earlier `isIncomplete` response, // we can continue it from the cached previous response. var compilerOptions = program.getCompilerOptions(); var incompleteCompletionsCache = preferences.allowIncompleteCompletions ? (_a = host.getIncompleteCompletionsCache) === null || _a === void 0 ? void 0 : _a.call(host) : undefined; if (incompleteCompletionsCache && completionKind === 3 /* CompletionTriggerKind.TriggerForIncompleteCompletions */ && previousToken && ts.isIdentifier(previousToken)) { var incompleteContinuation = continuePreviousIncompleteResponse(incompleteCompletionsCache, sourceFile, previousToken, program, host, preferences, cancellationToken); if (incompleteContinuation) { return incompleteContinuation; } } else { incompleteCompletionsCache === null || incompleteCompletionsCache === void 0 ? void 0 : incompleteCompletionsCache.clear(); } var stringCompletions = Completions.StringCompletions.getStringLiteralCompletions(sourceFile, position, previousToken, compilerOptions, host, program, log, preferences); if (stringCompletions) { return stringCompletions; } if (previousToken && ts.isBreakOrContinueStatement(previousToken.parent) && (previousToken.kind === 81 /* SyntaxKind.BreakKeyword */ || previousToken.kind === 86 /* SyntaxKind.ContinueKeyword */ || previousToken.kind === 79 /* SyntaxKind.Identifier */)) { return getLabelCompletionAtPosition(previousToken.parent); } var completionData = getCompletionData(program, log, sourceFile, compilerOptions, position, preferences, /*detailsEntryId*/ undefined, host, formatContext, cancellationToken); if (!completionData) { return undefined; } switch (completionData.kind) { case 0 /* CompletionDataKind.Data */: var response = completionInfoFromData(sourceFile, host, program, compilerOptions, log, completionData, preferences, formatContext, position); if (response === null || response === void 0 ? void 0 : response.isIncomplete) { incompleteCompletionsCache === null || incompleteCompletionsCache === void 0 ? void 0 : incompleteCompletionsCache.set(response); } return response; case 1 /* CompletionDataKind.JsDocTagName */: // If the current position is a jsDoc tag name, only tag names should be provided for completion return jsdocCompletionInfo(ts.JsDoc.getJSDocTagNameCompletions()); case 2 /* CompletionDataKind.JsDocTag */: // If the current position is a jsDoc tag, only tags should be provided for completion return jsdocCompletionInfo(ts.JsDoc.getJSDocTagCompletions()); case 3 /* CompletionDataKind.JsDocParameterName */: return jsdocCompletionInfo(ts.JsDoc.getJSDocParameterNameCompletions(completionData.tag)); case 4 /* CompletionDataKind.Keywords */: return specificKeywordCompletionInfo(completionData.keywordCompletions, completionData.isNewIdentifierLocation); default: return ts.Debug.assertNever(completionData); } } Completions.getCompletionsAtPosition = getCompletionsAtPosition; // Editors will use the `sortText` and then fall back to `name` for sorting, but leave ties in response order. // So, it's important that we sort those ties in the order we want them displayed if it matters. We don't // strictly need to sort by name or SortText here since clients are going to do it anyway, but we have to // do the work of comparing them so we can sort those ties appropriately; plus, it makes the order returned // by the language service consistent with what TS Server does and what editors typically do. This also makes // completions tests make more sense. We used to sort only alphabetically and only in the server layer, but // this made tests really weird, since most fourslash tests don't use the server. function compareCompletionEntries(entryInArray, entryToInsert) { var _a, _b; var result = ts.compareStringsCaseSensitiveUI(entryInArray.sortText, entryToInsert.sortText); if (result === 0 /* Comparison.EqualTo */) { result = ts.compareStringsCaseSensitiveUI(entryInArray.name, entryToInsert.name); } if (result === 0 /* Comparison.EqualTo */ && ((_a = entryInArray.data) === null || _a === void 0 ? void 0 : _a.moduleSpecifier) && ((_b = entryToInsert.data) === null || _b === void 0 ? void 0 : _b.moduleSpecifier)) { // Sort same-named auto-imports by module specifier result = ts.compareNumberOfDirectorySeparators(entryInArray.data.moduleSpecifier, entryToInsert.data.moduleSpecifier); } if (result === 0 /* Comparison.EqualTo */) { // Fall back to symbol order - if we return `EqualTo`, `insertSorted` will put later symbols first. return -1 /* Comparison.LessThan */; } return result; } function completionEntryDataIsResolved(data) { return !!(data === null || data === void 0 ? void 0 : data.moduleSpecifier); } function continuePreviousIncompleteResponse(cache, file, location, program, host, preferences, cancellationToken) { var previousResponse = cache.get(); if (!previousResponse) return undefined; var lowerCaseTokenText = location.text.toLowerCase(); var exportMap = ts.getExportInfoMap(file, host, program, cancellationToken); var newEntries = resolvingModuleSpecifiers("continuePreviousIncompleteResponse", host, ts.codefix.createImportSpecifierResolver(file, program, host, preferences), program, location.getStart(), preferences, /*isForImportStatementCompletion*/ false, ts.isValidTypeOnlyAliasUseSite(location), function (context) { var entries = ts.mapDefined(previousResponse.entries, function (entry) { var _a; if (!entry.hasAction || !entry.source || !entry.data || completionEntryDataIsResolved(entry.data)) { // Not an auto import or already resolved; keep as is return entry; } if (!charactersFuzzyMatchInString(entry.name, lowerCaseTokenText)) { // No longer matches typed characters; filter out return undefined; } var origin = ts.Debug.checkDefined(getAutoImportSymbolFromCompletionEntryData(entry.name, entry.data, program, host)).origin; var info = exportMap.get(file.path, entry.data.exportMapKey); var result = info && context.tryResolve(info, entry.name, !ts.isExternalModuleNameRelative(ts.stripQuotes(origin.moduleSymbol.name))); if (result === "skipped") return entry; if (!result || result === "failed") { (_a = host.log) === null || _a === void 0 ? void 0 : _a.call(host, "Unexpected failure resolving auto import for '".concat(entry.name, "' from '").concat(entry.source, "'")); return undefined; } var newOrigin = __assign(__assign({}, origin), { kind: 32 /* SymbolOriginInfoKind.ResolvedExport */, moduleSpecifier: result.moduleSpecifier }); // Mutating for performance... feels sketchy but nobody else uses the cache, // so why bother allocating a bunch of new objects? entry.data = originToCompletionEntryData(newOrigin); entry.source = getSourceFromOrigin(newOrigin); entry.sourceDisplay = [ts.textPart(newOrigin.moduleSpecifier)]; return entry; }); if (!context.skippedAny()) { previousResponse.isIncomplete = undefined; } return entries; }); previousResponse.entries = newEntries; previousResponse.flags = (previousResponse.flags || 0) | 4 /* CompletionInfoFlags.IsContinuation */; return previousResponse; } function jsdocCompletionInfo(entries) { return { isGlobalCompletion: false, isMemberCompletion: false, isNewIdentifierLocation: false, entries: entries }; } function keywordToCompletionEntry(keyword) { return { name: ts.tokenToString(keyword), kind: "keyword" /* ScriptElementKind.keyword */, kindModifiers: "" /* ScriptElementKindModifier.none */, sortText: Completions.SortText.GlobalsOrKeywords, }; } function specificKeywordCompletionInfo(entries, isNewIdentifierLocation) { return { isGlobalCompletion: false, isMemberCompletion: false, isNewIdentifierLocation: isNewIdentifierLocation, entries: entries.slice(), }; } function keywordCompletionData(keywordFilters, filterOutTsOnlyKeywords, isNewIdentifierLocation) { return { kind: 4 /* CompletionDataKind.Keywords */, keywordCompletions: getKeywordCompletions(keywordFilters, filterOutTsOnlyKeywords), isNewIdentifierLocation: isNewIdentifierLocation, }; } function keywordFiltersFromSyntaxKind(keywordCompletion) { switch (keywordCompletion) { case 152 /* SyntaxKind.TypeKeyword */: return 8 /* KeywordCompletionFilters.TypeKeyword */; default: ts.Debug.fail("Unknown mapping from SyntaxKind to KeywordCompletionFilters"); } } function getOptionalReplacementSpan(location) { // StringLiteralLike locations are handled separately in stringCompletions.ts return (location === null || location === void 0 ? void 0 : location.kind) === 79 /* SyntaxKind.Identifier */ ? ts.createTextSpanFromNode(location) : undefined; } function completionInfoFromData(sourceFile, host, program, compilerOptions, log, completionData, preferences, formatContext, position) { var symbols = completionData.symbols, contextToken = completionData.contextToken, completionKind = completionData.completionKind, isInSnippetScope = completionData.isInSnippetScope, isNewIdentifierLocation = completionData.isNewIdentifierLocation, location = completionData.location, propertyAccessToConvert = completionData.propertyAccessToConvert, keywordFilters = completionData.keywordFilters, literals = completionData.literals, symbolToOriginInfoMap = completionData.symbolToOriginInfoMap, recommendedCompletion = completionData.recommendedCompletion, isJsxInitializer = completionData.isJsxInitializer, isTypeOnlyLocation = completionData.isTypeOnlyLocation, isJsxIdentifierExpected = completionData.isJsxIdentifierExpected, isRightOfOpenTag = completionData.isRightOfOpenTag, importCompletionNode = completionData.importCompletionNode, insideJsDocTagTypeExpression = completionData.insideJsDocTagTypeExpression, symbolToSortTextMap = completionData.symbolToSortTextMap, hasUnresolvedAutoImports = completionData.hasUnresolvedAutoImports; // Verify if the file is JSX language variant if (ts.getLanguageVariant(sourceFile.scriptKind) === 1 /* LanguageVariant.JSX */) { var completionInfo = getJsxClosingTagCompletion(location, sourceFile); if (completionInfo) { return completionInfo; } } var entries = ts.createSortedArray(); if (isUncheckedFile(sourceFile, compilerOptions)) { var uniqueNames = getCompletionEntriesFromSymbols(symbols, entries, /*replacementToken*/ undefined, contextToken, location, sourceFile, host, program, ts.getEmitScriptTarget(compilerOptions), log, completionKind, preferences, compilerOptions, formatContext, isTypeOnlyLocation, propertyAccessToConvert, isJsxIdentifierExpected, isJsxInitializer, importCompletionNode, recommendedCompletion, symbolToOriginInfoMap, symbolToSortTextMap, isJsxIdentifierExpected, isRightOfOpenTag); getJSCompletionEntries(sourceFile, location.pos, uniqueNames, ts.getEmitScriptTarget(compilerOptions), entries); } else { if (!isNewIdentifierLocation && (!symbols || symbols.length === 0) && keywordFilters === 0 /* KeywordCompletionFilters.None */) { return undefined; } getCompletionEntriesFromSymbols(symbols, entries, /*replacementToken*/ undefined, contextToken, location, sourceFile, host, program, ts.getEmitScriptTarget(compilerOptions), log, completionKind, preferences, compilerOptions, formatContext, isTypeOnlyLocation, propertyAccessToConvert, isJsxIdentifierExpected, isJsxInitializer, importCompletionNode, recommendedCompletion, symbolToOriginInfoMap, symbolToSortTextMap, isJsxIdentifierExpected, isRightOfOpenTag); } if (keywordFilters !== 0 /* KeywordCompletionFilters.None */) { var entryNames_1 = new ts.Set(entries.map(function (e) { return e.name; })); for (var _i = 0, _a = getKeywordCompletions(keywordFilters, !insideJsDocTagTypeExpression && ts.isSourceFileJS(sourceFile)); _i < _a.length; _i++) { var keywordEntry = _a[_i]; if (isTypeOnlyLocation && ts.isTypeKeyword(ts.stringToToken(keywordEntry.name)) || !entryNames_1.has(keywordEntry.name)) { ts.insertSorted(entries, keywordEntry, compareCompletionEntries, /*allowDuplicates*/ true); } } } var entryNames = new ts.Set(entries.map(function (e) { return e.name; })); for (var _b = 0, _c = getContextualKeywords(contextToken, position); _b < _c.length; _b++) { var keywordEntry = _c[_b]; if (!entryNames.has(keywordEntry.name)) { ts.insertSorted(entries, keywordEntry, compareCompletionEntries, /*allowDuplicates*/ true); } } for (var _d = 0, literals_1 = literals; _d < literals_1.length; _d++) { var literal = literals_1[_d]; ts.insertSorted(entries, createCompletionEntryForLiteral(sourceFile, preferences, literal), compareCompletionEntries, /*allowDuplicates*/ true); } return { flags: completionData.flags, isGlobalCompletion: isInSnippetScope, isIncomplete: preferences.allowIncompleteCompletions && hasUnresolvedAutoImports ? true : undefined, isMemberCompletion: isMemberCompletionKind(completionKind), isNewIdentifierLocation: isNewIdentifierLocation, optionalReplacementSpan: getOptionalReplacementSpan(location), entries: entries, }; } function isUncheckedFile(sourceFile, compilerOptions) { return ts.isSourceFileJS(sourceFile) && !ts.isCheckJsEnabledForFile(sourceFile, compilerOptions); } function isMemberCompletionKind(kind) { switch (kind) { case 0 /* CompletionKind.ObjectPropertyDeclaration */: case 3 /* CompletionKind.MemberLike */: case 2 /* CompletionKind.PropertyAccess */: return true; default: return false; } } function getJsxClosingTagCompletion(location, sourceFile) { // We wanna walk up the tree till we find a JSX closing element var jsxClosingElement = ts.findAncestor(location, function (node) { switch (node.kind) { case 281 /* SyntaxKind.JsxClosingElement */: return true; case 43 /* SyntaxKind.SlashToken */: case 31 /* SyntaxKind.GreaterThanToken */: case 79 /* SyntaxKind.Identifier */: case 206 /* SyntaxKind.PropertyAccessExpression */: return false; default: return "quit"; } }); if (jsxClosingElement) { // In the TypeScript JSX element, if such element is not defined. When users query for completion at closing tag, // instead of simply giving unknown value, the completion will return the tag-name of an associated opening-element. // For example: // var x =
" with type any // And at `
` (with a closing `>`), the completion list will contain "div". // And at property access expressions ` ` the completion will // return full closing tag with an optional replacement span // For example: // var x = // var y = // the completion list at "1" and "2" will contain "MainComponent.Child" with a replacement span of closing tag name var hasClosingAngleBracket = !!ts.findChildOfKind(jsxClosingElement, 31 /* SyntaxKind.GreaterThanToken */, sourceFile); var tagName = jsxClosingElement.parent.openingElement.tagName; var closingTag = tagName.getText(sourceFile); var fullClosingTag = closingTag + (hasClosingAngleBracket ? "" : ">"); var replacementSpan = ts.createTextSpanFromNode(jsxClosingElement.tagName); var entry = { name: fullClosingTag, kind: "class" /* ScriptElementKind.classElement */, kindModifiers: undefined, sortText: Completions.SortText.LocationPriority, }; return { isGlobalCompletion: false, isMemberCompletion: true, isNewIdentifierLocation: false, optionalReplacementSpan: replacementSpan, entries: [entry] }; } return; } function getJSCompletionEntries(sourceFile, position, uniqueNames, target, entries) { ts.getNameTable(sourceFile).forEach(function (pos, name) { // Skip identifiers produced only from the current location if (pos === position) { return; } var realName = ts.unescapeLeadingUnderscores(name); if (!uniqueNames.has(realName) && ts.isIdentifierText(realName, target)) { uniqueNames.add(realName); ts.insertSorted(entries, { name: realName, kind: "warning" /* ScriptElementKind.warning */, kindModifiers: "", sortText: Completions.SortText.JavascriptIdentifiers, isFromUncheckedFile: true }, compareCompletionEntries); } }); } function completionNameForLiteral(sourceFile, preferences, literal) { return typeof literal === "object" ? ts.pseudoBigIntToString(literal) + "n" : ts.isString(literal) ? ts.quote(sourceFile, preferences, literal) : JSON.stringify(literal); } function createCompletionEntryForLiteral(sourceFile, preferences, literal) { return { name: completionNameForLiteral(sourceFile, preferences, literal), kind: "string" /* ScriptElementKind.string */, kindModifiers: "" /* ScriptElementKindModifier.none */, sortText: Completions.SortText.LocationPriority }; } function createCompletionEntry(symbol, sortText, replacementToken, contextToken, location, sourceFile, host, program, name, needsConvertPropertyAccess, origin, recommendedCompletion, propertyAccessToConvert, isJsxInitializer, importCompletionNode, useSemicolons, options, preferences, completionKind, formatContext, isJsxIdentifierExpected, isRightOfOpenTag) { var _a, _b; var insertText; var replacementSpan = ts.getReplacementSpanForContextToken(replacementToken); var data; var isSnippet; var source = getSourceFromOrigin(origin); var sourceDisplay; var hasAction; var labelDetails; var typeChecker = program.getTypeChecker(); var insertQuestionDot = origin && originIsNullableMember(origin); var useBraces = origin && originIsSymbolMember(origin) || needsConvertPropertyAccess; if (origin && originIsThisType(origin)) { insertText = needsConvertPropertyAccess ? "this".concat(insertQuestionDot ? "?." : "", "[").concat(quotePropertyName(sourceFile, preferences, name), "]") : "this".concat(insertQuestionDot ? "?." : ".").concat(name); } // We should only have needsConvertPropertyAccess if there's a property access to convert. But see #21790. // Somehow there was a global with a non-identifier name. Hopefully someone will complain about getting a "foo bar" global completion and provide a repro. else if ((useBraces || insertQuestionDot) && propertyAccessToConvert) { insertText = useBraces ? needsConvertPropertyAccess ? "[".concat(quotePropertyName(sourceFile, preferences, name), "]") : "[".concat(name, "]") : name; if (insertQuestionDot || propertyAccessToConvert.questionDotToken) { insertText = "?.".concat(insertText); } var dot = ts.findChildOfKind(propertyAccessToConvert, 24 /* SyntaxKind.DotToken */, sourceFile) || ts.findChildOfKind(propertyAccessToConvert, 28 /* SyntaxKind.QuestionDotToken */, sourceFile); if (!dot) { return undefined; } // If the text after the '.' starts with this name, write over it. Else, add new text. var end = ts.startsWith(name, propertyAccessToConvert.name.text) ? propertyAccessToConvert.name.end : dot.end; replacementSpan = ts.createTextSpanFromBounds(dot.getStart(sourceFile), end); } if (isJsxInitializer) { if (insertText === undefined) insertText = name; insertText = "{".concat(insertText, "}"); if (typeof isJsxInitializer !== "boolean") { replacementSpan = ts.createTextSpanFromNode(isJsxInitializer, sourceFile); } } if (origin && originIsPromise(origin) && propertyAccessToConvert) { if (insertText === undefined) insertText = name; var precedingToken = ts.findPrecedingToken(propertyAccessToConvert.pos, sourceFile); var awaitText = ""; if (precedingToken && ts.positionIsASICandidate(precedingToken.end, precedingToken.parent, sourceFile)) { awaitText = ";"; } awaitText += "(await ".concat(propertyAccessToConvert.expression.getText(), ")"); insertText = needsConvertPropertyAccess ? "".concat(awaitText).concat(insertText) : "".concat(awaitText).concat(insertQuestionDot ? "?." : ".").concat(insertText); replacementSpan = ts.createTextSpanFromBounds(propertyAccessToConvert.getStart(sourceFile), propertyAccessToConvert.end); } if (originIsResolvedExport(origin)) { sourceDisplay = [ts.textPart(origin.moduleSpecifier)]; if (importCompletionNode) { (_a = getInsertTextAndReplacementSpanForImportCompletion(name, importCompletionNode, contextToken, origin, useSemicolons, options, preferences), insertText = _a.insertText, replacementSpan = _a.replacementSpan); isSnippet = preferences.includeCompletionsWithSnippetText ? true : undefined; } } if ((origin === null || origin === void 0 ? void 0 : origin.kind) === 64 /* SymbolOriginInfoKind.TypeOnlyAlias */) { hasAction = true; } if (preferences.includeCompletionsWithClassMemberSnippets && preferences.includeCompletionsWithInsertText && completionKind === 3 /* CompletionKind.MemberLike */ && isClassLikeMemberCompletion(symbol, location)) { var importAdder = void 0; (_b = getEntryForMemberCompletion(host, program, options, preferences, name, symbol, location, contextToken, formatContext), insertText = _b.insertText, isSnippet = _b.isSnippet, importAdder = _b.importAdder, replacementSpan = _b.replacementSpan); sortText = Completions.SortText.ClassMemberSnippets; // sortText has to be lower priority than the sortText for keywords. See #47852. if (importAdder === null || importAdder === void 0 ? void 0 : importAdder.hasFixes()) { hasAction = true; source = CompletionSource.ClassMemberSnippet; } } if (origin && originIsObjectLiteralMethod(origin)) { (insertText = origin.insertText, isSnippet = origin.isSnippet, labelDetails = origin.labelDetails); if (!preferences.useLabelDetailsInCompletionEntries) { name = name + labelDetails.detail; labelDetails = undefined; } source = CompletionSource.ObjectLiteralMethodSnippet; sortText = Completions.SortText.SortBelow(sortText); } if (isJsxIdentifierExpected && !isRightOfOpenTag && preferences.includeCompletionsWithSnippetText && preferences.jsxAttributeCompletionStyle && preferences.jsxAttributeCompletionStyle !== "none") { var useBraces_1 = preferences.jsxAttributeCompletionStyle === "braces"; var type = typeChecker.getTypeOfSymbolAtLocation(symbol, location); // If is boolean like or undefined, don't return a snippet we want just to return the completion. if (preferences.jsxAttributeCompletionStyle === "auto" && !(type.flags & 528 /* TypeFlags.BooleanLike */) && !(type.flags & 1048576 /* TypeFlags.Union */ && ts.find(type.types, function (type) { return !!(type.flags & 528 /* TypeFlags.BooleanLike */); }))) { if (type.flags & 402653316 /* TypeFlags.StringLike */ || (type.flags & 1048576 /* TypeFlags.Union */ && ts.every(type.types, function (type) { return !!(type.flags & (402653316 /* TypeFlags.StringLike */ | 32768 /* TypeFlags.Undefined */)); }))) { // If is string like or undefined use quotes insertText = "".concat(ts.escapeSnippetText(name), "=").concat(ts.quote(sourceFile, preferences, "$1")); isSnippet = true; } else { // Use braces for everything else useBraces_1 = true; } } if (useBraces_1) { insertText = "".concat(ts.escapeSnippetText(name), "={$1}"); isSnippet = true; } } if (insertText !== undefined && !preferences.includeCompletionsWithInsertText) { return undefined; } if (originIsExport(origin) || originIsResolvedExport(origin)) { data = originToCompletionEntryData(origin); hasAction = !importCompletionNode; } // TODO(drosen): Right now we just permit *all* semantic meanings when calling // 'getSymbolKind' which is permissible given that it is backwards compatible; but // really we should consider passing the meaning for the node so that we don't report // that a suggestion for a value is an interface. We COULD also just do what // 'getSymbolModifiers' does, which is to use the first declaration. // Use a 'sortText' of 0' so that all symbol completion entries come before any other // entries (like JavaScript identifier entries). return { name: name, kind: ts.SymbolDisplay.getSymbolKind(typeChecker, symbol, location), kindModifiers: ts.SymbolDisplay.getSymbolModifiers(typeChecker, symbol), sortText: sortText, source: source, hasAction: hasAction ? true : undefined, isRecommended: isRecommendedCompletionMatch(symbol, recommendedCompletion, typeChecker) || undefined, insertText: insertText, replacementSpan: replacementSpan, sourceDisplay: sourceDisplay, labelDetails: labelDetails, isSnippet: isSnippet, isPackageJsonImport: originIsPackageJsonImport(origin) || undefined, isImportStatementCompletion: !!importCompletionNode || undefined, data: data, }; } function isClassLikeMemberCompletion(symbol, location) { // TODO: support JS files. if (ts.isInJSFile(location)) { return false; } // Completion symbol must be for a class member. var memberFlags = 106500 /* SymbolFlags.ClassMember */ & 900095 /* SymbolFlags.EnumMemberExcludes */; /* In `class C { | }` `location` is a class-like declaration. In `class C { m| }` `location` is an identifier, `location.parent` is a class element declaration, and `location.parent.parent` is a class-like declaration. In `abstract class C { abstract abstract m| }` `location` is a syntax list (with modifiers as children), and `location.parent` is a class-like declaration. */ return !!(symbol.flags & memberFlags) && (ts.isClassLike(location) || (location.parent && location.parent.parent && ts.isClassElement(location.parent) && location === location.parent.name && ts.isClassLike(location.parent.parent)) || (location.parent && ts.isSyntaxList(location) && ts.isClassLike(location.parent))); } function getEntryForMemberCompletion(host, program, options, preferences, name, symbol, location, contextToken, formatContext) { var classLikeDeclaration = ts.findAncestor(location, ts.isClassLike); if (!classLikeDeclaration) { return { insertText: name }; } var isSnippet; var replacementSpan; var insertText = name; var checker = program.getTypeChecker(); var sourceFile = location.getSourceFile(); var printer = createSnippetPrinter({ removeComments: true, module: options.module, target: options.target, omitTrailingSemicolon: false, newLine: ts.getNewLineKind(ts.getNewLineCharacter(options, ts.maybeBind(host, host.getNewLine))), }); var importAdder = ts.codefix.createImportAdder(sourceFile, program, preferences, host); // Create empty body for possible method implementation. var body; if (preferences.includeCompletionsWithSnippetText) { isSnippet = true; // We are adding a tabstop (i.e. `$0`) in the body of the suggested member, // if it has one, so that the cursor ends up in the body once the completion is inserted. // Note: this assumes we won't have more than one body in the completion nodes, which should be the case. var emptyStmt = ts.factory.createEmptyStatement(); body = ts.factory.createBlock([emptyStmt], /* multiline */ true); ts.setSnippetElement(emptyStmt, { kind: 0 /* SnippetKind.TabStop */, order: 0 }); } else { body = ts.factory.createBlock([], /* multiline */ true); } var modifiers = 0 /* ModifierFlags.None */; // Whether the suggested member should be abstract. // e.g. in `abstract class C { abstract | }`, we should offer abstract method signatures at position `|`. var _a = getPresentModifiers(contextToken), presentModifiers = _a.modifiers, modifiersSpan = _a.span; var isAbstract = !!(presentModifiers & 128 /* ModifierFlags.Abstract */); var completionNodes = []; ts.codefix.addNewNodeForMemberSymbol(symbol, classLikeDeclaration, sourceFile, { program: program, host: host }, preferences, importAdder, // `addNewNodeForMemberSymbol` calls this callback function for each new member node // it adds for the given member symbol. // We store these member nodes in the `completionNodes` array. // Note: there might be: // - No nodes if `addNewNodeForMemberSymbol` cannot figure out a node for the member; // - One node; // - More than one node if the member is overloaded (e.g. a method with overload signatures). function (node) { var requiredModifiers = 0 /* ModifierFlags.None */; if (isAbstract) { requiredModifiers |= 128 /* ModifierFlags.Abstract */; } if (ts.isClassElement(node) && checker.getMemberOverrideModifierStatus(classLikeDeclaration, node) === 1 /* MemberOverrideStatus.NeedsOverride */) { requiredModifiers |= 16384 /* ModifierFlags.Override */; } if (!completionNodes.length) { // Keep track of added missing required modifiers and modifiers already present. // This is needed when we have overloaded signatures, // so this callback will be called for multiple nodes/signatures, // and we need to make sure the modifiers are uniform for all nodes/signatures. modifiers = node.modifierFlagsCache | requiredModifiers | presentModifiers; } node = ts.factory.updateModifiers(node, modifiers); completionNodes.push(node); }, body, 2 /* codefix.PreserveOptionalFlags.Property */, isAbstract); if (completionNodes.length) { var format = 1 /* ListFormat.MultiLine */ | 131072 /* ListFormat.NoTrailingNewLine */; replacementSpan = modifiersSpan; // If we have access to formatting settings, we print the nodes using the emitter, // and then format the printed text. if (formatContext) { insertText = printer.printAndFormatSnippetList(format, ts.factory.createNodeArray(completionNodes), sourceFile, formatContext); } else { // Otherwise, just use emitter to print the new nodes. insertText = printer.printSnippetList(format, ts.factory.createNodeArray(completionNodes), sourceFile); } } return { insertText: insertText, isSnippet: isSnippet, importAdder: importAdder, replacementSpan: replacementSpan }; } function getPresentModifiers(contextToken) { if (!contextToken) { return { modifiers: 0 /* ModifierFlags.None */ }; } var modifiers = 0 /* ModifierFlags.None */; var span; var contextMod; /* Cases supported: In `class C { public abstract | }` `contextToken` is ``abstract`` (as an identifier), `contextToken.parent` is property declaration, `location` is class declaration ``class C { ... }``. In `class C { protected override m| }` `contextToken` is ``override`` (as a keyword), `contextToken.parent` is property declaration, `location` is identifier ``m``, `location.parent` is property declaration ``protected override m``, `location.parent.parent` is class declaration ``class C { ... }``. */ if (contextMod = isModifierLike(contextToken)) { modifiers |= ts.modifierToFlag(contextMod); span = ts.createTextSpanFromNode(contextToken); } if (ts.isPropertyDeclaration(contextToken.parent)) { modifiers |= ts.modifiersToFlags(contextToken.parent.modifiers); span = ts.createTextSpanFromNode(contextToken.parent); } return { modifiers: modifiers, span: span }; } function isModifierLike(node) { if (ts.isModifier(node)) { return node.kind; } if (ts.isIdentifier(node) && node.originalKeywordKind && ts.isModifierKind(node.originalKeywordKind)) { return node.originalKeywordKind; } return undefined; } function getEntryForObjectLiteralMethodCompletion(symbol, name, enclosingDeclaration, program, host, options, preferences, formatContext) { var isSnippet = preferences.includeCompletionsWithSnippetText || undefined; var insertText = name; var sourceFile = enclosingDeclaration.getSourceFile(); var method = createObjectLiteralMethod(symbol, enclosingDeclaration, sourceFile, program, host, preferences); if (!method) { return undefined; } var printer = createSnippetPrinter({ removeComments: true, module: options.module, target: options.target, omitTrailingSemicolon: false, newLine: ts.getNewLineKind(ts.getNewLineCharacter(options, ts.maybeBind(host, host.getNewLine))), }); if (formatContext) { insertText = printer.printAndFormatSnippetList(16 /* ListFormat.CommaDelimited */ | 64 /* ListFormat.AllowTrailingComma */, ts.factory.createNodeArray([method], /*hasTrailingComma*/ true), sourceFile, formatContext); } else { insertText = printer.printSnippetList(16 /* ListFormat.CommaDelimited */ | 64 /* ListFormat.AllowTrailingComma */, ts.factory.createNodeArray([method], /*hasTrailingComma*/ true), sourceFile); } var signaturePrinter = ts.createPrinter({ removeComments: true, module: options.module, target: options.target, omitTrailingSemicolon: true, }); // The `labelDetails.detail` will be displayed right beside the method name, // so we drop the name (and modifiers) from the signature. var methodSignature = ts.factory.createMethodSignature( /*modifiers*/ undefined, /*name*/ "", method.questionToken, method.typeParameters, method.parameters, method.type); var labelDetails = { detail: signaturePrinter.printNode(4 /* EmitHint.Unspecified */, methodSignature, sourceFile) }; return { isSnippet: isSnippet, insertText: insertText, labelDetails: labelDetails }; } ; function createObjectLiteralMethod(symbol, enclosingDeclaration, sourceFile, program, host, preferences) { var declarations = symbol.getDeclarations(); if (!(declarations && declarations.length)) { return undefined; } var checker = program.getTypeChecker(); var declaration = declarations[0]; var name = ts.getSynthesizedDeepClone(ts.getNameOfDeclaration(declaration), /*includeTrivia*/ false); var type = checker.getWidenedType(checker.getTypeOfSymbolAtLocation(symbol, enclosingDeclaration)); var quotePreference = ts.getQuotePreference(sourceFile, preferences); var builderFlags = quotePreference === 0 /* QuotePreference.Single */ ? 268435456 /* NodeBuilderFlags.UseSingleQuotesForStringLiteralType */ : undefined; switch (declaration.kind) { case 166 /* SyntaxKind.PropertySignature */: case 167 /* SyntaxKind.PropertyDeclaration */: case 168 /* SyntaxKind.MethodSignature */: case 169 /* SyntaxKind.MethodDeclaration */: { var effectiveType = type.flags & 1048576 /* TypeFlags.Union */ && type.types.length < 10 ? checker.getUnionType(type.types, 2 /* UnionReduction.Subtype */) : type; if (effectiveType.flags & 1048576 /* TypeFlags.Union */) { // Only offer the completion if there's a single function type component. var functionTypes = ts.filter(effectiveType.types, function (type) { return checker.getSignaturesOfType(type, 0 /* SignatureKind.Call */).length > 0; }); if (functionTypes.length === 1) { effectiveType = functionTypes[0]; } else { return undefined; } } var signatures = checker.getSignaturesOfType(effectiveType, 0 /* SignatureKind.Call */); if (signatures.length !== 1) { // We don't support overloads in object literals. return undefined; } var typeNode = checker.typeToTypeNode(effectiveType, enclosingDeclaration, builderFlags, ts.codefix.getNoopSymbolTrackerWithResolver({ program: program, host: host })); if (!typeNode || !ts.isFunctionTypeNode(typeNode)) { return undefined; } var body = void 0; if (preferences.includeCompletionsWithSnippetText) { var emptyStmt = ts.factory.createEmptyStatement(); body = ts.factory.createBlock([emptyStmt], /* multiline */ true); ts.setSnippetElement(emptyStmt, { kind: 0 /* SnippetKind.TabStop */, order: 0 }); } else { body = ts.factory.createBlock([], /* multiline */ true); } var parameters = typeNode.parameters.map(function (typedParam) { return ts.factory.createParameterDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, typedParam.dotDotDotToken, typedParam.name, typedParam.questionToken, /*type*/ undefined, typedParam.initializer); }); return ts.factory.createMethodDeclaration( /*decorators*/ undefined, /*modifiers*/ undefined, /*asteriskToken*/ undefined, name, /*questionToken*/ undefined, /*typeParameters*/ undefined, parameters, /*type*/ undefined, body); } default: return undefined; } } function createSnippetPrinter(printerOptions) { var escapes; var baseWriter = ts.textChanges.createWriter(ts.getNewLineCharacter(printerOptions)); var printer = ts.createPrinter(printerOptions, baseWriter); var writer = __assign(__assign({}, baseWriter), { write: function (s) { return escapingWrite(s, function () { return baseWriter.write(s); }); }, nonEscapingWrite: baseWriter.write, writeLiteral: function (s) { return escapingWrite(s, function () { return baseWriter.writeLiteral(s); }); }, writeStringLiteral: function (s) { return escapingWrite(s, function () { return baseWriter.writeStringLiteral(s); }); }, writeSymbol: function (s, symbol) { return escapingWrite(s, function () { return baseWriter.writeSymbol(s, symbol); }); }, writeParameter: function (s) { return escapingWrite(s, function () { return baseWriter.writeParameter(s); }); }, writeComment: function (s) { return escapingWrite(s, function () { return baseWriter.writeComment(s); }); }, writeProperty: function (s) { return escapingWrite(s, function () { return baseWriter.writeProperty(s); }); } }); return { printSnippetList: printSnippetList, printAndFormatSnippetList: printAndFormatSnippetList, }; // The formatter/scanner will have issues with snippet-escaped text, // so instead of writing the escaped text directly to the writer, // generate a set of changes that can be applied to the unescaped text // to escape it post-formatting. function escapingWrite(s, write) { var escaped = ts.escapeSnippetText(s); if (escaped !== s) { var start = baseWriter.getTextPos(); write(); var end = baseWriter.getTextPos(); escapes = ts.append(escapes || (escapes = []), { newText: escaped, span: { start: start, length: end - start } }); } else { write(); } } /* Snippet-escaping version of `printer.printList`. */ function printSnippetList(format, list, sourceFile) { var unescaped = printUnescapedSnippetList(format, list, sourceFile); return escapes ? ts.textChanges.applyChanges(unescaped, escapes) : unescaped; } function printUnescapedSnippetList(format, list, sourceFile) { escapes = undefined; writer.clear(); printer.writeList(format, list, sourceFile, writer); return writer.getText(); } function printAndFormatSnippetList(format, list, sourceFile, formatContext) { var syntheticFile = { text: printUnescapedSnippetList(format, list, sourceFile), getLineAndCharacterOfPosition: function (pos) { return ts.getLineAndCharacterOfPosition(this, pos); }, }; var formatOptions = ts.getFormatCodeSettingsForWriting(formatContext, sourceFile); var changes = ts.flatMap(list, function (node) { var nodeWithPos = ts.textChanges.assignPositionsToNode(node); return ts.formatting.formatNodeGivenIndentation(nodeWithPos, syntheticFile, sourceFile.languageVariant, /* indentation */ 0, /* delta */ 0, __assign(__assign({}, formatContext), { options: formatOptions })); }); var allChanges = escapes ? ts.stableSort(ts.concatenate(changes, escapes), function (a, b) { return ts.compareTextSpans(a.span, b.span); }) : changes; return ts.textChanges.applyChanges(syntheticFile.text, allChanges); } } function originToCompletionEntryData(origin) { var ambientModuleName = origin.fileName ? undefined : ts.stripQuotes(origin.moduleSymbol.name); var isPackageJsonImport = origin.isFromPackageJson ? true : undefined; if (originIsResolvedExport(origin)) { var resolvedData = { exportName: origin.exportName, moduleSpecifier: origin.moduleSpecifier, ambientModuleName: ambientModuleName, fileName: origin.fileName, isPackageJsonImport: isPackageJsonImport, }; return resolvedData; } var unresolvedData = { exportName: origin.exportName, exportMapKey: origin.exportMapKey, fileName: origin.fileName, ambientModuleName: origin.fileName ? undefined : ts.stripQuotes(origin.moduleSymbol.name), isPackageJsonImport: origin.isFromPackageJson ? true : undefined, }; return unresolvedData; } function completionEntryDataToSymbolOriginInfo(data, completionName, moduleSymbol) { var isDefaultExport = data.exportName === "default" /* InternalSymbolName.Default */; var isFromPackageJson = !!data.isPackageJsonImport; if (completionEntryDataIsResolved(data)) { var resolvedOrigin = { kind: 32 /* SymbolOriginInfoKind.ResolvedExport */, exportName: data.exportName, moduleSpecifier: data.moduleSpecifier, symbolName: completionName, fileName: data.fileName, moduleSymbol: moduleSymbol, isDefaultExport: isDefaultExport, isFromPackageJson: isFromPackageJson, }; return resolvedOrigin; } var unresolvedOrigin = { kind: 4 /* SymbolOriginInfoKind.Export */, exportName: data.exportName, exportMapKey: data.exportMapKey, symbolName: completionName, fileName: data.fileName, moduleSymbol: moduleSymbol, isDefaultExport: isDefaultExport, isFromPackageJson: isFromPackageJson, }; return unresolvedOrigin; } function getInsertTextAndReplacementSpanForImportCompletion(name, importCompletionNode, contextToken, origin, useSemicolons, options, preferences) { var _a, _b, _c; var sourceFile = importCompletionNode.getSourceFile(); var replacementSpan = ts.createTextSpanFromNode(ts.findAncestor(importCompletionNode, ts.or(ts.isImportDeclaration, ts.isImportEqualsDeclaration)) || importCompletionNode, sourceFile); var quotedModuleSpecifier = ts.quote(sourceFile, preferences, origin.moduleSpecifier); var exportKind = origin.isDefaultExport ? 1 /* ExportKind.Default */ : origin.exportName === "export=" /* InternalSymbolName.ExportEquals */ ? 2 /* ExportKind.ExportEquals */ : 0 /* ExportKind.Named */; var tabStop = preferences.includeCompletionsWithSnippetText ? "$1" : ""; var importKind = ts.codefix.getImportKind(sourceFile, exportKind, options, /*forceImportKeyword*/ true); var isTopLevelTypeOnly = ((_b = (_a = ts.tryCast(importCompletionNode, ts.isImportDeclaration)) === null || _a === void 0 ? void 0 : _a.importClause) === null || _b === void 0 ? void 0 : _b.isTypeOnly) || ((_c = ts.tryCast(importCompletionNode, ts.isImportEqualsDeclaration)) === null || _c === void 0 ? void 0 : _c.isTypeOnly); var isImportSpecifierTypeOnly = couldBeTypeOnlyImportSpecifier(importCompletionNode, contextToken); var topLevelTypeOnlyText = isTopLevelTypeOnly ? " ".concat(ts.tokenToString(152 /* SyntaxKind.TypeKeyword */), " ") : " "; var importSpecifierTypeOnlyText = isImportSpecifierTypeOnly ? "".concat(ts.tokenToString(152 /* SyntaxKind.TypeKeyword */), " ") : ""; var suffix = useSemicolons ? ";" : ""; switch (importKind) { case 3 /* ImportKind.CommonJS */: return { replacementSpan: replacementSpan, insertText: "import".concat(topLevelTypeOnlyText).concat(ts.escapeSnippetText(name)).concat(tabStop, " = require(").concat(quotedModuleSpecifier, ")").concat(suffix) }; case 1 /* ImportKind.Default */: return { replacementSpan: replacementSpan, insertText: "import".concat(topLevelTypeOnlyText).concat(ts.escapeSnippetText(name)).concat(tabStop, " from ").concat(quotedModuleSpecifier).concat(suffix) }; case 2 /* ImportKind.Namespace */: return { replacementSpan: replacementSpan, insertText: "import".concat(topLevelTypeOnlyText, "* as ").concat(ts.escapeSnippetText(name), " from ").concat(quotedModuleSpecifier).concat(suffix) }; case 0 /* ImportKind.Named */: return { replacementSpan: replacementSpan, insertText: "import".concat(topLevelTypeOnlyText, "{ ").concat(importSpecifierTypeOnlyText).concat(ts.escapeSnippetText(name)).concat(tabStop, " } from ").concat(quotedModuleSpecifier).concat(suffix) }; } } function quotePropertyName(sourceFile, preferences, name) { if (/^\d+$/.test(name)) { return name; } return ts.quote(sourceFile, preferences, name); } function isRecommendedCompletionMatch(localSymbol, recommendedCompletion, checker) { return localSymbol === recommendedCompletion || !!(localSymbol.flags & 1048576 /* SymbolFlags.ExportValue */) && checker.getExportSymbolOfSymbol(localSymbol) === recommendedCompletion; } function getSourceFromOrigin(origin) { if (originIsExport(origin)) { return ts.stripQuotes(origin.moduleSymbol.name); } if (originIsResolvedExport(origin)) { return origin.moduleSpecifier; } if ((origin === null || origin === void 0 ? void 0 : origin.kind) === 1 /* SymbolOriginInfoKind.ThisType */) { return CompletionSource.ThisProperty; } if ((origin === null || origin === void 0 ? void 0 : origin.kind) === 64 /* SymbolOriginInfoKind.TypeOnlyAlias */) { return CompletionSource.TypeOnlyAlias; } } function getCompletionEntriesFromSymbols(symbols, entries, replacementToken, contextToken, location, sourceFile, host, program, target, log, kind, preferences, compilerOptions, formatContext, isTypeOnlyLocation, propertyAccessToConvert, jsxIdentifierExpected, isJsxInitializer, importCompletionNode, recommendedCompletion, symbolToOriginInfoMap, symbolToSortTextMap, isJsxIdentifierExpected, isRightOfOpenTag) { var _a; var start = ts.timestamp(); var variableDeclaration = getVariableDeclaration(location); var useSemicolons = ts.probablyUsesSemicolons(sourceFile); var typeChecker = program.getTypeChecker(); // Tracks unique names. // Value is set to false for global variables or completions from external module exports, because we can have multiple of those; // true otherwise. Based on the order we add things we will always see locals first, then globals, then module exports. // So adding a completion for a local will prevent us from adding completions for external module exports sharing the same name. var uniques = new ts.Map(); for (var i = 0; i < symbols.length; i++) { var symbol = symbols[i]; var origin = symbolToOriginInfoMap === null || symbolToOriginInfoMap === void 0 ? void 0 : symbolToOriginInfoMap[i]; var info = getCompletionEntryDisplayNameForSymbol(symbol, target, origin, kind, !!jsxIdentifierExpected); if (!info || (uniques.get(info.name) && (!origin || !originIsObjectLiteralMethod(origin))) || kind === 1 /* CompletionKind.Global */ && symbolToSortTextMap && !shouldIncludeSymbol(symbol, symbolToSortTextMap)) { continue; } var name = info.name, needsConvertPropertyAccess = info.needsConvertPropertyAccess; var originalSortText = (_a = symbolToSortTextMap === null || symbolToSortTextMap === void 0 ? void 0 : symbolToSortTextMap[ts.getSymbolId(symbol)]) !== null && _a !== void 0 ? _a : Completions.SortText.LocationPriority; var sortText = (isDeprecated(symbol, typeChecker) ? Completions.SortText.Deprecated(originalSortText) : originalSortText); var entry = createCompletionEntry(symbol, sortText, replacementToken, contextToken, location, sourceFile, host, program, name, needsConvertPropertyAccess, origin, recommendedCompletion, propertyAccessToConvert, isJsxInitializer, importCompletionNode, useSemicolons, compilerOptions, preferences, kind, formatContext, isJsxIdentifierExpected, isRightOfOpenTag); if (!entry) { continue; } /** True for locals; false for globals, module exports from other files, `this.` completions. */ var shouldShadowLaterSymbols = (!origin || originIsTypeOnlyAlias(origin)) && !(symbol.parent === undefined && !ts.some(symbol.declarations, function (d) { return d.getSourceFile() === location.getSourceFile(); })); uniques.set(name, shouldShadowLaterSymbols); ts.insertSorted(entries, entry, compareCompletionEntries, /*allowDuplicates*/ true); } log("getCompletionsAtPosition: getCompletionEntriesFromSymbols: " + (ts.timestamp() - start)); // Prevent consumers of this map from having to worry about // the boolean value. Externally, it should be seen as the // set of all names. return { has: function (name) { return uniques.has(name); }, add: function (name) { return uniques.set(name, true); }, }; function shouldIncludeSymbol(symbol, symbolToSortTextMap) { var allFlags = symbol.flags; if (!ts.isSourceFile(location)) { // export = /**/ here we want to get all meanings, so any symbol is ok if (ts.isExportAssignment(location.parent)) { return true; } // Filter out variables from their own initializers // `const a = /* no 'a' here */` if (variableDeclaration && symbol.valueDeclaration === variableDeclaration) { return false; } // External modules can have global export declarations that will be // available as global keywords in all scopes. But if the external module // already has an explicit export and user only wants to user explicit // module imports then the global keywords will be filtered out so auto // import suggestions will win in the completion var symbolOrigin = ts.skipAlias(symbol, typeChecker); // We only want to filter out the global keywords // Auto Imports are not available for scripts so this conditional is always false if (!!sourceFile.externalModuleIndicator && !compilerOptions.allowUmdGlobalAccess && symbolToSortTextMap[ts.getSymbolId(symbol)] === Completions.SortText.GlobalsOrKeywords && (symbolToSortTextMap[ts.getSymbolId(symbolOrigin)] === Completions.SortText.AutoImportSuggestions || symbolToSortTextMap[ts.getSymbolId(symbolOrigin)] === Completions.SortText.LocationPriority)) { return false; } allFlags |= ts.getCombinedLocalAndExportSymbolFlags(symbolOrigin); // import m = /**/ <-- It can only access namespace (if typing import = x. this would get member symbols and not namespace) if (ts.isInRightSideOfInternalImportEqualsDeclaration(location)) { return !!(allFlags & 1920 /* SymbolFlags.Namespace */); } if (isTypeOnlyLocation) { // It's a type, but you can reach it by namespace.type as well return symbolCanBeReferencedAtTypeLocation(symbol, typeChecker); } } // expressions are value space (which includes the value namespaces) return !!(allFlags & 111551 /* SymbolFlags.Value */); } } Completions.getCompletionEntriesFromSymbols = getCompletionEntriesFromSymbols; function getLabelCompletionAtPosition(node) { var entries = getLabelStatementCompletions(node); if (entries.length) { return { isGlobalCompletion: false, isMemberCompletion: false, isNewIdentifierLocation: false, entries: entries }; } } function getLabelStatementCompletions(node) { var entries = []; var uniques = new ts.Map(); var current = node; while (current) { if (ts.isFunctionLike(current)) { break; } if (ts.isLabeledStatement(current)) { var name = current.label.text; if (!uniques.has(name)) { uniques.set(name, true); entries.push({ name: name, kindModifiers: "" /* ScriptElementKindModifier.none */, kind: "label" /* ScriptElementKind.label */, sortText: Completions.SortText.LocationPriority }); } } current = current.parent; } return entries; } function getSymbolCompletionFromEntryId(program, log, sourceFile, position, entryId, host, preferences) { if (entryId.data) { var autoImport = getAutoImportSymbolFromCompletionEntryData(entryId.name, entryId.data, program, host); if (autoImport) { var _a = getRelevantTokens(position, sourceFile), contextToken_1 = _a.contextToken, previousToken_1 = _a.previousToken; return { type: "symbol", symbol: autoImport.symbol, location: ts.getTouchingPropertyName(sourceFile, position), previousToken: previousToken_1, contextToken: contextToken_1, isJsxInitializer: false, isTypeOnlyLocation: false, origin: autoImport.origin, }; } } var compilerOptions = program.getCompilerOptions(); var completionData = getCompletionData(program, log, sourceFile, compilerOptions, position, { includeCompletionsForModuleExports: true, includeCompletionsWithInsertText: true }, entryId, host, /*formatContext*/ undefined); if (!completionData) { return { type: "none" }; } if (completionData.kind !== 0 /* CompletionDataKind.Data */) { return { type: "request", request: completionData }; } var symbols = completionData.symbols, literals = completionData.literals, location = completionData.location, completionKind = completionData.completionKind, symbolToOriginInfoMap = completionData.symbolToOriginInfoMap, contextToken = completionData.contextToken, previousToken = completionData.previousToken, isJsxInitializer = completionData.isJsxInitializer, isTypeOnlyLocation = completionData.isTypeOnlyLocation; var literal = ts.find(literals, function (l) { return completionNameForLiteral(sourceFile, preferences, l) === entryId.name; }); if (literal !== undefined) return { type: "literal", literal: literal }; // Find the symbol with the matching entry name. // We don't need to perform character checks here because we're only comparing the // name against 'entryName' (which is known to be good), not building a new // completion entry. return ts.firstDefined(symbols, function (symbol, index) { var origin = symbolToOriginInfoMap[index]; var info = getCompletionEntryDisplayNameForSymbol(symbol, ts.getEmitScriptTarget(compilerOptions), origin, completionKind, completionData.isJsxIdentifierExpected); return info && info.name === entryId.name && (entryId.source === CompletionSource.ClassMemberSnippet && symbol.flags & 106500 /* SymbolFlags.ClassMember */ || entryId.source === CompletionSource.ObjectLiteralMethodSnippet && symbol.flags & (4 /* SymbolFlags.Property */ | 8192 /* SymbolFlags.Method */) || getSourceFromOrigin(origin) === entryId.source) ? { type: "symbol", symbol: symbol, location: location, origin: origin, contextToken: contextToken, previousToken: previousToken, isJsxInitializer: isJsxInitializer, isTypeOnlyLocation: isTypeOnlyLocation } : undefined; }) || { type: "none" }; } function getCompletionEntryDetails(program, log, sourceFile, position, entryId, host, formatContext, preferences, cancellationToken) { var typeChecker = program.getTypeChecker(); var compilerOptions = program.getCompilerOptions(); var name = entryId.name, source = entryId.source, data = entryId.data; var contextToken = ts.findPrecedingToken(position, sourceFile); if (ts.isInString(sourceFile, position, contextToken)) { return Completions.StringCompletions.getStringLiteralCompletionDetails(name, sourceFile, position, contextToken, typeChecker, compilerOptions, host, cancellationToken, preferences); } // Compute all the completion symbols again. var symbolCompletion = getSymbolCompletionFromEntryId(program, log, sourceFile, position, entryId, host, preferences); switch (symbolCompletion.type) { case "request": { var request = symbolCompletion.request; switch (request.kind) { case 1 /* CompletionDataKind.JsDocTagName */: return ts.JsDoc.getJSDocTagNameCompletionDetails(name); case 2 /* CompletionDataKind.JsDocTag */: return ts.JsDoc.getJSDocTagCompletionDetails(name); case 3 /* CompletionDataKind.JsDocParameterName */: return ts.JsDoc.getJSDocParameterNameCompletionDetails(name); case 4 /* CompletionDataKind.Keywords */: return ts.some(request.keywordCompletions, function (c) { return c.name === name; }) ? createSimpleDetails(name, "keyword" /* ScriptElementKind.keyword */, ts.SymbolDisplayPartKind.keyword) : undefined; default: return ts.Debug.assertNever(request); } } case "symbol": { var symbol = symbolCompletion.symbol, location = symbolCompletion.location, contextToken_2 = symbolCompletion.contextToken, origin = symbolCompletion.origin, previousToken = symbolCompletion.previousToken; var _a = getCompletionEntryCodeActionsAndSourceDisplay(name, location, contextToken_2, origin, symbol, program, host, compilerOptions, sourceFile, position, previousToken, formatContext, preferences, data, source), codeActions = _a.codeActions, sourceDisplay = _a.sourceDisplay; return createCompletionDetailsForSymbol(symbol, typeChecker, sourceFile, location, cancellationToken, codeActions, sourceDisplay); // TODO: GH#18217 } case "literal": { var literal = symbolCompletion.literal; return createSimpleDetails(completionNameForLiteral(sourceFile, preferences, literal), "string" /* ScriptElementKind.string */, typeof literal === "string" ? ts.SymbolDisplayPartKind.stringLiteral : ts.SymbolDisplayPartKind.numericLiteral); } case "none": // Didn't find a symbol with this name. See if we can find a keyword instead. return allKeywordsCompletions().some(function (c) { return c.name === name; }) ? createSimpleDetails(name, "keyword" /* ScriptElementKind.keyword */, ts.SymbolDisplayPartKind.keyword) : undefined; default: ts.Debug.assertNever(symbolCompletion); } } Completions.getCompletionEntryDetails = getCompletionEntryDetails; function createSimpleDetails(name, kind, kind2) { return createCompletionDetails(name, "" /* ScriptElementKindModifier.none */, kind, [ts.displayPart(name, kind2)]); } function createCompletionDetailsForSymbol(symbol, checker, sourceFile, location, cancellationToken, codeActions, sourceDisplay) { var _a = checker.runWithCancellationToken(cancellationToken, function (checker) { return ts.SymbolDisplay.getSymbolDisplayPartsDocumentationAndSymbolKind(checker, symbol, sourceFile, location, location, 7 /* SemanticMeaning.All */); }), displayParts = _a.displayParts, documentation = _a.documentation, symbolKind = _a.symbolKind, tags = _a.tags; return createCompletionDetails(symbol.name, ts.SymbolDisplay.getSymbolModifiers(checker, symbol), symbolKind, displayParts, documentation, tags, codeActions, sourceDisplay); } Completions.createCompletionDetailsForSymbol = createCompletionDetailsForSymbol; function createCompletionDetails(name, kindModifiers, kind, displayParts, documentation, tags, codeActions, source) { return { name: name, kindModifiers: kindModifiers, kind: kind, displayParts: displayParts, documentation: documentation, tags: tags, codeActions: codeActions, source: source, sourceDisplay: source }; } Completions.createCompletionDetails = createCompletionDetails; function getCompletionEntryCodeActionsAndSourceDisplay(name, location, contextToken, origin, symbol, program, host, compilerOptions, sourceFile, position, previousToken, formatContext, preferences, data, source) { if (data === null || data === void 0 ? void 0 : data.moduleSpecifier) { if (previousToken && getImportStatementCompletionInfo(contextToken || previousToken).replacementNode) { // Import statement completion: 'import c|' return { codeActions: undefined, sourceDisplay: [ts.textPart(data.moduleSpecifier)] }; } } if (source === CompletionSource.ClassMemberSnippet) { var importAdder = getEntryForMemberCompletion(host, program, compilerOptions, preferences, name, symbol, location, contextToken, formatContext).importAdder; if (importAdder) { var changes = ts.textChanges.ChangeTracker.with({ host: host, formatContext: formatContext, preferences: preferences }, importAdder.writeFixes); return { sourceDisplay: undefined, codeActions: [{ changes: changes, description: ts.diagnosticToString([ts.Diagnostics.Includes_imports_of_types_referenced_by_0, name]), }], }; } } if (originIsTypeOnlyAlias(origin)) { var codeAction_1 = ts.codefix.getPromoteTypeOnlyCompletionAction(sourceFile, origin.declaration.name, program, host, formatContext, preferences); ts.Debug.assertIsDefined(codeAction_1, "Expected to have a code action for promoting type-only alias"); return { codeActions: [codeAction_1], sourceDisplay: undefined }; } if (!origin || !(originIsExport(origin) || originIsResolvedExport(origin))) { return { codeActions: undefined, sourceDisplay: undefined }; } var checker = origin.isFromPackageJson ? host.getPackageJsonAutoImportProvider().getTypeChecker() : program.getTypeChecker(); var moduleSymbol = origin.moduleSymbol; var targetSymbol = checker.getMergedSymbol(ts.skipAlias(symbol.exportSymbol || symbol, checker)); var isJsxOpeningTagName = (contextToken === null || contextToken === void 0 ? void 0 : contextToken.kind) === 29 /* SyntaxKind.LessThanToken */ && ts.isJsxOpeningLikeElement(contextToken.parent); var _a = ts.codefix.getImportCompletionAction(targetSymbol, moduleSymbol, sourceFile, ts.getNameForExportedSymbol(symbol, ts.getEmitScriptTarget(compilerOptions), isJsxOpeningTagName), isJsxOpeningTagName, host, program, formatContext, previousToken && ts.isIdentifier(previousToken) ? previousToken.getStart(sourceFile) : position, preferences), moduleSpecifier = _a.moduleSpecifier, codeAction = _a.codeAction; ts.Debug.assert(!(data === null || data === void 0 ? void 0 : data.moduleSpecifier) || moduleSpecifier === data.moduleSpecifier); return { sourceDisplay: [ts.textPart(moduleSpecifier)], codeActions: [codeAction] }; } function getCompletionEntrySymbol(program, log, sourceFile, position, entryId, host, preferences) { var completion = getSymbolCompletionFromEntryId(program, log, sourceFile, position, entryId, host, preferences); return completion.type === "symbol" ? completion.symbol : undefined; } Completions.getCompletionEntrySymbol = getCompletionEntrySymbol; var CompletionDataKind; (function (CompletionDataKind) { CompletionDataKind[CompletionDataKind["Data"] = 0] = "Data"; CompletionDataKind[CompletionDataKind["JsDocTagName"] = 1] = "JsDocTagName"; CompletionDataKind[CompletionDataKind["JsDocTag"] = 2] = "JsDocTag"; CompletionDataKind[CompletionDataKind["JsDocParameterName"] = 3] = "JsDocParameterName"; CompletionDataKind[CompletionDataKind["Keywords"] = 4] = "Keywords"; })(CompletionDataKind || (CompletionDataKind = {})); var CompletionKind; (function (CompletionKind) { CompletionKind[CompletionKind["ObjectPropertyDeclaration"] = 0] = "ObjectPropertyDeclaration"; CompletionKind[CompletionKind["Global"] = 1] = "Global"; CompletionKind[CompletionKind["PropertyAccess"] = 2] = "PropertyAccess"; CompletionKind[CompletionKind["MemberLike"] = 3] = "MemberLike"; CompletionKind[CompletionKind["String"] = 4] = "String"; CompletionKind[CompletionKind["None"] = 5] = "None"; })(CompletionKind = Completions.CompletionKind || (Completions.CompletionKind = {})); function getRecommendedCompletion(previousToken, contextualType, checker) { // For a union, return the first one with a recommended completion. return ts.firstDefined(contextualType && (contextualType.isUnion() ? contextualType.types : [contextualType]), function (type) { var symbol = type && type.symbol; // Don't include make a recommended completion for an abstract class return symbol && (symbol.flags & (8 /* SymbolFlags.EnumMember */ | 384 /* SymbolFlags.Enum */ | 32 /* SymbolFlags.Class */) && !ts.isAbstractConstructorSymbol(symbol)) ? getFirstSymbolInChain(symbol, previousToken, checker) : undefined; }); } function getContextualType(previousToken, position, sourceFile, checker) { var parent = previousToken.parent; switch (previousToken.kind) { case 79 /* SyntaxKind.Identifier */: return ts.getContextualTypeFromParent(previousToken, checker); case 63 /* SyntaxKind.EqualsToken */: switch (parent.kind) { case 254 /* SyntaxKind.VariableDeclaration */: return checker.getContextualType(parent.initializer); // TODO: GH#18217 case 221 /* SyntaxKind.BinaryExpression */: return checker.getTypeAtLocation(parent.left); case 285 /* SyntaxKind.JsxAttribute */: return checker.getContextualTypeForJsxAttribute(parent); default: return undefined; } case 103 /* SyntaxKind.NewKeyword */: return checker.getContextualType(parent); case 82 /* SyntaxKind.CaseKeyword */: var caseClause = ts.tryCast(parent, ts.isCaseClause); return caseClause ? ts.getSwitchedType(caseClause, checker) : undefined; case 18 /* SyntaxKind.OpenBraceToken */: return ts.isJsxExpression(parent) && !ts.isJsxElement(parent.parent) && !ts.isJsxFragment(parent.parent) ? checker.getContextualTypeForJsxAttribute(parent.parent) : undefined; default: var argInfo = ts.SignatureHelp.getArgumentInfoForCompletions(previousToken, position, sourceFile); return argInfo ? // At `,`, treat this as the next argument after the comma. checker.getContextualTypeForArgumentAtIndex(argInfo.invocation, argInfo.argumentIndex + (previousToken.kind === 27 /* SyntaxKind.CommaToken */ ? 1 : 0)) : ts.isEqualityOperatorKind(previousToken.kind) && ts.isBinaryExpression(parent) && ts.isEqualityOperatorKind(parent.operatorToken.kind) ? // completion at `x ===/**/` should be for the right side checker.getTypeAtLocation(parent.left) : checker.getContextualType(previousToken); } } function getFirstSymbolInChain(symbol, enclosingDeclaration, checker) { var chain = checker.getAccessibleSymbolChain(symbol, enclosingDeclaration, /*meaning*/ 67108863 /* SymbolFlags.All */, /*useOnlyExternalAliasing*/ false); if (chain) return ts.first(chain); return symbol.parent && (isModuleSymbol(symbol.parent) ? symbol : getFirstSymbolInChain(symbol.parent, enclosingDeclaration, checker)); } function isModuleSymbol(symbol) { var _a; return !!((_a = symbol.declarations) === null || _a === void 0 ? void 0 : _a.some(function (d) { return d.kind === 305 /* SyntaxKind.SourceFile */; })); } function getCompletionData(program, log, sourceFile, compilerOptions, position, preferences, detailsEntryId, host, formatContext, cancellationToken) { var typeChecker = program.getTypeChecker(); var inUncheckedFile = isUncheckedFile(sourceFile, compilerOptions); var start = ts.timestamp(); var currentToken = ts.getTokenAtPosition(sourceFile, position); // TODO: GH#15853 // We will check for jsdoc comments with insideComment and getJsDocTagAtPosition. (TODO: that seems rather inefficient to check the same thing so many times.) log("getCompletionData: Get current token: " + (ts.timestamp() - start)); start = ts.timestamp(); var insideComment = ts.isInComment(sourceFile, position, currentToken); log("getCompletionData: Is inside comment: " + (ts.timestamp() - start)); var insideJsDocTagTypeExpression = false; var isInSnippetScope = false; if (insideComment) { if (ts.hasDocComment(sourceFile, position)) { if (sourceFile.text.charCodeAt(position - 1) === 64 /* CharacterCodes.at */) { // The current position is next to the '@' sign, when no tag name being provided yet. // Provide a full list of tag names return { kind: 1 /* CompletionDataKind.JsDocTagName */ }; } else { // When completion is requested without "@", we will have check to make sure that // there are no comments prefix the request position. We will only allow "*" and space. // e.g // /** |c| /* // // /** // |c| // */ // // /** // * |c| // */ // // /** // * |c| // */ var lineStart = ts.getLineStartPositionForPosition(position, sourceFile); if (!/[^\*|\s(/)]/.test(sourceFile.text.substring(lineStart, position))) { return { kind: 2 /* CompletionDataKind.JsDocTag */ }; } } } // Completion should work inside certain JsDoc tags. For example: // /** @type {number | string} */ // Completion should work in the brackets var tag = getJsDocTagAtPosition(currentToken, position); if (tag) { if (tag.tagName.pos <= position && position <= tag.tagName.end) { return { kind: 1 /* CompletionDataKind.JsDocTagName */ }; } var typeExpression = tryGetTypeExpressionFromTag(tag); if (typeExpression) { currentToken = ts.getTokenAtPosition(sourceFile, position); if (!currentToken || (!ts.isDeclarationName(currentToken) && (currentToken.parent.kind !== 347 /* SyntaxKind.JSDocPropertyTag */ || currentToken.parent.name !== currentToken))) { // Use as type location if inside tag's type expression insideJsDocTagTypeExpression = isCurrentlyEditingNode(typeExpression); } } if (!insideJsDocTagTypeExpression && ts.isJSDocParameterTag(tag) && (ts.nodeIsMissing(tag.name) || tag.name.pos <= position && position <= tag.name.end)) { return { kind: 3 /* CompletionDataKind.JsDocParameterName */, tag: tag }; } } if (!insideJsDocTagTypeExpression) { // Proceed if the current position is in jsDoc tag expression; otherwise it is a normal // comment or the plain text part of a jsDoc comment, so no completion should be available log("Returning an empty list because completion was inside a regular comment or plain text part of a JsDoc comment."); return undefined; } } start = ts.timestamp(); // The decision to provide completion depends on the contextToken, which is determined through the previousToken. // Note: 'previousToken' (and thus 'contextToken') can be undefined if we are the beginning of the file var isJsOnlyLocation = !insideJsDocTagTypeExpression && ts.isSourceFileJS(sourceFile); var tokens = getRelevantTokens(position, sourceFile); var previousToken = tokens.previousToken; var contextToken = tokens.contextToken; log("getCompletionData: Get previous token: " + (ts.timestamp() - start)); // Find the node where completion is requested on. // Also determine whether we are trying to complete with members of that node // or attributes of a JSX tag. var node = currentToken; var propertyAccessToConvert; var isRightOfDot = false; var isRightOfQuestionDot = false; var isRightOfOpenTag = false; var isStartingCloseTag = false; var isJsxInitializer = false; var isJsxIdentifierExpected = false; var importCompletionNode; var location = ts.getTouchingPropertyName(sourceFile, position); var keywordFilters = 0 /* KeywordCompletionFilters.None */; var isNewIdentifierLocation = false; var flags = 0 /* CompletionInfoFlags.None */; if (contextToken) { var importStatementCompletion = getImportStatementCompletionInfo(contextToken); isNewIdentifierLocation = importStatementCompletion.isNewIdentifierLocation; if (importStatementCompletion.keywordCompletion) { if (importStatementCompletion.isKeywordOnlyCompletion) { return { kind: 4 /* CompletionDataKind.Keywords */, keywordCompletions: [keywordToCompletionEntry(importStatementCompletion.keywordCompletion)], isNewIdentifierLocation: isNewIdentifierLocation, }; } keywordFilters = keywordFiltersFromSyntaxKind(importStatementCompletion.keywordCompletion); } if (importStatementCompletion.replacementNode && preferences.includeCompletionsForImportStatements && preferences.includeCompletionsWithInsertText) { // Import statement completions use `insertText`, and also require the `data` property of `CompletionEntryIdentifier` // added in TypeScript 4.3 to be sent back from the client during `getCompletionEntryDetails`. Since this feature // is not backward compatible with older clients, the language service defaults to disabling it, allowing newer clients // to opt in with the `includeCompletionsForImportStatements` user preference. importCompletionNode = importStatementCompletion.replacementNode; flags |= 2 /* CompletionInfoFlags.IsImportStatementCompletion */; } // Bail out if this is a known invalid completion location if (!importCompletionNode && isCompletionListBlocker(contextToken)) { log("Returning an empty list because completion was requested in an invalid position."); return keywordFilters ? keywordCompletionData(keywordFilters, isJsOnlyLocation, isNewIdentifierDefinitionLocation()) : undefined; } var parent = contextToken.parent; if (contextToken.kind === 24 /* SyntaxKind.DotToken */ || contextToken.kind === 28 /* SyntaxKind.QuestionDotToken */) { isRightOfDot = contextToken.kind === 24 /* SyntaxKind.DotToken */; isRightOfQuestionDot = contextToken.kind === 28 /* SyntaxKind.QuestionDotToken */; switch (parent.kind) { case 206 /* SyntaxKind.PropertyAccessExpression */: propertyAccessToConvert = parent; node = propertyAccessToConvert.expression; var leftmostAccessExpression = ts.getLeftmostAccessExpression(propertyAccessToConvert); if (ts.nodeIsMissing(leftmostAccessExpression) || ((ts.isCallExpression(node) || ts.isFunctionLike(node)) && node.end === contextToken.pos && node.getChildCount(sourceFile) && ts.last(node.getChildren(sourceFile)).kind !== 21 /* SyntaxKind.CloseParenToken */)) { // This is likely dot from incorrectly parsed expression and user is starting to write spread // eg: Math.min(./**/) // const x = function (./**/) {} // ({./**/}) return undefined; } break; case 161 /* SyntaxKind.QualifiedName */: node = parent.left; break; case 261 /* SyntaxKind.ModuleDeclaration */: node = parent.name; break; case 200 /* SyntaxKind.ImportType */: node = parent; break; case 231 /* SyntaxKind.MetaProperty */: node = parent.getFirstToken(sourceFile); ts.Debug.assert(node.kind === 100 /* SyntaxKind.ImportKeyword */ || node.kind === 103 /* SyntaxKind.NewKeyword */); break; default: // There is nothing that precedes the dot, so this likely just a stray character // or leading into a '...' token. Just bail out instead. return undefined; } } else if (!importCompletionNode && sourceFile.languageVariant === 1 /* LanguageVariant.JSX */) { // // If the tagname is a property access expression, we will then walk up to the top most of property access expression. // Then, try to get a JSX container and its associated attributes type. if (parent && parent.kind === 206 /* SyntaxKind.PropertyAccessExpression */) { contextToken = parent; parent = parent.parent; } // Fix location if (currentToken.parent === location) { switch (currentToken.kind) { case 31 /* SyntaxKind.GreaterThanToken */: if (currentToken.parent.kind === 278 /* SyntaxKind.JsxElement */ || currentToken.parent.kind === 280 /* SyntaxKind.JsxOpeningElement */) { location = currentToken; } break; case 43 /* SyntaxKind.SlashToken */: if (currentToken.parent.kind === 279 /* SyntaxKind.JsxSelfClosingElement */) { location = currentToken; } break; } } switch (parent.kind) { case 281 /* SyntaxKind.JsxClosingElement */: if (contextToken.kind === 43 /* SyntaxKind.SlashToken */) { isStartingCloseTag = true; location = contextToken; } break; case 221 /* SyntaxKind.BinaryExpression */: if (!binaryExpressionMayBeOpenTag(parent)) { break; } // falls through case 279 /* SyntaxKind.JsxSelfClosingElement */: case 278 /* SyntaxKind.JsxElement */: case 280 /* SyntaxKind.JsxOpeningElement */: isJsxIdentifierExpected = true; if (contextToken.kind === 29 /* SyntaxKind.LessThanToken */) { isRightOfOpenTag = true; location = contextToken; } break; case 288 /* SyntaxKind.JsxExpression */: case 287 /* SyntaxKind.JsxSpreadAttribute */: // For `
`, `parent` will be `{true}` and `previousToken` will be `}` if (previousToken.kind === 19 /* SyntaxKind.CloseBraceToken */ && currentToken.kind === 31 /* SyntaxKind.GreaterThanToken */) { isJsxIdentifierExpected = true; } break; case 285 /* SyntaxKind.JsxAttribute */: // For `
`, `parent` will be JsxAttribute and `previousToken` will be its initializer if (parent.initializer === previousToken && previousToken.end < position) { isJsxIdentifierExpected = true; break; } switch (previousToken.kind) { case 63 /* SyntaxKind.EqualsToken */: isJsxInitializer = true; break; case 79 /* SyntaxKind.Identifier */: isJsxIdentifierExpected = true; // For `
` we don't want to treat this as a jsx inializer, instead it's the attribute name. if (parent !== previousToken.parent && !parent.initializer && ts.findChildOfKind(parent, 63 /* SyntaxKind.EqualsToken */, sourceFile)) { isJsxInitializer = previousToken; } } break; } } } var semanticStart = ts.timestamp(); var completionKind = 5 /* CompletionKind.None */; var isNonContextualObjectLiteral = false; var hasUnresolvedAutoImports = false; // This also gets mutated in nested-functions after the return var symbols = []; var importSpecifierResolver; var symbolToOriginInfoMap = []; var symbolToSortTextMap = []; var seenPropertySymbols = new ts.Map(); var isTypeOnlyLocation = isTypeOnlyCompletion(); var getModuleSpecifierResolutionHost = ts.memoizeOne(function (isFromPackageJson) { return ts.createModuleSpecifierResolutionHost(isFromPackageJson ? host.getPackageJsonAutoImportProvider() : program, host); }); if (isRightOfDot || isRightOfQuestionDot) { getTypeScriptMemberSymbols(); } else if (isRightOfOpenTag) { symbols = typeChecker.getJsxIntrinsicTagNamesAt(location); ts.Debug.assertEachIsDefined(symbols, "getJsxIntrinsicTagNames() should all be defined"); tryGetGlobalSymbols(); completionKind = 1 /* CompletionKind.Global */; keywordFilters = 0 /* KeywordCompletionFilters.None */; } else if (isStartingCloseTag) { var tagName = contextToken.parent.parent.openingElement.tagName; var tagSymbol = typeChecker.getSymbolAtLocation(tagName); if (tagSymbol) { symbols = [tagSymbol]; } completionKind = 1 /* CompletionKind.Global */; keywordFilters = 0 /* KeywordCompletionFilters.None */; } else { // For JavaScript or TypeScript, if we're not after a dot, then just try to get the // global symbols in scope. These results should be valid for either language as // the set of symbols that can be referenced from this location. if (!tryGetGlobalSymbols()) { return keywordFilters ? keywordCompletionData(keywordFilters, isJsOnlyLocation, isNewIdentifierLocation) : undefined; } } log("getCompletionData: Semantic work: " + (ts.timestamp() - semanticStart)); var contextualType = previousToken && getContextualType(previousToken, position, sourceFile, typeChecker); var literals = ts.mapDefined(contextualType && (contextualType.isUnion() ? contextualType.types : [contextualType]), function (t) { return t.isLiteral() && !(t.flags & 1024 /* TypeFlags.EnumLiteral */) ? t.value : undefined; }); var recommendedCompletion = previousToken && contextualType && getRecommendedCompletion(previousToken, contextualType, typeChecker); return { kind: 0 /* CompletionDataKind.Data */, symbols: symbols, completionKind: completionKind, isInSnippetScope: isInSnippetScope, propertyAccessToConvert: propertyAccessToConvert, isNewIdentifierLocation: isNewIdentifierLocation, location: location, keywordFilters: keywordFilters, literals: literals, symbolToOriginInfoMap: symbolToOriginInfoMap, recommendedCompletion: recommendedCompletion, previousToken: previousToken, contextToken: contextToken, isJsxInitializer: isJsxInitializer, insideJsDocTagTypeExpression: insideJsDocTagTypeExpression, symbolToSortTextMap: symbolToSortTextMap, isTypeOnlyLocation: isTypeOnlyLocation, isJsxIdentifierExpected: isJsxIdentifierExpected, isRightOfOpenTag: isRightOfOpenTag, importCompletionNode: importCompletionNode, hasUnresolvedAutoImports: hasUnresolvedAutoImports, flags: flags, }; function isTagWithTypeExpression(tag) { switch (tag.kind) { case 340 /* SyntaxKind.JSDocParameterTag */: case 347 /* SyntaxKind.JSDocPropertyTag */: case 341 /* SyntaxKind.JSDocReturnTag */: case 343 /* SyntaxKind.JSDocTypeTag */: case 345 /* SyntaxKind.JSDocTypedefTag */: return true; case 344 /* SyntaxKind.JSDocTemplateTag */: return !!tag.constraint; default: return false; } } function tryGetTypeExpressionFromTag(tag) { if (isTagWithTypeExpression(tag)) { var typeExpression = ts.isJSDocTemplateTag(tag) ? tag.constraint : tag.typeExpression; return typeExpression && typeExpression.kind === 309 /* SyntaxKind.JSDocTypeExpression */ ? typeExpression : undefined; } return undefined; } function getTypeScriptMemberSymbols() { // Right of dot member completion list completionKind = 2 /* CompletionKind.PropertyAccess */; // Since this is qualified name check it's a type node location var isImportType = ts.isLiteralImportTypeNode(node); var isTypeLocation = insideJsDocTagTypeExpression || (isImportType && !node.isTypeOf) || ts.isPartOfTypeNode(node.parent) || ts.isPossiblyTypeArgumentPosition(contextToken, sourceFile, typeChecker); var isRhsOfImportDeclaration = ts.isInRightSideOfInternalImportEqualsDeclaration(node); if (ts.isEntityName(node) || isImportType || ts.isPropertyAccessExpression(node)) { var isNamespaceName = ts.isModuleDeclaration(node.parent); if (isNamespaceName) isNewIdentifierLocation = true; var symbol = typeChecker.getSymbolAtLocation(node); if (symbol) { symbol = ts.skipAlias(symbol, typeChecker); if (symbol.flags & (1536 /* SymbolFlags.Module */ | 384 /* SymbolFlags.Enum */)) { // Extract module or enum members var exportedSymbols = typeChecker.getExportsOfModule(symbol); ts.Debug.assertEachIsDefined(exportedSymbols, "getExportsOfModule() should all be defined"); var isValidValueAccess_1 = function (symbol) { return typeChecker.isValidPropertyAccess(isImportType ? node : node.parent, symbol.name); }; var isValidTypeAccess_1 = function (symbol) { return symbolCanBeReferencedAtTypeLocation(symbol, typeChecker); }; var isValidAccess = isNamespaceName // At `namespace N.M/**/`, if this is the only declaration of `M`, don't include `M` as a completion. ? function (symbol) { var _a; return !!(symbol.flags & 1920 /* SymbolFlags.Namespace */) && !((_a = symbol.declarations) === null || _a === void 0 ? void 0 : _a.every(function (d) { return d.parent === node.parent; })); } : isRhsOfImportDeclaration ? // Any kind is allowed when dotting off namespace in internal import equals declaration function (symbol) { return isValidTypeAccess_1(symbol) || isValidValueAccess_1(symbol); } : isTypeLocation ? isValidTypeAccess_1 : isValidValueAccess_1; for (var _i = 0, exportedSymbols_1 = exportedSymbols; _i < exportedSymbols_1.length; _i++) { var exportedSymbol = exportedSymbols_1[_i]; if (isValidAccess(exportedSymbol)) { symbols.push(exportedSymbol); } } // If the module is merged with a value, we must get the type of the class and add its propertes (for inherited static methods). if (!isTypeLocation && symbol.declarations && symbol.declarations.some(function (d) { return d.kind !== 305 /* SyntaxKind.SourceFile */ && d.kind !== 261 /* SyntaxKind.ModuleDeclaration */ && d.kind !== 260 /* SyntaxKind.EnumDeclaration */; })) { var type = typeChecker.getTypeOfSymbolAtLocation(symbol, node).getNonOptionalType(); var insertQuestionDot = false; if (type.isNullableType()) { var canCorrectToQuestionDot = isRightOfDot && !isRightOfQuestionDot && preferences.includeAutomaticOptionalChainCompletions !== false; if (canCorrectToQuestionDot || isRightOfQuestionDot) { type = type.getNonNullableType(); if (canCorrectToQuestionDot) { insertQuestionDot = true; } } } addTypeProperties(type, !!(node.flags & 32768 /* NodeFlags.AwaitContext */), insertQuestionDot); } return; } } } if (!isTypeLocation) { // GH#39946. Pulling on the type of a node inside of a function with a contextual `this` parameter can result in a circularity // if the `node` is part of the exprssion of a `yield` or `return`. This circularity doesn't exist at compile time because // we will check (and cache) the type of `this` *before* checking the type of the node. typeChecker.tryGetThisTypeAt(node, /*includeGlobalThis*/ false); var type = typeChecker.getTypeAtLocation(node).getNonOptionalType(); var insertQuestionDot = false; if (type.isNullableType()) { var canCorrectToQuestionDot = isRightOfDot && !isRightOfQuestionDot && preferences.includeAutomaticOptionalChainCompletions !== false; if (canCorrectToQuestionDot || isRightOfQuestionDot) { type = type.getNonNullableType(); if (canCorrectToQuestionDot) { insertQuestionDot = true; } } } addTypeProperties(type, !!(node.flags & 32768 /* NodeFlags.AwaitContext */), insertQuestionDot); } } function addTypeProperties(type, insertAwait, insertQuestionDot) { isNewIdentifierLocation = !!type.getStringIndexType(); if (isRightOfQuestionDot && ts.some(type.getCallSignatures())) { isNewIdentifierLocation = true; } var propertyAccess = node.kind === 200 /* SyntaxKind.ImportType */ ? node : node.parent; if (inUncheckedFile) { // In javascript files, for union types, we don't just get the members that // the individual types have in common, we also include all the members that // each individual type has. This is because we're going to add all identifiers // anyways. So we might as well elevate the members that were at least part // of the individual types to a higher status since we know what they are. symbols.push.apply(symbols, ts.filter(getPropertiesForCompletion(type, typeChecker), function (s) { return typeChecker.isValidPropertyAccessForCompletions(propertyAccess, type, s); })); } else { for (var _i = 0, _a = type.getApparentProperties(); _i < _a.length; _i++) { var symbol = _a[_i]; if (typeChecker.isValidPropertyAccessForCompletions(propertyAccess, type, symbol)) { addPropertySymbol(symbol, /* insertAwait */ false, insertQuestionDot); } } } if (insertAwait && preferences.includeCompletionsWithInsertText) { var promiseType = typeChecker.getPromisedTypeOfPromise(type); if (promiseType) { for (var _b = 0, _c = promiseType.getApparentProperties(); _b < _c.length; _b++) { var symbol = _c[_b]; if (typeChecker.isValidPropertyAccessForCompletions(propertyAccess, promiseType, symbol)) { addPropertySymbol(symbol, /* insertAwait */ true, insertQuestionDot); } } } } } function addPropertySymbol(symbol, insertAwait, insertQuestionDot) { var _a; // For a computed property with an accessible name like `Symbol.iterator`, // we'll add a completion for the *name* `Symbol` instead of for the property. // If this is e.g. [Symbol.iterator], add a completion for `Symbol`. var computedPropertyName = ts.firstDefined(symbol.declarations, function (decl) { return ts.tryCast(ts.getNameOfDeclaration(decl), ts.isComputedPropertyName); }); if (computedPropertyName) { var leftMostName = getLeftMostName(computedPropertyName.expression); // The completion is for `Symbol`, not `iterator`. var nameSymbol = leftMostName && typeChecker.getSymbolAtLocation(leftMostName); // If this is nested like for `namespace N { export const sym = Symbol(); }`, we'll add the completion for `N`. var firstAccessibleSymbol = nameSymbol && getFirstSymbolInChain(nameSymbol, contextToken, typeChecker); if (firstAccessibleSymbol && ts.addToSeen(seenPropertySymbols, ts.getSymbolId(firstAccessibleSymbol))) { var index = symbols.length; symbols.push(firstAccessibleSymbol); var moduleSymbol = firstAccessibleSymbol.parent; if (!moduleSymbol || !ts.isExternalModuleSymbol(moduleSymbol) || typeChecker.tryGetMemberInModuleExportsAndProperties(firstAccessibleSymbol.name, moduleSymbol) !== firstAccessibleSymbol) { symbolToOriginInfoMap[index] = { kind: getNullableSymbolOriginInfoKind(2 /* SymbolOriginInfoKind.SymbolMemberNoExport */) }; } else { var fileName = ts.isExternalModuleNameRelative(ts.stripQuotes(moduleSymbol.name)) ? (_a = ts.getSourceFileOfModule(moduleSymbol)) === null || _a === void 0 ? void 0 : _a.fileName : undefined; var moduleSpecifier = ((importSpecifierResolver || (importSpecifierResolver = ts.codefix.createImportSpecifierResolver(sourceFile, program, host, preferences))).getModuleSpecifierForBestExportInfo([{ exportKind: 0 /* ExportKind.Named */, moduleFileName: fileName, isFromPackageJson: false, moduleSymbol: moduleSymbol, symbol: firstAccessibleSymbol, targetFlags: ts.skipAlias(firstAccessibleSymbol, typeChecker).flags, }], firstAccessibleSymbol.name, position, ts.isValidTypeOnlyAliasUseSite(location)) || {}).moduleSpecifier; if (moduleSpecifier) { var origin = { kind: getNullableSymbolOriginInfoKind(6 /* SymbolOriginInfoKind.SymbolMemberExport */), moduleSymbol: moduleSymbol, isDefaultExport: false, symbolName: firstAccessibleSymbol.name, exportName: firstAccessibleSymbol.name, fileName: fileName, moduleSpecifier: moduleSpecifier, }; symbolToOriginInfoMap[index] = origin; } } } else if (preferences.includeCompletionsWithInsertText) { addSymbolOriginInfo(symbol); addSymbolSortInfo(symbol); symbols.push(symbol); } } else { addSymbolOriginInfo(symbol); addSymbolSortInfo(symbol); symbols.push(symbol); } function addSymbolSortInfo(symbol) { if (isStaticProperty(symbol)) { symbolToSortTextMap[ts.getSymbolId(symbol)] = Completions.SortText.LocalDeclarationPriority; } } function addSymbolOriginInfo(symbol) { if (preferences.includeCompletionsWithInsertText) { if (insertAwait && ts.addToSeen(seenPropertySymbols, ts.getSymbolId(symbol))) { symbolToOriginInfoMap[symbols.length] = { kind: getNullableSymbolOriginInfoKind(8 /* SymbolOriginInfoKind.Promise */) }; } else if (insertQuestionDot) { symbolToOriginInfoMap[symbols.length] = { kind: 16 /* SymbolOriginInfoKind.Nullable */ }; } } } function getNullableSymbolOriginInfoKind(kind) { return insertQuestionDot ? kind | 16 /* SymbolOriginInfoKind.Nullable */ : kind; } } /** Given 'a.b.c', returns 'a'. */ function getLeftMostName(e) { return ts.isIdentifier(e) ? e : ts.isPropertyAccessExpression(e) ? getLeftMostName(e.expression) : undefined; } function tryGetGlobalSymbols() { var result = tryGetObjectTypeLiteralInTypeArgumentCompletionSymbols() || tryGetObjectLikeCompletionSymbols() || tryGetImportCompletionSymbols() || tryGetImportOrExportClauseCompletionSymbols() || tryGetLocalNamedExportCompletionSymbols() || tryGetConstructorCompletion() || tryGetClassLikeCompletionSymbols() || tryGetJsxCompletionSymbols() || (getGlobalCompletions(), 1 /* GlobalsSearch.Success */); return result === 1 /* GlobalsSearch.Success */; } function tryGetConstructorCompletion() { if (!tryGetConstructorLikeCompletionContainer(contextToken)) return 0 /* GlobalsSearch.Continue */; // no members, only keywords completionKind = 5 /* CompletionKind.None */; // Declaring new property/method/accessor isNewIdentifierLocation = true; // Has keywords for constructor parameter keywordFilters = 4 /* KeywordCompletionFilters.ConstructorParameterKeywords */; return 1 /* GlobalsSearch.Success */; } function tryGetJsxCompletionSymbols() { var jsxContainer = tryGetContainingJsxElement(contextToken); // Cursor is inside a JSX self-closing element or opening element var attrsType = jsxContainer && typeChecker.getContextualType(jsxContainer.attributes); if (!attrsType) return 0 /* GlobalsSearch.Continue */; var completionsType = jsxContainer && typeChecker.getContextualType(jsxContainer.attributes, 4 /* ContextFlags.Completions */); symbols = ts.concatenate(symbols, filterJsxAttributes(getPropertiesForObjectExpression(attrsType, completionsType, jsxContainer.attributes, typeChecker), jsxContainer.attributes.properties)); setSortTextToOptionalMember(); completionKind = 3 /* CompletionKind.MemberLike */; isNewIdentifierLocation = false; return 1 /* GlobalsSearch.Success */; } function tryGetImportCompletionSymbols() { if (!importCompletionNode) return 0 /* GlobalsSearch.Continue */; isNewIdentifierLocation = true; collectAutoImports(); return 1 /* GlobalsSearch.Success */; } function getGlobalCompletions() { keywordFilters = tryGetFunctionLikeBodyCompletionContainer(contextToken) ? 5 /* KeywordCompletionFilters.FunctionLikeBodyKeywords */ : 1 /* KeywordCompletionFilters.All */; // Get all entities in the current scope. completionKind = 1 /* CompletionKind.Global */; isNewIdentifierLocation = isNewIdentifierDefinitionLocation(); if (previousToken !== contextToken) { ts.Debug.assert(!!previousToken, "Expected 'contextToken' to be defined when different from 'previousToken'."); } // We need to find the node that will give us an appropriate scope to begin // aggregating completion candidates. This is achieved in 'getScopeNode' // by finding the first node that encompasses a position, accounting for whether a node // is "complete" to decide whether a position belongs to the node. // // However, at the end of an identifier, we are interested in the scope of the identifier // itself, but fall outside of the identifier. For instance: // // xyz => x$ // // the cursor is outside of both the 'x' and the arrow function 'xyz => x', // so 'xyz' is not returned in our results. // // We define 'adjustedPosition' so that we may appropriately account for // being at the end of an identifier. The intention is that if requesting completion // at the end of an identifier, it should be effectively equivalent to requesting completion // anywhere inside/at the beginning of the identifier. So in the previous case, the // 'adjustedPosition' will work as if requesting completion in the following: // // xyz => $x // // If previousToken !== contextToken, then // - 'contextToken' was adjusted to the token prior to 'previousToken' // because we were at the end of an identifier. // - 'previousToken' is defined. var adjustedPosition = previousToken !== contextToken ? previousToken.getStart() : position; var scopeNode = getScopeNode(contextToken, adjustedPosition, sourceFile) || sourceFile; isInSnippetScope = isSnippetScope(scopeNode); var symbolMeanings = (isTypeOnlyLocation ? 0 /* SymbolFlags.None */ : 111551 /* SymbolFlags.Value */) | 788968 /* SymbolFlags.Type */ | 1920 /* SymbolFlags.Namespace */ | 2097152 /* SymbolFlags.Alias */; var typeOnlyAliasNeedsPromotion = previousToken && !ts.isValidTypeOnlyAliasUseSite(previousToken); symbols = ts.concatenate(symbols, typeChecker.getSymbolsInScope(scopeNode, symbolMeanings)); ts.Debug.assertEachIsDefined(symbols, "getSymbolsInScope() should all be defined"); for (var i = 0; i < symbols.length; i++) { var symbol = symbols[i]; if (!typeChecker.isArgumentsSymbol(symbol) && !ts.some(symbol.declarations, function (d) { return d.getSourceFile() === sourceFile; })) { symbolToSortTextMap[ts.getSymbolId(symbol)] = Completions.SortText.GlobalsOrKeywords; } if (typeOnlyAliasNeedsPromotion && !(symbol.flags & 111551 /* SymbolFlags.Value */)) { var typeOnlyAliasDeclaration = symbol.declarations && ts.find(symbol.declarations, ts.isTypeOnlyImportOrExportDeclaration); if (typeOnlyAliasDeclaration) { var origin = { kind: 64 /* SymbolOriginInfoKind.TypeOnlyAlias */, declaration: typeOnlyAliasDeclaration }; symbolToOriginInfoMap[i] = origin; } } } // Need to insert 'this.' before properties of `this` type, so only do that if `includeInsertTextCompletions` if (preferences.includeCompletionsWithInsertText && scopeNode.kind !== 305 /* SyntaxKind.SourceFile */) { var thisType = typeChecker.tryGetThisTypeAt(scopeNode, /*includeGlobalThis*/ false); if (thisType && !isProbablyGlobalType(thisType, sourceFile, typeChecker)) { for (var _i = 0, _a = getPropertiesForCompletion(thisType, typeChecker); _i < _a.length; _i++) { var symbol = _a[_i]; symbolToOriginInfoMap[symbols.length] = { kind: 1 /* SymbolOriginInfoKind.ThisType */ }; symbols.push(symbol); symbolToSortTextMap[ts.getSymbolId(symbol)] = Completions.SortText.SuggestedClassMembers; } } } collectAutoImports(); if (isTypeOnlyLocation) { keywordFilters = contextToken && ts.isAssertionExpression(contextToken.parent) ? 6 /* KeywordCompletionFilters.TypeAssertionKeywords */ : 7 /* KeywordCompletionFilters.TypeKeywords */; } } function shouldOfferImportCompletions() { // If already typing an import statement, provide completions for it. if (importCompletionNode) return true; // If current completion is for non-contextual Object literal shortahands, ignore auto-import symbols if (isNonContextualObjectLiteral) return false; // If not already a module, must have modules enabled. if (!preferences.includeCompletionsForModuleExports) return false; // If already using ES modules, OK to continue using them. if (sourceFile.externalModuleIndicator || sourceFile.commonJsModuleIndicator) return true; // If module transpilation is enabled or we're targeting es6 or above, or not emitting, OK. if (ts.compilerOptionsIndicateEsModules(program.getCompilerOptions())) return true; // If some file is using ES6 modules, assume that it's OK to add more. return ts.programContainsModules(program); } function isSnippetScope(scopeNode) { switch (scopeNode.kind) { case 305 /* SyntaxKind.SourceFile */: case 223 /* SyntaxKind.TemplateExpression */: case 288 /* SyntaxKind.JsxExpression */: case 235 /* SyntaxKind.Block */: return true; default: return ts.isStatement(scopeNode); } } function isTypeOnlyCompletion() { return insideJsDocTagTypeExpression || !!importCompletionNode && ts.isTypeOnlyImportOrExportDeclaration(location.parent) || !isContextTokenValueLocation(contextToken) && (ts.isPossiblyTypeArgumentPosition(contextToken, sourceFile, typeChecker) || ts.isPartOfTypeNode(location) || isContextTokenTypeLocation(contextToken)); } function isContextTokenValueLocation(contextToken) { return contextToken && ((contextToken.kind === 112 /* SyntaxKind.TypeOfKeyword */ && (contextToken.parent.kind === 181 /* SyntaxKind.TypeQuery */ || ts.isTypeOfExpression(contextToken.parent))) || (contextToken.kind === 128 /* SyntaxKind.AssertsKeyword */ && contextToken.parent.kind === 177 /* SyntaxKind.TypePredicate */)); } function isContextTokenTypeLocation(contextToken) { if (contextToken) { var parentKind = contextToken.parent.kind; switch (contextToken.kind) { case 58 /* SyntaxKind.ColonToken */: return parentKind === 167 /* SyntaxKind.PropertyDeclaration */ || parentKind === 166 /* SyntaxKind.PropertySignature */ || parentKind === 164 /* SyntaxKind.Parameter */ || parentKind === 254 /* SyntaxKind.VariableDeclaration */ || ts.isFunctionLikeKind(parentKind); case 63 /* SyntaxKind.EqualsToken */: return parentKind === 259 /* SyntaxKind.TypeAliasDeclaration */; case 127 /* SyntaxKind.AsKeyword */: return parentKind === 229 /* SyntaxKind.AsExpression */; case 29 /* SyntaxKind.LessThanToken */: return parentKind === 178 /* SyntaxKind.TypeReference */ || parentKind === 211 /* SyntaxKind.TypeAssertionExpression */; case 94 /* SyntaxKind.ExtendsKeyword */: return parentKind === 163 /* SyntaxKind.TypeParameter */; } } return false; } /** Mutates `symbols`, `symbolToOriginInfoMap`, and `symbolToSortTextMap` */ function collectAutoImports() { var _a, _b; if (!shouldOfferImportCompletions()) return; ts.Debug.assert(!(detailsEntryId === null || detailsEntryId === void 0 ? void 0 : detailsEntryId.data), "Should not run 'collectAutoImports' when faster path is available via `data`"); if (detailsEntryId && !detailsEntryId.source) { // Asking for completion details for an item that is not an auto-import return; } flags |= 1 /* CompletionInfoFlags.MayIncludeAutoImports */; // import { type | -> token text should be blank var isAfterTypeOnlyImportSpecifierModifier = previousToken === contextToken && importCompletionNode && couldBeTypeOnlyImportSpecifier(importCompletionNode, contextToken); var lowerCaseTokenText = isAfterTypeOnlyImportSpecifierModifier ? "" : previousToken && ts.isIdentifier(previousToken) ? previousToken.text.toLowerCase() : ""; var moduleSpecifierCache = (_a = host.getModuleSpecifierCache) === null || _a === void 0 ? void 0 : _a.call(host); var exportInfo = ts.getExportInfoMap(sourceFile, host, program, cancellationToken); var packageJsonAutoImportProvider = (_b = host.getPackageJsonAutoImportProvider) === null || _b === void 0 ? void 0 : _b.call(host); var packageJsonFilter = detailsEntryId ? undefined : ts.createPackageJsonImportFilter(sourceFile, preferences, host); resolvingModuleSpecifiers("collectAutoImports", host, importSpecifierResolver || (importSpecifierResolver = ts.codefix.createImportSpecifierResolver(sourceFile, program, host, preferences)), program, position, preferences, !!importCompletionNode, ts.isValidTypeOnlyAliasUseSite(location), function (context) { exportInfo.search(sourceFile.path, /*preferCapitalized*/ isRightOfOpenTag, function (symbolName, targetFlags) { if (!ts.isIdentifierText(symbolName, ts.getEmitScriptTarget(host.getCompilationSettings()))) return false; if (!detailsEntryId && ts.isStringANonContextualKeyword(symbolName)) return false; if (!isTypeOnlyLocation && !importCompletionNode && !(targetFlags & 111551 /* SymbolFlags.Value */)) return false; if (isTypeOnlyLocation && !(targetFlags & (1536 /* SymbolFlags.Module */ | 788968 /* SymbolFlags.Type */))) return false; // Do not try to auto-import something with a lowercase first letter for a JSX tag var firstChar = symbolName.charCodeAt(0); if (isRightOfOpenTag && (firstChar < 65 /* CharacterCodes.A */ || firstChar > 90 /* CharacterCodes.Z */)) return false; if (detailsEntryId) return true; return charactersFuzzyMatchInString(symbolName, lowerCaseTokenText); }, function (info, symbolName, isFromAmbientModule, exportMapKey) { var _a; if (detailsEntryId && !ts.some(info, function (i) { return detailsEntryId.source === ts.stripQuotes(i.moduleSymbol.name); })) { return; } // Do a relatively cheap check to bail early if all re-exports are non-importable // due to file location or package.json dependency filtering. For non-node16+ // module resolution modes, getting past this point guarantees that we'll be // able to generate a suitable module specifier, so we can safely show a completion, // even if we defer computing the module specifier. var firstImportableExportInfo = ts.find(info, isImportableExportInfo); if (!firstImportableExportInfo) { return; } // In node16+, module specifier resolution can fail due to modules being blocked // by package.json `exports`. If that happens, don't show a completion item. // N.B. in this resolution mode we always try to resolve module specifiers here, // because we have to know now if it's going to fail so we can omit the completion // from the list. var result = context.tryResolve(info, symbolName, isFromAmbientModule) || {}; if (result === "failed") return; // If we skipped resolving module specifiers, our selection of which ExportInfo // to use here is arbitrary, since the info shown in the completion list derived from // it should be identical regardless of which one is used. During the subsequent // `CompletionEntryDetails` request, we'll get all the ExportInfos again and pick // the best one based on the module specifier it produces. var exportInfo = firstImportableExportInfo, moduleSpecifier; if (result !== "skipped") { (_a = result.exportInfo, exportInfo = _a === void 0 ? firstImportableExportInfo : _a, moduleSpecifier = result.moduleSpecifier); } var isDefaultExport = exportInfo.exportKind === 1 /* ExportKind.Default */; var symbol = isDefaultExport && ts.getLocalSymbolForExportDefault(exportInfo.symbol) || exportInfo.symbol; pushAutoImportSymbol(symbol, { kind: moduleSpecifier ? 32 /* SymbolOriginInfoKind.ResolvedExport */ : 4 /* SymbolOriginInfoKind.Export */, moduleSpecifier: moduleSpecifier, symbolName: symbolName, exportMapKey: exportMapKey, exportName: exportInfo.exportKind === 2 /* ExportKind.ExportEquals */ ? "export=" /* InternalSymbolName.ExportEquals */ : exportInfo.symbol.name, fileName: exportInfo.moduleFileName, isDefaultExport: isDefaultExport, moduleSymbol: exportInfo.moduleSymbol, isFromPackageJson: exportInfo.isFromPackageJson, }); }); hasUnresolvedAutoImports = context.skippedAny(); flags |= context.resolvedAny() ? 8 /* CompletionInfoFlags.ResolvedModuleSpecifiers */ : 0; flags |= context.resolvedBeyondLimit() ? 16 /* CompletionInfoFlags.ResolvedModuleSpecifiersBeyondLimit */ : 0; }); function isImportableExportInfo(info) { var moduleFile = ts.tryCast(info.moduleSymbol.valueDeclaration, ts.isSourceFile); if (!moduleFile) { var moduleName = ts.stripQuotes(info.moduleSymbol.name); if (ts.JsTyping.nodeCoreModules.has(moduleName) && ts.startsWith(moduleName, "node:") !== ts.shouldUseUriStyleNodeCoreModules(sourceFile, program)) { return false; } return packageJsonFilter ? packageJsonFilter.allowsImportingAmbientModule(info.moduleSymbol, getModuleSpecifierResolutionHost(info.isFromPackageJson)) : true; } return ts.isImportableFile(info.isFromPackageJson ? packageJsonAutoImportProvider : program, sourceFile, moduleFile, preferences, packageJsonFilter, getModuleSpecifierResolutionHost(info.isFromPackageJson), moduleSpecifierCache); } } function pushAutoImportSymbol(symbol, origin) { var symbolId = ts.getSymbolId(symbol); if (symbolToSortTextMap[symbolId] === Completions.SortText.GlobalsOrKeywords) { // If an auto-importable symbol is available as a global, don't add the auto import return; } symbolToOriginInfoMap[symbols.length] = origin; symbolToSortTextMap[symbolId] = importCompletionNode ? Completions.SortText.LocationPriority : Completions.SortText.AutoImportSuggestions; symbols.push(symbol); } /* Mutates `symbols` and `symbolToOriginInfoMap`. */ function collectObjectLiteralMethodSymbols(members, enclosingDeclaration) { // TODO: support JS files. if (ts.isInJSFile(location)) { return; } members.forEach(function (member) { if (!isObjectLiteralMethodSymbol(member)) { return; } var displayName = getCompletionEntryDisplayNameForSymbol(member, ts.getEmitScriptTarget(compilerOptions), /*origin*/ undefined, 0 /* CompletionKind.ObjectPropertyDeclaration */, /*jsxIdentifierExpected*/ false); if (!displayName) { return; } var name = displayName.name; var entryProps = getEntryForObjectLiteralMethodCompletion(member, name, enclosingDeclaration, program, host, compilerOptions, preferences, formatContext); if (!entryProps) { return; } var origin = __assign({ kind: 128 /* SymbolOriginInfoKind.ObjectLiteralMethod */ }, entryProps); flags |= 32 /* CompletionInfoFlags.MayIncludeMethodSnippets */; symbolToOriginInfoMap[symbols.length] = origin; symbols.push(member); }); } function isObjectLiteralMethodSymbol(symbol) { /* For an object type `type Foo = { bar(x: number): void; foo: (x: string) => string; }`, `bar` will have symbol flag `Method`, `foo` will have symbol flag `Property`. */ if (!(symbol.flags & (4 /* SymbolFlags.Property */ | 8192 /* SymbolFlags.Method */))) { return false; } return true; } /** * Finds the first node that "embraces" the position, so that one may * accurately aggregate locals from the closest containing scope. */ function getScopeNode(initialToken, position, sourceFile) { var scope = initialToken; while (scope && !ts.positionBelongsToNode(scope, position, sourceFile)) { scope = scope.parent; } return scope; } function isCompletionListBlocker(contextToken) { var start = ts.timestamp(); var result = isInStringOrRegularExpressionOrTemplateLiteral(contextToken) || isSolelyIdentifierDefinitionLocation(contextToken) || isDotOfNumericLiteral(contextToken) || isInJsxText(contextToken) || ts.isBigIntLiteral(contextToken); log("getCompletionsAtPosition: isCompletionListBlocker: " + (ts.timestamp() - start)); return result; } function isInJsxText(contextToken) { if (contextToken.kind === 11 /* SyntaxKind.JsxText */) { return true; } if (contextToken.kind === 31 /* SyntaxKind.GreaterThanToken */ && contextToken.parent) { // /**/ /> // /**/ > // - contextToken: GreaterThanToken (before cursor) // - location: JsxSelfClosingElement or JsxOpeningElement // - contextToken.parent === location if (location === contextToken.parent && (location.kind === 280 /* SyntaxKind.JsxOpeningElement */ || location.kind === 279 /* SyntaxKind.JsxSelfClosingElement */)) { return false; } if (contextToken.parent.kind === 280 /* SyntaxKind.JsxOpeningElement */) { //
/**/ // - contextToken: GreaterThanToken (before cursor) // - location: JSXElement // - different parents (JSXOpeningElement, JSXElement) return location.parent.kind !== 280 /* SyntaxKind.JsxOpeningElement */; } if (contextToken.parent.kind === 281 /* SyntaxKind.JsxClosingElement */ || contextToken.parent.kind === 279 /* SyntaxKind.JsxSelfClosingElement */) { return !!contextToken.parent.parent && contextToken.parent.parent.kind === 278 /* SyntaxKind.JsxElement */; } } return false; } function isNewIdentifierDefinitionLocation() { if (contextToken) { var containingNodeKind = contextToken.parent.kind; var tokenKind = keywordForNode(contextToken); // Previous token may have been a keyword that was converted to an identifier. switch (tokenKind) { case 27 /* SyntaxKind.CommaToken */: return containingNodeKind === 208 /* SyntaxKind.CallExpression */ // func( a, | || containingNodeKind === 171 /* SyntaxKind.Constructor */ // constructor( a, | /* public, protected, private keywords are allowed here, so show completion */ || containingNodeKind === 209 /* SyntaxKind.NewExpression */ // new C(a, | || containingNodeKind === 204 /* SyntaxKind.ArrayLiteralExpression */ // [a, | || containingNodeKind === 221 /* SyntaxKind.BinaryExpression */ // const x = (a, | || containingNodeKind === 179 /* SyntaxKind.FunctionType */ // var x: (s: string, list| || containingNodeKind === 205 /* SyntaxKind.ObjectLiteralExpression */; // const obj = { x, | case 20 /* SyntaxKind.OpenParenToken */: return containingNodeKind === 208 /* SyntaxKind.CallExpression */ // func( | || containingNodeKind === 171 /* SyntaxKind.Constructor */ // constructor( | || containingNodeKind === 209 /* SyntaxKind.NewExpression */ // new C(a| || containingNodeKind === 212 /* SyntaxKind.ParenthesizedExpression */ // const x = (a| || containingNodeKind === 191 /* SyntaxKind.ParenthesizedType */; // function F(pred: (a| /* this can become an arrow function, where 'a' is the argument */ case 22 /* SyntaxKind.OpenBracketToken */: return containingNodeKind === 204 /* SyntaxKind.ArrayLiteralExpression */ // [ | || containingNodeKind === 176 /* SyntaxKind.IndexSignature */ // [ | : string ] || containingNodeKind === 162 /* SyntaxKind.ComputedPropertyName */; // [ | /* this can become an index signature */ case 141 /* SyntaxKind.ModuleKeyword */: // module | case 142 /* SyntaxKind.NamespaceKeyword */: // namespace | case 100 /* SyntaxKind.ImportKeyword */: // import | return true; case 24 /* SyntaxKind.DotToken */: return containingNodeKind === 261 /* SyntaxKind.ModuleDeclaration */; // module A.| case 18 /* SyntaxKind.OpenBraceToken */: return containingNodeKind === 257 /* SyntaxKind.ClassDeclaration */ // class A { | || containingNodeKind === 205 /* SyntaxKind.ObjectLiteralExpression */; // const obj = { | case 63 /* SyntaxKind.EqualsToken */: return containingNodeKind === 254 /* SyntaxKind.VariableDeclaration */ // const x = a| || containingNodeKind === 221 /* SyntaxKind.BinaryExpression */; // x = a| case 15 /* SyntaxKind.TemplateHead */: return containingNodeKind === 223 /* SyntaxKind.TemplateExpression */; // `aa ${| case 16 /* SyntaxKind.TemplateMiddle */: return containingNodeKind === 233 /* SyntaxKind.TemplateSpan */; // `aa ${10} dd ${| case 131 /* SyntaxKind.AsyncKeyword */: return containingNodeKind === 169 /* SyntaxKind.MethodDeclaration */ // const obj = { async c|() || containingNodeKind === 297 /* SyntaxKind.ShorthandPropertyAssignment */; // const obj = { async c| case 41 /* SyntaxKind.AsteriskToken */: return containingNodeKind === 169 /* SyntaxKind.MethodDeclaration */; // const obj = { * c| } if (isClassMemberCompletionKeyword(tokenKind)) { return true; } } return false; } function isInStringOrRegularExpressionOrTemplateLiteral(contextToken) { // To be "in" one of these literals, the position has to be: // 1. entirely within the token text. // 2. at the end position of an unterminated token. // 3. at the end of a regular expression (due to trailing flags like '/foo/g'). return (ts.isRegularExpressionLiteral(contextToken) || ts.isStringTextContainingNode(contextToken)) && (ts.rangeContainsPositionExclusive(ts.createTextRangeFromSpan(ts.createTextSpanFromNode(contextToken)), position) || position === contextToken.end && (!!contextToken.isUnterminated || ts.isRegularExpressionLiteral(contextToken))); } function tryGetObjectTypeLiteralInTypeArgumentCompletionSymbols() { var typeLiteralNode = tryGetTypeLiteralNode(contextToken); if (!typeLiteralNode) return 0 /* GlobalsSearch.Continue */; var intersectionTypeNode = ts.isIntersectionTypeNode(typeLiteralNode.parent) ? typeLiteralNode.parent : undefined; var containerTypeNode = intersectionTypeNode || typeLiteralNode; var containerExpectedType = getConstraintOfTypeArgumentProperty(containerTypeNode, typeChecker); if (!containerExpectedType) return 0 /* GlobalsSearch.Continue */; var containerActualType = typeChecker.getTypeFromTypeNode(containerTypeNode); var members = getPropertiesForCompletion(containerExpectedType, typeChecker); var existingMembers = getPropertiesForCompletion(containerActualType, typeChecker); var existingMemberEscapedNames = new ts.Set(); existingMembers.forEach(function (s) { return existingMemberEscapedNames.add(s.escapedName); }); symbols = ts.concatenate(symbols, ts.filter(members, function (s) { return !existingMemberEscapedNames.has(s.escapedName); })); completionKind = 0 /* CompletionKind.ObjectPropertyDeclaration */; isNewIdentifierLocation = true; return 1 /* GlobalsSearch.Success */; } /** * Aggregates relevant symbols for completion in object literals and object binding patterns. * Relevant symbols are stored in the captured 'symbols' variable. * * @returns true if 'symbols' was successfully populated; false otherwise. */ function tryGetObjectLikeCompletionSymbols() { var symbolsStartIndex = symbols.length; var objectLikeContainer = tryGetObjectLikeCompletionContainer(contextToken); if (!objectLikeContainer) return 0 /* GlobalsSearch.Continue */; // We're looking up possible property names from contextual/inferred/declared type. completionKind = 0 /* CompletionKind.ObjectPropertyDeclaration */; var typeMembers; var existingMembers; if (objectLikeContainer.kind === 205 /* SyntaxKind.ObjectLiteralExpression */) { var instantiatedType = tryGetObjectLiteralContextualType(objectLikeContainer, typeChecker); // Check completions for Object property value shorthand if (instantiatedType === undefined) { if (objectLikeContainer.flags & 33554432 /* NodeFlags.InWithStatement */) { return 2 /* GlobalsSearch.Fail */; } isNonContextualObjectLiteral = true; return 0 /* GlobalsSearch.Continue */; } var completionsType = typeChecker.getContextualType(objectLikeContainer, 4 /* ContextFlags.Completions */); var hasStringIndexType = (completionsType || instantiatedType).getStringIndexType(); var hasNumberIndextype = (completionsType || instantiatedType).getNumberIndexType(); isNewIdentifierLocation = !!hasStringIndexType || !!hasNumberIndextype; typeMembers = getPropertiesForObjectExpression(instantiatedType, completionsType, objectLikeContainer, typeChecker); existingMembers = objectLikeContainer.properties; if (typeMembers.length === 0) { // Edge case: If NumberIndexType exists if (!hasNumberIndextype) { isNonContextualObjectLiteral = true; return 0 /* GlobalsSearch.Continue */; } } } else { ts.Debug.assert(objectLikeContainer.kind === 201 /* SyntaxKind.ObjectBindingPattern */); // We are *only* completing on properties from the type being destructured. isNewIdentifierLocation = false; var rootDeclaration = ts.getRootDeclaration(objectLikeContainer.parent); if (!ts.isVariableLike(rootDeclaration)) return ts.Debug.fail("Root declaration is not variable-like."); // We don't want to complete using the type acquired by the shape // of the binding pattern; we are only interested in types acquired // through type declaration or inference. // Also proceed if rootDeclaration is a parameter and if its containing function expression/arrow function is contextually typed - // type of parameter will flow in from the contextual type of the function var canGetType = ts.hasInitializer(rootDeclaration) || !!ts.getEffectiveTypeAnnotationNode(rootDeclaration) || rootDeclaration.parent.parent.kind === 244 /* SyntaxKind.ForOfStatement */; if (!canGetType && rootDeclaration.kind === 164 /* SyntaxKind.Parameter */) { if (ts.isExpression(rootDeclaration.parent)) { canGetType = !!typeChecker.getContextualType(rootDeclaration.parent); } else if (rootDeclaration.parent.kind === 169 /* SyntaxKind.MethodDeclaration */ || rootDeclaration.parent.kind === 173 /* SyntaxKind.SetAccessor */) { canGetType = ts.isExpression(rootDeclaration.parent.parent) && !!typeChecker.getContextualType(rootDeclaration.parent.parent); } } if (canGetType) { var typeForObject_1 = typeChecker.getTypeAtLocation(objectLikeContainer); if (!typeForObject_1) return 2 /* GlobalsSearch.Fail */; typeMembers = typeChecker.getPropertiesOfType(typeForObject_1).filter(function (propertySymbol) { return typeChecker.isPropertyAccessible(objectLikeContainer, /*isSuper*/ false, /*writing*/ false, typeForObject_1, propertySymbol); }); existingMembers = objectLikeContainer.elements; } } if (typeMembers && typeMembers.length > 0) { // Add filtered items to the completion list var filteredMembers = filterObjectMembersList(typeMembers, ts.Debug.checkDefined(existingMembers)); symbols = ts.concatenate(symbols, filteredMembers); setSortTextToOptionalMember(); if (objectLikeContainer.kind === 205 /* SyntaxKind.ObjectLiteralExpression */ && preferences.includeCompletionsWithObjectLiteralMethodSnippets && preferences.includeCompletionsWithInsertText) { transformObjectLiteralMembersSortText(symbolsStartIndex); collectObjectLiteralMethodSymbols(filteredMembers, objectLikeContainer); } } return 1 /* GlobalsSearch.Success */; } /** * Aggregates relevant symbols for completion in import clauses and export clauses * whose declarations have a module specifier; for instance, symbols will be aggregated for * * import { | } from "moduleName"; * export { a as foo, | } from "moduleName"; * * but not for * * export { | }; * * Relevant symbols are stored in the captured 'symbols' variable. */ function tryGetImportOrExportClauseCompletionSymbols() { if (!contextToken) return 0 /* GlobalsSearch.Continue */; // `import { |` or `import { a as 0, | }` or `import { type | }` var namedImportsOrExports = contextToken.kind === 18 /* SyntaxKind.OpenBraceToken */ || contextToken.kind === 27 /* SyntaxKind.CommaToken */ ? ts.tryCast(contextToken.parent, ts.isNamedImportsOrExports) : ts.isTypeKeywordTokenOrIdentifier(contextToken) ? ts.tryCast(contextToken.parent.parent, ts.isNamedImportsOrExports) : undefined; if (!namedImportsOrExports) return 0 /* GlobalsSearch.Continue */; // We can at least offer `type` at `import { |` if (!ts.isTypeKeywordTokenOrIdentifier(contextToken)) { keywordFilters = 8 /* KeywordCompletionFilters.TypeKeyword */; } // try to show exported member for imported/re-exported module var moduleSpecifier = (namedImportsOrExports.kind === 269 /* SyntaxKind.NamedImports */ ? namedImportsOrExports.parent.parent : namedImportsOrExports.parent).moduleSpecifier; if (!moduleSpecifier) { isNewIdentifierLocation = true; return namedImportsOrExports.kind === 269 /* SyntaxKind.NamedImports */ ? 2 /* GlobalsSearch.Fail */ : 0 /* GlobalsSearch.Continue */; } var moduleSpecifierSymbol = typeChecker.getSymbolAtLocation(moduleSpecifier); // TODO: GH#18217 if (!moduleSpecifierSymbol) { isNewIdentifierLocation = true; return 2 /* GlobalsSearch.Fail */; } completionKind = 3 /* CompletionKind.MemberLike */; isNewIdentifierLocation = false; var exports = typeChecker.getExportsAndPropertiesOfModule(moduleSpecifierSymbol); var existing = new ts.Set(namedImportsOrExports.elements.filter(function (n) { return !isCurrentlyEditingNode(n); }).map(function (n) { return (n.propertyName || n.name).escapedText; })); var uniques = exports.filter(function (e) { return e.escapedName !== "default" /* InternalSymbolName.Default */ && !existing.has(e.escapedName); }); symbols = ts.concatenate(symbols, uniques); if (!uniques.length) { // If there's nothing else to import, don't offer `type` either keywordFilters = 0 /* KeywordCompletionFilters.None */; } return 1 /* GlobalsSearch.Success */; } /** * Adds local declarations for completions in named exports: * * export { | }; * * Does not check for the absence of a module specifier (`export {} from "./other"`) * because `tryGetImportOrExportClauseCompletionSymbols` runs first and handles that, * preventing this function from running. */ function tryGetLocalNamedExportCompletionSymbols() { var _a; var namedExports = contextToken && (contextToken.kind === 18 /* SyntaxKind.OpenBraceToken */ || contextToken.kind === 27 /* SyntaxKind.CommaToken */) ? ts.tryCast(contextToken.parent, ts.isNamedExports) : undefined; if (!namedExports) { return 0 /* GlobalsSearch.Continue */; } var localsContainer = ts.findAncestor(namedExports, ts.or(ts.isSourceFile, ts.isModuleDeclaration)); completionKind = 5 /* CompletionKind.None */; isNewIdentifierLocation = false; (_a = localsContainer.locals) === null || _a === void 0 ? void 0 : _a.forEach(function (symbol, name) { var _a, _b; symbols.push(symbol); if ((_b = (_a = localsContainer.symbol) === null || _a === void 0 ? void 0 : _a.exports) === null || _b === void 0 ? void 0 : _b.has(name)) { symbolToSortTextMap[ts.getSymbolId(symbol)] = Completions.SortText.OptionalMember; } }); return 1 /* GlobalsSearch.Success */; } /** * Aggregates relevant symbols for completion in class declaration * Relevant symbols are stored in the captured 'symbols' variable. */ function tryGetClassLikeCompletionSymbols() { var decl = tryGetObjectTypeDeclarationCompletionContainer(sourceFile, contextToken, location, position); if (!decl) return 0 /* GlobalsSearch.Continue */; // We're looking up possible property names from parent type. completionKind = 3 /* CompletionKind.MemberLike */; // Declaring new property/method/accessor isNewIdentifierLocation = true; keywordFilters = contextToken.kind === 41 /* SyntaxKind.AsteriskToken */ ? 0 /* KeywordCompletionFilters.None */ : ts.isClassLike(decl) ? 2 /* KeywordCompletionFilters.ClassElementKeywords */ : 3 /* KeywordCompletionFilters.InterfaceElementKeywords */; // If you're in an interface you don't want to repeat things from super-interface. So just stop here. if (!ts.isClassLike(decl)) return 1 /* GlobalsSearch.Success */; var classElement = contextToken.kind === 26 /* SyntaxKind.SemicolonToken */ ? contextToken.parent.parent : contextToken.parent; var classElementModifierFlags = ts.isClassElement(classElement) ? ts.getEffectiveModifierFlags(classElement) : 0 /* ModifierFlags.None */; // If this is context token is not something we are editing now, consider if this would lead to be modifier if (contextToken.kind === 79 /* SyntaxKind.Identifier */ && !isCurrentlyEditingNode(contextToken)) { switch (contextToken.getText()) { case "private": classElementModifierFlags = classElementModifierFlags | 8 /* ModifierFlags.Private */; break; case "static": classElementModifierFlags = classElementModifierFlags | 32 /* ModifierFlags.Static */; break; case "override": classElementModifierFlags = classElementModifierFlags | 16384 /* ModifierFlags.Override */; break; } } if (ts.isClassStaticBlockDeclaration(classElement)) { classElementModifierFlags |= 32 /* ModifierFlags.Static */; } // No member list for private methods if (!(classElementModifierFlags & 8 /* ModifierFlags.Private */)) { // List of property symbols of base type that are not private and already implemented var baseTypeNodes = ts.isClassLike(decl) && classElementModifierFlags & 16384 /* ModifierFlags.Override */ ? ts.singleElementArray(ts.getEffectiveBaseTypeNode(decl)) : ts.getAllSuperTypeNodes(decl); var baseSymbols = ts.flatMap(baseTypeNodes, function (baseTypeNode) { var type = typeChecker.getTypeAtLocation(baseTypeNode); return classElementModifierFlags & 32 /* ModifierFlags.Static */ ? (type === null || type === void 0 ? void 0 : type.symbol) && typeChecker.getPropertiesOfType(typeChecker.getTypeOfSymbolAtLocation(type.symbol, decl)) : type && typeChecker.getPropertiesOfType(type); }); symbols = ts.concatenate(symbols, filterClassMembersList(baseSymbols, decl.members, classElementModifierFlags)); } return 1 /* GlobalsSearch.Success */; } function isConstructorParameterCompletion(node) { return !!node.parent && ts.isParameter(node.parent) && ts.isConstructorDeclaration(node.parent.parent) && (ts.isParameterPropertyModifier(node.kind) || ts.isDeclarationName(node)); } /** * Returns the immediate owning class declaration of a context token, * on the condition that one exists and that the context implies completion should be given. */ function tryGetConstructorLikeCompletionContainer(contextToken) { if (contextToken) { var parent = contextToken.parent; switch (contextToken.kind) { case 20 /* SyntaxKind.OpenParenToken */: case 27 /* SyntaxKind.CommaToken */: return ts.isConstructorDeclaration(contextToken.parent) ? contextToken.parent : undefined; default: if (isConstructorParameterCompletion(contextToken)) { return parent.parent; } } } return undefined; } function tryGetFunctionLikeBodyCompletionContainer(contextToken) { if (contextToken) { var prev_1; var container = ts.findAncestor(contextToken.parent, function (node) { if (ts.isClassLike(node)) { return "quit"; } if (ts.isFunctionLikeDeclaration(node) && prev_1 === node.body) { return true; } prev_1 = node; return false; }); return container && container; } } function tryGetContainingJsxElement(contextToken) { if (contextToken) { var parent = contextToken.parent; switch (contextToken.kind) { case 31 /* SyntaxKind.GreaterThanToken */: // End of a type argument list case 30 /* SyntaxKind.LessThanSlashToken */: case 43 /* SyntaxKind.SlashToken */: case 79 /* SyntaxKind.Identifier */: case 206 /* SyntaxKind.PropertyAccessExpression */: case 286 /* SyntaxKind.JsxAttributes */: case 285 /* SyntaxKind.JsxAttribute */: case 287 /* SyntaxKind.JsxSpreadAttribute */: if (parent && (parent.kind === 279 /* SyntaxKind.JsxSelfClosingElement */ || parent.kind === 280 /* SyntaxKind.JsxOpeningElement */)) { if (contextToken.kind === 31 /* SyntaxKind.GreaterThanToken */) { var precedingToken = ts.findPrecedingToken(contextToken.pos, sourceFile, /*startNode*/ undefined); if (!parent.typeArguments || (precedingToken && precedingToken.kind === 43 /* SyntaxKind.SlashToken */)) break; } return parent; } else if (parent.kind === 285 /* SyntaxKind.JsxAttribute */) { // Currently we parse JsxOpeningLikeElement as: // JsxOpeningLikeElement // attributes: JsxAttributes // properties: NodeArray return parent.parent.parent; } break; // The context token is the closing } or " of an attribute, which means // its parent is a JsxExpression, whose parent is a JsxAttribute, // whose parent is a JsxOpeningLikeElement case 10 /* SyntaxKind.StringLiteral */: if (parent && ((parent.kind === 285 /* SyntaxKind.JsxAttribute */) || (parent.kind === 287 /* SyntaxKind.JsxSpreadAttribute */))) { // Currently we parse JsxOpeningLikeElement as: // JsxOpeningLikeElement // attributes: JsxAttributes // properties: NodeArray return parent.parent.parent; } break; case 19 /* SyntaxKind.CloseBraceToken */: if (parent && parent.kind === 288 /* SyntaxKind.JsxExpression */ && parent.parent && parent.parent.kind === 285 /* SyntaxKind.JsxAttribute */) { // Currently we parse JsxOpeningLikeElement as: // JsxOpeningLikeElement // attributes: JsxAttributes // properties: NodeArray // each JsxAttribute can have initializer as JsxExpression return parent.parent.parent.parent; } if (parent && parent.kind === 287 /* SyntaxKind.JsxSpreadAttribute */) { // Currently we parse JsxOpeningLikeElement as: // JsxOpeningLikeElement // attributes: JsxAttributes // properties: NodeArray return parent.parent.parent; } break; } } return undefined; } /** * @returns true if we are certain that the currently edited location must define a new location; false otherwise. */ function isSolelyIdentifierDefinitionLocation(contextToken) { var parent = contextToken.parent; var containingNodeKind = parent.kind; switch (contextToken.kind) { case 27 /* SyntaxKind.CommaToken */: return containingNodeKind === 254 /* SyntaxKind.VariableDeclaration */ || isVariableDeclarationListButNotTypeArgument(contextToken) || containingNodeKind === 237 /* SyntaxKind.VariableStatement */ || containingNodeKind === 260 /* SyntaxKind.EnumDeclaration */ || // enum a { foo, | isFunctionLikeButNotConstructor(containingNodeKind) || containingNodeKind === 258 /* SyntaxKind.InterfaceDeclaration */ || // interface A= contextToken.pos); case 24 /* SyntaxKind.DotToken */: return containingNodeKind === 202 /* SyntaxKind.ArrayBindingPattern */; // var [.| case 58 /* SyntaxKind.ColonToken */: return containingNodeKind === 203 /* SyntaxKind.BindingElement */; // var {x :html| case 22 /* SyntaxKind.OpenBracketToken */: return containingNodeKind === 202 /* SyntaxKind.ArrayBindingPattern */; // var [x| case 20 /* SyntaxKind.OpenParenToken */: return containingNodeKind === 292 /* SyntaxKind.CatchClause */ || isFunctionLikeButNotConstructor(containingNodeKind); case 18 /* SyntaxKind.OpenBraceToken */: return containingNodeKind === 260 /* SyntaxKind.EnumDeclaration */; // enum a { | case 29 /* SyntaxKind.LessThanToken */: return containingNodeKind === 257 /* SyntaxKind.ClassDeclaration */ || // class A< | containingNodeKind === 226 /* SyntaxKind.ClassExpression */ || // var C = class D< | containingNodeKind === 258 /* SyntaxKind.InterfaceDeclaration */ || // interface A< | containingNodeKind === 259 /* SyntaxKind.TypeAliasDeclaration */ || // type List< | ts.isFunctionLikeKind(containingNodeKind); case 124 /* SyntaxKind.StaticKeyword */: return containingNodeKind === 167 /* SyntaxKind.PropertyDeclaration */ && !ts.isClassLike(parent.parent); case 25 /* SyntaxKind.DotDotDotToken */: return containingNodeKind === 164 /* SyntaxKind.Parameter */ || (!!parent.parent && parent.parent.kind === 202 /* SyntaxKind.ArrayBindingPattern */); // var [...z| case 123 /* SyntaxKind.PublicKeyword */: case 121 /* SyntaxKind.PrivateKeyword */: case 122 /* SyntaxKind.ProtectedKeyword */: return containingNodeKind === 164 /* SyntaxKind.Parameter */ && !ts.isConstructorDeclaration(parent.parent); case 127 /* SyntaxKind.AsKeyword */: return containingNodeKind === 270 /* SyntaxKind.ImportSpecifier */ || containingNodeKind === 275 /* SyntaxKind.ExportSpecifier */ || containingNodeKind === 268 /* SyntaxKind.NamespaceImport */; case 136 /* SyntaxKind.GetKeyword */: case 149 /* SyntaxKind.SetKeyword */: return !isFromObjectTypeDeclaration(contextToken); case 79 /* SyntaxKind.Identifier */: if (containingNodeKind === 270 /* SyntaxKind.ImportSpecifier */ && contextToken === parent.name && contextToken.text === "type") { // import { type | } return false; } break; case 84 /* SyntaxKind.ClassKeyword */: case 92 /* SyntaxKind.EnumKeyword */: case 118 /* SyntaxKind.InterfaceKeyword */: case 98 /* SyntaxKind.FunctionKeyword */: case 113 /* SyntaxKind.VarKeyword */: case 100 /* SyntaxKind.ImportKeyword */: case 119 /* SyntaxKind.LetKeyword */: case 85 /* SyntaxKind.ConstKeyword */: case 137 /* SyntaxKind.InferKeyword */: return true; case 152 /* SyntaxKind.TypeKeyword */: // import { type foo| } return containingNodeKind !== 270 /* SyntaxKind.ImportSpecifier */; case 41 /* SyntaxKind.AsteriskToken */: return ts.isFunctionLike(contextToken.parent) && !ts.isMethodDeclaration(contextToken.parent); } // If the previous token is keyword corresponding to class member completion keyword // there will be completion available here if (isClassMemberCompletionKeyword(keywordForNode(contextToken)) && isFromObjectTypeDeclaration(contextToken)) { return false; } if (isConstructorParameterCompletion(contextToken)) { // constructor parameter completion is available only if // - its modifier of the constructor parameter or // - its name of the parameter and not being edited // eg. constructor(a |<- this shouldnt show completion if (!ts.isIdentifier(contextToken) || ts.isParameterPropertyModifier(keywordForNode(contextToken)) || isCurrentlyEditingNode(contextToken)) { return false; } } // Previous token may have been a keyword that was converted to an identifier. switch (keywordForNode(contextToken)) { case 126 /* SyntaxKind.AbstractKeyword */: case 84 /* SyntaxKind.ClassKeyword */: case 85 /* SyntaxKind.ConstKeyword */: case 135 /* SyntaxKind.DeclareKeyword */: case 92 /* SyntaxKind.EnumKeyword */: case 98 /* SyntaxKind.FunctionKeyword */: case 118 /* SyntaxKind.InterfaceKeyword */: case 119 /* SyntaxKind.LetKeyword */: case 121 /* SyntaxKind.PrivateKeyword */: case 122 /* SyntaxKind.ProtectedKeyword */: case 123 /* SyntaxKind.PublicKeyword */: case 124 /* SyntaxKind.StaticKeyword */: case 113 /* SyntaxKind.VarKeyword */: return true; case 131 /* SyntaxKind.AsyncKeyword */: return ts.isPropertyDeclaration(contextToken.parent); } // If we are inside a class declaration, and `constructor` is totally not present, // but we request a completion manually at a whitespace... var ancestorClassLike = ts.findAncestor(contextToken.parent, ts.isClassLike); if (ancestorClassLike && contextToken === previousToken && isPreviousPropertyDeclarationTerminated(contextToken, position)) { return false; // Don't block completions. } var ancestorPropertyDeclaraion = ts.getAncestor(contextToken.parent, 167 /* SyntaxKind.PropertyDeclaration */); // If we are inside a class declaration and typing `constructor` after property declaration... if (ancestorPropertyDeclaraion && contextToken !== previousToken && ts.isClassLike(previousToken.parent.parent) // And the cursor is at the token... && position <= previousToken.end) { // If we are sure that the previous property declaration is terminated according to newline or semicolon... if (isPreviousPropertyDeclarationTerminated(contextToken, previousToken.end)) { return false; // Don't block completions. } else if (contextToken.kind !== 63 /* SyntaxKind.EqualsToken */ // Should not block: `class C { blah = c/**/ }` // But should block: `class C { blah = somewhat c/**/ }` and `class C { blah: SomeType c/**/ }` && (ts.isInitializedProperty(ancestorPropertyDeclaraion) || ts.hasType(ancestorPropertyDeclaraion))) { return true; } } return ts.isDeclarationName(contextToken) && !ts.isShorthandPropertyAssignment(contextToken.parent) && !ts.isJsxAttribute(contextToken.parent) // Don't block completions if we're in `class C /**/`, because we're *past* the end of the identifier and might want to complete `extends`. // If `contextToken !== previousToken`, this is `class C ex/**/`. && !(ts.isClassLike(contextToken.parent) && (contextToken !== previousToken || position > previousToken.end)); } function isPreviousPropertyDeclarationTerminated(contextToken, position) { return contextToken.kind !== 63 /* SyntaxKind.EqualsToken */ && (contextToken.kind === 26 /* SyntaxKind.SemicolonToken */ || !ts.positionsAreOnSameLine(contextToken.end, position, sourceFile)); } function isFunctionLikeButNotConstructor(kind) { return ts.isFunctionLikeKind(kind) && kind !== 171 /* SyntaxKind.Constructor */; } function isDotOfNumericLiteral(contextToken) { if (contextToken.kind === 8 /* SyntaxKind.NumericLiteral */) { var text = contextToken.getFullText(); return text.charAt(text.length - 1) === "."; } return false; } function isVariableDeclarationListButNotTypeArgument(node) { return node.parent.kind === 255 /* SyntaxKind.VariableDeclarationList */ && !ts.isPossiblyTypeArgumentPosition(node, sourceFile, typeChecker); } /** * Filters out completion suggestions for named imports or exports. * * @returns Symbols to be suggested in an object binding pattern or object literal expression, barring those whose declarations * do not occur at the current position and have not otherwise been typed. */ function filterObjectMembersList(contextualMemberSymbols, existingMembers) { if (existingMembers.length === 0) { return contextualMemberSymbols; } var membersDeclaredBySpreadAssignment = new ts.Set(); var existingMemberNames = new ts.Set(); for (var _i = 0, existingMembers_1 = existingMembers; _i < existingMembers_1.length; _i++) { var m = existingMembers_1[_i]; // Ignore omitted expressions for missing members if (m.kind !== 296 /* SyntaxKind.PropertyAssignment */ && m.kind !== 297 /* SyntaxKind.ShorthandPropertyAssignment */ && m.kind !== 203 /* SyntaxKind.BindingElement */ && m.kind !== 169 /* SyntaxKind.MethodDeclaration */ && m.kind !== 172 /* SyntaxKind.GetAccessor */ && m.kind !== 173 /* SyntaxKind.SetAccessor */ && m.kind !== 298 /* SyntaxKind.SpreadAssignment */) { continue; } // If this is the current item we are editing right now, do not filter it out if (isCurrentlyEditingNode(m)) { continue; } var existingName = void 0; if (ts.isSpreadAssignment(m)) { setMembersDeclaredBySpreadAssignment(m, membersDeclaredBySpreadAssignment); } else if (ts.isBindingElement(m) && m.propertyName) { // include only identifiers in completion list if (m.propertyName.kind === 79 /* SyntaxKind.Identifier */) { existingName = m.propertyName.escapedText; } } else { // TODO: Account for computed property name // NOTE: if one only performs this step when m.name is an identifier, // things like '__proto__' are not filtered out. var name = ts.getNameOfDeclaration(m); existingName = name && ts.isPropertyNameLiteral(name) ? ts.getEscapedTextOfIdentifierOrLiteral(name) : undefined; } if (existingName !== undefined) { existingMemberNames.add(existingName); } } var filteredSymbols = contextualMemberSymbols.filter(function (m) { return !existingMemberNames.has(m.escapedName); }); setSortTextToMemberDeclaredBySpreadAssignment(membersDeclaredBySpreadAssignment, filteredSymbols); return filteredSymbols; } function setMembersDeclaredBySpreadAssignment(declaration, membersDeclaredBySpreadAssignment) { var expression = declaration.expression; var symbol = typeChecker.getSymbolAtLocation(expression); var type = symbol && typeChecker.getTypeOfSymbolAtLocation(symbol, expression); var properties = type && type.properties; if (properties) { properties.forEach(function (property) { membersDeclaredBySpreadAssignment.add(property.name); }); } } // Set SortText to OptionalMember if it is an optional member function setSortTextToOptionalMember() { symbols.forEach(function (m) { var _a; if (m.flags & 16777216 /* SymbolFlags.Optional */) { var symbolId = ts.getSymbolId(m); symbolToSortTextMap[symbolId] = (_a = symbolToSortTextMap[symbolId]) !== null && _a !== void 0 ? _a : Completions.SortText.OptionalMember; } }); } // Set SortText to MemberDeclaredBySpreadAssignment if it is fulfilled by spread assignment function setSortTextToMemberDeclaredBySpreadAssignment(membersDeclaredBySpreadAssignment, contextualMemberSymbols) { if (membersDeclaredBySpreadAssignment.size === 0) { return; } for (var _i = 0, contextualMemberSymbols_1 = contextualMemberSymbols; _i < contextualMemberSymbols_1.length; _i++) { var contextualMemberSymbol = contextualMemberSymbols_1[_i]; if (membersDeclaredBySpreadAssignment.has(contextualMemberSymbol.name)) { symbolToSortTextMap[ts.getSymbolId(contextualMemberSymbol)] = Completions.SortText.MemberDeclaredBySpreadAssignment; } } } function transformObjectLiteralMembersSortText(start) { var _a; for (var i = start; i < symbols.length; i++) { var symbol = symbols[i]; var symbolId = ts.getSymbolId(symbol); var origin = symbolToOriginInfoMap === null || symbolToOriginInfoMap === void 0 ? void 0 : symbolToOriginInfoMap[i]; var target = ts.getEmitScriptTarget(compilerOptions); var displayName = getCompletionEntryDisplayNameForSymbol(symbol, target, origin, 0 /* CompletionKind.ObjectPropertyDeclaration */, /*jsxIdentifierExpected*/ false); if (displayName) { var originalSortText = (_a = symbolToSortTextMap[symbolId]) !== null && _a !== void 0 ? _a : Completions.SortText.LocationPriority; var name = displayName.name; symbolToSortTextMap[symbolId] = Completions.SortText.ObjectLiteralProperty(originalSortText, name); } } } /** * Filters out completion suggestions for class elements. * * @returns Symbols to be suggested in an class element depending on existing memebers and symbol flags */ function filterClassMembersList(baseSymbols, existingMembers, currentClassElementModifierFlags) { var existingMemberNames = new ts.Set(); for (var _i = 0, existingMembers_2 = existingMembers; _i < existingMembers_2.length; _i++) { var m = existingMembers_2[_i]; // Ignore omitted expressions for missing members if (m.kind !== 167 /* SyntaxKind.PropertyDeclaration */ && m.kind !== 169 /* SyntaxKind.MethodDeclaration */ && m.kind !== 172 /* SyntaxKind.GetAccessor */ && m.kind !== 173 /* SyntaxKind.SetAccessor */) { continue; } // If this is the current item we are editing right now, do not filter it out if (isCurrentlyEditingNode(m)) { continue; } // Dont filter member even if the name matches if it is declared private in the list if (ts.hasEffectiveModifier(m, 8 /* ModifierFlags.Private */)) { continue; } // do not filter it out if the static presence doesnt match if (ts.isStatic(m) !== !!(currentClassElementModifierFlags & 32 /* ModifierFlags.Static */)) { continue; } var existingName = ts.getPropertyNameForPropertyNameNode(m.name); if (existingName) { existingMemberNames.add(existingName); } } return baseSymbols.filter(function (propertySymbol) { return !existingMemberNames.has(propertySymbol.escapedName) && !!propertySymbol.declarations && !(ts.getDeclarationModifierFlagsFromSymbol(propertySymbol) & 8 /* ModifierFlags.Private */) && !(propertySymbol.valueDeclaration && ts.isPrivateIdentifierClassElementDeclaration(propertySymbol.valueDeclaration)); }); } /** * Filters out completion suggestions from 'symbols' according to existing JSX attributes. * * @returns Symbols to be suggested in a JSX element, barring those whose attributes * do not occur at the current position and have not otherwise been typed. */ function filterJsxAttributes(symbols, attributes) { var seenNames = new ts.Set(); var membersDeclaredBySpreadAssignment = new ts.Set(); for (var _i = 0, attributes_1 = attributes; _i < attributes_1.length; _i++) { var attr = attributes_1[_i]; // If this is the current item we are editing right now, do not filter it out if (isCurrentlyEditingNode(attr)) { continue; } if (attr.kind === 285 /* SyntaxKind.JsxAttribute */) { seenNames.add(attr.name.escapedText); } else if (ts.isJsxSpreadAttribute(attr)) { setMembersDeclaredBySpreadAssignment(attr, membersDeclaredBySpreadAssignment); } } var filteredSymbols = symbols.filter(function (a) { return !seenNames.has(a.escapedName); }); setSortTextToMemberDeclaredBySpreadAssignment(membersDeclaredBySpreadAssignment, filteredSymbols); return filteredSymbols; } function isCurrentlyEditingNode(node) { return node.getStart(sourceFile) <= position && position <= node.getEnd(); } } /** * Returns the immediate owning object literal or binding pattern of a context token, * on the condition that one exists and that the context implies completion should be given. */ function tryGetObjectLikeCompletionContainer(contextToken) { if (contextToken) { var parent = contextToken.parent; switch (contextToken.kind) { case 18 /* SyntaxKind.OpenBraceToken */: // const x = { | case 27 /* SyntaxKind.CommaToken */: // const x = { a: 0, | if (ts.isObjectLiteralExpression(parent) || ts.isObjectBindingPattern(parent)) { return parent; } break; case 41 /* SyntaxKind.AsteriskToken */: return ts.isMethodDeclaration(parent) ? ts.tryCast(parent.parent, ts.isObjectLiteralExpression) : undefined; case 79 /* SyntaxKind.Identifier */: return contextToken.text === "async" && ts.isShorthandPropertyAssignment(contextToken.parent) ? contextToken.parent.parent : undefined; } } return undefined; } function getRelevantTokens(position, sourceFile) { var previousToken = ts.findPrecedingToken(position, sourceFile); if (previousToken && position <= previousToken.end && (ts.isMemberName(previousToken) || ts.isKeyword(previousToken.kind))) { var contextToken = ts.findPrecedingToken(previousToken.getFullStart(), sourceFile, /*startNode*/ undefined); // TODO: GH#18217 return { contextToken: contextToken, previousToken: previousToken }; } return { contextToken: previousToken, previousToken: previousToken }; } function getAutoImportSymbolFromCompletionEntryData(name, data, program, host) { var containingProgram = data.isPackageJsonImport ? host.getPackageJsonAutoImportProvider() : program; var checker = containingProgram.getTypeChecker(); var moduleSymbol = data.ambientModuleName ? checker.tryFindAmbientModule(data.ambientModuleName) : data.fileName ? checker.getMergedSymbol(ts.Debug.checkDefined(containingProgram.getSourceFile(data.fileName)).symbol) : undefined; if (!moduleSymbol) return undefined; var symbol = data.exportName === "export=" /* InternalSymbolName.ExportEquals */ ? checker.resolveExternalModuleSymbol(moduleSymbol) : checker.tryGetMemberInModuleExportsAndProperties(data.exportName, moduleSymbol); if (!symbol) return undefined; var isDefaultExport = data.exportName === "default" /* InternalSymbolName.Default */; symbol = isDefaultExport && ts.getLocalSymbolForExportDefault(symbol) || symbol; return { symbol: symbol, origin: completionEntryDataToSymbolOriginInfo(data, name, moduleSymbol) }; } function getCompletionEntryDisplayNameForSymbol(symbol, target, origin, kind, jsxIdentifierExpected) { var name = originIncludesSymbolName(origin) ? origin.symbolName : symbol.name; if (name === undefined // If the symbol is external module, don't show it in the completion list // (i.e declare module "http" { const x; } | // <= request completion here, "http" should not be there) || symbol.flags & 1536 /* SymbolFlags.Module */ && ts.isSingleOrDoubleQuote(name.charCodeAt(0)) // If the symbol is the internal name of an ES symbol, it is not a valid entry. Internal names for ES symbols start with "__@" || ts.isKnownSymbol(symbol)) { return undefined; } var validNameResult = { name: name, needsConvertPropertyAccess: false }; if (ts.isIdentifierText(name, target, jsxIdentifierExpected ? 1 /* LanguageVariant.JSX */ : 0 /* LanguageVariant.Standard */) || symbol.valueDeclaration && ts.isPrivateIdentifierClassElementDeclaration(symbol.valueDeclaration)) { return validNameResult; } switch (kind) { case 3 /* CompletionKind.MemberLike */: return undefined; case 0 /* CompletionKind.ObjectPropertyDeclaration */: // TODO: GH#18169 return { name: JSON.stringify(name), needsConvertPropertyAccess: false }; case 2 /* CompletionKind.PropertyAccess */: case 1 /* CompletionKind.Global */: // For a 'this.' completion it will be in a global context, but may have a non-identifier name. // Don't add a completion for a name starting with a space. See https://github.com/Microsoft/TypeScript/pull/20547 return name.charCodeAt(0) === 32 /* CharacterCodes.space */ ? undefined : { name: name, needsConvertPropertyAccess: true }; case 5 /* CompletionKind.None */: case 4 /* CompletionKind.String */: return validNameResult; default: ts.Debug.assertNever(kind); } } // A cache of completion entries for keywords, these do not change between sessions var _keywordCompletions = []; var allKeywordsCompletions = ts.memoize(function () { var res = []; for (var i = 81 /* SyntaxKind.FirstKeyword */; i <= 160 /* SyntaxKind.LastKeyword */; i++) { res.push({ name: ts.tokenToString(i), kind: "keyword" /* ScriptElementKind.keyword */, kindModifiers: "" /* ScriptElementKindModifier.none */, sortText: Completions.SortText.GlobalsOrKeywords }); } return res; }); function getKeywordCompletions(keywordFilter, filterOutTsOnlyKeywords) { if (!filterOutTsOnlyKeywords) return getTypescriptKeywordCompletions(keywordFilter); var index = keywordFilter + 8 /* KeywordCompletionFilters.Last */ + 1; return _keywordCompletions[index] || (_keywordCompletions[index] = getTypescriptKeywordCompletions(keywordFilter) .filter(function (entry) { return !isTypeScriptOnlyKeyword(ts.stringToToken(entry.name)); })); } function getTypescriptKeywordCompletions(keywordFilter) { return _keywordCompletions[keywordFilter] || (_keywordCompletions[keywordFilter] = allKeywordsCompletions().filter(function (entry) { var kind = ts.stringToToken(entry.name); switch (keywordFilter) { case 0 /* KeywordCompletionFilters.None */: return false; case 1 /* KeywordCompletionFilters.All */: return isFunctionLikeBodyKeyword(kind) || kind === 135 /* SyntaxKind.DeclareKeyword */ || kind === 141 /* SyntaxKind.ModuleKeyword */ || kind === 152 /* SyntaxKind.TypeKeyword */ || kind === 142 /* SyntaxKind.NamespaceKeyword */ || kind === 126 /* SyntaxKind.AbstractKeyword */ || ts.isTypeKeyword(kind) && kind !== 153 /* SyntaxKind.UndefinedKeyword */; case 5 /* KeywordCompletionFilters.FunctionLikeBodyKeywords */: return isFunctionLikeBodyKeyword(kind); case 2 /* KeywordCompletionFilters.ClassElementKeywords */: return isClassMemberCompletionKeyword(kind); case 3 /* KeywordCompletionFilters.InterfaceElementKeywords */: return isInterfaceOrTypeLiteralCompletionKeyword(kind); case 4 /* KeywordCompletionFilters.ConstructorParameterKeywords */: return ts.isParameterPropertyModifier(kind); case 6 /* KeywordCompletionFilters.TypeAssertionKeywords */: return ts.isTypeKeyword(kind) || kind === 85 /* SyntaxKind.ConstKeyword */; case 7 /* KeywordCompletionFilters.TypeKeywords */: return ts.isTypeKeyword(kind); case 8 /* KeywordCompletionFilters.TypeKeyword */: return kind === 152 /* SyntaxKind.TypeKeyword */; default: return ts.Debug.assertNever(keywordFilter); } })); } function isTypeScriptOnlyKeyword(kind) { switch (kind) { case 126 /* SyntaxKind.AbstractKeyword */: case 130 /* SyntaxKind.AnyKeyword */: case 158 /* SyntaxKind.BigIntKeyword */: case 133 /* SyntaxKind.BooleanKeyword */: case 135 /* SyntaxKind.DeclareKeyword */: case 92 /* SyntaxKind.EnumKeyword */: case 157 /* SyntaxKind.GlobalKeyword */: case 117 /* SyntaxKind.ImplementsKeyword */: case 137 /* SyntaxKind.InferKeyword */: case 118 /* SyntaxKind.InterfaceKeyword */: case 139 /* SyntaxKind.IsKeyword */: case 140 /* SyntaxKind.KeyOfKeyword */: case 141 /* SyntaxKind.ModuleKeyword */: case 142 /* SyntaxKind.NamespaceKeyword */: case 143 /* SyntaxKind.NeverKeyword */: case 147 /* SyntaxKind.NumberKeyword */: case 148 /* SyntaxKind.ObjectKeyword */: case 159 /* SyntaxKind.OverrideKeyword */: case 121 /* SyntaxKind.PrivateKeyword */: case 122 /* SyntaxKind.ProtectedKeyword */: case 123 /* SyntaxKind.PublicKeyword */: case 145 /* SyntaxKind.ReadonlyKeyword */: case 150 /* SyntaxKind.StringKeyword */: case 151 /* SyntaxKind.SymbolKeyword */: case 152 /* SyntaxKind.TypeKeyword */: case 154 /* SyntaxKind.UniqueKeyword */: case 155 /* SyntaxKind.UnknownKeyword */: return true; default: return false; } } function isInterfaceOrTypeLiteralCompletionKeyword(kind) { return kind === 145 /* SyntaxKind.ReadonlyKeyword */; } function isClassMemberCompletionKeyword(kind) { switch (kind) { case 126 /* SyntaxKind.AbstractKeyword */: case 134 /* SyntaxKind.ConstructorKeyword */: case 136 /* SyntaxKind.GetKeyword */: case 149 /* SyntaxKind.SetKeyword */: case 131 /* SyntaxKind.AsyncKeyword */: case 135 /* SyntaxKind.DeclareKeyword */: case 159 /* SyntaxKind.OverrideKeyword */: return true; default: return ts.isClassMemberModifier(kind); } } function isFunctionLikeBodyKeyword(kind) { return kind === 131 /* SyntaxKind.AsyncKeyword */ || kind === 132 /* SyntaxKind.AwaitKeyword */ || kind === 127 /* SyntaxKind.AsKeyword */ || !ts.isContextualKeyword(kind) && !isClassMemberCompletionKeyword(kind); } function keywordForNode(node) { return ts.isIdentifier(node) ? node.originalKeywordKind || 0 /* SyntaxKind.Unknown */ : node.kind; } function getContextualKeywords(contextToken, position) { var entries = []; /** * An `AssertClause` can come after an import declaration: * import * from "foo" | * import "foo" | * or after a re-export declaration that has a module specifier: * export { foo } from "foo" | * Source: https://tc39.es/proposal-import-assertions/ */ if (contextToken) { var file = contextToken.getSourceFile(); var parent = contextToken.parent; var tokenLine = file.getLineAndCharacterOfPosition(contextToken.end).line; var currentLine = file.getLineAndCharacterOfPosition(position).line; if ((ts.isImportDeclaration(parent) || ts.isExportDeclaration(parent) && parent.moduleSpecifier) && contextToken === parent.moduleSpecifier && tokenLine === currentLine) { entries.push({ name: ts.tokenToString(129 /* SyntaxKind.AssertKeyword */), kind: "keyword" /* ScriptElementKind.keyword */, kindModifiers: "" /* ScriptElementKindModifier.none */, sortText: Completions.SortText.GlobalsOrKeywords, }); } } return entries; } /** Get the corresponding JSDocTag node if the position is in a jsDoc comment */ function getJsDocTagAtPosition(node, position) { return ts.findAncestor(node, function (n) { return ts.isJSDocTag(n) && ts.rangeContainsPosition(n, position) ? true : ts.isJSDoc(n) ? "quit" : false; }); } function getPropertiesForObjectExpression(contextualType, completionsType, obj, checker) { var hasCompletionsType = completionsType && completionsType !== contextualType; var type = hasCompletionsType && !(completionsType.flags & 3 /* TypeFlags.AnyOrUnknown */) ? checker.getUnionType([contextualType, completionsType]) : contextualType; var properties = getApparentProperties(type, obj, checker); return type.isClass() && containsNonPublicProperties(properties) ? [] : hasCompletionsType ? ts.filter(properties, hasDeclarationOtherThanSelf) : properties; // Filter out members whose only declaration is the object literal itself to avoid // self-fulfilling completions like: // // function f(x: T) {} // f({ abc/**/: "" }) // `abc` is a member of `T` but only because it declares itself function hasDeclarationOtherThanSelf(member) { if (!ts.length(member.declarations)) return true; return ts.some(member.declarations, function (decl) { return decl.parent !== obj; }); } } Completions.getPropertiesForObjectExpression = getPropertiesForObjectExpression; function getApparentProperties(type, node, checker) { if (!type.isUnion()) return type.getApparentProperties(); return checker.getAllPossiblePropertiesOfTypes(ts.filter(type.types, function (memberType) { return !(memberType.flags & 131068 /* TypeFlags.Primitive */ || checker.isArrayLikeType(memberType) || checker.isTypeInvalidDueToUnionDiscriminant(memberType, node) || ts.typeHasCallOrConstructSignatures(memberType, checker) || memberType.isClass() && containsNonPublicProperties(memberType.getApparentProperties())); })); } function containsNonPublicProperties(props) { return ts.some(props, function (p) { return !!(ts.getDeclarationModifierFlagsFromSymbol(p) & 24 /* ModifierFlags.NonPublicAccessibilityModifier */); }); } /** * Gets all properties on a type, but if that type is a union of several types, * excludes array-like types or callable/constructable types. */ function getPropertiesForCompletion(type, checker) { return type.isUnion() ? ts.Debug.checkEachDefined(checker.getAllPossiblePropertiesOfTypes(type.types), "getAllPossiblePropertiesOfTypes() should all be defined") : ts.Debug.checkEachDefined(type.getApparentProperties(), "getApparentProperties() should all be defined"); } /** * Returns the immediate owning class declaration of a context token, * on the condition that one exists and that the context implies completion should be given. */ function tryGetObjectTypeDeclarationCompletionContainer(sourceFile, contextToken, location, position) { // class c { method() { } | method2() { } } switch (location.kind) { case 348 /* SyntaxKind.SyntaxList */: return ts.tryCast(location.parent, ts.isObjectTypeDeclaration); case 1 /* SyntaxKind.EndOfFileToken */: var cls = ts.tryCast(ts.lastOrUndefined(ts.cast(location.parent, ts.isSourceFile).statements), ts.isObjectTypeDeclaration); if (cls && !ts.findChildOfKind(cls, 19 /* SyntaxKind.CloseBraceToken */, sourceFile)) { return cls; } break; case 79 /* SyntaxKind.Identifier */: { // class c { public prop = c| } if (ts.isPropertyDeclaration(location.parent) && location.parent.initializer === location) { return undefined; } // class c extends React.Component { a: () => 1\n compon| } if (isFromObjectTypeDeclaration(location)) { return ts.findAncestor(location, ts.isObjectTypeDeclaration); } } } if (!contextToken) return undefined; // class C { blah; constructor/**/ } and so on if (location.kind === 134 /* SyntaxKind.ConstructorKeyword */ // class C { blah \n constructor/**/ } || (ts.isIdentifier(contextToken) && ts.isPropertyDeclaration(contextToken.parent) && ts.isClassLike(location))) { return ts.findAncestor(contextToken, ts.isClassLike); } switch (contextToken.kind) { case 63 /* SyntaxKind.EqualsToken */: // class c { public prop = | /* global completions */ } return undefined; case 26 /* SyntaxKind.SemicolonToken */: // class c {getValue(): number; | } case 19 /* SyntaxKind.CloseBraceToken */: // class c { method() { } | } // class c { method() { } b| } return isFromObjectTypeDeclaration(location) && location.parent.name === location ? location.parent.parent : ts.tryCast(location, ts.isObjectTypeDeclaration); case 18 /* SyntaxKind.OpenBraceToken */: // class c { | case 27 /* SyntaxKind.CommaToken */: // class c {getValue(): number, | } return ts.tryCast(contextToken.parent, ts.isObjectTypeDeclaration); default: if (!isFromObjectTypeDeclaration(contextToken)) { // class c extends React.Component { a: () => 1\n| } if (ts.getLineAndCharacterOfPosition(sourceFile, contextToken.getEnd()).line !== ts.getLineAndCharacterOfPosition(sourceFile, position).line && ts.isObjectTypeDeclaration(location)) { return location; } return undefined; } var isValidKeyword = ts.isClassLike(contextToken.parent.parent) ? isClassMemberCompletionKeyword : isInterfaceOrTypeLiteralCompletionKeyword; return (isValidKeyword(contextToken.kind) || contextToken.kind === 41 /* SyntaxKind.AsteriskToken */ || ts.isIdentifier(contextToken) && isValidKeyword(ts.stringToToken(contextToken.text))) // TODO: GH#18217 ? contextToken.parent.parent : undefined; } } function tryGetTypeLiteralNode(node) { if (!node) return undefined; var parent = node.parent; switch (node.kind) { case 18 /* SyntaxKind.OpenBraceToken */: if (ts.isTypeLiteralNode(parent)) { return parent; } break; case 26 /* SyntaxKind.SemicolonToken */: case 27 /* SyntaxKind.CommaToken */: case 79 /* SyntaxKind.Identifier */: if (parent.kind === 166 /* SyntaxKind.PropertySignature */ && ts.isTypeLiteralNode(parent.parent)) { return parent.parent; } break; } return undefined; } function getConstraintOfTypeArgumentProperty(node, checker) { if (!node) return undefined; if (ts.isTypeNode(node) && ts.isTypeReferenceType(node.parent)) { return checker.getTypeArgumentConstraint(node); } var t = getConstraintOfTypeArgumentProperty(node.parent, checker); if (!t) return undefined; switch (node.kind) { case 166 /* SyntaxKind.PropertySignature */: return checker.getTypeOfPropertyOfContextualType(t, node.symbol.escapedName); case 188 /* SyntaxKind.IntersectionType */: case 182 /* SyntaxKind.TypeLiteral */: case 187 /* SyntaxKind.UnionType */: return t; } } // TODO: GH#19856 Would like to return `node is Node & { parent: (ClassElement | TypeElement) & { parent: ObjectTypeDeclaration } }` but then compilation takes > 10 minutes function isFromObjectTypeDeclaration(node) { return node.parent && ts.isClassOrTypeElement(node.parent) && ts.isObjectTypeDeclaration(node.parent.parent); } function isValidTrigger(sourceFile, triggerCharacter, contextToken, position) { switch (triggerCharacter) { case ".": case "@": return true; case '"': case "'": case "`": // Only automatically bring up completions if this is an opening quote. return !!contextToken && ts.isStringLiteralOrTemplate(contextToken) && position === contextToken.getStart(sourceFile) + 1; case "#": return !!contextToken && ts.isPrivateIdentifier(contextToken) && !!ts.getContainingClass(contextToken); case "<": // Opening JSX tag return !!contextToken && contextToken.kind === 29 /* SyntaxKind.LessThanToken */ && (!ts.isBinaryExpression(contextToken.parent) || binaryExpressionMayBeOpenTag(contextToken.parent)); case "/": return !!contextToken && (ts.isStringLiteralLike(contextToken) ? !!ts.tryGetImportFromModuleSpecifier(contextToken) : contextToken.kind === 43 /* SyntaxKind.SlashToken */ && ts.isJsxClosingElement(contextToken.parent)); case " ": return !!contextToken && ts.isImportKeyword(contextToken) && contextToken.parent.kind === 305 /* SyntaxKind.SourceFile */; default: return ts.Debug.assertNever(triggerCharacter); } } function binaryExpressionMayBeOpenTag(_a) { var left = _a.left; return ts.nodeIsMissing(left); } /** Determines if a type is exactly the same type resolved by the global 'self', 'global', or 'globalThis'. */ function isProbablyGlobalType(type, sourceFile, checker) { // The type of `self` and `window` is the same in lib.dom.d.ts, but `window` does not exist in // lib.webworker.d.ts, so checking against `self` is also a check against `window` when it exists. var selfSymbol = checker.resolveName("self", /*location*/ undefined, 111551 /* SymbolFlags.Value */, /*excludeGlobals*/ false); if (selfSymbol && checker.getTypeOfSymbolAtLocation(selfSymbol, sourceFile) === type) { return true; } var globalSymbol = checker.resolveName("global", /*location*/ undefined, 111551 /* SymbolFlags.Value */, /*excludeGlobals*/ false); if (globalSymbol && checker.getTypeOfSymbolAtLocation(globalSymbol, sourceFile) === type) { return true; } var globalThisSymbol = checker.resolveName("globalThis", /*location*/ undefined, 111551 /* SymbolFlags.Value */, /*excludeGlobals*/ false); if (globalThisSymbol && checker.getTypeOfSymbolAtLocation(globalThisSymbol, sourceFile) === type) { return true; } return false; } function isStaticProperty(symbol) { return !!(symbol.valueDeclaration && ts.getEffectiveModifierFlags(symbol.valueDeclaration) & 32 /* ModifierFlags.Static */ && ts.isClassLike(symbol.valueDeclaration.parent)); } function tryGetObjectLiteralContextualType(node, typeChecker) { var type = typeChecker.getContextualType(node); if (type) { return type; } var parent = ts.walkUpParenthesizedExpressions(node.parent); if (ts.isBinaryExpression(parent) && parent.operatorToken.kind === 63 /* SyntaxKind.EqualsToken */ && node === parent.left) { // Object literal is assignment pattern: ({ | } = x) return typeChecker.getTypeAtLocation(parent); } if (ts.isExpression(parent)) { // f(() => (({ | }))); return typeChecker.getContextualType(parent); } return undefined; } function getImportStatementCompletionInfo(contextToken) { var keywordCompletion; var isKeywordOnlyCompletion = false; var candidate = getCandidate(); return { isKeywordOnlyCompletion: isKeywordOnlyCompletion, keywordCompletion: keywordCompletion, isNewIdentifierLocation: !!(candidate || keywordCompletion === 152 /* SyntaxKind.TypeKeyword */), replacementNode: candidate && ts.rangeIsOnSingleLine(candidate, candidate.getSourceFile()) ? candidate : undefined }; function getCandidate() { var parent = contextToken.parent; if (ts.isImportEqualsDeclaration(parent)) { keywordCompletion = contextToken.kind === 152 /* SyntaxKind.TypeKeyword */ ? undefined : 152 /* SyntaxKind.TypeKeyword */; return isModuleSpecifierMissingOrEmpty(parent.moduleReference) ? parent : undefined; } if (couldBeTypeOnlyImportSpecifier(parent, contextToken) && canCompleteFromNamedBindings(parent.parent)) { return parent; } if (ts.isNamedImports(parent) || ts.isNamespaceImport(parent)) { if (!parent.parent.isTypeOnly && (contextToken.kind === 18 /* SyntaxKind.OpenBraceToken */ || contextToken.kind === 100 /* SyntaxKind.ImportKeyword */ || contextToken.kind === 27 /* SyntaxKind.CommaToken */)) { keywordCompletion = 152 /* SyntaxKind.TypeKeyword */; } if (canCompleteFromNamedBindings(parent)) { // At `import { ... } |` or `import * as Foo |`, the only possible completion is `from` if (contextToken.kind === 19 /* SyntaxKind.CloseBraceToken */ || contextToken.kind === 79 /* SyntaxKind.Identifier */) { isKeywordOnlyCompletion = true; keywordCompletion = 156 /* SyntaxKind.FromKeyword */; } else { return parent.parent.parent; } } return undefined; } if (ts.isImportKeyword(contextToken) && ts.isSourceFile(parent)) { // A lone import keyword with nothing following it does not parse as a statement at all keywordCompletion = 152 /* SyntaxKind.TypeKeyword */; return contextToken; } if (ts.isImportKeyword(contextToken) && ts.isImportDeclaration(parent)) { // `import s| from` keywordCompletion = 152 /* SyntaxKind.TypeKeyword */; return isModuleSpecifierMissingOrEmpty(parent.moduleSpecifier) ? parent : undefined; } return undefined; } } function couldBeTypeOnlyImportSpecifier(importSpecifier, contextToken) { return ts.isImportSpecifier(importSpecifier) && (importSpecifier.isTypeOnly || contextToMB1E)zB ,P1E)S;4& 1b`N51 'X#9NB1%) J fT 1$!mJ+1E)߾t(: i1E)ZT84{1$! r >C 1E) ۀ  1E@NX`@m??w%eD"1$) $1E)(( H 1E)Kmۆm1$!5e)!6Am&1!^ f1$!0-۶m麡1E) 1E)Z6)p1!4y@f1DK"Ɇ1$!je)! aۖ1!ðmne)!mۖ4e)!&$IhE) [ve1$|ɑ%yH555 ʏEaE $I2$E)! IHLBe)!H e)! ݰe۶e)!,PE)@$I(&E)HƎi E)!X I E)! I$I$E)! I$I$E)$! H E)(ú%InE)x I@E)"(HE) (4 E)a&km늵E)`H$E).P  E)!~$A8%!UU5H$I!@$)IX8/ ?y.h$ B`mۺm%1$ aݰE)*$H$$!`p\ $! H!$ I$I$!( $$!II !**B@E)$!$!$@ !I!.@!"0I$I$$!!kj !H A$b8'P8----  Eya  [ۮFEW]='C{fEykx>~2fEy*H1iFEyd%X4FEy.|2f%yokS)gEy/!`%y֍'j۾FE XܹfeXņm[$1E)~h$I$1E)_?ϗBE)UU Iၘ(BE)5xh9E)X!& 1E) &i1H҆1E) ź&I$1E)b!@1( [%()1Ap@ <&1rIҶm1E)< H$ 11-I11-I$I$g9* 11  I$11\H$ 11ܷ I11 I$I$g9* I$I91 $II(:91^ 9N$91~WUM$I:1E) m9E)_ Bj  }A! ܶm9E)xiۺ 1E)- &@91]U Il (91խ~ 5I$91_ڴmv91 0I91_4 <"9$!*N$HJ1  $I11u NO$I1 6I11I$I$)I)I$I$)I)I$I$11 m691 Hֶ9e) H3vd391e KH1  #wO%f) +%/ma*'/ /HMg-re51 `a'H1 )E1E)M i1E)ּr H1E)^&#A$H1E) ڵuA9E) I$I 91ի i$ I91U 'H91U I$m91} m0I91* cېD91_ Iv4A91U  I"II91U꨺I`11 I"I91U:I91U I"I 91U  -р91 mM91/ml91ժ 6$$I91Wݖ$91U RC& 1p qb+ 9E)]#Im H9e)z"&m9$!WOmM1ɿX9 &$&11N\ 4e9: ɛ{iH551 1wSi-+ +<i,!DZ@ 8HI M591{ 4H["&9 P ۆmݖ91 I$I$91" IB&$I91*6$˗Y>j/pJIĆ %5# 7%6+$I DZ 52[fۆmDZ4%@h0 t2 ha~s؀ $ IA! $91ꪪ ۴ 91 4@%9p $qn9e) p$`9 tkv91* ` I9!p vM9E) Ӓb i9$!z: 1!U^-iI :1!Uxnf1AB PǦ1 @39 c-S91 9 & 0I$910 &@0(91 $HB91 I@1e91* ۶a99j (B%) :[BB9U_ dJ91 m۶m99 $I99Z L"9$I91 H2㊍9@ j@9  {9A($ !D~"9E)Wx 9!/ pO9E) -W A$e9e) a91 04x9!. J ~:9! "!a91+ ɐlh9  OD9 &' DɔH91 B}DmI r2MqSO?f .-_40JY4/DZ44I$I$%44I$I$%44I$I$%:3gǹ?;jADZH/Ͽs冡 ޶vk A1_X cG9e)~誢۠M1 B ((I1E) 11 I!ɐ11*#  1E)΀ l1E) Xu۶-91j )91z"I0I1%)&)ۆ1E)* %=I1! PɄMѦ1E)DD 1E) MdK61e) *"aY9E)/ a`65Sea{!S%f! sE h6 1$!4%@ 1E)" s q1!ɭ( N!Ǡ31&,o1! nhץ11 4E1E)0S$ 1E)r. `01E)/ !iI1E) ) [7aH-/-&1ferb}9ъkeAEDA%:1!%X$@ 1E)*  51!xLB2 1E)+C 1E)MI1~$Hf1!UN1 W$6I'e) ^$I$e) ;f1Df1$!ImVf1ժ(N*W&uf1 -Ae) q(-If1!I$He1e!jj [%qH=ͿEeIe)$! lme)!$E)! $IE)! 2!E)!)NL R(E)! $ E)!* 鐂(E)!&$I IE)!۰m[ҤE)``E)'I$IE)!*E)!(( E)!+B`˺mE)!f@nHE)!@E)![$B8E!]%H$IA8%!XInKvPE 7QOhE U ۶o%i$ !E) $`$%)`xI$!5 I$I$$!!44I$I$$!! $I$0E)L$I%)7 %)K aH$ $!1I$I$$!$! !I$I$d!d @$! @I$I$$!!Զ$@0H$Ib8" ui8-/ tJ%Ei) f#fEy!@AE%y  !cr@ f%y몺ۊFEyCbFEy\L[pfEyھ-k븶}fEyߺvfEy~rFe X;~x,1A" &5cBֆ1 p m9E)WW]7BE)%p/BE)b\]ٺm1E)z/I1E) $H2L$1E)H$ 1E)  1!m۶m1E)AZw9E)JfJ4I1  A@&11$^I$I$g9* 11$I11V/H11= `11 11 I$!91 $%$91zW 6'mۧ91WUU1E)(?IW`BE)_O@BE) p*BiII1E)+*I$I$1E) vlO091U 鰮K$91$I$91I$I11 $I011`r4J1! @$11H$I11E)1111$11@$11W$I11U$ 11WI11VI 11R ]9! ذ $II9! w?q?*awH' 7VDZi2'oFezªu7ai4H@9( I%J1  Iۮm91 ۺ-݆f91 D %1P #RL9e)(! LX9a,& 6m4!9e) B $A9 &M&(Bf1 9,6 ) -991 pd 9(( m۴ka91 4B<9` {P@9! L$IB91 I$@$BD!  dQ91 $I2d&91ࠨ L9 (( NK\9, qh91+ K g9 8 $ @91. 91 Ȑ91 a$LB091  9 & IBP91U m;$91 SP1ɛfP-3t0IH*:2=BDZ @p h ۶A1 B"4i1 p 99! (A(59%)x i"M91 `[v,91* q1 & " nAb *-?%1HKE  5* ODZ z9$I!DZfJ9IHX3I%x& O'Ex ۶m fa) H91 89!` ujm91" vk 91 kI$91/ +`:`91 $IH&91 I$91 #`I91\+ nC-I9E)5S1 `,ۍ 4f1` A$IE)&@i99!*U +NAe) z P9! 9 9` α 9& +%& 9$!P `#91 4hd91 / " 9@ !\9(( ۦa,9@ ɐ I9   A) ò ۶m91 #9 @ `!ב9A A91p ~:9!`  9!-nr<09E)Vr <9lS9 `  9 6g91 91 I$I$91* 94 q9  $I$91  9 '- ۧ%30 S  4+ S44I$I$%42 DZ=$ rǹa 53D$DZ7#-*H `oyi  91j;-(1E)踠&`J1E) / "%Y31e) $u9e)&m1E),mۖu1E)*Ȃ#9E)+@9E) h vR9e) b=19E)r(I1! &vk611hm2i1E) ($ 1%)S$ Ǧ1E) [;ۖm11@5Qkx) -#É` fE`f*9FB1!pHP"1!P[5l1%) *A1E)UZ 11E)-I1! Ҥv UB9!6`B $11\A'& 1%!x IXhe*+ '- Ey )).̯X0E`mӶh 9e)j;$I1!| fl1 ڠ]7i1$!d$`B&1E)I$1E)$@1E)I$1E)I2$C1E)jm2`݊ 1!3HIf1IIHe)]$I&d1E)*zZ@am1$! H$I$1E)H$I$1E)۰[-e1eB mR-eh0+++X>Ee:,]me)!@"@E)!!  e)!<[`E)!0@e)E)z$ E)! $$E)!$ I2E)!(4E) Pl@E)/I e)$! -%"E E)!`E)!((@B"E)p I IE)!I$I$E)$!說6,k$8E)UI$ !8E!(rAmMm0E!I$I$E))(I$I$E)!*@$E)!0`$E)I!@E)- I$Ie)I$H$$!!I$I E)!}$2LE)!E)!I$ E)!H$I$E)!I$I$$!!0@! ,I$I$$!![\I$I$e)$! ! ($I$b8' IIP0/yuS %yH-- nZwF%yHIFEu^k$1tf%y.֍FEym6m6EEy*_OƊLf%y<fEyb$ 4Ee`C}fe `[[fAe жmӖf19aBE)U%4rB ؞h'I9ڽ+L1E) ݶmۊ1E) @$I1E) I1E)(I$I$9!61 `H$EI1%)( 1E)   9!01E)[11`_&b9Aظ.D$1E)<4ۖ ݰ 11" TN!9 && %Amc]9f1+zWKX h1$&T+&1!P mN(B95pAE)%\9E)p!$A1E)`" I1P! $H1E)I$9  9 $11+_$IHئ11XU6iWl11W)m )1!@.!H9!JJB$I1!I$I$g9*k$11&^@1$$I$11߭I11] I$11/H$11(I$I$g9*I$I$11 XL&9 $j"} I1 ۆmm91u(81`>䀆) !{if8 C14$@DZf.z톩h dGA   91 H9$!`% @ 91 Áq1A@  m9E)!" %m91 a&i1@ 1T 9!  )& 9e)B* (h9 $ 91 !@$@91 I$91* 2w[+91k ul۶- 91 I4m91婢 ۰m9e)@ 1+@9 m9! #91 0I9 Z ,-ܪ9!@ iݦq9  LP91Š/ @359`b qq9e)   91.,  $H91 d91 @91÷vyw!PA&yWqP-// =dJӰ ǹa >MǹE $i'91U 91 h*L$I9 C$!91.? X@1& $A"(1!@ I9A I ڶ91 &ؔM1A1-(>f'20 T %5!"HPNDZH 9M#)ǹ*5+ hDZ 5Hfx,~Bb fezmk %yp R"m9p цmm91 I$I$B$! L 91* I$`91 Rm91苿  91 I$ $91 I491+ N 09& %#Ҁ9jyq1۴ 41`91 -XBl91 Iw?91 ] ظ۔n91 I$ 2A) жmBD! L $91( v,91/ 0!HS91 M۶m91 Am۶m91 $H$91 @Ʉ9!( $I$99'^ X*I9e)  L"991 6hx91/ ՚9%)z)xsB٧9E)VSNC1E)\B p 9E) A-91 ت-91 @ 91/ I$I$91* @91*  NB&91/ Ai9 9 Q:mݶaz0I9 4'@wDZ -43 DZ: p$Iǹ%q843%:R*t IDZX 24p` u'{XA1 ,Xө9e)`kY놶1E)*2CAR1E)FI9$! (* LH11 ( k@ `1e)[ð1E)( "H1e) XJP91㯯 ͛e91 z:=#9$!zb6H 1$! ER$u1E)00 $)B"1E)b $1E)  7'9E) ~B(B-тX1%5'O1a----0# Hp?EqP9$!&! $11 ' @1E)l1E)^ 81E) $%B1e)$E۠m1E)01E)B ny IeYo-lw{f( +-. 4fi@-熱eL2&1E)I$@1E)X`1$!z਀1e'h1!_;dRN 1$!W$m$f1$I1!1E)KZHf1 8 I$A1E)+I B1 ĈȘ1! nK 1!ff1$!. Ȑ1E)Юe)!n5ƣXE ]^F~EE۶uMe)! 7I$$e)E)?`$ e)$! I$I$e)E) $e)$!  d$FE)0 e)E)W] ۶ E) E)!(e)E)@ )( H$)(I$I$E)$!$HdBE)!*I$I$E))* $H$!8E!I H!8E!rXI$E! ;"I$I$E)$!*I$I$E)$!*I$I$E)!*@0d$%){I!E)- E)!MmڶE)!IE)!$I%)InEmE)/  %)*$@ E)!A$@$E)!$! $I$%)!wi@$!20H$!! 8 @$b8$ߟ'I$Ib80 ɛyu%q8/+ ) Fi**A$H$h@$I$ptlcFEyI I$hE-Df%y/crfEyk޾ Ee `HmYkik1 9%)' A% BE)pVUU]ֶm1!: 69B#i1 p`VmӶL1!$L$I16,$I&11@$I1l1E)I 1E)K$I1 I$I$9!ۀht1E)& 9f1`HT1 %ΡNӸm1!6ݺ511 }}{DҤ$1E)xBB:$Gre) p^۶Mb9e)- { 9E)_7& >B! zj h9$!H$A 1$!iSDH1E)׭1e) I$I$1e)*I$I1e)($I$1E)&I1E)*[wl1$!  I$9 I11",#Ȧ1@@`H41Am11xUۖn 11- M`11 L9(I1 I$H1%)$ID1$I11$11[I$11|$I$11~@< 6҆1!PiS1!`j $Ii[9$! cԠ9$!z" SK9E j*(ɝ%E +0y{)*F/I1@P*h p "52 9E)*j( )$9 vV91_* IB 91 I91** *99$!p Im91*( $) 9E)@ xD9 4 )9!  I$I$91* I$I$BD! I$I$BD! @d$91 $91 $I$BD! I$I$BD! I$I$BD! I$I$91 $AR$ń91* ,TA9& ,(9@ 9 I$I$91 I ۶m91 b(R$I91 A$91 $M9( 91 D: I91 :>4!H9Օ5 g$i@//- Sd q--+ @25@`&'E9psO1 &w?1!-U$9!*ꊽ kFi1 D i;91WǤ#(18`@ HI9 m66l91 [ڵ[91 p [LR9 (4(Q2%ٶa j/pJIĆ %5!@ wDZ+;+=ǹWz+=5HDZP7"Aǹzꪋ4 u %YzꠀI%x  $d91 @I$91 91/ I$I$91 91 M 91* I&91  91 %H9 p ِvn91+ #H$I91` 5 9Ab yn$ 1 ;u͆1Ajۆ1 9!* TAy9f1%_ 'MÐM91  ͱ9!&, 249!` mh9 DJ91 . ۶mۖa91 I$I$A) '9%)<8 ,-$I91`b ! 91 A) N"'C91 CD9@ !m4A9  Z9!h[1! w+ڧ9E)-^ 4 s9E) - L91 I$91/ 91 91* Mǧ9 )H4O91 . I$I$BD! P#` I9 `,O熩 40n 40DZ 43 DZ:!@ǹP 9,DZ@1y̏熱 VIz91 M> 9E)zlMf1E) +  11$C"!1f1 ۚmi11!%QĐ1e) mtk11+'  e 91ޟ hDB9E)  IJ9$!b M#9!pbiB9E)CJ %1E) -'%1E)@ R30M1 ` ͥƧ9)/ % /2@0 P/k= p M eIXA账1E)mVy1E) 0"a1E) ;@Q1%)".źZ+(1! (@6HR1E))!d914AG9!* dQ:$I֣p'&߹P$>cEEj@f9 !@1E)* ,K E1E)@.7S&Hf1mXl1E) K3l1E)vv"m I1!U &1!_h;1!U$ĶBI1!*&-01$!`4MC1E)o[0l1E)$1E)b!I1E)I$I$1E)B"0$BP!7i!EjbB-9$!hD"e)M;,iE)!@ے] e)!ૢe)!R$$e)  I e)E). Ie)!  Ð$Ie)! $e)$!$IE)!iuֵE)!I$  E)!( ۆm۶-!8E)UUU@$I$!8e)%"I!Ib8E!puH E)!/`۶mۖaE)! @@E)!pE)$! 0`BE)IE)7/E)!jz DB&E)!jz$AE)!B I%)!j[^U!%)  H0E)!k$ %)*( $E)! `H$!( I$I$$!" $$!I$I$e)I$I$$!!8( $!@H$I$8 ɝy`8յ-1N&@EP+ IIh!I AhIA pH$ hmm-FEyk X,F%i B(rEf)0HغՆ9E h۶mۥ1E)ZaB$!_%'$BE) b\W۶m1E)}WI1E)%  H$1E)ڴ͛21(J !DI1 ' I$I$1e)#ڴm1 @!ɛ I1AdH$I1%+1PhX$1E)`$ 1E)* $ 1E) 0"$I1 @H$I1 0l[$1E)W If1b ($I&IE)! k51$!- ` ФNl'9 hٮ6e) @ضmT1)I1E)/B#-$I1!`DH$I1  1E)ꪠ Lx14($If1I I1E) II$9!  I1 & $A$$1E)@0I1E)$!A1E)I$I11-!HL$11$1e) @1e)*$I1Dڦ11ZH@11"5KIj1!4 $`>1 $99E)^= m[q%9E)= mR'9! X 6 h흶9 ֮O>9zX@H1E).)1E) I$I91IH17}u(7@ +.!$I 0R#͒H `۽  )9E)H !Bl9 )91 &hT91 \C 691k  Au9f1 Ю91* K \&94P mu91 $NB91w d1I91 $I91 I$91 mۆ91 $I91  I91 :91__ ;c91  r$9 UK:91 &$IJ91^ 291  -91. u 91( ۶5X91 9 p ۦmVA91!  99 B%@9ɝE8'1Ci U9?vp c#HA1\UL@i1!T?I1!U"-1!WU1!]Woۆ1!]&1Wdž1$!-$IP1! d96 Ak91U H$91  C291 " $IAb *{? %3 Ini 7'ȴrǹ>7)$DZi@@7lڤǹf5(ǹ%~+E!x c6؆Y I&C918 M91 / !91*+ I$I$B$!  91⺪ I&۶ 91* $ Jd9 < $I!91⫿ I$91 J JDR91>+ \0m96 y=+H9E)}q1!Wpۍ51 _pvlۆ1!5UU @&9! FI91 "I$9E)@ S%d9 PP6 cI0%91 ڠH9  91 . [mۆa99_ @A) A $9p H91! $LB2BD! X,۰ 91 ɐN&91 ? (l91 # i9E)^xwuچ1E)%\1aǠmɆ1E)-Xi `J99E) - j<TR91 f{91 91 h* $I9  -91  91 / I$I$BD! "A$IA1J/*T '3 N  8 FDZ@72m ǹ_;b*A$IDZf3`"5 p` M񪂆I C;91멙8 ن1E) l1e) I11/ [ۺm110 M5n91Uz$Id11? @N$Gn9E)%*  9e) "'9E)(-  .91n*oϠ_?19' II9E)ꨢSZiҦ 1E)DG%1e)* @#@Z9$!p )&A$b+~x?-/&MJy ,̯&R X`sՃ*@9e1! 7,A1e)AU9!*)Fj9%)JkR I1`K1E)+")@TlG1E):EXm91k7ު?[%! 7. Insǩ%y**M"/4E v`$I9_ I&1+x@ۆ1* m1E)&Xl1E)*$HC1E)z"$A1$!@ iX1E)I$A$1E)۶2f1@$ق$Ɔ1$!m۶51E)~DJ1!* V4f1$! BdI1!$I$e1e J7os J ?EE`$XdA%Af$ 0e1E)ի`$ e)%)$ 1E)۰mk-e)E)@kmue)E) dBe)!@$ɄHe)E)VT$A E)!*@dfLZE) k-E)!@ (Qt(@eX$I@f!Im@Eba@ E)mvͶaE)! EBE) E)!$IE)!cXWIHE)! $%)` &$IE)!&XHE)!*0`E)IE) 5-E)!ꪪ E)!ꪪE)!H A$E)!I $E)!H$I$$!!<m6ҡ%)!~kI$I$E)!޵[I$I$$!!0,$H$b8$!%IIH0//wS` %yH-+  1ybmE%q+ H$I$hI$I$hA$H$hA$I$h7$F5FEA* bXϟFe`[f9E!1!/B$!-@/B$!`^h$E f1!*  A01E) mݖm1E)I1E)I$I$1e)( $1e)$I1E)  1E)*I$I$9!$1E)$I1E)+!A1e)*I$I$1e)z*0i1ۆm[$1E)^m&1E)] I$e)E)XUUI E)!!A2Le)$!*I't,f1aId,P1$!^ 1E) H$I$1e) I$I$1e)(01E)pdf1I$ 1E)1e)R*I$ 1!knۆ51E) hC&1``غil1E)I$I1E)*1e)I$I$'9#$I$9!m&1E)$II01E)(.:) p1@B6V1  -mIX9E)꿕 9A* y'`9E)=^ '[9E)Vn$I1E)| m"@$ 1 pI9E)CJ$I1E)LB$I91 mh9e)I$I)I) I91/-QWm]:y '?- PrqS%q-2cr5E`,M9F p` ]6m9!4@1 P 6)J$91 M591 IҶI491? HL1 M!d91ꋫ C2nkM9e) * H$191// md91 #%$I9pP q$!9e)@ IC9 X H9&& $I91* $I91ꪪ $g9e)8 mؖd91 h.DZh8ADZi 5)7z@`DZ>9o-:NǹE`*0] fEz뢀I$N'%x $ !9e1**J  h 9  m[ &9A P  $91. 91* H @$I91 I091ꊪ !I&91 $ !91諿 C$ 91ꪮ !I$91 S#hN91p/ Ch9E)k-: 1!UXvlۉf1 i;1! U r9!* MY9 I@9 $I$BD! vHє@R91 $9A mFn91 9` Yۺm91 @L$91 $ 91 $C$ 91 m@ `91 Be91 / k#ђ&H9E)x 7٧ 9$!ۄky1  vդ9E))5 3a쐒91 gp ,91?   9e) I$I$91** ڦw 9E)6 M91+ I$I$BD! I$I99* #'4ZAt %:iP*DZJ8-mpǹ4- `DZH 0/ p $xz9A j@91~k͊t1e)("ö5 11[1 I e9$! ("1$! @11ؠP 01e) A9! * 9M89e)- (i9e)  bCE91G  { 9!- ;.b9E)o9E)J(Rj $1 #AH9%)`& 'T59 /h) ,/@e #Ͽ1f`@ 3Dl9E!xs1! ?'hT1! '1DJ" 1e) "%9E).@I$11<B2A1E)ݖvI11)e(ATL9@"*'wəE +, 2TNY@#ɟΏfc I1E)Nm1!V] 1ī `1!/U_`v1_R%vg;1!2U$H丆1!.41$!(u$I f1!")YۭH1$!mX`1E)뿾tRLA1$!r:1.$)ɱ1$!⅀!IL1E) m6mٶeY7J?e  %$ 言 ƣpE)UUI$I$Xx 1e)@lKme)E)Vh--e) @mmme)!$ɐ Ie)!  0e)!$@2LE)%!"I!"&8E)U 2d@$ pIb8E)XVUU!$I$IE) $E)$!@$ E)$!@&E)!"p I$AE)    E)!E)!+E)! I$I$E)!*$`E) AE)!%E)!I$I$1 E)!!HE)!H$I E)!IIE)!߫@$HE)!$IE)!귮d E)![ @$A8$!U5I$I@0/ 7i8-+ )e 0Ei+ hI$I$hI$I$hEEy$A&Ef XPܷmF Pغ6M$9E)x^UUߏA$!߷ B p۱m9$!I!@1E)ߵ*$1E)*nm1E)!I$I1E)*I1e)** H$1E)I1E)I$I$1e) 1E)$H1E)⺪I1E)* I$I$'9#I$I$'9#&1E)*zm61E)^} I2E)!(j H$E)!VE)!$I:#E) `DH$1"lmf1Pmn1E)I$I$'9# m1! o6I1 I1E)+ d@$I1E)0I$I$1e) $A $1e) h&I1E)+H$1E) 1e) H$I$1e) 1e)* &1E)"iLt1!.'ڴm&1E)]$I!e)! k?>b9E)_ %Kpº9Aؠ &Nl9E) ׿ %M9E)x&GAC1 m1-91W:I11 $)"51!@ nFm1I$I$)I)I$I$)I)IA$91 k1 dHdȄ11 >$I$1f1P#[ 9`&~j䀆) xfa 4 v'yYA%q_(`=f p A$91 $#1` @MD9"! fm91 94 9 m$91_ i-ؐn91+ +9  [% k9E) 9` 8@@9! )$@ I9A I$91 $A091 [9!@ wh)9A $R91+ 69e) x 8jS9!` Q,9E). ؠ91 d1#A91k iJM91 ¸I-.9e) *J @J9 0t91 (邲5!P9Օ5 wia@=/+)`0 949` b ĔI9b S 9!jMJ1 Na'؆1!5Wu@H`1! ! u׺9 * k 91 c۶ BD! C$I91 mR91/X M9e):* H$H$A) 91 )m 91 * ` 91 I$H$BD! '9! PuJ91/ YB91` ?9E)^xX`-1E)^k O>9E) W]m&9A@R )Y`9!  l91 / I$I$91 Xl91 PWu91 . "<:9!` IA9E)?oۆ 2҉ 7;TITnDZf 43DZ4HEy`#Ep Y[x6OA1ۥ d,2 91~|MC*a1! %AA9E)jdI9e) i׶k91 낵Ҳ9f1~zJ%N1!0a ]VV91> $',91>` P`6`.9$!/Xqy{'FQ阴f "*p> p v۵A1 N,>۶IHf1 I$I$'9# 1E)*'.۰m61E)j $I1E)I1E)I$I$'9#I$I$'9# 1e)*`$1E)m&1!$AL$e)$!,2$Ee)!H**  (E) m1$!*+ $C1E) 1EI 1e) ]i791}U U`"e1! 0!$ 91zg H1!H$I$1f1#AI1!`ن ֦91U`mv11+$IH91 Md]91߿ &AI9! 91 9F19F1 i$H15UU,nf@ /Ɲ0A% /d&m`܆ ?g[9e)** #Uv|9A*$¶&Ba z9f1 I" k$9E) 9'ݚ91- c+@~R9e)_  q9e) h۸m9$!4 $Nb91 o91UUW dN9E) dݶ9e)ժ$I411!` C 91W/ q%@k291-~ $9E) IZ.w9E) +/ M9e)z^ 1gs9E) MP9E)* I'=9E)^ mN9$!@ 1PA]+ѧ9A  'k9 lAP9yEP5--4)VDZf+6@DZ ,9 @ 9 V"$I91 -91 0X9A Р  I &91 0 91" 91* I$I$B$! "x A9e)( #9&I9e)pp b*H$I9%) R"09Apj;m&l1e) @rL21A@ ;@m9* _'9E) mcAe b +WO$f -_36$eY2H!tAX 6,6ǹr6(wOǹ0$E~8-O IqU'@@@$I hXUc$ fHO heb8ָ_fy!0}hEqH ,d HXeQU `vlbX1U ȖӂX1U D S!`1UW Aa$bX1U I<X1UUW ¡ׂH1UU I$A! C, 1!Zꪠck ̦) Tvۆ1 ' %@2e9! b fPR9  I$[99UW^ @91 h  91 I&91 91 $C$IA) EҐ(A91' Pmf91* I$A) ,9@ n ,9a &h 9  3: m9E)_zeӒM 1E){\Mr,چ1$!s. Iw9E)+ O9 &'  91-v ۶XWl91  9@ Nl1 .- 9!@ II9E) d02I j-Idž$-4# s -8$I DZ%i8# f`|1UW h H9UUW( ٦9) M1e) I4A9e)j H@91뫯 Jm9E)'h ӧ9E)k'1! '<  s91 6 Zb9E): xKh9E)6 +II9E)j* էX.9$!? O'O9E)%kvX-11 ( @ *TJ9E)$@ ɐ91ꭶ M>üI9$! 'x7)sff nE 䦆[9e)** cCbm9E)z* Y`.9ZvU1! 7/^y@ 1E)00 m11&$@1e) H1f1 mQV6q /?& S%a +-#Ώ?'f xm[6A1_TCĦ1e)  11 ]Ҷ[11R P-I1$!@d"M9E)k@ ݀e1E) maHd1E) 88ae?1&$1ڄMm;1!UFNb1!UĶMn1!ժ`@1!L$$ 1!mnf1$!I@1E)իKmn1E)~`"He9f XcEe_ '|%E o?oEm1` N"PE  A P% tLDPf!*piVl$1)aHe)E)X۶ݺe)E) ۖm&e)!XmlE) IuE)!_ I9-RE)`k۶5E)!(I$I$E)!, $$E) ,`@mE)/E)!d E)!  @$E)! I$A$E)$!$E)!*@$ E)!|-E)!ῦE)!I$I$E)!$$ E)*ؠ A0(E!?`$I$A@$!IgX0/ywS %yH+ `  E%yI$I$hI$I$hm;vEEy/$4hE`#$к1vpm5E) J59!7 `B!x^A$I1E)}׵ @C&1E)/z`$I1E)4M 1!,6I$I$9@ I$1E)I$I 1E)!$I1e)$!I01e)$I$1E)II$1E)'9#1e)*@$1E)*x^м%e)`Xi$E) I$0E)AjmnE) I$I1E)UuWI!1E)ե! &I$1E)I$I1E)I$1E)Rl$ f1P&5JƆ1X0$H1!"1H$i1 @$1E)*@$I1E)31$m1 pDHDJ1E) 1e)*&1E)x0I$1E) I$$e)E)W$$E)! $I%) '$!IE)!/ I$ e)$!Im1E)U.tI1E)/' IH$ 11( -1e) X!I1 ðm۰!91o Im9E)*($I1ڶi 91 vl Q91BA1 I$ )I)H9F1 "5*9!` I$i9%)"!  AR9e)* j tBI1   6I۶91X5ݺm11c?! ''  Sq +-/$B*%q*j= p@#SA LNd9!6 `p۶1 1 i91-  M91 Ð$I$91 $"I9!h VI1  B#59 `` 4IdI9$! -n91$$91 %i1b4( #m9 ` T&+9 pPII191꿵 ٰ&m&91 IuV9e)* &k91_l 2)9!`@ [-M9# Z49E)kJ 9 b izV(1A9h'wdEQ8'w7 X- 9 %An*!fa**@xکb 6뵤9(  $$91 91 * I$I$BD! $I$BD!  C$I91 m`91 IȐ$I91/ #91 ö%91 x`,9 -" 291 $B2$91   91 @ 9@ (A9$! Mm1e) c9E) LqPB ( '9sק-30w-7!6لDZ7&M7ٴǹ6bh4DZF4*iBߧ %5,M$IDZ4)3DZW5"O*@DZ3 ONF DZת 1MvH(,y;ca5MBDZa - Ϻ(@i+]&b 'Ib# aU'Id+8Jy&DZE06 M|DZ%q7{8$# mޖoǹ4+IW&DZ565-I6 FP5#}. @DZ4u$fޠ3%yz-Ia+EU-%. ӶH%yU+ Ib# HiU&Ob aU#Od HXUIm MfPUol`eb0jIEy!0 7}%i@ rb-h(_ A;[EY) $@ CBD! 5A9 mس91 $I!91 * I$I$BD! #ْ,@91 U91 ? \8h9E)` [9E)W^pAǤi1E)WU N9$!+/ X",M91 * TN9 (91 ()& 9@ o@9  ۶a-91 / I$I$B$! Q@9 @*sf  3r )61,DZFx`-/VFk/XJRP +7ʏ槹nz@Ȧ1E)?p &&9E)* R9E)*`b  9 j9E) ۖTI9e)-+ dR9E)z)K>9!'~ HJ$.9E) *i !j9!   @9E)-  91 "8 = 9!x l9$!‹ &m79E)@I91ꯖ e&A9E) nv91*P[% 7`,!Ef@@B (z 9E) -J91+* BIV9e)( ڴs9!,$ RJ9e)x* O>?Z9$!~ ~ ާ9E)+UXvǦ1E)=U&it9e)"wE /*h,[fp` iҖA $I11 d$dH11b 8Mc( 1! t01E)@tL҆1E)"ִmۦ1e)+Ңiӭ1E)E!I1E)m[m1E) ۶u[ 1e)*`&mdo1 $H1e)I$ 21E)$1E)ꪪ}I:f1$!_ub1!WC6-f1p_vlwi1!U$A4I1'I$I9e)*E'+MfE 22)",e@@@@I:fAe)^$;L؆1!|I60e)! %ID(e) '@[l6`e)!0 I$I$e)E)( ,E)!` &IŒ e)!$L$E)S&@1e)! E)! I$I$e)E) e)E)~p I2D$E)!p\ C$@0E)|/۶dfE) :$I E)!   E)  HE)!*<۶m--0E!_5&I$!8E!-IIH8Uյ-w7e %q@-+  I0E$q+ hI$I$h&M ,Ea* bBƎEe`[6I$E9E!I E)!* *$@2d$e)!M۶mE)!  A1E)$I1E)If1E)$af1IVf1  f1e)I$I$1E)I$I$1E)1E)I$I$1E)I$I$9I$I1E)*0`$1E)*^W$I(&E)pI2L$E)!UI@$!&$II2E)!5 mP1E)uU1$!)@$I$1E)讪 1E)@1E)I$I$1E)Z"$If1PÄ%h%f1X I0a$1E)(H$I$1E)I$I$9I$I$9I$I$1E)$1E)"$I҆1!ꪪ $E)!^ $I$E)!xUUm۶mW4E)A `IVlE)! I۶m1E)u-I1E)\,H$I1I$I$1E)!!11  I$$91_1$I$I1 I$ 11 I11 R,$I1H$I$91 11@$11$I11x/I$ 11 I1111 m6mv91H$I1 I$I11 # I1 @ 4I(-9"$@ҧ9$! Hi?9E)U "~$9E)(U&9ֆ9b(f( 1IIF 2%!j|f dȄ$ 11$C11oi 116Ca1E)``). 9$!JB*B4H1  j*H$I1! Qr1  i HDm9E)I@11 q" "E91U ) DR91ի a9 !6@P1  mڰM91W &iL1dL I11 C2 91 yj1  $I91׾k91_ B"(I1!pI1)RH wfH/1)pJQ )+;h9 I$I$BD! $I$)9$!@ &m9f1) $@91* 0iv91* $I@!91 $ B9 hu۰ 91< ( иA2D9 6 vƃ: 91^* 3miA ^ 'MdB>:A zz'/yߦyW6Ş!9!'xj $9$! (" kl91 )$̈91ʮ Viu91« #n9E)j#1 .h  J9%)* &4=M9E)p" Z91J, 4Il9E)# 9!x 9E)Wx Vmt9E)-$ƂH9E) P(H`R91ڪ HX AX9/ĈfBj P/`9E)V` f '9E) W 9e)0) ڠj4I9E)*8*  4m91 i)F91* Z91~ tBI9E)^. '9H9E)UW"`?eYE ;{"`7f$ *+!p %PHl1!]4v11 5 1@I$H1!붶Ò41E)жmӶ1e)жm$1E)X֭Ħ1E) 3 1$! *$fC1E) -Hh11U $1E) ")*1E)HMǒd 1E)!CJ$@1E)ժ1$!ún1E)* I 1E)*1e) *$ 1E)[:m1E)* ]?i /,CW(b.j@e14H$H1! Hf1E)֯[۶e)$! He)E)($IҢ#Ae)$!۰ak$e)!h\c۶EAE)`/TAef1- be)!Ċ : le)!ɒHe),[׮e)! 6hۤE)IE)!% ۰KE)!( 6qH"E);A$H$1E)! @$8E)UU5H$I!@E)Iضi P0 ɝwFp$ *`@%e*}4HE$  aE%q EEy# IEe Pr%E \۶-%1$ )ݐmtE) &I$Ie)!+* !@1E)@$I1E)zI$A1E)AKf1 6lڦMe)$IHf1 **$I$1E)$1E)ۺmm1E)$IH1! $ɒ"f1@dkf1-kf1A@(!ME)@$IE)pI E)!U*I$Ie)!*LH1E)յI$I$1E)I$I$f1E)۲aۺ1E)jHI 1!* 1E)I$I1E) 9Xن1P@H!I1E)I$I$1E)I$I$9I$I$9@$1E)zI$I&1E)}_d$E)!V$I$E)!^UI$ AE)!UU% IE)! S0e)!pi1%) I$I1e)$I$1e)( 1E)$ H$1E)t 1E)**4 "11@HI1 $I!91$11H$11~$I11~ $i9!z$HL1 2$ 11  11۶ )n91}4A B1 $ D'1E)$`1E)U;1jډĆ1-Zض 1! ]N*1!(8 ɓ#M9E)Uժ Ir09E)U &I1!À)-+ewr`- +015FF,hp`I@A I$I$)I)I$I$g9*$11$I2$A&11 Jd1!$@ ɐ1f1"$I1@ I1I $1f1I$$1f1$A$@&1f1 #운m1!@ vHm1 m׶X&91 O%BU9A' I$@$91 R&`, 9 ؐ ֬؆m91 91ﯪ $H)I) eI;fA1˴vIbH*yw1uX--+7,)@ i Ab%]ҺNm9E)Zר2 A$)1E)o`&i1!* sò9E)U 6'9E)W b9!@ Ig1) @!b 9 I"E91 I$I$91* k 91* k 91* m 91 "A$m9$!@ v$$I9$!( I$I$BD! I$I$91  9e)h 9DlR'a9  I E91(.  @$I9!$ I$I$91 91 ͒u9f1 rǘ9 ľ9e) t>79E) Tn0T9! @%٧A &MdI1jU ~@6aIU}0Q⪯4d$*U<X -I *U<& ? _9I U=$Iǹ< = *ǹEqO="4@Z:1QǹDZP8$hDZP.|L%q ~8fi!tǹ)6-Rǹǩri8 bDZXؠ;  hDZ%y7P@DZ@$4+؉NDZ 2"Iǩf@2 ̇DZ%q %2 "Q@owq I$`B 91/ mWit91 + $ 0A) l91 m I$91 + I$I$BD! `B$AI91 S91 +=9!@` >To9!k[E)$!( N駧9$!) üAJ91 91p l 91/  I91 I$@ 91 !91 / $R9E) MX91#\Ox$ '.NnEq 7X DZi&'27_ǹf/'0`8 p fRAe)  ɄP"99!x 9$! ( 5̒E91ڛ &A11@ b"gp9e) M=v¬9e)?131 /p@ 0x9E) ⽵ I 9E) * ͖۶91*  Ʉ@91 ( [ݼ 91j ~&S/a9E)_p h~9E) = 5MF(P1UUIkEI@ -Wg>` Fnc)<9e)p  9e)`, nB9E)^ Vq9$!+ mt9e) 4)9$!` m[C@91  !6̐91HϮ Fn91#* ֶJ 91'}:p! '7"fEb *na SB1%)zf I1!zPu1E)۲Ն1$! Jt61E) v QI91_$ r9e) m6`[a11j$QR& 1$!  * 9e)j89!MҶۆm11VI $11[m1f1%[<1E)[Sm1E)  Ȁ1e)$'1!zĆ1!^UP]N1!xW/I3(Ie1Kΐ(!Y(IEI $@1E)۶mmb1E)ڶ1!j-ò&1!ºMXf1>I$I1!-)n۶1E)e@ 1$! !)I1$!&dBe)$!ضm۶5E)!`C&ItE)!`X% ɐE)!% 646E)`)RJE)! -6kv1$I $!8E)UU ò&I$!8E) I$ @ 0* wW i8ս :0y$* ` `܉ibضhפMe) $I1@*9%y$ @9Ee %_4IДAE%Y Z5 Ey`hx `$!WxvT E)  @$1E)z^H$I$e)E)/e)%) f1E)$ERf1!4 $I1E) #"@e)!AMe)@H1E)I$I1E) 1$!* m[&1E)ʪzV) 5E)a ` I2L$E)!xTUI$IE)!UUץIE)! mB!1$!J4HKf1 I$I$1E)$f1E)$I1E)I$ 1E)I$I$f1e) 1E)I1!((#Hf1!Z1e)I$I$9$1E)zWI$I&1E)zWUUd$E)!`V`$I$E)!`VU E) M6IJQE) i;6M 1E)w*HAf1 I$I$'9#I$I$9!,-1b@!jIf1kvV,1E) $I441`I$H$9!m۰1E)**Ć1E)L$FM1$I$11߿U$@2I$1e)(!11 99$I1 'i1a$ 51E)p؆1 mۦ1!Ķ؆1$!vlێ; 1E)UU,%A1$!*N m1%)&HҦm9!$I$11жm&91]UH$$11 kצ91e1$ 1A 9!B*.ue) =-%.nsE +1&I(4X`,οh`! 91U׸[m11^W(I$ A91'i"1@#5mt9! $91  9e)*J4@9B1 $.19! Jj4HA1 'I!1 m&X91mӵ-11y!M$DJ11z,f I1 $1#1` Ƶ)9e)2d11 11 m[91W(<9bP15 wq%q@?-/ ˯` %y =IǹeiK I$Cm91]Km91jw lLǕ9E)_ uKX9b$ /A9E)|kq 1E)a;u؆1E) `]Ǧ1 + ҶAy'9E) U %qW9e) m۲m91 u91 &! 9E)@( '9  ۊ-91ꪪ ml91 @291 91( ",&I9@@ t9 ۀ91+ I$91( 91(+  91 mq91" Ic Q9  S `9E) ߵ߶9E)/ J%9! /k+9$! .9e) l91 I$ I91 $@2$I91ꪪ `B $@91ꫪ `2A) j ֶvI1 3۶mI X l۶mIe 'm _:$ U= W2́'% U_,$W<m$DZfU? Ea9TIDDZ%i<-k?hU3)+,DZ.(4+h:ډDZ1 ( ip1A?%q &3ʏR.4` L$I9UUWT I&C91 2)0R9$!@ ( !BH9 `091 ِdM$91. A$I91 249@` JH9  R-91ࠃ/ u99$!pkm݆e)E)]\ S9$! / BJl91 * ״h 91 m91/ I$I$91* k91 X6lt91/ H$I$B$! -91"X?f '1 vmffI*6 s$ǹ|ZQ4"F@f3i KQ(a91 Ż#9b*h 9%) ( "o*Y9E), Cu91b) @J 91@ X"9e)(*M=a1E)X`[mqg9E): D[91Ͻ VU-91+b  M9E) 1H9 '> r "9%!ܠ c!X)7Ou$(++ȟ>Eq I%91  ٢91' m'91 "-I9e)j u"ڒ 9E)* /39E) IYۧ9E) $I91 N"@91+ ԺҺ 91+ ,[$ 9$)"7f8+#ȿME 9&H9e) ؤ 91 D H91 C9$-Q91z[ #1-Q91 )0m@91 ֭ma91 $A&I 91 +vm91껺)B1! &5H9e)zΤm$W9E)I9E)$:1E)z8Ab$1!W҆O~1Zm'71!xUNbw41!U 7iV+Ԇ1![lH1E)$-$#1E)k.)B,AH)-غlZ,X!I$1E)+@$-%1E)Wo^Xmz1!޿$I 1$LZ& 1! 2I$I 1E) R(I1$! 1E)۶fHnf1E)֮ضk$E) h\H$ AE) X 麴˰mE)!( a E)!e)!` )AE)$I$!8E) I$ I@ 0 Y`8U }4%q@ .GN(0%E*`X%E IdB&e1!~ZH$I$!* E)!% I @e)$!** 5k$f9E)KWUǷmEE%D9%ye-%$Y ~ h%qH_zmt ѣXE!W^$)I$ @!$f1e)@$Ie)E) @!I$I f1e)$Hf1E)I!I1E)$I$f1E)h$gP%e)0ۊ5K$1E)XVU$A$C&E)! X@$IE)!p!I$E)!Uץi۶mE)! If1E)յ۰umm1E)1E) H$e)E)H e)E) !I$A1E)?HKDf1 4iie) L! 1E)I$I$9I$I$f1e)꯯51E)^$I&1E)z^UUd$E)!`V`$I$E)!`VUUI$ IE)!UU IE)!-qm 1m*1$!+  1E)**JJI1$!*@$1E)$$I1E)* #b1 @4$, I1afA H1R"`1`)ڎm1E)*IR1%)(*BDB1 R%&m1ضmۖn1E)JR$1$!4(QK1M$1!^q[1!s9m 1!X ح$H1!  i1! )5I$1E) $I1E)!!I1e) I$I$9!$I$1E) I$I21e)$I $1E) $&cӆ1E)ʊ hA1!  q#Ԇ1!p #'r%1AvD$I$a!&pSyFE1 *+/\]%N{+/P#B ܆ `%̏$IRǦ1 n͆m91 LH11 ;'b,9Aذ  &91I$H$91A$91{ժC 1e)]۴n11 r* I1  M;# 91*DJ4X91t11. "It I91ߪ-nK91ת@` 1!`l[11!  11$I2a1e)@@&!@){I%q@-5 /-iC}6P DZF#+ۈqm%11P$I 1f1* aL91 KI$I14!I$@11 -91 [3 ,99E)z M.M1!b#@9E)wUzݮv 51E)W]x /$1E) U v>9z Bv9A * $@$91 I$91 91 X`91* )6 91 dIt$91+ 91/ m۶ml91 91 I$91  49%) p XJ9 0* IB9! I$I$B$! r" I91^* ӶZ)91UWJ e9A j=9E)@ gzЦ1!: Rm9E) ۦIT91* $I 91 #( I1@ Fl 9 M91+ 91 91* ɒ"A9E)*@ d@@9 R3I$h9 ` ` ۶m9(S-kJ1| NIk AWI2+E1U$$U8dO<$u4$N(7 J$IDZ%q40 rRa%q2 @/i $A(59!` h 91# )I$91 . [ۦ[aBD! @91  $L91* i԰9A@ '`9 \)9E)* ,-R9e)  l" 9E)^z[mwe) ' &~l9  ,P91 + vH;-491vp l¹9!P ۆmنm91 L$@ 91 !91? II91 **( SΥ9!61% 74 jX%9 -5& 1W&y -/3h. p` d.Q Cm9139$!7x @oT9$! % XmJ9e) dJ991+ $vA9e) (@ dQǵ9e)! d 9 ڢ!PM51E) %p DN9e) *  in9E)  ޠ91+ Ԏ,* H1Uߝv&$Y!8*#%e*J n 9e! ,'9E)* m&(91j  59E) {  8r9E)쀪 91 R&Y@9!0 #HI91^ |*{$ 1(1at 9e)`Ri91UU H;91}5|^A`1*o7%j qLڐ(A1 I*(9$!@ @H91 Ӷ 91 hC91 $-9%) j ۧ9! p $9$!W  9!HjӶ1! UȠI9$ri7) 1jT)p1 RH9,I9A$I1!뢪 I1!HUhڴM1$%DJ1E)X*$1$!$"iJ1E)Xm$I1$! S)"@15`P`L3(1E)`Wiv01E)U AK$1!/$B2I1E) $C:J1$!$I$1E) 1E)u,f1$!jڴe)!\֥In e)! LB"$e)$!ۼ-۴ e)!@@$ f1E)`E)! ,2C98E)Օ5II@!0** }%q@ yYn%y` ܴ (0Ee ``EضmIE)!`$LHE)* E)!iae)! if1 %@e)E)߯I$I$e)E)** 2I$e9E)K_W9%ye-FA?%ye-hA%Y~ꨃ >Z i0~kn9Pf!p$IHe)$f1E)B%[Ae)pmۆm1$!$C2$A1E)H&f1  $I21jE)  I$I2!(mnlE)!*  m۶Pg1*mXf1E)I2$Ie)!H)&me) $Ie)E). e)E) $If1$ If1@k&qe) S)&S3,ie)@@H4I1  1E)z6f1!襥lú5E)&I$E)IIE)/IE)!5 I$ 1E)U4Z:&f1I$H$1e)I$I$'9#۲ [61E)j$H11  1e)* I$I$1E) $I-91E)p@$1E)B56 1``D@&1! I$H$1e)JUi1A nm1E)51!(z$tbۆ1ڶm6e)!V_mNl e)! v If1  II$I1$!I$I$9@$I1E)I1e)1e)$1e)@$1E) I1E)*$$ C1E)I1E)I1E) I115U Ɇ1@0@1P"H$I1$ $I291?~am?q! '-IvߧP1XN%y^_ 1o?$fez@h,g:9adۆ1a OĆ1 & C2I$e)$! `I$1E)UUI$1!`I$1!`;I$1!ضmۆ1!I$1$!"!QD91*jPnvۆ1%)361j`f1! :ub;9E)*~_ 9y9%) M٘9$!* ڨ cI9e)  F:EA)MlnYA0++$Iwk H , i , u"H?$i^~#?_ۧ$vt H$I1 Mð 91u0A<1 f IH1$ E1E) $I!11=$H$)I)I$I$)I)Ͷnm11 lS6E*9e)** k-j J1 m*1E)WO1!n1 T9$! A 39!K I1 f91* I$I 91* I091* i9,& $H91+ I$I$BD! #A$I9E)p I I9E)@ ` h9  $91 I$I$B$! $B$I91* &@9 C `9E)%dk9E)  ўV9E)xr &1! x VJm9E)+ $I91  $I$91 C$I91ꮪ I$dB91 ۰mɖd91 dK$A9e) Xm۰m91* |{9!&Ȁ TH!t9!  $A2$ 91.ꫮ 2Av91 #9E)M% 1!VP6lqXEAEJ*yE#/OE -1'S( DZ0X(a8 b>=p l91`   9! &`"P9E)&  IB$91 . mݖ91 & 91  ONo9!& 1h 9!  I$I$BD! m@;91 [ɐd91? kBZ 9E)XxkӶkf1$!pI$1!? ZN%9f1 +-J\9!4 4HL91 ' $ *)91*J ۄma9e)  I91?? $I$91 L& 91>"<%/' :!_eކ%i,<4!;b -{ضۺ1E)[5ZҤf1(r옡$He)!\ m1!$Mئtf1 )G I1$!$Ie)E)6S@1!0BE)@C%M&!8E){yi8-d PEi)+ $ 4)EEI@`ΟEEH%)!$$IdE)!WU5 E) I!@e)$!* &d2e)E)`P^}a!Ae)$!* DeBf1 (( I$I$e)E)I$I$e)E)/X 4E)HA!Je) 9Ƿ%e-FAIEy%hiEP~ꨃ [ch(^"I1ǂPf)UWX@0e)E)H1E)$f1E)ZW I$I2E)!(`$I$E)IȄ$A%)*  E)!#1I $ @f1* r u۶me)I$I$e)E)(:I H$e)E)I f1E)׽XMAe) $$ 1E)MirDf1 6(6۶I&%e)pHAMf14*" P e)@d$1E)iWWH$I&E)! p$I$E)!XWUdB&$IE) InE) !I$A1E)]]I1E)I$I1e)D@1E)2 *$a11@ڦmdH1!  $I1e)*!H$I1E) $1e) $I1E)۶M !1$!*@$IB1 $1E)**I&Af15  ۆ51E)zd$1!zUZǶmf1!WUIM%) 'm(e)a*@q7dI1! A$I9I$1e)I1e)*H$ 1E)I@$1E)D$)1!8IJ1E)7,I1E)*m۰!1E)$H#1%I$ 9!I 9 $I$1E)`$1E)еI1E)e1I1E) Ú5ݶm11r][ӭ11_}aB9!ʪ*?[?E)+-/a0 O%qzߥ +b%w`]I9A ݒ9 IB$ L9%)U +%R"H9p M9e)w* Iⶐ$I9e) IL91Uժ C I9e)  9E)UU* $9ja;&9E)  9E)} Kl9!Xm9 9E)Z{@nnM9E) vt v1!((b(H#:9E) b/,USAP157 ɛyqH5,d ` 1*a?6e;DZ9UU5+a"8 @`(ْaކa $91$ )I) "#@$i9H фM$I9e)$I91IB$11_ Ҷ 9e)* -I.91u$ 091u"A 1@DI$1  ۦm$G9E)$I91zQ I1 '* 1$!c Ն1j 9!  /9E)(%U +I9f1 P[91* + 9 ' X`91 ݀@ `91+ DAd91/ I$I$BD! I$I$BD! H 91  H 91+ 91 I$I$B$! Kv۶m91. #)$-9 @-A1 Rk,1$!* yɺ 9$! qĦ1e) FL<9A8( IB&`&91  I9e)**< t ђDX913 S 91* 91+ &m¤9 ڦ- I9e)j –aD9e) + I$H 91ꫮ )lI$91 k4HA9E) Su 9E)^q`'?)RqX -4$IX3M˜cDZE(5.E` 5aצIe * (9f1  ۶lA1 Үn91 IM591.. mٚ`91  I9$! ]@ 91  A9E)B @)A9!  I$C191 91 ? c9$!z蠀۳ņ1! qI9E)-U 60SAAb $WҞ#09 b 6H 9  m۶91 ۤR#`9E)zz THJ91 / I$I$91 x u9 % '3p T` -%1Z#@x, M>Zf v%y" X,,91( {9M9%)Vx(؆1! ? DJ9E) M"@9E)*b (@[90 N9E) ɂA91j tR, 9E)~ꪠa{#51E)>? 21!P15579EPe-+mf  I!91* DJ91.p $@$I91  # 9!$ c)H9$! X떧9e) 91 )M 9e)& f[M9f1*(`91 Hm9E) [*Z 9!8(( ۲1*P1$wyb@/ nAQ <9E) L9$! bd91  I$91/ Mm9E)dH291 pbV9 @9e)t[v1e) @11@ 11P@+H1E)($I@ 1E)0)r(@1E)*0ۺm0dž1E)ݦ '1E)Nئ1E)Ɩ' 9!*)kN1! i$i1E) XmӶ11pKbʩb,!H1떠RXֵim1E)+I$1e)* TR1!  aR3e)@ mDZ f1) @$f1-( $A`1E)$1E)$A$mf1  e)%) @$f1E)z$IbBE)(Xעò$8%!UH$I!@e! yW1q%q@----4 0(Ey1@ϟE$` I2d$E1!~_W $IE)!UUյ $IE)! * Ie)$!*$He)$!* )(e)E)J**  E)a  $E)`۶mle)!L(Ge) (A$I$e)E)ҵI$I$e)E)i[3)e1A``?a 6@y$%y-W3[AEyH~ ߴ`$!^ٶģHe)UU^`$E) x@$I$E)!XWUUI E)!Ui۶me)!*Dmf1((IPe) I$I$e)E) 8$I$e)E)p-I$I$e)E)%I$I1"@$e)E)H$I$e)E)  @۶m1!&Zme) pIf1A$I$e)$!%kҶE)pؾ ɄLB%)^I!HE)!U me)$!*I1E)׭Hb1 XI$ 1E) I$1E)*H$I1E)꺫6Ie1$IXĆ1$1e)H$g1 I$1E) '9#"AҶm1!@ )4H f1 $ :1!^Վmۆ1!zUUH$I$E)!\m'vUAf1!UUIlJ$If1!+1%)f1$!(I$I1E).A$$1E)H$1E)* J1 (I$1E)I1e)K$I1(I$I$9!$II&1e)< b10j#rf1%ڶmm1E)I$1e)* I1e)$1e)(۶ 41E)(($@81 e 1!$I$117$iD1 4 bI)%O9F) 385MJir *c$if@ f+($I1@I 9!*I$@$)I)11I$1f1 I$)I)I$1f1 mӶ[ 91 IlI91/ k۴:91`B$H1f1 I:41!`#1dI1 ` Fm6m9E) 萶c91 ݺamڶ91 [AP1[yufP%--,4 i88rF"J5XΟ`HDH91ܪI$I11ܴ"9$!*B iS(9 i DH1!$11$9F1 L$$C91I$@91 &HL1! C2$@91z S&/1 P H$N1  @91ꫯ (- I9`I$I1E)$I 91t I9E)W Z#@9E)UUZqQ'q&1!/ `J{?1$! $IO9E)%  [91 91 @91袪 ۰ 91 i91 $I 91' I$I$BD! sm91  `91 91 "a I9@ 4l&I9 9& 91WX* N:m9e){ CN:9E)r~ .hѧ9E) PSm9e) L_N9 ( X& 9 C 91ꪮ$2 91 X<{~9 <( L0$ 91( 6l9$ )tI&91 m[b91 Цm۶91 X#@N9f1p 99e)o9{e) )-8uJ7DZE /5 ,MaDZ%y 5!b !DZ&<2Ϳj NK9e)/NT$rB!&& * m۲ 99UUWX vm91   IP9e) (& $I$91/ nV99mu m@91. E۶iv91"* I$I$91* k `91 \}nOg91 /? ΅L1 & ͏1! s9$!+ $Zn)91 + ز 91p "I!91/ R &+9 P sƨ91 !91/  $C291** X'!H9^Ӿa%yH63If 4$؈iz.̭ l)~mߵ:%` @4.9!` r9E)\`=1! T9E) ꭵ  AI9E)' lk-91/ i$ 9E)$ R,H491آ vّl 91 l!X1$r[qf8/// ؽߦ 91  R9E)` #qڰq9E) B 9 DI %91( #ADQ91 * -'$I91^ LǍ# @9!&1Vk1E)€ 6h91U 91꿾 uݶ!91J mh91{Fb0//̏E I$91 `H91 k'Iڰ)91oi9e)' "ak@9E) mm91 M):91z Ҧm991_ #ǖp9e)_ 1 +%9$! i9E)UUncN1j } P9$! ǜm9E)*I4 9E) h9E)*mK11 (lA1E) ۜIi1E)$LZHM1E)B.9"!@1A昒P)r I&I1E)讪I$I01E)* 1E)VIID1$! kb`1E)߯I$I 1E)II$1E)1E)1%)l64e)!p0L0E)!$I0H$A8%!5I$I8!0 ɝwa8/ 1wS%I+ JΟEE p[E1!~_W$I2dHE)!UUU E)!*  e)E)- C4ض E)`$E)!$I-%E)p0 E)!#Db"e)Pe)`e)$!(K eKe)  Xe)A8$I$@ e)E).@&L$E)!* @$E)!ZVH$I1K 9$%q$-_A'% _~A%y@~ I$hzI!ȐHExI$IE)!*Vk۶e)$!I$I$e)E)0 H$C&e)$!Me)((I$Ie)E) IHe) fmme)e)!$I$I$e)E) e)b$$B2L$e)$!* E)-@$I$E)!xWUu$I$A&E)*6ER$-0E)@$%@f1DIf1(6I$I$1e) $1E)&f1 I$H1E) '9#sY$m1 Ji۶M1!4*I$1E)`I$I1$!  AI9 I$I21%) I$1!z$I$f1!VWI$IE)!-Idf1!U 4A,%f1 `$II1!"I$I$9I$I$9IH$1E)I$I1E)ꫪI1E) '9#A$I$1e) II1e)** B Eo1 ۲1@mVH1 I$1E)[01E)"m1!@AӶM1 ֶmb1E)*@$$1E)&4B3hf1```mVƆ1$! #:ik$1!W%AN$1! UDmۆ1 U Amf1&$Ie1!*W_I%q%'d wi +-+!,B@(9 `mfAA mm11 A2$I11 KI91 H2$1f1I$I91! 11 62#1 @ IDI1۲m11 -$IҮ91u B3i$I1`MV9E) $A"9$!"J T@)69A @Nh/%91pv%I@"7ONfX--5+/4&&&Z3s@P CdA%!X ")ǧ91۶%691_dH$ 91$I91 I$91dH$I11 "$iB#81@` FH9E) @Rf,:91__  mѦ91ƪ9F1 =&+9 X ۚmضm91 #$91 $LB11 xm11-$ 11 II&91I$91()9 ` :rI1a`q+1 S~9$!-w1$!- k:l91 I$I$91* 91 =5D9!. P逦91 91(( I$I$BD! I$91 [491+ 91* I$I$B$! #A$I91b N$#i91UWxPǭݶ1E) (*+x1 6`K71 & `Ĥgr9!8( lD`1A9F1 LB&$I91. `vL91+/ M 49 6 A  91/  $DB091  91꯿I$I$91ꫪ baG91/: %rHdY.*&& 1WX -6!&IIX 0$K, @8#,΁ `@ :Ae  9E) TIt9E) / I;)91 $9 m6@91 +%99A uk99VW -M91 [a d91 . I$ BD! #-91~ XA9  c%H9! mh1  9E)%U BJ%s91 g۰91=\P $ C91" XoN9e). iv[[91? $I!$A1};}!HfA"cf@͍4 / i 4/hXVDZ( 4$#a.р(@qz I$t%!` &H dA! #ނ(A9E)boP,1 ЀJuۦ1E)7 ơl99e)ª 0l9!  $91 89 ` m'AP)c?|#%E J ((Ae  j[kx1E) &tr)K9E) + $I@9E)* %ƒD 91 Ж?91y R I6)9e)B w91 ۰ͺ91 [ 4M9E) +M91芨 h7&Q9e)n %M$)a9E)# E{29e1>n xSjAP1-{? h9E) #1r9E)( Vom9$!. m91> ` 9( I$$A9$!UU I0i9!U I&I9! InZ9!ի( < I9! &R9$!( 1P)91 Dr$0-9 @ 6Aci9e)X Mێ H91 [93J9e)z K)1m9E)hA+t9e)f I1%)8l1e)91$!pΗfg1)1aWAP1zhȫ$ I&1"$IJ1E)`J+C`1$!  H1E)說0"@1E)ff"IS1E)bમ@$@1E)ꪪ@B1E)zZ$H@Lf1 X& 0E!u}-$I$!@E!IIH8Uս wW i8+qr䰁EX*Â%LEE`$ 2d$E)!hZ^ I$I%)!UUU E)!"(I e)E)5k@$Ie)$!*Ie)E)I$I$e)E)@, E)`PE)I$I$e)E) @e)E)z^Ie)E)I$I$e)E)d@$H2f1E)}kuE)  H$E)!h^V@$!A`mIdE) *>۶m0 E)@ If1a a?m%iE %_kAqE %_ }[Aq8~L1`E)U^ۺ- 8e!\ME)Ae)E)׵I$I$e)E)*$@$C2e)E)x I$1E)U e)E)"`j %IDe) &$I$&e)$!Km۶E)$0`B2E) h$!E)*$CE)bjq@E)Y"A$If1J m۶m1%)I$I$1e)I$I$1E)II$1E)*R$ $If1HI$1E)$I$1E)I$I$1E) $I$1E)ꪫI$I$901E)z@f1Pضmf1!xWWm'vb1 z Nf1)1!I$I$9"A$1`IH1E)$I1E)I$ 1E)II$1E)I$I$'9#I$I$1e)*($I`$1E) $I1E)H$ 1E)꿪I1E)ꫪ Ad$1E)*I$1E)$I 1E)ꪪI$$9ۺ4f1$! Zg;1 `81 D۶E)$I$%)!jUUI$IE)!UU)I$IL1!UU*vb'u 1*Ou1IH1!U ݖi1! Imdo9fo 7`Ovlx! *w嶇a /* nħi?% !I91@A$)I) !H $91 ۆ kӶ91* J K9  I$)I) ۀmt91ꮿ 91 $9#i1``  RI919F1 B 91  Ad$91 3O6l91z 21#@15 mi0+$w߹kֆX-.Sf z A e?}ʺ9E)k߾ 9E)ݸ.,Ǵi9E)ʩ 5l9 p xDnI֧9!<* iا9E)۶mv11 )&A11@$HtH1I$I$1f1 @11$I2$I91 -91]~ ؆mI$91U $M91*H1 ҭ[391 I$݊91$IB091uj@11" $9e)jmm91B$I1f1-/%9!Pvآ31! T9$! _ w9$! 91 K  M9 (aL9e) ' I$ 91/ 0д91/ $I BD! $IE9E) K91 Ͱt91 91 I$I$B$! j,̒ i91\ kh1!c&1!/䤪#Ԇ1!/@/9$! * ۦm֖ 91% )9H A$I9   $LB291/ !91 H$91 k5۶ 91z* $@T9A' I$H$91ꪮ :92*yxi䈆9+). nE *1+X RDZm8cǹ.>9p姱ekbB %K9e) vJ91 % Mې-99UWZh I$I$BD! [.&)9P Vkv91 $@!I91 m9 1{̉%q50 pjeDZǩ(824/iDZǩ *+4+ªM&41@Ez'ܪ fE1V ؉$yx b#4A1~ꪢ u9E)^b p#=9$!/^z  If9%) ?4[9e) > L& 9f16<ȏM!X9'r-Wo%Bb r.A1T i=ۓ< 91y ;6劑9e)zR H1E)+m.91u @$391 ?}  d9f1 Նgvi91#- $I"A9f1` @m> A9!P 3!H91 (91 "AI9E)@( ͆m붴91* B.B?0H95oybB iIAE)~ Or"U9!W( OҲ&p9!W ~u9!( m݀!91* ۺn91*( nH791 -"A91~j aI91( $I9e) dB91 m n91* #m9E)~, G1M91 Kn$a9e) I91_ "mZ91owdV9e)#XX1E) <6M1e)a@& À1E)* h4m=ֆ1%)pK[!Pf1I3"C` 6m1E)(>.ҖIa1! @1E)*kd61E)>  @$1E)Цi:dž1!^I;E)(/!A`$!8E!W H$I88I߿`8U+}D%yH+qYnܰ Ei* 8pEy%` 2`$$1I$I$!(*$@`$E) p$JDE) mKdE) (  @$E)$! ( )(( H2E)@ %IJE)I$I$1 0 I)()(I$I$)($E)$!@$I$E)!*$H$E)!z^U  !@@@! %) H  E)!* #ɒ(E)A@DH$IE)lXdE) e)E) ?ak%ae % bSqXx- O>[ i0~6i 9Pe!Wp$1e)UWUvHE)!((1 I$I$e)E)z"ɒ Ie) HIE) $E)!(bX@$I$E)!XWUUI$I$! $0E)@IHIe) I$I$@!$I$)f1@$I1!I$I$@!I$I$1E)$"f1@THdIf1 I$I$1E)I$I$1e)I$I$901E)ꪪzk$1!~`$I$e)!NĶiE) (Ie)! A$I$1E)"a$Ie)@TH If1+HM1 @I1E)*B 1 @$I$9I 1e) @$1E)*$I$1E)&,R"f1pCI1 @$I1E):$1E)@$$1E)ꪪ$5f1`Jvۆ1A4I$f1!UUضmE)!w$I$e)6I$Iae)!_c"e) JMf1 Im&1$!i1E).$I1e)($I„11(11 I11  $11+.I11 R+1m!P1U{b@+-$ 1і%q_-یE ФI$91U@ӶC91UUWnin11 - ۰۲11di91U@X1 '@$I211 MP1b  AڱM91]ضmm۴11 11e) -11j &lݖ91 d`1N1A( `!H9{%H---+P)9B- ֦m591 C;lI91  iu91w3$9e)]* #)@9E) 9E) A[9E)~dKFv1tsm9E)+ TN[9E)9e)$I91 &1R#1@@`HdJ1 `B$I11p 115ހA$I1! 'ڽI1 X h&I9E)@91`B$@91ު I$mӡ11 iJI&91_ Cn91@"9e)r  I91 #$I1`\i1 [1!/ Iw9E)  I$91 91* M9!`@ IH9! ) pԃ19 8` 4HDH9! 91* tX91+ $I91 ? $ 9a $a"9@ #ّA9aK(gI1s5f1((@ntĆ1$!& dI91% LB&$91 $9F1I$91  $91 $91; A 1  !hM91 mҶk[91 C65`)'7' 7W` --0$NR 2" a@:S,lrB oA BE) 7-8AE)p 91 5 ۆi X9! ' 91* $091 mɖd91? I$BD! H %9  91. $I$ BD! L& 91 Id91? Xm9E)^xo?9jd1 9`9! d{91' ڦM!EA1} !P9w?䀆 * z1/†BM1%ia5TABDZf 3. wX4dDZǩȤ8 +@DZ`9.hǹ~2#az+}2X~蠀wl۳ )^` h mI) ݊n89!$ -9E)^ZĘN+9E)] Rds9E)*{eWf`(**:yIx)t !)d91 .l&I91 I$91ʪ 숧 I9$! %m h9! 11r%$ R` 1E)0D,1e) ɕ29e)j jrd'91<, _ $Ie91 $ɐ$ 91( @91"  &-9!@ b@15Hp%8-/ 1d!A bTL9e)( O91 ( !(9e)4 "-&91Bh v$ 91; a39E)& m[;`91 횶] 91 H9%)& $ 9%) 4h91R ҆Mu91_ 179E)@679e)`k$1E)$I1e)*H$I 1E) k1E) -61e) mH1E),I 1!Y*** @f)iA!b`!rBJ@$I91W^VIN$-1$! mk۶1E)J m86f1rVNjf)*$8E)]U$I!8E)5IiP8Uս+ IwW $q8+ R %yP  y$E%y:(0`E`XR4غE)!BBI$! mbIdE) &&[`E)0`$I$E)!A¤BRf1>jۖ)0E)@$I1$CA$IE)@$H$IE)$H$)(I)(I$I$)($e)E).b\H$I$E)!$I$E)!b^WUI$IE)!UU5$CE)!b E)a`X&E)p]uVe)E)]Q$N$e)XLD DIE)a4 $E)`"Re)!Wټh0+m%ya H%yPz kpe pDI1e1!xE)$!(%#E) P`$I$f1$!0 C2E)!`!IE)!U% I$Ie)E)]U5 MFIe)b\(I$I1!*$@! e)!@$HDf1(4I$I$1E)$1E)@$ 1E)4AB-%e)p1E)$iR"8e)`iچ1!*{_`$I$e)!pI$Ie)! i$1! pڦud f18TA͔Xe) '$I$A21E)→ذdrfKf1( H$1E)$I1!*I$I9JF18($ 2I$1E) H$ 1E)I$I$1E)I$I$9 $I1E) $Xe) (A%:1$!x Ccf1  غ$I$e)!~ C$IE)h*m۶M 1!Ie)!IlQ(1!ի @MJ6q1 6ۤچ1(xmB1 1e) !I!A11*) $I$211j$(,I1@I$I1!$I117 l11I$11 I$11d1f1: IBX9n'SF%i)+-׽ۆi $mj,'1E)$H&I11{ 11?dB0B91{k i;% 91Uժ i9  iP@9E)*0In%A9E)$钢I9$!@jADh1A!I!291몫I$`&11蠠IH$I11; t7)A1ߟȒI@+1` fH-)+ '3/f `p LA1W_ #Ԕ1p 91 mtڴ91I$A )I) i׶ضl1f1 жIt91$A11@i I9e)*[׀1E)] 1E)kmMѦ1E).&l1E)+/ `NL:9E)*U4ۦ1E) ۶m91I$I 11(I$I$11 11t91 dJM;91_ 91꪿ @)(91?k H$@1 M11% vL91W_md11I$I$91I$H 1f1`1%)x1E)UX\Nۧ9!6 $Io1%) $C$91ꮮ C91* Z"9P f{q:91 ۶mݖ91*/ $I@9f1 k91 !q9A' $A$91* Xu۶m91 X+j]9E)8 ~n 9e)Wmvm51E)z>&$1! % nԧ9E)/ )A91H$)I)H$1e) ِtI$91 Mmۖm91 @91⢺ tk91 GK9)Jʪ*9te1++.QQJf*# 1)!IDZ:L!QS9ǹi& 6 $X91UVP`i;BE)'OBE)b  `Jվ9E). ۆm(49%)` Qh9E) " ۦP9   91? CI۶m91 hu`91 0c29P  $H91 (9e) N0L9@  9A@E)@) `w1! * RR)91pB+ ^6AP15ɟܹH= OEy$S{ۆ'6\Pˏ'56 y[DZ%q -%73.--DZǩkJ4+"2 DZJʋ+6 DZH8/~vǹ7"I@@2(@Eyy*_?%f9^ꨠ  @d!P9UU^B É9E9 ӶeA1U PI!* {qH555 $OdsQ  IT91ꈋ 鶶ۊm91 &I591 +j r 9E)*( 4I$H9e) #@IR91z %E9f1{z Md 9e)6H$C11 Cuv11.*A:1E)x Ӱ<9$! Tr[R9e)) 4 N91 U 5r.Ѧ91 (/yxEqb8-%je:Ey ܦM嚢9e) ID(9e) B @9!@4 $9E)U$H1$! Er9E) %W9E)< k'A.9e)o&$Id˦1E) 0$tvVզ1E) ?3H1!RR*,1E)>Vo4,1%)b6cJh 1E))$l9$!ƒۂJ1E)@I'Ii1E)/$H(X1$!$ [9E)*zZ 'J9!r@BiQ1E)  [A81] tqWaA8 )- 4I+ ;Ea Fj[:f1!hкvoe) vP,&!0e!_ L'I$!8f) I$IH@!0* wa8ս/ }s4 %yH  iYJ$Ei !AEEy @E$` `5E1@$I$!IB0E) ڪ@ E)A$I$E)!I$IE)!* )0C2E)@`mٖmE)b Ie)E)I$I$)($H$e)$!I E)! @@E)!$E)!ض-۲E)@Ȁ I$! I$IE)! E)!I E)!. %[aE)pɒlE) !E) TBВDRE)`E)!#"IRE)`0 E)aAHe)%yP $C@E%yꪪ%yE@ZlbE9E @$e)$! I$I2E)!*x&$C2E)Ajd2!%)r m۶ E) Ie)$! I$I1" Ae)E)$I$e)E).Ie)%)I$I$9Hm۶1E)$If1E)Ie)%)I$I$1e)Cm۶m1!b*-R]f1 @رmۆ1!I$Ie)!-I$f1!-@e)%)"A$I1!b  $I&1E)z$I1! C1E)dC$If1 I$I$9Kmf1($I1E)J$If1(H$I$1e)ꫪ$I$A"1E):N$IAf1$ID11$! j$t$f1!Mۉ؆1 $!!< I$IZ1!UI$%1!_1EII1%) R %0i$LDZJ4O,ip` Ai9 cz9A)BE)'O;OB%)~x 1Q9 + )#91"( $9& L&91 0 91 + I$I$B$!   91 4aC359 `` RH9$!( ۄ9!` ^`P9 5 i9Ab!RE) tZ`9!+ ϟ!PA9ul b ! A A-191/ v`'+_'z܇`,64MMDZ( !3.Ю-;DZǩ)w|8j+rDZf(*6"ڦM"DZ@7LaDZa 9`y IDZP 4!&ax0NݧPV~ I^Ei@պInl EqHժom EqbH6x!J@ qjXCIAf DJ21!@ z9e) *n891"U  όVA9e) VNd9e) ` N0q9e) Z($I9E) ֮Km91 R*t$i9$! NI91航 ݚh91< #Nu`9$!z(w M9! -$ 9!U*pH1! ~ ۱YX Kb>% @m$9$!U@ħ9$!*$`$9$!  Im i9E) 1E)) X1E)/ u.Ht)I9E)^ ]o'H9e) k$I 91 C9!b eX[$i9E) dN i9E)Z"  $I1f1  IdB1f1 R 91u-91oŖu11 !11H2$11 z $1Xv1e)* M&1!1tLǘAH1 r._qebc>A@)_ ,'I$81 I$ I@0 wY `8 }4%y@*qMEa !E E%y EEy a#%E$ @P o?%i$@$I$$! @E)/ ۶ [E)!*rR%$IE)PE)!I$I$1E) `6,Y5lE)qE)!$H$1$@2$HE)! ʂnݶ E) $E)! I$I2E)!@$I$E)!ZVUUI$IE)!UU0E)I!$e)!. H$I$E)! I$I$E)!(H$I$E)$!*۰-E)!@mnE)!@$I$E)!*  I$e)E)WUIn0E)h@!@e)%yH+---E%yEEy:`%yE p$I2$$e1!zTH$I$%)!TUUU$C$E)j m۰aE) 0e) I$Ie)E) @$e)E)H$Ie)E)8  I$A1E)$IB1! @$1E)$ $e)apݶXmf1E)I$I$@!`%e)!p(ڌMf1!Mڵ[E)".It0`e)!-`He)E) !0 1E) @e) $I1E)zIe)E) @!۶m۰!1E)+j&Pf1 $I1E)I1E)I$I$9I$I$9$1E)z"aZ]ۆ1@1hѶm%)  CIE)!m&MeE)p I 1!("S1J)A$1 L$ 1E)I1e)۶ 61e) H۸Mf1$ 1e)I 1E)I1E)I$I$9!I11 51 ' 9! $1E) $1E)6I1E)ĭ|1$ݶ 1E)$1E) vm1e) **#--P1 79PmAaI1E)m$1E) Ivb9E)   Ib9E)(U  AIb9E)U +=eے9$!p dII$91W [-hm:91z&31A@ @䑧9 Іr91X PN[&9  X$B1(UWX)f @@ )I "Am9$!H 1]`G1! ۶q9e)* 9&$  $I91 $B$ER91J AB$91󪪪 v,m4 91 # 6M;@91_ `6 $I1 XmI״91 91 #'(1@@ HI1 %N1E)4d"$1xk 1E)k k1E)ؤM1E) f?9E)+W ɴAN1  I'h9E)J*IA$I1! $uj*u9( 6ز-91^ HIا919F1I$I$9F1[ 4l1f1 D*$q9E) Jj j4I1!d@!91꯺2I91s"͐&i1!ds Ȇ1! k;9  kk HM9E)* )  0H91 CI(91* IɔH1 91/ II99U 8SI! 9& m91 ۺ-m91ꨊ  2$I291+ =1M91Vr Nb'ۧ9e)h7W18((PJچ1! %~ 4 T.9! j HC1 591z mH!9E)*J `B79 A$H$91 ]vm`9)J*9We) +),PiJf"/'(M2!}C?)f8bj1pǡe  91. ͯ@39E)1;BE)?`~0BE)  9E) / L&99W^xk I$I$91*  9 @ 4HI9  I$I$BD! $"ƒ-91 $IB9$! $@9p e9e)( `3hK91h /: 9$!z l)6lHb'  ɝyHՕ= ⇸mEy 91* ۲m۰m91* SN ⤑9 R(VW=q '0)O` 5 2Aǩi@8Vh&iDZ%q 6-j1]DZ(7*S5ۖǹru3)i DZӑ-5@DZ` 5 4DZ%ypp` 3*HFi~2m%y 3IBfU5Cr$@yo*7 mjXA91^ݼ* 9E)q7{Ն1E)+(. ,Ng9E)* @Yn1! *I91 m&a91 H91 bAӴm91c* v ђDJ91* ڰ"A9f1(@ @91* @ݦU91 ;Au(n9e)  I$I9%)& S?1X1'55k5c%bbJ =I9E)ꪬ$ O>v.B9e)ר /`()9E)U` II9E) $A$91* 6iE91 M1 91 $I;91" $$%91 j 9e) m5@m91d$91ZI91$I$1f1* @11AQ)91j @11(HM[m9E)$1E)$@61!$It1E)~U/I$1%(@)_5{AX1)woP +?ڧ@__IX8տ* }-G%y@*yYnEa 1I E%y E%yI$I$h$ &,E%)@h P- eI2X n=ǂ*I91 ϻ 9E)#I5U;A1$!Xmۆ1E)/ Md'1E) Nl9E)* A&91^ mmڐ91 j91+ d$I91 DII91 "@91h. I%n91 "(AP17~﹖fJJ A m#7h9e) ҢA9E)b  HA9E) "$- 91( n$M9E)" k6ka91 ԭ8H9e)! $i$H91 a$ 91 4)I 91 LT91 ۲ m91 VLŎ9! IHƆ1%)#"9`1!`$'H:1E)m۲1E)*vb'1%)@ !P)WIAX1Ur&E bP%IY %qH 3 ys7WDZi-/*2 3֓$Hz4 -I %qj<O Iǹ%qU; ?( DZi; ǹiv" m۶w;f%qt $IrE%q*Γ?EpC&L$%1 \VUUI E) U% $AE)!. $H$E)!I$I$E)!I$I$1I$I$E)$!I$I$E)!* I$I$1I$I$E)$!I$I$1I$I$1 2d$E)  E)!@$I$E)!I$I%)!_WE)!E) @!@E) E)$ E) I$I$1)m۶E)! E)@ h$IE)  E)@@(1i%) H$E)!ZH$ 1A< ( ?wi8/--- JE%q+++)I$I$h 0EEyjʏP4%$`I$ E1E)U4@`e)``e) ` r,Qe)0!1!((MڔBe) H$e)E)I$I$e)E)* DJIe)A$$I$I$e)E)&e)Ä 2E)!ྭݺ5mE)! Ie)!5  E) I$Ie)E).I @$e)E) p C$If1$!ꮫI$I$e)E)" @!@$1E)_@$If1E)z^s: $Ie)a Idf1E) @!`۶%e)!0$IE)! ۶mE)!/!Ȅ AE)!/i 1!ׯ* I$I1E)I$I$1E)I$I$1E) $1E)$I1E)*>TI1  I1e)*I$I$9!Cm۶m1E)b$I%1 P$I`$1E)$I1E)L6"a1!6ۖq1!(@<%1 pII1$!$Z"1 P1z$1!W k؆1mۆ1?1!_UĶV1!UUI$IBB1!WUNb f1!U}- ikZqPf! /)p BbbbۢII9$!jIM1$!H1e)  I$I1E)*!$I1E)"&a1! @$I$I1E)Imm׶1E)kmm1E) 1e) I1E)(*I1E) ۲1E){*2@%P)55ɗfP5-?1^aE-['vǙ .{?xoAe) eyk2@9f1X mvN 9E)( &i-49e)o$IR91 @d,J91/_ I۶)9E)j$IB1 d110IZd1 IB'91_ 6`&91 mvm91꺺+ &99 X `H A91 IB& 91 $ᄤ I91? N$1 &m91﫢L01f1 4R#9!`[hTH1A I$c9E)WZm۶m%1E)^ڦ1E)W I)9E)/ IM9 &&HU I1! HB$I91~-ж[3l11 > $ [:Ʀ1$! 鶭غm911f1-$ 9E)*'& M1 R*H1a A91 H$ 1mf۶ 1e)**IH1  I&91 ؀)91꯯ k-91+ `[t,91 91/ 9p u ۼm91 Pv91/ 91  .91* qº39e){  1!* a1  @e1A@ THd1H$I$)I) r,ق(91 nmѦ91  @ 91koW%E) ++-`i'Jf 1&-mDZpj1!TK-f<2j2J&DZE dB2 91* I$91 M:P-91W\p;Be)7~]B  q91 5 I$X2,91 I$I$91 mf691  ݐn91(* I (1 I 9e)! h< 9 pdpA9 (( !H15 d1 i0) hx%y $HH1 C !I91몪 !I$91/   91 hۺa91 chAbʪ**Sf!+-%5Thǹf ښ :#ǹX`:3ǹ54$I$%82m6mǹ?:` ǹP :$IǹH:3Ώǹ54I$I$%53$I$%5+X`0 #h%q^$On?lmfPW%~Ѓp9Ux  eǣX9UU^ J"fA1\ ӶЪi9e)z v՜v9E)_*k?M9$! ۉ ֆ1E)UT؆1E)UdQ`Ǧ1E): U `$9e) $Al3j9E)z d791; J91. .)9E@y|$)+++)mpa #ڢ H91 @$F91 ʘ 19!j .j9E)Joȿ PƑ9  Ԑ{9E)& R7zx9E) ɝ1E)ANۊ9!%I )1E)φ1E)kg1E)* 6 m]1!0 Tuf1$!8* H)U) 6'ȭbP)]U/ݶAP1usv&%Q!Px w $q@ Iv fPU *-7 `տ*2 r$%y ;%m04ǹE+r?0[O蹧=~<1 [蹧;1vm`豧_ =1su.蹧_821:m[ǹ%?$RdKh*@%h$p$L$1I$IE) UU! @%)I$I$E)!I$I$1 @ E)` E)!(( E) E)  I$I$E)$! I$I$E)$!** E)(I!&E)! I$I2E)!/@$I E)!I$IE)!_WE)!I$I$E)!* I$I$1I$I$E)!(LE)4I$I$1 E)@@E) ۶m۰dE) E)@II %)+=*HB&L$E)!ZVI$I$$!!,x$d$9?q{YA0+//- t NEi+++)I$I$hI$I$hEe@ڷEQe  E)I$I$e)E)ܿ- I$Ie)E)" $Be) @)Z5۲me)!@E)!I$I$e)E)( e)$!kte)!LHI$!kE)!7 E)!I$I$e)E) e)E) Xömme)E)^ I$I$e)E)-P(!e) IH $e)E)p@$I$e)E)X I$I$e)E)* I$1"@$ $e)E)$$$e)$!$I E)![mضmE)!C$%e)!/iM$1!f1e)I$I$9I$I$1E)I$I$1E)I$I$1E)I 1E)1e)I$I$'9#$1E)  I$1E) @$I1E)*[m1$!IH$1E)$I$1E)H$I 1E)$I:1! ^"@mۆ1bډmۆ1!~UUĶE)!Um۱= 1!UU A1!UUI3m1 o Ӷmf1A$I1!j*m۶m1! H$I1E)* I$IB1E)rJP) rmy bH$H$91TVWUI 1e) $I$1E)I$$1E) Z"&´I1$I $1E) 1E)$A$Ʉ1E) : AJ1  T1&I$I$1e)* I$A$9!01!@]O APAyWIfP--+B%)$eBjr nwIe 2`k91m*N9E)⪪ `9e)ި qur9 Z  Iq:Be)ߨ -P9 bh;A9!J* XIe 9a *ir9E) r M8I9$! mm91 'h"\1 $-:l11B 91 D9! i 9E) @ 91ꊨ Xma91 $-1( 91z dd,91 *)4N9!` * W9A*.6 kn91 # 3<9!`p[ՙ9!'mێ ن1E)%9$Ie)! pT丧9E)$I11 11<@110 ɐM691_!91I$@ )I)@11I&<1Ap$IR91I$I$)I)DB2 I1f1 #%@1` ]9E)* dJ%91뭕V I 91ꪪ I$91 )C91 0-91? $IH9%) `,$I91 M491/ ۺ56`91ꪂ  91 *A9E)&Ri1$!ɐ%YӦ1E)/{s0%CJ1!p P91@$H$)I) C1HI91Zj i691/ 챝ZO)`) '7-/wi +-. %f ,<1 DZFJ( 1Dr0%%bJ N$A `B0$91⪫  I$91 +#9E)/?Ae)'}ۨM8B!b as>9`b )nB$!h !@9  I$k291? 91 ҦA€9 X 91 M!EI1 IdžA8 /Mh ;-$XN91@ 1`W91 4NT9$!*$ dB$$91 ! 91/ I$H$91I$@ 1f1 oEy7.7fe1 -4'@  83mێ!ǹDZk82m۶m 7ǹ91m۶ǹ?C0{}J 鹧"EZk` F1/ W׏E1/< UUF0c _˥WI1ow~ %_;0oǟ^豧-i?裕$ɖfx2hf_( HaWI?EH_ `9Up @AqUB`9UUx -aVP9UUU| !iڂV91߀ ñc H9E)z#H9! I?ШI1!-1!*,?ֆ1%)UL'1E)UU<c;9! EOI c!8_/@?ɏ$fm&9E)_ XMTr9* $hAe)m{1i9$!c $n9E) iȎ9E)W k>H9E)z lJ9E!& 3&`1E)u+i5H)* nr#8`1UU &NR!P9UU BU޹: P)UXEQ@ }mI aAH; %yPUIn7fXU1, `U*: mD`DZyC}$ e ;)ے& qȹ511EIĘDZ*>#A$IDZX`:2۱mǹ43&43DZ51H$IDZ81mȹ_?4҃&ǹp8j$$9I$I!.!I$@E)!鯮 E)! `$@E) I$I$E)!0E)@@@E) I$I$E)$! E).4H E)8 I$I$E)$!KÊ%E)A(P I$I2E)!@$I$E)!zVuI$I$!!04%$HE)!E)!+I$I$1$E)`E)HE)I$I$E)!I$I$E)!I$I$E)!H E)$ E)!ຫLȄ%) >I$IE)!׵IE)!$I$E:b8!/XNwP8-'75&p Ea+)--hI$I$h EEyj/4%E `Ͷmۆme1$!I$I$e)E)** I$I$e)E),0X P"$IE) I$I$e)E)`E)$! 4@E)pM1Ie)!%K%) 0 AE)!-I$I$e)E)I$I$e)E)*fH5E)`EJDE)aI$I$e)E)(,IA$e)E)$I$e)E)޽I$I$e)E)-A$I$e)E)I$I$e)E)($$$e)!X[ E) (64@mE)`I!e)!+M@e)A  @!XĘ'@e) ALf1 I$I$1E) 1E)j$I1E)I$I9 $1E)   H$1E)$I¤%f1! 0f1 ` I1 @$I1E)ꫫ$I$:1$!x jf1h6mf1魪hҤkE)!I$I1!W[1!Uq;A$I1! $I$1E) @$I1E)*I$ 1E)ꪠI$$1E)&91!* I$1E)I$1E)$I1E)K'[8 1! ؠ I+ aXEAŽ%$I$`$1E)mm41E) mm1E)$ ɐ1E) $@1e)*IB$I1e) $I1e) I$I$1E)#%-1pi(1!7I$@$1E)LȄ1E)"$uHYI:$q!@U$x U@'O$ap ~lۦ9E)@N脦1E)$ $1E).$Ħ1E) Dْh91_H$91 xy41 I I9e)* mݲ9E) _ 9e) 9e)`{X,9E)*"!ܤ9a$*1e)  I$91 M2ֶ91 m;-R91W nm691~ $h91  I$91 I$A$91 M6m91*  Am9E)&  I$91 #@$I1` O!N$I9 & H 91~lH 9A$K+ 11`%Дֆ1!/ 4I9E) ۶ma1111 H$11I$91 91#@H1`i۶m91$I$1f1 *$@91 $MB1 k5۶ 11` au:91r5W qC<91-\P  S91 M]n91. r,HS91. Aۄq9A' 91 &I\94 D{h96( 91* I$ $91 r"-6 91Vh*K\'m1E)XV4[1E)Kdv96 $HD99b I91Xӭ۶ 91z{ Jd9!<p;%1 +.R5E .%P+i4 S6ǹ&y:r7ˏ !I$91I$H$1f1 @$91 ** Z/49E)` R9AB *ik#B!h AV9  c۲ 991 )vkm91  N"91/ `"p0I9 [-۶m91Ȃ B5ZAH15NZu!H1je-EAE dKI唦1  h*كu91PB2 M6$@R14 $ h9 kX-91  Q91  $H$91 ,19$!**j6a{% '?3 PJWa )DS3mDZH`C2:蹧yB2 f<蹧$uEЩҲi蹢H @:DH&lǹf(8(۶ǹ: DZa@<XYǹf6$6ǹ_7&%0_DZ *6&(E;ǹ 81 DZP`=u`(@ǹP"6 X1 # %y^ fP_ neb0'm iAP^ 3Ah1U*  X1UU* c ?P9UUW )I1U n$91 cm 21_ 3tb9%!~n O>)JA0/zkH}% ]; iAe) m?R 9%!}:"NIи UC @ObbX9U 6ۘ$Q ;m[A`9* " IXfQU o۵-%a!@Ibۭ= Eq(_In. LEy@UiIHf8'm H+nP -ONn% miU4 Yi;.ǹF}.;M| ADZFy9 <2DZ%qhD ڰmȹ%y A-x2ݒ蹦kH $:qxD$)tfB1N ݕIm6`ǹ!51$IDZ54I$I &@ҠI>4ǹ`"H`fBf1 ؆ mۦ1E)WQ&81E)(u4if1 ۖ1E).۶m$1E)$$1E)( I$1E)ۺ1E)*_XdVw1( $21E)``$1E) aò$P)7' iS7qSE@///Lqu.w f-++%em۰-1E)"H.L1 H1E)(*I$$@1E)L6*1@& m1J1iҦ1E)]&1E)$I8)1@$MA1Xm1E)䤍%9ZdR@1E)+x P'1E) nP 9e)+4I-11E)/ڤN1E) m691 6M91Х[m11 MѶ91 ۶mÖ91 I$I$91 dB 91 ;*I91 I$91 @9F1&91 # I1 @ i[H9AMێ ҆1E)_UU\`Svjۆ1!/$@s1E)-I$H 11 g9*I$11/ $91꯽ $I.81`IH9! k,P1 (4AI1 I I$)I)"A H1E)[}$1 p,#(9!&j 4@9   I 91 [Ӣm91ꋮ `91/ KI9 91 m@`91 TA1I9E) DI )91*  9 >49E)^[mm[1E)nuedž1! DUc69!bb 1'> j$I9 &a];p) %5+d/Wi +/-5f ,1 â( &yb7bNc" RcJ c+XCAf)xsDDI1e) I)I) BBQ1p ޘ/9E) c~qBE)?}̏AE) XAT9f1 %  0 091 r09  K9 9 ` 4@ %`6ǹ(7V~ǹ_߽8#e$=ǹ{U*7"$6Aǹ_<ۖTǹf$7 )@$@DZEy:)?#YǹªFfb7Ai8~IȍfW0OIǩFyW4 Ob? hǩiU#c ifaUORm ibHOl hEyPU Mml hh%AU ϶`1W'_Bh(**o|Fj..*OF ժ ͬ2!X1U*H3 i f~~.~Bmi_4Im;A`U'On# XU/ I, AiU0 o$'H%i/oEyU0O$F6 X9IDZ* G'Ol J) )†*Kiq4 f L.]j)§_F1\ma WFͽ$ lfת:ɸ͒mǹF8'ǹfۨ6I ǹF29PF [7hVQǹi**8 &l9ǹ%q 7hǹ" GXfmǹX D0ۃc? eWC!,m"(N?ZN$DZ}H$I$$1I$!/ E)!$HE)! @%)I$I$1 E)( BE)I$I$E)!I$I$E)$!I$I$1I$I$E)$!** @$HE)!$I$E)!k^W $I$! $I$%)!E)!*+I$I$E)!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$! E)!*I E)!@$IE)!z^B$$A8$!UUU %M$!8E)-I$I8!0 IvY`8U+ I.7%y@ս R$%yX+  E%q*  EEy$IlW!EEqC$IP'EE ^6p=EEy/%E p`IH 2e1$!hE)$E)!5]E) ``$@DHE) (mE)!? I$I$e)E)#e)E)Wi$H$e)$!*IE)!E)&$H$I&e)E) X$Ie)E)pTեA1 I$I$e)E)0DJE)(0 CE)!M ) ,E)  ! E) B$EJIE) mݖn1E)=-LAf1A  $e)E)1E)!1E)$I$1E),N $if1 6@$1E)ۺ]1E)kml1E)I$I$1E)$I11$! xP8 f1 PHǶm;f1!WUUmvl e)! Hf1 1%f1!A$I$1E) 1E)$1E)1E)I$I$1E)JEI1(I$I$1E)I$I$9H$I1e)I$1e)`1e)**$1E)D@L$1E) I$1E)  I1E)3˴Pe?%yH= ˯HfTq2 qĦ1E) I֦1E)_mIbۆ1! i1E) eB>1``vR1 DMӆ1E)@I$1E)  4C҆1E)+hIbۆ1!$ Ii1E)I kP?"R EXb( )ywX-- F-C8eBbp ȺچAڰMC&1p He1$! #$I$1E)(I0$9!I$I$9!۲i1!@fm1E) `$I1E) m1E)mۼ1$! 斎1! R"H0n1Pitm11'$ $ 11 )$19 z m9E)LD&1E)ޠ P{kn1E)* @$1E) 45Ca1 p4 $m9E) 11 @AG(1e) ( lx91  P&9 X mӶh91뮼I$1f1 I$91꫿ J 9A,4!@ 1f1 b#m9e)z~?69j'TE)PR1!/HN1E) 11(8@ 11H1 Aɖ91J @1L&$I11I$1f1 *$ B9e)*j0AA1 5*I9E)jBжV{BA؂ * m9E) IdH91ꪺ &1g9! I$`B 91? @!91" -9E) u:[!91 l 91+ 1&@@9 [i۰M91z* vb?9E)_[ٓ 1w1! - XNXr9E)P9F1 (A,)9A@ pwf! *+),}֝1f#ȹfU<[MȱEU7 IR# ȱ%yU? Ibl+AȱqU; m$7 y*5d@DZXꢀ.S$ @H?0ca蹧\B,l C=60ȹfO4Гmi pB,W ȷB+Th B#))f(@I+ †H.̝B H1fO U/D.v}" &D-{ۥ鹦A.`o鹧&WH/ 7O I1А)§*]UG1A)L$;$Ү)†JJ%uK֑4L †J/-h)§G4hh` :q;mDZf@#۲ǹa41k ѧh8DZf:"8|$@`Q$M81I $!: I E)! @$E)!z~I E)!I$I$1I$I$1%)@!@%)I$I$1$Ia%)E) $HE)!$HE)!z^ $I$$!   A$E)!IE)!/I$I$E)!$E)!@!@E)!I$I$E)$! E)! E)!I$I$1$E)!LȐ%)(( $I&b8E!] $I$B8$! I$ @b0 Iv `8U .E%yHս yYN EX* qI E%q*!EEymֵW!EEq> `EE pEE pm۴EAEItm1%yE  "P%y%A@ s}%qE })PE) [vmФ%) $ e2E) .jmCvE)! A1X[lE)!0 `$Ie)$!*  )(I$I$e)E) %Ab$E) I e)$! I$I$e)E)I$I$e)E)/`X%E)pm۶,e)!/lhE)!&IE)! #$Ie) @D e) @$e)%)@$If1E)I@!I$I$9 1E)JX$Ie)4,$Je)   I 1E)"! If1!@H*A:f1 9mۆ1!ZUU`H$IE)!V_I$If1!UU%IPE)*vMm1E)n۰m1E) Nte)&$I1E)L$!I1E)I1E)$ILe)I$I1E)**P w1 (I$1E)I$1E)$I$1E)I$I1E)[m1E){I$@$1E)I I$1E)@$I$1E)ꯪ$  1E),M9P)577'#əɕfP555qe I$1E)$I1E) L$1E)$ 1E) 1e)* A"1@TIB1 aBdB1e)*"L 7bf1 LI1E) *@1E1€ (k-XvX)%yf8߯+8 9woH ȱ%q?SzZ 6Ժ-9E) ueCdC9 *  na91 I$C91 -I91㯿 "(9@ vl9  91/ I:1 زml91j Z+9!zꨠvWm1!ߵm1E) / 91 $B$I91κ]`) '7) xbq--.vAtOf 0;0ibB;ʏ[nb I$`0A1$I1e)$91H$H$)I)  t91+ӊAɔf1  k9? `w˸9E)/ )hI91 dLF091k; ߾!P9" tA4 b`1Z\VU i9 Xv917_ 8Jh91vt1$!.VI1E)+- ȡҍ9a@p dI1 H@$91 #$I9 ` D@"19!( I$I$91 - @1@ a6IA: 6vff) +="T.ȹ82`l۶ȱ80M$Iȱ;.! IDZE@@?dдIȹ%y =2}蹧/;1F)Aȹk7A1} {鹧%_=1q蹧xA1~>m蹧ր=,m蹆 +D. C0;<鹧JuUD/-SS ^r@07mO蹧UE.&zbI G-ڹOA I/( )UG0Ir UUJ1II)§UUE0V>IA [US\* `F-M Kɸm'A%D+K 鹦H8\M EE-mO鹦=0$W蹆*<0m蹧H@m6mȹiO0 ]B-&lɽ蹆G/yJh ՂUGAmhH IPE I. A/}߿蹆J/?y鏵)]]A.pf݆蹆*F/=n I&`n%qA/Z`蹆(/?2#H蹧} $ 91@ 11p $LB&11%b"Q9! I$I091 ۦm%1A 114I$I$11# I1p !9E). iYn9E)z 0mޖu91 K] 91  h8&1P H91 ۶u[Zl91* `091* I$91/ k&h691 *<A9 p tb; 9E)^} L1E)WԖK'1*z THT9e)7 "aN%I)%1wf@+/* af&>.!R0|9s=k8cˎ hJEEa) Ҥ H9 ذ$HP%1 PD 9E)*+ l [9( 3DJ9e)x g;9E) [kBE){i pW9e) / A i`"X1jr #N1 H:`m91 5M91j* *5՚9e)J* o l9bI$K%1! rv9A * P99!X ilMd91d@ )I) j$mҶ9e) !911e)) ؀m91IO$'0`/wY +5,D j <2Ioȹ8" I0)ǹ* b<1N.@蹧W<2c۷M蹧_J1')§]U/W?. ?蹆F0 E ^UJ/ EA&`BHG$kmv†>J0O)§U_@0'y鹧U@/蹆=1`蹧XߏE0~/ We J/r _/F/ U>.V5:蹆**<,s蹦=.y蹧UU90lǹ>CB0a` C03xX I0돆 uX<11P?w蹧 _:15um7ȱ/ouA0鹧ڟ9$AEDZf@1o鹧YS{C0P"?i? X _D0d< &J.wJ /. B0 鹧w眘?1s~a鹧WC/ـ鹦E0'< U{SD/c uW6E1y UC-R{? ˫D-^}0[ cI03B §UuVFЄ *(y@CIȹXFhiiB1T5鹧[?/ٙo 蹧 <I$ ǹE = I(ǹ8@Qx$I$u]  A!:!$I$! m&[%)H$IE)!$`E)"Zغ-ۺE)@!!@$! I$I$1$@E)!E)!I$I$E)$! $$E)!I$I$E)!^L@B%)!6  $! I E)!+0E)@(%) H$IE)!I$IE)!$E)! E)$!+I$I$$)EKa[$A8E!}U$I$!@E)I$ I@!0* wY a8 }4%qH yYnEa* 4IE%q  $EEy$m,EEQ`{EE\EEX$ E1E!$H1I$1HI$E)$!* "DE))E) xΛǣ`$!+)p%$AJ*+ ߾%i%I2$IE)$!l6lE)  $I$E)!*I I$E)!* )(#IE)A`I E)!( 0E)$!d 0e)E)_էqmۺE)!M[E)! &ɖt %)IE)! I$I$e)E) *I$I e)E) ۆmضe)!I e)E)  1!f1E) H$e)E)H$I$e)E) $A$f1E)I$@0e)E) Bk$e)!xh$I$e)!mێ e)!Ime)! $Ie)E)(/ I$e)E) $I$e)E)dK4 e)44Ie)E)+I$I$@!I$I$1e)$1E)@$1E)$I1E)#e) `%H$I1!$1E)@$e)E):@f1m$f1!Wm6e)juitE)  E)!I$ E)!mm۶ae)$!*I$IB1E)}+[۶ 1E)d@P! &ysX-͍mlAf۶m[f1E) (($B|1&& 1e) Kamv1E)$*II$9!II$9!%B+1P$I1e)1e) mm.I!?vbX9&ɛyX/Aq{wo7 ȹf/I.4kȹe `Y4NAE:6M1%)_^"nk' H1!h'v1E)_W@Mڶ1E)zM md׆1!&i:df1$!ФKa1E)WNiچ1! i$1E)U&%P1E)@$C1E)6鶭1E)&a\>1`0Nh1!@ $1e) 11 $ 11(۶2 91dLЖ$I11^`@11-]ZHIEǦ11WL0@11` : r9!v9E)ުI %1E)* P j9!' $I&X1e)*I$I$1f1`11 .#9E)j K6I1    !I291`@1e) 1f1*؆m11 a$d$91# I1E) 41!؀pvx1! T )1! ۶m11ۺ ݖ 11@JDJ9!*%T I1R*$ 1HB&$11|`  +P1111f1 }Qݶ9E). c9e)b md9e)* R"I 1p m5ڤ91諾 I$91/ $IH91 k5n91* bm691 $Iŧ9b BR 91k%h1`l5$%f1X``6f1"* fl9E)% |Ael:p) -! ` †i,(Hf9{1[ǹ%q62C'-xx@ IM9$1C#AH9E)r Xۺ91^~x,Y$I1 L$I$91 R#9E) O9E)~  DŽ9E)rM'um!X9; l0!H9VUU 8h$I9 k91/ ۶m4891 R -9C+m91^x F@59!' # 9E)^zL@ $ 1* Tl ts9E)+ ƒM91\PbI91멭 "$ 9!`` Mq9E))) $@X9 [-ۊm91 i919{% /7: /wȹ%++Ch\ 5IǹX(4&6""$IDZ@92ضmȹ81^mǹ?@!$Jȹf B07鹧ME1v鹧%D1鹧|wE.^} ;.Au[0蹧{<.vX蹧KӴm-ȹ`@=ۦmqȹfIƶ&e D.o;ϏI ^UF&IA@`F/]N 5.Pm )fJ Pm4$I ¢PbK7m$4 † rM1ڈ)§wV<1߶3蹧W E/lIBn CUB0*!ȹX@K, e@1鹧U]@/`۶?蹧 U8%R6AiǹG1I bU}?1w`蹧D.3h pEѓe@HVhжmy;/Y蹧KL-%] )ꊍ HueG.W D0  $C-&$s鹦jM)`Ki$$@/_鹦?/mE蹆2F!)ImfH/ h?)†I.)H)@蹢P@CQf":;%x<ȱ`vpĉ$E1!$!.IE)! &HB%) %)$! E)$! I$$$! I$I$1 $E)$!I E)$!I$I$%)$!$E)!H$ $$!!I $E)!5mH$I$E)! I$A&%)(r!I E)!I%)6@$IE)!$$%)  1kE1I$A$PE-$$APE- cvY i0  f0m/uEH yYrIEa 1E E%y EEy۶m5E%QpsEE \pEqEX@$I$E1E)pWUUE)(4 $1 @$E)!I$I$E)$!*6l[E) ]6e)$!*nIE):hvHE' 7W%q@ --?,%yE p@۲X%E) p!@E) I$I$E)! I A2e)$! lۖlE) `E)8$IE)!۲!؆mE)@m%)A eCE)!/Kmݰ E),$I$)E)a@$IJE)I$I$e)E)I$I$e)E)hX e)a9e)`B(le) @@dIDIE)I$I$e)E) (H$I e)E) /@L [f1!6,X۶mۤE)A m۶퐴%)ADpIf1*8A$Ie)E).I@e)E) $I e)E)x$ KE) $Ie)@I$Ie) $1E)H$1E)~W$I f1E)_Ie)E)  @!$e)E) I$e)E)km[$e)!_I$E)!WU$IE)!UI۶mE) IE)!UI 6f1$!u Ce) II21E)߫I$ 1E)$I1E)*B$1E)j* If)% tl X%1!##*-h*JJl)AEI$1E)*0lm۵1E)  I$1E)II$1E)*$$I$1E)$I$1E)$I$1E)$I$1E)HIf1e)*B#kvX1%ɟ{%yPյ/0 1S@ %q-- E0N8)ǹe @1e( 1@!u1 s1 I$I$1e) dB$I1e)Mm۶m1E) m I1E)]Nm7:1!ei 1E)UW[;iE)!"m5tE)! tL1$!*RI$1! @Ж1`m1E)# @I$1E)m6 1E)m1E)`I1!8Xu 11 ll11 $*91!pImI11VA t,91UW S#)i1!@ VIҘj9"DŽ$ 1.4nu51E)xTwcۦ1E)?~HP9E) $C$ 1f1I$11nm91~d91 91 t )I91ؖa݆11 )I)#@$I1A`u(9$!~誊I$L:1!No;1b j$H 1 I$I$11&m$$9E) R!I$11 7\PJ$I9!%`$I1  H$11 '`11  I$I$11 1ۺ)9E)>j h.)9 @I1E)( ڶm9E) 4A 9$! !L$91 ?  91 ` 91* Z" i1! $ $91  ,1@\1۴ e)!]eaf1!"6 Lnb9Z7tyXfH -57ߖN)@IDZF- 8i7@$Iǹ9(@ǹ!@r $I 1 I$H9)$I0!@1UU]$ !P1UU  IAX1U* X+IBX1U ,'۲!PA݃ ɗ IAX1jrZ\ dSt91 I$H$91 `%9P Z" 9P ]vh91:<  9& 3b91hÉu:j9E)W_~iw1E)- I&r9f1 ) vg91V\ I419$!(bҡ(0l91{ cF@9 * I$H$91- @9E)*jC!$@9 &SE1 )4@ Nf 52۶m%DZ52۶m DZ?0gnn蹧_<A$DZPI$r!Ra(4(;17?蹧]E0鹧/^I./ E/Myb UC/1ֹI WQoqX M. †@@:I$HǹPF-\ A1Ӗ$鹧U7B1y>鹧^U*B0n0m UWA2I鹧UUC HH`B1=`蹧@1vgϏ蹧/Ոfx5ME$` x۶mEa% T@$I$E1E)pWUUI$I$1I$I$E)$!**HE)!$ I$I$E)$!$E)!*PI$I$1X ME) &ضmݐE)!/&[ e)!I$H$E)!  ?W%i *+`N%$AJ*+%yEI$I$E)!( IA$E)!ɄLLE)   mضmE) I$I$E)$!* $H$E)![u0`E)! kme)!nKE) 4,)(#A$IE)@!XLJE),$I$I$e)E) *$E)`e)!#$IE)`e)!DICE) $E)!`@$I$E)!pI$Ie)!5 i $Ie)!&I"ق$e) ]- lE)I$I$e)E)/I0 $f1E)U$He) $Ie)  $e)E)x$Ie)E)-I$$e)E)+ ț-e) `жuZ5e)A@@E)ضm[$e) U&I$E)!xUUL$IE)!^UU-I$!E)!U Im۶e)! H2$I1$!*ۖB$If1 $If1 $A"%f1 p$I1E)X$X*1`\Ŗmۆ1$!I$ 1E)*I1E) m۶-$A)9W$aBH/)1r"5fEKBBb N$NdžAe)mvm1E).*xMi1!&&$I%f1P C2 &1E)$1E)I$$1E)I$$1E)I$1e)*  B#X)Օ%[ aH? 0y{N`a0/> D"1nn/ET$rǹe` 9$I2Ajm-1BZ'Ii1r,҂H1E)I$1E)$0 C1E)  1E) +*&Md1 ,X%1$&R2&)A1pbl6iҦ1e)  "0N9$!k %9 mK1!$ $@E)!  $de)E)%UzI$1E)UU)h$1E)UִX[l11`ݰm11\/-I1@J$m1#IdK1E) I$I$1111Ivk11.) m1$! -S11%km11@ & 9E)X*3 Ǧ1E)Su\ۦ1E)-iJ9E)- 11I$dB091$@ $919F1 [m;91 $dB"11 $I!91T1 &H$I1'1!vm[f1 >iS1$! Z"$i1PHX1ֶh91I 1!11I$H 11?x11)I$I$11&I1E)- ]-_9E)C?zN1A B!91身 CM׶91  [9E) * 91* @ 91* - m91/ Hi9E)  $I9e)( vB;-9!~~I$I$E)!\nI1!/N{䈆+-2` SEy -:1m֯ǹ==:H#HDZH2xi ܠO?y0 v?A%ab@ r* aH] %yH_In9 EHU"of8.88 j oYkfa cɤ$91: mv91 B#$I9E)` rڒ-91 6`91ꢋ/91ꪪ `[u:91'~ Z==`9!PN,'P21E)WVXx-i1E)/= ], 91Pc+ S2ѤR9Ap ($II9e)` 118 6`91 ۲mۆn91ꪺ dSǧ91 b0XqY6tE9 +)='r/蹇/;1nm蹧U51$Q$%71uL#ȱU^92mǹ;$"DZa@; B14Hǹ%y >B*tHǹP C0 'd蹧\ <1;蹧@-ݶ蹆B07v鹧UN1AmX E6@ҦmǹA( D/)L Mjz@  )DZH@J RH蹁@@KTma  FG.4rI@)UIB3M X`J6ʣ@ h>$ǹUK$)k$ǹUPl~$$Zmۺ-E)!j۶۶E)!*]E1** !oF 7 bb|SEiJ/8!$ɯ<]%$$U6X$$蹢U3$O$DZU,<$u=#$y$ȹUEkrDZ <+J~ ȱ:Kmڤap=SI@ǹf*G0M?i_ U}sT {Ir %6K._b})Z]M.Y)"C0 ̋TA g禋C(H@Ix$I$ȱ$H!(!I$AE)*A$E)!:$A$ɐE)& E)!HE)!I0$%) Ŗnٶm%) @$HE)$!1I$I$1@$I$E)!I$IE)! $H$E)!mSܗI$I$$!! @$E)!@$I$e) $H$($!I@E5I $PE I$mP$) IkqHU+I6fX/0 }Di*8yWܰǹf*;7@lȹf(?%$Y`5 蹆(B@$?~C=N$p"H$mt%)I$I$E)$!I$I$1I$I$1HE)!(<( E)@!E) @E)I$I$E)$!mvmE)!` )eSe)!7/I$H$E)$! I$I$E)$!** He? %1w%q@ --h.B#%yE`@I$H$E1%!I$I$E)$!*I$I$E)!$IRD0E)-۲mE)@@ &f1 nM E)/6IE)! I$I$e)E)$e)E)VDI(8E)`E)!$1#e)`CIQ1b`⩪d[LZE)( I$I$e)E)T7&E)!-Ƕme)!I$IE)!-IE)! I$I$e)E)`ֽ+0e)E) \@ E)!I)(I$I$e)E) I$I$1"@$e)E)@$Ie)E)^5I @$e)E) $I e)E)$e)m'1 WBڱE)@I$IE) I$aE)!U i$%1!$IRI1! 1E)$Zf1Pln1E)B$I1E)jIIf1  M$1 6j*f1 ! $1E)I9I$I$'9# 1e)"bP!ߟ?%qH==-,S5C8bbbb`<$ &ǹX?=I'pa-%9$H0d$$1$!X$]:lE)  E)&$E)`I$I$E)$!I$I$1I$I$E)!I$I$E)$! E)@۰ lE) +0`E)!>D$I$e)!ส $I$E)$!I$I$E)$!I$I$1%) xvhǣ`$))iR%YJ++%yEI$I$E)$!*II$E)!* RB2$I e)!p(dX;f1) I$AE)!+H0cJE)@`E)$I)(I)(@`E)`E)!52E) `IIE) E)$!kvE)!޽I$I$!!<I!E)!7 E)$!$e)$! $Ie)E)^UI)(IJ$[E)4(I$I$e)E)*I$I$e)E)e)E)I$I$e)E)-8 e)E) >x۰m[&E)!` 2L$E)!@^U $I! M&0 E)+iJ$e) (Ie)E)S#8&Ie) @Ram1B)iӺ9e)@!@1!I1E)I$I$1E)#%&If1p$ I1E)$If1&B#- If1!`4@$If1  4R"Hf1p $I$1E)@$I$1E)*̚PE //.{y%yH---0TBC憱EVABf1   S %I1E)ת$I$1E)ꪯ$I$1E)*@$$1E) lt1E)I$I$1E)I $1E)*ȓ&!@1555Rw`8*+pX : rIDZ%qU@Xϓ#a0U9E)x.j"1E)X`ۆ1E) _$h!x1E) 7Önm91_I$115  $91 !2I$91C$A91z L211 .I11 $ j1 0&1`I$t21$!`L1@Rf1b* [ޚ9e)+ ڤ1$j(%B/I1 p mfw9E)@$11I$11 117$I&01!`-9! NA9E)7 n9e)`"} I1!P @$I$91 @I:91 X89 H&낶91I$91 "$I9f1N* #I9E)q* <-٦1!_I$I$E! E+/'~ -Ղ4I9DZp>=N?ǹ p5Ye T?9E)/ X :91ƒ@I)I) "a9! ` VII9E) Xn91芊/ mf91 &i 9!( -: 91~j Jj91ࢉ vB;9E)_~! I1E)9  ߔn9E) + qזk 91V\P, I1`&@Ŧ1 11 L$L91> t@Rb*91Zi 9)J**$7W%) +-9@"Sǹf J-= IDZP@2蹧?92{;Rȹ}918v):DZvU_7*$i@0ǹ*{=۶m@ǹfV: $$DZ%qU; l$DZ%qU: $ǹ%yU? H~ǹ%qW9H$$:IOEW8$'$UIB +EAEU"4I۶E9$ 諪Жvڶme1I$@ E))ö `E)E)B݆mͶnE) E)!JB E)C@@E)$E)! I%)۶ ml%)7w )5'!r[@Bkh%9!_T@ $!x$!I$I$$!!@9wiH'0b X K @aM4ǹf #=3@$Iǹ`K.\цm §:UGHaHeA2J0EJ N*{v §)WڹM\$`pq%Q@ !( I E)!@$H$E)!~$$!A`II E)!H$I$E)!2 $!&隮[$!I $E)!?M ۶nE)   %) &I$I$$!!pI $E)!MsH$I$$!, I 0$)$ B@$IHE-I$IPE-IHX8 I7iEyHU &n'P*. r$q 41M* 5*ODZ'>0.y 'LH L'ȹ X@&I'ǹXI̫m%A5h׮]%)! H$ $E)!I E)!I$I$1I$I$1E)!*I$I$1I$I$E)!ꪪI$I$E)!I$I$1II$e)!*iS$DE)% @$I E)!/ I$I$E)$!I$I$1@$E) I$I$E)!I$I$1 HE)UU 1w%q@ --h.C3%yE`@I$H$E1$!m۶mbe)!/ke)!$I$@ E)!+ $H 1 $)(@$I1)(I$I$e)E)JȄE)$4IE)!I$I$e)E)'@$E)!X۶YE) I$IbE)!/  pBE)  $! 2e)E)|$Ie)$!*Ie)$!*I$I$e)E)I$I$e)E)$e)E)^U@$ e)E)XU5e)E)-*"1,e) @`݆E)  &I$E)!xWUI$IE)!WUU5I!E)!U InlE)! Ie)E)) $e)E) I$e)E) H$ 1E)I1E)Z"$If1 P! $I1E)I$I$9$i#%f1``I1$!("-& e)a@@Il Ie)  e)!I$I 1E)۶m۰%1$!$I؆1!W H$1  8qbRP$ f8+5tfE 0 1E) 1E)I1E)I$ 1E)*#"f1(@dHTIe)b$&f1 &Iضf14CD P%1*"ɝ7uH/+5T4AF =* DZ$ @`iڳ f9$Ie)$!B39ۦme)``I$I1$! 0 1E) d1(H1@)Wu1 /..I$1E)۶M 1$! H@$Hif1S%1p ۆm1E)$  $1E)$A$1e) *  11um Ҡg|Fr9 *i-9E)j$I1E)- 1e)$I1$! ! 2115$b"ا9 XڃI9%)W?1!x@E)!7O1$! Wx*gdۦ1!41 @'h$I1 !L$1e)*!11 U$I(81A` I1!$%E1E)`Ӱmf1-ֶI$11 wUs,̛4{1E)` *cێ Ɔ1E)_}Xk;1E) ]$IGƦ1! H 11x !I$11-p$ $11 I$I$)I)I$11P@@DR9e)8I$I$11(j#Ȓ&I1E)I$Ն1E)UVX鐸I$1E))U L:xs1!4 C 1 ! 11pP11%5I$I$g9*H$11"A$I1@Im9E)P-$!1%)@ ]r1A n,9 *A$I$)I)&I&)1$!@,,B1 @ I$I9%)"!" [;,úm91 K&%91I$I$1f1"I9e)b }b'٧9!^~Lhi;h$7-pSP /-4'@&  44I$I$%44I$I$%50$I%?I9ǹp=9Oǹ p#IY ÉRA1xvd;ڧ9E)~( 9A 6[9E) / @9!` 4ᒪ9ɉ  eo9 & @$91 `$91z K& 9 "A9&& @r,:915~ ۪XB9 P")!R1E)),$ Ot1 Rb(lK91Pc/ ilId91Z8I9E)*h[-11<@`91jC a1 bKe9E)* II$q/,wQ -70eTǹ6 ǹނ8&lpDZ%y '36A|Ma = 3-ǹ%qz~; m? DZ%qB $m+%qUEY'EZ(HFe @m۶eaE `mIe1 6ae1!&m۶-1!*jE) Ie)E)UHe)E)W"IE)4(k[3E)jۆmͶnE)ۺ[;$E) `Ŗn-E)  $E)A`$HE)!^I I$!*C2L%)@ ! /qsyh  /5 1S%qK -(y$Ƀ$ ! $!I$I$E)II H$' wsw$q0o+)2 uv` %y)+ 8%# ڶBǹj(:@ǹP$8&-LǹJj60)q .ǹV|5)0BPA-Rk?9p$Γ$ 0L„!(!I$I$! @$$! I$I$$! * @$!` %)/6(@$$!  $I2$! @ I$$!I$I$$!   E)!H$I$$!!II E) _7@$IE)!XTmI$IP%-iۭtPE-mMaXH%yPU )ɟ. Xս 9 v4@DZq+ <JHDZP G0c+Am)?Q0S;d )DZUz =$ $ǹ T?¾'I$\1mE95H$I$E1!_I $E)!7qHȄ!B0E) (` A!%)AI$I$1$E) pE) I$I$E)$!I$I$1I$I$1I$I$E)$! ۶m۰tE)6$IR$E)@$IE)!/A$I$E)!I$I$E)!$HE)!@E)I$I$E)$!I$I$E)!ꪪI$I$%)E!**xvhǣ`%!)-I%YJ++- L%yED$I$e)!II$E)!HIE)! ېnɶmE) I E)!*I$I$)($e)E)/_$I$e)$!* d$e)$!@! E)!&LE)!xI$Ie)!KdE) 8[m!e)! B@E)!H$ E)!  e)E)I$I$e)E)?*JLȘe) 4,$IE)! 0XlE)P$I!$e)E)ܴiT$$E)!\ $I$E)!^UUI$IE)!UUU-I E)!U% ۶ f1$!*IDe)4$9 Ae)`$Ie)E)$IR )1!*JI e) $IHf1+f1!'$1E) I$1E)_$ e)%)"$Ce)E)B $LH01E)TIV;f1!*Vicf1!*VU:mf1!ZUUڴm6E)!UUmvl e) U*m;v'f1!UUte)ڪi)SP $yS1uX----8jZ.8e pI$L$f9e) M16,I$I$9A1&I 1e)*I$,f1`R&H4H1JZHb*w%yH-/21N)i-+ B?$IR!*K?xɓ'E1E)$I$I1E)I I$1E)ؠdr$ f1 8Zmf1 8]ᤵkۦ1E) X[9A*. kKAi9E) 9e) lB9e) 91_UI$$1e)#1A1! m۶Il1E)+ $H$1E)*$I$1E)*۲ ٖ&1E)نm֭1e)n11 $C 11-"1E)MɖJ1 -4Ħ11'Wq6,1$!@#Fh1!?`1!$I$ 2E)! L@GiE) 88h1! 1%) b $I1E)S$71 `IJ1K*#41 ``(B1 BM&l1@ 1e)"4HR81P C1E)urAR$Cf1!:*$T9E)I$11/I$dB91W~ 11 7I$I$)I)H$1f1I$11 *$A"ɦ1!@(HdI1 ` 1!~ $ 1!% 4An61AbIH1!H$11鰶11 5Vx}1 " 1I91W^~4A%1Ap")c1A@@vIߠ 1 JI1A0 1e)2 91o (H$I9E) !@d$91 91 B1f1 dB1i91$I (9!` V 9E)z#_:1!hh7w% )-4 NE -7I DZf=$M5ǹ`>5Mǹ` H۶mۧ pb'cӦA1\_ 11  mѶmv91 [59e)pࠂt$91* v;ݦ1E) 䍱{9E) + ݘp9E) $I1  KX91/ 91+* IH291 I$91ꮪ 91 fkNag917 j)B=9A`:I1  r99E)+ R\,91\Ps11 " I9$!` *P I1!H1@tI$I1A$ $%1pdDVPVp!)-'6LDZP>. '7*q+@Iǹ? #$mEr ;1mǹT41X3DZ:1wZѺǹ?9ZM8E Pp # fIe%&[c:1,$I Ä1E)۶m 1! $I E e) DIDHE)A#(1e)`@$I $e)$! ,۶E)@$0e)!*NnÖvE)b )$I$CE)!$E)`$ I2E)n* E)a0%)aȀII$E)!I H$$!!E)vave`''/(O1wa-8J&j.%I$I!$I$H!U*I$I !UWɚlP'wwwuE0-+++4p f 9.( IDZX@; lҶmǹ 9!SZ%Oǹ(8,5+Ӣ@;*druڶǹD"0#'ǹ@ps&$9 $!.  $E)!H$I$$!!(* I$I$e)I$I$e)I$I$e)H$IE)$!@$!`$!IIE)$!@$I$$!!*$!` E)$C$A$9::ÂmmXH.IifPU+3. ȩX :I -DZf+*E(Ϙ B.Cip Q}B,(Sډ鹧A4A$ǹ `VC$$ȹV 9ub;E9a zl6$)  ILH$!A I 0E)!_?MhڶE)!Xֿ$C$AE)!oE)!$E)!@%)`E) I$I$E)!ꢺH%),I$I$1E) @HI$De)!/ E)I$I$E)!I$I$E)$!I$I$1%)I$I$E)$! %) @%)I$I$E)$! He?*9ۧH-1n.<C᧱ p`m6XE9訡!E)I$I$1IE)! I$I$)(@$1H$I1I Ie)E)}]UmbC&E)!z`$I&E)!z!$IE)!7  A IE)! AE)!#2$IE)@mE))($e)E)X$Ie)$!*IE)!$)($I&E)!X$I$E)!\UULȄ$IE) (mn۰eE) Ie)E)-@$I$e)E) H$e)8@e)% If1 % $@e)E)PP" $If1$!J**4 me)!I1kڶe)!$IJE)I$I$e)E)(9e)!pk$f1!*~U$;mf1!^U C$IE)!|mێM e)! I$0f1!UU+vMne)!Ɇm֭1$!I$$1E)$e)E)I$E1fJ2P4aSXE9+9Si----;C3-"᧱E `@@ cfAEmMn1E)$I1E)׺I$I$f1e)01E)P"1e) pa P!ߟ' IaH/*w7X/+;ܲ 4 %qj *?"=Bǹe@pl6Ae)Yw If1  ږL4Ae)@$1E)ۺ5:l1E)@1E)$Id1E) 1E)mۖ1E)I$1E)K 1$4 $9e) yN91)UU  9E) 䘔X9 uҶ :9E)mn1E) vb'- 1E)F9ÖtI$1E)*1C1@@I801!@Im9$!`@11XS@1 `6@R%&1 d91#&I9%)~પI'/h1!^k۶m5$!@`wv׆1A *8I1 6a4i1@fi$1 Vi)1 ڶmJ!1$!@$ 1lH1  I$1E)  I1E),r"0$J1E)\bi; ن1E)UUU\GMV1 8(b(fDI1!kۚn11I$11 /I$I$)I) C$I91ꪪ I&117I$11 B$I11 s:X h1!-m&f1!?\Vjs1%) mڄf1E)dB0$H11\b*J&%91I$I$11 b|LJ1!$411@ H1!#0" 1 @@@ i/Օ1" ̱9$! &6 $91dB2$I11 lI׶91 91 $$C91z 3ț4J1`$!P1WU-X/!X1խq{qgiP55/P6 j=5Mǹe`xc?Irzz ٍr9a  11 6&%R"H1`p" 91]~$B2!91 m1 L&P39e)^x`܂,Z1E)A.dR&匎e)p c B9   h(II1  9E) @91 91*  I$91@91 K[91^ NoI 9!'vXj*٦1E).4 ZL49e)Zr JBR9f1 +) b1!Pۆmm91dB0B11 ɥ9E)**C9$@1 #I M1` a@۴MۆA)n'`SwEE1+-4@ Nf 44I$I$DZ44I$I$%44I$I$%42DZ:"$if)@)熩eI$ f1E)!B$I2f1E)kjQ#4v1A e)(IBE)a@$ a@E)!(9 ֵХE)!yKlE)8 KmE)Bl$If1$B A%)@! E)$D%) `[ӶtE)$DE)!۪ %)$$I$H$$!!@$!<d@ ɐA o7qq{E ++)7S2,7r㧱p@Jh[1I$I$!I$)("ɐn P  WwqfX----4%p  44I$I$%72mݶQgǹ7&ijǹ31H$H>$ ()ǹ@.H1 §zII$ hW9$'ǹ`V (ڶm%AI$I$e)I $E)!@$I$E)!I$IE)!k/Efm۶E)!sض$L%)(1 E)!H$ E)$!I$I$1$E)!`&%)I$I$E)!, E)!mG`e)!mۖmE)! E)@E)! I$I$1I$I$E)$!H%) E)!I$I$E)!I$I$E)!* I$I$E)$!$AB%1 * P/y$ ''2 sE+)3y<˃秹$I$I$E)$!I$I$1 )( $H$E)!I$I$E)$!* I$I1$HѢE)  $%) *k lE)!/I$I$E)$!*  I$E)!H$I$E)! ۶m͖E) 'I 1$H$E)!H e)$!*lZ E)@lٖE)$H$E)!xWUI$IE)!WUUI$IE)!U% $@ E)!R"P$IE)I$I$e)E) I$ e)E)- I$I$e)E) X*m۶yf1 "  e)E)Ie)E)p@$I$e)E)n I$Ie)E)#۲mۆ5e)!@D@mf1A $I$e)!^$I2$C$! @@f'!%E)`cIbG Ie) :$@"e) IJe) I$e)E))H$Ie)E) ߽I$e)E)If1E)׻$!, 1!*H*K)$Hf) vRiaaH/-/.  %q---+=۴MJ**eAE۶5Ú1E)0&1$!^@e)! pLRe)b ۆmM$H)$Pe) # ɝywfP-/2dJ0E- @2<ǹe@p \IeIH$1E):"$If1ɀdI 1$! II1E)**dKɰ 1 ' $I-f1!`$A$1E)목 $1E)]3l۶m1E)ku۰m1E)&$ Q1E)I$I$1E)A͔Xf1 '$I$1E)@$A1E) 9E) #@e9E)/ wJ9E) Kѧ9!ܠ XHP 1!I&[ 1E)"JI1$!B D $1E)"+mۖm11~11R,M9 K_)1(I$11 ۰[n11 m@1h hf1L@$ $!KI$1! -_J&`O1*CnͶm1E)*Ц[1E) -I`1E) I$H$9!Цd%I1! < LB&1E)/ DM11!,6*(bJ$)҆1E)b ]f1!dW1!/Uu Mݖn1! `1e)  I$11 '11/$C$@1f1I$@ 11-`@11$H$I211#)`1pa-f1$!/r6d9!*$H/H1 $I&<1`@ 11% 11# 1!@i e1e) ("a I1A@Y=̒&A1 dݱ9$!  ݖ $791V H1 Xݺ 91~? ْ`I91뭷 $I>P1UU-&m!X1-m&IQbH 0%H/0Xny HEaT@IeA!RAtS9 B A9E)I$A11zb 11.11 H$117I$I$11 ْlId91/ C 9E)_~`H8!H1E)sI >9E) /] MB9$!Z H1$!  L$91/ @ 91 k%kӶ91 6(21 @ I 1! @Ǧ1 -,9E)@ l69$!Ë/=KNx9E)7 +4ҡ91rk@$11 $I9e)>mv[11.8 h[ 91I4 1!& $ 11 I$q!'/`7wh -4+@  44I$I$%44I$I$%44I$I$%4-DZ3# IEpfyE Im'E)a%mvE)b` L$ IE)!կMöm%)A$mmVE)*!`E)%6l۶mE)$I$I$E)$! [u-E) E)!I$I$E)!$A2IBE)! IE)!۶-ia%)bXҶm۶E)pIE)!~@$E)Z$dH&$)rw)4 %N/S%y +--(y<˃<I$I$d!d  )Jinm X(!!#)yW9q`----7!I0ǹ 83m۶ǹ; pR"@ǹHp:$4DZP`9"㦍 ǹ&=B#%p$DZ`PC:fB$9~_ @ !a@! !I$I$$!! **@$$!P E)!i{~$!@$!a`$I&dB$%)P$A$Ʉ%) (I$I$$!!(*jvhhe) 7Ih۶i۶E) ]I$I$$!!\IIP%/''wWEH/---Aqe/N/@)§ЕU}H*9f{ (pM$ȃ$ xڶk%9$H$$!!I$I$$!! @$$!@P!I$! MM%)!.]%XE)ҸI$I$!!E)!I$I$1@$H%)$!%)$!$E)!HE)!I$I$E)!" %)@&S!aE) C[me)! E)!0 %)2$$!  @%)@@!E)  @$IE)!@$%)pI$I$E)!۶m۰E) Ntf1 &h$IE)%aam`E?*wb( *+~>C3?!r` p&AAXI$I$E)$!@$I$E)!I$I$E)$! $I$@ E)!ÆkmE)!mmE) P`؆mE)!' E)@E) !E) I$I1DA(E)vKfE) (I$I$E)$! ۰ KeE) 8CL$E)!XW!(m$mE) bz!E)!# e)E)-@E)!@D(e) K I$He)!$I$1",e)!`r i:e)!  I E)$!I$I$e)E)/۰X$e)!غ&I$e)!xI$I$!!(:I$ IE)!W-Ie)! !@$ 2e)E) xH$I$e)E)(I$I1E)Wսf1HE)  e)%)I$I 1E)I$I$@!I$I$@! 1E)$E1!J* OE!++)-/ DZE----=0wp{]69E)/_ 9E)-єG1E)($9Z؆1 РI$I$1E)ꪪI$1E)۰ۖt1E) 11(W`B$11I# 9e)*BI1 $C2I11z^p#1$!xN$tц1!w^ $I$E)!/` 1Ć1$! $1E)*H$1E)* -f1@$II1I$I$1E)Kz&i1($ 1E) + %O1&v@1 6a۶e)!'}0&01 o$IJ1! $H$11|11  I$91I$H 11? 11 /۶m11((1E)pIK%1E)^6?n1A '3`$H1`m۶m1e)" I$11 /?I$`&11*H$B11TP A11 %")$M1@I{C1) X5X1E)0. ]I&M 1 P ڨ:P1UUU51}HA m&IP!H&*71`%H/9A$y Xhf X2 9E) MԦ1!jI$H$E)!UV\mg؆1!*$RJ1b@),@1AITA1!11@ 11`I11 /?m11  R#f 9E) Ѧ֦1E)~XPh81E)4 BN9   $C2 91ꨨ@ 91믿  91/?  @91 IL&91 kmV`91 X*(I9e) Bd91ˍ'7q9Pͧ9E)xz !9B @ K9 m9h91\Xr$@1 R/9( 9!x @)I9! I$I$)I)mv[u11.80 $I@9E)y{I) )-3 NE )42DZ44I$I$%44I$I$%44I$I$%6)b#( ǹz*,r4ǹ`EaH!,* ! &I$I$$!!PV׵I$I$e)I$I$$!!I$I$$!!//H$!(I$I$$!!, %)j*!$@%)  HH$IE)I$IE)!5AB&L$E)!qPTWI$I$!**H! e 6iSP$ '' fP5--8"g)Aiȱ)-F1!8鹧wwD.wl\_3?ʣ< mضmE)!*I$I$E)$!E)!H.E) E)$I$E)!I $E)$! @$I$e)E)UU]$$C&E)! @$I$E)!V]I$IE)!UU I$AE) -؀E)!(@$e)E)xW$E)!0!H$Ie)E)-4E)` e)$!He)E)pV E)!@T"ȔE)`$re)(`$IB&e)!~$IdB%)  mSXe)A &!E)! @$e)E)^U@%[;E)Pknme)! I$I$e)E) ݖ۶ 1$!-DJe)$@e) $A$$1E)_ːXmE)$I$e)E)+5"Ae)b@$1!I@$f1E)ZgXf! 7-Si )--4.Z`aDZ>hR.Enۆm1E)`B&$I1E)4,#e)`TA:P!ߟ' }nXA0 * *w7e`-+4! 0 D3<ǹ @p AamNlۆ1!UU(AI$1!wUDA$f1!*Ue)$Iۆ1$!$iR29f1p`a1E)ۣ&@Df1!6ٲm1E)1E)$AC1E)*kѶmӶ1E)* If1(!HR1E)J*&`&i1 $I1E)`$I$1E)$I$@21E)m۶[1E)I$I$1E)A$I$1E)ꫪI5m1E)z Or9E)-_ I&X9e)܂= ڽ=9E)xiÖ1E)I$d1E)ꨨI$1E) mۖl1E) @H11 Xmv11*f؆115:`ֶ11x¥UӨ~J}1 u:*I1!_m۴Ć1a`Sm;e)*j O1  "A&1@٠m&i1$! 1E) +۰m۲m1E) @fjf1 !I$1E)/$ђH(1! j,,& 1!\` c۶ E)jdI{1 *I$11&6I$HB&11711I$I$)I)I$@ 11 11 + 11#1AIk1E)V\D ؆1E) +I$H11 &I"1!@0n1 @$@$9 C2$C1E)Ömɖd1E) * I91'9P)-9mbX)-KvݰmP!P4 ?QyH/B?Ay Xk&fy XCI9) L$11 *( H9E)j* R1 v6 1![kII$E)!5UV`On1$! .+2mm1E)@)4A$I1 [11 /VI$I$g9*H$ 11pH$ 11 A[m91} =?9e)\xڬkv1E)Ħ1E)/  `91ƒ $I$)I) L$a29191 m.-ڮ91ꊪ ! 91믯 91 t۠-91~^[ "ja91h 6V9! (q뻻A$! CS)I91rc M1 &I$I$11  110@ Hh9 & *1K ɴAN1A  I$%a!?,OyI +-9I`"ǹf *K9$IBDZ@ 44I$I$%93m;v`wǹ?: IBDZP 8)3:;qǹX~/M.醩%`["mhe1غtE)!,d,ؒ$E) $$$e)$!6`ۺ-E)@@E) E)@E)I$I$1E)!!@E)!ꪭ$E)! IE)!/_[ E)JtY6E)B!E)b@" IE)`$$9 :j7qWwE0++)-23(Bp@@h]%1$IP ?'{%yH=5~jDZE- K9HTHDZX63m6Idǹ8 ؀P$Jǹ($8,l:ǹz~><R&L<ǹP $H„%1I$I$!(I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$$!!ꪨI$I$$!!I$I$e)I$I$$!!I$I$$!!P\^WI$I$$!‚hʆ-e)!IqXI$I$!I$I$$!!5I$I$$)!׿mnеH$ yWfP----=#/rȱ++H/|O VD+ly["?:H١%9I$I$$!! 8(  $!@$$!rI! $A$H0E)>.!I $! [2m6E)z@ %)/ E)$!I$I$1@$I%)$! %) @E)!>8M%)]2$htE)P!I$ɀE)!꺮I$I$1HH%) 8 $@$%)pKmE)!8@$HE)! %)$!I$I$1I$IE)!*:@#E) $E)!I$I$1I$I$1I$I$E)$!*II$`e ?'pO7׆P +/4X.<C᧱$ p@mjE9ېaY3%)`0E)!rXmmE)!/ A$I$E)!I$I$E)$!I$I$E)!/* E) I$I$E)!*  E)* I$I$E)!*  E)$!  H$E)!`^I$I$!!4Z'I!IE)!% I)($)(H$IE)!(*I)(r"9(Ie)P`ق$E)R""IRE)`!  E)!#0E)!-M$E)!$@$!!vlvLE)aE)!$A$$1E)UMm۶ E)&۶ KE)4, e)E)5I$I$e)E)%&R,Ie) аIH$f1E)~GEE)0$e)E)W-I$Ie)E)W/۶MP&1AIH$e)E)$I&1!0e)! ktE)'DIe)!S&XE /?%7Sy{`--%4'&  =#0")E``@@ڈmhF9A8I1E)$A$A2I!XmPE1#wfH/ 31eJ@ E- >/ovs<X͓<$N,If1!Ui&f1!_~f1!UUm'& f1!UUm 1!UUmێ- f1i۶Ie) uU$a'E)`w؆1!$UU cۆ1! UU$He)$J1!II 1E)rd If1$I2$H"1E)J4I`f1! !I1E)*H$J1 (Ljd1 (C9 1!b`H$i1!۬-& f1!@nme)I$I$1E)C$E1E)x߶9E)_m%UǦ1%)**XۭXZ,1e)m&]a1E)$I 1E)/TI$1Umm1!$@H1E)'1E)0n&)1@$@jd1(p,q$I1Z hf1n!@$ %)A (` Ć1! =Nm1&+7s f1A$I$1E)" A4I1@1E)#,P,f1`@`YYfn1!!"#I1!p ۊ 91!uXB?dž1! - -1E)m@110 11 %$.-1@II1 11/?b$I1!S1E)I$H$e)E) (H&Sf1Pؐmضm1e)" i%M.1E)(u1E) *IH9!-,X-mX-JD XA0*߿ea%yH/wՕXe*XoEx J$I981H1 IRL1E) ]--n91$11 8 1E),#,,!9E)zjjk ݚE)A  I$E)! %X1E) 5I$A$11@"i1E) @TAJ1! I$I$g9* X.p1 I$H$11 K 91 ' C9E)_^xxR7l-1J %o?9A + ژ91 $I$91+ k91  I"91$H$ 91 d!91 t 9 ,6 1fOU91%5 { 9A}1/kBE)ZiM Mr9E)*)  ۘ=491TXr11 g9* 1 $ER9E) * I9E)Km&m1E)$I91ɝy) %4f S%y +-:MIDZ44I$I$%93aǹ?:!L4Iǹ 91mǹDZ_?5h@DZa)ɿ`4$`t1"IJC%E)`pۖmVlE)aE),E)! ےm4E) p۶&XE)hkmۺ!E)@M aE)$[ִE)!mڶE)!WM[aE)I E)!6kv$!@]]E)"$I E)@$)!>:1wp /7 /sǹ%y +-<%q AP wqE0o++7M ǹE)+ =2zoȹ;ChǹX 7'vh6lǹ8(#<ǹ`pۂ5$9 !I$I$!I$I$d!d I$I$$!!*! 4I$I$$!!*!&I$I$d!d I$I$e)I$I$d!d I$I$E)I E)!5Mh۶i۶E)!TWUU $!*. $!I$I$e)&eǦm P uqqfP--=6dDZ-<$IxDZi6F#ɣ)%a@ٙe9AI$I$$!! I$I$e) !HI!>* $IE)j $A$! A$IE)$!!$C&E)!HE)!꿫I$I$1$HE)$! 1@ %) ` @E)*)֭[E)!@E)!ɚE)*$@$e)IE)!I!@E)!{$HE)! 1E)!:۶5M%)&PCE)!$A%)aI$I$1I$I$E)$!I$I$1I$I$E)$!I$I$E)$! q$ '75xsEy++1⛨MJM*fAeI$I$e1f!*J۲%h$P)% ɝy%yH/67gSMǹH.&9$IADZX?,-C#8ǹE@`` )fAeH&L$1E)_1E)$I$C21E){z1E)꪿ $Ʉ1E)$II1E)$ $1E) $I$1E)#@$I1$!~f1!Uq]ǐ&I1 vl۵#h1!UUW6mE)! U|nۆ1!UU $1! U)Vo P1 .$ ,1!`uM1$! $)Q1E)>p:Ď1 ۂmۖ1E) '9# 1e) I 1E)*I$H 1E)I$I$1E)C3l۶m1E)ZPd͍1%) xʭ9$!/C1 P" 1 p!$I1E))I$1E)+I$I$9!۶m1 @0`1bI$1E) $C I1E)(tр1!^I$M5E)!upI$1!)U4IN1$! )@ 1e)  I$1E) +$ $01E) $IH1k[1E)C$@1E) *Ti1!66h,,1!UW\p`aۆ1! %]@"ӆ1E) *@$1X(IQ9!**mۆ91zH$11 H 11*I$I$11*M&C-1E)I$I$@!dSvd1E) :+R#1I1@@flufIe/ю=bP1U5ۚ6lbPIIyfPUUUa*xEx. P9$!$ R$I91`$I@9e)۶ml9E)@ 11 8I$I$)I)dB2$C1f1  11 $I$I291v%P1E)X`I$@ E)!WXbmIE)!" 7 O1E) I$H$11:f#)1! |@$HB1 11`b11%m׶i91} VJ9e)hʊ Pe)!@lIdIE) IS9e) - I$L91 [;Z#9e)N L|-H94$ !$91뫪 $I9! d$H$91X5[;11xp 6HH9E)g>9E)7zOAE)Z BT91kϯ-& %[11 5I$I$)I) k:49e) ЦmT9e)$C2$ 91 11 & II$fQ)'WEE) *+4!@N 44I$I$%8$8$IDZfp93S;sǹ<@ǹX$41:`DZ4"HEY@,y*lFn1I$I1 I$1E) 6A4&f1m غ-1E)*ؐ-Ȇ1!uX`Tvj;1! 5UK T 1Aۺm1E)Br9*jt@ID1 -I$I$9!H$ 11/?I$@ 11*Ӽa9E)$C A0H--mmwP)W5 uu$QHwa%yHkאe*`㻮]Ex! 9e!k֭1E)(ɰՍ1T4lf1`j*19I*!A$I1$11pÊ, 11 >I$I$)I)H$@ 11*p@11 Ҹ")1A@@kj1I$H$E)!Uvm61 *k$@I1 $I$11  [1E)(I$I$g9*X11`@DDA1,4 Үm611N+ -9E){XfE)!(IXIĦ1E)/= -91 ΥJ1 &1 M&m9! !@H9F1 h L&I1 "I!h91)I) _K*9! 8 #*9E)z蠠 F¶;A j IR1A j+SK<9E)R@11R"4 I1py I1 ["9 *H$HA111ɟq) '71` wi -7+Fǹ ^_7,ۦiRǹk<$59Iȹ?fZ'Aǹa (:)-Wǹկ:)5ǹj*.Bt`,OΏ秉 A$ E)!)*۲0,E)@@!IIE)!I$H$E)!(E)@@E)080E)I$I$E)!HE)( E)! E)!i-%)@$2$@%)C$$H$!H$!b@, 1;*jE0-)'r7Hf@jj]~&fP_X-7ɝP+/9 @%DZ%q*U<mDZ%q@$Vxǹ%q ( <*)#$@`PY՘&E9 !*I$I$d!d I$I$$!!!I$I$d!d I$I$e)I$I$e)I$I$d!d !@$!I$I$E)aТ:$E)!%ARI$I$!!* 8I$I$$!!@ !P)$ JIIX8!))+. 1q---7!I4Iǹ;29'mǹ _B34C3%ǹx``PH$H$$9!TTTVI$I$d!d  @$!I$I$ I!*$@E) *I$I$E)$!@$I$e)I$ e) e)I $E)!o @I$%) @E)!HI$E)!H  E)!^ I2$IE)j*!!I$!II$$!!I$I%)$!0$!@a %)!!@$IE)!@$E)!$E)! E)!I$I$E)!HE)!6I$I$1I$I$E)$!I$I$1I$I$1I$I$1$A$E)$! *?wy$ '75 d/sE +-5IXؐq>骨ɝwfP-+5`ND E 91(im:ȹE<1Se `P9FfAe $I$1E)$I$1E)m۶61E)I$$1E)I$I1E)I$I$1E)f1`!C2$A1E)/1f1 I$I$9JD If1aN6nf1$!C2$A1E)*HIf1 AI$1E)HI$1E)ꊯI$$1E) ;CR$ 1%)h*I",*1!UJkqc1 I$e)!-R#H`1!r+I$1E)RH&9e)a`DІ1E)@!1E)&i1 L21E)@'9#I$H 1E)I$I$1E)*u1r1$!/k #ْe)Aضmd1E)I$I 1E)ꪈI$1E) I$I$9!6l۰!1E)@ۦmA1I$1E) .Xt1E)M:Xm1!WzI$I$E)!]w` $1!+U1!I$@ 1E)$ 1E) +I$H1E) Z,lFo1 I$1E)+I$dB$1E)[31!W\pv;1! 5U۶ml1E)*H$1E) aA6e[1E)$ *II$11?m[!9f1$I1 ,ݸP)5 6 0X8 w%H cc% + `@߹mE `)1e I!1E)  1E) I$1E).`1E)nk1E)ʊ*$I 1E)BDW1E) > 11(LB&011p`@B1111 -9e).j$HC1 Z:i1E)vb;ن1!_ I$E)!5Wɐ1E) % 1E) dB2$H11Zzʫ-t1e) *@$11Ͱk11\RJ(_1! 80 91}|B'j1!^xؖm閮e)! # .6R9 & * &ز 91 11 - 9$!j*I9e)I`B&11 ( $)Ɉ91`B&$C211`` Ś6 91ɍ%Kf#Ѧ1E)P  [n9E)Xs [ 9AP-Kv11641$!pLB&`B&11p@!91C$I91{ 11 6 (51 `$wE% ++7rDZf- =*ؖǹ8$#$mDZX5(&DZ>+y>m۶ǹU63i6m۶%:-6dMǹ@2b5 iEp` fa !E)H$1ͶaXvE)((I$I$E)$! I$I$E)! @E)!۶mMa%)B0E)b IE)!$0E) hv&E)* %) $@$E)!@E)A$H$I$E)!׿?TOq '4`NSǹ%y 0# hEx6m IE *9 ` @DZ%qw< I:IDZ%qUz<'Z+ǹiW6bM<hIE)I$I$E)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$!cE)?/XM$E) !* H! I$I$$!!kH$! I$I$)$JJIaH77?/.  %y----41PPDZ 41` DZ?B"$ZǹI$I$$)!^VWU$!(H$I$!I !I$I$$!**  I$$! I$A$e)II$E)!dMۡE)!6 I!$!$!d@$@E)6H$I$e)!I$I$!! @$H$E)$!I$I$$!!@$!!'m۶m $!  @$E)!I$I$e)I$Ie) @$e)I$I$$!!A %)$!I$I$1$E)! E)$!I$I$1I$I$E)!*0E) bI$I$1ۺk E)kvE)!Im۶IE o&pSqf8 +-5R24$ P`@k^e9z E)!AE)!+E)!$@%)P`$I$E)!xdB&$@%) pݶ KtE)$,`0E)*x`I$I$E)!I $E)$! I$I1I$I$E)!H$I$E)$!*$I$@0E)! &LE)!xLB$%)(I!E)!/ $E)!$I E)! II$E)! ؆m۶5E)`mnlE)!h֤E)(d$If1$!KPe)! $E)$![ E)x ۶mC&E)``[%mE) P" ME) 4$ @f1*Jۜae)A  QEIE)I$I$e)E)^ 6I4)f1 B$IÖme)b۲e)!@$hu1!Öm۶mf1E)ꯪ @!Ȑe)E)$AL$1E)l6OEI*%?#7qWy{X---=6%dN 7P$h`DZfy( ti^0 ywS q/+ 8,)gnǹ:? Ҥ 6!ǹEa@+H'%)$1!U$I$1!U[h涆1! 8dvf1!6$ I$$$1E)WI$$1E)wS-e) @@mfl1I$1E)U$II$1E)_H@Ɔ1!$I1E)%Wf14,B-$&If1 p$ A1E)(h I1$I1! cۄm1!ذ $H 1E)*I$1E)*نm 1E)ز l1E)zI":$I1!Uz*$ e)! "c 6ef1!b $@$1E)*H $1E)+ju@f1 mI$1E)1e) 1e)*H$I$1E)`f1 &ۆmЭ1E)kK1!6&[m̀e)$!*DMچ1,.1E) $I$1E) "AM1 @ DH$I1@ 1E)L1 ( 1e).ɀ1!zI$M%f1!UUWXvgۆ1! -U1E)*ӦŒ)H1 ذ051!JbΖH)dA1a "1(I1@I1 ۰[1E)* S1 `)vۆ1 7Mۖl1 H$1e)dJ@1I)_5crAP)U -u0 P kb%ya  yf*`@_Eyf`銵Se9E P`1E)1e)**@1!6, I$1E)dB$C1e) BDn1  1E)m1$1E)j*kP 1E)THdO1E) @$11 (I$H$117r11(!& 1%)@ )HM1  [511 .( m1!H$@ E)!V\rj! e)!+01E)(  $I$9!K[1E)(1E)LI1E)(( 11I$I$11; #0ϱ9E)ZrbKk%) 8 LIĆ1!/% I 91-I$I$11`118 hm91 ES,mӶ91 5K$I9!'. *I$I$)I) Qgu915W ZI91zl 9E)ApJS9E))  9B391V\z{P"%3I1pHI1E) I11 &<H11,4 H$@$11p`"A$I1b@ YA-ٖi!'?07wh --7.fn)yǹ93mNǹ93mۉ ǹ43 %44I$I$%72m۶uAǹ9*3$ ǹzꪨ/{.&B4$ P`IHE9E ذmC6E)E)! *۶mE) $I$E)!,&E)!\[f$E)a H$E)!U@dE) $E)!ɐ IE)!@H$CE)jH&!I$! ` ɐ IE) @$!IXxX$'//*p1Wa+--9+mDZ =/&蹧UU? $HǹX(4;BHDZP =.ve??<'EI$!<I$I$$!I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$!!*"R,C&E)bPI$I!  ! I$I$d!d  !@@$!!I$A9: y[y$qP556)NNDZE---)42@DZ4/ @DZ@h&x$H$!!@$I$!I$I$h! I$I$E)!I$I$%)!II$$!! $I$e)$H$e)I$I$%)!ꪺLB$$!!A$H$E)!I$IE)! $H$e)I$I$$!!I$I$E)!{E)*ڡۺ$!  $! I$I$e) $E)!I$H$$!(I$ $!! %)$!$%)$!@ %)$!I$I$1$E)!E)!@0E)p IE)! 0 I$!ɖb]&E) $E1$!7w?y '5Tri ++5 )ڶmbE)!+LHE)!$e)E)%\0mne)E)pU)D %&E)(KNPE)& I$I$e)E)e)!"A$Ie)@$HHe)A$0Ce) `Tlٶmf1$LBe)E)WIE)  $e)!*w$d$e)K$m6E)$`vp/yy8-:`/Rǹf++-9FB$IDZE 8&1*8`7MIǹ"@ "IDZH@8C$jcRH$ImE9$!\VUI$I2e)!UWm۶)E)!bm۱Me)mv"He)MڶmmE)m׶M;E)!UU-жm4E) U}Wmۆ1(dI$1!UUi$1!*Ub`f1ؠ$Ie)!I$Ie)E) I$1E)_$II$1E)$a)e) @$IT@f1$XLf1 $ 1E)@I$1E)*I$H$1E)I$1E) 'hpf1a I$@1E)`f1E)ꪪI 1"I$I1E) $I$1E)*k2ֶ1E)*m(,e)@U1I$$C1E)*II1 &[2m1E)~ꪪ-nKm1E)1E)z$# 1zꨀ!IE)a 0f1$! I$I$1E)ꪪI$1E) *I$I$9!C$I1E) ub"؆1! P1E).1$!xI$k51!UW^xPI$1!-U 1E)Z"44N1 P`0If1 1E)dB2$I1E)I$1E)*I$@ 1E)B#1!Wp`vf1A @L$P)U `6ibPf9O $yHU  , Lm%`II1E &"-1@fle)m7bL1$!*l`1E)1e) H$1E) * ɒ" 1E)@i6@1 @ 1E). A94úa1E)-zuj׆1E)>1E)$A#=1 ` H1E)"!I$I$g9*H$@ 11`)B 9e)*–j6A1 P̆1!I$H$E)!VX`vۆ1!//I$I$1e)*1e)*  L$1E) *I$@$9!b&)h1! D1E)11﫱s:X Ն1!~xI$I$$!!0Ë pJ1|9! +- KC;91 11$ j10$ P9$! ڤq„1$I !1E)@擙9 ꢵ91ͧ5r ޛ#9$!z  [~9%)s a 9f1ꊫ) L1E)(I$I$11H$@ 11b11 11$"I1a@ ID1!?) +)8> IDZP&:" ADZX@7-ȍǹ?D !Iǹa(42 HDZB!Iǹa`72kuǹ4%`ࠀ+ί0%p@$) &E1 InE)A @$I E) *H$E)IB%)@Im[t%)a! 2LBE)!I&$CE)!iiE))  ɐ E)!I$I$$!!$!A$! (  P$ ' 7yWfP----4&p   43@ %82Nܲu ȱ_9$@#DZa`= #,@@c'L$0$I!6 I$I$! ((I!6I$I$e)I$I$e)I$I$e)I$I$$!!I$I$$!!I$I$$!I$I$!*vd[h"E) %IH$IE)I ! I$I$d!d I$I$d!d $! !AIIP$ ?[%qH----2 p E 44I$I$DZ=1ci__?H$K< @$!I$I$!UוI$I$! gf!H%)((H %)!6$$!  $!@$!dB&$I$!P $H$E)!~@$@!0 dH& %) I$I$%)!I$I$$!!,@$@%)! I $E)!H$I$%)!֗@$$! $I0$!b @$E)I0!C%) j %)  1 E)!E)!$E)!H E)$!I$I$10 E)`H*$!I$! E)!뺪`%)H E)$!m۶$1% J%pqE +1#1͇p@I$1$I2d$E)!zI$I$$!!I E)!* E)@!E) I$I$E)$! E)bI$I$E)$!I$I$E)!મI$I$E)!*$HE)!pI @$!! (IE)!/ I$I$E)!I$I$E)!+I$I$E)$! 0E)@`$IE)$IE)!*I$E)! $I$E)! ۶m۰fE)aI@$E)!*@0E) `E)ɐmE) $Ie)$! I)(bǒ%Ie) P,I$Ie)b$I$1E)$I$@2e)!L@`$e)!8$Ie)E)WU-$I E)A $E)!0I$E)!U $I$E)!H ! I$IE) I$ImE)!u/vӢe)!z( 1ag`E  / p %y -50TIDZ42@DZ6+$.4DZpBڠ"4ǹ$ @` ֡fIE$M2$) 1E)UU_$I21A(4ݖn1E)UHH$1E)}_me)E)$ e)E)eH$C҆1E)}Uvm61E)UUMB&mf1E)WUU IE)IbH1!Uؒ(e)m۶ )e)a@жme)!uI$e) Uض ݖ$e)!$ e)E)5 $LBf1E)U~I$1E)_$ 1E) I$ 1e)Ȑ1e) 1e)* $@1E)I$I$1E)I$1E)+ۀ-X1E)jXHHf1 dI$1E) m۶RSa1E)p"a۴V1@EI I1$!*hhf1!8 n1E)ۦm6%f1 H$1E)K:l1E) $1E)M%ۺ 1E)WZkۮ톦E)! dEچ1!+1E)ꪪI$1E) .1E) $I$9!ۀm1E).@dBdJ1 [ۆm1E)p*(v2'e) PɐdI$1!-U,N1$! )ɖbb1 I$1E) **:=3a1``I1$! $1)7 iP!P)U- PE! w F0  ¾f ®o%)m1 "`I1@DM'l1A4I1!@Aa۰m1E)*9[m1$!z-Wr ņ1!**$ҒCɆ1E)ZA 1e)! 1E) .I$I$1e)I0X1$!(4 B1E) I$H$1E)$`1E)dKM׆1E) ?`l1E)H$11  11 /$C$A91 K1 hu[11h( jئm1vb; ۆ1!_{ IE)!%`&1E) I$I$'9#@$1e)!1E) 1E) I1E)*8$I)1E) BH=!j1 M&k&e)!IIH&E)!? fA9E) $IB1 P'("A1b @ JDI1 p.u$I1" $R9f1N.$H 1 Q{91_ N9E)h> >9$!K/7 9E)- i9!֭ٚb11 (1!@  1E)11I$@$11`H 11 VZop)%7./wh --5-TI 54I$I %42 DZ:*۶s ǹ&?$IhUǹP 43%43DZ4"Heh*r%p$$I$E9E! E)!꫊ E)!%)A@ E) %)$!dHe)I$$! I$I$$!! $E)R!<I$I$d!d !4!!P$ #yW7uX----4'p  43$&:#۰m!ǹ*JD&Iȹ =@%p$DZpTHڤI1I$I$d!d I$I$E)I$I$$!!**!&I$I$e)I$I$e)I$I$$!!%+: !I$I$! !@C$vE)$I!*I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$d!d I P$ /''EP55--3p p f 73mێ ȱ^A0vdkɧȣ<ɓ'fI$I$!~^WWII!I$I$!( H!AH$!0I$I$e)I$I$e) C$IE)j*E)I $E)!@$H$!! @!I$%) H$I$$!!I$I$$!!I$I$$!!'I$I$$!! I$I$$!!I$I$$!!$C2$C0$!!@A A$$!bI ! %$@1Ad%)!@$IE)!E)$!I%)& I$C2$!@%)$I$E)!}H$I%)!꯯ E)!$E)$!H E)!>I$I$1H%)( ?I?p% /ԉfPN$jFW I E)!{IE)!I$I$E)!**۲nMdE) @6 E) E) HE)I$I$E)!诫$E)!*x@$I$E)!$IE)!/ E)!/I$I$1I$I$E)!+I$I$1I$I$1E)!I E)!* $IE)$! I$IE)!I@$E)! Ku۰ E)dKE)@$e)E)7XU@$Ie)$! IE)!*I$I$1 I$I$e)E)I$I$e)E)*@$e)$!$Ie)E)WU$CE)@PXӶE) X$I$E)!VH!I$IE)! m۴lE)!_M;5E)!UZLXf1 .uE)I$ e)$!Mnme)! Imm۶X'/+pO1Wa ---5)DXq` 54H$I$%A/iv2CEpIf9E)$1E)!ADI1!4*1E) I$e)E)(<H$H@!$H$1E)$1E)N e)!& `$ 1E)_$ 1E)UI$1E)UWI$@1E)UjK]#5f1A ` I1(mmme)!zI&6 e)!Uz6i;E)! h 6lE)aI$e)E)%_I$ $e)E)  $L1E)U~h I$1E) _ 1E)- af1$@1e)I"-f1@%A1Pؚnm1E))m6v1E)"ɐmf1 [aNQ'1E)7_vj<1E) [&1 Z :hR1E)+R" ꄵe)Pcҕ1I$L&1E)@1%)۶mk1E)@1E)Z!$H0f1E)uUVZ!L0f1$!+ۆmݖ`1$! I$I$1E).1E)/ IP1%)&`B&$C1E) I$1E)ꪪ81,I1`N&1!W[z I$E)! wZZ8&n1!b XlݤM1!رm&$A)W $AX1U-hR'-[rA!@XI$N X(ZÀe ^'o%$`^nee9 .1I1 I$@ 1E).k۶i1E)  L14,!L&1E) *I$I$1e)(C3m1E) *DSFR1%)s<.n#1Aj`{IQ1A*I$A$9 1E) . C$I1e)1"mf1@MĀ1SZ-1!@DA1XE) P@)d 1E)  P1$$$&1e) $M&91$A1 n91dB2 1e)X4`1E)XrbH$@ E)!V\Rbmvif1!/1E)"I$I$'9#IѤM&1E)**H$@$9!@$ 1E) A!1E)("" ϕL1 & 9 Ɇ1!xI$I$$!9!= 4I$I1   11.( I$116I$I$)I)$mЦt9E)X &&A1!X-ݺm91^ bT91I/ц1 ', dl9l 1b@M1! d1e) *(ۂ l1E)i&[511XP$BĦ1$I$)1@$@1 ua{v꺆91jJ*9Tf) +)5 Nf 5*  DZ 44I$I$%B:5IDZH`A"X 43%43 %41@`DZ4#hEA@&yI$IHE)!WIE)!U- $IE)! @$Ie)$!I e)$!*dE)!zI$I$e)E)zN"$IE)v0E)I$I$e)E)*"I$I P? 7W{X---59"dN/ǹ-91m۶u=8ǹr@*)C%ǹE@`eAE$e)E)WI$e)E)U $e)E){iv1E)?4 I$f1'4hle) I@!0@e)%)uk 1E)$@! e)%)$A f1E)H`e)E) R"%e)PdH1E)IH2$B&1E)jo@ E) !$I$1E)WxH$I$e)E)X/UI$Ie)E)/_ I$I$e)E)PI$e)E) p $e)! I$f1E)~LAN$f1&$1E)  $I$1E)ʪ*)L6M1  [mۆ1E)$I$H$1E)I$1E)+$I1E)ĵݶ1E)/k,T{1!؀ .$ %1E)XC$1E)+nl1E)H$1E)+I$@1e)I$I$1E)ꪪ[fXm1E)1E) &@f1$!е]۶E)!h1f1$! I$A$1E)/ꪨ 1E) $1#h1`Xٺ 1E)@$1E) :[mС1e!LB'CHe_ -t6lPE $IP)IضI YH׫  EPUU+IW,'ye XĮ&mEyE XJD If)!I$I$1E)ې ц1!UVXj`[f1!)%I$1E)ILB&1E).0 1E) B@1  1E) * 1e)Z 5a1E)xPr[.1jir1 )  1e)*I$H$1E).1e) @ 1e)⊪suMf1 ڶif1b 5,1!pbmaV'1 ZM$Tm1!6I$I$1e) **-vM֤1E)*I$I$9 x1)&1E)I$I$'9##ې ؆1$!~ H$E)!%I1E)5I$I$'9#@41`@$1E) +$I&dH1e) k1E).*B$I1 ]51E)  L%)&$, I$E)! vIK1$! dH$ 11NLO1$11J@$I1$!( 11 $I$I$g9* NM91__ jSK9E)h蠢 ~9E)iťQO9 .& ڒ=491V^Z{@11$C$A11N**+IB$J1 "I&i1!@@I1  11 TQh1 %5/wq --9-%Y ǹ#53$I!%9!a iǹJ*9!D@$IDZ63m۶m%:Ҡ ǹf H:DHDZPA-nȹ~4#9X HpϏI$I$E)! E)! B%)a@! E)(kHE)! E)!$ E)! IE)H$ɐ%)$!b!$A$H$? [iH5--0 ` %y-) 5.&I$MDZ<#4*ǹJ*: IiDZEy ==h&ǹ@pk$M&%1!ZH$!8I$I$d!d I$I$d!d $! I$I$$!!$@!p@ !`!$@$$!ศI$IE)D&H$E)I$H!(! ! I$I$E)I$I$e)I$I$d!d I$I$)!}Օ P$ yWfP----9&Rnǹ)+=m41ǹF `A2)ǹ@@A$i$8 !I$I$d!d I$I$e) !@$!I$I$$!!I$I$e)I$I$d!d H$C2E)I !:* I$I$$!!zI$I$e)I$I$$!!?I$I$$!!I$I$$!! I$I$$!!&=I$I$$!! $!@$I!h *!$@%)! @$I$e)I I$$!!$ A%) !%) $IE)!C&dB%)$!HH0E)!j{I$!* $@2%)@$A$!H$I $!!Ie)$1H E)!I$I$E)!+`E)Wϙp% '?3 `/sDZ%y++2ϳI$I$1f1$I„1 I$I$11@ 11 ɖl91s/1%)pKbJħ9E)S b¤h91k6d鄆1E) (I$I$9!LdB&11^Zۆmۖn11 #LҦ11P@zFmK1$! @S9E)'.!1W%%) )-7R8TIX :2}ȹ54I$I&E4u[: ǹH ?2 蹧D2?;A}A $mBȹEy >HNǹP$>+m 蹧:s=h` EI  CE) !@%)$E)p@%) %)` %)@ E)!j IHE)!AE)Ӫ$@$P$''{yEH--4pNf 73!Цm0ȱ{7,0!ǹ*jJ@D"ǹY(0H$O$I$I$! @$!8*I$I$d!d I$I$d!d H!I$I$$!!I$I$$!!ue !  !@@$I$! I4E)'I$I$ P! I$I$d!d I$I$! (I$I$d!d I$I$d!d I$I$d!d I$I$)!tiP$ ,ys9wX----A)w#]b蹆 :#$IDZP`>"-C#4ǹA@@``N$H$9A$@!`! $!B !@!bI$I$d!d I$I$$!!cI$I$d!d @$H!$!+*  !  I$I$d!d  !b$! €!I$I$e)I$I$$!! $H$$! !A$!A$H$e)$!$I$IE)!vmnE)! ɄE) ֢M$!!$B"E)JJA$I $! 8 C$H$!@$!!$ȄHH&%)`r(ن1!/?)&f1@B$ 1  1E) /H 1E)*IH$1E).m6,1E)j1$!b m6mE)!}BR8fK1 pb `  1"1!H@Ib1  la1E)$ 1E) B$I1 K&@,1E)V\ZbE)!*`mպ1  *&m-1@aI1j6 f1bdcd18 41 `$II1C$H1E) NB'r:1!_^~x I$E)! p1E) - Z%I9! (Id1(11 `,H$I1  11 'I$I$g9* NQ[91W #;9e)j5H1!ÏM9E)+M$k1E)8mۖ1E)6`m1e)!!11 R,QI1E)-kf116I$I$11모 }ўmh! 'LwqEy+--~&$fU#$P-FU!$-EU R$nb_+_y"ah_~IbI2MbWIMcUI@"UyI%Ib`mXE9$I$I$E)!I$I$E)!E)! CE)!z$`H%)0II$E)!޾I$I$$!!I$I$$!!<*&mQPI!xwuS8?++@!K'pf @($ٿȹD'dom2z_?.1ă%`rPa$HB$1!|!I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$$!!5I$I$d!d I!(6I„I$!?[&KҤE)IH!**I$I$d!d I$I$d!d I$I$!( I$I$d!d I$I$E)I$I$d!d  )*jNiP (1a----H9\mq rrHиIۦf IT3=B2%a`pHm۶9!TVWU !B ! d!d $!@ ! I$I$e)H!8$I$!w\I !- I$I$d!d I$I$$!!k@$!ppI$I$$!!ꨫI$I$$!! P\!@ !  @$!I $!?/I$I$$! $E) Z I$A$! $C$E)* $! &H$!I  E)! C&L$$! !I$!/ H$C2E)b(`I$$!I$I$$! dBE)r H$IE)!E)!$H$E)!^$CE)J*!@%)  %)E@wqy*++)2dJE +)-5L&S$ X`$ "%9$%)$$!I$ E)!  E)! $@%)a  E)!I$I$E)$!$E)!IE)!/E)B %) E)!몺 E)I@$E)! H$I$E)!8+$ E)% I$I$1HE)(  $H$E)! E)!*$HE)! IIE)!׽dB$E) pIE)!-I$IE)!*:,غmE)@A&Ide) b%$D LDE) <I$I$)($)( I$E)!@$Ie)E)\UU mv۰-f1$!*E) m f1!JIE)$IHE)! K۶aE)6(L$IBe)! >4$$@e) I]۶Xe''(~ppWX?--8%vBAfnDZf^ =ʃh姹%dB&e)E)^^iۤe)A$,$@ e)E)0[9e) `` !f1!$I$1E)]] I$1E)*Aۼ-e)A@ɔn1 IXe) .&vmf1!ծؐ6If1!Wm Hf1!uuc۶ E)!_ݰ&m&$! p`{cf1!UWhigۆ1!ذ*" 1$!mӶ[;`f1E)}_$I$e)E)/$II$1E)U$A4I1!I$I$f1e)$C$I1E)n/A$Ie) mÚ f1$!/$I$1E)Wz $@e)E)'P5[,e)!mae)$!(`te)!@*N&me) $ 1E)-I$I$9I$I$9I$I$1E)H$A21E)⫿dB2 C1E)I$ɑe) i@[1E)ZْI$1E)/mt1!,$H 1E)I$I$9@1E)ꪪH$1E)z@ @1$!b*:͆1AjqH* ɟ%qH=-/{s q 4qM f ?+ma*>K>9KI$I$1E)H$A$1E)1E)@ gf1B$1E)ʫ/ٶmۆ 1E)-9,f1!xXiE)  $@ 1E)1E)B **fb6r1 II$9! H$1e)*AD1 61E)j*I$L$f1%)UUVT@0E)pRAdJ1B H$I1 "%Ɉ1$!( `@!1E)0#i&I1b@$IDJ1%)۰[1E)** 1̆1`!1!+-=D 11򡥵Kvm׶91 I11 /6I$I$g9*HH$114I$I$11@0 11Xp@@ !H91!gh,91E)pXƆ1!,<"# І1E)@CM1 1e)*EI1e)**((AL16ݲ1E)ضmݖ1e)aMP1UU"wa0 +/9!rf ?#9aHE84`;I$F> H2ǹa,$>2蹧: IBDZP ;4$I$DZUUU;4$I$蹧< HR*LDZX:ڢ&mǹfh訠-`"5$`۶m 4E1p@$E)p@$E)! 2$ %) @ !I$ $!$!($!8I$I$) ʊjiv P)yS1qa--- 5,!`JIDZ9*ܲ Qǹj***=6K AǹQ <p$L<DZ I! ' I$I$!(I$I$d!d H$!(I$I$d!d I$I$d!d  $!!We! I$!, @$!@ !0%)! I$I$! ! I$I$E)I$I$E)! !  !@!$H$!@@@@qWqe`8))+, 1q----4/)d@`DZ  9`$IDZH@Rh&A I!!(I$I$e)I$I$d!d I$I$e)I$I$$!!*I$I$e)I$I$e) $!`I$I!VՕ'!I$I$$!!?I$I$d!d I$I$$!!I$I$$!!zZ @!@!$!pI$I * I$I$$!!I$I$e)@$$!PI$I$%)! $E)!I$!'I$I E)$!2d$$! xI!$!?/ A$I$e)$!I$I$$!!I $E)!/o %) &&Ae)E)!:I[$! IE)! E)!@$IE)$!1aWvg`E ',&` /5jAP  )ϳ`4$ X`Mh5$)!$I$$I%) ^ $E)!$I%)!E)$!I$I$E)$!@$E)!x~AE)! E)!$HE)!߽IE)!I$I$E)$! I$H$E)!. E) E)  E) I I$E)!A$I$E)!+ HE)! HA$$! A$ E)!/ E)!-I$I E)! $A I2E)!*H$I$1I$ 1DB E) AL$E)!$Ie)$! I$$E)!* H$E)!$IE)!*$C@E)!j  $IE) HE) MnE)! $ Ie)!P$IE)m[$E) pA$ E)$!!$I%9f;qWfX--54 N =B"9! 01E)ʊ@3$S9 1 `pٚm6 1E)(! 1E) *itI$91=UUOxf))-1` S%y )-410`DZ :$'DZH ;2ǹ9 M!DZf@9!HDHǹf":$IDZa$>$IJǹ%q<8@DZX42DZ9 hEy`$q%@$ f1- 1E)+QKIf1 %,-*If1 @mƃH1 ړ (f1!@a۶E)A*  d,f1B$S1`I1&I$I$9!H@$1E)*9!1e)ʪ*mj5f1h" E))1E) 81`HH1!( P$K 1 \i&H1 1E)$!I1e) **-9,Ɇ1$!xpI$I$$!!__|6 1X1!-- 9 $Ia9  JD1 8I$I$11IH$11><H$$11(`&d21E)T1 @1 *!J 1W1$! .<ML ӆ1E) 1E)1e)*  I1E) ..(b'ڹm1 H`B$1E)("I$I$1e)k!X!?)pSy{X+/6&  8+C4aFǹ: HǹP$(:" IDZ@@<4 *)DZa@< I$Hǹ%i$:2?mǹ]92 nmǹ43%:J&Iǹf44BN'r&XiE) E)!+$ $ 2E)!z$I$$!!,@I$I$$!!(f*{!A$ @P$ ?/'{y%H=-2p E :2}kǹB3h@`4Z'M$! "*( H$!I$I$$!  $!@@!I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$!  ! I$I$! && I!((H!  !@! I$I$!I$I$E)I$I$$!!$I$!&II8 [yqP550 p E =(@dCȹ+jFhVܤmY* ;H<Γ$@!I$I$$!!I$I$e)I$I$e) !@!b @$!`pXI !ݵ' I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$$!!*~ ! I$I$d!d $H$!AI  !*.B!  I$I$e)I$I$e)I$I$E)! $! I$I$$!! $@0E) jH$I! ( !H$I$!I$I$$!!I$I$$!!7/I$I$e)I$I$$!!I$I$$!!  H$$!!H  E)!H E)!I$I$1@$HE)$!E)!ꫪE)@$I$)$J*(wWy$+))1d E 4"*yDZx(Xf@ ?͏%y}ٖn݆m%) E)!$IE)! E)! %)!z^H$IE)!VU E)!*I$I$E)!*I$I$E)!I$I$E)$!I$I$E)$!*I$I$E)!*`%)а$ &L$E)!ֵI$I$$!!<H E)!5) E) 'I$I$E)!+I$I$E)$! E)! HdE)(I$I$E)!I$ E)! `ض5E)! zk$E) E) ^UI$E)!*I$E)!۰5mӶe)!j*n PE) Ie)E)U?E)$I$I$e)E)I$I$1 I$I$1 I$I$1 I$I$e)E)I$I$e)%)  e)E)jÀva[Xe '. Si --?/wɧ<$I$E)!*0oIE)&&$I$1!*$P I1A nm&e)!mme)! QtHf1 *DE) Z&Rvf1!p *:hn1!]1E)@@!B%R*If1 ذ@f1E)@e)%) I$I$@!  f1E)I$e)E)^I$He)E)/$I$1E)UWt@f1!^ mP-Af1!UWh1a۱-E)!%W\dR$f1!+UD ` f1!.6 $I&1E)HIjf1A' A$I$f1e)I$I$1E)f1E)M*'P'Af1: X; ۺmf1$! `E)!  $I E)! *$A!e)$!  ɴB۴me)I$I$1E)I$I$9H 1E)m1E)믿#)1E)_Em$1E)[W۰mh e)$!(@ 1E)z믽I$1E),šH? }aA0*0w7a+>ܰÂ%e @P:py'ǩT f1 .?LH I1E)1E)r$M1I&D$1E)I$I1E)[- 1E)ZzI$`2E)!d ۆ1$!/I$I$1E)r"&He)X $1E)@ 1E) 1E)믿!He)E)I`$E)!70 1!a0I$1E)⫫! 1E)"+/? BLX1 4$۶M`$f1 JF 1 @3 1E)zj.ݚe)!‹ (dJ01!/o۶ml1E)I$I$1E)@$$1E)I$I$1E)ꪪA 1E)" $I1$!H* ۠ e)cCa[f1Ab **Ѵ۶ 1J&%C3A1(p !ɀ1E) 1E) 1E) *I$I$'9#Cр 1$!jH@f1!/?ɐI$1E)5U#i&z1 `$I$1E) 1E) .I$I$'9#IH$1E).*I$I$'9#۲m61E)"M&k&1!W_^| IE)!5D J1E) $I$)1@1 @a11I$I&11p_H11 2$I1E)" I֤1E) */,1bņ01!80 1E) # I1E)//>I$I$'9#L$dB01E)$ 9!`(%a18 ZJ 1( $I1f!1w%)+)3 NE -52mݖmDZ:$ (0ǹ`9#ILǹ;2>ekǹ9*$HDZP44I$I$%44I$I$%44I$I$%6*! ǹJ>t$p燱Śm붴E)@E)biSlmmE)q* E) %)$@$!0n P$  WyfP---4 p :1Ѻmǹ; ",X'ǹ@PAK0! @! 4 !@! I$I$d!d   !@I! : I$I$d!d @$!@H!>.@$@$!࠸I$I!*I$I$E)I$I$$!!!}uI$I$! I$I$d!d I$I$! ( I$I$d!d  !@H$I$!(IIP[W%qH?---8Nt DZE 92>hwȹ?1evA$9I$I$e)I$I$e)@$!pI$I$$!!!b@ @$!I$I$! I$I$$!!I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$d!d  $!I$I!Wݕ7!  @$!  !I$I$$!!I$I$$!!I$I$$!!bI$ $$!!`$L$$! !I$! 0H$I$$!!I$I$$!!?I$I$$!!**I$I$$!!I$I$$!!* I $e)H$I E)!^II$!!0<I$I$%)$!$He) 1I$I$1` I%) ؠ $E)!z6X'%pO7a , \%y_]- ?%q}- +C(IzϏE$@$IE)! E)! d$E)MInE)/   %)E) I$I$E)!I$I$1I$I$E)$!`HE)!@$E)!Z@ E)!Z߯$IE)!~- @$E)!% E)!I$I$E)!I$I$E)$!** E) E)!ȠIm0`E)- $@ I&E) xض5mӶE)!zUUL$!E)/ E)  P$IE) @$I$E)$!*IE)!  )(I$I$)(I$I$)(HE),ńJe)((&ZJ(E)! 0$IH$e)$![NȘf1 (-E)@ !!)E) I$$ 2e)!* Xe '??&SywX ---5(`JJ>J$hǹmMuE)! ׺@!Ie)!۲-E)b@ٖmE) $%)`ݶmE) LǤME)![-E)!z 0@E)!rH%) ,6HHE)(ֶI$e)!{ Lhf1!(@$e)! f1E)۶mؚ,f1E)e@$@!@!e)%)@e)%)$If1@`IdHe)!Xmֶf1E)zڂ381 `m6i۵E) '~q1ee) *kݖ1$!+I$f1E)WZ e)E)-I$I$@!I$I$@!H 1E)^I$I$e)E)5TpI$E)!.H$I$E)!8 DAdL&E)P-tm۵1E)_1E) 1E)z 1E)뫪H$1E)`H1E)_BBdLf1E)iV_!Ie)E) ABA`e9E!jk!i$e P (IPս/6$`V ș6QbkjbA4If1c۰ e)骨mf1! //H$1E)!I1E)I$I$1e)I$@$1E) I1E)˯`01E)^zkE)!*0 1!/@ 1E)믾 "f1! 6I$I$9H$ 1E)6aa1 Jl1Je)  )ۀmE)! .(1E)I$I$1E) @!1E)K I1 Tۢ1$!j IDI1$!(rڒ#Ɇ1$!r #IE)@4HTIf1I$I$1e)ꪪ$@$A1E)/I$H$1e)I$I$1E)I$I$1E)#)$ f1$!j*$I2$ E)!}w%Af1 Pk1E)(*( I1A$I$A21E)*mlf1 1e)$Z"51p`[mlE) hCZ1$!bddK1! I$I$9I$I$1E)1e)@  1E)@HI1E)X,ӴM1!h9-͆1!xI$I$$!"& 11! -=I$I1 @@1!iIt1E)*I$I$9! LȄ1E) **(Z$I1I$HB&1E)8I)1$!@AMdf1 >dI.H1E)H$@$1E)$I!1e)+&+A1 P 1E)I$I$9! H1E) ..0'9# Al`'?-1wi )--:,%i.ǹ+=9"@DZP63Ci۴ǹ53$I2$I%:$@DZP$93m;qǹ?=:H+@DZP:$m00ǹf b9/$_2, ǹ?hp$ǹ E)ʂE)! E)!$@E)+#0!E) d A%!ibP)(wuSH/+ 4*!P > I*!DZ%I@&H$y'Etu]]I$A!: H$!(I!A4I$I$d!d I$I$E)I$I$d!d I$I$! ( I$I$d!d  !@H$I$ r  !A H$I$!I !* H!(I$I$! I$I$d!d I$I$d!d I$I$! I$I$d!d @$H$!`I$I$!aZZVIdItP7''W%P5%--4 p f <2vnȹ-E:*NfJJJؑ$9I$I$d!d I$I$e)I$I$$!!bI$I$$!!**!6$H$!`pZI !%  !b@! I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$d!d H$I$!!`訪 !b I$I$d!d H!$I$I$$!!I$I$$!!(I$I$$!!$!  I$%)!I !;. H!0I$I$$!!I$I$$!!*I$I$$!!I$I$$!!??$A$ȄE)H$IE)!_߷A$H$E)!{ڶwVt%)  I%) % I $! I$I$1$H$E)!II E)* 2`$E)I @(%1 ə VJ%y 5%wKD`DZ-3') @DZ/j"5 hX`NQfAA0`$E)IɐmE)/ @E)!*0E)!HE)(I$I$1 E)! AE)! HE)!^I $%)!jH  E)!^$IE)! E)! E)&I$I$E)$!$E)!$I!E)!+ $AI&E)!/z I&I$E)!~UUI$IE)!WU-IE)!  I$E)!X&[mE)mۮaE)!* eE)  DAE)& I$I$)(I$I$e)E)$E)!$A&I$E)!Km۶ E)$*[5E) bz ivֶe)!+mlmڶ1!D$I&E)`H$HE)$! I$ E)!*$I:#1E)``7Wf@//6 E&>R"%C35% P``IR eAE)UVTTmmذ%e)!p$e)$!Ie)$!A$Ie)`a$IE)!dBE)!$E)!( CE)! 2 E)!(I$$E)!{DB& $!PI I$$!!I$$$!!!IB&E)!/ m۶E) 0햤f1! 1E)$lZ%e)P`ie)A L$Ae)  I$@!I e)E)$C 1E)m_$@1E)zI&:e)!WpI$I&e)!%UWxvl'f1 I$$1E)U^I$e)E)e)E)I$I$@!I$I$1E)I$dB01E)WzH E)$!A$I$E)!*,C۶mE)!8$Af1E)1E)I$I$91E)ꪻݶu[;1E)Z H1E)_!B$Af1E)eoi׶hPe!77 %qP5&f"熙 B`9IfAe C$I1E)I$H$1E)^z#DJ1$!⪪Iز E) & `[f1!)/k6[m1E) I$ɐ1E)I$I$1E) Mt1*۰mݖm1E)r*1 I$I$E)!@!1$!HB&$C1E)1E)I$I$1e)T&mf1 'H$@ 1E)`e)$! ECe) I$I$1E) I$1E)@$1e)C1E)z{ I!I1E)$C$C1E)mnE) + L1!/>I$I$@!dh`1$!I!1E) 1E)ꫪ 1E)I$I$9K&X,e)!p@ Ide)! 7A $9@$ 1E)ꪊ$!1E)**1`$I1 I1E).. Kd1<X,,1E)XZzj! 1$!kϯ?`eۆ1!/?I$H$1E)I$I$1E)ꪪI1f1@ IIf1 I$1E)۶mۆ51E)zBH1E)h⢪L$L&E)!V^^xIdIdE)!-55TC UJ1!' $A"41`q1 H1 d&$C21E)1E)dB2$C1E)I1E) /1- !bD1!..:MKd1#M&1&p1E)IL$1E)..( I$A21E) mpf1  BI1E)(B"ʉhb1A 7WE8 +/-5INf <$).IǹE@@9 HHDZ%q43%93 :mǹ41%90Zm۶ǹ:B#@$IDZP`9/#-Cǹj@p'h'ǹ@E)!ZꪪM6ݒ%)!,H mEE)]mtE)*$$@$E)!d HE' əiH=-2dNX+ *4/`6hDZ ?38Rǹ ``PHNEA\I$I$! I$I$E)I$I$!!a I$I$d!d I$I$d!d I$I$! I$I$d!d @$!I$H$!bp(($@$!I$I!*I$I$E) ! !A!I$I$E) !@ !I$I$!jI$I$!VUUIttP ''[yEP----6!tJ`Nf 53$I &<"!"!ǹ@@@@ ۲-$1I$I$e)I$I$e)@$! 0I$I$$!!j !$`I$I!wUݕ!I$I$d!d I$I$d!d I$I$e)I$I$d!d  !@ !b $I$! II$! ***I$I$d!d I!,$I$I$d!d I$I$$!!( I$I$$!!I$I$d!d  $!pI$I!Օ5I$I$d!d I$I$$!!I$I$e)$@$! p! !@LȄ!$!  $H$$!!˂0<- Iڴ%) &I7Y۶E)I  E)!k$%)   e)$A$@2$!!@ 0d$%)!I $!/  $H$$!! '$q$7_0䇩%4)xIDZJ8BHDZH 5(MDZ.{">p@I„!C%9I$I$1$IE)!I$I$E)!E)!*j@ E)! @$  E)!$I$E)!~$@$I2$!`I @$E)!H$ E)!E)!I$I$E)!LE)&HE)!HE)!*$H2L$E)!h^U$I E)!'N!E)*& H$E)! I$I$E)!+I$I$E)$!* I$I$1ú%[mE)PmmE)!   $$E)$! I$E)! I$$E)!^E)!I$I$E)! m۲5E)`۶mE)I$E)!+Ie)$! #I$ E)`$IPE)$e)E)ʟ]Ie)A,& wwp%!+))8MItP& 8"!Zӧ% @@"eAER"$)e)PIJe)!I$I$e)E)I$I$e)E) I$I$e)E)?dhE)(I$I$e)E) I$I$e)E)I$I$e)E)dE)I$I$e)E) HE)!I2E)!I$ E)!I$I2E)!I$I$$!!I$E)!WI$e)!+_$H6f1!+e)E) @!H@!I$I$@!S%' f1ؠI$H e)E) $@e)E)@ I&`e)!\!I$E)! 5U6te)!%I$H e)E)/X@ $e)E) ۶-۶ 1$!**H$me)!  0e)E)X@ $C$e)$!*۶mؖlE)a$A$ɐE)! 8$ $e)E):%ذDkM1!(>*L΄A1!'P Pf1 ؠI$H$f1E)kE&P!7 I PHOR9% * BrH}ׯmۦY I$1E)91E)I$L&e)E)pCɒHI1!rꪪm۶KE)!@&f1! 5I@ f1E)j1E)*$A$If1&H1E)I$I$1E)꾾mX f1!II&e)!.>1E)I$@$e)E),8e)$!f1E)ꪪ If1E)$I ӆ1I e)E)4 +e) $mIf1 m۶I1E)/I$ 9I$I$1E)I$I$1E)k%[1$!xb6E) BTHI1 I$I$9 H1E)I$I$9@$@ 1E)$I$1E)bLf1!&I$I$E)!uwPf1!  I$9 H$1E).I$I$9!H$@$1E)`@$1e)(XL$N1,4vD۲ۆ1$!~xblĆ1!Vlٖb1%) I$I$9"a$Ie)@&lVh1@$I$1E)*H&%f1 p$@ 1E) (k1蠘LdH&!(<pJ1!  "AI1!@Eۺm1E)!1E) 1E)! 1E) *RP1 IH$1E)..2!m1E)`@C4Ҡ1!"AR$1E)*+;[Ie)A @DHdI1!@$ 1E)$A!1e) " (I1$! 1E)# II$1e) ***wa{?xE))-5 o'X ]4 i#DZf7 Tm$ǹ U7mk;DZf7m$DZFU9$ nDZf; Irǹ%yU:HIiDZF50$i/DZfo;Hp&[fEmE)a m۶Ŗ%%)a$I$$!AII$%)!I I$$)*j!$AHE  ɝfP-C)yВe NFnK`?j$H<DZt !$H$! ! I$I$d!d I$I$E)! I$I$E)H! 44I$I$$!!?I$ $!.% II$!H$I$!I !** I$I$E)I$I$E)I$I$d!d H!I$I$E)@ !!@ $@$!I$I$ jZ^^I$I$ %IH  9\yfH-5:DIDZFy 90mkǹAS34C34ǹ````H$H$$A!TTTV!0I$I$$!!I$I$$!0 ! @$H$!pXVI !7 I$I$d!d I$I$d!d I$I$$!!)!$I$I$E)!@ !H$I$!VWUI!b$!`!$!a4I$I$$!!(I$I$d!d  !H$I$!a !% I$I$$!!kI$I$d!d I$I$$!!*!LI$I$!I$I$E)!$ALȄ$!$4I$I $!! @$ $E)!H$I$E)!$$ %)J @$$! I$I$$!!B$C&$!@I$I !B!H$$! I$I$$!!(:!I$E)$!&B&i%9$B*49y䧹-60i) 9DHDIDZH4' H^x-M.>xkqt%I$ E)!I$I$1$Ad$E)!*@$E)!z@$I$E)!ZI$IE)!׵dBI%)ArLE)<I$I$1I$I$1$E)!H E)!/ &E)! x^@$I$E)!^WUUI E)!U  E)I$I$E)!I$I$E)$! E)!길I$I$E)$!  I$I16%E)`#&E) pm۶E)"@$IE)!zUUI%)!յ!I$IE)!$IbE)  Cd$E)! LLf1 (0E) @a6E)A)(IE)&)($E)`[u۰MXe'',rpSaU--@mF*ȟfE@E)!@FJLe)!0($E)!E)! e)E)Ue)E)I$I$e)E)*$Pr&E)I$I$e)E) X E)I$I$e)E)*I$I$e)E)ޠI$I$e)E)I$I$e)E)*I$I$e)E)x $e)!I$ E)!U~I$I$E)!_I$I$$!!_`mE) mie)!+`e)$!I$I$@!$e)E)I$I$@!H$e)E)\ I$e)E) 7~["% f1 `۱(E)j` e) H ee)  I$e)E) f1E)I$@$e)E)$ɒ#e)`C)$He)!J@m`E)bI$IE)!>$ !e)$!*I$1E)ꭷI$I$f1e)0 H!7 I$PE)"6y ** BhعEE I2e)E)p@ 1E)믿 I$1E)V%B3`e)PVhKf1 $@L&e)E) .XX,Ւ6I1!XjI$I$E)!?}6e)!  H$1E)I$I$f1e)I$I$1E)1E)*"f1!@mmE)A I$f1!/? e)%)  I$e)E) ,8I$I$@! f1E)~zIS1A e)E)p`@XlÖa1E)[ym1E) 01E)! 1E)I$I$1E)ꪪI$I$1E)+/L+$If1 %G f1 L$1!/I$I$1E)@$e)%) 1E)$Z"f1P@!1E)﮿$I$1E)h%@,e)!Pp@ Ide)! 7I$ $9@$I$1E)1e)* 1e)**214f1@&hӦm1!([%[3 1E)^Zzjڢ 1!iO'դV1 ***I$I$1E)ꪮ" If1@)BM1 I I$9I۠m1b IKf1 J8i1 L %)z--nE)AB IU1  I$I$1e)**( H1e) ***I$I$9!kk1E)(($I1 &$H$@$1E) A 1E) huf1E)eVV! ɐe)$! `$C 1E)֭ٚ1E)뫫ڭݚ 1E)*@JH1$!I$I$'9# H$1E)..*I$I$'9#PP!??*wy7u8++9";mǹ=uMj9t@HDZa74$I$ǹ73$mǹ*;2mǹ6)ö iǹV*>H!iǹaB$@$H'ېۆE)"(A`HE)"$$E)!I$@$E)!mMnP ?' ɝhH-.7.P Pk 7H ADZfAӠi<)ǹ@I$Yb'@!"*(I$I$!I$I$d!d I$I$d!d ! ! I$I$!( I$I$$!!4 $!I$I$!ꪺI$I$!I$I$! &!I$I$E)! *!I$I$! !A  !I$I$!I$I$!VWUUII$!-)+1eR!eP #pH/{+8N, DZF9p -ǹF+`?R2$\r'PH$I$1!TWWUH!0I$I$$!!I$I$d!d  $!`I$I!wU!I$I$E)H!8I$I$$!!*I!$H!  !@A$H$!᰼I !5% @ !!bI$I$$!!9H!4I$I$$!!I$I$$!!?$@$! I ! * I$I$$!!5I$I$$!!SZ֕I$I$e)I$I$$!! jzI$I$d!d I$I$d!d  ! ** %) I$H$E)!A$I$$!!I$H$$! II e)I$I$$!! $A0%)jH$I!?!$IE)m+E)H%)!8 I$IE)!~$ $! & $@$E)!@b!v$$9PJ1O<DZ%4I  1&I~,t fZ蠀%%iE)A I $E)! I$I&E)I$I $!!?. $IE)!IE)!I$I$E)$!I$I$1$@$E)!I$E)!/+$I$E) L$IE)/ E)!-I$I$E)!讪I$I$1I$I$1I$I$1I$IE)$! $AI&E)! m֤E)! E) `$! I$IE)!/I$ $E)!I@$E)! [5E)` @E) I$I1I$e)E)yU-I@$1$I$E)!$$E)! I$E)!$I2E)!Xm۶E) p$A$XE?$7Sy{`--%57&%lnǹ+=L$h&T!E)I$E)!UU$$E)!UU $%)j$$E)$E)*E) d$I$E)! ..$I$E)! I$E)!*@&E)!e)E)?I$I$e)E) I$I$e)E)I$I$e)E)I$I$e)E) I$I$e)E)e)E)z-$E)!m۶]bE)A I$I$$!* I$E)!+Uume)!/e)E) $Ie)$@!e)%)I$@ e)E)|I$e)E) 7N,ѐ$@e) ^p!I&E)! 5U\6`ݐnE)! [&64e)  ۖf1E)H Be) I$e)E) ۶X`e)E)%TPLH&!Be)!E)!86le)! @$A2Ae)uU`LP) (yac%b - y RX%öAe1@$E)!  I$E)! ** @ 1E)Z{!r$e) 0I$H$1E)dB2$Ie)E)̀me)E)%K%e)!p@IdI$E)!'}&iCS%e) p@$1E)XM1 ,6&i$41p 1E)믾h%۲1$!xjI$IE)! ]ɖ1$!-I!He)E)  f1I$I$1E)bِHe)PL&d21E)vm&1E)巗_nH1E)f1e)믮I1E) I$8f1`I$I$1E)I$I$1e)ꪫ[-ۺ1E)Z{I$I$E)!* 1!I$I$@! H$1E) #-1`Tmɖje) f1E)*uJff1 8I$L$E)!UvT0 f1!"2%@1$!6. I$1E)/$ 1e)* iڦm1 &@$@$1e)1%)ʊ*f1!N;hƆ1!1E)I$I$9II$1E).H$H$1e)$C$I1E)$A$Hf1  1e)k&h%1!^^~x$A$I2E).okBf1  I$I$1e)H$@ 1e)$I$9!&hx1!61e) &@`1  1E)..@f1E)ZZzj !Ee)!((0Ңn1E) NTBO1 !I$I1e)**ILئm1!'I$I$'9#@$@ 1E)1e) 01e!hfP=-4, X  43@DZ43DZ44I$I$%44I$I$%44I$I$%43 %4.$iDZAh'J$ǹi6mE)i:[l%) I$A$e) $$)$ ʊ6lmH ɛyufP-/3d @E) 8(8(pǹb,<# m۸J@v&h'I$I$e)I$I$d!d $!`! @$H$!pXI !* I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d !, !bI$I!!**! !I$I$d!d I$I$e)I$I$e)I$I$d!d $@ !a@`I$I!a*  !  I$I$d!d I$I$$!!;H! ,I$I$d!d I$I$d!d $H$!I$! H$! I$I$$!!I$I$$!!I$I$!! $I&$!$A$H2E)!n@$I$! !I$! I$I$$!!(I$I$$! I$ E)!$H!$!С]E)j I$! IIE)!޺* $@ %)! @Ip?Ei{2t I$ _1ȧh(+߻f` 'x$xI$I$)!__TQdB$@%)!ZA$IE)! E)!몪I$I$1$E)!$IE)!$@0E) $I$%)I!@E)  $E) E)$!I$I$E)$!I$I$E)$!I$I$1$E)!  `B2%)a` I!$!H@$!,PI۶mE) IE)!/$I$E)!I$I$E)$!I$I$E)$! I$I$E)!0E)@E) @&@E) Р $I&E)!@$E)!I$E)!U$I$E)!wA$I$$! H! I$I$)$ˆHW%@//-3 f >R"%34p`ݺke9IҶð%E)IҶضmE)I6XE) zI$ E)I$E)I$IE)I$I%)!$I$$! I$E)۶aI$E)$E) $I$E)!*I$E)!*$$@e)!  *"P Be)I$I$e)E) I$I$e)E)ꪨhe)8B Ie) d,&-Ae)РI$ E)!W_I$I$$!!_\!I$E)! UUj f18#e)``tNme)&&@$A$1"IB$a$e)E) $I$e)E) ?~[e)!` E)!-BBД@RE)`!I If1!@ e)E)-LB&d21"I$I$1"I$A e)E)pLH& E)!8  M4͂bE)! !IP / ɟ$yH/%h%yf BP$Ie9e)yI$H$f1E)~R#8Se)`plE)!IE)! *(%#e) `` e)Ҧ%R"he)ppXl1E)|C;ݲE)!pHMɔlf1 kvh41!((L$LB&1E)@$@ 1E)ꪪ1e) 1e)* 1E)II$e1)jj: 7qwW$ibH///-0 E 44I$I$DZ44I$I$%44I$I$%43$%44I$I$%93vhgǹ?/?:A)HDZX @J'J<ǹL&$E)!H$@E)!I$E)!$ @P$ ?'' ϝiH5-/ywS` i-- 8& )ǹ+*J<'l]U;;;x$$ǹw !"I$I$!H!8I$I$d!d I$I$E)H!A8H! $&I$I$d!d  !I$I$!I$I$ I$I$! ! I$I$E)I@$!,p!I$I$! I$I$!I$I$E)H$I$!I$I$ I$I$  )JJJX`8)+ i---+4/`PDZ  :1m6ǹ=H$H<ǹI$I$e)H!(!`$!`I$I!WՕ !I$I$d!d I$I$d!d I$I$d!d I$I$$!!Z^TI$I$d!d H!4(@$H$!XXWII! &I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d  !@@$H$!ศ !% ! &! !  I$I$$!!<I$I$d!d  $!I$I$  $!/ $I$I$E)rI$I$$!!I$I$e)I$I$$!!@ $! @$I$!I !?/+ ! I$I$$!!. I$I$e)A$I$$!  AHE) $%)*bI$I%)/HE)!k.!$I%)!  E)!몪5Vm۶E9$J*%$7*L7 .C(iXuyjI $1$  E)!I$I$1$E)!H$I E)!?O $%)!@$I$!:IE)/  E)!HE)!I$I$E)$!E)A@I@E))  H$E)!H$I$$!I$I$$!* $I$I %) BMٖnE)$I$E)! E)!*E)!(۶tKmE) (4I$I$E)$!$@E)P$E)!迪| I$E)!_H&dB$! I$I$$!!|6I$IE)!UիI$E)!WիIE)!u$E)`E)!I$I$1 yWpE ++)+0 p O%y --?")$ @@jKYE9$`B %)  E)! J`@E)I$I$E)$!I$I$E)$!*E)I$I$E)!*I$I$E)$!E) ZI0E)I$ E) $IE)I$E)+E)!* -U͐tmE)!'I$e)$!*e)E)%J($Ie)(1"Ie)@E)I$I$e)E) k۶ae)!MK E) ,@$$!*@ E)!UIJe) +I$H 1" I$1"I$e)E)$Hbe)!8$pDe)0(I 1E)UW$@$C2e)E)/jJm%Bf1!P  1E)UI$I1"I$I$e)E)L$Ce1E)W^{OXZm۶Pe'  IiH=j)ۏ%EBP4Iڴme1E (*I$I$1e)e)%) I$1E)W_ "f1!`mٶmE)!! $E)! (H$@ 1E)^{k $e)E)/"I1 JVAE)bêKu1A I$K&e)!wXɐe)! 'I$H$e)E).8` K6Ge)8f1E)ꪪ H$@!1E)kᄒI$L$E)!/,I$1!/KDmf1!,6)ۀ 1$! @$@!H$I e)E)p@$Ie)E)kz[-1*juhjņ1$!f1E) H$1E)I$I1E)*lɶ-e) $I6,1!b*Z,e)A@öaۖmE) 1! n1!*! If1 * 1!H$@ f1E)zz1E)"#(A1$!jI$I$E)!UV4Ide)!A$Hf1ۺmF1!*$H1e)IH$1E)*$I)f1@*a5f1!aE)!>:$aS E)*<1E)$C$I1E)ꫫ?HINf1 'I$I$f1e) 1E)$I$ 1E)821E)jʫk%[5E)ِnɖtE)++//1e)I$I$'9#k61E)..25'L1@  T1 '$1e)@$@ 1E)$H&4f1``lf1.dKf1! 7B1X1 p h1!I1e) 1E) .$ $)1@ If1A۶ K1)BJ( y}hE)*+))0 E )43DZ44I$I$%43 %:H ǹa(43%43%51-)"DZ?H$x$ǹ@ E)( MúuE)IB$E)ժ I IP$ wuf0++6N DZf- 7&cǹ(;$.)ǹ@$Qb$1!!**I$I$E)I$I$d!d I!&I$I$d!d I$I$d!d I$I$!  $!$I$! I$I$!zI$I$!I$I$! J! !($!@!I$I$!(  I$I$! ( @$!I$I$!jzZI$I$!z'I$I!($!26aW`b(j *. ` ` 41PPDZ A0vdgv`ɧȃ<ȓ@$$! PI$I$%)!I$I$$! @$$!``!I2`B&E)xI$I!!8 @$!0 ! I$I$$!!I$I$$!!$LH$!  I$C&%)zH$I$!!@ %) $H$E)!I$AE)!ۺ %),& @$E)!I$I$%1!7_! I$f%+0T%,(iExꀂ?E$`$)$A%@$E)!H$ E)!/0`$E)¨I$I!  E)/ $IE)!I$I$1I$I$E)$!I$I$E)!*$E)!* Cm&E) {^@$I$!.I$I$! IE)! $E)AР!I$E)!$I$I$E)$! E)b@0%)CBE) @$E)!$ $E)!I$H$!!7/I$ $$!! I E)!u磌E)!몪 E)!*j%) I$I$E)$!%)b`E)!I$I$1IIXe''?+1Wi----:(Rfao̓f$ۖbI5E) ` @E) @@E)I$I$1$E) IlضmE)@$@E) I$I$E)$!((LE)$&I$I$E)$!I$I$1I$I$1E)!xI%C-E)z``i6iSE)*IE) :*E)!*I$E)! IJE)8I$I$e)E) E)I$I$e)E)訪$J(Ge)! 8M5غae)!_M$m$E) !I$%) )UU`J6e) /I$I1E)_߽ Ie) '!APf1($L([$Ie)(I$e)E)   I 1$!Ji׶Śe)E)Bh:te)E)Tp e)aH$ f1E)* I A@e)U%mY Xb *a?"% b_%I$ @!E)! @ e)E)@!&Z"4e)!P$! f1E)^L& f1$! %) $ f1!+۶uX1E)^[BB0e)` BPe)  e)E) P e)!pI$I$E)!UWmݖme)! I$1E)I$I$1E)@  e)E) 1E)m%[!1$!zz@$ E)!ˊI!e)! H$A e)E)pCB@ e)E)$Ie)E) I$e)E) &e)@541A *$A$e)E) жnfce)! 4IDf1 B"̒$If1p"I$I1!c"a$Ie) @iX+e)$AtHe)!/>? ɄHH&e)E) @$ e)E)f1E) e)%)! 1E)dͦae)&H&@0E)!TXP`Nb˶`f1ڊ *J$Ie)J%$If1I$I$1E)I$I$1E)"I$I1!@"6H$If1 kh5f1!~M\51!)1!I$I$@!H$@$1E)$IHf1 1E)p&g0Ie) I1E)."ڐ І1!~|xII%)!*`&1$! 1e)H$A$1E)(C71! C2$C21E)ਪðs 1$2$I1e)ꈨ[i۰Mf1 `U,R#)f1!SPr`IdM$e)!7"n1E)/  f1 I$I$9IH$1E).*"a*i1 @$H4hf1 &mpf1  fni`! '. Si --4.0DZ44I$I$%43%63$m6ǹ:$FDZP 53$2$ %:$@DZX$=ȃ$h"%ǹP[$ɺaE)H%)$!:1ERDBXE 'qwhH׵-+ywSd `-+ :$Mb&ǹ0 9$!DZH@;B#8BR$ǹA``pHL9I! ' !@!AI$I$E)I$I$d!d I$I$!I$I$d!d I$I$d!d H$I$!`I$I$!I$I$!I !@ !!A !@!I$I$! I$I$E)H$H$!I$I$ Z^VWI$I$ '  !*   AH> WyuqP5550 p E-) 42@DZ<۰ !***Jٙ$9I$I$d!d I$I$d!d H ! 4,I$I$ WUՕ ! I$I$E)H!(I$I$d!d I$I$d!d I$I$d!d I$I$d!d @$H$!P\TW !% I$I$d!d I$I$e)I$I$!!I$I$d!d I$I$d!d H$H$!I!5 @!I$I$$!!5I$I$!I$I$d!d I$I$d!d $@$!hI$I!//! I$I$d!d I$I$$!! I$I$$!!I$I$$!!$!`H$I!VUU!  @$!p $!$! I$I$$!!>& $I2%)!U@$I$$! %)/ ( H $!$A$! %)$!ꫪ @$E)!zI $$!!* C&L$$! aB&%) *b`O'ɟ$Ey_)  +P4fx (}> f h Nǹ ߆Qֿ 2d$E)H$I!* !@E)!HIE)!E)!I$I$1I$I$E)$!* H$E)! @$$!ฮI$ $!.!I$AE)!+HE)8I$I$E)!I$I$1 $@E)&I$I$E)$! E)$! HE)!/@$E)!~I$IE)!~IE)!߿0E)!HE)! E)!I$I$1I$I$E)$!!%) I$I$1I$I$1 E)!I$I$$)E!_$A$He ?;/"7WfP---1"m'֧"0˃$jѧ$T/?XE $$E)(U$$E)(U$$E)(Uk:lm$E)! *$0E)UU0E)UUU0E!I$I$E)$)I$I$E)$)I$I$E)$) I$I$E)$!I$I$1I$I$E)$! I$I$E)$! E)$! 0E)``@E)Xmۺ-E) @K e)  H!e)$! I$I$e)E)ꊊI$I$e)E)޾ $I$e)E) ` H$Ie)bM6X `E) W~I$I$!*NĆ1 * @` f1&*L$J$Ie)!4I$I$e)E)D$Ie) $ E)@` D@f1)# D$E)$p"Me) Xkm%A H$IPEA.j9$b HoEyE I$BE)!еi۶E)!* E)!(Z7m 1! I$1E)H$d1E)~I1E)iLB&d2e)$!$A$ɐE)!.$TB&E)` IH1E)_ HHf1E)C$Ie)E)`ਠ e)E) %5K&C%e)!\X`Pd vb'e)! ze)!HIe) I$I$@!$%)$1!r $Pe)@!eR 1 L&e)!*IH$1E)"If1 '&H$@$1"I$I$e)E)pA $e)E) k۶mE)$! KvX:f1$!!I1E)K ۠m16 *$I5Lf1! %$A")e)@4HIe)1!%@ E)!ꊮ`1!65Sae)b` ݀ 1$!)I$I$1e)H$H$e)E),8Ie)E)  e)!@II$E)!Ue)E) e)$! 1E)I$I$9I$I$1E) 1E)jj#ЖlɆ1$!!bÎDE)!K$` !aS1!/=I$I$@! 1E)ɴAIe)&A%f1P 0 1E)>L$Ie) @ f1$!H$@$$!訰V1!-=@$@$1e) 1e)* 1E) .I$I$'9# %+ 1ذ۶uh1e)(I$H$1E) 1$!h蠠I$I$$!!AF Kf1a ILH&1E)H$H$1E)A$I$1E)$A!1E) I0!$1E)ꊪ!H$H1E) II!$WH+/4"  44I$I$%44I$I$%53$C$I%<2^w;mȹ?@#$I@ȹ93 :ǹ>#5")ǹ``@]E9D)&H 1J*Ֆn6he)!$HDJ1!$B$If1e)@$f1E)$HR'f1A  f1!xɐM֤e)!/>I$H$e)E)(I$I$e)E)b@ e)E)@ $e)E) $He)$! H$A e)E)L$`$E) tTP e)  I$I$9HH$1E)I$I$9 1E)1E)$C$A01E)ꪾkM 2f1!^|IȄHE)!=e)E)UJff1! 8 ɄL1E)@1$!HH$f1E)$A"5e) @IIf1C۲ E)!^^\|vM֤E) .6I1%)I$I$9II1E). $1e)H$@$1E)@$@$1e)I$1E)C01E)M$K$E)!v `dKe)A  m&[R41E)rr$Ie1$I$ 1E)8S;& f1Pkm1E) I1E)I$I$9xx!))2` O%y -82m붩ȱB2σ鹧UwE2O'鹧U'_I1I)§UR )imhh.Ib`ʦU %'Nf_*6y<ȃ<6y 7ͺ=>E8xb{I£h)-ĠEU ; Ib;-!pjI8Q&EQaI$I$!**I$I$E)@!I$I$! I$I$d!d I$I$d!d I$I$d!d H!$&H$H$! &I$I$!jnzzI$I$!b- I$I! I$I$E)@$! P ! I$I$d!d I$I$E)aI$I$E)@$@$!I$I$!zZ^\I$I$! jj II@}_?!$IH$ ɝ߿wEH-/6 yRPnǹ$q++>4O ǹX.&CҰ.=ǹp*ȟض-Rle) lE)  e)!0)E) $8b"'e) P %9-e)!8pbhv[Ze)!,8 Ie)E) + I$1E)I$I$f1e)H$@$@!X*ITf1**Rae)!A0!HE)!CS$Af1Abe) Ie)E) '4I$I$1"II$e)E)< He)E)-1,e) `` IE)!'@!&hR"%1rp1E)f1E)ꪪ1e)R"8$Gf1p`C:-ن1!{V.E)J@1E) ðuk1E)H$@$e)E)1E)@$ e)E)$!1E)kA$I$1E) 9Pf1 ``!P⡆1AB @,@1 4H4I1!H 1e)@$A$9 1E)**L$If1!&1E)?-ْ &e)bP Ie) '?>H1E)KUIe)AJ&G If1II$1E)..Ktئm1&,I$I$1E)I$H$1e)CPES4X!''+pSy` --4'D& 5/ImDZǩ5.I9IDZǩ6,,! IǹjJ7-!Lضmǹ7-#۶DZf?u.IǹFH;{R_䧹 5Yم†! NޜuEfq׾* 5IG f"2.%I(  (616nDZA-#%DZA@B`pm$H$1Aq!I$I$!* I$I$d!d  @$!` ! I$I$d!d I$I$d!d I$I$$!I$I$!&I$I$!Z^^VI$I$!I $!b!@ ! !I$I$E)I$I$E)I$I$E)H$I$!I$I$!VWUuI$I$!- P' \*]MAX0J0wNPH+6r6f*5 #!DZ%a@C`$ϓ$w}h۶m6!!@ A!b!$@$!`pXI$I!ݕ7'@$! pI$I$$!*I$I$! I$I$d!d I$I$!((H! $!`I$I!uUݗI$I$!! ! !@!@! @$! I$I!Օ5%I$I$E)! I$I$e)I$I$d!d I$I$d!d $!I$I$!^!! I$I$e)I$I$$!!++I$!,!$!bpH$I$!VWU !@!! ! H$!8HI$%).I$I!WU!$A$! A$I$%)!I$I$e)I$I$$! A$H$E)!{ @$$!pII!W% I$I$$!!⠸ @$ E)!I$Ie) H$$! I  E)!$I2E)!j^WUжmf$1/Qa$I$%)/^Aآ8E)'?1/]f1 .1ne1 *[Ά1!k0Ǜkf1 .^=mcE)" q'Ge)!o!)Yf1k e1ުCCE) iE) ۼ A$dH$)a&Ð!R$$I !誺I ) ~ 8/I$@E)Wx@E!WuWxI$I$%)E!I$I$1@$E)`pD@E)r`E) РI$I$E)!*(8CE)fmنmE)!I$I$)(E)! m5X E) ^z I$$!mvA%@$IXe)% ɟ߿yqH+?i*D%EB`  RE9$C1IE)H$I$E)!(H$@ e)$! ͐E)&II$e)E)`E) $C$E)!B*I$I$$!!o$!E)! %DIE)I$I$e)E)@ e)E)P` e)E)Éku[-E)@$&a%)`rIL9e)A`@$E)!I$I$1 L$dB$e)$!@E)!I$H$E)!UVT@E)! Ie)E)%7He)! I$I$e)E)8I$I e)E) h%[e)!kmE)*(I$I$e)E)(б H$e)E)7XI$I$e)E)  e)E)pje)E)aL@&dB2E)!($#"%E)a@ K$Ie)  I$e)E) .$@!I$H$e)E)(I $e)E)X24òe)!I$A$E)!P&IHe)Ppt(e)a &f^-e)A@0Pe)e)E) /6I$I$e)E)`$@0E) p`Ybɖte)! %1E)H$@$f1E)$I$1E)[ۂ1E)e)%)R"H$Ie)pm$k&e)!|KhE)! Ie)! I$1"$A$A21!**I$I$1E) 8e) He)E)1E)I$H$E)!_^^| DiE)A '* I$ 9D I16 $I$1E)/ $I1e)I$I$1E)I$I$1e)H$@$1E)@021E)I$L$E)!uvvc)h 1bk+K$HE) I$I$9  e)$!H1E) $I$f1e)ꪊ$H$P!7 " ɟ߹qH/.ywS i-+ 5*p 0@ =۶@)*J<$LpdǹE8BIǹf 52mۖDZ :3'Inǹ+53 $%5..)*DZ5.+ifDZ851)JIBDZ53$I$%51t,HDZ>1kgv՟.H<Γ$ǡA !*H  ! I$I$d!d I$I$!@$!p!I$I$E)$!@@$I$!AI$I$!jjzZI$I$!I$I!I$I$E)I!&I$I$! I$I$d!d I$I$!*I$I$E)@$H$!I$I$!Z^^IIP'm6eX8**"ɝP/+3dN0 E- 410DZ C:1Rǹ@PAٲm%9I$I$$!!??I!!$I$I$d!d  $!@`I$I$A(!I! &I$I$!( I$I$d!d I!I$I$d!d  !I$I$oy9! $@$!P$!I$I$e)I$I$d!d I$I$$!!]_$@$!B`PXI$I! j !I$I$$!!֗I$I$e)I$I$e) !@@$!H$I$ *$I ! f !! $@$!pI$I$$!!$! @$!`pI$I!UU5!H$@$!8I$I$$!!I$I$d!d I$I$$!!$H$!@pXI !%  !@$!I$I$%)!j$A2%)$!H$I$!XVwI !% I$I$$!!*H$I$E)!  $E)! IdB&!P$@$E)!zZ^  $!` 関EE) I $! I$I$1@%)`@!X%A j)Mx %0(A8=Xr/}:" ZϏ&%$!$ $1%!0%)@ $I$! I$I$$!!  H$E)!$!I$I$$!(I$I$e)I$I$$!!@ $! ` $!   $I$(E!7$@2L$%!a H$I$(!~I$I$A/*I$I$ A#II$!b=*.IE)5I;6cE)bjnk1!՗m'!,E)JLb&E) ۶e)*ݒ[E) $LB!Ȏ &H%!oXpSi----Blyi >:axxxxii%):*004cE)H+61!߷mC i f1ꨩmIf1*%1!c"E)!(mѦMne)!.IѶ.e)!/I1$Ć1!_KҮie)!-mahѡE) zpf1!Vvl+&e1JPl i"E)2L[t,E):8q$)RE)I0I€!j I$$)7jXm閤@ +I$I$@E!x+I$I$9E!XI$I$E)$!*I$I$1I$I$E)$!I$I$E)$!*** E)& $E)! .)(NX$IE) 4,e)E)A ?mX lAEz>ɖn۶ H ɟ߿$qH+(woB8E$ * B`ȟfE-)E)@ ؆mE)$I`"9E)`` A!E)! ( IE)! )(I$I$)(`0E)!paB0$BE)!{b*II$E)!7]WImmE) !e)%)I$I$e)E)H$@ )(h%ie)!I$H$E)!$c 6eE)B I$LB&e)$!*e)E)b"Œ IE)а H$E)!((`$ E)!Xp@ IE)! %A XE)e)E) I$I$e)E) * $I$e)E)&$r"E) 6-L dž1  e)! /DB2$Ce)E)RcK e)E)-%$ rE)( He)E) e)$!A E)!Š0E) I$I$e)E){'6if1"A$@ e)E)I$I$e)E) )ۺM1J*miE)! nɖ e)! I$I$e)E):+ e)! I$I$e)E) e)E)ZRI$I$e)E)0E)!@IdI$E)!% I$e)E) "H1$!jʪ1 e)J&W$Ie)4( 1E)%*Ie)PbB9#11!|A$!0E)!ioae)! $IPe) #1$He)`TH6ie) $He)E)@ e)E) 1$! :e)`!01$!+)$), 1 @*$f1 ` IIf1I$I$1E)F1!@  1E)1E)-`$e)  E) '@$A 1E)Z{{1E)I$I$f1e)ꪫ 1E)X P!?7 IرYbH*+)w7eX+ 3 0r =$ %DZEp;@E`o`??ye 76ǧEq5! 攒 =\ aǹX(4(=$IFǹa842H%5+jhDZ9@%DZH 9+9Fǹ7-,Ҵǹǩ:?!ǹ0@BAYڦ$1 I$I$! I!&.I$I$E)I$I$!((H!<8I$I$!I$I$d!d !@I$I$! BI$I$!!I$I$! $!A`!I$I$E)I$I$E)  !@! I$I$E)H$ $!I$I8o)m۰ P ɝwEPյ-/0 1N@%q- < tR(DZX C۠9ǹ@cȟI$I$e)E),8  H$e)$! ((HE)!<H$@ e)$!e)E)LLB&E)!(8N,G RE)(I$I$e)E)㍏$I$H2e)E) 'Ie)E)  I$e)E) (8I$I$e)E)h%X24e)!p`IdIe)!'7I$H$e)E)Xt`E)a e)E) e)E)rjje)E)ɍI$I$e)E)L$H$E)!VTTX@E)! Ie)E) Ie)E) (8I$I$@!ۀ 41$!*z@$@!C2$Ie)! IE)!ItIte)!/==N$Ie) 6"D2!e) 4 e)E) I e)E) e)E) @$Ae)E) @,,e)!$!!`dCb;1  jIIf1 #!@@@f1`$HTIf1I$I$1E)ꪪdH$I1E)I$I$f1e)ꪮ I1E)b,E)IIE)! 1E)ﯯ-LIf1  I$I$E1)k-6K$Pf)U5 $IR$$1X0*jw f8+ ;1n%Ձǹf+>$jǹeXHqE H$I$f9e)")e1e@qWxE+)1p NE )-:" IDZa@;@H$tǹa70mˍǹǩ6'@ǹW:$'DZP 5(DZ;۰rǹ*H@)1G"$AkcsP،m8!TTVWI$I$E)I$I$E)I$I$d!d $@!P $!!I$I$E)I$I$d!d H$ !(I$I$ aI$I$I$I$!jA !`! I$I$$!***I!'I$I$! ((I$I$E) $!I$I$ `IlVPb'ɟ%yH?.yys a+ 8 `DZ@  @ )Ey*J-Xɓ'H$I$)!TUUUI$I$d!d I$I$d!d I$I$d!d  !H$I$ j  !   ! I$I$!(((I$I$d!d I$I$!I$I$d!d H$!>H$I$!! ! "I$I$$!!?I$I$d!d I$I$$!! !!@! @$!@`pI$I!]ݗ7I$I$d!d I$I$E)I$I$$!!)߿I$I$$!!jZZI$I$d!d $!I$I!Օ5 !I$I$e)!$!A&I$I$$!!  I$! I$I!UՕ5I$I$d!d @!`! !@!@$H$!wI!7  !@!I$I$e)I$I$$!! H$!I$I!U'!I$I$$!!I$I$e)I$I$$!!0($I%) &&I$I$$!I  E)!H$IE)!1 %)b@%) @$!I$!I E)!ݿ}6vk%Y$ {.M1$  %2!DZ+ /K-iV\ 5`x$I 1$ I$I$$!!I$I$$!! I$I$e)I$I$e)I$I$e) (E!7$H$$)!I$I$ aI$I$!**I$Ie)AIE)*DE)2"O71oƆ1`dB$E)1mIMf1!}]c]kne)!> /'9me1!_ }K,eI ` EASu ;E9u~|$ $$!p 6OwfQ/'/ mIyeY X5ki!hhh`Iq%)/ɓ$Ia7Mm OI@I@^I"mUI MUI$mUO$tHzcI?I= U O$EAU }ІI$!~4Ef1!|.n-E)f1!窾$cREE) K" I;541!u|K:Byf1 ~[Ǎ)f1.]kE) Q=$A!I! i&-Ҡ%)[ΎMM$%)֤.I$$A-_LB2 HE+I$I$AE0@0E)PE)!I$I$E)$! I$I$E)!"tD $EE9>@$IPe)%߿y%yH/3wwebi5/4TN?PH$I$9!TUUU e)! /=I$I$1 I$I$1 H$ E)!D2 e)$! *[3l۶mE)a`AH$@E)!3 !I$E)$! *$B PE)E)! @E) I$H$E)!UWV\$ E) mve) @ me)*(ٖlE)  6CmE)`I$d&E)!B $H%) @&)E)e)E)-I$I$)(۰&XlE)аX5۲E)!P`@ IE)!%5@$ )(e)E) I$I$1 lkve)E)5E)! E)!!E)! @$@ E)!E) e)E)Oo? Ie)$! **@$I$E)!@$A$E)!0e)$!"I$I$e)E)?<H$I$1"I$I$e)E)I$I$e)E)ò-aE)!I$I$$!!J@E)!1  e)E) %I$I$e)E)* He)E)%I$I$e)E)`& 2E)!PP`@ E)! %I$I$e)E) H$I$e)E)8I$I$1E)He)`A  f1E)I$I$1"L$H&E)!x$dB&%) Xe)%)II$e)E)  Ie)E)64I$H$1"IH$e)E)&6<e)!,B He)E)@@@$! phe[f1*H$I$1E)I$I$1E)꾮 1E)I$I$9I$I$1e)&%#Ie)``km1E)؂ lf1$!hI$I$!$@!f1E)mm&P!_-@$I$Pf)% viHU/ |. b( 3n&4*> `4@#ɟE`$IfAEfm,5f1 @IIe)  1E)qIXe! + Si ---5(@eSDZ7@(HHDZX*<) YݲǹU8%qqǹ_:%Nyǹ*7( ~ǹ7 n `6?ǹ^?k&p$ȹA! *I$I$E)I$I$d!d I$I$d!d I$I$$!!I$I$d!d I$I$E)I$I$d!d @$@$! I$H$! I$I$ .*-I$I `! !@ !   ! I$I$E)I$I$E)@$@$! I H7I`H=/)S7e X-/ >q׺XS蹆/:.Aǹj9.CC#&J<`Xw-۶$9I$I$d!d H!a.I$I$E)I$I$d!d  @$!`pxII!uݕH!(I$I$E)I$I$! I$I$d!d I$I$!( !H  $! I$I!}I$I$E)I$I$d!d I$I$e)I$I$e)I$I$$!!ޖ6I$I$d!d H$H$!w !%- I$I$E)I$I$! I$I$$!!/I$I$d!d I$I$d!d @$H$!!ظI !% )I$I$d!d I$I$d!d I$I$$!!*I! & !H$I$!^wWI $! `!"#I$I$e)I$I$e)I$I$d!d H$@$$! I$I!/@$! P$!@( $! I$I$$!!@p !@H$I$!   ! BI$! I$I$$! I$I$$! I E)!߿H$I$E)!\^WUI$IE)!U5[M$!$@L%) @@E)$!$C$C&E)!.z$!IH$!.LB2$@E)j ٖnڶ$!%)$!~p?%q$_!jE 2 ?yq_%2On(iiU!OB'E X`m6Y%1b`s%)I$I$e)I$I$$!!$$!a p@$I$)A~_I$I$A I$  AIIv%)Ib!E)A**(6k۶E)kIlE) &cۡE) {))"mE)!@+]1!ݲN81! m.A0eA `bIOj¢W%I$4`W IM mMAzI$K%kҁM'c8E)Aj yX_eI%5?= ` vjyfY :qE9xxx`IZid$9=99?L \d.*ڀqszۧkڞގ[q)7b*Ҩt]={"k˪{b p_ߖsH׋6޹hƐj#u>#I@hI>IhI$tlX_?y$yT l?OI$!~i5E)! .8vf1!vj mf1::v01 o>i:2iHE) (mХ]vE):mfmѶ%) +mnZE) sH !ʫ3Øe9 { $I -m۴X ,IE`I$I$E)$) %)@).ݺm9Ai*ݖmö Hɟ߿y%yH/2/UX+ 7%x<$ BP $ٖE9EI$`0E)!]V|I$I$%)!U@!E)! I$I$e)E)I$I$)([`E)!ؠHB&!0E)!(I$I$E)!(H$A E)!  E)$!  )(@$e)$!  E)@ii۶E)!*)$A$E)!*(e)E)I$I$1 IH$e)$! (`2 e)!訠I$I$$!!0H$e)! +IIE)!***(I$I$)(@$ E)!)(I$H$E)!VTX@!E)! H$e)$! ((I$I$e)E)** e)E)xzje)E)hI۴E)bk&E)! `RDe)!*7 M E) &(I$I$)(H$@$E)!( H$@ e)E)\Z}I$I$E)!,@ @E)! $ e)E)zZske)E)# I$I$e)E)I$I$e)E) I$I$e)E).>*I$H$E)!v! E)! %E)! HH$e)$!(((I$I$e)E)H$@$e)E)[[I$I$)(0E)!@m&mҤe) z$I!Ae)$!I I$e)E)e)%) e)%) e)E) I$I$e)E)`$$E)!xp@$!E)! I$I$e)E)I$I$e)E)<H$@$1"I$I$e)E)H$I$e)E) e)E) Mr 'E)!II$E)!51E)I$I$f1E)LȄL1E)I$I$f1e)$@!I$I$9 1$!Vlae) I$H$$) (!mۂPe!_ Mm !P$Iwe %yHս/ 2}w._`44f䧹E ZHE H$M&f9E)_$I!Af1E)ꪪ,iLe) 0f1! I$I$1E) X'??&S9wX ---7%qǹ 7&`'+ǹ_7&{`ǹ 9Iǹ H:$@!DADZ8 73`'mǹ*A.z7߿1Hfz$a$ I$I$$)!l$$!b `[H$I$(A~_WI$I$Af *I$I$ a?* iIe)?.H,ŴE)iĤME)*[O1!VUr*;e)|vچ1! LA$!6/"'fI.B\I$_%I &I F+) ‰l[jjڨ(*g\W5 Jںc*hdA{jC*S2$35Pp`` <%Aq_Ide9/*; 'yeQ PyeIxxxxa3E).kJ HPAfijڮfjJg~IJڿe$ߑaJjjD:kڻ~un#)}겗ieQDsjvw;mtsKtdxkpa[ۦq` I&¸mxII$I$1"#9(Ie) `e) E)!&I$I$E)!^II$E)!=4E)`E)e)E) I$I$e)E)ꪪ(@J$f1xT$IEE)C:$#2e)!@I$I$d!d )ɐe)  )R#f1 `Vl&h1TKBf1  @!0t[e1E!z);AP!_I$IX@+w%PU+/}.A`+ 50h䧱E XH'ҢE)!@ j6me)A$Ie)E)Á Ie)E) e)E)  I$I$@! 9PIe)A`$e)E) 0e1E p$1++))0p E -5-#0IDZǩ`:/ilǹ**8 @$IDZa44I$I$%:$ (!DZa@A"1=ǹA@Bsik1I$I$d!d I$I$! !&I$I$d!d I$I$$!!?HI!6$ !&  !@I$@$! I$I$ UՕI$I$!I$I$E)I$I$E)I$I$E)I$I$d!d I$I$!((@!(8`MbݶmP }vg$qa * /yws i- 4*` < &  !ǹEq @Ch$I'u})!TUUUI$I$$!!wI$I$d!d I$I$$!!?I$I$d!d I$I$d!d  @$!@`pI$I!ߟ?I$I$E) @$!b@! I$I$d!d I$I$E)I!$,$@$!@`rPII!?I$I$E)I$I$d!d I$I$e)I$I$e)I$I$$!!?o! H$I$!wU ! I$I$E)I$I$! H! (I$I$! I$I$E)H$I$!\VWUI!&&I$I$d!d I$I$d!d I$I$$! *I$I$$!((($@$!`pI$I$! **!I!&I$I$$!!**I$I$$!! d!d H$I$! ! I$I$$!!I$I$$!!  $!!*j* I$! . H$I$! xI !. I$I$d!d I$I$e)I$I$$!!pI E)!߿H$I$E)!^VWuIIE)!Օ@$I$E)!I$I$E)!I$I$E)!  @$E)!~@$H$! Р!   A$E)!I$I$e)mR4ֶ%)P$!! $@$!I!a* I$I$d!d I$I$$!! *'%q_)I1  *;fq-֫_?%)~h"'N$EAx\I$I$A I$IE) ĶiE) ɐ! E)m:&aE) ] #9~hv1! q"eA /BI'I _7 wBI%sƓ6kryͿsvN#kۨIjcjښ:ʈh)o˕J/qk^Lںm;,b.WuNr?o?s^}ҕbT ,YJҢʕ(ɋ`@@3__nmuʹj*漣dC3%FJznf$JںfƒeJC?O% pI'Ƀ'JXI$!|~^xz1!MivC[f1 C$-E)@(Fd5E)(`6MلE) m4-E)~JDH& Ȑ%)IEQ -wWf%A/+/7 9ǩAb)H $@$E)!I$I$$!! $!@!$H$!  @$$!`I$I!?/!A2dB$!!`H$I$%)!I$I$e)I$I$$!!  @$$! pI$ !bj( !I$I$$!!*J!I$I$$!! ɓY&wV$fq!} '$Ix}`$$$$)Ii$!:+(KumѶE)/ I$C0E)!s+h e) ν /馇1+e1!z?;I)O$%cAϼ JᶏxvY _7j&Jڀ peeh|ݻja-=㌌Jꤘt#{-i}Zj҇Ȟm aOK 6i\9,ؐjҢx&ڴ_ot>?]sP)*kvcږJҨsdںp[H!J#9jJ4nZ#&jکh袾eJ踊03A4a%A@X"p ݷIbڭXf1!M۶MfE)!48Klkf1!,0be1Lk6Zt%)ꂠ@B2$I!` a$ $%) &oY+BĜcqЖ`h۶mE1$!k ۶mE)!:bɖl%) E)!/ E)@E) IE)! (I$`&E)!Xp$A$I2E)*ICE) Hu۶mE) A$A$E)! I$E)! ** I E)!<$B$Ae)!K.> lۆE) I$I$E)$!( I$E)!*"I$I$E)!/.$I $E)\ E)a 'X]ۭE)$! #)$DRE)@ِm؆mE) 2 E)!hI$I$$!!!@E)!ò! E)@ٖm؆mE)I$I$E)!E)@IME) *(͖l6`E) IP$DJE)& I$I$)(IH$E)!(  E) $I$ 2E)lV`ݖE)A$A E)!rȄ$EE)( E)& E)! @$ E)! AE)!> E)! dB@RE)PI$I$e)E)jHH$)(@ )(@%@;E) PIIE)!75$ b('E) H$H$e)E)W_TWe)E)}ɄJHE),@CE)!H$H$1IH$E)!)(I$I$1 e)E) f1E)kI$I$e)E)(/he)!@00E)!xI$I$$!!ӹqmnE)E)HlE)(I$I$e)E)@$@$)(I$I$e)E)I$I e)E) I$L$E)!v~|$A&dB$!`DL$Gf1" 0 e)$!жk$P!_ X4EP! *$ F(qb B3. ` 30$p*xE؉e9e)$A$e)E)/??ɐ Ɇ1 XII$E)!UA14e)IJnWf1A " e) I$H$e)E)(H$@ e)E)P,&B(e) @e)!@6e)6dXf!'7'(S1Wa----5*jW 55/&C DZǩ 7 HtMDZ%i8,Xnc ǹǩr;M40DZ%i`Cz$H$b!bI!'I$I$d!d I$I$E)H!($!I$I$d!d I$I$d!d @H!I$I$!^^VVI$I$!j  !** I$I$d!d  @$! ``!I$I$!I$IH$ ?Ym`0ު*o EHݭ%1p{ i r : HDZEy C:1R'ǹ@PA%H1AH !** I$I$d!d H!b$I$I$$!!I$I$d!d I$I$d!d ! H$I$!}!&a! RI$I$E)I$I$! (I$I$d!d I$I$$! ( ,H!!  !I$I$ C !"I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$d!d @$H$!I !7' I$I$E)! !C$!(( H! 4.H$H$!XX^V  ! BH !8$@!`H! I$I$$!!\ !`I$I$!wU!I$I$$!** I$I$$!! I$I$d!d I$I$$!!yZH$I$! !H!  I$I$$!!*+@$!PI$I$!(("I$I$! I!-$H!I$I$$!!,!I$I$$!!% H$I$%)!WUI  E)!H$I$$!(I$I$e)I$IE)$! C2%)zH$I$$! !A%)+*@$H$E)$!I$I$e)I$I$$!!@pX $!I$I! ** I$I$$!*@$! $!b@$! I$I$$!!$$!A@H$I$(AྷII$%)-K`IE)ևd$C%):vr1!u[N2E1kZ4ktE)!:&  e9$!ֿI'Ok]% aI m%8jXZԅiJҪm\{qj꣙i-*o"ikϬc_2Fh* hsQXXxz; p _=Q -b j%Z=˵kJ\$BAJ X[u*ʂ**aUHڞ JҒ*m>kbXdVjҠ2hnAfk>k;lqEk*"qq f]4MJ""H[-5i**t>]{7q&[nFbkھ哎fKC&Jvd0^Xj,M>Mp]O'Ƀjt:11!/87'1!Jmf1!dH%)!ڮk&,NE) @M.k%)iҤH$E)z 6JIfQ 5 -Ea$bI$I$%)$!ꪨI$I$E)!I$I$1I$I$E)!*.I$I$1I$I$1C$HE)!` $C$ %)ʮ. m׶E)  (H$@ 1I$I$1I$I$E)$!I0$BE)! k6aE)!V`E)`I$E)!E)  H$A E)!`$ E)ؠIdIE)6* IE)! *HI$1@ $E)!A E)! H$H$E)!WV\Z! E)! )I$H$E)!(A$I$1 E)@ݖnنmE)` E)!T\XX$!E)! II$E)! *((I$I$)( $E)`ImE)!'kXE)hImvE) *$H$2E)!m]nE) I$ 2E)!E) @E)PA$ $!!$A!E)!"HH$E)!(( I$I$e)E)j@$@$)( )(C $BE)!`! @ lVlE)E)! E)! 6%E)P E)! A$A 1`$ %) `pdGNde) :E) XE) 0I$I$e)E)I$I$e)E)>.I$I$e)E) E)!$@!  E)!/5)(@ @ )(e)E)  e)$!@H )(I$I1E)յp$-E) (I$I$$!!lsAΔeA&($IGPe!5 8 I{iHU/!wWfP+ 4n]&5$ `7&O'X}$HmE9e  Ie)E) ,4)&P,Ae)! PHȄ A21E)Nx lf1 &&I$I$$!"ʈ 1!KkvE)! (( e)a I$I$e)E)sа@ $1"@e)!"%B"@e) @P1d e)   0Pe?? 7qS7b8 ++5 0Iܧ%q>Ib7ǹf*@o7 )i$@ǹ%y8 yIǹ :S ڤ Ez***̓<ɓ$v ! I$I$E)I$I$d!d I$I$d!d  !a@ !I!$6I$I$d!d I $!I$I$!VWWUI I$! ! @$@! @!((*I!&I$IH  $AH$ 'ye0߿+2ND %y- 9t  IDZi>m#8hp;a$II$ $!! I$I$$!!-!A ! H!$$I$I$d!d $I$!!(I$I$ {{I$I$! I$I$E)!  !I!&, I$I$E) @$!`rI$I!Ab*!I$I$$!!k@$! I$I$$!!8**I$!  !I$I$ }! I$I$! !@! !a@ ! I$I$!WWU!I$I$d!d I$I$$!!+I$I$e)I$I$d!d @$@$!pI !7%@$@!P I$I$$! @$@$!  !H$H$!(I$I!?$@$! pI$I$!I$I$$!!I$I$$!$@$!`PI$I$!Uݕ@$!AX$!!I$I$$!! @!(!A I$IE)!U׵A$H$E)!{zH$$!44I$I$e)$H 0$!@@$H$!I $!/ $ȐI%)(6(I$I$E)$! $! H$!H$I$!\VW !A I$I$e)I$I$$!! I$I$$! $!P$!A`H$I$ A~_I$I$A.I$d! I2H%) ]S]tE)!]>m,[F1!Շv1dž1:; ߦa#eA*Jɓ䉗B% M6AFy j782$Wjڍh*m!|ڦj(t@kڵebjڊl*vX {hzOP65>.+oބ ]i_ޡJۋ*m=l GgWkPXZkҠ7‹[4b#2JҪ^0[?̎J_ϊ_eT{j?P̳<̃X2ܴMprO?΃JX w˶ۧI@f1!&j/3f1n&$b7f1 _Jui'6!E)( k%ZE)o $I!`"tEQ - &EQ I$I$1I$I$1I$I$1I$I$E)$!*I$I$1II$E)$!**@$@ E)!\XpI$I$$!!InE)I$I$1I$I$1II$E)!**E)!ά* ۶mE) I$I$E)! I$I$1 $IE)!**E)!kIL$E) *E)!*H$@$E)!A$I 1II$E)! **dB2 2E)!XxhII$%)!UA$ E)! E)! I$I$E)$!*HE)8 @ E)!hh E)! %I$I$E)$!  E)#A"IE)` E)! C;kE)aI$I$$!!U؂m6lE) @i&XmE)) H$I$E)$! !E) I$I$E)$! "  %)$$@E)!.I$A$E)!e)$!JE)  )( H)($C$&%)Axa-bE) I۰mE) IE)! ([؀mE)P IE) ((  $ $1@  E)!x`iIte)!)-DI$JE)-%H@$e)E)9\I$I$e)E)$E)a`e)%) )(I$H$$!!T IE)!-55)( )( e)$! )(!0 E)! 2, E)@-e)bI P%  m۶`(&I۷E@+7}-8*&3@X䧱E P)xǙXB$G1ap(I2L$1E)II$e)E)(88  $H$e)E)R"%-E)`pєLf1$!L$H$E)!VVTTِٖe)!)! M$H$1E)WWVWX4e)PA۶m۶f1E)y[ I$e)E)I I$e)E)I $e)E)́ ۴ [%e) P LȄE9e;:z}vdE8+/6ol DZi 5O. DZiU4-M%DZǩ7?4+Xɒ:DZǩC(|=@*qE*Jʪ9I$NɧVĉe9bI$I$)!UUWI$I$d!d I$I$! I$I$$!!/I$I$!( H!, $! $I$!jjI$I$UݝI$I$!E)!I$I$E)I$I$!I!IH$' ɝw%yHյ//wO @+ 4)0 @& 8-DZ@Ah$I$u]H$I$!bk $I$!I$I$!I$I$$!!)m $$! `I$I$$! I$I$$!!o}I$I$$!!__Wx@$@$!`pII!>* HH!(I$I$!I!& !@ !  !@@$I$!!)I !7'I$I$E)H!(I$I$$!!I$I$$!!kzZI$I$$! $!@bpI$I!I$I$E)I$I$E)!@!I$I$E) @$!I $ :.J!@I! @$!PI$I$$!!{xSX ! H$I$!W} ! "I$I$! (( I$I$e) !@!A @$H$! !/H!H$!,4I$I$$!! *I$I$E)H$I$!!ذI  !b* J@!I$I$$!!((**$!&I$I$$!!%) ! $@IE)![I$I$$!!. I$I$E)!$I&I$!p CdB&E)hI$I!(*!A$@ E) j I2$IE)j# $!  (I$I$%)!ZWWU@$H$$!rZ^WI !5% I$I$d!d I$I$e)I$I$e)@$!A @ !P@$I$)A|^_I$I!A/ & $!- 'd1 iM,E)nsF뱆1뭢af1!=> m"fA*Jydt@_ \Y+%jʱ먭pvLM kqrkϣq^S_ʣ{q h |>p ror'C vkəp54ސpY~!\ҟͷffJvjқrYsڋңf#j^݆^sJ⮃M:n` ‚ W7h7Jʏo~[zK$H$jҢth&m6E)_ 9WfY---%V@Iyi9ah`I9JJ.+uhijʀMZ]**zQ>0SY*,]mq-j>jd'TJʼ<.[ڰdJ OZ-ꂗJʯϰa \ڤ0ÉJlpuHנMkڞ[tlb5:*ދz#I`Iۖl)aE)A  1I$I$e)E) HE)!((H$I$1hX%E)!`)iE)a I$I$E)! H$H$E)!(((؊-lE)@ِm۶mE) H$I$1E)$!耨 E)!۶m e)$! 4lE)!pe)E))()(-E)@ ! %)AI$I$$!!7'(H$I$E)!I1 e)$! *I$I$e)E)>$EJE) '!@ @PE!]%@$IPe)5 ( IhHW+6W fH+6wR&8A `5"&I'@XmݶmeAEA$IE)A$II$e)E)<H$I$1"I$I$e)E)@$I$e)E)@  e)E)PpraNx1L$H$E)!T\X^.E)!) MX]e) e)E)+qI$I$e)E)ˊ$@$e)E) I$I$e)E) +(e)E) 5DH$I1E)ۿH$H&e1E!ln Wp9?))0t NE- -5,4SDZ ]; I)DZ@ 8 ?@dHDZ%q?&M6:3:dǹfzzCbe@z I p I$ mX$ ݠI$I0P$ ]I$I$)$ tI$I$)!UUW I$I$d!d  !H$H$!zzZZI$I$!H$I!*!I! @$H!A(I H%.c76`0jj**&SRH-K5 @DZf 90m6Qǹ:.CC#&J<`Xvp$I$$9|~_I$I$!b*AH! I$I$d!d $@!I$I$$! I$I$$!!hjzzI$I$d!d !&H$I$! !/  !  !  !@!H! !( I$I$ n ! I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$E)@$H$!I !7'' H!I$I$!*I$I$d!d  ! ! H$H$! I ! j!I$I$$!  ! I$I$$!! @$!`pI$I!ߟI!8I$I$$! !I$I$d!d $!I$I$ ! ! @$@!a I$I$$!!hzZ $!I$I!u՟! ! I$I$$!! I$I$$!!XוI$I$$!!⢠I$I$$!!8&@$!АI$I$$!! I$I$E)!!H E)!Ez@$!IB&$!``Y5h%)!b$!@! $!bRI$I!U%I$I$!  !@!aI$I$e)@$@$! 0 $H$)!xvI$I$A*I I$ aCE)+"t6E). 1!w[dž1# 7/eA$+OId 7m]Hjڒ.+v}[_m0 k?ct~yoWl6dWkڡacKbFJnm߽ .kd)4Jҩʚtg]jjL=klpe[`UYLJ;뮓cw.,ܓknO`4K=:jz}Z+k(RJʼ`(xRu3R*° n*qWѿJ:Cwz&j'kaab(CE)B 9NTfQ%''% dI!yfa I5Psi!hh`cIɕG%A??=?lj!Bj oNTג)C|UZh]J߀RV-lJ¿>{PqXl*(Y~[BJaT,FxJʮq5M붕*®݆Y{%Jʣ+tKC*ے z`kJ쬺f2Mckl凛e=j(`$6KJҩ^6%o"JҋKag*̱֠JқȢoM_ TwknlQ-kߟ7n_Ck.yqLӳk|v}Ns6?kʮSۤm`y;9uE) v<i6m6E)M5m%)h~+Lɏ$Ab& ?sEY`Bۆml%)I$I$1I$I$1I$I$1E)A@!E)[:,E)b@!  $!E)! %I$I$E)$!I$I$1$A$CE)!***  E) $i6E)!/.I$I$E)!*++. $IE)(۶mۆ&E)!E)!jk I$E)/II$E)!*>۶mHdE)LE)(( IE)! *H$@$E)!V^Zz E)!-H$H$E)! E)! !E)a 0%)`@A$@$E)E)!  E)@HGILE)"(I$I$E)!H$I$E)$! L$HB&E)!VTXX E)!%55I$I$E)!ŠI$I$E)! I$I$1I$I$E)! *HE)A$A$E)!yI I$E)$!((*II1I$I$)(H@$E)!(($ 1@3C;E)`itmE)+>?KdH-E)(@ömŖmE) @ $1I$I$E)!A$I$E)$!  E)!j E)!Kd E)4$ 1e)$!I$I$)( )(@ )(-:RB9E) `!b!E)!"II$1II$E)!((((I$I$E)e!P 2 P  !I$E X0*߿EH 3/ 0+4@P䧹% `*h%Ireǹ"**<H$<t4&O䧱 _0IA$W-m-2bl-haWId ifXU_O mE@_ Im h WI$k mX$ WmҶMaH vI$I$0TII$ * I !** I$I$E)I$I$! mI $Aj7mvX8**"ɝP+3`N0 e-5.IǹC:1R'ǹA@P$rb'1I$A$!ZII!(**I !** I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$!I$I$!! "$@$!`Р!I$I$d!d I$I$! (((! $!`I$I$ {{!!I$I$d!d I$I$$!!**!b,I$I$E)H$I$!} ! I$I$!I$I$!@$! I$I$$!  !" I$I$"! I$I$d!d I$I$e)I$I$e)I$I$E)@$H$!I !7' I$I$!I$I$d!d H!I$I$d!d @$@$!సI !?..I$I$d!d @$! 0I$I$$!!I$I$d!d @$H$!I !?/ I$I$$!*  ! I$I$$!!@bzI$I$$!!%I$I$$!!  E)!I$I$$!!:I$I$$! I E)$! C2dB&$!I$@! $ALȐ$!$,I$I$$!!I$I$$!!h ! H$I$!\VWU !(I$I$d!d I$I$$!!J*I$I$$!!H!, @$!A`I$I$baI$I$ A頋N1E)ϏqW'IVf1햭HaE)!A4%E) &d?QA!U>IOc_' co)7 j᤭xw_?۹sM4Zkv>R>{mfԚ҂~juLCVvm8/ItkڍnV$YS*ҪcjlKGkҮlkx &ڋT _f}gjZ>¶i Jʧοۆ\#ÙJʪkrY$JʚVƜ,J¬}Q[=)ªzpKX<ú)xnxX"%R"$ʁPvbE1{~ II/:7> h'JyfY -9ZqE9zxxhNfA| h҂ ~T;JyY-vJj,PٰJªR0kIJf~UHJٮxUD׵\J¢ZHA)ti)±T? J~dkʿzR(pA*£6v]#85J ʈbYEW#JʢNFa@F j$"^[1 Jjg݋uٸ kf-+jjҪmj)k CdS؍cGJҒ("k̘ʪklϔJkq9=Ik-p:Cۦm!`I>I$I$d!d !I$I$$!!I$I$e)I$I$d!d   !bI$I$ !6I$I$!I$I$! I$I$d!d @$!0I$I$d!d  @$!hjrII!5%I$I$! !bI$I$$!! @ !` !I$I$ $!I$I$E)$@$!PI$I$$!!zX[\I$I$$!!Q[H$I$! ! "I$I$$!!Ԗ !! !I$I$+ !I$I$$!  I$I$$!!- !I$I$$!!rI$I$$!!$aB&H$E)!z~I$I$%)!I$I$e)A$@$E)!~H$I$! $aB! R@$H$E)!I$I$$!!I$I$$!$H$!JrX\I !5%I$I$$!** !bI$I$e)I$I$e) ! H$I$(Ax|I$I$!;+I$ !ʼn$%)!ukEmvE)!]iԆ1!YCM>A$!=ɓO } 4I0I%qa\+*Ҫ|q]n_p]n5j[{M7vI%ڸwM^;58 JrY(׮Jʨnf{{kvbm9jʪg(/ڋVEME`ɵjʳo;ܢnjWͤc؎JʧtMEiі*«=O,RIJN }N[)*ȊC59A````˯'EAVT\vde9== /JyeQ+ XqeAx``h C0 0$! ɘPOA''xT߸J¿[kaj[!\j>dY}҂ҋ‘>^c䭭ҋ©ڨTHpQjc`ʺ̲ҋozLd(IJ«*{L[U*:3!͇[n4 Jkw(I_}۵0j~aR*ˆ`jʼ=ކ`]g^]Jʢ;ɗa0sjf w۰9!}AB`E) vlME) +mS4Eڶ%)⳪@ I$)pK ᩐEYB /s'ԆAa{E)!I$I$%)$!I$I$1I$I$E)$!I$I$E)!*LE)I$I$! DB @E)!`@E) @E) I$I$E)! .>$H$E)!ﶾE)!E)! * E)  E)![24ݒ"E)b E)//I$I$E)!.* E)!* %) ۰۶%%)pI$HB&%)@E)#+E)!۶mۆfE) E)!E)!1@%)AI$I$E)! I$I$1[۰ E)@!IE) !@E)!"hm۶mE)  I$I$1I$I$E)!ꪪI$I$E)$!HH$E)! E)!I$I$E)$!LBL%E) `݆mےE)@VlaE)   $IE)$! ((L$H$!ɖnaE) @E) @$`E) I$I$E)!( E)!.*I$I$E)$!**ۖlɶaE)I$I$1HI$1II$E)! ((E)!@ ؆mE)@Ie)E)_U$B2$I2E)!$$! E)! -%I$I$Pe-I$IP$9*ɟ߿%H+5nY ` 4a䧱 p/py$$Xh$I$EAE)\UUU E)!*I,E)$H!HE)!Eť0E)JB"1E)@$)E)ADIKE)$I$)E)@E)I$I$e)E)*IHe)E)ۂ-ke)!$$AE)!20E)@ E) )( E)$! H$If1E)@$e)E)zZI$I$e)E)k:ۺe)!DIB‚P''$r7wHo-6 DiDZFy!4 I%qU@,.;Xkّ$1!I$I$d!d I$I$d!d @!@!A$I$) *C m۶8EpI'ɟ$f_8?O䇱 _88@$%W61mA-9$)hǹEU/# hiW$Obd XUI?n;EPU_ߵ9 %yP1ywsPa+ 7hǹf W&`mJ†-Zx$Ñңzɏ&EyX H I$I !  !!I$I$$!! I$I$d!d I$I$e)I$I$$!!I$I$d!d $H$! pII$!! *>  !!I$I$$!  !I$I$! I$I$E)@$H! !/' I$I$d!d  !@@ !  I$I$e)I$I$d!d @$I$! 'II!??/I$I$E)I$I$!( I$I$d!d I$I$!  !@ @$I$!  ! !&H ! I$!6I$I$$!!TWU $!@`pI$I!ں**!! I$I$! I$I$$!! I$I$$!!ԗ  !I$I!I$I$$!!6I$I$d!d I$I$$!!*H$!$0I$!!I$I!=- !@! !I$I$$!!55%II $!!,I E)!@ $!`$!bI$ $!  C2dB&$!I$H!<& &E)!I$I$$!! $$!h !I$I$!VWU !(!@ H$! *(I$I$e)I$I$e)$H$!Ap|I$I$AW;II4E)?! I%)ֶ.E)!g$E) &me)!vIw1ڋʧh_R.ҋ*J̏bO6ڋj]`;+ҋ }Y 2:?Njxl(Wߋ*z{WOJ¯\zvJ8e:}j+]sJʊ{YS5L!Jʺ*jk-q]?ڋ/iTrΛ ҷ?hMk҉(a%[ JҪrOmCpɛj 8kچ? E)I$I$E)!I$I$E)$!**( E) ,&I$I$E)$!*((I$I$E)! ILHE)!8(`%IE) $@lE)p! E)@!E) I$IP$ %I$IH$ ' IqiHUս/ɟwW fPս/ 5wR 0*`5%N?$P P"ERE9$H$HE)! I$I$E)$!(*(I$@$E)! )nE)! IE)!57mvE)!-555E)"I$IE)@0E)a"!( E)@1H1$Je)  I$I$e)E)LL$e)$!((( ɄLRe) $4!AdH$!+::( e)$!  IIe)$!****$R4XE) '@@$E)$! E)@$ e)E)RZb{1  e)$!$@ʤBHE)7f8 2`i 8u&IDZEy^;,2)a@@@i$H$$1H!4I$I$d!d I$I$$!!o:s !I$I$d!d I$I$$!!I$I$d!d I$I$E)-$M$0 UUUMaI1V71$I$a W7I$ =ۆUħ *<m~Hz;KmǹE8 2$IDZ%yJ6HDZa4-V 6DZǩp3)PCxh`(#Hxhp ;~o0`U~I$A @A$@$ I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$$!!I$I$d!d @$H$!ܸI !A I$I$! I$I$E)I$I$d!d I$I$!I$I$E)I$I$d!d H I !! "I$I$d!d I$I$$!!I$I$$!!I$I$d!d I$I$d!d H$H$! !'I$I$E)I$I$! I$I$d!d I$I$d!d I$I$d!d H$I$!VVwU!#I!b&I$I$$!!  !I$I$E)@$H$!hII!?/- I$I$! @$!pI$I$$!!hl@$!@$@$!⠸I !>..I$I$$! ! I$I$e)@$! H$H$!v ! I$I$$!* I$I$e)H!$(I$I$$!!  $I$$!!Ca$A$E)!k{I$I$$!!I$I$$!!  I$E)!@H! (,$! $IE)I$I$%)!I!$@$!crZI !'I$I$$!* I$I$e)I$I$e)I$I$e) !a@H$I$ !~I$I a.Iԉ$E)';$E) [E) ]mM< jƏ`f=mjʉs g%ڋʏozv3+ګҖehu;u^ڋnZʒ4 ӊ$S~?n-JvGH-ĸ ¦jA*Lr ^v>J_W]jcۿ^ KoJʨ^v[+o6Jʯkdlѷv7j:pp[jgbڴYef-ĚnujҏٝfZUjҪɧrFkftInhLJڮ\|Pk:JO'[24P` ކI޸Bu^7f1!mc;f1!|jo0-E)̀a@ I2E)kdM4%)x>fa-5 ̃'EiA$!%)Jnm׶$!I$I$1I$I$E)!*H$@$E)!XZx`!E)!* E)btͶaE)&@ E) K!@$A$E)!E)!I$I$1`0@%) pHB&dB&E)I!E) ꫩE)$!I$I$E)$!*E)!(j0IE)II$!?;;  E)!E)!I$I$E)$! HE)!/I$I$E)!@E)(%)@E) E)!ꧮI$I$E)! $E)!\\XZ$ E)// %)@E) 0E)`H&d&$!` E)!AjI$I$E)!ݝ]I$I$E)$!I$I$E)!*.**ö[mE)I$I$E)!(((I$I$E)!`$@0E) E)///?I$I$E)$!I$I$E)!(I$I$E)$!0E)pI$I$E)$!(I$I$E)$!H$@$E)! I I$E)!I$I$1I1@ $E)!I$A$E)eI$I$Pe!}%I$IX1* kP0i@ b6ɟvYDZ` 7-ŁR' `\2xy$\p$I$EAE)\UUU۰m˖dE)&I$I$E)!. I$I$E)!I$I$E)!*$@E)!d@ E)>>(ILȄE)!7 )(I)(v˰1E)ՕuE) H$)(%'b,PE)HB&LB&e)$!$C&DB2e)$! `B2$! E)! ذ ۰-E) (@E)! E) @)PE) dB2$Ce)$!e)E) e)E)·ϧII%9E!{EyP=-%%4q/wNDZf 5,d/DZU<B#<#<DZ`pp`K$K$9!TTVVI$I$!(( I$I$$!!޼@$@!  $! I$I$$!!JwI$I$d!d I$I$$!!?.!(*I$H$!VVvWI$ !  !&&mӶ1!5UUU@m۶1p I'ɟ$ey_:OW<$AI$DZ/W; ISǹEi%:2nIUx:'"ǹ*J3hyiX~?$n]X[R H%yHW~  ` ꨀm&mHޠI$I$@$Wx$$! I$I$$!!I$I$d!d I$I$d!d H$ !  ! I$I$E)I$I$E)$!b`I$I$$!"I$I$E)I$! $&I$I$!mi!I$I$d!d I$I$$!!/! $I$I$$!!I$I$E)I$I$!m !I$I$E)I$I$d!d I$I$d!d I$I$d!d   !@I$I!!--I$I$d!d I$I$d!d I$I$e)I$I$$!I$I$E)H$I$! !  !'@$@! pI$I$$!!xQX\I$I$$!!YH$ $! ! I$I$$!!Z^ԾI$I$$!!:I$I$$!!j@ !I$I$! !@@!  I$I$$!!*.I$I$$!!TVI$I$$!!LL@%)((H$I$E)!I$I$$!! *I$I$$!! !$I! @ !$H$!H$!I$I$$!!h !((H$I$!w_!((I$I$$!!I$I$$!!I$I$e)I$I$$!!:$H$!apX\I$I$A#I2 E)Aىme) Id@E)*n˦m{f1? ǹfA$!_׽yD k' ]`)w *Ҹ|.ݱh(\W Jڨ"pk kGwSnwx9/W+ ΰvF-Sg?[?-kBW_gBJkc:\= JxP4܋ef)ΎyWE7~e:ʋJ"0yV3¦?J®tJa I;[~-j¾;b# Vҋ{U,;lY! JꪺC\eRr1 j[>}\ErkjSہ]mj/{5B9 J* E9A!IRA$E)p1qE) +--`( iqEI z,jfI+yy<߀U;s,äJ&nօQfJ?+[]s Jy;evo ۋ],U!ZnM Jɪ*\-)j,g۹RKڋھZcIAuCjªnl ۋh&Éҋʢz\]ݔ۱ ۋd/YҊ밾V]1J'j|PZm[;*š.S{ѭ=3/J6gfV䖳WJʪ6Nқ)4gc]k~9nn{^rӖqJ jkӲ]ik~?qeca-k{kfm"Jf^'Jڻb0M%yH "I$΃R f1!K&[-Gؔf1 (Cʦ`RE)!-#ôME)ÉDB2C2!xN8e9w `N! @! I$I$$!!I$I$d!d I$I$E)aI$I$  ! !!  ! I$I$d!d I$I$! ()I$9!UUI((m;1*9y$DZ 7\I$_1߆  6hhE%qt"$E%y3Ei_H%yP_ ORc l%q@WO`b^I$I$@$`I$I$8$X !  A$!myA !b!"I$I$E)@!`I$I$$!+(I$I$E) $!`I$I!b4!aI$I$d!d I$I$$!!/)I!&I$I$$!!k  !I$I$!{$!!]]_\I$I$E)I$I$$!!I$I$$!I$I$d!d $@$!rpXII$! * *I$I$$!!=! I$I$e)I$I$d!d   !I$I$ {I!I$I$! H!8I$I$$!!Ԗ !I$A$!뫢$!"" I$I$d!d I$I$$!! :j ! $@$!!`II$! *"ٺI$I$!((I$I$d!d I$I$e) %)j/!$H%) ˉ H$! I$I$$!! I$I$$!! I$I$$!!x*@$H$!H! $A$E)!I$I$e)I$I$$!$@$!JbrII$! *"ںI$I$$!* I$I$$!!*** !  I$I$e) ! @I$I$ AXII$%)A?؎E)olE);ɖn6E)+"IBĆ1!ՍXɓYxw3 +E9@jJJJ`7*¼v9}ZH̐Jª˦bqn}kj돝kv ۋ>b-mjʪgl.#-Tڋki:' ۋ~+jxC[[ڋnc(ڋʚ/\(!7=j(Rhy-ۋ}^Yۼj²R1IJ SnXiJ7Z6VJ}z^Uktjʴ{Y_Jy[!']J)骑gr.VkҼo>h8rk"/r-c_d$9u1vjҪ?e^ogm[bJd\GQ)MJڪ"£a\mkPJ*`282a`@ nI77淆1 鋮(e1!KiZMt`E) ve1 m_/8DlE)o:1Wəa- fIb%)@I$I$E)!II$E)!$@%)PE)! 2E)!VV^^II$E)!5I$I$E)$!I$I$1$@$E)!H$@$E)!ZrcIIE)!7tItE) .&  %)E)!ʪ E)!oﯿ IE)'$ E)***&I$I$E)$!I$I$1E)!L$H&E)!E)"+++HHE)!I$I$E)$!@$ E)!Ųm%)@!%) HE) (I$I$E)!I$I$E)$!I$I$E)!** E)!hJ $I$!+[%ŚnE) ` $A`E)*#(I$I$E)$!0E)h !%) H$H$E)!vVE)!H%)0I$I$E)$!I$I$1@E)` E)!AhII$!;;; E)&, E)!E)!I$I$E)!I$I$1I$I$E)$!* E)!ʊI$I$E)$!*I$I$E)EI$I$PE!]%X۲aH$! }oq0 4ɟwi`ս+3I'`\2`$$XC6m6E1!pkkH$I$! (LE) 6.I$I$1I$I$E)!ꪢHB$IE)!E)!ᠪI$I$E)$!*  $I$1@$ E)h!I %)bDTB9E)`$HE)!" I$1I$I$)(@$$)(I$I$)(@$@$E)!@ He) B!!$E)! ݖE)!+)H$@$E)!@)( I$1e)E))( E)! ME)6,۰mX&E) p vQWzh$!+++). E --6,T=>ǹ{_w<X"'H$DZ!@ !A!AI$I$$! I$! I$I$! I$I$e)I$I$!  !*I$I$$!I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)@$@!`IB&H„! ( LȄ1.LB I1VE D$E _ SE -C6)EEyz #$E%q Ea_@%yH_ I?%q8WI$NѣXWA$@@XI$I$)$ I$I$E! I$I$! I$I$$!!oI$I$E)I$I$$!!u@$@$!II$!6&X !I$I$!I$I$e)I$I$d!d I$I$$!!ksYS$@$!`I$I!j I!'%I$I$!(((*@$H!ИI$I$$!(*I$I$d!d @$H$!P\I!A I$I$$!!? !I$I$e)I$I$d!d @$@$!II!??I$I$!I$I$d!d I$I$$!!*msI$I$$!  @$!II!((I$I$$!!Eo !@!bI$I$E)H$H$!I !+/ I!I$I$$!!?I$I$$!!ڞP$! A$A$E)!{E%k$! PI$I$%)!I$I$$!!I$I$$!! I$I$$!!55$!H$I$$!!I$I$%)!I$I$$!H$I$!w $A! I$I$e)I$I$e)H!I$I$$!!@$@$!!xI$I$A/OI$a!=*/n`͚1 m1E)Jal(6e)!C afA?ˢITi7' ikxE kڞx>UxwG1x}17O/~n%ݲJkjJbj҂耜t·swڮ_j[w䟷ҺQڅ[* Jʪ _4Z2U:jʎj"z[CJ^X>RJʇW~uW쨽k:Jʗ`NS jʗYtӧ[ j`K76V-k~m59 ۋʯy=j[&p ۋ ff㶕ҋkc'7҉kʩ[EwNRj¢+{VRI.5J¸*z{QZzJ•?e<ʃ$jAvvdHdȄ! `Wa))//:yfi ah (4%9AJJJJ{`f}Y~ٰlJ¿\~Mǵj>^6'wjʃz)jVy ۋ9h[3jҋʘnkeه~L ۋʻri5YEڋʿ6k ۋodJS]Cڋ6zo'1 ۋʾ^Z [:j2j=l ۫\_E׵Դ ӋN%]34 )ovR[t΋)˜˅V$k4JʔscL-jʺʈ\ʴJ ]#J?krm jҬ.(mԸ کwh7s1fabCLB $) I$I$E)!I$I$e) E)!I$I$E)!$@0E) P$A !*E)!I$I$1 E)! E)!kϯI$I$$!!3imH$d$E)!1E)$!IHE)!LȄH$$!< AIE)I$I$E)$!** E)! E)b `&@$E)  0E)/$$! I$I$1%)$!ꪪE)!ͶmE)!.E)!  E)!I$I$E)$!*E)!:I$I$E)!I$H$!*ɖbMdE) **@$@E)!I$I$E)![5[2,%) p @%)@! E)!  E) `$`%) E)I$I$E)$!I$I$E)$!$C2$AE)!**I$H$!E)!E)!ꪊE)!I$I$E)$!* E)!I$I$E)$! -lnE)!  AA%۶-ۺ PE߷i@/ɟwifXU+-I1:f0/*`* 6I!,% ! H!<($IȄ$)(6(LB$I1VE 4A$E%_$ISE EEyx $@E%q_ꪪ3@%yX~?fHU*yr's%({I$M5HxI$I$@$WI$I$!$I$I$!$@$!P@$H$b8UWI ! I$I$$!!I$I$d!d I$I$e)I$I$$!!:I! @$H$!I$ !!h!I$I$! I$I$d!d I$I$E)I$I$E)H$I$!W I! '&I$I$d!d I$I$e)I$I$$!!bI$I$d!d @$I$! (4(I !/'/ !$!)! I$I$! @$H$! !.  I$I$d!d !b@!I$I$!I$I$ !I$I$$!!y١ !@!  $C2$AE)j**!A A%)+*H$I$$!!(I$I$$!!*I$IE)!$%)`'!$$!I$I$$!! ! & $!bI$I!7I$I$!(( I$I$$!!I$I$e)@$!I$I$$! *((H$I$$! I$I$A?++N(E)Aj* aB1?:e !iE),MDȐf1! ɓ$yҁ$u"7򧡡"nYkڹxoXG@Jڒ/fmP JjodG ں:e#Wj*ʦ\1߲`͚J^KJҿ[\.lJj뻈Ua\ ?J٫h}U"̖JȪ"`gީ;jʫv\ Axj?=_:-ۋ­~'f| jʲpC;ڋ򫲂N.Ktk4 )«ceӀ*Eҋ"̌`$Q jʪQec ۋ~6Zbw[=j?rLM*}L\YX)pJ$H'Jʢsb\E) 99Y---:,y%Ib9_ۆax`hIZq1J#+(vHHk@tT J ۋoi~? ۋKcf`v j뼘^io` ӊ}vSulk=JޯV݂Jg_}yۜojʿzfqIZj(drK:j҃zjkפ:͓b¶jʘtt#87 ^E~tkJ3ckژpE sn0kڶ?SB1p` fIka:1$!/͐mbE)! nmf1 M61ֿ/kA+Nb%)sɿ'~aˍ-%ڱ$9 $!@ $!  IE)!I$I$E)!* %)& I! !E) /I$I$1I$IE)!* IE)!??I$I$E)!UwwLHHE)E)$!I$I$%)$!ꪪ@$@$E)!dB&@B$!pIȐ%)!' @DB0%)``E)! `E)!0 E)h  %)!%**i;ڵE)E)!I$I$1 IE)!Kn[eE)!.:C$$%) pִK&E) (|@E)!@0E)!I$I$E)!L$H$%) ظ!@!E) @$@ E)!E)!  E)!,6E)!H$@$E)!^zrI E)!I$I$E)!E)!I$I$E)$!I$I$E)!++dKmE) &(L$H$E)E) 0E)!*z@ %) ۺm۰fE)!* %) I$I$%)E@II$Pe% ڶmP)  ɟBqH/ 5ɟvyX+5-A#' `X1h$y$ǩXD$I$E1E)PWUUI$I$E)$!(I$I$E)$!( E)!I$I$! I$I%)** I$I$E)$! E)!@E)PI$I$E)$!I$I$E)!I$I$E)$!*  E)!xxpI%) E)! I$I$1I$A$E)!6 E)!(E) 0 KdE)<H$I E)! e)$! @0 E) Rzzx!E)+ @$A$E)!II E)!I$IE)$!  IE)!   E)@mö E) C$E) p" :E) BUP  &H++ = O$Ҹ %yUU*<̃  ! H!& I$I$d!d I$I$$!!I$I$$!! H!( $I$1!UUUMҡڶ$1VED$E%_$ OE )8 ~8%q7s HEitCH%yP~Rc h%q@_I$`~M$muH(ꪠI$! @A0I6M P8Uկc;m X~*ض %I`I$I$d)dI$I$$!!I$I$$!!^޼ ! @H$I$!  ! I$I$E)I$I$$! I$I$d!d I$I$!  !I$I$ ! @!I$I$$!!I$I$$!!jk !b@I$I$ ! ! $!***I$!] I$I$$!!ZX_ZI$I$d!d H$H !!"I$I$$!!޾I$I$e)I$I$! $!I$I!I$I$! (I$I$$!!I$I$e)I$I$$!!5I E)! E)!ooI$I$$!!?I$I$$!!  I$E)! !I$I$e)@$$!P$! @$$!@$@$!!`I ! $!z !@$!I$I$$!!2  !A`I$I$!. I$I$!+ C0$E)ejp;HE)( DJ2 e)!- Oo`fA$!?ϑL9j' mQ׊k=vJޘdeGcajګ*sl?}b|rF| ϻkmզ k?ߖ]tIa]JҾˇ_$ʽJʉꊺbpS6j;lzV-h=**ªJVΔJ4{SQnqJ<)]dk z\Jg[j:m; ۋʻ|ieWW|ڋ[^YNjޑme?+ڋ dR /ҋoh~cAUҋ{eP븓b(J®z_=/ljwMW:)¾{oph%jҢ$C2$$!.B yNfI/%.'@Iq%IXq$z G%A?l ja fW^JJ©kxNh*+/~`L؜owjʖ-Qٕ*Š\mh^|jXn[ J:bܙڋ%֍gѵ/}rڋ7ee9 ۋʻm]Wۘ j?r3cTҫ>.bKΆjʣ'(QU& J©X4&w J玬^O&ҊZS'Jƒt[w} j[J=Ja/ʶ]:jʋ\N)%xJʧϒ_(HkJ&w|!Iy.2x)$- ꄦp;m kvf$R6Jڪҏa$Q:j*:~I5֯ jڣ[|^.WAҔJ s֍%7[Z0‘^)JLڊN1q):]=;'J~ߊ\ s3jvoS ؊eWJ†ˉWN UWj‚*&.fٰg,Wڋ)ZmJ{d*ײ& ۋʾߍ^homjŠꐜiY͉? ۋʿ|f2Gҋ]ob`)fj|W݆PJ«;uRa]JªEI%P)Э@$a`?im4YӠE)kIIde9/'pyeQ)+)-9XqeAxxhLB0L0$).qh[E)?/ syE9 ` +I'$ȁ5^nIJG|'zQ[($ĕJš:FD Q֍  br,ӶҋԬnf[ڄ3 ۋrm^Ӳljj&j8GSڋʫciJ"'ҋ cX`jʋ ۏ[\P+=jeØLE ۋնXK-jaV2J¿l}VlUm J:Z5MJ-a45&jʮˮ[\94JҸܥn yruMr>my_vNu_g1eԨJ:w&^IH#Br*J**Yy$΃*ȹEHHJJAe9A`& C$!`@$%)B!I$ %) жm6$!!@$Id$E)bsI$I$$!!I$E)!I!$$H$I$! !EI!A I$I$d!d I$I$E)I! I$I$$!!zI$I$$!!{zވ !! IE)aH$$!! X$!!~I$I$$!!rI$I$$!!*  $!@@!aI$I%)!H$HE)!޾H$I$E)!I$I$E)H$!(@$!$@! I$I$$!!I$I$d!d  I)6I`;AjWOE-W$H$E $I E%a $EEy E%yꪪc@Eizꠀ} q zm۴`~@$@@$I$I$d)dI@! 6I$I$d!d I$I$d!d I$I$d!d @$@$!I !' I$I$d!d I$I$! I$I$$!!:Z !@$A$! II!;>I$I$!I$I$d!d I$I$e) !I !  H$H$$!I$I$$!!z`I$I$$!!!I$I$$!!I$I$E)I$I$!!I$I$!I$I$e)I$IE)!UWוAHE)!>H E)!%)b&I$I$$!!(* I e)$! II! ((I$I$$!!-I$I$$!! I$I$$!@$@$!rI !?/$! I $!m!I$I$$!! $$!b@xI$I$A .I$d%)-c6e)/6tbE)ʋjYlmE)  vwQ3EA$ *;*J bL` ix kݤvl;7/kڇuM q`ݥƢۮϙoy:?ɖi5:Rkz/[8wJʠT+J⸎bO;j~o\5MUͫJʻ:U_ A*ʫ f.bҫK/hIdqڋʚ7mgM}~9ڋcmv](ڋ+cp~ ۋ?a.\ڋ٩`Xe?jʮ|Pe*;j\돾J~tckw~ҋʗwU}8J9k`|2'ɓ'jX} EADB$%)R2 4mE)`LIE1=.` t6qE9 @4P3qeI``` &$E1AiYb%)/I E) u$$IAE)!#em9!?ۮ pV!afIB*s ɗ'k 7_>Gs" R#f)Šy` gcjʦ*|^_q.jOh={-ۋdڋʷ-Zq[ԯi j­㻫mǖrYfڋʣbNjʺdc-ۋ~ZmZQfj";aJ_>Ҋª[V횾cJۍxUd]K Jʩ._fj7ˋ``2VJk X#: Y*ʊme-*/q1b kڭZlvfkk>ߑlPIk,we3]JmJ'`K1$!&0e)ꠈی:1 |`&m;E){qb'E)W y[Q-??ͯfiI$I$$!!`I$I$e)II$$!! Ͷmhv%)$!  E)!I$H$!!p!%) I$I$1 E)!ꪪ E)!?! (H$A$E)!%)$!H $E)!H$H$$) (I$I$@E+$ AHE_-I$IPEU+m6I X0 nK i@ snK %y0}!n H($H -ɛ ާP2wINAE*?&n[a@۶M$;h=A$|9IǹU: I' U=( I'_4 $ U0- N$ U6Ͷۧ$Q4 i%yU1bl iU.I hXUId hfHw܎.E@h nekly@W `!UmPE[I$aBXe רI$I PeU 0 P Ia۶P߶`@ IwiEPU 2.I`U*2֬'fj\Pf$PC$mҶ%1$!@%)p E)!C;C7lE)!I$I$1 E)!I$I$E)$!E)@@E) @$%)pH$dB&%) h`I$I$ @@E)""I$I$1$HE)I$I$E)$!H E)!.j%)I$I$E)$!I$dB!!Р E)//I$I$1I$I$E)$! E) A I$1$@$I2E) J۶mݖaE)mvmۦE)!/. h@mE)!$H2$@%)!着h$L)E)@$@E)  I$I$E)$!(*I$IE)!..>*I$I$E)!I$I$E)!HI$E)$!(( C0E)!$H!Pf??9W7EH---<ڬ)DZ@E1A#-/I$H$E)!HB&!2%)$!H$A$%)!$C$A%)!`I$I%)$@L$%)4@$$!bdH$A%)!UUH$$!Hg  A ! b!$!I$I$$!!I$I$$!!I$I$$!!\ ! ! !‚]ۥ]uE) dHH!(I$I$$!! I$I$$!!I$I$e)I$A$$!!@ !b@$A!$! II$E).>>jI E)!I$I$$!!句u@ !`!I$I$e)I$I$d!d I$I$d!d   !I$A$$!I$I$$!!**HIȄ$)&&I`?$I5ztOE_H$E W4IE%Y  b#ME%qz3H%yP~ ORc h%q@WI$` _I$I$@$I$I$8%xI$I$d!d I$I$d!d H$H$!ܜ !  I$I$$!!JI$I$$!!=I$I$$!!**!bA$H$!II!*/&*I$I$!I$I$$!!XI$I$$!I$I$$! !A$A%))"**I$I$$!!I$Ʉ%)4 $!@! !I$A$!I$I$! I$I$$!!I$I$e)$I2$C$!A@$!@E)a I$  E)!I$!&I$I$$!!I$ $! @H$! ! *!b@!@$$!H$H$!\  A$!$! I$I$$!!I$I$$!!*J:$! H$@$!AppI$I$A.II!u)) ðkE)" }ߏ9Mi6e)!Yk?3qoo{.Tm&詡p k}j0ٰlKjڬp s շkꬦr#pcq~ =گ莅ldNRk)㪒dꢻhkn׋_nJ8+zb/㝫J 2[;ju}[v j류Y` j¸beϥjhv˛w._7du ۋݺYk4ڋvŎb4wDڋʦV nJ~U%mJ©;|SeoV:3J{nwI.=kpop$y$JX +ߧA!uKЭҤE)☱EA%J.{)xO<Ң 'v Iafip[7˻3TJ fyڋV׋b|ejkʀ5W'Z/ J‹~obE9ڋmX`ɺ~M-J¨ڎd;ڋ&ŊffK| 7ڋ|`wlZ-k9a%]hҋ5(kJl)|nlXv 7X?jʷ_N5ʒK)bbVSOJ+⺙`! jҩbݚkjҫ-[^*:p%&kڟ+dlfm;Jښ#jvCwJo.34Ҳ!p`@ fIHf1 zꭠIBE) "I I$%) kv8I8e);IfM$E):>bEn9fa b@ $! `I$I$$!! $!!@ $! @ %)$!H$H$!(!!%) /%) [-dE)!6!A A%) );:.$I ɐ) xA$A 9% z P$ 'L$IPE ߯M۶mP%!I'YA( q8/In fPU,I- X4 oVDZ$q 3[n EA!m;Ɇ@۶m>zB?$ǹh6.?I$ ~.`$$hI*%9Bk'vܺe9AںIE)!H$HE)!@ E1 h'vb;E9$!]_iE9$!IHN$%9A_VI" %1++9$fy W0-$$*U.$%IfU*c @IU$#)$fꀩU.8x$ uxE%I?EPU%I @fPU*I XU)` =@ǹE*B94{<ǹ` EQ ۶m,%) %) $ @%)  %)@ömۖE)AI$I$E)$!E)!ꪪI$I$1I$I$1I$I$E)!E)! &@$E)hI$I$I$I$E)$! E)!*I$I$E)$!I$I$E)$!۲akE)H( @%) $@%)P$!((< I@E) 6.I$I$E)$! I$I$E)$!I$I$E)! I$I$E)$!*E)@I&hmE) HE) 8@A$e)E)XUI$I$E)! C%ömE)`@$B2E)bE)!*) AE) I$I$E)$! "*I$I$E)$!I$I$1:2E)@Öm֭E9"+)*%yb07++92/b"hHJJH۴[E9$II%)!$ILȄE)$!꺾$ ɐ$!  E)! $@$E)!mӢn%)@!H$!I$IE)! ! ! I$I$$! H$! I$I$$!!֔>! @$!аI!$& ! $!H$HE)(H$H$$!!<I I$$!!I$I$%)!I$ e)I$I$e)I$I$E)!o!@$AE) * dB2$@E)A` !H$HE)H! I$I$$! I$I$e)I$I$d!d I$I$d!d I$I$d!d II$$!! CI$H$E)!I$I$$!!:H$! (I$I$$!!I$I$$!!T<$I$1!BUI`'%QzwOE-WH$E  lЖE%aꪨ 3HEa_ꪨ@%yH_ I?l%q@UI$NѣXWꪀ$I2d@azhI$I$(x $)I$I$$!! $! `$! I$I$d!d H$H$! !  @ !(I$I$$!![$@!``!"I E)!տwI$A$%)!LȄ$ $!@ $!p$! @ !I$A!I$I$!(((I$I$e)I$I$$!!jm E)!奥$IȐ$!&!2A2E)!k{I$I$$!!I$I$$!! I$!H$H$! !*"**I$I$$!!** %) 'I!bI$! x!I I$!#$! @!I$I$$!!I$I$e)H$H$!I$I$A'. IM E)9*ٶX%)mBE) BE) yGI7'k c-3klgRdJڒ(r<̃>kΎwZ%G+p/J0bjd E k/j>kҽg}cm[$@;jʪ SI ] *¾^˽j5|VYb nJ¼ᨁa8MҋWpٌsngڋʫ?i6Ӷ ۋotit&&ڋʞ뾓`Mߒl j_ΐvC jhOҋpJULJO]+0v)ª`v <8k`[x ҋʻ^HboJ0nҋbo_G*]2$)j;wP7H|*pXGI6Jʑz~Ssj.*ʶkZCWJʲ;^J.^ætIJҢܾc*ƐbmJ҈*kûjb˿a`.I*,3%BȡJ ݆AAnfE)*i[E):@$$)ʿd„I2!8I4i$e)a{ b4)faBbCH$I$$1!VTW_I$I$e)I$I$$!!A$ E)! %)$!H$H$!| I! *`E)a"Mtt1 (kvٖHE Mڶm P$m-[ `B0w %yHU Iۮ=fPU(I-7 XU. $ qկ /ORX1 I)X%y  55)yG`ǹ>;7P"/PAD'I$ZP'PI N$%9qf9!I $$! H$I$E)!$ A$!  I%)!zIE)!H$H$e)ˆmKnE)! %)$! E)!k&[2$E) pࠠ I$! $ @%)!II$!! $ %)b`! $!  E)!j$ 1h׶mۤ%9$H۶u%1$Xi`۶m%1$UIku$1$U*$?eqU8$O$ǹU:ؓI$pFIڸe9A⮷! $!Aa۶m%)!IH$! @$$E)!B%)@R2%)!E)! %) &I$I$E)!I$I$E)$!I$I$1I$I$E)!ꪪ[%h$E)I$I$!E)!E)!ꪪHE)!I$I$E)$!HHE)! E)!E)!HH$!>><,mvE)!555 @E)A I$I$E)$!۲-m%) @E) I$I$E)$! *I$I$1I$I$1 &E)!(I $E)$! @$@$E)! E)!k*I$I$E)$!*( I$I$E)$!I$I$1I$I$1I$I$E)$!۰uk%E)ذ@E ys%q@_/=")ǹBJB@I۶hE)!(HIe)@$@ 1LIE)!L 0E) &&! E)!$Ae) @ 1 $$!! !BmY%)I$I$$!!a9I$I$$!!I$I$$!.( $! @!I$I$$!!@$!IIE)!ݟX&HE) (I$I$$!,I$A$$!!I$H$E)!I$IE)$! $! II$%)! E)! E)!noMH H%)!kii  !  I$I$$!!I$I$$!!*(I$I$$!!^I$I$d!d I$I$d!d A$E)!{{A$I$%)!髪I$I$%)!n$ $! I$I$e)I$I$$!!68,II$E)!! $!B$I1 B a'%i5_wOE-WHE  m?ЖE%i 3H%yX~R H%qHW I' q8_m۵ XAI$I$@Ex$C$H$)`! &I$I$d!d H$I$! ! I$I$$!(*! I$I$!I$I$$!!++**I $E)!uwI$H$!!H$I$$!!,(I$I$e)I$I$$!$C&d&!H !<**>I$I$$!(***I$I$d!d I$I$d!d  E)!HI0E)!KI$@$E)!I$A$%)!I$I$$!  2E)!ZZ^^I$I!!* I$I$$!! H!b(4I$I $!*I$I$$!: II$$!!(,!@ !@$!  I$I$$!!::::H$H$(A\VI$I!bͭ ;N16ŚH;E)&\Mj71!g6kmeA$!=IC' ffZEvJڎ;#qW k*߻o0'}kګa kRo6+J kr{Κc rYjj,b쇒Bj:H`Kv4Jҡ*WQxx  Ð%)/hCE) n%)! !aۖ"'f1!)KݵEf1!R?Lj f1!,vvf1!*+ 6jW7fA$O/Lڢ 'uRfIJƒ XqeJ-R#11J*moZb[J(~_Kˢljξ}Lݘ#Y*e>86/ҋʧUGg|U؛$JةXrWJ¾кHK)yC% nRLSJ*sShSQ J‚/!L`ev)(z]DJ,*Y`4J/ju^#+9Kj+U~:M*ʺ_.A2J0+j<0X$`P9EAW`;f1 .TbE)p~$81i ,E) HO $ bqk iA$)aI$I$e)I$I$)!jI$I$$)$IHPE d$P  Im6PIIX8 nv %y8* ߵi0($I7I XU +o$a*2ݒ E >l8z$ǹ`8>(Nn\m5)d:lP DZ 5$ DZp1O?b1Ey^X`6`7PDZE -%:.l^>ǹz3z5( \`N$N&%qPHH$) $I$E)!I$I$$! I$I$e)I$I$$!! $E)!jHIE)!H$@$E)!I$I$1  E)! E)!DB$@$%)bbII%)'//?IH$$!! I$I$e)HIE)$!I$I$$! (H$I$$! I! &HHE)$!HHe)I$I$1%)$! E)$!B E) $!/???H$E)!꾾H$@$e)1I$@$E)!A E)!믿@$E) H$E)mmE)  E)! E)! E)!$%) I$I$E)!L&@$E)VxxxI$I$****ٖAE)I$I$1 @ $!@`E)H$@1I$I$1  E)&&H$!,(((  E)/I$I$E)$!I$I$E)$!**I$I$E)$! I$I$1E)@Vl閭E)  LLE)!>>`$@0E)!E)!A$ E)! @$@E)!/??I$I$E)!I$I$E)$!*I$I$1 E)@@E)ۺC%E)p@E)%q@/o5"4B4DZ@```L$J$EA%!^Tt$A$$!a @ 1HIE)!`0%)pa$H$E)!!I 1  E)!$ɄLH%)I$I$$! A$A$E)!Y[[[I$I$E)!I$ C%)&$ H%)  @ $!`I $!* I$I$$!!@$! m$[ %) 8 hvKnE)!II$$!! II$E)$!LȄE) (( E)! 2%)jj$ $! E)!ﯯ E)!Eů $E)!$!(I$I$d!d I$I$$!!**I$I$$!!Լ !$!E)! $@$E)!ZZH A %)$!I$I$%)!j$!I %)$!I$I$$!! I $!  $! I$I$$!!sPsaI$I$$!!SY_ZI$I$$!! !!I%)A I'%q%_OI?Ey HEy$ ӶYAE%i~3@EyX_ @%qHW b i@U_Il۵XH$9 !!I$I$$!!U՗7 !! I $E)!MڴڭE)$A!@%))I$I$$!! I$I$e)I$I$$!!P`$LB&$!H !(J!I$I$d!d H!(<$I$E)!@E)!㺺H$H$E)!I$I$$!! II$e) 2dB2E)!VVWUI$I!5 $! J  $! I$I$$!!@! аI$I$$!(( $I E)I$I$d!d I$I$e)I$I$e) ! I$I$a6I$I !/%im-4E){miuE)  mW E)(# YeI=?1bM u{ kڻ>7u'm}k3y훳̺q?MAVkDIvpd'"ҪJfހ|jȎ|bD ОjʦYE4Jʘ*wyV"n~0JdXYVjlko!ҫʘmң ۋkΒa,Ր jʮfDyfޕڋʲ9[YVՇzJ#8]lJ̓ jچW>J¼.Z~G  (j{9X@` 8eAذ1!ES1!sk Me)i:,e)!I E)m׶E)KRA%E)s1qa---- 6Baqea@ C>:axzzxI$@$!g 2m;E)f1.m^f1?-Eve1!^l vf1!+FNof1!RN.1 o W/?fIJo*{XKjʂ zHa.)xOxa)§1qPĵq*!RFJ³WARX jvRܺī*ꪳPJc)?I۲ n)jAI-[4)s#[f'F_n $jʡWy&k$jAU|II$j҂^I$aU'I$kڢZv$I$AU9$$` I"fA@W ;fA$I B2$! ]m%)vlۦm(E)zMi%) d$)g fa%&1w. eI/+*I?IfU  h$תI„dHHE m۶i X8 I iHUIk EHU I.9fP+I~$ iU +NV H*@m1( %q_j /I? x;4$x<>I'ǹx+$$h> I$%:4H)$ǹA9h$ DZH :&㲑Jǹj*-9EyVZp6T KDZEy + 5[iDZj. 8zꨠI$k%xmۮ-l$1$ IIe)I$I$e)H$H$E)!^^ `Ȅ%) ($E)!)LȄ$!4$@$%)$!0C2$!@@@E)C2 E)II$!????II$!!&$I$$$!A $! I$I$$!! (H$I$E)!H$I$! E)!  $!$I$I$1@$HE)  E)$! 0IE)!zzz{IdId%)A***IHE)!@$A$e)$ E)!A$ $!!I $!  E)!E)!I$I$1I$I$1lItE) ' ͖ͶmE) ' %)I$I$10@$%)````I$I$" Ytm&$! @E)!HHE)$!I$I$1`E)$!I$I$E)!I$I$1I$I$$!!VT I$!////I$I$E)$!I$I$E)$!$E)AI$I$1HE)!*>>@$E)PI$I$E) (A$A$E)!$M2#E)@@`aE) E)!?///I$I$1HE)!I$I$E)$!0@0%)`@ضmٖnE)2$[E)``E)E!@ACJ 1a@//9R#5@36DZ ````۰ ;E9$!||| @$@$! $E)$! " E)j**ɖn.%) H $! I%)$!$@$E) "ڶE)!ooooa&A$$!I$@$E)!A$I$e)I$I$$!!>( $I$$!! I$ e)I$I$$!! I$I$$!!`@ !@kiE)!((*)m&E)$I$ɐE)$ E)H %)8@%)$!I$H$$!!nm۶E)!  E)!kE)⣣ŚI۶E)H$!(I$I$$!!&7/I$I$$!! ** I$I$$!!>. !@$IE)ꢢa&!E)!I $e)$!!I$H2$!H$H$e)I$ E)!I$ $! $C2$I$!I$I%)!YY@I$!$< I$I$$!!I$I$$!!bpjI$I$d!d $ !  $)+kk隴%)! 9$%q-_@@E$  XE%y~ Eq^3@%yX_Rb q zmۭX pI$I$)$$I$I$$!!5d!d !b I$I$!!m۶]2$%) ``$A!E) I$I%)!I$I$%)!I$I$$!!08(`HȄ$!( !  !I$I$d!d I$I$d!d A E)!@E)!H$H$E)!I$I$$!!((,I$I$$!!$@ !hII!A >$! &I$I$$!! I$I$$! I$I$%)!YyI$I %)! $I$$!! !@!I$I$e)  ! @@@@I$I$A+ I  ! '9o1me)!poM!鐆1! r+7#AJJJfqWm$q"m>hkڃ^we̦_߹ͦbe1mn J*窩p]w ڣp4H;^->[겱JaR=j*zʤ]NQ?Jʾ'~{PQr*V#)""ND5˾ e$n獷4ҋ߷vY; Ørj Tdb^Jj\Cۅnj]c{J8(aƺ( $I%) 9{9fY-=-%@@qi:axh@$$!CMv%)?*!a%)DƱf1 "6kvf1= 2$E)!yI%e))*K]NS(E).Bg7nE1 (o6k I$*‚_sh$jʂq0m$jʢ_7#$jU&h~$jʁz~I$aUt?IJUt$I$J‚U/$$UIRE9`] ImEAAY$9! EA _؊l5%1{i(6%)cubv\e1~?ߪXqBe1+}mq+eA I$; fIݯ f fQUsl9@aun%M iU Oޖ%fa!U $IqE1շ[n'yEA! r fa* ,qN ++.36DZfbz_b IEb n fP*oZ`U , v%q+ <$9Hǹf:۶MP'Z<$m䧱Z@&I$ǹZ@'P=vb;$9hۉ$9$ɐI%)!(6(I$H$e) $!!bSm$9B*0'\I$ 5_6 P%8bIǹ%q퉀' П-:%q x7ADZf)4$\өMb 3d=jaX$Nb?goE z  q$I$I$$)$!@$@$! LH$E) D E)!@$@$E)!I E)$!$CI%) `!@$H%)  B E)BII$!????I$I$!LB$A$!  E)II$$!!888 ɄIȐ$! &I$I$!nII$E)!I%)!61@$@$$! H$He)A$A$E)!{II%) ***$@$E)$!I$I$$!!I$!$E)! I$e)ڡ]5%) ``  A%)&  E)! $!C0%)``XٖmE)I$I$1 E)!I$I$1@0Ʉ%)bII$!A!&E)! E)!H$E) I$I$1$%)!`%)AI$I$1H$!I ɐ$!//.I$I$E)$!I$I$1`%) I$I$E)$!I$I$E)!***I$I$E)$!*I$I$E)!A$I$E)!00E)!```隮隠E)!$A$AE)*** E)!*JHH$E)!I$I$E)$! E)@E) (I$I$E)!%)EʊJ11a@-8u0> j`jzhj:E1$@$@&E) { E)! $IE)!￿l۶ %) HI$e)I$I$E)!:I $!4  E)!o{@$$!`pA$H$E)!D&a$E)!I$  %)!I$I $!! !C01I$ %)!裏I$I$$!!I$I$$!qD$ERE))  E)!%I,-n%) ʀ !@%) Ie)I$I$1 2%) `$H!$!C @%)@! %) C&LB&E)!I$I$$!!I$I$$!!$@!bРI$I$$!!@$!@H$AE)"MdkE)>( %) &I$  e)DB$AE)  $E)!I $!!  $E)!oooo$!I$I$$!!@$!!^ ! $@$!p @ !`E)I$I$%)!uI$@E) I$H$!!p<C $1$ b ?%y$% J%y$ `EEyꪫ c@E%qz@%yP~ O?p^ꨀI$I&P$ !BI$I$E)!ם $! I$E)!Ȁ$HE)!I$I$$!!I$I$e)H$H%)!@H!(, !  $! I$I$e)I$I$$!!*(@$E)!keKE) H$HE)!I$e)H @%)$! $$!h`hpI !%-- IHI$! &I$I$$!!I$I$$!!I$A$%)!_۪$I$C"$!!@I$!!!I$I$$!!I$I$e)$$!a@@@@I$I$A/I`IE)?w9.Ɍe)ˇ&tLɆ1!6?r;A@JJJjdEl Jgo8fJڠ|*a=,^cN*JJ|Ox\{""ìf~;{jjiۻO kҷ΋Xj:J{awyh jʿvM"(8)ˆ:Y-jʏv[ ujˆ('bYh٤ҋʛ׏W mnJ® ۯSiڸisJaAj:w|ZWToj»}=m#鹫tSoȿJzT}1#kʢ@@` feAa;f1!Z7_ rf1!%]qشkE) :mۆ1!7uM۶FE)-;Ne)?!0a!CãI$!I 9TtfQ-''@yY q%I :Նq$)xzz8$f1bI I$! !$$)I $%)Ⱥ[m%)ivM%) i]ۦ%).]u%)" kҶiE) MBE))h;$9piAv695 meA U_"8}fAXq8E)@֭mu%)0&Ce1 U}uq-eA~w+fIկ m)fQu $ fY!Uժ Onu fY׿ OR@fa$!U Ir8qE9U@qE9*ߒ4qeI ]qfQ IIqfY# IqEQj@qEQ)K*Ēq%IE'y%Q>^ :qEQ @EI  M6ܦfY *M.q 2 m&-<O^%ǹf:$I'ǹ^8h}$ ^:&I'Z@$fyPII$1a5$I$$A$!UUU0HE)!A$@$E)!@$!pI !* *IIE)!LI$%)! $! Itn%) &MlۺE)!6,L6%I k3 I' 3 BP ()އ%y)%66'h'DZ 5 "@$DZ%q@/ h$q*3 h@z%y$x$I$1$   E)!I$I$$!  E)Z,]%$!` H%)  E)!C0C0$!II%)w  2$! $!H$$! @$!аI$I$$!!H$I$! h$!I! !"  `$%)I$I$E)!@$@$e) 1 E)!II$!====H$H$$!  %) @(@%) H$!( $E)!  E)! E)!AE)! E)!͵E)$!I$I$1 E)$!I$I$1L2@$E) I$I$.?I!E) 1H &%)0`E)@$@$e)  %)$!$ AE)!'HH$!((h $!..* I$I$E)$!I$I$1H%) I$I$E)!**HE) (<I$I$E)$!H@E)! E)!-f1 baE) I E)!* E)@! $! E)( $`0E)P@E)I$I$E)!@@%)EJʊ n᧎4i +6C0S?`bjz#۲-E9$!|mҥId%)P&E)! E)!@$@%) ؠ E)!I1  %)$!I B E)!{{{{$I$!""H$H$E)!@$%)$! I$E)! 0 0E)!H$I%)II$$! II$E)$!$ L%)! .&4e[E)!.'''$$E)I$ $!! I%)$!II$! I$I$1$A I2E)!E)! @$E)!s 0C%)!` EY$! I$I$$!!I$IE)!I$I$$!!I$I$e)I$I$$!  @$%)!pkk$%) (I$ E)!I!Ie)IE)!H$$E)!I$ E)!A$ E)!z$C&$I$!@$I$%)!I$I$$!!pI$I$$!!I$I$$!!I$I$e)A$I$E)![[{I$I%)! $%) pI$I$E)!I$I$$! I$I$$)$!> '%q$7_`I9%y @E%yd@E%y l#HEizh%yH~ b?`^zivmH$X $%)!ꪪH$H$!!0 $H E)J$I$%) m۶M%)b(6($A2$IE)!I !! $! I$I$$!! $!@$! HE)!l˶nE)!*H$I$$!!,I0$C%) ``!H%)$$$!ppppI!  *A A$E)!I$I$e)I$I$$!!I$I $!!@B$I$!I$I$E)! ! I$I$e)I$I$e)$@$!A`I$I$A/);II$!+ vbaE)k..H!E)*$)1ME)?yyȩ\뺸8 Jb_> J6z{#ٮFh˸47Jڦ:i]w]?k_d3⸢jNΜY'g]J\~0cJocN|;E*"}Syθ!J½KRXg)ª/(LeEj**^s;j|~\lMObJgt["ΈJ˪]frJ2zX Y6J{wJdH~ @qEAd$qeI_'qE9_?qE9Umi%)Ua F$fY!WU ضQ?fIP'qe9^ 4$ɟ$eQWrIy -*'c^&^H~$fyTIնm$9%$I$$A!xUUUI$I$e)  !I$I$ I$I$$!! ]צME)""I$H$$!!$!@ I! @$@! I$I$$!!,(  $I$$!!$@$H"E) j%) $!!  $ 20$)UUU!'ɓ$%_.X]I$%W4~eΧa:*6MADZF : 3ADZ``3%`iDZ|/#H%y~#OR?kfz Ϗ&qX$C$ )!]X  $! ڭR4E) J횴ɚ$!  E)!C0I0$!II$!????@ $! `0!I$I$$!!I$I$$!!8 $!(((I$I$!!&`H$IE)I$I$E)!@$H$e)  E)! E)!II!9;9+H$H$$! H$! 41I$I$e)I$I$$!!C&$I$!@`!HE)1 1 E)!۶fKu%) 8E) H !@%) @$@$%)pI$I$A $!   e)` $!`E) H$H$E)!L%) ( E)!HH!h( I$!-...I$I$E)$!I$I$E)$!I$I$E)$!I$I$E)$!*I$I$E)!*I$I$1 %)a4 E)!B!-e)A!!E)! IE)!///I$I$1H$HE)!E)!@$@$E)!I$I$1I$I$E)!ꪪ%)EJʊEcH!(( 3@4@#4```` ;;E9$!||| -bE)b@ !%) E) bE)E)!I$I$1 $E)!BH E)bIdH$!H$H$e)! `E)!$ $%) `-6i5%)RLB%) I $$!! I$ e)I$IE)!6 Ie)!''I%)! 1@E)!  E)$!I$I$1  E)!`$IE) ((@$A$E)!{{{IL$E) @$@E)!I$@ e)H%) <H$!4$I$IE)!I$Ie)E)!zꪪ`H$IE)!I$@$E)!$ E)!1`&$!P I$E)!﾿ZM%)!6A$I$E)!I$H$$!! H$I$%)!ުI$I$$!! I$H$$!(I$I$$!!6$A2dB2$!`$A!I%).*@HC0%)BB$I!$!H1H$I$e)$BHE)!oooAB$I)b '%q%_ K%y  EEyHE%y~ꪪ@Ea~~R?b %y@_I$tգX$ޠI$$)%  $I%)B *I$A$! IE)$!IIE)! !H%)I$I$$!!I$ e)I$IE)!@E)$!۶Kd%)8I %)!I %)$!  E)!@$@$!pPPP!@$A$%)!@$I$E)!I$I$$! $I%)!jI&DB&%)!@$I$$!!I$I$d!d  !@! @$@$!A```I$I$A/;)+I$ E)=u!I I!-4蘦%E)!:m[lE)8|yIkjpJ,$p@Yu*kڰm0wUoklsb$`-OJnnv /_uaSJz\˙jѴJ[i $@!PI$I$$!!I$I$e) $!@ I$$! I$I$$!!I$I$$!! IIe)I$I$$!! ! I!** . E)*j!I$I$e)$B$HE)ʪHE) $!!   1I$I$e)I$1 B*1y$f _3䧱/5(,y4ǹs5+h%DZ%R3-mDZ1RPа* m8z$%yxdB&DB&$1$dB&@E) (  E)! E)!C0$I$!II$!*&.*H! I$I$$!!I$I$$!!I$I$$!!I$I$$!!I$I$  !'""I$LE)!H$E)!H$H$e)  1 E)!II! % H$H$$!!00  $!@@!H%)I$I$e)I$I$$!!I$ $!!$H$E)&1 1E)!jjIȄE)  E)!/on  %)  @&dB&$!`I$I$ +-$!IIe)HHe)  E)!:%) %   %)$!  E)!HH!  $!...I$I$1I$I$E)!⢢%),4 E)!*J %)! E)!HE)4E)!-0Lf1E)!"  @%) '  E)B !@%) I$I$E)$!H$E)!I$I$E)$!  E)!$)EJJJJ$D"L"P9!4@#4B4````۰ E9%!| E)!I$I$E)$!I$I$E)!E)!* E)  `E)P@$@$E)! A$E)!k`H$I$!  2 E)h!%)!  %)` !IE) E) j$I!$!  $%)$!IH$!!  0 e)! E)!E)$! E)!*j+$ @%) `& %)P @E)! @$$! E)!ꪪD E)!$E)$! @$%)$!I$I$$!!   E)$!I$I$e)I2!2%)$! E)$!LȄHE)!@%)$! %)$!1  E)! e) IH0%)!`$!bH$@$%)!ޚZ$E)wIE)!I$I$$!!I$I$!!I$I$%)!z^ZI&D&E)$!AE)! IE)!0%)$!H$HE)!@$@$E)!I$I$$!!s A$I$%)! q'%i7PI%y$  E$A  E%y #@E%qꪠhEX^ꨀ OR?c q^ꠀi6m&PE`I$%)!+ H$E)!$A$E)*** ! A$I E)!}I$A$! I$H$e)HIE)!@$H$E)!mdn%)& I$I%)!@$@1&@%)P@$@$$!PPPPI$I$$!* Ȅ%)$A$I$$! I$I$$!! 88  E)H$A$$!!@$@$E)!I$I$$!!I$I$$!!*!@$@$!A````I$IAIi&E)?E)&?v1a&e)'{m6+lE) +IIċai:kڞ}uԑkikjte 6J.hW#@pb* f9mj҂z`WLjҺk+Z|OJ~Wy3ۤi=**Px4m&k@zl$$kAU'h$ҁjUzI$AUv:I$aUy$I$@UKؖ$$JU H'EaT I"I?E9`):M8$1 j{N$E1$I$%)钯jI4IE)_*N3C E1I$fA] ~o+ fI o-+I O$ fYIb&faUOn(@i$)UۖEA $q璤@ fi +- -+#q j+mLNQ&#dq_Im覭yfiߨ$ $qfiV#q$A` Mty?yeY#_ M'qeQ_ ilqeIWm$?iE1mnqE)]$i$)U6iU &fQUubEA_Pq$eA!UUeIe9 UVdY6E)H$A%) ?ۚEE)+S48e1ns8E)h+:^si5IZE)b D^\Nfa I$I$e)I$I$e)I$I$e)@!a @  !I$I$:3I$I$$!!)-//IIe)I$I$$! !II!..//I$I$$! * $!I$I$$!! E)! E)! $$!! I$Ie)I$I$e) $!I$I!7bm$9B*0y$ _0@'T %2(tADZ 51.؆4@[ǩV~3$3ìDZ^0XFDZX~B>#ς%` OOaր$A$$)%& $I E)! $!II!b***.I$I$$!!,,(I$I$$!!5I$I$$!!I$I$$!!8I$I$$!!I$I$!!!$!""**H$dH%) 8 H$I$E)!I$I$$!!@$I$e)  A$E)!II%) ***H$H$E)!I$I$$!!I$I$$!!I$I$$!!BI$I$$!!A E)!Ml-6%) 6B$! e)@d$$! @E)! E)! e)@$@ !I$I$***!IIE)!H$I$e)@$$1I$I$e)I$1 $%) H$I$! I $!''/'I$I$1 E)!E)!E)@ %) `E)!޺HE)! E)!a&a0e)!⢢I$I$E)!IIE)!E)!ꫪE)!I$I$E)!I$I$1I$I$E)$! E)$)EJJJJN.P07R#5@1```` ;;E9$!||||E)!I$I$E)!I$I$E)!***IE),&$@%)pI$I$E)$!@$@$E)!@$A$E)!{[[Z@$@$%)!ZMK%) (,I$I$1  E)!jVlm%) E)$!!@$@E)I e)IIE)! ڠ ڢ1! E)!֡]-$!@H%)a E)!L%),6(I$I$1@$@ E)!1I$I$1H$@$E)!$I$C0$! @A$$!RI$E)! Ie) Ae)$AE)!HHE)!$@$E)!@ E)!ꪯE)!* @ E)!jj $! H$%) ! H$H$E)!d %)j(I$H$E)!H$A$e)$A$%)*H$H$%)!^ZZZA&aB&E)$!m kdE)a*($A$$!  E) J*!! $! A$I$$!!A$A$$! I$ e)$H$C%)! $1$ b* '%i$%_PI9E - 0qE%q @ E%yꪪ b#HEi i%yH^ `!^z@H%!UuV`I $)!jA$! $$!!   e) Ie)IIE)!?I$I$E)!~^^ E)! 0 %)!E)!  $!H$@$! $!1)-  E)4  %)$!$AdB&$! @@:ٚ%)A $!@ %)!# I$I$$!!I$I$e)I$I$e)@$@$!A```I$I!!?=L&A&!&I$I$$!ŚI$E)C$!쎃 /+E9Ab* I$a _&m$AUI?@W$I$ U$I$^sX$$jʁU_x$fX IRBϓEA@W IIE9A \ϟ$eA"u$Q$IE)+I$vB E1 I$ E1$vE9MEA* lK fY Ob%'faUoלLfi%)U  fiE1U_6fqEAU(fqEAOɎfq%9 v$IfqeY* qifqeYvCjT׆qfiu g +8yfi}*nuHTny%I MfdžEa*&p /-+]N**+,@NmfW'*-%Y@vM'yE9^$a Y ֶfQWqfI&We9y۶;E1/okѤM׵E)*k蚦%)ܼMviZ4%)*q1 _?:E) ?&i$$$) owBfI_* ?qEI}$E9^ې$EAa U5yOȑW VIIB jaU t$I,Ң_tɓ$ kaU*Iāj_~IҚDIaU*IDik`)I4șU*Y GwJҡ~c"`'&gJ_bgxڛJڻ~ԶR2,#ip@ fY I$I$e)!I$I$$!!I$I$$!!  !@II$!A+**I$I$$!!/'7%A$I$$!!`I$I$$!!rs  @$!  I!/55'! & !@! $I$E)!U$I$! <>>I$I$$!!+++ I$I$e)I$I$$!!  !II!???I$I$!$!bbpbJm$9X 0I䧱 _3H'T%2+Tv DZ/4#1J$)DZ* @4 mBP ,Cj q`? fb^j >$qx$C&LB$$) РII! 6* *!I$I$$!!5I$I$$!!I$I$$!((((I$I$d!d I$I$!II$$!!*IE)!I$H$e)I$I$e)A$I$$!!bpI E)!**H$I$$!!,*+I$I$$!!ࠠI$I$$!!I$I$$!!bbrH$!a0$H$@2$!! -Үm۵E)J E)! I$e)dH$@%) E)$!$E)$! $I&e)@$@ $!I$I$!Օ! $! H$I$$!! @ $1$I$I2$!@mmݚ!$!K$K%) I$I$! !'///$E)!E)!@$%) I$I$1 E)$!I$I$1$ E)* E)!ppxZEZf1$!H%)<$I&dB%) P@BE)H ` @%) I$I$1@E)!I$I$E)!  E)!$)EJJJJbb`8)B}#0R#5j```h He9ԸE)!* LE),4I$I$E)!**I$I$E)$!E)$!I$I$1@$E)``]C&E)@$@$E)! $!AI$I$1  E)!E)!I$I$1 E) I$I$E)$!IIE)!6h6e)! E)! 0 E)!ﯫE)! E)$!I$I$1 E)!I$I$1 E)!  E)!/@$H$E)!ڮI۬%)a CCE)򊪪  E)$! 1HI$E)!no!A $! HHE)!@E)$! @E)%  E)!* %) 1@ E)!I$H$E)!^^^H$HE)!H$H$E)!H$H$e)I$I$$!! H $! H$H$E)!@$1HE)!%)$!$%) `H$I$E)!I$I$$!!A$A$$!!  e)I$I$e)H$H$e)IIE)!I۶E)A(!\?%y 5_ O%y$  6nEEyE%y~ꪪEa~~ i%yH_ <`HAޫI$I$%)!1IHe)IIe)! 0E)!ZZZZE)!IIE)$!L0%) &@HI%)@$@$$!P$!H$HE)! $%)pII$E)! %)!@$I!IE) $E)!zI$I$$!! I$I$$!!.BI$I$$!!@$@$!A```I$I$A;I$A$!A/ I$!7$SII$!;m&m&E)몘$L„$!,Ϩ4$I$%9w $ɓhxH8'%9)i&%)IlIE)MmH:E)ޢXm6E) \lW}$Ð$I$!  IH&%)k-.E)iӱE)*ʫܾq/E9*J^I$I)U tɟ$n kUnO$jUIr6nUtIRJQjaUɽA8n`u,ymș-T,?XJŠUmT8߹juulR IRՋJ¦*wH`ծ ɪ(|Y{J~c(J.n]>JҺ\`=^q!JG龧aomR Jү_ix_jڣ;V Q*ʨ5$*jJBJ AIaNkvf1 ]6e1 k&)E)zʮrD6E) MdId%).,> DNC>fa I$I$d!d HI !,v!aI$I$$!!ʊ$@$!```hI$I$ I$I$$!!%%5I$I$$!!I$I$$!@$@ !I !/*I$I$! ! !$A$! zH!>,I$I$$!!I$I$$!!##* !E)II$!>I$I$$!!ニ!I$I$$!!: I@$I!r m$I ^+, ə'_1&AJfy  4M@NDZf 13͚ f`6tB\bǹf^zˋ'3+`Hz$ExIa)a*/-I!(I$I$$!!7I$I$$!!xI$I$$!!|I$I$d!d I$I$+I$I$!(I$I$$!!8(4$I$$! I$I$$!!$A $!$ d$$!  I$! *I$I$e)I$I$$!I$I$$!!I$I$$!!rB@ ! pA$!``a$LHE)jW E)!H$I$$!  E)! 1A$ $! DB&dB&E)!{{z{$H$!hI$I$!! E)$$A%)!H$H$e)$C $!@C2$%)C`  E)I$I$!~ ! I E)!j횴ɺa%)  LH$@%) I$I$1@!E)!HD0%) ` !A%)! " 0E)!xxzjMDLĆ1!SSS  E)! IE)!ILBE)$!HHE)$!I$I$1kdK&%),k&[v$!0%) `@ E)@oq/c`8)DR#4B#5ȹ````H$N$b@E)WWTWI$I$E)!*+I$I$E)$!I$I$E)!*[dKE) E)!0@E)``IE) L$`&%)P`%)! 0H$HE)!۶&k2l%)@$@$E)!E)!I$I$1I$I$1I$I$1IIe)f1! E)!@&dBE)I$I$1I$I$E)!E)H$ %) *I$I$E)$!  E)! IE)!/H$@$e)!  %)$! 1  E)$! 1IIE)!?I$H$E)!LȄHE)!I$I$1I$I$1I$I$E)$!  E)! 1I$I$1H$H$E)!^^@@E)!H$H$E)!H$%)$!H$H$e) $@&%)PH$A$E)! 0E)$!E)! E)!kۺ -%) @$ $$!mۦm24%) `I$!  e)I$I$! H$@1IIE)!E)$! %)// :vk%a% I?%y$% 0 rE%q*E%yE%y~ꪪ쳱HEa~S# %yHW y$h$^$9$ H %)$!IIe)!00E) ZZZZE)! $! I$I$E)$!  E)!@$@$!p$!H$HE)$!I$I$%)$!  E)!~  %)IB$I!IE) %)$!I$!a& @$$!`` %!(@$$A($!I$I @az IfqEQz?fi%I_ $I$EYEI $IEY%I $ faEI+v?fiEA* WId?fiE1Wm?i%)UDipXxxH$I)o'I0 $!/M4)6%)Yڮ͂ E),6h۶e) Ͽm'6f1 ]-NV nf1kfClE) ^ҡRf9 V%uIdɔbJ7 wOIm*coNL[)*uQvbb}bJWSNZƯ JX GJ»yVzWJ|M+i]*®;Y~JgyQ}qj׋pPGJ9~VhvJ|PtOU)'^,2JNoc9˹ije.L*|jJr΂'ϒm%iTzkگZd_w4 J, )EyH fAͰ,e1!/lۦe1!{4#e1^m]'Fe1ڢifIE); C.`faI$I$d!d I$I$$!!I$I$$!!I$I$$!!:H$$!h``pII$!5I$I$$!!%I$I$$!! ZH !$,@$$! ! I$I$$!  ! I$I$$!@$! !/I$I$$! I$I$$!! I$I$$!!X @ !II!/.I!&$!A !@! ! (( I$$9!MUU0 I$%2DMħ 0&ADZ81ǹf*:j<OIǹ.A%yz%OR?k f^z Ώ>yxI$I$$!!%I$I$$!!:*?I! I$I$d!d I$I$ PI$I$! !@ ! I$I$$!!*TE)H!I !* I$I$d!d @$!``!I$I$d!d I$I$d!d H$!08A$ E)!YI$I$$!!I$I %)!$@$C2E)jH%)I$ %)!I$I$$!!@$@$!xxxxI$I$@!I$I$$!!I$I$e)I$H$e)H$I$$!!,  $!I$I2$!I$I$!AXII!! ɐ%)&0 E)h$@E)! $E)! E)!IE)!H$AE) E)!ꪪD,)f1!R  E)!I $!! @$1IHE)!%)&HHE)!$ E)! E)`Vl]%%!pRʦbP9AR#5P#0````hp eAI$I$E)$!****I$I$E)!I$I$E)!* I$I$E)$! E)!I$I$E)!*0E)!Cӵ[E)@$@$E)! 2 %)H(! E)    E)!E)!$E)PI$I$E)$!I$I$1IIE)!f1!Ņ E)!E)!I$I$E)!$%) ` E)"`%) I$I$E)$!  E)!IIE)!'?@$@$E)!  %)$!1E)$!ꪪ E)$!IE)$! 2 2$!@hviE)(*)%) I$I$1$`E)P  E)!E)! $E)!H$I$e) E)!H$H$E)!H%)$!@@$%)$!$&`%)PH&d$E)!\[\I$I$1I$I$1@$@$! `(ɒtmE)%! E) 0%) `]۵EE)A$I$E)! I$E)! 1I$IE)!E)! $!/ E)! $1$ B*'X%y$ ' S%y$  0nEEyE%yꪪ]š,QF%y[.#(@Eya\Sc %q! zc;PEp  $)E,$@$E)E) C$ %)  @$E)$!  E)!@$H$!P!E)$!ꪪ!@1H$H$%)!޾E)!ʊ $0E!_%۶[$8%!UU$!$H I 8I$ C8!0|I$i P0U] w%i0* 9)aEi%I렂 M$9EaEIu Cـ FaEQO?qCfiEQ~?FfqEQbW pmk'EaEQUkgfiEQ)yfqEIU Q8EaEI*U0%$fiE9UrnfiE1U @m'eY$!WTn$Y4 eI iyeI PIfQU?O$A$E1W8NbE)w:I@I„$)?z>1n%)ɪ!$NE)H$I!8-$i4%)lqĒiE)0H$%)nI]E)nIlӎmE)>iGIBPE)"$$%)n$re)mK%)oNtlE)aI@&$) *I$NxE1?1a ):qc#>:a!XXxx˚I"%) qh %) bqE)º+ie1a$I2E)!s!of1 &1Qڔf1- }?a1!] wr#fAb+JᖑqҢUOJ•׍wSqJj{WL$gJ^] j瞽\yZKj\[ԛɜj»⺖Wlk2VJªC(_^ 6jº8SYbJJyuO**(Z3jet~ERJki ``uJfrJҳ,«m= یyڷ|iht9 j觿rྍi-߷Yn[u*һ7!")@@@@ !eA%!~af1):.$sf1 C~mډ$f1!W_QI&!0$!0qfGqe9?ppfYI$I$d!d I$I$$!!I$I$d!d I$I$d!d @$@$!a`I !!* I$I$$!!O+ ! @ ! pA$I$! & ! I$I$$!!uI$I$$!! @$! p@I$!08  !! I$I$$!!mq$!I$I$$!!T@ ! H!*:I$I$d!d @!I$I$$!(!H$H$!! "I$I$d!d Cm۶$1` /!I< _0A%<H-ǹ@ &1 ULaDZ1(@DZf~ꨀ)3 `Pz$% x$I1%H! !II$!՝I$I$$!!6I$I$$!!6>I$I$$!! I$I$$!!H!$H$! I$!*:?I$I$$!!w>I$I$d!d I$I$$!!પI$I$!I$I$d!d  !$!I$I$$!!B2$I$!!@!H$! @$H$E)!$@$$!$I$I$$!!H$@$!xhhhI$I$!!*j  !B$@!@$!аI$I$E)!I$I$$!!,I$I$$! I$I$$!!xxI$I$!I ! Ivh%) & $E)!k @%) `$%)аI  E)!%)$!IIE)! 2E)!x^ ` f1!\\@$@ E)!I E)! $C2$!@vֶ%)   %)&H$!, E) *jj*a$E)i` $)€BBl*!X8RB99$````H'p'EA%!\|||E)(I$I$E)$!۶nME)&$I$I$E)$!*I$I$E)!****[$IE) @~'ݚmödE)@$@$E)@$@$E)!H$HE)!I$I$E)! @ E)!E)!@E)PE)!I$I$1IIE)!h$Hf1! E)!E)!I$I$E)!I$I$1E)!jE) I$I$E)! E)!II$%)!@E)!0 %)$!1 E)$! E)!I$I$1 @e) C$IE)!l, @%) I$I$1I$I$1 E)!5]%)@@Śڵ%)!E)!E)!H$H$!!(8( @E)!@$@$$! E)$!ɄI%)!,(IE)!I$I$1I@%)(@&%)PHH$E)$! %) `!I2 I%) %) LȄ @%) .6$@E)H$HE)! IE)!IIE)???$ E)!I $! I$I$$)$ *M`'o%Q$ {I%y$- 0 rE%q*$H$EEy@B$Ih q aE%qz#֐@%yP~ Op!^ꨠdB% :P% %) LE) ,&I$I$E)$!  E)!@$@$E)ZZZ  E)0$1 j ۖaI$$)  0d$!@E!U$I!@E!I$aH@A8ݫIl6-AP0O69i8 I-9%q@U%E %yHտ*kFP )K[f%YW mk:EaEA~ &r$EaE1W 6rmEY$!W &$d'E)AjI I$! II!>, aaB%)?$ !+I)E)_;İME)( ?]EA}} }+EALV-1%%A*^ϝĚ$IaU_QIIkʁU*zI$I2Ajʂsɓ$/-Aj҂UGɟ?I.<` O}eAĶgf1vuE) %i+1!5]Nf1!W5%-1me1 .M@LE) vd$E)!* N"E)_I %)Owya-/-m?yb`#:Xfi xxx~I1$C$0$!KI$AE) )u`1!l-3f1 kΛ~f1!.ie)!Â1!qyyҢ7|M srJW).V'цd=J)Ί_qpNݿjZdjš*[,\Pjª$\uW\J/6cl,DkngJSm SrJŸ*⬂c1ҋo}ELY'sjakQnm/*KK~_ }j/Cq! F4 "**g<1irj.+i㢾ͷ k{t|87޴~cp7Hjldڔ_#8#JҊ]C4=b``pp,rIE)\|^Kdu dž1!L̘V8e1!޾Eܷs3f1jj24-E)j NfA?>.' ȏEYI$I$d!d @$!H!<4I$I$e)H$H$!I !%% @! I$I$$!!I$I$!((((@$H$!\\\! I$I$d!d I$I$d!d $!pH$!, ! B !  H@$!IH!&,8@$@!踸 H! ..@$!PI$I$d!d I$I$d!d I$I$! H$I$!x!"I$I$$!!I$I$$!!I$I$$1!UUU|p7%Qk4$sI$ _4Mn4%DZH 3H`1(hDZE^%>c f^h qz$C&d&8XI$I!=I$I$d!d I$I$$!!?kI$I$e)I$I$$!!>I$I$d!d H$ !I !/ I$I$! ! M!I$I$d!d I$I$d!d  !! !I$I$$!!0I$I$$! I$I$$!!I$!&H$I$$!!\H$H$!x||\I$I$!@$@!pذ!I$I$$!!9&I$I$$!!(**I$I$$!!(.@$!p %)!_]VUI$I$@J ! @H1 E)!$@$@E)!  1C$A&$!%)$!IIE)!$C2E) ۠ 2f1!\\|| E) E)!ﯯ$A 2E)*j$I$$!$E)!j$ $$! I$! @$H$E)!z$2!"%)$‚)%+XA@ ~0;Qz`j z'z'I$!||~ I$IE)!4I$I$1I$I$E)$! ۶ 5E)@%) E)!@J(IdlE)-@$@$E)p[ME)!.6H$H$E)!I$I$E)$!I$I$1I$I$1 E)!ꪪ E)!0E)r IHE)! ڠ-be)! $E)!I$I$1I$I$E)$!I$I$1I$I$E)$!`E) ذ E)@E)   $!+///H E)E)  E)$!I$I$1 e)E)!ꪺL%)<I$I$E)$!I$I$1I$I$1I$I$1 E)!$!IE)!+XIڴ%)!6,$I$E)!} A E)*J E)I$I$1@$@$E)!@@$E)@E)!*IHE)!I$I$1$@`$%)@E) dB"dB&E)!DB$E) pp  !A@ E) Ie)H%) IHE)!H$HE)!IIE)??E)! E)!I$I$1H$@$E)!$1$ b*/X~%y% ' O%y$ 0nEEyA$I$h E%yꪪ #HEiz h%yH~ m۬h$zIHEX$0E!_-ۺa[$8%)UU@$I$8_/ $I8I$ I@0I&-P8 n i8U I-7%y@Uo6hFPտO^WFFaU* K %E$aP$ R$E U6IfU$EyU C'eahX$v$EAbI4I4$)!I" 0!ɒ$H%)MIۤ ڮ%) $AfE)IbI#f1zmIH9 IM@%AOw%8%9 p $fA UV%Yj=IIl虂UsII2kAUtI$q IkaUpO$hkaUzIiʂWIۆmAU ɏi۶qk@~* H`'jșCT+-K) owR`՚jºoP};7 J}{OT1*¦6~3GcɒȱavI$x.Jui f f1!-]jZPf1ie) jbFƆ1!Z鶴m:e1!bǵ]f1!@$i&e1 N`.mE)>ªhmۮmE)*j%r-X}s?? 0x~S;E) tf16n۠E))^841!cilbf1!kvAE)!*qbv"Yf1!݂[( 7EAE**JI)' H?Vά)꺩^|Y]jʶ9[YOjʲbډ[/ӎEjm!:j <صҋ th31+ҋ..c#. ۋMg`Vڋʸ>a5Mҭҋ$^`NajzN@r1)*h_;hrJΤog7>kzZMJʦ ;`ĺj&xm νjMRJbhk)*jھf] [ J+R"%Z F9!v{jvf1!]S]SE) bV`ruif1k`$a%)XY'///H؍m$9I$I$d!d I$I$d!d I$I$$!!. !@H$H$! ! I$I$$!! ! !b H$I$!\vtV!I$I$d!d I$I$d!d @@$!` L0 $!Ȏ  !I$I$$!!]>@!I$I$$!( H! H !,( .@!( I$I$$!!|6I$I$d!d I$I$! (@$I$!z@$!PI$I$$!!y'-I$!&&I$I$d!d  !I$$95'ɓEy%_/`A䧩%4@ښDZ -5PZ(Q8 7# mǹ~ꨨ1K iPol f8ڠI1qm۳ eP$$I$%) I$I$$)!I$I$$!!'OI$I$$!!^H$I$!'I !*** I$I$d!d I$I$$!!I$I$$!!I$I$$!I$I$d!d @$!AH!"8@ !!` $!  ! I$I$$!!pI$I$$!! 8*I$I$$!!\TTTH$H$!|xx~I$I$!A jJI$!#۰$!!I$I$$!!I$I$e)I$I$$!!7?I$!&I!!'I$I$!UUI!H$Ie)$I$!!@ E)" J!%) dB %)    E)!IIE)!//۶ kE)!8ڸN$1&I$@$E)!zI$!0E)!L!0E)!~ I $!!H$IE)! A A$! @ 1H$H$E)!]S4-%)A@@_I H*US))@@@@[%[&E9%!x۶%[2lE)P0E)A@۶5h&%)PBE)a@E)I$I$E)$! @$I$E)! 0 E) Rrrrk [&E) @E)!I$I$E)$!I$I$1 %)@!%) E)$!I$I$1HHE)!HA$A'E)I$H$E)!I$I$1E)$!**@ @E) E)!I$I$E)!"I$I$1 E)!IdIE)??[-tE)`,H$!$L@$!<E)$!mѮE)!I$E)$!E)!HE)!I$I$E)!I$I$1I$I$1I$I$1@$@E)X E)!hkA$@$%)![[zBD%)@iX$!k$hmE)((@ E)!@%)  E)!E)!I$I$1@ E)!>E)!H$@E)!@$ E)!jjj $I$E)!}{g@dHE)! I$!  1H$H$! [%[E)p.HH!8:<8tmE)!HIE)!I$I$1@$ E)$!@E)!{` E)!< a'%i$ 7_Iy%y$- 0 RE%i (E%yhE%yzꪪ죱@Ea~ h%y@_OaB0IbǦIX8UU* yn a8U I-7%q@U*6hFPկInEaU  ۖ Ea @ $E% V҄OE$ W$E$VIB$ME9U$I$$1$ I$C&$!` @%)A``$I$$9AII$ /A $ 6I$ !vH;E):?f1+& #EA/KI$ u JW-I$ia_Ivm`U*I.HI@:h-9i _{#jҢi[ckJʸnƆX ƴgJʷؾK9O8)~rpK)5MM)­*StJ=VDUxjޕw]j{{R4L#VMJ®t\ U@J»^`p'JuGQ! *JpVf J CyS3JRe݋1ijA`@ _afa-If1m1I&f1!{2f1!쬯6D,*e) @>BRcv*e1 pnm. E)`@ƎmE) q~wI=?? q{JfY+ 9X#:yE1xhhM1Il%)Ҷ-ڶ%) έ˺ 6m7f1 g6m 0f1!■bm6ҡ1!o=1!&C&4f1 jzvIIҢ'Gsx[ ]aS>&J` w6k~V聬J©e] ۋ[cVۉ#jʣ~n` ۋטn߹^ڋ{iڋvY\ٙœ jº⍗ZtޤQ j^{X YaJ0=[JsMJʪ.6~_kaJ‹dnͪj6b*VnJҪJh'dFkyݟv~߸M_ts ~e8)ȬJڬ\r'H<1!V2$f1!Sm[:`E) dl;!BE) uM^ L$%),9a)I$I$d!d I$I$d!d H!< !@I$I$ nI!   !@!I$I$! I$I!VW՗I$I$E)I$I$d!d I$I$d!d LBL$!((I$I$! H!,$I$I$$!!>I$I$d!d $!pH!*,< ! !bI$I$$!!/_  !b@  ! I$I!= ! Ȉ !I$I$$!!I$I$d!d @$@$!AII!55%! ,$m۶1B*'ɟ$f5_>wI$-W6HDZ 7[ɑAǹf 0" A%i@/ёFXz w~:f8kʌb^}h%0^I'Z-`zvb'`~!$ 1$H$! I$! I$I$d!d  !@I! * H$!(I$I$d!d $@$!H! .>I$I$d!d  !!@ $! I$I$$!!I$I$$!!+I$I$d!d I$I$!~vVII!==I$I$$!!:ՕH!<I$I$$!!I$I$e)I$I$d!d I$I$$!!  !`@I$I$⫫! IH$e)H$@$E)$!E)!kI%) % d$dH%)!ؠ$E)!IIE)!mdk2$%)(`HtB'E)!(@$@$E)!zI $!I$I$%)! $!! H$%)$!I$I$%)!H $$!! &`$! `!ɚl%!  1Њ%iH*Q2.)$@@@@ HLE9!I$I$E)! *[2 E)`Am۶E)!$A$E)!*I$I$E)$!**۶m6$E)PI$I$E)!E)!s㣢R"8)E)p@@%)# I$I$E)$!I$I$1I$I$E)!E)!ê E)!I$I$E)!H@E)!dBh3E) @!%) E)!I$I$E)$!** E)!J. E) I$I$E)!I$I$E)$!@$@ E)!IdIE)??LB%)!6I$I$E)$!$0%) ``E)  E)!I$I$1@$@$E)!M֤Mn%) ,  E) 'I$I$E)$!I$I$E)$!I$I$1 E)!08%)UUU5I$!8E!UnI!@E!U_ kI4b8E!U6lm$A8%)UUۺ-Ò$A8$!UUݖn)$)!dB&dE)!$I2 $!@ۖmنmE)I$I$E)$! E) 'I %) 6, %)  I$H$! & E)!jo$@ $! I$I$%)$!H@$E)! E)'I$H$!X@@E) ##$E)!.E)!  E)! @0E!_ @$!8%)UUkI$A8E!UHbP)+w%qH - IOE%q*+hI$I$h@E%y iE%qꪠu2Ea_Iޒۦ Eaկ* ݶ-7LEi*ܶ &EZ#~F$ ^X'E$^ H۶oEY$Tٰ]m$1$  0 E1$! 1 E)!@$$! I$! $&$! H$@$$!!I$I ?AI%)3$@%) 5qjf1* &DE) H ˄IIjڢ]fW jZ1Yr6r*ҭg.Jڈo 9YWkڤ?f4TS&%9J*+peq~47} Jc|`tzVJ_&m9qJ/>]Dn WVb}JStMάW,)‡,t^aH: gj»+^bi_Yjʨӹb~6ڋʕw[E:.j£{R-> JyeQ ROyeIxxxr 0 E)h I$%)nnf1 ?۪!4e1!>l^V1!o'@$@E)!2-<ȑ_ŦM pc/SWjʪ eڋWa6ocjʮi⏒bv[ڋ7T\)ni Jªff ۋʙ+bmKc: ۋ:_lXkҋ`ʞhhNu\\\ҊyO\PV*Ž!+uWӳ2CJRjkF~gI8 SwauZvMj߻Ύe*K)jҪ2mқogoycܚڪ̪ofh\ kܿ];mJҪ hLQkڗ<ȳ<ɓ?l}Ն1!cޫD)"EZE)B u;p]e1r e)pIl$qE)ٷ 6s(YKkcC$ $)@$!I$I$d!d I$I$e) @ ! pI$I$!H!8!  !II!55I$I$!( (I$I$$!!I$I$$!!?? !(*I$I$ &.I!*((I$I$d!d I$I$$!!_}!b ! !J ! I$I$!I$I$!   $!@jI$I!Ah*!aI$I$$! I$I$d!d I$I$d!d @$@$!ApI !%%-I$I$!  ! H$! 8I$I$$)!Ubwc;$Ab$ɟ$fq%_:I<U8Mħ6{FX:ǹib1O a<0ͲIH媀%OR[ XWb E0 ORd hpzIl۶ `^ )肖!I$I$$!!*?$!I$I$d!d @@!8H!>(I$I$$!!I$I$$!!>I$I$$!!I$I$$!!! 6I$I$E)I$I$ zII! ' I$I$$!!5I$I$d!d @$!``!I$I$d!d I$I$d!d  $!@`I$I$$!## I$ %)!ꮯI$I$$!!@$%)$!H$@$$! I$! @$H$$!! E)!mWvd[f1!`@$E) .H$LB&E)!^^^$$!`$IE) $I$$!!"I$ $! E)* $I$!  `&%)b( ؘ:C8%*kkiP%NfqHQ8چA!cE)!I$I$E)! E)@mVE)I$HE)$!(((*[2dE)P4I$I$E)!⠢$I$I0E)!IĄme) RS@$@$E)!I$I$E)$! E)!ݖn64E) `I$I$E)$!I$I$E)!.I$I$E)!H$E)!44EE)!...!@E) E)!@$E) ۶mHפE)(I$I$E)$!I$I$E)!I$I$E)!ꪪI$ E)!II!:::*E)!I$I$E)!ꊪlnE)!ʾ. E)@ !$%)b "I$I$1 E)@$@!$!I$I$E)!HE)!I$I$E)!+I$I$%)E*`$b8 H$IA81Iv`8U/ -%q@U $ H%q@U I?l hi@Ud+Ha8UNbl iYB8UIb; iPb0Ui$k lHB0_$mAHE)_ېmb@E)U*@IBA@E)U[;IҶb@%!UUZ`i$A@E!U$b8$!UUWn8E!WU$A 0E!`I$I$$)E!wLB&L&E!!~H@%) (K$K$%)|Md밵%),& $8%!U)I$1 $I!@E)I$@!0ߪI6M X8UU*v9`8U In7%q@U{$%yP* N4 E%q*h$EEym۶uAEEy $I>E$ x$Ex&E$X P?EaPIЦI1 %1$!I$I$E)$!E) H0$HE)!KmXeE)! IE)$!I$I$1I$H$$!!I$I$$!!I$I$e)@$@ $!@II$!b-=-I%) O;9/СCe):iH f1!槻\yGI'*l+kf⣭{JoqۆkڰtWU{+?lWq[kڝsgK"mדjNiOkҺ7^]o5E2J.j|[״ Jʾ|XMBl.JWq>$%i,*`{NVݔ*ª˫Tmxäjšbk(cڋ|mh_ڋʛbjP%߾ ۋf(Ŧҋht%{[!Aqaj)dqlڋu5~ShJ®v^~j?|OP2kp WȆ9((Ҷ[:4f1!kͰuf1!&fg͆1!4f1!fL!H2!I%)ꩨڶXv%) F~mvIE1:*yeI ZUէEIzx-'28e1!lΏ]e1 ؾ B"!CE) Moi5, f1 z `$If1 *߿akC׶qkʡ' |L4W-M*¶dڤҋU%|R5mJ/͌dyiokʽ8NւK- *®jgkz4zڋʞ.e-7)ڋ{:m]`ڋkզ ۋ?ܓ`mmޫڋ|K#16w)ªhV6*¶^Ԥ8Vjl:Xk'!JJʾɊe3jhgɶ0jҹ,fkTQPqJ" rKrڃy*yOގ=dwSJڲk*2,@@ :fAჸ1i6iE)! I&\+f1!}JmH=e1 [Kk6%)m4H%)ST.facI$I$)!VWWUI$I$d!d I$I$d!d I$I$d!d @$@$!``pII!5% !I$I$$!!* ! @$!BB`` !b J!  I$I$d!d  !$$!bII!*. $!* I$I$d!d  !  ! $  !b! I$I$! I$I$d!d I$I$! ($@$!rII!7//! I$I$d!d I$I$d!d I$I$d!d @$H$!`pxxI !- )! !I!6-I$I$E) $!J@`jI !5%%%I$I$$)!5u}U@bm$9p* $%iV"qZI?f +6m;mӲ&ǹ3$f1 3H%q+_[@ꨘ%(ꪀ I' hzI$N`$^H$@$!! p! I ! .' !N  ! I$I$$!!>.I$I$$!!(*!b!$@ !PI$I$ II$!! ZI$I$d!d I$I$d!d $!!K@$H$! 8I$I$$!!.~WI$I$$!!@$$!````I$I$$!!=5-I$I$e)I$I$$!!I$1@$I$$! I$@E)!$I$$!!$@LB%) m+ E)!.I%)H$I$E)!^^_I$I$$!!I$I$E)! $E)!I$I$e) $!!'IIE)!HI$$!!0$6  9E:::  iP -/'H"."ɆHHnjYAeA$E H2E)a@ذm6E)A$EE)h IE)%X&[mE)PMVltE) 4(@$A$E)!C0C0E)!bbbbm&fb1ڢI$@$E)!`$E) 8 E)`dL%)P(E)!( E)!I$I$E)!  E)bE)!(ۆmM$E),I$I$E)!@E)h-ۺme)!I$I$E)$! I$I$E)!I$I$E)$!ö!E)A@LI$! I$I$E)!I$I$E)!E)!/I$I$E)!I$I$E)!*I$I$E)!ꪺ @ E)!ʪIIE)!E)I$I$E)$!*I$I He-I$IPe7 I{iH]/!Ir6U f@U+ 5?P w wf%q $EVN%$ W$%y$UVI%y$*Ud  '%$_mm'$ USېEXU5Obd EPUIb$ iEyHU o %qHU I$ i@U d Hi8UObm @ab0Ibm @Xb8UIb& IPb0$$$ !@9U"Ð$mn@E!WH$dB8$I$dH@!0ߪIǶIX8U* yn i8U I-7%q@Uo$ %yH ]r Ey`ի [r$AEi* IHE%qm׭FEy_/۶m:EEIx$X$E$U6IE$h`$I$EhUIۮɚE)- ڶm6E9$!}E)  `%)  I$I$"$@$C&E) jzE)!E)!$IH%)((]7l[E)!IE)!I$I$1 &`$%)XpE)I$I$e)  $!A@I$I A-)/ %)#91hE)4f1cH2LPf1 ~ #IaJJ*fh؄cjJ(+h[Mkj ,kHk˜xpMO#vNYB"n*Jidjrk*ZZwJ~"ڂf*ak`G^ijʹZv}bLJ.y]ФJ*׾h̏ڋ6ilpjڋʟ=c ۋUΐlϜL7ڋ~^¾Ƕ-jK˿eyOI| ۋuա{g1F4cҋ{uYg^u JόPIb*¾BWJ'r'#AkX` {YQ k{f1!dH;f1!~kf1!0ؤ e1!Wwvk7,%)* E)1sE9+ P:_fYpzzz xfA|qiE)[#I2L$E)!7 NyfA!WU-dI4`%)P IA$Pe $$IX9*߷EH+/.G`+<q$Gǹf* A4I$ǹbpDг'I'pɆ[$1$  @$@&%)`E)! E)! $I$%1%! H %1$!HI `۶m%1EU 'k%Y$ _'E%UvIE%U 'E% _$'m$%$ UlKz%$IӺ$ EiUO$ mEaUR%yXW֒@%yPWҶ%yPU%yPկ [rEyX [R$Ei  WM@E%yտmEEy- 4Fa*`$ $E$W IE$U$$FUIB"Ie1a͖d%)!'  E)!/I$H$$! E)!C$%) PE)!` E) I$H$!vttt!!E)+E)I$I$1HE)!!-e)! @B0%) p`$I!E)!@$@ E)!jI$I$E)!I$I$e)@$%)!I$I$!A'e) εE)!^6kʆ1!mYM9f1!` ᚶ_;fI$!=1L  'n+kڂEvZJ5{q o.eϠuho e9Qگje;{4*kһH^ӁJʊz_ڋl_kۼڋʢd 5܊kʦꨍfeɒڋg40} ۋ_fܥVڋۣdGVҋ6.x[:4[DJʀ0S~kߖrJ·C9~[.iMG J.YW9Jʲ\o[)o{JʻB+fB_Եjjm6ʉk*iuW Mڸ.䎑o37I)qkڦ=pV}1%kmX^4[TjҮ#Ho$I$!a H$H$!!ب A$!I$I$!I$I$d!d $!`@$@$!HI!. !@!  ! I$I$!H$H$! ( !  ! I$I$d!d H!I$I$$!!tgH$H$!| !4I$I$!  !A@ ! I$I$!@$H$! I$!I$I$d!d I$I$e)I$I$e)I$I$d!d  !  !&`۱m$9! UUU1ɑ'ɓ$7_3@I9 6觯0:DZf x5M E) II$.al"‹kn۩gp Jڂ xmh Jk|ﮫn ߴ@? kں^lee\pk{[q >ןXc.ׅKJ~UziJǿS 4ȹq p$ʣȏ$I$ARE)U Ie)$!*I)(I$I$)(H$e)$! $H$Ʉe)E)BJ$E)$B2$IE)!ʬ#6b#1!MOO$!E)!I$I$E)$!I$I$E)$!*[ ۶mE)*  E)!'I$I$E)$!**$B$IE)!*E)!K[%) m.-nE)Ap @E)(I$I$E)!( H$I$E)$!( I$I$1I$I$E)!I$I$e)!*ɰ۰ E) H$`&E) TTT^&E)!-I$I$1E)!I$I$E)$! E)`&DE)  ذ$Id$HE)U%k۶m P1 %yH+*}w@ a+ O}d e A0ǹ$ p,p$p$I$EAE)TUUUHE) 4,I$I$1H$!4,IIE)!5I$I$E)!.>*L$%)!6I$I$1 E)!.I$I$E)$!nKvE)!>@E)! I$I$E)$!I$I$E)!I$I$E)$!*E)@*  %)!  IE)!/?$@E)! $I$%1%! H$CE9%!NBA1I%9$UM2[5$1U `1E9%@$I$E1$!I$I$1@$%)p-nfE)!Ϯ+-ڠE)!KH0HE)!E)!I$I$E)!*HHE)!>@&H$E)!E) I$I$1I$I$E)$!** E) @  %)  %) *E)!I$I$1@ E)!KdmPlE)( I$H$E)!0 E) ` E)I$@$E)!I$I$e)I$I$e)  $!A`@I$I$A+ !!0$) UqjvcE)*˪h f1!&-ڴ]۵E)! ?7QOo* )` p)ݒ kwϨj.ӳ4[koKu.<ߑg jھjɞڷ kl}>Pk eac*JOU*±Ukrj/^[ j_p6Eڋ;n٩Hڋʻiٶ _Bڋʺwe|Eڋ×kbp'Q; ۋZ_O&6jʕj|e-@|ҋw~|Z| TKJ.z^ϥj~-zM%c[gr)k˺vI䢷(d*)jko"0Aj!@[y$M$)[`i۶%)p7wi----Jyfq"s;?axzxxNKa[%1$.Qm҂{Wj-SJo?vP*#Q*~`m$ jSg۾gҋ=ap[bҋʼ0 e0;f ۋʬ}b3J jʻk ۋ8k= ۋѯǂb2' jʬ` `-Ycڋ®ys]Hڨ/j$lX|ppJ;W'yAJ£=~MJ1)k>cpXj]~{%Jʯ^IueVJ%;fm[? jҿ϶ol1Ykj1kFjګAΑi[CӲjrgejK j[vS"%p$pr=;HE9%!^ms 1!'5Rӆ1 {I.5cf1j B@B&$) II7 XH$fQИI$I$$!!I$I$$!!I$I$d!d I$I$d!d @$H$!`xXXII!5%% !@!A I$I$$! @$!@`p !%% I$I$$!(**  !@ !A $!jII$!!*"$!** I$I$$!!7.:! & !I$I$!bb !I$I$!(I$I$$!!I$I$!  !HI$I!ݝI$I$E)H!I$I$$!!oI$I$d!d  $!I$I!?* ! !AI$I$d!d I$I$!(((I$I$! (H$I$!!h(*!I$I$E)I$I$e)I$I$!! $@$!HH!(8I$I$! @!I$I$d!d  $I$1!EUU-y䧡a _3 T%7,۶mǹ5A/m?ɧբA Ҵm ;Ei|> Mǹ-? &mbǹ%y ;'SHȹ~3f_0 Hq_&Obc mXWOb %~ I$l`VI$I5PI$I$)%I$I$$!! ! ! I$I$d!d d!d I$I$!VVWWI !!@ $! ` !aI$I$$!!*@!` !@ ! $C&E)E[EۥE)⢲IHI$!!&$! I$I$d!d I$I$$!!I$I$$!!* I$I$d!d I$I$$!!n $!@@ ! MvnP$ ''ywwfP----HCqm fzLK$K$ȱETII$E)!(((I$I$)(L$Le)$!(I$I$)(@$@$E)! `@)(H `E)  $E)! $le) ʏ6lݖE)! I$E)!I$I$E)$!* I$I$E)!8I$I$E)%) I$I$E)!(I$I$E)$!@&@E)  E)! IE)!%I$I$E)!I$IE)$!* ۶-mE)!@$!dRE)llE) E)! >mIuE)*+ dB'P$E)ذ-bE)  I$I$E)$!$@E)!I$I$E)%!* $CdB@e/i۵ÆPE7 ߶iHUտ/!IwfH+ ,yww%)@i74 5`<Œ%O<P!l۶EAI$I$E)$!I$I$E)$! I$I$E)!ࠀ`E) $E)!$I$%)!յI$I$E)$!`E)!I$I$E)$!E)! E) &۰kE)!*::"MdE) 4E) E) ,6I$I$E)$!*%)  E) $A$E)*$E)!꺨@!%) I$I$E)$!E)! E)b E)///I$I$E)!I$I$E)!I$I$E)$!HkmE)(4,S ERE)! .*!@E)!덋E)! %)a@! &E)  [-۲E) E)///I$I$E)!I$I$E)$!I$I$E)$!*** E)ʈII$!::;+ E)!I$I$E)! 1 E)!ﯯ$IE)!I$I$E)!I$I$E)$! E)!ꪪ I$H$E)!I$I$E)!o$IE)* I$L$! ! E)b*M%)&cȶ)RE) N(mM!E)!ۮl+f1!϶II$'7ߨn񜇸 kܪp5 lk篧fJ9&Jڤek2JҪkz4)j=KnkVKfH=jҺ`xԚYjdhnM7ڋ}vUlyRȅƂ)€xZc9v0Jʺ~W>5J_b7ҋou՟V%֚a~ jŠ9c}TAGj:tpګНjeN ۋ[|kngTb ۋR/q ۫~ۆifҋ`bYO,jʘ#bg̭kҋSܘ6J¢TJ JF6b5 j{N`*Jqp'h"&ka$A0$H%)j?T{Y!%%%Lhyfi٢ixxhq[%A!?j)B  zSbJ卣{Eqْ c,ka:mgn ۋʼmnb%/KZkk,ˌ]X-vj @:Ve۶Nj?_b5: j{ouXڋʟnoҋ; (^_0jW>&jT^tZGnccJʚچr[M(,Jʫbamjʿ߈]Y~HJ)g@Ok*?j|qoE9syfuKjڋ>l~К\ kߛp1VgVk ?+h|s.dJn  i:(P@.q稉Em1!Zfuf1 l͆jPe1˖E) kIN#e)b& ?Y7'HI%1 !`I$I$$!!! d!d I$I$!^VVW ! $!@$!PI$I$$!(*(@$H$!a!I$I$! I$I$$!! $!A$A$!rI !  $! I$I$e)I$I$!  !I$A$!!I$I$! $! `!$@$!jbrRI !7'I$I$E)I$I$d!d I$I$$!!XfI$I$E)@$H$!II!**. !@ !  I$I$E)I$I$!(  ! (II!55$! p! I$I$d!d I$I$d!d !@$@! PII! %8I$I$!  !A@! ! I$I$)!=UUUNp''Ea{6$I$W$fy`I2c9ULdm$99!I䧹 _:D@y$ǹ-W<4I ǹ%Y 9ڤ! ǹf*H(<i DZa53$HE~0Ii_%Obc mXUOb? ^ꪀ I$`I$I5X$ h I!!&I$I$$!!5o !I$I$I ! J!I$I$$!!jI$I$$!I$I$$!!J$!`@$!p!*(+LȄ`B$!!,4dB&H$E)𰨼 $!A !a@!  I$I$d!d I$I$$!!I$I$d!d I$I$d!d I$I$d!d $@!p- P$ y9fX----?jDǹY ?J.X&%H$He)$!(( I$I$e)E)>+ojLX%E)$$I$I$)( $E)!)(I$I$)(IIE)!**** ڢe)! &m6mE) bBmE)I$I$E)$! HE) E)!Ȉ(ɖn6l%) I$I$E)$!(E)!ꪊ E)! IIE)!5I$I$E)! $I$1I$A$E)!I$1@  E)!Km۰-E)8 @ PlE)A&I$@$e)ِE)+ I$I$E)$!I$I$%)EpI$ $Pe-mKuXa (%yH -}w/ Y+ D]Tf+J$ʼn$DZ`6py$X %9!I$I$E)$!I$I$E)$!*E)A I$I$E)$!I$I$E)! E)!II$!``E)!@E)!  E)&&E)!Mm۶mE)a$ E)!*Ȇm؆mE)!$HE) E)!$((I$I$E)$!*!E) H%)  ! E) *!@E)!I$I$E)$! E)!?*H%)IIE)??I$I$E)!**I$I$E)!I$I$1I$I$E)!t@Z$Ee)!>>:tMnE) E)!*I$I$1`B E) [%[ E) PII%)??I$I$E)!I$I$1I$I$1I$I$E)! $@! IE)!.?9HE),,I$I$E)$! @E)![&[!E)!؀%) I$I$1$E)pE)!%)@!@%) H&@0E)!`iI`%) $I!2%)*EMBe1!vdXne1!mf1!/ /"wIJK*.pMC gځfKډqdI)YkںghE$CRjbz[ҋ˜`]M}t kʷio67-oOwiXQś@oڋʸ*f*RڋpcAw ۫_٢ZCr? J*fWy ۋYQW +-J¦x`ͽNk~UۼJG3))S쨮`JʯVg[(bϯJCh]yGJʾ#SggCuUjk t*ڎh>lJtG5=:rml:G&id]jڊNu *z%r$`p IߵfA%!wڠTrv1(2 e)e)!81 ?Zua0$I&%) ;N)h" r4UfYAcH$I$$)!|VW@ !`!I! '$@$!`I$I!Օ%d!d @!bI$I$$! I$I$! H$I ((& I$I$! I$I$d!d I$I$d!d H$H! H$I$!w} !I$I$$!!qI$I$e)I$I$E)@$@$!IH!.I$I$!I$I$d!d I$I$$!I$I$!@$H$!V ! !I!&$I$I$$!! $! I$I$E)H$I$! !J  ! !  I$I$d!d I$I$!  $!Jjb !@!`!I$I$d!d I$I$d!d I$I$E)HH$! ` !b -H$!I$I$E)I$I$d!d I$I$$!(**I$I$E)@$H$!I !'I$I$d!d I$I$$!!o!a I$I$d!d jvl'e9!ZIp?ɝ$Eaz8TI<%W:H䧹 :$@3ǹH`9/% ǹU|4%z63DZe^/OHX$Obl XUOb_ꪀ I$` Wc;v1YhI$I$a  !+ I$I$$!!??I$I$d!d I$I$$!! !@A !a! I$I$! $IdH$! 80kKE)$I!66I$I$!$!bI$I$d!d I$I$$!! I$I$E)I$I$d!d $!'I$I$d)d&eQģP$2w7H///<IR Iǹ%iUD'38ǹZZz`iuXv1I$I$e)E))Pb"&E)I$I$e)E) e)E)rr)(I$I$e)E)/*IHE)$!*(((Xuv1!7vE)!%۶ 5%)@۶mŖmE) I$I$E)! H$ $1I$H$E)$!  E)@$E)!I$I$E)!ꪪ $IE)>>0E)`II$E)!"H  e)$!  )(  )([۰aE)@ٶ ضmE)ab":9E) Px`PɖlIlE)///ضHE'AIP$  I$v}%iHUկ/ɟoE P*4vinA8 $EM0-DZ%@>%N<ǹP *k۶E9I$I$E)$!IIE) I$I$E)$!*I$I$E)$! E) $EdBPE) I$I$E)!*((,I $E)$! L„L$E)B E)@0%)I$I$E)$!I$I$E)$!0E) `I$I$E)!6lC%E) I$I$E)!$I$I0E)!(*E)E) LE) &H!(8 E)!E)!*I$I$E)$!E)!I$I$E)!(I$L$$!?I$I$E)$!(**I$I$E)!I$I$1I$I$E)!I$I$E)!⢣؆mHdE)(HHE)!> E)a &I$I$E)$!ꪪ*`Ȅ E)&M$H&E)f|ۖnɖbE) I$I$E)!I$I$1 E)@L$H&E)!VV\YI$I$$! E)!E)@!%) IE)!*:*Id؆m%)(I$I$E)!`&E)I$I$E)!I$I$1I$I$1E) J*II !!))D (E)%9 :E) xxf11'u1 ;96$cf1!+뛞ɐDy$7_hYJGJһhDžюJڲ*u-іu/gFeG jڳinij⭢x/Qڗh*E9jҢ#eKkjۢ/d^ձ1j=^BjVJhE&fi, ®cRH׺z.*ƒk[v j܇RJߚ*=_Q&K3ҋ!na-,Gj@*f0ܖҋHso2S- ۫_wkg ۋ.[LYmQ jʶ>fvvfDڋʯ[dѡ@jª P9|1Y *z6yZ`VJ¿xKܺ5 )z9R35A`b`` >* I!! I$I$!I$I$$!!Yq_H!I$I$!@$H! XX@$@!PI$I$$!" IH$!'I$I$!@N\wNX()-NH +<2c ȹW;#\\$*2=ꫧj#^͆ jڊev>u Jߊq|Dzuҡڶ_\L%JҪ&_|o2 jJ멈a[u6k|V\dJ`j{K}N4aJ ^`jطߗQLr J¦,[*FSj{m࿆ ۫/sVaK&k Jk׾ ۋ6f ڋʶߠ`F~q<-jjfjW̺ڋci6[gkʹy[8oj½}[.efOJ¯"w"))kʡ@@@@HMhE9ԨlA[ewe9=;? NRyeQ P yeAxxTlv,E)Ҫ0}IIk҂''7yP>)I)\۵jݺ_\yoتjʪԆmwJҋʛ(?\J j‹sm?ګnS̓ ӫ/w،]浍 ӊ£XNDI#Yf)²V9>jʵ^]zRDzB%*"> Y5ÒcJnˍ\vw3J/odۚSjҸx c/jҽ˜u~LC֡t1Yhlkڱ8k[ uk jZ+tF2kګs:\tkGJҢ.*B'J$púeA%!|۶h+f1!I E)!xA!IE) Zu+$$$I!  0H$) h 113fIaCb!I!I$I$d!d  !@!H$@$! 4$I$I$!Vו!I$I$e)I$I$$!!J !((@$I!b" !I$I$d!d I$I$d!d @$!a`A$@$!ⰰI !''I$I$$! I$I$d!d   !@$! I$I$ ! ! I$I$E)@! H!(  !JbI$I!?/I! 6I$I$d!d I$I$$!!! @$!A$H$!꺺H$I!(&I$I$!((*  !@!a@$ !``I$I$!Z^Ԗ!((*I$I$! (I$I$$!!z*+!I$I$d!d   !A$I$! ؠ@ !@!I$I$d!d I$I$d!d I$I$!  !I$I$ nyA !b$!I$I$d!d @$!I$I$!0I$I$d!d @$H$!ؠI$A$![!H! $I$$9!5UUUPb m$9X :y$ 9T I$5_5IN 4aDZ` 6#-} DZ :&\)ǹiت<iǹi4-OH`W$o?c i8zO %0_ I' h$I$NX$ ~1$lI$I$)!U_^I$I$$!!-$$@E).I$I$!I$I$E)I$I$d!d I$I$!!$!8!&I$I$$!!??HH!b,I$I$)$JMT`H7--`p 8 73؈ȹ>"-.DZE @@X E9EI$I$e)E)* Aa E)!@E)b @E)BJHE)@e)!B6mE) ېu]E)!"kHE)!(IH$E)!**H$H)(@$I$E)!I$A$E)!"A  E)!I$A$E)!I$I$E)! Km۶mE)4M&k&E)E)! 0E) )( I)(I$I$e)E)/zHHE)!(!BHe_7$I$P  I}aH ɟwYfP A 붥Pr%y Vnۖ40Ea `MŽ%O$$P 9mEA⪪E)! I$I$E)!I$I$E)$!I$I E)$! H@E) T\\X!I!E)!#IH$1II$E)!(( E)@mmE) [%؊mE)`m%k%E)!!E)  6 @E)A I$I$E)!*  E) I$I$E)!.*I$I$1 E)!Š I$I$E)$!  I I E)!E) &I $E)!H%)`2 2E)!!2E)b jE)I$I$E)$!I$I$E)$!A E)!@$0E)`@! E)a A$ E)!I$I$E)$! I$1 E)!.E) (!I$I$E)!ꋊI$I$E)!I$I$1I$I$E)! E) IE)//?I$I$E)!I$I$E)$!I$I$1$C$ E)!踰I$I$!  E)!.?;I$I$1I$I$1I$I$E)! E)@$I!E)!I$I$1I$I$1H%)8E)&I$I$1 %)@ $I$ /ɒE).>rXl;e1&Akn5we1+wdf1!/N`qf1 eIϓ<*}iŖou6[-Kޚw{7Vuwk /liGk諾f "EJc(([! VbUJ(#`]FJe6>j}-|[bj:iJʺ⢒]5;-Jʮ~{emkʰ c~9ܔjʯϮy_/¬jϭB24[ ky\XQ#jŠ"g_ꔴ ۋXko-=ۓi`}˶ ۋdfqȅrjʫ4i+rҋ^L0LjbꮆY3#bI7Jn~N1vy*­2›<ڇJbQEAamQl ЦE) ?#NyeI ))-PцyeQx``4Te94lIdIjAN;<)]Vqj.-]^nJ£ [X[vjʋ6[67*9j«pe. ۫[npo?-jSPkۖeFJ¸3Xm˰J{\%qlZJ"ʊQv\B*ˆ |e$\6ko_wbfVܰjқ2p펇m'ٯq]iAZ\6k;:nt,Kڪ겠p:|wM3JGڦaڤ"NJ J(o\X48kښ~( &@` a?fI-SԆ1$)qk_1!d?je) 'qh:(;E)jDB&L„!#+ yDOQ?' xϟeY@@$! 8I$I$$!!I$I$d!d I$I$d!d H$I$!x^II! .' I$I$e)I$I$e)I$I$! H!4,I!* I$I$!(((I$I$d!d I$I$$!(( @I!h((*I$I$$!A!"$!`I$I$$! I$I$d!d @$@$!I$I!?I$I$!I$I$d!d I$I$d!d I$I$!((@$I$!a !% I$I$E)H! *$! `!@$H! 8I$I!(&I$I$$!I$I$!I$I$d!d I$I$E)H$$!I$I! !@ !I$I$$!!?v !I$I$!@$@$$!HH!:<.I$I$!( @$!p ! I$I$!I$I$E)$H$!!4I$I$!۟I$I$E)I$I$! !&!H !0I$I$$!H$H$!ܜH$H!ܼI$I$!(H!<I$I$E)I$I$d!d I$I$! $I$9! UUUIB i'9U@<Iǹa_;$H$ǹ U;0 Дf** 8 $IDZa4.hDZ4&z4@f_/ 3@%yW(ORc h`Ul FH_o͋x_(I$ h`$ .-Ph$I ) !(**I$I$d!d I$I$! I! 6H!(!I$I$$!!OoI !6$CdH0* uWvi@///-51N ǹE 93 ۋǹ=,,!ǹEq@@ke9Ee)E),E)@$HIE) e)!)E) I$I$e)E)@$@$e)$!Xl@&E)  0E)!8ZضmX&E)d&$e)E)^T I E)! E)!  )(I$ $E)$!  IIe)E)]I$H$E)!((X%[5E)aݖbE) )  E)! I$I$e)E)'؀ ۀeE)8 E1EbH$I$P% H Pe! ɟ{FyHտ &}w `խ/H{E*Q#7S'`\7h$y$X}`$N$fAE)\UWWI$I$E)!öuKE) 0aB2!$e)$! I$I$E)$!" I$I$E)$! @$ E) E)  H$H$1H$I$1,E) @[EE)!@$I$E)![,C&E)I ItE)A6 *H$H$E)!(((( E)!.!E) I$I$E)!((I$I$E)$!($A$e)!.*:,E)$! *I$I1Mm۶aE) &I$I1I$H$E)$!*(((`B&dB&E)!xx I%)/I$I$E)!⨪I$I$1I$I$E)$! *I$I$E)! . E) IE)./? E)! (I$I$E)! I$I$1زkdE)@(8mh%) 4$E)**6I$I$E)!..I$I$1HE)(I$I E)! I$L%)$I$E)!I$I$E)!** I$I$E)$!A$ E)!H$H$E)!VV^Z E)!I$I$E)$!I$I$1I$I$E)!@ %)`@E) I$I$E)!I$I$1I$I$E)$! Ih$%) ' E)!n%) H&@ %)!`mI4%)b*?bm%) t\k;f1*=ye1 I6t@Ӡf1! I$!=ݸ9TI$ 'ߛi]<׷J"&lh@lkھ'r&vhkګ)/pBAŕk!yk _ml.ھkOyk'3ڲ_ooy{vnӂ;cml jҪdlRj.V]2 JkBS-{Jʊ[RmjWݟuQۭBJZjYԎ[-j]ҚhҋύgJkC}ڋpګʣkoΆ ۋ^ʨhokʤ|]ʦjŠ{w]c돫JªrA$n"M)J.(*%9u:E)?*z OyE1++'/ yfY```/'͇fA\wpGy?FyvN˪)謜W{2 J/j~Z"kg;JjV@vϺj_a8l ۊ™>~}Z$ W~jj1zZh"J (raǜ k1j+_Fj{}fJʾdJXj譠OnO)˪*Θl~ҬgihϮ6J誧d9k jҳ"n̵{py ?vٻ-kڼkfYfjڻһzV\8Rhˉ*Қ*ӰM<4`yH77I$I$E)I$I$d!d  ! @ !I$H!c !I Ʉ!!$I$I!II$!!( "I$I$!* (I$I$!I$I$!I$I$d!d I$I$!I$I$E)@$@$!``xxI$I$""*E1!*I'$f%_;WI|-74# w40DZ 44I$I$DZ40PDZ6*3ǹ_3&f~13@E_, Ha_"I mfXUO_,I$l ` ^I$N`$^I$I$1\I$I$)!_W^I$I$d!d I$I$d!d  !!  IIHqwW7q%qb0)+++4% aZ 44I$I$&?vvI]7o{qeګt vUuq,ϘNku.bHz8fSjzp.^v(IMM Jʟʈl.OڋΌ[SJ{򪧐col;jUU;FJRKJ4*¡r{[u=jʿ[hIvYl-)¿h\}w>jʢyQ%O$ضJj.Vqj*(i0ҋˆX*IZ@j¨V6&gJ˟PY^nTJ;?688f!m۵%)J/Rq%! +)) (iy$9 hfI ^XXX R69#E9 BJJ9[{ |[|nj¦XL{j–yW0ګJrH8 6{[cIլJ⍸WssJaO|c3y%%jZY-mJJhgڋ~`51 j~_غZjҪ)aw;Ejf njlMYYkڷޡY\96JҺnrk@}h JګQ$ˍE!*?JRM$ڢP cmI$!|񐘆1!kA6E)!8kdleE) [. "d$)lf0 $E)A IP )eI/Aرm%AI$I$d!d H$H!(T !bB$!@$I$! I$I!+ I$I$e) !b@!I$I$$! I$I$$!!]YI$I$!I$I$e)I$I$d!d @$@$!ศ@$H$!Xtw $!$!I$I$e)$! ` $!aI$I$ ۟ !I$I$! I$I$d!d I$I$!  !*@`II!5'I$I$E)I$I$d!d I$I$$!!akI$I$$!!uem  !$A$!㲺!" I$I$! ((I$I$d!d @$! @$!`H$I$! !  !@@$ !p I$I$$!I$I$E)I$I$$!*I$I$!!"I$I$E)! @$!I$I$! I$I$E)H$H$!I !&.I$I$d!d $H ! $! I$I$d!d I$I$$!!~H !$I !mI !b  !@ ! I$I$d!d I$I$! @$! @!H$H$!xxZXI$I! I$ ! I$I$9$ )Ry{`*4'p p  42 DZ> "9ǹ@`<y$];4ɛ$DZ_;IDZ=ۦmBF 9$$ ǹ_ꪠ1+iX0  q_,Sd i8wꪀ EH_ Il x Wmc `m۶X$ x)%! $A$P$ /''wwW7q;E@///{4p f 44I$I$&;1v`oDZUU<ͳ<䧱EI$I$e)E)/$@@He)E) I$H$e)E) $4$A-$e)`$I e)E)(d4ae)!,6$C2C e)E)`@BBML*e)!JL$I$! 4VlV`E)!E)!He)E)/I E)$! I$I$e)E)6HHE)!( HtE)d$dB&E)!ۺ-2E)`tɐ6E) ۰ ۖE)a$ !@E)UUBBDJH8I߿%yPUս+..YP <-Ng? DZH 9c$% (bV7`$DZXS۶meAE)XWUU e)$!!#IE)! I1I I$E)! (DJ$AE)I$H$E)$!*(((I$I$1C E)!@ Ad@E)//;II$1HdE)(4 1e)E)* E)!   E)!L$L$$!IHE)!I$A$E)!I$I$E)!A$ E)!۶-ۺaE)ݖl E) [[Ee)!I  1زm6lE)@DH$IE)@$@ E)! I1L$d&E)@!E) )H%)I$I$E)$!((I$I$E)!ࠀA$A E)!`&@0E)!TTXZ@!E) H$A$E)!H )(  )(I$I$E)!*$ &`$%) (p@@E)!뉫I$I$E)!I$I$1I$I$E)! 2C E) `@@ $AE)..;H$@$E)!I$I$E)!I$I$1H$@$E)! I$H$E)!_~!!E)!;I$H$E)!(  E)!6,I$I$E)!@$ E)!ZrbJ E)!%I$I$E)! *I$I$1I$I$E)$!I$I$1I$I$1 &@%) PkR$۲%)A`I4I%)=6'DE)b%kvf1+-Bh2E) ŒC@ҴXWe)! n.f1!: w;ǧikvm@ 'q43zkl}w(lߝwh{[=ynX ڛ47n鹩yQXnlJ^VxJŠtTM<)¢"wVM8իj=r_p$I'H$I$)!UUW$I$$9! UUUhmmҶ1Xy$ɟ$f-_;O䧱_;$ǹ_<(4@6kF a7Ciǹf/3%y_, HP!c if8 ^I' `ހ SP WyfP---4% 54II$%5.(ZDZǩ<p`E I$Ie)E)???>$@e)E)HHe)E)8R MXf1 <'H$I$1E)_$S e),$mӮ-e)E)@$HrBE)I$I$E)!^$!HE)!  e)E)I$I$)(HHe)$!(*( I$I$)(@$He)E)^^ 0)(l؆5E)$C2BE)!j dB2$AE1Az. E IH% vlnYh@+IwfPյ+/vO @ ;M0 fq B@=M<$pN IE1&(HlE)a$I$I$e)E)*I$I$e)E)' E) !e) $I$@21H$H$E)!((( `E)!H$@$E)!( I$I$1 :E)a@I$I$!9E)!I$I$)( H)(I$I$e)E)?LLe)E)IE)$66H&@$E) V^\XaE)!  E)!I$ $E)!  )(atE)!$I$A$E)!"Ʉe) ,4 E)!IE)!)( $E)p۰-ۺmE)!JH `$I2E)! E)!-E)!,I$A$E)!I A$E)!$H$E)! @$ E)!RrbJ!A&LBE)A adE)6 E)! E)! I$H$E)!(@$ E)!Zxhh E)!)- $I$E)!.,I$I$1E)A$A E)! I$L$E)!UWVTV E) BA ݐ E)b XE) LDE) &  E)  I$E)!A E)! I$I$E)!*I$I$E)!E)`$A! E)/;I$I$E)!*H$I$E)!I$I$1I$I$E)$!I$I$1I$I$E)!*$A$E)!L$@0%)a@A&I&%)b鮩ڶmE)n._?f1 ZUxle1>tpf1!/`1!KA'ɓ_VLP %f& JڡgNV5Jʮbov6#ۗkڟuwz^.ڟ=cٙf+p Jکp-e ڏvzh6Ⱥ]u kna kgؠhӻk҆|iX:Jjҫ޼`.YCĖjҫbS :jҲ ބa2lhɡj즬}J\(HѬ š*XyJʹzOd n)ª }\tJʠ̦TxUJ*|I\ )){Wb(ݬJnCkR9SJZ2oJ$p&jaTEE)+p?i-/-/ڭyfi‚#>:axxxxwuf9"xMaj@tW^\JeעwP'SDŋ)0,ҋ\~ow`J`dn0Sjz&fei^ajʪςh^jkۗbFǶ7jң?fdsPTjj#(aV7ֽjҳےdRxE jҀ.>.I$I$!* I$I$! ( !@I! /I$I$!" I$! I$I$! i*!I$I$d!d I$I$d!d H$!$!A!H$H$!x||I$I$! +)! ((I$I$E) !A@@$!аI$I$E)I$I$E)  !I$I$H@I !  I P%?/ I؉`H--ɛ7X+8I)$@H =0ov/=%K<`X&M$$) h$!I$I$$!  ! 0E)  !+ `ێ$1 jm$9X I'$Eq%^>Iǹ_>F I$;iħ9dˑИǹf7CǹE_1  Ii_&Ibc I`U+ywS i-+ 4)0 93mvǹ/83cM,8ǹ=#4A'$@X>X$EP9$K:9zE)!I$I$e)E)1 I$Ie)E)/>>>hX E)! e) %uh&E) @$A$e)$!)(@$ E)!I 1A$1H$H$E)!VTTXnE)! E))(I$I$1 H$@$)()IE)$[%X,E)ِ ɐe) -% H)(I$IE)! (( I1L$")E)4 $I$1mve)! *:*!@$ E)! I$I$e)E)? E)! I$I$e)E)>I$HE)!((( @B$@0E)!`` IE) NȘd!E) 4,ömݖnE) ۺ%[ E)P S E)  I$L$E)!ʈ(($H! 8ND$EE) H$e)$! *($R"9E)pd&!C2E)!E)!ꢢII$E)!I$I$E)$!I$A$E)!Km۶aE)4II$E)!*.L&@0E)!\Pp` IE)! 7H$H$E) (( e)E)+w}A H*E)b @ۊmٖm%)I$H$E)! ݖnE)"I$H$1HAtH'E) IB&`$E)!XkE) E)!5II$E)! **H$I$1I$I$1I$I$E)$!I$I$E)!* %) E)!J** 0H&%)xA$!"_I-KӢ%)vcE)! nvM:~a1/ѷf1 z }"_9!IWsO'ɓk_Fm!Y!aj9N*)*py k˦r[w_/knu+KM8rsf[qin?zh.hyX):ڎxlƥAm _lkҋtj=KjҮljqKmڋ?.WQJ9󫡡n{ ֕F]H2%TJʪj1~e4*JU*ŠSqKRQJ{:SU(*]|/JJWI)»|bZ"%a4BŴ̈́%)ʰ. ItY-///)4ADIy%I 9ixxxh O%I!閎Ca V=yJʧTiѧ$vJ=OOZe)ʪ(aqۗCoJʩQUF$ )ʒb`_~ِkx{lV(Pҟ?ivh Jҋq[wÇ 5?oh1[ (Mj*_RUKJ "l=ܨk:om"qkڻM;Ylh{7_ jڨod9+ JҸ&":4s$`X 9Iڵf1!6imkE) mL2f1 zHA֋f1 VaĶm;E)d$L%)> IP)~5fQ?/c%A @!I$I$d!d I$I$d!d I$I$d!d @$H$!p((I$I !*J! $$!@@$$! аI$I$$!!U7I $E)!iI$I$$!I$I$$!!I$I$e)I$I$e) $!(JbI$I$(!* I$I$$!!I$I$$!!**$I!$@$!rI$I!/I$I$!@$!PH!8 !( $!I !% I$I$! (I$I$d!d  !@H!(  $!A$A!8!I$I$!( !bI$I$$!I$I$E)aH!* HI! 'I$I$E)I$I$d!d I$I$d!d @!I$I$$!!ԕuH$I$! !I$I$E)I$I$! I$I$$!  ! I$I$E)I$H$!II! ' I$I$E)I$I$!(I$I$d!d @@$!P@!I$I$$!!WTUWH$I$!(**6II! *(6.I$I$!( I$I$E)! !I$I$E)I$I$E)$@$!`I$I$ UUU !X$'ivmX0*!ɝwfP- 41gN0E- 60.Ǎ۲ǹ:>.,Xǹ@PMٰmE1a !A@!!I$I$!( $!I$a&!! I!&I$I$E)H! ,4I$I$d!d  $I$9!-UUUcwm$9`*I-vg$9`*<I䧩W>Aħ%5(3ǹW4'qIN0 /4100DZ > ,a?EʀU<D$ǹP 9,l% @@ڮEAe Nde)([[f1E)zBdKe) f1E)jI$ f1E)% 4He)&۶uhue)E)X&hE) PmmfE)!=-=IH$e)$!***($"E)b@AE)I$I$e)E)  e)E)zzCݶmݖaIe7R"P"IPe /[%GaA0*ɟwFP -r0i =%Gn0(fq B>8L<phۭe1A7;1 e)!pe)E) $B$Ie)E)@@e)E) I$I$e)E)(*k%[5e) Xp`` IE) '77X KE) $@  e)$!)( )(  E)! $@)(`&`&E)I IdE)! %IE)&I$I$1 I$I$e)E)**" e)E)rxJ)(, lE)!`@ I$E) **H@$)(H$H$E)!((L$dB)(`$rHE)   E)$! "I$I$E)$! HX1$!)(IH$)(E)!@!)E)aC3$E)`L$dB$! ɖtE)!K ɶvhmE) I$I$1h`E) @$A E)! H$H$E)!TT\X! E)! H$A e)$!e)E) C$Ie)E)I$I$E)$!((H$@$E)!V^ZZE)!)- E)! * I$1I$ E)!2E)@ $Ʉ$! 8)Ȕc2E)`ېnE)a $B$Ie)E)OۺmE)!H$@ E)!~ $A$! a2 E)!  E) &I$IE)!I$I$E)!**I$H$E)!WT\E)!I$I"E)! JE) I$I$E)$! %)I$I$1I$I$1C-۶m%)b`H$I$ )! $!f`8E) 2knAE)!a mC9f1!bz$!f1! w*2&F1!k ZO'ɓJ_Yi\@ 'q=cӲknsk[/ k4id5d;J.6dHmJk):yjp/] Xlxgk:PD*"҈qxOyKt宙r[X!dK Jһm~! __eKwjҰ:YlIJʪj˜gk6|`+MjNS2֘Dz*j|UӪkSJtޯyYۙ JzS2%39k҂``?tEA IwfQ%'Py%IX?6_fi$)px~zAYthSE1;-{ɖHɔ@j҂ [NܭJ7_frJ<飫W'MJfWj-h:jơoqli]^[F4J:ru9 }L q 50x/sfbʚ[pP kڸޥsky*D⫬bSՄaJj2*8z<`.ن9a"(Mf1 ]f1!zaЦc;f1!{˺I-E) {dH`2%)Ä 0!< I eI/ ZϟeQ I$I$$!!*I$I$e)I$I$e)I$I$$!!* @$! $I$! $!ABI%)  6,@$$!P$!"($IL%)a87A$H$E)!wI$I$!( I$I$e)I$I$e)I$I$!(@$H$!RVvI !A$!!``@$!%)!I$I$!H$I$ j  $!- !b I$I$e)I$I$$!!*_I$I$!"@$H$!Z\TW!I$I$d!d I$I$e)!  ! @$H!,H $!>>/I!6&I$I$! @ !`!b  !  $!I!aI$I$E)I$I$d!d I$I$d!d I$I$d!d  $!bI$I$!{!"I$I$E)I$I$d!d  !@ ! I$I$E)H$I$!V ! #I$I$d!d I$I$$!* * I$I$d!d @!I$I$$!!T_}u $!I$I$!!6  !I$I$!I$I$!I$I$d!d  !@!I$I$E)@$H$!hxxXI$I0ٖmۆ P ɝwEPյ-1 qN@$q+ 9 $I DZ%qP?a"<DZ@` HEYI$I$e)I$I$E)I$I$d!d I$I$E)@$@$!xxXI$H$!ܶ !   !b@ ! I$I$$!(** !! ( !  $! !"q1PI@7PNɟDZi*9 $IDZ%qU9 y"q IDZ%qU=I0mǹEyU@45ǹY`lk1a KF0Ie) xaf1 &&!f1E) f1e)2-Me)@I$Ie)`& &1E)W^^^k&X%E) xhIIE)!5L$L$e)E)W\H$I$e)E)($I2$I"E)!bi'e)  ضP' l0HA( }vm"$y8K(/ P+:r ǹE*=4'E@X=X$$P-۴M:E9~!$E) e)$! I$I1"I$I$e)E) .6IC-$e)pe)! I$I$1 ۲52,e)!@`d@$IE)!e)E)I$I$e)E)o? E)! I$I$e)E)/? HE)! (dE)0# E)IIE)!58I"f1 {$I! e)E)表I$I$e)E) I$I$e)E) )( E)!@L$! IE)!@$A E)!)(X$hE)8E)H$$1m٦b#1!)(@$ )(1 (I`E)  e)$!  `&`&E)!\\Xx! E)!--%L&L$E)!I$I$E)!!!IE)$!HBE)d$$C"E)!P`B I$E)!%7 e)E)MO6 Ie)$! * (E) H$@$e)$!d2 CE)!zh E)!I$I$E)!*(I$H$1)( I$E)! *(K@ E) ɐIdE)! 5ذ 6lE)!(+)(@%E)PmX۵e) ꨨI$I$E)!$aR%) IE) 1H$I$E)!@$E)!RbJ I$E)!% I$E)! *!HIDIE) A$I$1 IIE)$! E)%)  E)&H$[ E)iI$E)iI,%)틷`te1޸df1*Cf1 r4Qw1 *>ڭve1!⪨f7q$ kiĬ%n3-kPm,vc7kڪooo s =nkڴ檣{ YrӺ k;{lyDUg ڪ]2g A$k&jx0ٹv(:sww/7 ڿgcu0!JңHk"G`ܚHھ復pV tIoڷy3Ym9%PJʮ ߉VP2'*ʪ&_+tJҊ'Z "JʪRPty*C#4#! ``@@ J =EI IGeA!?5 q[deQ ZqE1z``mnm&E)!* *|ɔka'''bav~Jʻ?[jҝ{dq uVjҭ ijҌnj)oC}?n*XM#t b.GmXVj4 p]Sܐ{*v/ NZ^P*қ!w ;|0U0-ꨑ( B&O$X YfA d(Ae1 ڴf1!>z]9f1 pvNlf1qҢf1} &M$$)x}ɑeAz? #͟eQcI$I$$)!I$I$e)I$I$! I$I$e) $!I$!I!* I$I$$!!I$I$E)!I$I$d!d !@!!IE)! I$I$$!I$I$!I$I$e)I$I$$! $! bpI$I!U'I$I$!(* @$! @$!pI$I$E)$@$!I$I!7!@ ! I$I$$!!7!("  !`II!5I$I$!@$!A` !@! ! $! !  I$I$!(I$I$d!d I$I$E) ! B@$! @H!(I$I$E)I$I$! ! I$I$E)I$I$E)@$H$!II$!! I$I$E)I$I$!  ! I$I$E) !   ! I$I$ !ڪ* @ !@ !A@!I$I$d!d I$I$E)I$I$!@$@$!`rXI$I$!y!I$I$E)I$I$! ((I$I$d!d I$I$!!I$I$E)H$I$  hIlV4P'ɟ߿{%qH/.ysi- ;I*5D S> ( $a"BBp$I$H$I$$)!UUI$I$d!d I$I$d!d I$I$!I$I$E)I$I$!HI$!!( * @$$!!I$I$E)I$I$$!  !I$I$E)I$I$d!d @$! ! ɖ ɖlX''/{EH/--7 DZEu < I$IDZ%qUE0}OU73m۶ȱDZWU]B&m[?4<˃Ee)E)e)%) e)%)I$I$1E) He)E),I$I$@!@ e)E)P`D&E)!H!IE)!$e)E)"ɒ E)@IiSPA) l) `b( IePս/ 2d>!X@? %m` ei C=8KǹE`j۶eAEHH$e)$!k5XE)Ah)E) -E)$I 1E)Le)(R"&He) АI$H$1E)I$I$e)E)("f1J !ݖmbE)!I$I$)(H$H$E)!(E)$!H$H$e)E)\hdE) $2$Ce)E)ft!2*e)%)I$I$e)E)*I$I$e)E)/6I$I$e)E) `e)E)e)! IIE)'! e) --(ѤCRe)!`z E)! I$I$)( HE)! ((dB&d2e)E)_[]H- mf1$!ϯ/? E)!)(0 E) h!ۺmf1!J* e)A 0E)!`II$E)!舉DAE) I E)! I$I$)( e)$!e)$! I$I$E)!UV@E)!H@$e)E)\ZI$I e)E),$C2$f1E)wA E)! I$H$E)!WV\$I!E)! 6l[%E)P )(H$@$E)!26E)!@I$I$E)!UWXݚme)!! e)$! * -AE)!@ e)$!H$ E)! I$E)! E)! *I$I1`)(I$H$E)!*m[34E)`@!E)  E)! *h E)RB2E)`m۶i;E)!I$I$1L%)$I$I$1H$0%)A$I ⥄ A$%)*:vcN#E)6-E) -ie1!*fL f1!Fk1! 7$AAB* !tI$ %6N  f`ClJ*2v{Gdi]}ok0jJ)nS$p‘kښoo-JY92jn$MZk8u%{Zڦ[zSl w¬ojs۠`.?Te:rJ"۪h)4JҡoUqil} ;]^4CJnn'-WYp`v"uJy+()[gVa*ʛ?Ҳ-a@@@r%9aXIDwf9?3. NyeQ ZXyeIxxxhҶ밭E),ɑIڂ'YAunJQ#f}> JnuKPCkptvȞF ڟk Mj&ꢘrFHړ$vkќ}k*nlk~pE8kڲ^j8ZJ҂u~k_}5ڰ &X`$I$X} PR?A_'І1! m0e1*=vf1 {.?f1oB؎-e)bB&L$$)'OfA_%s.U}+*(I'σ熙I$I$e)I$I$e)I$I$e) $! *@I !.@ !./ $@$! PI$I$E)!I$I$$!!$!`$$H%)*)H$I$E)!w}_I$I$d!d I$I$e)I$I$e)I$I$! *H$I$!Tw] !I$I$$! @$!I$I$$!!h[ZVH$! H$I$!I!/ I$I$$!!WWE!A $@! ! @$H$!RX\V ! I$I$$!(**I$I$$!!I$I$$!!HzZ^I$I$$!!q{$@$!8II I$I$E)I$I$!( I$I$d!d I$I$!( !@I !  !*I$I$!I$I$d!d !  !I$I$!(*H$I$! I !  !J ! I$I$d!d  @ !@!b$@$!ipZXII!?7'I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d !@H$I$!!)+I$I!ֶ7I$I$E)I$I$E) !I$I$d!d I$I$!((I!  ! IIaߗ $.DEaHW XI)`U- yKo䐭P?m~'M$)`Hm۶$)a4(*I$I$d!d I$I$d!d I$I$d!d @$!`  !I$I$!!I$I! @$H!(I$I$d!d @$!I$I$d!d I$I$d!d I$I$!  !I! +*( @ !  P  WyfP----4#p <2m~ǹBZF4 ǹP(@"ȹ*H>ZFIǹP <h姱e 1E)ﯾ 1E)kj@!e)E)$I*)e)@ڤUŖme)I$I$@!  1E){{k)%b"E)PI$I$E)!UWT6`)aE)! h&h2Pe)UU b$EJHE!-I'v$yb(*, 81V =a* ;$^'E ZE'ExPĪ9r9A((I$I$e)E)ܼ  E)! @@KZE)!4m&mE) r db"E)A`I$#e)!m&m1!@!@$@ e)%)H$A$e)E) Ie)E) M$K&E)!VTTX! e)! %I$I$)(@$@$e)E)ZSRI$I$e)E)@$@ e)E)XPRE)$I$I$)(L$H$E)!VT\\PE) I$I$e)E)*r"!HE)(4@`e)``lŶmf1$!I$I$e)E)pr-9R"8E)pvivE)!%5He)E)IH$e)$!*(( )(H$@$E)!( X$HE) &d@$I2e)$!"*MH%f1$!I$I$e)E)+ﯯ H2$IE)$!E) b")E) e)$!I$H$E)!WWV^$!E)! -H$H$1)(@ e)$! e)$!" H&@$E)!P`! E)! '7dB2$Ce)E)SaJB)dJE)@IdX%E)+ -'-E)PdB& 2E)!Xzh@&dBE)!zj $$ E)!0+ $E)`$C2 e)E)e4 - E) L$`$e)!VXp! e)! '?$ E)!I60E)5I$I$)(H$@ e)$!I$HE)! E)!:IE)$! I$1I E)!@$E)ذ!A$ E)!WTE)&E)!  @$Ie)E)D2!IE) &I$H$E)$!I$I$1I$I$@e@$IH$!Nl'n=a$IL$ ).뚤,E) a6HӈE) $͊%mE) Ep=<E)!‰ >q?mۧ9!/} 'r6<9! fA$!/~'ɓ$jң5_ߒT@ċ pwi@&kڿ&Zt{vkھ/ߠoZjȐkڣpUcBk8e[,vI J.s8HkڢkqWlcWkڽvYՊiڻꈪmvko\:N; Jʧ`gf]J0㣤hjj< JrMrri?V!__Ͷ`i JRrڐ)*(4$*NJHJfA ᡡv`[iE1??OyeI ))-Pђ-yEAPLHf9kIgyac(QJҿ쨒Yg@7*Ҡ nh}u JrmW|&ۿYftJRJګ*s2n0/leo~F kg}xom_5pڵ *һ".đ4)ȩ* B5{<` Hakv8f1!6Pe1!lhunӆ1 "kHȢme16I۶%) j ktI E)j.E$M6%)n$ e9'{PBy+ 25Z ǩ%Q{/`"0 I X`ɏEyI$I$e)I$I$$!!*pd$L!* A$H!*  $I$$!! I$I$e)I$I$$!!@$!I$I$!!8,A$H$$!!I$I$$!**I$I$$!!I$I$$!!**:I!$H$!I !7 I$I$!( I$I$e)I$I$e)I$I$$!!֕5E@$H$!AI$I$!A*'$ !&@!  !I$I$$! !@II$!A**j$! $! I$ !=I$I$$!!|H !(4H$I$!!&& ! I$I$!I$I$d!d I$I$E)I$I$E)@$@$!𠀠I$A!!* I$I$!(( I$I$d!d I$I$E)H!8 $!I$I!{I$I$!((I$I$E)I$I$!I$I$d!d  !b@! H$I$!nn I$! yI$I$$!I$I$!((  !@I$I$E)I$I$d!d  !(I$I$!oI !%%I$I$E)I$I$E)I$I$d!d I$I$E)I$I$E)I$I$E)$@$b@$ 'CR"E X0*(*!wf@/ 41uN0E- 51D"DZ >,,Z'ǹ@pmٰm$1I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$!*@$@$!``I$I$!m}Y ! H !****I$I$E)H! I$I$d!d I$I$!I$I$E)@$$!``I !)) @$@$ @eEPE +www8/+:!fnaǹ9Pe IDZP AӳNǹX`(;M!ǹf J;IIDZX</%#0ǹEP``LfAe)@1E)Z 1E)Dp!I1(&l&i1 I$I$f1E)1E)ꪪ$H$ɐe)E)E/$ 21$ j`RTLP$- NĶXHUɟwfPU+,ks0i @wٖ,A)*BG&5|E`۵fa% H$I$e1e)H$H$e)E)`I$I$e)E)((81rC $BE)!I$I$%)!UH$A)((Ie)!8l: 1!4HKe)  f1E)A e)E) H$A$e)E) h&h%e) pp` IE)!%'5I$H$e)E)  e)E)bbJe)E)fXE) ME)&I$I$e)E) *@ X ,E)@-mE)  $ ()1*j6mce)  I$e)E)v˰ae)! )e) ۲ۊb1!I$I$$!**@E)!@$@ e)E)^Z[cHfE) 0 e)E)skh)(@ )(mБb†1!e)E) I$I$e)E)cI$I$e)E)e)E)JJں@$)(`&@0E)!XXp` IE)!%%@$ E)!E)! I$I$1  He)$! ** -$E)mѶi۶E)!w۰ ۖmE)$!ݶnHve)E)@E)@ e)$!I$I$E)$! I$I$E)!V\E)! TB@JE)pIXf1!.'H$@ E)! @E)!@I$I$E)!]}E)! e)$! *(%#IE)`e)E)J(,[-ۊme)! E)!$@$e)! *@ e)E)_ )(H$@ E)!H$E)!XrBI$AE) &*I$H$E)$! *0,E)@e)E)@ )(I$I$%1EjmvbPE!%O$7ђfya(+*)InB艢H }"'q^xIBL$E1ˊI$)/mIfE)8"Ye1)$$ 0E) ܊YjNlf1!߿aGMf1!"`&߷1! k E/fAb !\I< 5_mx%c+99Jrbn:k {ymS jO(^cʆ*xMCַm`Ò4Ѳkx.p[jژof&Qk+:xfXz-ڛ}\ھ?m}k)q_|ynʗpj;kʶjfJ?A%AaimE)? yeA---- @1yfY```/r?eA T||T;y<衢nXᣬkҬ<΍h3 j欮)i\*Jkj}W6&ixkڧ{s7ywkڢReB{mJJ⫫Z+p:J.ʊ[]i Jé $pמhy$X ܆1cCڶE)mڶh5E)@ @$! 'IE9z> 7{Y+X-.?n  :m DZ%a "6&@@&,j9 h X`ɏEq @$I$!b6$I!.I$E)!H$I$e)I$I$$!!pI$I$$!!XX I$A$E)!$H0@$! @`$! I$I$d!d I$I$$!!*!b@ ! H$I!Vu7!I$I$$!!I$I$$!!*I$I$d!d $!I$I$  ! !@!b8I$I$$!!kjZ !@@@$I$!`I !cA! @!pI$I$$!!hzZI$I$d!d $@$!࠸A$H!:.I$I$d!d I$I$!(( $@! I$I$$!!^^^TI$I$E)@H!:>.H !.7I$I$!I$I$! I$I$d!d I$I$$!(* ! @$H$!I !>.$!`!I$I$d!d I$I$E)I$I$!  !I$I$!UUݝA !r I$I$$!!v!$@ ! `!@I!* @$@$!pI$I$!}y[^ $! `! !@$! @$!I$I$E)I$I0$ $IP ɟܹyEPյ-2 yN0q+ 4-``?a"<DZpȟ$d&%)+{AkE) qVvEf-ڮE) n-X71 WK!MfE)!º=ml6f1!bӉPf1!-AG'e9!? x©麆I\+XO<%_Mn~۽?8 kڗwr_VelÉJڻzmkZjں|ڎ⋯`tdXJ>x[?.k*mMY|+!j:@sT6>&if"&JڮIlB bkHi/WJ+.h?zYj?Jʣ<ȣ<)a ! qE) ))- ,Ȇyfa``` z/'>fQ!|\\X7?,IAkjJO0q٘maT94eJڲkeD$YjڪlaANjًg kJڧv?5m4 *`0$x՚$$ڂ` !޷iEA$mF[f1!ۣkۢ]ӵE)!L"4N1 h]^f1kmѺ 21 /eoN E) m۵i;$%) w{UR`ȄI!(IeA'˟eIc!A$I$19'ɓf'_2PI|  58 @rǹ5 a@,s5zhX`O?q!%) H$I$E)!I$I$e)I$I$$!! I $E)!{I $%)!I$I$E)!}_^I$I$$!!I$I$e)I$I$$!!*I$I$!@$H$!Pvu I!!  H! I$I$$!!I$I$d!d  !@$I$$! I !* J@! I$I$e)I$I$e)I$I$!( $!@`II!%I$I$E) !@@ !$!"+I$I$$!!^eH$ $! I$! I$I$E)I$I$E)$!`! ! A$!I!&I$I$!((I$I$d!d I$I$d!d  ! !(I$I$! !@!A@! I$I$d!d I$I$!((  !@A$I$! I !5%I$I$E)I$I$! (I!&I$I$d!d I$I$$!!5}H! H$H$!ah(I$I!*!((*I$I$!(!* A!@!(**I$I$!@IP7  ɝ߹yqH/5w/eǹ`+;JCǹP @$ 6!ǹ1@:h$ɓ'H$I$)!UuU !A@!I$I$d!d I$I$d!d I$I$!I$I$! I$I$!jII! * @$@$!I$I$! ! @! I$I$d!d I$I$$!((*I!&@$@$! !I P ?' {%yP54Nd E- 42DZ?2r 蹧W;2۸ǹ44I$I$%44I$I$%<+rdAvo?#̃ "$C2E) j!I$I$e)I$I$$!I$I$E)@$H$!PXT ! I$I$$!!ח%I$I$$!!(I$I$d!d I$I$d!d  @$!I$I!뫺*@!I$I$$!!\VI$I$d!d I$I$d!d I$I$E)@$@$!ꨨ@ !(I$I$E)I$I$d!d !H$!I$I$$!!}^^TH$@$! II! - I$I$!( I$I$!I$I$E)I$I$E)@$!PI$I$E)H$I$!VVWu ! I$I$E)I$I$!(H!(I$I$! I$I$d!d  !I$I$ A(*I !!> I$I$! I$I$E)aI$I$d!d I$I$E)I$I$E)I P$ / I؉`H-)ɛ7 X/ ;qer ǹf- <&h۠ f**@&K$ǹ`p$I$$9!\VUUI$I$d!d I$I$d!d I$I$$!!I$I$E)I$I$d!d I$I$E)  !I$I$I !- ) HH!**I$I$E)@ ! `I$@!"0I$I$!I$I$! I$I$E)@H!(*( $!  a P$' {yEP=--4t ` f 44I$I$%;-8/Aǹ%ipp:$ (!DZX@9IHDZF43 %41l2%<Jpǹ$tM$If1  [m۰1E)Z+f1! ۶ 4P)UU  $IPf)-* }6mi@ &}) H)8. [0* A۶I,&DZeP=س?EpYۺ1 I$I$$!!VtmbE)! m-"1E)ge)  Ie)E)  I$I$f1e)IH$e)E),(0I@$e)E)h%[5e)E)XPPp[%-E) pp@@ IE)!%5k0le)E)I$I$@!He)`dAXde) @  1E)1E)I$I$@!M$H&E)! Ite)! ''I$H$e)E) I$A$e)E)b`"A$Ie)A@6l6ie)$IHe)I$I$e)E)h@ E))lɖte) %' e)b@X"%њie)e)E)  e)%)I$Ie)E) ,J$e)(I$I$%)Plݖae)!$-&f1! XKmmE)! $I$Ie)E)‚0@!e)E)󍅧DJE)8V5l1$!ʎI$I$e)E)+I$ e)E)bIDe) ,4 Ie)E)"I$H$e)E)- 0e)!x`II$E)!UE)!5E)@$I E)!H$@ e)E)XP`$ e)E)8I$He)!dNl1!*L&! 1E)__Xe)Pe)E) LȄdB$e)E)\PdB& 2E)!ZP`!IE)! 5I$H$E)!((e)E)L$$Ie)( LB&e)$!*(J,E)8 $!H@!HA1h6E)4P$Ie)! $C$Ae)$!m۶mE)!ꊈ !@E)! I$E)! **e)E)I$I$)(I$e)E)UUJú۲E)b@d I!!    PE7IIXH-77f@o/+;&#&E *bX+H<$۶mۊ%E) PE)$! I$I$E)$!`E) II$%1E!iòE1  $!!b$ d$%)m$+E).~ ~1 5 i3E)H6YdE) “Tf115mf1!+mMf1!>ۚqBHPf1! fI$!uw Kb@A^$$ UJI$ U&/$*UA`AJ ]&k+ J^隹 jھpv}kڿ;^8D)򧑂( BH$O$k҂}@H$HE) mWp7Si---/]5byqccAa!XXxx4ɘv`E) hO'I$Ja_$I$}X`$J¢X ɀfI ph%9E!E0%f1(HitT߆1 I%X׵f1!'ۺXZt]Ӵe)!"b)Цe;e)!pw 9  ڥmۭE)@ ! 0$M&E)t$OeA%ɕBeA7 p;vbf1AZI$I$$!!H$! 4(I$I$$!!*I$I$$!!(I E)!zcSi%9b*,O'-_8 nDZE*8%mǹxꪪ/s9 i$ X`Eq$$C$@E)j* I$A$!$HE)!߿j{I$I!$I$I$$!!) I$I$e)I$I$$! $!`PI$I!a**  !@!@$!PI$I$$!!zXY !I$I$!I!& I$I$d!d I$I$$!!I$I$$!!*jI$I$!(  @$!`pI !% I!$I$I$e)$!@$$!*  d!d H$I !I !. I$I$E)$!I$I$d!d I$I$!(  !I $! !" !I$I$d!d  !I$I$$!!9I$I$E)H$I$! ! !@A$!c!#I$I$E)$! $!hrI$I!UՕ5I$I$E)I$I$!I$I$!I$I$d!d  ! I$I$E)$@$!hxXI$I$A !"I$I$E)I$I$E)a !I$! I$IP$ ?'&iRD X0' !ɝwfP- 41eN0E- 8(( DZH@G\4Z$abPH1I$I$E)I$I$!I$I$d!d I$I$d!d I!A&&I$I$$!!I$I$!*(@$@$!I$I$  ! I !** I$I$E)I$I$!((I$I$d!d I$I$E)I$I$E)!I !4,@$@$!YukPE (wywX-5& TADZ 73رmȱDZU43%mOn゘WmNaM&ۖ)U<m>% ~=R.9e`I$N$fAe)" A1%!j(D`KbXe)U6I YH/IiEP /{ i+ =ܰ*@ ,re@Xșִmۆae H$Ie1!e)E)J˪*I$H$E)!WWV^&c&&iE)Ar nmvf1$! *.!K$I1$!H$H$1E)Ee) 8@$@$1E)zz@  @!B 1E){oBHE)! !@I$IE)e)E) e)$!L@@$I1 1E) e)%)I$I$@!X4@,1!ZxxjII$E)!7H$@$e)%)  $Ie)E)I$I1E)4AM$e)$A@ e)! E) , e) `@II$E)!U I$1E)& e) e)%)I$I$1E)IL$1E)j ڤUf1(K$K&E)!TTXP)ɐe)! %RB  e) e)E)6hee) e)E)6XI$I$e)E)CuZuڶ1E)5U60 1E)\II e)E)""i#9f1xp$2!f1E)깫+ E)(I,)E)@II$!' )! E)! %R"%#e) ppI$IE) e)E)@bͰve)E)% E)!vm&E) PDaHe)A8 I$H$e)E)$Xte) DB2$ 1E)~A 1$$H$E) VTaِE)   Ie)$! *(I$I$e)E)*@ e)E)Xh 1E)I$k2$e)!`;NĆ1^HE f1E)WVYZI$I$e)E)++I$I$e)E) )%RBIe) аH$I$E)!I$I$E)!*!I$E)! *"I$I$e)E)I$I$e)E)-,H$e)$!(@B"$@HE!I$AP ɝEP- 3.QbĢ%$ * bX$HE e)E)*#APf1r %I$@$e)E)_VWXI$I$1I$I$1I$I$1E)$!8*rBI&e1ArI$hR,$1I$E)b*mI#E)/ye1+׍-4f1 If1 CuBDE) 34EQ$-0E)!#z`8vlĆ1!tc1*)9Tӿgֆ1! -ie1! if1!vfQ MR w{IV IAU*D$$Ue$$*ҢU$O$Uؓ$I$kҢ` fA!U_ dH%)Ii!%%%EiP߂'c?:yzzx`mж+$E)? vjf1 !ܿf1 o)][f1!I`yǚ]1!_&1!۶uɘf1 ꮶ.f1 +}Ć1 yME),6#Îce1 Nu1ieE) ( IL %)>@$H$ 00eA %ΟEAp$!$! 4I$I$$!! $!!@$2!I$! $ E)!z^H$I$$!!PUmI$IE)!UUխ&h$M:%9$O?(|$ '_3 N 5%Z6lǹzꪪ/s9 m X`%q$I$I %)! 2$C%)h* $! I$I$e)I$I$$! !*bH$I!\w5!(I$I$E)!e$! $! d!d @$I$!xXWI !7E ! I$I$d!d I$I$e)I$I$! I$I$E)H$I!XV=! !@!aI$I$d!d I$I$d!d $@$!I$I!>*I$I$d!d I$I$!(( @!PI$I$$!!y\__I$I$E)@$H!ꪪ*AH!..I$I$$!!7u} !I$I$d!d H! ,4I$I$d!d  @$!I$I!?$!`!I$I$$!I$I$d!d I$I$! @!@$H$!RXTVI !%% I$I$E)I$I$! (I$I$d!d I$I$d!d I$I$d!d I$I$!H$I$!I$I!ח75I$I$!(( !!(* I$I$$!!UHH%1aZ $ P ɝwEPյ=-2 yN $q+ 4-`> %ǹa@pȓJpe| -ۮAeI$I 1E)II$1e)IȄL$1E)k6؊E) XXx`vE)!-555 De) &I$I$1e)ll1$!Z&L4Ie) 8 1E)zk4ITe)@! ɐ e)E)%L$H$E)!WVTTE)!  1E)I$I$9f1E)$IXf1 4H$1E)$Xf1  1$!⊊I$I$$!!CʌV`af1!I$A$e)E) IL$1E)HIe)|I$LB&1E)_I$I$1"635e)`$I! E)mٖbf1 t$HDIf1$!H$@$1E)R%&If1 P))1E){6S25e) p <)1!ZxjjmvmE)**H$@$e)E)(ku6le)E)pI$I$e)E)(dHIe)E)@J!IE)8 e)$!6Tuv1"D! e)!,H$()e)A @0IIe)a$ 1!*R" KE)`t -І1II$E)!7WH 0e)4()(I$I$e)E) **LH&d&e)E)\Pp Ie)E),0kvhE)(+e)! 7@$e)E) e)E) I$H$e)E)k[3e)E)P`X-`E) IȐE)  *H$A$E)!(e)%)I$I$e)E) * 2 E) @@ 1'm۶͊e)!DA!` e)! lۆme)E)'5 4e) `ݐmնme)L&@B e)$!  I$E)!.:I$H$E)!C%ۺmE)pPP e)!  Ae!_`$IPe) (w%yPյ-+vbŢ%* BP!H<$ e)E)I$I$e)E)" E)!e) @"iBE) I$I$1I$I$E)$!(mѤKE)(BE) !@$IE1%! N%HRe9pMIE1I!I)[Łf1~f1/m:i֭E) O~ۦ1!77U -:E) @uaӺf1 /^dږf1 ھ?ZM9f1!֋;f1!*o1!J-(̆1!oj&;V1!~.6j?v9!}6=Ԯf1! &1!x[7 6E)!"MH%)$H@E) eU OwfQ %%55}m%a775_fi$!x`ugS;1?{!mǦA%)a"!I&1놺f1 öu(5E) _MۢkE) 2Iنe)!R4f1 rUCۮ͊eE) eE$I&E) ߽{vh6 %)AB" C&%)ɟ'IQuZeA'hضmEAI$I$$)$!@$$!PI$I$E)!I$I$$!!I$IE)!ߵ H$E)!j^WI$I$$!(*I$IE)!UյE)!$%)`0$!UUU"If%10 T %4"#AVJDZh .t9 i X`MP%AI$I$%)!@$%) I $E)! $!**@$I$!XW ! I$E)!ե@$! 0I$!!4H! $H$$!hX^I$I!u] !  !  !@! I$I$E) @$!`xI!)I$I$d!d !@I$I$$!I$I$$!!>O $!H$I$! ! &I$I$E)I$I$! I$I$$!!$@!`A$!pH I$! !  ! ! I$I$d!d I$I$$!!I$I$d!d H$H$!I !/$!j *I$I$$! I$I$d!d I$I$!I$I$! @$! jI$I$tu!$@!`! !@!I$I$!$H$!!6,I$I$IAI !- $!@I!,7 !$!`mnVlP7  ɝ߹yqH/.ys i-+ 4'P ;$ $)DZ$I@>p$I$}]HI!--I$I$E)I$I$E)I$I$E) !A@!I$I$d!d $! $!I$I$!wUUII!--)@$H!($H$!@!I$I$d!d I$I$d!d I$I$!** I$I$E)@$H$!H$! eP$7' m.iA0**5mbV豣x+D n#1"HHn!_ A @$IDZ43%:$M!DZf@9I@DZP:" IDZH@9LH&IǹA4^5/%ichn E(*/{ i+4yI f 8&ɒ ǹ**A60$ǹE @pYJ8[A$H '9# I1E).I$I$9`B&`B&1E)zS34e)A@$A!E)A***6lVle)! 1E) f1 1E)I1&&  1!I$I$@!h%Xle)!(h&[%E)!XPPp I$E)! %% If1E)1E).JɔBf1 JI$If1$dBI1E)`H$I1E)I$I$1E)M$H&f1!WVV\)ɐe)! 'I$H$e)E)6lC3,e)! e)E)@ f1E)zI$ e)E)  $ $e)E)JP"&e)$Pm$IE)*+ I$H$1E)@ e)$!99n 1E)"aJ1 jIkE)!dHvE) e)E)CˆA $e)E)  @!I$I$e)E)4I$I$e)E)v`1E)5۴؆1E)}ۢM0e)@dJMe)4<&-"ae)@@Җm&l1b"%$ e)аI$L&E)!W\X&E)H$@ e)E)\Ppe)E)*$#e)@D@e)[ۊmE)!k&kҶ%) ۰ ۖme)!I$H$1E)@@!  e)E)nme)E)m7 He) 6E)!j ېmE)I$I$e)E)I$I$e)E) ۲% lE)`бLf1!AcE)!> e)!e)E) 5I$I$e)E) I$1"ؠMe)!ꨠ I$E)! *I$I$E)!( 1E)[$HPf!7  }ib(.$wJ֢%E$* BPHA e)E)‚ e)E)6I$I$@!k5۲!f1E)^ZnM!HE) $C&L&E)!XIHE) DBE)$I'e) @ e)E)PB e)E) 5+-f1!x`tn۶f1!%l<`e)! $!He)E) -@$@1"I$e)E)I$L&e)!IDE)$I ɐP'  IiH=qC%%%* BPHwndIf12&mNd[E)‚:/ m)e1 aö-&E) ~`PLle) *#!ڶcE) 3n bmv%)ƈ*cE)j<Ei,%)2KDnge97 o yeQ P yE1L0$$)vIm$%)T8e)AϮ!I$%).Lb#1$E)XuM$E)ڥI:E)}I6i$1j'$EA W`mE9'XSe۶EAh!I $!I$I$e)I$I$e)I$I$e)I$I$$!!I$IE)! H$E)!/^UH$I$$!*I$IE)!UUIE)!I$I$1I$I$1E)!$H$$! (I$E)!H$I$E)!W$IdBE)A"ڐB(IdE9p7,ɗ熩 7/(@f )/C ~%$x$H$$)bP\I!% MfЮ$!  $IE)*I$I$E)!I$I$$!!$$!I$I$!ZWUUII!% H!I$I$$!!L@$! !@!@ !(!I!a&@$!PI$I$$!!*8$!!' 0$C&! I$I$  $!I$I$$!!o_^ !@! $! ` $! I$! !# I$I$d!d I$I$e)@! ( !@!@$I$!I !7 @$! pI$I$$!* $!@ ! I$I$!$! I$I$ II! 6,H!(I$I$!I$I$d!d I$I$E)I$I$d!d  !I$I$!uII!75% H$! 8I$I$E)I$I$! I$IH$ IvmX0*$ɝP- 31eڧE- :$hǹf ~@>:l'`ZA&H$1I$I$! !@ ! I$I$E)I$I$d!d I$I$d!d I$I$$!!{ !I!AH$I$!X^^VI$I$! @$! ! I$I$d!d I$I$!( I$I$d!d I$I$! (H!4 $! !"L$LE!?b Q"%JPE))$IwS78%/+ 5&t A ?z!mǹEy$,9#@#HDZ@>$I*)DZEA@6 POX''1I.{f*:$'DZa 9B(IDZP:3ǹ43DZ92ioǹ?:)H$IDZH 41hl DZBhJ& I 1E)ڦm&4f1a@۶ml1E)@$ 1E)'9# $A21E) kv1E)o! E)Aie)! --% I1E)I$I$9 1E)$I¤%e)@f1`4H4I1 @@e)a`$LHE)! (I$L$E)!UwVTmٖne)!  1E)II$9I$I1E):I$1E)*I$H$1E)I$I$9"$I1%)jJ I$I$$!!Pf1! $ se) LȄH&1E)^MA$Ie)H$@$1E)zz@e)%)Xe)!8M$K&E)!vT e)  I$I$9 f1 @δAIf1@ 1E) 1E)J&if1ܨI$I$$!"if1$!@$ 1E)~{[uIE) 6I6)e)@$I E)I$$e)E)6Pa[1E)%7m۶m1E)@!FjM1!**Aؤ$f1&kX1!B@e)E)I$L&E)!wVX)ItE)! 'h l`e)!8 $H$I1 e)E) H$e)E) '4$C e)$!I$I$E)!뮬$!e)!H$@ e)E),e)%)I$I$1E)Ɇvle)! `& E) ` I$E)!5UIb2lE)bJ1dJf1 II$e)E)[:le)E)\p@nɖ1E)k %)!I$e)!>;ۆ@ `1E)WV^zI$e)E)I$1"C1E){￿MvkPe߿'  IRD P0 wqc%$ *BPȗ/S;A. H!a$@!``I$I$$!!I$I$!! @$H$!򸪮I !./ I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$d!d  $!I$I!! I$I$E)I$I$d!d @!!I$I$!* I$I$E)@$@$!`II!A** I$I$! I$I$!I$I$!I$I$d!d I$I$d!d I$I$!@$H$!!I$I$$!! !"@!8I$I$E) 0$o:a[$P {%y8%7yrw DZi]} 8 iDZf?$¢=ǹ @p?EaI$I$!^_WWI !)+ H!4$! ! I$I$d!d I$I$E)I$I$d!d @ @! $!I$I$TWUII!--)@$H!I$I$E) !@ !  I$I$d!d I$I$E)I$I$E)@$@$! !IɐEA=x`@//-9Si--- 4- 8-\ǹ:9A)H ?C#%p$ǹ`P?f$&R,6H(*j6IDZE73۶mǹ44I$I$%44I$I$%44I$I$%44I$I$%:2vdkǹ:{;")$j@@$)AER#$Ɇ1 `4HDI1$C2$I1E) 1E).1b@iڠ-ن1!t"'`":f1!ZxxxII$E)!%H$I$e)E)<(I$@$1E)&aDe) $R64I1! $A"8f1`f1 "!$I$I1E):L$L$1E)V^H$`$E)!\Pp e)! '7 I1E)I$I$9I$@$1E)` I1 @$H$1E)I$I$1E)$h&1 8-j '1!.dOuXf1! %'7d@$I1E)d&i1DŔMA1$!Z 1E) e)E) I$I$1E)X$,1!ZzbII$e)!'7I$I$9"a$Ie)@4H,e)4HJf1  1E)I$I$9K$h%e)!pae)6.. de)( H$f1E) ۶m1$!J*!)1!"e)@DIe)-ņ)1E)A If1E)﾿mrde) 4#`4If1!hA+Œ$If1  He)E),(X5 e)!pI$I$E)!w6e)!mk&e)!$A$I"f1E)o")f1!A e)E) H$ e)!II$e)!.>f1E)ꮺ H$e)E) < I$I$@! e)E)@I$I$e)E)뭷I$`$E)!W\X`!IE)! 5I$dB&e)E)^ZI$@ e)E) $1"k5غme)$!(CDK1$!`/$I$E)!f1! /۶Xle)E)?TXe)E) I(9P!_'2@Pb0 . y* AxEE$B e)E)EU_\Eɖd1E)I$I$e)E)  e)@$!$HE)B$ E)!B "NB۠ME)!  I$E)!7WmElE)! @$e)E)*5I$I$1E)e)E)0 $I$1E)$IE) ): @e)!\C֥ME)b0"ڠضmɖlE) LE),4I$I$1I$I$1`E)(I$I$E)E!6m۶E9%/~cEA%!WI"lne9_*m'ne9~K$u"He9$Ne9W"I$%)WL$$$)b N$%)(h}mM%)&a$I$%)bުp$$E)II$ bsϕqߟ7-&yr i-) )3 hyzꠀ"lB:c Ǒzꨀ $ fYՠdeAoI:`seAFNe9Ap۶mE9$\@%)I$I$E)!I$I$1I$I$1I$I$1I$I$1I$I$1I$E)!W$I$E)!^UU !$IIE)!*&/E)!@$%)pۆm͖dE) 'I$I$1@$E)$!H  E)! $IE)I$IE)!UյI @$E)!I $! `&%) ؐ@$ E)!j$I $! L$I$1$!/& y䆩%_0:4O 0͐(I%x$O$f`mnݖb$1$$H$%) $CE)jA$H$! I$I!U% H!8 I$I$$!!-)I$I$$!!ɠ!bI$I$d!d I$IE)!սA$H$E)!z^_ !A@! I$I$$!!I$I$$!!JI$I$$!* @$H$!I$I!޿/I$I$d!d I$I$d!d I$I$$!!+zI$I$d!d I$I$!( @$!I$I!!** I$I$d!d I$I$e)$!I$I$e)I$I$d!d @$I$!I !/ $! I$I$E)I$I$d!d I$I$!H! < !H$I$!VWUI !) I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d  E)H$I$!XI$I!5%I$I$!( !I$I$$! ****m$I bHIw%y8Uկ+,yRH-+ 4)) 0DZ- =Ҥ 8)ǹEa @;x,@H_Ea !E1JJ**i%)3`jNE 53 !DZ44I$I$%9(۶m۰!ǹ*J:$IHDZE44I$I$%44I$I$%8"I ǹH (ɟϏǑR#$I1`0 1*5,ц1 @ӔMۆM1 "!" I$I$'9#@0 1E)@34òe)!I$I$$! "Vlbe)!Fi`1!0!I1(4I$I$1E)R"m Mf1pԆmhf1!8jIf1`B&dB21E)\Xz@3,۲e)!p@@II$E)!]I$I$e)E)81E)I$  1E)ʊ  1E) 2$C1e)* 1E)I$I$9`,3͆1!X``&aZm:e)!>dr: f1 *I$I$1E) I1E)$A"-e)@ڄMm1I$I$f1e))Ce) &I$I$E)!]uPe)  I$I$9I$I$1E).$I$ 1! B$I@f1I$I1E)+@, `f1!p`I$I$E)!]uH1$!4dB&$21E){{4I4)e)@ۺml1$! Ie)E) ,I$A e)E)6Lf1E)7 ۆ1E) !AH 1$!$*Hɴme) I$I$9@$@ 1E)e)%)M$k&E)!WptIE)! '@He)!۲Ie)@1e)I$@$e)E)6РI$@f1E)ᄎI$L&e)!뮬.mӮ1Aj@W%A Hf1ӣ 1E)I$I$9H$1E)^zjE)$!I$L$E)!]UVX!E)! 5 $A&e)E)%\I$H$1"H @!ɰnle)E)5x` 1E)^z[׭iE)! 1$!/mvk5I!X$IP) O7qE(߿+D%yeP"1IHE) D2 E)! (I$I$E)! *EIe)E) %I$I$f1E)߿$Ke) &$@e)E)P5XE)@m۵E)$A2$IE)!7_C9iE)@ *lE)r,'EJe) I$I$e)E)$Ie) I$e)E)(,[-5Me)!@n^ e)K kפE)$H@E)(I$I$1He)!$@E) P$I! e)!8I$I$1I$I$E)$! (*I$I$E)%! $E)*$kE9%!*Ume9+)RIbEA%!U3ݶeA_I۶f9Nmݶe9v"ݶeA_ y fQ'oZIg$ +*- I 3)v$ōDZ:*7Nbfx oy$i$ 2d$%)I$I!W׷ ! I!!'H$!8I$I$$!!kI$I$d!d $I$IE)!!I&d2E)!I$I$$!!hzI$I$$!!5$!p$$!pI$I$$!! $!I$I$  ! ! I$I$d!d I$I$$!!**H! ,$ !I$I$!I!. I$I$!I$I$d!d I$I$e)H! I$I$$!!hZZ @$!`PI$I$!6*!&H$!ؠ!I$I$d!d I$I$!(I$I$$!!UUU @$!`pXII!5%I$I$d!d I$I$d!d I$I$$! *I$I$d!d H!!  @$!`pI$I$I ! I$I$! I$I$$!I$I$)$ JJIX8** +w7X- 4 0 =0vS/=B&L<ph$I$9!\VUUH$I$!A`I$I!++I$I$E)$!@! I$I$d!d I$I$E)@$!P !@ !* H$I$!ZVVI$I!A** I$@$!b  !! @$H! I$I$d!d I$I$E)$!p$@ ! ` !L„$AE)?k6 ð PE! [yfX5---4@0Y:*4$IDZP`=1wW=#J$ǹpMNE9$!%InE)қ LOh '-/S` --5-TI44I$I$%:' ۸mǹJ*9HDZa53$I! %44I$I$%51#),DZ8ȏR.!"!DZ@@@ ٰ-1 @$!I$I$\TI !// I$I$d!d $!!!&I$I$$!!W! @$!`   @$!I$I$TWUUI !-++H$I!I$I$! I$I$!I$I$!$! 6!* H$!PA$H$!!(I E)!% knX8*.,yW7s`--9 4I$DZ%qU9$IF?$9ǹ @`؞$%9 aME) d$ E):0(DBXE?'''#7qWy{P--5|APf.62iǹDZ~41l%E Lƍdf N$I%7%;'۶m;ǹ*|8#&jDZP 8! @DZe@@ %I$ {dB&`B21E)1E)&%1`BI1 A̔T1 &LH&1E)k%X5e)!Xpp`IIE)!'7L$LB&f1E)؆m61E)ZA 1E)I$I$1E) 1e)I$ $1E)$IDf14H$H$1E)H&@$e)!PpvbǶa[1 j**!@f1E)1e)H$@ 1E)1e) &i"1@Fla1   IR-,f1`K؆1Tz1!'LHe) 1E)着 1E)I$I$9 H1E)I$I$f1E)e)!@I$I$$!!2cCHDf1*I$I$9I$I$1E) '9#I$ 1E)I$I$1e)#1,I1!x`€$A$E)!a e) &@$f1E)je)E)JZ$If1A(R"H e)PZ"9e)p M1) f1* HTHI1 @$1E)p$H$I1! X*H&I1  e)$!K&X4e)!x I$e)!/e)E) Ie)E) <TK$A1!p,t&If1  1E)H& e)!LI$E)!(*1E) 9@e) `I$If1! !$C$I1E)**$ HE)  K%زe)!p I$E)!/}E)$!@ e)E)$I$I1E)dB2$ 1E)ꫮ $e)!pj X:Pe!%$ENX0=XXebY׶ke)e1E)I$I$9f1E)jdB 1E)UUVz kmE)!(mX-e)!+(L$ E)V($If1E)I$I$e)E) $HHe)a )R(&e)!!LB&e)!*I@-E) $0$$! h I'E)` JE)X۶I$e)E)%UI$I$e)E)I$I1", %&e)! I$I1 @ I$e)E)m-M1j*n he)!J IE) I$$E)!A$H e)E)QUWI$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1$E)`HE) :`E) us;p++5-MH*' 7C#4"!$``@@Ljk9AI$I$E)!I$I$E)!E)!Wd$E)$I%)@$!*Im E)!UUU+I! E)!U@mmmE)6dE)&I$I$E)$!I$I$E)$!I$I$1I$I$E)$! E)!J*Vtk%)  @$E)!/ZW I$C2%)AjLȄI%) * HE)!I E)!I$I$1I$I$1 E)$!$H$E)!$A $!  E)!@$I$E)!IE)!I$I$1I$I$10 I$!@ &IE1 *+O$-_- &@I%i -``<{=E\`$IHE)A"$!I$I$$!!pXTLH$@E) :4E)!+/H E)!@$I$E)!I$I$$! I$I$e)I$I$$!!'I$I$d!d @$H$!`II!/I$I$d!d I$I$d!d I$I$e)I$I$e)@ !`  $!I$I$  ! "I$I$d!d  !@I$I$$!I$I$d!d I$I$d!d  @$!`II!7'I$I$d!d I! &$@ !a ! I$I$!((I$I$E)$@$!a`I$I!*>7 I$I$E)I$I$d!d I$I$e)I$I$e)@@! 8I$I$d!d  @$!@`I$I$ I ! I$I$E)I$I$!I$I$! IIP$ ? W$qH5---2pp E :3$ǹ>"4C34ǹ@```'pE9Axh@$I$!I$I$  !@  !/ I$I$!I$I$d!d I$I$d!d $!a@ ! @!(* @$H$!hxz^I$I$  ! I !** I$I$!(I$I$!((*I$I$d!d H !$! @ ! `H !(+H$H$!@)bmI-+ I{i8+++0yi ` 9/$IE?M$ f*1[J<$%)$!HIE)!L ÄE)!$@3PE /''wwqEH/--/4$p  ) 73mDȱDZU][U: "DZP@:FhMǹfAC8I4IDZXf*ʆ(tI҆^ Ux<ǫ߂ !QE 1e) 1E) C ۶m1E)ڰIb1  m۶m1E) (@ 1E)@3,:`e)!`I$I$$!!yo6lae)! A)l1E)󣋏II$1e)II$1E) I$1E)*I$H$1E)I 1b$@  1E)zj[-òe)!`@I$I$E)!}uIe)$!MB1!"  1e)* 1E)* I$I11UU  1E)(ɒ&I1@!M,i1]-ɚb%) `)1$! I$I$1e)yh"f1 ؠI$I$1E)@1E)f1E)I$I$9K$X$f1!V\XP`3cSE)!@ۖmنm1%)H$ 1E)ꪪ 1E)ۊ51E)*I$I1E)/>#Lɤi1 $r%e)AX va{f1! -5 1E)o!Hf1 I$I$9H$ 1E)$H!f1E)IH$e)E)PKU1 I!1E)I$I$1E)ꪪI$I$1E)I$H$9$M&1(1E)z꫾I E) ( ` 6PE) 'H$e)E) e)E)  1E))CE)A IDI1$! ɄH$e)!(- ke)!($C$1E)﮻$@ 1E)I$I$9 C2$I1E)h몪 $I1E)מk@3E)`-I%) HHe)P"ł e)АI$I$f1E)R#($!0f)5%NIP0-ϝx$ b$c8LKE)AbITW1b *I$H$1E)z1E)I$I f1e)ꪪ1E)믪$ 1E)uWZ`E)!J@i۵ne)! I$I$E)$! *ZzuDf1! ( 6!I$ e)E) mm׶1!H$@e)E)m e)!J(!CA$%E)bٲX;`E)ButE) *6۰-E)!/ $`E)!($e)E)7WR,@$If1 "I$I$e)E)I$H$e)E),I$I e)E) $I$e)E)X6m׶1E)ɖE) I$ke)!I$He)!I$I$E)!$@E)! I$E)!I$E)! WWdB&E)!$E)$E) U[a$%) `Ŷmۖ6E) $E) U6VtX% . 1Sq ---B$B*VrɆJjAY8%A$I$!a$ $!I&!CE)IҤE) imE) U  IE)!H$1$I$1I$I$1 E)a&@& E)P I$I$E)$!I$I$E)! @E)ظ@$E) +xW@$I$E)!UUUm6maE)zo`I۶%) A$IE)!?  E) 'I$I$1I$I$E)$!$E)!@$IE)! A$AE)!.!H$I2E)! $IE)!IE)!@$%)`pE)!`$$! I E)! 2d$E)z^ I$)7-)|y? 7_. J -c@Hh$냱E$ m銦A$ $AdE)**-6E)!?[[RE)ڢA$I$E)! $I$E)!I$I$e)I$I$e)I$I$$!!  @$$!@I$I!7H!!  I$I$$!!m[ !I$I$e)I$I$d!d H ! H$I$!I !?/I$I$$!!%I$I$e)@ $! `!I$I$e) !BH$I$!} ! I$I$d!d I$I$E) !@!I$I$E) !H$I$!\VU!I$I$!I$I$d!d @$!`I$I$$!!I$I$d!d I$I$d!d H$H$!xXI$I$$! *z!I$I$E)I$I$E)I$I$d!d IIP$ ?'''{yEH--5)A@ 50MJDZǩ@C3=S"$ǹ`p-;c'$1~~I$I$8II$!A* B!I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d $! ! I$I$ x议I$I @$H$! ! @ !!`!bI$I$d!d H!(( I$I$E) $!   !'LI%)7I$APE! ə{yeP=--2p @f 43I DZ > I*,DZ@فm%1 $e)[n 4%)Xi6E) j+ -XE///'yWyEP----50 b@ 64I$L$%53L@$I%43%53I$I%93mێǹ93vk۱ǹ=2-GgDZYJ9#۳H$H$9! ɄL1E)*(I$I$9!`$l&h1!1e)("$C"$I1e)ʊ f1E)몮I$H$E)!wv)Ie)! %D$E21! **j$IKf1a H$A$1E)۴a2)f1@6lfif1K$$I1 6,I$I$1E)ꪪ Ie)E) ,8I$K$E)!Td6`3f1 o1MkR1 زI$I$1e)** H$1e)*۲ ۰m1E) j&i1! 1e)I$I$'9#'{XՆ1h)` uV1! %I$H$1E)C$H1E)몪I$I$1E) 1E)ꪪ*I$I$1E)I$I$9"*Ie)$!@mѶi۶E)!{o1%)I 1e)IH$1E)I$I$'9#H$@ 1E)ꪪ@$I$1E)ꪪb2Ӻf1PI$I$E)!}1$!@ 1E)1E)۶ ۲1$! J@Je) @ @! e)E)`M:1!&'1E)I$I 1E)жxL&R1(K"M1 ܰ -e)a@ Af1! I$I$E)!Pe)  I$@$e)E).(۲ m1!*16a If1! Lme) C۶m1E){mۮKvE)! (Ͱ1$!/DB"$H1E)*@!1E)I$I$91E)zꪪ *Ie) Bڑ f1!)ֶE) *$I$e)E)x`0aӲ!@f)UUKlHA0-s/n5yE * BbEye Km1E)\ I$e)E).1! /$gKMe)(  f1' *I$I$9I$I$f1e)I$1E)W^k$b E)0H$I$e)E)WVWE)&I$1E)UU- 1!j+JHe) @![k;le)E)P I$Ie)E)5WH E)$!$C E)!*)m۶uE)!:MEe)! I$E)! I$e)E)-UXe)E) I$I$e)E)I$I$1",@`e) pe)!I$I$e)E)@e)0HI$e)E)e)$!I$E)$!LE)!m2`E) WIne)Ime)I$e) U_I؀de) I&[`E) @ !%HXE '/??&yW`---%>)nqww?9γ<ȃ'DZ\)IIE)*P"$IE) $I E)I$I$)()(I$I$1I$I$1I$I$1I$I$1I$I$E)$! 0%)@۶mA&%)qE) @$I$E)!XUUWI$IE)!UU IE)  E)!$A %) I$I$E)$!$E)!ZI$I$E)! H$E)!HE)!۶!,E)@Öb&E) cI$E)* E)!I$I$E)$!ꪪ E)!ꪪ`$IE)!d@ %) `h&I$E) [I$ $!-in݊E)!L$I$%1$!?"ɑɓf5-0x %-Ex&~Rc EzqXXa%1$  Ʉ$!0I$I$E)!%)!'I$I$%)!I I$e)$I$&E)!o{^H$I$!Z ! I$I$$!!+o{^I$I$$!! I$I$$!!I$I$d!d H! 4,$H$!ؾI$I!/ !H!I$I$e)I$I$e)I$I$$!!I$I$d!d @$H$!pXwI !' I$I$E)I$I$!I$I$d!d I$!'^!( I$I$E)$H$!`X\II!* I$I$d!d I$I$d!d I$I$e)I$I$$!!jzI$I$d!d I$I$d!d  @$!`I$I$I !j ! I$I$E)I$I$E)I$I$d!d  P WyeP----5#Np  :i$DZf?B%p&ǹ`B&I$!I$I$* ! !I$I$d!d I$I$d!d  !b! I$I$d!d @@$!@$@$!xxI$I$UU !- HI!**I$I$!(H$I! (8 !I$!? $@$!``!! @$H!*$H$! E)'IIX8**(yW1`--- 4( @ =0m;mǹ=&x$ǹ`HҴI$$9$!TUuI IE)!$ E)&ݰmMmE)#(j4HDJX$ ''//yyEP----5: E54H$I$%44I$I$%44I$I$%44I$I$%:# IDZP`93 ۍǹ>1v`?W8Ϳ秱eI$I$9!MM11E) 21 @h!va1 1E) I$I$9!9Pl1pJ"'r&1!^^Zx I$E)!'7@e)b@:Fi1@1E)㊨! 1E)I$I$1e)*X1!(6,$I! 1E)8L&@01E)zX%@3,e)!p`@m6mѶ%)A`( $I1! I$1e)@ 1e)1E)* uJe1 $@ 1E) (I$I$'9#, hf1 `m6`E)!"6m91!b I1$! ($ID1 (II$1e)H$@$1E)I$I$1E)I$I$1E)h*ن1!XdK`[f1! '7$I 1E)@ 1e)* sZ1!((1e)* H$1E). H$1e)-X ن1!WVXx&` 6af1!-%7$I$1E)  1E)jI$I$1E)*@ 1E) 1E)@ 1E)H$@ e)! 1$!* $I$9I$I$1E) 9  1E)j**x1g.Y-̆1bIdI$e)!/e)$! H$1E)I$I$9@ 1E)~ $1e)!@R+Ie)A[-E)!(1E)魕[5m1E)1E)I$I$9H$1E)C$Ie)$!I$[;e)!IڤPe '(-H o=x+ bjEyf@ 1E)zꪪ I$1E)k%m1$! d!&e)$!KE1$!/IB&$1E)I$1E)I$I$9I$I$9@ 1E)^믯dB2 f1E)UUVzI$I$E)! E)! ^$@$E)! Kzf1  $H 1E)dNnf1 6& hZ%e)$@!@Ie)! $I2 e)E)?_xJ$AE)I$dBE)!$C$A2e)!/ lE)I $e)!  $@e)E)5U\-A$e)E))U\$A$$e)E)UI$I$e)E) I$I$e)E)I$I$e)E), e) @H IE) I$I$e)E)(**I$I1E)ח$I$e)E)I$I$e)E)*I$I$e)E)I$I$1 r$ $IE)$A2$Ie)!&H&$Ie1b" yWxfP---=54X <hB.<$p!i6 e1I$I$)(LD $KE) E)!E) ۶-XmE)$IE)!0E)@`mنmE)2E)ۊME)@$!/$I2d E)AbLȄd%)8I$I$E)!辯I$I$E)!I$I$E)$!* &E) PI$I$E)!*@E)bP$%)-[2 %)`D!m2E)@!%) $CE)b E)!I$I$1%)$@&$A$! `p$E)!~ C&L$$!I $!? mڤKE) *6(H$IE)!$$!pE)t6vk$Q$ {/Ć3"-mf54 C m%y_"OR?c Ej O>y xI$$1$ I$$! L$L%)(k۶Z4E)H$a&!I! 0I$I$$!!I$I$$!!7I$I$$!!@$!p! @$!I$I!Ab* !I$I$$!!I$I$$!!*I$I$$! 8I$I$$!!=! @$!BpXI$I!uݗ5!I$I$d!d I$I$d!d I$I$d!d @!PI$I$d!d  $!`I$I$!VWՕ !@I$I$!I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$E)H$I$!xX^WI$I!Օ5E) !! I$I$!(( I$I$d!d I$I$)!Օ! P$ !yW1fX----5(dDZ < ۨmǹr?N"'x$I$I$!II!b** 6I$I$d!d !8I$I$E) !@!  !AI$I$!I! H$I$!X^^VI$I!յ @$! ! I$I$E) !!I$I$d!d I!!A !I !**@$I$!zztmPE;?/& ɛqH=-0 1N` %y- 9$@ǹa(=$"4ǹ @` $9I$`$%)!zdB$H$!Aɲm۶%)aۺKnE)a$XE''''yyEP----9k0 DZX 43%44I$I$%44I$I$%8-۶1"ǹ*J;۶mЖǹ 53$I 2%<$uB(ǹY:P=ǹep`ۆ  9)$C$@11 IH$@115 / 11ޕ(I۴kv1e)((I$9!)(1!R-hf1! I$I$$!Vi1Le) BJ1  1e)IH$1E)I$I$1e)`P'i1 8 HXN1 8 H1E)航ò e)!ɄLE) *(!S1!!1E)I$I$9! H$1e) * Qp1  I1J1 I$I$1e)1e) (lj f1!禾(P1k ** 1E)K $Af16i)1 BFh)B1 I$I$1E)I$I$9#)(I1!p@Ȁm-%)!@ Z)1aBIB1 @ %1Pۆ  1E)*(#Vo6b1! d$!1E)#1$!`I$I$E)!KTdK1 6. ")$Ie)@@1!*I$I$9 j*mf1!I$I$1E)ꨪ`e)!7e)! >I$I$1e)A$ 9K۰m1E).I ,1` IH1$!,@1E)zꪫIҤk%e)!ِ Iפe)! /@ e)%) 1E)I$I$9H@f1 h$I$DJ1!*hl `1$!kume)$!(  f1E)L&DB1E) mJDf1<ikm1E)*-&If1@B"e1  B$! HE ߿q %y@?ůދ%EDID21$!+n$I$1E)1E)I$H$1E)ДD 1$!*aX%1E)y}^`Rb,ن1$! LB2$1E)~I$1E)e)$!I$I$9& &)f1 H&mCf1A dE)!pI$H2E)!5W\` $E) % I$f1E)UU&,UӶe)A@Sm&l1 Ҷ Kde)8I$I$1E)`e)E)pK6 1$!~*C )E)  )DRE) E)I$$E)!+@$CE)!/mam6E)! I$e)$!$IE)!I$e)E)UUH$e)$!(e)$!$I$Ȁe)E)e)E)H  E) I$I$e)E). I$I$e)E)I$I$e)E)#%(e) p$ f1$!I$I$E1eJʪ*yTɗp$! +))1p % )>B#)"ǹE`@@hfEAE$Id$E)$!I"IE)& $I$E)!!H$IE)!I$I$E)! $E)*۰I$E) IE)$C$E)!UUIE) U-E)! I$I$E)!@$%)`E)!I$I$E)$!I$I$E)!*@E)I$I$E)!$I$E)!+.ͶE)'$kmE) H$I$E)!  E)!)E)Ȃ  %) E)!HH$E)&(V݆]6E)@$I!I$A%)+  @$E)!H E)! 1IIE)$!I$H$E)!$A %) 'RB$AE9R*pLygE$ =76[ǹf-5#xfz . H`O'%$ ^q&Q I$B %)@@$ ! I %). I$I$$!!@I$I$$!!?/I$I$$!!"! @$! p %)H$I$!I!/"I$I$$!!I$I$$!!I$I$$!!H! 8I$I$e) !(BH$I$!\u]I$I! 5 I$I$d!d I$I$$!![TI$I$e)I$I$d!d I$I$E)!AH$H$!xX\VI !5-) @! `!H$! 0 $!@ ! I$I$d!d $@$!`xI$I$!AI !- I$I$E)I$I$E)I$I$! I$I$d!d  !@!J`P'y1q`---/4,p`;1o;kǹ=H$J$ǹvI$I$(I!6I$I$d!d H!<I$I$d!d I$I$d!d I$I$d!d I$I$d!d  ! ( I$! I$I$TwU]I !) HH!** !  ! I$I$!  d!d $!@II! +,$@$!$ !IdIe)'ȶb P$  ɛ{yfP=--4t f <0Kh2}=R&J<ǹPHI$1$!|k۶E) ҢۺE)jEi%)!`!8E)!$HdKX% /'''99eP----4%! p 9$fǹ8 92}ǹ73mێ ǹ: &IDZf@9!$IDZ@ 83cIǹ:@ǹP$(7"$ q@!Ϗe$@1e)IH$11>>I$I$g9*`$ 11XP`I$A$11dB& 11!(II1!M$H&E)!`6a[E) * L1E)/?I$I$'9#@$ 1E)1e) 1e)*M5 f1&4 ,-1@ڄMޖmf1(  8e)!pTW{f1!%'۶m1E)/>I$I$1E)@$ 1E)DH!1E)  *C$M1E) 1e)*I$I$'9# 21E)  f1A(HT 1B۶ l1$! I$H$1E)/II$1E)H$@$1E)$HjDf18$A$1E)  f1!.j MU[1!%74IJ1$! B#a6I1!` 1E) *I$I$1E)(IH$1E)Kt۰1E)*(ڋf1!ɐI$e)!?$ 1E)I$I$1E)I$I$1E)@ 1E)*I$I1E)>$IXe)&p"%#e)!p@Je)! %I$ 1E)I$I$9BIDJ1E)b C$I1e)*I$I$1E)#В(If1$!mnvE)!ɐt1!+H$1E)Z1E)I$I$f1e) 1E)z I!1E)l1E)^Z{MuŐe)$!( $Iaf1@T@Af1! $I$1E) I0$@E1)o{ p̲!@1 I{iH-o%t%% jR$J$IE1$ #(D e)@TIf1I$I$1E)$Z"9f1PI$A 1E){dB 1E)z6P"-11$! Cmf1E)WY}H@P1E)⣭ִX;1E)~b1E)믟&HĆ1 $II1! H 1E)^ꪪdB 1E)UU^jIB&E) Vp $I$E)!-UXlЦE)!( vkue)E)5Ws 8 f1p ]ӭضm1E) @$e)E) %[2e)PmY1E)Mۆn1E)U_ ! @E)I$ 2E)! I$&e)!D)He) 6, dE)&ۀ%XmE)$He)!<[mMvE)!*l[E) IB&$e)E)UV  $$e)$! A$Ie)$! IE)! *$IE)!M&d, e) PCɐ$BE)@mE)$)E)$4vw`e 1d~d_X ?>M J***ɏ$$I $E) ^`[&E)؀I$E)jؖ$I$E)L$I%)I$ɖ`E) ImömE) E)!  E) `@E)I$I$E)$! E) PHE)I$IE)$!II$E)$! I$I$E)!诪I$IE)!>ۺ5lE)!`&IE)E)b*E)!.I$I$E)$!I$I$1۶%[2%)֤MnE) ,6   E)!?J $E) @$I$!  $@E)  H$E)!IE)!0%) `%)A$I$$!! mmݖ4E)*Ͷm6lE)E)!oa)1m$Aj+d1f  %3Oj f7 9h~ǹP :3 /@%q*~b f z'σ<%y E) $!H$! 8 $! $! I! 'H !8@$I$!I !/ I$I$$!!7jI$I$$!!I$I$$!!I$I$e)I$I$e)I$I$d!d @$H$!ܦI !7 I$I$E)I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$!IH&D&!!I$I!UE)I$I$d!d $! !@!I$I$$!!c E)H$I$!X\WI$I!ו-E)I$I$E)I$I$E)I$I$d!d HH! (I$I$) JJJqeWqawX8!))+,b( 4/`DZ @/e_v`?ʣ<IL$If1& 1$!@$E)!ˮ4 A1!.!@1e)*H$@ 1e)*۶ 1E) bTB1 4!f1@Z31!I$I%)!喙CX1! -7A[+&f1P1E)I$I$1e)H$@ 1E)KA$I1& II$1E)v6ۨ-ن1!V\Z IJ1!*#JJf1a$ H$1E)*'9#@ 1e) I$I$1E)5,i1!z]ץ۶E)!1$!++-I$@ 1E)z1E)j1$!(* LB21E)I$I$1e)ۤMЦ1!(1,AE)@IIf1A$ @@E1)ks!H1խ ߹a@+wS.V)E * B۱}eiE )1E)@@P E) #9D e)`@I$E1!*1%) I$I$1E)I$1E)~$I$1E)/%ǒ,H1E)Vzk;ٶve)$!(Bm&1A pݖldAe) H(Ie)A$If1IJDe)$$I$I$f1e)S%R"Hf1 Pc2$ f1!zꪨmNe) .&i$I&E)! UXK[I$E)!-@"C)E)@&^:f1r A@1E)ض  1!*jTJ1 &.  e)%)@e)%)L$e)E)WI$`e)!*EJ$ E)m3lm׶E)!(($)E)&+mE)!mM,ge) 86-Cچ1E)uU_IV$1!*{M$1E)UW$e)$!m E)E) 0%) I$E)!@ڶme)!U lX$./?Jq}`/w"}IFURN$|v86 PE) vۢE)IamE) $IE)!/$I$E)!*!I$ E)! IE)!*I$@$E)!* I$)(I$I$1I$I$E)$! [۰nE)a I@$E)!* ɄLHE)<ۺ-۶ E)@ ٖ lE) $I$E)! 0E)(I$I$E)! I$I$E)$! I$I$E)$!I$I$E)$! E)! E)!+ $E)!  I2d$%)!z_WUI!I%)*I E)!-$IE)!IE)!* %)b&-[-%)`I!I%)a"@I$%)i6lE)!.H$I$E)!$H$E)!IE)!~p߿%y$ 2P)Ԇ :/IPn9V8ǹ4$#͂x3L"X$PA$I%1$!I$I$$!!pI$I$$!! I$I$$!!I$I$$!!PX@$!($H$!I$I! I$I$$!!$@%)ښ*I!&4I$I$e)I$I$e)I$I$d!d  @$!`p\I$I!Uݗ%! I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$$!!$!I$I$! *I!- I$I$d!d I$I$$!!~?@$@! P(I$I$$!!{H$$!I$I$d!d $@$!`pXI$I$`  ! ! ! I$I$! I$I$d!d I$I$! I$I$) JJ"IhP55/ Np %y----81q;ȱ=1gvWY$Y%0  ! I$I$d!d I$I$d!d I$I$d!d I$I$d!d ! !! !H @$!  I$I$!VWWUI !-- @$@$! H !! @ !@@$I!H!(((I$I$E) $!  !L$IE!zz*>AH PE)%%H/0 1%y-) 41PDZ ?"1C#<DZ@`p؈-;9| %)j@&$@E) _ִ6E)M$C" E)b@.muҡE) Bۿ$iQIIX?-ս I~ۮヘOiMàWړn㣠U$fwMĠU#AM%~m -=ۦm䨪 ;+$I 蹆):3?DZUU:@#),`@4I@A 11 I11 .6I$I$g9*HH$114Ph ]@1A #!(I1E)زl1E)zMKnE)) 1!-TBɐ 1 "AI1 @)1%)!$I f1dB2$C1E)1e)1e)* H1E) re) , IN1!#,Ue)`6$I1!dn&i1 1E)C5mӶ1E) 1e)I$I$'9#[ 421E)p`S7h1!`$01E)`44I1 H$1E)I$I$'9#&-B#01 ``j4 C1b I-1 @U1b1` $ARf1$! /! 1E)*ʪ6AB1 I1E) *$I1fX1E)* p&W1((X ,1!Xx`$AE)!>RRh֖j1!P6mB1 $ICf1 IF1m۶m1E)I$I 1E)" 1!b(`);e)!5Tml1E)&a1 ( Hf1 I$I$'9#H$@ 1E)II$1E)Z+1!Ͱm۶mE)!/*@1%)-H$1E)I$I 1E)&m-1!@ ݖm1! *K Df1b< e) DR")0@e)UUU5ҌƎvAP15 I܉yiHUյ/0wXս+*He r9n9e)\zBe)E)I$$0e)!.$A$I0E)!. "`Ke)@ )I۶me) 1E)$I¤f1adB2$ 1E)~!IB&1E)~c+&I1XSnsm1btkf1E)-UUM䘆1E)b,Qf1   1E),$A$A"1E).KTdAf1!' I$I$f1e) 1E)wz$C$ f1$!꯮I&E)!U\mӶmE)몮I$e)!+]$A E)!-I$1E)UU! d1$!*ֶk3le)%)@$e)E)P$$e)0H$I$e)E)($I$e)E)$C$Ae)E)(8 "I1!I$e)$!I$ Ce)$! !$IB0e)$!C:mۮe)Apmm۵E)!II$e)$! I$f1E)mUUtB'1ں1IE) I$e)$!$II$e)$!d@Ѷm%AE*:7A0+'% ]@&v>zj]t>9!x !IE) &IE)!IE)! $)(5E) @lݖmE)b E) I$I1I$E)! I$E)$! E)!'I$IE)! I$E)!*$I2E)!E)!I$ $E)! $ IE)!I$I$E)$! E)$!* [&M E) I$I$E)!+$I$H2E)! $H$E)!W_$!  $AE) /  $E)!/@$IE)! E) I$I$1$E)!H$IE)!$E) LH E)! `H$IE)!$HE)!IE)!I$I$1$A$$E)$!*d%$'0 s 9B(x0IX :2۶mǹ:#,#9 `@@0 ڢ$9$!!I$I$$!!I$I$$!!I$I$d!d  @$!BII$! %`$!(I$I$%)!חI$I$$! I$I$%)!I$I$$!!I$I$$!!$!pH$I$!Vu] ! I$I$$!!I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$d!d @$H$!xI$I! z$!PI$I$d!d I$I$$!!+ !! &I$I$$!! ! H$I$!ajII! ** @$! ! H! I$I$d!d I$I$!@$!0IIP$ ? [yqP5552eX :42DZ@2"#2EJJJJAA$9A!`!I$I$E)I$I$d!d  ! ! I$I$$!!o?I!H$H$!aI$I$!a*'  ! I ! !A!bI$I$d!d I$I$E)I$I$!  !@$H!(+$H$! I mH? I`Hյ-*w7X/+7$)aniǹ-*B,m?蹦=R&h'ǹ C2$C!A@I$I$$!!(I$I $!!8!A$AE)!@E)!絛6mE)*jj nbXE /'y9fP----<&)7rǹ);3-蹧Dmmf:#$I%~ =h$IDZ'< % Urvr !` Z#h?-%WM'M%^ թ3 -Zk<nt1E) *,1e)$R"f1P01E)"I$I1E)B *!@$1E)  1E)J**1a&I$I$E)!꫋ݐm) 1$!"-1e)*H$ 1e)h( 4I1  C$I1e)!I$1E)*.-PI1u;h 1!)joצf1!' Hf1 J$Hf1  J ق"A1 J5A1к$K f1 ۖmۆm1E)p"%#f1!\PbdKv{1!5$R#)f1 `FlFI1  1E)*I$I$9!I$@$1E)mӶm1E)ꪫI$H21! I$E)!  1E)ꪫm$L$1E)I$H$9A2!1E)**41<.f$X2xf1"`mH) ;%y8+&s@H) 5%e `Pl&rAfI$I1e)((` P 1!/mm1E)u&R;e) аm[&E) ]a閤e)!, $H$e)E) >X"%C 1p   I1E)1%)⊪  1E)_z&8Se)``K&]a1E)W][I$H$E)$!( $f1$!/&iP%f1! m1J!` f1 I$I$9I$I$f1e)ꪪI$I$9H 1E)Wz$C f1E)yVI0E)!W`I$M2E)!Wu^I$E)! ]U$ $E)!%Uд[nE)! @d('e)A Ī׵e) hؖn1E)a$I2e)E)$!$Ie)!@K$Ie)  A$I$e)E)I$I$e)E)8 !$Le)E)80kX1!II$e)E)@e)E)**e)E)* dB$Ae)E)Iۺ 1E)UI$Ie)E)u I$I$e)E)dH$AE1e!j*6Tyy *-))8ЉbJXJ <2)*ǹE @@jkQeAEe)E)Z{`)( )( e)E)W/E)!I@$E)!$I$E)!ضm۶5E) `$I$E)!* )4鄉!E)$&IH$E)!*@$I$E)!I$I1I$ $E)!0!IE)! H$I$1I$I$1$E)pI$I$E)!* I$E)!* MڴE)!6,H$I$%)!}WI$IE)!UUIE)!/  HE)!IE)!I$I$E)$!I$I$1 @$E)!I E)!۶mɖ %)I I$E)!*I$I$E)!* %)a E)!I$I$1 @$%)$!I E)!$A$I2%1%!?|I$E 7u1  rq +4.  DZ9*B[qǹJ::2y$̓$L$I$!AI$I$e)I$I$$!!@ $!I$I! >@E)*I$I$$!!$!4I$I$e) $!@$!A'$I$I"%)!_om@$I$!XW]I!7 I$I$d!d @$@ ! !I$I$e)I$I$$!!V-$! @$!`I$I! x* !b@! !@$! !! I$I$d!d @$H$!`xXI$I$!!. !@!0@$!аI$I$d!d $!`!@!0 II$H$/Wy%yH=---6NtJǹf)):$m01ǹb<.)!ǹ@@@AX$1 ! H! I$I$d!d I$I$d!d I$I$$!!I$I$$!!I$I$E)$!I$I$!^VWWII! ' @$@!(! $!` ! I$I$d!d !aI$I$E)@ $!@ I!AI$I(jj!i$%P wf8+'31w IE 5.94IxDZǩ 5=0mG?7H<$ H!(<$!$@$! $ $$! $$!! $ 0%)`ɖlmѶPE'yW9fP----5#St /5.dDZǩ/=5*~8MDZ"6+@kDZ(5,$IHDZǡ50 IADZǩ;2/'_[ǹ _>93; ǹB`*Qmǹ =h$IDZĠ6M@N&1DZfp` ڦmlA@ 11`11 $C$I)I) H1E) I$I$11 Z,291^[{ktBM†1E)XI$I$e)E) 1E)dB`1E)I$I$1e)*(L`B&1E).I$I$1E) m%k51E)ࠀ1e)R#a I1 `6mje)а-nm1E)妿!$@1E).pD If18 d`J6i1e)0 h6`11\I$I$9 @B2$ 1E)$!I1E)" 0I.)1@ b 9A)F*1E)$I2$"1E) !21E) HH$1E).>I$I$'9#H$ 1E)ࠂ1e)**N5B$N1&uX f1ae1!/@1E) 1e)** H$1E)**$A2$I11UW=ږl&a1  1E) @1$!`[ۮ͊E)!oԖAq$1{4AHf1 I$I$1E)IIB01e)H$@ 1E)I$I1E)ꫯI$I$f1e)Z,41!WTXrI1! 5`@$@1E)I$@ 1E)1e)"*1E) I$H$1E)[1E)zjI$I&E)!( C-ذmE)`DI@ 1!B$@ 1E)$@$1e)*#:6e1@I$Hɟ߿yEH/'yS i- ; wQ}=o1hϟeI%f1:)Mf1!@ِk19 [-۰m1E)j*ts%1 Xj *If1ڠI$IE)!((I$e)!*(I$@e)E)> 1E)I$I$9$ &-1!"j&lHf1A )dI&1E) h1E)^`jņ1ظkmE) D 1! +IB&I1E)*!I&1E)1E)I$I$1E)$I$1E)I$I$1E)H1E)_[$X*e) -$E)`mڄ(%1z$ILe),0I$!a`(ٖam۶E)!E)!u` E) mڶ1E)U$ $e)E)zUk&e)A I$ e)E) $B2$ e)!ɖjIe) I$Ie)E)(I$I$e)E)( H$Ie)E)x $Ae)E)+j$#af1 \$$0f1E)~YfE)A I$I$e1E)?UDIXf - q+ -->0|?E$E)!I$E)! I$E)!*$I$E)!E)!۶-[aE)@jۖn mE) :$E) hmݖmE)I$I$1I$Ie)$!*Ie)$!* 4䄎 E)& Kfö E) 8KdmE) &I$I$E)!I$I$E)!*[uE)P!`$E)!`$IE)!I$H$$!!I$E)!/I E)6 @E)!E)! E) `%)$IE)! E)!I$I E)!* ۲5E) @!%)   $d%)`E)!I$I$1 @$E)!HE)$! E)!j$L$%) I%)./ !tϛE '73 SE +-:mǹf9xR"<pI$L$$9$!UWWTI$I$$!!I$I$$!H !(IȐ$I%)a*I$H$E)!II$$!!  $HE)4A$I$e)I$I$E)!I E)&% $$I$%)I !7 I$I$d!d I$I$d!d I$I$$! I$I$$!!I$I$$!!z_5I$I$$!!  ! H$I$!بI!- I$I$d!d H!,I$I$$!!* !A  !@!  @$!pI$I$!VUUUI !%- !$$!`H$!:I$I$d!d @ !pA$! " I$I$d!d mۦM۠H '''wuxEb +++7Nd ǹ/ <B# IDZ@`="0B#4ǹ@```L$H$$A!WTTTI$I$d!d I$I$d!d $!@H !I$I$d!d I$I$d!d I$I$E)@$H$!hzZI$I$5  ! H$ ! ! !@ !I$I$E)I!AI$I$E)@$H!(H$! I H' IywqHյ-.N H% 5+)i@51@$I%= $I!ǹEi@1ف$9$!, $!($A$I2$!@@!%)  E)! $E) )u۶mE)* 7W%% /73 SE +-40 DZ 83nmv`ǹDZ??:HCǹP 51H$I%5, IDZǩI8 (! DZ%q@9AIDZi50$H$I%41%:m!@ !IZaI$I$11 H11 ,((I$I$)I)@$@ 11b@11 -nmv91ﯿ-nkt11הN$L'1E)XII$1E)WILH&1E)LȄ$I1E)(DB"$B1E)  1E)  9!4qb%f1ppۆmݖm1E)!`$@ 1E) I1E)ꫫI$A 1E)H$@ 1E)$@!1E)  11‚ I$I11/6I11/ IH$11?J&m9e)J:A 9e)*1L9E)ͧ!K X1E) .4$C2 1e)1E)⊊* 1E)I$I$1e)"  H$1E)`'9#1E)j L$1$!DI& f1 P  I1e)(&"1@Y&M1 ҡH$H$11TWTWIH$1E)*1E)(( K1A@E)!p6lb1$! @$ 1E)⊪A$I1E)/XK 1$4I$@$1E)I$@$91%)j*eۊ f1!UVX IC1!$HL1ILB$1E)*1E) 1E) $I$1E)s&6A1hE) ؠc$%E)@4i4 f1d„P!_-uӮX(j&'} %y8+*wRCᇡi+kB00ilDZf6>4B秱E `PшZ]fAE[ n1$! L$!1E)*L 1jf1I$I$9!C$I1e)H$H$1E)R+ff1 0L&f1$!!L2e)$!*kݖe)$!I$1E)@f1E)j$H$I1$! *DK f1 <k&&If1 h iۆ1E)+B1!z I$tf1!UW^`Sf1!*UW$&1! $1a1@@ ܔr)Y,f1 Xo1&& I$I$1e)I$I$f1e)I$I$f1e)$I$A21E)*["hLe)I$@1E)W[mۆmE)!pI&e)!U*ؤ-HE)!$I! $E)pI&dB%) Z$I$E)"4-AN$E) (:`tE)0E)!%SE)b,$$I$e)$! e)E)ud۱me)$!*@I$e)$!I$e)$!I$e)!1DI$IE) $KIPE)& IXe/'?(9W` ---5+ij>ʣ$p%蹂BE)!k$IaHE)!*@0E)! I&E) `0ٖnE)E)!I$I$E)$!:**Il6E)IE)! e)E)%I$I$e)E)I$I$)(@)(X%@:lE) Рm۶-E)BI$!f1!$$E)! $IE)!$AC&$!pd$IE)!- IE)! ؆mɖlE)I$I$1I$I$E)$!I$I$E)$!۲aۺE)@!I$E)!E)!I $E)!*A$I$E)!ฯ E)!KI E)!I$I$E)$! E)@ %) $A0%)!` %)2I$E)I E) U% E)!mk׶$1$ B *'IE'7ddNDZX :B#).ǹ`@ڙ%9$$! \$I$!!$I$!*   @$e)II$e)@$1I$I$%)!I$A$e)I$Ie)6k$E)jII !* BI$I$$! #I$I$$!!pI$I$d!d  !@!I$I$d!d I$I$d!d $I$!|I ! * I$I$d!d H!I$I$$!! I$I$e)I$I$d!d I$I$e) d!d H$I$!X^VUI$I!Օ%! ! I!f@ !@!! I!%& @$! mP E0.*9b`JDZEyC AVmڶmǹE?C38R"%ǹ``PHm۶9@$!ppI$I$d!d !!# I$I$d!d $!  $!I$I$! II !-O$@$! ! I$I$d!d I$I$!( I$I$E)I$I$E)I$I$E) !H !**H$H$ @@ٖmݰ P ɛyufP-/3v @f) 52m݆aDZ 44I$I$%>"-38ǹ@@``m$H$$9$![\TTI$I$$!! /I$H$E)! %) $E)!E)!*~I$I$E)!I$I$E)!۲akm%1$ B*&Sf$ '74 s--; :5DZP`;"1mqǹ50$ILDZǩ 54I$I%43%: ɒ"IDZf@9#dL$Iǹ51R,A$I%7)"I&IǹJ;tR.9 ` I$H$A1@$ 1f1$I!1f111 11  I$I$11 p&C091V^Z{X25US͆1E)p`I$A e)E)zA  1E)1H1E)۰ 関1E)( 6I Ɔ1E)( Ie1$!X1E)ࠠ I1e)1e) I$I$1E)-nmf1E)::nN1E)$i1E) /?,II11 IT1 &&11@ 11`A 11/11  5=9E)xx cZ9E)io B1E)`'9#H$@ 1E)j:L1@ 1E)Š 1E) '9## 1!e1!*1E)I$I$115UUUHB&dB21E)I$1E) $C2$1E)I1E) *$B$I1e)*(m;ǘ f1$!ɐdI$f1$!/?$1E)H$A 1E)1e)1e) H$1E)Knضu1E)#)I1$!rj (Nag؆1!7UV II1 1e)* &1 ۶mڶ1E)4dB H1E)"I1$!@*!8i1@I$E)E I'bHe!%I$Y@+ɝ۷kfP+, yO$%y-/#DRf874ৱE9B@($ۺ1E)j͆b1E)kmݖn1E)H$ 1E)*@$21E) nj ^b1 I$I$1e)Ky&I1 1E)ꮯi@ `e)!(M6mE)!*(HADe)! ($E(01$!b$ 1E)I$I$f1e)I$I$1E)@ 1E)zꪪ $dB1E)~B=%Kr1!pZ=@,L1!ZPI$tɆ1!UU^Үm۶E)@* -g1!h4If1Db"f1aРI$1E)1E)I$I$1E)*$H$If1 $IF1$!I$I$9H1E)^I$1E)UbBe) Pma۶me)!zIE)mE)$%PE)!.mvME)!ݕ C$ E)!^wժ@ E)! \XI$Ie)!__-@E)!+-\E) 'm ie)!*It%)& @$H$$!! ?dRE) [uִE9:1Wy{fP----5 ҁDZf B=R"=AS,ǹpcB؀fn0E)UU\VͺnضmE)!.ٺm۶ E)!낪"۲mE)@ٶmE)Ie)$!I$I$e)E)#I$I$1 I$I$)(I$I$e)E)*$)( I$1@$Ie)E)WUU-I E)! `ڦE) @ A۶mmE)*I@$E)!d$IHE)! IۺE)! $I$E)!I$I$E)! E)AI$I$E)$! %)@$E))IE)!+I$IE)! I H$E)!I$I$E)!*I$I$E)! E)!I$I$E)$!I$I$1HE)!꾯-۲mE) B0E)B @$I$%)I!@E)  %)$!ꪪ$HE)!$C%)J B$A%)b)Nqf  )=VRnW;?<ȃR"%hǹI$I$$)!^uI$I$$!!߿) !@!I$I$d!d I$I$d!d H$!@$H$!hzzI$I$!Uյ  !ABI ! !,I$I$E)$H!I$I$d!d $!**I$I$E)$@$!`$I$!"IIPߟ?'K`H5+yS a-+ 4*)w ) 5,IIDZǩV5/-h*1DZ;C"%XDZphm4E) I$HE)! @E)!%) @%)  %)@ E)  0%)@@&E)"SI`;I$A$ j,O9f '8 M&rǹ*72JQGǹDZ: B'HDZ%y 5-&& IDZǩX5.8'@DZǩ$ :+$Yn=`ǹ5/$IDZǩ 52۶m %54I$I$%6@wԧi II$91 11 ,I$I$91I1 'I$I$1f1 -91k/bݰ 11M->IӴK1E)g 1E)魥DN$1E)/?3=( 1``F̀*i1!J,fI1 B$@9 ! 1E) *(I$I$1e)*(l 1$! @&A1 p-1E)rB 1e)11  (mݖl91 I11 '>I$I$11I$@$116p@H11,(" -`mv91ﯿTs٧9E)޸0 T1.I$H$11UWV\ 1e) **I1E).8$IX1$H$@$1E)$I"!1E)***,L6If1 II$1E)>) t1E).I$I3,11UUe`I$I1E) -Z1!`tN051`k%R1E)1e) #)$1E)pB J۶mؖmE) !H$1$! 5 if1IH$1E)1e)@ 1e) aۀf1E)6us 1 0j Ւ I1!^p@dvjf1!7u Df1!6R*:I1!J `1( R%$I1`B2 1E)Ҫ&"H1UU XڱAP)^V$!X@_/B}7 f@+31WnD%q*3& $eV55Ie`)xe\$LB&9e)~I$A 1E)I$C21E)7:4 1E)r'@1E)@ I$1E)*!IB&1E) 1e)*I$I$'9#H 1e)*۶l1E)~XZ1$!*CbM5f1E)[U^C IE)! a2$1E)Yrf1 $ $1E)I$I$1E)I$I$9#X1!6!$LB1E)/~aI$1E)uՂI1!^mۛ $1 `$I$E)! w]Mvg;f1aj:A1$! I$1E)$H 1E)I$1E)JEmf1 I$I$f1e)$ ,-f1@e) I$I$@!$A2$I1E)* $Af1 I1E)Uꮿ[31E)Uc:$J1$!k*̕& f1!mv1&$I&d1E)_WU[ӶmmE)!Mm݆mE)!Ie)$! ,E)@LaHE)!*v׵uE) & I E1![%yH---6dNǹE++>Zǹb@}AEAE $Ie)E)$Qr$e)<$IIE)I$I$e)E):I$I$e)E)I$I$1 $I(%E) P$IH$E)$!"$Ie)$! I$e)$!$&E)! ke)!~`$ I2E)! H$E)!޿mێE)!EP(E)" $I$E)!I$I$E)! I$I$E)$! I$I$E)$!(Ia۲E)!%)%)@E)I$A$E)!.$I$E)!$%)`E)"I$I$E)$!I$I$E)$! E)!E)I$I$1&E)H$I! <(IE) E)!@$IE)! E)!I$I$1I$H$E)!^Z Oy$ '70N1wi -9JR24aP`Iش e9$1`B&$A%)E)$!$$!H $E)!@ @$E)$!m׮&E)*zH$I$!> I%)! .6I$I$$!! ! I$I$$!! I$I$e)I$I$d!d I$I$d!d  @$!I$I$! (  !@ ! I$I$$!!>I$I$$!!I$I$$!!H!(8I$I$e) @$!`I$I$,I !% I$I$d!d  I!k !!A I$I$$!!rZ^I$I$d!d I$I$d!d  @$!  A$  ¢h!J P.qS1ui----8S&@ǹr6!&sէDZ??h&x$$!@$ ! I$! .!I$I$d!d I$I$E) $!I$I$! II!-+ $@!A$!` !bI$I$E)I$I$d!d  !*** !  !H !**@$H$!@ɖ H RE0++4D{@H**5%$V7DZ5"@DZ; ADZa<4=x$K$$!bHdH$I%)$H$AE)*$IE)!@E)!ڪE)!*2E)(%)aE)!*I$I$E)! qEq707 +-5$ 92-i6#ǹ(]6-$ItDZ73vhǹDZ=*$$IǹaV81CpkǹDZ\}5-dq MDZǩ 5-eP%@DZǩ0:NJADZP$4X>8 p I$L$A1thC;91z I$I$91? A$1 11 II$91 N$b"$91VZR 9@-Ȇ1E)Xp`IA f1E)yr"[1E)( GC9 II$11{dM14<I$I11UUU.")0@1E)h!H$1 "aH1b@)P If1 6lKA1E) *: ox9E)/tKf1E)*((}r]1 L&d291W^~~ }j"}1 $$ 91 11 611 b25L9e)bŠ [.ZO9%)C/FaV&1$I 1!چi L1  !AI1$1E) H1E)(1e)he1E)ޜҮf1E).:61%) .I$dB91I$I11j+R"ɚ I1`&m1$!) 81E)*"A41@io(a1!l`E)hfAR1!   1E)* I$1E) I$I$9!`1E)ܠE5v1E)"**H$@$9B#1!Xpd ef1& L&1E)*C2$I1E1 V$M?bH1UU ª:!P1Սm-`8-I?EHU} H'E$ X, OW)$EhmfAf I$1e)1e)&"1@ܔnVh1 , 1E)zb!H1E)jZY`ɐdf1 $ 11E)pH$1E)۠`2f1  1E) I$I 1e) $C$ 1E)*I$@1E)1E)z鶭 1E)W~$I2!He)E)` I&1E)_I$1E)$IB&1E)$ 1E)Li$g1,@ I$9@1E)ꪪ $d1E)BI$51`*#dS1$!z v: ie) zi۶k E)I$f1! UU0I$1!Ulf1$! I&Xv1E)*I$Mv1E)INTf1 && $1E)$I f1 I$I$1E)$ e)E)@1E)I$I$@! He)%)Z5m"-e)@@N  e)&FJYf1( 01E)I$I$1E)$If1 1E)jðmv1E)Mre1 .ؠC+bP)%{u%yH--/5 brDZ%qK +<!% mǹ%q) ,ˏ I{kp$ '7'fu@"+ ;JZ25 P`m۲ E9%!$%)$!`$$AE) I$I$E)$!k۶6E)!z@$I$E) ! $! I$I$E)!I$I$$!!I$I$e)@ $! @!AI$I$$!!I$I$$!!O@$!* $!$I&@%) PI$I$E)!I$I$e)@$$!P $! E)! ,4@$H$!xX^I$I$ UUՕI!KI$I$!I$I$e)I$I$e)I$I$e)I$I$d!d @!I$I$$!!{@$H!A$H!c6!I$A1$ : qH70p %y--) >$I DZX@0wvG|<ʃ<,!"1ǹ@@ګ $9I$I$d!d H!< E)I$I$$!!@I$$! dɐe)d%)$!$$E)R %)A$E)!ꫪE)!I$IE1$!*x'E$ '_2 s% +-6,P3 fNDZp5[,I@DZ7 I$IDZf<䧳=Aǹ:=-ǹf;79ǹFz<c.@ǹf Z5 ADZf^6̏` i6m91II11+9 (,2a1!@@ R&H9Vlݖn11 IdI$91? ب-91V\ZX 9"Ȇ1E)p`r$)1E)a Ȧ1E)l91HH$11((k 11i׶X`91X 11Pp@9   1E) L$1E)?j41A4( S9E)'6 XNZ9 &(L$I1 X,H$I1ضan91$I1kQۄm9E)޺$IX1!$ C9E) * *9 B&' !J-v1A c; ڧ91]wvòm1E) ( 1E) +* I$9! `$1E)(l 4I1!"EX1E)(* **V)41b ``81E)6dB2$11 11 *۰m 1E)$I$11 ,&)1E)@$M\1*!B11C<6Ks ن1E)\p dB&1E)^mݖa1E)H$1E) 1E)$I$E21E)**ۂm@f1 ަ 8:H)WU-&@)-I4Pb8 0h ` 0{y h-YfY ܭp$I1E)*I9 Xl1E)I$1e)*k:`1E)^ۺmk5e)!``[v1$!/I!1E)ꢋI$LB&1E)/ ln1E)$I(-1 @mIf1AAI$1E)$C 1E)ꪨ 9E)- %nK9E)XÏR"mI1p (CmM׶1E)  $@ 1E)+R,HM1! &)*i1@J$Ȇ1 ۦmI1 I$I$1E)I 1E)zIdf1E)zz-C1 @me) I$1E)tI&1E)*?5Lrf1&I$Hf1 P$ $I1!"I$1E)*LB 21E)*I$e) If1 m;I$1E)t"DI1$!^ :1!U^۳ H1!UU^I$I$E)!UuX`H$I!tI$1!(UU@i'e)!zۆ1!U$If1!ݺmÖlf1$!(#4If1z`I$1E)I$A"1E)J&iBe)aI$1E)߻Igo$If1% פ%f1 ((I$$Ie1e)okH$HPe!"ɝwEP-/81nD ǹE:"J0`$iǹ5.6T*DZǩ0<#4")DZ% p`@@" KĆA$!m1Me)!@E)!߫$E)!IH2IBE)!.$mێf16vlHe)!߯N,Z$e)! H$e)$!$Ie)$!*ME)$$kdhe)((I$I$e)E):*~IȐ$IE)&I$ E)!I H$E)!ضm:,E)!bL( HE)Am[$E) I@$E)! Km[E)8II$E)! ؆fItE) '۶ۺ-E) !E) I$I$1I$I$E)! $MmE) fvE)&E) p\`$I%)IE)/ I$I$E)!" HE)!E)! I$I$E)!$%)$!@$IE)!E)!$E)*L$I! &@%) b`$! &%)E@7W% +)5 @a $!10E)!z@$I$$!IE)?H$I$E)!I$I$e)I$I$$!!(I$I$e)I$I$$!!I$I$$!! $IH2E)$!I$I$$!! $A$Ʉ%) I$I$e)I$ $e)I$$e)E)![@$! I$I$E)!_ @$!`xI$I$((I  !- H! I$I$$!!I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$$!!. @$!xI A$! !/ IIP% ?? wkWw$qa *+ 2` 0 :C<&Iǹ>1 ǹ7?'!ؑ%1I$I$e)I$I$$!!)I$I$$!!I$I$! I!$&H$I$!~^_I$I!յ ! B@ ! I$I$d!d  !( ! I$I$d!d I!&!bH$$!!M$M e1A޺*I P$1"(&w@ 4#TJD 5*PO! %41.%50x DZBC%b&ǹ`PpL۶8f9Aj$!"I$I$$!!@! d@dHE):6m6E)h  $E)! !A2E)!*kl$%)a  $%)IE)$IE) [$]E)AzcېDE1o$sEE 4 Sf -:$ǹP($: @ǹX,$9-$ IDZ%iP<38'̟ǹ 9## &IǹZ=%' ǹP;ciǹfZ;(%z vmfbA  91 91ﯿ $؇9  L1  I$H$)I) M,\9e)₪6B$@1e) .Z#:f1!`` x1 0)1 ذ-91C 1f1₠KI1 $IL1hv11%Q``kj1!-X1%)B 9@9E)r{K ّ9E)$IH1 II$91"PI1AJ 4.A1m9!K1A9e) mжmӶ91 *9%) `\9E)sA Y&O9E)-H$@ 1e)H$ 1e)1E) ҡv1E) I1E) *`1e)*#@I1A`Hj*u1(  G1E).<LH&$11(" I1 @PI1 ۶m11HH@1E)7g 1$! SM9E)b*v4Ɔ1$!O()L$1  I$H$1e)*H$@1E) J'!81UU 9m H)-M׶mPb0> .A`q8/ ?A`nq Xpb<1EIܭԔNNa1! 7R"4I1PaB& I1E)I$1E) * 1$!X6m1E)ࠀ4 b'1 d"1HI1E)Zj!d0e)$! 6嘲)(1! LVf1I$H21E)2AM1@I$I1!@ 1e)  I$1E) I$!1E) [-ڶ1E)(ꪪXbNeǧ9E)X%_\&j.1 ؐMAwFn1!&. k 1E)*I$1E)+"A651 @`4HTI1(%R"H1Pk[m1E)$C$I1E)+I7iP1DIdAE) 51E)%mI1E)I$1E)N"1!**j4H1of1 $I1E)$H$!1$! @"aTH1!KFpbņ1АI$I1E)踪I$1E)ò-&ie)@@$I1@ $1E)k#a4If1!~ I1!U vbېe) zmm#Ae)!}UI$IE) } I$I%)!@$!*/$L$E)!VҴmnE)@+`&IE) ֶm$e)!@d$E)!@$$E)!*$Pf ?/ ɝyiH=-.ywS` i- 8S( Aa:2ؽǹ83vk;cǹDZ= 8ǹEa@.8QIEA$ᡩtle)!N*i1!ׯ%!`E) d$e)E)^U I&I1E)WUUI$ )(Ie)$!e)E)I$I$)(I$I$e)E)bI$I$)($E)!$IE)! I$ E)!I@$E)!*$IE)!/ I $E)! [m0E)I$E)!*p($IRE)IE)!** B2$Ie)E)zI$ 1I$I$E)!I$IE)!*I$H$E)!* E)!0H$E)I$IE)  @E)  E) @@!AE))#!@E)! E)!jj!E)H E)!E)!"I$%)I$IE)/mۺ E) A%)  $E)!`vh;hE '?+)p vb  7z1rcIhE9$! E)!꺪j@&I$E) Il:E)/H$I$E)!I$I$e)!$I$I %) bH$H$E)!$! I$I$$!! I $e)kӶmE)j*aB I$!!I!&%)!`H$IE)"I$I$!!dHe)I$I$e)I$I$$!!I$I$$!  !H$I$!XVWUI$I! j!!I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d  !HI !HI!/ I$I$e)I P% ?''[%yH----3p f 43%>!!fJJJؑ$9I$I$e)@$! P$!I$I$!*  @$!I$I$!VWՕI !  'I$I$!**I$I$d!d I$I$!I$I$E)I$I$d!d  !@!  !H !** $I$! A@P% ?/ ɛiH--/ 1N %q- 50ITLDZ 42DZ8 @"DZaP90m6kǹ|z|>ph%ǹ !$I&dHE)*$I2 I$! $$E) $IdHE)!I$@E)! E)IE)!UI`KnE)a$ E)!5`@$IE)!85۶mE)rE)!` `ۆ E).۰mE1ErJ**(RIf%  -78Mrǹf42@DZ5, eR%DZǡ0 43%44I$I$%:B:&IDZf72Hm۶ǹ7,ۺmǹx4X,< p  @9e1* I$HB&91 P&@$ 9e)* (d14A$ 1f1 aS&e916/ +'r)19 `b Ԝ9A-!1E){I!+؉1%) T)jk91{yͥ@$11"!")91__$A$I1 11@:`a11ƒɉC$I11`ag=;1E)?? AgM:9E)6z 6WM89!,r i1 I$I$91 11! 11 ,R" I1PsU$I1 I$I$11 J*^ I1  NGt>9E)'x Or\$9E) -ڄ91{@ 11[x6阴1E)**(I$I$9!`&C1E) 1e)!@!I11/#&I1E)Rl(X1E)Ë.dIL1E)@ 11(@ 11@$)"i1A@@dI$H1I$@ 11@H$11#6 1E)pakd1E) ->A@)UWW-9!H1U%M۶V,@!@$ ?bq0/ 0``۶i X kdB%af X$2$1e)"l1 X51!}{BNa1! 7!I$1E)*)дg1aI1$!m"1$! X*`I1!vm1E) 'Z8 1! ذ6P4)1E)6vؓ31$!pi1E)I$9I 1 1E)ʪ1$! I$@1E)d2 1E) m۶M 41E)ꫮ!@$I1E)I$I$1E)H$I$1E) 21E) 3I&1 `PDI"E1E) ,I$I$1E)( 1E)@1 mֶ@31E)$Iڀdf1I 1E)B&Z*If1! ذmִ1E)xvM1E)/H1f1AbۦmI1²&me)@4Hm1!]ӶXv1E)꠯LHf1I$I$f1e)I$I$91E)ꪪ&a"a1HDI!e) @$Hf1E)I 1E)I$1E)} Itf1& 1E)d@1E)ߪt"IDB1$!^ I 1$!(t H1!W Imf1!UIҵf1!UIB$$Ie?ivmX0*"ywP/3d 4f) ?$I<-DZ$@@Fmfq":,d1r$ǹ*?L mDZ@&6<ȃ䧹%- e)E)Uu `He)E)]+Ie)E)UI$I$e)E)E)! I$I$e)E)I$I$e)E)ꪺI$I$e)E)$e)$!`͖E)IE)4I$E)!* H$E)!H$I$E)!I$I$E)!//@$ E)!  $E)$! $I$E)$!Ie)$! )(I$I$)(,E)@lݖ E)b$IJ,:E)@m`E)kѤKE)!4@$IE)IE)!U I$I$E)$! I$I$E)!I$I$E)!@E)I$I$E)$! 2%)H@@!%) E)!j$L$E)I E)/ E)!@$`E) 8E)!I$I$E)$!I$I$%1E J* 7%$+)3`EYB**"y'΃#5")DZp`@@H$H%9!ttVD$ E)A"IIE)!ߪ `%) IkmE)G!@E)) H$E)!!E)ö۶m%)E)!4I$I$E)!I$I$E)$!köE)((I12E) ?cfY {-N1fE  -7#I ǹ 53$I!%44I$I$%44I$I$%44I$I$%92muǹ?<$#ӌDZ@h8(HE` vm؊Ie dB 91ʋ@$1e) :99b,` Nt9e) H)I) RI9E)@ !&I 1tsz1E)'> x1E) '4 Na[:915WW m-h<91rA 11b* 11 'I$I$g9*ۺ5؆m1E)I$H$11+h6l1E) áT9e)kˮ/ Q9E)a6 xS9E)㫭7I11 '4I$I$1f1$IŦ1$I)I) "ɒ$ 91{I 1E)I$I$)I) SC)N91zk/ cV9!/ !Nm5{9E)? &iT1 $C$@11zj + 11I$I$11*MڦX 1E)((" 1! p 1!r9"ɦ1E)pc1E)<&IA1E)11H$ 1104IK1$! $C$ 1f1$A 11?X$I9!H1UUU%R 9NH1յI$ @A@Hhh8nq`) \ xN(Q91zUUUB$A9!IH$1E)*r54I1Xm&m1 h,,1!}\`Ֆ Na1! 7j6lm1$!&m4)1@ M1AN1&# I1E)s զ1E)1e)V63a9Aj`:1`J11$! +ruI1 Km1E)>1e)+I$I$'9#H 1E)蠀4%1PmLf1I$I$1E) e)E)`@0iѶ1$!"?["hM1!P aIu1e) *I$dB1E)+I$1E)+1E) 1E) `&I1 I$1E)I$I$1E) 1E)ꫯ1E)"I@e)@!LB&f1$! f1$!]mۖb1E)꯭I$e)%)($LB1E) II$1E)1E)I$I$1E)I$I$1E)*ömۖl1E)$I51!x$HHe) ۶mۆ51E)x $If1!6 e)E)  1$!*"4ҬDe)@(ݖmI1(I$I$1E)d$$C@!m۶m5e1E!**hlݖmP% / ɟ߹%yH/0 qNDq+ A+m'i_+?Jǹ`8m阮 2I%f -8,wíf=ǹu{7hB.$E&rf1 I$I$e)E),I$I$e)E) I$I$e)E) e)E)|@$e)E)xU$I)(L$IHe)E)W=*$AE) X"IE)&(*Ku۶m%)E)!+I$IE)!$IR$8E) ` E)!H$IE)!8(* `E)e)E)HE)(4$)($I$E)!*$CE)!*$9b"E)P2)E)@$I$E)!XUUI$IE)!UU E)!-I$I$E)$!* I$I$E)!辪%)A $@E)!@& E)! E)!讫E)!/+0E)@`X$I$E) ItE)/ I$I$E)!I$I$E)$!I$I$E)!I$I$E)$!I$I$E)!I$I$E)! ?hE'?)' tSH +-5x%34p`l :e9xI$I$E)$! $1I E)!H%)$@ $!$ @E)!I %)$!I$I$! n]E)!O!I%)A$HE)!$! $ $!  1H$ $e)I$I$e)I$I$$!!`$H$!`X^I$I!UUյ ! I$I$$!! I$I$$!!I$I$e)H!$@!p !, ! @$!I$I$ p !/I$I$e)I$I$)$! !P$ yW qfP-%%/4' ' 44I$I$%="1#8ǹ@@``-۰-%A!WVTVI$I$$!!I$I$e)I$! ,@$H$!|I$I$T% ! I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)H$! ؠI$I$$!!l{XI$I$!* $H$!jzZ 2A$%)s6mR!H  "yW7uA-+* 2"PP )*:/ǹ :Dǹ(=+aǹiP<dHDZ< ǹa@ y<˃<$!b8I$C$!$ !%)"2,6%)@HE)!@$E)!*E) ( I$I$E)!*A!E)4 E),  E)@II$E)!( H$I2E)!n mmE) @$ &E)! h$y'(V5f 7+msǹ߽50HDZǩ51$IJ%52ۺ-ۊDZ; F!Aǹi8<+P,Y.o7(iǹ(6̯`.8` I9E! H01I1  ӲA6I9e)b 9`0 91 IL$91.: +ۘ-91TXp9B3̦1E) sY#9E)yMKJ1E) \ǧM9 6km118H$H$114`11@$11p$I$11I$11 *$!b"Q1e)( ڔ9( ˻ş-9E)rA j U91VZyi m۶i 91멥 b.P$I1Ak11,( ۰Mm91 ϵPi1A& 11 mfm۶91 j39%)` RZ1!  I%9A& ]튶11,X 4a11\PB$EI!d9111-X115^X$I$1D D:1E)  =51e). ~xk9E)1E)I$I$91$@11 $H"99J!@1-HHAIf9 `@} iBӲp *x `b?/q XB6aS1e) /.[m11B5J&1 .$HP"1B$A1E)IK41E)*&I0G1 4-f1@_ע_,1!xby?1!]APh1 @4I$I1"m$)9%) j$II1m۶m11@1)ڀ 1E)+pm1 #I1E)bZR1E)X nl ؆1!+I!1E)I$@ 1E)* $1E)+I$I$'9#Z"l$I1PɄ&I1$!d $1E)肯öma1E)꫽`1$!*Ը f1!-K`1  $L$1E)*ꨪX;`Ц1E)/ִX;l1E)+$I$1E)+1E)" I$I$1E),)$I1E)b(!1E)(I$H 1E)I$I$1e)$1E)%B#Af1x$t1!U^I$f1!UW$Avg;f1!U(I1$!IB2$I1E)I$@1E)_$I1E)ߺPe)Jmf1!8Hm1!*J$Po-#,J@+I''.%@Niu 7N$X"%A$I$E)!L$A2E)>** %)b&$E)!Km۰%) ,@E) )@!HE)!E)!E)!B E)*BBE)@ !HE)۰-mmE)ؚ$meE)*InmE) *ͰmE)!%?y%$72 w$a +-6`DZF 51 )I4!Y%50*MDZǩ 5-4- -DZǩ@50 L%51IH%4e@Ԇ Ęi9  91/ [91 mk91 I+9  C!$ 91bˋ  I11 ,1E)6<`Ws1E) /< A=9E)6  R91 11 I11 /4I$I$g9*I$@$116`H1111  E#5v1!& ?O9E)~ 7v1 * L$117I$I$)I) ]R,m91zj- 91 9F1 I 91^I$H$91 mѶ91> l6h9e)x$!I1$! `'9E)11,J'P"1 ذضmݖn91[۶91z|* L1C$ 11P11@LSJ1E) <D1E) $IR&1( 1{H1U9rPb(b&m`(* Iaqh xvmax)۶m1!M :#9E)W\rD!hJ1E)/jad[1E)?Sim1E) $H$9 I$I$9!ل1m1((K% h1pSSd1 `8Q&m1I$R"(1!TXB)X1 7M1E)I I1!@TI$I1 11I$I$g9*" 91%)$! 1e)**:a:%1!p lb69E)?ImB9E)rm״1E)/&i351 ` l1E)*1e)(I$I$1e) @1e) H 1E) >A 1I$I$1E)s" 1!V1$N%1!+I@1Ć1$! ֶX[`1E)/@I$1E)I$1E) I$1E) 1e) I$I$9!I$I$1e)((@1e)耨I$1E)*I$I&1E)I$I$@!زm۶m1E)zv"5&If1j`S- e)6eێ E)!/ww`[e)!=_$ kۆ1!**UIS`e) &Uf1 ( &M&)1(H&ٖBe)A"I$@e)E)ܠA$I e)E)r` $I1E)/-lme)b  1$! H$1E)R"H۶m1b ڴMۂP!uEyH-//4fӍI@j;4 J-ǹeI B7x'E @! A $X?7qyWfP+---84-Ӻ DZa@?Z)MǹEiB ieYE 5e)!YH$e)!еi;te)!{`B& E)!  ÐLBe)!/$i&%He)!/ME)&$ $E)$! [&E) [۶$e)!pI Ie)E)n I$I$e)E)4@`e)``e)!$)( $XE)``iv݆mf1!e)E) HH$E)!(2d$E)!^UL$IE)!^U/E)'40$I1I@$E)!@$IE)! I$I$E)!*I$I$E)$!I$I$E)$!I$I$E)!I$I$E)$!* E)!M0L$E)I AE) U5 E)B!E)  @ %)`@E)I$I$E)!* %) I$I$E)$!** E).& $E)!zH$IE)!^W5`E'?}Vn{EX/8x&* bJmvl$9$I$I$1 @$$! I E)!I$I$1 @$E)!IE)!I E)!*HE)! @$E)!IE)$!I$I$1$He)E)!ꫪH1$ `$$!xI$I$!VWUUI !5- I$I$$!!/+$! !A I$I$$!!I$I$$!!xI$I$$!!I$I$$!!I$I$$!! x@$I$!! I$I$!6O%)**I$I$E)!I$I$$!!pI$I$)$ JJ1e[1aRX1!###.tS.i---M9IHDZf41 DZ=R"%h'ǹI$I$$!!0I$I$d!d  E)H$I$!~~I$I!! @!I$I$d!d I$I$E)H!I$I$e)H$!(H! ,6 I!&$I$I$! H$H$!zx!d$$)hiҶݰ PI7uE8/+ 1 qW %q-7*֏ ǹ*;fZ%ADZH 4 4 IDZp:B3ǹ2ŀ/觱 p@ I$H&A1 ILB&91  91誢 [-۲ 91* $9! $ $H1  ƒ=91bX#1:9E)xz U|ԡ\9E)[qI [&29aJ FB9 ) mm91H$ 1111 11I$11'I$I$g9*`$ 11\PbR\,J1E)‚ 01 9E)SaFi&9E)- 11 7I$I$)I) $X"1 $ !ɐ91 j*m&m9f1ꪪ!IȄ11 .(I$I$91꯯ S$N91rKҶm1e) )VmW9e)? 6-I191{!B$A11 8!@ 211 ?p.)$ 1@I$a1A$I1L1  I$11* ,$681UU5 X.MH1UJ8$Q!(/ y~;up8]{ yyj8p*`$LB&`!x bN1$)Р mR,-m91_zI$11' mvmv91 MR;9e)k5۲1E) x9E)-mӶmv11j,I$d 1e)*I$I$1e)I9!smh1$!$ID"1$!@1b1@йP`1`wۆ1!/۴9E)*MHH1  I$@11`m.11 $#-1A@@&hdH1 h1`@mٖn11` 1'R-i1E)>j<0%@v9E)^rƆ1E)Xغmt1E)I$1E)I$1E)$I$1e)* If1!( 1E)I$1E)/I$1E)/I$1E)*N9D1$!V` $N91$!-V`ZNa;1$!%]M1E) m1E) (,C%f1 `DcRԆ1Pضmi1E)$!Ɔ1E)0$I2L 1E)*ʀ& 1ɋB$qf1 $ 1E)*I$I1E)I$I$1E) iR"9e)p"A$I1$!ꈢv, If1!UM;e)!Wcۭ Hf1!UU_mێ RE)!eU!`ǶE)ึmf1!UUuNbe)!U cf1!UU$A$f1!$Hff1!U&ۚ8e)!U@mHe :>$e dXb  ,ws1H/-=;(1oǹ=/<J<ǹ%`w+n9I I$e)E)ri`%$Ie)yWx%@///=1pJ& f+ ;*mͭ=p'p$DZH$!I$I$$!!Tו$@$!I$a&! ` !!I$I$E) @$! `!I$I$d!d I$I$$!!꾞*I$I$$!!rZH !4'H ! ( $!+  @$!I  $!'d H ?'IIiH5-yww X+2'v?} 8`( iDZa6(#nTjǹ~5)y`rDZ/=j'H$ǹI )J**o%*));,Mǹ@ʇ *y<ȏf$I E)*$2E)jꂉi.+0lE)J ]nE) $$@&E)!I E)!$ 0E)!zE)!I$I$1@E)@E)E)@$$mmE)IBIe)$!* $I6E) k6`m E)!8 "HE)@ $SfE  '34sf* U-I§ ]Y+sB`i?J†^W,SJ†W-Ts$`X ;VmIDZf5HyH/禱 $M91ʊ6 ! 91. I$$I91 Ml96( mۮ-91 Ң 91Ë * ɒtI$91 uAG-9E)7^x n#;9Aj(En"1J 6qb9!I$I$11 H$11&I$I$)I)LB&$C011p11 I$I$)I)ivk%11=\P ~@_9E)z m09E)cIjd1!8$!91  $I$91  LB&91   I91ꪾ -9 91^zk4IX1E)<I$A$91 h"%91\XbIضdf1!4 jww9e)/ nSۋ91} 11r8$A11 /1E) ,10` $t!81U Hmn!@%1?Oq0_yPͿyf +p Jyٻ%q`!II1 mӶmu91! 1E) dB2$$91ꪪI$I$1f1 &!&I1 @  L1 $oIc1 H$B1E) 9E)jK/KM1 Rjd1((4 4B1$C$I11k ,= 14J-Z 1 gĆ1R+9 I1%)pB DZMۆ1E)5]} Fl|9E)$11 #9*-1``@TIj1A$PǦ1$I$01` ;X9e) $11L$1E)J61E) Rm1E)p0 䴆1*#)`J1!J@f1 @ 1E)8 I$I9!$Jj1a'MƆ1 j1&I$1E)+IB&1E)*N1D1$!*v֬ 1!}mۆ1!Cr1 * `1E).*Pf1Am۴غ1E)$I&1E)*XM1  !@1E))(*I$I$'9# 1e)1e)$ 1E)ꂪHm01E) 01E)*$$ 1E)e)%)۰m.1E)o 1E)Mn1$!*N,MX14I5f1!UzNb If1!ު$1!UU$1UahP "<IyEP--0 0AX7 ;:(#ǹE @po eAEᣨlf1!۶۶9e)!zmۖe)! 5QWwq*++)3umhNH" 7.XUǹz;j.Bb6E PjI&MeAE)UWWTI$I1E)I$ e)E)I1E)U f1E)%$)e)!R"%VIe) ``ivضm1E) $e)E)dB$Ie)$!I$Ie)E)~I$$e)E)7-)l۶mf1!$e)$! E)!@$I$E)!L$!IE)!" C E)!o*$"E)@PmE)$Ie)$!*[34KE)`@(4d)E)@$ 1IH$E)!H$I$E)!*I$H$E)!*$ $I2E)! b0L$E)I @E) U%E)!*I$I$E)$! I$IE)! $I$IE)$! $I2" E)@E) I$I$E)$! E)@E) @`E) ((I E)!I$I$E)!I$I$1@$@$E)!ڪɑpE?(&7wX +/-3N.&B3) P`@IҴh4%A$`!E) X E)!IA$E)!E)!I$I$1 @$1IE)! E)!*ꪪ I&E)  E)!I$I$1[m۲5E)"z`$I$$!x^WUI$I%)U-$!@$$!I$I$E)!~~I$I$$!!I$I$e)I$I$$!!,I$I$$!!I $!  2dB&E)I$I$!I$ibE) j !IE)#I$!  2$I$!  $!mvmtE9::= XTiH-5773 N'q++ -5.B 4IDZ:'ٴqǹ)**3ȃ/ !!I$I$$!!ϿI$I$$!!X^I$I$e)I$I$e)!@!A@$! !H$I!A$)j֭۶ H yEb() 0JTf- 7$A#̧``5,!(DZ騀50^ci%@ 4=S E*Z*-<Γ$I$I$$!!_P` ''/,ϧi +<K't&$)!UUU~$I!BI2$IE)j뚶-֮$!@$E)!E)!$E)!寪 @E)Т E)@ۆvݖuE)(!  E)(,HE)I$I$E)$!"mv]E)$!ݶt놭E)!$E)!$H2Ie)$!EʒE9% J+Ryf )%20-7,ЖnDZ 7,36DZV-')† S%-7U?)†ހ-_U,A)†x=k=Χ p knlI K$[2491 ¶%?H9p c2$)91(  91/ d@ 91 h 9[M91\p ;H1A _9E)qM7 nq{9$!B +. !@$59 ** M۲ 91dB0$91[o kV1E)<H$A91 IڤK491l$I$,1@*ih1E)6AP1 /LUBE)ͧwy 9E) %1p [l91@ 91ꪪ "= 1 ` HI9E)" "I&%1P 91 [29 p  9!d ۆ1E)V Y9e) /@ 11 6,91_5 {!81U pu9!8X y$Oh8uݗ  &Ih! p"La` v ۸mI kJܔ91smDId[1e) *H$I )I) [2,m۶91I$11 *  I291 |%9 6,ŖbM11 , vm91ʿI$X21e)*"-1L1E) nħ9E) L$m1 ɐC11`/% 1!ppuBI9 ( -9@1E)d 11;%H I$11.X,I1E)Xt Ɔ1!vW1E)a=B$I9$!J*h$I9$!c&H1 #\1p$)A$I1 H$11 I$11 -p@11` =ۚ-H1E)[ 1$!I$M&1E)@ $1E)%PIm۶E)/ (II$E)!(I$I$E)$!*I E)!  H)(@$E)PI$IE)$!*I$I$E)! @$E)``E)!*!E) KdmE) ,6%) 10HE)!E)!+۶ ۶-E)@7qw% )-4nJSEJ+-y<̓䆡$ AE)!E)!j$ %) I$I$E)$!I$I$1@E)!I$I$1 E)@*L %)> I$I$E)$!$$!!@$H$$!`p|I$ $!U%   E)!I$I$$!!$!@!$I$!@$I$e)I$I$$!!( $!@m۶I %)  C2$!@H$I$!IIE)&& @$E)!I$I$e)I$Ie)I$A$e)I$I$$)$**@!I$APE ??)yEyH-%6uPMDZH* 43DZ?0e_vdDZEaH$!I$I%)!UU@$H$!! I$I$$!* H!$@$!P! I$I$e)I$I$d!d I$I$$!!*I$I$$! !( 8$H$!zzI !A6 I@$@P' II$qH-+yuO` i-- 2"`J:$Vj8IDZa84*ѱDZxU 6+h;ɫ DZ?FΛ!EqjJ؁$$9I$I$d!d IIP$ ?!9yX---4U"**۶m͐X1 'II1E)"a۴1$!H ɘa$qf1 I$I1E)H&!E9)oOZuAPe) y$qH=-/ `Jܧ%q 8#LEpJi۶9I$1E)II$1E)$H$e)E)  e)%) $YR(HPe /$7yWX---%80 )tBDZP @ڨ 89i*zmFeAe۰mkf1E) 4IJf1! @$I1E)_I$!$1E)_$1E)HR &e)Pۺm51E)]kte)!/#&%@E)!@ i6E)!+͆me) . Rb&IE)``!eI$ E)!$I$ 0e)E) p$IH$e)E)\U@$ e)E)xU IE)! I$I$1  E)!@lE) $IE)!I$E)! !A2L$e)$!" I$$E)! ^۲$ME):I$] E)[I$IHe)E)UUL(IE)(I$IE)!* E)! $I"0E)@tE)-H$I$E)$! I$I$E)!I$I$E)! $IE)!,I$@$E)!( ( E) I$I$E)$!** E) &E)$!ꪪE)!I$I$1ۺ kvE)!ʨ>zo7pE?(7wX /-5h.%C3) P`@8pb'%9$!V\YE)!I$I$E)$!I$I$1I$I$E)!*I$I$1 E)!$E)!H%)$E)!z C&L$E)zVWII$!!r$BE)!mﺫ! I$!I$A$$! I  e)$$IE)$!$IL$!!4,I$I$$!!($ÄL@%)!&( 2%).&@H $!輮I„ $!. !@E)!H$@$e)I$I$e)I$)% bI$@PE I$IPE Iıi `H+ɕwfP5+>?Yf41%7-2#>ǹjN8%9akc@!  A$E)!is\I$I$!I$I$!( I$I$$!!I$I$e)I$I$$!!g ! I$I$d!d I$I$d!d I$I$e)H$! PH$$! 8HI!\LB2IH!IR"E P(ɛ7fP/ 0V4MF"4*%mtlDZ+(W56A DZX&,5m -DZf `7ڶqDZf6",C'@`z ۰$$1I$I$!I$I$)j*+q{+)4Rߧ@Bq%i@$!<4II$$!!LdB%)R$E)!kamnE)*$%)  @2E)*n %)$I6@f16,-dE) 4[ufE)0", `E)!m $0 AE)!l(I$I E)a"![Ae)4(k;I)*1A K!I$0f1E)$f1E)*OO?%f'/ngH*:,00 DZH`:LҤiǹ! 9 *) IDZ%y@8IIDZ%i4-iDZǩ3# H` "בI b(91 091 91* %91/  91( O%9e) ꩄbAM1A  7Q9E)' ?̋9E) v@۲C91^[  Ƅ(91#A$I1`ٶnmv11 .,II$)I) K%[-91^zk11  $I$)I)4D-911\P }@ߤ_9E)z{ğBE)vr&la9E)!1e)@ A91 I$`B&91 $91+  ѐ#91zI$91 +&R%9P 9k98XHض!@1-IlۡM X8* FaP) `V I$I`! )H1@I$I1 11@Ҡp L1H$H$11@11.H$@01e)dOvjۦ1E)/0`ݖv91@ 91꫿I 91몪#A 9!r *  B1  A[91$IL$11( H$91 u:a9E)M(4Ř1E) =1!  IT`9E)&H011p Ͱ11 %w1111`k t11 5VXt[11 , ݖn11 v-+a1E)qQv븆1E)/4IX1E) ?I$I$11  @ 11x  I$11 5` b,QI1!H$H$91(i$)1E)@c8IDH1a"IDR9e)說,1E)頀L1!UXI&E)!/WlI1! @$1E)/I$1E)I$1E) $1E) *rD(!@1 (I$I$1E)[mm1E)I$1E)I$1E)+I$$1E)*жk1E)/I 61A'm1$!hث3h1$!x1a;M;f1!-~wcۆ1$!=_c;hqi'1!ۦmT1 I$I1E)*$I$1E)@I$1E)I$1E)L@1E)J*1MJDe)$I$1E)ömٶm1E)d@dB1E)**;X ۶Pb w$iA0* ( H-+ :w? 懱E @pi )fAe "8,f1`fI1I;[1E)$I9H$@$1E)$B$IE1!*jmEyb0-+5_i ժ7z˾;$InlնmeAe!@1E)A$I 1E)k۴Ц1!*$ IE),M;1!*հ1p"IX1!*5i7e)![v۰mf1$!*P$ e) A$I e)E)۶ ۺe)E)pW$$EGE)Ie)E)Ue)E)I$I$e)E)$E) pE)!B$IE)!(*6`E)a H$)(Xf۶mE) 8 $`%)ppIE)!VMf0E)8$I E)!@lݶE)! Ie)$! I$I$e)E)$)(#9$IRE)`MlE) 6ضmE)I$ $E)!$I$E)! : ,M$hfE)l8E)I$I$E)$!I$I$E)!I$I$1I$I$E)$!I$I$1I$I$E)!* E) (&I$I$%)E!J**1w$ /'4bJsEJ+3y<̃秹I$I$E)$!I$I$1I$I$E)!+I$I$E)$!I$I$E)!I$I$1I$I$1E)! C&L$E)z^WI$I!}߷ IE)!$@E)!I$I$e)I$Ie)H1$IdE)ڜI $$! I$Ie) @$E)!`B&$%)$H!!@E)!I$I$%)$!$)% `$ AA5Mm۶ PE I8q`Hum/qYE0 *.7 X4yn$ Ey>#1 ў蹆'9DIDZP$H雞QJJؑ%9I  E)!aH$I$%)!VUuI$I$E)I$I$$!!$@! !@ $! I$$!.8I$I$d!d I$I$d!d  ! ! @$I$!rZ^ $@$  @ H' w%yPյ-4 yyO q/ :DZi'4v:Xk0sBoXb 6:o3DZaɮ^7?%)DZi'P>b&\&a$I$$)UI$!UH$I$! 8IDX'7, 1s` 9N&j.& I$ E)IA$$!!b $$E)!oa%)a#LE)az !I&IE) @E)&$IE)!ka[3E)bh`a$Ce)!nmPE)I$Ie)$!DIe) ()(IE)A@(&$Ae)`Ҷm1!પL$I1E)/L!H1 &8$I$e1! * zOEe '2b6fr` 9+(nrǹ訪42 %52۰nͶm%5-b#@ IDZǩp8*f: ǹ*3K_ %-9P [91/ I$I91* &mH9! 0C59!p  HI91'( ƒ=091P`XЃ:i9E)x S~4)@BE)yMr.1E) .- ) U91% 1@ Vl&I9$!11 B$A)I) IK&91I$I$g9* 11$L !11I9SAe)w.)9$! hl91{ ݺ6m91 $2a1@ T $m1$! I+-9E9(B $h81U hI98XimP8 IHHq8:岡%j€ P 19 - -ے091$"A9E)jdI$H9!11$A1  L$91H1181f1M6@`1E)V}dž1  )H9E) J+ A$I9  "A$I9$!@ )D8bB9 P M)H91껠 fb2$(91늨! 91믵 I$I$91 J%ò 9e)VX a.:1` sI9A A9E)20 11pB" h11=X11 11f@ 11p A K1 @11 R uJ1 8mۍڦ1E) kۦ1E)$IB1E)I$I$11I$117$I$91"A$A1$!@$H$I1E) MH91W_!IB&11Wp ˋIM9 (6( 1!B`m1Vچ1nce)bBIiő1! l$If1A  $H$1E)+"$E1%)@ TII1 I$I$'9#II$9!I5n1E)6m$-1E)(X"H1P b251 X`I1I$1E)+h۴m1$!~mB'@B51 pubq<1 ڪMڶiE)8f1 ivb1 _6@nlۆ1!]Wd'1!W[md'1$!_`21E):"NK6W14($$I1E)6`ۂ-H)UU5uVgmXb(**%wywX/7 8!fi* B6Hɓ'E }}Fh61aa@f1@4H If1I @$1E)I$I$1E) I1E) $I$1E1** |he)+)))5r/SDZ%y )-<"!"4ǹE@@@`6e1! eƦIQf1$!tE)!i7l]E)!##Hێ- 1$!*!1!*Iame)! B$e) H$ $e)E)I@$e)E)$Ie)E)x I$Ie)E)~ I$$e)E)J$ $Ie)bI$I$e)%) e)E)r H$e)E)*WU@ E)`I$Ie)E),$e)E)}H$IE)$! I$H$1$I2$M E)@ŖnE) I)( H)(He)$!*1 I$I$1 @$)(H$ 1)( 1k:l۶ E)"Lf1!(&HE)(K۶mE) E)A I$I$E)!I$I$E)!I$I$1E)$!I$I$E)!*I$I$E)$!* H%)(@$I E)!ahE?(wwP /2X.<2᧱$ p@mjE9$I$I$E)! I$I$1I$I$E)!I$I$E)$!E)a@ےڵ%)  @$%) I$I%)UU-!AE))(I$I$%)$! 1 I$A&$!p!C&`2E)!I I$e)II$%)!H e)IE)!L$E)h H!! , A E) ?+JkI%!. PE_ LH$IP% m7m`8o ێe@&+}.E `տ+3yYn$E+:'qܶ ǹ 511EDZ:'5[Aǹ~z ;DN$ ^1''@X_]&kbE) X @$I$E)!PֵI$I$$!!hxZI$I$!( I$I$e)I$I$$!!I$I$$!! I$I$$!!પI$I$$!!WI$I$e)I$I$$!!*BrI$I$$!**$@$!zII$!5-MI P/I؉`H=)w7X-/ 5!I0A <)3Aǹi`9r$mf5)дHDZU5-ϟ$DZ֯5)NƶDZU9p'H$I$I$E) $!$!`v`۶X"WP/--638B᧱``@H$L$8!VTV]$!%) *H& I$!@IE)![ E)A 0[E) @ nmE) [۰mE) nͶtE)$!$IRE)(He)E)$e)E)UE)@ ٶml1!NW'ne1A*4Ae)AmmEAE 4r$@e)U=жqAP) kaH= ".R8'+*8m00ǹ%q*r7*ҔNǹVx5-$IWDZǩ%53$I$ 0%: (!B#DZ%y@`P0 7~0%quMaiu% @091 d dK91+ I19' X 491/ ˺tkWl91* a۰ 91Ê * Vs69e). l&/1A X Z~49E)c h՚9e)踣 Ck. 91a%I$I$1f1k[;,11((1f1 Cӭn91zꪪ sV1E)($A1!H$ 11xp -ZW9e)ꋮAe)c' oI9e)vm511+,x &I&e91 aJ$10| $I9 8pimP8U]/ vY q8}W0aEP/  N0E%q. wue6FEy?kEE V锴9E) - I$HB$91(I1e)  H$117<`&$I1`B$I91۰Mu11 . A1 $A$C91 L(A9ARnC71 h $HB1 $R*H9E)آA 91ꪪ  I$91 $AP9E)&& [۰ 91ꪪ f{M91 m6m۶91 #Ք4 9E)x*&mxf1 &amۆ1E)* b'm9e)%*IҀ91E) qgc91UVQ$ 9&1 P \!9E)**HK(m!B1  $LW1 ( IH991]òvhڭ1e)=ۛ31E)a۶mۆ1E)4Ix1E) ?I$I$91@B$A11 $`B11 I $1f1 \$A9 4$I$I$)I)I$11x@$ 211" 11@ #1!`Ib'm v1!U_ 閤I$e)!/U\۰mI$1!*Umv1$! $H1E)ꊢI$1E)ꨨI$1E)*-1E)o 1 @mm1 )m۶m1E)"a$I1A@ٸ$H1 IH1! @I$1E) $$$1E)I$H1E) @$I$1E) 2#$I1$!~I, I1]'дI1 ^ m۪1!(]Mm1!WWW(Cڴ e) z޸!d$ME)! xk6E) (* &L$Pe!%ɝEH-8 qwsVǹ%q+*>C#&ze`H$MҶAe)V"I1!B ml1E) I$$1E) [m1E)I$1E)[ ۶m1E)II1E)+!R+lPe!, R%q---->3=S2$DZ`pI9%)\_t,Q$f1!* ImI1!$IB1E)"i %1!*X$@1e) `$!i1$!@$Ie)E)I$e)E)~I$e)E)/H$@!@$I1"I$ e)E)I$@$e)E)W!Ie)E)^Ue)E)U#e)E)-`0[E) $$If1E)UUUIC&e)$! l۶!E)@۶ E)I$I$e)E)@ )(E) $J(ZE)b I$I$e)E) e)E)|m E)!&Ie)E)ɮI$I$)(2E) [MQ`E)! -6ke)$! I I$E)! I$I$E)!( &E) ( PI$I$E)! I$I$E)$! I$I$1 E)!¸ E) I$I$E)$!$E)!@ E)!꿯A$ E)! E)$!+*qxE /'3hsEy +3y<˃秹$I$I$1I$I$E)!I$I$E)$!* %)b@۶5[E) `` 2a$E)I $!/ IE)!0E)!ꪺɖl$! @ E)$!@%)A`$E)$!I  e)1$@$%)b d$%) xVVIH!+*I%)!6 Pe ' &$"@$Ig`0?e8,}4`*4yin$E+4'1 +41DZ>*4$AǹH`C4i$ǹ `V=$I$ǹ V_ tk׶$1h6kvE) P((ZXE)⸬I$I$$!!I$I$!I$I$$!!I$I$e)I$I$$!!? I$I$$!!I$I$e)I$I$e) !@ ! @H !<I$I$!Z^ֵA$I$ @ɚdð H)wwEb +* 7ILDZX+ & 5/VA2mDZ53d 2%4(iDZ(3*DiDZW3)iM$LDZU=+ȣ<ϓ?fyI$I$$!!꿷: !@ $!- H$I%)!F1Wy))-8ӱN` Vځ%9 I@@%)2I E)!몮$ E)$$E)*@E)!#[۰E) "E)dXaE)I$E)!($ "#E) @۶%YRle)!PQ[۶e)$!p D PE!UuIHf)Uؒ$IڶPe15 ۶m$iH_ ߷ %yPUտObf@U 1oB@ .%+a* x5-SDZi-7.r ǹ^9I 4DZP`8*`Lǹ: `|\DZ%yX\52 E%qR5 %y` $I!A9) mK|1 & $IF9$! [-ۆ 91ꊊ(  $19$! h  II91 08a9` ZM9!ᣈ*oB *7͋9E) A#91V^  ڄ91$B$A1f1 IM&91II$)I)`0C91zX6I9%)$I !9E)* J"M˜9b(('5\a9E)`\BE){4`$ 81UU5I815IiHA0+ 6 i8}4 EyH  1[ۀ Fi*iS߰FEym]S@ڶFEZW]OfEy['`>:dOE p@-u)A F9 ' Eoq9'$C$I11 I$11 '1f1D$,1!(0B1! I$I$g9* 9F1 4 @1E)p Wǧ9 / V9e)*I$@ 91 $A*81` $$R$91 $ $91ફ $ &9 I.H1 d@$H91 )q9 ; ڦ1E)!I$1E) Sv9A@ * I1 /AK1 $I$11-m۶m91''`,H1 d1e) 11-I$I$11b)i*)1a @VCɔaf1dWv֦1E)/$IK1E)I$I$1f1LB2$@11x 1.1!@ 1 1 'I$I)I) $ "9@4I1! I$11/p@ 1E)+h1E)IB'" 1!U^I$M5e)!UWtI$e)!-U@J&Ć1!!1E)$@1E)ꪪ*1"A1!`i&mf1 $1E) $I2$1E) )LI1 $1 1e)"A1e)낀I$$C1E) $H1E)@$C1E).-1E)k$ $1E)sM¶%f1 (pDH1! $$IB1E)%["I1 P ]5P)Օ5%IĉaHս/)wd X-+ ? H*)fYJJ8QէAcsDHD1$!!51E)W@Җ81$ 1$!*@&ņ1 *6lI$1!$b"ц1!zЭɚ e1EKrmYb0'***)v` X :Z`ǹE h ۖ.1E)ޫ@$1E)$I1E)׿@$ 1E)}k$Ie)PMD$If1 .4I$I$f1e)I$I$1E) j"tf1! mZ$e) $I Ie)E)I$I$e)E)z,I$I$e)E)^I$I$e)E)$e)E) ],غE)!@`.' Ȇ1!-uȄpʤf1ڶٶm1E)xWYm6le)$!*$B$A2e)!$0e)`m&hf1e)!e)!I$I$e)E)I$I$e)E)I$I$1 E)!  )(۶kE)! M1!XӴmE)!( A$I$1I$I 1I$I$E)![m0E)I$H$1I$I$E)$!I$I$E)!*I$I$E)$!I$ $E)!* $E)!jH$$E)!L!IE)!*`$E)0H$I$E)$!II$`e ?'pOwP +/6`><2$ p@k[E9$I$I$E)$!I$I$E)$!۲aۺ%)@ @$!bI E)/IE)!I$I$1 1@$IE)$! E) J%)  H E)!@1E)!몪@0 C2%)!H  !A(I$@H$ ۶mkP%- ( IhHW+I]fHU Il+FH. g'n%q++5)qY+400DZ=#۶$A *BA$A$ǹh>P$$` ^m%9 IIE)!@$H$E)!z^^ A&E)!%sPI$I E)!I$I$$!!|\W !@$! I$I$$!!?/I$I$$!!I$I$$!!I$I$$!!CI$I$$!!zޘH! !@$I$!I$A$!a' I P' wi@-,S` a-+ 5)t0ǹ6,$` ǹ:93c;vhǹ?9$H@DZP3,&B0DZǩ'6'Tj0+ǹ/n8$aZ DZB؁%9H!4!AHE)II$%)!>Pvg`$ ''?-ps1wa/3J$p.%ֵ݊mE)! @$$!K-E)$@۶m[E) I$I$E)!!@E) -` f9-[!òmH  HPe!U$AIPe!U(APE)m&% `b(z I߶I $qHU ~ E0.&%78*,w^@ߪ2me1!y M *5,Ò DZ_ 6*v# lDZ`5}IDZi^5x @DZi 55,sDZF /; :S=DZ%y@`P2 C䧱%qMa DI$IE%qɀ@E%y=9%y`  `$I9E) K^0N9 (`9 @ Xc9$!` CB09!p 0YDZ91(9 9`,91tp J:9b~4)hBE)sɥa&1E) - .U91%W &C+ 91o ٘۶ 9e)*m-11 . 9F1I$`291"4I1E)@$H(I1 i9e)/"9@815I$ @0 wi8ս m4%yP  4AE%q/ iY^[F%y/-fEyݰ-۰mEEy+*o>zfEy{'2ѻMfEyC ڢ$%EqJ(**?FNPm91A&* XBN9E)+- m۶K91@ 11 Mry9E)*R" I1P  1A$ ҄%1P m۶h91H$I)I)h h1ؠXI$1E)-UW01E) @ `91z &@%9p)"@1 @ Z4H9 mܴI9e)* I$h691 k--91o? C09 y?h9E)_ I$e)E)& ئ1E) m`91H$11!I$11/x L*9!$$H)C1  ۦm"a9E)jdAJ1  (,)1a@HI1  1E)dMN1!76Av91E)/ ؖa1e)R,H$I1E)H2$H91^~!LB&11* "%91$I1E)II$)I)I&$C11`I$011`MH1e):VA1E)_6#1bH1mAE)! $I$e)!-UU^I$e) } I؆1!*$1E)I 1E)ꪪI$1E)*@$1E)` !i1$!*$1E) C1e)*KT$H1.&I$I$1e) 1e)(* 1e) I0 I1E)[2&1 pI$I1$H2C1E)miۢe9f!o:kuAX)ɝyEH- ./Rnǩi/b*6C%x$`P '6 9f1(pNRL1!$cI Ie)!*mӤE) fI+1!jBH$1 PN$tH1$!^K 1$! tؐ$J1$!NT`H/55=/ 1%y- --<ʏǹE1E)I$I$1e)I$I$1E)I$I$1E)۶mۖ`1E) @!@$e)E) I$e)E)$I$ f1BdLd1!ڪj&¶me) MJ֤f18$bBE)P;'v&@1 غvlhdž1!/ډM1E)^U`E)!J( #%e) `$H!e)!I$Ie)E) $C$1E)wmۦme) `$I1"&I-e)@$IJE)%Ie) (I$I$e)E)zI$I$)(HE)(k41!Mv1!A E)! H$ 1I$I$E)!$IE)$!* I$E)!*@$I$1I$I$E)!I$I$E)! I$I$E)$!*I @$E)$!*$H$E)!rI$A$E)!I$IE)!*  $H$E)!*I$I$E)$!*(I$IE)!*II$E1E)U1Wy$ '77 nP  3y<˃秹$I$I$E)$!$E)!*zI&L$E)I$IH%)z*!@E)!I$I$1I$I$1 %) ,6`E)0E)*@! !%)  I$I$E)! %),&$9j6M$ɰmH ɶm0H IiHU n f0 .}4i*5e `5 %yzh$1Ey %V>vp3f/k> jǹ$ X;y$x8m۸E9 %)$!I$IE)!?$@$E)!{I 0E)!%aH۶mnE)! E)!kzI$I$$!!% I$I$$!! $!$$! `I$%)8I$I$$!!x, $%) b` !I$I$$!(* $@$!II$! aHP ?ivmX0***"1b(+ 4dJ0f- 43DZ44I$I$%72mƭݺǹ: ۰mǹ*?hri;2[ǹf@:21S3IC@`8I$IѧW IhU$C$ Hu ɐ$I@$H"$8Eе햶HE?7qf@///6S2=R2p@bkhmE1^横mMmE)!@E)!5If$ U KN֣`$ tI4bH!݆miP0=m`@/b $q(ߺ Iv PU $%)XU' iկ*-_n %y 5%I"X@:%mDHDZf*8 t@*DZX92ɻ$ǹT51CIR%5-΋$IDZǩh9,u8ǹǩ:;H,HDZa 5.OGJDZ'6+zvlDZT/:H3 pΑDZ%y\%2 h%qI$I$hh Z#͐i%I@ ۍ Eq! X 4 `91 m6TB1o 4A9 0#9! H a)f9  :a%9E) {u 91ѧ9E)?~ ,AE)Ra j=֚b91^[y Ed915$I!91hC91^{ I!11@ I$1f1 6e 91K$H1%) m!11*JH8I 8E1 i8-/ % Fa*-QIE%y(mk6EEytHEEykHma%Ey#bEfqI)efEyK EEyvl1fEyߏhC-0% `@ u:j9E)^~|`[Ԇ1E)]u `J9%) I$I$91C$I91$9 I9e) j$ $I1 #h$ 1p!11 +8 $I9$!6I$I 1f1d269E)_z`/;1 *h0 1 ò۶91c IC9$! I$@ 91 ضmd91+ -uku91( I&b91 P"œI1P  ȄLB&91 >_J9E)x 6Zie)!@Roi1!+HP9E)11 $H 11 p$I-9e)n II9%)*$Ij^9$!" HB&91_~ I6i91I$I$11 #$I1E)+1E)뾠 A蘆1E) .@@Ʀ1E) $=3@1p  911I I1E)vk 11%H$1f1*I$I)I)I$I$1f1 mm۰9E)*K&I1 @J1I1e) k"M1E)+A1$!I:- `1!UzI$kmE) _xЦM&E) ڰ` vlf1! -UU I1$1! U J1$!. I$1E)*I1E)ۺ51E)zI$I$1E)*I$1E) f1$!*5If1 cg 1" c8 4A1 C2$I1E)$A$01E)*<1[&81qcX8/(ɟ H4o7%Fezkf1 J$f1XXY&7 1! H$LB&1E)$MR%f1"") f1 @QI f1!!I1E) ۶mT1$!$-9)Nɝ$a!0++8&awǹP++e 2f1'1E)۰m]1E)*5t6Ie)  $Ie)! If1E)6f1! H$f1E)~B39[e)!`ݺ E) $i!Hf1$!/thf1$!/1Nl1! htݶme)!/mdK e),I$e)E)+ I$e)E).(I %E) H1E)߿I$I$@!I$I$@!@@$e)%)I$Ie)E) ۲mme) e)I$I$e)E)E)!m1Ef1$!/hm1!/ E)!( JE) )($IE)!*IE)!*$H$)(I$ $E)! E)!*J۶mnE) I$ $E)$!* $ $I&E)! z@$I$E)!z޵I$IE)!^ I$@E)!*$I&E)! E) I E)! I$I$1I$ $E)!ф۶Q>&7wf0 +)3X.<2$ p@kE9$  C&L$$!I!AE)* E)!I$I$1 E)!$%) `E)  E)!j`B&$E) !%) I$I$$1E'He I۶mP)  I$qHU 7 f@ .}4i 4yYN f 4,1GI@ :`$ǹP(?Ӻ9ey x'b p$fXhf$Xڭ]%9$ E)$!I%)&@$I$$!!$6   E)!okIdMѢE)*d ۶me)!Z\ 2d$E)!zH$!a4,I$I$e)I$I$$!!I$$$!!I$I$E) jI$I$E)!RI$I$$!!L$$H$!H$I$E)!VVW]$!I$I!` I  !)ʂnmH  IyEH/2 9N $q- 4-!PDZ44I$I$%44I$I$%53$C$A2%: @DZP$<!4#DZ%i8``7O?DZ%yU]4 $$DZ%qWU$XSfXz%y8wI%y0UI?-E8UUI E8UUI E8UUI f@տ,.3auuk&y'f$]~` UVM!Hj4ѤDZfh~%$ ii^ Iޖ faժ&XW.߲$PU1I`U6 $k-DZ%qU-pi1 @'%qW2 %y3(PwDZ? .5)#ܢaDZU\ 5*6'DZV6*%mSǹ63I4I;%42%62AҦIǹDZ7-BmǹJꪪ5-4*iDZǩ-V; <-#%DZ%y@rP6 1.ǹ%qis $I$IE%qI$I$hI$I$hEEyjꪪ/6 %y)p` ېـ 9 ,9 91 @ 91 K6X91/  H 91 `9E)VX`?1E)%]u &aN9E) - $- M9$!j( B.51Ih1E)$A$)I) &h%:9!(z %A`m9!&( $M9ǹEYp<|<ǹ^1x$y$ǡXqe1!p E)!I E)$!I$I$1$H$$! $Ad&%) d$IE) z^'C&HE)!ZԷIt-E)  H$I$$!!*+ I$I$e)I$I$$!I$I$$!! I$H$e)I$I$$! $!4I$I%)!﫪A$H$$!! $ɄLE)!@$I$!`I$I! YɖH. N۴t`@*.7e `/ 4X64I$I%6%$IHDZ44I$I$%44I$I$%43%90m۶ǹG?6 y-IDZ%y3a'cDZ) 1 IҸI`&/w.f9%d*DZi2OR?c fU^2IDZfU3?DZfU]8%IǹH($4搻&DZf+15 hEy|j  mfXWW;. f86*ؔ5ђDZ7'/4@ P& 4*uB~rDZ^U5$#`۴DZW*6$?vDZU6%nк DZW:F +0DZX `6IfDZf2#DZfx1 i_1 )$a%y-Uv/ I&H%y3&v~DZ/_5% &DZ 6)OADZ X6)4qUDZ5W7.#Қ ǹ-9$IDZX$:1{ǹ<`LDZ%i&1 %qI$I$hI$I$hI$I$hI$I$hɀ@Eyꪪ?b5%y `91ꨨ ̀t91 / I$I$91(( X49 P` A9' a[;91  -X<491 #i9e)xrBE)ri7fJ s9E)% `G-91%^ ݂m|9B$6 &I i9$! $IK1 +P11 >,1!0@MG81HzR s%Vm9)p kbN9* T39E)* j @)9 -991 4 $9! 9! L@ 9)2ʪ wɼhE1 + X%Fi $h EEyjꪪh0% @ C۰m91(( b 19!``w1 * H,bB9 @B IM9ò۰91zj  M&91_ #4I9!` VZJ9!"(nK11 ,#01E) $A.L1X&9E)xꪪI$L ڦ1E)UX`61E) % ")$I1@ `I$I1  LB2$91 I$91/  91 91* I$`091 k3v91꯿ C$%91z ~R-9E)_~I$L0e)$!*%vIĆ1E) +U &m9e)$C! 11 I$@11` $11 I$I$)I)X, 9 I$ C91VI$11>\$I$11  11 ze1 mts9E)&9P1E) TAIz1E)/I$11  JD1< 34$I1!`4=#I1pp pdjm9A(6(1f1 I $)I) -(M9 @ B$I1   N&m91U_$A 11*nD!IҦ11" ͫ19!(Bn1!ii1!~IB;(A1!U~I$Xf1!UUZmӶM E) _w !@!8c;1 Kf1  4 e)bI81!uKf1! #٠MAP)5 ɛ%qH-3 qw/e$q++7BJe`ئmݲAe)PB& C1 P P"m$I1ؠ $$I1e)(4m1`H$ 1!  $LB1e)H1e)(Xmۆm1$!*$@$1e),ɂ"0bP)555w%yH=---5!R5E JBBb؆m[4%Ae)^_VTmae)!$Iڡ-1$!I!f1$!*cKf1!)Pvf1$! 0 If1E)W[u۶ E)!"n-"A1jB e)# I$1E)He)%)*I f1 @۶Me)  1E)@8f1``IH1! 9 e)%)ڶmkde) $X"e) P $a$f1E)ꪻۆmMte)!&&(H,Ge)! 8C-e)$! 0hn1!hvݶmE)! e)E)說"ɒ dž1j*JD(E)Hdk$E)4(c ZrbE) "e)E)j<ɰlE)l[%E)aPI!CE)! lE)&$I&E)!z&dHE)!P I$IE)!}]m- E) `,E)@@$EHE)6,kdE)@@&E) E)@6lE)I E)!*I$H$1I$I$E)! $AڤcIE oo&pSwf8 +-7R24SC P`@kJ9aI$I$E)$!I$I$E)!*͆nM%)$I$I$E)!H$@%)8 I$I$He-I$I$PE_I$ IX1 I߿%yHUտ+$>a0/ 벛T%q5=b<DZi.>T6%Trqxǹ>8!$i 9ǹ rBҶM=DZ`<|^#x$\C$I$%9$!I$I$E)$!E)$!I E)!I$I$1 @$E)!I E)!@$HE)!z^ &`$E)!aXI E)!H$IE)!I$@$$!  E)!oo $I$! I$@$E)$!I$I$$!!I$I$$!!<I$I$$!!  A$E)!I  $!!+ $$!H$I$! 2dH@ .qB٤@ P)9P/5@P6*41P0DZ54I$I$%51 H$%=۶m9fz7DZF:$IDZP$42DZ6'P*H,DZ4+yDZ/5*ж{DZ]3*sDZUw7`G4IDZi83+w%DZu1+DO1Qnǩ 2/m`$DZ9H5`Dnǹ43.RMl7DZǩ`o/)3j Jࠀ1"NLDZ׾2$= DZ2+<8GBDZjZ6*Ț|JDZV2,HDZ2-5\DZ3*fԊ]DZik3+q_tUDZU6 $3%DZ%qpP7+ZomDZZ5'l $DZ 8jDZX ;%%ǹ_4%=h)DZW4&w DZ+3&SI DZ5$-9MDZ/x+:4"gDZX(6&~7[DZ?=90A&ǹF$9$29DZ%q@r3)텯ݧ%iaI$IE%yI$I$hI$I$hI$I$hI$I$hh Z#͐I%yQ@ 4mq uh!F9  C B9  LAA<( A 9  K9 8 BPe91 2 91k*9E)xp>מBE)c6`&9E)- 6I91 i 91 ('K 9 ؖ mv91 ƒH<81%!#9 m!81Z\VUX2%9e)/Km1e)( -91{ N:QN9 ˵$M9$$ ɆI@9! $H$I9%) $I 091 b*C!H95` S%yH +-@$E%yI$I$h %Q@ ӖmY% 2AM9@ b9A O?9E)5UU &a9E) é )9!b@ xKB9   11 A2$91 &H"1#=I1` DH4I1 T$I9E).# I1%)>`͆1 `Rvgۆ1*91ꪯ pZ9e)@91ꪪ Q$)9E) B @9 I 91+ mغ91@I$91 )d[ӭ91 N9e)^* I'9E)UU_KۆmE) (.1E) /۶m91@11pvku91_C@J1 I$I$)I)11I$11%I$11*@$91I$I$11$HR&1!0䘰9E)Mv1E)(" en9e)(1E) 111f1H$11| I11 m&11.$I$11+@ I$91I$I 1f1 $C$I1f1"a$I1!@q$I1DM1Aچqp1LB I1e)I$1e)hm1E)ުv#A1!w=Ւ a1!&C1 &mڒf1!}]Z vm $9%om6mX@/$w1@-) 24%e`qmfAEI$I1%)**$I$1E)$I2$C1E)$I1E) I1E)I$I$1E)*&%&I1 ؠ`hf1!&$ 1E) 1E)諸C0@$P!7'yWyEH----4C=TB$br(9&-Af1$!xm:(I1$!ydڂ$I1$!z몊m 1$!ߪMm۶m1E)1E)1E)I$I$@!I$I 1E)C$I1E)vlJD1E) )(1 @K$@1 ,I$I1$!I$I$1E)$BdB&1E)ʮ $IH1E) @e)%)$@!rI۶ f1  *$e)E)*P۰ke)!/hv-e)!/ @ ɱHe)A k۶mE)! I$I$e)E) * I$I$e)E) I$I$e)E)*|J"$IE)xbA$Ie)aAC,Ie)AI!I2e)E)r$He)$!*I!Ie)$!*#9(Ie)!``"E)ИضkۤE) H$I$$!!$I2L$!!X$in݆me)$!*  E)$HL$e)E) U P$$Ie)!' J2%IE)$)($E)! $E)$!m5E)@۶m[E)$I$E)!I$I$)!=?9t$ )-'4 d/s%q ++-3I_]?BE)'m0BE)c  +V9 d[91 mm491n ":1 0@c IgP!81br VMW9 ((B$ER9e)ꋮݖmX1e)a[i9e)/ vL۔91~{m dI191' H$91 M$[291 P"%4 9P J,1W9E) .. )SLY!P P JEi ++I$I$hEEyꪪ P 0Ey@ mӶmA)ꪮ m91b " }&b-9E)W^zh `9* 6`9b b 9e)B$A91￯ qa{:91=^ I1  &HC1  $H011 .$I11 B$I)I)gx 9 ?b1%)u@.`w؆1! 0IO9E)+-  I$H91 M۶m91J $I$@1  91믿 Mm۶m91. `91*  L$91`@91 A,591b ~2P=a9E)W~I$M51E)UWz-$1!+ 6a9E)/ mӶm;91I$11PI$11 `11-I$I$)I) mҮֶ91I$1f1*I$116\B(DJ9e)P'%&I9E)1E) 69E) s2q&9E)/ &9e)$8.1$!@$HC1 I$I$1f1@I$)I)0#a1 @@ q&H9$!ضmm511$@$$11I$ $)I)e1e) r( $I1$A$I1 11e]e11]*|*@1(4(I$9!$B$ 1e)*I$1 I1E)*B#AP15 wq@=/1/ww!H++ B,xɟ NTۆ1&Sf1!I$1E)$I01E) Id;f1~@ 1E)H$I$1E)61$!*~۰mۖ1$!($I(91$! 1$!@[vPe)9WyfP----.Rj槩e DAf1&$I&)1h$IIf1 I$I$1E)I$I1E)(I$1E)I@$1E)$I$9$&)f1@ܦmԔAf1I$H$9 I$1E)I$I$1E)A$I$1E)I$I$1E) 1E)f1E) e)%)kڦe)$!6ime)!+MڤE)!&Iae)!/ @E)!e)!$I,!e) @$Ie)I$Ie)E)| I$I$e)E) I$I$e)E)I$I$e)E)*@$e)E) ^U@e)E)^խ!A$Ie)E) 7X$I E) 'غk$e)!`^H$I%)!(LH$AE)* I$@E)!%Ͱm۶mE)! I$I$)(@$)( e)E) I$I$1 @$)(He)E)W EC$IE)b$i -$E)`۲m5E)@IH$I%)   $!@$E) m6mӶIE o'nGwf8*+7b24¡`@=ۯEA%H)I$IPE-M(8X8rIwE(+'ɟ7GXս- 1 r$%y+9"ٖ$9ǹ5/)IdIDZ 91mvǹ_5F&,XB &I$xHei$ X$I$EAE)\UUUI$I$E)$!I$I$1I$I$1I$I$1HE)!ުI$I$E)$!$E)$!HIE)! @$E)!z^I$E)![H E)!׵$H$E)!m I״%) ' H$Ae)I$I$e)IE)!LȄ %)&$d2!I$!@!I I$!AI  e)H$I$! **$@$E)!$H$! I $)% I PE ' IܹiH-,wd `/ 5$n0ɋM"1)†i5(0ADZ52۶m۰-%44I$I$%44I$I$%44I$I$%43%8 $PYDZ%y05-$P uDZǩ07$'%B/ǹZr3!,<IDZ(9"md9 蹆_*6$%IDZH*&6ʧR$IDZi4(7&h^DZh3'IDZ 2'qDZy4&#miDZ4 C.@ IDZ%qP2+3DZ~:sd@DZ%q,3>$baX8 R_DZ%qP5:S=8`8 $@n;DZq9 &IDZEy8mcDZꈀ 8(?$ ǹ4 )"DZ%yJ@6 `&hDZ$q7)AMH 5 $I$!ǩ&q@4$ILDZ !4.C$DZǩX65IkDZ7(`3A57ǹx9%> ǹ_*6X jDZf 7㠭N1DZ%q @b4/Fݧi&mئmE%yI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h`EEyzz%y)P` &A"9$!@ @I9  91 ` 9 )91 m6m۶91* ӡ91 qέ91Uo?' UAE)'7~\AA*  ;m91~k CmT 9E)`" Iƌ8E9(m 9aDI!81XTVU ML91L&C 91W^z@R1e) $$01E)*`1X9e)/mk;,91{ $II91/ v9!(& Mn ,91 mٖl91 X*C#)!H95`s%yP +-@$E%yI$I$hE9@ hoY 91 òa9!@ y^O9!LDhe)A HAs9$!- h 91 N4S9!,6 D#91^ D$ 9 &4 I 9e)*.I$@ 1f1*$I 11/II$)I) ۲ n91*Ր@95Ѻ.=:1a `0 w9* $ 681` Ml9e)* #D91  JV9 8 ۆmؖn91 91* I$91 @I$1f1 vض 91/ jN9e) * O'9$!~ $IB&1!/VĆ1!/H9e) !$I&91IB&$A291U^ H1 11  $I$)I)11I$11I$11/x11 $Ѕ1 ڬ؂m11M2$Y1e)* 1e) 騱v9e) ms2h91WLr1!,$I 99E)* r I$ 91H$ɐ1f1m3l۶m11[MHG1 kJ# m9e)m611%(51!$I 1111@11-۰91}$HH1 R"0")1p@@ ]Ylm9xAH1#ə}0++IJ%zE bPۺIE1!Ҋ&f1uMmE)! @#8e)`dH1!6I"Ie) jنmm۶1E)$!1E)#$I1$!_! E)!/NqM1!I5[1$)hذ͚P !IuIf0% 3JE$)`d1 ($ ۶m1$!JI$1$!@۶ml1E)I$I$1e)*"I$I$1e)*$1e) @$9I6%1!@m&I1!I$$1E)着I$I$1E) $I$1E)I$I$1E)$I$A21E)ڦ1$!_m9f1 zb C@$E)!mm E)! ؖe)!* dHe)E)-֭%e)`$ !1E)II$e)E)`$Ie)E)-I$$e)E)$I@!I$I$e)E)  mE) @$ e)E)^U%$HR,&E)  E) l閴E) C&I$E)!X}I$IE)!%ECf1!/' Ae)E)݉I$I$e)E)غI$I$e)E)I$I$e)E)/I$I$e)E)* e)&)(!@)(I$I$)($)([E)@$C$E)z Ʉ$AE)* E)! XdkmE)8۰mlE) 1ty '6V攎@ #I҃f ը  iH_^߿iEPU ). P} 1ɑ(@P;McǹFc66HBDZ  =4ǹH$(=>'DZX?&I$ǹXIՍ9ض [&E) XI$I$E)$!I$I$E)$!I$I$E)$!I$I$E)$!I$I$E)$!I$I$1I$I$E)$! 1 I$%) &$E)!b^I $E)!ׯmy IdB&$!!pE)!I $! @E)!ꪪ @$1IE)!I$I$1@$H$$!  $A$e)LȄd@%)((a&L$E)!^  A$E)! @$$!`P\I$I!ګ.!I$AP$}߿m6eX0* $ɝwP/ 4dJ0f- 42DZC$ZD$7ٓ 蹆5,"$IDZ@8,mhǹǩ 42%44I$I$%43%91Tm۶ǹ53!@$I%602"۰DZ9xDZi@c;sH >,9@$ǹi9uMDZq_ ;y O’ǹiW: mǹ%y**91+mDZi 8-iǹiz>IN>ȹaW99Enǹi-6iw6&ǹ%qZ?q$ UB}$ *U: HjE * AI$ц V86f$ s۠ՆEqU~4 $_%q U8 dROnDZq+U7`y`DZP 6iDZf 42DZfJ3&HODZ4&$DZ* 71$@$IDZi 4/+DZǩ4 5-lODZǩ*-{r:)$I$IDZX :ۍelǹ%i<&4 p͟%qI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h  E%i@+F  H 9 @  9 I$I$BD! )-91 IJ91 I$99%UU `<091 3L9e)xsBE)b˥? n$9 )Ѓ%!815 yO98'  Ɛ-11Ͷm۶91  !A&91  ;-91V^{ `)IӤ1!m&h51E)xh %V9E)+ va915~ B9 & 91 * I$`091? #mR9E9@ )Sei!@)) NE%q*+)I$I$h@ ĈyjR.8E$ ` &i A1 9@ Rڰm9 A }X 9!A(چ1E)5}W t9E) I$9 p  91Mf@ `91 MN4N9!&** 91 #)P9 Pـm9E)I$I$)I) 91꿿 #9!`6m۴ 1 n~c;9 b j  9  91ꪪ C!91 1EǢ)91 9% I$I$B$! @91 0MX 1  91ꪦ 6K~9 8 (9E) I$֦1$!!I$f1$!+ Tc?1!b &tf=1`9 h1 I$11pvmf91u11 I$I$)I)(I )9e)*jIC1 P$@1E)0 I $11@11dH&$I11"[mۆm11`(  A;m91W |}9E) m=9!Z 4q`%1Mmm&1e) 11;aM91!$$11:$@9!'A$I1E) I$C׶91ߪd$LB11hm6l11u mI$91?}_$A$Q1! m֤91 31 pr$Xb(**%W†@7/ 8[Ie$I@1E) k, 1!8Z%If1PmM1!bI$1E)I$1E) I$1E)ﮪp P18 I$ $1E)I$H$1E)$,4f1 @ N1 /sVhvPe)!!!-y7qHݿ// r iY$Ha۶u1E)(1e)#m1 @DHm1A I1E)@$I1E)I$ 1E)ꪊIA 9Z If1PI$I$1E)I$I 1E)21E)~ڴ1!&I$f1!@2E)!*$$CE)! [۴e)!.M1@ e)$!(֬0e)!H@!$e)E)J&Ӳi1 x`m Hf14I1!$I2$@!I$I$e)E)!I0I$e)E)XH$ e)E)x  I Ie)E)5>$I$*e)H@ۖE) I2I$E)!pVU!I$I%)/I!@E)!W5 i۶mE)!I$I$e)E)"I$I$e)E)zI$I e)E).I$@$e)E) I$I$e)E)I$I$e)E).pE)!$I$A2e)E)0~$I$PE)2E)!C&IE)!$A E)*L!AE)! I I$E) I$I$E)$! HE)8I$IE)!* $A%Ae:j)pwyf( *+.fb+- NRF%qW3r$E5%qM-6/cǹ[7V+DZf ǹ^*5 ALSDZ`&,3myU3 $V3 $U6m$DZU9$m$DZU9m$DZU @sAe) DinBIe) ]_*'Of ,lnf cI9e @ mЖAU h78 9t~;fiU% lQ% 4`f *6$7秱%Q+4H DZ% 5&6< DZv4 4 \%q44$$MDZ( 9$A*-DZi@4 C%qcr DI$IE%qI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h. wӧ%q?'-oat $L'%q!  ڤM91 $I91 I$I$BD! 6X)91/> I$I$91 JmѶ91 iۋ91 )>B=9E)x J,h9  x$I'81 b81R\V II$91* I֤h 91 $I¤9$!Z mP91, k*#,9 ` (+qdI9mU۰ن1E)WTP&Hl1! Ih;91 91  91 $pm9E)* CO)!H95` S%yP -@$E%yI$I$h $ %A@ A(JA iv91? mvmu91 B E91 * u99E)^pI$ 1E)u ^sd9b & 91A@91 M&n91 iT{9e)*/ i9A 6 H-m91~뫫!I&11 $I )I) J!A$I1$$h1E) vMZ/49A`ɝ؆1  S1! I I$91 49e) * Ha 9!  m591 Ȃ39` GMD49E) ` Go9 P-91 iݚ 91/ ²Aۦ91b /'`" 9 Xwۜ1xcۆ1! DN7?9!*IR91J@18kݖn91Vz!I0115$B!$91!$H$I1 I$I$)I)H11 A11%*)&I1@$I1 H9$!ˉ*JI1 I1&% aH$1e)" rC91_ v I1I91_ $@$11  A $11(Uͺ11I$d11*۶nkn11,I$11117$aa9$! @dATA1 k 1E)8S?5#P15 viyq0/-%r2ECfBbbY m$I9f)$mg9J( 1E) a& I1E)I$ 1E)۶m1E)0I$9!I$9 $C2 1E)I$$@1E) I$$A1E)bJH1E)J IȄ$AE1)ooooP X%A+yz$a-m@1a I$ I1E)H1e)(I1e)A$&1e) !N1!@@jmf1 $I$1E)꿪۶m۰61E)^$l;f1Ajmf1!ڴmf1$! IIE)! :iZf1$!+bȄ"e)!8 I1!@!1E)I$I$f1e) f1e)H$e)%)@$Ie)E) I1E)׿1E)f1E)nVAme)  $I$e)E);m۶0$1E)Wկ[$ e)E)  I$0e)E).pl6e)!I$`BE) n`!!%)>I!@E)!U mlE)!  $I$e)E) I$ $e)E)I$Ie)E).$A@e)E)*  @!(($Ie) @J$IE)$E)!E)!I$I$e)E)'; `E)H$  E)!x$IE)!z/ME) I$@$1I$IE)! I$I$E)!I E)!* $@$1I$I$E1%!*gq% 7??0 jjSq -7!DA DZ( 52im۶mDZ*50ڤM#DZǩ;$"0DZ`;''$`^9lR;f9a`z`$I$) -'I!@%)/ ۰dE) H$I$E)$! &E)aI$I$E)$!* I$I$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$1@$@E)!*$E)! zH$ E)!׵H$IE)!^7/ $E)!+H E)!I$I$E)$!$E)$!H E)$!@E)!z0%)B!I$!I$I$1 $E)!I $E)! $! H$I$$! %)!յamP% /  ɝ߹yqH/.yyS i-+ 4) 44I$I$%43 %72Zkǹ?G"Wц†6>@TKJǹi5-/(.DZǩp@@5-4HADZǩ44I$I$%=/_a~ݸ;9%B$ DZX >/m~,ǩ߂>m:ǹq x:($U6N W9&?Z3 $$Umuaf ԩ @چIU &tҧIe PַcI1*]}ObIE)wUIIE!UIE) w I I9!' 3Ҁ&9$!~nr? 1Aj`R$If1 bd~h9!(> #iLd1 6tkl11/<kt11| / $@11 u`I$1111I$I$)I)$C$A)I)mض11ү%I1Pؐmk۶91$$IĘ11@$11 11A$H11 I$I$11"^IB"$H1e)*M$ `1E)eYǬ-l1E)dC1E)UzM1$! /'9$!W ,99E) U $91u $IB91Uu`K@1H$I$11 9 I$I9!6rĆ1 IB2`$1E)I$I$9!aa1)@@ii`b *(b"&5fe JJJbM'N؆Af)$I1E)ڶm&1E)$I dž1$!$ 洆1!*Kdv1A$4mڵ1!4iE)!I$IE)!":iӶm;1! m۴1!*vl $I1$!+*HɤAe) I$I$1E)I$I$1E) 1E)H$1E)H$I!1!J۶MJe) !I$I1E)I$I$f1e)ꪪ @!$e)$If1E)ծ$I"f1E)߽n$Ie)E)`"E) $I:1!z &L$E)!`VUH$IE)!^UUI!E)!U Ie)6(!$Ie)E) H$e)E)H$9e)`m. f1$!j*H$Hf1!  @!H$I$e)E)II$e)E) I$H$e)E)(8e)%) (dK$E) &IE)!=I@$E)!b Id$$!P!@E)! ۶ۺ!E)$EI!E) @$IE)!*IE)!*$H$1I$I$E)!I $E)!* A$ɀ%Ae j%pWE *+4 Mn*+)40A%9$I DZE>!DZE1@@@IE1H$!(I$ E)!U  AE)! H6IӢE)(bm  E) - dB$I E) $ E)!(I$I$E)$!E)!*:I$I$E)$!I$I$E)!*I$I$E)!* E)!H$I E)!^߿A$IE)!$E)!HIE)!I$I$1I$I$1H$IE)!E)$!$E)$! C$@%)b@ %) $E)!LIE)!+L$$!4<@$I$$!I%) ՕI!HE7 I؉`H/w\!fP/B7FNHǹf#!43DZ44I$I$%52۰ %<,'r~tǹ+'7<9 6BǹPByf6) A#hǹx8+Votǹǡ6?۶1 `:$'ǹ U@I'eU!$@Lam%A 'IߦIE)WU $M 9E)^UU /' 9! ߛQ9E)U r9E) C9!  N@9$!W* )- i9E)  H[i9E) vi91} # 6 9E). J@J)I91< dI091 ( >4mE91{O?pe!J* ]A$I9  u m$I91ߠ &()9e)@ mmI91 e*L9E)x O9$! (K9! ?9! p{9$! +Ay$9E)%U fҞAe)-6i z/_DH/%  %a EEyI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hgf%y۷mf%yI$I$h`EEyz |>Z%y!` C햮A) &hSE91 . ɐ  9 p̀9&& AX91 @91( +l!9!0 @H$I$9!8} JT`H9Z\VW  ۖ91諸$@ 91 $I9e)4  91 *  I$91/? \$@9.& 6m9e)J*JdI1  #29$!zBJ-Qq1! "IK1 DNB'91% ۦ[i91*(" 7 Q9! & ?4!P95`s%yX -E%y* I$IEEy,*C#بmE @ h۶i۴A # !91B  k9b yp9  9$! 0(9`@a զ1 {l9E))u 'N9e) 7&bP1 А XӮ591 H011 .91 !I$91* M&؊m91H $)I)I$I$)I) @R%9 #$I9E)zꨨNN $1 (I$1%)-_ 4Hx9E)- I$I$91ꪺ A$9 8hI9  vX`91/ m閤91+ I$I$91 91 ܆%`9p` Ni91 m۶91 R3Aۦ91x ~89E)W~I$m1E)UU^I$I$1E)UUU VN9b* "9H喛9E) TK C1!$C$I1f1 I$11$I&11-V $11 1f1 HR"%1 P mi91#$I1e) [91__O vkl91WYېm1e)$11.$R"ئ1 Pmm91~a$dB11"H1$!-I۰m1E)v 9$!U ]߂A9 O-H1$!k EAE:MIPH/+'yszf%I/K 0YI䩡 ")I1E)$ub1 H11(R%b*H10  9 -* 1$!@k6H1 I$I9 I$I1E)K,hI1!1e)"($C$ 1e)(m׶-!%9)I/a!0%-++$c0URf$ bbR`M9 IۢM:E)!zhCۡE)!I&C$E) p9^[1!{:If1zN$I1!-1$!1E)I$I$1E)I$I$1E)$I$A 1E)*j$IHf1 ۆix1&&I$I1E)-"A1!*J@I4Hf1 ۶m1E)Jf1 rDh%m1 (6( Ie)%) I$ 1E)ׯbe) $ $I21E)((Ie) @@I(;E)X4m&E)! zzm۶iE))I!E) _5me)  e)%)Ide),$$He)E) I@!C#A$If1!rI$I$@!H$f1E)H$ e)E) <  $e)E)DJ e)A e)!`4E)Xt햭E) &):mE)!x-IE)! E)!8XӶm1 mE)@@)l PE)  e)E)% )(ۂ-ضmE)@!E)!)H$ $1I E) ?[pE '70 ` S%q --5- eާǩ&:Z;R(B#ǹP`; .0ǹEy@`ؑ 9mlݶ E)!ե +, E) @ٖm6lE)l۶-E)@E)$I$E)! (E)& I$I$E)! HE) 0I$I$E)$!I$IE)!* E)! $„I0E)!꾯oA$IE)!z%  E)!- HIE)!E)! E)! E)$!I$I$E)$!*  E)'H$ E)!E)$! E)!.H$IE)!m$h%) 8 $@ $!I$!* $A$b8$!UՕ%]vfYA0/'ɝywP+7MP 40 DZ44I$I$%44I$I$%83mvǹ/90lL<ǹ>`$Mǹi(=ǹh?TA\$`U;>I?e XxEeT 9$! I$/%H9E)UU- Irwm9E)U +AZN9E).  9$!& X$$91] zqJ9$!( u(@$I91 IB$I91"" Hl91١ 0l[m91 * A$I91 mզh91 mۦ91 0 UD[M9E)2"0 M%)91 $D#Y91 ۰Tkm99(>M̿اIH  2i! $!91 I$91 $KK n91$ 9E) Y[tm۶91 L"$$I91w  ,991߬ Z=- 49!` Ͽv9!* h9%)U~ o9! b)i9E)U f{XNA1˵Z -?Y -z% PE$EEyI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h R@E%q蠀j y)x` [69"  91 +. I$I$BD! H:`91€ I 91  C#$h$98`O @9jr [;9f)/ =Xm491 Y3l]491뢪 L$I9!, @91+ Mɔ@91ꪃ  I$91 mmV91 @+ 91r g91%W^89E)[xNa3ۆ1E)5UV&A 1%) -kէ9e)ꪪ P@9$!   @9UUR?חEiA@ /&  E%q *+I$I$FEyA$ EFy:ꪪ+Xfq II$99uUW H$I9E) `#91 `&mD9e)8 K6m91( 09e)` 뤨9 `cۆ1%)  F@T9E) % 혠 091 Ln9 , m9! U1E)  I$91* L H91  I&91 z MI1 @$91 #I9E)r }9E)Wxmۍ Ɔ1! !Ov[9! $IN9E) $R&9! @91 k 091ꪪ  [ 91 91 I$I$91* `91* mצ91߰ $T9! & Ei 91+ M t 91* #֒&9E)_ I$9E)UU^I$I&E)!* pc1j )ߧ9!  [9E)ۖvk `91W&I19E)*zI$ 91W ivL91]$ID:91UPD 9e)* #K1!@ Q&X:I9 ڐ I-&9 P HF1!@:" I9e)ML1 0m11$11H11( " *i1E)6I$I1 1E) 9S"&@15va@//5=?/% @z 6w 91.Al1!  Ci91$@$11 Uۖ1e)*!IA11} M1!$6$9 I9 H$9 I$ 1E)  ɐ1E)I1E) /-!@1Օ!Pl)P 0)-EEeNM۶m1$!WYmv1E)$I1E)*#I1` ɐ1E)II1E)*bɀ1E)I$$1E)۶زm1E)j`HD 1$! H$I1E)I$ 1E)I1  lm۶1E) $I$1e)H$I$9$I1$!1E)d$ 1E)I1E)I$I$1E)$e)E)$I2e)!ضmk$E)!pU$I$E)!VUUM&mE)/In۶1!U*ivݶ 1E)}*$IH1 & @!$f1E)Kݶm1E)?$AHe) I$I$9$e)%) $1#e)`$eI$H1!`e)E) I$I$e)E)$e)!IlE) '  CE)I`qlDHE)#&$),IE)@E)X`E)!$H)(IE)!I$I$e)E)$)(mME)4,$@ E)!  A0)(H e)E) X$$E)!xV@$IA o$pSyE +-2A  9-?{ǹǩ BS3۰M%yz*$I<ȏ )(@0E)p]&XmE) ۲m0E)b@!IH$IE)H$I$1I$I$1aB$`$E)! I$I$E)!I$IE)!*$H I2E)! @$I$E)!@$$! P E)!- @$IE)!E)!I$I$1@ E)!ꪪE)$!I$I$E)!***dME)'. I$E) & E)!/,@$IE)!$@$E)! 2 I%)!~^^W $!* IH!AHE7h$M!@e)u%y85=?1 1N0 %y-+ 8 @$IDZE42$ $%:2m~nǹׂ42@B %?!2*#GJJ*:iADZa?05C31ǹe```1p$e\ J۶ eAe d9! ;Ac[9E)* F"9J J$m91W. dDI91 (8$II91 ضm91* B29$!p  ID91 H9e) A$91 I%l91 dH91&  RAG9E)(  0m6 91 |*I9E). m9$! @$9* 9,9!* 4H9E) &[!H9n/Cx  %S9e) $ 9e) -vƦmB%) l6i91 (I$91( [-Kw91 $ IBD! I'891 P R#h6O91. (9$! @ R k)9e)` I">HS9E)UX* $}9E)UW z9E) W9E))- jmy!7I7%yA*   E%yI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hh Z#HEqz蠀̧|EqE M%EA1 4I)9%)J ,9C ۀ09$A88j)a$HH1RXTW hs9e)㫯 ! g91%W qSh+91︠ A @91뢪 )q9E)JJ* 1 9 @ 91 #&A1 P !`!6h9   #DR91Š* u-9E)* u:XK9E)_~Nav;1E)5u ZJ)1E) - )vK;91/ ` 91/ X@C99!` AdI1!  d,@R91 m91 dID91 ҭֶ91⪪ -9H !BI1$A$2)I) $ILH&91@@ 9e)hP#1%)^`A1f1$!/ g 9E) U $S 91 HT9%) 6 mi91+ +9 ' m91 A9 @ I4H9 @$I9E)  81b` ITm9E) ,0 9@ Il9  ѓv9e)~* O'MK9E)U_k[Mi1$$I0f1E)UUU؆1E)+U 3Զ9A` Q%U 9e)۶uk 91_ CB&iǧ91~1I$11%. QKI1-%R-M1!P@K@T9A' `$I$91II$91 A$I11f1I11m&۶a1e)۶@11VvKa1E),hmku1e1 ((z !H11qSEH-/5-)hfE $9!*:1! s9$! I~9$!i~Rۆ1!_&II1ɟ؆1 :1!I܆1@Iֆ1!UI~1!U`I$1!UTkۆ1!8kHE!'wu%q0++EJ)m1! $I&1e)@$1E) I$1E)$I1E)9["1``"I1E)I 1E)(IH"$C1E)+('I2m1]ضmt1E)<$ 1e)I$I$1E)I I$1E)I$I1E) )1(BL 1f1< &$A2$I1E)*+L6mf1  H$1E)ɖl$e)!^0I$E)!`]h۶m&E)[m۶dE) *Iuf1!*I1E)߯I$I$1E)*-ڬIe)a@K$Ie) I$I$1E)I$I$1e)I$I$1E):I$I$1e)ꪺ$I$1E)H9I$I$@!e)%)$Ңe)ѡmE)"`HE)!ޭۺME),4 AE)!-I$I$e)E)I$I$e)E)z.$L(E)( kE)8$H`,e) (9#%e)``dC%E)pIE)$!e)E)I$I1E)UUC(E) I&L$E)!x^UI$IE)!UUյIt E)!5 qvpe '/`/si +-3,1ٕǩZb8-[qǹ:;x%`)(H @$)(I$IE)!I$I$)($)(I$IE)$!* I$)(I$I$E)!I$IE)!* $HI&E)!  %) .&A$ E)!!I E)! H%)8E)!E)(I$I$E)$!I$I$1I$I$E)$!I$I$1I$I$E)!M$mE)nI I$!  E)!뺺 H%)ܼI$I$$!**I$9%$I Pe Nb'e[A`8ڪ%yH- 7@PUIP";2ǹ4:H#@DZ@=ZG4ǹa(>$¼'DZe\<'?ǹE\A1hOe '9HRe)@* mWpQyNI Kd7i9e)* 4#@91j 6(+Gi91b |RI9e)+ ngC 91 SERn91* I 9$!& [״$91 m%C91 $I19E) dIh;91++ b&9E)8 $If'9%)_ $I"$9$!(U Ic9 mۖ$9_ H,$9U P1e$9 U II `9!U yB 9_ IҶ@1U ۺR P'/?U1ebbJJth4 Ȇ1E)*(%&td1E)<# ാ9e)  Nl'91J UW Ѧ9 Ȱd 91 $191 I9e) -6i91 8mDI9e) F.$;P91B `HD91 !#I91 {ȴ9E)\ ?09E)` [퓘9E)? {!P9 Ey` m۶I2%Ey]m۶I%Ey$I$ EEyI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hE%y`Eiz蠀 ۳q)p `9@ 2 H9  EH<90R ɝ!@9jr MV9!((6I1E) =ٜ9e) ja91 5 vK91﮸ CͰ91. !I$91/ $$H&91* 'hڧ9 !L91 $I2dB 91 30 9`@  m9! + l.:9E)_~ a6-f1$!.  S9E) )% mѶK691 " H9UU1w%q@ )-' PJE%q ++I$I$h@$ EUUUth% z @9  CR&91  H$I$91 k91 + 91 p9!8 i;91 " s.*h9E)^xۧu 1 S9$!/ ` N9E) ۸M"(9$!* @ 4 1 MS$I1& mɐ91/  H$91+ k24v91 I$L$91I9e)*> $a9e) j T)!Za9!KɊi0 1 ܳѧ9E)UUVhNꟆ1! ח j"P9!ذ ݀ ؐ91*+ A9  $91 M5091  ,1@ II9! # i9 p 9 N,ڒB91@ dJHi9E) %1! D9@9$!' CI)91z 3֒ 9E)_* O i1$$ 1E)WU~I$I$1E)=_UrN$1E)+U I v$9E) U u91~v[11 ? $ ")1%)I1bK)$@1! l`1E)0ku1e)(( $11 $11+T$H1!$I$I$11I$I$11  >-P1UՕ{vYA8)**&9qO/*f$9/JMFIA nc91}#9 lU9E)*ߺ c9e)N.Aܶm9$!ߊN M1$!IHh1!UϱDJ1 IBm1!*IBm1IN1!UNI1!UI1!*N$I1!U+,գP'///wyEyH-----jS>8e pMҤ-u9e)~ꪨaB$A1E) ! $I1e) "LA1 $$$A$C1e)* P.4I1  I$I$1e) &-"i1 @i3%1b`ۀi1E) H$I1E)H$I1E)I$1E) I$1E)$I$1E)dH$H&1E) lk۶1E)m$f1!W0L$E)!V`$IE)!xU/mڤE) Il$I 1!կ SmHf1!rNH$I16(I$I$1E)I$I$1E)I$I 1E)$II1E)@$I$1e)I$IB$1e)$I$1f1!`$I 1E)" If1JI$Ie)$I$I"1E)0e)E)[$e)!`$ I2E)!xݶME)! X IE)(& m۶e1!.I$I$e)E).I$I$e)E)I$I$)(I$I$e)E)-@e)$! %%#Ie) p`B&P1!X .Ie)E)u[H$I$e)E)I $e)E)'ۆuK$e) @$I$E)!zVUUI$ E)!Uյ m0`e)! $I$e)E)I$IE9e:j;% *6 @aDZ%q)6TLDZX:XX%$ PlmE)b I)($Pb"'E)$I2`$e)E)fTVI E)!(($H$1I$E)!H$I$E)!* $@ B&E)! r I$IE)!I$IE)!׵!A$IE)!+ ضnMnE)!+I$I$E)!I$I$1H%) I$I$E)$!I$I$1I$I$1I$I$1I$I$E)!*$H$E) E)!/@$H$%)!zZ^I$I$!*$I0%) @`݆mPE?- mvab(* +PbX  /#F$q87 O_DZEy 5<1w2 }U/>&¾'ǹE\=¼''DZe\$$5Ae k Ҹ1E) a?{E (ܐwb8*)"؊ ۧ c$!91* i K91* `$DZm91 ¶"9e)j mW 091) h'91_ i9E)$ Ƙu~9e)^}֎mۧ9E)wFuC1!8im1!<&'9! Irb 1 y▒ A1}* IR 9*H9' ö9!U Im$9!U DI9E)  n9%)( IY"H9E)Y "H!H1U9EHύ-- HnI ]3m91 -v9e), q$$H91UW /h9e)ض 1E)&wS9E) `5Rw9E)(( W915 6ij91* R0 ڦM9E) &Cm9E) 1I -91 99bY I'(I91? h2<.9%1؂H @8ޖ PemEa VݚtaWt1YժWs% -_S%-$EEyI$I$hI$I$hI$I$hI$I$hI$I$h@ E%y%EQh ©rq)}X 3<9!0@pI 88 HyW[!H2z ]691z{/M&ʆ1E)ݔBɖ1E)  k=Ŝ91wZc jg91 % 6i 91 &"A9E)@ dyф9 + `9 *)&M9$!@ !/(I9I M$I1! @3 91⊪ GW"96.c181E)X`u:I1!> FHt9$!) Iش917 H=!X9 OE` +-E%yI$I$h0 %` 9 l91 L9!, I$I$BD! #1( 91 &N'91+? 91 fm۶91 * & 9E)x Nܸ 9!acۧ9E)5]U 2tw9@* 6m^9 8!@ 91 m91 $A51 @ 4%1 $L$91* Lz$9( I %91[7`11@  I9E)* ۶n91 M$I9 m[M9 ܾۦ1E) DHd9e) I$91  $@91 "a9@ H9 4N&(9 *@ `m9 B%3@9 DI1A9  Z"l I9P 4`91j mI91諯 vBd91 m* 91B #+@۫%9 CШ9E)W~ 9E)UUC4 1E)_Wx$A$e)E) x&I$1E) WI-YǦ1 S 81E)it11% $I$CA91$I! 211$ 211I$$A11׸6Т(A1e) ۶#11 UU0`]1E)/b!H15Xg%q(/'/ "R/fBbZR͆9 p$H$҆1E)$A$1E)$@ 01E) $I9!I$$9!$I$9!@$9!$I$9!$I$9!@$ɐ1E)*@ 1e)!I$1E) LB$ 1E)B @#5H)wq1f8//--4TC-e `@@ xSAaoFr1 6lִ1E)"$IL$1E)I$1E)$I1E)*A$ 1E)*$I"R1E)B*Fmf1A I$1E)$I1e) IA&1E)ꪪ$I$$1E)Æ%1$!z,1ce)a@C&IE) %H$IE)!xU-I$!E)!uU c*$Hf1J J If1 I@ I1E)$I1E)I$1E)*$I1E)I$ 1E)$A 1e)1$!() H1a I$H$1E)A$I$1E)#) f1`4H$If1I$I$1E)꺪$ f10f1@`m۶E)!mE)!/v;$f1!jj $Ie)$ I"1!JJ,FIe)!0I I$e)E)xI$Ie)E)x I0`$e)E) I$I$e)E)@E)DLe)8%A)&E)P$QH(e) 8m׭X61E)^غm$e) z`$ IE)I!@E)!յ  Ie)E)% @$I$e)E)I$I$e)E)I$I$e1E)?W tuiq$ '?. Nt%q %2(-DZ肃?3<-DZ`p`@Ihf1 I$I$1 @ H$e)$! I)(I$I$)( @$1I$IE)!*  &E)! xH$I$E)!^WUUMҤm%)8 E)!I$I$E)! I$I$E)!I$I$E)$!I$I$E)$!*I$I$E)! I$I$E)$!I$I$1I$I$1I$I$E)$!*$HE)!; E)! H$E)!{^I$I$$!!TU$A$0%)A I$I$He7 I `Hս-'.@+:4BA aJ6y'%ǹEU\XX'Z->Fe**x8"$?e T ,EIAe  NAPv9e) !)91z$ )#9E)eZI1E)  Wنh)  ؿD^fr@I91 l(#9e) H[$9E)( 6u$9E)0L1E)*;$1E)*m@1E)mU4I9E)ߺ& 1e)  I$)I)Ȑ$A1f1I I)I) nmm91j 2mۤ9e)˪ IJ= 9E)! qJ9e)* &091 4a39%)~ m$`9E) ۖt]W91 6[91 rtr1f1**[E0///ȏf m TO91 I9e)~ m@9%) Xm9f1.6 mƒ91x 샳;9E)z _?KH9E)^ 9$!^ !`m9$! 49$!: ڦMX91(? )k91 ۿ<BE)ڞ& # FA91 2!S$90@@`ɝeAA@ j"9e)` ||9E) KM?9E) } a9e) H+QjP nW6%   n%ea (EEyI$I$hI$I$hI$I$hI$I$hE%yꪪ5 %y1` XAP9 a!H9jr -vj;91 # hN491` H:B91zkI$@01E)|Zj 59E). +1M9E)h* @1@ 9! -M9E) J( B$9 ( k91  9!@ 'l!C9 I91 I$H 91 Cɔ I91r* v91W\ p'BA9 thۊ f1$! I|9$! - "(A!H1U1wEqb@ +-- P E%q ++I$I$h@$ EUU۰ Ey mѶm.91*** t+0H9'  E91 / $2A99w L,`9  Sr 91 91 d@2$I91* ZSz91 ( mJ9k5vf1E)j KvW9A** "  91 k[91 N9e)* A[a91 mִ91 I$I$91 Xu91* $Ig9E) $91 m2l91@;`011 ۰91⯪ /( 9E)UZ*nk 1$! `9E)- 09E)- P;`9e)@*  H4 1a !z9!@ dH 9  6 -I91/ DJ1E91* 91 + I$I$91* زm۶m91 * $9e) 1@9@@ y#I9  HgI18 Фk3`91 #@D91~ um9E)_ꀪ ݺb%9!ud$1Aآ@"8e) @`mm1!*znv1E)ߪ Ǝ;9E)u&H妦1E)"@B%1 `p II9! I$L91 $M((B@1UU؎!P9%fX=-$h 銶6l91ۦpY1 i6ۆm1E)I$1E)I$$I1E)L$`1E)I$$ 1E)I$I1E)* II11W=tυB1 &&I$$1E)-61E)$GrƆ1 ذ[ۆm1E)[` !H17RfP--=-5 WǹFy*&/fe!I@1E)*H$1E)@I$1E)"I&IB1E) $IB1E)I$$1E)$I$1E)mI$1E)} B҆1$!n–ne)  I$E)!WU$Ie) _UI$ E)!UU-It۶ E)!U=vǤL( f1 *kf I1$ 21E)*m 1 I$1E) I1E)*I$ 1E)+I1E) $AB%1P۶mؖm1e)$1e)$1E)4I$A$9$ H1E)I$I$1E)KD Ie),$I$I01E)j(c'1!ʪz H$$! $E)!/mv0e)!/!e)$!Ce)E)H(e)@"IIe)@DH$E)I$e)E)-$I$1"I$I$e)E)xȘ %Af1& b(H$IE)bI$I$e)E)ȯ,R" @1Z* Ѣm;1$! C&I$E)!zWU$I$AE)+&iSN1 *&&I @$e)E)H$I$e)E)8I$I$e)E)((%&b,Qe) АI$I$e)E)I$I$E9e:j"6WO?EE +2 eQ 6"-,᧩E@@ ieAE H)(Ie)E)I$I$)( @$1I e)$!* $C&E)!hZ I$$%)A( *c'cBe)!z&#E) rE) *5[mE) `E)`E)I$I$E)! @$E)P۶H E)(I$I$E)$!I$I$E)$!* I$I$E)!LE)$@$E)!jzI$I$$!!u] E)!)ImAaW mv`@/%ɝwP/ 2mD 0XAƑ$Q)Ɇ*j@-0{e `\ xڳea k5f1E)( t91^}! d11%[v b1e) (!ҺM1E)@H$I1E)k&-X!'b%ebJ 8Ae EB$#B1E)jM1E)" m11U m1111?( 1$!@ G-Eh9$!/R&Ai9e)$I11# 'Hl9E) R$9E) " m۲i9e)" 4n[,p9E)ڢ  s9E)Jj. uI9E) 3M9$!P ۖR9e))@r1 I1$In$1b H$9 AH1=F $"(!I9E)⪪ M-ز 91j o*91&mf ĩ$i9e) Z]h91) IڰI91. L&h91 J.)9e) #dl9e)z# >9E)UUPݳ1 m9! } IS9e)- m5ۊ91 Br'9!8 !P:j  q9E)  *I9E) t,v9E)`( N:%9E)7Z bG)9E) jM%91 @rK -0 t%y '0ݐlEEyI$I$hI$I$hI$I$hI$I$hE%yꪪHEY~ ؒji @I$91 Jlі91( 91? H91T,9 @  A9 I$dB91 6`)v91 ? I$I&91 .$I91J cւ&I9E)^k >9E)x П}ܶ1! > $I{9E) I`B 91 &5,A9$!r hu9e) ݖvk 91 $I!91꯿ {۴m9%)(" P 9$!' ݖk 91 $1e) I$I$9F1 9F1 b )91j9&9E)UX*mۍ51E)pn9E)- HA99E) nۚ91- $I 9e) & @H$91 $"9$!@ 6vI1 b],91 ?&9P JF@I9 8 %B 9` p$)91 IH91 ګ#`91*^  Mm;91* -ڦ`91+ D$@9A,6 IB91 cI9e)j(* RJ9E)_* [#b9!j))(1 )@ҴIbf1A #A$Z1!z -1E)'mu1E)B$@)5 Iz%q(+/ZE$ b V&9bXK$m1  I$ 11xL$11UW`@$1E)d$dB11_W] I$I$9!$I"9 II$9!$A!11?*u\A1&[2l[1E)I$9 @$I11UUH$I9!p>ӳ@151yE@-) %y]U#@>8mEf pj IVȆA iv-1e)*۰b1E)* eA9$!z[[)+1$!H$@1E)_I$H$e)E) e)E)yI$E)!NB$I f1$!_ I1$!*I@1E)I1E)$1e)@$ 1E) I$1E) $@&I1E)$H1!I1E) !I$A21E) $H&H1 $1E)#@ڶm1!PQKf1 8I1E)*L&m1 4( a"A1@,YSh1ajք1!8"M؆1(6ie)!۶Ke)!/t[ e)!-!Ae)$!I$I$@!@ e)%) $e)E)9[Ie)`&J11!)h1E)H$ $e)E)I$Ie)E)%I$e)E) @$I$e)E)<(I$Ie)E)($A21E)_m$e)!z^ɄI%)IiE)!U+M $if1*$(Bf1 p$# e)@DHIe) I$ e)E)* ۦme)!e)! e)E). $I$e9E)%_'E%_2VI$%%_.N>LE p m} $qE xI$I$E1e!$H$1I E)!* 2d$E)!X^I$I$$!!ܩUMvVE)!*0`Â-E)@ۖmɐE) I$I$E)$!I$I$E)$! %)@۶mdE))I$I$E)!I$I$E)!. E)! (@۶mۖE)  $H$E)!I$I$E)!*$E)!*zH$I$E)!\WU$A$%). *I$I$He7 MIX@/ wfH/7qn ǹ%y*?&E X=$epi]ۆAe)}I 1E)> bMHn1!ۖ  1e)t1E),Xt݆91Z$I41E)liZv1E))I !1)@$ ++)0a !$I11 $J$1E)0ڔtH1E)/LD@1E), I11 &m11+PXE9E)ˌu$I1E)(نm۶11 $IΦ1E)@Ҧ1E)m41E)ؠptl69E)(٦1E)@S?1$! V~ȒI$1$!1?1~ [II9E) N<&g91U5 =RTK9$!( m@9!W =!H)5s?&$jjJ$#] 1 נ psO1+W U$9!*W D)Sv9  x91 H$H1! Cvkm91R I6E91 kP9E): * i 91 u]91ª }$I9$!^ /9!W^ n9) HN98 ywvo`)JJjr Z)ֺ91 `9!B PcH91 R`*9E)* a9E)}\p l9E) wD9e)#+ IAe Jv%y '  N%Ei E%yI$I$hI$I$hI$I$hڤa>,E@ "$II !I$91 . $I91 b5Q91 91 ##?9E)jbB%;-؆1$!~ Mx9$! +  ۀ91ti fi91= LB&$91ꪨ X:l 91 @$A&91 $I$91**( a9!&' !I$91 I$H91꾪 "I$I91* I$J%91wx #HN9E)x| 9!lΐd%1 &&1w%q@ -- 0 E%yI$I$h  Em 6%y Z"uJ9 P  ,2a9@@ t$H9 M&`9f1J( mi91 + $LHA) K5m91 I$91 I$H 91 )M91*@ Úb1@M9 ]Z9E)^xdH$1E)ﯾ Ok9E)-_ =S9e) vb۶ :91 n91 I&B91 mf91 ۆM|9,6 I 91* NB:$I91"  I$91 qs6N9E)* $A$C9F1 H A1 BIC91 9D9E)Wx* N 9E)6 1 ' MUv֦1&* S9E) $%tQ91 ES$S91. ui91"+ A9 && L$ C91/ m91*/ !$91 91 p 9   I91( "91_讪 m[91ߺ dc91w Z Av891w MЦ91: N8"@9 & B8L9 8@s1! v@9e)* 6M639!`@ &V10R֦IbHA0 //wE@-"On% b`zJ9 ,<r $1e)I$$I11Mt1e)*M;$ 91_U_VǶ H1E)**ضt1E)")1@m( 1h۱#@1E)жm1%)I! 1E)""I$I1E)$M:M 1E)L$d1E) ҭ0lf9!:j1w%%1 +-' nf * tI6i%y^$Ch f p9 _Ae) On9e) $9E) jl'@9$!vh1E) II1E)}aB1E) I1E) 1e)H$1E) !@1e)H 1E)ֶM;l1E)I$1E)I1E)I$I$9!I$I 9!I$I$9!$A$C&1E)*mm1E) I1e) 1e)A$I21e)$I1!$I1e)5f1$! z ul1!(xWh6]E) b@&ڱi E))vWi1!ս*4ONf1&I$I$@!I$I$@!$Ide)4$Ie)E)I$I1E)߽$I$ɀ1E)1!ꪪ H$e)E)>H$ e)E)> IIe)E) 6MTe) 4 Ype) ѢM;1!~ I&L$E)!xWUI$ E)!UU5 iv0f1!  I$I1E)$I$&1E)Xjf1 && $Ie)E) Ie)E) @$e)%) LȀIe) |D HE)#9(Ie)``e)!$H)(&b&MEAEJ*E$ -С% os$Zmn,P` I2d$%1I$I$$!!׹_I!@ E)! B$HBE) $C E)H mضmE) ۶a۲5E)@۶mٖE) 2dB&e)$!K۶mE)I$I$E)!*$I"$IE)!B l E) !,1"ME)@*`lE)  $E)!zH$I$E)!^WUI$%)!k:48E)}U5!H$)ɟwfPյ/-uT8`P+?(1x l^-$V9E)^B ( O9E)%WX *%'T9E)(% H XA1jtM%q ' w%y! 0 EEyI$I$h$I2$CEUUUUCp$E I$C2A9TWUU h6n91 a۰91* I91* DS5њ91@( ,W99 `` t9ꠡk۳ņ1! .t99$! + lI`9! V{91 ۶ 91 @ @91* tI$91+  mm91 @91*" K-91 $$L$91 m91 v6;-91vH$I1  b1!Ix~ǣ`$!+) NEa +)-hEEyꪪEe`@  v9 ) !O9  9 I$I$BD! M&a91 m91 / `@BD! 91 m9 &.9E) Ҷ$9!r  U9 &9E)^ .kL9APs1! Ty9E) - n9j91 -ۆm91몺 8L98 No9' "1I1A@ dxC192   I91 ҈%9P 2۶ 9191 `%i9A8 ҄J9!( Ŷdh91 Lѓ$Q9E)V %ۤ @9E)^[ml1E) ~9E) $@9E)/ $阐 91꿨 ,$)&91 mÚn91 !@91 L0I91⪪ mf691ߪ D#91  ݰ91 $ *91*n 3,'l9 @ `h9 "#A$I91ꊪ lՂ 9e) #'id1( 䴶91w !$M1&l11 ۶=A81UU%'IhA8멪 O.w%q8-+/9an gi%+c9!o If9E)*  -%q!7 .%y! %  NE%q *۰ %fi*j*aa ٚ I91 * A) (-"9a@ Ômm9   I91 c5z91@ Mn9!.  I9E)z 1$! I|9$! + I$@91w Cɐd91 6i 918 -ђ91 nm91 РfX%9e)(( #0 9@@  m9 91  I91 -91Wr ce91r ??b@)'=7w%q@ +-@ E%yI$I$hEEyj<%E j9E)/ 0I&%1 0-91/ I$IBD! 8`D9 4 !LB291 /  `91 X. 4I9 9@ rڀm9 \K 9 "/ 2$91( PCA-9f1`* +i9 Rmu1E)x PS69 j &v9$! [ѵX3`91" Mn91 @۰-91 iېmJ91 PiѦ91 91+ I$I$91 m491 S" 91 ȔD91 9F1 Xmۖn91 *4"A9 ` @a9 IK 9E)^mnI51E)+ !DS1E)% SOb9E)-W lm9E) ضXa91$&91 @$91 I$91( `@91 )"E 91?. !D$+i9E) @3m릭9E)ࢪ I91* @049` H $H9E)4 096( Tp9! ,M$"9e1H b$Ο98 ϟ`8յ- 1gN@AFX- -f@ If1A) N옆1$!׷bH ;1!Z~Fn1+ tBې`[1$!Vqכ1E) $$$f1! ,;u 1j)&'1! && 1E)*LN1&I$I1e)v+1E) m?/@9E)U_v @1$!dR֛i1rK?01!^ v$`N9$) yq䀆))1r/DZX)5If1s>dɆ p` $i$9Arڶkm11B#51E)`rivضm11YI111%),$A2$A91, =@9 % I$I$11&hg1 8 ͵P1&$R",1`HDH1$! Mmöm1E)*I$I$9! 1e) 1e)I$I$'9# 1E)*B ؆1A$:I$f1!zUUpĶme)I$Ie)!I!1!W*Tjd1 صI$H$1E)($IXf1'I$I$1E)I$I$1e)ꪪj&[If1 H1E)I$I$1E)I$I$9@$e)$!@$I1E)_4a"-e) @I)Ie) $A2$A1E)/-Lf1  k&f1!$IE)!j^WIiE)!U+ It0`1$! #8$If1b`$ I1E)$I$A21E)mMTf1 .&4If1.6#͒&Ie) @ I1@$Ie)E), ۶m1E)mAm1!H$I$e)E)I$  e)E)~ [&e)!x@$I$E)!XVU]I$IE)!U5)!Ie)! @$I E)!*$AIJe)HL Fe)!0 O?fE% -_E-t>)W~ یhe$ E1E  0$CE) @!IQE)I$A$1I$I$E)$!I$I$E)!"۶ [&E) mtE)!I$I$E)!/$E)!rH$I$$!!PTUIIE)!I$@e7 I P NPM`0( x fP569343䧱E @`pjڲceAe)\V 1E)˶m۰m1E)$1$!H 1E)*ZՆ1!xz&ME)!xוIn0f1*m۶-1E)%j1$!  ڶq4l1 `&L1E)0 1E) IM;1E)_ ??p$!))^i oEA$ 1E)ս+i["% 1e)* $Ŧ1E)0#P EB (I9E)ֶMm91׺I$ $1f1 fHm9e) $lm9e) #I9E)* ڴv91 dI F9E)+`$91꺞 c$ J9%) ‚ @29 j ,H191jn4 du ,91(` TnK'I9e) cӺm9e)A4Eӭ91YY{k* 1E)@ ~;m9E) >Wic +&C^8f b 4Ր9e1" #)@9%) ЭC91* Ȱx$i91$ ")I91B $hH91 ,AR*m91j m-P8H91]" n٤-I91WxAH D1E):'< `䶑9$!> (AK91 C"&h'81W9ua8---Zy ˂[n91 }*@9x .pOL9 M9E) 0r"N9e)(@ 4H0 9!  MUk91@ (I9E)( a9E)wVb m?9E)-U NE09E) 8b &mв-EY!Nq! 7 0 REyq`4 %` KڶŚfQ)  I91 rd%i9 (( `q)91BB  !9  C$IBD! SQ91` vg91 X9 $&n7ņ1$! tI|1$! ?I&À11 \jO91" ' NTm9 && ӸA8-9@ mn1  M AX9 NEa +-hE%yꪪ/4%f `@ik%1 ?9%)- l9e) i91/ J@$I9$ $I$BD! ӆ%@H9 P 1)91. IA) 91 鰤X `91 k֭鐤91  9!& 1`c91* 4N9e) 9E) 61E) wO:9E) -z Hw9E) $Mې@91$A2$1f1 m91 I$C91 am&91 DR691%  91 t DI91ޠ I$I91* I$1f1 ݖCn91  91DH@)I) C&I9E)bb v20M9e)] 3`9E)zh2I&1E)x- $ 1E)-^ SN"ѧ9E)/W` `9E)/ Vwږ91- aɆm91ꮧ ۰m91 @$I 91꫺ $I$91 LBH91 S" 9p DR91 @Kb9 & @"9ƍ1p  298@@@ I$I11{mH$A11|X`1E)0$11 $HҴ91Hm۶11TVAl1!&&$I 9 @ 21E)@$1!W$:I$1!zUUXm۶E)!xm۴IE) % mǮ a1!U/q of1 * t&m1&$I$I$1E)*6@d1 (I$I$1E)+r $If1! I$I$1E)mf۰-1E)+*hp1 I$I$9$!"1@*Ӗn4Hf1  1E)$hR"%e) ``$!1E)ϼ0-1E)*zض5M$1! I2dBE)!m&] E)!XD f1$!* !I 1E)@$I$1e)ꮪI$I$9@$e)%) H1E) m۶m1E)ꪪI$I$9@!$e)%)I$I$1e)$e)E)I$Ie)E)~7۶[ lE)! X5m$E)!pH$I$$!!{I!AE)!%  $e)$!H$Ie)$!* "Hp$GE)8)PE) ð[ve)$!*$AJE) q?eqE %ʉ'f$_!uf0~R'd_E^x mm iE $E1eH$I1A$H$1H2$Ce)A@@!IE)  A E)!.$E)!{H$IE)!\WU$A0E)! `ݶ m%A$=H$IHe! ɟ߿{EyH/)yMiU{;orȹisi%P. X3k%H9$!`. yפզ1- A9! - $E91 ÒmIۤ91 8 ٶnX۠91* !9LA91> /4I9E)Tp¨ 'v9!/ (9e) ( ضmA!*PW{?q) 7 *`NEy%i ݼ5q9\P` L&CA1 I@g9E): IL995 (91 A$I$BD! I$BD! Y91  Uu9f1& Z6a9%)z蠂׋ن1! pr9!* ܩ91wb |c91 7 BJL9$!B  8@9 $ ]vh591 @91 P9 I$h-91 I!91? $@ ɐ91 "-)6 9E)@ 79ɂ W%qb@ - E%yI$I$h H@%eqJ**Sty IhKچ1 .',9E)` yh锘9e) -жh ,91/` t91 5 I$I$BD! @91 k91 / $I9$ I$I$A) LB:$I91 ݖnX"91 / $I$91 I$I$91 m91 = 9App )9$! D 1E)* O9E)- ;`!ps9E) / vآ#91A2$ɐ)I) cA$I91` I491 D &91^ 4N91 6 D @9<4 #09 p` +Ǎh9 n 91_!@@21f1@ 9F1 29 @ 11  SC91 0r9E) $b39E)Wzx$k|1\ &ar1 )* ~R9E)  8W9E)_ -9E) kثa91 $IQ91 ۰m֥91 #I9e)z Z"89!p #9n\9e)(* 9 9 ZoEy!()++2t p f <1cvDZU>p 1f1 Msx9e)( h:91U &1e)$ $11(. #-$M1@@ I$M1b$91I$H$91 591 $$! 91 $$$ 91 ZD91dB$ 11 A 91@۶91z!II1f1Jd1$4!@11 $q!'?2N7WY +-8,$rDZ 8.) E@'~'Ǚ$JK9a6,$I1 I 11 I11I$I$g9*41$!`$H 11H$H$11I$I$9!k-11`XWiD:1$!~&ik؆1!~U:mۆ1!^UUX۶mۦE)!XUmێme)! ؝1!Uի7A$I1!+$I1E) l1E)J*4I$f1 I$1e)I$I$9p @$ 1!*H$ 1E)+I$1E)Ae1I$I$1E)* H$I1$!I$ 1E)I$H1E)+$a2!f1@4H`%e)۶ ض11`֐I1A@$  e)$!I$IE)$!((*x1!.6$ (1$!"@IH1!I$I$1E)I$I$f1e)1E)m0,1$!*1E)1E)1E)1E)$I$1E) @f1E)zk۶m1E)_Ulض5f1$!zC&I$E)!xUI$IE)!]-Ive)!5+ 5K$e)$!I e)$!* I$I$e)E)r8E)!` E) Ċ!Ie)!(C$IE)  )(DRE)ǿEE'*jf$ %(++hH娀O' $!Wzvb'`e@ E1E@$IE)!*$Aʒ"E)b@ %)  I$I$$!!p  E)!HE7 $IHE ɟܿy%yH/.yW!a-+J< ǹa@'% ^LdHe9E h&uҦM1!"EB*1!bj"Im'1!J{$IE) ۶@Qe)!5Ie)!Ҧm"!1JIV1!*L1E)W51$!(zض5Mf1^m;v;1!WU 1I@1$!1e)*شlX!'k2y bb"%A")G9E)aɶ1E)N'1~i1h'۶1!^vS 1$!~:۶m1]m1e)"C#Ii1E)  1E) n%1%) < 11 Ӳ 1E)š K9e) 3J;J9E)~&m I1E) [X91~`H1E)8$I1e)۲11@$L1f1(,0-)!`15'zsyWYͭ-- CAf$$d11II$91 3H$9$!=$A1p1$! x  @ħ9!/ b*HZeZ9e)(; ېn[m91+ #IDR91 . $dB91. (H*P1U.RPY!H+)+ #&n1?Eeb $ tA! $m9E)f l 6a91+/ 4OI9E) òn91b O2?X-9$! 9E)=) &n91  Xm91 ( %[MI91( $9  `N&R9E)Xb( /9! ? RR9E) ,A "`%Q)՘p1 + "hEyq@.K 5q1X j QDH9E) ݚbI91 * I$I$A) H$BD! I$I$BD! $C$IBD! Ӂ@v91 691/ Ka9E)~m$r 1ZJ1! & Rb1@  v9   M4I9!6 h.u9 6ؠ 191 @91* I$I$BD! I&91 0Ƨ9 '&P,H1P mm191* 7Ph *+P REi ++I$I$h E%yXhEaz OR%iA@WIb;u iPA0[$mm!@E9}  @9U* VIb @1U '98 @$98 U 0 90 Lr 9 4 dJt 91 #є91 H9  ):H$91 h 91 $I$91 d@$@91* SAg91* uՐH 9E)^ ޚxu9E)^ m%ߒ9AP* ps-9E)/X +Is9e)- hʐ91 Mڱ91? &T9 ' TM91ޢ IMT1  n91૽ tH918>  I9   91* 6h`91~ 逮91 n 91+ dB&$ 919F1 Mv۶m91? KI&I1A$ u$9e)_ $m9e)W" ӽ9E)w A9$!) wk?fW9E)_/ ໶S9e)/ 6 9E) @9e) DG91  A 91,. 41!yW~{EqH-/''4pE );&>(DZ@ H$II `$ 91 : ۺ91 qbA(I91_ I"%J91 NM$u91ժ d,9" 91~ k91WW I$91 I$$I91* I$-91 I$$ 91 I$$ 91 {9( $-91$I@1f1* M$m91_W vl(91 `. I9ذ emf9e)EpY1 5r䀦)53 % +-5,R#I`3b.= p@ I@A `*i1Aضm[e91$I1 $@ !11 #I1E)`ۦIV;1!@k؆1$!01 UضM'f1m۶ce) W+I$I1f1!UUI[$@f1!UEI1!*(A$I9Ҵb,l1IB 21e)((A f1b*m1$ 2I$1E)$I$ 1$!B6I1 J4H1  1e)I$ $1E)rT$ f1 I ,f1 @HIf1 @1E)mӶmm1E)* i1 P:c[1bCڤ@@1A` D IE)k62,1AB@I)i1! H&I$1E)"R#51``THdHf1 I$I1E)I$$1E)I$I$9Z"%Hf1P4H$I1!*H1E)I$I$9"$if1@I$ E)$C01E)wz ۺE) Xڶm۶E)!\WUUIIE)!U ie)! @%$IJE)``IIe)$!"1,Ie)@KHe) I$AE) HI1!I$I$e)E) )(dB%$IE) Pr$ $IE)a$A&e)$!CRDE)`'$ (+)$ $*h`_O'%$_z;N:`e  $)$ @$I$E)!!C$IE)!몂I A$AE!7H$I$HE! ɟ߿y%yH/5ɛ/YDZi <A'$`^;$'EV1Lڴme9eÖm6e1E)o)0e)!놵m$E) p\ !@E) "ifۆme) #`B$Ie)%)(*mbɺe)E) bEE)@AQX1$!E)tD E)x 1!* C1E)m1E)j*!Ad1E)*.͆d%A!?9xEJʊ*0e9 Pر;A1J$ 1!U-ٶmm1$! ( $1$!$$ A1E)+$ 1E) Id$1E)*D I21E) 趵i11,zmX011I$L211>(ۦi 1E)͔J1E) I11"i9E)Mk n$H9!Ib&H9E)՞c@1E)#:,41E)RJ(1E)(lm6EA)"yE)++)9̏c^9 r ZK A1H۶m91 rV0r9E)8 dB&91 mi 491#@&I1E)p wS+ 9/ޢ I?9$! W &I 9E) dOΪm91 ' .0X15oxA??/Op}f q]`9E)x -m9$! I 9e))) ;9e) Iڂ 91 m)f91. '=A9E)~ z.p9E)/ mL91 ۰[W91"* l91+ @B"91  `B89$!p 1T&1!/ [9e) > c(CbX15 rEyAH ) `8@Eyaxb h9\p $)HfI1 mm 99= I$I$A) ضth91( I$BD!  91DD91 91/ ۢi 9E)j زن1! PI$9!+/ XW9e)- .n91/? 6%91* ۰mt91***. x@9A' @ 91/ I$I$B$! `*&I9e) ۖnM91꯿ $ 91: -("@15N7w%y@ +-@ E%yI$I$hlEEyzꪪ AEi~CEa_B@%yXWړ@%yPWO%yHU o$ @%q@U ?l `i@Usl Iab0Im IY!8U $& %I8^ $@9_ O9!8W XҵIAP )q$98W m$9 8U M98 r:9 AҴ 91/ 6`-9@ /h9%) VS9 N :x9E) 5 `~9E) P9i9E) ̈́&9 ph1 #0[9p fH4I1 ")91 m691 ۰ 91/ %&A1 P  i91ࢨ* b!9 4ز-91 $P{ޤ9! ؞ l+֤91 1e) 91`H$I1f1 $91 X[91~ N i9e)_ U& 9E)?ߠ  n9E){ d# ~9E)z  9E)߸ mc79j H9A pSEYH,C sw%y ?B#ZDZ` ɶSA1W_ 0i۶91  m491 91( kۭ-$91 $91 "#D91肪 m91 @ 91. I$@ 91 p!9 8 ؆uK91 I$:1 $2 91 mӶm91 iڵE91 $IH291H$9F1H$91 J>"1A<@ v1  DS9)2B +'yff) )F%GhdEK(n)†_6$b8ee`I$Ie9f)I$1E)ꫪ%AHR1E)/`,I1$! m1E)H$11$!# h H$1!UAm'1!`WU@1߿$=1e?6+1 } `1!~uHA1E)UUMR1E)UUI( 1! Ԗ9E)Rh9E) Ӵ[" 9e)Hd91$I$1f1]m 11pnx)]SnsoOb˪oI'Ƀ'$ qڦ1E)C!Ħ1E) +t$DI1e)*6$i9e) ) 91 I4A9E) ݶv91eI%>& 1!5x IO(>9! X ]!X1 )pUr` 9dF91; D9E)(< 4 i9E)~瀀9l 1! Dd9E)/ Kѵv91 Xm 9e) * [h91 )1& 9E)` 56T9E)>z6 P(H9E) & $%E'H9e)*0 $A2$91( ȅB91` o3#(9$!ro( /?9! ?| & 3S9! hh wcBh1PEi + #(HE%qzꪢyq9\p R @I9 $S91* I$K%99  091 !I$91 * H$A) CjdU91 e; 891? #Hn9e)x*1$!x9!/ Ҹ)9$!J + 'o晴1  mB91 @!@91* L$91  $91/ 91 91* 09@ HH`A9 1BXA NEi +-hI$I$hI$I$hhE%y$E%yꪪk3lE%yt"QE%y_ qE%q 3HE%qU ~BIEiW3EaUö%yXU%yPUb %yHU I?m hq@U O?m Ii8WIbm IaA8WIR۫+HP 8U$mEA@W $@9U `I98U (I?9!8 m$82 >9b` mMЧ9) &9E) | XT9А*  91. 6n49` :4ۖm91 C$i91 i6l91 [-91 &,C9@@ tI$9 !I91 J@$I91& # m09b` mPmH91_ ZK 1 0 uV91$I91I$I$)I) (%1Ap  I91 |m9&& 6c91ȯ d,L5v9e)* +4n9E) &d>0 H1W5waH//4 1Sq%q---+, H2$I91ꮫ IH91ꫪ. M9!6, a91 mmذf91 MҴ 91/ C:R91 I$$91 m$mm91$I291 I$I 91 L$ 91I$9F1 MǤ-91_ II;91 I$LB91 L$$91 tL%91 ۶P$f p@ cIDiA q=6$I9E)~۵ 1E) T)81E)¿$0 9$!b+ o*m9E)J$!91$I@91z2a$V9E)@ p,X!!!'%}Z% b Z$i"A9f1@ "@ M9E)` * JJ a9e) [iA9e) KZ1$!` v Gק9$! HI1$! *O9%)&.k`91 P" M9E) XVlT9E)믿 Dh9%)& NMa9f1 ( I$I9e)$ R]!91k C9$!x( 19!' #"N!H15U7w%qA@ +-D E%y Z#HE%qzꨠ8q)X ۈmÖAX9UUUT ݚbɐ91 * I$A99*:#ӸB T0H9 A  A) Jm91 `<91 Cږ9f1p⋪̆1!`cۆ1! HJp9%) + $Lb:917~{ :̙91 ' DIӄ-9e)@ cl91⨡ m591  p9 $H$91 * m@ `91 X,>!P1P S%q!H )0E%y+$EEyI$I$EEyI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hhHE%y E%yMmE%y #IE%yW* vmE%q ONIEiߢBEiUC%yX_֒@%yP_Ob IEPUo$ @%qHU I' `q@U ۥ l%q8Nbl HY!8WI'MfQ85 'H1pj*X EQ! Ӊv9Ap* a吸A1} mX-A91 Ү͆m91 !@$91+ `B I91 mi 91+ I091* $H$E91 #0I9 ` $Q۶M9E) ** ֶM91 )IF9%) qm91۰X 11 B#I䦍9$!p  $A291 ۦq!9E)*J$IA1 @$I$1f1 i9e) Dj!X1ɛfP-4֡姱ep v9  h 91 ې91 xI9  -91 m׮91? 4Il9e) K91** IB&d291 ִmn91 I@91 91 @$91 I$:1  91* dB291ꊨ  B#ȧ9` VdM9! l/$m9   $I$1f1 RP"<1`` M%Jj9( ҄r*Q9 &@#(9`ObqxE 'F1%wsDZA@  .< AXn>$ p@  mA bڶM1 bj&H1P A$@118$I$B11$I 211x@$$9!I$I$1E) $$I1E)Iݰm1E)I ڶ1E)%[m1! 1E)  1E)H$1e)$ku1 I$$ 1E)I1e)LH$I1E)"I$I$1e)(t+`1E) Ma[$1E)*m&1E) m;N9E) :9A j &mn9}r#11**@, '1 JI1$! I$I$1e) 1e)  H1E)/۶m1 & 1E) I$I$'9#X&m1 $I1E) I1E)+H$I$1e) 1E)$hXf1 I 1E)`[5f1$!z H&I$E)!x}I$IE)!_ m&AIf1!*4H$If1m۶P$1E)WU[ 1E)He)<(@$e)E)H e)E),@!$C&$C"1E)m6,e)!Id&1E)սX %Ie) & mn51E)߷Z$I1E)ZWU@#%f1 `kIb1 * kւ9!cX hܩ}ۧ9!\۰uX lE) [v5Hf' mӶiP1ɠ* iEb(+ * 1R%q-- 2 L{%DZ'.9m"ǹj7mIǹ%q^>vIۃ&*p H֭]eI lE) $[vE)!0$@e)E)X&E) p@$IE)!z^׿M5E)6 `@*1CE)@KB"E)  D)( 2E)!i$IE)+ɖ E) IAe)E) <`H1E)~dB21E)__mۆ51!1me)!p~_mR$Ie)!/lM۶e)E) ($ I1E)k1lhtE1!J5gv YA * 4 1W/ ǩi--+ ;lE `%'NxIl %e9$ l1E)4$1!&"H1!T(,1E)8@m1E)!aI41E)qۦ1E)nM 1e) [׶]7$1e) 6kn91_5ڬ11bH }9$! `\9$!z $eߤ9E) a'91] [+hָ91$ @2)I) mP9e)&a"9%)j meӖQ:j5&u܆E)**+/0` nږ A1H1e) **)9$!j IJ']9E)VKJm1 7TdO9E)$dB11`h:l91h iP17u!w䠆 *~E !91ꪯ 0O91. $F 9e). ,91*. M`9E)жS1%) qC9E) bM91  #H9%) jj C-9e)p* i)9e)k DH&9! & &91* Z%pR:9 i9e) ?4I9!X` t Iф9$! 5 ט %q0+ Ea $M"E%y b#HE%qzꨠNZq)x #)$Y1W}X ̀v91 ( @$MB9]UU &I)9 6m91 ( 0 AA) jn99% O91 BSv91rC οR9$!ja۶mf1$!/ I/9$! vDǀM91 C@r9@ tMh9 ۲m 91* md1!4 ضmٖt91/ I$I$BD! &B#49 `` m!EY!*_dS2%y WPiE@I_EU$EHE u$IE ۶mTEEY%m۶c%Ey:m۶I l%EyI$I$h$EEyI$I$EEyI$I$hI$I$hI$I$hI$I$hI $pI$I$hI$I$h hIH$HE%y* CE%ymmE%y 3ҤE%q*"  Hf%qZ8 I?O| iU 6sHP0a-~: fEzs چex9BE)x.}BE)^ 4Ae9!" %M9%) \&Z 9 ذ mm691 H!$91 I291 I$&91 @J҄%1! 6`I$91^ K^0r9 I$H$91 $4#`9 `` VѦm9e) #@91~+ l%9 8 4I$ 1  $$I&91J1 09wEQH+y9}X-/Ecae pAe) I9E)~V 9e)/l}9E) $iAe){  K9e) IKq89' im S9 #D91x *HV;91W ܴ -91*U ]691 $91+ $Ic9e) mӮ91 Hmm'91W $IL.9%)*(Jo m)9  A:9e)_ 'A$9E) U I"?9$!*WCߦ1  @nI$9$! *Ibۆ1! WD;kۆ9 j+py D$Hf K+.lx)§UeD`>=ǹ p5A1UV\ [u11_]K11w[11ZU K 11W I 11  C211xk$I 9!I$I$9!$1e)H$1E)ֶM!1E)I$$1E) [%&I1 P I1E)I$I$1e)*۶i"1!@jN1A9 ) ('1E)$%v1E)~-Ğ99E)+z $kn9E)5^2c1!@9E)~W%II1 @ TB1 d I14q$I1۰ $I&1E)(($AL$1E)*TA1 &!A$I1e) A$I1 &$1E)$I1E)6 bf10$I2 C21e) L I01e)*@$1E)d$ 1E)d$@I1! m3v$1!^Ud$IE)!\u-IE)!-!A1E)ݭ^@$I1E)z_յI 1E)սR"Ae)aP$f1E)0#Ae) @@$ $I1#  N f1&,$e)E)R#'[: f1 Xihe)ABٶmذ1!*۰dMe)!< IRdL'E)X!B2L$e)$! ?9' ?qX9/Kn۶ E), M%#Ie)Ap֭CA@E)U%vIXA(/ɟyfH/3 y{mEq+5$[ 60)$ܶm%40 DZ?Ҡa"<ǹ @p)Hy$E)!)*M۶mE)@$I$1$A$I2E)! dB%)!I`E)!+>. E)!j$IdH0E)! C$E)!  $C&E)!^i۶ E)!}+!AE)! 6$E)p˶1!5۶me)$!`@e)!P I @E)! E)!  e)! $e)E)<C$@2$9!{>%M$P) 5]{`e b2$%U?ǹe5_3kfe e)WzT,@` 0If1  P1!A6;1! WR5 1!8*}6IRs1.d'q1d$H1!* mڭ1E) mֆ1E) mNܺ9e) @nqk;9e)*Iv1$! -I1E)I$1E)*&)1E) @ອӶ1E) 0 M:1%) Z1E)(6M`1E)y '?- nEqJ -1ˏ懩 mm.91b91n &B-I9e)*" *@I1 >/A9$!` M&1! &I 9%)$LB211 aۮmq'e: %bO'σE AN5:9e) ^ c$LFH9e)" M 91`\6  91* L9Œv9e)^ MᤱK'9E)7^ d w>9$!#y $I9! P 9E) òڰU9E)* k5 9e)kg ڴ9$!' $BS%91J. mo9E) ںJ91/ r=á9!xb 1g92-+/x߆ 5_4 )f,mmEf cE%qj%t2 %yx lL`9UUWp ŚlI$99 * Z8 I9E) a X9' $JA 6ɘ AB99< 6Wm۶99 Ώa91 Ec91b˿ ?:R-9$!zi; f1$! pN?9!*+ CڡC91~ jvh;91? 4.HI9e)@ ͗/&H9 & I&91  91/ Uz9A @n؆m91 6䄢#91 $IS91/ Ң &i91h. d0I9& -Ѻc =9E)*p دcM9bذ M AEU ImeQe zei U?}E WE W0uE ]$q?E_HE  IE MX%a5I$IEUUUm۶Ia%EyI$I$h$I$y $EEym۶m7,EEy* - m%i%;IDZ%y : 1E@$IDZ%q-<1mǹ:$ ,!DZE@; IHDZ%q4#[@h13 hEIjb x  Ae)-WSY9*'SAE)^--OAE)W 6 -9E)/ dm-9$!J ۶m9! Xnm91R($I1 mvl91 mЭ91_/ 1i;H91_+ dN91@$I211 $A91 衄`19A8  I$91 I$I$91* .#!P15 {wwq@//9 qwWnDZ%q-/ -ȿΟ \#H91{ f#T9E) 6jr1A Ix N9E)/? $+I9e)W?B1]߶Be) 4 ilB91 ^ Jn9f1շ~" w91I"@91 n I}'9f1W d;9e)( PB-1 ml1 k6m1E) ? 1! $n 9!_U m 9$!UUl1X $H9$!W ߛ0I9! * Ӷ$I9%)UIi&I9$!$m1$! Vm$y '0 Nw%Q )>/6h鱧uUbA۲hDZ$Q@'ǡEIP1bI$I$11I$I11 $ID1A4ФDzM18 ۦ11VUm6,1@e[l9!Ilضm1E)  9!#41``VI$ 1$!IƤ 91UWLA9ݶM:1E)  lw9E)*_$$9E)W}Ab1!.@vI1! uR$9E)W*i 1e) B#1m1!@TH$I1$!@$I$1E)($1e) $I1e)*mxm1E)H$I1E)I$I$9!$1E)$I1E)*I1E)*I$I$'9#[a۶m1E))ɘ1E)$AB-%e)P$I &1E)m&f1!j^@&mfE)I!E)!W5  f1$!  C1E)WfKTCf1  1E)& $!1!*JMdne)a&ڶMT161E)ꪪI$I$1E) H2L$1E)Ie)E) szMf18H$ 1E)0 1E)^WdH0e)E)Y%pH,"I:E) 1z  %Mۧ9!Xa[&E) ! I1E)}^W mHe!% vb?i8_/"Iwgf0+ 3 yN0%y+ 4,@DZ ;$eDZa0:2mۺǹ?$ 6,ǹ@<p<'ǹ}]@$E)!+nME)!E)! E)! k@$I$!!E)!-"$E)!R*E)! `۶mkE) (( $ E)IIE)!ח   E)!  d@E)!:Ae)$!@E)!f۶E)!.IE)!/ ذE)!@0E) $A!e)$! @$P7@@P!%"m.ۖP`Zݰue1E IJ1!I$I$1e)*BCn$IfAe`*'fE ?1$F W?_% ~ꨂ Nu a$ ; Ie1$$! I1E)H2$% 1E)z*I$ 1E)d@H1E):I $1E)I$1E)* ) RH1E) mۖ1E) Ji1!$$CL$1E)$b1$!"BK@r1*$H1E)I41`۰m֦1e) *I1E) mZ*L9!J*&pwEe +)"4@f !1E) 8*rEW9e)j> @Դq9E) MvXm91׿`9e)j*w-A1%P1ئ1!/ mA9e)*y$E 7'L>1h e @߹ܦi s9E) J vi4m9E) "H[91O ۖj91 s28m9e)ZࠠPlI1! % "J1E) !HH&91l؀91 P 9E) ) sى-9E)_ *C9e) 8u9e)ɋ lƒ91 QJ9e) ( M(琯9!  EVJ9$!( i3A1 41| 73 3@ps%qz*9 ?ǹ%q}W`.On?fI  I.`1UWX` `w;99 * I$I9E) E.m&99 L$91 * A) A۶c99' z5 91 l 91/ 2:9!zhmn1`Svhۆ1! 6h9e) - 1`g391? , 91 $I$91* #ђI91z( KN,91 91 $I$91 M 9@ J9  IB&$C91ꪠ # I9p 8I9E)렀 fv:;91-^ }FA9E)_x ]wu91E)x5ثn1E) ɖ-W9 nWǘ]i91W TAvA1 U IA9UUU C$I9 ` u I9 nA$CΦQ ꪪPa U?% w`%W@SE Amq$fWFm*7! @Fd:2mHDZUUU91кoǹDZ/72@ZMǹ7$$I5DZ`7(`Zcǹfz1 3:e+ǩ%yzxw؃1WX` iTI! uڐ( 9E)^OBE) CAiBE)x$9Aj 1yB$! D 9e) l {91 "9& &i۶91DH$ɐ)I) n691 $IA9E) imv91I.m91u eǢ) 91UߪnͶ 91 PʭAX1!ɛqWP-/BX5@` maI $I$1f1 r,T9 r I9  !$ER91 kk91 !091  $I91V H 91ꪫ @Ǥm91*  91 k m91* maۆu91 II$91? %$IK9$! !$H$I9e)!I$@91 I914Xm11 ؖ6i۶91 ֭591dKJ1e)H0I1f1 ۶m11 H11,@11 $IG9$!%! -76`NNDZ% )-F-߷ `U8b8. ` Iu[ `1e) k11W77i$I1$!$)I I1e)$I$11#a$A1 @$H$ 1 I$I91ݯ I$mm91׿ Ia&91_ H9e) W 6~9E)U11!@ɖ`e) & 1E)^v{1E)߽1% 1E) [ۦ91Umm11$Œ) 1E)РI$I$11訨I$H$9!I$1pIh1E) " $1e) I$I$9!mX$1E)$I1E) I1e)*GJ 1($I!1@$1E)@$I1E)+$$51*`Bm$Kچ1`ۊ&I$E)!xwM$0E) 1ID@1!* @$1E)zWH$I1E)~W 1E)H$I$1E)꾾$@!۰1$!J**ɐH$If1 I$If1$$e)$!@$I1E)^ f1E)I$I$1E)H$1E)j^C$I1E)ZWխ0@e)E) CPt"ICE): ~N&9/ PĹ}1in`E)C:l붡Ie!_75k۶PE)- Iܿ{iHU//}?y{0{ 5 .gI %q+4-@DZ44I$I$%:3<ǹB'm۶m*>N?£͓$ǹpطmfAE)!*I$I$E)! E)!A$I$$!IE)!I$I$E)!.E)! E)$!* @$E)! IE) XemE) :H )($Ie)E)c_݆f[E)!4XِmE)#@"CE)! B@@ )(݆kvE)!(> @E)! PE_%mڤ`Pe dD2P` f1%! 1E)jj&m if1!&$$1!*WډNf1!^-qbSIe)+&ZM1$!"fe %_X݉I'Ee%_O?%$!~ I?Oh!`$I$EA!TI$01E)@$1E)t(E1!޲۰Ͷn1E) $DJ1Iʆ1E)lۖm1E)[ `1E){)dDB1E)M۶,1E)M6i 1E))I$L1E)}~$I 1E)wWeSdž1E)U]k%@Pdž1E)-UmN1E) l}q?5syI ++1`.=.p Z+EiATC1$!p&AĦ1E) 9Z[i91_ !)P91꯵$A`B01f1#$ 1!x[1 'i9$!%Si% 7#HAE `͏> pڰy 59e)*` p(91־ J91+ ^[OX#91x /169E)z`1&p1$! ۀm耥11 8iZ9e) +9' 9$!r ~a9e)/  hK9e) CSmV91r. D9E) ȸ *Jb$p9E)  Iռ{ 9$!7 Vͧ9e) $#ʆA)O!pw{% '2OE -7#M6Iǹ`*2=@Px(ύ䘦1UW~ tI&99 (B%)  (B%) I$H591* !91 * I9!4$ CȤ@v91 ͏91/ cI9E)z ѧ9$!`gmۆ1E)%UU 4A9$!+ g;pl91? >,$Hr9@ nl9b  9A@ ݔ8h9 (B*o 9! AN9E)j 1fa9  $۴ 91 mmi;,91 v%91/[ #Ŏ#.$A1_۹%Y H+/yww7X/++BԯjDZp LN 91H1108@% 1p`6lh91v&X"1P T@i1 $I$11+I$@$91I 91 I$ҭ91II91 öKu91 ڶm9e), I$$A91 9E) I$k 91 $I 1f1$I91۶mk 11I$91AD1 $4DA h1E) 118$I$$11  H11$AI91KXI1&Ad( 9!2J**.F) +-AfR/f+B*E; c5Ώ`.5` t9 k[6118 Z.1 mڤI91߷ VOŧ9. : 99e)*x @&9E)*_ $9E)_U:[1E)~Ddž1E)~^%@tlS1E)^p:d $1 Ӓ$H1Ah $I i9$! @I91H&dB11I11*[ l1E)  $11 ~$I11/I$11 $Hj$9! #I1A`aI11⸍1&$ !1e)*I1e)I$I$9!I$I$1e) @1E)h:m6If1A$I&1E)+z$I:1$!z@4k۶E) `*رDHE)a i$%1!Ia]$1E)$I1E)zI1E)¤j,L1I$H$1E)I$I$1E)L$1E)I$H$9I$I$f1e) H$e)%)I1E)I$I$@!I$I$1e)类 H$1E)z^UI $e)E)v= @'rLf1Aظ o?~ 9- ahا9!%cXKmE), BBHf1jP`EA* $IPE) v떭P1h0 b,. `+9F1( @b8LIǹ!"(61۶ ǹDZj7$$ ǹ*7&9 ǹz+<=X$@rujE9 E) HE)! E)!H$I$%)!^$!@E)+ @%)rI$I$E)!a벬E) ̎[ ڴE)!vIE)!$A$I2E)! I$ E)!( X۶mۦE)!( "-mE)! HE)! E) II$E)!(  $E)!( $ɐE)!A$ HE 'I$ P `@Pe)XVUU$@@e)! 8úm.e)E)8B@$e) WPSvne)!`_5i7E)!5۶-[ e) L$ &f1E)Hf1E)$$ I01E)`IH'1$!^:EaEzR}I?E$ %&lFzm˶! EAe$@ 1E)kdHA`P1$!#[3`1E){*+ r1)ib銵1E)I$1E)  %BH1E)Kڶ1E)Xӵi&1E)*@1e)*Cm1E)C$EJ1E) 0I1E)] #Ȧ1$!xPW[Ǧ9E) UU6a{y /?6N7Wȱ%*=75 p` -ǖbM1%)6iu1E) h(ؔ9e)Š w?9e)'} M2 M91 p691Kk "$91jꫯ RR$9E)Pb( !O忧9E)%5 FjR9E) hC2A2J*pSyFe! )4! N 4,Ph$4b"HXX'_E ɖI&Y) kmݖ99- 9$! I$@291*  99I5 I$H$99 ^B,E291@ mX9!* ,0I9 @ Y 9A E) @ Mvg9 mݒa91 i91 n;R9f1 $ B &9 ́ 1@$ @m1a 91 I$I$91 * 㤩"A9!*@ T9!  91 "i9%)B 9d1! d{91-_x TN9E)z* 9E)^M5v1E) ? w]?9E) ^ #)O9e)- dL 91 $H91 I$`A) I$I$BD! L$I91 m[3,91* !$91 I$A)  Z"p9 "A9!(@ MA9  #mAp - '7PIזfY 4/ȱ44I$I$&81Sm۶ȱ7(I%i@1#;%Qzm׎ Đ  I$IA 091* m91** B# I9AZ Xm9E)?}BE)/BE) OBE)nyBE) FN9E) Zd9 P 4AP15w|w%y0++Bwg1i+k7I "A4͘91*  '9 H$91 f "I91 N"A91* I 09!` -mi9! m6؆m91 o@9E) mT!9E)*IH9 it91M\@9 6$ $I$1f1!I$I)I)I$I$11 4ɘ)91[[ 91_WbD@1(dB2$ 11E@9e)ꪨ!$H91 Iݶ91W mv691 im91 I )I)I$I$1f1 ,)( 1 @s&IY/92tj)Q +?*Rɶg鹧W]qD"#qȹeY`, -' :9e)z $ic9E)W `*m9$!ظ Pºv۶9!P@۴ݶ61E)Iak1E)m[۱;1E) & 9E)_+ ]N$9E)+ 9E) CaMҶ91 hضm91$I 81E)PdH$ 291@$11$11=m1e) I11 I$I$g9*I$I$11Ҧm9!6 $I11=H$ 11 I 11`B&I$9!$1e)H$1E) d$I1E) mۢۺ61E) x)l۶me)! ؂nE)!`M0le)!^vm<(1B,51 *l e) It1E)a&I$1E)I$I$9I$I$1E)I$I1E)*m[1E)+@$I$1e)I$I$1E)@$ 1E) 1E)!I$I1E)mۮE&1E)@$I1E)zݿ$A$e)E)'`THC'E)O1 *#}ۦ1b\1I@E) jf1 PK۶i&Pe!]%d$IX%9IܿEH+/s i/ 7%yr$Aǹ*6$$A?ǹW:#OZAǹ 9"wǹz:"iǹ <G"<@pإ+EA $ &%)*@ن[uE)  E)!H$I$%)!WLH$I$!<` E)8mݺE)! $E)!@$I$E)!zmmfE)!I$I$E)$!E)$! @E)!@$E)!E)!. E)! E)!H E) ,H%)E@PE_ $I$@ XE!"bXD h(!@E)TWUUDB %e)'%-:E)!-ǎe E)!7 CA$RE) E) LH$Ie)E)W\I$Ie)E)`%`6e)@te)-ڤ0E) N f1!U-` 1!/9%!* s7EE  ̯`>f $%IĐ1E)*$1E)*(i1E) mm۶1E)H$I1E)4 mZAf1#I1!۶vM11E)z$"1!BLضfkh1%)*@211$!J$@I$1E)mݚ$1E)O$I1!L1e)"1 9$ j`(&&SIFE +-7,Nȱe(-p姱&,71E)@h1!sR̝n1E)^リWv9E)_mB1E)  `B!11.C%붵9E)z9*I1$!`p"?'džA$ "K' [fe  '5CJǩEzŠ)O'F z $7#xYe&H 9E) ڤ4j9E)(. Ьk91h"4 A1!X` I$1! 5ViI1%)3AM9e)z: 1E)=(9E)rb TB9%)-=  L_(I9%)*٪ h 5i91h Cs;A9e)" k\9E)V e!N9E)/Mݖm91ީ lѦ'1`:/sPk-@IZǹP B0s͍蹧_p3b#@fx+ ~R?fmٺlņq  9$! $099=z L$99WXk I$91 * "I$H91-9A.@&BB m 891 uN;9E)Wzm۶ Ɔ1E)UU\T9 ' 6i>9E) ] S%H1p U^VW9E)* "m۱ 91 91 * жX`91/ !91 I$I$91( C$I91 жX91 !91 )Z !91* H% 9 v:I91W  -91-^ }VJ9E)^ .wu51E)/ ;՚9E)^5 R9E) +w91 1IB&91 !91 I$I$BD! I$BD! k۰m91 %b"9P ma91+ kun91(  m۶m99ֿ ЦK9A(< e 91/6T7vݶf_3PI  4+0SDZ /43 %:2>eM(ǹ/B8(`: ǹx*EOңX긘%%)Z ؆mk$Q ۶mۖa91 @% 9Р a ɐ91* m&mҶ91* I$91 uIf91 3֐I9e)~ Y H9E)ᤴ(B &JBE) lfBe1[ ߊ!X1!{ufP--/<$20@` mI `Ҥ#91_ PHIۺ9$!  ES;91؆mݐm11 ",(m1!@ A$m1 $IM91骪 I$ 91* vkv91 C3- 9!` TH1  I&91  !919F19F191  D&91*[a"(1 @ EI9 8* $*-1@H1 $H)I)",$I1b@I$`1$!6lf11۶a[11\$AL$11xz I11{$IH116Odž '7<iȱ E,&ۖ Z/Jk9/ȹX`im9Am׵]1!$ 1E)W? ۤ9%)_ KN$H9E) qi91 m;lM$91 m6911E)11$f1 $I $11R"$W1 P( MEB91]Vd!1 (I$I$91I$I$1f1$A#91 @`ir9!@$I11I11 ɐ11@$C&11 z^ֶm&1e)  I$1E)H$I1E)/mme1E)/0$m1$! Iح :1E)@$@$1E)I$Ib1E)_ I@1E) B$I1E)`I1E) @$1e)H$I1e)I$`$1E)I$I1E)I$1E)$I$1E)**X$@1&&I$I 1E)$IH21E)/$I1Hf1 $I$@ 1E)*$$L$1E)^I 01E)wx[6f1$!~$I:v f1!^%IPҸ1nۖ1!n9U#f1bHaHE9f!k@blPf)%}n`b("ɟfP/ / yR iq+Nw~)†W-N> f~xF!1M-ׯ;!{Mǹx ;HBǹX HڦFcH(@h$ϓ$DZ $%)!MڭE)*$AE)@$I$%)!zI$I$$!! $I$$!  $e)HA%)$!@$H$E)! $ E)! E).E)!I$I$E)! E)A I$I$E)!HE)!>I$I$E)$!*I$I$1%1E*!I$IPE!% $ P`@@E1E,CR$E)9mE)!IME)!.<$ )(  $e)$!$ɐ e)$! `$E)H'Ihe)x IbRQE) mk1$!+*].݆n1$!jꊨ21$!*) ER1$!Tf1a&@cxX$o5/F$bʊmque9P۱jf1 f;-@1_$m @1U$&1UI$I$1E)着$df1E)ZW 1E)1E)!A$I1E)+m۶1E) 9m1%)t"Hd1E)*6S#1! ``Ŷ ن1E)(A`S1E) + lQ\S%q7,J7wH +->5&$ `(ۏĆ% N?I1!  &@1E)x C I21E)檮n1*DIx1!7@$A11.D 11R8#ɒ4 1!` q;i Gpq$*4K;4I@+=冩N-9$! C!i91z ]ͺd91[&놵1e) r/9!\xbI9!%4nH1%) g6I1E)< )@91n4J Ŧ1E) &9a  JNv91/ 6P)91 $"TW9E)J  9E)? ~Rf9E) $d291?{! '4PJSE -<0os蹧 }?1~>8V蹧Wr @ Ck hȹfz,tPxE!x @!B91  ) 9 N9& ٖvm91 2Hj91@ q۶m91 j.R91 Մ 9 (( 㣭 9E)z vb 1E)UU\p[maE) Iiu9E)+ mC91 zJ91 7W b91 91 M%ۺ 91* dK :91/ 91 -۶m91‚* ܖjH9%) $ht"91? @ 9a  91 @91 I @91_x [91 _ }ՒHA9E)WLuզ1E)$ 1E) dM'9E)/^ lݖ9E)/ 0IX1!$ 6aP9e) A 9! & &- 9!@ AI9 &eƔM91+ P ]f91 h M9A $M A ֶ  MƠM99|\  I9f@/II߆ %6" DZf: @ǹH$>2D蹧8/Eǹ?8+H&+NB?bf1^蠀6 5R=A91 (9b@ 9 $BCm91p $I,9E)` II91 xtI91 > P{u91* ,e[91+. c)"Awo$Y H+*1yS`-++9#hp h&I$A1 k4[۶91 $&@091 Fi69  in`91 vb۴e91_/ tBҒ91_ I$ 91 IP'1 -W`91 zR'98 4e6 91 d$I91+ ֮]a91$I$91$I)I)$I 1f1 `& 9%)X %R@1 P –I9E)( M&i9e)JѦmH1  $H11 %I$ 11zm11I$A11 -91~ 0C011$i"Ȧ1!@$ ly1 i9!B**'WE -;I1DZEc@i&MȹX 3/4` x 9 )i#I91 $IB91H$$)I)I$I$11 I$I91*ɦ1%)@@d虜K1 m69E) &)91j$% 11? JM$I9(I$I$)I)$II21f1(@$11`Hd1(bRI9e)j11 I$I$g9* a"a9!*JyR>1ibغiv1E)+I! 1E)  1E) m6qk 9e)+ }R9!ښ s9$!h01E)\} I&1E)+&I1E)!1E)$I$Ć1!I$I$1e)$1e)*I$I1E)+I$I1E) X%gA1( H$@ 1e)A$I$1E)I $1E)$I$1E)ꪪI$I1E)**!@$1E)h$I1E)x׽Эk61E)?w E)  X!8e)!^7p,Ǝie)!Bܵ1iR$E)!-4a&'e)kv-0,Pe)UU% ŎmX1I{%qH/$}XfH*O}15)%-MWAELi[fޭ6%DZf'73ĶmǹDZ83I`e[ǹ???;H&JǹEy A2<`$@p ;mEA|$! I$I$!@$I$%)!{~I$I$$!!I$I$$!!I$I$$!!$ 2$IE) n$$ %)I$I$!!   E)!E)!E)!E) RR*HE)!E)!nE)! *$!IE)!۶mb%9$j.$IdPE7 "IIP$I$E1E!$E)! \@ E)!/ E)! (j!$@E)! $A2E)!$HmE) ZC'i E)/ I$e) ,:(Ie)!xj4me)  0 Ie)E)D@0 m&1!~te) ^Pk'mf1N If1!UN1I۶iX '//?'79YeAe @ 1E)j@1E)H1$! KL1*Ҍiu$f1$Hf1"  81!*U1$! ;I$I$1E)1!*ٶmۆ 1E)I$H 1E)6`۶Ć1E) mZ1E) -ڂh1E) IB99E) ?ɛ% /??{MrDZa +:k"= pPm%9E*$1!(% ٖt1E)+(T1(4s\;* 1!V*tѧ1!-5I$11$B11.@#i1%)`EE 71As% K341e p``@ R$vA`訨C(9E)YopdJ9E)*HK1E)  11NB'e241 Xr91! 5$I1%)  11$ CF9E)rJ*tPZm;׆1!2  b91 0 91믯 2A4 9e)⊪* ZH$<9e)ʎ HK,V9!*) R4k9E)n˯ bi09E)cê(pSf) ++9irǹfJ+9D$IDZX?$IDZX@D1I4rE:C" %QzI'Ex i۲i9f)B A1dA9   ҭ[ڢ99mڇ I$L9B9UUU^ k۵ɖ91 $C$ A) a,A91 mX9E)*` Z0i9 @B +9(LE)<6 搄N$9E)+U  `59b ' aǎ91/ +)X91 7 &,a9@ A4L9  `91 0t91(+ I$I$91 $C$I91 M 91 0c9P uš9 Z ضnim91(, X `91Š vi'm=91_ lA91` O>?[@9E)| Ĝ9E)- ;焜9E)\- MRw 9A6 jn9 #H1  TA91U ۶mؖm91* I$I$91* I$91 ,-:J9E) @ oF9 .P9  ,49`  @A$B",? %7 kdV$A+4. N83gvȱ߿< &mǹ6!&ih0 3 h%Yz}% 9@ B:9  $'9E) ]ث`91 { f9A 8 I91* 91(. $A$91* Ϗ߆I(e%(/'*<qedȹE-++*ɝE $9@+x91* &@99Ap u˵q9e) {> 9 $vB 91 ɖ$Im91 m٦#91 Hf,91 jђM1!X @æq1 X,91 1f1 ( 0591 <i1` TZL*9 ($91@$)I) $AI$91 $291 11 "@I91 d a$91I$I 1f1@$I1f1 I$IB91 J9 p΀1 ۸i 1  m[D91 v, h91* m'iZ'91W Ӱq;aE*+ /S )C)GI!= 4DZei@% ߆ ,691 kֶ91II$91 ku\ 91W# r+H18  $I91w? F)9! @ k99 (b I 9%))H$ $91$ 9E)*jDIB1 H11*11 h $I9E)I$I$11$I-1@hm1$!m;1%91WU u\8ҧ9E)IR1E)+ l۸659e)/ I&9e) ~ &uܶ9e)h۶m1E)Em[v1E)"Hɴe) LB1E)/1e)I$I$1e)b"m1РI#%f1 P۶ 6,f1@II1"a i1$!@aҶmf1 @$ 1E) $1E)I$I1E)*۶ Æ%f1Pò&M1E)I$1E)]&f1!^ز6MaE)h*ɐkvE) HvmE)!ԟ>aB1E)Um&e1LMI* jv硂PeADII!@-T|4)hU5` &оI ࿫ChrܶEܯ601mDZǩ 53`H$I%9"$B&Iǹ54II%:4m00ǹ bAҠi.1ǹ` f1 ˰֬1E)6`1E)*dB 1E)T[Ӷ1E)>z#2re1$ @.wWEE!*+5,@ H IAEN:P=a1!^pQ1ᤆ1!+%lhW1E)/jqFn1 ̒$I1xsI1?&A1$!,TuF9E)]-۶m1E1`{?Fe 7=$B.EB (ɏ䧡eI41E) +Pem61%) jblH9E)110"I1%)@I$p&1!\xTIO1! VKQ1$! $I,1E)`ц1!@C9! -? T1$!4 $ <)9e)* :9e)- b9E) (yVɧ9e) (01@-veq!'3Ni +-5,DIDZ 52ۺ-ۊDZ>_H$@ǹ%q<6012vMȱ}5 DZ%~2O'E!z mkefi) 489A@` I9 S &X,9 P fn4:91x I$HB&99 &Xc99 7 N&\ 91 l91/ ?Ҷa9!۰01$!QڭӲ1!' V w9$! v$$I$! I @$! $H1@$E)!I$I$E)!B$AE)પI @$)$ Bh H%7 ) IܹyiH/!J,%몊B yEr E)$!  E)! E)!* E)!??E)!@$E)! |VH E)!^- !@$IE)! ذaE) h:I6e)!/"EAmE)!ı$E)!  AIIE)!.d$Ie)$! @E)!$IE)!  @$E)!!IE) B$I9e![Eb8///imME1EIf1!}*!#HI1$! ]mݶ 1E)_Imۆn1E)U]d1$! I$1E) $1E) $1E)I ۺ1E)իnڭ1E)#)Q1$!x%& 1!Z*Os1!VIf1$!*۲1E)*~I@1E)"Ai1!``{6q '5`u0*&mAeɺm1E)*s"5V 1!\`SN:ۆ1! %\$R1E)*8R+5G1!0Z3 N1`'PM8'1-l鍆1 3Ն1!` l1) o%e'2X=%oepb'kQ$ma1$!.deǦ1E) . L$11> i"1@c#,1!hxN$1!55$1E)M!Ц1e)i1E) v1!/ DHI9%)v11.kf91ᅲ ɫ69e)iʮ*6bqx1E)/?j]Ƨ9E) ZE ˆv9B ((y%e)+)EhwE +H/ܘ uVx50[ITDZ,44I$I$&4,DZp4SHh,v>Rfz %p mڴ91 Vla91 # I9 p ٰ l91* $ !99 I$I$A) C@v91 -S 9E)J hB0 9! ϻR 9E)U^z C$@e)E)Xwچ1! @Ma9E) rM$@9$! ɍ?91 mtL91 $I$cR91** Hb 9  u )1b @ 9! ҤR) 9E)X Xmض 91 q 9! &  $91+ I$91ꨪ  ۢm91 +n YBɐC9  Ր@9!'  vj91 w ~Ղ 9e)W &3AE) _}9E)^ 6j>`BE)^ Ρ9E) T9   d 91+  91U $I$91 9$! $H$BD! H$I$91 P9PQ-6i{1S dž0-8%M.ǹ42DZ 44I$I$&4/DZ5@DZfz2OR?f)^ꨀ I$ m lA1 ذ 591 lt91  91" 2H9Օ5 ۶$aA@.*,/6X@i=ܿh [ 91` в91{ C>6i91zx k>9 NM91Wb CI9E)_ IR?mE9E)u~* I$ W9!( Ikb9I$ 1! "h9$!_vk۱ m1E)UUUm$I e)$!$IBe)!紆1 %$mf1!U$&$e)!ؖۖ$e)!H E)!$E)!E)$! !I$IE)!I$If1$!*md-1ڪ m۶# 1E)WUU wm;w H9E)UU m9$!կ y$m9E)UU &A9E)U x,9& ;iI9E) q]i 91 ْmX$91 $ %9E)R&`s% 5@O +-5-Z"20I.1P` SC<xB b mɲ9E) $I2I91 $i1A4I$1f1 m ۶691 \$i9,&$,)1@HI1(!D9e)J*)K$Ѧ1A mN 91U+ 91Uz 0ʺ9A` mے9^k`h1E) m3X9bjn#Ir1 kuۆ1E)  `$1E) $I1E)I$ 1E) $I 1$! I$I$1e)*I$I1e)""$Ix1&$$I1E) I$H1E) A$I$9!I$I$'9#$AҲ1b@4Hf1I1E)1E) 1e) 0k$1E) `$ 1E)/6Ac;1E)/^} Mv$f1!z_H$ $E)!6mE)!~II f1! imöm1E)խ$A"%e1!p#5AK&BP)U%?cib8IBq @/+/ ǡX+4)I E- 4/ADZ44I$I$%63m6mжǹ7$IADZ44I$I$%44I$I$%8" IDZi@8(M۶mǹDKӴMY$( ˃<ȃn[״1E) *($E)A1E)4I9%J<($FE  '"-S3f`(fAf $ I 1E)VS1E)/۰ 1E)P1E)$r8kȆ1!\~h1! -5@ 1e) *ʠN$i1%)$(R20r1$!p`( 9!%$bb1E)@ dMH1E)"!u1E)0<(KŦ1E)X1Y9E)(  I&118Z AZM)h!'72pS/ǩi /-9%s@iTSDZ8 B4#`pT$9بX ʢ`450$IDZ43DZ4(рj03hizꠀE)^p  mA)ۦm$9 ҡK99c I$DB91* I$91* $C A) m997 L91 tI$91/ }Va9E)^ 9E)uVxPp(e)  9E))W u/$9E) @&d9Zz $hJ>9 ` Ih9e) M۶m91* (I9e) I&91 + ۰ ۚn91( ! &I9& d$A91 * I$K691 [nmץ91" $I$91 $A&d$91 #ADR91 ,A91W I$91=W^ kv9E) <= h9 wYA! +K BE)^- >9E)p -9e) k:91W b $+9E)* $IԴ91+ $I9$! ۶ )91* 3 H9` =@ AEa",S -40 Y9 $ڔDZum`c'֫AXzx~n`߫%_: 9%a~y$M>$ I2 C9 4CI@91 QL$I91 ү!X1ɛyEP=--<]Ui8"5ǹ L!91 I0 91 cۤH 91 I$ 91 !$I91 m91+"  ͐91 J9( -Q$i91 N*H#K91 2,9!@ FHpI9 @91 h91* F2I9E)@ $1PA9!  c0I9f1 Ib m91 IĀ91 I׶Xn91  ض691 tB91 vMVg91?* NQ9 6 %9P  jz91< ad9,6 0tc9 9E)J DM!t)9 C [kh91 mۮb91 mۤM91ׯ c2$A9P iцmk%q!7- N9%Q +-6)Tn;: 3I`a@(熩 H$)1b@ Im9E) KI$I1$ 91ꪪ mX&91~0kӶ91U (Ib1! Yu'A91W $KN=1!` \1A`# N9E)Į1E) Il'1E)6Id1E)>n 9e)!I$ 01e)**۰m%1E) 2d %A1&I$I1E)+ I$ 1E)I$I 1e)*Z"p$i1a a51@`ҦmH1A@&1 & $H$11}ݔMP1 6I1E)@$I1E)+ I1E)/I&dB1E)I$I$1e) $I0d$1E) [m1E)IڭX$1E)x^")f1!`j^$I2E)!߷!@ IE)!ߥtlS$E)!-VWI1.'!A$I1E)mۖ&,!P1UUU5n>!PA- gea!H'/wWP^ 0r4i+ 4#)WN - 42!@DZ 44I$I$%44I$I$%8*۴M0"ǹ*N:$MHDZf5/H @DZ844I$I$%44I$I$%44I$I$%>0v`v`????ȃ<ȃ蹧5/$IADZ4-Z4hEz*~R? F1^ꨠsuli$޻isՄ9!( 6i[vB9UU 9!$ 0 I9$! KD9 $A2$I2A)9lb9 3&P h9 p ug91x. N`9$!@M1E)p\]9:Ae) p` f 9E) / e#8 9$!j D9e) $991 $I! 91 91 㶍g9 D %91+  !9$! ' I$I91* X&9! vgǨm91 $I@#91/o $IH91 I91/ [a۶91 *A91U^ `۵91 Wx =HT91X5 ;%9Ap[~^BE)_~BE)_ O`BE)x  o9E) V Nor9!* lB(9ڢ V=;91U^ %&m91 &@ط9 ۆmA1.-%LjLnrFr)ʣp᫪;yH$IǹE593[۶ǹDZ4)X`3 h$yz$I'%)X  PQ \5۸!EA19s)gREQP)W7`%-- ::24@` mMI m!9e) 0A%`9 0`i%91 &a&91 K횴91. Xfw91// (0M91ࢪ C3, 9@@ L 9 $I\9!4 ۊkZt91 I$IBD! )D9, !aI9 dH91ꪪ `@91** I91   91 -1,J91zz  $91 X91 )691  k ۆ 91 "'IH91 H9p a2! 91* HIY9e)$0 291 @;`591袪 #I1`  4M9!(* жIҤ91. m$I91* Ӷq,1a@ J-f9A@: toٶy ;2 Sy -5/2JDZ3Z.1i` 9A@ $Hm9 Dڶ91_U m$Iu91U IĔ91U nIZ;9E) X@k9! [9E) c9j* Yy9!* Ɖv9e) s.'A9E) vIb9` la9E) ضn91ZUU۔I1e)l2 1 ذ؀D`1$I@1E)29 $IڶcB11zU혢H1E)* ۺ1E)@$I$11PWUUR($i1 Id$1E) $ I1E)* A$I1e)*$0R"1 pڶm$h1$!$4zdž1X Y!ɭ1!)$1E)$)"چ1jj۱mE) IŶE)! òmmvE)!M$ A1$!  H$)1 (J#IݔB1a0PCǢP)] H %Y0*mvf (,. X+3qgN E 4,D 44I$I$%44I$I$%44I$I$%43 %=,ǹP4(9HHDZP44I$I$%44I$I$%53$I$C%:3ɏǹ? 0 S?5E**rr+̳0ju6i1E)8 !ْBɦ1e) 63٦1E)('Ul٦1E),skvm&1e)(" lAz\h'?, i --f$9oJʆ-y%kBǫ҆^-r-f`F!-n$蹆 F/-8t p @0}ی=蹧x50"iTIDZ4#@x3 ~B?y%i~0Nںl% D M9$4piBE) CR$E91 A;-91( @3m91  #H9  t916l7 B h &91 F 9E)z 9E)W~u2ͱ1E)^b wL*99$! x Iuas9 %*** Ę=I91Wx I91 w $9A91 J M9 Xm۶m91  91 d E91 4JI9E)  I$I$BD! 9@ m9 0M591 * $@91* I$I91* ðKn91*> `9&( dѐ01P`@  !9! r91W ?km9E)%^OnBE)  BE)n۫/<BA*`  t9E) u`91_ kJ*@9$! vi691~ 2%g9%)@*$Yafj0I9 9 SIX :1urǹ5*DZ5/#DZ 3#@fz,~>bfe!^ꠀnc;x $qH//0 N %y- :h ڶi#4!9e)@ LRH91* )$H9 ݖk99{%W^ #691@ TIA9e)) Mu¶m91( #"9@ [%[ 9Ar d"a91>( L9 4 &ńL$@91+ H91 pdIL918 im91 nIn91 I$I$BD! `91j 0 91 + ذmkm91 H۱M91 Э2`91. ! 91 LƤ#A91 0I 9a  dB& 91 i$H91 K* I9 m3l91~* !91*  91 IH$91 A$I$B$! I$I$B$! 9 ` 7$I9!9 m۰6A!j*$wE -4 Of -4-X <`01//0@ KI(?Ae)  Me9E)U #Ob9E)U 'BE)UObOBE)WU9E) Ƿ]R9E)* Ib9E)տ* [ Z'9e) m91zUUX$In1e)Iv`11u  I11?$I$11I$ 91mm611*: -*i19jm1 I۶m91U(D@1($I2$I11$I$ &11\")dL1E)Ml1E) 1E)*H$H$1E)($阴1E) -K$1E) XӶmۭ1E)D@d$1E);z#%,f1 `pm&%)I$aE)!ڰmE)!> MҤf1$!* AI1E)M$I1E)? $A89 $"mvPb"ݶ `b(' !ɟwg fPս+ 1 r0%q =*6Qȹ/<1+蹧r53$I$%44I$I$%44I$I$%44I$I$%:$(0DZP`=隠)ǹfH@=tIIDZP44I$I$%93m;vfǹ??= HTǹH&>j0ǹY Bmǹ=!:z 3fHz Sl @pzI% X UIb'$P$zI$ 0P$ W OaV I<%axI$I$$) ! $!x !, I$I$$!($LHP$ ' $AH%$дmۂXE j $)$ $dE)+I&d„E)$!@E)H  E)! &L@E)<!I2`$E)!ܾE)!H$E)! I$I E)!޿$E) @E)!E)!ꋮI E)!/˖`fE)($A$ɄE)! $I&E)!,dBE)*HE)!*6 퐤E)  )(A$E)! $ $E)! @ dLP ' ??pE B fE[E) 6 I$m$f1$!7$Ie)!(I$Ie)E)  B e)!۶m)le)!I$ e)E), *Mm`e)!^i&E)xk E) ހE)'R5Iݰe1 "*ڶH-:a1$!ϊMڴY[lf1E)WYA$ɐE)! ( bHRf1$!*گ$IĈ%A!dAbAPf ``LH$ e1E)^A 1E) @1E)~jt$(1  $e)& !Ȑ1E)`m1$!+1`qن1!-5X 1E)i$IÚjf1! r 0q蹧8hHDZP3HE~)E9^ꨀ&m%y!` " JA) $(B%) K5֮91 I$91 *  I 9f1& p X9 %h9 M=@91 DԜ9` B9A 阜}9E)^x9w1E)p% R+>9E)+^ Z;s9E) v8k,91=W\ ay91% m۴ؚa91 91* C۶m91 I-I91 鶭91 91 *"/ $I$BD! 91 M91 dSt(91 91* 091 vKm91( Cm[91 IB'( 91_~( `u 91- Z891U mzf9A 8 Ӳc @9AbmNoBe) BE)O@BE) VI9E)* c+L.91-U Ox4I9&& Yo*H9B +O$$w4  JfY 8.\J%Cǹ: XPǹ0 <A)ADZX 4"bh. 3 hi~%- `*=qV.Qn/,ǡ 06@9 @ P9 ֶI91 (@91 $lV91 " 0i9$!& $C$91* H9!( kaA) !C$@BD! I$@BD! BD! I$BD! !$I$91 iФ9! 6 99WUu| $I$C91 AɔC9 I$IBD! $9  ;-99UWT $I$91 I$I$91*  I$I$91 ( @$I9E) I$I$91 I$I$91* I$I$BD! I$I$91 91 $91 X&91* `[ӵ91( ]Sl91{ [91 kצ۶91 M91 I Ea!.pSyfE9 +4&D :Zf$h%Y` ,?熙$v `yA$!+}]rBE)U N~H9E)W* n59A*` @9 ڱm91^UNt1i 1e)!11)I$I$g9*6J"9!JJ4Hw1)I$11zd*!9 ((&IH1  #j9 b$Hi9 K0`1e)(X۴11*xU[$I11`W Mm11U- $I$11hm۶m11z۴) m9E)jʨH1 H$I @1$! 0&1E)_)$M'1!^&I$E)!pWI!E)!W NBZ QE) m:!1!@$7If1  $I%f1PiK 1I)5pڂP15,-G` j wE@ - a+;yIr ȱE 9.yْވw蹧44I$I$&>29蹧@1-w蹧c-51IDZ 44I$I$%44I$I$%93)ضc;ǹ<(XFǹa8:M$IDZf44I$I$%53d@2$I%< a",ǹ@@>I$pu m$9Z$$fW*tI$f%W' @9$W@_-{.իhUU1߭Mr衣Pժ*'m hfY_Im HEHU?ly Zm۶`$X@H!P6!$Id@P% - I$A"P$ ÂMP @I$I$$)$!qI$I$$!! $%) c %). I$I$$! ( $I$A%)6*@$IE)!ZV[fE)( $E)!˫II$E)+LB$@0E)A* E)!{ HE)!/@IE) > E)!)@E)!*E)!: H$E)!H E)!E)!*I$ $E)$! $$I2E) @E)!A$I$E)!*$I$IE)!  E9E:j*yx%$! +)-%Z"0(EP`EE R(Ae)0I$@!۶mˆmE)! aHE) &If1!#_UMNle) I&$e)!$Ð$f1E)$)D+e)$! m6he) آ#e) )\1mԤe)( $e)E)`1$!梪IH&$e)$!*nM׶$9E:PP@ @f1E)zﺪ A$ e)E)78$1$!*")BJ1!r`,8 f1!Zˈ@!f1! %1E)[-۶1$!pŠ()I$f1$! /nhe1E) dB&1E)Z f1!'j"IdHf1$!J+T8h1($`$ f1E)^Zkj?%e'3&rEE `ߎEeNxf1!5TXH%i۶1E)ӫ"%Q`(1E)+RQ1!( If1!>;I$I$1E)*H@$1E)*#*,A1!`hȀ Ć1!%5L$01E)*@Rf1! x[&P! $NkAPf)Uvi`A mݐhe!z){%e .71uR4QDZf-)W@B)hjK6HT 蹂XI#Ö# )†_l$~njʆ%W{ jgKlWw†I.Sbk)zH0c UVx50Z-iIDZ 4 /)@6 mDZHO?%)Z  $fQ) I$A9UUU^ 2I$99 I&Eӵ91 @@$)910* A) a;m997_# C@91 aǺb+9e)! CA691/ }"(H9E)Wz N9E)%W~ ڔ9E)\% pɽ'9E) \ ?9E) qت#915U\ jJ$917U m[Мa91 I$I$91 91 I&91 KN 91+ 91 I$I$B$! I I$BD! Km۰m91* R' 9(& @$I&91 @91*" @$H91( $!I91 #A$91x* i=;&I91^ `۵-91-U $-I9$! l@r9!H 鐶 @9 vSSB1UW7B1WU ]N9E) ސu l91+U_ MI:91U_)a߿f%62NtE/'<TmVnǹf*:mǹ :)۲m9ǹj*8+# rǹ{9 $IҀFDZ%y*;(.,@ xpmI !)A918 K9e)( 5؊ 91. i$ɘ91, t,,91 )Hd91 &mH91  nۖ91 k4 91 ֵۂb91 "At Q91.( vMm91*. nm۴91* Mgw91 / p 9 H۶m۶91 ۰qc591*z hp9  II$91 X @4I91* ضuk 91 ۰]91j ؖnI$91 @!91 $L91" @$I 91 I;IH91޺ k6m91 6$91 Mu 91+ L 91 ILB&91( !I$91 ** 9 && $I91. I$A 91 mf]a91 $IR"!%91(a '1 ` Sy -4.<` DZ3#1 I p` :9A  DNl91_U ض%91^Uջ-CN@9!j*1E)#I$I$)I)I$I$11I$I$11$11@ 9!*$m1z.f I1 0 $A91껺$IT1 &!H$I9%)Ca[۶91Wm41! C$11~`ضm115@$I$11 [=6A1p m:91߽zW tu1 Km&1E)h&1E)~_I6$1!W $I$E)!xm۶mE)!_5ImE)! &Ii 1/ 1E)  \&d 1aа qY9E!*(й;P!_ ~|fIAH߷%yH 5/ȱX*8rME+ 5)qM@=Gb!@ǹY(?/a蹆?A4IR*tǹP ;2E\߈Mǹ72k.m׶DZ?0~a蹧X792ۈ-ȹz44I$I$%43%:3G<ǹ#43%44I$I$%5/&" DZAR"h$ǹPm;1$!! $!'j1$Ib$9 MRCm%9V %$$f-W8x|I$%U9&$W;s)rW(-=$+hǹEy' f0z$^m۶i H$-!I$I$PE`[$MHP @!  I$I$$!!$E)+H ! 3I$I$$!!ۿ I$I$$!! I$I$$!!   $E)!  E)! AB&%)(r!H%) $E)!~$C&LE)!0HE)`'$E) ( E)!$E)!H$I$$!! maݶmE)j @E)!E)0 $E) KtövE)-(I$ E)!" E)!DRR,E)!PI ME)!vaw~yE')d S` -)z= p" B%9%[mk E)! ( E)$!@ E)!E)!IE)!I$e)! $I0E)!/_ me)! WIe)! ,e)$!#@e) X E). [E))؆ e)$!H$@$Pf?;À$!{k+ mweYE He)E) 0 ۺh:lE)!! $Ie)R%hZff1!%Cf1b4Mk1!(H 1E)H$ 1!ɐde)!* f1E)j뭧$BHe)!8m۶ f1! $!1E)$C$C21E)*nAvBe1!/\?%f 7r.0XEE@2weaE dIdKf1 ! 1E)  F1$!B8I$H&1$!$HJ1$! 1E)$EEF1E(**=MQ W+'h㶂P)UH1EX)I$X*~&AIC` ^-loYe`WEf1!"p?e0 dH*:!0Nޖǹ *:0lpȹUM1')§/WJ0hB)^ܠ HkFiisbe?jfp7_b!_Jʆ\?%,0r蹆 G0-d \`-C.}۾ 蹧X6+l=P2#@Ez+ IR'cEE1zꠀ-ٶN p1UWx )IXA)& $IA) Xm۶&91 m׶k391* 规m9A( H$H$A) &ضc99  k,91 1e۴91/ "hv91h/ O> h9E)W~ Ĝ~Z9%)- e}9E)^- v+9E) \ -&t9E)/ q:#@91}X 91 W $)O91 I$I$B$! A$I$91( h91~ ЦX`91 91 ? p 9 !I$91* -& 9@  9A  $ 91 ж91(  I$91 I$I91 $I$19%)" ` Z#h4I91z vܺ&I91߀ ص91-__ rn\'91/]_ 91~ U -P%1P ۶r]<9A`Il1E) 1e) l6w[fQ j- ĆE %:h FDZ@ :(!( ǹ@@;v(MǹfA(;H$iDZEy=#4"***J<'fI$I$$!!@!@$@!x@$I!*@!( I$I$!( $!I$I$!>.`۶9! UUULBm$9V5i$ɓ$)U9VI<)U. i$)U"_P$E`UM;C'P  !' !I$I$d!d @$H!<I$I$d!d H!8! I$I$$!!`& $AdH%) "I$C2%)jbH„ $!6  I2$IE)!gÚmbE)!m%KE)ZVl]nE) *  E)!$I$E)!$ILHE)* E)!H@E)!6 HE)*`E)?(I$I$E)!ۺ-۰E)$EA2E)HIE)! E)!+$IE)!+) #IE) 1w%E '+DAE -*L&솩E `DHEA$ۖ$ME1tIE)WðnI$E)~ ݖ$E) E)! $e)! X 4@ E)p M`,If1!UW\` Me)  @be) I&I$f1E)Zt(9( E)<RD)RE)!ңȊúP?/'w%yP=---.|=2膩EpBIQe9E[m`e)!"AS IE)k![mf1!.>H 9e)!pc҆1!5^}i Hf1!!2)f1!$-۠#e)!:0ҡf1!*A@e)$!$ $I2e)E)`C@$e)E)  ۶lVl1$! -r,1$!غɖf9$!/!EE )7p9BfE `@0[9E۰mɆe1$)*H$Ie1!-Б,eAE!_{}d 6ģHe!_ InP)U (@mMmPf)n"P  PE 赿 LHEA!pn]df1e! (ۚm؆m1E)JF1:ITo1$! HI$J1E)* qWe+)= TRȱ%y* @-#֯ 蹦92ܯȱjI1Iwr %]L-S)§`-N-Op2w?蹧>1M81[蹧r771$Izȱ54I$I$%B&$Id蹆7i-6#$)JjbP ۰=$9I$I$d!d  ! I$I$! !*  $!_!(H$H$!nhzZI !)+  !  ! @$@$!`pX ! )$I$9!UU$@$Ʉ)I$H!<,!I$I$$!!zz$@$! ! I$I$$!   !%)I$I$$!! $$!@I%)X7 %)!en$%)( $B&LE)x I C%)-H$E)!ZI$I$$!($!I$!  E)!$H0E)(j $ "%)' E)!.I$I$E)$!*CE)$LE).&!IE)!-I$I$E)$! *! E) ( @ $E)!Id$E)!AҶc;A$ j+ɝf( /YU$%q jO$kf$W& Ӳ$@EI$b0E)UW*`8E!U{I&nE)hfimE) @$Ðe)! jmAn1!q@`E) P$`"E)/؀P鐤e)@5ݖe)! J$RE) K:]P'/?'wq'E zؓEX۰E)((H$e)E) dB2 Ie)!$ E)! )BR1jPlP%e) #!e) '$@$e)$!(Be)$!II$E)!* +.m۰e)!0e)E)ˈ(J$e)! i֥1$! ;j$mf1!ؠ f1!2`mE9e B*OEe ':`F8xxE mk-A`E1IR:mYa(P4 Heziݖ P~[;)E9ܫl1$!ʏ >IDNf1/7@$ 1e)訪!I$@1!>iI1E)N$p"&1!\XZeH1$!<*# I1E) :dHr`''47q1WDZi-%I*ZI)†G-p^ }\=2ۧ1蹧?;19ȹ^K9mAP`N-uǹZ5i$G%i(b'ϟkʦU] m0ajp*`c`)q8iHDZ%q/3̧i?z @ _)Za $ 9E)@ $IC9 9E) nm91 0H91 [mنmA) I$99B- -I91 nA1 #Զ91x ~ H9E)W~ ~A$!/>AE)X5nύBE)x 9 &. I:Z91U^+ 䘶#:91 Ux &h`91/ ۶hI91  ɒ9E)@8 1F@9 i$i9& X `91+  L29E)j 8-! 9A@ CH9!  $I$91 h:`۶m91 Iǒ$ 91 $M91 `-91 mۭŚ91‚ 2m$I91B $HI9%) ( mڶ91 r"AD91~ 6 91z" .9 ǎ 91 Uu `Y(J()`wE%3 O0 > *QJ GI  _? 9E)UW(1$!Ilۉ@1!@&)$E)`,$1! LI$9E)UUU ׶Ir9E)UU 4i9! 49E) U 6m$9$!W &ܖ9$! i$$9E)U (I9E) -Ж9E)  iu$91 N"d91_ -im91* M91 $ K֤9  $m%9 vBnF91 I HH91 ) :91_ +I9e) I9E) & m'9E) W @9E) 0'9$!_ f9E) ֒k9E) @ί9E) UbG'-h1E)(^c'$ɦ1E)x_ ec֧9jqlp؄f18* I9E)u )1! R 9%)}& u&9$! OLV m9E)պ O; f9e)/v% /?1OP7.ΩrDZ +3#1 h p` $IjI $Hbd1H$I$91$I$@&1f1۶Xd11۶I[`91L$!H11I11I$I$g9*01E)` nn'@91 $YNH91W Ͷm91xUUk$Ia11XUm[9e)UK~9A %c1 P5I$1E)^UWL$I1E)WUUvl&f1$! q]mW9E)u InDm9A #L$I9 #I8(1@ , Ęn9A  vM'P1UU &mbX9խ Nk%iHW+ɟKfPA%Y ` :q[nAǹF:-iARȱyڽJ2 §5Y4£X RImGh8S#)† W" =Jʆx5C$ck9蹆J0RcOf?)§_L.hI §]\ =%$lxǹ.4:`$IDZH @1Xm蹧 7In¶Ii Akȹ@ &92c۹ǹ>1e?蹧r7_M$I1%:_'5}Iʆ `C`.H$DZ! !*($@$!I$I$!   !€!!@ $!I$I$!a,&! I$I$$!!/ @$! HI!7%%I$I$E)I$I$d!d @$@$!pPP !I$I$$!(( $! H !8'  !JJ!@$I$!𸾷$!I$I$$!!0@$H!b,!2$! @E)cڞ E)$@LE)  I2d„$!  $!. @$E)!z C&$!MdZ%)%E)!0E)!*zHLE)I$ E)!嫪E)  & E)!nH$E)!ªA$I$!!IE) $ &b(%!WUU- $E) vaI$Y'UNfq(*Uhm'jʆXW]5$)oDZ+9'%Riǹ+);b$DZP 9R3I DZP`5죱Ez% Hlsbp)\ !(I9 a9! &X"L9 M;A91 Jq91 + $ 99% $ !IA) HG h9 ͯX91 w991 91h/ +h9E)_|SBE)WMB!/AE)^ Tv9E)*? xNA9!&& @$9 P p6ƒ9!( ڦmW91- $C$ 91ꊪ 4B%9 P ] H591  4 91*  91 l91 $91 I$I$BD! I$I$91 ** 2`m91 n֓L91 6eǢ) 91 $ڶl9E) lݐ91+ $ 91ꪀ @ $-191" @9A  91 [ ֵ91 " 5&A`9<}衂P f34>)E jbz "ګI1TV~ PuL91U_ Vc;91+uuJI9 <6% @9 ` iiTn9E) Bj$9E)U I޶9$!* I$ 9E)UU( 'c 9E)UU M 9E)UU_$Im1E)uUUl;M1A(,vlRI A1!B$ 2e)E)`km+ִE)!d@E)!-I e)!v,I@1!LD@e)(v"@E)I$$e)! imЭ1E)[m1E) a1E)U~6a$1E)%WUM 6ˆ1E)| =-'ba1 R;N1E)%( $7?k-9$!~ j-% 9ػ* b @9E)U un09E)_ nI$9  H9E)+ -Gɖ9A  @91/U  d&9 X Mt#Yn1a6 X6mi91^Uur,%@1Itm91Ui۶m1@"WE) -4 DZf 4- 0*aDZh/̏0 p` z I)M9! &%91ݽII11 ?91 ` !HtM1 $I$91 I$ 091 l k91+rU 6I$91 ~UU ض[A91^Uի mw:91UV u$9e)+j۶c'1E)~HP$Ie) $$I$1E){UUdB$1E)UUvlI 1E)խI$$@9E) $7 ط1! .L89 ( 1rh1   nA1_ B3@1U5 /ۂ`ϛvaH IwU ePU/ 8I.Gaȩiս*DW K蹁H' J*O" †(L x%y( F0`~X<.-Uʬȱ*:@1~n:蹧_7MI鶍P R"-Y B8gN?DZE 0}SkB£P 'K"ohl†D-MǹP@K\ E*E1 鹧\54I$I$&725m۶ǹ?HL)(DRe@ *:HIDZH:3ǹ?/=$IBDZH DdmJ"fyJ?qEa!  E)H$I$!I !J !""!"@$H$!jzII! ! H!b @$!`pX ! ! ! HI!ܔ7%H!<@$!`$H$!@` ! !( @$!@`X ! I$I$) r @$)^ (m )} @$) $)/  $$)) 2 C&$! !E1b.IHE L$ $H$LȀ$)/E)$!. &%)xd„ %)% !@%)!  $E) *z붭Z$E) r E)!$A E) *``$%! x $I$)!I$I$ aI$I$Aw*I$I bU_?I0 %)bH&Y&%)lsj;E1LH$H%)Iڤm;$%)I4%)i. %$)Ë M4$9/&T$I -I2ך*QE!`mXE pA$)EL@E)!6,XE) )K&E) /P  GbxE I!IE)!""@ E)!dB2$ E)!xc$ $E)  we)E)@+tC3 E) `@0 ٖme) ("H E)!  RL9E)츰b"!DHE)e)!#" X e) /. ɐ`He)E)$IdHe)$! 6me)! jnnie)!H e)E) #mdK$e)!.<DB Pe7'? ** z+Pɓ'P}pޚn9%!"e)E)"1Lf1!`aeE) "*0l۶-e)!QMІ1!TB8#)f1!RrbHdKdf1 / I$ 1E)>I$I$1E)"M1!jʨ lI1!u1E)$I$A21E)+6exE!))6 NDZ%y+ -C0,'蹧*]I.ξm xG/vl5Fl࿭5.5DL&5DZ 5"l3DZuYoug IF߯ a0iI% T(pǹE!p=`I'EX2JfAeHJ*0hfe "K`{v%y /K% L †%;@Xf*L-Oa)§b5_I.M wVb53$I &51#A$IDZ?1je?蹧r7_=1=蹧r;L!ǹ HA")CS<ǹ@@`r-۰#$A! !I$I$![ I! .! !( I$I$!w^V ! "I$I$!@!8> HI!ܖ65!d!d  @$!@`p ! $!!/$ILB"!0H !% !I$I$$!!ֶMH$I! I$I$8$ z&$H ' I$iXH I[q@XX NB @PVIb;;Hh$_Iĭ-AX$UN$ PvImvP$% IwiH/$DE^ϟ x$6PE ]IPU-JIPU(m6:lPEUmrZP$u(  @%U@"I$$)A~H$I$(AI$I$A;*I$I$ A II%).a0 "$! q00iE)d*k:qB%9m ~BfA uUW*ɓ$  AUI$O"l_cI'I&jax EAa 븵E1 I2 %)K4M!%)JSIZ?EI+z iNEaE) - N> @$aEN aE @I$e1$!@E) pv( X o$ED E)! ۰[mE)`E)! LH&d2E) p@!E)!  E)!" H$E)!/>H$E)!+""%E)! E) $I!e)E)*)ЦLE)!i!hKE)! 0E)! H$A$E)! E)I$I$e)E)3X E)@!APe @Pز۶me)$!@JdKe) !H$@e)E)  Em1E)[L$H$e)!v[me)!A$I$e)E)Ңve)!qa[vlf1/?-1f1!`$C I1E)1E)X E)/.8$1$!&$I2 C1E)o 1Xf!'727s9Wi----A,y蹧X5U>+ej+0ȹ`5-FTIDZ9(ö[&ǹ^6"b_MDZf:WT0If% Y1mIF`5 M4%y()5+1a @DZ-5*xDZX5- $IDZǩ 54@$I$%43I%50KfC%5/X&iDZ40X$I5-3I$駱3%Ր~ 2 C h%y^)Rc mX_?l A8~Ah9Wx*l!X9_U^ ۲U-99ꪺ &9!ɠ I9E) 91 ,9@ 0a9! c[0q9e) ۢ-91 91 u"r9E)* Sۣ-9$!zSnBE)-UO:BE)Wx t"9E)\ d$9E)+W +9E) vP=A91p 䘶91u~ &A1g91-_ ۶m 91 mڶm 91 091ꪪ [ ݶm91* Ѣ@K91{ &I&-I91 dSN 91 !91" 91 I$I$B$! I$I$BD! II$91 * I &I9 ' N,Q A):P%QP1y7qoi=--۷ڦy h&m9 h@n9 ؐ "ER`L91 dLRDS91 h$Ү91 %m91/ $RI9pp ֊91ü %I I9E)6 *  Hm9e)(( ۆZK [9 (( &M91. $)Ħ1! CIX91 -I$ 91 M@91U &L9 (( NRдm91 IRۂ&91U Ib@9f1U Ib@Q9f1U IbI91U  91* H A9 uܖI91U vB I91] ! H$91 )IH91ժ !CL$91 mV`91 II$91 p$MI9e) ֭t91+ $A,T1$@$ 091 iv[;91/ OT$I9&&I$@$91 " 4阧91`mt11,еi11`$a91I91u 6c $J91}y$y! '1 >TH/'4+(@i9ۣ1 ` p@ 0aI Zm۱[ 91~UU m91Uիz 7$9e) I$9E)i۶m'1E) IL$1E)_$Ie)E)x^ ۶zKe)  I I1E)U* I$ 9E) Ilw9E) !L$91WU H 9.6 w m91U 1%He91-+ Iئ9  *$}AP1UHҔeIEIHxI'vM%y0_*y %y8)nIaa59rvAǹfG-bz [uHۦMB1蹧b51$IDZ=(D:_?Iġ'ȹ`#H$`B2$C2f9e)YB18& 7{h '/<drtǩa8  < %2nǹJ O[D`)C!r 蹆L,)‡'H0()§wVza51IDZ 54 $I$&<1)ڷc蹧BiXDZX$@Bp$ǹ C$I)!TWUU! @$H$!hI$I$!@!0$! @$!I$I$!׷I!+ !  !@`I!' !H$ !,H$H!؜5@!b !@$@$!`pP ! I$I$$!!}]$@$!Р`I$!H_'  I$IP$ ɟEHU/k<&E Xس'EpD&L„)b(IB$I1U A !$Y$IH%_$mI$U?`$]OE W0ԶIU$I$EU 'y_$$y$*Uo$%UmEbۧfH :`:%Y`hI$I$ bVI$I!b׿*(I$I)" I!8%I/P5y驢_%I$I_y$&AU*I$$HW}I䘤mU`^_6-Xku' q ⭽jW,A jb..N0I ^I$k"x ўEAwvE1m/Mk%)'| q?eA-y wfi +ђ6Ey$ `s=%y$ pC5mvE1!r.8LIPE!^c,b,%$bbbbk6hE9E)VTTTI$I$e)$!*d@$IE)!: *H$H$E)!$ E) &<(IE)!dB2 E)!Ȉ! E)!# E)!+H M1e)H$e)E)GfVI$Ie)!/_ndE)!4A HE)!( IE)! *>@E)!( He)U5mnePf`$@ E)E e)E)-4!Gr$E)88۰ ۶le)! $I$e)E)(( X@ e)ࠠdIdCE) I$I$e)E) ۰ ۶te)!,؈ E)!TT\4AEkĆ1!S@@1E) 1E)zkkh&[2$e)!PPPذ Cle)! #H@f1E):weWQ?oZdfA(* 76$d r )4)H@DZ4 4lX.DZfjM Nxf+T@U@ 5)aP"OP ߵ)F5(vw.@DZ+ 5+8DZp5*?qDZ`%8.1Ylǹ.83Iĉ=ǹDZ]50$AB3DZǩ50hWIDZǩ0 43%54I$I%40@" DZǩ50IDZǩ40QDZ40#ђDZ5(3$ȧ0#Jf訪( }RP%yWCX͖fbHz7n-hqb8 8 `9UUx B6I9!  m591 ;91+. Ŷd91* ݖ˶A) @&S99= P3@۴m91 C:91 I&91 h#Aж91|/ 6I9E)_ v9E) _ KIi'9E)_ 61E) Pڦ1 dm?9e)  l 9E) I$C91Ux $I"&91 FAqi91U ۦs91 I$LB 91 91ꪪ I$I$B$! ۺaM91 $ 91 dH&dH91 vi91 k91  u91* (,-AX9Օ5 oofhb */.h^1f JBb Fm&rI I$I$BD! $"a9$!(@ vj1`9   m:$ 91( M9  $$IB91* $ I91 h1li۶91 PBѶd91  #L9E)*( `S 91 &%#I9 P hXII9! eJD 91+* K 91 ظdl9f1 d9, 91 I$I$BD! lMҶ91 P,ݶm91X ! !I91* 91 mڶ91 n:91 &59 `b ц91郸 ź591 dH&91 )91  ik:91 (%3i1 p "am)Y91< ' 9$!( ֦m91߯ M$I91 ۶m9& I91* N h9E) 6@91 @H$91 9F1@$I)I) I$L&91$C$$9@("w% /'8 bDZ%qJB$Vi%y Bӳ1DZp@ H۳Af I$ 21E)$1E)$If1E)I1E)mIf1 $ IIIA9E) ms691U~ q'hul;91W_ lǶm 91WU+ mI91U E%91 6MA1 $ 'AP1UU 6P1/cm `@*[%yPU &s. f8 4r4i+5e $Ek ;=,ǹ%i; ǹǹ%q%u; 4@ǹ%y H/)t~: }E1t,k[ ỈZ%P PDVmFMǹP? 4* ǹP`E/§\KG85h$`X1pCEA$aKE)a $C$2f1E)i!ɐ1E)A$%eA$:*z,{`-E!@iAWf -H&l㲫 z︠G tLf??!/fG-Av&f*L/!)§^C2Ϗ蹧53$I2$ &HqdEvf6*:=H 1@ PX'7-ŧaJ,p4%' QX)fxA!Krȹ%y諩*5$)EDZ+ 5*çDZP94A$DZT>MsDZEI-<)4@fjj9H$IDZi50AnDZ 44I$I$%50$I5DZǩ50:MIDZǩ.504I4IDZǩ 42%63m۶m%6( @ZDZp4;Sd?>DZf.z,秩EyxV(*e)! "Mf1j!hiKE)  @e)!؆56le)!f`E (pk-P 7CewBP  H(,ۻ%@4m4%q5)@ DZ5*oDZX7$4B/@DZi``AH$K$ǹI"m%9U$$ W<I䧱_; I$ǹ=H.$ǹ :ڴIwEq=.m۶]41-DZ 5'9DZ6&>DZ7{1%`:ڧi&O'Ey`^U. mWn%q/+39WJ7 F- 5&}l@DZ/4-u3+3mS x73ǹz- (%q(]#8hۘs p1W~ Mh9UUU\ ؤ[L9( N׸hm91*. e 1M:91 ͶvA) m6lA) @$99/ #A$IJ91 m:I91 cµ$ l9 P L91 %DnB m۶Z%9!PmvL؆1E)$1E)I$1E)m6I$1E)*U p9E) :$9E) m9E) R;91UU 1 I9j  ]ǖ9! q1A $ =T9A& YڶmRl91" ZhbX9(wwq0/++* mٲ91 d 91 km91 Mdئm91 xkM91 DǴq91ޠ N9w9( 0]u91 #9 b $hn9e) $91  H$91/ &0B#9` ` 9E)  $-"a9b@ p$L9 I$I$BD! "! I91@H" 9#49 ` 4ID@9E)! $I&L91 @$91* IT91% (ْ#A91x $A$A9E)  91" @$I91* tp9 ذ m&i691  !$91 Xm91 %91" 1 9& $ 91 @91 MNZw91׿ ֤Mm91ߪ$ (1@ J9 ` Irr9E)* ma-l91 "9A@ Tmj9!  $I2)I) ڶmR91 m;691 $mL:9E)`z~y! '8 N7DZq +/7.b[.nȹWy3 hExࠀ#% x Q kLk&9 OnsȖA1U  I,$A1_5  @hX9UU- m!X9_- $YH O޺m+%i0ߪ m A%i!8IK EPU%I.7 `U/ r$%yկ*4y[n f :4e%DZEy070!"[ȹ83N qlȱ43 %9 AǹEy$$:2wpǹF&`hȹi;2u;q~ȹB?ǹ%qX> r.ǹ%q_\;  ?ǹ%i }E 9ǹbOX$ɓ$p.]ue1 A(tEE)!#@  E)!L$`B&E)!dDe) Ie)h1ne1!  `e! %/ Sq --9"EIǹ""B11 -]H0u %j P-9!b*DZf9@mᏠDZ8$DZf *L[P@Q޲134B@``n<۰=$A!_VTV! @$!I$I$! !!@ @$!I$I$! !‚ ! @$! I! // !d !8*H$I!\>! ! 0@$H!X؜4$C2$AP   I$IH ɟ9ay8/ &h7Nyj $I1HI !6'@$! $! !*@!@$H$!p^!IHH$!.,I$I$! I$I$$!!$ AI$I$$!!@$H$! $!+$$!xH! $ $! @H$I$$!I$I$ A/+ItIZ`%)/I&AE) "@$Se1 'kn;?㐆io0@  {ӭ3z (vyB.7 }za.⫻ʸRa AK:k͋N嵐ɔɶ9NĞlINw֬̏PhɕNꐟĐ.(Uû>.{k:̉~ [MN<ZȄ'^^O.U]drCǭJ|?%ڦkE) ޺њ'e9!5]RwE1 +-Pn.q-3>f^j5]C5D34$ bbb`;E9$!||$@$E)!5I$I$E)$!E)!0E)h[-E)rh@E)"#E) / HE)!E E)!#@$@ E)!RrZ@ E)!"CE)"IH$E)!I$I$E)$!(E)!J @@PE'' EӭۺnPeC$IE)!@ 0E) +B"$E)! I$I$E)$! !IBE)!)+ Ae)$! e)E);I$M$E)$I$E)!H BE)!@ !HE)!@ 6eXe)*+*/BE)! I$I$e)E)(8 kv[ue)!<  IE)..D$@E)!2I$I$e)E)«4@bP!'29S?a%--; â=>ǹ%qbp4!z0DZ 4+$A &DZ@X5*ߧ9DZX׭4.:n[kDZǩ 7/v㷥Vǹ;=J$K<DZ@! 4 I$I$$!!I$I$E) I$)7$9@I$9U'1$$)W<I$W34Aɝ$W*(l܆*?q EyW'3 gKJ$[%q <6 =0@DZf 5+!DZ 40 FDZǩ(60841ǹǩ/7 I"DZ J;ADZ8&9/w ǹ4(1IE~*OR?c f%A~}۾>9UWx Ml貦A)' &(9 PNg98 M 91+ $A3x91. Ӻ%3A9p m91  ]Ѷm99+ #@۴q91 :& 91 Sl 9E)Z SI$91/ 9E) I$= 9E) IΏ9E)UI$1E)UU Ie)E) $I$1E)WUnaI$1E)U p9E) #A<9E) 91ը 49 & eǵ 9)HٔvrEQP(9o7"f$9+J vlgI ۤS&9@` ۦmi9 'Z*L91X M݂M91* P P9 ذf91*( 4ǫm91" (9@ B`9  !I 91 mu91 I%I91( T I9A & $2 91 um91 . `91 P,ݚ91  @91 dǦM91 %[?I9!p $)I91( 6m 91* @<1` °&m~p9 ؚ $-A91WV  ! 91( dB&$C91 E;) 91W 4$I91( c291 m% 91 uuPW91߾* mS`@ 91 )lJ91 ݶI 91  9A$ kd۶m91 " $I9$!H $l$ 1 Mia91 $I 91 Md'91_ (C;9@h )9 jǶmw91UU tl۱)91WU mt9e) K iǦ9J !7w%! %7IsDZf -8/Ӷ@ȹ_}4ѐHfz,~b f)^l\r- À AH9U%HmMEQ!Pܭw[$yH Iw fXU 9$9ȱh0ߖ EU0InH 3[r$E<4ǹX `$70ǹ;3ȱDZTwU:3Oir豧43 DZ:$IDZP73vhMȱDZݕUW73mȱy9+ "ǹ*J:6MHDZf826-ݶȱIshmq^90HDZiDî&$ Xx?q}hvivf1!%E) (CE)ۺnK E)!,[;4ۺa%)A@aQE)a I$IE)A۶mې 1!)$1@ PE!*/yX+--=,oy蹧9*! IDZP@;pLǹf"@K&hMXA [C 蹆zꨨ;Szǹ.:WhJDZf&=R"$BǹPH$I$1!TWWU !@$@$!hII!) !(  ! @$I$!hI !'-@ $!($! (@$A$!!++ I! . !I !/ $! @ !0L!@P m۶k`@/eB$h* ` pIiXA$!* @$!`p !# $!!ikrH$H!>H ! !@I$ ! !I$I$$! E)*!b  $!-$! H$I!&! @$H$!pI$I$A+* Iĉ#EAA+KI$IW-I$caU -fQ Pkif9%!% dy$7,M *(9M@v (*^s:.{=귊)O i¢oP3N|| M͍N wlۯ=՚]>Anz̈ː,ٵN觮Î ݾN'߯l% ó k[ݴ ‪Lٗc.[?&B'`XfleAᩈF׍8f1!YۦbE)ڈ`Nbe9 RI +4#g%rǩ%Y*+9C343- ``p@H,۰EA$!| 2 E)!vT^rHE)  E)!꩘E)!*+@E)! E) ..,$IdBE)!kX&E)0E)bE)!]ץ%)" E)!`@$A$E)!X_[r$E)!ۣI$I$$1E۰ȶtP#l5ۺE)b$IɐE)!  HE)6>< E)`۶lضmE)۶m lE)!**II$1lE)!"H$dB&E)!\XPZE)! $$E)!A$I2E)!"mvm6E)**j,E) @ e)E)$AdH&e)E):XLHE),<<8 E)E)!h bPE!5%vWf@/7//4O -5+ `DZXW2*'DZ8$I",DZi@@<|AhDZ%q468+M߉ǹ{W5J$H<ǩv$!A ! @ $!II!7I$I$!I$I$d!d I$I$$!!WW$@ !訨4MP +ܷ _ $!@rf% 4M% +4,&DZ.U84mǹ5+$1`ûDZ*`5,[$hDZǩP 9+&Q$IǹM;!ǹFʀ7DHDZX5-*OUADZǩX%5,1Ia$iDZ-3%c#&A0 3H%y^&?%1^ꨠ X ڣ`1uWx M I9uUUX vMf99 r*iM91 $I:-I91  291 I6i99U_=U ik99~ m[A) @$A) Yj 9E)0 %`"9 P-6dmA$!j N禑9  bD91^+_ ?M9E) @9E)_ I$ ֦1E)UI$d1E)WU_I$I$e)E)$I$1E)+_U@$I;1!n ĶmۣH)՝7 Gahb(;* (&bOfBb  $ 臤P19( %I"9E) @ 6IB9  ɀm`91/ @!91( Kv91 I$91 Ї9 q9 !$ 291/  91 ۶ 91 %9!X &49`` ъt91 91/ I$I$91 $I291 I„$91 `91* kҶmt91 !I&d91* i6) 91* I$ 91 ") 991 ۶If;91*W ͅ X69A6 1 v:91UU ֶqk91UU mv"91zUU* m6 @91UU m[d91Օ N]9 6, ކmml9E)" um?9E)W$V1@  BIJE)WիY6cQ:j`,Nwf! +4$0N 92.WcȱϷ_;#ܸȹ~說9O gȹXOl fXUߪ%]=0Xկb1 r$%q*4qYn f 9+En ǹ? *HVAVj蹣@ C/= UV-A/m >蹧X<%h۶mǹf$(42DZ44I$I$%72m۶ȱ53 C$I%;b0@6aǹf52mؖaDZ44I$I$%< $Iǹ@ 8@DZP9$@DZX=1o}]7> Xǹ$pHy 2 E)!H ٖa`E)Ml۶mE)a$!a&e)$!""]vڶE)$! ͊؊mE) HLHE)! ( 2e)IE)!@E1E!iOjJ9WfP--<&R/NDZf If7Aa88/e1$ǹ=;2hrkǹJ0r )MHo(h7)R@#DZf *p:s$J$I$I$$!! !@@$@$!hxpRII!))) I$I$!I$I$!H$H$!I!++ !I$I$d!d H$H!&HȄ$I!0 !*$H$!$)+$I$@$IP$? k-0,X*`(&`x C$d$(!!I0! !@$H$!Xؼ\ !" !I !.. H@!(0 @$@$!`p! I$I$$!!ڗ7I$I$$!I$I$$!!@H$!.$! @$$!hZ! @$!@`I$I$* I<EA-IIK]' oፖvg kټ+w>XA^L&ӳ-` fA /fI%O?! ɕ 7~< .jN}ψNꑕZԈtw-joꟷ}yas^.;΁h9 N⬫ˋK:mNz}d̓Î pyѫ3 ~8ǰ\i $kc帕*Y".JҪJ5{$`XfI6f1!zlm+ E9!~] ܥi,e1Dz,m$)CLQ$e9b.`Rw%) ++7 ҊRDZEaJ*+$yσ$ E)!jJ IE)!5dHdB&E)!;j I$$!! E)!Ld2%)>E)!*Y3,۲E)a"E)@ E)!@E)!ZE)!  E)!rjJjmْbE) I$I$He?' Œ%[&XE `E)!h(*!IE)!H`E)$C$ E)!說@E) "E)!I$I$E)$! H$I$E)$!2 @$ E)!{pph@$E)! E)! E)$! I$H$E)!wttvHE)!]5lE)!r @ H$e)$!h[E) $H$E)!HE)$!(۲+nHe!yWy{fP%--0Pif-3+IwB&DZ~8$ R"DZiP:buDMDZX <7N$ǹ%q(8۰ǹ** 46̳$J$DZv$E)H$! @!  $I!& I$I$d!d  @$u @$b8+$Ä IbH kmX8*wY %yH 'G!XJ3%W S$ U9IDZU?II$ǹ(_7Hħ8MДǹ ;!J8bADZH 5-A$iDZ<50жnۖj%50kTں%5'$ DZ4( 6DZ`\Uw, Һ>E^>MfXzxI'+@fA0昛p1U )h`9UU^ FiJeI1p $ 49@  lm9E) Wǚ+A91* ÚI$91 $ $I291( 49 I$91 * жmۦ99/} X m۶99x NM91߀ -ϦA9A' qi;91/ joc91 i9f1~ m+Xu9* rc A9E)W3i9jik[;Pe''W9%yH---%[J9E)_ l[9$! Y~n9$! =B!<B$! v'(B$!_+)@(B$! (BE)UmBE)U%1 (6, vK$9A ɐWlY%q!'1 ` )s%q /4-@ DZ53$B$IDZ8p $ ǹf 9M @ǹf*=&ƶH蹆91+ȱR73v@a;ȱ53d@2 I%:" IDZa@:DH$IDZaD1T~; %W}FmCSfr>$I0DZH`9$IIDZ43 %8 $XDZ%y0;2pumȹ-<2|Lkȹ73۲ ȱ^44I$I$%42DZ@ji$A*< 8r<ǹ$` ڵt[EAE E)Æe[4E) 8 aͶ4KE)f,E)۶anE)  $I$E)$!( E) ]1 AWtE)!"!e)$!e)E)礷Kd۰e)! ?xpE))))8lTNDZH* =/o蹧@1-蹧|790m۶) 蹧72vȱJ1?)5_J- §+&<˳<H!8  !A H$H$! !b" ! "I$I$E)H$I$! ! I$I$$!!I$I$E)II!: I$I$E! I$I$)!UUz@$H(hI$ H$ 1I$I P $A$P``۱mX I$I$)!\UUUH$H!\؜H!p ! I $!/%!<( @$!! "!@II!>7 $!JI$I$$!I$I$$!!r((( $! $! $ $! H !'') $!H$I$$!I$I A;#I$Ijʂu}DLM$ |--{% vѽDz.k9g3RwV-jL.I$p%p fA$!w b#vћfAbJ**a '&8w *,hJ# ʻ~x:.k₷Đa4NeʉZN% ⬠*nb jѸf6 ꛊ/ $ =`X'I$`\ AfA A%!u?Qɟ1HH&I$%)!]v-nE):>  2 E)h$@!E) )۶mmeE)!?)͐$)  9Ez PE Pe_$C$IPEUn۶P$ U*ivP% $9$ [۵EӵE)bI$I$E)$!(a$@0E)`@E) E)!I$I$E)$!*E)I$I$E)$!‚@  E)!hbj$ E) '' 0E)` E)!ʫk[E)A!E)!+ @@E)! 26`E)@@[;$E)HI$E)!8((0I1 %B")JE1e*j 7IW%q@////-  f 3-jl DZǩ*9*.6ǹ^2+ADZ9B< $IDZEBL!mH&,* #<ˣ<I I%)!*$I2$A%)*!2 C@_+ H+$ d@$  H$ H0* IIq8Uխ ?5f@/![$E*W$%I$fp%$y$h$$I$E9!vW$ ! @۶e1A `bm$9X+I:v$9`*2O$8 I';I$DZ U: $InDZ%Y 5$;DZx׀- @<'Ey^-L秩%y^u%v۶Ei;1 GA=Hi5C$DZf~*6XH@ - Ha_ Ibl XU]sl %yz&HX9WU* iLP9UUUx nI599¯@ m91 kq 9  E-191 g9!( @$H91 * I$BD! f9e) жm499 u j,A۶m91 v,091 ?< 91W 791 tc'91 `!P1&ɝsH/=s&b{[ :<9A(p a9A I$c 1E)UUI$ ц1E)UUW]vK`e)$! *$AE)$!뚬E)! nnf1$!*k1$! I\9A qڦ1E)(} DI9E)U dw?9E)W  9E)U ضɝ'9E)* $I9E)U & 9E) +H{9f1 -I91 )Ih91 9 k ۖ$91U n ۖ$91U c"0ܒ9 p@ $I9  m+[:91~ @m9J 4Hf9A  IZ99e)z $9E)U  29E) d$9$!:1%){)Ɔ9J q9 )O.BE)WWm'hB$!_P?BE)_U^SNA(-B$!zB$!}d?mB$!_ X߶9E)U ۖd9 9%)׿* vIaA! 㲛9E) %=Xҗ9p( T`91] &91^g kR$9  vL9 ((!{%! '3Nf -72m۶nȱ;2v`Gȹ9 @$IDZH44I$I$&92ܶmȱ83:v`ȱ~92}=(ȱb81m۶`ǹ> }R*ǹY:3ǹ53 @$ɀ%GdKfb*L rFB1ύ蹧X93$úǹ43%43%73 a۶cȱ=3_'蹧~?< $MD*ǹeaJ>&O?`X(%9l E)@$@$1$ IE)!`He[E)<8:E)!/..@E)P@E)۶!۶mE)@.bE)؀E)He)E)B(Q%IE)vᚶXe! 3R1i +--7/ِO蹧52CaذDZA0ğ~g蹧rɧB0}ۍ 蹧54I$I$&K0G §%Б$1!I$I$$!H$H$!Ԗ!! ! I$I!@!HȐ$I$) )  IP $CP$ im6PI[$Y`0* m4p`ӌƎX$HI$( !!HI!'I$I$$!!7  !I ! I$I$!@$H!(I$I$$!( $!J I! ;2 !H$!?.I$I$$!!( "@$!I$I$$!!" @$!`x !  H$!@I$I$A/ ɟ0%9=+O1IA' )ewn[A ⭯d.'.w 9Ԗ8 * L @|y'΃$Jqt"f1!9mO'ɓk6ib ~LC\ c At /&4%q ⎇1No ( |)諍 ʼzm[.O .k4$`kxN1weI/+6 @2%9I&`E)R@!E)"$I$E)!II1E@$$He gI5CmHm X$!*m۶; h@ I? hHI=%PUU I%qHUX/qI`x $9%ܫ-ҮE)j$@@2E)!@E)!`  E)j`ٚ5,E)bCnٶmE)!rI$I$E)!*$E)!hI$I$E)$! E)!Jhh IE)//-/E)!:E)@$@$E)!ZP!E)!  $ E)! Ȁ IE)!C34úE)`b@$I$E)!0"II$E)!("Mڦ%1ejj ~quWi@---=.tJJEy 4*<ƴ{sDZZ׽2)!4FBDZb7-owcǹǩ[}=3,`D"DZ*Rx7*}[ǹ?7˃ 9$! /m9E)} /9%)U / I~9$! S9E) _PIBE)Up^(B ت c>9 bb˖^1!*# }.)9%)W S& 9E)}{ I6A9E) q9E) i V9E) ^91  vl91 VkO91ׯ ֜ͧ9!&& &91 NNm9b& %@T9 ' ۴m9E)@ 1T 9  ֶm99 m%EY!++pQ +-5# N B2鹧-U_<1=`蹧-_>2{}!蹧82m۶mǹ44I$I$&62L$ADZ:*5DZ`@(? Fm$ǹ%q42@DZ 73h'mȱDZW}43 DZ;$@XDZP ?/_蹧%_I,%2Jq*h Aiކu%y53$I 0%4164DZAҤ .=ǹp,ʃ'$|hڤI$E9E!I˰E)A.(AE)!* --mE)J @$I$E)! E)Hmݖ-E)8 E) @LE) I$I$E)$!ʊ !CE)` d$e)!+8!4IE)@$H$E)!LH!HPE!7*1syw`----A){ȱv{蹆ÍBH$.f*HA ۶mmDZ%qB0&vf蹧c'?01蹧c@2"#2fJJJJA$$9I!A.!&(II$!77I$I$!I$I$)!UUk )VIIH $I2P$ u IBIP% m6M `@/ I<=byHWU ۜ@pZ [ d$yZ 7=Iyzx$a  $)II!+)+I$I$d!d  !I  !6 I$I$$!!@$H$! !#B!  !** I$I$$!![@$@$!!($!&I$I$$!  $! $! @$!pHI!(,A!"@$H$$!vII$a/++ yɓ$IkA>6mm) v-] jC ʎ}Y9$-!pj!{m @K?{ ^ީh"9.P`_fQ ?y~A$!/II%a$W8d$U&H$U I>oI*s$$k U$I$U 4tfA$eG`f1! l$EA$*JRyT_7 N!&n *©_y, a7C nУ{nZ c+x"&[29ap`+fAvl $`%)nR1wy$! )--7/wǹ/-7I<˃$0 E)!zjjj! E)H$@PE m۰P t`.c'P$ \5[۵A%UH&[%%9T I $)$UMnn$)$UItڵ$1$U l[%1$KdH$%)< %)  H$E)!~ E)!E@E)!ګ  E)!%) H E)!E)! E)!I$I$E)!>*E)!ꪪIdIdE)5 $@ E)!%E)!* ɐ 0E) E)! @0E)!p $I$E)!E)$E)!$A$IE)!( *X ۶mE)Ix`%!+)))) %y)---3 AǩP4.LiuDZǩ4*rDZj7)B$IDZi 2-uUDZ?{>3] H>?fPxx I h0(` R$h W @2IqjxEy\$ I$),@!  `E)($I$I"E)*J$H2$E)$I$ɐ$! $E)!~ $!  I$I$$!! ! $I E)!{$ C%)h$AHE)!I$I$$!!$! ! $!Adm9Ibi$9U*8TO<%W6HT%9HjDZP 6/)Gmmǹǩ43DZ51%$ DZ5'))Fn8 3%qP~ 7y[nǹP/?@i_'S# i@l mf@p1_ꪨ 6@?H9UU* ؃98 miHI9UUUT -!91 &@9H9 j* 9! 0 N'w91 $$ 9`p 8- P9Օ)V.Y!@)* G_\E ۶m--91 ðme91" IS-S99u "+F.91  AI91 m91u qא$ 91} u- 91}u ec^9%)j e#Abj try9 $ n91 _  l91 t291^/U I91 }B91W RVr9f1+ )@9A6 ے29@ ͑9  I,I9e)U"( &9E) Mv9!(  91 S@9k aK@9E) v"91W* N"$@9e) _? i9e)u ɛԶ9E) #m91 IΒ`9E)* 8&9 X I,Ak91_ mAc91  Ik91J 4ul91 4'Z91_> `: 9$!غ 'n I91W m9f1_ nܖ91] q, жm91 QNl91* -$I$99WUU h"9 P Mi99(( mѶmb99* Ч9( $B!P9UU Or;H9U }P9m}FhB0*wuw~E8/+/'4)Nf -- 43DZ53$@$0%:B# IDZP`:2Zȹ>2 蹧` 82mǶ) ȹ71$IDZ> p I$Iǹ%q72ȱ;2a蹧z43DZ93\7mǹDZ53!A$I%5)DZ>-B}蹧~C4 F*` @0]'ǹb.x$ǡ I!IE1$!E)!HKeE) (( Ͷn؆mE)I$I$E)$!" E)@2E)hukfE)"(!E)۶64E)`۶mCmE)`ECf1*zYZtݰmE)b"ۆhtE)x$؆6`E)(IuI;::7Wy{fP----5#d  H! lWfJ : $HHDZq73ضmȱA29w蹧 7_K-ڲ!ǹ@@@ڰ%9I$I$$)$!@ )XIIHW I$I$P$W+mnH$W qֶI`( I$6hH_U/R'h U m'hOh$ U <qvH۶m'QT $I1C2$C2$)p $! ! I$I$d!d  ! !  @ !`` ! @!@$H!謼@! $! jr! !`I$I!ꝛ@$!:H%)ꋫH$!bI$I$$!!$@ $! !/  $!CI$I$+II%1?I ha7' 'a +TI-!Ċ (.+Dr.2Ү]s/ ꯊuB Wg@b{jRF .L"'Z"<p`s|'K fA$!:l0dE)! -I$! ~ 8EIE)WUUQE)UU^WdUVyf1"2"smf1! $ E)! mvP1!VI<)_7I$i ].뉨`f ]; :Uv|^ ;fۚ 쪪p3%$g0k⬸c3-"@@ HBaEA$&HH&!x(1Syti---%+JOy+;Jhǹݚv9$jɖlنmP%I$ IP@( k$p BPPر]`% %) ꫪ E)!a$DB2%)src $$!@ $I$E)!Cڭ%)!`E)!HK&E) ILE)!mnE)**&  E)/./I!@E)! $BE)!jjo!!%) aڴE)!ÚnڭE)!E)!I$I$E)!!C$AE)!*II$!E) j E)!۲u[:4E) rrٖn-vE) *$E)!*E)ۚbmE)]:lE)!ڢAE)!I$I$E)!((**IItPf  ) i ---5b8A4DZf 3*P޾DZx_1+6myǩ * 1+61bDZ84M>DZfyX0 i$h&# I'fmuX$)$d$I$! *  E)j$! IE)$C$A2!@! &E)zvtE)H%)b H$ɐ%)" %) d E)@!` E)jj* AH%)($I!E) @IE)!A$I$E)!$!@$!I$I$$!!D%)LI$E)(RI$  $1$!?Hb)e$9B*;TI'ǹ-4  5/ hnǹ5/ pHDZǩ.:$@ǹP(44/²ADZꪠ7`$IH9+࿒1ǹXk5 &I秱%yW& >ix/O?m XW -O@WCfPUy?l hfbH ܭmBhB_ F ILAh9UW 8d׆I``ҖqP9UWW /%-9Ap 3xbH1%ɝEP5= ׻='e ^ DIbL91*  I91( LI$91( A=9!X  A9! $i!hA) @d9( 7&?9Р Hf9( NH91 hs>9! (h # I9E) -)C59` ~qdA1W mgh!I9E)<( IB'491] 8$ 91 ߀@91 -)A9f1ת ۵-A91 vb'v 91 cd I91 Im+ 91U I 91US>$- 9!bb $ 9E) m @91 9#9!`lW?<BAp v˖ 9E) 9MP9!& m0m91} dI9$! 1B9 I"A)91 q,&91 &E m995?U Pk6J9  $a$91 C$ 91 `" 9P mԖk9 $mS29) j "%E&eI1U+ hH1UU P9UU 6InAX9U1$9` wm'aAHݪ* %yPUտn9 ePu*)Ir-'@XU0o&`1m Ey6!v Iǹ)8!$Iǹ-73a &ȱ9$)ǹ63m۶htǹ51`$ADIDZ :2cȹ5_;2x豧õ83m۱8蹧44I$I$&92:mȹ93jNh;ȱ73mۈ@ȱDZ_V43DZ 63m6m&B&iǹ$?$0h$ǹ @XEY I$I$E)!E)!E)!@$@$E)` $ E)!(#*I$I$E)! *@IE)@E)p۶ؚnE)I$I$1@E)E)!*I $%)`$ ɐE)!+l۶mE)@ E)@`-9*jwuO7wE(* +)4 VM 64 $I$&A1x蹧7B0ɔ}(蹧A;2oȹ?B!3qǹ@@` $$)͡fש` שql۶I X!hZmC"X h"m'X$6h'mP WI )U I$I$$)$%) ޾j$IAH$!"  !(@$! d!d I$I$$!!(!I$I$d!d I$I$!I$I$$!!{s@$@$!$!$!IH!*.*I$I$d!d @! I$I$$!  $!HI!***I$I$d!d I$I$$!! >$!$@$$!$ !$I$!{  !  @ $!@@``I$I$ bՕ yy4EI?=o9j!m wI!p 76;n ύևJM nÞ 8.򿼅̩.h.g!Ǚ! )}J ,8- GvR-"4``@@@ h䋃0A$!d34IZE)@ Syf1 kEke1!D@E)! "i`'kf1 9ٶmE) ڶ lf1!g T<*A*JJ JTM zJn( ⴫訬t !2 | ~]Zf ?")}$2h J~~>._gl Ê=,q.j AAf9Am&%)? IXY''//(i+---;C2%9AP */EOm%HU?guy*j H%qI$I$$! $I $!$LHE)>dB&B0%)xb$!II$$!!($HCE) SCI&$!a`@&@$E)R$A$I2E)b A$IE)!tMt%)..&>E)!E)! !E) ȐL$E)! 2 E)!$@E)!祪HE)!E)!I$I!4 HE)!j@E)! $E)!vvbzi`ɖlE) E)!* E)$$IE)!**$ E)!I$I$E)$! E) 6aSePe 'Si----2'\SDZ{8"G%.DZ"*J7HDHDZi 3 DZf`4H{秩Tö6E1jzhm[vE)!H%) 4IH`H%)*:I$I $!!I$I $!!  E)!$C$IE)j*[:$E)Ͷm;l$!E)!aݖ%%).k6E)Hh$I E)!$IIBE)]I$I$$!!@E) HE)!%)BA&A%)r$I$$!H$!><I$H$$!!@ 0$I@E) H$ȄE)ꊾ[׭[ӡE)bA&I$%)!zI$I4$9$!5UwuN"(i%1V*9xO?%W7HT%9!H!`mǹ46 9DZEyx9 tDZ%q^/ 󘧩%qp}5 DZ%q-6 Y IDZ%q4/ aRDZ5,Ñ$iDZx4& 53hf~.EW.@Pj)Ob^ iXWObl iPUo?l i%y8 tl H%abH$W7X-+3.ɧEp1UU{ lTP9UUU m I1p H ~9 ֺ['@91! ۴۲A9@ `aJ9!  4DR&m291 Ͷi691 * @I9!  ۴m9@ h=9E) .lu99ͥ Hh91* ٚm 99i;' ]X91 00!9$!@ $MC9 ` 291 (B%) I$I$(B%) [۴k;99 I$I99 I$I99 I$I`99 !! 99 I$I$(B%) 099z ¢DR9%)@ ]ll91 BҤM99L_ RM9!, ji9 I$99 *(  91 $@249A` Ʉ 9e)! 6A kr Vm$P9UUU $k!X9UU :o!H9U )f:mHA mmXfA m $a!Hתn;%q@me,%0 !-)fP.% iU18k2 imq*4 IRf*9H$IDZi4/q;DZ 72ֺm۶ǹ7${ IǹV*7!ߘ/@DZ9twǹf 8!hǹ 72ڳk5ȱ_70%IvdȹU70$ْBǹ40@9DZ;15i蹧_u:.-ȹ7/۶m?ȱ\40@'DZ70$A$y'ȱ_;.K5a?蹦/D$I#U f*B@ =L<ǹp*۶E90 E)`hE)!$E) 4 @%)A0$ %)@E)!E)!*N*@E))8@E)!:&$ME)E)!AE)I$I$E)! E)@Ȉ @!E) ۆm)E) +l۶mE)E) 6qwyx++)H N1W%y+--C!$oc 蹆53!$&;17Po蹧D0ׄb s?$ =8ǹ`8[M$ Vp$VXkA$  !%C I$! AI$!6$I$$!((I$I$%)!I$I%)!I$I$$!!I$IE)!! I$I$$!!*$!!/ $!$!I$I$$!!`pI$I$$!!UTz $!@H! $!! H!*" !I$I$$!! I$I$$!! $!!Pphh ! *:I$I$d!d    E)!I$I$$!! @$@$!ܜ$I $!I$I$$!8$!!`H$@$!I$I$A+ r#& E9AJBJfLi !# Y o] spm N؁"- Kɇ ;XNꪣzZc&UN*ň.l?N]y<cNkbC#:*<˃<wvt @ ! X_fI557?&fi----5$`#@* D ixH,hfBXڶ$9$H@!,4(<$I$E)*m۴-nE) *AI$$!@  $!$!+dH$IE)*늮ڦE)$ E)@B&dB&%)PRRR$!8IE)H!(,,$!E)!I$E)! !E)$I$E)ΉdB$A2E)@$E)!nöE)!nE)!II!< @"$BE)jE)!z B"E) E)@E)!E)!.$A$ɐE)!* E)!E)! DHE) "$IPE!  "71X----5b(f0MDZa6"bADZP@74lX9RDZi*'Z2?%qP~$h>t&f밬mE)!f $! $E)!$`$!( ($AE)!$2H%) TikE)(mֶC׵$!0mmC;tE)AE)!*-Zl%) A$E)! @E)h H$E)!~жmE) "I $! !H HE)!`E)!Z!%)`!H$E)! A$%)  IA$! $C$IE)!oYeEvE)!I E)![56E)h$IC2$!A@ $E)!I$e) %1$!s$9C+2I$1ֶf-5 ~wI%y_%4 f 5 H?%q5/YHNDZǩ/52[۶%5-$|DZǩ50:I5ADZǩ+50M $IDZǩ51! H$IDZ4/kaDZ5+v2~7&@DZa5#&IǹfWꨪ3mJX$3yN E+4"d#1 `(|Bc m`^~Ond ifA0ת?m zfbH8 6$MEqHW /Ib`AU OP9U @ ~'!P9UU&$@9UU I$98* v$10 W 6aj9!(*( SՀEA1U mEA1` stk'91*.( )I91( 9o& 9a M h91@ )4`(@9 TI69f9 vimA9UUU mm91U IIL91 lkm91W ۶mm 91 MmA! DAIB99 mim99 M%A1_ RLƿ9 4( 6,@1Uգ I!H1UW MP9UU hmBP9UU ڠSӂP1U DyfI8 w:!XfAUd YH ۶+@%a!@ -)%qHUIM ePU Iv+ fPU%I-)`U/I~%' iU*0ݎDX 2_Eի4[f4&Kn9 IDZfJ8dA DZX43DZ 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%8/lGdǹ*: 0cǹF?mt`$,W<@'I$Z@'I$ǹyAI$WAI$ǹ_='I$ǹuAT?I$jUEI$U?IU?IU>кIU>$ɓ$`U ne1I$I$E)!L%)f%)a$LE)!E)& *-Ͳ%)atAlE)a"lm%)I$I$E)!*E)!lڵE)! @@E)!!@E)! ɐ E)! %) LdE).*hmE) $E)!* I$I$E)! ,1[XE 0 )O1Sq----I.%xB9)§˩5FmHȹ@8/IcBȹ>1a}蹧LS35DC9ȹ````/?EI$!\VVV@E)!H$I$E)!~zI$I$!I$I$!! I$I$$!!I$IE)!׷6 0 E)*~z(IHE)!I$H$!!4ɐE)!zWr$! I$I$$!!$$H%)I$ $E)!I$$%)!I$I$$! @!0 A$!H$!(DH$IE)![I$I$$!!I$I$$!!W $!$C$ E)!m! $I$!$C$C2$!!!I!"* I$I$$!!j$H E)!I$I$$!0H$H!(,<I$I$$!!$! I!@"H$H$$!ؘI$I$b% 1r/o|fYkjnv +6*-sX.6R-ꎚ(.֒tݴnݐIo곻ӒҮ{@BF*j7%I$P LȄ0$I$I E)!k@@!((89$!IIE)!I$I$$!!  $$!```` !C$!$I$H2! I!E)@$@$$!Pp! I$I$$!!HH!.,,,$@$$! I$I$e) %)/ $I$$! I$I$$!!(8NL!IǹH&42A@DZ*44I$I$%43 %93mI,4ǹ44I$I$%44I$I$%9$DZP 92}Lǹ<2m=ǹ53$I2$I%=$м$DZ T>9I?ǹU'X$PE9 KdX&E)<AE) "d2aBE)!hҶkE)Xu[E)*#6tkE)a @ E)!jz@@E):[֭E)KvmvE)*$C%)b E) )I$I$E)!@E)0 E)@@E)!%)$!$ E)!ʮ E)!驭 $E)(E)& E)!ڭҢE)!KKK E)!E)! E)!n]t]5E)!a@@@E)a "`E)A8 @ E) J0E)`ЮS$PE ˆ)SP++)-7-'anǹ+I(A~†I0-)§Zj@1mwx蹧7AC34C5ǹ```c-p EA$!tmm,E)(oH$HE)!Z~%)!Ym6HvE)(I$H$E)!IE)! AE)! E)*]mE) Z$`%)!^I$HB&E)!^I$I$$!! DH@E)!A e)@$@ E)!E)I$I$$! :I$I$$!!0I$I$$!!($ɐE)!I$H $! $$!b$! $A$I&$!HH$IE):I$I$$!!!$I$!  d@$A$!($H$E)!I E)!HH$!,$,I$I$%)!I $%)!$I$I"$)J@$H$$)I$ $!b?/(yGy|8;N|~цux[N꿶7B{vܧ.꠫Þf.꺞*˧s5fNwOō%!F.⺌&%1I-Z+Äe.?9fEȭӵf1 +z/G`з1 >+jzf1 9{wyE1/ (}p&' m;aÆ1> 9M۵MѶE)& #1J ~1M6mvE)*C$)AI\ɕ!555%_-]5a Jڪjڗ?N{e$cINJja'I Y]Ep$Y ONj⪪h<$oJǺm m-򪪆hضmڬnj⨪Ƌ#9Nꩪmm붰Ғ-:nF$)$ .)ڪj*ڎa۶n3mO˶m+t.Jڧ@@k.fc;jjkJ$L< !TTTtmöe1be۶m8E)b*bfb'E) }Q]I$I$9b|qpwY!- - /6]S0ǁea}kc& Ei 1& PJ*//*4@$H$ PPTT!I$I$$!!bH$H$!II!---%I$I$$!!I$I$$!!j@$@$!II!** I!bH!<<I$I$$!!*^WH$$!I$I$$!!**I$I$$!!I$I$$!!I$H$!! !!I!/I$I$$!!H$! $! H!( $!I$I$ !*I$I$d!d I$I$e)I$I$E)H$H$!^^^^ ! I$I$$!! +I $e)I$I$e)I$I$$!!@II!>**I$I$$!!**I$I$$!!I$I$e)@$!!$I$$!?@$@ 1$!E) 1@$I$$!!H$H$!^ZZZII!H$!<<I$I$e)@$@$e)I$I$$!!0\0C&$!@@I$I$!II! E)!$$! E)!H$%)$!I$I$1$A$%) ***%H$E)!X۶mE)!x說 $!!HE)IIE)!I$I$1I %)$!,IID%)-H$Ey\TT-`%y/+6$iǩ/ /!@(1f-PM$fVU,!I4iS4f @$fE@PWH$I$hI$I$h%I$IEUU%m۲ نF%ò-ےlfbjjN$J$f%)VVTTE)!E)!ꪪ* @E)% HE)!ުI$I$E)$!&@%)ap I&E)H$@E)!$!'$E)!  E)! E)!I$I$1 E)!I$I$1H$H$E)!IdIe)!????HHE)!$I2$C$!@E) * E)!%)%LȄ E) E)!I$I$E)$!I$I$$!!((( E)!ꪪ e)H$H$e)I$I$1H$1 %)$!ꪪ  E)$!LȄ$@E)  &`$!bpE)!I$I$1E) @$@ E)!@&`%)XX@$A$E)!VE)$!H%)$!꾾I$H$! %)$!H$@$E)!I$I$1 E)*IIE)!I$I$1$H$$!@E)! @$E)!DBH%)r !!$@E) HHe)1@$@$e) $E)!jd$d&!IE)!H$HE)!I$I$1E)!ꪪ E)$!I E)!y'fq$!UUU5)I4$!U /`$IEI /$ DZfJ39Ey%41`ɖdDZ43@$@$%43 $I$%43I$I%43%44I$I$%43 %4/&DZǩ4/HmDZǩ3,ضm!DZJ4")IDZE@@U4ɐDZE%43H$%43$I%43 %41$%41`ٖm%43@$I%41Id%43I$%4/$%DZǩ4۔dDZE(4,m?DZ3$A5ǩE`1d$ǩEjU16I$EjUU!h$I$EUUUI$I$hI$A$hI$Ih%I$IEUUU7/I$ EUU1I$ǩEUU1yA E3!qMIDZ-**4-Ilڔ(DZ4/IHDZǩ 4-MRDZǩ*41 %44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4, DZ@4)DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4H$`DZETTX4%DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%41%4/HDZǩ4/4@ DZǩO-6۱o §//I$ DZUU-_ҧWU/I$ڧUWkm['t&)E^ZX4HDZE4/IDZǩ4/$DZǩ41%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4H$DZETT44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%41%44I$I$%4<(DZEy@pp@/1$IE UU44I$I$%44I$I$%44I$I$%4DZ@4I> DZ$)Ux-I$I%$)UUUP E)!ﯯ@  1E)$!I$I$1HE)$!E)!ꪪ H$!..., E)$! $I$%)!n$ $! H$@$$! $HH0$!$C$$!  @%)b- $Ie) $%)''  `$$!a I$I$1H$@$! L$$I$!b$E)!I e)I$I$1I$H$$!! $1$H$e) IE)$!E)!ꪪI E)!H%) I$I$1I$I$1  E)!dIE)!  E)! Ie)I$I$e)I$I$1I$H$e)@$I$$! E)!+I$H$!!I$I$1I$I$1HHE)!I$I$1@$E)$!@E)$!@$H$E)!HA$E)!`@BE)!I$I$$!!((((@$%)$!H$@$E)!E)$! E)! E)!I$I$1$AL$$!a HI$E)!IIE)! IE)!E)! I0E)``E)x E) I$I$1I$I$E1%!?9,$ٶȱ_TT3-mݖ4/ IDZ*410 DZ44I$I$&43%44I$I$%?3蹧?D4۰mٖlDZ D4X,aDZP@@43&?ImömDZE%4H$H$DZ%)TTTTI$I$1@$@E)!ZZ E)!E)!H$H$E)!I$I$e)I$I$$!!h`` $!!@$@$$!!IE)!@$$$!!P 1I$H$$!!  E)!I$I$$!! I$E)!__1@$@E)!I$I$1H$1I$I$1  E)!I$I$e)I$I$$!!WWI$  e) e)H H$e)@$@$e) 1@E)!$E)!H$I$e)@ $!p@ I!%/I$I$$!!I$!?  I$e)I$I$e)I$I$$!!I$I$$!!I$I$!! 1H $!<((I$I$e)I$I$e)I$I$e)I$$e)I$I$e) A$$! (!@I $!% $$!@$@$e) $!$! e)I$I$e)I$Ie)I$I$$!!((I$H$e)IA$$!   e)H$H$!\\\T $! I$Ie)I$H$e) $I $!!@ $!` $IE)I$I@fi!UU YXfY!ihH I$!J II$!)"INꁩtMjokfm4 $CoJ⮨jUUaU_#9cN*ڪtۼi ꊤ*΃1kNtpkk6wM]m.Ot9K$J$ȹ!TTTVI$I$E)!___!H$H$ A0A$I$e) ))fY!---) .`fam---` t۷}iEye( ɟ?j§ UML$H$TTTT! I$I$d!d H$H$!\^^^I !%%- I$I$$!!@$!@$@$! !+I$I$E)I$I$d!d  !! I$I$d!d  !!H$H$!I$! I!(+ I$I$d!d I$I$E)I$I$$!! I$I$d!d I!VI$I$e)$H$!I$I$!AI!*I$I$e)I$I$e)I$I$d!d H$H$!VVTT!  $! **$!I$I$$!!@$$!II!*I$I$d!d !<I$I$$!!! !I$!  A$e)I$I$e) 1II$e)H$I$$!!`H$I$!Z^^^II!---I$I$$!!I$I$$!!I$I$e)I$I$$!!\I$ $$!!H$H$!xII!**--C @$!! E) E)!I$I$1 $!@ $A%)/-/+IE)!*IE)!I$I$e)H1IIE)$!  E)!jjj $! %IDI$!% H2I$i%yT)0IrEy*- J槩FZ+ ImrF%K ۶$f*V,ü1t$Ej^WI$I$hI$I$h!I EU)`KͧFy-%H$IdfTUU-If)-K$H'E)TTT\I%)'.I$I$E)$!* E)( E)$!0%)`HE)LB&@&$!apA$d$%)RH$A$%)!@$%)`p E)! E)!I$I$1I$I$1I$I$1H$H$E)!ILE)!??>>LȄHE)! HE)$!I$I$1E)!ꪪ A%)' IE)!I$I$E)$!I$I$1H$H$E)!^ZE)! %)$!H$He)I$I$1@$@$E)$!1 %)$!$@ E)!%I$I$E)$!I$I$1I$I$1I$I$1  E)! E)!I%)A$I$$!! 0%)` !$! Ʉ%)(H$@E)! &`%)XXE)!E)!I$I$1H@E)!޺E)< $$!E)$!뫪H$!a I E)!I@$E)!H%)$!@$@ E)!dHHE)`B& C2$!`! $!a  E)$!$E)* I$IEY%)UUU5I1@f%)U-!D%) (mm߆Ey&@rvf*U)Imߧf*U,"TrE@*1I4&%yZ3 E41۶m0DZ43I%44I$I$%41%%4/j$DZǩ3/$I$DZǩ4/I$I DZǩ?4/iHDZǩ+ 4/ $IDZǩ4IDDZE43I$I$%41۶ $%41-I$%4$I$!DZE@4$@DZE41,%41@$%4-٤$DZ3 $-E@/$K$EVVU%I$I$EUUU)$IħE`UU%I$I$EUUUT)I$H$EUUTUI'I$fEU\UU/N$IEWUU%I$I$EUUUT1IT$EU%3%IE54-L$IDZ4-tB$DZ 41ɖ %41I%43%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4'DZA\4$DZfAU4$DZfAU4$DZAU4p$DZ9\U4I$DZ9UU4IDZ9UU4 I$DZ9UU4O'DZW_4ɟ4$I$DZ9UUU4$I$DZ1UUU4$I$DZ1UUU4$I$DZ1UUU4$IDZ1UUU4$IDZ1UUU4$I$DZ9UUU4 $I$DZ9UUU4$I$DZ9UUU4$I$DZ9UUU4$I$DZ9UUU4$DZ1UUU4$I$DZ1UUU4$?ǩW_4DZe)UUU4$IDZ1UUU4DZe4IDZU46$I$1 UUU4$I$DZ1UUU4$I$DZ1UUU4$I$DZ1UUU4`I$DZ9UU4$9UU4I<DZ UU4I$DZ U4I$DZ9UU4DZAU4DZAU4 Ѐ$AU4`69 4 ?)43$DZ43DZ 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4DZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%41I %4-L("DZ((4P DZEPjm%k/?$jDZWU/I$DZUUՎ-I$BڧUUU4-`I@DZ4-@r"DZ4/DZǩ44I$I$%44I$I$%44I$I$%4H@DZET4- $DZ 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%43 @$DZ3@HEQ@-I'i$!U\I$I'f$!UUU\ E)!I$I$1H$H$e)H@$E)$!H@$$!(I$I$e)I$I$! @$@$1H$@$!a8 @$$!a`!2$H$!!!@$!b HH$e)@B&%)a`HB !A( E)$!I$I$1H$H$$!LȄ !88@H$E)$!@$@$1H$H$e)A$A$e)@$H$E)!~^E)!I$I$1IE)$!I$I$1I$I$1I$I$1  E)!  E)!I$!b&IIe)H$He)  E)!jH$I$$! LȐ$ $!4$E)!HHE)! E)!E)!H1 E)*@@$E)$!$%)`H%)A$A$$!!A$A$E)!H$H$$!!(( @$I$e) @B$$!``@!$! 2$ $!$@$!0%)` I!$! $ $!( (I %)!IIE)!LȄE) E)`!@E) $E)!I$I$1 %)b.') Iߖ%Y,Inۧf*/"@IS 4-$a1DZ **44I$I$%?4II蹧??J4I$K20)DZUUVb43@ H$%?3DZ5UU?4DZ?4H$蹧44I$I$&4H$H$DZ%)TTTT E)$!I$I$1H$E)!I$I$1H$@ E)!^ZI$I$$!!*%5I$@$$!! E)!@$@$1 E)!@ E)$!ꪪ1H$H$$!!$I$e)I$I$e)AE)!I$I$1I$I$11I$I$1$@$E)!  E)!I$I$$!!((I$Ie)$@$e) e)H$I$$!!A$A$e)E)$!뫫 E)!@$E)!I$e)I$I$1H$H$$!I$I$e)I$Ie)I$I$e)I$ e)I$H$e)1I$I$11@$I$e)I$I$$!!I$I$$! I$I$e)I$I$e)I$I$e)I$ $!I$I$$!!?I$I$1@$!@$ 1$!(*I$I$$!!?*** 1I$H$e)IIe)I$I$d!d H$H$e)A$$!!`  E)!H$H$!\X$!IIe)I$H$$!!  E)!I$I$$!! y'9iEy$!UUKey) P>EY1xxz^Y$If1yUI$ %)8f1?`$%)ث*ϑI'fq!5U՗Oq ##rf^aWo;?րضm:n{t", B j*wDEI <3$ - ɞ$UGeUҋmônz%Im $q$NUUUt[PI-m[Mݶy k*ڗI$IoUUU\C$ɒ.*j*a۶m =ri۾hNth?{*x\I$Ƀ&1 UUUX $I$E) H$ $$)ivEvE)/+$I E)! "$IɐE)!ð ۆeE)!"*I$0E)Lm۶-1&LB& CE)!$I ɀE)! *m"[E)*ʸMע]۶E)& ߧ9>6l۱mE)?1jm#me1J$ 1!KOniwn1 )z~׵moOm­.EJ6 ꢊjyQUmڀm϶C&Nꪠz܀mӶm[Nkjy ]FEw I:"MnkzڭN$FDo WUS}-j6N⊹(jضe6 ꀐw,ڶ]ܶori m۵WLn$I N Ҧ \E۶mJ.A$;!N b$L$$!|TTV I8y89!Uq]u~1H$I1 $I$%)!誚 1fY%)--))1fi----))/++1)!eI` 4J$H$!TTTTI$I$d!d I$I$d!d H$I$!^^VV ! H!((@ @ !@$I$!U ! @$!I$I$d!d @$!***I!I$I$d!d I$I$e)I$I$d!d H$H$!! $@!  !!! **I$I$d!d I$I$d!d I$I$d!d   !I$I$!ՕI$I$d!d I$I$d!d  !!H$H$!TTVV! !$! I$I$d!d  !II!***I$I$d!d H!<I$I$e)I$I$d!d I$I$E)I$I$$!! I$I$$!!*H$!<<I$H$$! I$I$e)I$I$$!!I$I$!_^^^II!===I$I$$!!O_I$I$$!! I$I$e)I$I$$!!I$I$$!!H$H$!\\II!-+**I$$!!H$H$$!!0.fb 'eI~)I I$Z!UEUU$!bI$I$  I$I$)b) 1R)faE1--//i----+1R/---)1,ِ----4H$H$DZ!TTTTI! ?>I$I$d!d I$I$!VVWW ! I$I$d!d I$I$d!d I$H$!\ !I$I$d!d I$I$d!d II!5I$A$!W_j ! $H$!|| ! @$I$!! I$I$E)I$I$E) !H$I!I$I$d!d I$I$e)I$I$d!d   !I$I$!I$I$d!d I$I$d!d  ! ! *I$I$!VWWU!I$I$d!d I$I$$!!I$I$e)@$ !I$I!// !I$!I$I$e)I$I$d!d I$I$d!d I$I$E)I$I$e)I$I$$!!*I$I$e)H$!<<I$I$$!!||||I$I$!^^^WI$I !}i@ !0* @$!I$I$$!!*I$I$$!!  $! H$H$!~~II!//?5I e)I$H$e)1II$e) 1IIE)!IE)!*IE)!꿿I$I$$!!*@$H$$!!II$!! @  $!! I$$!!Ke[uP$!nv`H+ 7qP // `Nqfi =)ÿϟEyRVUUI$I$hI$I$hIfEU%m eۆF+,IB۴IEU*-@E 1"!"E@@@,II$E)h&X$E)XXXPI$I$1I$I$E)!***I$I$1I$I$1 `$E)b!@%) A  E)!{jjE) A$ E)!E)!I$I$1 E)!I$I$1@$H$e)I$I$1I I%)!E)!`&`E)!I$I$1I$I$E)$!I$I$1I$I$E)$! E)!ꪪ $E)'' HE)!ު00E)!!E)+/++`& E)XX   E)!$ A%) /'  E)!ꪪI$@e) %)$!着@$E)! A %)@ E)/'I$I$1I$I$1I$I$1 E)!I$I H%)UU% I$PE! @B!$PE)z$$HP%!$a[IDH ***m`۶mP$1UP!LB$IP$)Wvm5H!]**m&H$)u IH$)Ud$H$)U@IH$)U*!$@H$)U LP$!UI vP$)U*IIbH$!U*i۶P%)Umk׶P%)U$@IbH$!U*$P$)U@$$XH  IB*X8jj%IP855!$AXP* ؉i iX nG %y`+-WNc%yX Xvْtfa &k E*,qr4f -&@@%EPX3IIE 3/$$IDZǩ/4/IDZǩ4/IDZǩ43$I$%43I$I %41۶%%41aɖl%41۲-۶ %41I%4/-6DZǩ 4@$@"%DZEPPPP3 jDZE1@N&ǩEZ/L$EVU-`$IlEXUU%I$1dÇEUU%I $EUAAU,'I$Eb]UU-I$IHEUU*1IdDZEU 1II`E%4!m DZ%4-1mDZǩ4-) DZ43I%4K$DZEVU4+@;DZ4 $DZIW3 $AU4 O$AWU4m'ǡE3H?y$_U%Ilj$O$a1WUU   91 I$99* @$H91  :1 $B$! 91 * I$@91 R#`9$!p aJI9% $I$91* H$91 IBI91 I$I$BD! 91 Iڶۊm91I$I)I)  91* I$I$BD! I$BD! $A) #)I-91@ }9*7 Imض&99U^ I$A) I$A) I$A) I$A) $A) H$I$BD! 91  I&dB291A$I$)I) ! 91 I$I$BD! H`91֨ e  91+ 291 @$I$91 I 91*** `091蠀 Itݶa91  @$91 I$I9F1 @$H$:1  91 *  @$I$91 C&d$91 I$91 @ H09E) $`$91  91 IB91  91 L$ 91I„$91U߿ # 11`@1b/ !I91@$LB&11 $ 291* u$91W 0ݖ9)#I$9UUU"'I$9UUU3nɓ$9UU4@rɟ$AUU4 ߖ?AU4 ۔䧱I*U4mi 4,DZ43DZ*44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%43H%4-r&DZ4/DZǩO-pO$§WWJ,o)§| U?,:ڶȹUz?,mȹUZ4-` ! DZǩ 4-`DZǩ43%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%43@ DZ3-[- l/"#i~z)3 E~z b f%i`#Kh$qE!p I$]i%)UW[I$I$$1%!dB2$2$!ࠠ E)!@$@$E)$!I$I$e)H$I$e) e)II$e)I$I$$!!...I$I$e)$ I$!(4(I$I$1$E)!zH$E)!H$H$E)!zH0DB0$!p I!I$!I$I$e)@$A$e)I$I$e)@$A$$!!$I$!a&$!H$H$$! I$I$1$H$E)$!E)$!ꪪE)$!몪 E)!I$H$e)$A$1I$I$e)I$ e)I$I$e) 1%)$!$@$%) *E)! $@$$! H@%)$! %)% E)!ZH$E)$!$@ 1H$I&$!pE)!a II$$!`I$$!I$I$e)$H$!LH$H$!,I$I$$!!H$Ie)I$H$$!! H$H$$!!ؐ0 $I$!(((( 11$H$e)dB&H%)xx E)! E)!`&$ %)xxn%W`))pSqw%yX+/#/S%y+/--1&p 41%4/IP DZǩ?J3I$I$)DZUUUk1#q1jDZ# 5k4I$۳jDZUTp44I$I$%43%?4 蹧??H$H$E)TTTT E)!`E) I$I$1@E)HE)!I$I$e)@$@$e)L@$@E) @$@$E)$! E)!HE)!I$I$1H$H$E)!I$ e)I$I$e)E)!I$I$1 E)! E)!I$I$1@$@$E)!ZZ E)!뭭 1 1 11  $! E)!IE)!I$I$1HE)!H$H e) I$E)!H %)$!  %)$!II$! *  1B$@$!! $!($! @$ E)!zjLH$@$! @$@$E)!I0B$! $! $!$!@$@$e)$I$$! II$!****I$I$e)1@$@$e) $e)I$I$$!!**II$e)@ $! IE)!$!H&`%)T$!!  E)!H$H$$!\\\\$! @@$$!!P@  e)IlֶX$)@$$XH$I$PH^__$I2$IH@\^zI$@@(zzI I$!b~tI$IE): I$9,۶mE)$I!E)tHJ8 UPB `8 JE-Ӷ"ƀm[mt.rnoʕ׏Ͽ.UUQuotmk?wue ∺}~=]w2FIk Wےmؽn. j=; UW_^?:'(`xZI`[qf1** IE)AI6be)O6l1If1ϯ*I$I$e)$!* 9 }9!i&I2e)j mFlۦ1b c96Ӱi߆1 9I$I$1 C2IE)!h $I$E)!a۵cf1A"jI$I$$!!$)`Iɑ )55?WV_vմwJ/OII$Nz$r$ ⪨΃s۶m.⬪&F[vk8sr$I I kc0gmNJ(z2'HNj\IR(I * "J$I @,l'- hjk!H*$INJډʪuP۶][.t[4mݾosmHl׎Mۯk5:0`h x1! 'Sf1 II$E)?IE)b>:)1OfiE9--/+)p q---+!p //+1-!$@++ 4H$I$DZ!TUUUI$I$d!d  $!I$I$(!I$I$d!d H!(H$I$!TTVV!I$I$d!d !I !I!I$I$d!d H!h( !@! !!I$I$E) !I$I!/ ! * @$!I$I$d!d  $!@`II! !I$I$d!d I$I$d!d !I$I$$!!I$I$d!d !(I$I$e)I$I$d!d $H$!II!****I$I$d!d I$I$d!d I$I$d!d I$I$d!d $!I!**I$I$d!d $@$!(I$I$$!!I$I$$!!  !I$I$\TTT I$!-!I$I$d!d I$I$e)I$I$d!d  $H$! I$I$!VVVII!/%%%I$e)H$I$e)&$!I$I$$!!@@p  $!!IIE)!I2E) j A$$!I$I$$!!**@$I$$! II$$! @$I$$!!PPI$ H$!UUU@$@$@$! P8*))&h`H  %q` !!E%yI$I$h)I$IEUUU-% %J$EPTW-9 F- -!)0f -)@$E,%`B2$I,% $I*,P%@<!PPPpI$I$E)$! *`$`E)b(I$I$1I$I$E)!HE)`$LE)a^E)!$C&E)zHE) E)!I$I$E)$!I$I$1I$I$1@E)$!I$I$1  E)!E)! E)!%I$I$1I$I$10%)@0E)b`E) I$I$1I$I$E)$!00E) xxxx! E)// $E)/-*E)!ꪪ@`&%)pp@E)!ꪩE)!I$I$1@$@E)! A$@E)7  E)!$E)!I$I$1I$I$E)$!I$ $H%)U% I$I$H$)I$I$Q!@I!AXH IضI `PU Ib-9 iPU Ib$ HiPUv$Ki@_VV4IҶP@AI$c`8WPbX8v$Ib`8_/I`8տݶ$ HiHIb$ aPUIb$ aPUIbm+HiPUտIb$ aPUI$$ aPUWI$ aPUժIb$ I`PUI$m `PUWI$ iPUU*6i8k I6$q@*% EXm%7 fiտ # m$%y )M$iVZ- vI%q,#)7I -+ @$ID1j% EXP4 @DZE41ؖl%41$I$%41۶m$%41۶mH$%41Ò$Id%41Id%4/- )DZǩ 4/Hm$DZǩ4,m'DZ_1HҤ'E\/ I$EUU,$IۧE`UU1I$'0EUU`1I\`$E6XU)$I$E'TUU/N$EWU/IEU1i&Hf4-iHDZ4/IZIDZǩ4 fip4 d'Ea/_4$DZ9U4$ǩ1U1I$1UUO'?Eq1_UU ۧI1  I$9) I$I:1 $I$:1 p=.a1ax` IT$1a5- WN$9a ( 9e) @$@ 91 I$I9F1 91 I$I$B$! H$@91 I :1 I$I$B$! I$I$BD! @ 91 I$I91 I$I$BD! I$I$B$! I$I$BD! I$I$B$! @91 I ۶m91 ! $91* $I $91 $91 $91  I9` IM!J9aյ. DID91 @291 x$9a V J9 $91 $91 $91 $I$91 L91* I91 inl91++ I$I$BD! I$I$BD! I$I$B$! I$IBD! m691 91 I$I$BD! $I$B$! $ 91 I91 I$I$B$! &dB291 I$I9F1 @ B$! IB&@091  I91 `91* $H$91 $B#-9`5I9 /  $C91/&L'1Ap\X Rr4J9bpc IX@1a5% B$! LB I91 !I@91* t,H91W I& C91 I$I91 ݺ6[l91~ 91 غ&M$91^W_  AH9$! @I$91 බ'I1] ԶnI1/I$1UU3[I$1/U4J1 4/ ImDZ41ېlDZ*43DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$&44I$I$%43H%4/I"DZǩ4/MVDZǩ>*4$L$EVVTD,mȉ?蹧UD,OnU=J,ϝ?§U_4,DZ 4,DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%43A%44I$I$%44I$I$%44I$I$%48DZyp4DZfqp4$)fq@1 Iea- aHEi& %y_Sc f`p(^N$sX!UU\$@dB&$!r@$A$E)!I$I$e)I$I$e) e)I$Ie)I$I$$!!.<(I$I$$!!@ %).' %)$!C0@%)jꊪ$!H$H$$!!ppPp  $!!I$I$$! A e)$@$!p !'A$A$$!!H$!AX!@I%)H$H$$! %)$!@$1$@$1E)$!E)!@E)$!I$I$e)I$H$$!! (ILȄ$!<H$$!(I$e)IE)!I!a& E)!LȄ %)(H$H$e)I$I$1$@$1@A$%)$!@$1L„$@E)ު C0CE)!abDB2$ %)r!I$I$!I  e) $!  H$e)II$$!  I$e)H$I$$!!IdB&$!aI$I$!!<' $C2$!@ %)  @%)$! $%)$!$ A$!a E)$!I$I$1!P$! 7SyWiP//-- 1S$q//--1#NN))--41DZ 44I$I$&43 %D/߿m7k4`dDZ k4O&@ʧWX`43%44I$I$%?H$J$DZ%)TTTTE)!`E) E)!H E)!Vꪪ %)'%$I 2$!$I$$! E)!I$I$1I$I$1$@E)$!I$I$1H$I$E)!E)!ꪪ E)!I$I$1I$I$E)$!I$I$E)$!@$E)!ZZ$@$E)!IDB$%)!Z[[Z$@2!$!ʊE) +I1  E)$! 1 E)!jjE)!I$I$1I$I$1I$I$1I$I$1I$@$$!!  I$E)!$$E)!IIe)  %)$! E)$!HE)!IIE)! E)!$E) ꪪIE)!$@$$!!@@I$I$$!!|A$A$$! A$$!!I$I$!! I$H $! II$!*???@$E)$!%)$!@$ E)$!I$Ie)I  e)I$Ie) 1IIE)!H$H$!I$!1 E)!ꪪH$@$$!\XXX $! @$@H$!UUUIH$!I$I$PHI!IPHmn aHu* Il&%aH mMҊ$%Y TN$s E9V\LI$I$E)HIE)<$A2!ɐ%)*jvl;e1 ?1o9p _-i.JǩΕA$I$NQWUUzcmN_?tmck}?m4.mٵ-kO΋6b;}NOﱗ? ?$ɰ I wƅpk۶c.r#3b$ɑ.kj`%b2NJګjΈm};.?}\mݶ Jڡ&ͣ'0`Z;x$ɓ$\WuUvmǰچ1!$AE)o*)ؾm9۶m2dE)B0mE۶E)!mdž1)[a[uE)!z 1! }qm1* 1!$C IE)@@E)*E)$!I$I$E)$!*$0$IE)!$! ׏1  ?9{`I\)!%555} timNO܎?opH$I k⢦֎m;n@)- mۏʗm۵hk.꫻֫ $Hn eVT]۲hƯΕu]lNr 9$INk**`nڶn[xn*ڛ2cEےm:NJڢzʗw,.oz] oس%r2')ppXXmmE)**71@$$ AI`'$f1?zɉ|Xe9?,-/yS/qeI----!1`y-----#1 ` ---)4 )")E@@@I$I$d!d H!((@  !`I$I$!A  ! ! I$I$E)aI$I$!VWI$I$E)aI$I$d!d I$I$E)H$H$!zZ $!I$I$d!d I$I$d!d  H$!$H$!ZZ!I$I$d!d  @ ! A$!II!/++/H$!XXI$I$e)I$I$d!d @$@$!`pxxII!I$I$E) !! $H !I$I$I$I$d!d H$!*I$I$d!d HI!((/@ @$! I$!**I$I$E)$@! I$I$E)I$I$d!d $@$!!**I$I$d!d H!((I$I$$!!I$I$e)  !I$I$\I ! H$!I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$@ !%/IA$e)I$I$e)`$!I$I$$!!r@ I$$!!I$IE)!I$I$$!!U|$ $!I$I$H$!UUUI$IH$!UUIH$!UH$!$H$H8`I$IH8?In%P8 X `H-  ` %ya---/۹F%y=!I"-ҶFuMO!IIE5,OFW/ -!f-%(#2)%II)%@$H$,% !@* ,8Ѓ9E1ppppE)$!+I$I$E)$!E)!%  E) '.I$I$1 I$E)$!I$I$1mӢ-ڮE)$@!E) -I$I$1I$I$E)$!I$I$1`$`%)a(@$@ E)!I$I$1E)!ꪪ E)!In%E)'.r @$E)!I$I$1I$I$1E)` e)!I$I$1I$I$1dB2$CE)!x` !.*.I$I$E)!I$I$1@E)!z E)b !$%) )*(I$I$1 E)!jj ! I$I$1@E)!I$I$1I$A$HE)U H$I$HAI$IPHUս+6i `H+ɝ6W %qP+ Eaտ+ ݶ# fi@mK6EazTN$m fXWUI=EPU/mmEPZ*IfPUݶfX  fi b fiW IbHfiU o# fi Ob$ fiU Ib$ fiU Ib$ HfqU c$ eiU Ibm)fiU Ib IfiU c$ fi} o&fi# o& %q*)6E ,rf /#[n$`/)i #ID/,-$IE4,I%DZU?4,IWmDZ41%I$%41I$I!%41ɖX$%41$I$%41I$I%4$@$DZEPP4 HDZE4-$ڶ$DZ1'ǩE\/N$EWU,$IDE`UU3I$ 4EUU%`/I$p$EUU\U1$I$EUUU-I$ILEUU/I$EU%P1 IǩEy 4!6I`;DZ4$DZAU4{$DZE1^U4X2I$1jUU$I$y9UUUh$I$y1XUUU LH!91 $I`091 91 $I2@091  I91 @$91 I$I$9F1  91 I$91 I$I$91* "@$9e)@ I҄*9A> m91 $B$! @291 $$91 $$91 ۖ91** mk&91 mm$91* mm$91 mI$91 m691$I$1e)I1f1 **@$C211$$I$1f1I91 91H$H$)I)@$H$11I$I$9!I$I$9! 11 I$I$g9*I$I$g9*I$I$)I)N"H1AV @1!@$I$11I$I$9!I$I$11*11  91$I$91$I$91_WUI$91$I$91I&L$1f1 91 ֮I$91 mM$91U mm691 mm$91 i$91 ֤91 $$91 ۶ m91** $ $91 91 (59!` II91/ I$I$B$! H$@91* m`91 IJ9' I$ 91* 9a` $I 9f1( IH91 I&L$91 $I!91+ ,#9%)`pW1.5/91 L$I„91 2aB&91 II:1 )h9!``ϑI|f1a&&$91 I$dB91 I$ I91I$I$)I) @$1f1,`IVA */ I.ߧ1&0 w 4/P VDZ *4$@$DZEPPP4)DZEy 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%41%4/m4DZǩ4,}DZ_O)?)§-UUWO$ˁIEJ-§U_J,?;§]]|4-I$DZ4-DZ44I$I$%44I$I$%44I$I$%4 DZf@@4IDZE4PDZyP@44I$I$%4@4DZEy``4 E@EE3 E1x'xEyTTT/"іI]+3 iE~"|2hXVSc f`_ v¶# y)_ꨀqb'j`$!UU\I %)!HI$e)I$I$$!! I$I$$!! I$I$e)I$ e) AI$!  1 $! I$H$e)@$I$$!!`$I$$! I$I$$!!  I$e)I$I$e)I$I$$!!I$I$$!!I$I$$!!ppp@I$I$!&& I$0$!@ %) @$@ e)A$E)! I$e) %)@ %) -/I$I$e)I$I$$!! I$I$$!!(L$I$!I$I$e)$@2$C$!$ @E)*  E)! E)! $!b1@$@$e)$IH E)$I $$!a $H$$! !2E)! $%)I$I$$!! /I$I$$!! I$!  I$I$e)I$I$$!! I$I$e)H$I$e)dB$dB2$!PH$!((<(I$H$e) $!! I$e) E)! $L$!8 Ie)H1 H! Qi8555* p7f$q----/" J+++)41 DZ *?4I$I蹧???4I$H$蹧43@ %44I$I$%k4ɐdjDZ3MB&$CDZVZj 41%4H$H$DZ$!TTTTB2E)IE)/?/ E)!I$I$1I$I$E)!  $!@$$!%I$I$1I$I$1@$E)!$E)!E)$!I$I$1I$I$E)! *I$I$1I$I$1@$E)!E)!I$I$1I$I$E)$!@$@&E) XZZZ!!E)! $!!I$I$!! E)!ꪪ e)%)$!@$E)$!E)$!I$I$1I$I$1 E)!I E)!ץI$H$$! A$A$!!I$I$!! E)!I $!!E)!$E)!I$I$1 @ E) @$@$$! $ E)!kI$I$e)A$A$$! 1$@$1$I$E)!_II!**** 1 1  E)$! $e)$ 1IIe) 1$A2$C$!*L$I$$! IE) I$$!!/E)!@$@$$!PPPp H5I$I$H$!I$IPHImXH oYqP vr4!%y1 @ܶ%H'E$)RTU $!k"&X9eAI$I$ A   $i$f1 a9 '9ə)%%h [mJڪ*ΈNU]UO%I$CNѪjz$ɓ Ȑ⪮w6fضm⊚_BH *NW$$ArN Ҫ*ej⫢zm۶ ڶ._WmQN*ڣ+e$Ó aN*jC l5.)*zк1|$(\Wfq!TUUU@!p$ɀ%) B$I2Me)jmۢme)m۶ۆ1* mض9 mۯm9I$A"1%)UWQIhU;f1ع@%)a0m[mڶ1 [Aնf1# %)@E)!m[6m1!{/cضmن1!cۆ1!Ӌm;&B:e1jj }Ч9FI|Oȱ%!5ռJVln.)¢Pm۶hۦnѪ_mmJ/ϏUTm?X%NJڏc$NJ>p*iV?_R%MNJڪ&:m4GIRNj⮪*}mٵn*w,Y,H.⮚$I )ꀀ `$ dJ.D$I$ pڶmۮn`(J ĕx$M$J!X\TV A$ɓ$9!QUuU!n$N"e)zI$AE)Aꢪ S fI %%-- 1SyeQ---+%qS7----/&)` +4"  !@@@@I$I$d!d I$I$d!d @$@$!`PXXII!Օ5! !   !I$I$!I$I$E)I$I$d!d I$I$E)I$I$!Z !*I$I$d!d I$I$E)@$@$!H$I!I!(I$I$d!d I$I$E)@$H$!I !/ I$I$E)I$I$d!d I$I$d!d @$H$!XXXX !%-- I$I$E)!!   !`I$I!I$I$E)I$I$d!d I$I$d!d  !@$$!I!* @$!!  !! H$!$! *!I$I$d!d I$I$e)H!<< @$!I$I$\X ! I$I$d!d  !!I$I$d!d  !I$I$$!B ! I$I$e)I$I$e) 1I$I$H$!UUU@$A$@$!UU I$@$!UUH H$!UI$IQ0I$Q!0I$IPHUխ*I$ PHdB$ $P)PI$D$P!PUIIP!N6I X@ yws iH+ #fi=%ykI 醡%y+ fE?-ITPf% -)$ $)D-%1L,$J$ETTT,Mٔ E))))% ,B"%[B&EPPZZ+:-f!jjJjɖl݆mE)a " E)ȧ' !E)A I$I$E)$!I$I$1I$I$E)$! I$I$1 $AE)! IڤmE)a. E)!I$I$1 E)$!I$I$1I$I$1I$I$1I$I$1 %)$!mҭmE)zE)!髫I$I$E)$!*LE)@IE)*&.I$I$1I$I$1I$I$E)$!$H$I2E)!JHH$!***I$I$E)!I$I$1HE)!I$I$E)$!I$I$1I$I$1 E)$!I$I$$!!>,80C%)`ۖm e1*I @$HE)-I$I$HH IIPHյ*Iرe aPU+}6WEXս+ yR0fi 0@2熙%y*P^+ ?%q~w?+ IX%qU5 of%qE|) I俴%yUU , In%y+ IޑHU) ¶U,ߒU , &-ৡ%y*@@@- $d%y,IҒ_+ ߶iU(v2f,Ib$%fU,Ilfի+ö+IҶU,IBU/ o& U 1#ے&@1)[տ^/,M4m^U1,qımDZU4, @DZ4-1 @ )DZ41X$I$%31I$ %3/$AL$DZǩ*31H$I%41I$0`%41I0$%4-$$DZ3@$ǩEP1 PaX'E^-$IE`UU3I$ !mDZEUU%3I $DZEU V17I$EBnUU+I$IEUU-m =@ p-f9}- $1U+'I$9WUU?fq1_UU$91 I 91ma؆m11 $Hڹ'1a  I 91  91ꢪ I$91 @ 91  I91 91 I$91 $B$! `591z ۰mm$91U mM$91@I$91WW$I$91UUH2I$91$I$11$I$11$I$11I$I$11I$I11I$I11 dB&$ 91I$ 91I$$91_I$I91U m$%91 Ib 91 m$ I91 c$) 91 Ib91 Il@91* Iu91 Iv۰m91 v" 91 IҶ$91 IҶH91 IB91 IBI91 mm&,91@ ӦA1a' IBI91 IB 91 IB91 mB9E)``Ie1!/%/ Ib҆H91 IB91 I6 `91 Ib$% 91W IlH91 I$$ 91 Nbm;91 mI91 C; H91 I$Ma91UU$@"dž1 mۦ 91 i6m91 11շ( 11II11***@$H$11$$I$11`'j51pXx S1Wr9 - ֶI$91 `SI$91* $Im91U 91* 91 $B$! @91* I$I$B$! L91  91 mv91* $9e) I$I91* I @$91 I$I9F1 $@&91  I!91/ $A$I9$!I$I$)I)I91   91 HI$91( S[maEi9U@rfiU Prwf$q*+PN/wE +1  !"!9@@@4 I$DZ9UU4 ϟ$DZ9U4 $DZIU4Ha41lDZ 43DZ*44I$I$%4&DZEX44I$I$%44I$I$%41%%44I$I$%43%4IHDZE4,PDZ??-n_ǹ*u~?,mҢoǹZU4-!M3DZ4),rq DZ4-@ $DZ41%4!DZ@4IDZE44I$I$%4,@@HDZ3 Eyp1 E11I$I$1(E@1E1)lB@_/ C I~ꪀ+C iE_" ~ i%q_Sc E`_~ c y@IB'#`$!U^`m۶m&$I|$! I$I$$!!(>@$H$e)I  e) @$1L$LH$!b8(H$ e)@$!pp$!I$I$e)I$I$$!!%I$I$$!!II$$!! I$I$$!!@$I$$!A$A$e)@$I$$!  IE)!@$H$e)I  e)IdB&$!PII$!! )I$I$%)!I$I$$!!I$I$$!!H!,6I$I$$!! I$I$$!! I E)! $E)!ow %) -I$I$e) $!1@$@$$!!`$IE)!j C$! I&$IE)*!2!C"E)!kkKIȐ$C0!'I$I$d!d I$I$$!!$A$Ʉ$!&I$I$$!! !I$I$$!! I$I$$!!P\\I$I$$!!pp$!(( $! I$I$1H$@$e)$@2C$!@!I?I!AH$!UUL$IH$!UIIP$)qWqiP-- 19fq----- ----41ɐ ɐ DZ****44I$I$%?4A I$蹧?44I$I$&44I$I$%44I$I$%3'ə맱Վ3H>ڧTx?J$R%DZE)TTPPk3lömE) | E)!*I$I$1@$E) PPI$I$E)!I$I$E)!**I%)5 E)!I$I$1E)$!ꪪI$I$1I$I$1I$I$1 E)!jjAE)!E)!I$I$1HE)!I$I$1I$I$E)$!`&0E)!^^ZR! E) %%E)!0$!E)!jE)! E)$!ꪪ@$$!!%)??I$I$1I$I$E)$!I$I$1$E)!H$$! "1I1I$I$1IIE)!@$E)!I$E)!_[I$I$1H$E)! %) z` HE) I$I$$!!* A$I$$!!PP e)@ 1I$$!!<I$H$!ZX@E)I$E)!  E)! 1H%)$!IIe)%)$!ꪪI$H$$!!%*H&`&%) TTT\!E) I E)!j E)!I$dHUUHI$IPH*6i`H+/W %yP*- $%$)* BTB$I$E$!PUUU@$@$E)!@$@$!ښڧs:eIxkkI$I$!A*II$ b(*!%)?f1AjZII$ 5_m7 jڪmLۦx۶oktT$I$IkR۾a&l- ꊤNgm .**tZTmӅ "jwؖiۢ.cMEYx'I$)`^WUm۶]E)؆1 Qۦ1 70I$I&E)pE۶I۶1`۶ۆ1b۲m[m%) 9˶me)ʮmu%) B?m$mۆ1r &I$1%)EYUVcÎ[1k*xBB;Am5bۆ1!N:}1k  %)A hE)"vNf1' ?9?& 9 %emJΈFl۞iNZB$ Ҁ }nK6o?kVn C.Jڪhܒl>lǏփm6.*kֈm=n>H @*#H\ ꊪm$I&ɐNJڪ⫦ʋ!;mN?|Ǝ۶M.?pj(,9E`>fY{mئe;e) ;~1| O$O$1bI I0$) )r`fY!--++ 1uS/a fY-/+ (qR/ --/1)1Jd -/+4$@$!@PPPI$I$d!d I$I$d!d @$H$!XX\\I !%- I$I$d!d I$I$d!d $@$!``rI$I!Uu! I$I$d!d   !I$I$ !****I$I$d!d I$I$E)@$H$!II!**I$I$E)I$I$d!d I$I$E)aH$H$! $I$! !I$I$d!d I$I$d!d H$H$!XX $! I$I$E)@$@!! @$!``jzII!555%I$I$E)I$I$d!d I$I$d!d I$I$d!d  !I$I$E)I$I$E)I$I$d!d !II!%%%*H$ !@! !!!((>I$I$e)H$@$!xxpI$I$  !/ I$I$d!d I$I$d!d I$I$d!d I$I$d!d   !I$I$$!! @I$I$H$!UUI$I$H$!UH$!@$I$H@I$ H@ IB$IPHUե*I$$IPHmv$X)P @$X!PUضP!PUU@$I$P$!PUUU $!$!Iph$! qM iX {6Eya+% J歆%y% "#۶mۆFp,IS0E- ,) D,IZ2%EXR,J$I$ETTUU,aHMEY!-$L$ETVV)6mmE,!Idɐaf?--1`+I$~&E)UU^XI$I$E)$!*HȄE) I$I$1I I$1MtMaE)*'.I$I$E)!$A$IE)! HE)!HHE)!I$I$E)$!@ $E)!zH%)bI$I$1E)!I$I$1IE)$!I$I$E)$!  E)I$I$1@E)!@ E)!說I$I$E)$! *I$I$E)!I$I$E)$!۲۶ E)@IH&%)bE)!I$I$E)$!@$E)$!I$I$E)$!@$E)!I$I$1I$I$1H$H$E)!^^^_m!8%)UUU5fId@$)5-**I$I$I!HI$ PH 6W iH {.U E`ս+  w0f%q+*R *ɟf%q-I' EyU , E@TU H$f%y1wNE5 /+ǩ/,6h۶V1,Ib;۰DZUU1,m=DZ/,H$m۶/ǩf@1 IEy%/+M;mE3+O$i DZUU/1+nmDZUj/,m DZVU1,Ib۶ DZUU1,mDZ1,I2{DZUת1/I$IDZ1  E@@@@1 IDE%3,DZ=4-I& DZ 41l[$%31@$I$%3/$I$I&DZǩ*3/I0L$DZǩ41I$I %4/MVDZǩ*4/@h$DZǩ4,m6DZ1 &E Z/(2L$EhVU/c$IH EZU3IH=EUp1 $a?%i)@m۶?F9(mv$F9*UnlE1UU,I$fy1_UUhB'OIX^ K4 9-- I$I$9F1 @$ :1I$I$9F1 H$ :1 I$I$9F1 d91O$p\1aVV $M9$! '9aX Is1b I$91_W@&I$91$I$1e)`$I$1e)I$I$9!I$I11 I$I11I$IH11. I$m 91W_ I$m 91U I$ 91+ MH91 vB$91 IR 91* I9f1 IҶm91 IҶ 91 A) H$@A) I!@A) IB2@A) $I@%91 I$I$A) @ A) aH$H2A) $ $$A) $91 lۖ$91 ۶mې91 д91 $A) $A) '9X J9 0m9 `` IOk9A/ ؆mۖ$99U $A) $A) " d91 IEJ9e)- `$91 ۶ $91 $91 ۖ$99U `ۖ99耪 LB A) !@$IA) I$I2A) mvl99߿/ ɐM91€ O$U9A pAI9E)  dB2$IA) IҶ `91 IB$91 I2lm91 t"91ި IB91( d3I9E) vL91Uߺ( I$91 I$$ 91 I$ 11I$IB11I$I$11I$I$9!$I$1e)$I$1e) I$91__ mi91 0$91 _ ۖ$91 $91 91 @ 99`A\1a % I݆m91 I$I91 $C2`091۰0 91k J|9!( $I$91 "1X95%%%``P psw%yX /--"E----,B"$B"$1PPPP I$91  91  91"* ɐ$I$a9%UUU+ I$9?UU3 `I$9UU3 Pw$9U4 f94!PT%41lDZ 41X %44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4, DZ@4,Z HDZ%4-vb;DZ4) `DZ54,DZp4, ?DZ ~4)DZ544I$I$%43@$@$DZ31I$I$1@1(3@E`3 Ey41I$۶ DZ*4/mҶ HDZ3)#H~1 3m~ꨀ+C iE_"  m$q_c E`_ö hy zS?hi!UWx@1!UUUTI$A$$!  $I$$!! I$e) $!@$H!$!I$I$$!!w~xI$I$$!!A!$! $!I$I$$!! -I I$$!!@ !I$I $!!I$@$$! I$e) $ɐ$! $I$e)II$$!!pd$ %)ޠ@ E)!k ! I$I$d!d $! I$I$d!d @$!p$C2$$!@!$%)+*( E)!I $$! !A& 1`& 0$!p`I%) I$I$e)I E)!-]5E)bC2!$!ࠁI$I$d!d   !bI$I$!&]$! (*+*H! $I!I$I$$!!\^Z_$I$dB&$!ppz@A!(:##I$H$e)1I@$H$!UՠmٖmH! I$I$PHI$IPHI$IXH*m6I `H* yyw.U qP+  qS fq-/+- ---+41ɐ ɐ DZ****44I$I$%44I$I$%44I$I$&?4I$I$蹧?4/DZǩ 43@ %4'ə$DZ5Up$@2$nE)XPPPI$I$E)$! LH$HE)!>$ $I2E)!`@IE)!I$I$E)$!$E)!H$$!  E)! E)!$LE) I$I$1I$I$1$E)$!E)!* E)!I$I$1IE) ՀE)! *I$I$E)$!I$I$E)$!00E) Rrrp  E) 5%I$I$1I$I$1 E)!jꪪ E)!I$I$1H$H$$!!E)!I$I$1I$I$1I$I$1H$E) I$H$$! "1$H1HE)$!IIE)!I$I$1HE)!I$I$1I$I$1I$I$1E)$!ꪪI$I$$!!ԕ  $!  1@  1I$ %)!ZL$L$! @@E)IE)!תI$I$1 $!H$I$! $!I$!I$I$1H$H$E)!~z`&dB&E)!!$!  E)!ojH$!UI$I$Q!@I$IPH+mv`H+ wr@!y0 B@%O$%$)RUU%)$!ꪪ IE)$!  E)!I$I$$!!cѶm;%9 ccoII$ A*~A$I$%) H$  (aue1A*"m"mӶE)*J! ( Aضmq.ɨ}Mۢm-/ktX) JڞW#HTǐ. Ҋ"΃k.._}۶N*渪c۶a r?tÖ kjɼ$1x^Ah$I$$!XWUU 9I$E)!tl؆1!olmf1$I$Ie)%)@01q$!U-zI$IbJ%1UUU OI$I` %1UUU/I$y:  I$ie)k{m؆1*BM{6츆1(lvL1 I&I$9%)UYUTJI$Oȹ$!UUWoB aǶm9=9$!=!I @E) AdE) "J۶e1CϑI7Uը4HwA-wڶ-ӶNozlmۏ?}$A(-*m$MIk w1@ Ғm۲N$I7I-ꢪ`$Iڶ *}H۲v.⤪`M[l۶n} ,I ⨩jhiz۶kD%K$Nѫʪ39#'E1``pXv-f1 M[mڶ%)mہmۆ1I$I$ b@IIE1߿?7qwsfiE9-+1uO` i-++1R` /1+ --+4@$H$!PTTTI$I$d!d $H$!XTI$I$!VWUU ! I$I$e)I$I$E)@$H$!ࠨI !++ I$I$E)I$I$d!d  @$!jI$I$!__! I$I$d!d H$!H$I$!I !*** I$I$E)H$I!(?*I$I$E)I$I$!$! I$I$d!d  !!H$I$!I !? I$I$E)H!(I$I$E)@$@$!zzXXII!%%-I$I$E)I$I$e)I$I$d!d I$I$E)@!I$I$E)I$I$E)I$I$d!d I$I$E) !$I$! ! ***I$I$d!d  !I$I$d!d I$I$d!d @$@$!I$I$!$@$!I$I$d!d $@!UUU @!UU @_!I$IHI$ H@IH@IH$APHUU$C$IP@IbD!X( @6IR$X!@U[4I$P$!@UU'$X$!BUUUI!/I$I$e)H!( $!$!I$I$$!!  i$!  I$PiX** s%yi /F)f&y,I!@F% ,) D,%&L$)B"$ IERR , hڶIE )0,f(`)JIfoEV,!M$hE*,%II$)%@ID(X%@$E)XPPPI$I$E)$! dH$A"E)!H$ E)! LE)6 E)! I$H$E)!@$@$E)!hdMtE)(,6(I$I$E)!IE)(66`%)I%)a' E)!E)!I$I$E)$!$%)a`E)*I E)*(  E)!I$I$E)$!* I$I$E)$!I$I$1I$I$E)$!I$I$E)$!*IIE)! * `&H$E)XanE)!--I$I$1@E)!I$I$1 E)! E)!E)!I$H$!UU Ųm۶mH!IH8I AXH/ ɝ7U qPս+yr@AEa  }Ei / N$I%yWU/uBE PW/X$IEPUU/IDE1L$HEVT1H$IE1-$$IDZ1-I$DZ1-$I$DZ/-I$ǩ"1)I$1DZ/)l#ǩ3,O$IDZWU?3,IDZ-3/$I$DZǩ1/I$ DZǩ1/I$IDZǩ1/IDZǩ11I$I$%1,%DZ^1,9N$DZ~WU3,M$I DZUU%3,|DZ3-k۶DZǩ 3/L$IDZǩ?3/$I$DZǩ*3/$$I$DZǩ4/I$IDZǩ4-6i(2DZǩ4,m?DZ3!$IF2DZj/HPb'EP_,$IħE@WU1II!`EU%46P$f9*W4(~$1^UɟFy1PUU P$I$fi1xUUUI$I$9F1 I$I9F1 I$I9F1 I$@:1  B$!  $B$! H$:1 $9f1 ۆk$91~U I$91UU $I$11m۶11!H$I11 a¢%1pK"&.1b\x  J$1  I$m91UW I91 IҶ91 im91 Im۶ 91 Im91* IH 91 IA) A) m۶691* mۖ91 $A)  H$M;91 $Im$91_ $91 k91 @c'91 Iv$91UU  I91 !91lض691^P$O'1a\VX 9 v9e) nm91 @d$91mk691_mm61e)I$1E)mm$1E)Mt$1W Iۚ1!L&\K1^1`II1 I$1E)mI$1E)I$1E)UI$1E)UI$1E)UI$1E)$1E)$@ 1E)*@!11 - !I$91 d;91W mZ$9e) @m$9e)U жm9e) dn91U m햶91  Jm;91  mN$91WU  I91UU жq91 m&91 $91U "91 D 91* ` $A) @291 A) $IA) $C$AA) I$ A) A) LB" @91( mm۰91 v"ِ91 Ibے$ 91 Ib' I91W_ Im 91 M$M591WW_I$I 11I$I$9!I$I$11/#&I1pI$I1a5 $I$K69$!j TI9& $91 @H9E)@ I⼲(a9!U@SI$9E)&Z&P9- !!XH/yw7%yX----&1SE--- )p$H$9\TTW aB91* I2$H91 Mڤm91$I$)I)A$91 @ $91 v91 $A$91  ɑI$ǁ95UUU+I$9UUU3 m$9UU4 0AU4 TI%4/43$DZ43DZ44I$I$%44I$I$%4/DZǩ4-Ilǀ DZ4,?'DZ_4,.@>DZ?4)qvDZ 4)$@' DZWVT4,@oDZ4/R+Hǩ31I$3@fq3fq43II$DZ*43DZ44I$I$%43H DZ4/m# @DZ3)#֒H^1 3mꨀ, ie_% " i%y_~Rc fiW~c y)^I$c`$!UUPI$I$$!!I $$! II$$!!  I2$!I$I$$!!|x] ! ! ! H!H$!b(I$I$$!! I$I$$!!`  $I$$!!A$A$$! IIe)$ 2$!$!b A$Ie)I$E)!II $!!@!bI$I$$!!I$I$$!! I$I$e)@!pIIE)!HE)! IE)!I$I e) $!@$$!$I$!@!@$I$!H$I$$!!$H2dB2!b`$HE)$$!I$I$d!d  !!H! 8I$I$d!d I$I$e)I$I$E)dBdBH!UUU I$H!UUHH$!=@$I$IH^UUU[m6P8Z!)J$X8m&I`PUտ* In iP-9%yX %7E`  }-5 fi +yys% E*1%)eN-+ 41ِDZ* 44I$I$%44I$I$%44I$I$%?2,۲ DZE@@@Dɖl$lE44I$I$%44I$I$%E&m&I$)RZZZI$IE)!_W@$E)!RXE)!@ E)!-*(@$E) PPH$H$E)! E)!@$E)!ZZE) ꪨIH%)!կI$I$1I$I$1 @$E)! E)! I$IE)!շI$I$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$1@$ E) XPp`  E) 5I$I$1I$I$1I$I$1I$I$1I$I$1H$H$E)!$DBE) ZZ E)!jE)!I$I$1I$I$1H$H$E)!$!H1I$I$1HE)! E)!E)$!I$I$1I$I$1IE)!I$I$1I$I$$!! E)!ﯯ$0$!$HE) %)$!H$`&$!$A$!I$I$1I$I$1II$!!%I1I$I$$!! Ie)@$@$E)$!C0C0E) %)//H$!UI$I$Q!@I PH+*IqiPUս+ .Wۯi$)PT H$I$q%)TUUUH$@E)!^ZE)$!@$E)!^E)!ꪪLȄ$ $!$@ ($!I$I$ A~ II$E)A?I$I%)  9 ]uU$!AyTk!--%mm:mNk_wm[mok?tG۶L۶._$I$A2-*ڪ*j\m z *ڨM066lc94`X>Γ$!x~UmێmEAmӶ +f1 l$A%)*  9 mq89-wkm9 a7I1W !յ) &[¨M 71G$NnɭJph[ k⾩DMDNN5 )VI$JUUUO$I6!UUU Eie!]]۶t%)$(m$1b**oMd3a z*7l8^I$}k)UW~YӦ1  I1%!UEfiӶf1!}%) ϟA'_ɐI$ $) %U9nw.蹨tmvm۶.k*nF.w΅B۶N`aٶq.Jڊmq߶hNJw$; .ꮦmmSmk?e$I2f.Jڪj) ⸨hɐ I.Jڪi֭K >D(@ (@cx$N$ )\TVWI$I$e)!___S !A@ $ @I$I əX fI//-quS yeI/+#1uSd y-//#1wod--+ 4/Ii+ 4H$I$DZ!TUUU@$!  !`I$I$!UՕ!I$I$e)I$I$E)H$I$!\VV!I$I$d!d   !I$I$!z_II$!I$I$d!d I$I$d!d @ !I$I$E(C I$!HA !>?! !I$I$!@!I$I$d!d I$I$d!d  !I$I$! !//* !@II!*/I$I$E)H$H$!X^^^ !- I$I$d!d I$I$e)I$I$d!d I$I$E)I$I$E)aI$I$E)I$I$E)I$I$d!d II!***I$I$E)I$I$E)a ! ! !@$!I$I$E)@$H@ UUUI$ @UU@=LH$I@ $IH$H8 TTd&aH8RPYIt P8) I$I P8UUI$$ XHU ݶ&!`(*@mm$`!*@U(I$X!@UU$I$P$!@UUUH$! I$I$e)I$I$$!!TZI$H$$!!pj @$!<I$I$d!d H!<<I$I$$!! I$I$$!!I$I$$!!XXh6JP`$`H*WtW%yP+=& 9 %y% ,!06<,!Xmf)%I$I$)!IIHf)!&f)32$If`j,I@If%,%`B&$I)%I$H)%I@($@<!PPppö%MҤ%)a*24ۺmE)`baE) LH$IE)! $$IE)!*- ضkE)bؠ $E)p[E$E)!qI$I$1I$I$E)$!I$I$E)$! E)!/ E)!I$I$E)$!*`$%)(H$E)!H E)!ꪂ$E)!C0E)b!E) I$I$E)$!I$I$1A$I$E)$!I$I$E)$! ذdMvE)<6(k5X5E) E) --%I$I$E)! E)!ꪪI$I$1I$I$10$%)@`.mH=H$I$H$1I$IPH}IرiXH+ }.W $qP+ 9ujÓ%yi%r( ~iW?/ ɟ%q5/î$L$EbTVU-I8EU1ɶmIDZE/,-h&ǩ /,h۶iǩ1,m{%DZ^1,ٶDZ/-I$ ǩ 1- A$A&DZ)I$IMEUUU1)H$LVDZVWW1)IDZU3/$I$DZǩ//I$I$%1/I$IDZǩ1/ DZǩ11I$I$%1, ;DZ~1$R"%EPPP4ږhE3,I DZU%3/&I$DZǩ1/I$IDZǩ1/I@$DZǩ1/@$I$DZǩ3/I$ ADZǩ/4-6AII&DZ/4,$DZW/$@$fT-0db'E`Z_) m۶EfYU(M$f1 W1$I$9WUUI$i1\UUUI$1e1  I91ﯯ I$91 I:1 AB$! $91 `&91  m$91W ֶI$91_U $I$91_UU01$!1E)I$I11I$IH91UU I$91UU mN-9e) IBD 91 {=`9xp ɗO09!- I$ A) I$@2A) IBA)  I291 vt$918U @$;91 mvl'91*_ $I91  ѤM;91_ `N$91UU D&i;91_m'1E)mi1E) +]611r{m&1E)ni1E)*@!11 Mڤ#:1E)I$e)E)((viv1E) /@!@11 k6[1e)P IH1!ZI$Ie)E)**mi1E)*ii11-- I$ C91 c;-91WW '/9E) O$/ 9E)WW  9$! I$}9aW޺ 9  9! I$9E)UU I$9E)UU '9E)UU I$9E)UUU I$9E)UUU I$9E)UUU ɟ9E)UUU I$I9E)U I$ @9e) I1 91U@$H$9 غ6k l1E) I$1E)H$I1$!If1E)խ! 1E) * [51E)غm&1E)~WW$I$e)E)UU!1E) / $M;1E)v$1E)WU t1E)mi61e)$id$1%)VI$1E)(/$@!$11 +U mj'9e) ж9E) i91  I$Y;91 W  Im91 mn$91 ؖ$91 0ݖ91 I$I2A) `A) I IA) I$$IA) mmۊm91 t"H91 C$91 I$91U I$[`91__$C$ 9E)ꪪOH17 $I$11$I$11 I$91+L(D҆1E)8H$H$QHTS6e`PyW7E`--/)` !fi* J  91 $@ :1 91HI$91 dB$I91 dB2$@91ꪪ m591I$ 91I$I$g9*  I$91 $I$91 $$91* 91 $I$I9%UUU- I$9/UU1 I$9?U3䧱AU4ߧa4/ 43$DZ43DZ43%4)d 0DZp4,yhDZ4)DZ=4- $8DZ 4)Wۍ ,DZWW`4)`6 41ۆml31 3fi@4- IR43 DZ *44I$I$%44I$I$%4@$DZEPP4HE3)#@~1"h_ꨀ-3 hf_%  %y_~Rc f`_" y)^ꠀI$h$)UU^I$I$!! dB& $!p$@ !! I$I$d!d $! I$I$$!!H! I$I$$!! $!I$I$$!!I$I$$!!I A$e)I$I$$!!$! I$e)I$!!8$I$$!!@/ !I$I$d!d I$I$$!!I$I$$!!bz!$ %)*+%/IIE)! E)!I$e)I$I$$!!!I$A$! I$H$e)I$ $e)I$I$$!!I$I$$!!ϏH!HE)!mmm$!I$I$d!d $I!a.& !a I$I$$!!$C2$A@? HIH!I$IPHI$IPH*I$IXH m&I `PUU In iP . %yX } %Q pm[rb$E1*@S%o$ %y)풛$E-q[rf 1&in 4/IV$ DZ 43DZ44I$I$%44I$I$%44I$I$%44I$I$%?4 I$蹧??4I$蹧43%4@$ DZE)PP@@@$A 1I$ 1I$@$1HE)!>>I$I$E)!$E)!z E)!I$I$1I$I$E)$!$E)!I$I$E)$! E)`@ E)%% E)!I$I$1E)!I$I$1I$I$1I$I$1I$I$E)$!  E) ``pb  E) 5I$I$E)$!I$I$1I$I$E)$!I$I$1I$I$1H$H$E)!^^^^@@ E)!i E) E)!@$E) PPI$I$1H$H$E)!^^^I E)!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!H$E)!I$H$$!! E)!@E)j***%)$%)$!`&`B&E) V^ZZ!E) E)!@$E)!ZZI$I$!!%*%)$!H$!UUUI$I$H%)UUU H!UUUC0$H!UUU H I$I$PHI!IXH*mM0!`0 *B "$I$a@PUU$@!E)*E)!@$@ E)!E)$!H$E)!^~ E)!H$@$E)$! $! @@I$I$ axII$ A/I$I$ .ꪦIAE) >9 ]Gv=II$ U ꧙  Wu۶. )*r۶ ek*jmmO۶ Jڪ֕O%IvoY$B>9xz?I$J`~W]f16me)* E)!h[Ӹ1m۲EF1 x1JI$I$!UU%S1 _' 'K.*ګ 骚c J@ҎNRa&E *ڈp-;o|Τr[>n& ZzڶN7MaM.*~*RIB#HNJU,#h$=Om U "ɒ$ m Lꪪ-Ȑ)_-J_O'B5)V\pp"e)pۖmۆ1!I$q271$)W_lQmӦe1*_A S?oSə)+-rmۖ kڪ9mpѶ-⪩,I$I oΎA۱mN?ڀ6lvloċ .r-ZD]+nܼ_v -2.Jڪh vnn_m)K.Jګrcdɒ Jںi 5>(`x%! mێmE)*vmcE)"jvb'F$f1I$J$E)A 1r/afY!--+ yS/a fY-+ (1uSd /+/&P %/1 $!@@@PI$I$d!d I$I$d!d @$@$!`pxXII!5%-@$!PPI$I$d!d  !*I$I!ו5I$I$E)@$!$@$!I$I$!~ !I$I$d!d $H! $@$!I$I$ !!! $!II!55I$I$E)I$I$d!d I$I$d!d  $!I$I!$! I$I$E)I$I$E)I$I$E)H$I$!VVVV! I$I$E)I$I$e)! I$I$E)H$!I$I$E)I$I$E)I$I$d!d $H$!XX  !I$I$!!I$I$@!UUU$Id2@!UU@!U$Ib@ *!I$IH8I$IH@I$IHP@U*IB$PHUU/L"ڒ$X8VZ* },G `@mKr$`!U$ N$X@UU$I$`@UUU!@$!I$I$d!d I$I$e) !  !I$I$$!!WI$I$$!!XP !! I$I$E)I$I$e)I$I$e)I$I$$!!$C&H$A$H8*//?EP%-+5&vE ( @nv)! !If)%H$)!&f)!L$If)!If? )%H$I$) !e***J,$IE)!0f(5R#1E)p``` E)!.I$I$E)! I$I1I$H$E)!(E)&I$H$E)![E)pMٶE)'!IE)!I$I$E)$!I$I$E)$! `E)bب$E)*6I$I$E)$!` E)ax!%) &@B%)p$0$AE)k*!E) E)$!* A$I$1I$I$1E)I$I$E)$!* @$E)!*`&dB0E)!pxzB  E) 5I$H$E)!I$I$E)$! E)!I$I$E)$!* A!H$)5 I$I$HH(I$IPH/v`H+ r qP ܸ{W%yX )I߿@iU+ ! hq ,|$IEVU%/ E/!"AIf/I@$IE*/,mҶ-ǩ 1,1sDZ/,h$mǩ /,iǩ+/)ز$ǩhV/)`$Iǩ\WU1)eV DZ]ս1,ؼDZ/-H$I ǩ/-Iǩ **1/IDZǩ11I$I$%1,9DZ~1,9v$DZ~_U3,O$IDZWU=3[2@DZfZ4%!lڶmDZ 1/I$IDZǩ1-$AɐDZǩ1/H$IDZǩ3/I!ADZǩ+3-&DZ 3,?DZ-ĦF-,2L$EhVV3O$IEEWU%4Oz%EPOxF1UWTp I$I91 IȐ 91 dH91 $@91 &9f1 Qc;91~_ $91$I$11I$I$9 I$I11+I$IH11. I$m 91U_ I91U+ d-9!xx` ww1 --  I 91* I$BD! I A) `&K%1`X\ 9pi9  Ƽ9( '91 N91WU m;91}mk1E)*H&m:1E)f1!*m51e)`$I$1E) 1E) +`$I$1E)$A$I&1E)6`ۖ$1E)WH$@$e)E)!A$$1E)/6`I$1E) &L$E)XV@!f1 @%1)8ۺ-1`I$f1b& I1E)+I$I$9 I$I$9  11 $ 69%)*~ 1 9e)  91 m;91 @n?91 WUm?Be)UUmOBE)UUIBE)UUBɟBe)`UUЖIBE) жIB1UUжI$B1UUжI$B1UU?B1UUЖBE)Uж'B1UUPI$B1UUжI$B1UUжO$BE)H'Be)UUmI$1E).? mI$9E)UU I9E)UU # I9E) m ɟ9E) @I$B1WUU @'9E) /m'9E)WU O9E)UU mAE) S֒9E) Od; 9E)UU ۭ 9E) cm9e)I$um1E)UUWIt1E)*C&d1E)zzH$IE)! !@1E)&m&1E)^WWؖnI1E)mm:1E) z^IĆ1E)U`S6;1E) * c9E)*USا91U qe:91 W q91  -&91 _ I91 I91 Ф91 d A) $C@A) I A) tB" 91 mm691 IBے$91 IҦX 91 $ 8P1IIPH/+WiP-- qS7fi--/+)2!#$9@@`P I91 I$I$B$! H$L91 I 91* HT9!6  $:1  I$ɐ91  $I$:1 $II$91 I$91 I$ 91 I$L91I$I$g9*$I$91 @!91 6lm91* 91( I$I$A9UUU $I$y9UUU1I$9UU3 @/$9U4 oQ?۶ c$DZEXV=#۶mȹ4-@ DZ4) DZWT4)viDZ/54)%ZDZW4-vl'`DZ3(MvZ'*1# 1@fi3fi4#d43DZ4@HDZEP4 DZE43@DZ41K-DZ4,i1"3h_,3iE~ꨀ#  hqSc Ea_ # q1zIB# X$!UM;"HP!UWhii P!UUUp !@@ !I$I$d!d I$I$d!d I$I$$!!% $!I$I$$!!I$I$$!!I$I$$!! $! $! II$$!! *I$I$$!! << I$I$$!!I$I$d!d I$I$d!d I$I$e)I$I$d!d $@ !b`$!$!   @L$$!xIIE)!$I`$$!a I$I$$!!I$I$e)I$I$$!!I$I$$!!H$I$$!!px$ $!    A$E)!{}$!I$I$E)$$LB9W>I$$HH!UU IH$!U H! I$IPH{+*I IXH*IĶI `PU . iP* ۖ\qPZo- EXmIn$%1 V$H$E$)TUB$I$f$!PPUU,I $)%,%9I -) 1- A41I ِ DZ***43DZ44I$I$%44I$I$%44I$I$%4$DZEP4DZE44I$I$%?4 I$蹧??4H$@$蹧4  DZE)@@@@)( )(@ )(I)(lH֤E)@E)!z HE)!I$I$1I$I$E)$! E)| E)!I$I$E)$! E)!@&HE)!Z^dB&$@%) ZZ !AE)!I$I$1I$I$1I$I$E)$! E)!ꪪ  E)!KKJ I$!**??I$I$E)$!I$I$1I$I$E)$!E)!z @E) %H$H$E)!^^^ZB@E)k !@E) I$I$1@$E)!I$I$1H$H$E)!^VV^  E)! E)!jjE)!I$I$1I$I$E)$!I$I$1I$I$E)$!*I$I$E)$!I$I$E)$!H E)!ꪪI$I$E)!IIE)!I$I$H%)UUUI$I$H%)U@H$!U$H!UI$I$PHI$IPH[P8X%@$P8[PPۖmP8 I$PHIdIP8=I$$IPHIB$ P@IB$ XHI۶`$)-GmX$)ZUhmv:%QU_H$I$$!\^!!E))I$I$1I$I$1 IE)! E)$!H$IE)!^W@ E)!I$I$e)I$H$)bI I$!AA&I%)AI$I$ .)I$I$E)Aꮘi4I$E)IJ /M@& ) h$M IJꨚJ( 0`ظ$$)xV7p$I$ș \UUU!A$IE) =6lIe) Ͽ$I$E)!*m;ql1ꛂ B %)!IJ$)U5 e$IH)ֈ6lor˶mŶm k⦪m6 .z$A2$Is *j퀶1ۯkR4I.jJ֕_N?ښK I$N}o۶m ⫪$r[^3.k⛢cwmI jcL۶m.*ڦ*O6.ش Ҩj(jڀv`۶Mo;"$H `I${&%)UW\x@%) I I9%)UEUmh۶E)!h۶i۴E1!I8Iq%)uUUN9$9 -k$I.jڪr+C k⨫nvظmۏ?UUUp}6koėO8.DUuc$H!E)bi.m۴iנE)*0%)`I$2e)kM׺1ꦺ 89 RI$ $UUS@I rn۵m..k⫪*jhJh;A$N*,m,II.k⮲h$$ .Jڪ\붍*1@zmu-⪕*W6!6nN*ڪBpMmnp$$I.k⪉֡II$I$$!! $I!%)-I$ IH!UU I$H!UUdH(**H$IPHI$ PH I$IXH m&I `PUտ* n qP*vIE`Uݿ*%f` %7 fq6H$E!TU%I$f!XUUp8c;$AwI$I$A !$@!b`$!I$I$$!! II$e)H$Ie)I$I$e) OdIh$! NiP*pqwEi/--%+Nf----3-ِ ݐ 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%43  DZ1I$I$E)UUUT $E)!I$I$1 $)(  )( E)$!*E)!I$I$1IE)!**5I$I$1 I1@E)!Z***I$I$E)$!$E)!I$I%)!UUHE)!$AdB&E)!PXII1 )(I$I$1I$ 1H$!$E)!Y$C2E)jj E)% I$I$E)$!I$I$E)$!  E)!bb$AIE)!I$I$1I$I$E)!I$IE)!I$I$E)$! e)!II$!???HE)!I$I$1I$I$E)$!@$E)!ZZI$I$E)$!HE)!־I$I$HE)UUI$I$!`A$IdB&P!PT2!$P$!TUUN$X!UUUE)!I$I$1I$I$1I$I$1L$L$E)E)!I$I$E)$!I$I$1I$I$1$@E) H$E)$! E)! E)``!20%) I%)?տI$I$1I$I$1@$E)!ZZI$I$E)a IE)!I$I$1 E)!E)!IE)!I$I$1 E)!I$$!!(H$HB$0$!II$(pI$I$!!*{I$A$f1bI$I$aI$I$!*L$I %) I$IӢ%)bɊA$I$! +# mѶAf1*E)! G9 9 Ij$!U% )I$A%a)}tX4lN7kl5v[nks/`,Zn*ڊΒN?`8ɑ ˁN*ڬw5چjnΟtlٖo꾿7$I N.GOض-nN Ҩj`$ 0J pH INk⊚,I A ꪂzHbh.⣢΀)I24O.jĒm:o@.?څho۶orھm߿7h}ۖ,"N*ڮJ`6nʶ Jڪ pk@mۖa۶ k⪉긅EӶj۶ bM'1)V\xI$K$e)$)acf1"jE) j*m8}ۆ1 s 'A_) %pmso?p$$( k⪩H|D*<{g.ⷼΈNեuA݌#K..jC'M$J `XVWAlE)*?1m6f1Vc'N!1 iUII$I$1? yw/eQ!-  ywdeQ/+t9ɟ-&I$ۧ-U/I=ȱUp=U1H$I$!TTUUH!< $!I$I >!I$I$e) !@$H! ! I$I$d!d I$I$d!d @$H$!hI$I$ !+**  ! !$@$!k{I$I$!I$I$E)I$I$d!d I$I$E)$H$!jz^II!% !**!H!(( $!I$I$!I!?*I$I$E)H! !I$I$!^^^V !++*I$I$E) !@@! !I$I8 UUU I$8!UI$I$80I$I$@!  H j@$@ @TUH$I$HTUUU ! I$I$E)I$I$d!d   ! ! @$@$!I$I$$!B! ! * I$I$d!d I$I$E)I$I$E) @$!I$I$!  !  !I$I$d!d $@!I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$E)I$I$E)I$I$E)H!(($H!  ! @@!I$IH@//+qWq`H---- qEi-- " $ɛ܆%q)!ɕ FU%)!!2`$f%!I$ %%I$I$)% $I$%`-f`j)L$IfVU%)!@mf %!I$ ?%!@$I$,۴ ,!E* @(j$m>fE)XPZzHm`E)1  e)E)oj)(I$I$1 H$H$1`H&dBE)!ت`&`&E)!I$I$E)! E)A(&I$ E)! $I$E)$!  I 1`E) I$I$E)$!  E)!`I2E)!pzz}tE) /IE)&.[34mE)`a`E))( )(I 1HA1`&@E)յ- H8 H@ېivP8 ==]iXHjһ/IfPյ  0]ۆi + L%yVU5/YN E -(` ٧ -)$I D/,Ii[$ǩ-,$I$E-)" E/$@$EPPP/iE/%I /%0@M/,H$MҶǩ--I$I$/-I$ ǩ //I$I$%/)%ǩZ/)9&I$ǩ^UU1)IiQDZUU1))AA(DZ1- $I$DZ/,mۢm&ǩ/,(ڦIǩ1-I$ IDZ1,a<;DZ1%,6DZ~-@$BB&EPPPZ, E%4W @%y.4JI$DZE UU3PߗF`-I%fU 1!!m$ DZ*4-I @DZ 4/ IR$DZǩ 4/h$IDZǩ4R"$B"$DZEPPPP4! CDZE  4%@DZ-4+ z-he1p I$ ۧIU׼@HH1E)Эm61E) @$$1E)(W$$1E)WU0I$f1E)ZUU$I$e)$!I$I$E)$!*I$I$1I$I$1I$I$E)$!I$I$E)$!*I$I1I$IBe)E)UUUI$Ie)E)UUUI1E)UIҶa1E)U늊I۶m1E)*IB&1E)ꨠ !1E)**&)1$!@O$O1U, v9E) Ib۔$91 m&91 IBR91 Nm91 imm91 m ֶ99_+ il[۶99}   I91  I191@ *At9! % Kh9!. "mT91`  M9b5 (c'91 I$91 ِnI$91 + $ɶ$91 $I$91 I$91  $I$91 tI$91/ &LB&91I$I$g9*I91$H$91I$I$g9* !#-1p@I\1 ?'  2$ 91ꪪI$I$)I)I$I$g9* 11$11$11$11@ 11BI$I$g9*I$I$g9*I$I$g9* !!I91 91*M~@181e) $I$)I) @!C291@$I$91 $I$91 `1;91 i'I$91  $91 h'I$91 `91 :$91M'/i1A\ 9AF9 (  "m;91 vn91* DQ91 (B%) nm99 I 99 h$K&91 &C!d91 ! (B%) Mn99W MI$I9E) I&A91 C$'91~( $ 91յ O$H1a^ܠ qn@9 IZ 1E)vR6A1E)WmےI1E)UI$m `1E)UUWI&m1E)UUjI$IE)$!*$H$E)!IE)!  H$HE)I PH?//)ɟX  ɝ % Վ:eb'If1jhZZ @ 6891 U  I-91  4.9E)j Ry9 $II9E) mӶ۶ 91 IB91 59``X1A*-/ Nlǫ91UWޠI$I&91UUW^I$I$11+ -I$91 bI91 ִ91 91* @ 91 91 H$H 91 $H2$I91ꪪI$I)I) :1 (9$!`` XI1'  -9e)j Z9?q9$!x1$!- O$`P1aVܰ p $I1  @ 91 91 I$I$B$! I$I$BD!- I$9-UU/pI$9UU, `9++#[mֶ1 N}/3 f@ 41 ٖlDZ *43DZ 44I$I$%44I$I$%44I$I$%44I$I$%43@DZ41KmDZ4/mDZꪨ4,I3)v IW1#3H_/öIW,yLHEݪ) HE_# @%yW  IfqWS# leaWc$ iEX_ ORc H%yXU Ol iiP_Ib' mhH_tB H`(^I&lP!U~I$$P!UUzI$I$P!UUUPI$I$d!d I$I$d!d @! $ALH;$BH!UU HI$IPHI$ PH Iv$ X8IĶI `PU -7 qP - %yX- E`mYnI$I$9AI$H$f1I$I%)i۶m[E)II$E)!?[mfE) 9?iI ե R9YdH.)ʭ*P۶qېm. Ҫ*rHH k⊪*_M#HN*z-mڶ.w8.J-j*օm۶Co܈a}o7a<,-ꪋjbmj0@_E5m۶{ڃU}NⲩK VUUT֎-۶nc+INJ*B鼕+2$I-hY$H. YUVU[$l۶St#ٸ k⪊"p$A%-k*kmW7b.Jڪnko6m.kn>w0@֚ I$nuU7eۊmNȹzꪨzI${&*!UV\p݆mi%)A I!$E)!m$-*e1vd2vle)h <$fi%!UUpt( %ƒ $y&NU]Ye;.fJw`i؆5JڪxZ$ɐK Ҫ* ='J)`x^'m;E)! AȄ E)!-4m&E)bjI$I$E)!YIe9=/ qys.UqEA-+ qwsTi/++qR +1)1JP ++1 @$!@@PPI$I$d!d  !@$I$!xz^WI !-- I$I$e)I$I$e) !  ! !//I$I$d!d  !I$I$!jZZ^I$I$!I$I$d!d I$I$e)I$I$E)H$H$!I !////I$I$E)I$I$E)$@!XXH$I$!^^^V ! I$I$E) @$! XT!(  !ࠨI!** $@$!pp!!$!I$I$! !  $H$!/I$I$d!d  ! @$8!UUI$I$8I$I$@ I$I@8UI@!*JTUI$I$@!TUUU@  !I$I$$!B!I$I$d!d H$@!*$@ ! I$! %%H$H$!I$I$!I$I$E)I$I$E)I$I$d!d I$I$E)I$I$E)@$@$!`hxxI$I$! !I$I$d!d I$I$e)I$I$e)$@!$@$! ! >I$I$d!d I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$@! H@-) yW7qiH-//%ڡe״Ei˻# ߜ`%q*)4H4If%!@%!%%I$I$%lX$fXU)$C!fj))!@lضmf %%I$I$%!@$@%!I?$I$fEGUUU80EE)p```4`E)`0E)I$I$1 H)(I$I$1 @$$e)E)^^rXI0C2E)!bbI0E)!cE)!k%k2lE)(I$I E)$!* I$I$E)$!  I$1I$I$E)$!(I$I$1 E)` %)鋂  $! /**E)!z訪HHE)! )( )(I$I$)( $9E)UUU@ @$HE)% @H@ !I$AP@** $PH Bɟ%y@?$fX% f%qbT+ypI%yU] -ɐ @E%%-)%R$%/)L$ bǩWU/)!- $ǩ=k|U-)HH$-,I -%PB&/XI4 EX*/I$IHEUUU/@"$EPP- E /,miǩ++/-I$H$ǩ/)6`۶-ǩj/% k۴f1)I$IDZUUU1)IDZU1-$I$DZ/,m۶-Z4ǩ/,m mǩ1,I$IlDZUUկ1,I%DZ_1,M!e 1E)) I$L1E) 2$1E)I&I 9E)*vB6H1E) m;&91U mo91* v̑$91W iRH91 mm۰91 DJ91. &,9E)@ 9 - mm$91 $91 k$91 @۾=9p m99 @m;91 6I$91@#(I1!`Id 1!5@$I$91I$I$g9*11( I$I91 I$IB91 m۶m91 I$ 91 I$ 91 m91 m'$91 I$ H91 [ml91 Mm91 ! 91 Mm۰m91 Imm91* -M4i91o 9 @A) I$@ BD! I$I$BD! IIBD! IA) IA) IB$IA) ڿ'r9E)XV\p KDA9E)  I$IBD! mm۶!91 $)IB91 @ A) km`91 mm4-91` $m,9 % IB 91 I91 Ib$E 91* m691 ];91 I91 I$[m91 I:91 I$Mm91 I$I91 I$IB91 I$I&91I$I$)I)I$Ig9* &I$91$I$91 6I$91 ֶI$91 dI$91  @$91 m$91 91  I"$91  IK91 &99 _ mۖm99 km۰m99^* IBA) N":(91 u‘h91W C(H91 $ `91Uժ NZ I91U_^mBH1E)^MQ1E)u(q$r'He) !XH/+yww/%yX--//&1u` E--/ )@$P$E)PPPTI$e) mI$1E)*U%JB&f1a`X\zI$I$!A Ky9 0J$i;91.U  I$91 #aQ9E)`* ?Qn=9 ` 0 9 mm6l91 t91~ Ib; I91 Im 91H$H$116m611 z~ lI$91 M$91*_  91 - I$I$BD! I 91 I$H91 291ꪪ NJ$I1&P&z<1px I 9 - 91 $91 I$ 91I$I 91 $I$)I) I$91* ۶ ݐ$91 A) H A) $H$BD! $I$y9+UUU& I$9UU( $A'Ć9+(Mhc 3@`$זf 4&  43 $DZ 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%43IDZ41ImDZ4/mDZ4,I3)v¶IW1%C@/ C@_,@fW)@EU%M醡qh@Mfac# HfiUR# hE`URc h%yXW b# IqP_Ib;k iiPUKҶ )` ~Imۖ`P!U IHP!I$IPHI$ PH IIXH*mm `PU m qP . EX -9 fiU 6 fq$p$E XV $I$f!pUU'O$eI__I$I$d!d I$I$e)I$I$E)I$I$d!d I$I$d!d I$ !I$I$b !I$!<!$H$!ؠI$!bj A !b@$I!+!A$AH!5A X8 11E`----)f----3, 44I$I$%4P%J$DZEPXTT4 DZE44I$I$%44I$I$%44I$I$%4DZE@4DZE44I$I$%44I$I$%3H$@$E)TTPP HE)!(<e)%)ꪀ IE) I$I$e)E)I$H$E)! E)! E)!HE)!H$A$1I$1H$H$1E)$!I$I$E)$!H E)!VVTVE)!)($)()(HH$1 0E)!@@@$!$@$E)!I$I$1I$I$E)$!**I$ E)$!I$I$E)$!*I$I$1$$H$!E)!I$ 1 1 IE)!/ I$I$1L&`&%)!!E)+ I$I$E)$!E)!***>I$I$E)$!I$I$1I$I$HE)UUI$I$!`A$B  P$!@@PPI$I$1I$I$1`& 2E) ^\Xx!!E) 5I$I$1I$I$1I$I$E)$!@0 E)p  E) ///I$I$E)$!I$I$1 E)!I$$!!/E)!I$I$1 e)!E)!L$`&E) WVT\@E)!I$I$E)$!**I$I$1@$ E)!zzhI$I$$!!=?7I$I$1I$I$1I$I$1$@$E)!ZZE)!I$I$E)$!@E)!Z$AH&$!*I@$)mmI(Z IR@EAULCE)6M$I$)ꚪ* !J !H$E)*I$ $E)!_?1 Hksۆ1Sp  p_cM[NzmeN;tm۶Qk??U}ضq۶l⨪i۶} ꩯ}vKvo7o>) jcmmZoJڪ p݀e6o.k+܋m۴-ʪ}ڶm۰smѴmۖnk*ĭA$I$. QTUUc۲mۦNJjܕm۶o=h۶mˀNk⪪&$I$I z]L۰>zn2| ⪮kR ΀6lNpvlök۰kk۲m6m kjwm߮cÏ{3qEQhMI'N' !U]V\!C@$)C l۶h봆1 m"e1cmضE)JI$'@` =Ŷm.O< @WJ' hz;Ei TUUuضmE)HA$f1!VyU$Ad$%)b*LI$%)bq$ DE)!* qrP a$!++ yys/e fY+&qR+/%yrP -+ 1 !@1H$I$TUUU$@! $!ZI$I$!W !  !!I$I$E)I$I$E)I$I$d!d I$I$d!d $@$!I$I$!^^_WI!+*I$I$e)I$I$d!d  $!I$I$$!b ! I$I$d!d I$I$E) !I$I$!VWՕ!I$I$d!d H!T!$I$!! I$I$E)I$I$d!d I !I$I$!II! !@$I!.  8!UUU$H$8!UI I$@0I$I$@! I8 P 8!PTUUI!I$I$E)@$@$!I$I!?I$I$d!d $H$!! I$I$d!d @$!I$I$ I$I!/?$!! I$I$d!d  !(* !H$H$!XXX^I$I$!Օ ! I$I$d!d I$I$d!d I$I$d!d I$I$d!d !I$H!<  @$!`h !I$I$E)I$I$E)H!<<I$I$E)I$I$d!d I$I$@! P@/= iH+۹ fa= #0 F %#%%I$I$)%A$I$)øK$fV!I$IEUUU5)!!$H$f%! I??)$AI$EUU)%I$H$)۶ 6,f*b)‚9NħEbx Ӗ$Df%Yj I$I$e)E)+e)E)'I$I$e)E)E) ͐E)'hXE)b H E)!C!E)!₋I!E)! E)! I$I1I$I$E)$!(*(HH$)(H$@$E)!I$I$1I$I E)!II$E)! HH$$!($I$E)! E)!I$I$)(dE) (AE!7$H$HE)5 I$I$H@*$I$A"P@*J-IP@-Iܹu E@? @fX-" l%qZU , 9wK %y -(0 ɧ-)$ID$/) pǩ-)$J$$-)ID$I$-%$I(&-%B2I$/%IPI /%I۴M/I$ET/B"iEP- 0E-, -) P$E-M$E* V/$ @E/,4M$ǩ/,mI4ǩ//,mQM$ǩ*1,I$IlDZUUտ1,-DZ~1%`&ǩEPXX,IۧE ,$I$E`WUU4I$0EUU4&DZEZ4P$IE`VU/I! 8EU p1$IE3%$I DZ@4`ΔLDZf/4-c۶m[DZǩ?3-ImDZ?3/!$IDZǩ41I$I%4-$E,;DZǩ*4-ڎDZ3/I$IDZǩ/3/IDZǩ/31%3-[lDZ/!bz蠠&O$z=E)WV\pI$I1I$Ie)E)UUU/I$$ 1%)UUIl1E)UIm61E)" I$1E)*IҤm 1e)*mҶk 1e)( ˖$9 m$ 91U+ v91 i91 91+ $ H&A) I$A) H$a$A)  QI:91 ]$91 m$91 MJ291* س'O$1Ax^DIjf1b%5- ФNu1E).I$I$g9*I$Ig9*#1` S$9%- m691 H91* Mm91 vLR 91 aB 91 I91 !I$@91 I$@ BD! I$I$BD! $I$BD! IBD! I$@A) I$BD! @$91  91 * @ A$BD! I BD! IB2HA) I$H$BD! $@$:1  91**  A) A) $I$BD! I$I$BD! I$BD! A) I$A) I$(B%) (¨69$!h $Ii9f1 I$BD!  5X#9!px WyS9 /-/ I$H$A) H$H$BD! @5 9`` I9A' $AA) IB A) !A$IA) @dB&A) I$91( $!A) LB&`&A) !A$I2A) I$A) $C2$A) $9! `$A) mXm91 im91* t"91 Il91 IҶ91 NkH91 I$k 91 I$m91I$I91 $I$91I$I$)I) !I$91  $I$91 `I$91 D$91 $$91 I91 +ګ391x|z ``91 $I 99*. $I299 r"тDI91 N,eI9UUUH$N$%IHTWWUiS6e`P-yww7E`--/)1`e-/+)H$H$E)TTTUI$I$1I$I$1E)@E)IE)% ÖmI$1E)UUm$1E)UP-1E)p9Jr1X o/׶9% +  91 6l햶91 @A) I$BD! [m91 d&z=9E)z^VX %n99E) I$M491WW_zII11?+ &M$91/ I$91 91 91 H$91 "I 9%)@p I9E)+/ I$I$BD! I$I$BD! I$I$B$! 91 L091* I$[91 I$I&91 I$I$91 ni۶91* .99A` ɕ9b5 I A) $H$BD!'m۶ye _(JI$9 UU+ 0n%93֒Eq*4Hfi43$DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%43HDZ41KlDZ4/m#DZꪨ4-NB" H3 R#9@%yppp1 ɒH%ye/ )I%q-Cf+~ IE_& HEW" R if$q R# ifiW6 IEPj& EyH mͤ'i@ꖞ< o$iH %' qP- EX*- E` }%7 f$q*#I$f) U L$f!VU x$I$f \WUUI! ! I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d ! $!jI$I$==!H! ! I$I$e)!I$I$d!d  ! I H!%!!`P1q7E`----) i3 $EyT44I$I$%4KDZET44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4@$@$e)PPPPI$I$e)E)I$I$e)E)I$I$e)E)e)E) H$He)E)VVT $d&E)!zxE)! 1@$I 1$ AE)!// H$@$)(k[2E)P@@E)`&@$E) \ZZZ!E)  E)! mdɀuE):5 d$E)!PPH$H$)(I$I$)(`&`0E)!xpp`IIE)!55I$I$1I$I$E)$!@$E)!I$I$E)$!****I$I$1 &E)!VV\\@E)! -  )( 1I$ 1I$I$1`&0E)!!E)!I$I$E)$!HE)!>  0 E)``@E)!  H$!IIPH++ dB&P%)TTUU۰E)!H$H$10 E) x`` I! **: E)!j$E)(+ I$I$E)! E)!jꪪIL$%) UI$I$E)$!I$I$E)$! I$I$E)!I$E)!I$I$$!!+???I$I$1e)!ꪪE)! E)!XRrb!@$AE)!%5HE)!**I$I$1I$I$E)!I$H$$!!E)!I$I$1I$I$1 E)! E)!I$I$E)$!**I$I$1@E) ZI$I$H$!UItiQ@+ @ %Y$9ZS6MEI$)^{a']ۆ1?_dHdH$%) !b@!b;H,f1a뤨?OIյ)aPȩ pFfmk⫞?D eTwmӺ .e]m.*b I$H$2UUTUkFFn k2ڃ{lwoII ꦪhơ_NUUU΅-ِ-ׂ.em[4uoJڪbċTH$M.꒪ƈ )&y2.ꨨim;6,o WUETʀ EN*+*΋$K!INꚩp i3Hoj⦊h4@$IrJ.*mۢަn⪊ʚ#9Cq ꪪ*jʣl˶ WYH2N*ڢje<Jmm۶Av-Jڪ!*Omm. ҊMXH. ҂hj۶.^Us:(XhukچAAj-ڶmE)I$I!e)!?m۶kѴE) >Ff1AI$$q/=I$ȹ UU;'I$ȱUUfQ| ??9?1lv$e1H$H$ @ JI$f1*M$ $E) wd fI %) yw.gyeI+ "qys.eq+, 1r+*/"  Ey@@@@16b'v$f!JZZV!I$I$d!d H$I$!^I !-/ I$I$e)I$I$e)H$!(XI$I$$!!{{c!I$I$e)I$I$d!d H$H$!jzI$I$!Օ!* I$I$e)$!I$H$!II!I$I$E)I$I$d!d @$@! A$!jjzI !5% I$I$E)I$I$d!d @$! $!I$I$E)a!I$I$E)$I!__H$ !I$H$! !* I$I$E)!I$H0H!UU@$I$b@ I$I$@0I$I@8U 8!PT@!TUUU !@ ! !I$I$!VI !?///I$I$d!d I$I$E)H!***H!(  !I$I$$!BI$ !__I$I$E)I$I$E)!I$I$E)!I$I$!VUUWII!%-I!? !!@$!0W! I$I$E)aIH$!H!**I$I$E)aI$I$d!d  ! !  !***I$I$d!d I$I$@! $I$H8 qqH5- P `q)+++#$I$EW%0f%%I$I$% (p$E@\W%XE5)!B&L$f! @$f@PT%IdI f%)I$$IEUU)ضm۸1fj)$N$ExVWU%ID#EU5M%%J$Eyp\I$J$EQE)UWTTvhmE)(I$I$e)E)Ȃ@%E) pE)!I$I$e)E)ŠI$HE)!$E) & I E)! .>۰ ME).&H$ )(I$I$E)!A)(@$ )(öm[34E)``idE)a 5II$E)!**`& E) \\^X E)!- IE)! *@&XE)bXpk P`A$- km۶HE) I$I$H@  H@@ɟ`@U=ɝwDEH%  ,Eip( %qU ,D%y -)$HR$$-)IDI $,%$@$ ,)HI$,) D,%`$,%L$I*-%  I* -,@$I$D-,I$@$E/H$J"ETTT/E-%1-%#&dB&/%iT /r%PE\XP-E-) $E-)IE1,IxDZU1)RӶDZ_U-(1E`,@"3L$EPlVU4$EW%40=Ep4&ɟE)qbg E]+/DI E)4S"%"EPP@4 @HDZE3-Xm۶DZǩ1, lDZ3/!H2I$DZǩ41I$ɶa%4-$%)&DZ*4-,;N$DZ3-M$IbDZ4-m$DDZ 31 $I%4K$DZETW33I$I$%31DZ3+#zh-Z#HE)`I$Me)UUVTI 1E)**LH$1E)*Im91UU Il&91U Ib91 qn$@91 IB$@A) $A) H$A) $91 `691 ذmm$91 M$91 @2I$91H$I$g9*I$I$g9*I$I$g9*I$I)I) mӶm 91 N29V !O͒& 9E)i [A9E)յ/ IB$@91 I$I$BD! L$91*  I9f1 I$I$BD! I$BD! I$BD! I$I$BD! I$BD! I A) I$I$B$! I$BD! $I!A) I$L&BD! I$I$B$! $I$BD! H(B%) mk91 I$I91*  H$H$BD! I$I$B$! (B%) `B$IA) $C 91 !I$I91* !$A) L$L0A) I$I$B$! I$I$B$! I$I BD! I BD! I$I$A) I$IA) {'|1AX )`9  I$I$B$! @91r* @9E) I$IA) H$A) dH$ 91 1$HI91 I A) &`B&A)  I91* H$@$BD! IȐ$A91* !$AA) H$H$BD! A$I$BD! 9E). V 9e)K$O1AV8 II9%)   BD! $I$BD! h$I$91 mb91 0I591`  N91 ) I(B%) ɄA) I$I$A) k2l0 91 Iu9f1 IBڀ@91 Ib;$) 91 I$ 91 I$L91I$I$91I$I$g9*I$I$g9*  I$91/ @I$91 D$91  I691 ""%H95IIPH// qw1iP-/^?EX+pp ACIB'H1E)U^I$1E)UUzI$I1E)UUUzE).I$I$E)$!I$I$1I$I$1I$I$1I$I$1$$I$e)E) UUU@I$1E)UU m1E)*@Ħ1E) `[I$91*UU 0Im91U  91* @0I9e)` i 91 hռ9( MmV`91 v":(91 I$k`91I$I$11 $I$11 I$91 `v9E) I09E)/ I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$I$BD! @(9E)`~1!' "H9E)jꪠ1a% nI91* 91  A) $A) I$H$BD!! $I$95UUU/ {I$9-U3 94  5EY`41ٖ$DZ 43DZ*44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%3J$ODEWW44I$I$%44I$I$%4l`&DZEXX4$DZf41I-DZ4-CDZ3,1(C1"öHW-CU,Ie(IEW"O\H%yկ?O$AXWW(6$톡ioj@ $K6>E! Jz I$f!UUhm۶A ! H!II$!>  !!  I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d  !A @$!jjjI$I$??=I$I$E)aI$I$e)I$I$d!d  ! / H$!bذI$I$d!d I$I$d!d $@$H2H!%@ XX8**/7q7EX//--) - i*1J$"#@EyTTh40 DZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4  e)@@@@H$A$e)E) @$e)!P!E)!Ie)E)/@$e)E)XP@$@$E)! E)! I1  )( 1@$ )(A)(I$@$1@0 E)ࠠ!I$%) $!@E)! @$E)!PP$E)!@$@$E) )(0 E)!`@@@$A$E)!H$H$1I$I$1I$I$1I$I$1I$I$1[[5E)pn E) @$AE)!II1)(I$I1[-غE)!x```  E) 55I$I$E)$!*I$I$E)$! I$A E)! HE)UUUI$I$H%) $PE)@@P$C$ E)! @$@E)! @$@$1 E)!‚IH$!**E)!jE)! I$I$E)$!I$I$E)$! L$`&E)!UWVVE)! -I$I$1I)(I$I$E)!$ &`%)XXE)!I$I$1I$I$E)$! E)!Bʊ*I$I$$!!UVI$I$E)!I$I$E)!I$I$1@$@$E)!zZ I$!I$I$1HE)!*I$I$E)$!I$H$E)!V^E) **I$I$1I$I$E)$!I$I$H%)vYH/- ])EaY- [ hEaEAzu<'j9EA$!^Xxv8N$e)nljmІ1 IdHE)I $1!UE]&ɑI$!U-tJN#)p1jfNkm۶1ajڪjwmvNʕI'NNU]W}{mo⾵w Y-I0 'eE]GnBm : HmNbdFnNJꊚ !  @6Oۏ4}!I'ANk⩪+*\-۶oJڊj}jf\߲nشq.k}mQ6?ɒ$ $ eUEU ؒm.ꎪz Ρw'NUUΎoĶmNc=C,I-JfĒ.YTUUrmhӶN|ĕI .UEpmYmokʕI$I$NUQUUUc0l +wM2'#0J)VXp`(B?vZbe):@a۶e1*j @!!I$I$D)im6E)A*'f1q.1qd$H$%)I$I %)I$I$E)!&I$I$!bI9eAb/+ yw.eiE9/+ ysT i/+)yN/+ /&)U@+1$!@P!!$H$!I$I!*!I$I$d!d @$!I$@!ZZ I$I$d!d H$!TI$I$e)I$I$E)H$I$!Z^VWI$I!*! !@@ !I$I$$!bI!/ $!*$@$!A$!@$I$!X^VV ! I$I$d!d I$I$e) ! @$H$!II!*** I$I$E)I$I$d!d I$I$E)  !I$I!!!IH!UUUI H!@&L$H8PXWUI$I@! I@8 $H$@PTU! *I$I$E)  !@@ !%)  @$!I$I$!VUUW !% I$I$E)I$I$d!d H ! !(*$@$!I$I$$!!!*I$I$E) @$!J !I$I$E)  !I$I$ ! I$I$d!d @$!hh !I!WI!I$I$E)aI$I$! !*  !//  !! I$I$d!d I$I$d!d  ! @$@  H81%yP-//+pfE- )ONNEyWWW%`@F% 8Pb;FpX)IĉCEU5)!B$L$f!!I$I$ǡ!H$HfTTT)`)۲-E+kjj)LIdE%P$I$EPTUUI fE?!'O$ECWUU/II᧩EU+u&tR'fE)^XZZfHE)8 I$H$e)E)@`E)pe)E) I$I$e)E)*((*H$H$E)$!(It؆E)b'.  AdE)!.* A$IE)!&(  )(I!IE)! dME)6> )($C$AE)! IKuE)> H$H$E)! 0 E)`nIE) -۰m E)!(((%$HE)U%@$I$H%9 I$I$H@ H@@$MiX@/y  EH%  @qrEiP+ sF%q,`H ,)X$I$h-)ID ($,%$dB&,%L$,! 4f,!@&M$f-!mvP`f+-)HHD,,I$I$D-,I$ID-, -, -%(bB&/%K$I*/) ǩ /,@$I$ǩ-,I$I$D-)IID$-&H$EXTT1@@HE/$I&)E@,)K$EHVU4IIEU4 0DZE `4=Fp,NI EWՕ -F 3)Nl6IDZUu3-i@۶DZǩ? 3!()"DZhj3mIDE*3/!I$d&DZǩ3/I$IDZǩ 4/I R$DZǩ 4/&I$DZǩ/@$1PU3$ $ǩ1U31$DZ31  $DZ3/$A ɐDZ 3O$DZEWV31$H$%43I$I %4-)$`1&Xѧx|({= h1\p cʐ91} 491U7 $A)  A) $I$BD! $I19E)j @Әn9! @I$91$I$91$R&1ApDI 1 I$I$g9* I$IB91 I$! 916 X6110| IH@91 I91 I$I$B$! @$91 91 $I91 91 I$I$B$! II$BD! kuضm91 I$BD! H$@$BD! I$I$B$! I$BD! L$L&BD! I$I$B$! IBD! $I(91 I$I$B$!  IҪ59E)` FIᖴ9E) ۶mې91 I$I$B$! 0`[691 (m;91 mM$91 6`ݖn91 II$BD! m691 $I$91 I091 $I$91 ېI91 @!I91 ** H$I$BD! I$I$B$! I$I$B$! I$I$B$! I$I$B$! $I$BD! Bm۶m91p $I$BD! I$I$B$! ڣ>9`x  I|9 -5 DڤM;91 $I$91 ېnI91 H$I$B$! I$BD! @ A$BD!  I$I91  mk&91 mt91 I$BD! H$@$BD! &#9`I1A.5/ jn91 Z I$I9e) I$IBD! !"A) I$IBD! Mf۶ 91 ۆX&91 >/9!`X^x WI 9! -% H2L$BD! I$I$B$! $$A) `$I$BD! &I$BD! @$I$BD! $A!&A) @I$A) I$I$A) ` @91 I a91 NBې$ 91 Ib;,91 I$m 91 I$M91I$I )I)8@$H1  PH  yW1%yX--% 1uS/%y--+,".9@@@P vI91 h91U dC @9!jjIĎKf1Օ&vB@1%)_I& 1E)U_I$m1E)UU۶me)!PI$I$E)$!I$I$1I$I$1I$I$1I$I$1I$e)E)UUI$1E)U@R$Ć1E)(`[$1E)* N.~9E)jI$N&1a׾( ID9e) 91 L0$IA) dB91 N"91_ I$-91I$I1f1 $I$1f1 I$91* )$91 91 I$I$BD! I$I$BD! I$I$B$! I$I$BD! $I9E)` W 9!' I$I$BD! L91 II91H$H$)I)  91* $A291 H$91 I$I$BD! I$H$BD!  A$IA9UUU- 6I$9/UU1 * IDA 3[m0 4" H41 DZ *44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4DZfp4/DZǩ44I$I$%44I$I$%43DZ41DZ41ImDZ4$I(E@3HE3)N I1%~B@_?"Ia{ݶ 5J [#a@ %j e ml;)y1rEI\1II!U)I$@H!UU` I$I!UUUI$I$(I$ $!j  ! I$I$E)I$I$E)I$I$d!d @$H$! !@$! A$@$!jjzzI$I$ I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$e)!a&I$I$e)$C$AH!% H8R9[EH/--5)p e----3-ِ 4-DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4 e)@@A$ @!R"ْ$AE) PP!I$Ie)E)Ie)$!***`2$Ie)E)PpI$d2E)!x` IE)!II$1I$I$1  )(HE)!<< E) @hE)!@  E)!zjjjIIE)!5II1I$I$1 @ E)!AE)!I$I$)(E)!@ !//IE)!I$A$1I 1H$@$1I$I$1X4:E)pImvE)%=??I$I$)(H$)(I$I$1 $2 E)!@횬bE) 便 IH$!**I$I$E)$!**I$I$E)$!***( I1I$I$H%)I$IPH+@$H$PE)PTTU )( I1@$E)  E) @@I$I&$!@!E)!I$I$E)$! ***$E)!p$E) )H$@$e)!^ZZz! 0E) %uuE) I$E)!H$@$E)!@$@ E)!ZZzj E)!I$I$E)$!** E)!E)!**H$H$E)!VT\X E)!%!$IE)! *$Id&E)!*@ E)!ZꫫI$I$$!!*((E)!**++I$I$1I$I$E)!H$@ E)!^^zj@$%)!I$I$E)$! **I$I$1I$I$HE)! PH-- PJNa$) #HAEaeQh b5R5eQ!zxxpI $E)?I$A'E)AEIE)!$IE)a۶ņ)!UUQ yk  -mMۦ횢 k⧟humۺ k)h$iAI Jڪc5AI Jڪmh7mۮ.Jn`I%.Jښ+kfuەnJ&pH!O.k∪imI!INJڢp&y nk#fȱw$IK @ ph6ڮK$I$. uVuU1I8 Muֈ]E۶o҈$ 2Nhਭ =2m6dmN⪒Ƥm۱m.ҚGNrA" ⪪jZcM.w}$I$Br ⪊J*p$I2d! kj:h[7lۆl Jڪσ$.UuUTtڶaӏk?ʀcϏmN?)#8iꨱpUI$z' UV\XO>_1?Ԩf1ꦨ?'f1zm3$1 VUFUm&I$E)A$I$9/I$I$!I$I$ A 0Y$I$%)A"I$I$!iE95 qr i%1+  yys fY+ (ysT ++/%yrT -+ 1,ٰ 0++ 1@$I$!PTUUI$I$d!d $!I$I$E(C I$! *> $!H$ !! I$I$$!!I$I$E)I$I$e)I$I$d!d  @$!jzI$I$ UUI$!**I$!@$!PPI$@$!I$I!/I$I$E)H !I!H  !`I$I!ו5%I$I$E)I$I$e) !!H$I$!I$I$! ZP!* @$!I$I$E) !I$ H UUH 0`$H8p`\WI$I@8 I$AH *R@$@$H RTUUII!/I$I$E)I$I$E) ! ! @ @$!I$I$!W!I$I$E)I$I$d!d H!<<I$I$E)H$H$!\^I$I!׽!*I$I$E)I$I$d!d !(I$I$E)$@$!`hI$I$! ! I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$E) @$!I$I$ ! ! !@$!I$I$E) ! ***@$!ࠠI$IH8UUX@///1uS7qE`---p fE-+++% ݐ IĆ+)% J$ETU)m{IFy/)!&L$f!!I$I$ǡ!!I$I$ǡ!!I$I$ǡ%"$E@@P!IпEU%Nb[$(FW?@$pb'fE@P\_/ID (EUA-C$I$ERTUU#m&mR,EE)ZZZbI$A$e)E)II$e)E)I I$e)E)۶m!E)!0 E) @$ e)E)\\xp`2I0E)!xh $IE)%/H$I$E)!)()( 1I$I$)(H@$1@$)(@$@$E)! E)!bA$@!pI`ݶl@ I$I$HbH H0$IH8+ɟw%yHՕ% OEP°! Mfi + 9n %y,% P$-)L$Ih-%$EBR"* ,% !I ,)I$,! X&f-!k$I f-!If/ -)$I$$-)IDR $)$I$EUUU-,-!6f-!Itf//%It0`* /)#Iǩ -,I$I D-) (")D/)$ ǩ%/)I@%ǩX1H"IҶET,$iZB&EXZ/$IEhU4IDZEU%4(bDZE@)H$NbETWW, HE1۴IJ$DZE* TT3$HE3-@$I$DZ1- DZ1/I$@$DZǩ3/d&!DZǩ 3-P$DZ+3I$%1P/ I$1@UU/H$I$ǩ1TUUU$9F1$$11/I$1UU/E)1 If 3,- `4,DZ4-`$IDZ1-I$!DZ1,vmlDZ1(m$EP#?f9W\Pz mK$91 $I$91  $I$91I$I$g9*&1`x I1-5  I$ 91 I91 |= @9b^` I 9A-  I$I$B$! I$I$B$! I$I$B$! I$@91W޺ 091* I$I$B$! I$I$B$! I$91  91* I$91 91* I$I BD! I$I$B$! A $BD! I$I$BD! I$BD! $91 $A$91  HҤC'91  91+ ``91j`$I$9W P 0 9$!  X-@9e)XhK9E) I$IB91 B$! @ 91 mҶ 91* I$m 91 In91 I$I$B$! I$I$BD! I„$I91 mӶ691 IҶ91 Ih I91* I$@A) I$BD! I$ BD! I$H$BD! I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$ BD! 9!` 9  mm91 MҶ91 i 91 I$ BD! I$I$BD! I$ABD! $C$ 91  M&k `91 In`91 I$I$B$! I$I$B$!  &91 δ 9E)'*  I$I$BD!  I2$C91  I$91 $!I91  @$I291 жI91** @Ӷm۶91 # $I9e)b $I91  I$I$B$! I BD! I$@ BD! I$IB$! I$I$BD! I$I$BD! I$ BD! I$I$B$! $I$BD! I$IB$! $@$BD! h'9Ax `99 / m91 A) 91 J$I$H9iviXH//++qwS7E`---)1` E--+, P$$ 0l9e) HL$99 $@(B%) m 91 m91z 391U Il91UU{$J1\^\K 1 I&1E)UWI$kl1E)UU^I$I21E)UUU^I$I$E)$!I$I$1I$I$1I$I$1I$I$e)$!*I$1E)UU6lI$1E)Uvm1E)  $1e) m$91U ۖv91 091* -ۺm9e) I$I91( I91 M&91I$I$91z I-&1E)x @nn9E) 9a( 91 I$I$BD! I$@91 I$I91* I$I$BD! @$H$91  I:1 91 ! @91* L$L091  $91 I$91/ @91 $I$BD! I$I$BD! I$I$A9UUU) [I$9=U/  OY3 )m@*4"R0I4DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4(DZE@@49DZE 43IDZ41ImDZ41ImDZH1I)UUUh3m jDZB%h/O'[-ʧUWZh/%ЪZ/6zz&գ:exz *֫:f%q~hEP|I"46i`U`I$`X!UUM$k HWm۶M$AI$I$d!d !(! H$$!@$I$!zzzzI$I$!!****I$I$d!d I$I$d!d I$I$$!!$@!A`I!'I$I$d!d $@$H!C۶M۴P8ItqwiH5) i+)--3-ِ ِ 44I$I$%44I$I$%44I$I$%44I$I$%4H'xDZET\\4DZE44I$I$%44I$I$%44I$I$%44I$I$%41,`DZ1I$I$e)UUUT$@Le)!<<  e)%)I$I$e)E)H@E)  20E)!``$ AE)!I$I$1 E) E) I$I$1 E) @ E)  E)!ˊH$!****$ E)!+/I$I$e)E)*Ie)$!**I$I$e)E)ꀀI$I$)(I$I$1 I$L$E)!WVVT!!E)!$ HE)!   )(@$ )(A  1BHE)!I$I$$!!WDB$E)!I$I$)(I$I$1 H)()(L$`&E) WVVTE)! I$I$E)$!II$1I$I$HE)  PE)@@@I$I$1 1H$H$1 E)!I$I$E)$!*  00E)!\XxX! E)! H$E)!/@ E)!x! E)) E)!jjI$IE)%I  1$C2$IE)$! E)!e) ꪪII$E)!I$I$E)!*I$I$E)!I$I$E)!DB0CE)!rbB$@ %) *%$ &E)!(@ E)!$ɄLE)!H$@ E)! I$E)!I$I$E)!HE)!*E)!jIȐ E)!UVZE)!I$I$E)!I$I$HE)I PH// nnn iH_[[ @ EiI bfa!xhI$L$E)L$I$$!Aꦬ O'I$9bwI4IE)?qle)a*i6l;%A?$jڢ %גD6 € }ߴ!m@m/ɐ K JګOIP$)Hmhm۶-jhꪪƃK.jNZC\u.*ڲmm۵vnJ⪪/m@pJ3vlo{߳Em߶_ۖ&NJڪ)khھn[oJ☺ UUUڒm۶m0oczmն}MmeN⦫*+ioL۰꟯pm_\߫}8۲ ⨢je$ 2** I$I$E)@$H$!xxX^I$I$5 !@$!I$I$d!d I$I$d!d I$I$d!d !@$H$!xI$I$$A$!!I$I$E)I$I$d!d I$I$E)I$I$d!d  @!H8***S1`H--1Ea-- )` E++ !4p$E@p\W!IIEU5 %l۶mf!!I$I$ǡ!!I$I$ǡ!!I$I$ǡ%  %EP%H$I$ETWUU)IL<8Er%P$I$EPTUU4IDH0DZEUb1$I$ExVUU%IdɆEU %ЂٶmۆFy`O<ȃ9xx y{9a )/ $H$BD!  A) I$I$BD! ۶m۶91> @ 89` PT9 % I$IBD! I$IBD! I$I$BD! I$BD! $HI$A) I$A) I$IA) H$A) H$I$A) LH$HA) @$@$A) I$BD! A) I$I$A) IA) I$I$BD! I BD! IA) A) HA) IJ$91 I$HBD! mӶ:`91 I];91* I$I$B$! I$IB$! I$I$BD! 091 ! 91  91 lI91. @I$BD! mmM91 $A) ۆan91 L$$I91( ! CA) I$IBD! j9x 1yR9+ 91 I$IBD! $I)H9UI$IPHxqiP-yuS7fi--/, f-) +J$HǙTTP $1$! 퐴I$91 vI$91* m$91 ðmۖ$91 @$A) (B%) R-IJ91 q"ђ$91 l91^ I: H91U_vb I9e)] h1E)~ꪀI56l1E)UI$1E)UUI$I0e)$!I$I$E)$!I$I$1I$I$E)$!I$I$E)$! 퐴I$1E)UUai$1E)Umۖ1E)I$9E)* mn91*U  $91* $91 IB2A) I$`A) }"'m9E)W^x /㲔9$!oI$LQ9aU׾ 0I$I1! I$91 DH691 91 I$I$BD! I$H91 B$! $H$91 I 91** I$I$B$!  91說* I$91 m۶m91(&L"'1E) Ir9E) + 91 I$I$BD! $I$Y9UUU, I䆡9=1"M 3, w +4 Ea4@DZfy4DZfy44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%c1ޖI$ʧ5U}&R'ʆW^1S f^~ C )f%q~@d=OEXꪵRd E`W Rl iqXW NR# iiP_I$ `PU_LB" IX(VN"HP UI$P!UU`I$IHՠL$I&1___XI$I$ b*.7'I$I$E)aI$I$d!d I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d  $@H//M&X8*ɝqEH55/( i 3+p /44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%43  DZ1H$H$E)TTTTI 1" @!dB&dBe)E)PPPe)E) E)!I$I$$!!VI$I$E)$!1 4E)`ذ ې E)*%I$I$)(I$I$1 I$I$1I$I$$!!TTTE)!I$I$e)E)*++ I$I$e)E)I$I$1"I$I$1 I$I$e)E)H$`&E)!\\XP E)! %%%)(IH1 )( 1I$I$)($$`&E)!WVVTa$E)!y}E)!I$I$e)E)*I$I$e)E)I$I$)(k&X5E)!!E) //I$I$1 A$HE)I$IPHaB&$ PE)PPTTI$I$1II1@$@ )(1 H$@$)(k6:`E) || $!***I$A$E)!I$I$E)! A$ E)!$I$E)! I$H$E)!UWV\$!E)! II$1HE)!I$H$1H$H$E)!V^^ZE)!I$I$E)!  1I$I$E)$! *(IڤK%)@E)! E)! I$I$)( IE)!訠I$I$e)E)! I$I$E)! * I$A E)!@ E)!zj$@ %)!UI$I$E)! $ IH%) PH* 1S1u%iX---- qfyEi頋3 fqeIzx O8r9fIa~xI$A$E)ꢓI$I $!I$ $$!) $!*:?9m۴mtE)+ᐘI$k %U 8 \$C4O *j*wٖ k⊘\& I2.*ګjmmN Jk$i!A.Jڪ)ض.ĕYvl{.߿?΅nҮh[n_wd@dI.HI$TUWWDD$I )H$$TVyUk4 $Hn*ڮpٶm۲aNk⩪j۶mY-ꪪt&I2$ 2-kjhhm4c Jڭ m1gj˨$K`ʵ km۶E Jڪ TVUEhٶwږ.kտRtIR I Z.R%G)0 D2a*@x'M$k)\\VW@$!A 9!UUUI'I$1!U]Ucۆm3E)jH $!AI$I$ b*I$I$!ba$0E)lIIeAb7 qrD a!  kw yeQ #qr y + qR& -++/)P%/1 @$!@PTI$I$e)I$I$e)$H!I$I!* H$!><I$I$$! I$I$$!!xZ^W $! I$I$$!!hzI$I$E)I$I$e)I$I$d!d  @$!jzZII!յI$I$E)H!<<I$I$d!d $H$!I$I!?!I$I$d!d $H$! ! H$I!Vו5I$I$E)!A !!@$H$!ZZI !* I$I$E)I$I$d!d I H!UH!I$IPH*mm6,P@ @Hm P8  I"L$P!*BTU !%  !I$I$ ! -)*$H!* !@$!@$!I$I$ ^ ! I!! I$I$E)I$I$d!d  H$!I$I$ ! I$I$E) ! I$I$d!d  !@@!H$I$!^^VWII!5--I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d H!***H$I$!|\^~I$I!u/I$H!I$I$E)I!**I$I$d!d I$I$E)  !@@ @ IIH@///qS1iH-- 1uEi-/ :fEr^U%IĉCEU5%m۶mf!!I$I$ǡ!!I$I$ǡ!!I$I$ǡ% A%E@P!I䆙E\UUU%Il9F5s)p$I$E\WUU/I 4,E% b/P$I$EPTUU!ɛoѶF5=!@mF(O?qfU% &K$H%e)VTTX$A$e)E)(lN@JE)b<'I$I$e)E)6EXE) &&H$Ȅe)$!(kmE)I$H$E)!_^^^! E)!/-- I$E)!*(I$I$e)E)ꫨ@ )(`0E) @)V`E) C3,0E)a` %I$}/m۶H- I H@* @ @$H8 O$Ii8/ߔ+%q@vw.WN%yX*+  i**+ܰN$E*WV+#Ie[,%IH0,%&LB&)%@,![&f ,!X$Itf/-!I lf/ -)$J$$))I$I$h,)I $,! f-!$f,@"%[%EPPZZ-ɖ E-))J$$,)II h,%$/)L$ ǩWU-/)!a9&ǩ^/!($m;) ,$E`zU3I$IDZEUUU440DZE'`4=M$EpVU$I$fEUUT-I@E)1,Io6`DZU1,,s$DZz_U1,۱DZ/-I@$ǩ* 1-$I DZ3$$DZ1P3(I$DZ1@UU/H$I$ǩ1TUUU&I$11H$I$11@&1X $I$ 9E) I$91UU #9 z I.9% I$I$BD! $91*$e1UUU ݉dE1/ IDr%y 1(oDZ(3-mIDZ)3/I@DZǩ+3H$)E@/b?EyXU _S1XZj 9E) H$I9!@ I:%H9շ,   91 @Ў=9E)hX  9E) I$I$B$! I$I$B$! I$I$BD!  91** 91 @$91 I291 ,퓳1`I$Ie)aW' DI$I9%) @$@91 Im91 dB 91* Iv6l91 I91*  91 I$IBD! I$A) I$IBD! !I$2A) H$I$BD! A)  @$A) I$IBD! A (B%) @$H$BD! IIBD! A) $H$BD! I$I$BD! A) (9$!@ @I9! I$I$BD! I BD! I$I$A) I$I$A) H$A) $@$2A) $I9$!p `I$I9$!  I$IBD! im;99 (`9E)@IĆ1A( 39p ɗ9%  I$I$(B%) $C$99ꪪ+ m6k `99 I$LBD! I$I$BD! I$I$B$! $!A) I$I$A) I$I$A) `$9T 91 I$H$BD! IBD! @$A) I$I$A) H$@ A)  $!91 I9e) $I$BD! I$BD! @$A) HI$A) L$A) I A) I$H$BD! $@!@(B%) $ 0A) HI$BD! I$@ BD! I$I$BD! IS@91. I$BD! IȐ$ 91 ۲5 l91  A91 I$I$B$! I$I$B$! @2L$91 @!91 $II$BD! I$I$BD!  A) $@$H9I PH+++ yW7qP-/-! ySf$q--+ -FA4 a@ I IA) L91 IB:,@91 I$[ l91I$I91I$I$91 $I$91* &R#9!b [9!5  I$91 @I$A) (B%) Mmöu99W u$I91 91_ I9e)I$ @9E)#H1E)ꪀI66`1E)UI$$f1%)UUI$I 1I$I$1I$I$1I$I$1$$I$e)E) UUUmI$1E)U۰mm1E)*`I$9E)* @n691U $M$91*  91* HA) $C91 t"91 I$ 91I$I211$I$1f1* mi$91 t91 I$I$BD! I$@91 A$@$:1 I:1 I$I$B$! I$I$B$! II$BD! kђ&I9E) 1eJ91$I$91 @ 91* $91 I$I$BD!& 7I$9UU-  ۧ91&0 s*3-mۖv31I$4 fq4@4DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%41l`DZ}.aī%+Հ&H8v҆Tp˯c cۭyzꪨ,IsHi)~ HE_# H%yW  IfqWb# hfiUObd HE`URc i%yXW S HqP_Ib[ HiPUvb$ H`H_t,IP ^I$ۆmP!U~I$ P!UUm&MmH_! I!66 I$I$d!d I$I$d!d  H!  XP55--9us/Ea--- )qwE--/%I DZ41%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%3@$@$e)PPPP@!I$I$9I@!I$I$@! )($@$!$!E)! e)E) @,E)`@ PE)  E)!I$I$1 H$H$1 E)!VT\T! E)! $e)E) _$e)E)pP42E)`E)I$I$e)E)@$@$E)!ppppIIE)!55I$I$)(H$H$1)(I)( HE)!<<h%X5E)!\XXPn)E)!m %E)!I$I$e)E)*?*I$I$e)E)I$I$)(X&h4E)XX`$!E)/-I$@$E)!I$I$HE)I  PE)@@ 1I$H$1I$I$1)( E) h&`E)(H$E)! I$H$E)!WVV^IE)! =5I$I1)( A$E)!%**(d&`2E)!XPp` IE)! %5H$@ )()(@$ )(@ E)!zj IE)! E)! *$A$E)! H$@$E)!`$C E)!Xpb I$E)!%5I$H$1`-E)@I$ E)!H$E)!IIE)!I$I$E)!  1I$H$E)!$ 0%)!VVZz@!E) % $HE) !PH  / //W%qX----B!2!eyE)@@@@h @q%)# fiE1zIb&j5AU[~x I$E)+H$I$%)A H'I&1 I$!A @!A@! /$O$%WU) -C%@%. z,\ڄ ٶq J((Z۷m۶ J&Amk.߼jѶi[-Iv e1_ O$m; eIWݪ I4fY qYr4i$)*vR'l> EQ_# ɟ/EY, yr*1)RD *1$!@PI$I$e)I$I$e)I$I$E)I$@!*$! I$I$e)I$I$$!!`xX^ $!* I$I$$!!I$I$d!d I$I$e) ! !BH$I$!^WՕ!*I$I$e)I$I$d!d $!`I$I$ $!/ $! j !@! ( $@$!`pP\II$!% -! H$H! I$I$d!d  I$!I$I!!I$IH!UUUIH!I$I$PHI IPH* m&AA`PRذi*X (B$$I$P!@TUUI$I$d!d I!@$@$!II!I$I$E)I$I$E)I$I$d!d @$! $!kI$I$A! I$I$E)I$I$d!d I$I$E)I$I$E)H$H$!ZI$I$ ח! *I$I$E)I$I$E)I$I$E)I$I$E) $!I$I$ !- $!I$I$E)I$I$d!d I$I$d!d  ! !*I$I$I !//I!*** $!I$I$E)I$I$E)I$I$E)@$@ !p@ I H@-/+ yW9qP--- &նEi#yB%y= %mf!$H$fPTU! f!!I$I$ǡ% A'F*r\!x$I䆙ETUUU 8fE5 p!h$I$E\UUU1I.$EP1`$I$EXVUU!IiEfE)IIbAEUU)#E6m6{~(R"$8e1PPppH$H$e)E) @!@$@ e)E) A$Ae)E) JȄL$ E)8,LH$ &e)E)Xk%XE)bp!!AE)+)+IH$1 e)E)`` ɰE)e)E)$E)!  @ 0HE)UU5 @$IHe) IH@* $$H8( Ii8? P %yH-u߹ufa?+ IO%y%* +!9!`=-)L2I EV**,!mbC$f* )!H$LBf)% ,!ض-k$f,!m$If/-!mf/,)H$I$h,)I$Ih,)I$,,I$I$D,(вE@@`-IG E -!mf+ /)X$I$ǩXUUU,%$I$*,$J$ExTTT/ HE /%k&)I$ExV%$IEW4IT@DZE%4`$EhU,H$IpETUU,IJ E  1L2I !Ei@1'9_1$>O$1xWU%$I$9TUUUI9F1H21e)/ $I$1EUUU$I$11I$I$9 I$I11 I$I91Uս I91* N"' H9W^ )`9   91* &91 H$91U@m;1e)$$1E)m61E)m61E)_!KI$fE)U,0 lE)/ I4&EZ/ I$EpUU)H$I$ETUUU$ EEy of%q_?%mۮ ن HB$! 91* I$I$B$! {=I9E)VX` ϐ$i9E)% $291* @I$91 H$I$9F1 9F1 I$I91 I$A91 I91* I91 9$!% LH$ 91 I$I$B$! I$I$BD! IIBD! @$H$BD! I I$BD! @9` <I95Օ @$I$BD! I$I$BD! $I$BD! I$IBD! $@&L$A) I$I$BD! IIBD! I$I$A) I$I$BD! A) d$`0A) I$I BD!  !91 ;9 ڃ'9A`X` \p1A %  I$H$BD! $@$C91 اO$90WV 0m9!  ݖv91 I$BD! I$I$BD! I$I$BD! !$I$BD! `;v$91 $I$91 z@$I9E) $I$9e) $I$9e) 5k99`X` pIt9b 5% I$91 ֶm91** H$I$BD! $Id$91* $91 $$91 , v$91 I$Z$ 1U0 0$m9 km91* I$BD! $ A291 91  $A) &#9E)`X` \I9%)-- I$$@A) I$L&BD! $I$BD! $ A) I$LA) I$BD!  A) @,99$!p BI9$! % I$I$BD! A) I$I$BD! I$IBD! $ A) I$I$A) I$I$A) $I$I0A) IB BD! IA) LB2 91 !I$I91 I$IBBD! I$I2BD! 91 * P$K$H1I!XH/+yw7%yP++#N Ey-++,..99@@@p $Il91  Ҫ99$!x Mr9e) A) IA) Mm91 m91 C @91 9Gn@9E)I$I$g9*H$I$91 @I$91 m$91 91  91 (B%) d(B%) CI91 IB91U vb;# 91UU~c$ 1E)ml1E)UzI$1E)UUI$I2e)E)UUUpI$I$1I$I$1I$I$1$I$e)E) UU@ $1E)Umݖv1E)`I$9E)* mv9e) 0IJ69j N9 @$I$A) L 91 CҒ( 91 I$91~I$I$11 -tI$91/ Pi$91 91* / I$I$BD! I$I$B$! I$I$B$! I$I$B$! I$I$B$!  4`91 Id91%+  091I$I)I) @$C&91 $91*  @$BD)) &I$9 UU/  91 0 n 1-31$I$31 $4 EY4@eq4DZeq43DZ4(DZE@@4 DZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4IDZE5U1I$J§UUU/Db1ҧR4,I3)v¶I_1%C@/ CH,ö@f_)~EW& HEU" OR# I%yU c Hfi_Sc mEiUc$ hEX_ OR# H%yXU bc iiPIb;k iiPUI$m l`HkmP)~I5ۆmP!UpI$ P!UU P!X`8*51S1Ei----, f-1%R&iDZ-1)IDZ4! DZ4- DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4@  e)P@@@I @!@&e)!p| ! e)E)I$I$9I$H$e)E)I$L&E)!UU^X  E)! ---$I e)E) E) I$I$e)E)/  E) E) @$@ E)!H E)  IE)!%L$$IE)!! E)!//!@$@e)E)@$@$e)E)I$I$e)E) e)!`I$I$$!!UE)!@$)()($)(E)!@ E)!p`@IIdE) %5I$I$1 HE)!(($@e)!I$I$)( E)! !**I"$&@E)UIH@?/PE)PPPT$A2$E)!*jh ! E)!A$I$1)( E)  )(L E)!>(H&`0E)!\Xp`IIE)!55I$@$1)(H$@$1CHE)!I$I$%)!E)!$IE)  dME)>HE)!I$H$E)!WV^ E)!뽭!@@2E)! BE)!ɰ E) I$L$E)!UWT\!E)! [%۶ E)PP!E)!H$@ E)!%)$!II$E)! **I$1@$)([ۆmE) $ $!%+H$! XH-ywy%yX/)B!fE)JBB@I$I$yE)UUU @fqE) 3 fa%1~I$cE9^xII$E)a+M$ E)ah A$i%)bII$E)A)$I!%) $Q'1!EUQ]Ƕle)*w9I$)! UUay8-իH$Q#N) )&ipl$[ᕢkڅao??U7 XN :t6o_ E,I.J'}ӎmo֋=۶ao?k-ڴڶNJڊO$C bjjTIe, cHHFNJګ_H.*ډr\a[ k⛊khmښ-JڨK2g˦{Z$Ir.*ںF۶iۆ. Ѫl082fj$$)U$I$j^uUi۶e!b*@!i۳:f1A(;c9!Uuuv'ɒf1 !E)) eA$!+ r4faE1 TfqeI*  뒤D fa* r q/ &钤 *,!yn0* /))W0*1$!@P/H$I$!TUUUI$I$e)$@$! $I!*$! I$I$e)I$I$$!!I$I$$!!V*I$I$$!! $!I$I$d!d I$I$e)@$@ !PXA$I$!rZ_WII$!5!I$I$e)I$I$d!d @$H$!xI$I$!U@! *@!I$I$d!d $@$!*ZPI$I!VՕ5I$! !I$I$d!d I$I$E)H$H$!I !+* IAvH!UI$I$Q!@I$IPH Im XH+ / iP+ &Pi `TH$I$P!TUUUI$I$d!d $!I! *H$I$! !I!"*I$I$d!d I$I$E)!I$H$!{zZ^I$I!յ% !@$!  ! !C` ! H$I$!I$I$! !  !I!!*I$I$E)@$@$!``xxI$I$ !@!H!*((I$I$d!d I$I$d!d I$I$E)I$@$!I$I$_W  $! ! @$!I$I$E)I$I$E)@$!I$I$E)I$I$@! !P@////%umSiP yKfi- " ٳ}ۆFI$I$!I fU!f% 'F*r\Hb;I$fETUU 8fE5 pp$I$fE\WUU1I"$ǩEAP1H$I$DZETUUU!IEp!@$I$EPTUU)dmE5)!$I$f)%I)@@e)` He)$! e)  @!۰mۺ!e) @1e)a  0e)E)ppp0E)!I$I$$!!5A$I E)$!!e)E)I$I$e)E)*k$E)aVB1@ `$IHA$$H8$CIH8 I9u %y@U% 0)X%ya B ~߱ fiW- + I0a%y +!ٶkW,#m۶7`,% HL$)!L$$f*),f`)8$f,!Id lf?,!m۶mf))I$I$h,!۶-ۺfꪊ,IdE,! ۊ5f*,!@$I$f-!I 0f/-%"I,%$I$I0,%$H$d$-%L$!*-% %@#%*,!Xm6f%8I$E@pUU1I$EUU40=E p4@'O$E\WU)IdE*,IF6a z-t$1^U1$I$9|WUUI9F1211d$11 $I$11 ,1!`#P1. Im91U I91* !91 I$I$BD! $91 @$$91W DN$91UUm&1E)H2I$1E)`۶&1E)_`$1E)_UM$e)!~ I$E)!I$I$E)$!I$I$1 I$I$%qE)UUU@Ir%q$1  I%y%q -, EyUUU /IEU%1&IHDZf, iA@ O$9UUUT a$91 I$)I)H$I$)I) dB&$C91  !@91 I 91* I91 91 I$I$BD! II$BD! I$I$BD! A$I$BD! I$I$BD! H$I$BD! I$I$BD! I$I$B$! I$I$BD! I$I$BD! I$I$BD! `91h 19 & I$IBD! @ '}'9a~Z ` 9 $A$I&91 `֦91  91 жM$9f1 DN$91( I$91 $C291 I$91 91 @9$!@Ič 1.m۶m11 !!@91 I$I$B$! @$@91 b(M9! i۶k 91  !91 I$IBD! I$I$B$! I$I$BD! I$I$BD! dB2$91 I$9e) I$9e) I$k 9e) I$m 9e) [9E)z m9  I$[`9e)* !I$ 91* I$I$BD! I$@91  $I91  L$d91 I$I91  !91 @$91  91 I$I$B$! &@091 )I)  I:1 I$I$B$!  &d&91  91 91 Hd$91 жI$91 mi91  $I&91 :ݖ91 9E)` g 9!5 IH IA) I$I$A) I$H$BD! $I$BD! H(B%)  891 I$I$A) C0C2A) II$BD! $I$I0A) A) I$ 2A) C2A)  I$)9$!@ oϙħ9a&I$I$!`AiS6e`H/ywW7E`---+1Nd E-++ -X&`&DZXXXx !I9a -- r&P9$!\\` 1O09$!-  I A) $@$BD! I BD! I$BD! $A9%) $C &A) mm۰m91 $I91 " 91 m۶Km91I$I$)I)$I$91 mc91 $$91 dI91* (B%) LB$99 mm91 391_ IB:A91U_ qb۫ 9E)t"1E)_I&[m1E)U_I$L1E)UUWI$I$1I$I$1I$I$E)$!*$I$1E)UU $1E)Uj&R1AxxIX1i9A-- Mn9E) I91 BD! I$I$A) H99%)x @91 I$K91I$I$1f1* nI$91  ݐt91 91 I$I$B$! I$I$B$! @$I$:1  91 91 I91** dB2 91I$I$g9* $ $91* @!91  @91  Nb'Eq9-UU/ $9 U1 NQ)1-31I$I$31$I$31I$4 (ei@4 XEa4 ?DZ%a44I$I$%44I$I$%4  DZE@@@4 DZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4Iɑ$nDZխU3I$|>맱UW^x41KlDZ4/m#DZꪨ4/IҶR HDZ3,O1$)ৱ@@/ ۖDI%y/  IW,@fW)@EU% HEU! R hf%q_ R# IfiWc# hEaWc$ HEX_Ob$ H%yXU b# IiPIbk HiPU iw% iP* quS7fi--/,` f)-+ 3+NNޔLV1)I$ 籧/")'P%E\PP1PIDE4/IDZǩ?41%44I$I$%44I$I$%44I$I$%4$DZET44I$I$%44I$I$%4e)@I$I$9Le)!<I$I$@!I$I$9 &@e)E)PP`&`&E)!Xxxp IE)!%% Ie)E)%5 e)!E)!I$ e)E)I$I$e)E)  $e)$!  E)!``II$E)!5 @ E)$!$@!e)!$ALe)!<< e)%)I$I$e)E) I$I$e)E)I$H$E)!UWVT!E)! I$I$1 I$I$)(E)!@ @@E)!E)!IH$!**0aE)!  E)!I$I$e)E)  e)$!@ E)!I$H$E)!WT\_A H!IIHE)@ A$$PE)TUUUH$@$)()(IH1 I$E)! I$I$1 I$I$e)E) )(E)!I$I$$!!WTIE)!  1  )(I$E)$! L$L$E)!! E)! /@$)(@E)!H$@ )(@$E)!Zzb IE)!$C$AE)!j***hE)<H$@$1`$BE)!‚ I$E) ?I$@$)( )()($C$ E)!ꪨI$I$1 E)! * @$)(@$$E)!@$E)!Zzj $AH!  XH==-7q7%y`---%2%\%fE)@PPPI$H$1I$I$fqE)UUU XolEi%)Z@EYE1zꠀO'eAW^xKI$1/ $I$!a II,1?oI$H$E) $$!+Ilǰe)AiiE)9 !0h9I$J!-UUBɛ$ U $IP6- Ҫbnr"kHW IUN ҥ"oۧ.t΋ Ƕ}Nz$I2$O kjt ͦm۶.h4Hm k⦢p۶M+m k*NΎ;NmIa Jڢ"_$Y$< JҪ**U-D;ȩ~&B'%I^ u$ zUj'I$J!zUUx$I$fy!UUU!b0x1? !HGO$1A;F4I$1I$A $!A$M81sWp eI!-){siEA+  rD fY} #۲4 fq (& fyյ)?W(m] /-IΧ1 %!@P1H$I$!TUUUI$I$$!!!*!I$$!/I$I$e)I$I$e)$$!$!/I$I$$!!pX$!PI$I$e)I$I$d!d  @$!pXI$I$ U@! !I$I$d!d  @$!@ppI$I$/ I$$! ! I$I$e)I$I$E)@$@$!ppX\ !% I$I$d!d  !I$I$E) !I$IH UU!H I$I$PHI!IPH**Iv iP+ `@ 0!H%y @TU ! I$I$d!d I$I$d!d H!$H$!^I$I!I$I$E)!(I$I$d!d $!  !@@I$I$$!! !- I$I$E)H!I$I$E)I$I$d!d $H$!I$I$ !I$I$E)aI$I$E) !I$I$E)aI$I$E)H$I$!x^^^I$I!%I$I$E)I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$E)a@$H$!XI$I$ A$@$!!@$! I! ++I$I$E)I$I$E)$H@ UUI$I$H@IP@qEH=/ tfq!A$AfF!I fUE!If% #'Fp\H$IfETUU!IEUU!x$I䆙ETWUU1I"s9x^  9! $C$HA) I$I$B$! C0C0A) IIBD! `$L$BD!  A) @9!@ IfAAII$PH** Iw1iP-- qwSfi--/ /1N f/+%9TTTV m۸91 @ 91* !I$BD! A) I$LBBD!  @ A) I$IBD! L$ry9!VW\ A$@9E)  I$I$BD! I$BD! $A) (19e)` &AW9e) % M91 I$-91 I$I291uM$1E) @&91 vI91 I91 9f1 I$@ 99 IA) NB91 ~$ 9e)I$2 @91UUVMҭۆm1E)M؆ 1E)UI$d1E)UUWI$I$1I$I$1$A$I2E)!*nIe)! !1E)Uжm1E) vI$9E)* I%91 +/'9^ ! 0 9$!  I$ IA) ՚H91 mKZ59E)`t1E) //!I$91 I$91 91 H91  dB&$C91  I:1  @$91I$I$9F1 ! 91 ** mm91 I$d91  $I$91 I$91 91 % ɑ$I$95UUU-  I$9)U1 L9 1,{ 1/1, @3 E%3" $I@3aGeY=??4- IDR41m%41 %44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%43@%4)I$DZ5U3I$hrDZUW\K43%44I$I$%43DZ43IDZ4,&I4/mDZꪪ4-NB" H3+BH_1(ö1"öIW-3U,HfU)@EU% HEU! R Hf$q b# Hfi_ o$ fi#yys %y+*/ )ND /+*4/ P DZ+***)I$IEUU1IE`)I$H$EUUTT/`1XE 54,'DZ /_43%44I$I$%44I$I$%4L$HDZEVV44I$I$%44I$I$%41,`DZ1I$H$e)UUTTI$I$1E)$@$1E)9@  e)E)@0$C2E)!p`II$$!!5II)(۲m6le)!@E)! I1"I$I$e)E)*?@e)$!I$I$E)$!I$I$E)@E)! A$e)E)HIe)E)I$I$@!I$H$e)E)**I$H$1"L$H&e)!VVTX  E)! -%$1 I$I$)(`,E)@ E)I$I$1 K&h%E)E)! !I$Ie)E) IIe)E) *(I$H$e)E)E)!] 4`H%)UUI$I$!`AIPE)@PPPd& E)! 1  )(  E)!XinE)) 1 I$I$e)E)//>I$I$e)E)I$I$)(L$`&E)!V^Xx! E)! %%IH$1)( E)!($C0E)!II$E)!? )(e)E) /e)E)jI$H$1$ &%)E)!DB @E)! l͆ E).( I$1mh&E) E)!/ I)(E) (@$$)(I$I$1 E)!*@)(dB& E)!I$@$E)$! H@H$! PH--+ y9%yX----S2$C"$fE)PPPP E)!@@$! E)! '%a%)UUU  %a%) 3(aEaEA_ }: eI^xI%N'E1I$I$ $H E)^I$I$$!j$I41 $!a >9{$Id@E)*mӦiE) I$$%i!UuU.I$k UUvI$( U( 4$Iȩ k߰}ڰJc۶] Jڪ&m$ $ɐ Jڪt6ntmiѶN=Ztm IR.*ڞ-$I$UUU$I$!UUUXl;$QcpbE)ت'1O1?Wm!mҦE)Ab$1  HE)!(<<<H e)!@E)P IE)! I$1I$I$)(H$I$E)! @2E)PI$I$E)!? I E)! /$@ E)!p@$I E)! I$@$E)!@$E)!zz!!IE)!  E)!I E)! I$H$HE)U@  X8***)11%y`----B"$B"$fE)PPPP@ E)!5)(E)$!ꨨe)!  EaE) ̀EieI^ 3 mfY$!~ꨀI$ fAI$I$E)I$i$E)9I$L2%!I„f1w?$I$ a  $9ǟ?1!$Ae) *$$2E)*mMۡE) ! @Nf;%I?)$I$ UUU\$I$)!UUI$J UU`I$a_dI$$!UUжI$!UU]۶h&%)$HH%))$I$ %)!]UeI$!aNN$e)N\'YĆ1 U_UII$E)a:jAI$E) ")q$ $E)A$Oe) nI$I$ I$I$$!a9I$IeIUU-s i*  {w fY+*&ys y+ -!iN0+ 1(IY  + 4+0UW4#IJmDZ4#DZVV 4I"mI!U1I2im!U"I$I!UTI$жE!UUIy!UUvb۰`$)UUTIB$ P$!UUU@$I$@$!UUUI$H$$!! $I$$!!  IdB&$!I$I$$!! I$I$$!!@ !@$I$!X^WI!% H$!>> $!!$H$!~I$I$ !I$I$d!d I$I$e)I$I$E)@$H$!pX\ !  ! I$I$e)I$IH!UU H!I$IPHI!IXH*Iv iP+w- %yH_[ ) $E(+@TH$I$E!TUUUI$I!* !!  @$!! !I$I$!!***H!I$I$E)I$I$E)$@!@$I$!zZ^VI !5%- I$I$E)I$I$E)I$I$d!d I$I$d!d  !I$I$ ~~_II!-I$I$E)I$I$E)a !II$!! @$H$!pX\I$I$?/! I$I$E) !* H!((I$I$d!d !  !I$I$$!!I  ! $!**j!I$I$E)I$I$E) !  I$! A$@ II P8յ%)U`@./F`=- qr)E%q+ fTTTU!mҢF_CPI$Ih!y&G>EU]Q_ fE3I$DZEP1x$I$E\WUU%IH,9Ep%p$I$E\WUU%I HE%!%!$H$%!I ?)%I$I)6,32fbhj)ufUU (Z"0")e1X`@@$$Ae)E)' 0e)@X e)b,&  @!I$I$9H$H$e)E)a20E)!{`II H!UU%$I$@e) $I H8*@H8= q@U_+yw*EH)[ڼEa/( Irݴ %y) + )wΜ ) m$I*)! $f)!L$LBf,TB% ERR) hfoE,M$mAfVV* ,!)[f)%I$I$)% )% )1fh)9$f)$J$EVVT,$I$EUUU)% )% I-%ID @H* /J$"mETT)2;Ej~)$IEzU4I 08Eqr4x$ |W!`E1UUfA1TUUU$11T$I$11I$I$9 MN$ 1&m='1X  & 9!* ) 91 091 X&91 m'91_Uغm$11UH$$1E)H$$1E)WL$1E)UUIe)E)U@$I)(I$ 1II$1I$I$1I$Ie)E)UUU I$!e)E)UU Im01E)UI۶m 1E) i۶] 1e)" 91UU Iض$ 91U/ MR91* !I91" $A$291 ؖm91 m[&i9UUUpwy%E9 *(P.%y +- ؖof1(IU DZ*/&vaiDZ_+ h9` I$N'9UWWT I$I BD! I$I$B$! $91 I91 ۰mm$91 @!91  $I$91@$H$91 I91￿I$I91 a2$ 91몂 I$91* $C91ꪨ !A91 * H91 91 * `&9E)X\ IO9e) -- $91  I91* H$I$BD! I$I$B$! I$I$BD! r9(I9!\p M9!* I$I91 I$I$B$! I$I$B$! I$I$BD! I$I$B$! I$I$B$!  BD! I$I$B$! I$IBD! I$I$B$! I BD! dB2$AA) I$$ 0BD! I$IA) A) I$m 99UU* I$$ A) IA) (4B9`` IIT9A// "`0A91@  9$! Imm99U Imm99U Im99U IB 99 $ $A)  I9p  9e) H$A) I$:`99UU I BD! dB2$AA) I$IBD! IA) A) "IA9e)@ I҄09A> @ 99` |9% H$I$BD! I$I$B$! I$I$B$! $I$BD! @91  #19!`` 3\I1a. &`"49!`XX` 1a9 -- I$H$BD! I BD!  091 ۲m۴ 91j* B@9%  91 h$N"'9A^^ )P9  II BD!  91( I$I BD! I$I$BD! I$I$B$! I$I$B$! &5j&9axx o9A -- $L$H9ݐnXH/-yS9EX--)yk %y+// Z2,Aj`` IA) I$I$A)  (B%) I$H$A) LB$@A) m`91 M&ۺ 91 Im l91 I$I$B$! I$I$B$! $I$BD! HI$BD! $A) $I IA) $C A) IdM$995WU غ]99 $@$A)  $A) $I$BD! {'h9\^ ɛ 9  M91 I$[`91I$I )I)  $I$91 I$91 0.g;91+ @V91 I$@99 Mۆm99wꪨ 3i91 Nl91U~ vb'i91UUWdB$ 1E)~IB21E)U_I$de)E)UU^I$I$1I$I$1$I$e)E)UU@ $e)E)Uжm1E).SI$1E)  ݖ9e) )691  A) IBIA) 91 IҤh 91$H$11 Z#&1a`p  I9A % I$I$BD! H$91 I$I91 91* (H9E)`O)9( TH*59A`$IL1!  I91 I$91 91 I$I$BD!, DI$9UU/ ɐ$9%U1" m)1/11I$I$11I$I$3("  4DZf44I$I$%44I$I$%4 @DZEY4 DZEY44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4ɑ$I$DZ5UUU9o%~xZImE44I$I$%44I$I$%44I$I$%41 %4%DZ44I$I$%44I$I$%44I$I$%44I$I$%43@DZ41DZ41ImDZ4IEy@4$IEy4/IڶDZ*41ɶ DZ*44I$I$%44I$I$%43 %4H$@DZETP@I$I$hI$I$h,I $EU4%`$DZ?W4! DZ@4IDZE4H$HDZETTT44I$I$%44I$I$%3@( f1P@@@ 1E)I$I$9I$I$9I$I$9$ 1E)I$H$E)!WVV\!I$E)! -]UB2$IE)$!$He)! e)E) @$@ e)%)Ae)E)`$ e)E)XPdB&@$E)!XPpp IE)!%5 Ie)E) +I$I$@!IH$ e)$!*@  @!@! e)!I$I$$!!*mٖae)!I$I$e)E)I$I$e)E)  $Äe)$!(e)E) E)!@ $I$!**۲- e)!d@@e)  e)E) 0He)UUUI$I$!`AB D$P!@@PP! E)! %H$H E) e)E))(@ E)$!H$)(I$I$)(I$I$e)E) Ie)!*(I @$e)E)e)E)j*/H$!(( E)! -۰%H%E)@E)!IH$e)E)XE)!I$H$$!!@IE)!I$I$e)E)/ e)E)I$H$e)E)UUVT$ `0E)!UV\X@E)! )(I$I$1 I$H$E)$! I$@0E)!-m&E) zmE) E)!e)E)jI$I$E)!I$I$1 I$E)! *I$I$)( )( @ X8))**%y`----¯ʯe%)PTTTL@$AE)!> I$I$1 1 LȄ IE)!(I$I$1 I$EiE)U "#$EieY~ IfaE9~ }" fQ^I$sf9zI$H$!$I$E)II$!*I$I$!jq&q$1t $1 vUEUsI$1|ر'1 '9{!m'؆1?i۶ME)bn@!`1z/>I$H0E)!WUtemmӶE)0IĆ1̿I$IE)A.I$ E)ϿI$I$ N8f1~?A$K$E)Ia$%)AI$I $!AKI$I$$!AfI I$E)I$ E9UU ɟ Y  qE9  {w fY %qv y+ , qr+*1)1JD +*4/i۶mDZ 4 DZ$!@44I$I$%44I$I$%41l,DZ1& ѧ)  %y ?>؃Eq^xx lc qHmM H`HWנ$ILPH(HPH I6X8I$X@I$I5P@`I H$!U IH!UdH UIۆ PUUI$$ P!UUI$P!UU@$I2$H]U$2aHuUUI$I HUUU@I !! H!<<I$I$d!d  $!II!/ I$I$E)LȄ$IH!UUUI$IH!UI$I$!`AI$IPH*m6I `H+ }.G %qP }. e`+0!H$E!@TUI$!@$I$!I !* I$I$E)I$I$d!d I$I$E)I$I$d!d @$H$!I !H$!* I$I$E)I$I$d!d I$I$E) !I$I$TV! H! <I$I$d!d ! I$I$d!d $I$!I$I$$!B !+ H$!\V!** $!H $! !H$I$!\^VWI$I!-I$I$E)I$I$E)I$I$d!d I$I$E)I$I$d!d !@$H$!bpxXI$I$ UUՕ$@$!I$A!p !I$I$E)$!`!@$@$!I$Ib@ *!H$IH8# *qO `H-- qr/Ea/p@F%y!n$ 9E)I$h 1E)LB 1E)^I$e)E)UVI$I0e)E)UUU`I$I$1I$I$e)E)UUUI$e)E) U1E))I$1E) M$9E) 0r9f1 aۚ91* $ A) dB @91 $9j ɖmh1A  ɐ$I91 $I$91 91 / I$I$BD! H$H 91 I :1 j"19bX` I 9a5  `B$I91 I$@91$H$9F1 I$91 ۰mٖv91 I$BD!, $I$9%UUU/ @I$9U1 _e1 -1-41۰ ِlDZ***43DZ44I$I$%44I$I$%44I$I$%4 DZea@4 ea4 Ei4DZeq44I$I$%44I$I$%44I$I$%4,`DZE@`@ZII E%4tr89DZ^s͕Z4I$I$JDZUUUT44I$I$%4@ $DZEyP4@DZE4DZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4H$HlDZETTT4`DZf41ۆl@`%3H%DZETX`I$I$hI$I$h,ؖmɖdE4!6zDZB /4IDZE44I$I$%44I$I$%44I$I$%4@f1@I$I$9I$I$9H$I$1E)I$I$9H$@$1E)k5XE)!\XxpmivE)!55۰ ې E)!I$I$@!I$Ie)E)*  e)E) e)E)<@  e)E)0E)!`@II$E)!U$A$e)E)???I$I$9I$I$@!1E)ꪪ@!e)!M$K&e)!)bɖte)! /I$I$1"I$I$e)E)*((Ie)! I$I$e)E) * e)E)@H$H$E)!VVVVِnle)! He)$!(( I1" $I$HE)I$IPH++@0B PE)TTTUII$E)!5I$I$e)E)ꪪ I$I$e)E)/?<I$I$e)E)$@E)!@)(I$I$)( e)$! H$E)$!(X$e)!۲-[E)!I$:E)נ I$E)!%`H$IE)!1 @ e)E)PbB)(L$`$E)!^\ !e)!/I$I$e)E)IHHe)E) @ e)E)Xp@[ `E) p@ I$E)/?I$I$E)$!*(1 @ e)E)Xjۺk&E)XXd E)z E) e)E)-?$H$e)$!@ e)E)_sI$I$E)$!I$I$E)$!@$CE)!j@!E)! ! XH/1Sq%yX----H$H$E!TTTT@$E)  5 )( E)$!E)I$@$E)!I$I$1 I$EqE)UUeq$!3fqeQ~ hfiE9_ >Z ifQ$!W~I'te9wI I$$!AJII$!II1>I$I$E)'M$I$!k? $I$$!b*zI$I,%)I#E)?KA0a E)!"z`$a$!A0R$$H&!p ɓ9?LI$E)aH!$E)AI$I$!b*I$I$$!b*I$I$f1?I$A$$!I$I$A I$I$E)|bI$E)xI$IXE1#Oy fI % Yկm%G fiE9 m fQ } i &ky*+!qr4 /))W\;/ 1+۰*-41 DZ41,%41%4`%DZEyXP4T@@Ey1)`5 xx)'HiWW_" if%y~ S# Ifib EiUS@E`UIb EXUOd h%yHߪ $d @%qXW=mNiP uBi@^ _ q@  iiHI6ml`PUIҴ]`PU:I$m ``PUI$m;``PUUmӶ`PUUIB$ XHIB$ XHIB2$ XH$CP!@IBP!UM- PUiɖ H UZ I$$ P!UU I$ H!I$IPH*I$IXH* I6W iPս }.W EX nYr0!F0 @$I$f!@TUU@$H!I$@$!ꪪI$I!!I$I$d!d I$I$d!d @$! !I$I$!!H!I$I$E)I$I$E)H !@$H$!jz^WII!I$I$E)I$I$E)I$I$d!d I!* I$I$E)H$H$!Z^I$I$$!!! I!I$I$E)@$!ࠠ!  !I$I$(I !-) ! I$I$E)I$I$d!d I$I$E)I$I$d!d H$H!0I$I$ ^^VVII!H$H!I$I$E)I$I$E)I$I$E)@ !`@ ! H$I@ U $@8I P@5w%yP- fN Fi-+((!a8F?Cp!x$I$ETUUU!I 4E5up$I$fE\WUU3I&(E@3`$I$DZEXVUU!I)E!h$I$E\WUU%I1`@E %!@$I$!!I$I$ǡ%!I ?)!$C$Ifꪪ)!!&H$f! f@@@%I!E?)%$I$%#H$@$鈪#h&X%f1XXXP1E)I$I$9 &1$!I$I$e1e)+ @&He1U hI$H8UU$A@H8IH@ %5.Y%yHU kEP)-(Οiս?(m AE*( -Ej)$IDE,%K$fZVV%!%%f`X%X$IdfXVU)mf)%!@$I0?%%I$I$)%I)% ,H$H$ETTTV,!qEi-- `mE%)%H$I$%!  -!Itɐf/ -% H$ ,ئmۺ5fj%m$f9V!$A?E1*zUU hڶmQ) $11xU$I$11@WUUA$I9! I$i 91UUկ I91ս I$@9UT !P@9  ض&91 (2$91UX$1e)m51E)ضmk$1E)_$I$1E)^UUI$I$e)E)e)E)I$I$e)E)I$I$e)E) I$I$)(I$Ie)E)$)Qf1Ivm1E) I9!cۤ1e) m$ 91Uժ IH91 IH I9f1* $I$BD! &91Ĵ-1e) ۶m91`$I$11  (1$!@ I$I91 ۲m9e)j 691  91 I$I$B$!\dFp9+-% b /w%qJ+/,90 IE */+6I&ǩ>*/,I6@ ǩ-  z訠#N'9WVXp  I91 !I @91* I @$:1 B$! I$I$B$! H$H$:1 91 I$I$B$! 91 ~9E)W( 091 I$I$B$! I$I$B$! I$I$B$!  91* I$HBD! I$IBD! I$$BD! I$BD! Ȑ#:91 d 91 /  I291 ذm691 `ۖ$91 D;91_ @$91 $m;91  Ic91__ $ұm91@$91 6m&91֦m۶11@$I$11I11 *  1f1I$I$11I$I$9!I$I$9! I11 * I$I)I) $)I)I$I)I)I$I)I)I$I$g9*H$H11I$I11I$I11I$I11I$I11I$I11*I$I$g9*I$I)I)I$I)I)$91I$I$g9* &11\ $$11UI$I$9!II11****$I,91a``X1A % $I$11 $I$1e) ېvI91 k691 vI$91* mI$91 mM491 m$91 ې91 ۖ$91* mۖ91 @91 @$BD! I$BD! dB2!A) 5h'9Axx vI9b+ $I 9! I$H BD!  (9!@ \I$1. $A!91 H$I$BD! I$BD! I$I$BD! *("i9E)@@L$Ie)b>< 5^%H95/ ۲-P8@@ Idi85== " 9Sf$q-/+ 1"Nd-)+1$L$豣VV PIn9E) mm691 lۖ 91 A) (B%) IBD! I$IA) I$I$A) $H$A)  Ř9$!( (B%) (B%) @(B%) kml91 d091 !I$ 91 H$H91 |@9^ `$I9$!  $I$$A) $C& CA) I BD! IB2A) A) A) $I$BD! I$BD! A) t" 91 I$ H91 I$I091$I$)I)  59e)jz %S9E) % @ A) $I$99 H91 m39f1z I& 9E)I$Nڦ1E)`e)E)XI$ e)E)UWI$I e)E)UUUxI$I$1$I$e)E)%UU$1E)$@$1E)*SI$1E) Pnn9E) * $I$91 $C$A) I$ A) -ڀ91 m6m91 $I$11 I91/ 91 I$I$BD! I$I$B$! I$I$B$! $91 91* Cm۶m91* I$91 I$I$91 I91 +>9x ~$9a $IA9$! /$I$9UUU1`9UU4 $9U4/ mDZ*41ېdDZ*43$DZ43@$H$DZ31@$I$31I$I$3Eq@4a44 DZEa44I$I$%44I$I$%?4I$I$DZUUU3` ڧX%1I$O'ҧUUW\4@DZEP4pDZEy44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4)`0DZ\p/K"&iEVX`I$I$h!I$I$EUUU-D E 4,DZ ?44I$I$%44I$I$%43 %4@IE1I$H$f1UTTT 1E)I$@ 9I$I$9@  1E)00E)!````$! ***mmE)! e)E)@@! e)E) $@e)!IIe)E)??I$I$@!L$Le)E)WUTI$I$E)!UWWV!E)! -9ېe)!L1E)I$I$1E) e)!X%@,e)! Ie)!??I$H$1"@$e)E)XPIe)E)I$H$e)E)(I$I$1"K%@4E)pmIdE)*@!  H$He)UI$I$!`A Pe)@@P۲me) ImE)IE)! =5I$I$e)E)I$I$e)E) I$H$e)E)I$I$e)E)I$I$e)E)?>*I$I$e)E)+*[5:`e)!`!Ae)!` Ie)$! 0E)!I$L&E)!UW^Xe)  / H)(I$I$e)E) I1@ E) $H$E)!^^e)$! I$e)E) *I$@!$C2 e)E)|K&k%E) V\\XI$E)!U E)!I$I$e)E)**l`E)`itIE)I$I$E) *e)$! e)E) /5I$I$1"H$e)$!I$I$E)$!I$I$1  1 PH )1S%qX----x?E%)TTTT!ɐ$ E)!UUW^ E)! - $e)E)UI$I$1 @1 @ )(I$I$1E)!I$fyE)UHfyE9 @yeQ hfiE9  lfQ^I'ieAU_I$a:f9wI$I$!`A$Y$E)Ak"I Ide)I$H$E)I I$%)Ai$$f1)$I$1I$I A$I$!bH$I$!jI&I$E)AjI$$e)UGVI$H$!AjM$I&E)~I$I$)M$+e9IleAU IfQի [ faE1dqEA+ m4fY } i % y*+m4 /#rܶ 1+koݶ * 1$$!@T1$I$$!@TUU4$I$DZ$!UUU4$I$$!UUU3$I$!UUU3$I$!UUU1$I$$!UUU1$I$%)UUU,$I$$!UUU&$I$$!UUU!$I$$!@UUUI$I$$!!I$I$$!!XXI$!== $I$e)I$I$e)I$I$e) @$$!1ɖ@% )$ Ei-CmEiW ݶ8 E(@ ?a!@PUU@$I$!xZVUI$I`UUU$I$`!UUUd۶m'`!UUU`!UUI$X!UUHI$X!UU$m $`!Umm$`!U$m` UmKۖ`(Ibm7 iPU* ɝ. %yP*}. f`  $f! @TH$I$f!TUUU!H$!H$I$! !* I$I$E)I$I$e)I$I$E)I$I$E)@$H$!I !?/@$!PPI$I$E)H$I!\V/I$I$E) !I$I$TTTI$I!   ! **(I$I$d!d I$I$d!d I$I$d!d $!xI$I$I ! !I$I$E)aI$I$E)I$I$E)aI$I$E)@$H$!hx~I$I$ Օ @$!RP !  !I$I$d!d I$I$d!d  !  $!I$I$$!! !I !**   !  !// I$I$d!d I$I$E)  ! I$@ %I$I@%(ItIP@5--1N%yP )+ t f%y xɟETUUU!I9p4EU5q!I$I$EUTUU3I$(E@3P$I$EPTUUI`afE??@$I$fE%I`@E%!@$I$!!I$I$ǡ%!I $?)!$I$f)!$B$H$f%!I$I%!I$I?%!%%I$I$) $K$E"*J(5"C2ff1@`hj@1E)I$I$9`f9e)_? k$He1-I$IH@IBH8U@$HH8 I9 EHյ%  1m@Eq- ! Mv5 f%qW?( d `%y ( Bɟf))2iEjjJ%II E%K fV* %#'Fp^%IF5) f%%! %%I$I$)%I$I$)! I&f)9I$fU,dB&0@EZZ , lڶmE)! IH$f%!@$@-!It)0`f/ -Iئ-i@)$9|W!X'I$f9`^UUضmۺ691_:Ն1!xx @1! I$I11UUU It11U5 1EI91   B$! I&91 "M'91~WڶI$11UU$I&1E) $1E)_ I&I$1E)_UI$I$e)E)I$I1E)UUUI$1E)UV$$C21E)_UI e)E)I$I1E)UUկI$1E)U I1E)"%1bp` II9%) I$ 91U !EIH91 I$I$BD!  I$I291 &91 m$91 h6m&91H$I11(*Ȁ01!p`tK1! 5% I9f1 [$j59x\Xh DIħ9b5Օ B$! I$I$B$! I$I$B$! I$I$B$! a9UUUw9 )(`N/wE +-#@ҧ */(6`䧩-%6mV`, cHA`'y1UWV\ I$I:1 I$@:1   B$! M$9! V91 B$! I$IB$! I$IB$! I$ BD! I$$BD! I H$BD! I $BD! H$I291 /9!`XVZ t9! $I91 `M$91 жi91 X&M$9f1I$11*$H$11I$I$9 I11 *H$H$119 H11 $91E)Xd'1$!_ Ӗ$1!H#$1!U I$1!U In$1$!UI$1!_mI$1!UUI$1!UUI$1!UUv$f1ZWPۆ1`I$1!U`۶$1$!U`۶$1!]`I$1!UU`;I$1!UU`۶m;1$I$f1a$ۆ1!UUUĶmۆ1!UUU$I$1!UUU$I$1!UUU$I$1!UUU$I$1!UUU$I$1!UUU$I$1!UUUI$1!UU`I$1!UU@II$1!UUMI$1! UUMI$1!UUP-1bpIff1a5 ddž1!U4 Ć1! ا9E)*UX$1E)@$1E) *mv91ۺ؊591z^I$9 I$I11**  211x9!! 1f1  $I$1f1 I$91 жm$91* #D1`*I1 1dHq9$!  @$$91 زm91 O$i9b7  29E), IB&A) I2 IA) I$LA) I$H BD! 1i۶m9f1 X$H$HA  !XH//ywW7%X-/(1NE-- 1")2! BBBH߶meT &m91 ]&[l91 ! @91 91* dN$91:  m91 $A) A) *)$H9E) ~9!U, 91 I$IA) I$I$(B%) @$@$(B%) I$IA) $(B%) `B$IA) $91 I$HBD! I$I$B$! H$I$91* vi۶91 I$A) ۊt91* I$I$BD! I$ BD! I$HBD! I$I$B$! $$I$BD! HI$BD! @A) k91  91  Wni9E) !$I091 I$91 mޖ91 I$A) dBI99 91 3`9E) Ib'j H9E)mҶm1E)de)E)^I$$e)E)UUxI$I1 $I$e)E) I$e)E) 1E)tI$1E)/ @R)9E)* D1891 $I A) LB&A) #91 IĴ 91 11={$1aXV 0 9 I$I$BD! @$91h=1$!@p  ɔ\9$! % 91* 91 1`'9bp\p$I1aI$)1a/ )dHI9$!  9`09`p` )PI9a+-5- &H&91 ېmɖm91 1ǩ3 9ܧ!-3&$In 1/11I$I$11I$I$11I$I$31$I$31I$4 fq@4 @Ea`4<DZ%Qp4/R $UDZǩ0 3ÉDZr5Վ3I$M&DZUUVX44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4) DZ@@@4) `6DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4% @ DZ@,K%"EVX@I$I$h,I$E5UU-H@E4%`DDZ44I$I$%44I$I$%49DZE-3p%@$f1XPPPII1E) '9#II9I  1E)ꪪ۲ۊe)  !*** !E)! e)$!@$@!9l,f1$!be)  H$e)!L$`&E)!T\XpI$IE)!55 e)%) I f1!% I$I$9I$I$1E)I$I$9e) I$I$!!e)!I$Ie)E)@$C2e)$! e)$!A 1"ò-ۊme)!@!A$ $!)B$I$HE)I$I$!`AI!IXH+I6]3`e)ZVRP! e) >>k&h&e)!\XXxIIE)!5%5 e)!$E)! I$e)E)I$I$e)E) /I$I$e)E)I$A e)E) e)E)IH$1"@&e)!I$I$e)E)***k5@3e)!xL@$AE) e)E)I$e)$!I$e)E)I$I$e)E) ?d&`$E)!XP IE)! **I$I$e)E)e)%) @ e)E) C$IE)!`(d$H2%)zx $E)! -uE)! e)!IHe)E)TL$dB2E)!I$I$1 e)$! I$I$e)E) I$I$1"H$@e)$!HE)!I$I$1 PH 11$qX----H$ e)$! dB2$ E)!zI$H$E)!UU^xI$E)! 5A$I$E)$!@dB&E)! E)!E)!I$@ e)E)UU^pI$I$E)$! *I$I$fE)UUU $fE)U#i~ ~" `fY_ HyeI_ mfiE9W  lfQ!wI? IeAbI$mE9I$YE) I$I$9asII$$!A*iII$$!!*I$I$$!AꪚI$H$E) HI$I$@$I$!b ߶fY!u ߶fY$! $ faE1o&faE9*o$'qeAv޶& qEA_ Ir&EI*miտ"mq*&m$ +풤$*-%{R$ 1)RD 1$$!@U1$I$$!@TUUI$I$$!! I$I$$!!@I$I$$!!UH!I$ E)!Uխ E)!I$I$1I$I$1 @$$!!@@$!* I$I$$!!I$I$$!!* I$I$e)I$@$$!!@@I$I$$!! I$I$$!!((  $!I $!? Idf$! Z IFnf%yب$m$f)@PB$I$E!PUUU@$I$!x_WI$I!UՕ!  !@$$!! I$I$$!!/I$I$$!!~ ! *I$I$e)H$@!I$I$d!d @$I$!II!%I$I$E)@$!I$I$e)I$I$E)@$@$!I$I!I$I$d!d I$I$d!d I$I$e)I$I$d!d  !I$I$!! I$I$E)I$I$d!d I$I$E)I$I$E)@$@$!`xXI$I!Օ%I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$d!d H$H$!VT\\I$I$ !*I$I$E)I$I$E)@$!I$!+-^I$I$E)I$I$.(I$I!- !* I$I$E)I$I$d!d I$I$E) ! *I$I$E)@$H$!jxxZI$I$**I$I$! ! $!!I$I$E)I$I$E)@$@$!I$$8!I @8/qS)`@--+fa-۹f%y1fE5}!h$I$E\UUU4I !T(DZE% B3P$I$EPTUUI1fE I$I$x!I)ZF5!$I$fUUU!H$fTU!!I$I$ǡ%!I$I?)!C&L$f%!I$I?%!%p'E\\%F)!$I$A"f)%[%EXZ[(kcO6dCf%Ih 'yE)UVTT m۷ %ie)UU%m9h:XE1I$IH@  P@ﻮ*;6i`H} I{ EHյ+ *f%qJn& ys %q/(ܶ &E* X(7nߖmE%!I$?)`$LBfXVV%ۖaf%$ٲĆF%vb;aF_?)4HڶmE%!@H$%!%%I$I$)öm2&fjZ%H$IdfTUU)IF`f* ,%`$I$)!$IDB&f)!`B&!f,!I=/,$$1hV)h$I$9|WUU$11`U&I$11\UUI$I9!c&E1E)* qM 91ս  I91 091 "I&91_ (v$91UU@$I21E)m[&1E)H2I$1E)_WI2$Ce)E)I$I1E)UUկI$1E)U^ I$1E)WU@$I$1E)ZUUUdH$I1E)UUտI!1E)U$I 4f1 `DI1 % I6I91U iR91տ I91 9e) p'9bXX  d9 %5 5I$91&I11 I$I11 Ii91 mv91 691 @9f1j P9$!- I$I$B$! 9E)`  9a& I$I$B$! I$I$B$! I$I$B$! $91 @$91  ѶI$i9Urf` %PN/E +-/%[DZ1)H[DZz/&`h( 59X`` ۶m#91 I$I$B$! 91 I' 9!Uָ 4 9E)  I$H$BD! @$091 H&91 $Im;91 m91 m$91 II$91@$I$11" 1E)@I$I$9!  11 * 01%)۰1e)61E) m$1E)UIm1E) Ҵc;1E)_WԶI$1E)UUH'I$1!ֶm&E)!jz$I$E)!UUU@$I$E)!$H$!a0 !I$! =I$I$e)I$I$$!! H$!($@$!` I$!A /@$I$! I$I!W_ ! I$I$$!!=-I$I$e)I$I$$!!I$I$d!d I$I$E)@ !`I$I!bU׾!I$I$E)aI$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)@$!I$I$E)@$I$!zI$!/ ! $!jj $I$$!`۶$e)!UUU`ӱf1!UU`I$f1!UU@I$1! Uض$1!0 ؆1$!*&$ئ1E)U۰vm1E)*$I11ضM$1e)$I!11)@&L2'1bXTXI  1 @)1E)@0_O$1a( (im9$!IҤk 1E)* nv$91*  91 (691 @$91 I2eI9I$IPHItI`P-yw7ea--,N` f--) 1 &,09``` I!C A) I$I$B$! @$@$BD! I4I99Uu $I)9f1@ &M59!5 I$@BD! I$I$B$!  @ B$! M'9E)*^ dJ91 * 0m$9f1 (B%)  @ (B%) A$I$A) I$I$A) I$I$A) I$@$A) IIA) I$@$A) $I$A) &B'9Ax A|9A % mk91hIҤ118U 91 I$BD! $I!$A) (B%) I$A) I$`BD! ƒ'9p\ P19a % A) & "i9E)I$1A(U mF9!I$I$91 !$I$91 I$91  I[91+ $(B%) @@(B%) \91z I>d m9E)I$tɦ1E)dB$I1E)~I$e)E) A!E)! e)%) I@!I $1E) $I$1E) P$9E) 0@喒91  @$91* $C!A) tB" 91 |">1AX$II1  I$91 !91 9%)` I9$!% I$I$9F1 I$:1 P($9ap T9!  I$91*I 91 B $I91B* ! 9 [ 91 H$A) I$I$BD! I$I$BD!- $I$9UUU/ 09-1! ۔m)1-11I$I$11I$I$11I$I$11I$I$31I$I$31$I$3"$$I4$IEy,gI$m㧱kUk4I$H$j҆44I$I$%44I$I$%4$@$DZEPPP4DZE44I$I$%4IIDZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4DZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4,DZE@@1H @E-H%ETP`I$I$h)I$I$EUUU%E 4%DZ -44I$I$%44I$I$%4 @1@@@؀mX$1E)ZZI$I$'9#I$H$9 '9#H$H$@!I$H&E)!W\\X! E)! -% e)%) I$I$9 @$e)%)2`0f1$!b0e) @e)E)Pd2 E)!p`@II$E)!5II$e)%) ***I$I$9 1E)$I!1E)ꪯI$I$f1e) 1E)H$ 2E)!-e)! /K`e)!I$I$e)E)*.?@! Ie)E)  He)UUU)H$! I$I$PHa!HXH+ ɝwgqP+w&\2$e1ZZRP @!Xe)!`I$I$$!!WT@e)! I$I$e)E) AHe)E) e)E)?5I$I$e)E) Ie)E) **II$1"@ e)E)a۲-E)!@@Vlive)!))B$@e)E)BI$L&E)!WV^xnɖte)! /LH$ e)E)?II$1"I$H$e)E)>@ e)$!I$I$E)$!$!e)$! IH$e)E) *(@!H e)E)`$E)!XpII$$!!UU @E)!UV@@e)!I$Ie)E)He)E)O $ E)! I$e)$! *I$H$e)E)?@$ e)E) @!L$`0e)!I$I$E)$! PH 19$qX----I$I$e)E)He)!E)!h**I$H E)!U_|IE)?$A$E)! @E)!e)!I$I$e)E)I$ e)!$@ E)! $E)! $I$%)UUUI$E)UHE13@i_ ~" @fY_ ~R# IyeQW# @ieA_fiE9W ö fYE)_ OfQ!W IҶHfQUIReAIIeAbwfII$ fIU Ib$faUInfaUo$ iUm&i $'q!m$9y%6*(r կ*,"r@տ*/&q[r 1$$$!P1 H$$!@TU1@$I$$!PUUUI$I$1$$!!P$I$$!!VUI$I$$!!\UU$I2$I! !@E)/ E)!LH%)Ԩ$E)!$I$E)$!I$I$$!!I$I$$!!*I$I$$!!+ I$ e)I$H$!!I  $!!I$I$$!! I$I$$!!I$I$$!!* I$I$!!I$H$$! MM$%$) VUH$I$e!TUUU @$$!I$I!WUյI$!$!I$I$e)I$I$d!d I$I$!!/+  A$$!! I$I$d!d  ! !I$I$d!d  @$!I$I$!I! >>I$I$E)I$I$e)!  @$!I$I$  !** I$I$d!d I$I$e)H!<<I$I$d!d @$H$!^I !//+@$H$!! I$I$d!d  !! H$I$!\VWU !- I$I$E)I$I$d!d  ! $! !H$I$!^VWUI ! !! *(I$I$d!d I$I$E)@!P @$!I$I$V֕5 ! I$I$E) !*/I$I$d!d I$I$E) !  !I$I$!^VWWI$I!եII!I$I$E)a@!*I$I$E)I$I$E)aH$! *HI 8 UUI$I$@! eP8-/w1RiH - 9vEi!&`E%y+ @$3IPE% 3&M$EpXVU!IIEUA@$IfE?!I ZF5%$I$EUUU!I$H$fUUTT!I fU%!I$I??)!!C&`$f!!I$I$ǡ%! %%I$I$%pF\)4I IE*)&K$fbXVU%vb dIF_%l&iE X e1XP qEE9 iH~m۶ۊ-P@`@?w EP-  (0`e%q`( %qU5( 0B懡(`۶mEX%`YF) !!I$I$ǡ%!I ?% 9c;Fx~$N$fE?WWW)!!C$a2f%!I$I %!II??%%I$I$%'Fx\%m۶ F-)ɐaÈf%%!@I0???%!H$<&I 1@, iJ$1TU%'1pWUU L$11@VU`$I$11XUUUI$I11UUU%I-11U 1%I91 P$9T 9f1  d$91_Uk1e)$I&1E)(d$1E) $I$1E)j_WWI$If1E)I$!@21E)W IH$1E)~_H$C1E)zUUUI$Ie)E)?I$ 1E)Uս$IA 1!@I$1,W I۶e 91UU c19Z` I9  91 @ 49E) @$91 I$91N'1bVX ɖl& 1b ۶m 9! @ ݶ 91  91 $:1 I$:1 I$I$B$! I$I$B$! I$I$B$! I$I$B$! @ 9b@ I$1bU d$91 &I$91 `$I$91I$I$)I) I$I91 I91 yXix9))%# Rq%q +,` sf ++/+6i6DZU1,Ibo'DZU^, h#<%y`PH$sEqX `0I9E) 691 `m$91 I$91 &I$91 I$11H$I$11@$A$11II$11***51E)$ Ć1E)lk$1E)x_ Iۆ1E)E:mۆ1E)z__tI1E)غ5[ӭ1E)z__I )(I$$e)!I$ 1@$C&E)!z E)! @ E)!I$I$$!!$I$$!! I$I$$!!I$I$d!d I$dH!bV aB2$E){jI$IHE)a I$IBE)!*c6)e) I$O1bUW( 1}I1NbH1߿ Ibۛ$1!UIr 1!U = 1!I" 1%)UI"i&)1E)U@I$1!I$@ e)E)(Ie)%)  $He)UUU2$IHE)It P8I!AXH+ ɝwqP {.U e` "dfe1RPPPI$I$1E)I$I$9K&h%e)!T\Xp  E)!%I$Ie)E) e)%) H e)%)2,۶mE)!E)!H$A e)E)H2$Ce)$!$!Ae)$!De)E)I$H$e)E) (h52e) II$E)!?Ie)!I$I$e)E)$I e)!I$I$e)E) .H$@ e)$!II$E)! ** $$e)E)U e)E) /I$I$@!I$H$e)E)L$`0E)!V\X`!IE)! 5He)E) 7I$I$e)E)I$ e)E)$C$Ae)E)C?I$L&e)E)UUWX!!$e)E) =UI$I$e)E)//(@!H$H$e)E)mk34e)!`$@$@"P8 y$q@++- e)E) %I$I$e)E)Ie)$!(I$@e)E)UU\I$@$E)!W I$E)!-$A!$E)!@ e)!%@$e)!e)!e)!I&e)!I$IE)!Օ@$@%)\I$I$E)UUUI$E)UU H$%)U CIyBqWCiW Ӷ@faW Ӷ fY_ I# fYU S `yfYU IҶyfYU ӶyfQU IҶyeQU(yҶ U) l)mUտ + ߺ+"v[MU-#MR@U//$$%)T/@$%)PU/ I$%)@UU/@$I$%)PUUUI$I$10$!$$!@$I$$!!VUUI$I$$!!UUU5I$ E)!UխIE)! I$I$1E)!ꪪ E)!ꪪdB&$ $!!0 $!  $! I$I$$!!+I$I$!! I$e)1 $!!@$I$e)I$I$e)I$I$e)I$I$$!!@@$!!$1H$Ie) @$$!I$I!% $!/ @$!@$! !hI$I$$!!-)  E)!H$I$$!!I$I$$!!׿/ $! ꪪ$@! !H$I$!I!? I$I$d!d I$I$e)I$I$d!d  ! @$H$!I !** I$I$E)I$I$e)I$I$e)I$I$d!d  $!I$I$!_I$@!! ! I$I$E)I$I$E) @$!`pXI$I!Օ5%I$I$d!d I$I$E)I$I$d!d I$I$E)H!$@$!`x\I$I$  !  *$@$!!*I$I$E)I$I$E)a !H$I$!xz_I$I!H$!I$I$E)I$I$d!d I$I$E)$H$!XX! @$!hI$I$!A  ! !*I$I$E)I$I$E)H$H!!**  @$! $A$8 I @8)  P@=- ywR7iP-++ fi// MfEy4IDAE4‚%J$E`PTW!IIEU5!@M$Ep\WU!&i$EU]]Q%ȉ@E%I"A$IEU!HfT%!I$I?%$ȐĆF!IIf%!I$I$?%!$%%I$I$)%I$I %%K$f`XVU!I fU!!I$I$ǡ) ?f/(B`M;mrxV3 f%y~zb1EX~`r,m `HVֿ*əs0fP- *,,f%y# o[ %q/ (F ( %0%f*`X%H$IdfTUU! E@!I$EUU)IɐfU%)Km۶mEV%m۶mf%!%%I$I$%,H$f`TU%N$e FWW?)0@ЦmE %!H$I % $@$9Qp!,|$1`^U $1TUUU2L$11|WU$IX1!,I$I 11UU IS$91U !I91  $:1 @M;91zWI$`(Mf1bWTIܦm1$$1E)$I$1E)U IdHe)E)I$ID1E)5I$1E)_~m&I$1E)WUH$I$e)E)I$IH1E)}I1E)U!I$1E)Im 11U/ I91U IP9, I$I$BD! ضm۶&91* h$91 $K9E)`I1E)5I$IB1f1 I09f1  IB91 $B$! @$`"59P\X` TJ9 % I$I9F1 I$ :1 IB$! @&9bx p \9 5  $91 I$91 Ҷm۶91IH$H1b I$IB91 I$91 I91 I$I$BD! I$I$BD! I$I$BD! <9pPN)E )(`N7Ey*+/Fvܧf,(m&1fj+B2"yo`i !￘ufY-(y-Yf*(!a&+%!L$I?%! $H$!H$fTT!-P4Fp!@$I$EPTUU%I`KF5%%!@$H$!!I$I$ǡ%!I?%! % $rb'FP^_){AF-)!!&d$f!9ap%u$1^UP$Y1pUUUI&I$11^UUI$I9!$I2( &N$9A^^ O9 I$H$A) $I$A)  (B%) I$I$(B%) I$I$(B%) 9b &IH91 $C A) I$A) $C2$91 I$I9F1 &m91 * II$BD! #5(9` I 19a5 L$H$BD! A) $I$BD! $A) @91 M91 I$k91 $I$)I) `I$91 $I691* @$(B%)  A) NBҒ91 N i91U~mۛm1E)I$I$1E)I$91e)* H1e)I$d1E) $H$1e)*SI$1E) 0 {9e) $A!$91 `91 htId91 I$[;l91I$I$91 $I$91 "a@n9e)`* 4I$I9$!  I$I$B$! I$I$B$! 91x` X 91Օ d91 I$H 91 $I$91 @!91+ $I91 I$IBD! `09x p9A  I$I$I9UUU, I$9 UU1  IRI)3)@I%+31 43I$DZ 3$J$ETTT43I$IDZ43I$IDZ4/iRDZ11I$ҧ5U1I$pr?ҧUW\3/$A$*31I$3143I$DZ*43I$DZ43DZ*44I$I$%4,DZE```4 DZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4%DZ@4)pDZU-I$X9EUTXpI$I$h-LIħE %/)!I%ǩX4)`DZ3(@1@@@IH$1e)** 1E) If1!551%)L$L&1E)L$H&E)!VV\X! e)! - 1E)I$I$1E)ꪪI$I$1E)I$I$9I$I$1e) 1E)@0 E)!I$I$$!!**$!1E) 1e)IH$1e) H1UUU`$Hf1UU$I$Hf1UH$I$He)I$IPH*I$PHIB$ XHNb$%XE1PmSl'Xe)@U qU!I$`e1@UU% ?%E) UU)I$$)U1$ $!1//H';fe)TXhhI$I$1e)I$I$9M$h$e) )Ie)!?@ e)E) @!H$He)E)kv۰ e)!X(۰mke)!@$Ae)E)@Le)E)I$I$f1e)H1%)Lf1%)X `e)!I$I$E)!a)e)!  I$e)%)  e)%) Kdle)!0He)$!I$I$E)!*!e)E) $I 0e)E)*`@@!1E)  e)$!HE)!I$I$E)!@!E)! II$e)E) /?@!I$@ e)E)6`۶dE)!<HE)!( I$I&e)E)_$A$$He)UU L$8e)U$!P@*+  b*n`E)B@@@I$H$1I$A$1H$HE)TTe)E) e) @ e)E)\`E)! I E)@$E)!*$A$$E)!*A$E)$!e)E)-I$I$1"E)! @e)!%I$e)!I&X `E) ^ H$E)!/?^^I$I$E)$! E)!I$I$1I$I$1&I$I$E)UUU%$I$E)UUU%$I$E)UUU($I$E)UUU&I$E)UU  I$!UU/mݖm)4 I$UU1mmF 4(oDZ 4H$j")!TTX@$I$!@$I! I$!IE)!UUU+IE)!UUinlE)!U I$IE)!/H$I$E)!E)!ࠠ E)!jjE)!I$I$1H$@ E)! I$$!!ZUI$I$E)H$!IH$IE) I$IE)!חI$I$1I$I$1 @$1I e)LE) @$He)IE)!He)$$!!H$I$$!!  2d$$!I$I!/ $ $!I$I$! * I$H$$! I$I$e)I$I$$!! %)$!@$H$E)!I$I$e)I$I$e)I$I$e)I$I$$!! @$!I$I$! ! I$I$E)I$I$e)I$I$d!d @$ !I$I$!I!/ I$I$d!d I$I$e)I$I$d!d I$I$d!d  @$!pXI$I!=!I$I$E)@ !! I$I$E)$@$!`xXII * I$I$E)I$I$d!d @$!I$I$d!d I$I$d!d  @$!xI$I$$!B ! I$I$E)I$I$E)I$I$E)@!* @$!@$I$!I$I$!I!*I$I$d!d I$I$d!d $!!  ! $!I$I$!VWUUI !H !*   !*I !/ / H$! @$I$!!H 8!UUH$I@0$H$H8 y{wiH- %ya- + 3IĹ %yU5 34`$E`XT!I$IEUU5$pb'fEAP\_!IɑEUU!h۶FI$I$!I$IfUU%!I$I?%$(P$E@PT!I$IEUU!PF?!!I$I$ǡ!!I$I$ǡ%!I$I ?%'N$Ep\WU!i)PF5 !!I$I$ǡ%!I$I?%!$H$)!I f) iEB@(OھEyUUh:1MnE )R}ۧ%y()0F) ()&fX%!I$I?%6,X$fbXV!f!$f@P!h6I۶F|%IH$HE!!I$I$ǡ%!I$I?%!%,f`%X$I$fXVUU)IdfU))m۶-Q@!z$1\Uh$I$1XUUU$I$9!I$I'9#I011U $I%1b@P  1b HЦ9E)m[&11p^$I$11UUUضmۺ&1E) 0I$1E)H$Ie)E)** I$i9E)UWIl$1E) &I$1%)H$I$e)E)?I$IH1E)W߿In۶ 1E) !I$1e)* Ib6I 91UU$M&J&1E)X\ )`9E)   91*  $91 m91@$I$11;s۶ 1$!7I$1f1" I1e)9F1@1E)p `1E) I$I$9F1I$I$9F1 I:1 B$! $91*  I$91* $I$91I$I$)I) I$IH91 I91 ! 91 I$I$B$! I$I$B$! I$I$B$!  91j M&m 9b~ I9A-  I$I$B$! I$I$B$!  B$! $91"  $91 I$91HR,)P1 1%qP +! f%q )IE- - [[5>*/3ҚHf&LX1e1VXP`1m;1E)-zؚ4I$1E)H$I$e)E) L$ C1E)~_om1I1E) I$1E)ߪIm1E)) 1E) I9  9 @ ,1@Ie)a5!I!I11"I$11I$IH91UW Im; 91 IҶm91_ I91 Mm91 I91 !91 91 @H91jO1aֺ  9e)*  91  91 I$91  $91 $I$:1 mt91 $I$9F1 $I$:1 $I$9F1 $I$9F1h&P1!XX`m$M%E)A^5^Sf1kkɐ|IP1A %% H9F1I$I$9F1 I$I9F1 I$I$B$!  (9e)@ aN9A( 9E) H$I$9F1I$I$9F1I$I$9F1 I$I:1 I$I$B$! H$I$:1 I$I9F1 P9a` 1 9e)  $I$91 $I$:1 $I$:1  91 ** $91 I$91 I$91 * I$I$BD! $91 $91 91 L91 I$I$B$! I91 M91 mm91 I691 i6[ 91 I$mm91I&a91I$I$11I$I11 1!I$f1a.kۭ1E)!1E) I$L1E)  P155I$IPH_`8555= yuS7qfi---/-p`f++4-!e ` DZ3r9@1\p)I$N'1UUW\$9 $A$11*$$I$91 `I$91  I$91 [C?9`z  9! A) I$I$A) | 9^ DI9!  I$I$BD! I$I$BD! I$ BD! I BD! $@ A) IBD! $A) C $BD! mX91 b"9X 09e)  $I$BD! @d$91 ۰ m$91 (B%)  (B%) O$z}9AVV  9!  I$I$(B%) (B%) I$I$A) LB$IA) IB2IA) $I2d91 I$I$9F1 ÖI$99UU  $91( ! IA) @A) L$dBA) !B2A) IA) $A) [l91 I$ `91I$I$91 $ɚ=9!zX  x9! 5 @$A) I$I$(B%) d 91 CH9f1_ IR' 9E)$I$ &1E)!I$1E)+$1E) km۰ 1e)I$X`1E)I$I$1E)`wm'1E)+ rn9E) MJdo91& I$I$A) ml91 I$91$I$ 21f1 vI$91+ t91+ I$I$BD! I$I$B$! $H$:1  91** I$I$BD! L91$P`$1 ^ Mn9E) $91* $I$BD! I$I$BD! I$I$BD! I$I$BD! ɑ$I$95UUU, pNI$9)U1 nq)4,Mݖw+410ېlDZ*44I$I$%44I$I$%43DZ43I$DZM3)I$)%UU/I$tb8ҧUW^s3/$I$3133I$I$31@$3143DZ 44I$I$%4H$HADZETT44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4/@DZǩ4"hDZFj)I$J%EUUVXI$I$h,hE4%.DZ -4- /I$H$1UUTT1e) I1!%H01%)`$ 1E)k%X4e)!Xpp` IE)!%5 Ie)E)I$I$9I$I$1e)I$I1e)I$I$1e) @1E)$C 1E)I$H$E)!!HE)UUUM$Hf1UUdI$Hf1U O$e,EYHWVZaI$I$PHImP1P6IPe)PUIP$!TUUXe)UUU I$CXe)TUUU@ e)$! @1E)I$I$9e)E)@I$L$e)!Ie) /./1IHf1/%Xc:xzz"I$P-ff1UTP@ 1E)R  f1$!jkI!b*?0e)!۰Hle)!<<I$I$9H@@!Xle)!-۲me) ͐ mE) I$I$9I$I$1E)I$I$1E)ꪪېe) / ;e)xp6[iE) )- e)%)  e)E)  e)$!$A $e)$!H$e)E)TP` I$e)E)5UUe)E) @!9I$@ e)%)`0E)!$@LȄE)*@!E)! %dB&$Ae)E)X^??I$I$@!KX e)!< C!e)$!H$H$HE)I$I$H@$I$PHV  $P@^ hE1BBJkI$e)E)I$@)(I$I$1 $I$e)E)%UUUA$E)! I$I$e)E)IHHe)$!*m e)!ꠀImۆmE)!H$ E)!E)! I$I$E)! I$I$e)E)?@ e)E)P`5e)E)I$I$e)E)I$I$1"e)!I$HE)!(I$@e)E)UUZI$I e)$!I$I$1$@$E)!$I$E)!$I$E)!WWI$E) UU!E)!UUI$$ E)!UU+ I$$!U+"m m秩*/&&9 /+IID/@!@+I$H$%)UUTT 0E)! @@E)!I$I$)(H$H$1I$I$1I$I$E)!I$I$E)$! E)!dB&E)@!$! I$Ʉ$!I$ $!!U E)!I$IE)!I$I$1$E) I$I$1$HE)$!IE)$!$L2$!TT E)  E)!I$I$1E)I$  $!!$H$!X\I$I!= II$! I$I$e)$I$e)I$I$$!!PPI$I$!! IIE)!ח %)$!@$I$$!!<$C2$I$! $!$!$$!H$I! !I$I$d!d I$I$e)I$I$d!d $H$!@$I$!I !/ I$I$E)I$I$e)I$I$e)I$I$d!d  !H$I$!\VU ! I$I$d!d I$I$d!d $H$!!  !I$I$!^VWU ! I$I$d!d I$I$e)I$I$d!d I$I$d!d  !H$I$!X^VWI$I! ! //I$I$E)I$I$d!d I$I$E)I$I$E) !I$I$ WII!/%%I$I$d!d I$I$E)I$I$d!d I!%!!I$H$!jxZI$I$!Uյ A$! ! @$@!! @!0H$! @$! $A8!  @$@8ivmP8/ j/iP + - ɟi-/?$P'EYPP\I$ h1`8v$fE s_W!ɛEUU5!)Zh۶F!I$I$fUUUQI$I$! $I$fUUU%$)B'E@P\!I$IEUU5!IF?!II$fT!!I$I$ǡ%!I$I %"%J$E@PTU!I E!@$fPT)$I f%%! $H$)!I f)%A$I$%!H$H<4DZf' 1@̟E`XVU,ɗ !DHE% +!:5R$f%K$K fVVV*%$)R$E@PW!m۶iF= !$E@P!h&o&E\]]])H hE%!H$I$!!I$I$ǡ%!I$I$?%m۶%fZ%X$I$fXVUU)I6짩f%b%Z$f1@XUɟ䆑f1TUUU@$I$'9#I$I11UUU5Id11U $I 91 I :1J%"I1bTP@m۶m1b@$I21E)ضk$1E)I$1E)I$I1%)/ I& 9e)U 1%$9E)|W$I$1%)I$I1%)I$1E)*ɶm1E) I$I11U m 91U* i91 I$I$B$! 91Z ,M$91 X$I$9f101E)Iĉe1E)// $E1I$I$9F1I$I$9F1I$I$9F1I$I$9F1I$I$9F1I$I$9F1 9F1@$)I) $I$91H$I$g9* I$I91 I$ 91 I91 91  91 #9` Id9U I$I$B$! I$I$B$! I$I$B$! I$I$B$!  91** $91  L$91 $I$91I$I$)I) I$I91 I$ 91 I91 H9UUUruWxE9/ )"dS%y*++-/%9 1,ٶaDZ/+C:Mۧ,bhfj蠀"I$f1UUVXIv1E).I1E) 9  9 I$I$9 I$I11I$IH91U I$m 91W I91 mm9e) IP9b. !I91 I$B$! $B$!  $91 $$91 L$91 @I$91 @2I$91$I$)I) $I91I$I$9F19F1I$I$9F1 .=r%9pxp IS1A - $I$91I$I$9F1ȧ9!`kIĆ1A(׷ 4A@M9e)* I$ 91I$I$9F1I$I$9F1$H$)I)@ 1E)!C@91}   9E)  I91 I91  91 I$I$B$! B$! I2{ I9!U 91 H91 I $BD! I$I$BD!  91  I&L$91$I%1E) ! ɐ91 I$I$B$! I$I$B$! H$91 $I&91I$91 91 l 9f1 $I $91 $I 91 I$I$B$! H$I$9F19F1   :1$I$91 $A!I91  A$91 $I$91  $91 H$:1  91 $91 91 $91* I91 6#I91 O9 im91I$d91W_I$ 11"%R%H15 I PH+ yW1qP//+" 9S$q++1!vn -+ 4/Im[A+3,6m6~nl,e1p$pff1UW\p!0I&1E)m51E) m1E) $$1E)p$J$f1a|\L P1a I$91 U @ $91 91  91*  A) L2$IA) $C2$ A) I$ BD! I$I$BD! ¤9$!  91`99e) 191 - I$I$BD! dH!A) L2@A) I&[m91 I$I$91  $I$9F1 vI$9f1* %A691 (B%) $(B%) I$A) I$I$A) I$I$A) (B%) $I &A) IB$@A) I$`0BD! I$H91( $I$BD! $I$BD! A) I$IA) IA) H$@ BD! A) A) [m6`91 Z#9!h 1irH9! $!I291 nI$91 t91 I$$99 91`'N$f1A^%yf9I$M61E)`m;1E)*01E) #i4 91^+ vRZ h9e)U_-6k51E)`K$1E) @N-9E) * $M:9e)z `9|9E) -5 [91 I$ 91I$I$11* I91+ 91* @ 91 91  91  B$! N' 9Vް Vi$I9$! $I"191~z R9$!* 91+ $A) I$@$BD! I$I$BD! I$I$BD!"?O$9%UUU-` ħ9=1% *4-@J&DZ 41mDZ 44I$I$%4H@$DZEPP40DZE49I$ڧ5Uxb'-%\_40E43I$I DZ31@314$@4EPP`4DZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4) DZ@@1SIE`-I$L&EUUVXI$I$h-`PE %3%DN4e *.1H%@$1TPPP 1e) *@1E)𠀈 1e) * 1E)@, e)!I$I$$!!@e)!  $f1$! 1%) 1E)zz$!I1E)驪$@$He)UUU 0I$He)UI$IHE)I$IPHI$ PH I$m[H1Tݺ Hf1UUmHf1@UUU 91e)M۲'1!~\! f1E)I$I$9I$I$1e)I$I$9I$I$1E)I$I$9h%@,e)!ɐIe)!/?"I$I$f1UUU% Iٖpf1"PcEࠪI$J%ef1UUTPI$I$9M$X4f1$!WVXx) Ide)! /? 9 @! e)$!!@e)$!I$@ @!`&`E)!e)!I$I$1E)I1E)ISA1$! lKde) <<I$H&E)!Ie)! /I$@$e)E) @e)$!I&e)$! e)%) dB& e)E)_\!$Ie)E) 5 e)E)@!I$I$9d& e)E)^\M `E) I$E)!%E)! 6[fE)!$!@e)!!I e)E)2` @e)UUUI$Hł8e) $IH8+I6E X@ս qS+`e)ZZPPI$I$9H e)E)k&[E)!I$I$1 A$IE)! *I$e)E) UH e)!<<<(I$1" Ie)E)pIe)E)UI$E)!$I$ 0E)!`E)!I$I$E)$!*I$e)E) U$e)E)_e)E)-I$I$1" e)!I$I$1"I$I$e)E)I$I$e)E)Ie)$!dE)!IBE)!WIE) Ui۶E)!U_I$I$1 E)!"HIfE))PNܧf*1 w -1+ -i+P0؆E)P``0E)!@E)!HI$E)!H$I$E)!I$I$E)!@$$E)!ZZz$%)!_UHI%)!jWUUI$I$!!UUU I$A$!!UUI$L$$!I$I$1I$I$1  E)! E)!@ E)!IE)!$H$E)!$@E) ZZIE)!IE)! E)!$%) LHHE)* I&L$E)I $!/ !I $!+(I$I$! "I$I$!!PPI$I$e)I$I $!!  IE)! E)$! 2$C$!! $! I$I$e)@ $!b  ! @$I!$@!I$I$d!d I$I$e)I$I$e) !$@$!I$I!/! I$I$d!d I$I$e)I$I$d!d H!((@$H$!`X\VII!5%5I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$E)@$H$!`xZ^II!I$I$E)$8!UU@$8!UU $8!UUP8!UUUP$@$!`xXI$I$W= ! I$I$E)I$I$E)I$I$d!d @$!!@$H$!I$I$( !+ I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$d!d @$ !I$I$PXTVII!HH!**$! ! I$I$d!d !I$I!A$I! A$8!II@8I X@-+"X=/ PA.i (H$IdETUU!ɟ7h'EUu\W!I$IEUUU!9z@F!I $fUEU!@ fPI$I$%aÆ %F?X@fE!)PF !!I$I$ǡ!H$@$fTTPP%IdIaf%%Jb'E@PT_!IIEU ! A$fAQT%I$I fUU%)!H If%!I$I?)!I$If)%I$I4-Q(DZF* @4'O$Ep\WU,I FmE%,!ض-m$f!!I$I$ǡ! 4h&Fp\_!I$IEUU5 !$E@P!ɟETUU%KIF5 %m۶$fV!!I$I$ǡ%!I$H$!&E@\! ii;Ffaj%$A$f9*~W)'I$1xWUUh 91pdNf1 5Itݶ 11U%!A11$9F1  IM'91_ M۶;91UU$I&1E)d$1E)@$1E) I$I9e)UU I9E)-  |$9E)^U$IĦ1E)I$dH1E)I1E)* i۶m1e) I&I 91UU Iv91 !@91  091* `h$91 @&I$91UUH$I$11I$I1f1*I1f1 9F1 6 ۺm91H$M1bWV 1 I$:1 IB$! I$H:1$9F1 I$)I)H$I$g9*I$Ig9* I$! 91 IH91 I$I$B$! I$I$B$! I$I$B$! 99a` $I 9E)) "I91j 9& I$I$B$! &91 d$91* &I$91H$I$)I)I$I)I) I$!I91 I91  91 H$:1 @$I$:1 H$I$9F1 B$! R I,Ii9URwfi /)` /sf+/)$)/DIdE/& 4#Mਠ(Z"5 I1P`I$IB11 m;6% 91UW I91u -I91 9f1 I$:1 H291 $$91 d$91* @I$91  $I$91$I$91H$I$)I)I$I)I)I$I$)I)I$I91I$@$)I)I$I)I) I$$91I$I$g9*I$I)I)$@ 9F1I$I)I) $$H91`9 `DI9$!  !I91 H$I$:1 $C2H91ꪪͥ 16$ɐ91E)ppT9E) 5$91 691 [ `$91$ $1f1I$)I) @I$91* $91 91 $H$:1 @L$91 @I$91 @I$91 @ 91 I$:1 @$91 $$91 $$91 H1e)h$M&1A^^ CVr9 $91 I*59` @9A / H$L$91 I 91/ $91 &X"-9e)xx 1E)  I 91+ 91  91I$I$)I) !@91 d2$91I91 @ :1@$9F1 I :1 $I$ &91 5r&1AxxI9b --I$I$9F1 H$I$9F1 @$I291 L$91  $91 I$91 $91 91p$H$EIHTTTTiviXH//+yW7uEX//)1S`E/+10 f B4 DZ 3-؆m -  ~x% Z fEaz蠀c%1W^x nvA) (9e)I$M`1E)s9یMf1Ax`I$Ie) @I$1E)!$1E)&1E)жm91UU `I$91*UU M$91 U I$91 A) @ A) {$O1aVV  9!  @l91x  09` 9$!  A) I$I$A) A) @ $A) H91 I$91I$I$9F1 @2$I91 ꪪ @Rvl91 $IA) I$I$A) I$IA) $I,!91@ I$1a{$9bx\^ `9 I$IBD! I$I$BD! `91 91) I$9UU/0 93(Im*4/P DZ4@H$DZEPTT4DZE44I$I$%M_?on44I$I$%43@DZ43IDZ*44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4,DZx3c5" uEZjI$I$h!I$I$EUUU)0E 1"!$I1@@ I 1e)mtI 1E)? L1e)***I$I$9!k6؆m1E)WVI$H&E)!WV\x! e)! %5IҶ-6HE)UUUݶa[$Hf1UU%I$Hf1UH$I$H1I$IPH*I$PHIPE)@U$I$P$!PUUݖmPE)PUUU1e)*H$@$1E)$ 1E)$A$1E)I$I$'9#P Ȇ1$!XI$I$E)!**$1E) @$1E)1%)I$A$1E)I$I$1E)1E)jꪪI$M$e)!P) f1$! -%\ɟEf1UU rEE9 h$ee)@I$J%Ef1UUTPf1$!`I$I$E)!0me)! 0e)E)@@e)E)H$ 1E)e)E)d2e)!! e)! .I$I$1E)I$I$1e)HI9r%P1!^XP(@e) I$I$E)$!-e)!  I$e)E)I$I$9I$@ e)%)(I e)E)/5%$Ʉ$ e)E)I$e)E) */I$I$91E)1E)ꪪI$H$1E)dE)!H$E)! E)  $@ e)E)5I$I$@!I$@ e)%)@3 ۰m8e)UU y0+*) [n X* &\%S"$e)PPPPI$e)%)I$I$9@e)E)dB2 e)E)_~$I2E)!I$E)! /E)!(-e)E) JD$Ie) @&kҶe)! $I$e)E)[ `e)!`!IE)!I$I$E)$!IE)!*/I$I$1II$1$@$e)E)__UIe)E) $e)E)+_I$I$e)E)+ e)!e)!I$I$e)E)*H$e)$!(I$I$e)E) I$I$e)E) Ʉe)!H E)!I$)( EE)%(PNE +/#Fiw+,"X ꪨ*)K$R%E)TTPP$E)!z$E)!zUL$E) WU$I$%) UUUL$IB%) UUU- $%)!UUIE)!իI$I$E)! I$I$E)!H$HE)!VVI$I$1I$I$E)$!I$I$1 E)!E)!@$E)!IE)!I$I$1 E)!j$$ɐE)*  E)$!I$H !$I$!I!A$!/  $H$$!!I e) $1I$I$e)$I2$C$!E)!$E)$!@$Ie)I1$1I$I$$!!( $! H$I$$!IH$!??>!< ! !  ! $I$!I$I$! ! I$I$d!d I$I$e)I$I$d!d I$I$e) @$!XI$I!UUU5I!5%I$I$d!d I$I$d!d I$I$d!d I$I$E)$I$!xI$I!WUյ!  @$8!UH $8!I$I$@! I$ @8UIH8U*A$@RI@UR$8!UUP8!UUUPI$I$d!d !/H$!I$H$!/I$I$!^_I$I!_/ I$I$d!d I$I$d!d I$I$d!d I$I$E) !I$I$E)I$H$!zzI$I$WՕ  $! !* I$I$E)$! !I$I$E)a !I $8 UH$I$@0 !H8%ɟ%yH=& 6цa %ɟEy\WUU!yE5uUUH$I$h!yAF5I$I$I$I$! f% !9E@@p%$I$EUUU!ooѶF=!$f@P! f%[mfZ % ٲĆF!I$IfUUU! I$fEUT!I$IfUU%6l۶mf)۶m$E*V)$J$EVU%! E@AA4ېIdDZE 4'O$Ep\WU%IE)ظ1c$fjZV!IIf!$H$f@PTU!I$IfUU!@&Fp\!x'ETUU%IIE! @$f@PT!I$IfUU!!I$I$ǡ!@&Fp\$͚>E`xpIfq@$I$1E)I$I1%) ۳$ 1a` ɕO95  !I 291$$11ض6M$11xWU$1E)$H&I$1E)H$I1e) IW9e)UU k>9e) X ?9$!_Ie)! //Im1E)inۆ 1E)I$i11UU* m&%91 i791*  91 691 M$91U`$I$11I$I11+ I$11/!I1e)͐91%)p 1%)/I$I$9F1 9F1P`Т%1E)@P1E) @$91 $I$91 `$I$91I$Ig9* I$ 91 I91 B$! $B$!  :1 $H$:1  :1 I$I$B$! p$P(9bX\p  I1  $91 $I$91 @$I$91I$I$g9* I$ I91$IE1 6m91  $:1  I$:1 II9F1 I$I$B$! HB$! AB$! I$I$B$! I$I$B$! I$I$B$!dN2p9)#M/vX ++PJ/sf+-(M`/1+NC DZU][z-#$@j耀&/19VXP` $91 @I$91 I&I$91$I$91H$I$)I)I$I$)I)I$I$)I)I$ )I)I )I)I$H$)I) I 91I$I$g9*  91I$@ 91  !I91 `& I91I9F1 @$$91H$91 @$)I)$I&91@ 1f1 *$I$91@2dB&91 I1f1 **I$I$)I)I$I$)I)$H$11I11 ** @ 1E)@4I1I$I91dB&$C91I$I 11 I11 I$I)I)I$I )I)I )I)  $:1 I$@:1 I$$ 91 I$$ 91 m۶ 91RN$1AV $ 9  ۶mf91 I$091j$I 1$! I$I91#i9E)zI$IB11!!91#1`IX@1A/I$I$g9*@$H$1111$Mb'1\IJ1!$@L$91  i>1p DIT9 - $ARm91W um91@$I$91$@$ɐ1f1 ļ1!I$I$)I) @$$91H$H$91 R#$9!z TII1 ! 91 $ 2`&91 $C!91ꪫI@$)I) I$I :1I$I$9F1I$I$9F1@ Q9Օ5 C$PH* }6%iP/)&7gi+3qyw7'pǩf--+4.) E@4.DZf 41lDZ3)#H~/ if^z& C %y^z}>b%e1^Z w>$qf1UUW\ Iħ9e) j;N$9e) M9E) Ib']J9e)W_ I$v99e)UUZ$I'e)a\VXJme) mi$1E)0ݖ1E)1E) m$I$91UU `[I$91?U BA֚9%) 91* II$A) h'#9AxX` TT9! % I$I$BD! IBD! A) I$HBD! I$I$BD! I$I$BD! II$BD! I091 I$[:9f1 !I$ 91 $I$BD!  M$91 !$91* Lz 9 m۶m99 H$(B%) I(B%) (B%) I$I$(B%) LA) I$@BD! d$d&91 )vmn91 ** $I$BD! $A) I$I$A) I„dA)  $I2A) I$BD! $@$A) I5ضm91 I&X`91dH$ 11 PI91/ @I191 $99 @`9e) #9f1z I2' i9e)W~I$m41E) Жm:9 j 69E) #PI9E) I$9E)I@2L$1E)* NI$9E)I'I1bW !L9h"59rX` C9 % k491 N$t91 I$IҤ9f1 I$91+ 91+ $91 I$ :1 I$I$B$! I$I$B$! $91 b"ѐH9x 0I$I9%) a閤91+ I$I$BD! I$BD! I$I$BD! I$I$BD! $A$I2Q)?(O$*/W1 IP %1H0 ET41aِdDZ *43DZ44I$I$%7$M%?W4I$Mr$ҧUWVS44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4J$DZETV44I$I$%44I$I$%4% DZ/I$rHEUU\I$I$h- I$E%UU,nE(I$J"%1UTTPI$11LB&@11W^PI9 " 9$Hf1UUU`B&$IH$!UUIH!UI$I$PHI$IPH I$IXH*I۶6Pf1Tm.؊Pe)PUU͐ mPe)TUUUL$`B&1E)I$H2e)!WT e)! /!$@1E) 1e)2 1E)BjN)1!--  1e)1E)ꪪI6[1E)UU 1E)1E)ꪪI$I$1E) 1E)I$I$1E)I$I$9h4@ f1! $IE)!/+ې 1E)Gvb%ye)UU nEE9 R)$@ee)P@I$Ef1UUUTL"'R%1$!V\XX IE)!//?e)$!1E)I$I$1E)ꪪ A1E)@!mX4e)!Pf1! -I$I$9 $I$9dȄLH1E)I$I$f1e)k@ 1!!A$IE)!+Ie)!I@!I$I$9IH e)%)* @ e)E)I$H$e)E)Ie)E)0e)!!f1$! *1E)ꪪI-lf1!Ujh E)!ﯯ $IE)!//)(Ie)E)I$I$9I$@$e)E)( 9PI$qe)%U N7i++#@"$B$E)PPPT e)E))I$e)E)9 &e)$!$e)!mۆmE)!I$L2E)!U\I$E)! UH$E)! e)$!  me)!/.(H$@! 2e)!I$E)!(I  e)E)Ux E)!%%I$$E)! I$E)!I $E)!@$I$E)! E)  $I$1$I$1 e)E)HI$)( $e)E)U$e)E)UH E)!!I2E)!$E)!H$E)!N)tE) )(N7sE +/-,&XA ,mH!@ I$I!UUUTI$!E) UU IBE) U AE) I$I$E)$!I$I$E)$!* IE)!.I$I$1$@E)!I$I$E)$! E)!@$E) ZZI$I$1 E)!ꪪE)!I$I$1I$I$1I$I$E)$!E)!j I%)*$C2E)!z_WI$I!* $@E) յ$IE)!II$$!!  $!!@@I$I$$!! $!7 E)! E)!I$Ie)Ie) 1H$Ie)$I$&$!P$I$!I$!* I$I$$!!H!<I$I$$!!I$I$d!d $!I$I$!I !?/  ! ! I$I$e)I$I$e) !`H$I$ XZ !% I$I$d!d I$I$d!d I$I$d!d I$I$E) !H$I$!~UUUI !%-  @$8!UII @0I$I8!@PI$8!TUUIiP!I$I XHUIbm'`HUvBڒHXHUI$$P8IB$ H8 $@!ZۖP UV $8!UUTI$I$8I$I$!!I$I$d!d I$I$E)I$I$d!d !< ! !* I$I$!VVVWII!@$H!*I$!UU!*(@ !b !(I$I$E)@$H!A$H$8!I$I @8IIP8//IЩfP%-  Яf%q/\F%yH$I$h!IGF5_fEI$I$I$I$%`K,9Fp!E\WU%IbA,ɆFU!I$IfUUU!I$IfUUU! f%,8r$Fr^W!o$E=U!P-F!I$IfUUU! f%!I$I?)J$Z"`EVVZ)I$4EUU4 E3I=̓EUpv)I 4HE%)ظ1c$fjZV!I$IfUU!$H$fAPTU!I$IfUU!@&Fp\H$IfE?! @F! $I$fUUU!I$IfUU!f!`=ff)P<'I$Fe1\UUI$I1E) e)I@1%) $9 I$I$11*  IR$91ZU@۶m$11_UH$$1e)$I$1E)L$I1E) ?19e)- UI@$9E)/ $I$9E) 1E)mӶ1! dI 1!/i۶11 It091 !@91  @291 X$91zW $I$91_UUI$I$9 I$I11>I11 11 ?9F1@$I$)I)Z$Z-1!1 1%)    :1 P&M&9bXVX 1 1E)I$Ig9* I$ A91 I91  :1 B$! I$I$B$!  $:1I$I$9F1 I :1 B$! $91 L$91 $I$91I$I$g9*I$Ig9* I$ A91 II91 11@1e)J$HD1TUT I 9 I$I$9F1I$I$9F1 B$! I$I$B$! I$I$B$! I$I$BD! I$I$BD! I$I$BD! 691 ƑH9UUUqe9 &|X??=5-"@N ++/,P-6ǩ/ IuSf/+,hh"I$L&1UUVXI$I$)I)I$I$)I)I )I)I$H$)I)I$A )I)I$I)I)  9F1II$)I) L$d$91I$I$91 $$1f1$A$91@L$91_WH!11I&L$11 11 I$I$g9*I$I11*I$I$g9*dB2$91I$ 91I$ )I) mӶ۶ 91 Iڶ91I$@$)I)91 d@91 IB@91R%1ApɐI9a-%- I$I$9F1 I:1  9p&9$!pxViֆ1$!i  9W9! +-- @$I$:1I$I$9F1I$I$9F1  :1 I$I$B$! I$I$B$! B$! M9a޸  i9e) HI$1A( O5VS9bbɕ 1a/5% $91 91 I$I$BD!  91 $I$:1 @$I$9F1 I 91 ** d91 $91ꊨ N'9bV^ I 9  MҶ91 k= H9AxP49%-  vBǢ I91W_!$ 91$I291() 1E)@N$I[E)!(I$H1E)I$I$)I)I$I$)I) $&9axPP1b - m]91@$ 91 !91H$H)I) @$I91H$H)I) $I$291,4R=98``x$A!P@* yW7qP-//) wwsq /+ F"{) -O1)§^%UO4I&R)DZUX)Zmk3!)%h@4IE4,i1 3m~ꨀ)3 E_" EE1Z蠀 %qf1UW\PI$L1E)I$I$9@$1E) `۶c'9E) _ @Imi9$!P v9E)_ qb;9E)] ضѧ9E) @$1E)жi41E)Pm$1E)01E) IS1E) I$91 UU II$91 $In91+ I$A) II$A) I$A) $C2$A) I$I$BD! X&91\ $I91 A) I$A) $AA) I$BD! I$d91 91** жm$91 Vi91 I $A) (B%) I(B%) @99!`  9b (B%) $C A) il91 I$H BD! I$I$B$! $I$BD! $A) I$IA) I$ A) !IA) @$A) A) k 6l9e) Iڴ@ l91 I$I$91 ЦM$91 @191 (B%) ۲m`9e) 91 u$j59aZ^x!e)a  9I$9E)/ P y9E)/ TAe)~ ?Ae)UW^ $I$1E)?Jۦ1E)  TN9E) * @$91 $A) L"& I91 m6m491 MI$9f1 I$91 91  $91 II:1 I$I$B$! I$I$B$! L091* I$M%91 !I$91 /  ݖn91+ I$IBD! I$BD! B#$I9E)pO$sI1a^~ɑo۶(Z-,p 䧩9 U1 ma4,Mݖw+410lDZ 4 $H$DZETTTk-'jʆ/Z4I$H$JDZUUTP4 DZf44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4KwDZEV44I$I$%44I$I$%43%4%Z1DZX`H,L2'#EV^rI$I$h+I$E5U+R%"-1PP@@I$I"hf1UUUo;x1U@b;CP1 $P8TI$ PHI$IXH m&I`PUտ*IB`e1PUI $Xf1@UUU '9#l@$1E)RZaI1E)ՕdB& 1E)@$ e)!!$Ie)!?۰[61E)}1E)** )H$@$1e)I$I$9!IH$1e)I$I$'9#`$1E)zbIL&e)!+/@!1E) $1!X$If1!I$@ 1E)@e)! 1E)j魫I$I$E)!ݐnl1E)1e)PO$%yf1U  Wf%y +Z"-&HE1P@P%b̄1!XXI$I$E)!) 1! /1E)I$I$1E)I$I$1E)ꪪ@$e)E)`e)!IdM$E)!7\f1E)1E) '9#H$1E)ꪪ1E)꯯I$H&1!vm۶E)! +* e)E)@!@H@! H$1E)@$e)%)II$e)E)ض&kvE)!X((1E)I$I$1E)I 1E)ꪪ $@$1E)Ie)E)U۰m[$E)P\E)! Ae)!@$e)E)I$1E)`SEyX /H$L$EE)TTTVI$I$)(H$2e)E)} IKE) JIJ! E)($e)%)e)$!$ e)!LB2$IE)!VhI$I$E)!UUW$I$E)! UmmE)! `-6e)! ۺmې e)!!A e)!۶kde)!((?Le)E)V! e)E)I$H E)$!@$E)!ZZI E)  $$E)$! * )($ $E)!*@e)E)_** Ie)E)UIB2$He)E)U I$@$e)E)UU\^@$E) PP$C2!E)! I$E)!I$E)! I'%y$!UUU PN)E%1 ), sf --(,hMꪪ+Z%hE)PP@I$E)!IE)!$&E)!$I$E)!I$I$E)!I$I$1I$I$E)!HE) (I$I$E)$!I$I$E)$!$E)!I$I$E)$!E)! e)! E)!$E)!I$I$1$E)!~@$I$E)!_WUL$I%)!UUսI$E)!H$IE)! E)! 1@$I$$!!@II$!! I%)7 E)$!@$IE)$! 1 %)$!@&$A$! $!!@`$LȄ$!X說 $!* I$I$e)I$I$$!!PI$I$$!!I$I$d!d I$I$d!d @$I$!xhI !-I$I$$!!$! $!I$I$e)I$I$d!d @$H$!pXVWI !5 I$I$d!d I$I$d!d I$I$e)I$I$E)I$I$d!d $@$!`xXI$I$!յ$H$8!I$I$@! A$H8!@P8!TUUU@!$!I$aUU q 3qX N@iH R# iiH_If@EyHյ >߶i@zXI$$P8IB$ H8_I$@ V@!UTI$8!UUT8!UUUTI$I$d!d H!<I$I$E) @$!hI$I$!A  ! !*  $! h !*+  !!*   !I$I$0?I$I$8 II@8əWp %y@%- C+Ea ) `aE%q+ ]۱FE\WUUI lfE5H$I$fE $I$fEfE%ml)F?C%$I$E|WUU!IѶm۶F5!f@!  f@@%۶mIf! @$E@PTI$IfE?!M$HҶEWTT%He[F᡹%ɰm[$f%ZV%۶mِf) % 8Fp%@$IĆETU3IDZf% 3ڴ]DZf`)Imf%)$ɒ-'F^!h۶-F !$H$fAPTU!I$IfUU! @$E@PT!I$IEUUU%Ò-ۆF5$p'fEP\\!mIF=5!0fA`!=$e)pWUH$I$f9e)I$I1E)+I$1E)/P$X,1p\X`01 I$I$9!$I$9!I&1E)I$21E) ALȄe)E) ח 0`9E) /@X'9E) ^ @'I$9E)^UU$ 1E)I$I1E)+ !@1%) Nl6I 91UU I91  $B$! ۶591 M$91W`$I$11$9 $I1E)/ I$I11I$H$)I)11I11? II$)I)9F1 9F1 H$)I)@$I$g9*H1@!I$11I)I)9F1  $:1  B$!I$I$9F1 I$I:1 @$I$9F1I$I$9F1$9F1 @"I$91 @$I$91I$I$g9*I$I)I)I)I)  I91I$I$9F1I$I$9F1I$I$9F1@&P1E)x`.`)1! * B ϕ1 7  $I91* I$H91* I91* I$I$BD!  91 $91 `k$91 6M$91 $I$1f1I$I$9!I$I$11* vmi;i1URqfi +-+`N7f+-(0  +)/)I`0ǩ/(l3;DZ,Z9 9PpI$I)I)$MZ$1A| J1! $1e) C&1e) @I$1f1*H&L$11 11/H$I$11 11 I$H1111  I$m91W ik91 mӶn91 IB&`$91 I$)I) $I$C91I$I$)I) $A!I91 $I$:1H$H)I)91I$I$9F1H1E)&  $ 91 I$I$:1 9F1 I)I) $A 9e) I$:1   B$!1E)`#`1%)01$! I$I$9F1  B$! I$I$BD! I$I$BD! P&9`X 9 س'1AX 9 I$I$BD! Nv$I9!( A 91.@ 99E) x  1E)  :1  91  9 & IB$! H$91 B$! I$I$B$! I$I$B$!  091ꪪ  91 I$I$B$! H$ :1 ۰mt91  :1 I$I$B$! $@$:1  I$A91 H91 d91 IB&`B&91 I$ 91 s"9 I1XIK1-  I11/ $H$11! 11$I$)I) $)1e) I69E)** I!$91j٘=bHA  XH/yws7%yX----&1E---/1() P+ 4100DZ ?4I$I$DZUUUO,$b{m)†ʿZI1im׶)%%*O3L"@D)DZV M-*I)§UUȠM%l)†_,3 iE~! EEAjI$l%1UVX`I$I$9 d1E)m51E)I& l1E)1E)$ I1E)+`wc;1E)+P3Iئ1E) 9d 1E)I$1%)-1!jjPeSf1!-I$1E)t1E)I$I$9 I$91+UU @I$91 U  91/ (B%) (B%) [591X` IH91  $H$BD! I$A) H$@$BD! I$IBD! I$I$A) $$I&A) d&91  I$ 91  @ 91 I91 ** t91* >`9p` ɑ1`9b%%  I A) $I$A) @$H$A) (B%) d2$IA) I$LBBD! I$I$BD! $I$BD! !A) I$H A) dB2$HA) I$LBD! A$I$A) I$I$A) 91 m% 91 I$L291 &I$91* @!91 @(B%) "I91` v91 NR'Z i9E)m6k1E) 7I'9E)U_ T19e) F9e)^ 9e)U!$I$1E) Mv9e) I91 ɐI$BD! [mV91 N,ڀ @91$I2d211 -tI91/ !91 091 mm91 I:1 B$! 91 I$91 $>1p PW9 -  @$9f1 H$$BD! I$I$BD! $" 9f1@@H$IDe)a<<%w߹1-UU- 9 -1! n 3HH$EyTTT41lÖm%k/ߞojDZAUk)OjʧUUTP41 %44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%43@$%41%44I$I$%4)DZ@1) 6j&DZWW^,N$c9EWTZzh%HɔE%&c5Ezh#XE`z u:b iP^LB۳ `8VV m4`E1 P$!l`E!@UUHI`%)TUUU۰ Md1E)01E)zz!$1E)1e) *IH9I$I$'9#I$L&1E)I$IE)!**(!e)E)  I1E)H$H 1E) 1e) *@ 1E)1e)1e) C2" 1E)_~1E)R"f1!X!@$ 1E)1e)$IR'f1P\@!1!**`$`&f1!im۶1!?@$21E)I 1E)O%f1 %Of%y +J@eTPm6 1$!_~imۤe)!?He)$!(( f1e)II$1E)I$I$1e)I$I$f1e)X4`e)!pp) Ie)! 5 1%)۰m$1$!1e)I$@ 1E)ꪪf1%)p I$L$E)!!I$e)$! *H1E)I$I$f1e)I$I$1E)@!C2E)!0۶me) 1E)I$I$1e) 1E)$C 1E)ꪪI$I1E)b@e) XI$I$E)! E)!/$ Ie)$! @ He)UUUniH// ȯ$K'qe)TTTV 0Ie)E)pC2$E)!1` $%E) $ e)E) L„$ e)$!( 1E)H$e) TIe)%)Kme)!L0E)!V`I$L0E)!UVH$I$$!!5 A$e)!/HI$e)E)Ue)E)/ 5  1"$@$e)E) Ie)E)@e)E)^ e)E)xI$@e)E)UUPI e)E)Uuu A$ E)!$I$e)$! I$E)! ***I$e)E)UUI$)(mn0e)! $Ce)E)Ie)E)UI)(IHE)!((_%yE)UU"PNf8 ,P sf /,"X8ࠠ%I$P%E)UTPPI$I$)(`@E)!I$H$E)!I$I$E)$!I$I$E)$!$@E)!I$I$E)$!I$I$E)$!I$I$E)$!@E)!* *I$I$E)!I$I$1$E)!*XE)!પ $E)!$I$E)!I$I$$!!\__I$ E)! H$E)!IE)!I$I$1 1@$IE)!$@L$!((I$I$1 E)!jj!@$! E)$!$1H$Ie)0$! I$$!$!* I$I$e)I$I$$!! %I$I$$!!PI$I$e)I$I$$!!`$H$!zI !+  $!I$I$$!!*I$I$e) $!$!$@$!`P\I$I!U5-!$@$!P!I$I$d!d $! @$!``I$I$0=I$I$8I$I$@  A@ JZV@$!!I$I$d!d @$H$!pX^VI$I!//! %q!UU %q!% O iU?% &-ҏijp H%qX OR" i%qPv@iHW`aHUI&k `X@U_I$dP8IB$ H8_$8!TI@!UV$8!UUTH$I$8UUUTI$I!յ=-@$H!!**!(!!! $@$! $@$8!A$I$@0ɝy`8յ% %ܭ۸%qXڶy/rFi=-hfMF%yIfE5=!h$I$E\WUU  fE?IfE?!m۶m"F?O!E$O$ESTUUI1`fE5 I$I$!$I$fUUU!f@!- @&Fp\!'EUUU!o۶@F!mIEU%ɐ-Y$f%iYV%I$I fUU%%$H"%E@P!x$IETUU1ɑ@DZE5 3䧩F%!I???%,X$f`XVp'p$fE\\\P!9ɟEUU!I$IfUU! @$E@PT!I$IEUUU! mۤFI$I$!M$A2fEi*j!-0$fe1 ZU$I$qe)xWUUI$I1E)I!1E)+   9 H$I$9!۲m۶1E) H$9!mۺ&1E)I&I$1E) I$I9e)UU- &`9e)U% ImP9E) P$I$9e)I$IH1E)+Iv1E) I$$I11UU/ m$E 91 i91 $B$! `6912L$11H$I$11I$I11 I11+@, 1E)xu1E)?I$I$)I),1e)11  9F1I$)I)$I$)I)H$I$g9*I$I)I)I$)I)I9F1 I$I$9F1,1%)  7x9E)**- H$@$:1  :1 HB$! &91  L$91$I$)I)I$I$g9* I$I91 I91 ! I91I$I$9F1I$I$9F1I$I$9F1I$I$9F1(1e) 1 $C$91ꪪ* "9e)j IT*9& I$I$BD! $91 k$91 I$91 $I$1f1I$I$9!1$!$1E)`X&1%)5k$1b`X\IKf1b  I1E)wIyyf1 )! N1%q +,` ++--1(T &DZ+1(DZ+ Hf~%N.'R91W\PpO'+I1VXI$I1 I$I11 I2$I11I 1f1* dB2$@91 IX91 I!91I$I$)I) ! 91H$I$)I) $$C291H$I$)I) 9F1H$I$)I) I 91 91ꪪ I I91 I$H :1I$I$9F1 I:1   91 ,@1E)@ϛ79$!շ. l91 @$I$:1 I$I9F1 I$:1 $91* H$I$9F1 @R&9X)J$1b\W P T1a  ֦91 691 $91 $91 " ۰mk$91 J%"I1\p ɐI$1a_^N&. 1a^p 9p I9  91 @291 $91 0B99E)X`pzN1$!/// 291 ,&I9!`IϡC1=7 !A91 + I$I$BD! 91* I$I$B$! $91 91 * I$I$BD! I$I$B$!  ,91ࠪ II9f1 I:1 I$I$BD! @$91 I :1 I$I$B$! 91 LB2 91ꪪ  !A91 I$H$:1 91 * $H$91 $C$@91*  ,91몪j ۶I9E) 9e)z Ix9E)յ &I" 1%I1UUH$K$%IHTTVU1[1XH/-//y1Ea----+1RRf--+3+1y&i 41-ۂ-DZ41 %41 l%43%44I$I$%H4$I$IDZUUUM3I$)DZ%UUR)c"m'J†Z M~IA)fW^; c%W_S%9VZ I&lq9UUU\ I$ 91U I$I91UUW$C$ 11d1E)m51E)I6] `1E) @!-жm&1E)"Ħ1E)  چ1E) I$X[1E)II1E) $I$1E)/I$1E) 61E) ۰mۖm1e) 퐤I$91/UU  $9f1 w91 P$9a\ Іk91 ۶mݐ91 I$I$BD! $I$BD! @$A) H$I$BD! I$I$BD! H!C&A) LB2$A) I6@ `91 I$I91( 6`;v$91 i91 91 I$@$A)  (B%) (B%) I$@ A) I A) (B%) I$$CBD! 9$!4 $I$BD! I$A) (B%) I$I$A) @$I$A) @$A) I$BD! @9f1 I$91 I$I$91 )I$91  $91 @ (B%) [m`91 k91~ IB'$9e)_~I$I&1E) I$9e) UU (Ae)- ~&*Ae)_x I$O>9e)UUWxmۆ1E) I9e) $@91 Id$A) X`091 m 91$@$11 ÒI$91 I 91///  91 I$I91 I$I$B$! I$I$BD! h= 9Ax KH1% I 9 !91 I$I$BD! I$I$BD! x$I$I9E) I$I$BD! 91)LI$9 %UU--IEI 3)@I.+4/HUѶDZ *3I$ DZqU3I$O$DZUUWT44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4) DZP@1$MiFj,I$`%EUWXX  E%yꪪ ˜iHfEy hf%yz?P'1PU 䊴I۶i1@TUU 11p@@k@ 1E)^xxLH E)!I$I$e)E)+  1E)@$ 9 01%) H 1E)1e)X l ,1$!$e)!H$H$1" !1E)"(1$!@@ 1$!I$A9! ɄL&1e)I$I$9!`B&$C 1E)I$I$1e)1e) &`&1E)ZZ@!@1E)PH@1!X!I$H1E)")I%f1$!PI$I$E)$! f1E) @1E)I$H$1e)NI%f1 %faTVVJ$Vb%e)TVRBM۲f1!E)!+*!1!*2 1$!Bjim 1$! &klf1!_^1E)M$X4e)!V\P e)! -L$ 1!* I$9I$I$'9#I$H$1E)@01E)^zI$I$E)!$ f1$!+$H$f1E)I$I$1E)ꪫ IH1E)II$e)!* .@!e)E)==@ f1E)ꪪ1E)I$I$1e)@ 9$1E)z$  e)E)k5me)! $&E)!/@$E)! $B2$C2He)!IXH/H$I$Xe)TTTUI$1E)-۲mE)!k:`e)!I$I$E)$!H $e)! $ e)$! L$ e)!<<1E)I$I$9@e)$!I$@e)E)M5ۆmE)!^I$`0E)!UUx$I$E)! UWI$E)!U@$e)!DI$IE) $e)$! I$I$e)E)I$I$1" e)$! I$I$e)E)*I$I$e)E)$e)E)\Ie)E)U( *Ie)E)UIe)E)Uꪨ @!NDHe) @$e)E)XXI$I$1 I$I$1  e)$! ?p%)UU% Nw%q /)0)ن1@%y%)UUUTI$I$E)$!$@E)! E)! j E)!I$I$1I$I1I E)!I$I$E)!* @E)E)!I$I$E)$!*@E)!Z H$E)!H$I$E)!I$IE)!I$E)!E)$! E)!@$E)! $E)!H E)$!I$I$1E)!jjj @E) @$HE)!^^E)!$E)!H$IE)!0E)!z`$I$$!I!A$! ! $!I$I e)I$I$e)I$I$$! I$I$$!!$!I$!z* !I$I$! I$I$e)I$I$$!!I$I$e) $!`@ A$!I$I!WU? ! I$I$d!d I$I$d!d I$I$e)I$I$d!d @!H$I$8UUI$I$8I$I$@ I 8!PTUH!I$I$d!d I!*( @$!`xI$I$!A  !%) !$I$! ! %.HI$! UU"h۶m I%y$q vBے$%y%q~ @Ei몀C i%y`  H%qX_ AqP_v HiHWvR H`@WI&[ `X@U_I$dP8IB$ H8 $@ VII@ UU$8!UUU$!I$I$E)I$I$E) 8!UUUH$I$8!UH$I$8!IIP8U5!@`H w%yP/+ M %y%qIf%y/!EQ]WUI$I$xI $fE??!I$IfUU!E&M$Es\WUI$I$I$I$I$I$!-ТE&Fs\IfE!o&E]]_?!ɛI E!I $fEAP%I$I fUUU%)ᘑ$2fjh!x$O򤆙ETWU1ɑ  @E5 1 9e)WzI$I&1E)I$9e) _,Be)/ I"'/@Be)W m۶Ƨ9e)dI$1E)/ 0ٖx9E) @ &91/  A) k"&H9f1 IIJ91LI$11(* i91 91  91 ]z$90W 9! @9@ I  9U& i۶m91 I$91+ ۶mݖ91 I$I$BD! I$I BD! I$I$BD! I$I$BD! I$I$9UUU,JIĆ9 %1 ŧf 4 R2%EyPRkEۢ)I)J4I$I$)DZUUUT4 @DZE@@@4 DZE44I$I$%44I$I$%4% DZ@4DZf44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4@$DZEPP4pDZEy44I$I$%44I$I$%44I$I$%4)8 `DZ\P`,͛Eh)I$N'EUUWTm6m۶%9*j#P$I$1PUUU 11$ A11%5?I$I$g9*mh1E)ꨨI$H&1E)I$I$e)E)??! 1E)1e) I1E)***1E) I$9`1!I$kf1!Ie)%)  1$!ꂊ1! @9 9 dB$ 1E)I 9!`H1E)<<I$L$1E) 1E) *HI$9II$9I$I$'9#IH$1E)PH1$!PM&C1!I e)$!**  $1E) 1e)  $1E) PN)t%e1 :ifEꪫ)?Ee)UTP@$@$E)!zz$I$e)!1E)I$I$1E)I$$1E)I$I$1e)`1$!jI$K&E)!Tx0f1! I$1e)I1e)1e)I$H$9`$1E)W^zjE)!*  $f1E)U۰mۖl1E)$I$1E)K2l f1!1E)I$I$9LȄ$Ie)E)1E)@$1E)^^#9,I1$!pz  f1$! [5@ @1!x[ҭ0e)!i۶ke)!$0I$HE)I PH/**  @!I$I$9 Ie)!>> $H$1E)`$$e)$!M$Ke)!ItI$E)!/Wte)!- $@@! $1E)1E)e)$! 9,e)!i5 `e)!{cI$$E)!UuI$L%)I$I!@$I&%) ^$I$E)! UU@$$E)!e)E)HIE)$!((I$I$e)E)H$$)(I$I$e)E)/I$I$e)E)I$I$e)E)E)  E)!$I!E)!HE)!**I$I$E)$! I$I$E)!E)!jjPɗ%!U% P .%y +)#` fZ*(R%(!PP@@!@E) I$IE)$! $C$E)!j E) )(I$I$)( )( @$1 E)! $E)!E)!@$I$E)!$I&dBE)ZZ*IE)!$@E)!ZZI$I$1I$I$E)$! E)!@$HE)$! E)!I$I$1I$I$E)$! H$E)! E)!I$I$1@$@E)!I$$!!@$I2E)!W`$I$%) XWUUI!@$!  @$1@$$!A$I$e)I$I$$!!I$I$$!!* $H$!|~I$I!?I $$!! H$Ie)A$I$e)$!>I$I$e) $!H$I$! I! +*!<I$I$d!d $!@p! I$I$d!d $H$8 UUI$I$8I$I8!@I8!@PTUI$I$e)I$I$d!d I$I$e) !H$I$!^VWUI$I! !I$I$E)!  !I$I$E) fi5HO$%yUU IEyUU6H$E!U$Ey!U&I %y  $E%qu t2@%yi~ 3%yaW  H%qX_ AqP_ S# iiH_vR H`@_I6 `X@UI$dP8IB2$ H8W$@8!UA 8!UU@$I$8!I$I$@! I$IP8UU5ɓ*X8°yw/iH/tN %y`-++ {w{F%y=lذmfEII$fE??H$ fE!I$IEUUU!m_"I$I$e)I$I$E)I$I$d!d  @$!I$I$ !/ H!((@$H!(I!I!/$I$%y!UUUI$%y!UU$%y UUI$%yUH'%q!U$m%y(  v I%qX_  IiPN HiHWNb[ i`@UI$m lX@UWI$HH8LH$ H8 s$i8 t,. iH* qR0 %qX=/  OE%q9EF%yI $fE?I$I fE $I$fE!-ZE$FCSTI$IhIIfE???H$@$fEHI$fE!m۶m{4Fq!$I$E\WUU IfE??@$I$fE!I)ZF!H$IfTUU%`A,;F/~%"'I$E@\UU/1E5 / ,P&f@`X%Nb[ IFW?%%f@Z!H$I$fTUUU%6b)$FOkwW!IIE $fE@@P!OIEUUU!֭[:fEQ xuEe)_UXm۶eAe)XUUI$I1E)+#II1E){ 1bI$I$9!I$I$9!H$I21E)Pi$If1` ߶m9%)/ IT@Ae)U `X'Be) _IAe)_UUI$I1e)I$I1E) I$I11U I$A11 !A1e)  I291 $$91~WX&I$11^UUI$I9! $11 11I$I$g9*I$I$g9*I$I$)I)I$I$)I)۰mִ11@'p"=1pXX`P9uK1b I$I11 I1f1* 1f1 9F19F1@$I$)I)@$I)I)I$I$)I)I$A)I)$@$ &1f1 6I$91еO$1 VV4I`1!I$  )I) $9F1$I$)I)I$I)I)9F1I$I$9F1I$I$9F1 ۶mۖ 91- I$91 091z 91 X$91 _ 5I$91_U $I$11I$I$9 $9 $$1E)m1E)I2$C1E)؉1E) I$I%9e)UU- W6'9e)U-^ 1`c;9e)%^U FI$9e)^UUh&mҶ1E)dB&$I1E)ۭ1!i1E)1E) I$I$9 I$I$9 I$ I11 I$$ 11 It91]`Wy9 %!PN.䆙a +U(  i+ЧEyTUU~f%y 'f%q?|I'c8%1W^zr 1E)HR1e)@$I21f1 11 /2d$11 11 / 9r=1`X`@I1 5 I$I$1111I$@11 $I91#$I1`  I1b-I$I$)I)H11( IB!91I$I$g9*I$I$)I)IP I1 I$I$g9*I$I )I)k 1%)jI$) 1W8 TI$ 9! mn91kX$I$1a0UT PII1 I$91 LB&$A91* I91 !I91 H$B$! I$ 91I$9F1 $H$)I)I$I$)I)I$I$)I)%1%)`11E)?AI)I) I$$A91  91  B$! $C$ 91ꪪ I$$A91  91 @&L$91 $I$91 I 91 LB&91 ۶[&9E)@P1E) H$I$)I)A$A )I)  91 0`B&91I$I$)I) !I91 `0`$91KX1%)V0 ]ҭ91+ I$ض91W i۶v91 m6X 91 Iiu91I$I$g9*I$I)I)@$I$)I) $I$)I) $$I$91 I$91 I$91 6$I9UUUH$H$%QHTTTUivXH//+ywS7EX//+)1uS` E-+1)!a @- 41aDZ4$@$DZ9@PPP I$I$B$!1 I$9UU1 M91)$)HU+3, @3/I$I$DZǩ?4/I$DZǩ4/m )$DZǩ 4/mӶR[@DZ3/!$d21(#)z-Hf~% " %q~mk%9^z I$I$%i1UUUX $A$ɐ91=9`x`Iu 1A/%/  $91( $A$091 IX9E) I91 I$k`91Uw$C$ 11)I1%)t"ڀ1E)_I$t1!m;:E)``Ie)a -cɱ$f1!`WIE)a [5[ E)!q{v붆1$!-i$1E)1E)/ $I$11 SI$91U 99%) z  IB91 @$I$A) IHIA) H$HBD!  $A) I$BD! I$IBD! @$H$BD! IIBD! LB 91 I$I$B$! m6M$91 8669$!h o9 Z H91Z (B%) ,X$9ap\ 9A I$I$(B%) L2 A) I$H BD! I$I$B$! I$BD! (B%)  (B%) I$dA) I$I$BD! I$A) 91 IB& 91 $I$291 `I$91*  91+ LB$A99** {'b9E) o 9e) }$z91Az^xkVi1 pɛ9E)  9E)x ?9e)UWx`ɐI$1E) PN6ا9e)  91/ $AI$A) "$91 S'[m91I$I11** I$91/ 91 I$I$BD! Ȁ91jzh PIX91 I$I$B$! `091પ I$L&91 ݐvI$91 + 91+ @ A) $I(91 91/5 I$I$BD!y9UUU+`J$A 5U10Irq e+9ʧ^QE410lDZ 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4<DZEyp4DZE4)I<۠9DZUV\X-H2%۲-ETZjj E1P@@ 1f1  1f1@$11 11Үkm1e)I$L$1E)A e)%)  1E)//6`K1!<<@$21E) a)m1E)  1E) *1e)I$I$f1e)I$I$9I&!1E) !@$@11 HD1%)<< 11 /@ 11II$11*+/11I$K&1E)@$1E) *I$I$'9#I$@$9 A$@1E)**H$@$1E)  1e)@-n1E)zje)E) 1E)I$I$'9# H$1e)**`[%yf1UU rEeA h$Aee)@I$O'EE)UUUT I$f1$!/?I$I1E) I$91e)I$H$9I$I$9h4زmf1!\ph)I$f1!-5U@$1E)ۆ%@,1E)ZZz ɖt1E)+@$I1E)I$I1E)ꪪm&X,1E)WVZj E) $1E)I$I$f1e) '9#H$1E)ꪪHf1E)I$I$1E)ꪪI$I$@!I$I$1E)I$I$1E)@$1E)!@1E) @ 1E)ꪪ[%[$He)IIHE)@@)(I$I$e)E)I$Ie)E) $A&e)E)PI$I$91E)ꪪI$1E) e)!Me)!~I$ke)!UWx!I$e)! UW6$f1! 1E)$I 1E)I$@!1E)Le)E)I$I$99I e)E)I$e)E)dB$IE)$!MmۆmE)!IBE)!I$`&E)! C2$IE)!I! E)! !C2$E)!I$e)$!I$e)$!LȄe)E)ח[%@e)!ݶmae)!!IIe)E)I$I e)E)I$I$1"I$I$e)E) RIEE1 %& wE +-&I$J$E)UTTT!E)!$I$)( $AE)!I$E)! I$E)  I$E)!@$$!!@ $I$E)!H$E)!^_E)!I$I$E)$! E)! I$I$1 E)!I E)!I$I$1I$I$E)$!I$I$E)$!I$I$1HE)!I$I$E)$!I$I$1 E)$!ꪪ E)$!`$%) `\WL$I$!~/ %)-  @$%)$!I E)$!I$I$1$H$$!!TI $!! &H$$!\VI$I$!_߿/!A$!  LȄ$!>> 1 @$1I$I$$!!A$I$$! $H$!I $!/I$I$$!!@$!I$I$e)I$I$e)I$I$d!d $H$8!UI$I$@ I$I@! I8!PTUUI$I$$!!I$I$e)I$I$d!d I$I$e) @$!`xI$I$! I!%  !@I !& @$!I$I$E)I$I$d!d  !H$I$!II!5H!><I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d  !* H$I$!|^_WII!-/I$I$E)aI! >>*I$I$E) $I$%q!UUU q! %q` H%qXW B# iiP_IV@EP m.h[N%yXZ{O$ %y`  kw4 %y%q/ qHF%y5I$I fEI$I$x fE!ES$EEsSH$ p1llfEII$fE???I$I$!MҶ-"FWO@'vfEP\_II$I$x!II6EU5}!mmF%e ")F?C@!&I䇙E_\UU-I1`EU5 - 'E@p\fE<555!PES4Fss!H$IETUU$H$fEI fE$xH$IfETUU0۲$Fe1hVFye)xWUUI$I1E) I$A1E) $H$9!H$1e)I$I$9!$1e)$I$1E)m6i1E) I6 Be)W/ &'9e) 'I$9e)\__Im1E)+I!1E)+im۶ 1e)I!I11 I9F1 9F1 $11X6m611`|_I$I11UU5I$11U  11 I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$)I) I11@I$I9 "I$1E)@$P>1!`X1! 5 $)I)I$I$)I) $)I)I$I$)I)H$)I)$A$@21f1@&)1 @pI$1$I$I11*I!A1f1 s,YI1b 11I$I$)I)I$I$)I)I9F1I$I$9F1 I$I9F1 I:1 9p |I|1 %% i'91_ `"'vb;91^VWU9 I$I$9 $1E)H$1$!$I$1E)$ I1E)I$Ia1E)* -9e)* ړ$9e)pU >?9e)xWW h$I$1e)H$e)%)Im 1E)I1E)! 1E) I$I$9 I$I$9 I$IB11 I$m 91U@Ħ1$! I$91 091*  $91 @I$91 $I$91 wAƂh1).wwEX" f%q5-I$4EUU -%IEy5+ ha`'p>e)UW\\!`1!/ d&!C11I 11?LB&11II11/ 1$!@$H$I1$I$)I)@$I$)I)I$I$g9*I$I$)I)I$I )I)I$I$)I)I$I$)I)I$@ )I)I$I$g9*I )I)I$@ )I)I$I$g9* $!I91 $91ꪪ I$LB91I$I$)I)91 L$91 j*q$ 9 !IH91 X&1!X   9%) 091$I$91$I$)I) $I91 II:1 $91ꪪ I91 I91 Z5`99x` oɕT9+/=- 49$!` `Wɛ9 / I2a&91$I$)I) 9F1  :1 @@$:1 LB&$A91 I$91 !@d$91 @!91* $H9e)x 1Wn&A9e) I!@91 91  291I$I)I) r'1\XPJ1 H$I$)I) IB291ꪪ !H`$91@ 91꫿ I 91  91H$I910`؂11@ bѿO9!( &TI9e) I 91 I$I91 6m&)9e)J1 (R4P1%%IIPH[qiP-1bEi-KK- i 55=4-!e @RDZ43%4H$H$DZ1TTTUI$I$9F1 $I$91# $I$9UUU,Ip91"M-*4-`J1 4/JPDZǩ4/I$ DZǩ4/I$I4DZǩ4/VI$DZǩ+4/mH-ǩ 3)#)@^z/ 3iz) 3 m%y~Cb %f9zꠀɟ$c%q1UUX` 9F1!$A91I$I$9F1 1E)@M$Ie)A<ח,  9e) $II291 91 m91 I$X91U_ m;91UUW"#II1E)j=&I1N$@1$!WUzI$Ie)!mݶmE)!II$e)E)I$I$e)E) I$I$e)E) -I$1E) _W0i$1E)+X$K2&e)ap\X P1gn9 -  $91* K91/ *4j&9E) I 9e) -- IA) @$I$BD! I$IBD! I$I$BD! H$H$BD! IBD! m5m91 b${=9 )P9b  I$9f1* !A) `09X` 9  (B%) (B%) I(B%) I0A) I$dBD! 9 I$BD! (B%) d(B%) I$m:99UU A) I$I$A) 91 I$[l91I$I$91 &I91 / `?&9x A9a-5 Z#iH91p C h9e)ZIۛ 1E)`۶c'1E) hBe)+ ~:ZBe)Wz I$N99e)UUWx;1E) Pr/9E)*  I91 $$A) k,691 ۴ 191 I$9f1 v91 / 91 091 =L'1bp\X ɐ 1 91ꪪ I$ 91 @$I291  AT9$!5 #-6I91p` T. 91Օ% I$I$BD! I$I$BD! 91&O?9 UU/0 w9-c(oijf4/i+43DZ 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4@$DZEPP4 DZE4)`DZ`3)I$l&DZUU_\)O'X-EyW\XjOH%%y1UTTP 1E)ɐ l1E) I$I$)I)H$@ 11h%@,1E) I$e)E) ++  A$I1E)?9 L$`$1E)1E)LH&dB01E)(0 1E)%%@H1$!XPI$I1E) L$1E)/>$AdB&11/?__ ۶%1E)I$I$11.D1E)<I$H$1111X4 `1e)Md۶m1E)1e)$1E)z 1E)ꪩ1E)  I$1E) 1E)$ɄH1E)II$1E)**LB211Wz$1E)%81E)r@[g%1U P /sf%q +/P(@e$!P@I$EE)UUUT-Mvf1!@ H$9I$91e) *I$I$1E)ﯪ I$I1E)K&@ f1!V\p!I$E)! /? 1E)ꪪ `1E)% I!1E) $C21E)I$9M6X1%)~x0 E) bmd1E)I$I$1e)1E)` 1E)j 1! *$1E),e) ې f1$! *I$I$9$A$I21E)*1E) @$@$H1iviPe)@@@@A e)E)I$H$e)E)I$I$e)E) `B$Ie)E)PI 1E)1E) 1E)jz1E)I$1E)I$@!K$e)!\I$[`e)!U_$L%) nI$e)! Uݐe)!$ 1E)I$I 1E)00,f1$!*jH-ae)!<< $@!I$I$9  e)E)@!@!de)E)k%KҤe)!Ԗ$ &e)E)XI$ e)E)@! $Ce)E)U@!@e)E) d$HE)!(H@e)! I$e)E)I$I$e)E)I$I$e)E)HHE) (( IdIqE)mEX_M$Nb$E)VVVR$ E)!$I2E)  I$0E)! 1dH$CE)!E) [34ۺmE)p!E)/ I E)!*L IE)!>I$I$1E)!*I$I$E)! $E)!jzZ@E)!I$I$E)$!I$I$E)$! I$I$E)$!*I$I$E)!* HE)!I$I$E)$!I$I$1 E)!j&L$E)I$I!*!@@%)!$@%)$!IE)$! %)$!$Ie)I $!!T @$$!I$ $!W/ !@$! H$Ie)I$!! @$1I $!!@$ 1$H$$!I $!? $! I$I$$!!  $! !  8!UUU$I$8!I$I$@ I$I@8U 8!@PTTI$I$e)$$!I$!/I$I$d!d  ! H$I$!^VUUI$I$! ! I$I$d!d I$I$e)I$I$d!d  !! $H$!I$I$! ! I$I$e) ! * I$I$e)$!I$I$e) !$I$!zI$I$!Uյ  !!+ I$I$E)H$H!I$I$d!d Oi! $%qi ېl%qi+ IpIf%qU  ]#f%qjP m%E%q+ imE%yI-PE%y*   6IfEI$I$xa6` fE?C!x$I䆙ETUUUض fE$fEH$I$fE!m۶IF5!E&M$Es\WUI pI$A$fE!IIEU5 ۶m;fE%HĆE5%")r$E@@\U-I"EII-IEՕ!H$OETUU5!y F=@!h$I$E\WUU A$fEI$IfE?6`$fE@P0EE1`K$Fe)PVUI$dH1E)!I1E)/I$I$9!@$1e)I1E)I$H1e)HH1!de) 0Iı`Be)U- 0.'Be)/^'I$Be)UUI$I9I1E)* 1ii1e)I!11?!I1e) 9F1`X$11PWX$I$11pUUU 115I11?11I$I$g9*I$I$g9*I$I$g9*I$I$g9*$11 H$11H$I$1f1I$I 11J$1bTU1/*51`7`1  I$I$)I)I$I$)I)I$I$)I)I$1f1@&I$1f1$r$1XV&I1 I1 I$I$)I)$H$I21f1I$I$)I)I$I$)I)I$I$)I) I$I91 I!91 I91 091 91W 6I$91~UU 1!ز%H%1E)@PTP 1E) I$1E)@$I$1E)I$I1E)? I$I:9E) Ix'9E)/ yN$9E)/ $I$9%)I$I$@!I$I1E)I$1E)IB1E)9 I$I$9 I$IB11 I$m91Uտ I91տ I91 $91 H$91I ۀ1!0$I$I1 I$I$g9*I$I$)I)'1E)0I$11 @ H1UU`SEP)+) PNi=% */ EyUU/+c;ǩx," %,m9pϏa1UUUT@$I$)I) $I$)I)I$I$g9*I$I$)I)I$I$)I)I$I$)I)I$)I)I$I$)I)I $)I)I$I$g9*$)I)I$I$)I)I$I$)I)$I$)I)I I$)I)H$C1f11t$1E) VW$II1E) 9F1 A 91` J1 H$I)I)  !A91 m۶691$@1e) ضm691b5*h1!X` P =9 . ۖ691 m m$91 m lM$91U$I$11 0I$91U lm$9f1 mm$91 mI$91U #$I9%)p Iܶm9 "I91jUW ֶ9$!* Im$9f1U &9E) ݖ$91 ۆm[$91$1e)$$1e) ݐ91 k֦91  91I$I$9F1  I$:1  C&$C91  91 A$I$9F1 @$291#$1` 4 $I9e)* IHC&91 @ 91 H$$I91   A91  &C91  A91 $ 0 C291I$I91 ~:v$@9%)$I)I) IȐ$C$91H$I)I)8@1`ɕdI 1a-5/@#&j&H1 I PH=/  7%qP/+ 1Sd%q-+ / 1I4%q5*3 HE4" DZ@1E) $HZ$1T 4I9e) 9F19F1(M $1U/M +1+ *-4% L3٧ p4% `DZ4) `ЄDZ4/I$R @DZǩ1-H2$ ǩ1-C A&*_/"$ŧ)38he }:c f%a~l%y1UZ` I$I91I$I$9F1 @$9F1 'I49e) 91* @$H$:1 I$I$9F1 I$91 91* @91 Km91^ IB;@91UWIm 11`1E)M1E)8$1E)UUn$ 2e)E)p$@$I2e)E) $E)!.I$I$1 @H$E)!`R؆1E)/Uݐt1E) $@$11@nm׶91zU 0`w91  91 dB2$@A) !I2 A) I$I$BD! I BD! I$A)  A) " $I9E) k 91 I$h 91 I$I$B$! $I$A) $(B%) I$I$A) IA) I$I$(B%) I$I$(B%) 91 I$L 1Aל tI$H9E) I$I$B$!  ,)9E)@ xI9. 91 I$I$A) A) A)  91 IڦXl91#0 I1A`IN1a. `N91 $99ꠀ t191 ~c 9e)_ض ҆1E) <9E) w X[9 '^9e)U_kI$I&1E)NĦ1E) 0W9e) * m]91 l91 L": @91I$I$91 !I$91+ $91 / 9x 09$!  I$I$B$! I$I$B$! (@9$!``ɛN1. I$91 91+ II$BD! I$@ BD! I$I$B$! I$I$BD!O`?oצY9UUUC-qɝ䧹1 /=$EDZ"4+M 410lDZ 44I$I$%44I$I$%4$DZEP4DZE4 DZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%41H%44I$I$%4)XDZXp1$CmEj#vR;E1Zjh$!1f1 d01e)11 $C$A11۲ۆm1E)LB$ 1E)C%1!**!!119  I$9! ˀ1!.. !@$@1E)$ 1E)I$I$1E)H1E) 1E) [a1E)A 11 *!1E)<@ 11 I$11 //11Mh 1e)LȄ 1E)mҦ`1E)Z! 1E)1E)  01E)P-1E)k1 'I$H1E):1E)zzI4H1E)I$I 11 11 S%y1U P Sf%y +Z"%Hee)PP@LB&de)E)W^Z!A1E)H$A$9 1e)***@ 1E)I$I$1e)1E)ꪪI$X4f1$!UVXpKf1! 5 1e) *I$H$1E)*@!$1E)HB2$1E)I$9M6Xf1!蠀I$I$E)$!(*!@1E)I$I$1E) $9ɶa+1E)I$H$9f1!`i׶h f1$!1E)1E)ꪪ1E)@%K$Hf1IiP1@@@@H 1E)蠨I$I$1E)I$e)E)I$I$e)E) $I$e)E) * $C2e)E)sB2!e)!$f1$! I$I$9I$I$1E)ꪪ$@$1E)ZZ te)! -Le)$!((I66e)!WI$Me)!UU~I$I$E)!=UU_$Nle)! UU2I$e)!-U`ې$e)!۲-e)!Pe)! @! @!@@!$e)%)MضmE)!@$e)E)\^ @! e)!e)!e)$!I$I$e)E)@$E)!$E)!$E)!I$e)$! I$e)$!@$M:P%)Rɟ%q8 *B2%'%$)PP[[$ E)$! E)! dB&E)! $IE)!/ $I$E)$!Il۶E)/! E)!)/ E)!@@!$ E)!I$I$E)!I$I$E)$!HE)! HE)!E)!j@@E)!H$E)\\ E)!E)! I$I$E)!@ E)!Xzz!AE)--  &E)!z^`$IE) \UUUI!%)/ A E)!E)$!I$I$1 %)$!@$H%)$!  E)!j 2L$$!I$ $! E)/H$I%)$! E)!kj$@ $! I!$!I$I$1&d$$!I $!?I$I$e)I$I$e)I$I$$!! I$I$e) 8$!UUU@$I$8$!I$I$80I$I@8!I$IH!jZRI$I$e)I$I$e)@$!I$!?I$I$$!!z@$H$!`X^WI$I!UՕI$!!I$I$d!d I$I$e)I$I$d!d I$I$d!d  $!I$I$$!bI !// I$I$e) !! I$I$e)@!I$I$E) !I$I$!^_WUI$I!I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$E)XkX N`H*-g%yP? ]f%q1E%y/)ڶݶmEEyIH$AhI$I$xcömfEI$pmI$fE?U!Ń'O$ESTUUI؉fE@$fEA $fEIfE!?^m$EES_WIpI$I$x!iIE]!i6hF}|!#?REuEE!I$I&EUU\,I$IEUU/"!(%EA@P!I䆙EUU%6dId)FC!@&mFP\_I$fE?H$IfE?6`$@$fESPPض$EE1|W ɟEae)TUUUIt 1E)+1E) $1e)[61E) De)&I$I$1e)&-&I1!j II 9 'x9_\ ַmB$!I$I1E)I$!I1E)I۶m1e)*6 >1x $ I9%)  $9F1`[$11pVX$I$11pWUUI$I9!I$11U% 11I$I$g9*I$I$g9*I$I$g9*I$I$g9*$11$I$11I$I$9!I$ I1f1 IH 1f1*I$I$)I)Ke1bT11h9 @1X`K$1- I$I$)I)$$1f1$I$11I$I11 I11*r1X01$!I$I$)I)I$I$)I)@$@ 1111  I$ 91 I91 091 X$91_ $Ҷ91WUI2$I11I$I$9!I&1E)0L$1E)hӶm۶1E)h I$I9E)/ I$@9E) I>9E) }$9E) $I$9e)_UmۤM1E)/I$ 1E)/I1$! !1%)I$I$9 I$I11 I$I91UU Iv91UI$I$)I)  $91 L$91 $I$91H$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*N$P1%)0ٶM I1E)$Hf1E) Rm٦y // Nwi+++ ? r%yU,!)ئm$EV/϶hF%s"&͆9\XpI$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$)I)I$I$)I)I$I$)I)I$I$)I)I$I$g9*I$I )I)I$I$)I)I$ $)I)$I$1f10C211`pz 11 5$$$1f1r Y1E)0HI$11mm611jp"'1XX9K'tB1 $I$11$I$11I$I$9!I$I$9!I$I 11"$ 1$!@IL1շ. `$1^4I 1 I$I11I$I11I$I11 9!(1E)'I$I$9 I$I$9 I$I11 k&k1e)I$I$9I$I$9 I$1E)**9 I$I$9 I$I$9  9 $1E)*I$I$9!I$I$9 &1x`Jx1b -$I$11$$I$91WU$I$11@I$11 I$91W ۊM$91H$$1f1@&1e) 1e)9F1I$I$9F1I$I$9F191'O$1aV^ T@J9  Ad$91 `&$91I91@$@ 91 n-EI1UUUH$K$$IHTWVUivIXH//qwS7EX-//)1N` E-+1c%Z"EZXX4IDZE4R.Џǩ1PPPTH$11I$hm1bUT!Yd1* J9e) I 91 H$I$91%LI$1UU-0 N11(TK - *4+0n *4I$IDZEUUU44I$I$%41%4-DZ~4z'p@DZETT\-Ey+#if~誨&  %y_z_;k%9^z mq ea1UUUP@ 91ꪺ !@@91 '1bxX@IK1 I9F1I$I$9F1I$I$9F1 $I$91 I$91 91 91 kl91 I$X 91U_m&m11__^@1E)#ڒ(1E)_Iش 1$! $I$E)! * IL$E)!( E)$! $@e)E)?_^vi1E) UU $1E)/1E) ِdI$91+U @1$91 91* dB$@A) I$@$A) I$H$BD!  A) I$A) $IA) A$I$A) @ A) I$I$BD! I$I$B$! !I$BD! $A!A) I$I$(B%) I$I$(B%) I$I$(B%) `(B%) I$I$(B%) L2A) ۲i91j Ϸ9. ! $BD! I$IA) @ A) I A) I$I$A) I$I$A) 0 @91x`mdM 1E)(.* um۶91+ ` 91+ ۶m99 - [l99zꠠ 3(A91~ # m9e)NL[I1!׾ wO$9e) -U 9E)x I$9E)UW~`mۆ1E)/ Mn9e) + DI91 $@!A) @91 mۢ91 $I$9f1 v91 91 I$I$B$! I$I$B$! I$I$B$! H91 * I$ 91I$I$91 @!91+ I$BD! I$I$BD! I$I$BD! I$I$B$! 91ꂊ-O$ǩe1-UU+ EI3 H%y4/P DZ43DZ 4@$DZEPP4DZE4) DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4(>DZ+۳-iEZj IN'%1UVVXX&k211\\0 I&11/+I$I$)I)H$@ 11h%@,1E)II$1E)/? LH&115_H$@$11H9  1$!*LH&d011^Zp9 LB&d21E)@1E)II$1E)**LH1%)*J 1E)<<HIH1E) 1E)K1E) !$I11  1e)$Evd 1!ٖa 1E) *$ 1E)IH$1e)*1E)ۂml1E)jN  1!7I$ 11UU5I"D1$!)1e) * I$11 **۰m,1E)1E)`N>%1  KfaVVK%)Ee)TP@@II$e)E)@1E)I$@ 1e)1e)@$@$1E) I$A1E)ۂm`1E)jI$h4e)!If1! %!1E) I 1E)!I$1E) H1E)H$9M:l1E)$I$E)!i׶1E)UI$H$1e)I@$@1E)@$1E)$I$1E)I$I$9I$I$9aB0$1E) d$$ 1E) HĂ8e1N`GdJHe)@@PPI1E)* *H 1E)V$ 1E)$C$ 1E)I$e)E) $I$ e)E)$@E)!I e)E) H 1E)H$dBe)!@f1E)jIf1!H1E)@ 2e)$!$e)!`$Ae)!I51!UzI$kme)!UUI$I2E)!UUUI$I$$!!+Uِ$I$e)!UU@Jm'E)ZI$e)!$e)! `6e)! e)$! $Ie)E)* e)!I$E)!$A E)!H2L$E)!HIE)!E)$!ꪪI$@$E)!zz E)!-I$IE)! I$ E)!۲- `b@E)ۉM X8*q У`E)ZZj`$@$e)E)^__H$I1I$)(I)(I$I$)(I$I$)($)($I$1I$I$1I$I$E)$!*I$I$E)$!I$I$E)$!HE)$!*I$I$E)$!*I$ E)!*IE)!*I$@$1I$I$1I$I$E)$!* $E)!0`$E) xVUL$ E) UU- AE)!$@ E)!@ E)$!I$I$1HE)!H$E)$! @$E)!zz$I$$!I!@E) U$HE)!Z^@$E)$!E)! @$E)$!E)$! %)$!$`$$!I $!?I$I$$! $$!$$!$$!$8!UUH$I$8$!I$I$@! I @8+I "H)*JBH$I$H$!TUUUII$e)I$I$e)I$I$e)I$I$$!!$@$!`x\I$I$!UUՕI!% I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$d!d  !H$I$!I$I!?+I$I$e)I$I$e)$!P!I$I$d!d I$I$e)! @$H$!xz^I$I!!I$I$E)I$I$d!d I$I$d!d I$I$d!d $! @!$A!H8* SwiH--/ "` %ya*/--!1E%yI$IhmضmfE $IIp!I$OEUUUI$H$fEUUTWI pI$IfE?A$I$fEA$fE!"&F5M_\I$Ipa۶mfE=H$IfE??!?~I$EEUU!E5!$E_U)KbۉEV5)`E,p$IħE\WU!ɛo E=@!ŏ䆙ESTWU6`l8fEsx4EE)`='N$Fe)\WUI!A1E) !A1E)+  1e) C&1E)$I$1E)"ɒ$e)!@@IĎE)&I$i Be)UU/kBf1 $ k$9e)x p؉mۧ9e)I$ 1E) I$I1e)* I$I$9 I$I$11+s$`̆1\\x1m1 $I$11`VUUI$I9!I$11U  11 I$I$g9*I$I$g9*I$I$g9*I$I$g9*$11$I$11I$I$9 I$I11* 11  9F1@$H$)I)I$I$)I)I$I$)I)81!`pI1+%@L$11@$I$11I$I11*I11I$I$)I)I$I$g9*I$I$)I)11I$I$)I)I$I)I) I$91 !A91 &91~ 91_UX&M$11^WUH$I9!۰ 41E)qt$1 VH$1E)I$I1E) I$$9E) II$'9%) ?9E) 9E)I$I1E)*I$1E)I1E)I9!I$I$9 I$I11/I$11/IH11/ 9F1 $@$$91 H2I$91I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I )I) 11$11I$11I$11*-۲m1E)`$IE)bָ@$I!bWWR)זqE! / tSpS%y+--,wr= +-H$ ETT,@E+cj蠀 I$p%1UW\XI$I$g9*I$I$)I)I$I$)I)$IC1E) $11$11I$11 I$11$I$11I$I$11*I$I$9!I$I$9 I$I$9 9 I$I$9!21E)д1E) 1E)*K% ,1!^x`Tn܆1!mI$1E)Umi1E) $1E) &L$1E)$I$1E)@$21E)UUUжi1E)UUK%XmE)X !`$Ie) *$I$e)$!$I$e)$!$I$e)E)UUU$I$e)E)UUUI$I$e)E)UUU$I$e)E)UUU$I$e)$!жm6e)!$I$E)!$I$E)!@$C&E)zI$E)AжiE)!UUU$I$E)!UI$e)!@t$E)`I$1!UUPI$1!UUTI$1!U5mmf1pપIv1- *$?1I%߆1؆1E)۶m$1E)۶m$1E)1$!I$I$9!I$I$9 I$I$9  $I$11 $I$11$I$91@I$91hP I1 نmm$91 $91꯿9F1I$I$9F1I$I$9F1 <@95% $H8U-`8** -qS7fi-/,1` f-++1,yy4/AiDZǩ3H$I$DZ9TTUU IҤ 91 s9 I9e)~P1E) I$I$g9*$ȐI1f1**I$I$)I) ض ֦91  )ii9UUU, p91  %%yZ4 J%y 43DZ 43H$%44I$I$%44I$I$%4-`HDZP4( `/ C#~z&C E^b EeAzI$l1%y1UU_pI$I$91z= 1bXp 1  IH I91* I$I$91aЂ%1bp@ 9a -I$I$9F1 $:1 I$91(  $91 * I$I$BD!  91 t91_ m"91UW~P''M$f1a^VIiB1 NRZ+A1$!WI$IE)!*(@$I$E)! E)!E)@2$C&f1$!  I$1!UR1%)) $I$91UU `J$91 U ۴M891 I91 I$$A) A) $I$BD! A) $H$A) I$BD! $A) I$`BD! L$I&91 Si91 !A) I$I$(B%) I$I$(B%) I$I$(B%) I$I$(B%) (B%) k  91 I9$! mۖm91 I$BD! ؃&9bpx  |9A -% I$I$A) I$I$A) H91 M6 91 I$M91 ِI$91+ @91 / I99 hl91 C# h9E)IbǪ 1E)$I$1E)? j y9E)- ~>]A9e)WxI$M1E)$SI$1E) / I.9e)+ $I91+ B!A) t,ڀ91 I$I$91 -vmӶ91/ 91 I$I$BD! I$I$B$! ذ91 I$I$B$! d091 I$I$91 I$91 91  91 \96 I$I$B$! rP91Vq9UUU)PJ 9 %1@Ir*4,Mw +410mDZ 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4(DZE@@@- ` E&r"="f1X`@ )I)ЦNd1E)?1f1$B2$C11"I1E)m&m1!ŖnI$1E)!11I$ 11 *I$1E)**(A 1E)!$A11?>JI1E)I$L$1E)I1E)!@$@21E)   1E)5 1E)b 1E)DN1!1E)I$I$g9*H%X$1E)(IA&1E)* lŖa1e)$C2$ 1e)I1e) **1E) I$1e)II$'9#J((`1$! I 1E)* 11òm1E) ۀm1E)@1E) ?9%6AKfEI$P(Ee)UTP@PDI1$!%1e)I$H$1e)@1E) *H$1E) 9HH1%)jI$H$e)! Ć1$! %I1E) **I$LB$1E)*@!01E)`B2$1e)  Kd1E)K:1E)W~@$e)E)__%$&L$e)E)YWV۶mŖa1E)`B$A1E)1E)I$ 9I$I$9 $I$9H$I$9 HĂ@E))))`J@f1PPPPI$I9 I$1E)- 1E)/%%X$1E)XXI$1E)dB2$ 1E)_$@e)E)_^>IIe)E) $I$1"H $1"۶-2e)!`1!1E)  @1E)~I 1$!6e)! I$@!I$Ie)%)I$e)E)[۰me)!Ime)!Wvbۀ$e)ZI$me)!UUI$IE)!__I$I E)!$I E)!I$IE)!_Uխ E)!-Ime)!I ۶me)!M۶me)!i ۶me)![ ,۲mE)!E)!$I$e)E)H$I$e)E)I$I$e)E)HE)UUU! XH/ b"&R*qE)JBBBI$I$e)E)I$I$1 I$I$1 $)($I$1nInE)! E)!*$I$E)!I$I$E)$!I$IE)! I$H$E)$!*@$E)!I$I$E)$! E)! I$I$)( CE)!E)!+*$I&@0E)! @$E)!`zW $!*IE) U E)!I$I$1I$I$1E)!@E)$! LE)  &E)!zV`$I$!*I$%) % E)!ꪪ E)!I$I$1I$I$1@E)$! E)! 2d$$!I $!? I$He)H$H$$!!@$$!P`I$H$!I$@$8 UH$I$8$!I$I$@! I@8 Ii"P(* BCI۶HIIe)H$A$e)I$I$e)I$I$$!  $!xI$I$!VUUUI!5 I$I$e)I$I$d!d @$!$!b!I$I$e)$H$!I$I$! ! I$I$e)H! I$I$d!d  !!I$I$E)I$H$!I$I$\TI!- I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$E)@!  8! @8=61X@/---OO%ya----!!E%y ;fEE}} I$Ihx!?m'E}_WI$ pxI$I$fE?I$A fE!oo>F}_H$IfETUU6lfEI$I$x!Ii$E5]W!I$/EUU !A_@FqsppI$IfEUUU7%  ɆE)'N$Ep\WU!I)F5 !4E@pTUIIfEp$Nb'fE\WW_r$Ee)\Wm۶m;q$ I$e)bUI$I$9! &1E) I&I$1E)I$Ie)E)Ie)%)  I$I9e)U_/ɟ`Be)-$Be)x `$I$9e)xWUUI 1E)I$@1E)IH$9!I$I$9!9 $1E)$I$9!I$I9!I!11U !11 I$I$g9* 11 z1,11$11$I$11I$I$9 $I 1@HI$1U11I$I$g9*I$I$)I)I$I$)I)I$I$)I)$11H$I1!@I1!% I$I11*I11+I$I$g9*I$I$)I)I$I$g9*I$I$g9*@1`͔dI15 I91 491 @m;91~U M;I$91_UUH$I$9!$I$A21E) H$1E)$I$1E)۲۶ 1$!j* I$%9U> i9$! M$9e)U $I$9E)I$I$1e)Ң%J%1`XTP ɐ1 % I$I$9!1b-9b81E)x\p-R 1E)*)% Im۰91 $ &91H$)I)$I$)I)H$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*$11H$11$H&I$11@$I$11I$I$9!I$I11ꪪI$ 11 (1B")1!@p@I1 h1%)@1! I$I$a1UURwfa+(PN.wE -+%@&**-+d2!D-%R#Iꠀ)#͐hAp I$Y1UUUT$I$11*5#51`p`?ɛ|1A /%/I$I$9!@ 51!R1E)H21E)k$1E)1E)m$1E)~ I1E) /[1E)@!I1E)ni1E)+/+X5[`1E)I$If1E)Wժ!!1E)B#$1!`i1I$I$e)E)I $e)E) /!!1E)  `B&d$1E) %b"&E)Ap! E)a -/!$Ae)E)-+/@$e)$!I$I$E)$! @$E)!H$I$$!!I$I$$!!*5I$I$E)$!I$I$E)$!I$I$1I$I$1 E)!ꪪI$I$$!! VTI$I$$!!UU@$!`I$I!a/  $! ! I$I$$!!muI$I$!aw8!I$I$d!d  @$!b`I$!A /'I$I$E)H$H$!AxII!A @$!$$!$@$$!IE)`Ilf1!UUI$1!UUInk'1!U v$1!Uۆ1!1E)1E) I$I$9!I$I$9 I$I$9 I$I$11+$I$11AI$91&z98pX\|I$I@8ItIP8//+ ߹fX5, [ɟ%y=UU3 o$EU3  %9@@@R I$I$B$! I$I$B$! 91* II9F1 d91 M۶91 I$I91 M$M9111$I$)I)"ɟ$%1U1 9HTN%y 3+@ S -416lDZ 43 @%43 %43I%43@DZ4-#H1!h~," f_~ uZ EEYjI&d%y9U_p I$LH91I$I)I)I$I$91 I$91 h4*I9Ax C$ 9b%  I$I$91 9F1$11` $ 91  B$! I$91  $91* I$I$BD! {9ܠ Y9E)먀 I$91UUWú ۶&1E) Xv$I1%)_m˶c 91`mtE)b % C$IE)!I$H$E)!ii&E)!+OIĆ1!-0ݐ1E) %h"91a`X` !PI<9a- 0|9 % @A) Iv99U !I$ A) $C$IA) I$A) A) I$A) @m91 Iڶ@ 91 I$I$B$! vm&91 ݐt9f1 I$I$(B%) I$I$(B%) I$I$(B%) @91@ IҤ(%9!( 6m91 I$I$BD! 9 `  9b  I$@ A) I$I$A) I$I$A) I$I$A) 91 M&@ 91I$I$91 &PI$91/  w91 `& I99 t"@91 C 9E)~v$v91E) I$9e)-UU /9E) 5 I$#9e)UW| $I$1E)' `nq9E)* P-91 a®=9p 6@9b I$k91@11 MѶ91+?  91 M$K t9f1 $I91 B$! P&9X$I1  I$91 *)i9$!@ I$N9 ߾( H$I9E) I$I$B$! I$I$BD! H091*&TI$1 %U/0 oI 3(I픷 4/ VDZ 43DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4,DZ`1c_ I$H%f1UTTP4@11``11 I$)I) h5#9E)H$ 1E) I$I1E)?II$11UUI$A 11I$I 1111H$@ 11 I$Ʉ11`$1E)a2!B1E)]5Ң1E)I 1E)?11@ 1f11E)I l1E) 11 H 1e)Ir &1E)**)I1e) **I$H 11ꨨL1E)(I$I9!dB& 1E)$!A1e)***  I$11 /M&X41E)-i1e) *11@ 11@$9 a;m$q1UUU`N)%9?fEzꫭI$H%Ee)UTTP $I1E)?I$H1E)LȄ 1E)1e) H$@1E) 1E)*H$1 TTI$I2$e)!If1! %$A1e)I1e) I$A1E) [-1E)6c۴ چ1E)ꪪI$I1E)k-ۆm1E)_j鐴m61E)W !1E) J1$! @$'9#A 1e) I$H$1E)I$I9H$I$Hf1 `E1jj** kێ$ie)UUUT 0C1E)jj !I1E) $1E)* 1E)1E)ۆ-l1E)z`e)E)`&e)$!I$ e)E)I$@$1"$L$e)E)TTT e)E) Ie)%)( 1E) @1%)I$I$9I$I$9I$I$f1e)I$He)E)(I$@!I$H1"I$I$e)E)@ e)$!  H$@!I e)E)ۖle)! Le)!؆m۶%e)!dB&`B&E)!$!e)!I@!I e)E)@e)%)II1"II$1"@$I$1" @E)!  !XH///q1J e)E)$I)(I$ $1I@$E)!HE)!I$I$1I$I$1I$ E)! $ICE)!@nɖE) %IE)! tlE) 4E) @$E)! @$I1I)(@$ C&E)!XH2dBE)!_UUI$ E)!UU  E)!I$I$1I$I$E)! E)!I$I$1$$AE) /I$I$1 `$E)xI$I!**%  Ad$$! PXE)!E)$!I$I$E)$!$E)$!H$%)I$E)! &d$E)x~I!@$!) I$$!!( 1I%)$!H$$I$! @$8!UI$I$80I$I@! I!IH8ս+IvX@ս/ "$$X$!@PTU$ A$!&$!X I$$!I$I$e)@$$!XH$I$!XVUUI !%- I$I$e)H!I$I$d!d I$I$e)@ !b $I!  A$!I$I$$!BI !=%I$I$e)I$I$d!d I$I$$!!H!<<I$I$e)I$I$d!d  !H$I$!x^^I$I!-/ !*! I$I$d!d H!>> !$I$!A$!  8!II@811X@----  %q` 11E%y- II$H$pm6b$fE?OSH$IhxII$fE??I$I$fE!oo6F?}!x$I$ETUUU I$I$xI $fE?I$I$x!/>F ]_!$I$E\UUU!)PF !@4Epp\W!Iy[EUU!/'H$EWTWÆm2&EE1@P'OEe)pTUUI!1E)+[$X-f1bPTP@I e)bH2L$1E)H$I$e)E)I$Ie)E) ۶m1E)/I|0Be)յ >?Be) ~'O$9e)\__I$I$1e)I1E) I$I$9!I$I$9!I$I9!$A&1E)$I$1E)I$I$9 -Z$1XV0 1 $H$11`51E)`61E)/@1!@I01U, H$I1%)I$I$9 I 11?  11  11IL1I$I$g9*I$I$g9*I$I$)I)@$11$I$11I$I11?I$11 11I$I$g9*I$I$)I)I$I$g9*I$I$g9*I$Ig9* I$ 919F1 $i1 (N$91~WU`$I$11XUUU@  9 "%1apIɖd1 I$I$9 I$IX9%)? I9e) $9e)W P'I$9e)I$I1E)*I$I1E)I1E)1E)"I$1@!I$1E)In11U K$Je1bTUT$I1  $I91 @$I$91I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*&1XA1H$11$I$11H$I$11I$I$9 I$I11I$11I111f1I$I$)I)(P01@P@I1b 5$I$A1$!I$I)I)I9F11! ~a{vli1 N7wi++,`Nwf*+-( m*-+ H E, ،2`~!p%톑1\Pp21E)"I뺆1E)@6m1!=ېI$1E)\ͭ1!n6e)!  1E)I$$I1E)!@01E) L1E) A 21E)*$Imۆ1E) Mmڮ1E)۰6k1E)^__Si1E)5[1E)$C$ e)E)xItIv1E)-+`B& 1E)ࠀI$d1E)W_I$I1E)1i&E 1E)++ M&l1E)1!Zqۑ1I1E)vb I1E)m I1E)_Im$I1E)UI"I1!I,I1!I1E)I1E)I1%)I1%)I1E)uI1$!^I"I1$!UI"I1$!Uv"m1$!_I 1$!UIBI1$!UImf1$!UIҶ$1!UIڒ1!WIbے1!U$) 1I- 1 I$$ 1!UU1!UUI$If1!UU_I$ E) immE)!UUU$C$ %)!UUUzI!I$I$E)aI$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d $I$E)!+UUUې$I$e)!UU`I$1!UUmI$1!*U fdž1!Uf;1N1A H$N$HEAiviXH//s/EPկ++(ߜ `1 ɟ/%yUU^/I$I&EUUUXE9PPTT I$I$B$! I$I$B$! I$I$B$! 91 I$I$B$! I$I$B$! I$I$B$!   B$! dB$I91 IB&$A91 I$@91%LI'1UU-0 rI3&@N- *4/ DZ*41DZ43I%44I$I$%43DZ41K-DZ3( I蠀/3if^& b %q_ ~;%A_z I$I'Y9UUUX  91 I$ 91 I$I291 $I$)I) @!91 @$91b$r91Ap\x P9a  I$I$B$! I H$:1I$I$9F1 A$I$9F1 H291 9e) m6m91's1ب iH9$!@%J$e)apXVIl1b% I$ 1!M$M$f1!WWVX$I$$!!  !$E)!'++$H$E)!m׶f1!JV0(I1zࠪITf1A-- I$91+U  91+ @$A)  $(B%) I$@A) $H$A) I$A) A) $I$A) @$@A) M&X `91 I$I$91 i۶91 (B%) I$I$(B%) @$@ (B%) $I$A) I$I$(B%) (B%) I&A) I$I$B$! I$BD! A) I$I$A) I$I$A) I$I$A) I$I$A) @91 I$[91I$I$91 O$91 $J99 * mvX`99 3(i91 N:c9e)W~ I&1E) I$9E) -U ~J9E)_ I$N:1$!6XI$1E) ?p=^n9xx 0 1a-  Xd99xꭕ N"& H91I$I$91  I$91/ 91 / H91 I$I$B$! {"&Pզ1\p S9A m5[m91  I$91  X9E)*6 I I$BD! 9E) I$I$BD! I$I$B$! 91 !O?15UU,I|1 51  %%yZ4 I%y41 DZ*44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4"@,c11P@@ $!91 $i6 091z۶11 ۶m91jꪪ۲ۆm1e)I$I$1E)ꪨ! 1E) /4Iڦ%1E)X$H$11ʊ I$11/>11LH 11II$11** I 11I$H$9!$I@1E) *" I$11/?I$I$)I) 1E)  9F1mdI11*ՔI$I$g9*#(I1e)$1E) &dBR1E)ZZ*I$A$11"@ 9 I$I11* I$`11UVXL$@1%)((B@11@.i$K1e)u1e) "I$I$g9*H$11 $11 ?%y1UUUP.sEeA )h$ee)@$%ye)UUTP-M۶1E) +0$1E)p`J &1E))Xl1E)@ 1e)P1$!I@f1$!I$X f1$!UW`6adž1$! /: 21E)$@1E)  1E)@`1e)I$H41E) LȄ1E)誖$C 1E)猪 `1E)W^j$I 1E)I$I$9 '9#I$I$'9#91!xpI$IPHqWiP--=%E)VRBBI$f1%) UVf1!+I$@$9 $I$1E)* $1E)*@$1E)1e) I$ 1E)I$I$9@ @!I$e)E)L$L2E)! tI$e)!.6$e) lne)! IH@!$@$@!I$@!$@!("e)@@)0e)! QJE)@!@@!4X le)!e)!I$I$9He)!<@e)$!II$e)E) I 1"I$e)E) $I$e)E)Kd۶mE)!<<@$I$e)E)I$I$e)E)I$I$e)E)!IPH /??71W%yP//$I2E)!ɐIE)!I$I$1@$E)$!I$ E)! I@$E)!A$@E)!IE)! Ie)E)U E) I$I$1  `&E)!PPA$ )(I$@ )(@$I&E)!zH&I$E)!xWUI$I$!!TUIE)!+I$I$E)!I$I$E)$! I$I$E)$! I$I$1I$I$1I$I$1$E)!z&L$%) `XWUI$!IE) UU  E)I$E)!E)!H$@E)!I$I$1@$E)!I%)? $I%)!^^WW $@%)!յ$1I$H$$! ( %)$!$1$H$8$!I$I$80I$I@!  $AH8/ .W`@+)Ã'`$)@PTI e)I$I$1`$A$!X!$!$I$ 2$!H$I$!\\VUI$I!U%-$! * @$@$!!I$I$e)I$I$d!d I$I$e) !H$I$!II!//I$I$$!! I$I$$!!I$I$e)I$I$e)I$I$d!d  !!@$H$!I$I$! ! I$I$E) !I$I$d!d I$I$e)I$I$E)@$@$!zr!$@$8!UII@811X@----%y`----nnE%yI$A$p $pI  fE?p$I$fE\WUUII$I$xI$I$xA fEF$N$fESTWUII$I$xI fE?H$I$fE!I&F_8fEppIfE!Z<}>FSW\IIp @$fE  EEi@È$FE)^WhIneAe)XU!A1E)  1e) $1E)@$I$e)E)I$I$e)E)*I 1E)IUAE)U߯ @Be)- :}$Ae)^UH$I$1E)I 1E)ꪪ@$I$1e) 1e)*I$I9!$@H21E)&L$1E)(P8e)``LIe) %%6M) @1E)€H$L%)TW !1 H1E),1E)`H1E) $I$11I$I$9 I$I11+I11+I$I$)I)I$I$g9*I$I$g9*I$I$g9*I$I$g9*$11@$I$11I$I11+I$ 11  11 I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I)I)I)I)$9F1l[&11_غ6I$11|UUH$I$9! 1E)H$1E)H$I$1E) m[9z ɝw@9b)  '9E) :I$9E)X$I$1E)ꪪLȄ$1E) II1E) $I$9!I$I9!I$i 11UU=In11!A1e)I&1e)d$1f1@$I$11I$I$11*$11$I$11111e)I$I$g9*$11$I$11K2'1\Xh11 I$I11I$11I11I$I$)I)I$I$)I)I$I$)I)I$I$g9*I$I$g9*I$I$g9*#I 1E)D1b 9F1 I&1e) m1!@N$Ie)b&&dI!I1e)pwf1 *)%N/%y+/+0wf ,#I/"Hf ,Chf~ꠠ"I$1UW\Pmڶkv1E):51E)#'e)`X$$1$ 1E)/ &d21E)!I1E)k&k1E)I$I1E)+k51E)Im 1E)m1E)m1E)i1E)/ 9!I9  ۶m1e) I$I$9!I$I$9!I$I$9!I$I$11*I$I11I$I$11I$I$9!I$I11 I$I$11I$I11*I$!C1f1 I$I9f1 I$m 9f1I$$ 91I$$ 1f1I$$ 1f1I$$ 1f1I$$ 1f1I$$ 1f1I$$ 1f1 I$m;9f1 I$m 91* Imm91I$H$11LB$I11W I$I 11I$I$9!I$I11*I$I$11I$I$9!I$I$11*H$I$11mm1E)h$I$1aWfA)DH1 # $I1E)I I1E)Nm$I1E)UIB I1!WIb H1!UIb' 1!UI$ 1!UUI$1!UUI$IE)!I$I$$!!I$I$d!d I$I$d!d I$I$d!d @$@ !a`pI H5%IIPH+{qiP--yS7fa-++,1f-+ 1,ٖ ٰ DZ3 DZ1@$I1f1** vm$91 !$91 91 91* X91 91*** I$I$B$! I$I$B$!  B$! I :1 I$I:1 $I$9F1$I$f9UUU+m!A %1 M/ 4)aݖx?41DZ44I$I$%44I$I$%43  %41زmDZ4,i1 3m~ꨀ)3 mEy^ S%Azꨀ ۶X9eq~` 0S9b - I$I$B$! d91 !I91 $I2$911E) $I$91 91 $ I91 I :1 HI$:1 5#9pɐdI9A/5/ I$91 @ m91  C$I91 Oǐ9W !ˍ9%) I$91UUWzdB1E)M6&I1!VI$vц1!UU_I$I$$!!$I$E)! E)!/!I$1E) } :1!z 1 I$91 UU  91+ @(B%) km99~ I$`A) I$I$BD! I$BD! A) I$A) `@A) I$@BD! I$I$B$! I$BD! ۶m99 I(B%) I$I$(B%) $(B%) (B%) (B%) I$`BD! I$I$B$! $I$BD! $ A) I$I$A) I$I$A) I$I$A) A) k591 I$M&91 鐤I$91 &3'9`x  9 % "#H91 3 9e)~ꨀI$t01%)  I$9E)%UU ω9E) I'#9E)U_x $I$1E)/Mqħ9E)* @I691*/ I$A) $@91 I$k,91 I$I$91 P-d91 / I$I$BD! =@9b`pɑDpI1a%%  I$I$B$! 9$!@J$Ie)a,4 iM9e) p$N$1A !P9   I$I$BD! ` 491  691*?I?oۧQ1W"$%9U/  NEa 3)@I.+41ِlDZ *44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4$DZET3#=^x"IP%1UTPP @91jٰ l119F1H&@011h%@ 1E)I$I$1E)?pق41!\001e)H$ 1111@$ 11I$ 11 A 11 HI1E)@ @$1E)!1E)  11 $C$I1f1! 1f1 (` 1e) I11 *(I$I$)I)j&i1%)!ALȄ1E)** 11I$H$11ꪨVLd1 (11۲5Xl1e) 1%) dBH11ZA$I$9! 11 %'11([5@ 1e)01e)g%y1UUIrEeA [)/EE)P@mێ `e)UUUT 1E)*@1$!P!I1E)1E) 1E)/IDۆ1![dK1E)z֖N$`1f1$!WWX` I$1! ېm1E)%P`1E)PP!A11 -11@M@ 1E)'9#1e)I&1E)!I$1E)$ 1E)ۖl1E)1e)*I$I$H@ qS1iP--- yyw7fi+fe)UTTPI@ 1!I$e)$! *1%)I$I$9I$I$9I$1e) 1e)*I$I$9!I 1E)I$@1E)I$I$f1e)Le)!I6e) I$me)!_Z$I$e)! vI$e) *6i$e)!+ۆ%[$e)!@$e)$!II e)E)$ $ɐe)E)$I$1"I$e)E) LȄe)E)I$e)E)??@$@!$$e)!U$$e)!U$$e)!*ۖe)!ۆmm$E)!$C&E)!$$e)!{H2 $E)!$IE)! IE)!IIPH.//* 11$qX----H$ȏ%yE)TTTT!IE)! I$HE)!*I$I$1 $C2$Ie)E)/I$e)!Ie)$!**I$I$e)E)@$e)$!   )(H )(@1 I&E)!mۤE) I$IE)!WU+IE)!+IȄ E)!>I$I$E)$!*I$I$E)!*I$I$1I$I$E)$!I$I$1 E)!0C&E)d$I! IE)!եI$I$E)$!I$I$E)$!@ E)p!E) @$%)PTI$E)!@ E)!@$I$E)!IE)!LȄ%) < & I%)!^I$I$$!! 8%)UUU`$I$8$!I$I$80I$I@8UI۶mH8+ oW`@+  "$i$) @P H$Ii$!TUUU1 @%)$!꺮  1I$$!!@`$I$!`x^WI$I!UՕ%! I$I$e)I$I$$!!I$I$$!!I$I$d!d I$I$$!! I$I$$!!`@$H$!I$I!/IH$!**P$!I$!?$@$!I$I$$!! I$I$$!!I$I$d!d I$I$E)I$@$!I !/  ! !I$I$d!d I$I$e)I$I$d!d I$I$E)!  !H$I$8!II@811X@----O%ya----nlE%yIIpN$mfEWW'N$fEs\WUI$I$h xx6b$p$fEOS\TI$IhI$I$xI$I fE? NfE!IIEU@'p'fEP\\\IfE!-"'EOO]UIIfE!i[m&F_ضm:2EE1`=OEe1`ZUUI$1E) 1e)I&1E) I&I$1E)_WI$I$e)E)ꫯI$Ie)E)/ I}9E)y @Be)/$Be)zW h$I$9E) @$e)%) 1E)II1E)*IB2$1E)II1E)*0d$1E)H$I$1E)I$I1E) #I1!j1`1a @$I$11l%1 @P 15DIDE)bUPlٶm1e)I$I$9 I$ 11 11 I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$)I)$11@$I$11I$I11+I11/11I$I$g9*I$I$g9*I$I$g9*I$I$g9* I$I@91 I I91 m۶691~k$11xU$I$11pWUUI$I$9!$1E)$I$1E)I$I1E)* IwG9E)+ [J99%) {$9E) $I$9E)I$I9I 1E)1E)*I$I$9!I$I 11UUIv11/ I 11 $@&1e)L$1e)$I$1f1I$I$9! 9!1E)I$I$9!I$I11*$e1b#1I1 %/H$I$11I$I11+I$I11*I1111I$I$g9*I$I$g9*I$I$)I)I$I$)I)I$I$)I)I$I$)I)I$I$)I)I$I$)I)$11$@$$11@I$11 I$11I$I$9 $I( 1@I$e)bU$I11*$ 0`1UUpSqqwE`/5( i ,  %y/+h6ǩ-&P۬mਨ(#f)p$I&d1E)]-1E)M&c@1VZh i1I1E)?1%) 1E) I$I$9!I$I$9!I$I$9!I$I$9!I$I1f1I$I1f1I$I1e) I$݆91I$ A1e) I۰m91 imضm91I1e) Im6l91 M ۶m91  :1 H$I$9F1 I$I9F1  91 H$I$9F1I$)I) I$91* I$I$BD! @$@ 91I$I$9F1I$I$9F1I$I$9F101e)1%)I$I$9F1I$I$9F1   91* I$I$BD! $@$91$H$91 $!91 91 I$I$9F1 I$I$9F1 @$:1 m ۶m91 Mm۶a91d91 mla91 sM$I9$!ުIB21e) I$۶9f1 I$m `9f1I$L1e)I$I1e)I$I$11I$I$9!I$I11* {$1aX^ IK1 Xm۶m1e)v"$I1!I$I1$!UIR;1!U~I$ 1!UUvk'M$8E!IIPH/)) wW7$qP--/" 1uO.%q-++k1 4 Ey4/T DZ* 4 @$DZ1@@PP I1e)LB 1f1 I$I$)I)E1b$"I1!@Ie)(U @IѶm9E)* .91 91 I$I$B$! I$I$B$! I$I$B$! =9$!x  91 I$@:1#  ɔ$9U,P.sf*+3(nv4,0DZ41%44I$I$%44I$I$%43@ DZ4-# HDZ1%mzꠠ,3 iE~!3 mfXzꨀmEy$ I$I$B$! I$I$B$! I$I$B$! I$I$B$! L091ꪪ I$dB91$IA1e)`$I$f1A0\W\ @TI9  $ 91 $C$I91ꪪ mm9E) $I!I91 I$I:1 A$I$9F1  $91* 91 $C$I91 91_ I$ 91UU_aH&d&11__\r1!~I$h"@1!U_XI$I$E)!_IE)!/X&[5E)a`X`ĉe)a-P$1!5U,[$1b@PV M19* q91 $I91 'O'9\W\ TI)T9  ۶m۶!91  C9%) A)  I9E) ` $A) I$@BD! I$I$B$! I$BD! (B%) H$(B%) (B%) I$I$(B%) (B%) Z+i$!91 $IB9! I$I$B$! I$BD! A) G9E) I$I$A) I$I$A) 91 I&91 R#I1` ۶m9  (P91 &K&9!`XTX ${9v9!  OB?$9e)W^I$I$1E) XI$9e) 5UU M":9E)Vx I$N&1$!XI$1E)? d9E) `N791 % $@A) I"&91 c3&L&9E)jZVX  n9E) - 91 H$H91 91 I$I$B$! 9%) I$`91)X$1a p\ `19A - I$I$BD! 91x I$91յ I$I$B$! L091"9\I$1 5UU-0Iߔl11& w +4-@ $DZ43DZ 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4H$DZETT4+rha1c#2Ahh !91 dB291I$I$11? 11nk11J (I$L$1E)! $1E) * 1E) I$I$g9*IH$11/*I$I$g9*IH$11*(11 &11XpLB& 1E) $L$1E)*۰mۖm1e)1f1 11@@011L&1f1 1f1 II$)I)I$H$11UWTP I$11%UdB2$11dB$I11^  11?DH1E)<< 1E) II11**"H011Tp $9 Kd1e)(*  1E)$@$11@$A1f1*sy1%%C2 `eiP _"-&HEe1R@aB2 1E)I$1%) *@ 9!I$I$9!I$I$9!@ 1E)X!$A1E)Ȁ-f1$!I$i!e)!؆1$! - ҆1E)l1E)I$11+B011@ckɖ1e) m$k1E)i1E)kۆm1E)ꨠ $L$1E)mv1E)I$H 9I PH** yWyiP-// %y----%")$@f1@@I$I$f1UUUTf1%)pI$f1!I$f1!/f1!/I$I$9۶mö%1E)Z bb&1$!Z[ $1e)1e)*@$H1E)I$I$1e)I$H1E)I$I$f1e)@e)E)Mhve) ((I$e)!~I$m`e) I$I2E)!$I$E)!_$I$e)! nI$e)! UUضI$e)!Um;e)$E)`ۚ$e)!UI$Ie)!UUI$m e)!UUm;e) _Z6! e)I$Me)!WW?mҶ`e)!I`e)!InضnE)! Ie)E)Ue)E) PH 11$qX----K$K2$Eye)TTTPIe)E) Ie)E)  e)!ٖale)!I H$e)E)I$I$e)E)I$I$e)E) He)$!$)($$E)!H$I$E)!L$$IE)!ME) II$1$I1ۺ%kE) XX(!$ E)! I$I$1I$I$E)$!I$I$E)$!*  E) ` 2L$E) ZWUI!AE) Uե  E)! I$I$E)$! E)$!*E)$! E)!I$I$E)$!`E)X I$@$E)!zz$ E)! E)!I$I$1H$E)!I$@ E)!@B&8$!UU`$I$8$!I$I$@ I$ @8iv P8+  iH+  r<i$)@Q @$I%q$!PTUUE)!H$$!<1 1 &L$$!p\VI$I!UU5 $!- I$I$$!!@I$I$$!! I$I$e)I$I$e)I$I$$!!I$I$e)$H$$!I$I$ II$!//*@$$!P !  $! I$I$$!!I$I$$!!I$I$$!!x\$I! !@!I$I$E)aI$I$d!d I$I$d!d  I!5?I$I$e)I$I$d!d I$I$e)@$!@$I$8 I$I$@  H81R.eaH--)St%ya)-++@E%y $I$h6b8@$fEOsPTI$I$h p @$;$fE}}PI$Ih۶a;fE?H$$p6l@$fEUIĶafE? 'v$fE\_WNIfE5$N$IfEWW5 8fE pض[$EE)`Vm۶m;q%   1 %$1e)hZ$1VH$I$e)E)I$I$e)E)/Ii1E)+' BE) :Be) | P'O$9e)$1E)@$I$e)%) I$I1E) 1E) 1E)Id$1E)@$I$1E)I$I1E)*I1E) I$I$9!I$I$9!I$I$9!!I$A11///1@ $A1+*1$I$I11/I11/I$I$g9*I$I$g9*I$I$g9*I$I$g9* 1f1@$11@$I$11I 11? I 11 11*I$I$g9*I$I$g9*I$I$g9*I$Ig9* I$!@91 9F1$11@T6I$11hUUH$I$11TUUU1E) @$1E)H$I$1E) I$I9E) I|`Ae) %69 j 8B%)H$I$9I$I1E)* I1e)*I$I$9!I$I11UUU-I11U imۆm11-@&1e)L$1e)$I$1f1I$I$9!I$I$9!I$I$9!I$I$9!,% @1E)@P@6`I1E) H$11 H2$C11~J$Je)bTUTI$1b$I1! I11I$I$g9* 11I$I$g9*I$I$g9*I$I$g9*I$I$)I)I$I$)I)I$I$)I)$1f1H$11 I&I$11@$I$11I$I$9 I$I11I$ 11 I11 ,1b@HI$1bUI1,I$I$g9*I$I$g9* ?[?x1)%psfa /+ MTn%y!)*,&f(^,ɶm;Fy, %qz?+O'[-f1VZP@I$I$9!01a@$I1E)I$IB"1f1Lc$1a۶IA1%)IB I1f1IBI1f1I9F1I$H$)I)$I)I)  )I)@$H$)I) L$ H91$@&1e) I$I9F1 I$ :1 I$H$9F1 A I$:1 I$:1  91 H @$:1  I$191*z 91 * H91 L91 5`"'9axx  9a -- I$I$B$! I$I$B$! I$I$B$! B$! @ 5ԧ9`` TI 9 -- I$I$B$! I$I$BD! I$I$BD! I$I$BD! $CI91 d91 I91  @$91 $ (99%)x 9$! @ 09` $In9e) H!91 I91 * H(9$!@ $I9 ) H$:1 I$A:1  I:1 I$H$9F1  I$:1  I91ꪪ II$9F1 I$I91 M& 9^ m@9! I$m 91 I$ml91I$I1f1I$I$1f1I$I$9!HҶm۶HeAiviXH//+yys7EX//) .2 %qokk 1  %y%%3-iDZ4@$J$DZ1PTTU $I$$919F1 $@"$C91K$K1bTUT I1bI1!4 I$LB91d$` 1f111  !$I$91 I$91 !$91p$p"1XVX  9  I$I$B$! I$I$B$!% LI$9UU)  NA/(s-sf 3,>DZ)U_4,IDZ 410 %44I$I$%43DZ4/j @DZ1)# Hz-#Hfz%  %y_z N&%9VZ I$I$ei9UUUT I$I$B$! I$I$B$! @ B$! I:1 B$! k l9 I$H91I$I$)I) !I$91 I$91 H$:1 $A$91$I$)I) I$A$:1 I$I 9F1  $I$91*  91* I$I$BD! #$ 91 IR'R I91U_i$m11]W^1$!`-1!v$v91!_W_xI$I$e)I$I$e)H$!bP@!@$AE) * 1%)- ɐ$I$91UU @*m9$! 091 =X9p 9A-- m.ۊm91 '|9_^ p$M?9 z  IH9$! @"91@  UNħ9E)(W   91* m$91 (B%) H$(B%) I$IA) &9@p` I9a 5-  ђH91 I$L2BD!  9E)@H$Lle)ה*  9E) I$I$A) I$I$A) I$I$A) X`91 I$h,91 Mۼ99E) z .K9$!` ضa 99 ) Zmh91 3 H9E)zI$Ȧ1E)@r$I21 *j KA79/ I$#9E)UWxI$I$e)E) *NĦ1E) / @I691/ &LB'9ap^X {h99 q۶j 91 I$I$91  91 I$I$BD! I$I$B$! I$I$B$! @91 b59bx Sͦ1  5I97յ 91 I$I$BD! I$I$BD! I$I$BD! @91 &X9E))Iɔ91 M. 4,Mw +410lDZ 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4/ DZǩ41%44I$I$%43 DZ3#if`(K2&Z11TPP@  B$! Ldl9e) $I91 h$@39f1`$ 1$!I$I f1e) $I$1E)/01E) @ 11 11 . 11I11/>11$C &11X 0 1E)!$21E) *n1E)  9F1I$H$)I)9F1I&`01f1*1f1 C۶m11`Ir'1E)XX`X1E) -I@11** I$@$11 11 /M1E)9 JD 1E)kX-1e) I9  11 $C$A1f1I$H01e),)`1RwE`+T& fE )-{"%@ff1TP@I$I1E)!A1E) *@1%) 9cG1$!pz 1$!L&&1E)r"I$1$!\mm1!Ib&-@1E)U_!$Ie)E))-@P1E)/@ 11 A 1!// !d$11 ^W&81!p II1!@$@11P ?mӶh 1e)I$1%)Mڤ1E)WIK۶Pe) y9qP-/// p%y----+%!몋 (J%R)e)TPP@ f1! I$I$9f1!I$0f1!I$f1! XumѶf1$!:1E)en 1E)I$H9$I$1E)II$1E)'9#I$I$'9#IA9LB1E)I$H 1E)I$I$f1e)I$I$@!`0e)E)P@MPe)!Ie)!UI$e)!Ucےe)m" e)I$Ie)!UU 1E)jj1E)ꪩI$I$f1e)$Ie)E)/ 1E) 1E) 1E)LȄ1E)תI1E)Ie)$! PH 99$qX----C2$C2$Ee)PPPP$@! I$1"I$Ie)E)/I$I$e)E)*I$I$e)E) $e)E)hT$I$E) $I$1E)!% I$E)!IE)!* $)( $IE)!/ I1)( )(H$H$E)$!HE)!> $I I&E)! $E)H$IE)^_ $E) (I$I$1I$I1I)( C$IE)$!E)$!*I$I$E)$!* $@E)!XX@$E)!@$E)!Z@$E)!ZZI$I$1@$E)$!I$I$1$8%)UUH$I$8$!I$I8%)@I!A8$!TU$I0H$!*VUU1IP$!@UUUI$I$1I$I$1I$I$1$H$E)! I%)?7>I$I$10`$$!I$I!WW/ $I$!- I$I$e)I$I$$!!pI$I$$!! I$I$e)I$I$$!!`I$$!b*H0$C&$!I$I$!I $!?/I$I$e)I$I$e)I$I$e)I$I$$!!I$I$$!!I$I$$!!I$I$$!!VW.I$I$$!!I$I$$!!I$I$d!d I$I$d!d I$I$d!d I$I$E)H$!XXI$I$d!d I$I$d!d  @$!I$8 UUI$I$8 I$I@8i6eP8+ yw/%qP/+ qgrT%yi iW`nEEy b8fE5EsH$I$h pIIp  b8fE5EsH$I$fETUUU Ip68$fEOwuUI$I'fEUUU\8 fEuu='fE|\H$I$hI$I$hA$I$h۰ FEY @ 'N$FE)xWUI$1E)@,H1p`I$IE)2$I1E)z_UI$kuE)bUV PE) ɟeAE)U+9QB1+jt$Be)Wh۶m$1E) H$e)%) I$I1"I$@1E) 1E)*$1E)$I$1E)I$I$1E)I 1E)/ 1E)I$I$9! ;1!|$ I1!I$@ 9!ݰm$1e) $9 I ۰ 1E)5II$11/ I$11d$110W11I$I$g9* 11 H$11 I$I211I$I11/I11 I$I$g9* 11I 11* I$I$g9*I$Ig9*$ 41%) 9F1`$11@Vغ&I$11\UUI$I$9!$1e) $H$1E)I$I1%)* I$959E)/ k $9E) $9e) $I$9%)@$Z41P\X`ɐĆ1 % 1e) *I$I$'9#I$I$9!II$9!!I!1f1 $1e)I&I$1f1I$I$9!I$I$11I$I$9!I$I$9!I$I11*I$11 $I&11_H&I$11_UU 9 $I 1E)I11? 117I$I$g9*I$I$g9*I$I$g9*I$I$g9*@$@ 1111 I$I$)I)$1f1H$11$I$11H$I$11I$I$9 I$I11I$11I1111I$I$g9*I$I$g9*I$I$g9* 1E)I<1b&I$I$g9*I$I$g9*I$I$)I)I$I$g9*r~nxE1 zf`1I%y4!$EkB@V/I$InEU( poC%y\u I$N%f1UUVPj$`01XTP@H$I1A " $I1e)I$ 1a !DH 1 I$H$)I) I&!91$91   91ꫯ $a@9E)@j$I$1a8U $pI9 H$@:1&L&9!ZVX p I9! -  91* $I 09`/1A -  I$:1 I$91 91آ%K$1b@PTT  9a  I$I$BD! `$L$91#$1` 1` 9  HA) IA) IA) ث$O'9^W\ H!P9  9E) IA) IA) A) ض[91$IH1! ! 91+ I$I$BD! H$I$9F1 #'9xX` `I1 %  `$R")1ap\p TT 9a %   $ 91 I!I91** &ɧ9a`x` ɔd1b 5  I$I9F1  91   $91  I:1 91 I$I$B$! aB$I91 I$&91  91* I$I$B$!  B$! @$I$9F1 I$I9F1 `91  $H9۶m۰$P8 *VxqiP-qW7fi-/-)N`f/+4-1S!e 4 DZ1@@ LB$I91 H&$C91  0C91  I91 L$L$91 I81``1b/5@$@$)I)RM$1E) IdI91 I0@91ꪪ I$B91 I$I091I$I$g9*  $I$91/ M91. $$91 91* $I$f9UUU+ IfeA/=51" w 1,$Wb 3-mѶiDZǩ?4/I$DZǩ4@"(DZE@@4 DZE41XlDZ4+Z i~1 3m~ꨀ) E_ vRc %9Z m۶ %9UUVX 91 I$I$B$! I$I$B$!  91 Ul$9b ^ 9e) 91 I&91 I$L091I$I$)I) I$91 L$91 H$H 91  $I$9F1  Id$91 $I$91  $I$9F1 @ $91 *  $91 91 v&a91Wz IP&1$!XX`a1E) N"& 1!Wxm۶ 'E)x! I$I$e) $I$E)!%U_I$1! U 1$! ɐ$I$91/UU 4f;91u 09!> m91 Zi$ 91 M'9a^Z ) 9  I$I$BD!  91׬ ! @91 I$d91 I$I$9e) * mI91 * I(B%) زm۶m91 m+9$!xx .1aK9E) -- (B%) Ѓ&x=9bxx 7y 9A*+) I$BD! A) I$I$A) I$I$A) I$I$A) I$I$A) : 9h9SDI1-  rmٴ91/ 4Iw91 LB&C99 ͒I91 5 i9zhII%)a7*kۦ1E)-_s9 1E)p I$M&1E)XI$1E) /#1`  m9e) Xm091 NB'91I$I$g9* I$91+ 91 I$I$B$! I$I$B$! I$I$B$! @91` NJH1 ' !I$91+ 91 + I$I$BD! @M$9a ^V P9 91 I&91&Sə䆙1 --0 r*3(I 4/ VDZ *43DZ44I$I$%44I$I$%44I$I$%40DZE@``4 DZE44I$I$%44I$I$%41X-`DZ1hI`I$Jf1UUTT  91몪 9F1 II:1IP1!I$H&1E)II$1E)** ېv1E)* 1E)@Ij,1E)A 1%) mҦd1E)<")1E)ȁ1E)0 1E) *$ 1E) *@$C21E)@1 1E) @ 9F1@$1%)1e)@I11 1E)c&@1E)|iѤk%1E)UV\0 1E) @$@11$A$C211.~~11[%`1e)I$I$9!1f1 m 41e)۰mm1E)11A$I$)I) !P1U pWyqP/ 7wfi+/-"cҖtf L'f1TTP@$I 01E)dmdž1E)*ImV`1E)* $9 tD[1!i[61E)II11I$I$9!H4 1E)|$AL1E)` 1E) 11L 11W#5R1!p(( 1!I$11I$11m1e)M&[ 41E)^I$H$PE)UUU /qSSp1***) pOO%y----!p - `x&f1UUTPI$1E)I$I$1E)@$1E)ZZ1E){I&f1%)U^Mڤm f1!ېtI$1%)*UU$1E)U1%)I$I$9I$I$9$I$9I$9 $'9#$'9#  '9#I$I$91E)~1E)۲m6`1E)ꪪ!@1E)^I$I$1e)I$I 1E)H e)E)I$I$9$IH$1E)_1!=K f1$!*I$ $9I$I$9H$I$9I$I$1E) 1E)e)$! Pe) 91qX----\%!Ee1RRBBI$$1"I $e)E))#E)@@aaE)@I)(  0E)!$I$e)! I$e)E)UU @E)!@$)($I)(I)(I$I$1 $)(LHE)!H$I1I$H$E)! ضm[E) I$C%)!zVW_I!@E) !I$E)!  I$IE)$!(I1)($M&E)\^E)!* I$I$1I$I$E)!d@E)!_@$e) I$I$1I$I$1I$I$1I$I$1 @$8%)UI$I$80I$I8$!@ @8$!PTUUI$1I$I$1I$I$1I$I$1I$I$1I$I$1IE)!I$I$10`$$!p\I$I!Օ  @$!I$I$$! (I$I$e)I$I e)I$I$$!!@@@I$I$$!!I$I$$!!LH 2$!< $! !$!* 1I$H$$! I$I$e)@ @$e)I$I$e)I$I$e)I$I$$!! $$! ! I$I$d!d I$I$E)I$I$e)I$I$d!d I$I$e)@!I$I$e)I$I$d!d  !H$I$8 I$I$@!  !IH8/7`@/ qBI%y`- !HE%y !@pF$I$fESWUU $mfE??=$I$h ۰'fE<\v$I$fE_TUUI$I$hI$H$hI 8fEqH$Ih1` ;fE |p'I$fE\\UI$I$h$I$ 0h [&E$!XpɟFyE)hVUU!A1E)@$1E)I2d$1E)H$I$e)E)I$Ie)E)+ Iرk9E)U/ IAe)/ @>Be)^ M<9g0I$E)b&$I!Ie)E) I!A1E)+I1E)* 1E) H$1E)I$I$1e)I$I1E) I1e)I$I$'9#I$I$9!I$I$9!k2' l1ZZBm1!  $I$1E)I$ 1e) I$I$9!I$I$9! 9 I$I$9 I$9 11$11pW$ۼ11`"IĆ1&@5h1%)J1eJ1E) +  11 *I$I$g9*'1X$I 1! I)I) !A$I&91*3'M2'1aX^JI1  1!@иI$1b HɆ1$!$I&f1 I I9E) )EI&:9f1)x '91`WU`$I$1E)I$1E)I1e)* 1@I$I 1շ(1E)I$I$9!I$A9!I9 A$I$11I$I$9!I$I$9!I$I$9!A 11 I$$11$$$11 zUI&I$11ZUU 9 dB&$I11__ I11U- 8@ 1`p1xI1b)%5-I$I$g9*I$I$g9*I$I$g9*$H$1111 I$I$)I)$11I$11$I$11I$I$9 I$I11I$11I11I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*@&1`X % 1 ,1!@@Iϵ 1b'I$I$)I)I$I$)I) 11$11" ۶m`1UUP%8{fa5+䧩%yu V,G%y,%R# +[-f9P@ I 91I$I$)I) IB0!H91ꫪI$I$)I) !$I91$ 91N"Ǧ1E) VI 9e)   091I)I) LRh91!   I91** h$I9e)x@91 I $:1 `0*m9bxI I1a5-  91 I$:1 4,9`I$If1a5 m۶91+ @!91 $I91ꪪ !I$I91 91 H$I$91I$I$9F1$H$9F1P1$!I$I$)I)I$I$)I) I)I)  $I$9F1 91 * ,8.i9a`ɑIP1a%5 0Z&9$!x^ TIw9$! $I$91 $I$91 @&I$91 ۶M,9e) p9, ۖ91* 4p=9Xx JIO1 - !@@91 $A$$91  `$dB291 I$I 91   991 z B$! I$:1 $Ad$91 H$91 II$91* I$91 91* H @$91 II91*** @$91 @$J$H9K$۰P8VV  7uqP-//" qf$q / IA%y*4/iTIDZ3@$DZ1@PPT $I919F1 I$I$9F1I$I$9F1 d 291@ 1`[1b%+ 9F1 b(Q$A9e)|'1\^PJ1  9F1 1e) $I$91 I@91 Iڴ؆91 I$L&91 $I$g9*  I$91 C0!$91)N $9U1PN.*3)H R 4/I"%Jǩ4R#iHE`4 $IE 4/DZǩ43@ DZ4-# HDZ1%hzꠀ,3 E~ ~>c f%i$d%1UVX @!$91 91 91ʂ I$j9aW^ @9 I$I$B$! I$I$B$! I$I$B$! L091ꪪ I$d91I$I$g9* $I$91 H!91 LB&I91 ! 91I$I$9F1 I$A$9F1I$I$9F1 I$91* 91* }"P H9!^ 19E) I$d91UU_h9 @1x؞$1I$I4f1!UUWxI$I$e)I$I$e)I$I$E)!= I$1! U  1! [+ 1!՗, TId91 A) @B$IA) I$L0BD! I$I$BD! I$BD! I$I$BD! I$A) L2H91  I2d291 !I$9f1* !91 @91`  91 $I$A) @9%)@ $9e) I$@BD! I$I$B$! I$BD! I$IA) ۶mۆ91( I$I$A) A)  (91@IIl91U I$I$91 ` 91 / )J91 C" 91 3h9E)I$pȆ1E)_I$I$1%)/ Ӎ19E)x-I$p01%)II$1E)/ PN19E) ۰mt91 ۖmi99= L&(91 I$I$91 !I$91 91 / I$I$BD! I$I$B$! I$I$B$! 91 I$91I$I$91 @!91 J9\  9E) I$I$B$! I$I$B$! L091訪!9I$1-UU,IxI51% % +4-@ $DZ 43DZ 44I$I$%44I$I$%40@@DZE```4 DZE44I$I$%44I$I$%43DZ4IdIHE-c%9ZX` B$! H&@ 91 $I91 K&`9E)-ɐن1E)A 1E)m1E)*%%/" 1E)@ 1E)A@) 1E) H1E)<IH$11>11L&@11VXPI$I1E)*I$A 9!mtIl1e)*** @1e)H$)I) ! 91  (@91II$)I)0ۊ511`1Ji1E)x` DI$1E)%UW1E)$11zI$I$11/1%)I$@ 11$I1E)21E)Iv1e) I$11%5UH9F1I$H$)I)6aS1`P7SE`/--&E ) `f~ ?f1UTP@I$I1%)(@ ")21! 81!m@1E) 11?@11KdH1E)$I$11 t"1E)I$t٦1E)` iۆ1E) 1E) 11I$11/11  1e) I$H 11/P-%Zm1E)Pn*`1%)례 _:ie)UfP -PJ/e -"DZU(P-(m1P@1e)** 1E) 1E)/I$H 1E)I$I$9I$I$9`1E)VꪪI$@ e)!I$I E)!*I$1!  $f1!/1E)I$I$9I$I$9I$I$9I$I$9I$I$9I$I$1E)` NDf1 / $I$9H1E)^I$I$96`ۺ1E)H 1E)_I$I$1E)ꪪI1E)_i1$!I$I$9I$I$1E)I$I$f1e)I$I$9I$I$9@! $e)$! L$HE) ɗi8 =!R*EE1BBJJ e)E)pz )()( IE)! e)E)E)!E)!I$I$e)E) &`E)!e)E)I$I$e)E)$1  LHE)!I$ )( @$)(@$I$1 E)!H@E) * !I$E)! H$1LHE)! )($)($I1dHE)!I$I$E)$!E)!HE)!**LȄHE)޾E)!I$I$1I$I$1I$I$E)$!$H$8%)UI$I$80I$I8$!@P I8$!TUUUI$HE)!E)!I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1%) H2d$%)z~I$I!VUU $@$!% I$I$1I$@$e)I  e)@$I$e)I$I$$!!<<I$Ie)I @$$!!`@$I$!I$@$!* $@$%) * 1H$I$!!PP$!H$I$$!!@@I$I$$!! I$I$$!! I$I$$!! H!<I$I$e)I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$d!d  !! @$I$8UI$I$80II@8ItiX@- yw/ %qP/+  )N E%qL„Ihc'N$fEs_WUI$I$hA$pI$H$pIbfEUvb'p$fE__\TI$I$hI$I$h $I$h!x$I$ETUUU`fE5 p'vfE\\_I$I$hI$I$hrEE)\W sv۶EYe)TUUU 1e) $1E)$I21E)˖dE)bI$Ie)E) a9E)/ 0(A1%` 8tb?9ax I!bEI$IE)bU5IH E)b5  I1E)*I$I$9!-1`I$1E)I$I1E)+I1E) I$I$9!I$I$9!I$I$'9#I$I$9!$1E)&I$1E)I$I1E)*I1E)*I$I$9!I$I$9!I$I$9!9 I$I$9 $1E)@$1E)H$I$9! `%1`XIP$1?. 1%)!I$11  11 I$I$g9*N' A1b^1`I-Ŧ1 *m$11zUh$I$11xWUU1!`@$1E) *@$I$1E) I޿m9׾ &9jZ@ ɑI9% &O$9E)I$I$9$H$1E)$$1E)*H$I$1E) '9#I$I$'9#I$I 9!II$9!I$H$9! $9!H$9 I$I$9 $9 9 1E)*&I$11XUUH$I$9!I$I11UU I$11U+I11/@=1a`  1 I$I$g9*!1! I$I$g9*I$I$)I) 11 C&11`_@&I$11ZUU I"%1@P1I$I$9 I$ $11 I$11 * 11$11 I$11$I$11 I11 ***I$I$g9*I$I$g9*I$I$)I)I$I$)I)J"%"1b\P I$1a ?m1E)I$11$I$11H$I$11I$I$9 EJ$1!TU  1! Mdњ`1.ufX-%( ʿL %qV -Ey/,M@[4ǩ, @<i%qPp"Or'P-f1VZP@0`&1E)P 1E)   :1 ۆm291j4{N$9$!(r,`I9e) mڶ91 mM$91I$)I)$I$)I)$I$)I)$I)I)I$I$)I)I$I$)I)I$I$9F1 L$LB91I$I91  ! 91 I$ :1 d291ꪪ ͶI91 I$$ 91 !I91 I$91* I 91 I$I$B$! HB$! I91* m091 IҶ91 IҶ91 IҶ91 Ivl91 I91 I$I$B$! I$I$B$! 91 #р@9!x I 9!+ I$$ 91 I$$ 91 6- 9e)jȒ$Ile)!I΋1AחTI9E) #$H9$!j DI$I1!I$I$)I)I$I$)I) !H91  I$91`&k"ֆ1!XX i9E) -  $91* H$91 $91  @$91 I$I:1 $I2$091 9F1  I$9F1 @ H9UUUH$I$H@ivXH//+yys7EX/+)1NP E-/+3(oN+/+ 4/UiVDZ"**3'O'DZE)TTUU q1! 5  $I$11 $$I$11 ېI$91_W `i$91u11 I$I$9F1I$I$9F1  $I$9F1x1!T$I1E)I$H)I)"%x<1p\p 1 % $A"$I91ꪪI$I$)I) H$I$91  C$@91着 I$H$91 1!@\1a %"LI$1UU-0 rI)3%@J. +4-$SDZ 4-N9$DZ4-$N:DZ4- $DZ4- DZ4/j@DZꨠ3( iꠀ- hf^#  $q~M&k %9VZQ1UUUT !I$91 mi$91 91 I$I$B$! I$I$B$! I$I$B$! I$I$B$! I$I$B$! $91ꪪ I$ 91I$I$91  $I$91 @ $91 I$@:1 I$I:1 H$I$:1I$I$9F1 $@$:1  $I$91 $ 4G91 91 #Ւ$91_ I$91UU~dB$ 1E)N9&1!Wxm۴&E)p!I$I$e) $I$E)!- $1! @ 1E)- {I$91+UU  w91 $H$A) LIA)  A) H$I$BD! I$I$BD! I$I$BD!  A) M91  H$91 I91 A) I$I$A) I$I$A) I$I$A) I$I$A) H A) I$I$B$! 9r"&9xx Քny9*- ؖmݶm91 $A) I$I$A) HA) K591 I$L$91 I$91 4 {91+ mۺ99 m 59`l+I1 I$I&1E)wI$1E)/N&CJ1E) I$I$1E)_]^Wħ9E)* @691/ m91 #D91 I$91I$I$g9*  91 / I$I$BD! I$I$B$! I$I$B$! I$I$B$! L$91 $I$91  91 $a29e)` Iħ9$!. $ !91 I$I$B$! `091ࠨɑO'i1UUU)I񔼆9 1 M.*4,Mw +410 DZ *44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%41,`DZ1!Zhx&K写9UTTP 91ꪪ  I$91  P91 k[ 9E)I&[341E)$$L$1e)*۰mn1e) 11 Ʉ111f1 @ 11 11 *11IB 11U L$11uWW$@LȄ1E) ** I$1e)I9F1I%1e) $!91*I$H )I)-A1E)/P11s2:1E)\X`TI$1E) %U$II1e)11 @J1E) I$I$g9*JRI1E) 11 B11@m&h41E)W'1E)/_ ۚ11;P1p9w%X--& E )--(cɖd몫,iA@O?f1UUTP[k1$! @rd&1$! X 1E) I$@$11I$11 /11 I&11^pmm&1e)*1f1 I$h$1E)I$I$1E)1E)/11I$@11 $1f1 I$I$)I) I$11  $I$11 k,۲m1E) ^pE)@NfX +-iJRf++, `~ꀪ(K%R-e)TPP@C!1E)ꪫ!@@1E)/ H1e)(*@1e) I$1e) I$I 1E) 1E)j@$1E)X f1! %I$1!I$Ie)!k$E)TI$e)!U_ I$f1!+U$f1!U$1$!***1E)1%)j `1$!e)$!I$I$9L$J 1VI$I$9$%bbۆ1$!ZZ$1E)`%f1$!ZI$1E)C21E)__ $1E)U$H$e)E)Ce)E)@ Ie)E)U 6lݺ6e)!HI HE) ɗDNi8=**RPE$9J I$ e)E)?I$I$e)E)e)$! I$I$e)E)I$Ie)E) I$ e)E)IH$e)E)I$I$1"I$I$e)E)@$)(I$I$)(@ )(I$E)!*$I1I$H$1I$IE)$!**IE)! @$E)! E)! 1 I$I$1  H$)(H)()( @$)(I$I$1HE)$!(I$I$E)$!E)!꺪E)!I$I$E)$!  8E)UUUB&I$8$!I$I$80I$ 8$!PT A$H8$!TUUUIIE)!I$I$1I$I$E)$!I$I$E)$!I$I$E)$! I$I$1I$I$E)$! $E)! $! H$I!* $@$!-$H$$!!PPA$1H$$!!@@  $!!I$Ie)I$e)$$!!h I&d$$!I$I%)/!H$! A$!& @$Ie)1$H$e) 1H$I$e)I$I$e)H$I$$!!ฮI$I$!!,I$I$$!!bPXXI$I$$!!  $!I$I$$!!?*I$I$$!!I$I$d!d I$I$d!d $@!  $8!UUUI$I$8 I$I$@! !$AH8// w7iH/+9N %ya-+ )PE%y! pI$Ih $ $I$p@$ر'fE}\I$I$hI$I$hI$I$hIbFb'fEUS_I fEU7 '@'fE|\P\I$I$h9$!Z $I$9%)@$I21E)* I2L$1E)~W@$I$e)E)I$Ie)E)  !A1E) I1E)*I$I$9!I$I$'9#I$I$'9#I$I$'9#A$I$9!I$I$'9#I$I9!H21E) 2L$1E)@$I$1e)I$I1e)*II$9! A$I115*11I$@11 11x&p'1bXxX\ɑ91b5- I$I$g9*$11$$11~UȐI$11UI$I$9 L$dB11WW_ I$11UUJ%1|pI۶e)%PP1! I$I$9!I$I$9!I$I$9!I$I11*I$11I1111I$I$)I)$1f1@$11$I$11C$I11`N(S1, 9 -1E)$1%) d$1E) &L$1E)J"$1$!V !I$ 1E)* Nb'39e).sif1 )# `/Ey+/,@vf,#xID-%$ ( h?EyU"1UUTP `S6i91I&dB91$I,91`cgOI1A /11I$I)I)I„$ 91I$91 I2$I91몪 I$ 91  I$ 91 $C91ꪪ !I91 IB$! I$I$BD! 91 h99E)x ` 9E)-5 @9` I9a. 91 I$I$B$! I$I$B$! I$H BD! I$I$BD! I$I$BD! $I$BD! A) I$I$A) I$I$A) A) $I$BD! @$I$BD! I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$I$B$! I$I$BD! I$I$BD!  91x$1a0V  9 I$I$BD!  9`99!xXx   9$! % I91 I91 91* I„91 #I91_ ! 91몪  ! 91   :1I$I$9F1 I$I:1 `$L„91 $!I91 L$91  I$91  %H9%I$I$H@qWvaH//qW7ei---,)rf---4+ 4  DZ!@@@I$E)!UUI$1!+UvĆ1!؆1E)1E)I$I$9 I$I$9  I,51`KI1b?@L$11(1f1* $I$91P6m:1hZhI1 $II9e) I$I$9F1H$H)I)I$I$)I) $B!91ꪫIH$)I) #R-1pI` 1b% IB&!91+$f1UUU)IpA %1 M 4,I锴 /41DZ 4-N:DZ4-۴ DZǩ?4/ I$DZǩ?4/R Hǩ4+ mx13 i^) E_~Z %f9^ I$J$%y1UUVXI$I 91I$I$g9* I$91 $91* 91 I$I$BD! I$I$B$! I$I$B$! I$I$B$! @91 L91 I$d91 $I$g9* I$91  $91 I$H :1  B$! )91jjNB18W ` 4I9e) ! @$91 91 91~ m۲ 91UWL2'f1b\XhHA1I$v91!UU_I$I$e)$H$!Ax1IE)a+IIĆ1! ۰ ې1E) `wm;91 U $P91 II$A) L2HA) I! A) †%9E) $iA91 I$I$BD! -@191 !I C91 I$I$91* $A&91 A) I$I$A) I$I$A) I$I$A) I$I$A) X 9!x P -eW9$!)+/ I$BD! Pk91^ 091  I$I$A) I$I$A) @A) I$X91I$I$91 N91+ h Axx IPP9b--   i9E)zI$ц1E)xvam;1E)/X-S1$!-m۳91E)}]\ptI$1E)5 @N-9e) * @R&91+ !A) N"&91I$I$g9* I$91 / 91 I$I$B$! I$I$B$! I$I$B$! @091* I$L&91 !I$91믿 % 9E)( I$I$BD! I$I$BD! I$I$B$! 91 I$L291&OĆ9 5/M. 3)PI.+41ِlDZ *44I$I$%44I$I$%44I$I$%44I$I$%4@ DZE@@4 DZE4-"# DZ/Z1 h9`@o?f1UUUT ږi@9e)  AJ@ 91  91ꪪ c۴ 91-ڶK1E)  $1E) * I$11/?L11H@ 11( 1f1dH&C21f1 @$11 @ 11@9 Mav1e) ( Ʉ11! 1f1 *R"IȦ1E) ۖn11 $A@9E)I(IH1E)/!@$@1f1 $11TM2'І1! 1E) 5I$H$)I) 11 I$1f1 **Hd1e)((I@ 11**P"%1E)PP11s$ 1\k;1%) -P1UU 1SuVp9 %% .2$q KKk/  %y1&hz蠀+chfI`?f1UUUTl&" 1!ZXmѶm1E)/0)1E) /$011~pL11-$11* $1E)Pmm%1E)@l1E)I241E)I$I&1%)I$1E) *1e)H 1f1H$11*1f1 ضK1E)((I$11I$11/E1%IX( m%q( J'?%q^W vm۸Eie)UUTT1E)I$I9I$9$1e) I&1E) 0@1E)zp !1E)(dOHf1%/H@!I$I$9Xf1!XIe) I$e)!UI$me)!I$Ie)!I$I$E)!?$IHe)!*@&L$E)!m6E)!61!L$f1E)WU@ 1E)UUm׶me)!*$I f1$!?[f1$!ZꪨI e)E)@ @e)E)Ps_?$2@e)E)biI$I$9 e)%)He)E) ke)!!B He)UU`8 *5NfX ++I$I1"$IbIe) e)  e)%) H$e)E)0ضm۶e)!I$I$e)E)I$I$e)E)*I$I$e)E) $e)E)U$I$1۶ E)!JJ@ ɐE)/I$I$e)E)+Ie)E)U۰m[ۦE)! E)!H$e)!e)!e)E)I$I$)(I)($)($I$1I$I$1I$I$1I$I$1I$I$E)$!HE)!*I$I$E)!  8E)UUU@$I$8%)I$I$80I 8$!@PU@$I$e)I E)!ﯪ e) I$I$E)$!I$I$E)$!* *I$I$1I$I$E)$!I$I$E)$!I$I$1$! H$I$!/ %) ) I$I$1H @$1I e)I$$!!@$Ie)I1 E)!@$H$! I$!*+ E)!H1 $! E)! @$%)$!I$A $!!@@$$!!H$I $!!ɐI!55I$I$$!!*$I2$!$!I$I$e)I$I$e) $! !%% $!!  !H$I$8 I$I$@ I @8/+w`@/ys6e %yX/  1@E%qIf%y?+H$I$hI$I$hH$ $pI$I$hm;fE5H$I$hI$I$hA$I hfE5IIfEU 8c;fEpp h@='EE1^xEye)\WUU$1E)ꪪ5,m1 zx-0E) -- E)!I$I1E)ս 79E) 09f1  ?9e)~U C&I$1E)_WI$I$)(I$I1E)!I1E) I$I$9!MP%If1bV e) $I1$!* $C1E)*I$I$'9#I$I$'9#Ș#'1bhX.1b  91pIKf1  I$ 1e) 1E)*1E) % 1!.9 I$H$9! 1E) &L$1E)I$I1e)$C& 1E)zz5k$E)b`X\&I$1a* 1! I$I$9!I$I9!$9  $I&1E)d$1E)@$I$1E) 1 I e)E) I$I9 Iq9E) I  91+  k$9E) h'91WUUp$M2'f1b^^CIe) H$I$e)E)ꪪI$I1E)UU$2f1 h1%) I$I$9!I$I$'9#I$I$'9#I$I$'9#I$I$'9#I$I$9!I$$9!$A$$1e) I&I$1e)H$I1e)I$ 1E) $Ɔ1II1%)I$I$9!I9!$I$11@$I$11 $11 N'/1V^9pBm1 I&I$11_UUH$I$9!I$IH11UUI115 11 I$I$g9*@$@$11I$I$9!PH1%)ٶm۶1f1 I$I$11$ɐ#'1`X0-1b 11 11$11 I$11@$I$11I$I$9 I$I$9 1E)(`$1%) &I$1E)I2!1E)@%X,e)!pp@ wq9$! Nb'9E) qSJК49E) @M$9E)/ &N$9E)6iv1E)* I`f1UUpSyw$E9 **)&.sE-+,$ 2-E@Bj/ ɐ DZE %%%,?EyUU( iI`@I$1UUW\I 91ꪪ #i I9 b I@9a/ I 91 $)@91 @$B$! @91** $91  :1 I$I$B$!  $C291@M$1E) 0w9e)+ $I$:1I$I$9F1 P#9e)x ['1b pX 69 N!9' I$I$B$! I$I$B$! I$I$BD! I$I$B$! I$I$B$! I$I$B$! I$I$B$!  @$91 I$I$9F1 91 I$I$B$! I$I$B$! I$I$BD! I$I$BD! I$I$B$! I$I$B$! I$I$BD! I$I$B$! I$I$B$!  @$91 91 M@9AV  9%) I$I$B$! "a$I9e)`  9e)  I$I$B$! 91* A$I$BD! I$I$B$! I$I$B$! II$BD! I$I$BD! I$I$BD! I$I$BD! I$I$B$! km 91 IB$ 91 I„ 91 I 91* -ڲbH9IIPH -- qwS7$qP/-/" qwO%q/ +/ qr 3+IoDZUUU=/@$HE)PPTTI$Ie)!UUWI$I$$!!_p$H$! ! $$I$E)!WwI$1!UU$1$!U 1$!I#0 1b.I$I$9 I$I$9  $I$11 @"I$I1E)PI2'h81axx)9J1 9F1I$I$9F1 dB$I91 $ $Ʉ91 L$dH91 >R1xx @1   91 $H$:1$H$9F1%Mɖ$1U/PN.*3(mw 4/$DZ 4/ DZǩ4$H$ETTT3!mVmDZ 4-dA1DZǩ/4-#IHDZꪠ1#h~ꠀ,3 E~ ~>c f%i_$䃍%y9UVX IB91I$@91I$I$91I$91 @!$91 91* I$I$B$! I$I$B$! I$I$B$! I$I$B$! I$I$B$! d91 I$$91I$I$)I) $I$91 $91 @$B$!j 9E)(I$I$9F1 91 $I$B$! I$I$BD! $C$ &91  91^ mc 19E)۲mVl1E)N":If1!_xNb; E)zꨀ !b I$I$d!d I$1!/UU4H1!+II$11UU N91 U 0o91/ $I$99/ '9~ PA9!  H$IBD! @&K'9ax\X p 9 H4G9e) L$d&91 !I$91 $91* I$I$A) I$I$A) I$I$A) h@91` IJ 9e)% I$I$B$! @91 $!A) I$I$A) I$I$A) $A) A) m5 91I$I$91 vI$91+ $IX91 mӶ:l99 t"ڐ@91~>ͧ9$!~Zx !E)!//  $1E) I$`BɆ1E) I$1E)/Nq9E)* @I91 + ݚnɐt99% t9 I91 I$I&91  I$91/ 91 / I$I$B$! I$I$B$! I$I$B$! h 49`TN1a/5 !I$91 91 + I$I$BD! I$I$BD! I$I$BD! 91 I$`091"7XI$15U- Isa %3&PJ. *4/P VDZ*43DZ44I$I$%44I$I$%4DZE@4 DZE4 DZE@@1HIDEy,L"&Z59TP`` 91  `091 ݖ 91 X4 9E)A  1$!d& 1E)ۖm t1e) * 11/I$I$)I)H$11*(II$)I) 11I11?H1E)@ 9 `H0!11ciA 11"mֶ11@ V`11  ɰ 0{9E)%**   91ꪪ RJ1E)<<h&&1E)XXR11B'j1!^XI1E) %Kh7l11<@ 11I$11 > 11@@$L$1E)*.11  I)I):P 1$!1OĦ1! . kwi1UUUO dE9 -P Sf++1+6ݐn+/#Zhz訠)c19P@e1UUUTm۠ 1E)ꠀ$L$1E)Lɶ؆1E)«!1E)L @1E)* @ 1E)P 0 @1E)-P1E)  11 ?1e)mX%1!*viv1$!0-f1e) *I$I$)I)I$1f1 R61! 1!1f1IP1UUU pSqǻ`%1 )Is%ya +/! %yUUU!u:Hf!Zjj퐤I$e)! UW@J$1!U6ݖv1$! I$1E)ꪪdB&d1E)$I1E) +1e)H1E)*$1E)XI$1E) I$1e)I$I$9I$I$9I$I$9I$I$9L $1E)W^ e)E) 1$!I 1$!/*۲-1! I1E)UI&H&e)!@:1$!ڪ I1E)I$I$9ɐl۶m1E)1E) e)$!If1E)I$I$1e)I$I$1e)I$I$1E)I$I$1e) JHE)1UqiH-- $ie)TTTT$e)%)@$e)E)$I$e)E) I$I&e)E)XH@E)!$@@0E)! :p@!E)!C2$CE)!I$E)!*I$@)(e)E) ؀ E) /((I$I$e)E)I$ e)E) Im؆me)!II$1"$ `B&e)E)PX$e)E)hZje)E) )(LȄE)! H$I$1$ IE)!//I$I1I$@$1I$IE)$!*I$A$1H$I$E)!$8E)UUH$I$8%)I$I$@! I!I8$!@PTUI$IE)! E)!+I$I$1I$I$E)$!*I$I$E)!* HE)!I$I$E)$! I$I$E)$! E)!$C&E)!~WUH$I!  E)+ I$I$10%)`HI$!! $e)$ $$!((* E)$!I$e)2$CE)!z^WUI $!*I$ E)! E)! $!$I!E)/ E)!H1 1 $I2$!$H$$!$!*I$I$$!!*I$I$$!!** I$I$e)I$I$e)I$I$e)I$I$$!!I$I$$!! I$I$$!!@$!$I$8??I$I$80I$I@8IIP8+ sd qP/+ )RD %yi- iAE%y#*hI$I$hI$HpI$H hI$ p@$H$hI$I$hI$I$h8 fEuuEII$h6l ;fE|$I$)EEyjEye)pWf9f)$'9# 2d$1E)H$I$e)E)$I$1 II9E)UU5  9E)  `/?9E)x O$9E)WU@$I$e)E)I$Ie)E)+I!A1E)* 1e)* $1E)@$I$1E)(e)@H$I%)\WU1 I$I$'9#I$I$'9#I$I$'9#J%@H1b\Xp  f1a%5 j"'R"f1xXpɐ1`1-% I$I$9! 1!@dI$1UHH1!@$@21E) 2L$1E)H$I$1e)I I1e)*I$I$9!1e)j(1xIl[1?1E)I$9!$I21E)Ȑ#'1p^dIXE) % E)  H$E) H$I$E)!it1E) @$1b@PT @Jq9 ]v$9e)hWUU$)f1h$1E)~WUE)!I$I1E)I1E) 1e)*j$h,1XVX)1 I$I$'9#I$I$'9#@$'9# !1@1E)*  H$1E)@$I$1E)I$I1E)*I1E)*I$I$9!I$I$9!K$H1^V\1 I$I$9! $9 $9  $1E)@$1E)I$I$'9#I$I9!I@11U I11+ 11I$I$9!I$I$11*H$I$11$9!$I11I$@$11 11 H$11z"%.I1bX J$I1 H$C211ʔd1  1E)H21E)A$1%) 1E) 1e)* IĎ9E)+ O 9E) yr9E) ;N$9E)&I$1E)$I&1E)$2 1E) I$ I1E)*I„ 1%)(1$! 9!I$I$9!+Œ")X1K9fP %)Zsf+-# HDJ*+,+H$@ $+!Z hz蠠%{%͆9\X`   A$:1 I$I9F1 $H :15P̦1!`` xW9// I$H91 91 @$I$91 I91 $@ 91I$I$9F1 s$I9e)^ IJR91UU־9F1 $A$$91 $91  z=,I1AX`  1   C&91 ömI$91  Im'91 $I$91  91 I$:1 I$:1 I$:1 I$:1 I$$:1 $91 @$B$! I$:1 I$91 I$91  B$! d$91 @N$91W $91 öuI$91 $I@)91k 9! ' 291 $91* C&91 tI$91 $91  I$I$BD! H$I$9F1 91  @$91  I$:1 I$I$B$! H$:1 91 Ф9e) 91 I$I$BD! H$I$BD! I$I$BD! I)$I9UUUH$I$A8TUUWI @8-/ %q@ " i ,0%y30IۖJDZf/H$I$ǩ1TUUUI$I$9!k1E)1jIb1!UI$ 1!UWI$Nf1!UUWI$I$E)!I$I$e)!$I$e)!/I$1$!UU IĆ1$!Ć1!1E)1!1E)I$I$11*-['1!@p| l9$! ) kmۖ91   @ :1 I$I$9F1 C$I91ꪪ IȐ$ 91I$I$9F1@9F1I$9F1!HI$1UU,0In1/#%DZ4)@n&DZ*U4!#mDZx4)@DZ 4/I$@DZǩ1@%P%EPPPP3A!AE 1(# Hz- hf~% Z $q~}&k%9VX ض'fa1UUW\  C$I91ꪪ IB2C91I$I)I) $I$91 I$91 91 I$I$B$! I$I$B$! I$I$B$! I$I$B$!  91@ 91ꪪ I$dB91I$I$)I) @J$I291 $@Q91 I:1 H$I$9F1 I$:1 B$!  &91 ɐvݺ-91/+ P&u:9!`X^z /99!- Iī 91UUW1E)bN:,I1!WxI$M6e)!]WxI$I$d!d I$I$d!d $PI$1! U O1!-ЦM$11WU  q91+ 3n91 (B%) I$dA) 9p $Ȓ,A9E)H$IDe)A8< dII9E) IB&91 $I=1A` `X9A % 91 I$I$A) A) IA) A) I$BD! I$I$B$! !I$BD! A) H$A) I$I$BD! I$A) X``91 I$` 91  $I$91/ `191 d2$99芫 Z#I91 2"9E)_I$L:1E)_^x&Xmۆ1E) k%ݚl1E) I$I$f1E)~` iۆ1E)/ P91 퐶9f1 #@91 I$L991 I$I$91 @ 91 / I$I$BD! I$I$B$! @9` IP9b/ I$h91 $I$91 @!91 + I$I$BD! I$I$B$! I$I$B$! 91 L&91 I$15UU+IsA-1"Mw*4-@J& 43DZ 44I$I$%44I$I$%44I$I$%4DZE@4IIE1 x"ɿf1UTTP X$K91I@&$C11/ mm91 I$h%91I[241E)Id21E)*۰mݖm1e)$I11I$11 1f1 $CH1f1 I11 * H@1E)@9 9 I$11Hd1E)<<$1e) J&l$9e)  91 X `91ڪ  L&91 I$ :1 R# 9e)z '1!_^1x1E) -5I$H$)I)H$11I11//NdK1E)?۰m-1e)1e) B$I1f1M&P1!tI$1E) 5U1E)%O?f1U- Ne9/)6`ܖr,!X6` &c%f9PP@01E)t":M1E)I$H$f1E)~z vk1E) 1e)I$@ 11C&dB11`^_i1!))$ 211x`n1E) @$@"%1E)PPi 1E)d&bl1!XP !I1E) 11@1e)! 11I$1f1 p H 1%) dD$Eh1%U wfi+//) sf +)!Dif%J?톙E)TTP@K m1!UUVI$I&E)!UUxtI$e)!-UU0$f1! U6ۖt1$!*I$9I$I$1E)@u۶m1E)XI$1E)  $9 1E)@1e)I$9۶md1E)[%X1E)^^Zٖm`1E)I$I$1e)I$I$f1e)I$I$9I$I$1e)4e)!`$H1E)d$1%)Lf1$! ?>I$I1e) 1e)@$1E)$I$1E)I$I$9I$I$9I$I$1e)HHe)E)<<(@ Pe)pqW%yX/---L$K2$Ee)TTTPI$$e)E)$(&e)$$e)!`"$IE)PaE)I I$1I 1I$$Ie)E)UW/Mdle)!>I$H$e)E) @$I e)E)$I e)E)*% @!$@! H$e)E)I$I$e)E) I$I$e)E)I$I$e)E)@$)($)(I$I1I)( E)! H$1I$ 1 $@$1I$I$1 @$8E)UH$I$8%)I$I8!@I8$!@TUUI$IE)!/ E)$! $E)!$I E)!/I$@$1I$I$1HE)!E)$! E)$!@$I$E)!~WUH$$!* !AE)!$E)!$E)$! E) ~E)!H$I$E)!~~ A%)! E)!@$I$E)!zZWUI$I$E)$AI%)/77I$I$E)$!I$I$1HE)!I$I$1HIE)$!I$I$1@$H$$!!$CI$!!I  $! * I$I$!! I$I$$! H$!((I$I$$!!I$I$e)I$I$$!!I$I$$!! I$I$$!!* 8!UUUI$I$8 I$I$@!  $AH8/ w.e iH+yuO %ya-+ @KDIE%y) pI$I$hA$Ih I$h p @$pI$I$hA$A$pI$IhA$H$p1fE ؆m۶1EE1@ɟEe)@PUU!@1%) I21E) C&1E)WU)(I$I1E)UU I9E)U/ )09e) |$9E)\W@$I$e)E)I$I$)(I$If1E)U I1E)  1E)$H$1E)I$I$1E)I$I1E)R" f1P@I1% I$I$'9#I$I$'9# 1e)$H$1E)I$I$9I1E)* 1E)I$I$9!I$I$9!I$I$9!N, I1b(`$1E)@$I$1e)I$I1E)* 1e)*I$I$'9#1 I$I$'9#I$I$'9#I$I$9! 1E)d$1E)z_ $I$1E)U@lE)`)mضmE) H$I$E) I$ @e)$!  e)$! m[$1E)^Uh6mӶ1XjɐdId%) .>e)%)X$X-E)PTP@l4 1)I1E)1e) I$I$'9#I$I$'9#I$I$'9#I$I$'9#I$I$'9#I$I$'9#H$@$1E)@$@(e)p|p!@f1 % $I 1$!@I$1!UI$I$9!I$I$9!I$I 9!I$I9!I$I$9! A$9! I$$1E) I&I$1E)H$I$1e)I$I1E)  1E)*  I$9!I$I$9!I$I$11*$I$11I$I$9!$9 $I$9! 9 H$I$9!I$I$11UU$$11zU@$11I$I$9 1H21E)h4i1 @If1 UH$I$1E)ꪪ y$ 9E) I9E) l?9f1U-_ %m>9 j $I$9bVUU$IHf1I$I1E)I$d1%) R$I$1$!VUT4 1$!9!I$I$9!I$I1f1*I$I1f1*I&$@1f1I 1f1 I1f1*w䀆9*)" `N7w%q +/+P S +-+ D/)mSǩU+ZjI'x'f1W^\\ II:1 91 m9f1ꪪ 0 I9e)'   $91* 떤91 $ $$91 m&91 nI91$I$91$H$11$ 1f1 $I$)I)I$I$g9*H$H$11 "1%)@0If1A(4Id9e)+I$ 91LB&$1f1I$aH91 iv91* ۶mۆd91 I$I91 I$I91 I$I$91I$I$9F159e)x91 I$I91* I$I91 I$I91  :1 mӶ[ l91I$d91UW!$I11I$I91 .5#81A`II$e)a. C&dB1f1 11 I$I$)I)LH$1f1(I&L$11@!91 I$91  ѤC;91_ 6n91  $:9E) z 91 I$@$91  H91ꪪ;Ǫ1$!ܸ  9e)  I$@ BD! I$I$B$! I$I$BD! ")"%H9%dB$IP@*I`P8ɝ fP))+ i+EyUUUx-[F$@$ d11_ m(91 I$m9f1I$a11I$I$9!I$I$9!I$I$9!1E)xv1!Ib'1$!U_I$@1$!UU~Iie)!I$I$1I$I$e)$!*IĆ1E)UU m;16d1!1!01$!I$I$9 $$I$11@I$11? ۶ 91  91@$H$)I)9F1I$I$9F19F1 $I$f1UUU%0L1,"$nf +1)%PR.DZ 4/JiDZ 410ِ%4/jDZǩ4-tl'dDZ1-!I$ /1+m|註1 +(%y@@ Zfi?vR %9^ꨀ I$H$Eq1UU^p H$I$9F1  A$:1 LB2$@91* I$H91I$I$g9* $I$91 @$$91* 91 I$I$B$! I$I$B$! IB$! I$I$B$! HB$!.&p99axxLK1 % !I$91  I $91 I$H:1I$I$9F1 I$:1  B$! s 9e)n( 0u91 A) I91_ I$t91UU_z1E)`I"' 1!W~I$I$e)!UUW|I$I$d!d I$I$E)!UUU I$1!-U O1$!- I$91UU 0.91/ I$A) dB A) {$9^ A|9( = I$I$BD! I$BD! `09bx IL$1a5   A$I91. @!91 $A) I$I$A) I$I$A) I$I$A) @ A) L$9AW 9  $BD! @A) I$H BD! I$I$BD! BD! M%؊m91I$I$91 &I$91 / 9f1 ۲m`91 3 H9e)zIR'͆1E)_XpI$I$1E)U_Mȶ䘆1E)r-I$M&1E)UWx!I$1E)+U  &9E) Mo91 / A) I$91I$I$g9* I$91+ 91  I$I$B$! I$I$B$! I$I$BD! H&91I$I$)I) @ 91* I$I$BD! I$I$BD! I$I$B$! I$I$B$! L& 91ɑ+9^x ɛ?1B9%* H$H$BD! I$I$BD! I$I$BD! I$I$BD! LB2$I91 m۶m-91P7'L$1A P9  9$! I$I$A) A) M@9A޸ DI9f1 I$I$B$! @$I291* A) I$A) I$I$BD! I$I$BD! [ۆm91蠀 I$d091  I$91/ @ 91 /? I (B%) 91| }>9E)^zI۶m51E)UW~lK؆1E)-M۠M11E)UWxb@f1$!* `N19E)* 91 + aݖf99ꋫ L& @91 I$I$91 !I$91 91 I$I$BD! I$I$B$! I$I$B$! mP&9e)\1E)  $91 + $I$91 I$I$BD! I$I$BD! I$I$B$! `091* I$I$I1UUU%Oɗ䆙1 5-2 rE@ 3 0IE%41ِlDZ *44I$I$%44I$I$%44I$I$%41lDZ3#ih+L&bf9VXh I$I$B$! $% 991x 9E)* k%۲91`$11XP@]ۭ1e)*nt1e) *!I$11$I„11UU   11 +  I$)I)L$dB1f1۰%1E)@ 11I$I$11$I$11~$9 j"$1!X c;09E)  ɋm@9E)ը @@I91 @d9e)I$)I) jk9e)* `9E)zI$L'1E)UW\Ax1E) 5kh%11PK01E)+(H$11(&R,1%)$1E)MT 1 &$m۶e11t2,`1E)^xqI$1E)%UW S1E)-?f1UUU)I|9+ 4IS+)?@iW_I$Z-f1UTP@I$I$)I)`1e)N:X 1E)W^ I$1E)UW锸1E) -11 11K۰m1e)((I$I$g9*H$11 ۖl1E)11 I11[ l1e) I$9!11 11.I$I$)I)@$11r%9 )(PN/Ey ++ 6Aow(Z-i1P@@[% @1E)PP@!iS1E)C$I11`m1E)~N: 1!WI$:f1!UUI$IE)!UUWI$I$$!! -$I$e)! UUI$e)! U$II$1!Uf1 1E) 1!1%)jf1%) @1E)I$I$f1e)I$I$9H1E)$1E)Ktf1$!I$I$1e) H$f1E)~~@ e)E)   @!!e)E)ض6kӶe)!mlͶE) .&& I$I$e)E)?I$I$e)E)+I$I$e)E)IIXE) ˼[$qP*iTfiI2&c %E)UXӶmYe)UUUPɶne) 1E)$H$f1E)^ZI$I1E)f1e) e)E)@@$Ie)E) @!$I2e)E)`@$"!Ie)$!e)$!H$I$e)E)TVUWL$IE)!<> @)(I)(I$I$1 $@0E)!-ݲE)!ck ItE) !E)!++ H$1ۺ-:`E)!`bB6@!I$I$80I$I8!@PIH$8!TUUUI$ E)! E)!dIE) [mE) )(@%۶ E) PPI )( I$IE)!$E)!H$I$E)!~___I$IE)!UսI E)!jE)!I$I$E)$!d$`E)VI$I$1HE)!I$I$1I$I$E)$!0`B&E)!jZVUI $!*IE)!I$I$E)$!I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1 E)$!I E)!H$I$E)!I$I$!!$H$E)!I$I$$!!/?/I$ $e)I$Ie)` $!$!$!<I$I$$!!I$I$$!! $@$8!UI$I$80I$I@8IIP8+ sd qP/+ 1RD %yi- nݰ E%yhI$I$hI$I$hH$I$hI$I$hA$H$hI$I$hI$I$hI $pI$Ih6h$Fe1hV xEae1TUUUA$I$1E)$H$1E)~WW@$@ )( )( I߿ 9E)Uյ 1Q`9E)  ?9E)~c۶mۆ1E)|UUUI$E)!*!I$I1E)U $@1E)I$I$9! C&1E)I1E)I$I$1e)I $1E)I$I$'9#I$I$'9#I$I$9! 1e)($I$1E)I$I9I1e)*I$I$9!I$I$9!I$I$9!I$I$9! 1E)$H$1E)I$I$9I1e) I$I$9!I$I$'9#I$I$'9#I$I$'9#I$I9!!@$I1! &1E)$I$1E)~_WI$I$)(@$E)!@$I$1I$I$E)$!II$1$)($I$1I$I1$C2E)!j@IfE).I$ 1E)+IM1!1e)I$I$'9#I$I$'9#I$I$'9#I$I$'9#I$I$'9# 1e)*H$H$1E)ꪪ 8@ e)b`pxI f1b)%5 I1E)*I$I$'9#I$I$9!I$I$9!I$I$9!II9! 9  $1E)I&I$1E)p$I$f1bVWdI01 I1E)I$I$9!I$I$9!@$1e) 1e)I$I$'9#I$I$'9#I$I$'9# 1e) I&1E)@L$1E)1E) "1$!JI!b>Rhƶm1$!`PI$If1 !$ 1E) I$ 9E) Iw9E)/ 779E)+ 5I$9f1xUU P$I9f1xUUUH$1e)I$1E) I1E)1%)I$I$9!I$I11I$ 11 I11  11 I$I$)I)@$I$)I)I$I$)I)I$I$)I)@f1b@ I$)I)I$I$)I)I$ )I)  9F1I9F19F1 Qj%aNwwf`+&/rf-)-# i-I$E@U(І=?EyPUUhR'v%1XZj!A$@1e)H9F1 l91jN$L1 $H1 $I$91  I!91@$I$)I)I$I$)I) $I$!9E)@_O$1a(U$IH1E)  $91  $91H$9F1 I$I91 I 91 d$91* I$91 !91 I$H$9F1 r&I I9f1* I$:1 $I 09`I$1a = I$@$9F1@1$!I$I$9F1I$I$9F1 I$:1 I$91 I$:1 (191zZz &91 I$91 !91 I$@:1 I$I:1 I 91* $91 $@ :1I$I$9F1 I :1   91I$I$9F1 II:1 I :11E)p I$I9F1 A@$:1H$H)I)  $91 R#$I9e)r꠪ m$9E)  I$I91 [3l1$1zjH$I$HAIv`Hս-߿%y@*(ywV E ,"/f+ / 1@ I91 {'9$!VW >5jI9!`b IQ9b? p`$9E)V $A&91 H$:1 B$!  B$! C$@91ꪪ I91 M691 I$m`9f1R#1!`1P1 I$I$9!@9!d1E)I1E)բ:1hxJf1 )- $I$1E) @$I21e) $I$ 1e)I$I$11I$I$9  1E)M$M 1( I۶m9$!) 6`햤919F1I$I$9F1%PI$9%UU,0 N9/&NJ1")DZEBJjh4IɑLDZE%55%41ɖ$%4/ DZǩ4,@ HDZ/,m6_1 H$AEy@- H%q% Z $q~}&k%9VZh I$I$%i1UUUTI$I$9F1  A&59`X51!b d9/5 I 9$!@tI$1,mݖm91 @I$91 91 I$I$BD! I$I$B$! I$I$B$! I$I$B$! 91ꪪ I$91 I$I$91  $I$91  I!91 I$H :1I$I$9F1I$I$9F1I$I$9F1 !I$91* 91 Xl`91 v": 91U^Im11U#͒ I1!xI$s"̆1!UW|I$I$$!!I$I$d!d 1I$1!-UU !X1!  $I$115UUU Nq91/U `:19a@  I$9a I$LB0BD! I$I$BD! I$I$BD! $I$BD! H $BD! s9!^I? 1!U )PM9$!  I$I$A) I$I$A) I$I$A) I$I$A) H A) $C&d091 fm۶91 : !91* @A) I$H BD! I$I$BD! 91 IB&91I$I$)I)  91 / (B%) #ɒI91 C"9E)zm۳ Ն1E)UW^0E)!IIe)!/ $A2d&e)E)+zZX po9E)+ 0ɐ91  $A) `0$91 m۶m 691x MܖN1b 91/ I$I$BD! I$I$B$! 9E)~ V 9e) I$d$91  I$91/ 91 I$IBD! I$I$B$! I$I$B$! `091 Ia&91"WI$1-U- IrQ 1& s +4  %EP4DZE44I$I$%44I$I$%4/R HDZꨠ1 fxx!I$d5f9UTP@ 0Ў9$!`` 9$I9 =/  91 I$@$91K&@1e)Mږ1E)  I!11II11?+ 11`0L1$!  9F1d"& 1E)11$ɄL11I$I$9  I$ &1E)6v1e) * -I$9f1 / I:1  &L91 I$9e) I$91  A91 9E)/ =`9E)ZX` e)E)5 drɐd9E)% I$d291I"D1!I1f1 **1$!(( I C11 X+'r"1E)\\mٶm11j 1E)\pneۭ:1!+zxT1! - 9F1%O䆙1U)4wf&m` f^xO$Jf1UTTPI$I$)I)I$I$)I)1E)^I$t21E)UUVxI$1!  N1E)-H 11 $H 11  %1E)1E)I$11I$1111 L1E)I11ՔI$I$9!@$I11*Hdmm1E)<<( I$I$i1UUUNqEE9 *(Pn.E +(!C&wr說%I$Z%1UTPP 1E)dI1f1I$11$C2 11zjhiۤMn1e)*L01E)km01E)_ I"ѐ1!UI$ I1!UWI$M`e)!UIҤm lE)ՖH$I$$!!IB&E)!жi&e)!mie)!m&e)!-]6e)! It1!1E)!1!le)!  e)E)@e)E)I0e)E)U``  e)$! ۊ52e) ݐ ɀe)!!e)!$I`$e)E)XPI 1E)I1E)I$I$1E)ɐ$I$%yf1UUU ɐ$Ef1U X+f%yzx EX_ I$he1Vj@f1UUT@I$I$1E)I$I$9I$I$1e)@! @!$e)%)H$I$e)E)I&d$e)E)\_W $I$1I$Ie)E)UUU+ E)!$e)!I$I$e)E)I$I$e)E) I$I$e)E)/I$I$e)E)$)(@$I1۶@4E)b(`@I@$)% DB&H$H8RZTVI 8!@PTI$!IE)!IE) I$I$)(H$)( 1 $)(@$IE)!  E)! I$ɄE)!@@!000I$I$$!!BbI E)! e)! E)!jjE)!I$I$E)$!I$I$E)$!I$I$1I$I$1 E)$!*$ɄE)!hZWU@$!*!AE)! e) I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$E)$! @$E)!HI$$! ((@$I$E)!I$I$!!I$I$$!!I $!! 1H$I$$!!>?%)$!$H$e)I$e)LH$!<I$I$e) $8!UUI$I$8I$I@!  $AH8/ IwT iH/+yN %ya-+  !e  E%y E%yI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hIIh I&)EEi@62M$Fe1hVU1E)$1E)~I$C&e)E)|^ )(IIe)E)?? mw.9$!/  49$! 9E)XWUI$I$e)E)I$I$)(I$ 1E)I1e)*$1e)  1E)1E)I1E)I$I$9I$I$91e) I$I$9! @$1E)H$I$1E)I$I91e) I$I$9!I$I$9!I$I$'9#I$I$'9# H$1E)@$I1E)I$I1E)* 1e) I$I$'9#I$I$'9#I$I$'9#I$I$9!I$I$9!21E)&L$1E)WUI$I$e)E)@$)(@$I$E)$!$E)!I$E)!I$I$1I$I$E)$!@$%)bX۰E)I$I$)(m6m1E)N$N1bVUV81I$I$'9#I$I$'9#I$I$'9#I$I$'9#@ 41`I$1b5$I$1E)H$I$9I$I1E)*I1e)1I$I$'9#I$I$9!I$I$'9#II$9! I21E)H$1e)@$I$1E)I$I9I$9R1I$I$'9#I$I$'9#$H$1e) 1e)@1e) 1e)I$I$'9#H&1E)L$1%) $I$1%)I$I$e)E) * I$ @!I$I$9I$I$9H1$!4$Ir̖1 5 W91U5\ @9f1/VU 91WUUH$I$1E)۴M f1IB1E)!A1E) 9 I$I$9!I$I1f1I11* @$1bp\`1b %H$I$)I)I$I$g9*I$I$g9*I$I$g9*I$I$)I)I$I$g9*ۺ!۶m11@L$L1bTUTI$H1I )I)I$I$)I)$9F1H$)I)4Z"51E)`Pl6- 1z* `wo'xe1 )"PX ɝXf%q5#~㆙Ey I^'fEy{ ?of%ip I$Z%%y1UVXX 9F1H$9F1I )I)`-11@?1z In9E)* dB!91 IL$91C$I11O\ 1A( H$)I)H$I$)I)I$I$g9* !!A91 $ih91j$O$1b 4IT1!I$I)I)  !I91 H$B$! A=9!X @9e) "9e)j IL9& !I$ 91 I$I91 I$I91 I$I91  91 I$I$B$! 09` $@ 9 I۶[m91I$I)I)I$I$)I) I)I) 91 2 91ꪪ }'1^X Itn9! mn91$@$)I) $I$91  !91 `$91* @ $91 I$$:1 $$91 I$@:1 I91** H$H$91 I$I:1 91 I$I$B$! (Ђ%H9555 I$I$H@qeW `H///+/RfX++ 5, Jf- - 3,om| /3$@$DZ1@PPP  $91 J"I9E)T ٶml91I$I$9F1N"ǐ1E)UT   9e) * I$I$B$! 91** 91*  91 I$I$B$! I$I$B$! I$I$B$! B$! H%1b@PI1b I$m`91I$I$11I$I$9!1!pP1! I9 mۺ 1e) 1a915 / #91 IB;91W I$N91UU_I$I$9 I$I$9 I$I$9 $@$11 nI$91UU11/ɐ$I$f1UUU,I)9)1 Ӷ r *1(mٴRK1,$DZU4,NnDZ.410 %4-DZ4,IDZ_/+C$L/i~) E_~vR; %9Zj m۶p9UUX$l;QZV%IyI`fAb5 IIH9UUUT OS$ 1 IB091ꪪ I$L91I$I$91 I$91+ 91/ I$I$BD! I$I$B$!  91j 59E) 91ꪪ I$91 I$I&91 vm۶91  !91 I$H:1 $ 59E)p1E) I$I$9F1 I$9f1 91 @91x IB' 91UWxI$I$11UUTK"4$I1!^`I$L91!UUVpI$I$d!d I$I$e)I$1!%U 1$! !I$11MUU Ir9 (B%) I&غm99U^ I$I$BD! I$I$BD! I$I$BD! I$BD! L0H91 I$I$91 !I$91 * )91j  91U A) I$I$A) A) I& 91 I 91* I$BD! A) I$@BD! I$I$BD! I$I$BD! h 89E)p` D1E) /5 XI$91 / @ 91 ۲m`91 l+i9E)jI$Ɇ1E)U^I$I$e)E)?k-v1E)^{ $21E)UU_^&IĆ1E) 5U Pݔ9E) M۔N91 @$@9a`P 1aI$I$91  91 / I$I$BD! I$I$BD! I$I$BD! 91說 I$d91 !@$C&91 0l91 / H$I$BD! 'N"'9\W\ PP9 91ꪪ I$L&91\I$1 5U+  rQ)/@.$RIEyPPP4 IEy43DZ 44I$I$%43DZ4+[ m`/ k fIhOE9UUTP I091  EB@ 91 dI9f1꿿 c۴ 91 `&11X t891UWYۀml1e) $11&I$I1$!md11*@1e) I$ 11 II$)I)L& 11[2ۺ1e)I$H$1E)*ضmٖt1E)  1f1 * 6@ 91 $&`$91* 91 @D9E) $IM9E) I$:1 k5 `9e)^xm$m&f1$! dIߧ9!/ MV$@9! I$@)I)11 $1E)m[11 1f1 I$I$)I)@$1E)pPPI$M2$1E)UWRJ܆1$! / A1f1   DI$f1UU#$@mf1# ۰mf9@&I$ʏ1UUTP I$` 91I$I$)I)#I1E)N&P `1E)W^ I&e)E)%U\ qĆ1E) 1e) RI1E)I$11/111f1I$11I$11  11 Il1E)/I$11!I$ 11 $I$11 ?Iq1U Nwfi +/( sf +&h@1@?1UUUTٖm1E) 11$ $1f1I$I$)I)b$ 1E)XPN1%) IB&$ 11U_I$d211UU_x@1e)I 1e)mv`1E)WIm1E)UI`1E)Uߪmۦ؀ 1$!ߪ*I&[m1E)U_Ie)$! IȄLE)!5mf1$!*I1e)*I1e)$ 1E) $ 1E)$I$9[5 `1E)zzJ$ 1!-- Xm1$!Iڤ[1! $I$ $1E)$C1E)ꪂ!I1E)I1e)1e)$1e) $I$f1UUUxiI$Ee1U-@%%9OB6"%y@Uj%vVXE)V***I$I&Xe)UUPI$I$9 e)E)mk&E)!XX@$Ie)E)\_Ue)E)/Ie)E)$E)Pe)I$I$e)E)dB$IE)$!I$I$e)E) I$I$1"HE)!$I)(IE)!(-HE)UU@$I8E)!I$C"H8 @@Ii8$!PTU IE)!/I$I$1 I$I$e)E)?I$I$e)E)$E)!I$I$1 H)(I$I$)(2E)!I$I$$!!I$I$!!ן IE)!  He)! E)!jjE)!*I$I$E)$!@$E)!ZZI$I$1I$I$E)$! E)!`I$E)L!E)!UUյIE)!+ I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$1  E)!I  E)!@$I$E)!I$IE)!_  @$E)!I$ E)!I $!!/ @$IE)$!I$E)!H$H$$!!PPI1 1H$I$e) 8$!UUUH$I$8!I$I$@! I!H8/.g`@+ yR %yX+ qN %y%q !A$@E%yI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h 9EE1p&I$Ef)`XWUI$I$9 I21E)W$@$e)E)|^__@$I1 Iɛ9E)U% y}@9E)H$J'1bUTXmɖd1bI)(I$Ie)E)I$@1E)'9# $1E)@$I$1E)I 1E)I$I$1E)I$I$9I$I1e) 1e)$1e) $I$1E)I$I9I'9#I$I$'9#I$I$'9#I$I$'9#I$I$9!$1E)@$I$9I$I9 '9#I$I$'9#I$I$'9#I$I$'9#I$I$'9#I$I$'9#$1e)2d$1E)^WH$I$e)E)諯$E)!$I$E)$!@$e)!zW@$I$e)!zWUUI$IE)!յIE)!/I$IE)!IE)! M$XlE)bVXJ$f1 I$I1E)$1e)$I$1e)I$I1e)1e)I$I$'9#I$I$'9#$1e)"۶m1$!ࠪIe)I$ 1E) '9#I$I$'9#I$I$9!I$I9!I$I$9!I$I$9! $$1E)$I$1E)I$I$9I$I1E)*A1e)I$I$'9#I$I$'9#I$I$'9#I$I$'9#I$I$'9#1e)I$I$'9#H21E)d$1%)P$I$f1\WV00E)lE)$H$E)!IE)!**e)$!I$I1%)** Il9E) B[۶9`IDe)b5 H$I1E)*I 1E)*I9! 1@I$Ie)bUۖm61E)I$!A211&II1!I$I$g9*I$I$g9*I$I$g9*@:]1ap訪1``1b I$I$)I)I$I$)I)I$I$)I)I$A )I)I$I)I)  $)I)I$H$)I)1!0W$IӔm1E) @$11 11 I$I$g9*I$I)I)[m11`4I1%) H1UUwp%1**#@`/# EyWUU,I EUU)*-I8lE(9`$I$fy1UUUTI)I)H$I$g9* C$I 91 ~$|9b^^zK1   91 I$ 091 $I91W 6n91 $91 m `K$91~_ ۰ I$91U v91 I$I$BD! m*uI9 d'vb'91UUU$I$11UUUI11#'1pxp$IE)Ax/  9 I$I$B$! I$I$B$! I$I$BD! I$I$BD! I$I$B$! I$I$B$! $C291@&L$91X"'ͦ1apx |9yf1A - ФI1e) $91 @!91 `؊591  mS'9f1_W MI$9E) j,q@N9$!ؠ *i+h9e)ꨪ  T'9E) * Hw9e) I$@91  @91+ L$B91 I$I91 !291몪 I$I$91 $(1@I9|1a % I91 @&L$91 @ 91 $C&91 X%K$H9 I PH+ ys37%qPmmo+! X555 ,!)ݰ * 1,ɖ`mDZ/H$H$ǩ9TTTU  2$ 91모 I$I91 I&LB&91 H!I291 $I!91 $@ 91* * 91 H$H91 91**  I$I$BD!  91 91  @ B$!  B$! H9b@ ɔ 9b $H$91  :1 m`9f1 I$ 91I$L1e)I$I$9  ,1`.Ix1 %%I$I$9 I$91 0 $9f1 V91p+ I&`۶91UX vb'91UUVI$I$9!I9!I$I$9  $I$11 vI$91U)r $f9 U1If*1(b*P  1+nۍ$UUT1,0DZ4/PIDZǩ/41%4-vB; DZ_~/,E&M&ǩ-"XDZ~ꪪ,3 E^ b fi~~R EyX_~Ib;k iiPU_I$mm`PUUI&k lXHUI$ PH $P9\ $P9U ЖPIP9U`N$@1UU IۣH1UU  '@9UUU ۂH9UUU @xH1UUT ɛ\ 9$!. I$I$B$! I$I$B$! B$! I&91 I$I&91 !I$91`&`59$!xX X9$!--//I$I$9F1 I$:1%J'1bp\X pK9 IBD! 91~ m˶Z 59e)x؆1!(N:hI1!WxI$I&E)!WxI$I$e) $I$E) /`Ć1! ۰mۖn1E) s$91 U  W9f1/ (B%) I$[299UWZ I$I$BD! I$I$BD! I$I$BD! 91AIȄ11><9F1 NT M91 A) I$I$A) I$I$A) I$I$A) H$BD! @$@$91 -M$91 $91 @ A) I$I$BD! 9e)` Ig9E)+ I$@ 91  I$91/ @191 I&A) #9 I91zN: h9E)WzI$L&1E)UUUVmi1E){UI$h;1E)UU`N$1E)/UU $Pn/9E) I$9b0WW $p9! I$`91D1E)0 I$91+ I$I$BD! I$I$B$! I$I$B$! I$I$BD! d&91$A$I211  9e) Z,i 9$!؀ $II91  91* @91 I 91I$f1 UU)IᔐA %/!Iw*4,Iߔn 43DZ 44I$I$%41lDZ3 #I`+ lB>㏱F9Zj I$I$E9UUUT Mh 91 91* @ 91* 011h`! $11&T Nl9$! I$1f1 * [%6h9e)ZZim1e)*@$@1f1 @ 9F1I$I$)I)I$)I)ۊ1$!@:i 1! 6av '1E)/W\ @1E) I$91 91 mѶh$91? H09E) `$91 9F1 I$I$B$! s= p9$!~q'چ1!]]  ?9! / IHB291mJD1%)<<Ӽ-i1%)@. I1%) L2I1f1(I11**I$I$)I) 1E)`Ն1$!tI$1! /J1E) `[f1UU0irfA + RB5ZAP`E9UUUT L091ꪪ II&91I )I)@1E)xI$kՆ1%)UWX1I$1%)-UU01%)+11I$ 11@$11 111f1I$11I$11*11*$11PI 11I$I$11t1)%" `N7w%q +/%4 #P%"1PP@11 11  1E)@@HA1E)I$11 %1e)11I$I$g9*H11ۆm۰1e)(*1$!@fnD 1$! m&[ 1e)I6mm1E)$C&$1e)C2$I1E) $@1E)ﯫ1%)ۖdI 1E) I9 @$@ 9 $1E)P۶mÖm1E)I$I$9!I$A$9!$ 1E)//L@1E)?@1E)@$1E)@$$I1E)$I$1E)@$I$1e)I$I1e)I$$9@$1E)^ZEe)UUU~?%e)UU) Sc EX_ vc h$1ZĤ `E)UUjIB$PE)UUUTaB e)E)]!Ae)E) I$e)E)P9,Ie)P`J$HE)II$e)E)*@$@$@!I$I$e)E)I$I$e)E)I$I$1 $E)!\ I$$H%)UU$@$H ItɖH ** J] HE)`PTU e)E)I$I$1 I$I$e)E) I$I$e)E) I$I$e)E)@E)!I$I$1  E)  I&E)!H$I$e)!I$IE)!5 E)!/ I$I$1HE)!I$I$E)$!*I$I$1$@E)!$E)!ZI$I$E)$! $E)!*x &dBE)!z^WU I$A$!*  2B2E)!$ ɐE)*E)! $IE)!/ I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1@$H$E)!I$I$!!  @$E)!I %)$!I$I$1$H%)$! E)$! $1I$I$!!PP 1@$I$e)I$I$$!!`@$I$8!I$I$80I @8/I1e X@յ/ yv.U %qP++ )WR %yi+ mݰ E%yhI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h2Ee)hh$I$Eqe1XVUU 1E)5k$e)!`X\ I!E)!A E)! Iعe9E)5 !09%) ԫ9E)xW۶m1hꪪIE)b% I$ f1E)U!I$1E)$1E) 2L$1E)I$I1"I1E)I$I$9I$I$9 (f1!``3IĆ1 & @$9I$I$9I$I9'9#I$I$'9#I$I$'9#I$I$'9# 1e) * $H$1E)I$I$9I 1E)**I$I$'9#I$I$'9#I$I$'9#I$I$'9#I$I$'9# 1e)`$1E)~@$I$f1E) )( H$1$E)!Z@$I$E)!z_UU !*I$ E)!Uխ E)!*I1I$I$)(I$I1E)UWI$1E) 1e) H$1e)H$I1e)I$I$9 I$1e)I$I$'9#$1e)* $I$1E)I$I$9I1E)  1E) I$I$'9# dB&1E) 1e) I$I$9! I$9! d$1E)$I$1E)I$I9I$9 1e) I$I$'9#I$I$'9#I$I$'9#I$I$'9#I$I$'9#I$I$'9#$'9#$$1%)m۴1E)UH$I$e)E) e)E)hh lmE)24[-E)`I$IE)b??I$Ae)E)U+ I@e)$! I$I$f1e)I$I$9H$I1E)*I$1E)IB$I1E) 9 I$I$9 ۶m 1e)$*1&1E) I$I$g9*=1pp9ɑ 1b %% I$I$g9*I$I$)I)I$I$)I)s1!\P1e)I$I)I)I$A )I)$I$1f1L$1e) H$11$I 11B$@11B Mξ%1 V !I1E)!C1f1!I 1f1 9F1 9F19F1I$I$9F1 $9F1+&aX1)N/qsEX ++(7y ćf )U,ۧf,PIf,cKAf_ (l&9ZZ` l91 ѢC'91z^W  91U ,XR,91zI$I$9  It91 X&X91~zI$I$9! vq91յ- %+ 91ꪂO$~"B1UUW I$IB1UUU IB1 I499U pS?B1*O'$B1UWUIdB1UU ߀ԒB1UU Cm9z TH9  $ m;91 N$91 $91U $91_U $91UU H$91UU I$91UU $91U  91UL$@11W /IB11U Ib@ 91UU* m91 qT91 ZՐV;91k6v1e)*Im1E) 491 [:Z 91~L$L21E)II1E)** ֭[11`X&M$1E)tIt1e) ** ]:9E) I$9E)( Tn9E) (b˶9pI\1I1a% I@'91_ "  91- I 91 LB&`eA9UH$I$HfAiviXH/-/qwS7EX-//(1RdE--++1( oY)1 ǩ9@@ I$I$BD! I$I$BD!  91 @91 91  91 I$H91I$I$9F1 @2dB&91 !91* *9E).  91 I$A91  :1  B$! 91 ** I$I$B$! 91 I$I$B$! 0`'91z^^ِ11 B$!p$L1E) Sm$9e)j ynH9I$I$111 1$!I$I$11? I$91 UU  !91U #@`J91 IL( 91Uz I$M91UUV$H$9!I$9!9 LI$f1U- rfI 1"6r +1+@<UUP/,)I&ǩ 4,noDZ4/DZǩ/4,DZ|4+DZUW_x-&PiR!i ,Hf~ꠀ%  i%y_ OR# IfiWb# HEaUb$ @E`Uc$ %EXUX Ib$H%qXU Ib$ IiXU b$ IiP v Ii@_&a@_zt2d X8k II%X8mmɖ X8IB$ XH  $oP9P $ݶbHAU DyP9U I$P9UU ?P9UU ۦm$P1UUV @$P1UUU MۖnP1UUUX $ $91 $@ 911A` 1$!  I$91* @ $9f1 >R/9E)XX`I$NE)IE) -'+X3`1E)zIb'1!U_xI$I$$!I$I$e)DI$1!)UU 1!%!I$11-UU me&9bz  9 k5ۺ 99^x* I$I&BD! I$I$BD! I$I$BD! I91* d0@91 I$L$9f1 !I$9f1* 91 I$I$A) I$I$A) I$I$A)  91 I$Mv91 鐶m91 @ 91 A) I$@ BD! I$I$BD! I$I$BD! 1`'9x|PJP1 ` $91 km99^ #ɐ 91 C m9E)~m; چ1E)UW^X$$I21E)UL$1E)UV[鐶m61E)UWsLVR1* * @IS91 + LB91`$I$e)a\VI!TI1 i91 / 91 $91 I$:1 I$I$B$!  9X19a`p)TIH1a 5 mɖd91 / H$I$BD! Ў=p99E)`X\x  p 9E) % 91* I$`091ɑI$15UU&Is1 -1PN. +4,Mw +410 DZ *44I$I$%41[-`DZ1#̧fZx K"&E9TXh :X9UUT  mH1UUUT 91** * K%[91`$11XP ۱91yMd1e)**! $11I$H$)I)X%1E) 9F1 HB$B91JĢ 1E) 9F1InH1E)%, @1E)X` I$1E)%UW0 1E) mѴ91? 91蠀 ݰm˒$91+ 0 91% H89%)t  M9e)* H$9e) 9E)^~Il۴ ن1E)UUVX Ħ1E) 5Pb'1E)@$ )I)dB&d11!!1f1*81E)P`I1E)I$I$)I)C$I1f1N&$M1! $I$e)E)UUT6 I1$!%s%y1U) `q //(t: f9Xh I9! 91ꪪ $ )91zj$@6[1E) +L$L11(u"1%)^I$L11%)UUV``w؆1!đvc;1!`1 I$ 11 H1%)1f1*I$I$)I)$ H11dB 11^I$11*11@11 w1 ) pJpO%y --# f_"P%1UTPP@11* 11 I$I$g9*K1e)((X`1e)11H$H 11$I$11Hm۶m1E)(I$11H%1E)PI1E) `%1E) 11@ 11I$9 I$@9!$)"I1$!@@1$!I$I$9!@1E)Ph@1E)I$I$'9#II1e)@@1e)$ &`1E) 1e)I$1e) @$1e)$I21E) @%n1!öm֤1E)W`$e)E)\U&I$e)! C2L$e)$!$I$1L$Ie)E)WUU@I$Ee)UU#Ee1~d EX_ Ob?c h1jm۴`e)UV@$IPe)UUUPIe)%) @!$e)%)I$H$e)E)I$I$e)E)I$I$e)E)// e)E)x $E)!^`B$@H!UH H@M$I8e)@PHe)RVUUI$I$e)E)$I$e)E)*Ie)%)*$@$e)E)@$e)$!I$I$e)E)I$E)!**$E)$ 2d$E)!H$$e)I$ AE)!/  E)!I$I$1I$I$E)$!I $1@$I$1I$I$E)$!*I$I$E)$!dB$IE)!Z $H C&E)!x@$I$E)!ZVUUI$IE)!Uյ- C22E)!mj` $E)! @$E)!I$I$E)$! @$E)!I$I$E)$!*HE)!I$I$E)$!I$I$1 @$E)!I$I%)!  E)!I E)!I$I$1E)$!I$I$1Ie)@%)$!I$I$1$H$e)I$I$$!!PP$@$8!UI$I$80I$I@8m6eP8+ ys iH/+ 9wn %yi-  @ E%y E%yI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h'Eb`X h֮$Q{UJf1 Id$e)E)_U`2$IE)!Imf1!? [)09$!- 59E)` /;9E)`|_UI$IE)!*)(I!1E)!A1E)C&1E)@$I$1E)I$I1E)1E)I$I$9I$I$9I$I$91E)j!e)7I$I9I9I$I$'9#I$I$'9#I$I$'9#I$I$'9#$'9#@$I$9I$I9I'9#I$I$'9#$1e)1e)I$I$'9#I$I$9! &1E) C&I$1E)~_WI$I$1  H$1 I$I&E)!z$I$E)!ZWUI$I$E)aI$IE)!UUIE)!I$ 1 )(I$Ie)E)? I$@1E)տ 1e)* @$1e)H$I$1e)I$I$9 $I$9b$f1VI$1E) $I$9I$I$9$I f1@HI$e)bU1e)I$I$'9#I$I$'9#H$1E)1E)@$1E)$I$ef1$I$1E)I9 1e)I$I$'9#I$I$'9#I$I$'9#I$I$'9#I$I$'9#I$I$'9#&1%)2L$1E)@$I$1E) e)E)jhI$I$1$I$)(I$I$1I$I$1I)( IE)!$I$e)E)VUU!Ie)E)I$ 1E)*I1E)I$I$9!I$I9!I!11U-!I11+ 11  01@I$I1b5 I$I$g9*I$I$g9*111!I$I$)I)I$I$)I)I$I$)I)$I &1f1 I$1f10I$1e)$I$11I$I11I$11 11I)I) 9F19F1I$I$9F1I$I$9F1I$I$9F19F1@$@9F1 9F1I$I$9F19F1 !I$I91Pwp9)) R7fi*+/-+wWPJf/+- I)-(ib')@Z f`ࠀX%f1UVXP $I11x誫 9 -91+/ &#'1x 4 w9 - 19E)b r9( rw9f1 ڱ;91 ж:uR'91^WWI$91UU $aq91* C2$C291 2 011xx`H$I$9!! 11-I$I91  91  91ꪪ$C&$1f1I$I11I$L11UWWI$I11UUUm&m1E)I$I1E)I$I1E)iI 1E)II11 M'1! \$I1%)  09E) `91 C2$91 &`&1E)I$I$9$@$1E)** -91 (ڤ#:91~~ $I$1E)؆1E)*+ a691km[$1E)1E Ħ1E) /ȒDI1e)I$۰&1E):1E) I$M 1E)(@1E)++Цm*9f1`@Nӆ1ƒĆ1!*R.m&H155  H@ qe``H//-/ ywW7qfi--+)N` f++1+Y ް DZ]1 @$@$DZ9PPPT I$I$B$! I$I$BD! %x$9p|  9 - I$I$BD! I$I$BD! I$I$BD! I$I$BD!  91  !9e)H N1׾( IH9e)  $I$91 I$91 I$91 I!$91 I$I$B$! I$I$B$! I$I$B$! 91zꪪ )91 I$I$B$! X`91 II:1 I$I$B$! 91 N$He1bVW\0 m&A1I$I$11I$I$9!,X$1p\PIif1  9!)  d;91 91~ Ib'P 91UW 'v;91UUW| I,91pp[E?(Iᖐ112!B.Ey@BJj3ɕDIEy3)kۍ ƧUUX/,Pi$ǩ+4/iDZǩ +4%((DZ@3)u@DZU\w-# @/+m۔ f*%-~U,fU)fU(l2> aZZ&i}i# b# H%yU R@f%q_ c @f$qU Hf`o# heP m2뀕%yHZ*/EHU %yPb# %yXU Ib$ HqP_ I$ IiPU$IBP@U_Ibk HiPUm۶#$`@TI$mm`PUUI۶[ lXPuU$I&$ XH 7P9X$I$P1U`vlP1U@N$P1UUc'P1UU $Id'@9UUW $98U u)IB90 N": @91U^I$I&11UUUXr1!^I$L11!UUVhI$I$d!d I$I$$!! ` $1! UH%RAf1a\p O&I9b% 0r91 - (B%) I$A) I$I$BD! I$I$BD! I$I$BD! C$A91 I$`9f1 I$I$9F1 @ $91* I$I$A) I$I$A) A) H$I$BD! L2 91 I$H$91 I91 * 91  A) I$I BD! P9P TI9  &Z51bp /I9A -%  `91 mӶX 91 c#@9E)zS'̆1E)]^P Ie)E)5`B$Be)E)XPBI$I$1mqۆ1E)  t91 =9p n 9% I$m&91 )tI$91/ ۺmŖn91 I91 I$I$B$! 91j $H9 I$I$)I)  91 / "I 9e)@ $II91 I$I$B$! 91** I$`091 @r6AE!*n#JĆ '/Iwf +3)@ W -4, )@4?DZEy/4+Z#- h`@/ էE^~}26ZfP^C `Hw S;P9U@ @9UUP ۆm-H1UUUT" 1E)LH@1E)I$I11? A`I91I$@$)I)I$I$)I)  ID91 H&91R"%$ 1E) I$)I)HI1E)h$B#1!DI$1!?@1E) i491 ̈́91ו [-h9E)ꨠ 19E) ɖl9f1 I91 B$! 9E)`Iس զ1E)U~pI$1E)?%1E)@$$9F1$ 011*`@$$A 1%)* !C$@1f1 $L211 1f1 I$)I)jр(1E)XńJE)*<<$1E) U`S%1)%%m_%y㫭=.HE1TP@ 0I$91 ۖI۶91 IH@91 I$H&91 9F1`1E)@IH1!ԠI$I01%)UUUzVm;1! + 1!$ ` 1E)I$11I$11*H $11( I$I$)I)@1f1I$1f1I$ 11 l$K2i1UUUP/EE9 )#@E ++%?Ee1`h NI ;q1UUUT$$11 A2$C211(z~~m61e)d;1E)lۖt1E)+$A$11I$I$g9*`LH11*I $11 1E)$I1E) [1E)!$11j 11%$)H1E)@@A1E)I1E) @$9 9 H$ 9!$$1e) $1E) m$1E)WHd;1$! h;1!H$;1!`m&f1$!mmf1! $I$E)!I$I$E)! I$IE)$! IIHe)E)UI$$e)E)UUIe)E)Ua 1E)]zf1E)I$I$f1e)I$I$@!Ee)UU m$Ee1U~ hE`_ Rb %qPI$he1UZ۶m-XE)UUU@I$ e)E)* $I`&e)! E)!$$E)!jW$I$E)!^UUIH!UH H@6i3AHe)@PII8e)PUUUI$I1"$ e)E)%L@ e)E)> H$@!I$I$e)E)e) I$I$e)E) I&E)! $I$E)!I$IE)!/I$ E)!ח*)(ضvK$E)(TT@$I1I)(I$H$E)!I$I$E)$!  E)! $I!E)!d$E)!x^`B&I$!i E)!Uխ !AE)!$C E)!IE)!(IE)!*A $1I$I$1I$I$1I$I$E)$!I$I$E)! @$E)!I$I$$!!@@ $E)!/@E)$!I$I$1I$I$1I$I$1I$I$1H$ E)!nI%)?$I$E)!I $$!  I2$C&8!UI$I$80I$I@! ImH8/ wT iH/+qN %ya+  1 @E%qIE%yI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hh$Eyf1XWH&@AVZI$I$ɐbmE)bI$I$E)! I$I9$!UW/ 9$!- @3?9$!x I$9$!I$I$)(I$Ie)E) I$A1E) '9#0d$1E)H$I$1"$ "%e)@Pe)I$I$9I$I$91e)I$@$1E)H$I$1E)I$I$1e) H$9 @$1e) 1e)I$I$'9# '9#$I$9I$I$9II91e)H$H$1e)1e)@$1e) 1e)*$1e)2L$1E)$%J$E)bXVlE) I$I2E)!$H$E)!zVUI$I$$!!TUUUI$IE)!UUUIE)!եI$IE)$! I)(I$I$e)E)/I!A1E)߿!1E) H$9H$I$9I$I$9I$I$9I$I1e)2`m1E)jI$bE)aU0e)@$f1W1$!I$I$'9#I 1$I$I$'9#I$I$'9#$1e)  I$1E)H$I$1E)I$I9J$Jf1TUT 1  1e)$I$1e) 1e)I$I$'9#I$I$'9# '9#`$1%)$I$1%)I$I$e)E)e)E) $H$e)$!X$I$E)bTUVI%)b E)$!I$I$E)$!*I$I$1I$I$1I$Ie)E)UUIe)E)U!A$Ie)E)m1E) I$9 I 9 I$11UU 11 1!@P@IP1I$I$g9*I$I$g9*I$I$g9* 1E)L$1b0TU1@$11$I$1f1A$I11*I$I11hĆ1!(I1f11f1I$I$)I)I $)I)H 9F1IA)I)@&M"'1XVXtIt1 9F1I$I$9F1 1e) D1b 5 $I $91 `mۤ91$C&1f1 ؚI91@$I$11 `1UUUpsy%E9 *&PR7E +( 0O ++(m6A룯+i۔dE(Zif9`1UUUT@$H$9!- 11 r=H1X`N$ 1  2 @9e)b‚I*I1. I@91 H91 #$91_I ضm11 !I$91 $$91 Hd$91I(-1@0I1x1a -@I$1f1I$91 $&=9%)Z ik91I$9F19F1 @$9F1$I$)I)$I$)I)$Ȓ/>1!pX P S9 +- @$I$:1{ H1!\F9E)kb`$I$E)A /SIO9 ---@$C&11I$11* In91꯯ im91 L$91 k&91~N"ڂ$1E) N I9e) I291꪿NB' @1E)$Ir01 * `ڭ91M$K1E)6X&E1E)// ú5[51E) $I1E)*p&#̆1Axx P`e) Ii1!' T$H$H9 I PH/+ y6%qP//# y/e %q++qr5f/ /($ _򧩇11TTUU I$91 ۶mېn91* + 9!@ $II91 I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$I$BD! 91 I91 I$`91 !I$ 91  :1 L$91 $91 91* I$I$BD!  91 :9!7 I$I$B$! $I$9F1 I$I$B$! @$@ 91I$I$9F1 $C$I91ꪪ Mm91 [1&9poH1 `1! @$@ 9 I$I$9! I$915UU 6$91 }=.9^p & 9I$I$f1UUU%Mɖ11Rwۧf*3%( S-3%)@/) IȄǩ*3%2mDZB*4) PDZ 4#"DZh1N@F% 1-  4-NB$)ADZ3+~"ْ^3+Ib$ IU1)IB U1%C& 1!B hU+ ߲H,NB&f,SfW*, MiVZ!jޠAii+ I#Ii S& EU "%yW! OR%yUIN @Pժ cfqUN'@fPWVIb$ HEiUb$ E`Uc$ %`U_Rc H%yXU I$ @$qXU c# IiP_ Ib$ IiPU$)HiHmCH`@I$ X8UU~ m۶H8tmmP@ mP1`жMҶP1UֶiҶPf1U ٶ$@$)UU$IIH!UU**I$LBH!UUT IbH$!UU$HHf1UUU\=:1!x 9/ 91 L0A) I$I&BD! I$I$BD! I$I$BD! I$BD! L0I91I$I$9F1 !I$91* A) I$I A) HH$BD! @ A) $C91 I$ 091  I291 * 91 (9e)@ 9 I$I$BD! @9e)` IH9-  I$91/ D!P91 / IA) %J'1a|X$鑱B1 I$I$1He)E)ԢI$L$e)E)UUWTĆ1E) %"II1@  09%  &91 I$K%91 tI$91/ 91 / I$I$BD! @$I$9F1 B$! `291  $ 291 nI$91 * 91 I$I$BD! I$I$BD!  ,@9e)`k6I1$! Is f1A(#pNyfe1 %- rfy*1(BR +4I E-43@ DZ4 1 x`" b=ن%qhxCd=FXW~ sIi@nꨀI6i@ NR# hiP_Md&`e!$I&d011__`dB&211^^r} I$11 ݚmɖ91뫥 $BI91꪿Mnl11  I$I&91_ L&@ 91  )1$!@ &I9! I$M%91Ut9 1E)^p@ɐdI$1E)%UU@1E)  v91/ 91 ɐLH9E)/ @K 910֪ H 91 @ $91 @091 `09e)` 99$!zhDI؆1! ? h9e)-$C 011 A@11%I1f1**A9F1LH&1f1(11 $I$)I)P I1E)`I$1E)UUT`NĆ1! %RyEE) %R vFEEꬮ/(E9TTP@ ۦmI9e)  $91 K091 L091ꪪ !L0911$! @1E) @1!~m۵Ն1$!ɐ$I$1E)UUU q$1E) %U11) 11I$H11*I$111f1*I$I$)I)@1E),)X1UUFP5%&J %y &J%(1TP@@I$11I$I$11k1e)m61E)I$m 1E)zii1E)UU~IĆ1E)UUUnvb'1E)UU$II$1E)U ݖ$1E)UĆ1E)U Aۆ1E)mۖ1e)*H  11<$I$11H$11!e)6m6e)$I$E)!$I$E)!H$Ie)$I$e)H$IE)! I$IE)!i6m e)!Ie)!iҶ1!I$f1!_^aB1E)UIe)E)I$I$1e)I$I$91E)I$I$9$@1E)C0f1E)z{ٖmm1E)I I$1E) 1$!I$I$9??Ee)UUU h $Ee1Uk M%yX>Sc%yXW ];c hE1Vj"M HPE)UU[&`P!UUIHUU$II@!**H@*I$ He)PT PE)TUUU$Ie)E)I$I$9@$e)E)I$e)E)*I @!@$I$1" 0e)!p$I$E)!|wI$! ?I!IE)!!@@E)! @$HE)!(( $)(LB$E)!()(E)!I$IE)!*I$I1I )( 2d$E)!`ZWI$I$$!!TUUUI E)!-  )($)(@$I1IE)! $)(H$I 1 $1I$H$E)$!$I$I"E)!* $I$E)!hxI$IE)!E)!+H$E)!I$I$1IE)$!I$I$1I$I$1I$I$1I$I$1L%)I %)$!2$C&8!UUI$I$8 I$I$@!  !IH8+i.U `@/ qR@ %yX* qN0 Ey%q !I$@EEyI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h 8p$Ef1p\WI$I$1e) I21E)_WXl۶mE)bI$I$1 ɄE)( p i9e)  j$9E)`XWh$I$1E)VUUUIIE)!**I$Ie)E)  1E) $1E) I&L$1E)I$Ie)E) @!J&e)TX` f1 I$I$9I$I$9$I$9I$I$f1e)I$I$1E)I$H$1e)I$I$9I 1e) 1e) @$1E)H$I$9I$I$9I$I$1E)II$1E)@$1e)@$I$1e)1e) 1e)  $1E)@$I$1E)z_UU )(K&ۺmE)bX!@$IE) H$I$E)!~WUUH$! @$!`ZmٖE) IE)!(I$I$)(I$ 1E) I1%)$1e)@$I$9I$I$9I$I$9I$I9I$1E)$I$1E)I$I$f1e)I$ 9$@1p`I$Ie)bUU))1 I$I$'9#I$I$9!$1E)$I$1E)I$I$9I$I9I'9#I$I$'9#@$'9#@$I$1e)1e)I1e)I$I$'9#$1E)d$1E)@$I$e)E)I$I$1 @$)( A$E)!$E)!$I$E)!@!bI$ E)! I$IE)!I$Ie)E)UUU Ie)E)Ue)E) *I$I1"I$ I1E)In۰ 1E)+ !@@11 H$H$11I$ 11 I11U1111@01!I$I$g9*(1%)@S1b  I$11L21bTm01E)I$ 11 I$@1e)!I1e)1%)OĴ 1ז(@1%)I$I$)I)A9F1H$9F1 9F1I$I$9F1 #i I9$!xI11$&1f1@I$1f1"&I1@I !1bՕ& 11 I$H11(11 $I11 dB$ 1f1$H$H21f1 vap1%URwfi+/% Nf +/-+&m +,Id$ E+ 3[ `z&c%1XP`H'1 I$1E)$ң$1A`X01a $I$)I)$I$11I11 * I$I$)I)@$@ 11I$I11** I$I$g9*I$I$)I)I$I$)I)#1( 1b`I|@1a5% I11 II$91p$J=1A\X )P1 I$I$)I)I$)I)9F1I9F1I9F1I1!p$I1! I$9F1H$I$)I)I$91|I I1 ^4H$I1 dB&$C91II91I$)I)$9F1I$H$)I)I$I$11!!A1f1@$H$)I)@$H$11 $I1f1 **`$p81ap\X`HdI1 I!91  $I$91 H<91`tI1A/ [#M9e)*Ibǒ9E)$͂*,81Օ5@I$H8 UU X8* %._EP+++5()NdE//+1(iVP 1" <ǩE!@@@pX  1! 5 $ 1f1 $)R91p` LIX1 5% I$91 I$91 @&91 91* I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$H$BD! 91 I91 I$@91  $I 9F1  I$91 &I9E)` ID 9$!Օ& I$H$BD! @$H$:1 91* I$I$B$! B$! I$:1 I$H:1   :1 91 I491_ I$X`91UUzdB$ 11_I9 @$H$9! 6I$91UU `91 U  `r91@ I&91U^!HI?f1U( M13"Iof*3HdE(3%$gDZ3)$A$DZ?4-@6DZ/4/( DZǩ4,O$KDZWWV3,$DZW41 ۖm%41DZ41I%XlDZ41ImmDZ31IDZ4,I'.@DZUT/, IҶU3-I 1,NmlDZW1,fx%`%y -k5 EhA-ɑ䧩E 51%C`Wꪀ- 3-HU,c֤$ fU*,ӶfU)ҶfU)IREU&IEU l mOREiW! Ib# I%yU Sf$qU b$ @fiWc# Hea_# lEPO%y@Ufm'm`@? c$H%qXU Ib# @$qP b$ IiP Ib$ HiPWIJIi8ժI$m `PUI$m l`PUUI۶[ lXH C$ XH_ $ Pe1p ЖIP9U PvP9U $?P9UU I$$P9UU P9UUV $A9UUU $ @A9UUUP @ 91 I$H 91 $R99x I$1a* 4I9$! $A) A) A) $291 II$91* 8/9A` \ q9A-%  I$H$BD! II$BD! 91 IB&91  I$91 `191+ 9p )˭I9E) m1E)^m&m&1E)UUW\D e)E)R%I@e)E)vI$1E)+U P n9E) + vm91 #єDJ91 IB'191 I$91 0n91 I$91* I$I$B$! I$I$BD! @ $91I$H$)I) 햶91 / 91 I$I$BD! I$I$BD! 91 K `91^P1E) !W9 %U-I.y *3&I.*4/PVDZ 4/ ($DZ1>DZfzz cIf%yjH bHfi_ S$ fi]@ei} Scl%9Zh@ S'u91__۶m 41%)` 1%) $ 11 l t91$9F1@11P 91 I$I9E)j I$I9$! 1e)$I`&11\\rـ @1E)Vx`N$1E)%UW  1E) I$91 I$I$B$! $ 91 #9e) 5 H$@91 C2$ I91{ٖm11 C 91r I2'X,9E)U^X`mѶIf1$!* Xax9E)- 11[m[&11\$@$2111e)H$)I)I$I$)I)$@1e) I1e)s,@1$!I$N91E)UUUx4NٖEyE)XBfEy+-ې f `@91 !` 91  $91 B$! Ɇm9e) !I$91I)I)#I1e)N:1E)Wxc; 1$!mۆ1$! I$1E)*/UO1E)-H11I$11$I$11 ۶m1E) 1E)WOq1] fX+" ?9%yU!%f1UTTP ȒI1E)۶n1e)I $11 I11II11**ِ I1E)蠠v@1E)WI"@1E)UxI$)1E)UUI$$M1E)UUI$N"@1E)UUWII1E)UUUdB&d1E)UUU$I1@&dB&E)!I$I1E)I$I1E)I$I1E)I$I1E) 1E)( I$@1E)I 1E) I$H9I$@$9I$9I$9II$1e) I$1e)$IJD1$!I$I1E)*I$ 1E) b(e) I1E) $H$1e)H$I$9I$I$9I$I$1e)Ide)!&  f1E)jj e)E) I&e)$!$%yE)UUU@I$E!U iEi_zRc EXW bc iP_Sk m`HIvX8ImX$1@H1E)e)E)@e)E)I$I$@!Ie)%) e)E)` 4e)!$0E)!I$I0E)!x{m۶mE)! IE)!5I$I$1 H$E)!($ɄE)!<  $1ۖdE)$E)!%LHE)! )(H2E)! C&I$E)!ZWUI$IE)!UU5IE)! !E)! $E)!+$ɄL@E)!( )(H$H$E)!I 1 )(I$I$E)$! E)!*@$I$E)!~$ɄLHE)!UU? E)!I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$E)$!I$I$1I$I$1 $E)!H$ E)! I28$!UUUH$I$8!I$I$@! I!IH8յ/{`@+ yvT %qP+  qr %yi+ m۰E%yhI$I$hI$I$hI$I$hI$I$hI$I$h (EEY@ 6M$Eye)hVU$e)E)L$e)E)VU@$I$E)!I$IE)!*I`1!? N^ 1ֺ m&O$9$![_WI$IE)!** Ie)$!  I$@1E)UI$I$1E)$1E)@$I$1E)I$Ie)E) 9I$I$9I$I$9I$I$9I$I$9I$I$1e)I$I$f1e)I$I9I$1e)@$I$1e)I$I$9 '9#P%1`X e)b %5 1%)j@N$e):Uf1 I$I$1E)I$I1e)I1e)* 21E) I&L$1E)_UI$I$)( @$1 I$C&E)!z$I$E)!^UUI$I$d!d I$IE)!UULB E)^M&mE)^z E) I$If1E)UUI$1E)$'9#$I$9I$I$9I$I$9I$I$9I 9hR9f1b`@!e)I$I1E)I'9#$1e) 1e)1E)I$I$'9# 1e) H$1E)H$I$9I$I9 '9# 1e)1e) 1e)I$I1e)I1e)I$I$'9#I&1E)I2L$1E)H$I$e)%)$1  @$)( I$I&E)!  I$E)!@$I$$!I$I$!! IE)! !I$IE)!*Ie)E)Uսe)E) I$I$e)E)****I$ I1E)I$1E)I'9#I$I$'9#I!11 11H$I$11  11 * I$I$g9*I$I$g9* 11@$11$I$11#%"i1`pd 1b%5 I11/I1f1*  9F1I$I$)I)@$9F1$I$)I)I$I$)I)I$I$)I)I$I$)I)I9F1$9F1$1e) $1e)I$1f1(@$I$11$11I 11* I11*f1,X$1! L1!I$I$)I)A$I$)I)I$I$g9*I$I$g9*@$11I!I11/Wx9 )! N7q ++ Of *,# 0% Z, '^(/?چf`\~~O$hWVX)I1 r"9, 1aX`p1 I$I$g9*@1111I$I$g9*II$)I)I$I$)I)I$I$g9*I$I$g9*$AR11 I$)I)H$I$)I)I$I$g9*I$I$g9*#IH1E)I$Ig9*I$I$)I)$I@1E)  $)1E)L$9a(ɦ1$!IJ1$! I$I$)I)I$I91I$I 91I$I$g9*I$I$g9*I$I$)I) 91  $91H$I$)I)I$I$g9*I$I$)I)91&9bxDH9 -$C$@1f1!A 1f1"$I9e)j*LB&$I1f1 1e)$2 I1f1R# I1`IPH1a5I$I$11*A$I$g9*@5b%@1%% H$H$@8TivmH8/++ ys7iP--)  qv.N%yi /IEUUU1 @"%N$9PPVV !91  91* @9E)` d9a  I 91** I$H:1 L$L$91I$I$g9* !I$91+  91+ L$91 91 I$I$BD! I$I$BD! I$I$BD! I$I$B$! 0 91zZj  a 91-5 I$I$BD! H$@$BD! II$BD! L91 I91 091 !$I$91  91  91 I$I$B$! I$I$BD! I$I$BD! I$I$B$! I$I$B$! I$I$B$! I$I$B$! @$H$:1 dB$A91 I6 91W~I$H11H9 $9    9 tI$91 UU 891 UGf9UU&Mo9(| %y 3(&K3% /)۰mIǩ*4-`I$DZ/4/ DZǩ4,O$DZWV3,v?DZ 4, IJDZ 43H$I$%41۶-۲!%31I$%41m۶-%4-HLBDZ 1,0s'DZ_^4,6m)TDZ 541 ۶m%4h4@DZEX`-9IF /+%$J$ETVU3I񗧱E %4/MTIDZ3,mmj3+Ib DZUUV1,0 )+3,3,I1& Ey@@1 OT%q%/1"ö`+!v-3f,Ib$fU,C@e)ö" mi~ꨠI faUU9mE`? ` f%yU*+ O&%yU b @f%qU R fi_Obd ifiUIREiUb$ @E`Ub$ h%yXUOb$ %yXU # @qPW c# iP Ib$ IiPUv$ iiHmݶ9`@xL"&lX8VZh $c$I8%U`i$Qb@ېPAj P#m۶PeIuQ DI۴m9e) * H$I$BD! I$I$BD! H$A) Ȁ89``ID1a55I$I$9F1 @ $E91 H$H$BD! I$I BD! I$I$BD! I$H$BD! L291ꠀI$I$)I)  $91 @0A) C$ 91 # 9E)^xIڶk 1E)Uuz$I$e)E)%UI$H$e)E)UWT_XIĆ1E)%U @rn9E)*  N91 - [m9e) I$r191II$11** @!91  I$I$BD! @$I$:1I$I$9F1Ȁ41``I1a 55 $I91 / $I$91 I$@ BD! I$I$B$! I$I$B$! d&91I$I$)I)Səf1 -U,PN.fq *1%  +4/P VDZ *4h@DZf`,mB&e1F^ZZh#!im`F%# ڢ) H%yH@! I %q?)CғHE%?%1UTTP1%)@iX1%)`؆1E) *+I@$11.0 [mِ 91 aB 91ꪪ M# :9E)x  9e) $I 91zj$鐦1e) $C!@1f1m&h11ZXr"9 1E)VZ@II$1!/@1%) I$91  (91jX 1E)?? 91 @м99E)zA1E) @@91 91** M% I9E)WX۰mKd1!  9E)) cрL9E)zn1E) !$I11@L$1e)9F1$I2 11 1E) I)I)@@1E) I'߲$qf1UUUPR)%E1 *"H4ef1@ۺ E1UUTP $Ʉ91  :,91j m91 $91 91 L91֪ $iZ &9E)X A1%)؊mKd11u&1E)^I$1E)UU~I$I$E)$! *(SI$1E)UU ۆ1E)+۰vmv1e) H11I$11 $I11 RI%e1 %"`Nw%y /"$Hf1@@f1UUUTKd1%)I$11I$I11 $I$11 $I$11 I$C11{@$I$9!@ 1e)*mض-1E)`$$1E)I$9  II$11UU$I$9!@I$9! 1E)  1E)@@@!1E) 1e)`&1E)Z1e)II1e) 1e) 1e)۰ 1E)* A 1e)$L@1E) @1!@`  1! $1e)*I51$!/hٖm1$!8I$I$9H$I$f1e)I$I$9I$I$9$e)$!Ie)!5mk$e)!_2I$E)!WU@$IE)!zUUI$ E)!U-I&1!U_eE)m#T f%y f%qWOb# EaWIbd IEiU6"!%e1jjJ@$1E)zf1E)@$e)E)PPI$I$@!$e)E)lXۦe)!@B2$C&E)! $IE)!]n0E) z E)!I$I$e)E)I$I$1 HE)$!(LE) <mۤhE)InE)  @E)!I$I$)(lhۦE)!TW@$I$E)!ZVUUI$IE)!U5 !AE)! I$I$1  $E)!(!I E)!+I$I$e)E)I$I$)(I)( )($I$1$I 0E)!* `Xm&E)^$I&dB%)* $I$E)!I$I$1 E)!@$E)!I$I$E)$! $H E)!TT E) /I$I$E)$!I$I$1H$HE)!ז 28$!UUU@$I$8!I$I$@ I @8+1e X@+ yv-U %qP+  )R %yi- inݶ E%yhI$I$hI$I$hI$I$hI$I$hI$I$h EeI@@'M'Ey!`\WU`1de)   II$e)E)UUI$I$E)!I$IE)! !@ 1! A"&1E)p`$I$1%)XVUUI$I$E)!* !IE)$! I1E)սI$I$1E) H$1E)I$I$e)E)I e)%) I$I$9I$I$9I$I$9I$I$9I$I$1E)I$I$@!I$I$9$A$9I$I$9I$I$9I$I$9I$A$1E)I$I$1e)@e)@ f1I$I$9Nf18I$I$9I 1e) '9#0d$1E)~_H$I$e)E)$)($I2E)!$H$E)!zVUI$I$E)I$I$!!UUUIE)!յ) @ E)@P@ItE)b %%I$Ie)E)*I!A1E)ս!@1E)$I$9I$I$9I$I$9I$I$9I  9 H$1E)H$I$1E)`8p$e)bX`XIf1b5 I$I$9A$I$1e)I$I1e) 1e)$1e) I$1E)*H$I$9I$I$9I$I$9 I$1e) H$1e)H$I$1e)  1e)I$I$'9# 41E)jZm1E)$I$1%)I$I$e)E)$)( @$E) @$E)!zW$I$E)!UUI$I$e)I$IE)!IE)!!IE)!Ie)E)U5 e)@ I$E)bUI!1E) I1E)I$I$'9#I$I'9#I$9! 1@TI$1$U1%)11 11H$11$I$11 1@PI$1b,U$I1E) 11 I$I$g9*I$I$)I)I$I$)I)I$I$)I)I$I$)I)I$I$)I)I$I$)I)$I$A21f1$1f1$A2I$1f1$I$1e)A$I$11I$I11 I$11I11(I$A$)I)I I$)I)I$I$g9* 1%)H$H$E)bUTT1 1E)I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$)I)I$Ig9*I$I`1UUUpSyE9 * Pn/%q&7f=), 0}/, au+[#1`I$K$f1UUVT 11 I$I$g9* 11I$11* 11$11H$I$11(!$1f1I$11 ۲1E)N$JYE)b֜ $I1!I 11 +I$I$g9* i.51`SəĆ1A '@d$11_V$ц1!`I1"iM1E)@Iī 1a׾(<4 @1$!`IXI1!%5- I$11UUжI$11UUvm91 MǦ1$!( ?51` IĆ1A /L$1f1 $11۰mmۤ11I$1f1I$I$)I) $01f1h9,I1AxIJ$I1A  I$)I)H$I$)I)I$I )I)I$9F1H$I$)I)I$I)I)$9F1$I$)I)H'1^@59e)yP&M$H9 Mv XHտ/y~.%yH]++# X , ɟ-%yUU m۶m6%9hO$E1TUUU .%9p 9a B$! I$I$B$! I$I$B$! I$I$B$! I$I$B$! 91ꨪ aB$@91  91變 I$ 91I$I$g9* I$I$91 I$91 a$91 $91 I$I$BD! 91) I$I$BD! I$I$BD! @$9@PT @!9 % I$I$BD! I$I$BD! L 91  I 91 I$H 91 I$I$9F1 I$91* $91 91 I$I$BD! I$I$B$! I$I$B$! @B$! I$:1 h`9b@ I1bU k`91 I$@391U_ I$I&91UUU~I9 I$H$9! 8Ib'915UUUsI$E1U# ݔf9 U/ QpI 4" G ?4)I@;`UT-% I"4)Pr.DZ 4$DZE|T4,{=@DZ^x3,|DZ-3-0 DZ /43I$A$%31I%31$H$%41ɐdI$%4,$ DZx3,IϏDZ3-PtDZ/31$H%3)#ђIDZ_z1OR&EW~XI$Ih3!JIeDZ)3/@$DZǩ +31@%31I$I$%41ɐ$%43DZ4,DZ@4+IDZ%41ImDZ4,M@DZVP1/ I.*4-vL$4-NB" HDZ3!c#j13 %yzꨠ# I%yUUW\ KafEy,/N f)*/!~BҒ_, OҶU-~B֒f_+߶$ If)&e_ )@EU&I IEU"R EU O H%qU cf$qU b$ HfqUv&[ @EP_Z@EHO%y@U~ e$ IX@%? Ib#9%qXUߪ Id IqP Ij;$ HiP I$qb$i1WV\X !I$91 *  $91 I$I$BD! "$I9e)@ A$H9  LB$A91 I$L$9f1 I$:1 H!91 I$I$BD! I$I$BD! I$IBD! k5m91 I$L&91 XI$91 / &IN91 [m91 d`9e)zꨀI$rن1E)UW^x)(I)($I$1E)UUUPt9E)++ 91 B$A91 * @49``,I1A5 ͐d9f1 / H$@ :1I$I$9F1 " 9e)J I9-  I 91 $A$$91* 0`n91 I$I$B$! I$I$B$! I$I$B$! L&91I$I$91 @" i9 %U)  rA 1" w +4-D RDZ *4c ͧfj%ɔ ۰mf%%*)ۺ2 f@B"mDOE?1VJf+'/1Z"駩1PP@@ m$ 91Cm۶m11`NB'b:1%)` 6儆1E) % 1$! I9E) 6h 1%)( 0 $m9e) * D 91k $ &K91  $I91 ۲m9f1 I$K%91UVZp'#Ɇ1!II$1!/0 1! I19E) jj ؄m9E)  9E)@@ II9E)u* 9e) I$@ 91  91  91/ `9E)Xm'uզ1E)_^h$1E)㭽W 6I 9e)- $I$ &91^[-6l11P@۶m119F1 L&$I91II$)I)@$I)I)X%11PP >Giq1  wfq + @"$fE)PPPPHdɖd1E) C-91zꪫ  ۆm91 L0@91ꪪ  L$91/  91 h$9E)\P` `@9e) I$H$91$)1E)؊ 1E)c"i1E)Xq:P H1E)U^` 1E)UUUI$I$e)E) I$1E) $1E)/`ۖt1E)+$A$i1UUUwf9 *DIfE K%R(f1TPP@I$11  $11 $11 @11 11I11I$11UV`ɖl$1$!$C1E)j1i۴ چ1E) 1e) $I1e)I$I$'9#1e)II$9! 1E)@1E)II$9!Xm۶m1E)PI$I$9!I$I$9!1E) 1$!@@1H1$!--+@1e) $H$1e)$I$1e)I$I$9I$I$9@H1E)I$I$9$1E)I21E)&e)!~k$e)!xUhۤMڶE)I$IE)!]UUI$!Ie)!UկvB'$e) W^6f1$!*1E)I$I$9I$I9M Ef1 fE (Ib-Y fU++Ҷ& fU +d%R$e1RPPP 1$!ꠔe)E)4e)![$e) HE)$!@$E)!*I$m;e)!__!@e)! $E)! e)$! I$I$e)E) I$I$e)E).e)E)H„E)!|` E)!@IE)!? E)$! 2d$e)!h^WL$IH$! I!Ae)!յ+e)E) I$I$e)E)I$I$1 Ie)E)I$I$e)E)I$I$e)E)H$@)( )(@$I$1$IC&E)! x@$I$E)!x_WUdB$AE)^* 0E)``@!E) I$I$1I$I$E)$! E)7I$I$E)$!I$I$E)!@$E)!I$I$1I$I$1 28$!UUU$H$8!I$I$80I @8/IiX8+ i.WiH+ 1gnܴ %yi+ 1eJD E%y E%yI$I$hI$I$hI$I$hI$I$hI$I$hE!x%yE)\WUU$I2e)E)zH$I$E)!I$I$E)!II$E)!** )(@$E)!H$I$E)! IIE)!** IH$Af1E)Uտ1E)$1E)@$I$e)E)I$Ie)E)**  e)%)I$I$9А%e)`PF'Ie)bY5I`e)5% @$H$1E)@!I$I$f1e)I$I$9I$I$9I$I$9 1E)1E)I$I$f1e)I$I$1E)I$I$9I$I$9I$I$9I$I9 $'9#I2d$1E)~WI$I$e)E)@$E)!um$E)V@$I$E)!ZUUI$I$d!d I$dB!bXh %)) II$E)$!* I$I$1!!e)E)} !A1E)I$I$1E)I$I$9I$I$9 9e)E) $1E) @ 1E)II1E)I$I$1E)I$I$9I$I$9I$I1e)")Hf1@@I$IE)bUU&$I1E)I$I$1e)I$I$1E)I$I$1E)I$I$9I$I$9I$I$9I$I$9I$I$9I$I$9@$$1E)$I$1E)I$I$1 $)(I$I&E)!z$I$E)!zWUI$I$$!!I$I$$!!/I$ IE)!Uկ$@`$E)b V$AE)!I$I$e)E)I$Ie)E)*I$A1E)!I1E)I$I$'9#I$I$'9#I$I$9!I$I$9!I$I$9! I9 11$11$I$11I$I$9 I$I11*I$11 11 I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$)I)I$I$)I)$11$I$11@$I$11I$I$9 I$I11I$11 11 I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*1E)II1&@@11I$I$g9*I$I)I)I$I$)I)$I$11$ $11գ3?1$!pxN񖛆1! /IZ'1E)^ Im$1E)U N$1E)UU&I$1E)UU$I$1E)@$I$e)E) t";- E)bXmxE) rwFX-"w &y ,i[ 0f ,@&F`Z)=o?%yxM$uBF1WT^rI$ 11 $C11~!I11I11+11I11*I @ 11I11 * L 1E))P1E) # I1`I'1A511I$I$g9*I$I$)I)5 1!I6A61!-?/hII1 $I$)I)$I$)I)$I$)I)$I$)I)$I$91$I$)I) 9F1I$I$)I)@,1!@+I#1!( 11@$I$)I) ! $91PZ$10|1%)I$I$)I)II91H$I$911f1 /1(H9 `IɥC1/I$LB11I! 11/@$@ 11I$I11"11(1!@ Ha'%.I$IPHU yw7iH/+ywdfi+ +)NDf /(m/@$J$e)PTTUТm61E) ا9e)* MM$9E)U DԶ9 ) @n9e) #( 9h yJH1- I$I)I)@$H$)I) $$I$91 @!091 91 91 I$I$B$! I$I$B$! @B$! 91 I91 L91 I$H 91 !!I91 $I$91* mI91 LN H9!ֺ 91 I$I$BD! I$I$BD! I$I$BD! &9E)`X  9E) 91 91 $291 I$I291 ! 91+ $I!091 <,9E)b }9. I$I$B$! I$I$BD! I$I$B$! 9r$1b`X\ dI1b B$! X`9f1 I$X `91uM6m11W$ 1E)J$IE)bVV r)ٲ9! 4唤9e)* M91W vb't91UU^@$1e) @ $1E)*$@$11 I$91U1$I$9UUU1$I$1UUU1I$1UU3II$1UU1$1U411+mۈ 8UUTX3+p?DZ 5U41۰mۖ-DZ4$ADZFyp1I$M槩EUV)@`! f %/%-m$ *3)@VDZ/31 I$%3/I$LB$DZǩ4/DDZǩ ?44I$I$%44I$I$%44I$I$%43%3I$DZEUU4"!IDZE@@@4DZE43I$%4,(@DZp@-[22# EZjI$I$fEUUUT%IE4%`!DZ )41I$@l%41ɰm%4/j&P(DZǩ4-iKIDZ?4160DZ41Km-DZ4/m۴ DZ4,[#$ p@3+DZUUU3-MҶ 3,O6[ৱVzr@/(mӲ#m/ #@Ej( I%yUUWT,ME%-"*,C) O$z%9WVTP LB&I91 I$I$9F1  9f1 * A) H$A)  A) @A) L&91I$I$9F1 $!91 @$@$A) A$I$BD! I$I$BD! $C$I91 I$k591  $I$91/ D!91 / I$[3l99UWz d,91zN" 1E)W^$H$1H$ E)! !A$C&e)E)-Znq1E)* `IK91 I$BD! L 91 11 I$91 / 91  @$:1 A$I$9F1I$I$9F1 I$dB091  I$91/ 91 I$I$B$! I$I$B$! I$I$BD! L&9111@Iq{kljE%) @J&Q +1 M. *1P+hfz(IDL&fVX/"IDHf@,IIf1!MɔL )%%/ P(@9P@@ I$I$BD! :B=91@Êm1E)I$h$1!I1! / $Ar"I19E)*j @9E) @9F1 $@d&91  B91jj $! @919F1 B91ꪪLH&` 1f1(`H1E)X@M' f1^6a1  $I$91 91  JD!91V* !dH291 *  0 9E) ٖiH9E) I$91 I$I$BD! 91 N"ې h9E)WM$m1E) $9e)%5U I9e) A9F1LH$ 21f1($@$11 $A$91 "H1U6a[XH5l\#G`H^+ H i1TTUU $#A I91N9@1E)N91E) `I$9E)/UU 4I9e)$@1e)ђ1E) K I9E)*  ɐ I91 I$91* $91* I$I$B$! mH֤91 kچv91_@1E)$@ 1E)I9F1#iI1E)kH1!<NZ 1!POyE) %% Nwf$q +@ f1P@ېI$1E)*%uR'1E)ZV^061E)$1E)l1e) $H$9!P"&Z1!PPA@1!I$ 11ꀀD1E) 2$C1E)I$I$'9# 1e) $9!@I$11 UU0I$11ppUU@$1e)X%k1!mm&1E)__mif1E) 1e) Iv01e)*Im01e)IҶm;11UI۶݆11[51E)@e)%)I$@$e)E)I$Ie)E)IҶm 1E)UIҶ1E)UI1E)I1E)$1e)H$I$1e)$I1e)*I$1e)*I1E) I$I$9!H1E)I$1e)H$I1E)Md1E) y$q1UUUϝxe1) P.g3%y +o,pb;c/f$!XjjJI$I$!!((  E)$!mve)!? Ae)! I$I$@!$@!$Ie)E)([me)! $H$e)E)@$@$e)E)I$I$e)E) $e)E)TI$I$e)E) $I2e)E)(p0d$E)!zW`B&dH%)!^UU&Ee)!յ+I@e)$!*@kve)!P((@$E)!I$Ie)E) ۆ5Xe)!`` E)!  E)!E)!@$)(H$  10`$E)!XWI$I$$!!\WU5I!@E)!% $ $IE)! IHE)!MnۆmE) @$E)!WI A$1$I$1I$I$E)$!* I$I$1I$I$E)$! 8%)UUU$I$8%)I$I$80I$I$@! I@8 IiP8+ {. iH+ A$qe1`VP$EyE)5UEEAI$E%y$hI$I$hI$I$hI$I$hEEq}Ee)WUP@ $L$e)E)PTW $I$E)$!I$I$1$E) E))%II$1I$I$1I$IE)! I!@1E)յI$I$1E)@$1E)H$I$e)E)I$Ie)%)*  e)%)I$I$@!e)$!X$I$%)bP $Ie) H$I$e)E)**I$I$9I$I$9I$I$9I$I$9I$I$9$1E)$I1"I@!I$I$9I$I$9 8e)`$I f1 I$9 I&1E)~ђ#'f1hZɐdE)$I$1 @$E)!zWI$@!U0!I$IE)!Uյ E)!*I$I$E)!* H$e)E)W_-I1E)յ1E)I$I$1E)I$I$@!I$I$9I$I$901$! $E)!/ H$I$1"@!I$I$1E)I$I$9I$I$9I$ 1e) r$f1b8@$I$1E)e) I$I$1e)I$I$1E)I$I$9I$I$9I$I$9I$I$9I$I$9I$I$1E)@$1%)@$I$1E) 1  H$)($$E)!V $I$E)!\UUI$I$E)I$I$$!!-I$ E)!U I$IE)!* e)E) **I$@E)aW0m۶ 1 I$1E) 1E)I$I$'9#I$I$'9#I$I$'9#I$I$9!I$I$9!I$H$9!$1E)$@2I$1E)@!1E) *9 $I$11 I11@&11^11I$I$g9*I$I$g9*I$I$g9*I$I$g9*$11H$11$I$11I$I$9 41E)I$ 11 I11 @$11I$11(11I$I$g9*11  11L1bI$I$g9*I$I$g9*I$I)I)LB$118$I`$11$ 2L$114m6:1E)p Iۚ$1E)UIN$1E)UU$'I$1E)^UUh$I$1$! E)! bE)I$I1Ib۶m 1E)UU I$I 1E)I۔H1E)mO۴ 1E) IB 1E) 1cSDX1UUUpS׻yE9 * Pfi &ܜۉ F+,ITFU% ,$@E)+#9@I$O'f1UUW\I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*!I$I1f1I$I$)I)I$I$g9*I$I$g9* 1E)@$IA1E)I$I$)I)9F1I$I$)I)&@1`X`I1 = I$)I)I$I$)I)I$)I)I$)I)I$I$)I)I$I$)I)9F1  A$:1X'Ѧ1a`X` \ 9 5 I$@)I)I$I$)I)I$I$)I)I$R(H1aW\0DI1aI$I$)I) I$)I) $I*51@I$1A?۰ml11@$ 9F1I$I$)I)@$@ 9F1I$I$)I) I$)I)I$I$)I) I 91b&L$H9  PH)/+ yS7%qP-// #9wO%y-/ -%TI@ ++1$" e)@@!I01E)/dMڤ1E)H1E)I$I1E)dB& 1E) 1E)؉;1E)I$1E)WU @i$1%)`;1E) &mI9E)*A 9F1 I$a91 I,91b` 0IL1 I$91. `.99` ɕ95 I$I$B$! I$I$B$! I$I$B$! HB$! L$91 I 91 $C2$91 I$I$91? I$91 91 I$I$BD! p 9E)\P y" 9$! .P9E)-= I$I$BD! I$I$BD! I$I$BD! I91 091#1` I 9b? 91(. 91 I$I$BD! P9p 9  I$I$B$! I$I$B$! $B$! C$@91ꪪ I& 91W~ cmi9!,@ 1pXIf1b+%% $I$91%UUU T91=u #91Wp I$9f1UUV` I1e) I$9!жm11 I$91U $I91I$I$9F1I$I$9F1H$)I)9F1,I$I$9UUU1 $I$9UUU/I$1UU/ `I$1UU%@I$f9 U)$I$9U-  ېL91+{DZ3/$C$ǩ 3-m&k%DZ4-XDZ?44I$I$%44I$I$%44I$I$%4IrDZEU4/j&P5DZǩ4/DDZǩ ?43I$@ %4/ *)DZǩ1IDEՕ/L%iEVZ`I$I$fEUUW1miE4 DZf 41[$X$%4/TDDZǩ?4-I,۠ DZ4,I7DZ /4DZf%41ۆm,%31 %4%x$DZEX\T3 IE4- R$DZ(3/L 0DZǩ1+X۶ DZZz/b"-HEX`@(I$I$EUUU10 JE 1,[-l~/ -h9P` I$I$BD! L0H91 I$L$9f1 !I$91 I$ BD! @$A) I$BD! @$A) IB&$I91 I$I$9F1 I91 I$ BD! I$H$BD! I$BD! $I9f1 I$@91d@$I91 I91 [ 4[ӭ99pz L:-91^t2: i1E)^xI$I$1@ )(I$I$1J 1E) % i91 !I$BD! 9,A91I$I$1f1  I$91 @$:1I$I$9F1I$I$9F1 @ B$! I$d091  I$91/ 91 / I$I$B$! I$I$B$! I$I$BD! L&91I$I$g9*~$y+_W&Isfb ,@Sf +j6bFZhh/!F  1!K%RDZVZZ,mm6F*j/(`ࢂ+冡9TTPP I$I$BD! d6-9E)Ӊ%D 1E)c I$K%1!JI1E)B % !A"99E)) ؆m`9f1 @B $@91ꪪ  I$91 91 `$@B 91 1e)  $:1 v"'-91_^S3 1E)rI$M91E)UUVXO$1E) U II1E)  i[91* -91k  91* X$Mv910 I$ BD!  Ʉ`B91 91 * 91 k9e)zc;-Ȇ1E)I$1E)/ T@9e) k[;`91!H1e)I$I)I)-J$@1 I$IP@* qc`f9 JBI$)I)$9F19F1ۺ$11P N":8A9E)Wzm۶٦1E)`ۉئ1E)PAvئ1E) IT9E)/ I$I$9F1 HLH91 I$:1 s9E)*Z^ II$91 K91 91ꪪ @ 9e)@ ۶m9e)I$I$)I)I11? I$I$)I)@a1UUUpSyE9 *) sf%y -J%@ff1TPP@mڶm 1E)H$ɐ1E)I$A1E)k6k1E)^^_* $I$1E)^LLf1$! $I$1E)dۆ1E)HK1E)ۺ%1E)j^I$1E)!1E)$I$1E) $I$1E)$I$9H$I$1E)@@!$@1E)mk1E)ߞI1e)*$ 11 X[m11 `mɖ1E) ?I$11dB`B&11^\^ 1%)@@1%) I$I1e)I$I9!I$@9!lX%1E)ZZ 0 C1E)I$I1E)>* 1E)*I$I$9!$1E)H$1e)1e)@1e) 1e)$1e)$I$9$Ii;1$!_O$%qE)UU\%&fX[%6b#Mf JJIe)! e)!B@)e)!  @!@$He)E)Ie)E)@!I$e)%) *$Ie)E)I$ e)E)H$@!L$e)E)TT I&E)!x $I$E)!^WUI$ Ie)!Uս+IۀmE)!- e)%)6`ɖle)! $E)!(((0Ie)%)* I$I$@!I$I$e)E)I$ e)E)*I$I$e)E) H$e)E)pVW I0E)!k6E)xz$I!$!+ IE)!5 @$I1dB$E)!!E)! um&E)!WWLB@E)!^A @$1I$I 1 E)! E)!@$8%)UUH$I$8E)I$I$@! I$I@8U I$AH8+  `@+ {-WqP  @۴iE)@PVI&e)E)\ @$E)!$I$E%)5UUUp $Ey$!5UIEy!mݖvE%y $E%yI$I$hI$I$h$@$E%yH(i%yE)T@ I$H1iE)UUT@@$E)$!E)*  H$$!b :TWE) I$I1 !e)E) I$I$f1e)$H$e)%)I$I$1 Ie)E)*I$I$@!I$I$@!@$I$e)bTUT!IPE)a=h`me)!I$I1" R$e)0T e)$!e) I$I$9I$I$1E) H$@!I$I1"$@ e)E)@M$e)!(e)$!I$I$9p80f1a`XI$e)b//5 @$1E)^_`B&dB2e)E)\__E)` E)b @$I$E)!z^UUI$I$E)I$IE)!UUUIE)!եI$I$E)!* I$I$1I!A1E)UU 1E)I$I$9I$I$f1e)I$I$@!I$I$9I$I$f1e)@$1E)@$I$1E)I$ @! 1E)I$I$9I$I$9I$I$9 1e)(1$!@I$d%)bU8  e) I$I$1E)I$I$9I$I$9I$I$9I$I$9I$I$9I$I$1E)@$1E)W@$I$1E) 1 $I$)(@$E)!p_$I$E)!`WUUI$I$E)I$IE)!UUUIE)!U+ !@E)! e)E)I$I$1 I$ I1%) I1E)I$I$'9#I$I$'9#I$I$'9#I$I$'9#1$! I$I$9!I$I$9!$Ad$1E)$I$1E)I$I1E)*I$ 1E)*!I$I1E) I  9 $H%1b@PTP 1bH$H$9! 0f1$!I$I$g9*$11H$11$I$11I$I$9 I$I11I 11?I 11/`$`11!GO$1:VU$I 1I$A 11I 11* * @ 11A$I$11I$I11**  @1b@I$I1bU$I!$11A$11E)$I$1E)@$1E)U@I$1E)_UUh$I$1E)\UUU @ E)@P@I$I$bUUU!E) I$I21E)UUUI$1E)UU &R1bjZ`D 1b-5!I1e)I!@11/ I„I1f1( $)9!j TI$1,U um9e)11kfm׶`1U7uwfa) /(` E +, W- f+Pnfx}#{9f1\pI$I$g9*I$I$g9*I$I$)I)A$I$)I)I$I$g9*I$I$)I)$11$11$11 $11Uƒ>3=1xx9XS1a -- $11$H$I211I$11*11ٰm۶m11$I$)I)H$I$)I)$I$)I)$I$)I)H I$)I)$A$I211@I$1e)@$1f1$11!@$$11$$11`ۖ11$I$$1f1H$)1E) S1) $)I)I$I$)I)h$I1 I 1a7.A91 I$ $9F1I9F1I$I$9F1H$9F1I$I)I)I$@ )I)-۲-$I1UH$I$$IHTUUUnXH]/1R.UEP-)+ )1N` f-- +1(yoY DZ+1<ǩ1@PPPP$I$e)0U$Ir@H1*Nb'@1E)I8 H1E)I$I1E)I2dB&1E)1E)I1E)׿I$@1E)A$@ @! A @!.I$1%) `9E)/ h9mݶ9bX`I$WB615HI1= "I1$!@ 1a% $@$I291 I$91 $B$! B$! I$I$B$! I$I$B$! I$I$BD! H91 I$91 I! 91I$I$9F1 I$91*  $91 I$I$BD! I$I$BD! I$I$BD! I$I$BD! $I$BD! I$I$BD! I$I$BD! 91 $I(9$!*@@$I$)I)  91+ 91 I$I$B$! I$I$B$! I$I$B$! B$!  B$! $@ :1 I$:1 M4091* mH9!H 9 $9 mѶm61e)* pɝ$9f1 U zR'9E)|\T_na1E) I*51` !1+ @$1E) VI$91U $91 l`9E)@dId1!>?1e)  I$:1I$I$9F1 dB$A91 I$` 91 I$I$91  $91/ 91 1 $I$9UUU1 $I$9UUU/ I$9UU4 I$9UU4 $9U4$DZ1U4IX%DZEXX4$ DZE4/Ihǩ41 %41ۂml%4IDZE4% 5 DZ`%H%ɆETPp!ɑI$EUU1E* 4-(@DZ4/IjDZǩ4/@# DZǩ 4")IE@@3I$I",DZEUU`49 DZE 31 $%4Z"$IDZEX4!m`DZ3- I$DZ/31I$%3-mh5DZǩ1,@2$cDZZ[{-L'(EV\p@,I$EU3).BmDZU1(j#5R zj( I$H$9UUTT I$I$BD! $@91 I$`09f1  I$9f1 * $I$91 I$BD! $I29f1 9E) `091 I$d&91 $I$91 * 91 I$IBD! I$IBD! $A) L$@91I$I$)I)  I91 ? Џ'O$9aXV\ mv9a k2#1E)\xi&m&1E)UUW^I$I$1I$I$1K؆1E)- v{91 5 $$A) r4 9f1I$I$1e)  I$91  91I$I$9F1  I:1 91 mX 91 I$I$91 91 91p +`x91'U I$I$BD! L&91`"1apVvky ?& PN.fA )()՜f#P'{'Ey\\\/@E,!M$k&f1f //1"I1@#䆡9UUUT I$H$BD! IR+91"`&1E)@I$H%1E)UUVZ 1E) %I$LB&1f1* 091ؖ 11 !H$91  b"&9ZZ l9E)  $91 H$:1 m%2l91#A 1E)$Jن1!VT![$1E) UUa 1K1E)* 8Iɐt9E)% P91 H 91 $ $91 *  A) LB2$91 $91 `91  m91 M, 9e)Wm۶m&1E)X `wħ9E) H 9e)/ $)R%H1UH$ H8TT@EIX8 )Oh1BJZZ K$1E)TT IB&91VJD1E)(<<@` 11P  I")9e)*jj$Iۦ1E) #5$1E)k 1%) I$1E)*PI$1E) $Aޔ91 A$I$9F1 J$IH9e) dB91 I$91 !$I&91 "$i9e)@ I9e)  B$! " $PB91ZZ I$91 I$I91  AZdL;h1 %%N7fa +Xi fe I$H$f1UUTTrI@1E)$ @Ħ1E) I$11UVl&1$!ZZI$m1E)dKd1$!jl61E) 1E)ׯ@&`1E)^^^^I$@1E) I 1E)I@@1e)I1E)I1E)I 1E)Im۰m11U )I$I1E) 11H1%) 11@"(1%)@@$ 1%)*- m۶&1e)@9!I„LH11U I$I11I$H11I 11!I11@ 11H1!? 1E)I1E)@@1e)@$1e) 1e)* I$I$'9#$1e) I"$f1$!V`h$f1$!U@$I$e)!$ E)!I$ 0E)!` Bɻ`) )-fP I$I$if1UUUTI$I$9LHe)E)H1E)9I$I$9$He)E)$Id$e)!@e)$! 0e)E)p@$e)!غ6M$E)!~_I$IE)!WU/Iv0e)!+IHe)$!**(@e)E) &e)!ɶm۶ E)!d&@e)$!e)$!@$I1"LȄ e)$!((H$I$e)E)I$I$e)E)/&E)!x`$I$E)!xVUUI$IE)!UU- A E)!-H$I1۰mKE)@$)(H$ 1LE)!< @$)(I 1I)(۶mض%8E)UUU$I$8%)I$I$80I$I@! I!IH8+Ii X8* ɝ. iH qv4%qX  0x$%qb`XV P1iE)b ضk&E)bx E)a +$H$E)!z^VI$I$E)a I$I%y!UUU %y%)U H%yE)mݖvE%y $E%yH$H$EEy X%X5Ey%q #:`%qXxxI"& X$!UXH%)UUUPLE)V E)! I e)E)/ 9$I$e)E)I$I$e)E)/Ie)%)*I$I$@!I$I$@!I$I$@!`PHe)Pe)I @!I$I$9I$`Pe)^\C&d9e)zz f1 5%- 1E) I1E)I @!9I$I$9Mve)!8I$I$9I$I$9lf1$!`Il؆mE)a5 $)($H$E)! @$E)!z_I$I$$!!XWWWI$I$E)I$IE)!Uյ E)! I$I$E)!*I$I1 $1E)յ1E)I$I$1E)I$I$@!I$I$@!I$I$@! 9$I$@!I$I1"I1E)I$I$9I$I$9I$I$9I$I$9(P%f1pxHIXE)b %%$C$Ie)E)@IҤk e)!ז(@1E)I$I$9I$I$9I$I$9I$I$9I$I$1E)@$1E)~W@$I$1E)~WUU )(H$E)!Id$E)!_@$I$E)!_UUI$I$d!d I$IE)!UUUIE)!U !I$E)! 1  E) @HI$E)a& I@1E)I$I$'9#I$I$'9#I$I$'9#I$I$'9#I$I$9! 81p`ɐdIN1/%+H$1e)@$I$1e)I$I1e) I1E)*I$I$9!I$I$9!I$I$9!I$I$9!"i I1b@)01E) 01E)p$Lf1WVI$I1$!I$I$9 I$I$9 I$I$9!$$$11 zU@$11H$I$11$N$1 VVFA!p 1! M†@1Vm۶m1E)I$I11 I 11*  11 $11 l&1e)$IZ['1%)^ t$1E)_Ui;I$1E)_UU$I$e)E)`UUUI$I$1I$I$E)$!I$If1E)UUUI$1)1E)UU Iě$1E)UINr 1m1E) I$ 11 $11II$11I$11.@$I$11I$I$9!I$I11** H1E)IڴH1I11"@$11 H 11(`vnxe1 pOSfX /%(6yNf-+, 6` +  ***+# zz"N"'p91W\\p@2d$11z^W@!11$I$11 @$9  I9!I$I$9 I$I$9! 9!$I 1$!@۲01E)1E) II11?? $C$I11I„$ 1f1(I$I g9*$I@1I$I$g9*I$I$g9*I$I$g9*$II1I$I$)I)$C$ 11I$$ 1f1!I$ 1f1H$I 11I$I11 9  !I11+I$I11#<H1pI e 1%/ I$I$9 R&1@1E)$I$11@!11 d$1e)I$11.$I$)I) DJ$e;91_ 1e) 9F1#1&H9%%% I$IPH qW1iP-- qwSfi-/+)!2!Ey BBB1P E%%3R")(ǩ1P@@@lQ1 @ 11$ 1f1 II$1f1*$I$I&1f1H0I1%)I"$1E)I1E)N$t I1E)m$M%1E) e)E)AI$1E)I I$e)E)  e)%) H$I e)E) Вm۶1 R$9E)U  -9e) t11% IȐI91 9F1 II91 $I$:1 $A291 91 I$I$B$! I$I$B$! ,9!`` Iħ9 7 I$:1 I$H$9F1 $$LB&91 I$91 91 I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$I$BD! @$h49bp\X` 1b  I$91 $I$91 I91 $91 I$I$BD! I$I$B$! I$I$B$! I$I$B$! I$$:1  :1 @$B$! @ZUǧ9( I$m391UW1E)I$$1E)۲mۆm1E)j `$91 -U j9P;I9X`I! 1X1E)-I$9!жm411 u @691  I$9E)I$I$9F1I$I$9F1I$I$9F1 II$9F1 $H$:1 H $@91* I$H091  I$91/ !91+ I$I$BD! I$I$BD! I$I$B$! I$I$B$! `91 I$H091  $I$911$I$1UUU/I$9UU4 I$1UU3I$1U4$1U1" DA+L'ƒ-EVVPh!?$E5U1mvDZf)4/@[DZǩ3/IIDZǩ?4-#0HDZ1#%RiEpPP4 4IDZE41X,%31II$%41I$%4-I$H"$DZ3-ݖɐtDZ /3-@ ۰ DZ**1- $IDZ1!ڢm&lDZj-I$`%EUWXP,E 3,XI|DZ/ Z%-9PP@@ I$I$BD! I$I$BD!  $BD! IB& 91 I$I$91* I!91 * 9̧9`` ɐ|ɗ155 $ ɄA) 91 I$L91 !I$91 !9f1 $I$BD! H$I$BD! I$I$BD! 99`PX1a - R,M I9!" `91 b"ђI91xꨨ C I9E)~ꪠI$L&1E)UUW\A I1 )(m$1E) -U n9E) + I$A) hՀ:@91I$L&9f1 vi۶91  91 91 I$I$B$! I$I$B$! I$@ 91  I$91 @91ꪪ  !91 I$I$BD! I$I$B$! k5 `9111{ɟfy9%UU" P sfI -#. kƆf]1`K\f/=3!--1DZ`,!vm&f**1#*hA-Z.i1PP@ I$I$BD! I$BD! d)9E)ꨠ2$ 1E)CI$K%1E)UUVXĆ1E) 5UId11** V`-91 JdZ9e)I4I1E)p 04I9e) h&[9f1  I$91 I$I$9F1 h,m91~jsbwvn1E)NB; @1E)W_ $I$1E)5UWH1E) =  I915 91 ($991p @J$91 @$91 @$91XX $%@@9f1ZPK[1! -p99$!  `9E)X ߭ 9%)I$I$1E)*H$I$H1۲-P8@@ ysTi8% _ q1RPTTLH 11(  $91 H91 I&91I$I$)I)r@ I1E)9F19F1r&`&1E)v;@1E)I$I$1E)ۉ$1E) `;1e)  Ix91 H$I$9F1  $ $9F1  $I91ꪪ IB&@91 I$I91 Im91 @I$91 91 @$X1UUURw%yP+/P f` @$Cf1PPPh I$I91KMI1E)I$I$)I)I$I$)I)I$A$)I)$1f1I$I$)I)I $)I)؆dHl1E)((m11vII1E)I$I)I)I$I)I)۲-11@@n11 I$Ig9*L$d1f1!2! 11 gs$h1E)%/`2 1E)1E)Y 1%) :kl1E)1f1I$I$)I)$11H$11$I$11H$I11*I$I11:I*I 1!? l1e)I$$9!H1E)$@$9@(:1$!z$t$f1!~U$I$f1!_UUI$I$$!!*>>I$Iae)!i1$!} 1$!/ @`f1!pM $@2lPE)% AiHH$I$ae)TTUU 1E)j1E)I$I$1e)LHe)!<<@!@$e)!@1$!*&1E)z_&I$f1! 2 E) @E)  Af1E)I$I$9I$I$9H1E)d1$!9I$I$@!I@!I$I$@!@$H$e)E) e)E)k`$E)!p^H$I$E)!^UUI!AE)!U  H$E)!*I$I E)!L$@E)!>> H$$E)!۶ kE)(.I$I$)($H$1I 1$8E)UU$I$8E)UI$I$80I$I$@! I$ @8+i۶m P8*m.G `@ {- %qP N$ %ya*.0%yE)`XVIKmE)A(E)!L&%)axII!%-I$I$E)aI$IE)!UUE)!I E)!**  I$Ie)E)׿  ?%ye)UU L%yE)$E%y `Ey%yࠀ3%yaz蠀 c %qPvc `@_$d2PE)UVh0@e)UUUT$e)E)@$I$e)E)I$I$e)E) II$e)E) @!I$I$@!I$I$@! @$e)%)H$I$1"I @!I$I$9I$I$9I$I$9`&e)!nݶmf1!-@$I1"I@!I$I$9I$I$@!@!I$I$f1e)I I$9 21E)z~ C2Ie)E)p~UI$I$E)!Æuk$E)b V$E)!^UUI$I$E)I$I$d!d IE)!սI$I$E)$! I$I$1I!Ae)E)U-,0e)`IE).55I$I$@!I$I$@!I$I$@!I$I$9 H$e)%) H$I$1"I@!9I$I$9I$I$9I$I$9I$I$1E)@$1E)#I$Ie) `de)b I$I$9I$I$9I$I$9I$I$9I$I$9I$I$9@$1E)W$I$e)E) )( H$1 Id$E)!xW@$I$E)!zWUUI$I$E) !@I$!&U$A2d$$!P\PE) I$Ie)E) I!A1E)"H1 jIDMf17 '9#I$I$'9#I$I$'9#I$I$9!I$I$9!$1E)iҢ%1`Xf1 I 91! @$1E)1E) $M[$1 V1E)I$I$9!I$I$9!$A$$1E)&I$1E)H$I$1e)[ 01E)* $I$9!!I$11%UU$I$9 $I$)1E)`I$I$9! 9 I$I$11*x.$I1 $I$ 1E)I$I$g9*I$11$$11W Idž1 It$1E)^UH'I$1E)VUU`$I$e)$!I$I$E)$!I$I$1I$IBe)E)UUU+I$&)1E)UUIbA1E)U# 1%)1EI$I1E) I$11$Ʉ11$11@$I$11 H$I$11$9!$9 $AI$11?.UHI$11$I$11$I$11 I11 **H$H 11  11 * H$1111 iH1UUUO7%y1 )"`'w%y+++ r/,($ɧ,$J$EyTTV( -hY`@I$~'1UUW\ $@11 I11 I@$11 I$A11 *I11 )I) 2d&1f1#'Z"-1!p\P@! 1! I$I$g9*I$I$g9*9F1$9F15,I1a`I$IH1/=I$I$)I)I$I$g9*%bֆ1bp`ɐI1?I$I$)I) A.=1A`I1b % @$91I$I$g9* I)I)&L&1f1I$I$1f1* I!I1f1I$I$g9*I 11II$11N"'-H1ؠTI 1 $I$1E) !I11I$@11ꨠI$I11.$11@$@ 9 9 I$I$9 -ڴ'H9 DR P8 yS7q%yP//#1R`%y-+ /#m+# 1+m6DZ1 Hǩ1@@$K1 I$I$)I)!I I1f1IB$I1f1 H$11$11 I11 * $I$1f1* i#&1b@P ( n9 ͐m9e)訪q&1$! I8m-h9E)UuI 1E)@$H@! $I$1"۶mú-e)!E) % $I$1E)7XI$1%)/II$1%)/O1%) $9F1@$@9F1 9F1 $I$91 I$:1  9e)@* 197 I$I$B$! I$I$B$!  91ꪪ IB& 91 I$L91  $I$91* d$91 91 I$I$BD! I$I$BD! 9E)@ 91 I$I$BD! 91  91 I$H 91 I$I$91* I$91 91 I$I$B$! @ 91* I:1  91jꪪ N$M9VW0 9! k91~ I$X91UWzLB2$ 11WI$H 9!I$I$11UUU JI$91U N: 91U~ I$v591UUWpI$I$'9#I$I$9! I$91UU $I91 I:1 @ B$!I$I$9F1I$I$9F1 II$9F1 I$:1 L&$C91$I-1@ nm91 91 + I$I$BD! I$I$B$! I$I$B$! I$I$B$! L&91I$I$g9* I$91 $ 91 I$I$9F1I$I$9F1 1e) AL$9 VU$@f>yE]#I䧙3HI$1UU4HI$1UU4 'e)U4H$!U1 I!3-6lDZ3/$I$DZ*31I $%4-B$ARDZ**3-I$M&DZ3-PlݖnDZǩ*3/HB$C DZǩ1-$H2IDZ/"@E`)I$K$EUUVT10IKF /%`Hazꪊ( I$H'9UUTT I$I$BD! I$I$BD! I$BD! L&I91 I$I$9F1 ݒbI$91 * $I$9E) I$IBD! A) A) L&`091  A$I91. $I!91 * I$A) I!A) h'p$9Axxx^ ɗP1a% I$I$91 I$91 / X 91 c; 91  9E)ZjIk1E)UUVI$1H$I$1 I$1E) %U @I91 I$BD! h4:91I$I$91 vm691/ 91 I$I$B$! I$I$B$! I$I$B$! H&@091  I$91 91 I$I$B$! I$I$B$! I$I$BD! L&91I$I$g9*?ɟf9%UU B%af9 5 P.fE+1@ F ,[۶HF1! ɔX %514F`` I$NR$F9UTVR I$I$BD! I$I$BD! I&C91P1E)`v'Ն1Z^ I$1! ?ڠ%[I1E)PP @R$d91X{ h)H91kj R$@91 @$91 91ꂊ* $091zp b1E) a$I9E)I$I$11+ 1E)W\!I$ f1E)UW~I$1E) ? ۰mۖl9E)* @-91p/ 091 ۆ%@ 91  91 + A) L291  I$91 $@" 91XZ* I$I$BD! 0@$H1=I$I$Q!@6e`H/yw7EX/ E1TTUUH$I$)I)I$)I)  $I$91 lm&91 H91 I0@91ꪪ  $I$91I$)I)9F1 $9F1@1e)I$1E)I$K1E)I$@1e)*i&1e)` m'1E)t1E)' $@$91 I$:1 @I$:1 I$@91  0 I91着 ɔL`9E)wP1 )ww%yX--OC!%1hhh@ 91 91 @$H:1 dB91I 9F1 m&91I$)I) I$!91 m6m91 Ii 91I$I)I)In11 @$$91 @$$91 ضm֤91 dH$$91$9F1HI$)I),۶m11@@ N61$!&<I$I$)I)I$I$g9*dH$1e) K$`1E)$I 11$I 1E)I11 11 @&11PXI11 *H$$11($i51E)`@$1!W$I$1!UUX$I$E)!UUI$IE)!I$Ie) Ivf1!Uf1$!$I$ &1E)ꪪ I$I1E)I$@$1e)1E)ꪪ&, He)  P8+//ضmV$Xe)TTTP1E)jf1E)I$I$96f1$!~Ie)!** 5f1!@BzIe)!I$I$1I$IE)!If1$!/ 1E)I$I$9I$I$9I$I$1E)(f1$! I$I$1e) @! e)!me)!$I&e)!0E)! &L$E)!xVUI$IE)!UU%I$ $E)!5 $I)($AE)! 0$E)!LE)!۲-E)@@ɰE)$E)!m$8E)UU؂$I$8E)I$I$80I$I$@! I$ @8UIH$IH8 I6E X@ } iH+ R %yX  iYr4%yi '%yE1`XV Id$e1E)\_WUH$I$E)! E)!$I$$!!PTUI$I$E)aI$IE)!UյE)!I$I$E)$! !e)E)5   @! 0`$e)E)@XV 0E) `O{%q$o%yE9- h c@%yi #H%yX  iiHNV;k X$)jؖm6HE)UTPI$I$e)E)? I$e)E)I$1"  @!I$I$@!$H$e)%) I$I$e)E)"Ie)%)I$I$9I$I$9I$I$9 9$H$@!I$I1" @!I$I$@!I$I$@!(@ e)@p@I1)%% 1E) 01E)z_UH$I$1II$1@$E)!ZVI$@!bUT !bI$IE)!UUխIE)! I$I$E)$!I$I1 $e)E)  91E)e) I$I$@!I$I$@!$e)%)@$I$e)E)*I$Ie)E) Ie)%)9@$I$e)bTUT  e)b&Xf1 $1E)@$I$1E)I$ @! 9I$I$9I$I$@!I$I$9I$I$9I$I$9$1E)~$I$1E)zVUU )( )( `$E)!xW@$I$E)!xWUUI$I$E)I$I$!!UUU%IE)!U !I$AE)!IE),v"9$ E)ZٶM1 ! @1E)I$I$'9#I$I$'9#L$H1E)1e) I$I$9! 1E)H$1E)@$I$1E) f1@J"%1TP@ɐ1% %@1!`X`  1!dBI1E)1E)I$Z$H1UV0$m1  I$1E)@$I$1e)I$I 1E)$ ʐ1, 1e)*@@1b@ʐdIde)bU1E)I$I$9!@$@ 1E)XTZj01E) ۰-1E) jm1II$11 $I:1E)z I$1E)zU&I$1E)XUUm;mۆ1!I$I%)bVU8E)I$I1I$I:1E)UUբIĒ I1E)U -$I1E)@$$1E)$Hd$1E)$I$1E)I$1e)* I$9!$I$9!I$I$9!I$9!$I$9!$I$9!I$I$'9#I$I$'9#I$I9!!I$A11++I$$11H1E)$d$11 W$I211 J$E1E)< I2dB211~_I9 @$@ 9  Xa1Up7fi+/&PsF -+"m,/HF,%j56zh\(z?fe1\x$$ 11/-$11@ H$11I$11* I$11$A$11$I$11$C$@11j  R#51!``IĆ1!*119F1I$I$g9* 11 H$I11I$I$9!I$I$9!ku1E) 1E)I$I$11*1`I $ 1A%$@$91 @$11I$11*11I$H$11*$@!11 $I211 11 *I@$11*$I$1f11f1 N$` H1E)ܰdI$I1E)I$I$g9*I$I$g9*I$I$)I)I$I$g9* 11@:81U/H$L$H8TVWWRX8)6u1EP//-% S%y+ - B'EPV1@IE1,ٶc;DZ_,IɏII$I$)I)I$I )I)A$I$)I)I$I$)I)H$I$)I)I$I$)I)LB$@1f1J"%" 1TP@ J1b11  11I$1f1*@$Ʉ1f1(L Q1E)v, 1E)C" 1zI 1յI$I$e)E)(I$I$e)E)I$I$e)E)I$I$e)E)*!$I$1E)_W` I$1E)Uئ1E)@&1@Z ɐD1bI$I$9F1  $I$9F1 I$:1 B$! I$I$B$! I$I$B$! I$I$BD! H B$! I$@91 I$I91 @&L$91 $I91+ 91 I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$I$BD! H91 I$@91I$I$9F1 @$I291 91  9p TI1 %% I$I$B$! I$I$B$! I$I$BD! I$I$B$! h`91~ I$X91UWzLB$ 11WI$@9!I$I$11UUU ` N$9f1 U  91Wp :m69E)zZhIm5f1 *j 1X1b % &`$91UU @P91 I$I$9F1 I :1 I$I$9F1I$I$9F1 I :1 `$Z"-1PTP@ H$1I$I$)I) I$91 91* I$I$B$! I$I$B$! I$I$B$! @91 I$` 91 ۰m۸19E)*j $l9E) I$H :1I$I$9F1JE1b01!@ q 9% 91` IR'91UW^$C$ 1e)N&1!WXI$I$f1!UUUTI$I$E)!UUU1$I$%)UUU/1UUU3 II$1UU4H D13,|I$DZ?UU3- mDZ(3 $EpP3H!E -X0@EX`,ɐI$E%5U/(%lx0- X%(9PP`@ I$CA) I$I$BD! I$I$BD! I$I$B$! `0H91 I$H 91 !I$91* 91 I BD! IBD! A) I&91  $H$:1  91 * I$I$BD! p89aX !@9  (B&9e)`X@!1E) / `c91+ I918U 991 dC" 9E)zꨠI$b01E)UW\`۶a[$E)b0I$I$E)$!`'1jZ I 9b-  ۖn91 * X,91 m$m%91  I$91/ I91 j9( I$I$B$! B$! I$@091  $I$91 91  I$I$B$! I$I$B$! I$I$BD! m@ &9X1!ɝY15UUNwEA 5-% tgE '//P .)F@-mVIF*)3)SB` - -H9@@" I$I$9UUUT I$BD! I BD! v ;-91蠀"@ I1%)I$p91E)UW\x)I$1E) %U1E) 4d9e) *  H$:1 ɖl@9f1 @!91 91 *  I& 91 $I $91 &i")9e)`jM!A1E)# I1E)Ij 1!I$1E)5 1E) I$91/ 91 @91 nk-91 * 91% 91  ID9E)*  )H9UUU ؉mۆQb@IIPH w7qP-/d B!EE9 BB۶$1E) fq91 U I$91 I9F1`1e) $I )I) $I$91 LȄ$91  $Zm9E) m:(9e)b IJ1E) $9F1 1e)\ 1! 5[ml11PI$11UTc51$!`p PDA1 %% mѶI-1e)*PЦ1e) M11'  I91 $I91I$I$9F1j @ P1v%y@ +# ߆`*$C21e) im 91I$I)I) $I$91 I$91 @I$91  II$91 I$91$9F1 $91 $ $91 I9f1 I$ 91 I$$I91 Mڤ l91 I$ 91 $IH191{11$I$I011LH$11TU$1E)$1 11$1E)1E)? $11 -:1E)T'1E)_I$1!I$1!j;c;1!H$IE)!^UUI$IE)!UUI$0f1!UU)If1!իm1E)I$1E)ꪪ 1%)DH$I1$!` I1E)A$I9۶m,1E)jdB$1E)$'9#؂@) *)]m)nXE)RRBJ$@$1E)1E)ꫪI$I$1E)Km1E)֪^ 2 0e)$! E)!i۶mf1$!-MJE)T@1E) 1%)ꪪ1!%I$I1E)I$H$9I$I$9I1$!*I$I$f1e)I$I$9`me)!ٶm۰mE)! C&E)!X@$I$E)!ZWUUI E)!U-!AHE)! `$E)!e)E)H$E)!LB&$Ie)$! e)$!e)E))(k 8E)UUUI$I$80I$I$@! I$ @8+I۶m P8*I6E X@ . iH 4 %qX*ir4%yi  R Eyq+?Eye1`XV I&L$e1E)|_WUI$I$E)$! E)!H$I$$!!`XVUI$I$E)aI$I$!!UE)!*I$I1I$Ae)E) @! 2$C&e)E)`|_I$I$1 e)E)% I$ $1"I$I$EAe)%UUUN$%ye)/US%yE9- ` %y%qh%yi~  h%qX_ ~Rc iH_ i' P$)Z @He)UUP@@! @!$H$1"I$Ie)E) @!I$I$@!I$I$@!I$I$9 @!@$I$1"I$I1" @!I$I$@!e) ,I$I$@!e)@@II%)b?7Օ&I$e)!I$I$1 E)$!$I$E)!zWUI$I$E)I$I$E)IE)!UE)$!I$I$E)$! *I$ e)E)UU5 !@e)E) $@!H$I1"I@!I$I$@! @!$H$e)%)I$I$e)E)*Ie)%)* I$I$@!I$I$@!I$I$9J%H'e)bp\XɉKe)b IE)%  e)!@I1E)I$I$9I$I$9I$I$9I$I$9I$I$9$e)E)L$e)E)WU)( H$1ضm[6E)!_@$I$E)!p_UUI$I$E)aI$I$!!UUUIE)!U!I$E)! I1 I$Ie)%) I!A1%)+!@1%)1e)I1e)I$I$'9# 41E)xP1E)*+ 1E) H$1e)H$I$1e)I$I1e) I1E) R$h5f1bPTX`)P1 I$I$9!I$I$9!I$ 9! %1E)$ $1E)C&I$1e)I$I1e)I$1e)*0,1E)h`1@ IK 1U@1E) $1e)I$If1bI1e)I$I$'9#$'9#$$1E)@%Z:1`Xx IE)5&I$e)!I$$!I$I$e) e)!I$Ie)E)UUUI$01E)UUIR1E)U1e)  $1e) @$1e)*$I$1e)I$I$9I$I1e)I$ 1e)I1e)I$I$'9#I$I$'9#I$I$'9#I$I '9#I$I$9!$I$ɐ1e)*@$1E) Hd$1E)I$1E)I$1e)  , 1E)rI1E)I$d11UWݺ-m1e)K$K1E)U:T 1 @ I$1 711I$I$g9*Tx1 ) `Nwwf%q -(PJ/f +--&vk0I/(I '?f%q#M&`91VXX`I$I11/ $ 91` ɗ1A 'I$ 9111H11 I@1f1 ` 9E)j IXS1*!I1f1I$)I)I$I$)I)I$I$g9*I$I$g9*I$I$g9*I$I$g9*$I$I&11$ $$1f1I$I$g9*$11I$)I)@ 9F1dB91m&K&11^TXn11 d@1f1I$$)I)$C 1f1I$I91LB&$ 1f1 $ 1f1 H$H11 11I$I$g9*HI11(**@$I11 ( I$11 11 #4"i1!mn݆$H!% M& P8U^% i8 ɝ۹MEP 1w1gE%q-HHFETTTT,8$E)uU-0MF",H$K$1TTTV A(1$!@I$11/d$118WII$11$A$1f1 I&$91I$9F1I$I$)I)I$I$)I)I$I$)I)IA$)I)IȐ@1f1*I„ I11(H$H11 $I$11I$I$g9*I$)I)r I$I1%)I"'1%)I$r@1E)mۦm1E)WWWI$I$e)E)ÊI$I$)(I$I$1 H$LE)b\WVR/ٶ1 * I1%)m119F1I$I$9F1 I$:1 $A291 B$! I$I$B$! I$I$B$! 91 L$91  !C& 91  291 @I$91* 91*  9e)@ I$I$B$! I$I$BD! I$I$BD! I$I$BD! 91 d291ꠀ 8Sۦ1E)p|I$I 1E)UUU 9q 9!- 497 I$I$BD! I$I$BD! I$I$B$! I$I$B$! I$I$B$! @91 ۦm 9$!@KĆ1 ?L$$C1E) $I$1e)* ꒉ$9f1Ue"16I1rII1b@I$1E) ?$A$1e)+ `$91U  91 H$H:1 I$$:1I$I$9F1I$I$9F1 $I$:1 dB$@91 I$H 91 I$I$91 !91 I$I$BD! I$I$B$! I$I$B$! I$I$B$! X09E)X`I 1E)% I$91  91 I$H$9F1I$I$9F1 I$I$9F1 I$9f1* $C$A) u @91WxI$M&11UUV\@1!pI$r91!UU^pI$I$$!!UUUI$1!-U@$I$e)b0WV-$?- HҔm1/"@Jnۧ +3@"%0IEPP1 IE1)h&DBDZVW[,O.(F,!I f//-#"$ ( ʏ䧙9UUTT k4m99^p I$I$BD! M;9e) ~  91 @ BD! I$L&91  I$91 * 91 A) A) I$I$A) L& 91 I$I$9F1 T'9 ^ s9!b \I1a. 8H9E)x 1ij 9E)  I$L&91k ۶m11 :hO91 C" 91ꪨ ]@9e)jI$zن1aWVؠmݶmE)[5ۊmE)`In׶1b5-* Nn1e) ۰mݖv91 ** $9f1 I$K&91"&I1E)@I 1A( P9E) I$I$B$! 91 I$@091  I$91 91 I$I$B$! I$I$B$! L$`9a^\ J$1 I$I$)I) qfY15UUU .qy%1*+ HN%q )({ۇF3 `f '/3)# ^z+ J%i9TP@'?f9UUUT  9e) %  BD! K%2`91"I I1e)I$h11E)UVX`I$1E)UU%H 1E)< `I91 91 `$91 I$91 P 91 ,9e)j` Im9e)* dM$91W K491vm11B**I"'-@1E) $LB&1E)`1Ħ1E)/ mV'91/W Nd9E)  H91  91 @ $91 * J$I 9E)< (@%H9I$IPHkv`Pյ-yw7EX-/+"B/f9@PPP N2' `9E)I$a1E) ۱9E)/ D $91U X m91 Hr&91^^@D1e)*DJ%1E)P $I$91 HM9e)b &@H9f1 ۦm& 91j$I1e) $%1E)$9F1@@$9F19F1211@m611xI$k 11UUX $I11U 9  9 $$I$11@.,ɣ@1`@//wiEX L$$F1TTTT AI:1 I$I$:1 I$I$9F1 P"9$!X ۶MTA9E) IB$I91 IB2 91ꪪI$ )I) !$$91I$)I) 91 @B$! I$:1 $91 "-иm9E)jjI 1%)ٶmu11 11@%҆1E)/7 H$1E)^BXۆ1!P`I$1!I$1%)UUm61!*6i1!}E)!*I$IBe)!I$ I1!Nll%A1!*IBJ@1E)UI$@1E)ZZb" 1$!XB!`1!  P1$!% $1E)mKd1E)@%۶ 1E)ZZI$1E) 1$! @@1$! @$9ɐl۶m1E)I$I$9ؐ-Ţ8f1-PE1BB I$I$9`[1E)zUغ&m&1E)_UU)(m6m1E)UUխc" f1!! 1$! H'9#A @$9 1E)$`B1E)Z^  1e)@$I$9I$I$9I$I$1E)$e)$! $Ie)%) 0E)!`H2I$E)!UUI$IE)!WU5IE)! A$e)$!I$$e)$!e)E) XlE)P $e)$! I$I$e)E) e)E)@@I)( E)! [%8E)I$I$@! I!H8/I6e X@ս }D iH* 향$%qX ir4%yi  mo$Ey%q In۶ E%y'Eye1`XVC&L$e1E)x_WUE)  E)!j 2d$E)z I$ A /I$I$!!U E)!I E)! I$I e)E)+  E)( d$e)E)^W)(I)(I$I$e)E)I$I$e)E)  @!@$e)E)$I$EIE)5UUURɛ$%yE)-UN%ye9) k6%y%q3m%yi_ b %qX_~N:c aHW~kPE)Vhضmd@E)UUT@I$Ie)E)  @!I$I$@!I$I$@!I$I$9$e)E)EN$E)b VW$Ie)@!I$I$@! e)!@I$I!,.f1E)C21E)~_ E)I$I$1$E)!Z@$I$E)!ZVUUI$I$E)aI$I$$!!UU IE)!I$I$1I$I1I$e)E)5 9 H$@! e)@(I$E)b&e)%)$e)%)@$I$e)%)I$ e)%)  e)%)I$I$@!I$I$@!I$I$9@ 9e)b`Cұ0f1b`дI$E)b &$I@e)E)#'J%e)b`X\p e)b I$I$@!I$I$@!I$I$9$e)E)d$e)E)\U$e)E)|_}II$1`ۺ5E) x2L$E)!^UUH$I$! !*I$IE)!Uս  AE)!-I$I$)(I$I$e)E)/I!A1E)!A1E)I$I$'9#I$I$'9#I$I$'9#I$I$'9#I$I$9!``1E)hɐm۶n1E)H$I$9I$I1e) 1e) I$I$9!I$I$9!1E)`I$I$9!I$I$9! 1E)$H2L$1E);'u1 ^_ݖnP1! I1e)I$I$9!I$I$'9#@5 @1!pxq.0If1!5% 1e)I$I$'9#H$H1e)I$ 1E),)1$!jjNf1ضm$e) $I$E)!H$I$$!!!$@ !`@I$IE)-Ie) !I1E)1E)I$1e) I$9I$I$9I$I1e)I1e)I1e)1e)I$I$'9#I$I$'9#I$I$'9#I$I$'9#$1e) $1e) I$1e)$I$1e)I$I9I$A9I$1E)*I$ 1E)*LHI1E) 9 $ $11 11@۶mې 1E) d111%)@I1b&11I$I$g9*`1UUUy%E9 *(PN/E +, ݐ< +U,@?F+ɟ$EU l=FEQ` m%q1UUW\#ڶm1!@Ihf1a5.жI$1%)D$1E)$I:1!k$1E)$L$1E)U@$I1E)WU`J$1E)Uj;1E)Um$1E)U$Mm$1E)U$$1E)U$ m$1E)U$$1E)U$ $k;1$!Im$1$!UHmۆ1!`m$1!m1E)U@&$I1E)W_U$mۆ1E) U1E)01e)mk&1e)];1!`I$9E)UUnا9E)ú51E) d[;1E)_S9E)@d$91$D:1e)[t91dI91dB2@91  91I$A91p$Mf98\VW_ H8q`@/'ɝfa, ɑ%yUU4O"Hɗ$EWU3I$EUV/I$K"EUUV+Nb'v&%1VZZX'x<1b`X\pK1b M`11WI$@11$H 11C`! $11-U$I$11>I$11*H$I211$ $1f1II$)I)I$I)I)I$I$)I)I$I$)I)d$H1f1 I$$)I)I$I$g9*H$H11 I$I$)I)@L$1e)km۶m11\ i$e1 0I$$ 1E)UWI$I1E)UUW@E)!0$)($)($I$1E)+UU g'1E) U s1E)%0,11@H 1b9F1 I$91* $91 I$I$B$! I$I$B$! I$I$B$! @B$! I 91I$H )I)P&z=1`X\p 1`I9 I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$I$BD! L"9E)V `91 #1 9!``I11a. 91 I$I$BD! I$I$BD! I$I$B$! I$I$B$! I$I$B$! @9e)@ Iڔ9 I$[91UWmۆm1e)I$ 1E)۰k61E) q1E)/I2',1%)i׶m1E)k61E)*_@R&1E)) @ 91U ؆mۖm91I$I$9F1I$I$9F1I$I$9F1  I$:1  $I$9F1 I$H91I$I$g9* I$91 91+  91  kפ91 91 91ꪪ I$@91k'1X\ T9!  1b A$I$9F1I$I$9F1 iI$9f1* lݖt9e) b91x I$91UWVx@1e)ꪪN"9 1!WxI$IE)!UU׸d@E)01E) %lIE1"_X?,P wf+/)W`1,l{DZ1!$Cr *-I"!E @@,@IE,X%(1XP@@  91 k36`99~₂ {m9e)0 P91(  A) C$A91 IB&`091 I$I$91* I!91 I BD! I$I$A) I$I$A) `91 N' l1^jA1! OH9* A$I$BD! I$I$BD! 91 I$`091  I$91/ ZIT91 / I$X99UWx [ 9E)訠Iؠ ц1E)UW\`@$H$1I$I$1 I$1E) 5U Nvۧ9e) +  ݖm91 #691 $I#99%)x r9E)* IB91 I$I$B$! I$I$B$! 91 I$`B&91  I$91 I2I$91 @!91 @B$! I$I$B$! H&91II$91 ᚱEa9UU"SyEEA *+&-S톡%y+'q9tF))3+,H!B 1"3蠠&1 f9X`mq) I$BD! IBD! LB:, 91 [mk91zN"'1E)UTxI$1E)5UU$.1E) % )I&9f1 %ZI9e) XZ @91 m&k91 91+   91*ۺۂ%11@P 49E)%% d 91 I$M69f1 1E)m&l1$!ZZ$ f1E)h1E) @ !91 91 91   @91* @"%Z%H9I PH* y7eqP//  ywW fq/ % C$J$9PTTT  91 , 9E) ɝܰ I9E)iI1e)жۤ1E) I$91U Me9E)R#5*1 1 I$@)I) $I$)I) "H۴m91j  091 PIJ9E) IB&$C91x1E)??$I$)I)$@$I21f1I$1f1 I$)I)9F1km11|$)11E) ڮA9E)"I@H1UUUvaWqw`H//p1wfa+/-!B"$R2%f1PPPPI1f1@"$B 1e) $H$91 C@$L91z $@I91  -9E) j I䘧9! / 91H$@$)I) !$$91$A$1e)R%1E)PPd1$1! $I$1e)6k61!ې$I$1!  $I$E)!I$Ie)$! I$I 1!*I$I1!I$ 1!I$1!c;1!n1! ; @1E)mJ I1! <<Xhن1!I$I1E)$I$11I$I$9!I$I$9!I$I$'9#$H1e) 1e)H$H$1E) 1e)* 1E)B&1E) z$1E)I$I9I9I$I$'9#H1e)B )81ItIP8 +//I$HXe)UTTTI1E)U@$e)%)I$1E)+1e)I$I$'9#$1e)@$I1e)*I1e),`1!)ömf1! H$I9I$I$9  1E)jj I$e)E)  Ie)$! ۆ[$e)!`$I$E)!I!IE)!U!@@E)! I$Ie)E)?I$H$e)E)@ @!I$Ie)E)$Ce)E)j H e)$!I$I$e)E)/@$e)$!I$I$e)E) (Ie)!*]$K$8E)I$I80* IIP8/+ y{/qP+ yinܴ%yi  I$Ey%q+In۶E%yIE%y`$EE)`XV$1r$E)bp\ %)a I$I!6,I$I$$!!pUUU@ !`I!@E)a/ I$I$1I$I$E)$!* $Ae)E) He) @I$LE)a׾E)! e)E)*I$I$e)E) I$I$1 I$I$e)E) I$I$e)E)I$I$)(I$I$e)E)// $H"e) % ?I$Eae)5UUUpRI$%ye))UR%ye1) m:%y%qzI%ya~ " %qP `@mPE)UZ Jd'E1!(@!I$I$@! H$e)$!I$I$e)E)**L"E@e)a0e)%)I$I$@!I$I$@!I$I$@!H`f1$!0$$e)E)p|WH$I$1$E)pI$%)bI$I$$!!TUUUI$I$E)a$I$C0!b@$I$E)b .5I$I$E)$!۶m6,E) @ E)a %@$@!@$I$1"I$I$1"I$I$e)E)I@e)b7 $I$e)E)I$I$e)E)*Ie)%)* I$I$@!I$I$@!@%e)b@Pe)b$e)$!`1(IE)P@I$I$E)5UWTIe)$@!@@e)@ I@!I$I$9I$I$9`e)!Ie)!I$I$1$H$I&E)!x0d$E)!ZWUH$I$!I$I!Ii E) UU I$ E)!I)(I$I$1 I$ 1E)W 1E)$i"If1@DIe)bU1e)I$I$'9#I$I$'9#$1e)$I$1e) $i"If1@ IE)bU 1E)I$I$9!I$I$9!I$I$'9#I$I$9!I$I$9!@$I$1%)0@!I1E)I$I$9I$I1E)*[61E)@*'1\I$f1 1e) 1e)I$1e)H$H1e)I 9@$1E)I$:1$!z`h$e) #ڶmE)`說I!*I$I$e)I$I$e)I$Ie) Ie)!i;1!!f1! II$9$I$1e)I$I$9I$I$9I$I$1e)I'9#I$I$'9#I$I$'9#I$I$'9#I$I$'9#$1E) I$1E)$I$1E)H$I$9I$I$9I$ 1E)I1E)IB I1E)*I$I$9! $I$9!I$I$9!I$I$9!I$I$9!I$ 9!I$I9!Z"'1m1 11 I$I$g9*I$I$g9* 11@&11^$11 @Sh1U`FP  ffi c۷}fF,I$&EUU+2@FW(k.=ЎE)Xp@&E) -D$C'E)xmdE)A -I$I$E)$!@$L&%)bp\^x E)a I$I$E)$! *I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$E)!I$I$1I$I$1I$I$E)$!**I$I$1 I1lk$E)^E)! II$e)E) $@$@!-'r":E) E)!  @!@$I$1E)ꪪI$H$e)E)I 1E)$I!11Mt":1E)x^VXI1E) -- [51e)vI1e)*@$H211k-,6H1%@H@wqe`H//}.EXխ/+( %q +Ir? EU]%I$IEUU!IIEUUUT!$I$E5UUU+Bb'c'E1PZjZ1!@1e)@$ 9F1 I$)I)HI$)I)ڍ'O'1XVX*i$1bJYV4 1@$@ 11 @ 9 I11I$11 $A $11 1f1 I$I$)I)I$I$)I)I$I$)I)I$I$)I)I I$)I)I11(@(1@h۶if1%I4I1E)111E)NR;@ 1E)UI$vن1E)UUWp۰m۶-E)b@6lٖlE)bI$I$1.mv1jI$Iִ1յ$)R$1bp^`1b %9F1 $@$C&91  91 @91 I$I$B$! I$I$B$! @91 d#9E)z i۶m t91 !$LB&91+ I$91 91 I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$I$BD! @091 I$I91 $$I91  $91* 91 I$I$BD! I$I$B$! I$I$B$! I$I$B$! I$I$B$! h`91~ꪪ I$h91UW^`01E)I$d01E) $I$9E)? O9E)vR'h1E)W_XI$I$f1E)UUUPId1E)+鐴I$11 UU $691 I$I 9F1I$I$9F1I$I$9F1I$I$9F1I$I$9F1 C$A91ꪪ I$@B 91 I$I$91 2-v91ꪯ N\{91U> 91 I$I$B$! I$I$B$! r9!\ _%i1CP@ DI1 $ 91 I$I$9F1I$I$9F1 I$I$9F1 @ 91* @9e) N2;X h91U^xI$I$11UUUTX1E)^bI$M51E)UUWZI$I$e)E)UUU uDI%aUUwrwEX/# N7w%y +-/!`s ++1-d$`B&1)BBDDZ[/"$IE@/IDE+1@ɟI$1UUUT TJ.t91 - (!*91@ ~ {9E)U׼ I$I91 s"'91XWV 4II91 I$$I91  $I$:1  91 *  91 AN91( @91 t'9E)^11 I91 * IBD! I$H$BD! I$I$BD! $C$I91 I$k491 I$I$91 PT91 / Mml99w X 9E)蠀M&X1E)W^xI$I$1I$I$E)$!I$1E)-U v9e) 0 A91 'z99a\X1TtA1 -   I$91- 91 I$I$B$! Ȁ891zxI 91뭕 I$H091I$I$g9* !!91++ I$I$B$! I$I$B$! I$I$B$! L$`091I$I$91 uf%y95UUivEfI -"q{%y?=3` wf +3+#-x- fx!l2Z EAX}| &%y9UUTP  Z%9f1 XX AA) b"1$I91 II&91M2&-1E)WX`I$I$e)E)UUT`񐸦1E)% жm91  !91/ ؏J 9$!T(  & 91 @ 91 uK91^ !C&91 I!91 l`9f1ࠠdK1E)؆m1e)؉ 1E)A1E)I$1E)? $A$91  $91  91/ [$H$H9iviXH//qwS7EX-//(qnd E+ % H$I$9TUUU I$I$B$! I$I$BD! I$I$BD! #$I91p * M9E) Ib;:91UUU^I$I$9! !XI$91UU$Lئ1E) $91I9F1H$)I) mӶ۶a91 v[91 $@ $91 91H1E) m5091 隮 91 $I$)I)@$C21f1H$11 C$I1f1$9F1$9F1p P1/qSqwEX/-- S2!E1P@jj! 1e)I$I)I)$I)1E) :Umw9e) C&L$91 2&a9e) N۶9E) [691 `&!91 I$I 91 I$91"I`1E)@I01!Im 11U MR I91տ$ 0C21f1[m۰m11P %I$1E)II$)I)I$I$g9*I$I$g9* 111E) 11  $$11 I$$11I$I$9!A$I$11"H$I11/ ɐ 11L„11WׂI@$9!I$I$9!1E)@$1e)$I$1E)۶-1E)jj[m1E)z1E) 1E)DR)I1 *) $I$1E)*$I$1E)8e)UUU$!H8+/-fb&!CPE)PPPPm[ ݲm1E)c;,1~ 1!.% $1e)@$I1E)*I$1E) 1E)$1e)m۶-1E)j0`1E)$I$1e)$1E)@$If1E)nض5E)!X&I$E)!p_UI$IE)!= In6lE)!/I$I$e)E)/I$ e)E)  e)E)C2e)E)``  e)E) )%Le)E)$e)%)NL[E) 8$IHe)E)?۶m[%e)!PPl۶%E)P0`ö-8E)UUUI$I$80I @8-/qW`@-/ 1 %ya-+ !e @E%yIE%yh؏?EE)`XT@$H$1L&%)b\x  $!A $!!I E)!UI$I$1I$I$1 !@e)E)5$e)E) C&L$e)E)p\WU$I1I 1,8r$e)axXɐ E)A I$I$e)E)I$I$e)E)I$I$)(I$I$e)E)/ 0e)!``IL2E)hIKe) I$I$e)E) I$I$EaE)UUU I$%yE))UW%y$)) #%yi #֐@%y`_  mqP_c `bj`!ңPE)UVhmۖm@e)UUUTI$Ie)E) Ie)E) H$I$1"I$1" @!I$I$92e)E)` C&L$e)E)p\WUI$I$E)$! $E)!z$I%)pI$H !.! IE)!UE) BIE)b5I!Ae)E)U R @e)a`I E)b5I$I$e)E)I$I$e)E) I$I1" @$e)E)H$I$e)E)I$Ie)E)** 1r$E)a\e) I$I$@!I$I$9J%@e)bTP@ I$Ie)bI$I$e)E)*Ie)E) P(e)P@ e)H$H$1"0le)!  e)E)?2e)E)xII$e)E)UUH$@$1 E)!, H$E)!`VUH$I$$!!TUUUH$H$!I$IE) UU-In۶ E)!ե*I)(I$I$)(I$ 1E) 1%)I$I$9I$I$9I$I$9$ f1bI$I$'9#01$!`$H$1e)I$I$9I 1e)1e) 1I$I$9!I$I$9!I$I$9! 1E) @$1E)@$I$1E)dH$I1E)*I1e) 1e) I$I$'9# 1!@M$ME)bVU(If15 I$I$91e)I@$1E)lk61![$1!W$I$e)!@$I$!bTUV!I$I$e)I$Ie) I0e) II$ 1$!I$I$1E)I$I$1E)I$I$9I$I$9I$I1e)I1e)I$H$1e)I$I$9I$ 1e) 1e)$1e)I$1E)@$C&1E)1E)I$I1E)*I$I1E)*I1E)IB$I1E)I$I$9!I$I$9!I$I$9!I$I$9!I$I$9!I$ 9!I$ 9!I9 9 $H$9 $9 @$9! $1E) $I$11%UUU 11@$I$9! 9 H$H$9!!!I11I$d11UVZstۆXf1 p sfX +-( 憡Ey*[, IsE^U,$Ev}U 3ݲf%q|O.Fy$)W\Ppk5 E)axIi+1bI$! 1E)UUUC$ E)hm$ 1!Ibے1!Ibۂ1%)UIb&1E)UۀK$E)a(<M@1E)իIm1E)_Im1E)U*Im1E)Im1E)I1%)Im1%)#р@1E)_IB$ e)E)UIB$C"e)$!L$E)ANb' f1_ 1m 1!IB1E)Ib@1E)uI1$!nmX-1E)z e)b(I&m[`1e) @$1E)~~$A!1E)-9  @91E)x $P1E)%k11xmS 1e) k-11x@m&c$H1 I$IPH- w1uiP--- qwSfi-/ ,1r + -,I E,,I$I$D-lfZ- F9@?$F1TTUU9F1I$I$9F19F1I9F1I$H)I)R. 1$!t11X@$I1  9F11e)iضm11I$11I$I119 I11UI$11( ۺm911f1 I$@ )I)I$I$)I)@(1P@IL$ 111I$I g9*I$I$g9*I$I$g9*H$I$)I)h(1bX@Ii+1bI$N51E)UUU`I$I$1$ $1@ E)ap1awkۆ1 * ئ1E)II1E) 9F1H$I)I) 2d$91 91 B$! I$I$B$! I$I$B$! `91* I$@91 !I$ 291 I$91. 91+ I$H$BD! I$I$BD! I$I$B$! I$I$BD! I$I$BD! I$91 I$H 91 I$I$91*  91* I$I$BD! I$I$BD! I$I$B$! I$I$B$! @$@ :1 B$! k,91^ I$K491UU^k1E)IK1E)6`m;1E) pȞd{1E)\@ I 1E)U I$1E) 1E) &I$91UU $I-9!j'1 % I$ :1 I$I$9F1I$I$9F1 II:1 L$91 I$I&91 $I$91 91** I$I$B$! I$I$B$! B$! `B$I91 I$H291 ۰&9E)* TW9E)/ I$@ :1I$I$9F1I$I$9F1 !I$9f1** $I$A) 91^ I$L:91UUW|1E)ʪI&@`1E)UWzL@$E)! wIhE) )%R/wfa+/+`N7wE +-1+.c11-IL&1)l 0RC1DZWz_1)J籧1&l=DZzz)H"&B"01TXP` $I$115UUU q91 H @dI91 I$k2499UW^r P H91X I$I91 I$BD! d&C91I$I$9F1  91 * K 91( I$I$A) |'A9E)^ 6A9f1  $291 $I$91 91 ۀ,91 I 9E) 91 I$h91I$I$91 AX91 / k[99~ L&91W^xM&@`1E)W^xI$I$1I$I$1I$1E)-U `W9e) / Ң i91@ '9^II1$! 59 *z $IJ9E) 91說 !@I91  C$I91ꪪI$H$)I) u$9e)* 91  I$I$B$! I$I$B$! 91 $I 49!`@J?15_E9%UU0ZEf9 , Ro%y *1( B 1(b# h-3 if~#3 fEAj yb?%9UUT` I$BD! A) C2m9f1 I$L991j5*@1E)\pI$N'1E)UUU\Ħ1E)-U1E)  $91/ I$I$B$! L291ꪪ   $91 I$I$BD! `$91  ɔd9E)* ۆm9f1 K$۶ 91V֪ I$h,9f1h, 1E)vl۴ ئ1E) 1E)1`ۦ1E)  -dM691/ H$K$H9ItI`P%'p:_-%y` {kk)+9#fe9KKK @!91* IBD! I$BD! H$91 91* I$I$BD! 2۶m91 NՒ$I91Ux* vb't091UUWp`ɖl1E)  $I91UU Tm69f1  ҆mp9e) m&m$91__z ۖi91 I$91dH$I1f1 $@$21f1 $It91 &`B&11 $ 91@@$1$! I$I91۶-X11@`\4A1$!<5I$I$)I)X P1 7qw%qP//-ߥ` E9kI$I$)I)$I21f1*i1!/dI @1E) @@$9F1 !C!C91 imv91 hm91  $91  @91ꪪ$I_1$!=۲mm11@ٶmm11I$@$)I)$H$I21f111 $11ضtɐ 1e)( @$11I$I$g9*112,61E)1!$I$11I$ 11P1%)$I 11 ( 11 011@` ۲m1E)@j 1E) 01E)dHL1E) dH$1E)dB 1E)LD1E)I$$I11UU $ɄL1E)<$I$1E)*$ 0I$1E)I$I$9H$1E)I$I1E)*Il1E) ȯ@1` SPe1@BB 1e) @$1e)@$I1E)*I1e) I$I$9!$1E)$I1e) I1e)`1E)hlm1E) &1E)_ I2e)$!5k$E)!xWkIE) Ie)! !I Ie)E) $Ie)E) e)E) @%e)!pPmme)!Ie)%)e)%)I$H$e)E)>I$ e)E) I$e)E)5 @$e)E)@ e)E)\յkXE)XC2$8$!I$I$@! !!AH8-// yS7iH-/+ )R&U%yi)  ݰ E%yI$I$h`%EE1`X '$EiE)TUUUI$I$1 2$!H$I$$!!TVUU! $@E)!յ-+I$I$1I$I$1 $@e)E)5  2e)E)`e)E)I$H1 )( 1 X,tE)bp.)E) I$I$e)E)I$I$)(I$I$e)E)+ I$I$1"I$I$1"@%@E)ApIdIE)a-%-H$I$e)E)I$I$e)E)?/I$I$e)E) N$#fA^ i?Ey  %yb H%yi 3H%qX~  iiHNZ; P)j۰ &He)UUPI$1"@H$@!@$@! 9 I&e)E)\@$I$e)E)\WUUI$I$E)$!@$E)!^H$I$E)!^WUUI$I$E)aI$I$!!UU%IE)!I$I$E)$!I$I1I$@e)E)5$@!@$I$e)E)I$I$e)E) I$I$e)E)II$e)E)* $I$e)E)I$I$e)E)+I$I$e)E) @!r:e)bX!@e)I$I$9@$e)%)#&L$E)bp\XIe) $ e)E)@v$e) mۖme)!@!, `e) mInE)!7Օ&@$e)E)/\UH$I$1I$I$1 H$E)!~WH$I$e)!^WUUI$I$E)aI$I$$!!UUU5I!IE)!U IE)! )(I$Ie)E)/I1E)I$I$9I$I$9I$I$9I$I1e) 1e)$1e) I$1e)3'k61^Z )P1! 1e)I$I$'9#I$I$9!I$I$'9#I$I$'9# 1e)@$1e)H$I$1E)I$I1E)*I1e) 81`qx1 -I$I$'9#$1e)$I$1e)I$I1E)I$H$9$ $I21E)&f1!zM$e) @$I$E) I$I$e)I$I$e)IB$IE) I$e)!U+Imf1!p'e) p\X)f1!  I$I$9I$I9I$ $1e)I1e)I$I$'9#I$I$'9#I$I$'9# 1e)$1e)*$I$1E)H$I$941$!z$If1 LB&1E) 1E)/+ I$I$9!I$I$9!I$I$9! (1!` N$f1VU$I 1 I9 @9 $9 $9 $$1E)$$1E)I2I$1E)$I$9H$I$1e)I$I1e)*I$I1E)I$I$9! 9 @9!!@11= $I$1111@$H$11p,& HEIe!_ .hE1 * %y` +--&W %y )I$IEUUU+ 9I E)"heYjɟ1UUW\I$I11 k1e)EL$1!*V6ia1E)  I6[a91I$ 1f1 " 1e)I @9׾($ I9e) IB $91 I$$91 I$91 IB$91 IB$91 IB$91 I$$91 Iֶ91 6 D91( OX%I9׾ Hi$@9E)IȐ$ 1f1* I$IB91 I$! 91 vB I91W $#$H9$!j I$N W9A׾(IH1%)c 1qgw&H1E)/+ 11kX 1E)^^I6A1E)-  A 11 C2$1e)nm1e) * H$I$H9I XH qo$qP/+%fN i++%,")q&++ -+$D/,i&ǩ /,mi&ǩ꠫-@$H$1PPTU$I$11$I11 @I$1f1@$$1e)$1e)$9F1I$I$9F1$9F1I$I$9F1I$I$9F1I$I$)I)I9F1I$@)I)A$I$)I) I$)I) `11I$ 11aB&d11I$I11// @$11$I11+/@ $)I)I$$)I)I$I)I) I&51E)`K1b I$$)I)I$H)I)I$I$g9*I$I$g9*1f1h1E)XI$ 1E)UVI$I,1E)UUUhI$I$1I$I$1ِI$1E)UUU I$1E) U r1E)-@ $9F1  9F1 !I$91 AN$9E)8WW 9E) I$I$B$! I$I$B$! 91 * I$91I$I)I) I$91 91* I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$I$BD! H 91 I$H 91 @dB&91* !91 I$I$B$! I$I$B$! I$I$B$! I$I$B$! I$I$BD! @ :9bh m1b - vb۶ 91UUWzm5 1E)Ikm1E)!PI$1E) / I& 9E)+I$I&1E)I$1E)*4*1p`IT)Q 1b5%  91ꪫ I$I$9F1 I(91!`  IK9E)*  $:1 $L9f1 I$@B91I$I$g9*  91 91* ,9e)` BM9!& I$I$9F11E)1eJI1E)  I$91 $ 91 I$I$9F1I$I$9F1  I$9f1 * mt91 * b"ђH91 I$91UW~I$I$'9#L01E)VzII$XE)UUpy%yX--".w%y +/-0)EBJ3$HE/LdE/)L$K1ǩWWVx3)+@DZj1ڣi%1`I$I$a1UUUT $I$115UUU I91 $ 91 m&9E) I$I$BD! I$I$BD! $A) L2I91 I$H$91 $I$91 * I$H$A) $A) $A) A) I$`09f1  I$9f1 * 5/9!` g1/=/ H$I$BD!  $A) L&@91 II$91 Px91 / #ې 91 L, 91W^xL: 1E)W\`I$I$1I$I$1) I$1E)-U .dWۧ9e) |&" 1a $9$! k$j51apXx 1J9a - 91 I$I$9F1I$I$9F1I$I$9F1sP H9E)  ۴m91% 91 I$I$BD! I$I$B$!  H9pIx6%A1a/ II$91wq956qWFX//1 sE /1-H$DZ1) @^z- `fz言% 3 %q~mͶb $9UVX` I$H$BD! 0$C91 ے ٰm9e) NB'`")91Z#$1E)pI$&1E)UU^\xI$1E)-UU  1$! B2$I91k @91 X%9e)XX .,91j -IpJ9$! % ,9f1z` n`91 @ 91 I$I$B$! M5`91H$11 I&21E)I$I$1E)m$1E)*H$IH1X1`P----fP+++) 2%S2%9@PPP I$91 $IH91*  $BD! H$@ A) ۶H 91 $91* @91* ,89E)`pp 09f1  L@91W m 91UWx$c6 1E) $I I1E)$I 11UU@6I115 $I%9$!Z $IA9E)C$I1f1 EJ I1e) I$)I)I$I )I)I$I$)I)I$)I) "1E) II9e)9F1  H1 1WqiP-->o'fi+_]] I$H"i1UUTT$C$ 1f1Kd1E)<<$("@1!@@I1!$  ɐ1f1۶-11@؆mېm11I$@$)I)@1f1 %IH9$! I$I)I)I$)I)I$ )I)$C21f1IP1%)$C@1f1IH I1f1*dBH1f1111f1I$I$)I)I$I$)I)I111E)$11H@$I11@$I$11dB$I11_IH11dH$H11*1E)m؆ 1e) I$IH1e)۶ 51E)X$1E)m61E)zD$1E) !Ae)E)I$Il 1E)I1E)/Im1E)/$I11*I$H$11@ @ 81ItX@LXe)UUTT$01E)*1E)@$1E)$I1e)I1e) `1%)ɖt1!@$I$1E)-e)!@ $E)@$IE)!-Ie)!U  Ie)$! I$Ie)E)*Ie)$!9@$@!`"ْe) Xe)! 9@$Ie)E)Ie)%) e)%)$I$e)E)$)( d„E)!knۊ58%)UUUX&M$8%)I$I@%(ItIP8//+ 1S` %qX--- dO %y%q  E%y`%EE1`X?O$EiE)\WUUI$I$E)! @$$!!@P$!I$I$E)aI E)!ՕI$I$E)$!*** I$I1I$Ie)E)UU/$A$I2e)E)x@$I$e)E)XVUUI$I1I$I$1 I$I$1  E)!IME).I$I$)(I$I$)(I$I$e)E)/ I$I$1"I$I$1",e)@E)E)!I$I$)(I$I$e)E)+**I$I$e)E) I$I$e)E)@,E)`@ IwI5 $%qE) U %yE) %yi~ꨀ  i%qX_ ~Rc iH_~ i' ѣP%)Z۶mHe)UUT@ e)$!0d$e)E)`XUI$I$1I$I$E)$! H$E)!^WI$I$E)I$I$E)aI$IE)!UU E)!I$I$E)$!0`$E)`X\` e)b  @$e)%)H$I$e)E) *I$I$e)E)I$I$e)E) ***I$e)E)@$I$e)E)I$I$e)E)? I I$e)E) I$I$1"II1"I$I$@! e)$!$I$e)%)I$I$e)E)*b" E)a`@e)  Ie)$!I$%e) 6e)!I$I$@! $e)E)`VH$I$1I$I$E)!ömK$E)2$C2E)!^UU !I$I$E)aI$IE)!UU $AE)!- I$I$)(I$Ie)E)뫯 I1E)տ@$1E)Pe)$I$I$9I$I$9I$I$9$'9#$I$9I$I$9I$ 9[1E)zI$I$'9#1e)I$I$9!I$I$9! 1E) H$1E)H$I$9I$I9I1e) I$I$'9#I$I$'9# @1pIe)5 $I$1e)I$I$9I$I$1E)21E)l[$1!zUغ$I$E)!I$I$e)I$I$e)I$I$$!! I$Ie) Ive) *!@1E)I$I$1E)I$I$9Xf1!xf1%)I$I$9$I$1e)I$I$9 1e)* 1e)*I&1E)II1!I$I$9I$I9I$ 1E)*I1e)&1bhxI `1%5 I$I$'9#I$I$9!I$I$9!I$I$9!I$I$9!1`I$ f1UW`m1 L$1E)I&I$1E)@$I$1E)I$I$9I$I1e)I 1e)I1e)I1e)* *I$I$'9#I$I$9!I$I$'9# 1E)9 I$I$9!I$I$9!I$I$9 $I$11H$I$11I$I$9!R,I" `1UPN9xEP %5%NSE +)-+"0v *+-$K$ETVV+fhE"Z=hf1Pp kۦM$A1UUT11r 1$!0%p81!@P\pJ J1! I$I11** $I)I)I$I$)I)I$I$g9*I$I$g9*I$I$g9*I$I$)I)I$I$)I)I$I$)I)I$I$)I)I$I$g9*I$I$g9*I$I$g9*I$I$)I) !I91@$I$)I)I$I$g9*$I$)I)I$I$g9* $I$)I)$I$91 0I$91H$p1A\Vؠ I1 II$)I) $I$91 `$$91 I $91 Mv91_꪿$) H15I$I$HH***S1a`H//s/f`}m-/( @ i /% 7==/,-&m$ǩ /) %ǩ+[- @$1@PTH$I$)I)dB$@1f1Mn 11I$ 1f1I$11I$I11 I(-1@I1x1b %51`0ݖv1f1+11$9F19F1I$I$9F1I$I$9F1H$H$)I) I$)I)H$I)I)A$I$)I)I )I)dB2 I11I11+ @ 11 I()1@I$1$U%ci1b`pID 1%5 I$H )I)I$I$)I)@$I$)I)̐;1!p| 1! I$I$g9*I$I$g9*2`۶m11@u1E)_I$ @1E)UWI$I e)E)UUUxI$I$1I$I$1TI$1E)%UU0 ޔ1E)$9F1k U$I1E)0  91+ I$91* @91 I$I$B$! I$I$B$! @91* I$:1 $I$91 I$91 91 I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$I$BD! d091 I$L$91 I91 / 91 I$I$B$! I$I$B$! I$I$B$! 4 9x 9a- 91⪪ I&@ 91W^[ۆ1e)I$1E)I$I$1e)* [I$9E) / I$m9E) $I$9$1E) 6I$91UU $@91 #'9xx 1TT9b)-  $I1@ʐdIe)b7 @IDI91 `B2$I91ꪪI$I$g9* !I$91 `9E)` IXd9$!7 I$I9F1 I$I 9F1 $C$A91ꪪI$I$g9*  $I$91  91 I$A$:1I$I$9F1 I$I$9F1 I$9f1* [ضm91 M&P 91W^I$I$'9# 1E) )SNWhe1 )% 7wfi+--(PNEB +4I4IE 3LIHE1)PC2HJDZ^3) IDZU3%-1 p%H"'P"91T\PpI$@ 9!H1e)* `W91 `$N"'1A\^ j)D9  I$I$BD! I$I$BD! I$I$B$! `B0H91 I$I$91 I$9f1 * I$I$BD! I$I$BD! IBD! 91 I$`09f1  I$91*  lm91 I$I$BD! I$I$BD! I$I$BD! d& 91I$I$91 d91 ? m@ 91 #q%9Xt:M1E)W\`I$I$1I$I$1 I$1E) 5U Vn9E) *  ݖn91 * h&9e)@!I2d&91 tI$9f1/  $91I$I$9F1`(1%)@\I$1< $%91 $I$91* 91 * I$I$B$! H$@ :1  :1 I$H&91 sK`E1 - 0'S[XiP,.09Ea/  %y 3/dB! 3+C$ J_/ 3 i~(d=Zm`ZZig 9W_j I$D q9UUUT  BD!  A)4rc &1E)(X1E)PIR' 1E)UVpaMf1$!?PɐĆ1! I$I$91? !M$91W Xچ'9E)؟ i9E)  $91 91 X$9E) I91  B$! I`91 I&@39f12ۀm1E)IҴ@;1E)IIPH qS1iP----ɟ.U fP+ &¯J$1PTTT 91/ I$I$BD! I$ $BD! I$I$B$! 9E) It6`91/ Kj%91< j+Ih%91P H$91 91 I$I$B$! 91 I491 I$h91U^@I$11XY1!P0 nm9e)/ nI$91UUIr"'1e) "ERB91$@$9F1۶-11@۶mm11I$I)I)a$ 1f1""I$I$g9*$I$)I)6S`H/1WE`/--J$B"$f1TTPP DJm9f1 II$9F1H 9F1 [d11@` 6I@I91۲m`11@ٶm611b(1E)08!$@11I 9F1I$9F1I$9F10$C21e)*"i1! 4 1! &R"I1e)@$11  11 @@11I$I$g9*HH11(((H11( I&11ZK$P1E)i1E)+@11 ɐl`1E) d$$C11I 11)M:1E)T vۦ1E)-I$1E)l۶Ć1E)1E)뿪mm1E)꯮.:m=@1!jj!O1! 1E) I$I$g9*@$11I$11I$I$11*H$I11"!81UU$@$H8 ///l)P1TTPP[1E)ࠀi۶6l1E)*I1E)*I$I$'9#@$1E)I$I&1E) $e)E)m[&e)!@mE) p|/IE)/ Ie)! $If1E)I1E) 1E)zz1E)I$I1e)1E)I$I$1E) @@!H @!I$I$@!$e)$!H$I$e)E) C&E)! $A$!$B&8$!UU`$I$8$!I$I$@ I @8//qW`@/ 1 ` %y`-+ ` @E%y`E)`X ɟ%q$!TUUUI$I$E)$! @$E)!z^I$I$$!!TUUUI$I$E)aI E)!UI$I$E)$!* I 1I$I$e)E)/$e)E)X@$I$1I$I11 I$I$1 I$I$1 I$I$e)E) I$I$e)E)I$I$)(I$I$e)E)/ %K$E)a\V$ICe)a I$I$e)E)X&@E)A`Xɐ E)a % I$I$)(I$I$e)E)I$I$e)E) I$I$e)E)*I$ 1"b$P)E)bP\p!!@E)a - &E)x;EI?]u I%q U %q! s"Հ%q` u h%qPc iHWڤkP%)Vj@E)UUTP E)!j$I$E)!jZUUI$I$E)I$I$E)aI E)!Ue) I$I$1I e)E)U5 d" @e)ap)0 E) h$I$E)8U0E)I$I$1"I$I$e)E)I$I$e)E)I$I$e)E)/ I$I$e)E)I$I$1"I 1" @!@$e)E)H$I$e)E)I$I e)E)*I$I$e)E) I$I$1"@$I$1"I$I$1"(0e)b@I$e)bUme)!I$I$1 E)!`$H$E)!jzVUI$H!$!jI$I%)UIE)! I @ 1 I)(I e)E)/e)$!I$I$9)e)@I$IE)bU f1E) 9I$I$9I$I$f1e)ꪪI$I1E)I'9#(1!@615(P$1!@PT(If1! ?$1e)**$I$1E)$I"%1$!jZɐde)!I$'9#1e)I$I$'9#$1e)$I$1e)H$I$1e)I$I$9II$1E)")'1$!^5I$e) H$I$E)!I$I$e)I$I$e)I$Ie) /Iٰ e) I1$!*I$I$1e)I$I$9I$I$9I$I$9I$I$9I$I$9I$I$9I$ 1E)* I$1E) H$1E)$I$1E)I$I$9$ f1!hP`X`1!I1e)I$I$'9#I$I$'9#I$I$'9#I$I$9!I$I$9!I$I$9!I$I$9!$@$I21E)$1E) B"-1pXIXe)b %%H$I$1E)I$I$9$I1$! I$1E)I1e) 1e) *I$I$'9# 1e)$1e)I$1e)**$I$1e) A"If1@HI1$UP&M&f1VZ dI1$9 H$9 $I11 $)@$1@PTDp1b$1E)l[&1e)Xxe1-- Rwfi +#` f*)+K2$mEVR)  iE ((d# fjx K$R(f1TTP@!I 1f1I$I$g9*" $I1$!@1e) I$@1f1  9F1I$I$)I)I$I$)I)I$I)I)9F1I$I$9F1I$I$9F1I$I$9F1I$I$9F1I$I$9F1 I2 91ꪪI$I$)I)I$I$)I) !H91 `B$I91 I$L$91I$I$)I)I$H$)I)II91$x$1a^  1 11I$ 91I$I$g9*I$I g9*I$I )I)I$I$)I)I$I$)I)B"%R$H1I$IPH5 qSiP--- 1uS`fi-/+ ,1wsf+ -+$ E/,mm۶ǩ / 1@@)H$I$1TUUUI$I$g9*I$)I)II$g9*H$H$)I)$H$)I)II )I)R)$I1bpI)1b% j$h01bPTP@H1I$I$9!I$11*$I$11*I$)I)1e)9F1H 9F19F1 1e)P$I$101 I$I)I)$9F1I$11IX$@1b,I$I$11$!I11I$)I)@$)I) I$H91R")@1! 1 I$I$)I)I$I$g9*I$I )I)I$I$g9* $I$)I)1$!N:1E)U\I$N̦1E)UUW`I$I$1I$I$1$I$1E) UUUPI$1E)5UI1E)9F1H$H)I) $I91 $B$! I$I$B$! I$I$B$! 91 I&91 I$I&91 !I$91 7'9f1V 91 I$I$BD! I$I$BD! II$BD! @$I$BD! ! 91 I$I$91 I$91* 91 I$I$B$! I$I$B$! I$I$B$! I$@:1 B$! @`91z Iؠ 91UW~L2$ 1E)I$dB01E) II$9E)? p191VzI$L$1$!I$1E)*$A$1E)* $91U 91 B$! I@1 $I$)I) 9F19F1I$@ )I)%h1E)`P` 9qn9E)%% I$I$B$! I$I$B$! H&9`X1 I$dB91I$I$g9* I$91 I$@ :1I$I$9F1I$I$9F1 !I$9f1* A) kՀ @91^xI$`$11UU\P X1UUpSwEX/-#`s%y +-10 -Ej3@Ey1-IL&DZ1%k%R2DZXZ3!A&` DZ 1hA@ s ۆY1UUUTM۶k 1e) $I$9! \ mٶ9E) 0@S91/ h5ۺm99\z I$I$BD! I$I$BD! A) h$9E) 4IB91 ۰nm691 * `91 IA) A) A) I$`91  91** I BD! I$@ BD! I$I$BD! I$I$BD! L&91I$I$)I)  I91? L$x"9a\VX O$H1 M&@1E)WX`I$I$E)$!I$I$E)$!!I$1E) 5U n9e) * D$91 * j5:A91I$I&91!I$1f1 * I$:1 $C$91ꪪ N(9( Xۺm91說 I$I$91  I$91 91* I$I$B$! I$I$B$!  <@95mm$P8W) `Hj WEP-=-` E 4-&ZiDZ *4/P+5R+DZ4,:l/#ђhzj&3 E_ ?%AZh $%$q9UUUP I$BD! P$9$!p Vi9%) $I#19E)ٕZ@1E)VzImf1$!`IĦ1E)+U 1%) ŖlI$91 91 91ꪪ !`091 91** 91* d$H$91  $91   91 X`9f1 B2 H1I PH** yS7uiP--//" 1S1u%y----%I$1TUUU11% I$91/ 91 91 H@ 9E) 91* @ ɐ91* h%)I9%)XX DQLʤ9%) I$$C9f1 I91* 91 91 I$I$B$! 91  I,91 I$X91Mk1E)<`I211\$I211zp ۶9e) Rm۶11@ (`91 n91 $I(91zj$I 1e)H$H$)I)p ȏH1`sEH+B%wr;%1PPZjI$I)I)I$I$)I)I$I$)I) ۺ11$I$)I)H$Ʉ1f1( ")1E)1E) I$I$)I)  RB&91Z_$I&[1E)*I$$)I)I@$)I) Mm91ꪫI11+I$9F1I$I)I)I I$)I)I$I$)I) mj$1!Tnɖl11 $I$11 vB$)91_ !I91 ۶mV'9e)^$ۜئ1E)]'1$!ZԶmۦ1!XӶmӶ1E)@!$ 1E)￯/؎; 1E)IĔ@1E)IL$I1E)$ &dB11@$I$g9*I$I$g9*lX%1E) I$11mɖ1e) *dB&11__I11/$11@$11ۈأ@1WqTP1P@@@$H211 z I21E) H$1E)H$I 1E)I$I$1e)@$Hf1E)z e)E){(mvݶe)!*!Ie)$!$If1E)kInl1E)I$I$1E)I$I$1E)I$I$1E)I$$1E)H1E)I$I$1E)I$I$f1e)f1E) 9$H$e)$! e)E)x2$$E)!H$ $E)! @$8!UH$I$8$!I$I$@! I @8+IiX8+ qwS iH/  d%yi-+ `%EE1`X x'O$EiE)TUUU E)!@$E)!z^I$I$$!!TUUU!$$@%)!UI$I$E)$!**I E)!I$I$e)E) $e)E)^@&M&E)mE)! 1 I$I$1 I$I$1 I$I$1 $H$)( )(hE)(1 HE)aXe)! e)%)kE)(I$I$)(I$I$e)E)E)! I$I$1 I$Ie)E)**  2e)E)p`$I$e)E)VUUI$I$E)$!%) ! I$I$E)I$I$9!UUU ɟ%q$!5UU %q%) #֐H%qa~ c %qP# `@_d$dP!UZI$I$@!UUUPI$I$E)aIE)!I$I$E)$!I$IE)$! I!@e)E)% @$e)E)H$I$e)E)I$I$1 hE)I$I$e)E)**%E)PE) I$I$e)E)/I$I$1"@&e) T$)e)He)a $I$e)E)I$I$)(II$e)E)I$I$1"I$I$1"I$I$1"I$I$1"I$I$e)E)2[E)!I„ %)b E)!-)@$E)!zWH$I$E)!^UUUI$I$E)aI$I$$!!UUUIE)!U+ !I$@E)$!*I$H$1I$E)!$K&E)bp\X e)b I$I$9I$I$9II$9I$H 9I$I$9I$I$f1e)I$I$9I$I$9 1e) 1e)(f1`IdIf15/P)H1!X` e)! I$I$9I$I9@I1$!jɐf1!% I$I1e)I$1e)$I$1e)I$I$9I$I$1E)$A$I21E)m'1!_H&I$e)!I$I$$!!I$I$e)I$I$$!!>I$ AE)!/Im۶e)! 1E)1E)I$I$9I$I$9I$I$9I$I$9I$I$9I$ 1e)I$1e)I$I$9A$I$9I$I$9I$I9I9 '9#I$I$'9#I$I$'9#I$I$'9#I$I$9!Ć10I$I$9!I$I$9!$-1!`@L1-$I$1E)I$I$9I$I1E) $C$1E) 41- H1e)*81@p`IdI1/%+ 1e)$1e)I$1e) $I$1e)I$I$9I$I1e)p$f1^$IBf1 I$9J If1$H$I1$!p@$Ʉ1E) $A$I21E) $1E)U($1$!`"1"iE)P@@A$iE)*m$e)!@6m;f1I$fQ:Urq( * `N%y*/(.iN -+#3HM}+%B2#=k("l1@?x$f1UUTT$II$1f1$ I$11$I 11 /I$)I)$I$)I) A$I&11$I$1f1 11 $I$)I)H2dB&11$I$1f1$I$1f1$I$1f1 *$I$)I)@2dB&1f1 Ң=1a`@IP1b I$)I) I$)I) $C&1f1$II$11 úmI$91$91MB)I1a\ m1! 11 I$I91$I(9e)  1  @$9F1I$I$g9*I$I$9F1 I$@9$A P@+*=/ yW/%qP-/+"1N %y-- +" ++ /+!۱ǩ /,mI$ǩ//@I$1PTUU `91koP{Nܤ1E)ח$I11I$I g9*I$I$g9*I$11(I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$)I)I$I$)I)IB$A1f1I I1f1* $I2$ 1141E)A$11 I$11"$1f19F1 Z$II9! IB$H91I$I$9F1H$H$)I)1!@xIĦ1aח P1%)I )I)I$@)I)L$L&11I$I$11*I$11  !1f1*I$9F1I$I )I)I$I$)I)I I$)I)I$@)I)I$I$g9*I$I$)I)1f1jI1E)\I$Zh1E)UWxm֭&1ax E) 5!$I$1E)UUU $1E) U W1E)-I$)I)9F1 $I$91 !91 I$I$B$! I$I$B$! I$I$BD! I$91 v2' l9E) Mݶm9f1 91 I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$91 I$I$9F1 I$91** 91 I$I$B$! I$I$B$! I$I$B$! I$I$B$! I$I$B$! b 91^ vb'91UU_zH 1E)I$I$1e)I$1E) M%1E) 0`$1E)jZVZWdž1 @r$1$! $)\B:9rj LIԦ1b 5WO$1( ۶ml9e)I)I)I$I$9F1 1e)!I$ 11 I$91 91 K"& 9VXh JH9   $I$9F1 LB"$@91ꪪI$I$g9* I$91  91 I$I$9F1I$I$9F1  $I$9f1 @!9f1 R91x ]k99e) PSmhe1 )%qfi /-(!PNEyBB 1I4IǩE3-k%ڮDZ/- Iǩ**/%mVkDZ~3!ɃDI@)z'P%9TTPP $II91 tB&91W_Zb1e) 191U PO91 - [3m99z⪫ I$L$BD! $i"91j`ɤN̤1!ז `@9E) d$`$91 ɐdI$91 $iҡ9E) 2фI9!,U  @I9f1 A) $ 91 $I$:1 m91 * LB&$A) I$I$BD! I$I$BD! L&91I$I$)I) @T9E)& L$@ A) m&@ 91M&@1%)VX`I$I$1I$I$1)I$1E) 5U @ I91 I$BD! 5*91xI$I$1e)  I$91 91 I$I$B$! X9f1 `$91 i۴k91 !I91 / I$I$BD! I$I$B$! ?H9 H$@@8 7S1i8+) yɗrq%yP- %y+++)3/a! 41Y2 ۲ %41ɒ`IdDZ3-mضDZꪨ1"" ~) hE~  EE9j yb?%q9UUP@ I$BD! A) 91 I$X 91 ,ۺA1E)` ض І1E)UUUp@$1 DI$1E)?_ )i91/ 91 091zz $I91 I&91 B$! 91 ! 91  IK9E)VV )'H1 PH yW1$qX----"P*)ff9 JJJ$I`01E)1e)*@&mm1E) 6l.1e) %Anl9e)+ !$91 I$I$BD! I$I$BD! 91 hmѶ91 L91% $ 9f1 I$H$BD! I$91 I&91* !91 91   91Hi 1E) c91U  I91 M$M`91 @dI$9f1 m69e)DJ 1E) vb۶M91 1#1E) 1E)@=H1 u.uiH5/ rs%9BBB I0 91HI1E)@$I)I) 9F1  !C91+r I1$! I!91ilm11- I!@91 nm9e)- IH@91 I$$91 I$$91 $`;91 ۤI$9e)_ &I`;9e)U $ ?9E)*U @$9E)U $9E) Uh$1E)hUD؆1`۶$1E)WhIĆ1E)UUI$I$e)E)+$e)E)`[im1E) vb;= 9$!_* qל@9$!S1E)/ )$@1E)/!$I1f1$I$)I)I$I$)I) %1E)@I110 11@`隮 11 kdK1e)(( 11 11H211j$11-H1E)I11@81itX@-- I&I$Xf1UUUTH$I1E)I9I$I1E)mú$1E) $H1E)I$e)%) 1E)I$ 1E) 1E)@$$'9#I$I$9$I$ 01E)I$I$1E)I$I$1E)I$I$1e)I$I$1E)@$1E)ZZ@$1E)@$I$e)E)*H$E)! $L$E)!$@I28$!UUU C&H$8$!I$I$80I$I@! I!IH8+I6e X@ ysD iH yN4 %ya+ <%yE!p x$O$EiE)TWUUI$I$1$E)!^ $!I$I$E)a I$@%)!UI$I$E)!*I$IE)! e)E)- $e)E)`X@$I$1dB$AE)!Z !E)!I$I$)( 1 @M$E)a WVlݖnE) I$I1 E)!@@I$IE)a׾(E)!I$I$e)E)@$e)E)XW0HE)!@I$ME)a(E)! @E) `p@mtIE)+%/I $e)E)I&e)E)X@$I$e)$!I$I$E)$!* $E)!j\H$I$$!!\WUUI$I$E)I$I$$!!UUU5I E)!յI$I$1E)!ꪪ* OEqW %qE) 3@%q`_ ~# iP_vR[ m` jIL2P$!UVh@E)UUUTI$Ie)$!  e)E)5 $H$e)E)I$I$e)E)1 I$I$e)E) $e)E)* X@$H$e)E)X^WUk&[2E)xxI Pe)b-- I$I$1"I$I1"N$re)ZZi&E)bbzIɐE)b%5 I$I$e)E)/ ۰mk&e)!e)!I$I$e)E) I$I$1"`؂%e)`Xae) $I$e)E)`\UUI$I$1 E)!*j$I$E)!^UUI$I$E) !!b $@L$E)b I E)!ۺ5k$E)b`X\d e)a d2 e)!#e)b`e)I$I$9I$I$9I$I$1E)@$I$1E) (e)@I$f1b&I$I$1e)I$I1e)1e)@$H$1e)  '9#$I$1E)I$I$1e)I$I1E)I$9$I$1e)I$I$9II$1e)$I$1e)I$I$9I$I$9 21E)k$e)! $I$e) I$I$$!!I$I$$!!** I$I$!!Iie)!/if1$!* 1E)I$I$9 'L$E)b\^`!e) I$I$9I$I$9I$I1e)I$ 1e)I$H$1E)@$I$1E)I$I$9I$I9I9'9#I$I$'9#I$I$'9#I$I$'9#I$I$'9#I$I$9!I$I$9! 1E)I$He)aVV I$I1!@$I$9@$e)``IX`155 I9 1e)*I$I$'9#I$I$'9#$1e)H$1e) I$1e)1E)I$I$1E)e)bI$ 1e) I$1E)$I$1E)H$1E)t IE)bX)f1! ۖ$e)!Wk$e)!mI$e)!U$I$E)!~_W@$ɐE)!UUI$I$$!!pI$I$d!d I$I$d!d I$I$d!d I$I%)!ﭩ$C$%) IE)շ, ɐdyh%)URwE` +-%PNfwE ++!ma,#X9CnXzz(Cd^z"[-"f1P@@I$H1f1I$I11I 11?/ I$I$g9*I$I g9*11I$1f1 I۶6`91I$)I)dB1f1I$1e)I$1e)I1e)I$)I) mӶ۶ 91r"9 @1bX`ɑ 1a% I$I$)I)I$I$g9*LB&$C1f1I$I11I$$ 1f1I11*  11L$d211VW^x 11%5 I$I$)I)Ҏ=/1pII1-- Nئ1E)8UV @r!Y9E) $>)@1U$I$H8 %IvX@/+/e%yXݽ++! )NT f%q))+ +q۷mۧU,??F,&M$f1@ZVVݐniۭ1e) I1%)**IHC&1E).DI&1E)+ $否1e) $1f1 L@1f1(I$)I)I$I)I)I$I$g9*I$I$g9*I$I$)I)I$I$)I)I$I$g9*I$I$g9*I$I$g9*'N'1bX^B1pI1 IB&I11!2$11I$I$11>$A!I11 nM919F1I$I$9F1 LB@91 R9(I$I$9F1I$I$9F1I$I$9F1 @$9F1H11I$11I$I$11!I$11 *@ $11 $I$11I$9F1I$I$)I) I$91I$$)I)I$H$)I)4h'1!P1!#(I1a`& 1bI$M٦1E)UUWxI$I$1I$I$f1%)UUUNI$1%) U0 s1%)-H9F1 I$ 91 B$! I$I$B$! I$I$B$! I$I$B$! `99 x $I 1 I$L291 I$91 91/ I$I$BD! I$I$BD! I$I$BD! I$I$BD! 91 I$91  $I$91 @$A&91* 91 I$I$B$! I$I$B$! I$I$B$! I$I$B$! B$! #ۀ @91W~I$I&11UUU\I$@1E)$A;t$1! `bĆ1E)XUN$HE)^\on۶f1  1!/)F I1  Ok1 1 HI91骪 9F1I$I$9F1I$I$9F1 C$I91ꪪ۶m`11 I$I$91 @!91**  91 I:1 A$@ :1 $C$A91ꪪI$H )I) $I$g9* H91I$I$9F1I$I$9F1I$I$9F1  91 * &p<9bxx? %Q=-pSwEX/" Ey --"%`/S +++3,m햶DZ-1-I$HB$DZ/)`2 ǩ\B3!dO{/'1Hf1X əI$fQ1UUUT  w91 - I$91UVXI$I$9! vaNl'91UU  91 (B%) mӶk91 u9E)8 I$I$B$! 91 I$H91  !I91/ NI9%)( I$I$BD! I$I$BD! A) L&91 I$I$9F1 Vlt91 * IA) @ A) I$I$BD! 9E)`@JI„E)A,< TZ29E)j_O1a( mU91k&1ax@!E) I$I$1LIĦ1E) %U @691 ! A) h4,h91xI$I$11  I91 / B091ڦmڐH1!1f1 C$@91ꪪ I$L&91  91  $H9UI$I$PHLB2$P@~*9qW%qH%5=-% n^Nᆡi+)؉߇%y)3#A DZ  41ɐ$I$%41I$H$%31I$H$DZ4+ڣ<DZXP@B/(îF>-# hf_z#  q~ 9VZj DH&HEa1UUUT d91 > I$I$A) N:, 91 [ۆm9e)jM 1I$I$1 I$1E) mJ1E) LL1E) @ 9$! %5 91ꊊ $A291 @ 91 $91 P 91Z ]%P%H1NP8yW1%yX---- B=?f1BRRP!$@1E)& %1$!P$Y'a1$!@$I1E)`[,Ɇ1E)*`1e) 11 Pv$9E) / 91+ 91 91 J$m$H9f1 91 "!RR,)9E)((@ HI9E)  91 H$@91 $@91 ɰ۰ 91/*  91 @ 91 @I:1 91 K-91~ I91 I$`91* -nm591 -:C91^^2!"!81$@!H8 /// SiP )-- @nd9E) @I$91UU v$9e)  ,9E) U $9E)U 9e) ۀf'9f1*U L91/ $$91ݖnE) ))I$I$1I$I$E)$!I$I$E)!I$I1I$Ie)E)UUUI$IBe)$!I$I2l1E)UUUI$IB 1!ض 1E)UU O;9E)UU ݺ9 O' @9E)UU  m9E)U =I4I9e)ժ  $E91 IҶd9E)  $I91II)I)@$$9F1@$)I)I$I$)I)  11DJ(1E)<(jْ1E)Dɲ ۆ1E) $@P1E)$A$I&1f1-1e)mɖ 1e) H$ 11 [3,1e))1e) $11`$11\U.)2)81  P8+//mݖX1TTPPI$ 11UU@I@$9!$I$9!h -1!m1$!+L$1E) 1E)@$@$1E)0l۶%1E)Z$1E)Z 1e)`$`1E)$I$1E)I$I$1E)I$I$9f1%)$I1E)$e)$!0d$E)! $!$8$!UUD$I$8$!I$I$@ I$I@8U $AH8+ m.W `@ y%qP+ 9in0%yi+  ,EyE1`У'O$EqE)p\UUI$I$1 @$$!!@P$!I$I$E)aI$Ie)!UյI$I$E)$!**I$I1 )($e)E) z^H$I$1I$I1)(I$I$)(I$I$)( )(K$X-E)T)E) - 1 I$I$1 I$I$1 I$I$1  @$e)E)z^WI$I$1 )(I$I$1 I$I$1 I$I$1 ɰ0`e)! I$C&e)E)p\ضmKE)$I$I$E)$! @$E)!zVI$I$$!!\UU$! !$AE)!I$I$1I$IE)!*Ie)$!*@$e)E)WI$I$)( I$%qE)UU @%qE)  l%qX~  iHN\;P(jݰ &He)UUP$I$e)E)I$I$)( 0`0E)!@P@ IE) $e)E) xW@$H 1 e)E)I$I$1 I$I$e)E)** I$I1" @$e)E)@$I$e)E)I$I$)(I$I$e)E)?I$I$e)E)H&E)!!E)! I$I$e)E)* I$I$1"H%زmE)\ E) I$I$E)!`$%)`^ I!!I$I$E)aI$I$$!!UUUdB&E)jZb  E)bI$KE)U,ٶme)!R e)ap e)I$I$9I$I$9I$I$9I$I$1E)I$I$1e)I$I$f1e)I 1E)۲mۆm1E)jI I15H$H$1e) 1e) '9# H$1E)I$I$1E)I$I$1E)I$I$1E)$I$9I$I$9I$I$9I$I$9I$I$9$1E)-1$!jh$e)!`$I$e)!I$I$$!!$H$!bTUm۶iE)b I0e)! 1$!*f1E)I$I$9I$I$9I$I$9Hf1\f1!I$I1e)I$1E)$I$1E)H$I$1e)믿I$I$1E)I$I$1E)I'9#I$I$'9#I$I$'9#I$I$'9#I$I$'9#I$I$'9#I$I$9!$1e)H$1E)$I$1E)I$I$9I$I9I$ 9I'9#1e)I$I$'9#$1e)I$1e)$I$9I$I$9I$I1e)I$I1e)I $9 H$1E))6if1@I$IE)bU ۶&e) m[$e)!ömI$e)!$I$E)!_WU`$I$E)!x_]UI$I$d!d I$I$d!d I$I$d!d I$I$d!d  !b@I$I$ bU$@$!`P`IIE) I$ e)!u I$$A1!UIne)! IB$I1E)UI\m 1E)iH1E)+ wٶp1 )%%lʮ7fiKe+ _܇i??)DI$FjUU IE?5"S'&yM$Z%F1VVPP$Yp$1E) 1e)I$I$)I)9F1I9F1I91  I$:1 I$I$9F1I$I$9F1$1!($I$)I)9F1I$I$9F1 I$I$:1 H$I$9F1H9F1I9F1@$ 9F1 Y'1!0W I1%) $I$91I9F1I$I$9F1 II$:1 d0H91ꪪ I! 91I9F1  11k*m1E)I$ 11.@$@'81I$I$@! ivP8//%yP % ɟ%q+%%۰ ɕ$E**U%)&f1@@Z ]I91 m `}$91WU ]`9e) ?w9E)/ mۮ 9E)I A1E)**@$L$1E)жi&1e)I1e)* ml$1T =sb?1b`Xj ɕH1 5 I$$91I$@)I)I$I$g9*I$I$g9*I$I$g9*@1E)P@1$!I$I$)I)H$I$g9*dH$A1f1 11I11*I$I$g9*$A$C&11I$11 ۰m$91 H$@$:1I$I$9F1I$I$9F1@9F1I$)I)I$I$)I)9F1$0 1f1I$LB"11I$I 11/ȄI$11( 11I$H$)I)I$I$)I)I$I$)I)1%)p 1E)I$I$)I)I$I$)I)11`v"Ւ1E)_pI$sȦ1E)UUVI$I$E)$!I$I$E)$!*PI$1E)%UU  IX9E)* I$:1 91 I$I$B$! I$I$B$!  9x y9-  91 I&91I$I$)I) I$91/ 91/ I$I$BD! I$I$BD! I$I$BD! I$I$BD! @91 L$` 91  I91/ $@91 I$I$B$! I$I$B$! I$I$B$! I$I$B$! I$I$B$! 91zપ m۰ 91UW^b")I1E)^`I$K%1E)UUV\dI$1!IB'M1E)U^bI$I$1Id1E) )&aۦ1e)* DIX91 I$H$9F1I$I$9F1 d$L&91&-R")1b@P@ !IL9b)%% I& C91I$I$g9* I$91 B$! I$I$B$! A$:1 II$9F1 I$$C91I$I$g9*  91 I$H :1I$I$9F1I$I$9F1 " $I9e)@ ** @$91 T`9 )% pSyfi+/-(Prf )1%DN%{DZ/1-C $HDZ/- I$ǩ **/%kZ ,(1!:` -O'z=f1W\\p$@$I21e) TI\9E) :R91^x`dB&L$1e)vI1e) ** vx91 /= @(B%) I$L0BD! I$I$BD! I BD! 91 $IH9 @IĦ1!,U $I4I9e) @$91 $A$91 $ A) I$@91 $A2L$91 P 91?  A) @$I$BD! I$I$BD! h@9%)11 OJM9* L$`0A) L&@`9^XI @1aI$I$1I$I$1I1E)  91 5U $A)  49`@I$1a 7,4LI1`I$I$E)a| PI9a -5- 91 `091ꪪI$I$g9* B$L$H1IIPH/+/. I.iP+ w+%iP.(/ I %y +ɝI$EՕUT3 E 31 %41[2$Y %31A$I$%41aɖl%1-IH$DZ1)@X-hf~蠀%3 i%y~u&%%9Z #%I `9UUVB I$BD! A) @`91 X 91n"$I1E)I$L91E)I$I$1E)7d Ħ1E)/ Ik91 0-&91/ 9e) چdH9e) [5X 9e)j )91 [%@$H1NM X8***yS1qE`----C$J$f9PTTT &)H9e)jj 9e) ֶj h91`$@11\ I$@11UUP 01E)(*j@&1E) HB&$A1E)11 I$91 !$91  91 / I$I$BD! 9E)@  9e)   91 I$I$BD! $91 $ I&91 K֤j'A9$!׼ $C 91ꪮ/ B&`91 M91 $91 I$I$B$! @$9E)PP dB91 B$! I 91i`RX8+{%yH +M^h%1VVTT IB:91U0 Ib'9e) '[9E)UUz M@9E)UUՂc; 1E)___I$I1E)UUUI$I1E)UUUI$Ie)E)UUU  $I9e)`@ ! 9e)  I91U I 91 !!91+/ @$91 `@91 h 9f1b** 4` 9e) @  91 DJ$ 9E) * dKm9f1؆%X`11PP I1a91 ! $91I$@$)I)J$ $I1E)< /&1!P$I 1E) KI9e) I$$91 II91%P1E)@ 9F1$9F1Xm۶11Pɰm1E) ۖdI1e)**I1f101e) 1f1@$112$$11|U*5z1!-1$! jI1! أ@1J1P1@@@ I$I&1e) H$1E)@$I1E)I1E)'9#$1e)$H9I$ 9[1%)ZXl`1E)Z$I$9I$ 9 @$'9#I$$1E) H$1E)LH$ e)$!([$E)! IE) $I$I"8$!UUU$A$H$8$!UI$I$80I$I$@! I@8 IiP8+  iH r4%yX* )YR4%yi+  ,EyE9`'O$EE)XVUUI$I$1 $$!!I$I$$!!\WUUI$I$E)aI$IE)!Uյe)!I$I$1 )($E)!H$I$E)$!I$I1)(I$I$)(I$I$)( E)!M$E)a(W۶mE)1 I$I$1 I$I$1 I$I$1 I$I$)(I$@1I)(I$I$1 I$I$1 I$I$e)E)I$I$e)E)**?d$e)E)XVز۶mE)@I %)bU&$H$E)!^WI$I$E)I$I$E)H$H$!xA$A !Ab  %)a -- I$IE)!* 0@$E)bXP E)a -I$@)()(I$I$)(H$e1E)WU I%iE)=U i[iE)= C iqX_u iiH_~ i' ѣP$)Z@HE)UUT@e)E)j* @E)!H$H)(e)E)I$I$e)E)I$I$e)E)I$I$e)E)*  $I$e)E)$@$e)E)\__ )(I$I$e)E)/I$I$e)E)$H$e)E)@XVZ@$ E)!E(e) 7 e)E)x$I$e)E)pTUUI$I$1$E)!Z@$I$E)!z^UUI$H !bTXh ! I$IE)!UU) E)!* I$I$1IIe)E)U !Ae)E)-I$I$@!I$I$9I$I$9I$I$9I$I$9I$I$f1e)I$I$@!I$I$1E)I$I$9 I$1e)I$I$9I$I1e)I$I$1e) I$1E)H$I$f1e)I$I$1e)ꪪI$I$1E)I$I$9I$I$9I$I$9I$I$9I$I$9 1E)$I&f1$!k&E)jh۶ie)I$I$e)I$I$e)I$Ie)!Nbe)bV$e) 0e)@e) I$I$9I$I$9I$I$9I$I9I$9 H$1E)@$I$1E)I$I$@!I$I1E)I$I$1E)H$@$1e)I$I$9 I1e)I$I$'9#I$I$9!I$I$9!$1e)@L1 $I$9I$I$9I$I1E)I9I'9#I$I$'9#$1e)@$1e)$I$9I$I$9I$I1e)I$I 1e)I$9II$1E)$I$1E) &1$!l&e)!I$e)!d۶c;e)jI$$!bU$!P! I$I$d!d I$I$d!d I$I$d!d I$IE)!UUu I$IE)!յI$61!UUISD1!U IҶZ 1!UNm1mÖ1!j!I1  @1E)!A11-$11$ C11`+dI1e)*I$11$IX1UUU 6w[iH/=Zfi-# n %y?/U%$IO$EUU#h$O$EyWUU`2&[%%y1PPPP1E) @11I$I)I)$I$)I)@$I$)I)I$I$)I)$I$)I)@$I$g9*,)&I1E)I$Me)A1E)I$I$)I)$I$)I)$I$91 9F1 9F1I9F1$9F1M"P1^ TII1E)I$)I) 9F1I$I$9F1I$I$)I)9F1 I2$C291@$I$)I) $!91919F1J@9Iڤ P8* ɟq@ ۹] fX f%q   E9@H'oE1TUUU 11eI$k1e)(ٲ5`1e) 1E)***  &L$1E) q:91UU  q9E)* v4T91UpU I:v9f1U]I$d @1bUT\I f1 I$If1!6I$1E)0i$1E) Iۦ1e)6ۖn11 C511p`P#&͆1`X`99p1 5 I$I$g9*I$I$g9*I$I$)I)I$I$g9*I$I$)I)I$I$)I)$C$@11I$`B1f1I$I$11I$I$11/I$11 ۶m)$91 .91K$1!0W$I1E)9F1H$9F1 9F1@$@$)I)I$$H11a$L$11 $11I$11/$I$1f1I$@)I)I$I$)I)$I$)I)I$I)I)I$I$)I)`1E)`$I$1bUV-iDH1I$1E)UUpI$I$e)E)UUUTI$I$E)$!*`Wۆ1* Iw1E)5 I$91 91 I$I$B$! $B$! !N91VUW 091 91ꪪ IB&91I$I$)I) ۴-9e) 9f1 I$I$BD!  9E)@ .9E)5 I$I$BD!  91 L$L&91 !291 91+ I$I$BD! I$I$B$! I$I$B$! I$I$B$! 091`11XmӶk 1E)ꪨIt1!I$I$9`B)@1E)Xj*m۶he)dI$1E) UU IP1E) % S$91U ۶91 91ꪪ@9F1 $I1b9F1 dB2$A91ꪪI$I$g9*  I$91 91 I$I$B$! @ B$!I$I$9F1 H&$I91dH$1b0W  J1  91I$I$9F1I$I$9F1 tI$91 P 2X9UpSqEX/-& /SE --+"vmt/1+mٖnDZ1-L&`B0DZ/!"$If1#%1H1p _?Ie!M$Me)!>, /u9f1 - t":<@9E)Ii1e)$2d$11?}_W  x91 5 (B%) I$`0A) I$I$BD! I$I$B$! 91 * I94 I$I$9F1 I$I91  91  I$I$BD! A) K%`91I$I$)I) )91 / I$A) I A) I$I$BD! L&91I$I$)I)  91 I$`A) N"'91W^xK%`1E)VZjI$I$1I$I$1It1E)+-5  1[91 "I4I9e)@ I옐@9A.I$I$11 BA@R9E)j* 9  B$! $I$:1H H1UUH0IviXH/+{7gEX/ fi*1 ?q[%y %/?4J'4ET\p`/_9sF-=-3)D@DZ 41ɒ$I%1/IDZǩ31I$I$%4--'R"$DZ3-`DZ 3+#IZ蠀/!h)chiZꨀ fXꨠl9UZj mؖma9UUUT A) I$I$A) M% `91úmۆ-11@I&\A1E)L f1$!&I$1%) 4IIX1E)%  k91U 1`91 I$I$B$! I091說 K$J$H1ItI`PquS7qE`---/H'f9TUUU  Kڤ91 91 I:1 h9f1ꪪ I$h`9f1#I1E)`m(1E)! 11$ $11@$011?p!11 k[511(`b m^591}}  v91 " @91% 91 I$I$B$! #991zz vb'9e)__* H$I91 Im۶m91/ @$ABD! @91 IB&@91 k6ۂm91 91 $@$91 I$91 I91* ʍȏH9 /qSqW%yP/䀦9PZZZ   B$! 91 @,91Zjj Pl91+) I$I$B$! H9f1 ɰmۺ591/ 4IV91/= I:1 91 $91 91ꨪ  A$ &91 $91 @$91 k&91^ !91 @ 91 uJ9E)  I&dB91 $C$ 91ꪪ IB&$ 91 a&$91 I91 *%Ph9E) kM 9!Z*   `9f1 ۖ)ж91 ;-I1E)h H$I1E)@$I )I)I11>>I )I))$I1e)I@1e) l1E) H$11 L$11%WV$I$@011 c$I`$11XU$1e)I $1E) "h4I1$!`! I1$! ؐ-Ţ8f11SX@/--I$HH`e)UTTT$I $1E)1e)$1E)mɖ 1E)%I1e) 1E)  1e) زm1E)jjۖm1E)I'9# '9# `$1E)I$ 01E)I2e)!I2$C2E)!I$I$e)$I$8$!UU@$I$8%)I$I$@ I$I@8U $AH8+ n `@+ } qP n4 %ya* n4%y%q- 4I !EEq*J@={$EE)pX^WI$I$1 @$E)!z^I$I$$!!xWUUI$I$E)I$IE)!UյH2%)j@!E) -I)($E)! I$E)!I$IE)!*  @$)(I$1)(I$I$1  E) IҤ[ E)Aֺ @E)!I$I$1 I$I$1 I$I$1 $H$)()(I$I$)(I$I$)(I$I$)(I$I$e)E)?I$I$e)E) @$1I$I$1I$I$1$H$E)!z^UI$I$d!d $!` ! 5IE)!E)!ꪪ!I$AE)!* e)E) h%؊mE)bxI0E)b- I$I$)(I$I$)(@$I$1I$I1)(I$I$E9E)UUU Id%iE)= [li` m2hiPc `HW~֤kXE)Vj$I$HE)UUUPI$I$e)E)I$I$1 I$I$e)E) @$@$E)! E)$! I$I$e)E)@)(1 I$I$1 I$I$1 4@ E)`I$I!b*I E)Օ&H$I$1I$I$E)$!*  H$e)!~WI$I$E)aI$I$E)aI$I$$!!UUUIE)!ե  E)!@HI$I$!bזm e)!*I$I$@!I$I$@!I$I$@!I$I$1e)I$I$9$9I$I$@!I$I$@!I$I$1e)I$I$9I$I$98f1!Xf1! I$I$1E)H$I$1E)I$I$f1e)I$I$1E)I$I$9I$I$9I$I$9I$I$9I$I$9 1E) I&f1$!ضm$e)!@$I$E)!@$@!P`I $!b5% I$ IE)! In0e)!  e)E)I$I$9I$I$9P8 e)p`I1@e)%%  1E)jjALe)6m1E)$I$1E)I$I$@!Ae)I$I$1E) A$9I$I$9I$I$9 I1e)I1e) 1e)$1e)**I$1E)@$I$1E) -'e)bXI$Ie)b7Օ%$H1E) I$9I1e)$'9#H$9$I$1e)I$I$9I$I9I$9)f1!H$$1E)$1E)_[$e)!M$e)!X&I$e) @$I$E)!zI$I$$!!I$I$$!!+I$I$e)I!&LB&$$!\P@IVE) I e)!յ Ive)!*!If1E)UI1E)vl6E 1E) I l1E)+I$11H$11 I$11$I$11$I$11I$I$9!I$ 11I$I$11I11*Km1e)(I11*A11H %X1*vEyH5( i ,EyU VU+$I$EVUU#hR'mR'%1XZZ^I$I$g9*@$$11!$11ضmk$11W6m$11Uۆm햶11  $1f1I$I$g9* 11k7`m$11(U$11:$I$1f1I $)I)II$)I)$I21f1`[611~۰m$11*U $$1f1$@$$11H$I$)I)I$I$)I)$A$11$9F1I$H$g9*I$I$)I) $!I91I$I$9191p` yO1 - ("4H1%I$I$H@iS6eXH-qws7EX-/!1R`E--+ # 1@%@$H$1PPTU$I$)I) $@I$91 C $91ꪯ IB$91 M۶ 91 m@91W$#@1e)I1E)L$`1E)($C&d21E)ݐi61E) tI$9e) s2N$9E) I&9e)x I$S9E)Fd=1pMxf1 %I$1E) ݰۖ1e) m9E) km91 I$$91I$H)I)I$I$g9*I$I$g9*I$I$g9*Ƞ#'1b`X1b I$)I)L$@11I$ C11I$I$11 $I$11KE1!V0m11@41!`` Ie)P)1$! H$H$)I) I)I)I)I)  I11I$$11I$I$11$I$11 ۺai91꪿I$9F1I$I )I)I$)I)$@1f1m(Q@1I$I$)I)1f1[#i 1E)`3'1ax`  E)b 5%)I$I$1wI$1%) U s1E) %  I$:1I$I$9F1 b$ $I91 91 I$I$B$! I$I$B$! 91蠢 >9!xx W1J9!/  $91  9E)p`m:1/*h 9e) I$I$BD! 91 d091 I$I$91  $91 I$I$B$! I$I$B$! H$I$9F1 C91ꪪ I$91  9e)@mN1dB$ 1E)"%f1p`1 e)b %% m6h&1bxxE)b- I$1E)`Sۦ1e) * DHS91I$I$9F1H$9F1I$I$)I)9F1 $C$I91ꪪ I$dB"91I$I$g9* @!91 I$I$B$! I$H:1 I$I$9F1L1bV ٖm&l9E)  I$91  91I$I$9F1I$9F1  $I$91* 1wIh9*) Nwfi +-(TIJ /%6p==1-$CIDZ/-I$H$ǩ*/P%@`EPPP1v@/E -~"?1W\\p mk9e)$@$C21E) &pə9E) ?j.ZAB1^z Nb't:91UW_~$A$C1e)* `N191 % 9f1 mZ+91 I$I$B$! I$I$B$! I$I$B$! I$@91 $@d$91* 91 / I$I$BD! I$I$BD!  A) H&91I$I$)I) P)91 / H$I$BD! I$I$BD! I$I$BD! L&91I$I$)I) `X91 / (B%) M2'91W\xLB'ц1E)W^x`I$I$1&H$E)ax^x1b -91 ݚbn91 u&Z91I$I$9! t91 @$@$:1I$I$9F1$p$H9IIPH++ w1giP--ys7fi--+(n=fU I$MfEy4"@E@6`IfE3P DZf 31I$H$%4/jmR4DZǩ3/$ !DZǩ4,>aDZJ3 IDE41۲m؆mDZ3,kh /(DZ-Z f" 3 i$q~ꠀSk$e9Z Infi9UUT@   I9e) )/9E)`p  9E) ֶ 91h$I1E)I$jȦ1E)xII$e)E)/ I$1E)[NĆ1E)( I&91 9f1 H$I$H9X`P%---߽xe9nnB 91 I$@91/** I91( dJl9f1  $:1 H:1 @۰ 91 ۦ 9$!`@6ٜɆ1!I 1%)*  $H11  IL11dBI11_I$11/I$11? IM۶91KdKu11  $91/ J@91*?  `91`` 91 I$I$BD! 91*  91 I$I$BD! H$I$BD! $H$91  $A) @91  91 R.bH1 i@+%y9j@@B $2!91   91 *9E) `IJ91  P I91 91** P$91XX 0$m9e)  91  9e)@ 9e)  91 `$91 !I91 I91** k$91^P ! 91**  91 @91 I$I$B$! $91 91 @$:1 I$:1 $I$:1 $I$9F1 LȄL91@$9F1I9F1$211 1f1  @&1f1d$1e)$I$11-2`1e)mж1E)k&1E) 1E) ! & 1e)1e)$I&d1e)*d1E) 1e)غ5k61E)~m!8)itIP8 +//]bX1PP@@@1E)$H2$C1E)$1E) L@1E)/>*@$@$1E) I1E)H$ 9 '9#d1%) H$1E) I$I21E)`X$e)!غ5ME)!I$! E)!$I$$8$!UUU2$I$8%)I$I$80I$I$@! I@8 IiP8+ . iHս* yD %qX+ yD %yi+ 1EJ E%y$  EEq* @=z$EE)x\W %)E)!]H$I$$!!\VUUI$I$E)aI$I$!!U5  0`0$!`I$I!a5I 0E)% $E)!X5k%E)xtIE) -='  @$E)!I$I$1I 1 )(I$)([&E)AxɐE)b %I$I$)(I$I$1 I$I$1 $H$)(I$I1)(I$I$)(I$I$)(I$I$)(I$I$e)E)/ $H$e)$!I$I$E)$! E)!$I$E)!j~WUI$I$E)I$I$d!d @$@$!a`I %)a-/ I$I$1I E)!* $e)E) Xe)E)H@$1)( )(-[$E)p\nɐE)A - 1 I$I$)(I$I$)(IDI$$QE)U M-iH+ (IS%qa Ւ%q`~ c %qP# `@_dPE)UZ@E)UUUTI$I$e)E) **I$I$e)E)I$I$)(I$I$1 I$I$1 I$I$1 I$I$)(I$I$1  e)E) j $Ie)!I$I$E)$!$E)!z$I$E)!^WUI$I$E)aI$I$E)aI$I$!!UUIIE)!/I$I$E)$!0`$E)x_6ae)b* %I$I$@!I$I$@!I$I$@!I$I$1e)%f1b@P e)I$I1"f1e)I$I$9I$I$9I$I$9I$I$9`'@e)hx11` e) - I$I$@!I$I$1E)I$I$9I$I$9I$I$9I$I$9I$I$9 9l۶5e)!d$e)!@$I$E)!I$I$e)I$I$e)I$IE)! In۶e)! Ie)%)I$I$@!I$I$@!I$I$9I$I$9I$I$9I$I$9$1E)Mu۶me)!  @!I$I$1E)ۺ!m1E)jN$L&f1VUVXf1I$I$9I$I1e)I1e) 1e)@$1E)@$I$1E)I$I$@!I$I$f1e)I$I$1E)ꪪN$He)bVW06f1I$I$9I$I$9I$I$9e)$I$ 9I$9 $I&1E)H$1E)1b$E)@P\ I e)b$I$E)!H$I$e) I$I$e)I$I$$!!I$I$$!!$!b@Pm۶me) I$m e)!/IҶ`e) IBe)$! $I1E)着I$I1E) I$1E)I$@1E)IH1E) I9 I$I$9 I$I$9!I$I$9!I$I 11I$ 11 I11 11 @$I$11 11H$H1111$11$11@$11 $I@1UUwqX@/-wEX  .@F%y !y[mEUH$K$F1TTTTI$I$9!I$I$9 I$I$9 I$@9 I$I9! $I11*11I$I$g9*0 11`pI$I$9!I$I9!)'N$1a VV@! 1 I$I$g9*  11@@mdž1! WW۶mf1E)!I$ 11I$I11 I$I$9!$I2$C11zzI$I11UUH$I$11I$I$11*@2dB&11z^^ 11I$11/`Цm1E)@!TIm1$!@$k$@1 I$IH@+/qWq`H--+1N7Ei---/"1a &Rf # @"%1@@PPI$I$g9*I$$)I)I$I$)I)1$!I$I )I)I$I$)I) !$I$91 I$91 LBI$91 mж91 CD91_ vB$ @91Ui۶1E)IҤk 1E)(I$Mf1E) A$I$1E)X-۶mf1apɗ'I1% I5$1E)i6Xm1E)$I2$1E)i۶1E)mI$1E)mٖ$1E)0ݖn11 $ @1f1 I$@)I)K"&H1b\pVmIR1 +*11I$I$)I)I$I$)I)I$I$)I)H11I$1111H$I1%)@ϗ I1(01%)@9F1  I$I919F1I$I$)I)$I$)I)II)I)IB&1f1I$I11($&I$1f1@ $11I$)I)I$I$)I) $I$)I)H $)I)I$H )I) $I$)I)@ I$)I)i I@1$!IB' 1E)U^`I$I&1E)UUUVI$I$1I$1E)-U m喗9E)*$@21f1I$I$9F1 I$:1 91  B$! " I91j ! @ 91 I$L091 ɐ$I$91/p$hԦ1aX^ ! 9  I$I$B$! I$I$BD! I$I$BD! 91蠀 I$L091  I$91/ !91 X$9T 91 I$I$B$! @$9b`p D1b%5  ђ(91WxmӶk 1E)I1$!Hf1`N@1* *C'p&1%)z^\XlI1E)+UmѶm1E)* d191 $I91H 9F1I$H$)I)I$)I) $A$91I$)I)I$I$g9* I$91 B$! ۆ91j I11 ?? BH91ꪪI$@ )I)I$I$g9* $ 91 I$I$9F1I$I$9F1@X1UpS7EX+/&/sE+/+%1A`5+./(mݖ1,%òDZ_{/%I۴M1$ML$E**VT/ |@9pSuQ1_C: ѧ91UW_zI$1e)WɛB1-UXAB1Zx 91UUWTII$'9# %n91 - X$O$9a0VV @!p9  I$I$B$! I$I$B$! I$I$B$! `&91I$I$91 @!91 / I$I$BD! I$I$BD! i"a9E)@xNf16ןmm91 @!91 / I$A BD! I$I$BD! I$I$BD! L&`091$A$I&91 `X91 / @ 91 H91W~N$j41E)UW\``0E)bxm۶mE) Pn.o?1j 0&9 - A) N"; 91 I$11 *@!91 &I.(H955H$I$HHTUUU !AXH/+ ݽiH ط}%y1RVU&kFE)5+/>;EZXx|4\E53MH$ETT/`!SE /)-3/ DZǩ4/E*-ڪDZǩʊ3/! DZǩ/41ɖId%4IIE>3-0DZ 31@$@ %1/I$DZ3(#S+X, 3 ) =%%qP}fi_~q9VP $I@`9UUUP @&$I91* @$x>9E)PP\x #p9E) iM591rH1E)<I$L91E) e)%) dئ1E)?$%I1e) H8@@@ i8%%%+ ^b%UR$9RRRR  91 I91* $91 I$I$B$! I 91 $I`91  I$:1 B$!  91骪  m9E) I$k9f1@11$ 2B211|@j0 11uɐ۰m1e) $C2$11I$1f1*I$1f1*$@"I1%)$$IB11 0d9E) !$91  91 I$I$BD! I$I$B$! I$I$B$!  91 I$I$B$! P%9E)XX  d 9$!)) )"IH9Ue 6aSXH--5/Sye9B  91 * $I191 eITA9E)?  I$A91 LB$ 91 ٶm6`91 I$I$B$! H)9%)h @$I$BD! ؊9e)@ TIi9e) @91પ 91  91 @!91 $I$91 !91 $I$9F1 I$I:1 !! 91 I$ $9F1 !@91 I:1 KD9E)> @$:1 H$I$9F1 m&91 6l[$91L$11DJ$I1E)<<I$I11۶m51e)$I@$11PU$I$11PUU`$IB211XUUI$$9!@ 1e)ꀪII;1E)*I$9  L$11WUKڤm 1e)I$ 11UիI9!R1!`bKI)(J $!H8//-NRaH +/-Iۊmi1UUUT 9 I$I$9!$I1e)*I! 1E)1e) `1E)jja۶m1E)HĀ@e)0lK$e)!Tk$E)!I$IE)! @ E)!0 K$8E)UH$I$8E)I$I$@! I$I@8U I$AH8+ `@+ } qP {s4 %ya* ko4 %y%q- In۶E%yIE%yس'E%)xVI$I$E)$!@$H&%)a`xx I$!a -- !$C$A$!  E)!E) ꪪ*IE)' $E)!H$I$E)!$C$IE)!j* )P $E) `ؖmɖE)a5I 1$)(@$I$1I$I1k4E)axIE)a I$I$1 I$I$1 $H$)(I$I1 )(I$I$)(I$I$)(I$I$e)E)ꪫ+I$I$e)E)+$H$e)$!I$I$1$E)!z@$I$E)!x^UUI$I$E)I$I$E)I E)!յL$@%)b^X` @%)a I E)!* I$I$e)E) E)!<I 1I$I10&E)bpX$I$%)a VUk5E)axIE)a I$I$)(I$I$e)E)I$I$1  @$)(@X8 `N7iH + P %qi  m6%yi #@%ya_~  qHؤ XE)VZP@$I$e)E)jTUU )(I$I$1 I$I$1 I$I$)( E)!M$E)VUmE)H$I$1I$I$1$H$E)b@PTZ !b I$I$E)I$I$E)IE)!U*I$I$E)$! I$IE)! $C&@E)@p@I$ e)_1`e)b I$I$@!I$I$@!I$I$9@!H$e)TP@ f1% I$I$f1e)I$I$9I$I$9I$I$9 1E) H$1E)I$I$1"I$I1"I$I$9I$I$1e)I$I$f1e)I$I$9e)I$I$9,e)!,K$e) H$I$E)!I$I$e)I$I$e)I$Ie)! In۶e)! $&E)b@P E) e)E)I$I$@!I$I$@!I$I$f1e)'e)`X`Xe) %$I$1E)I$I1E)I1E)1E)I$I$9I$I$9%@1`X`D 1b) 1e)$1E)$I$1E)I$I$1e)I$I$f1e)I$I$1E)I$I$1E)I$I$9I$I$9I$I$9I$I$9I$I$9I$I 9&!&if1@I$IE)bU,@&1!lX&e)!&I$e)!`$I$E)!@ $!b`I!bUI$I$$!! *I$I$$!!I$Ie) I$ e)!Il۶e)!N"&e)bVP@ɔIf1b$I1f1$!$ 1$!*  I$9$H$1e)I1e)*I$I$9!9!I$I11**I$H$11I$H$11  11 $&1`PtH\1 =I$11* I$11I$11AL$11 VUH$11I$I$9 I$I$9!I$I$9 I$I$9!I$I11ꪪI$I11>@ ģH1 psq%qP N. Fi PFEKF1TTTTI11 1111  11H$11$1111I$I)I)L$L$11I$I$9 I$I$9 z"H1a IH1E)I$I$g9*$11K R0I1! 1f1I$I$)I) :1!xDT1 -11 I$@11I$I)I)IB&$01f19!!I11I11 LB& 11W^x !I 1f1hH$I$@1dHIH8 ysq@%  1u` f%q-/+#qnf-/#B$M$F1PVVV$I$I2111f1 $I2$H1f1K$K1!TUT1$!I$I$)I)I$I$)I)I$ )I)I$I)I)I$I$)I)I$I$)I) $I$g9*@$ɐ1f1 LI$91I$$)I)b,I1e)v"9H1E)I$1E)I$M-1E) $A 9I$1%)*II$9I$1E)ꪪI$I 1E)I$I$f1e)vmۦ1E):@I$1E)+@$1E) @@R1E) I$@)I)I$I$g9*I$I$g9*I$I$g9*I$I$)I)I$I$g9*I$I$)I)H$11I$H11I$I$9! 211 mI919F1H9F1H$@ )I)I )I)I)1@I$1b,U" I1E)I$I 11$11 I$1e) kl91ꪭI$H )I)I$I$)I)I$I$)I)I$I$g9*I$I$g9*H 11"I@1E)`I$1E)UT@I$I&1E)UUUTI$I$16m$1bjZV0IL1b $A!91 H$I$9F1 $I$9F1 I$:1 $:1 I$:1 L091ꨪ1b( I$91 91+/ I$I$BD! I$I$BD! I$I$BD! I$I$BD! L091 I$I$91I$@1UT !@ 9  I$I$B$! I$I$B$! @ B$! I :1 @91ꪪ I$91UW~kۆm1E)x  1E)$C$I1E)iۺa1E)Um$I$f1!*@1E)+I$11 U $IJ919F1I$H )I)$I$)I) 9F1H 9F1I$I$g9* !I$91 91 Hl91 I$:1  :1 I I91A$I$g9*  $91  2@091I9F1 1wɼh9 )) Rwfi +/(TA& f /%pS ++1-$A$DZǩ1,I$H2'DZWV_3J$$iETT1AE -M$z'9WW\X 91x I$b091UW^xI$I$'9#6ɟ$B1-UUvB1X` M&9E) I$11%5U k@r9" *  9f1 I$`0A) I$I$BD!  91 91 / L&91I$I$91 @!91 / I$I$BD! I$I$BD! J$I9$! L& 91I 91  91 * &i`9( 91  91*r$LƧ9E)nm91 @!91 / 駩ETX@!/yE 530DZf31II$%1/HH$DZǩ3/$ $DZǩ4-`$C0DZ3-ɐ DZ //31%31I$I%4-C$ DZB1,IdK DZW~1 Z"%@%yPPP- ah%y驉# v m%q~~^c%eAj Vm1h9UT` R"II91 A) A) L(&I9E) EӶm91{:*1E)۱ ڦ1E)6mS7Hf1UIIPH//// 1SiP-//+ j˷J$%q1TTTT 91 I$I$B$! $091ꢪ  $I :1  $91 I$I$B$! @91" $C&@ 91 !91 91 $@B$! @91 I&l91 Im 91H„L11T#: I1E) )nݶm9E) HҶm691I$@1f1!!I11H a1E)(11 H$@11 !$I$91 i91 i91* д91 91 H91 $91  H$:1 vɍ܆I@%yP+++?z%9UTTV I 91 B$! I$I$B$! $I$91 $I$BD! @$I$B$! 19!hh I $BD! [`m91  m91 ! @91 x.9E) 091 !I$I91 ** I$91  91* H91 3;9e)VV  n9E)  %9E)PZ 0m691 I$91 (&I$91$I11?I$I11Md+1E)>>$I$11U[1e)&m&1E)I2dB&1E)$C2 01E)I I$9!$$I11UUI$ $11UUTI$11U `U$LH1E) ((`IH11 dB11_ 11@d1%)I$11*HJ$1E)T9 `&J1E)XXTȏ@1W`@// I0DB$a1TPPP$H9 I9  9 @@%1E)PX@$I$1E) @! I&e)!ضk$E)  C$IE)!~ PDE)@$8E)UU@$I$8E)I$I$80I$I@8UI$IH8*ImX@U+ . iH v4%qX  yْD %yi+ 1IJ E%y!I$E%yhX$EyPT I!E1$!$$!! C$I&$!ਪI$I$!jI$! .H$I$ a|\ E) IE)! $E)!H$I$E)!I$I$E)$!**I$I$E)!@-۶ E)b`ItٶE)a5- )(H$I$1I$I1)(I$I$)(I$I$)( 1 $I$1I$I1 )(I$I$)(I$I$)(I$I$)( e)E)*z@$H$e)E)X^WUI$I$E)$!$E)!H$I$%)!ZVWWI$I$E)I$I$E)I E)!յI$I$1I$I$E)!*I)( E)!ڤE)!jUH$I$!a8׾ E)!  H$1H$`2E)a\^xII$E)b=E)!I$I$)(I$I$e)E)*+@%K$E)a\VmnE) I$I1kX@E) S1XX@/- S%qX ++- !R %yq d"@Eyi C i%yiz l@q9j I$IiE)UUUT1  dB&E)! E)  I$I$1 I$I$1 MضmE)VE)! E)!j$I$E)!zWU@ @$!`  ! I$IE)!UU E)!I$I$1I$Ie)E)UU  A$Ie)E)% $@!@!I$I$@!I$I$9$@!@$I$1"  @!9 $p&f1xx  e) I$I$9I$I$9$1E)@$I$1E)I @!9e)E)P$I$e)b0WV`e)I$I$9I$I$9H$L"e)WV&mE)@$I$E)!I$I$$!!*I$I$$!! I$IE)! In۶E)! Ie)E) $N$e)b^^ c1E)b@   e)b[$I$E) VV`!`e)I$I$1E)$1E)2e)` J$E)b I@!I$I$1E)8e) pe) I$I$9I1e)`,1!`۰mޖL1*-@$I$1E)I$I$@!I$I 1E)I@$1E)I$I$9I$I$9I$I$9I$I$9I$I9I$ 9$(#9f1@pp&If1b /&1E)Wmk$e)!H2I$E)!H$I$$!!H$I$e)I$I$$!!I$I$e)I$IE)!/I$ E)!/It۶ E)!Ime)!/I$I1E)!I$1E)$,;f1|A1!$I$1e)b"9)f1$!xx``-m$E)bzVI1b 51e)*1E)*I$I$9!!!I11?I$11**I$$11H$C&11z_@$11l1@ɐ1 I$I$9!I$I11I$ 11 LB11VI11*I11 11 I$I$)I)I$I$g9*I$I$)I)I$I$)I)@  @1pSwiH-/wF`++FF +-f1TUUU115X1E)I$I1E)*$I!@11 I$I11I$11 11 I $)I)`0H91~I$$91Uտ I m91 @$$:1I01$!@$I 1 m6ۊm11~~Im;l11 $ 11 @$@ 11#* 1pɗTD15% @$H$11 11 I$I$g9*@$A )I)I$I$9!$I!11I$$)I)I$I$g9* (1@955I$I$H@inXH-qs/E`-1N` fE-+# I")1@@I$@ )I)dB2$ 11I$A11II11*// $H$11$ 11  LI$91 k m&91A I$)I)I)I)H$H)I) @$9F1I  )I)I$I11I$Ig9*I$I$)I) $I$)I)I$)I) $9F1I )I)k11hqBҒH1E)I$l1E)m6m1E)i۶1E) @m&1E) mж1E)I$KR1E)H$@!vi1E)mI$1E) $1e)* $1f1 I$)I) I$I&91I$I$g9*I$I$)I)I$I$)I)I$I$)I)dB$A11 d2H11I$I011@$I$11 @!&111e) II:1 "#I91~It1$I$@)I)II)I) 1e)I$@11I$I$9 mm611jmt11 5I$@)I)I$I$)I)H $)I)I$H )I)I$I$g9*H 11[#iH1%)I2' @1E)U^u:m1bZj1a$IE) Ħ1E) U I"1E) 1e) $H$:1 I$:1 I$@91 "$I9E)Jꪪ I+9U׾ 4I@9E)I$I$)I)  $91 91 @9E)0 91 I$I$BD! 91 I$91  I$91 !91  I$I$BD! I$I$B$! I$I$B$! $91jZj ɐ 91 991_zcۤ ڦ1E)I$@1E)жm61E)*tL$d1E)ꋯ@$e)%)m$1! &aۆ1E) D@1X91 I$I$9F1H$9F1I$I$)I) 9F1$9F1I$H )I)I$I$g9* @ 91 I$I$B$! B$! I$I$9F1 H&$C91I$I$g9* I$91 !I91@Đ")X1pS7EX+/(/wE+/+&MP**/(Vn 1-A&!B2DZ/,-ҶIǩʪ-mVjFh/0<9p` t91 * `91 IR' 91UW\I$H$9!'B15UU#B1x- IMA1UUW\I$I$9  v91 5 m99ꫯ- †kB'9E)  ЖA91z 6 91/* '9X mJ9$! I$I$91 @!91 / I$I$BD! I$I$BD! I$I$BD! I$@ 91 91jjO$Lvf1Aָ  9$!  I$I$B$! [a۶m91 I$`091 I$I$91 # 9A` )mI9$! #+ 59%)pE)!I$I$E)$!* I$f1$!/I&1E)+  91 *} @ 9f1 $; 1P1յ5H$I$IHTUUUI!AXH/+yw7u%P//ģE9PTTU I$H091 !I$91IE95UUhYm䈧1,tIOq %&%y1 DZf-%%31I$I$%3/@B&C0DZǩ3/ DZǩ4/R!-DZǩ 1 I!E@@4 IDZE31@$%31II$%3-K&X%DZ3-Zl 3+|B$ DZW/ 3 i_+C E~ v[ fi_~??hE9^ $IH9UUP@  ?98U bH9UUU ($H9UUU $'И$H1UUU 1,۰mۖmDZ1,I$H%DZUWV_-  f- f6@ɯ/,N$r&1WV\X I91 /  @((91@hx1'1e) II$B1UU3B1x- I$N91__$mR91!p ` 99! - k691\ 1i 91 I$I$BD! M'h1A\x 1p9 L&91I$I$91 91 / I$I$BD! I$I$BD! I$I$BD! I$91 L91 91 49e)` $91 $91* I$`091 IҪ99!**z $HJ9E) 9!pl1! m&s&1zxx!I%)A +-/ɐdI$1%)%UU5[1E)zz TyN9$!/-+ P%b$HA% IIPH// w1iP-/l•M%q9B@PP $@ :1  $I9F1 I$L$91 !I91 $ 0%Y95UU"fH/% ȏRN%%qP/q[ۧ%y==3(&iIDZ 3/I DZǩ/3/II$DZǩ?4/mm$DZǩ***3IHE@3I  DZE31I  %31I$I%4-#0"DZ3- IDZ/??3 `DZE@@@1II E 1(Ӳ( ꪊ/3 if_#3XV^ ~R?c iH_~I&kX@U_ItP8/*IB$ XHIB$ XHIB$ XHIB$ XHi&E `Pտ* +bxf1JJJJdB&d&1E)ꪪI 1E)*hJN$1E)l$1E) tI$91 )9f1 I$I$B$!  91z I$9e) ۰&k91^^ @!91(* 91 &91^ $91 @091 Ixmm9E)? @291 $@B$! `9f1ꪪ  M 9E)( I$ 91 I$I91m611+{mlm11z/v͆1E)~mCF@1$!ji۶da1$!I$I1E)UU$I$1E) UUU'I$1E)]UUI$1E)UU -$9E)/UR]?H1.SqwiH-=&l"%q1PP@@ m۶k 91 IڴM 91 MڤM `91$I)I)$A2$C211  91 6k691 I$9E)UU 9E)UU -9$! I$9e) `ۉ$9E)`;c;1E) N$9E)W Xe9e)$ 1E)** @4[m1E)$IdB01e)@ 1E)!2$@1E)!$1E). il1E)/# 1!1e)$Eڀ,'1E)*vB!1E)$b"&1%)* 11$C2$ 11~P1E)% C 11u ! @$11PPP"%1E) 11 11-ڢ-1!@@@$1 1e) I0H11vl1%) 1E)@퐴1$!HII1E)H$I11жņ1*p10JJvmvP8// NSiP )-- m ۰-$i1UTTPĄ1!$$1E)~WUض5M$E)^\$ E) I$i;e)!vYr$$0)$I$8e)I$I$80I$I$@! I$ @8*I۶m P8*m `@* } iP R$ %y`  qv %yi+ i E%y!IE%yhI$I$h@=E%)pp$I$E%)\WUU E)!2d$E) z^WUI$I$E)aI $!*I$!!`&L$$!apX`IE)a - ضE)@$I$E)!I$I$E)$!I$I$E)$!* I 1$H$1K$K$E)\\\\ E)% -%E)!I$H 1 )(I$I$)( )(@$I$1I$I1 )(@$@ E)!I E)! * I$I$)( e)E)z@$I$E) I$I$E)$!@0 E)`ࠠI !a/I$I$d!d I$I$$!!*IE)!I$I$1I$I$E)$!*IE)!  @$)($B$IE)!I$h7`E)a׾(0l0E)  $H$E)! E)' I$I$1I$1 )(I$I$1 $)(@$I$1I$I 1uK$E)aE)!X5@,8E)%%%%$A!H8//// S1siP --- NEyi $@$EEyI$I$h$ EEyꪪi@%yE)@ I$I$%yE)UUUTI$I$1 @$)(H$I$1I$I$1 @$E)!jzWI$I$E)H$@ !\ppII!5 55IE)!I$I$1I$Ie)E)UUU5 e)E)5 I$I$1"I$I$1"I$I1" @!$e)%)@$I$e)E)I$Ie)E)*Ie)%)I$I$9I$I$9I$I$9I$I$9 H$@!I$I$1"I 1"I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!$e)%)I);e)XiE)` $A$! I$I$e)I$Ie)!I$E)! !I$e)$! @ @! I1"@!I$I$@!I$I$@! @! H$e)$!H$I$e)%)I$Ie)E)** I@!I$I$9I$I$9I$I$9I$I$9I$I$9$1E) I$1E)H$I$1"I$ @!9I$I$9I$I$9I$I$9I$I$9 e)@1e)b %$1E) @2f1%)j`@$e)!&I$E)!H$I$E)!H$H$!bTUT!!I$!bI$I$e)I$I$e)m۶E)Ime)!i۶1E)IH$1E)I@$1E)$I$1e)@$I1e)-5,f1`Iĉe)5%I1e)1e)I$I$'9#$1E)@$1E)$I$1E)H$I$1E)A$I1e)  1e) &@1b`X` D 1b%5 !A1E) I$9!9 @$I211!11$I$11I$I$9  11I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*$1f1۶m֤11$11$I211˿@1.1SiH//- `.%E9  JH$I1!I$I$9! I9! I$11 ++II$g9* IB!91 I@91* I91 I91 I91 I91 I"I91 I"v91 I m91 N4I91 - m91  91 6 I$B9UU [+m$B9U~BB1 OA1U_ 0 A1& B1*O'B1W_~I$B1UUU . @9f1 S?t:91z^^x!I11-% tZA1?? IĆQ8ivXH//+qwS7EX-/+)1N` E-+3(J K 3L$I$1VTUU H$91 9F1$)1!@ $Ix1b %EK$1E)0 II9e)  $I$9F1(@1b@@@I$I1bUUUI9F1L1f1(LB&$1f1 =9!jZVXJ uJ1!   $I$1f1 I$1e) 1e)9F1I$I$9F1I$1bpKĦ1b %I9F1H$H$)I)I$I$)I)  $I$91  I$91 mv91 u @91Wt5I1axmf1 H$@$1"$I$1E)[$1!VI@!$A$I21E) I$1E)mٖ؆1E)HI$1f1*$ 1f1[m`11 111(I$ $)I)I$I$g9* 1E)@I$1uLI$1bU 8p"91 p\p IJ1  % 9F1H$1\P B1% I$I$)I)9F1 1e) I 1f1 I$I$g9*I$)I)H)I)I$@ )I)I$I$)I)H$I$)I)I )I)H$I$)I) 1$!@O$O1bU(ۥ 1$!I$I$1XI$1E) 5UU T1E)%I$1e)  @P9& I$:1 I:1 @$I$:1  $:1 L091 I$I$91 I$91 91  I$I$BD! I$I$BD! 9E)@ I9 I$`91 I$I$91? !91 91 I$@ :1 I :1 I:1  A91ꪪ v"' @91W^mҶm1e)I$Xl1E)UV)v[m1E)M&Eb1E)!!I&1E)1E)-I$11 5U11 9F1I$)I)@$I$)I)I 9F1I$H$)I)I$I$g9* I$91 91 I$H :101!@I1!5 I$H )I) i۲91ذLIdYpSyEX +-+R7E++&h;E/(pbs 1,C-6loDZ[-, I$D-(NdP%-0.`1p`I$I$)I) .08I9` IC9/ M&91W^xI$I$'9# yɝ91%3B1x%d A$!~gKI1!5 NI91 - (B%) I$`A) $I$BD! I$I$BD! I$I$BD! L&91 I 91 91 * I$I$B$! I$I$B$! I$I$BD! $@ 91  I$91* X$M&9A\^x J9`9  !@91 91ꪪ j"'ɦ1Xx Sm9 -+ $@91 C$ 91ન#i1!pjf1I$I$1dif1$!+/0IV2P1UՕ5H$I$%IHTUUUIviXH/yw7EX/%y9TTUU I$I$B$! B$! @ 91ꪪ I$L$91 $$)9!jҠI$fa*UJE@ -v{Fi /?1@ DZF ))1/I$DZǩ3/L$dB$DZǩ1/H$I$DZǩ3%)b<DZت3)&RnWDZ31%3 DZE@@@4IIE%53-I$M$DZ3/I2$DZǩ3/$ DZǩ/3/IH$ADZ4, l/ ڣ %qxC$ Ea ~ h%qP j_d!iH?*I%9E`U Ib$ %`UIb$ %y`UIb$ %y`U%)E`Uw&\2%9ZZRP@3۰m11`IB',1E)mlI%1E) [%Rm1!XRm۶1! $ !11 `N91 @J91W hV9E)** AB$! ! 91 ۲-9e)jj!1E) @ $91 I$I$BD! 91 * $ 91( I$@91 $A$:1 $I&91 91 I$I$B$!  91zj m&`91 mӶ9E)ꪠ ݲ-9$!kj!A@1$! !11d"H$I1E)NM1E)Wد&1!X?]S1!bq Pe)U 1SqiP/---R*%E%1JJJ  $I$e)E)5UUU$I$e)E)UUUI$1E)UUU`;I$1E)UUU ɟ9E)UU fI$9E)UU `I$9E)UUIbے1E)Ibے1E)mے1E)I$1E)Ik1E) $11 N$9e) IĀDr9E)ՠIH1E)<In11U 3@[۶9e)-$I1E)ɀmm11 #6b#i1!@``*,Ɇ1E)Ã$oVA1$! I$ 11 Nd1E)>I 11I11I$I$)I)I$I$)I)d1e)(L 11$I$11$C2$C11$C2$ 11$CH1f1I$I1f1I$I$)I)$1f1$I$11"-@1 @@yN 1!  1%)11dmm1m۶m1$!ۊأ@1qT`H/--- =2!iE)PP@@H$@E)!I$IE)$!*uҶ0f1ڪM$10 @T$I$81I$I$80I$I$@! I$ @8*I۶m P8*In X@ս }4 iH* r$%yX  yY4 %yi* IJ E%q I$AEEy hI$I$hI$I$h(E%A@p"'O$E%)\\WU@$H$e) @$$!I$I$E(CI$I!*!AE)!I$I$1۲ ۰mE)  E)!@I$I!A @E) I$I$E)$!I$I$1 I$10H$E)aX^H$ɒl%)\|  E)-L$LE)(E)! I$I$)( )(@$I$1I$I$1$@C&E)!`p$IE)! 5@$I$1  e)E)5 e)E)z@$I$E) I$I$1@$E)!*z^H$I$$!!\UUUI$I$E)I$I$E)IE)!I$I$1I$IE)!* E)! $H$1I$I$1I$I$1II$1$I$1I$I$E)$!IE)! H$@1I$I1 )( @$E)!H$I$E)$!II$1@E)!@I$hmE)aW(m۶ E) @3,`8E)%5!!H8--SaH )-- `%yi )!!EEyI$I$hI$I$h[؊mE%yJ%P(%yE)TPP@$H$E)!I$I$E)$!$E)!z@$I$E)!z~WUI$I$E)I$I$E)dB2$I!bpI %)b5I$I$1I e)E)U%e)E)I$I$e)E)I$I$e)E)**I@! @!$H$e)E)I$I$e)E) I e)%)* I$I$9I$I$9I$I$9I$I$9$@!@$I$1"I$I1"I @!I$@!I$I$@!I$I$@!I$I$@!$@!`۶6e)!2$$E)!dB2$I$!I! $!%H$I$e)I!E)!  `e)!  H$1"I1" e)!@[I$e)(U۰me)! @! H$e)%)H$I$e)E)I$Ie)%)*Ie)%)*I$I$@!I$I$9I$I$9I$I$9I$I$9$1E)$I$1"I$I1"I$1E) 9I$I$9I$I$9I$I$9I$I$9I$I$9 1E)@(e)p@ImE)b% ضm$e)!$I$E)!H$Ie)I$$$!!@@$I$$!b0TUUm۶ie) I$ e)! Ime)!"$@e)@P@  1b%%)I H$9@$I$1e)I$I$9I$I1e) I1e)1e) 1E)@L$L"e)U8Hm1I$1e)@$I$1e)I$I$9I$I1e) I$1E) I1E) 1E) I$I$9! $9!$9 $10ۆ 1E)@$9 @ 9 I9 H$I$9!9 H$I&11^@$$11Uk&1E)`i1E)6m$1E)I1E)$@$1e)I1E) *$I$9!I$I$9!9 dB2$ 11_dLd%P1pSyw%yX/--&!R.ff1BBBBIH$9!IBI$11UUU 11  $11I$I$9!$11 mm$91 $91 `691 $91 $91 * $91 H*91o A~9E)(W 0Im91 @$$9f1 91 `$d291@$H11$I 91`0I 1E) niv91 $"C291 $I$91___ 91 n91*J'A1^W @rI$A1)U (-H9555IIPHgWqiP--qS7fi-/+-)P f/++3  1@@@ I$$1f1 $1f1 @$I$)I) #(I1pI\ 1b% L"fm9E)V 9F1I$I$9F1`$1\1b  I$9F1I$I$9F1I$I$9F1 "I$I9%)`1e) Mm۶ 91 I49f1 IKm91L$L11 $I$11"I$I1@  I1b% $ 91 L$LB91A9F1I$I$)I) I$dB91$I)1E)@۰mۖm11I$)I)" (91e)$Ch1e)I"1I1E)IZH1 UVٰmۆe)!II$1E)꫿I$$I1E)I@!ФI$1E).m$1E) Nm9E) @Dr9E)hI% 1U8$IH1$!I$I$g9*1b`I$1bI1b"m&ɦ1 +1E) % $I$11I$1f1*1e)H 9F19F1I$I$9F1I$I$9F1@9F1I$@)I)@$H$11 I$1f1*H2=1!p|15 $I$)I)H$ )I)I$I$g9*I$I)I)LB& 1f1j"1E)\I$r͆1E)UU\I$I$1P"-ٶ1JI$IXe)U&P%1%)I$I$9F1 AI$:1 I$@:1  $I$91* @91ࢪ I$@91 ۰m6g9E)* @ 91 / I$I$B$! I$I$B$! I$I$B$! I$I$BD! H$9!T1E) I$91 B$! I$I$B$! $H$:1 I :1  B$!  91^ N$t&91UUW^I$1E)I$I$1E);0[9f1@Pp!IE)͐$1E)*U6aۦ1e) *!11I$I$9F1I$9F1 H$)I)I$I)I)A 9F1I$H$g9*  I$91 9E). I$@:1 I$I$9F1I$I$9F1I$@ )I)j1! /W}ٸhe1 ) N1w%q+/,f ++--&vaW;//1,a{DZ1,N$p2'DZWW^_/#3-I`@-,FmF *,O$z%1WV\X9F1 I$9f1 * dB2$A) -: i91W^xI$I$'9# ɝ91?O̡PB1 %~b?A1WW_|I$I$'9# N91 - 0 91 L&A) I$I$BD! I$I$B$! I$I$B$! I$@ 91  I&-9E)*j 9E) I$I$B$! I$I$BD! 91 $I 91  ۶m9E)r* 91 I$I$BD!  B$! K$1bTW1  I$91/  A91 #I91zbC# 9e)_$I"f1!~H$I$!A(h)H%)% I$IPH w1iP--'%D$$q1@PPT  91 I$I$B$! I$I$B$! I$I$B$! `$91ʪI$I$g9* IT 1b,y955.u%yX+, Wq /-/+ ǩ *3-]۶-DZǩ1$ǩEP4$ADZE1,Iij DZ3/ DZǩ3/$A$I&DZǩ*3/H $DZǩ3,&CR$DZ\RS1,DZ1/II$DZǩ3,ۆmDZ4/*IHDZǩ3+ DZXP@({?EyVVV\ v2 i%yqCM%yi(% wr %y- )Ib$ EU)IbEU)IbEU)oeU+ %-AJ@+O?9UUUT I$@91$C$ 11 ڀI91U_&N91e)*$0!1e)I$M$1E)mnI1E)( *$I11 tI&9f1 @%[m9!PX @91 I$I$B$! L91 I$@ :1 LH91* $A&91 $91  91% h$91 a&91* I$I91 B$I91ꪪ $ $91 $@$:1 $I91 $J91 L91 I۰91 Iڤ691ת s*H9E)^dJ@1e)I11**XXE9 p7wE`+/--o'f1UUUT NF9e)W O۴m9E)UI2m1E)Uݶi1E) I$@n9E)UW I$иm9E)UU I$d91 M$M`9f1I$I1e) I$I 9f1* ii 91ۖlɶ 11 M$m 9f1 I݆m91 m&۶ 91__ Iۆm91IB1e)I1f1I 11%%1E)@9F10 1e)ɖtm11% @$)I)I I$)I)I$I$g9*I$I$g9*LȄL1f1(((L(Q@1e)(dB I1f1 $I$)I) )"1e)m1e)11 011`@$11 I11I$I$g9*11$@$11 W0I$11`UU`$IH11XU۶m61E)6I$1E)[Ţ8)S1XX@--- /S%qX+++- I۰%qe)UUTT]`e1UU'S;@1I$I$@! I$I$@! I$ @8*I۶m P8*In X@ս }4 iH* 떥$%qX yYn4 %yi  IR Eyq+im۶E%yIE%yI$I$hI$I$hI$I$h EEyjEy$)p\WUI$I$1 2`$$!I$I$E(CI$I! $A$!+ I$I$1I$I$E)$!H$H$E)!E)!HE)!I$I$E)$!* I$I$1I$I$1I$I$1`2E)Xhm۶ E)  )(@$)(I$I$)( )(@$I$1I$I$1I$I1CE)! E)!+ I$I1 1 @$I$E) I$I$1$E)!zI$I$$!!\WUUI$I$E)I$I$E)IE)!I$I$1 $$!h0E) $H$)(I$I$1I$I$1I$1I$I$1I$I$1I$I$1I$I$1mۺ%E)pE) $H$1I$I$E)$!II$E)!**H$I$1I$I$1)()(28E) @8//--qW`H----pNo%yi)---ݐ nE%yI$I$hI$I$h@$ E%yh@%y%)@ I$I$%y%)UUUT@$E)!zZ@$I$E)!ZWUUI$I$E)I$I$E)I$ E)!UխI$I$E)$! I$I1$A0E)!*@!e)! /I$I$e)E)(I$I$1"Ie)E)$e)%)@$I$e)E)I$Ie)E)** Ie)%)I$I$@! e)E)@Me)!& 9 H$e)%)I$I$e)E)(**$I$ e)E)@N$e)b e)!I@!I$I$@!I$I$@!I2e)E)xغm$e)!@$HE)!I$I$E)!H$C&$!`m۶E)* In۰e)!/  $e)E)  @!I$I$1"I$I$1"B$@e)$!I @E)b Ie)E)H$I$e)E)I$Ie)E) Ie)%)*I$I$@!I$I$@!I$I$@!I$I$9 e) @0I$e)a0lݖm1$!I$I1"I@!I$I$f1e)I$I$9I$I$9I$I$9I$I$9I$I$f1e) 1E)$I&e)E)^k$e)! I&I$E)!I$IE)!IE)! $I$E)!H$IE)!m6 E)jIĉ% E)bU&!I1E)I$ $1E)$5f1hlۖm1E)!I$I1E)2f1h61E)1e)I$I$9!$1E)H$1e)*$I$1e)I$I$9I$I1e)I$1e)I1e)I$I$9!I$I$9!I$I$9!I$I$9!I$I$9!I$I$9!I$I$9!I$I$9!N$h T1WV  1I$H$9!$Ʉ1E)$C&1E) II$1E)$I$1E) A 9I$I$9@$9 ɒ'f1b`X$I f1b  1e)*$C$@1E) 1e)*I$I$9!$ $$1E) !11 $11 R,P1 7qSywiP+/--)R*Ee1BBJJ I$1E)$I$1E)I$1E) 1e)$I$1E)$I$1E)$I$9I$I$1e)I$I$@!I$I$@!I$I$9I$I$9!I1E) **I1E)I$I$9  $I11 ? 11m611zжm11p$b11X\P Pm9 - жm$91 U m$91 m閴91@&-1@ \I$1a, m9E)I11?* /$R$H9  PH  yWq%yP/" 1S` %y-/4")rTNDZ)# 3?DZE |۶mۖ1E) I$I11I$I$9!I$I$11*$I$1f1@$I211 j DI191 $ *ռ9( k6*I1X!P1 I$I$9F1I$I$9F1I$I$9F1 AI:1 I$H$9F1  I$:1  :1 91 HB$! mul91IB& 1e)!I$ 1f1@$H11  $I$g9*@ 1e) IB$91 I$ :1 #'h=1axxJ1 I$I$)I)X%@`1E)SDI1E) I$)I)d@1e)C1e)IB;" 1E)m&[l1E) $I1E)H 1E)I$1E)I$I$e)E) vI$1E) &1E)+ DJ691 IB&!91 I$L&91I$I$)I)I$I$)I)0 1%)It-1!%%*L0@1e)I$H11 $I$11 @ $1e)9F1I$I$9F1I$I$9F1I$I$9F1I$I$9F1 1e)I$1f1#I1!`  I1%  1e)I$I$)I)I$)I) 9F1H$H$)I)@$I$)I)  11xt"11E)^hm;Ն1$!~ IȐE)&X&K&E)XXJtI1  11  I$9F1 H 91 I$I$9F1  !"I9e)J`$L$!b IH1E) I$91 91+ I$I$BD! I$I$BD! N$h t9^^ A9$!  I$`091  I$91 91/ 91 I$I$B$!  @$:1 I$I 9F1 @۰ 91 NB'`91UW^dB&$ 1E)#; ن1!zH$@f1 Mڤm 1!` $1$!+W II1%) ?=1p$pĆ1b*% `B&$C91II$)I) L$1f1H$1f1(41`mvqf1-5 91 @$ :1 9F1I$I$)I) I$DB 91@d X1pSE`+-(`N/sE +/,&h+U-(dK[ +/,6 Тǩ/,II$ǩ//m6h Fjh-R9P`B@J7x1 - 9F1 !I$9f1 * C!A) K%P91VXpI 9 a۶m'91?UU@M'B1p 5Nb'B1UUW\1e) Nq9f1 - 091 L& A) I$I$BD! I$I$B$! I$I$B$! ?9xx yeK1b - 91* I$I$BD! I$I$BD! 91 ") (91`  9* I$I$BD! I$I$B$! L9A޸ V`91骨I$I$g9* PI$91 / $2A) X91zꨨ5 9E)^zLL[$A$??I$I$HAItIXH=-qw6aqE9* B%y9TUUUI$I$)I)  91 I$I$BD! I$I$B$! I$I$B$! H$@ 91 I$I$91  91 I$h9-wqWf`/-5/DINf )3+6iDZU1@$ǩEPP1 ǩE3-K&X%DZ3-mlDZ1/@  DZǩ//I$I$%3,E!-ҢDZsKO1, dDZ1/H@$DZǩ/N$NAEWWW3/@ DZǩ 3/DZǩ/Z&1EXXp`$C E%yꪨMۆmE%y,?Ey -%%1,Im 3+Bڒ_3+ybӤ] =+߶蹧U?3+vB@_1 J%@)9TPP@ @)91``  iK91 I& 91 II$91 N0D91UzI$b1E) $I21E)L$$1E) I1e)*`-$1e) $A11/ I$9f1 $9f1 91 B$! d91 L$91  $I$:1 I$91 $:1 91 ** I$I$BD! (9E) I9e) I$@91  A$ 91 !91 Mk t91ɐl`11 I$$91I$I$9F1  91J,P17qSqEX/-x߲-E1TTTP $P"%9E)XZ mm91$IRD1E)< m6691 Ik 91$11E)`` I$I$B$! $91I$I$9F1 I$91* 91 d$91 @91$H )I)H$9F1 $I &91I$)I)$I$)I)J(P1e)((@"I$I1E)I$I)I)$I$$1f1$I 1f1 I$)I)I$)I) IH$91I$I$9F1$I$)I) d$1f1I$I$g9*11 I11  1111 1%)@Im1$! 112$C211x`$IH11\U$I$1E)m&1E)ڶM$1E)~U@$I$e)E)I$Ie)E)?ۼ-" 8)??  P8+// SiP - @ %q1 #ZqPzzM&k5P8I@8I۶m P8*In X@ս }4 iH* 떥$%qX yYn0%yi  I$Ey%q+Im۶E%yIE%yI$I$hI$I$hI$I$hI$I$h EEy9r$Ey%)p\V H$1H2$C$!I$I$A8I$I$  $A$!/ I1I$IE)!* [%h4E)`x I%)a -/I$I$1I$I$E)$!****I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!*  I$1$H$1I$I1 )(@$I$1I$I$1I$I$1  )(@$I$1I$I1$E)!@$I$E) I$I$1@$E)!H$I$$!!xI$I$E)$!$A $E)b* I$I$1I$IE) * M$K4E)aZ^)lٶmE) I$I$1I$I$1I$I$E)!I$I$E)$!I$IE)$!* $$1I$I$1I$I1k$X,E)axx  E)--I$I$E)$!I$I$1I$I$1I$I$1I$I$1 )($H$E)!I$I$E)$!81OqW`@- ` %ya----E%yhI$I$hI$I$h[؊mE%y%P(%y$!TPP@I$I$$!!X_I$I$d!d I$I$$!!5IE)!սI$I$1I$I1 e)E)E)! e)!?I$I$e)E)(I$I1"I$I$e)E)I$I$e)E)I$I$e)E)* @!I$I$@!I$I$@!e)!IdȆme)!7 H$I$e)E)I$Ie)E) I$e)E)m۶me)!@I$e)a( e)!I$I$@!$e)%)m۲6E)! $I$E)!I$ $! $I$E)!I$IE)!?M$[ E)Z^Pɐ )0e)-% $I$1"I$I$1" I$1"H$I$1"I$ 1"@$e)E)H$I$e)E)I$Ie)E)*Ie)E) I$I$@!I$I$@!I$I$@!I$I$9I$I$9@$e)$!$I$e)%)IX$ E),Ie)E) I$I$@!I$I$9I$I$9I$I$@!I$I$@!$1E)I$1E)l۶6e)! $E)!@$IE)!I $E)! H$E)! E)$!ꫯI IE)! Iڶ]$e)! ɖe) ?I$I$1E)I@$9$I$1e)I$I$9j$Z̆1Z^x1 I$I$'9#j$h41bX^) I1  I$1E)@$I$1E)I$I$9I$I1e)I1E)1E)I$I$9!I$I$9!I$I$9!I$I$9!I$I$9!I$I$9!I$I$9!I$I9!I$I$9!$I $1E) [61E)`^Vжi1E)$I$1E) $I$1e)I$I9@$1e)I1e)*I$1E)1E) $1E)*$1E)H$"If1\pI$If1b I$1E)$I$1E)I$I$9@$I$9I$I$9!!A1E)** I$I11*J$J$H11X`P----C$DB$qf1PPPPI$I1E) I$$I1E)I1E)I$I$9!I$1E)I$1E) @1E)*LBI1E)I1E)IB$ 1%)IB$1E)IH1E)!I$@1E)$9 I$9! @$9 $I$9!m۶t1E)> i"1` Idf1 7@@1E)I$I$9  @$1p\ t1 %mֶ1e)I H1a,$A$11*$eA1UUH$I$HeA!eRXH ++q7EX//+/qg /NE+-+4))nPDZ- 3x$?)\W_ 4I1   $)I)$I$A1f1 IB 1f1I11$C 11z8!1!@I$I1U(HH1E)!I011?I$11, Ӷ11E)`I1 $I$91 H$@$:1I$I$9F1(@ 1E)I1E)? $I$9F1 @$I$9F1e1$!9F1 L 91 IB&$I91I„ 1f1(1f1 M$I$9f1 B $I9E)@*  d91I$H )I)I$I$)I)I$I$)I)I$I$)I)I$I$)I) !$I$91 CI$91 m91 M[ h9E)ꪠmӶ 1E)I$m1E)A$I$1"I $1"I$Ie)E)**$2d$1E) @I Ć1E)/@$1E) $ $1e)I$H )I)I$I$)I)@$I$)I)I$I$)I)I$I$)I)dB$@1f1I$`B21f1$I$11I$1e)1e)I$I$9F1I$I$9F1I$@ )I)I$I$)I)1f1I$dB11@,1b@ I$1bU$I1e)I$I$)I)I$)I)I$I)I)I$I$)I)I$I$)I)b#&H%1`P\p$I$!k[jmIE)* % )I1E) /mۖl1E) @ 11 9F1 I$9F1 I$I9F1 r I$I9e) @:1 I$`91 I$I$91 @ 91/ I$I$BD! I$I$BD! I$I$B$! I$I$BD! L$91I$I$)I)  $91 I$I$B$! H$:1  H$:1 I$ 9F1 I$:1 t: 91W^zC 1E)!I 1E)I$I$1E)뿿M$h 1! ٶm1$! /8"I1ppIIa 1% 9F1 $1e)@ 11 *a-11@У۶m1pɗO$@15 I$I$g9* $@!91 H$:1 I :1 $I$:1H$@ )I) /wyٸhE9 *)`t;fi +}+ 4 %q-(Iħ/1$ .!E@1IIDE/ #,Ip-$IDEy#IʏI$I$)I)@$I$)I) I$91 / 9e) N"'R191W\x@$@ 9 I$I$91UUUPO)B1p‰5 Nb'A1UW_I$I$'9# 91 -U 6 91 I$`0A) I$I$BD! I$I$B$! 91J ** IH91 $@d$91* ۶m91 I$I$BD! @ 9E)@ P'O$1aVU I 1a5/ 091+( I$I$BD! I$I$BD! I$I$B$! `$91I$I$g9* !91/ L$@B BD! 9 91^zjh%X$H1% I$IPHwiw.a@/*)b%L$q9@PTT  @$:1 H$$B91I$I$g9* @!91 I$I$B$! I$I$B$! $B$!IP$1b\  I9E) * 91 6Qǵh9 -%) `N1uwq --#@ S +1,6o$Y1- I!DZǩ3-R,ҡDZ1,6`dDZ11I$I$%1/I$I$DZǩ3/ IDZǩ/??1,IN$DZWV1/@ DZǩꫫ3/ IDZǩ?3/ IDZǩ/??33I$I$%4RDZE`4I$IDZEUUU4I$EUU4IDZE4/DZǩ?39DZUUU?4I$I蹧?44I$I$%41``DZ1 H@9@) I$9UU@ I$E9UUUT A$A) A) I":$ 91 I$K91# I1e)I$(1e)!I:1e)L 1E)  Ib(f1$!`Ħ1E)*`)1E)I$@11/ I۴91 M$9f1 t9f1 I$I$B$! @B$! I$:1 $C2 91 @$91 I$91 !91  @&91 91 I$I$B$! @91 [ $@91ZZ I$91 I)I)I9F1P$@ P1 1Wyw%qX---O$\%E1PPPP 9F1$dB115H I1E)? @Ȑ91 $9F1P 1E)` $A[9E) I$I:1 I$$:1 I$@:1   :1 k۶ɐ91// I91 I$:1 I„@91 aB@91 I@&91 $ 91jj &NJ9e)  :1 $H91L1e) I1f1 @LD1e)((@$I$)I)$I$g9*I$Ig9*I$I$)I)I1f1II)I) $H$)I)$I$%1E)$I1E) !11$I$11$9 @ $1E)m61E)Id$1E)dB&e)E)__I$Ie)E)/Im1E)U*I۶1E) $%$H1UU I$H1UWIxiP-RfX++/( ?@ iu (?ha__@?heHWIbm `HU m4 iH* 떝$%qX yYn0%yi  I$Ey%q+Im۶E%yIE%yI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h#'E$)p\I$I$1$ &$!I$!I$I$ I A$!* I$I$1I$IE)!*   E)!E)!`!$!I$I$1I$I$1I$I$1I$I$1I$I$E)!I$I$E)$!*I$I$1I$I$1I$I$1I$I$1@$I$1I$I$E)$!*I$I$1I$I$1I$I$1I$I1$E)!H$I$E)!I$I$1 @$E)!I$I$$! I$I$d!d I$I$$!!UUUdB2%)zI$I!a/0%)`0lE)a @$I$1I$I$1I$I$1E) I$I$E)$!I$I$E)$!*۰CE)`MIE)a.շ@E)! )(m۶-E)@ E)a %۶-[-E)b@P@!IE)b %%I$I$1I$ 1I$I$1A$I$E)$!I$I$1 2%)HȄd@ *)-iX@-- S%qX ++-   Ey%qhI$I$hI$I$h@$ E%yh@%y!@ I$H$%q!UUTTI$IE)!UU E)!I$I$1I 1e)E)I$I$e)E)*I$I$e)E)***$e)pIe)b %I$I$e)E)I$I$e)E)*Ie)E)*@$@!@!I$I$@! e)%)$I$e)E)I$I$e)E)*I e)E)* @$@!H$I$1"I$A$1"H$I$1"II$1"lۺ5e)!2L$E)! Ie)I$@$E)!H$I$E)!IIE)! E)! I$I$e)E) I$I$1"I$I$e)E)I$I$1"I$ 1"%K%e)XVXIJE) I$I$e)E)Ie)%)*I$I$@!I$I$@!I$I$@!I$I$9 9"%e)pKIE)b %I$Ie)E)Ie)%) I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!@$e)%)@$I2e)$!I2e)!ȐI$E)!@ E)$!ꪪI$%)$!1H$IE)!>I2$e)!ie)!I1E)1%)jf1$!% I$I$9I$I1e)I1e) 1e)I$I$'9#$1e)$I$1e)H$I$9I$I1E)*I$ 1E)*$I1E)Z$I$1VUV 1I$I$9!I$I$9!I$I$9!I$I$9!I$I$9!%1@PI1$I$$1E)$A2I$1E)$I$1E)I$I$9I$I9dB2$1E)^z!I1E)I1E)$&1E)*d$1!V$1E)$I$1E)I$1e)$H$9I$I$9I$I$9I$ 1E)I$LH1E)I$ 1E)I&%H1e)Im1E)mҶ1E)@ &1E) x$ $1E)U hҘ9E)UH$I$H1X`P---- O4DZE@4DZF 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$&44I$I$%44I$I$&44I$I$&4-# - fz bEeAh $ٓh9UP  DX9UUU@ $A) A) X`91 I$91 ۼ-l9E)jj6H1E)lJ(@1$!If1E)I$I$9I$I$1e)`R$1E)+@6ۦ1E)tI1e)*** 鐶i۶91 I$9f1 i$91 91 J $`915 H91訾 ! 91 dB&91 I$d91 !! 91 $$I91 @$I291 $91 km691 91  P9U 1SqwiP/--b~%9BBJJ $91* `$91 km91+  I $91 dB&91* I$91iI1$! L91WW  I$91 $AI$91 89E) m91  I$:1 $IdB&91  I9f1 $@dB&91  I!91 $I$91I$I)I)I$I)I)I$I)I)A$9F1$%PH1E)II)I)I9F1 dB&$C91 r 19E)hI1E) H$11 H&I$11 I11 r"ǒi1!ڶ1E) I$1E)$I$1E)$I$1E)I$I$1E)I$I1E)Im1E) IbӤ@1%)$%$H1UUU$H1UU@$IH1I$IPHI PH* xqgiP/1S7Ei----) f----"[#z+HfW+ߖ&fU/ m$%qZ1 I %yU[4I$vEyUUoI$IE%yI$I$fEUUUTI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h@ 9E%1p ;c'%I$!TTWU @$I2$!@$I$!I$I$E)aI $!* II$! I$I$E)!*I$1$I$E)!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$E)$!* I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I1$E)!H$I$E)!I$I$1 @$E)!I$I$$!! I$I$d!d I$I$$!!UUUIE)!I$I$1HE)$!`0E)ax`I!AE)b%)I$I$1I$I$1$E)p`I$I$!a/%+I$I$E)$!I$I$1I$I$1M 0`E)7H$)(@$I$E)!@0%)b`I E)a5.@$H$E) !E)a &E)xɖdE)%H$I$E)!I$I$1$E)!`$dB&!a`I$I$8   P8++// 1S%qX--- O%y%q  E%yI$I$hI$I$hI$I$h[؊mE%yR%%y$!PP@@E)!I$I$E)$!*I)(I$I$1 H$E)b^E) I$I$e)E)  4e)@`IIE)%// @4E)p`IE) -- I$1"@!I$I$@!$e)%)@$I$e)E)I$I$e)E)* ɒ#'e)xDISE) I$ $e)E) $I$1"I$I$1"I I$e)E) C&E)!$IE)!I$E)!$I$E)!I$ E)!/  IE)!I$dE)!ֺe)!I$I$e)E)* I$I$e)E)I$Ie)E) * I$e)E)@$I$e)E)`E)`!Ie)E)*I$I$e)E)I$1"I$I$@!I$I$9I$I$9 @$e)%)H$I$e)E)#$e)`Ie)a% I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!$@!I$I&e)E)X I2E)! $I$E)!$C$IE)!ꪪI$E)!I!E)!L$IHE)! Iv۰e)!/!Ie)!I$I$1E)I I$1E)I$I$9I$I$9I$I$9I$I$91e)$'9#$C21E)jX$I$18WV$Id f1I$1e)* I1E)I$I$9!I$I$9!I$I$9!Z1I$I$9!I$I$9!I$I$9!I$I$9!$1e) I$1E)H&e)bTP@ ô'f14If1 -$If1@If1b 7Օ 1e)*$1E) H$1E)$I$1E)0f1(H$1E)I$[ 1!UV*DI1$!*I$9I$@$9 $1e) I&1E)zD;1$!~k$1!Uiv$1!UI$1!UUf;I$1!UU$I$E) $I$E)!@$I$E)!I$I$e)! E)!+// IIPH/qWqiP--D2&%qf1PXTTI$I1E)(Z")f1A`T 1)  1e)I 1e)I$1E)**I$A1E)!I1E)IB1E)I$1E)I$1E)۶m 41E)x$I1E) I$@1E)IB1E)!C1E)ml1E)Mm1E)ժI1e)1e)*I$dB1E)I$I1E)I$I1E)(I 1e)I$I$9@$@1E)!!I1E)[%CHf1 I$@PH * yWv%yP/+ yw7%y-/1 䧱E WC[$KDZ9PTTT C't991~~x iI`91 @&M$91__@!1f1L$11( M 691 m691 $ 11 I$I$g9*I$I$g9*I$I$g9*$@$I211H 1f1 *A1e)@9F1A1f1I 11I$11I$I 11.$I$11: ֶi$91 [ 햴91 91 I$I9F1 @$@$:1I$I$9F1 I$I9F1 Т9!`dIĦ1b 7Օ ۶m91 IB$ 91I$)I)I$I$g9*$H$11 ݖI$91H$M"Ǧ1WVJT1 I )I)I$)I)I$I)I)I$I$g9* $I$91 &I*91p*I1!I%1E)a$d 1E)I$I$e)E) *I$A$e)E) I 1"I$1E)+ @r.9E)* Z`i91꫿I$)I)41E)I$I$)I)01p`IT)A15% `B$I1f1I$dB1f1I$I$11*@ $1f1 $9F1` 11I$H)I) @$9F1I$I$)I)H 1f1I$H 11 I"1 @DI1b 7Օ$I1f1`1e)IL$ 1I$I$)I)ú-ۺm11@J$Mf1bWVH1I$I$9!I$9!e1E)0 11 ?9F1 I$:1 I$$:1  $I$9F1 $@91ꪪ I$`91P1%) @!91+ I$I$BD! I$I$B$! 91 M†9V i@ `91  I$91 !91 B$!  @ B$! II:1 I$I$B$! @91zꪪ I$ 91UU_~t,I1E)ިI$L$1E)$!1E)믯I$I$1E) $1E)鐶I$11 UU $H>9!z1  I9F1$H$)I)I$I$)I) k% 91I$I11**I$)I)I$I$9F1 I$ :1 "IP9UUU /Wy׸hE9 ) N1wf%q++-+` +--(Xħ+//,@Ѷiǩ /)L$H2$ǩWTTR/ #0H``-J@Rf *(I$H$1UUTT9F19F1I$H$)I) )I$91 / 91 N"'91I$@ 9!I$I$11UUUm_/B15 9bzꨠ ܴmf1A  Rv91 / 9f1 I$@ BD! I$I$B$! I$I$BD! 91 I$`091  I91/ 91  !(I91 JJ$N1A_8 A@ 9  DII1 I$:1  09!` @ϕ9 ? 8r&9`XXɐ 1a I$I$g9* H9% $@$H8PPP ns7 a8+- UB$J$i1PPTU@!11 $IT9e) Id$91 $A$91 I$`$91  I$91 91  @$:1I$I$9F1 9F1I$I$g9*  91뫯  20A1?NqEA )+`7f+/--%$ R -1 ǩE4,J'DZT\44:$E T41I%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4 DZE@4DZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%41,`DZ3(R 蠠,3 E~zb fi^Sd EX_ P;c `9Z 0IdX9UU@  HP9UUUP 9f1 &IH9f1 K91 I$[91 I$I&91I$1E)I$ 1E)Ib' ц1E)I$H f1E)_^L$1E)UWжۆ1E) UD $1E)@1E)$I115۶-1e) om91 0I$9f1 N91 91 $B$! @B$! $91ꪪ IB 91 $C2@91ꪪ LȄ" 91 m[%9e)ZXNmVXf1.q{fa++- @2$C291 @&Md91ח P۶m91 H$I91  $:1 H$91 L!91 ]ml91۪ I@91 I091IX01E)/ in91 IB$! d91  I$@91 d 91 !I91 I:1 @$:1 $I$$91hh611|x $91L$1f1I$11$I$11 $I11+@$H1!@ 1E) $01E)Mڶ1E)׮۱1E) 'q 89e)m1E) I $M$1E)$a&1e)II1E) I۴n1e)#)I %81UUU IۣH1UU$I$H1I$ $PHI$IHPHI$IXH qkn `P* Iw qP & EX+ " ywD q 7y{oȱf 3,n 3,Ҷ`3,v*4/IV$DZ 41ɶDZ 44I$I$%44I$I$&4HDZET4I&DZEUX4I$PDZEUUP4I$I$DZEUUUPI$I$hI$I$h E%Q@x%y!\VUU H0$!@$I$$!I$I$E)aI $!* E)!I$I$1I E)! H$I$E)!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$E)$!* I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$E)$!I$I$1I$I$1I$I1 E)!H$I$E)!I$I$1 @$E)!I$I$e)I$I$$!!`I$I$$!!WUUIE)!I$I$1I$I$E)!*II$E)$! I$I$1I$I$1I$I$1&E)ax%)  E)!I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!*I$I$E)$!I$I$1I$I$10E)`@0$%)` I!I$!A-  E)!$H$E)!~^I$I$d!d I$I$$!!j  8!%555$A!H8+/// pS1siP ---  1S%yq $@$EEyI$I$hI$I$hI$I$h@$ E%y 1 E%q %q%)UUTT )(I$I$1 I$I$1 M$@ e)b^)Pe) I$I$e)E)@ E)I-e)b/ e) `I(1E) @DI!PE) @!$H$e)E)I$I$1 I$I$e)E)*I$I$e)E)h4 E)1e $IE) I$I$1"I$I$e)E)-E)`IE)I$IE)!  @$E)!H$IE)!I!E)!/ e)E)) I$I$e)E)I$I$e)E) I$I$e)E)I$Ie)E) I e)E)$I$e)E)I$I$e)E)I$Ie)E) I$I$e)E)  $I$1"I$I1"I$@!I$I$@!$e)$!@$I$e)E)I$Ie)E)*Ie)%)*I$I$@!$@!$I$1"H$I1"I$I$@!@$e)%)I$I2E)!H$E)!I$I$E)!$C$ E)!  I E)!I$I$1I$$IE)! in۶ E)!+Ie)E)1E)I$I$9I$I$9I$I$9I$I$9I$I$9I$I$9IH$9$I$9I$I$9I$I9u1(1e)I$I$'9#I$I$9!I$I$9!I$I$'9#I$I$'9#I$I$9!,1!I$1!U$1E)H$I$9I$I$9I$I9 1e)**h8 @1X`$If1  I$1E)ࠪf1b&P'M$1VW@f1 I$I$9 f1!@I$I e)b׿ ۶1E)HH'1!^ I$1!UmI$1!UUDv$E)a$I$E)!UUUI$I$$!!\__I$I$d!d I$I$d!d I$I$$!!UUI$IBE)!U*I$MA1!UU I$me)!*Ibے,A1$!UIڶme)!/*I ۰1E)* H1IHdHPH* yweS%qP-/K$J$%y1TTTTI$I$9!I$I$9! H$1e)1e)I$I$9!I$I$'9#I$I$9!I$I$9!I$I$'9#$IL1$!I$I$9!h%`1E)^\`)1E)- I$I$9!I$I$9! I$9!H$@ 9!I$I$9!I$I$9!I$I$'9# $I$'9#I$I$9!I$I$'9#I$I$'9#I$I$'9#I$I$9!H$I1U$I$%IHWUUveaPյ%-yW.`-/+4q6ȩ-/+ =)$1(@ I91 DJm>91  ɛ91 }m:B1_ ϶tA1} Ik+B1U S?dA1__n11 H$I11<< DҤC:91__ i11)д11$CɄ11<I$ 1f1*I$I$g9*I01`I1x1b+%H I$)I)I$I$)I)I$H$)I)P%1`pJI1b --I$11H$I$11(@!I11 mM$91 ۶mۖ91 I :1 M$r 9E)8G 1b&I$I$9F1 I$:1 $ 91 $C 91ꪪ mۆm91 IҦk91 \mۆm9E)$@2d$11 i91 $ $91I$I$9F1@$I$)I)I$)I)j"'RȦ1bxx 1TI1 - d$I11 C @91_IbǪ i1E)I$m1E)I$I$e)E) *(I$ e)E)I$I$e)E)ݐtI$1E) Mn1E) 'N'1bX^tJ1tI1 I$I$)I)I$I$)I)I$I$)I)I$I$)I)dB$@11I$`B1f1`1E)ːdIl[1E)&79F1H$9F1I$I$)I)I$I$)I)I$I$)I)$11jϥKI1a&I$1f1*$ 1e)I$I$)I)I$)I)I$$)I)P1%)0LB2@11$C$ 11  9 `$Ndž1!VW` 1E)vM11+$11I$I$g9* @ $:1 I$H$9F1 I$:1 L&H91I$I$)I) I$91 91 I$I$B$! I$I$B$! I$I$BD! `$91 I$I&91 I91 I$I$B$! I :1 II9F1 @$H$:1 B$@91ꪪ NB' 91UW~k؆m1E)$ 01$!`Idf1!5$C&`$1E)$I1%) /P&@1px9`I1--I$I$9F1H$@ )I)I$I$)I)9F1 HB2$$91I$I$g9* mѤ91 I$I$B$! H$H$:1@X1pSwe`+/)N/wE++/,(R,%!-(` */)C!mǩRJJ-)ID$, K&VX,2(e)PP@@I$1a.9e) $C$@91ꪪ I$L&91 tI$91 / 91 M&X,91_~I$I$9! I$91UUUS/Be)x/ I$N'9E)!I$1E) * %v9f1 + 9e) I$`0BD! I$I$BD!  91 91* $I 291 $@ $91 * 91 X9E)$LH91 @ 91H$H$91 B3-M9E)rb* I\9A. R9` 09!   481U%0C;;P8hjki  X8%% 1a %@ a9@@P N"'(91_\p`1!@Ie)b >DI1E) !I91 $B$I91ꪪ I$HB&91 !I$91 B$! I :1I$I$9F1 dB&$B91I$I$g9* I91_Ey1%UU! pOqf%i +, Sf +3I 0 Ey41DZ 4H$DZETT44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4 DZE@@4 DZE4 DZE@4IDZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4/j HDZꨨ1&ѐ@z-3 Hf_,c+%y Rc Afi_bl hfXck%yP_ `'-`9V  II8X9UU@  IHP9UUUP $A$A) $I2A) M,6`91 m۶k#(91~@11[1e)vڒ$ 1%)]d h1E)UI$d1E)UUI$I$e)E)$I$1E)UUUI$1E)UUIv$1E) U$1E)UI1E)+$I11[%1E) Iڤ91 m&91*   691 ݖ$91 91 @=9%)`z 9X1w7fX/+/f9UTTT IH$ 91  91ꪪ IH$91 "  91j Hn9E) I$91 І%s29%)X^ !I1E) #89E)jrzz !vn9E) m691* @$I&9E)Z жi91 6m&91P EJ1E) $M$91X51E)4I1$! &I$I 11۶m&1E) I$11U$ d$11_Um61e)$I$1e)$I1e) I$I Ȧ1E) q'9E) ub'9E) 5c;9E)+ $Nb9E)WW]mm$1E)I1e)&) @&1%)H4'81UUU-)He)UUh$I$He)@P8ZmP8I!IXH m&A`PUտ* Il iP- %yX- E` }%7 fq*)4 E /r4 f 9)yq.YrDZ/* ?1ɕ}蹧5=?3J?蹧\?3ɏ蹧?4I$I 蹧44I$I$%44I$I$%44I$I$%44I$I$&44I$I$&44I$I$&44I$I$&4@DZEP4I4DZEU`??x$Eyx\WI$!'@$I$$!I$I$E)aI$I$!I$!A $@$!I$I$E)$!**I$I$E)$!I$I$E)!I$I$1I$I$E)$!$E)E)$!0E)`I$%)b.E)!E)! I$I$1I$I$1I$I$E)$!I$I$1I$I$E)$!*I$I$1I$I$1I$I1  )(@$I$E) I$I$1@$E)!H$I$$!!(*+I$I$$!!I$I$$!!IE)!I$I$1I$I$E)!*I$I$E)$! I$I$1I$I$1I$I$1I$I$E)$!* H&%)bTX` E)a I$I$1I$I$1I$I$1 E)!E)!I$I$E)$!I$I$E)! I$I$1I$I$1 @0E)ap`I$I$A/  $! %@  E)!I$I$$!!**I$I$$!!I$I$$!!*$!$2!8!%%!!H8--RaH )-- `%yi )!!EEyI$I$hI$I$hI$I$hI$I$h[؊mE%yR%(%yE)PP@@I$I$1 I$I$1 I$I$e)E)?/ I$I$e)E)I$I$e)E)I$I$)(I$I$e)E)?+* I$I$1"I$I$1"R")$ e)pI E)?1b$E)XV0E)I$I$e)E)* *I$I$1"I$I$e)E) I$I$e)E)I$I$1" e)E)|`$E)!@B2$I$!pI!E)$I$e)I$ E)!/!AE)!+I$I$e)E)I$I$e)E)I$I$e)E)I$I$1 I$I$e)E) $@$ɐe)E)H$I$e)E)I$I$e)E)/ I$I$e)E)/$ɒ#e)-IE) //I$I1" @!$e)E)@$I$e)E)I$I$e)E)+II$e)E) $I$1" $@!$I$1"I$I1"I$ @! H$@! I$$e)E)T$I$E)!E)!說IE)! E)!H$I$E)! !E)! I$Ae)$!*If1E)1E)I$I$9I$I$9I$I$9I$I$9I$I$9I$I$1E)I$I$1e)I$I$9I$I9I9'9#I$I$'9#I$I$'9#I$I$'9#I$I$9!I$I$9!I$I$9!$1e) I$1E)*@$I$1E)I$I$9N,S$1$!׮ I$9I '9#$'9# I$9$I$9I$I$9I$I$9I$I 9I$ $9H@f1T$f1!_$It$1$!^U5I$e)$I$e) I$I$$!!I$I$e)I$I$e)I$I$d!d I$IbE)bVUV'N$E)bjY^p e)b% IS 1!կ -II1$!k&@f1!~\p) )0f1!-% I$1E)I$I$9$I$9 $I1E)I$I$9-[%Hf1 PH"1%qX/---K$K$E1TTVUI$I$9!I$I$9!I$1e) 1e)* I$I9!I$I$9!I$9!I$H$9!@1@$IDe)a&&@1E)I$I$9!I$I$9!I$I$9!I$I$9!$A 1E)Qs$1a$I1!I$I$9!I$I9!I$I$'9#I$I9!I$I$9!I$I$9!I$I$'9#I$I$'9#()"9P1%%-$IPH w1eiP-- yS7fi-/ -)f/++C2 [%DZ1@@PP  9E)* h4ڴ9f1 Idv91@&@1e) II91 h$I$91^WUW ɟ?91 } I$A1UU -'A1 ]U $ МA yr?{A1U] ~@91Uu I$I91UUUC&LB&11bZV^i611 R2,۶m9p@I I1% m۶h91 I$I$91I$I$g9*hH1@ p$I1 !1f1 H1f1($C$A11I$H11  11 * $A2dB&11 I$91UU I69e)jVM$1!(URbȦ1E) e 1E)?I$I$9F1  B$! I$H$:1 C$I91ꪪd21e)!I 1f1$H$11 vI91  1e)9F1 8p81$!pXp1$! 1E)  I$91 I$91꫿ I%V9f1"+%1@P&ie)I$I$e)E)I$I$e)E)/I$I$e)E)@e)!aNlۆ1!?4m1E)I$)I)I$I$)I)I$I$)I)I$I$g9*I$I$g9*H 11$IH1E)  $I$1e)@!$1e)9F1@$9F1I$I$)I)I$I$)I)1f1I$@11I$I$1f1*H $1e)I$I$)I)I$I$)I)H$I$)I)I$I$)I)AI$)I)I$@1f1@1%)@$I$1b\W\TI)P1 I$I$11?  $119F1 II$9F1 I$I 9F1 $I$9F1 `@91 I$H091 !I$91 91 I$I$B$! I$I$B$! I$I$BD!  91 I$L091 !I$91 ? B$! B$! H$I$9F1   :1 I$I9F1 t&91_^z#A1E)`EK@1$!H$e)%)I 1E)@d$1E) .ذmݖ1E)0FL$1TU 1I9F1 @$9F1H$I$)I)A )I) I$M$9e) nI91 @ :1 "IHX1UUUpSqٛpE9 *)" N7w$q +/,  ++,#xħ*/)۰mۖmǩ*/)I$`&ǩUV\\,"E@-@ɐF%)I !I$11* mݖn91 @91ꪪI$H$)I) )I$91 /  9f1 N"'91W^xI$I$'9# 915UCvBe)x/ I$N'9E)!0I$1e)* %R991 -% $I09E) I$`&BD! H<9A` JI1A 5 CH91ꪪI$I$)I) !I$91 / I$I$BD! 91( I$I$BD! H$91I$I$)I) 91 I$I$B$! $91 &z$98p\\W H8 qiw.iH/ 7nti1PTTU $@91 I$p%91W\p ! $I1!$ 0m91  C&LB&91 9F1 dB"$A91ꪪI$I$g9* ! 91 @ 91* I$I$91I$I$9F1I$@ )I)  $I$91  $91!pI%1 %U%Rq%q +1PN.sf +/4-@ &SDZ 43DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4IdDZE@4IDZE?4I$I$蹧?4I$I蹧??4I$I蹧?4I$A$蹧D4I$ِ$DZD4I$X-DZU?4II$蹧D4I8lٖDZ5?1O?蹧C/la豧?_A%#ض蹆z6$ȱf +_k mf"3[ iFyWb# fiW?d %XW ' qP $X9T $II?P9UU $ P9UUU@ IK91 / A) K`91 $;69e)j@ ۔m9e)C$I11N I1E)NXm1E)I$$ @1E)UuR'[ i1!^^I$If1E)UUU $I$1жI1$! `I$1E)UUJ$1E) U$H$1E)U IĆ1E)($I1E)@11#I1%)p^2% P1 SywqP+//-=DN%1TPPP ۲-9E) miv9E) $I$91 2)m۶9f1@j 1! &h$9E) m$9E) m I$9E) $ٖ9$!jm1!$I$11RIچ1E)P4n1E) 5M$1E)@1S1E) XX1E),,,X6k51E)ٛ 1$!"i6i3,1E)I$61E)m۶61e)$II1E)*m 4m&1e)؉ئ1e)H$I11TUUI4I1E)mt 1E)-Ȇ1E) `1! $H1UUU IRbH1UU$IH1UH$I$H1I$IPHUI$PHI$IXH I$m`PUկ In iP- %yX- E`տ %7 fi&}$%y*,$E*/ r$*3(v$ *4-i$+?۶ $ȹE T44I$I$%44I$I$%44I$I$%44I$I$%?4 $I$DZUU?4II$蹧D4I$$DZUD4I$I2,DZUUW44I$I$%44I$I$%44I$I$%?4I$I$蹧?4 0X'$)`P\ I$%)!zH$@$!I$I$E)aI$I! $!I„$A%)a׾(E)!* I$I$1E)!I$I$1I$I$1E)!ꪪI$H%)W^ )mݶmE) %)I %)A.E)!jXx$@$E)!I$I$1I$I$E)$!E)!I$I$E)$!I$I$1$H&E)AxxݖnIE)a --  )(@$I$E)!I$I$1$E)!*zH$I$$!!I$I$$!!+ I$I$$!!ꨠI E)!%)$!I$I$E)!*I$I$E)! I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$E)!* I$I$1I$I$1I$I$1I$I$E)!&`0E)xx  E)-% I$I$1$E)paɐdE) 5I$I$1$B$IE)!@IB2%)a %)- @$H$E)!z^^WI$I$$!!I$I$$!!I$I$!!?$CE)z $1=/+* @8//-qT`H----Ns%yi)---ݐmnE%yI$I$hI$I$hI$I$hI$I$h@ E%y 1E%qꪪ I$H$%yE)UUTTI$I$e)E)*@$I$E)0WV0E)I$I$)(I$I$e)E) I$I$e)E)I$I$e)E)e) I$I$e)E)I$I$)(X,E)XE) I$I$e)E)*I$I$e)E)I$I$e)E) *I$I$e)E) 2E)! C&L$E)!I$IE)!  H$E)!/H$IE)!IE)!I$I$e)E)?I$I$e)E)I$I$1 I$I$e)E)I$I$e)E) e)E)* x e)E)|I$I1I$I$e)E)I$I$1"I$I$1"I$ e)E)ɰe)!$e)E)$I$e)E)I$I$e)E)?I$ $e)E)?I$I$e)E)I$I$1"I$I$1"I$I1"I$1" I$e)%) I$$e)$!$I$e)$!I$IE)$!*I$I$E)$!I$I$E)$! I$IE)$!*I$ E)!m0e)!I1E)1E)I$I$9I$I$9I$I$9I$I$9I$I$9I$I$1e)I$I$1e)I$I$f1e)I$I$1E)I$I$1E) I$1e) @$1e)1e)I$I$'9#I$I$'9#I$I$'9#$1E)$I$1E)H$I$1E)I$I$9I$I9I9$'9#I$9$I$9I$I$9I$I$9I$I$9I$I$901E)^&f1$!_m$e)!&I$e)!UUH$I$$!!I$I$d!d I$I$d!d I$I$e)I$I E)!___I$e) I$ 1!U I f1$!ժ*!IH1E)II$9f1@m۶m1%) I$I$9I$I$9I$I$9I$I$9I$I1E) I$I1E)I$1E)I 1E)I1E)*C$@$H1 XH/qwyEX-$I$A&1e)I 01e)1e)*$1e)$1e)$@I$1E) II$1E)I$9I$1E) $1e) @1!I$1e)I$1e)*I$1e)1e)*@$1E)m۶1E)@I$e)A׾(PIm1!&kR'1!z^0IK1! 1e)(I$I$'9#H$I21e)$ $1E)I$I$9!H$1e)(~'~a@___ ܷ I%YHeP %1R/E %y*1&N U 3R?1PTVTIX51E)I$I11** @ 11 I11 //@$11@11 Emm91۶a1E)6mݶ1 jI$I1bU,I 1E)d&11^\ @-69 j X;?9 991Wp I$C91] ?91U} I 9! 4I$91UU  IK$91Uۊm햴11 I&$I1f1I 11**   11 1b$1x\H1 @$9F1@11I$$11I$I$11MN1!(I$11* @R1E) $I91 I$I$B$! $B$!I$I$9F1 $A :1I$I$9F1 [m۶a91$1f1I 1f1*I$11("$I1E)@m%K&1XVX&p91 A$H$)I)I$@)I)   )I)H$J$1bTTTW I$1b-]+I1 I$1E)UVI$I1E) H$e)E)He)E))I$1E)  I1Ć1E) ۶퐶11I$)I)$C&L&11 11 I$I$)I)I$I$)I)I$11I$I$1f1!I$11 $1e)@9F1I$@)I)I$I$)I)I$I$)I)H 1f1H$10W I1 !1f1 I$I$)I)I$I$)I)I$ )I)I$I$)I)dB$I11Z*IH1 I$11/11 I$K$91]^z I$11  ۆmݖl91 I$I$9F1 I$$:1I$I$9F1  $:1 L$91I$I$)I)  91 %ǧ90 91 I$I$B$! 91 I$@91 !L$91 91 @B$! $H$:1  :1 I$I$B$! m4 91_zI$L&11UUW\L$@1E) !I21E)H$@ e)%) Ie)%) J"E f1TP ݴ-1E)@11@$9F1I$I$)I)9F1 C۶m91ꪪ!I$ 11 m$91 91 J%yP `9)%pSf`+/)/wE +/,#J,$SB)RZj-#`6 /)30۸aǩzr,) D-?&y?~-X$S 9XP`BI$`011 I$11 *919F1I$I$)I) tI$91 /  91 9 h91W^xI$I$9 wɝ91=UU3 B1Xbb$1a\۠IK1b h$N21A^^ 'P9  Zl9` ɗO$ 1!% I$I$BD!  91ꪊ I$L91  91 * I$IBD! (9$!@ Kϗ9a& $I91ꪪ  I$91 @!91   (H9U5H$H$H8WUV^ DP8%55]B%hE)JBRR@R&1E) *+ ۰ ۖ91*  91` I$N'91UU_|!I$11? $ .=1p@I1!9F1 dB&$B91I$I$g9* @!91* @  91I$I$9F1I$I$9F1I$@$)I)  I$91 I$H :1v%9 %)Nw% -1" v *+4/P VDZ **44I$I$%4-DZ44I$I$%44I$I$%44I$I$%44I$I$&D1DZu?4I$蹧DImmE D4Im`DZ?4HI$蹧1h0) E) I$I$1 I$I$)(`v$1E) UUM-1E) :ݐ11! I1f1I$I$g9*$1111I$I$)I)I$11I$I$1f1$I$1f1*1e)@ 9F1I$I$)I)I$I$)I)N"@1bV $I1E)I$I$11I$11*I$)I)I$I$)I)@I$)I)I$H )I)I$I$)I)IB& C11I$I$11/ ɐd91+% #: @91U^!$I11 ɐ91I$I$9F1 @$:1 I$H$9F1 I$:1 `0@91ꪪ I$L&91N$h 1VV p09%)  I$I$B$! I$I$B$! I$I$B$! d& 91 >z$1b`X\ `) 9b B$!  B$! $I$9F1 H$I$9F1 91^ꪪ Ib'991UU_z01E)I$I$e)%)*IH!1E)$AL$1E)@=:Cֆ1xz yu9 -- $I 91`e11 9F1 9F1$I$)I)I$H$1f1 Iۺ51` O9a&pSq%yP+/! 1s%y --,!a)˫)-#ħ=5-,I$E-)I$H$%, @BB1W\rI$H$'9# va{91UU 0IO91 / `091 I$I91 $91 *5#1`\I 1 %5  $I$91 91 I$I$B$! 99` @%H$H9 $H8 m6i@+I !- `9TUUUh1E)jਠm&r%1z\pA$IE)=IVf1%),8Mr1` ĉe 955/ N"'(91_pI$I$11/ 0n91I@19F11e) Iڴh 9f1I$)I)  :1I$I$9F1 II$9F1 ڂm&i9e)j II$91  91G%q1UU" pSyf%i +/Msf*+4+Vow:=4,l¶&DZ\4% :DZz3!$ #k;DZ4!DZ4%`I$DZUU1%$I$DZWUU)%$I$%!<-%I$I 1!iۉ iDZ4I$ DZEUW4!HDZ4!v  DZ_ 4% mIDZ4 "(DZE@@4HDZE4/) DZǩ 4/ DZǩ4/IDZǩ44I$I$%4/HDZǩ4/DZǩO$I2$!EjjJDۖp E%?4I$IDZUUU?4I$I蹧?D1m蹧UD1I?UUD- UU=+bH蹧U;-~@豧=õ$ifW;¶&@fU9OҶ@EW4 Rc h%yU( IRd l%qU bc HiUb FaU֔I%yY] d+H%qYU S# H%iP Ib[ H$iPUSkIaPUIb" IaPU $IҶP1U $IbP9U @I$P9UT $ I$P9UU [O$P1UU -ݗP9pyEqX---" L$M f9VVV % I$I`9UUU I:E9UUU  &X9UUU &P9UUU=1 豧9cP豇zxxxfixx^z#2$9iP~I$IXPWWIҶ XPUuX"X8 X$ٍxHa8c۶)aPU Ib$aPU I@%iPU ݺ& iP ~b%IEqP_ IEqPU IR* %qPI= fXU&Hf`U(EPj!- fP -Ifi! o&f$q*% OҖ$%qW*dofi?,I&EU- 1Y@%y,d7l+E*, , )z`1MvF3 'f ^4HN%y 4e3:DZFjx4I HDZf1!D' DZ^42%c2&DZE@RZZ49DZE 4xDZf41`%41ɐ%4)DZE@D4d$EZU?ذnȹE D4ۖdIdDZ????4I蹧??D%"V蹆J*JID9@)ED4I$I$DZUUUP44I$I$&44I$I$%44I$I$%44I$I$%44I$I$%4%H$$!@P\TI$I$$!!@@$I$!I$I$E(CI$I!**!I$A$!I$H%)$!E)!0E) ɄI$%)a d%)I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1$I$E)!I$I$1 E)!@$I$E)!I  E)!I$I$$!!I E)!յI$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1$E)!H$I$$!! I$$E)$!A$H$e)I E)!׿ 8%)UU=0L$8%)=H$I$81 I$I$@! I$I@8UI$IH8*Ii X8*qw aH-+9uO %ya+  ` @E%yhI$I$hI$I$hI$I$hI$I$hI$I$h@ E%y 1E%y^~z I$H$%yE)UUTTI$I$e)E) @$e)E)p^WH$I124@E)@p`IIE)b/%+I$I$)(I$I$1 I$I$e)E)*$e)E)*z^d$E)!I$IE)!/ IC2E)!@$IE)!I!AE)!?+ )(I$I$)($)()(I$I$1 $1 @$I$1I$I1 1 I$I$1 @$h4E)bxp ɐE)a - I$I$e)E) $e)E)p~_I1؂%@E)bp` IE)b 5% I$I$1 I$I$1 I$I$e)E) I$$e)E)* e)E)@XE)` $A$!bI$ E)  H$E) H$I$E)!I„$AE)!*:, E)@I$Ie)5Օ&@!IȐ e)$!*@!I$I$9I$I$9$@!$I$1"I @!I$I$9 :f1bhf1!I$I$9I$I$9I$I$9I$I$9$1E) I 1E)H$I1"I$I$9I$I$1e)I$I$1E)I$I$1e) e)I$I$f1e)I$I$9$e)!m$e)!zUP$I$e)bWW!I$I$e)I$I$e)I$IE)!?Ie)!UI e)!5I@!f1E)jI„e)ֺe)E)I$I$1E)I$I$1E)I$I$9 f1!@ Wf1b)$I$1E)I$I$f1e)I$I$@!#Ւ& f1xIJ@f1- I$1E)IH$1E) '9# 1e)1e)I$I$'9#I$I$'9#$@1p`Id1-%)I$I$'9#I$I$'9#I$I$9!I$I$9!Z-1Xh:@`EI$ )*** $APH (* /iW%qX---5B!T%fE)BBRR#0,If1`bIID e)a. @ @!I$I$e)E)$A ɐe)E)I$e)E)+,òf1!j$I@E)**Hd&e)E)ZP e)E)I$I$9I$I$@!I$I$9I$I$9I$I$@!I$I$@!I$I$1E)I$I$1e)$I$1E)__ CL$e)E)@WW@E)! e)%)$1E)II$1E)WUI$1E)[&Ae)UUh$I$%QHVUUXXaP=5-7qnfi----1 qrǩf --C$ 2!豆1@@I$9!I$I$9!I$I$9!1!@IĆ1b(ח1E) I$I$'9#I$I$'9#I$I$9! 9 d1E)#$ 1%)x)Y@1$!m6k1E) $1E)   9 @$I21e)I$1%)@ 11 У=1p` ɑ1a %% 11 H$@11 $I$11  I$)1%)1m  1E)M$X 1E)$L1e)*`I$1e)* -N$91VU m 9e)+ I$I891UUUZжm&1e)I$1E)*l1E)11 11$ 1f1  $)I)I$I)I)IȐ$ 1f1*H$H$11!I$1f1 ai91 I$I9F1I$I$9F19F1 I$@$:1 II$9F1 B$! I291ꪪI$H$)I)I$I$g9*@ $)I)I$I$9F1I$I$9F1I$9F19F1 II$9F1 m91 lC l9E)~ꪠN$"1E)UVhI$I&e)E)UUU\I$I$1 $I$e)$! In1!+@ &ئ1E) 11 I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$11I$I$11$I$11?I$I)I) 'L'1b^X11 I$I$)I)@ :1`Ͱ %1 ) I$11 *1f1 I$H )I) I$)I)I$)I)I$I$)I)LB2$H11L$L11WV|}m1!\0'X1\PK6)1! @ ϗ1a&9F1 A I$9F1 I$H$9F1  I$:1 d091ꪪI$I$)I)  $91 91 I$I$B$! I$I$B$! 91 $# 91Idˀ1E)* B$! I$I$B$! H-9e)h  9$! $B$! N"'-91U^zdB1E)$I2 01E)I$1E)@$I$e)E)@؆1! @R-1E) *`$k261p\X`I$I-E)~UU@ I1 -+$I$111e)I$`1f1 Mx[`1 %%RwFa //)&7WF+/) MP%׾Z,!0f -)H"$B")$,"(E`-AE%%-J'P<1T\PpI$I$9F1r$`Ѧ1E)01E) I$I$g9*I$@)I)I$I)I)I$I$)I) nI91 / 91 =;491UW^xI1e)* .t?B1U}"'C1Be)~xj۰mۖn1%)* &I$91U IN91 H$BD!  $B$! ۲m۰91ꪪ I 49 `I1A /  I$91 91  j$b9aXܰI$I$H@ IviXH/+ vn۶`1PPTT  91 Z"Ҋm91Zhm1!p1I" E) I$I$E)!mnw1E)*+)11 B!I91 I$r%91U_|x I$11?9F1H$I$)I)9F1 DB2$I91ꪪI$I$g9* @ID91 @$H$:1I$I$9F1 $C$A91ꪪ I$HB&91 !I$91 89p`ߐoəfy %Pa+wE(fr6f%!@ ,!mӶm fꪪ1!IضI 4%I$m HDZUU4%I DZU4%Iv DZժ4,y`@DZ4 $DZE P4HDZE4/DZǩ41H%41%?4I$I$DZUUU?۲۰mDZE@DFn6 E D4I$IDZUUUD4I$I2`DZUUUD4I$0DZUTJ4Id#1r)DZ*4АdIEO4M*2)DZfHHj4IE J,h۶)§5D4%DZQD4`ۖ$DZ?4 蹧D4۰mI$DZ?D4mK$DZTUD4mI$DZ??1蹧@9/vPmKȱ=1mI豧;,`-?]豧\1)[; @~3&-:4 ~B@ǩ,3%if_ &HEU" R# I%yU n# Hf%qU # HeiUd @Ea_I?d h%aU_$l I$yX_ I'm iqXU_ I$d IiPI$ hPWmۤ @`PI `P D%C2iH*RR"/)nX % 9_֧Ep:`Eaxx#::aPIXP?-o;蹧UUU\-fx bfq~S# @E`WI$ %`Uc$ %yaUvҖEH_ͶEHI- EaIb$)EiU k E%iU m(f%i% f%q+I~vIEyU*,km%yU+nU"1On$aȩf 9krB豇 =#޶%豧UC IRnIU*C#)n (H)O )§UWC IHBI%y J-IM@ §UD/?蹧UU41ImDZ?+uҶm[ȹ_4+ DZ4!sDZ^4!ꮀ DZ4ޖd Ey4!@&=DZ Z4!t6mDZ4NlDZf4!#P'DZz ^4!c;XSDZuh-4Il۵ DZf4`ǶmDZf3B!lɶE@B4IЖEU 4$I$DZE UUU43 %43 %?3蹧??6,۲-DZE@@@DlɖlȹED4۲aK$DZD4I-۰%DZ?4I$@蹧?4I$I$蹧4<DZ @pm۱$A!TUUU$H$$!I$I$E(CI$I! $! I$I$e)E)! E)$!@$I$%)!jꪪI$$A%)׾(E) I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1$E)!H$I$E)!$E)!{@$I$E)!^UUI$I$$!!? @$I$$!!WUI$I$!!/ $H$e) %)$!I$I$E)$!***I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1@$E)! 1$$!!H$I$$!!I $e)!H$I$E)!$@ 8%)UU= H$8E)=H$I$81I$I$@! I$I@8UI$IH8 Im X8*m4`@* - %qP {s$ %y`* go4 %y%q-  $AEEyI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h$2 EEyP%(%yE)PP@@$I$)(H$1 )(I$I$)(!E)! I$I$1 I$I$1  H$E)!ضk$E)hZ$I$E) !H0d$E)!I$IE)! I$@E)!/*I$I$)(I$I$)($)(@$I$1  )($H$1I$I1I)(I$I$1 I$I$1 I$I$e)E)* e)! e)$!$I$e)E)xVUU)( 1 I$I$1 E)!`%E)`0E) I$I$e)E)`غ5E)XۤI$E)I$!E)!+ AIE)!@$I$E)$!I$IE) *IE)! I e)E)/  e)E) H$E)TWe) I$I$@!I$I$@!I$I$1e)$1E)I$ 1E) 1E)I$I$9I$I$9r$`0E)bX\p1f1 I$I$9 1E)$1E)@$I$1"@$@! @!I$I$f1e)I$I$1e)I$I$@!I$I$@! `e)!@I$IE)b׿`]$f1!{U%I$E)!UI$I$$!!I$I$$!!*H!0I$Ie)!/Ie) ie) 1E)I$I$1E)I$I$1e)I$I$@!I$I$1e)着I$I$1E)I$I$9I$I$1E)I$I$1E)I$I$1e)$e)`pD 1b%- I$I$1E)I$I$1E)II$9I$I$9A$I$1e) $I$1e)I$I1e)I$I$9@$1e)I 1e) I$I$'9#I$I$'9#I$I$'9#1%) I$I$9!I$I$9!$1e)$1e) $I21E) [%Hf1 PH yW1%yX--TB%S2؏%ExX/2la9@ mmI1UUW\@9F1@ @$)I) 11$@I$1f1*I$1E)la11I$I$)I) !91 + #$91ࠀILۢ Ѧ1e)H$H$9 ^:9jz x  1-%-  1e) `O91-U 091 L&91   91* ̐H9%)` IT 9b. I$H&91 !I$91+/ $P$H95 IIPH++ w1X9@@ I$I$91 I$91 /? h%Xm9f1 b"991^Zzr"9 I1E)^zI$I$1 I$1E)UUvaW1E) *+  ݖm91* $91 I$M&91UU_~!I$11 /@9F1I$I$)I)I$I$9F1H$@ )I)`$N$1E)0\^ I!A9e)I$I$9F1I$I$9F1 $C2$A91ꪪI$I$g9* 2A 9E)B *dA1  LgTq1* -5!6SN%y---/yVJf++1!%# Ij4DZf 41ɐ %41H%%410%43I%?4I$IDZUU} D[%HEZZDٖm ED4I$lDZUUD4K ېlDZD4ImDZUD4 ɶmDZD4l$DZTD4۰dؖ%DZ<D40K$DZTU?4 蹧D4۰-I$DZDmIdED4$H$DZTTU?4H$I$蹧D4dI$DZ?U?4H$I$蹧44I$I$%44I$I$%?4$I$DZ]UU44I$I$%44I$I$%44I$I$%44I$I$%?4I$IDZUUU 44I$I$%?3I蹧U?1O 蹧UW?/c 蹧UUW?c%[lȹEZZP3IEy9(c,@ȱ 7%Rȱ_6  mDZf_-~¶f_+@fU)@EU,bdEU!Ff%yW OHf$q_ Rf$qU bېfqU Ib$ FiU m-9Hfi"yr4E -cmMfU] ( d q~~blF`WImF`UD;uR;HȱC-c ȩ_~6!3& ȱf) fW1m ǩE_*1I`ȩEUꪀ)IB$ EU1Irm ǩEU*3ok ȩeU6Ibm DZfU6In$IȱfU /߶&U/"I▓/"MU1&I1)IܒU;,b۶豆3,n C/!ym鹧UUC1蹧D30aD4I$DZUUJ=OIUUUJ4ۆ$$)DZVJ4#I$ DZVJ?@$mҶIZZ_O4MR$)DZV* UD4Im؆mDZJ4I$H)DZUUD4I$[ DZU}pD3?}DZUUU043%4%DZ`4!I @DZ4M'DZf^4nXf`3vi f3Զħf1!Nm'DZW _/!I$1f+-!I$hdf>1! I2&/4!`wI$DZUU4!v$DZU4%DZ4/ DZǩ41%?4@$I$蹧D4C2$I$DZPPUU?  H.-ȱEY@?x$I$!\WUU$@$$!I$I$E(CI$I$E)a $!** I$I$e)IE)!I$I$E)$!@$H$E)!I$IE)$!E)!I$I$1I$I$1I$I$1I$I$1$%)ap!%)A I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!* I$H$E)$!@$@ E)$!I %)$!H$I$$!!pXXI$I$!!UI$I$$!!bpxI$I$!!U5 $H$$! I$IE)!E)!I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$E)$! @$E)!I$I$e) A$$!!I$I$$!!I $E)!յm_ I$I&0$!UUU $A2I$8$!UH$I$8$)I$I$@! I$I@8UI$IH8 ImX@U+I- iH* }4%qP }w$ %y`* iYr$%yi  1IJE%y!I$AEEyhI$I$hI$I$hI$I$h EE)@@$EE)PUI$EE)UUH$E%y@$I$EEy 1 Ey%q I$%qE)UTTPI$I$)( E)b@ E)bI$I$1 I$I$1 0E)!IE)$!M$[3%)bVX $I$!b I E)! !AE)!+I$I$)(I$I$)()()( $)(@$I$1I$I1 )(I$I$)(%K$E)\WE)  e)E)` H$e)E)xWUH$I1I)(I$I$1 I$I$1 I$I$1 I$I$1 h$ E)xI݆mE)b- $I$E) H$E)!*ItmE)ծC&LB&E)!! E)! ۶$E)a`E)a   I$e)E) I1"I$I$@!Le)0 @!@$@!@$I$1"@!I$I$1e)I$I$9I$I$9 f1@1E)I$I$9$1E)$I$1E)I$I$1"@!I9f1 I$I$@!I$I$@!I$I$@! e)%)$e) &I$e)!XWUH$I$E)!VUUUI$I$d!d I$I$d!d I$IE)!-I)e) IZe)!I$I$@!I$I$@!I$I$@!I$I$@!I$I$1E)I$I$1E)$1E)I$1E)$I$1E) I1"I$I$1E)I$I$1E)I$I$1E)I$I$9A$I$1e)I$I$9I$I$9I$I$9I$I$1e)I$ 1e) 1e) 1e)H1e)I$I$'9#$1e) @$1E)I$1E)$I$1E)$I$1E)I$I$f1e)I$I$1E)I$I$1E)I$If1e) He)!@PTPCIH%! !XH//+y1uS%yX----#/fE pI$LRE)a՗,$Ie)$!$I1E)H$I$1e)@$H$e)E)I$I$)(I$I$)(I$Ie)E) @!$A2$I1E)H$LE)aWTU41b IN1aՕ&I$I1E)I$H$1e)I$I$9I$I$f1e)I$I$@!$@$e)E)I$I$e)E)I$I$)(I$I$e)E)+f1E)I&L$1E)@$H$He)I$$PHUuvےɕX8 5wFX+/y7W % C&w{W蹆=?/ =H$H$f1TTTUI$I$9I$I$9I$I$f1e)P$I$e)bTUT0I4If1 I$1E)*I$1E)$A!$1E)  1E) I$9!I$I$9!I$I$9!I$I$9!J"%" 1E)TP@ $1E) H$I$9!I$I$9!I$I$'9# I$9!$H$9!H $9!)#1%)`-I1%)55I$I$9!I$11UU 11$11I$I$g9*I$11I$I$11I$I$9 & ҫ$1\ I1E)IҶX;1e) ɐ$ 1e)ФI$1E)*  $1E)I$I1E)L$L$1e)*I$1e) Hئ1e)I$R@1UT@  1b$HL$11I$I$g9*@ 11I$@11 I$H$11 I$91U ؆mٖ91hi1b@DIĆ1bU1%)I$I$9F1I$I$9F1I$)I)I$I$g9* I$I$91 x"%.I9\z 1@9F1I$@)I)I$I )I)H$9F1IB&I11k -1@!E)I$`E)bU8E) I$1E) UU o1E) 6`ݖt11% @ 11 I11 ** I$I$g9*I$I$)I)H$11I$I$11I$11.@$11 I$9F1I$I$)I)I$I$)I)@1f1I$H$1f1 $I$1f1 $I!1f1 (1I1 `ܿE 1!55I$I$)I)$I$)I)L11Va$I$11UUT Rs91p 91x $I$11 11 I$I$9F1 mS'9E)h_ I\9E)* C$@91ꪪ I$`091  I$91/ @BB91k0IΩ1E)>> 91* I$I$BD! I(9$!` I1%) @$91 I$I$B$! $H$:1I$I$9F1  :1 r9 @91VZj۲m 1e)Iڴk 1E)h6h6e)!I$I$$!! ݐIe)! //S1e) I$1f1 9F1I$I$9F1I$I$9F1 8p91b`X`N)pi )-RwwFa /-(t Sf +-( IK$VT,!f-%L$H&,3,ӼiE`b/! ?E %/-O$r'f9VVXX 9F1I$I$)I)$C$I1f1$IQ1e)$I$e)aI)TH1 II$)I)I$I$9F1 mv91 *+ (@91tB: ц1E)$C$A1E)ꪪ1kKBe)?'t&9e)II$1E)** `W91/ 91 $ 091 H$I$9F1  B$! 91ꪪ ۶m-H1UUUH$I$H9 !XH// %PX1PTTU @ 91$I$ 211  qd91 /? `&91h$@411XP`pK&@1E)V^Zj۲%K%E)bp\pLtf1b %-1I1e) * vi91*+ 0,@91x`I$I$11 11 /H  9F1 I)I)I$I$9F1b(H1E)0  R-'9 ^ IH9$!I$I$9F1I$I$9F1 LB&$B91 mѦM$9f1 l91#'N'1aVX`N)E  ),`N/E +3(Jw +?1}9 蹧 ?4I$蹧D4I ۖlDZW?4I$H蹧D4m۰%DZD4۶$X$DZD4ۖaI$DZD4ɶmI DZ?DئmL$EVW?4$I$蹧44I$I$&D4K%I$DZWU44I$I$%JI E44I$I$%44I$I$%44I$I$%4IDZE44I$I$%44I$I$&44I$I$&44I$I$&44I$I$&?4I$I$蹧?4I$@$蹧44I$I$&?4I$I$蹧??4I蹧????4I$H蹧D4I$IlDZUUU?4I$I蹧?4I$I 蹧44I$I$&?4 $蹧?4@$$蹧D3o蹧D3IUD1IUW?1I'd蹧U_=/IԶ蹧UU;,cжȱ=+bے@豧U;)Oc 豆π;v`DZE7#0ȱW6"IRmȱfU?ObлfU7IbfU3qmȩf]=!Pȱf46J$ȱEyTV7` Bȱf_3Sd ǩE_1Im EU?3蹧41K%DZC/IS>ao 奥C/m+%PXZ?/U!n iee=/ $o豧UUUC,IrU F$7$$%*VA1v lI豧U?/dl蹧ZP C/I`K蹧C4v۶$ DZU?1K 蹧TD1I蹧U??D1Imۆm蹧?3I蹧u???3蹧?4I$$蹧D4I$I2lDZUU?4I$I DZUUU44I$I$%44I$I$%44I$I$%?4I$I$DZ?UU?4H$I$蹧?4I$蹧44I$I$%J46d$)DZZUJ4m!d)DZD4ۖ$DZUD?@$I$豠*J?Im6IUJ4d )DZZ**D4I,%DZUP?3蹧?3DZUUT43@%4/jDZǩ3$J$DZETTT4i=:DZfx4[ hDZf-d۶I F)#Ʉf%!I$@$!!I$I$ǡ-!ݐ$I$f4mNlDZf4 DZf4)DZ}4'z$!p\\W $$! H$I$!I$I$E)aI $!* I$I$$!!IE)!I$I$E)$!$@$E)!I$Ie) E)!I$I$1I$I$1I$I$1I$I$1I$I$1H$%)b\pI!$!a% I$I$E)$!I$I$1 E)!&L$%)^W!$%)c] %)b 5I$I$E)$!** E)$!I$E)$! %)$!$I$E)!UI$I $!! $I$E)!WUI$I$!!  @$%)$!I$Ie) E)! I$I$E)$!I$I$1I$I$E)$! E)!E)$!I$I$1I$I$1I$I$E)$!I$I$1 E)!I$E)$!I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!B$%)p$I!$! I $e)I$I$$!!$8!UU $I$8! I$I$80I$I$@! I$I@8UI$IH8 ImX@U+I- iH* }4%qP*n$ %ya* mw4 %y$q  !IIE%y I$EEyIhI$I$hI$I$hI$I$h EE)@ H$EE)@TUH$I$EE)TUUUI$I$1 I$I$1 ph%yE) I%y%q mݖt%y$qP)H%yE)P@@I$I$)(@, E)bP@ItE)b E)$! I2$$E)!I$IE)!?IH&E)!? @$IE)!I!IE)!/  $)(@$H$1 )(,[5E)@p`ItE) %% H$)(I$I$1I 1I$I$)(I$I$)(I$I$)(K%E)\0lE)H$I$e)E)TUUUI$I11 I$I$1 I$I$)(I$I$e)E)/I$I$e)E). @$)($I$E)!I$I$1I $E)*$E)$!I$I$E)!*$CE)!*I$Ie)E) J"%#IE)aX`I 0E)% I$ 1" @!I$I$@!$@!H$I$1"I$I1"I@!I$I$9I$I$9I$I$9I$I$9@$`0e)P\P@!DJf1 %)I(11 z$Ie) I@!9I$I$9$e)p@ĉe)b%% I$I$9&e)!m$e) `$I$E)!I$I$d!d I$I$d!d I$IE)!U5I$ɶE)!UWImۀe)!$@!@!I1"I$I$@! 'e)\e)$f1E)H$1E)@$I$1"I$I1"I$ 1E)I1E) 1E)I$I$9I$I$9I$I$1E)@$I$e)0TUV$ITf1I1e)I1e)1e) 1e)$'9#I$1E)$I$1E)@$I$1E)I$I$@!H$H@!1E)뫫I$I$9I$$1E)ꪪI@$1E)II$1E)I$I$1E)*$I$1E)@$I$1e)f1!@HH$Hf1naw`H/qSEa--J$H$fe)TTTT$C$I1E)몪I$$ 1E) I$ 1E)I$I1E)*I 1E) d1E)IB$@1%) ! 1E)I$$1E)I$9[ 1E)ު 1e) 1E) 1 1e)I1e)I$H$1E)ꪪ$e)(0m1E)`$@1E)*Imm1E)*I1E)I$1E)說dB& He)UUL$I$HE)I PH*  y&a %q@+ #yvW i / xv5 *; I")f1@@ I")f1@dIĆ1 UI$1E)I 1e) ZH f1!I1E)$I()1E)bme)!.I$I$1E)I$I$9I$I$f1e)$I$1E) $1E)  $1E)$A$1E) 9 H$9 I$ 9!I$@9!I$I$9!I$I$9!I$I$9! 9  1E)LH$H11IB&@11UZ mvk ,1e)*21E) $I$11'UUUI$11 U11H11O$X 1W\TI@1 I$I$11*D$11@VM41e)I$h1E)$IȄ1e) CI$1E) I$ۖ1e)*I$I41E) I$1E) Pm$1E)*mn11 11I$11*I$I$)I)1f1I$11I$I11(11.I1aɐdɐ 1!5  $I$9F1I$I$9F1I$I$9F1I$I$9F1I 9F1I$I$)I)I$I$)I) $)I)I$I$9F1I$I$9F1I$@)I)I$I$g9*@"($I1p@It$1% M5 m1E)WzI$M%1E)UUUZI$I$1I$I$e)E)UUU`JĆ1E)U` 6ۦ1E) ! 11 11I$11*I$I$g9*11I$@ 11I$I$11/1f1* I2dB211I11 /I$I$)I)I$I$)I)I$1f1I$I$9!I$11.I$I$g9*I$I$g9*I$I$)I)I$I$)I)`11I$H&11UUT\ KB1U I"'mA91UD$I$11WUVL8b*1E)I$1*V1`H1E)I)I)  I$:1I$@)I)I$I$)I) E$@91  H$:1  B$! @'`"59p\x T9 % I$I$)I)  91 @ B$! I$I$9F1 B$! @$I$:1 k5ۺ 91^$C$ 211{h'11$!|\p`I$IE)!It e)!?!I$1E) /$A$11+@!1f1 I$I$9F1I$I$9F1@1%)@+ P1U/qSEyX/-# R7s%y//( X"$S,XRzc,   %-%#0(,% I**+$H$E=WTT1`93ȇ9P``I$I$fI1UUUTI$@$)I) I$)I) @1e)kmm1$! 91I$@)I)$ 9F1I$I$)I) mt91 / 91zh۶m؆e1$! $I$9 9e)IĠMڦ1e)H$1e) w91 91 I„ 91  B$! I$I:1 $@$H9I$IPH+ XqP9@@P !91   59e) z X 91I$I$11* @91 / R$P991ZTXpk-[,1e)" 1jE)ݐnɖt1E) [1e) * t91 +/ ,9!` IL1 @11I @ 9F1I9F1I$I$9F1 M2'9V^ 1t 9 ** I$@$9F1I$I$9F1I$I$9F1L 1f1 $x&1axpKI1a - aWm]%q15U PNvFfI )7%wȱf -=+r1 蹧>?1 ۷蹧?4$I$蹧44I$I$&44I$I$&?4 $I$蹧44I$I$%4$@,DZE`PP@4IL DZEU%4%DZ?4I$IDZUUU??4I$I$蹧?4I$I$蹧??/m۰mȹ44I$I$&?4I 蹧44I$I$&?4II$蹧????4I$蹧?4I$I 蹧?4II$蹧??4I$蹧?4I$蹧?44I$I$&?4I$蹧??4@$I$蹧?4I  蹧44I$I$%44I$I$&?4H$I$蹧?4II蹧????D4۲-؆mDZ?4I$@$蹧44I$I$%44I$I$&?4I$蹧44I$I$&44I$I$&44I$I$&44I$I$&?4I$蹧?4I$蹧D)[+I"蹧OD hDE*41ImDZ41I-DZ4JdEy?/˲m蹧fD??/I 蹧UU4/I۶DZ?L2rȹEV?/ I蹧UP=/$-豧A3,IҶD4I$ImDZD4I$IlDZUUU?4$I$蹧?4@$@$蹧?4 $I蹧??۶ ۖdDZEJ4!7$ +?K$ömDZETT44I$I$%D4ɒ,-DZ44I$I$&?4I$IDZUUU?D4,%DZ?mۆ%ȱEPD ED4`۲-DZ?4@$I蹧??D4IdmDZUD46lۖ$DZD?I$I豪?4$@$蹧?4蹧?4I 蹧?4I$I$蹧??4I$@$蹧?4I$IDZUU_?4I$I DZUUU44I$I$%?4I$I$DZUUU44I$I$%44I$I$&D4ِI$DZUD4ÐdI$DZ??J%R#[v)†zrJ)vk64)‡J4ȍۘl)DZJ4dBn6l)DZZD4I-ۆmDZDKmIETD4I$I2lDZUUW43%4-DZ4@$DZEPP4nE4!I$ DZUW1!$NDZuUW%!I$I$!!I$I$ǡ!8P'f)pP\ $! @$I$!I$H$!II!**I$I$$!! I E)$!I$I$1 @$E)!I$I$$!!II$!!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$E)$!I$I$1I$I$1I$I$1L$ %)b^aB2%)bk E)% I$I$E)$! @$H$E)!I$Ie)@$I$$!!pXTI$IE)!UUՕI$H$$!!`PXI$I$$!!UU5  A$$!!I$I$e)IE)!I$I$E)$!I$I$1I$I$1I$I$1@$H$E)!I E)$!I$I$1I$I$1I$I$E)$!I$I$1@$H$E)$!I E)!I$I$1I$I$1I$I$1I$I$E)$!$H$E)!HB&$C2!apI$!A/  I$I&8$!UU $I$8$! I$I$80I$I$@! I$ @8U I$IH8 I6I X@U I%7 iH }4%qP n$ %ya* mw4 %y$q i E%y!I$EEy hI$I$hI$I$hI$I$h EE)@ HEE)@TUȟEE)TUUUI$I$1 I$I$)(I$I$)( @$)( IDI$iE)UU @rvqXI{%ya + C0!%y%q I$H$%qE)UTTPI$I$)( @$E)! @ E)!$I2dB$$!b`ptIE)b %H$IE)!+@$E)!jZ@$E)! H$I1 @$)(@$I1$CE)!@!AE))I$I1I)(I$I$)(I$I$)(I$I$1 $)( X5E)`$I$E) &I)(I$I$)()(I$I$)(I$I$)($e)E) _$H$E)!@$I$E)bVWmE) mX&E)! ض6m$%)b`Xn %) I$Ie)$!*I$I$e)E)/ $I$e)E) *I$I$1"I 1"I$I$@!@$e)%)$I$e)E)$I$e)E) @!I$I$9I$I$9I$I$9I$I$@!I$I$9$@!$Ie)E)`I$I$e)E) b"%@E)bp`I1`Ie)b%% @!I$I$@!I$I$@! e)%)غ&e)!6I$e)!H$I$%)!^_I$I$e)I$I$e)I$IHE)!UU I6e)!U Ie)$! !Le) VWmݖme)!I$I1" @!9$@!K$he)b^Z1K$Ie) I$I1"I$@!I1E)I$I$91E) 9t$e)b V1$!I$I9I$9jP1l1! H$1E)$I$1E)@$I$1E)I$I$1e)I$I$@!I$I$1E)I$I 1E)I$ $1E)I@$1E)I I$9$I$9I$I$9I$I$9I$I$9I$I$9I$I$9I$ $9IH$1E)$ $1E)H$H$Hf1II`P=--1Oi---%K$H$f1TTTT  1e)I$I$9 I 1e) I1e)I$I$9!H$@ 1e)I$I1e)1e)H$@1e)I1e)I$I$'9#1e)"%R#1a`Id f1a-5% I$I$'9#I$I$'9#$B 1E)j(I$f1dI@1$! I$I$91e)* I$I$9!I$I$9%K$P1% I$$IPH* %iP/nfa /9wOAȩE-/ ;+ݻ{豧 ?2%R$DZf1@PPP9R")f1b@`pIIf1b5 I 1e) 1e)I$I9$@$1e)C$A1%)ꪪI f1!. 1e) 1e)IB$A1E)I$1E) I&$1E)I$I$1e)I$I$f1e)$I$1E)*I$1E)1E)*1e)I$9!9 H$9 I9 I$I11/+H$11 11  1E)`xu1!.LB2$I11Vj*I$d11UUZI$I$9!@$1%)@ $11+U11@11 I$`11UW0!I$ 11 $I$1f1 @11@I%1E)I$m1E)$I$1E)HI$1E)m&@[1E) $I$1E) ` v$1E)> 1E) I$I$g9*$H$11B#=1`p1b+%511I$H 11 I$1f1 * ۶m)91 $͐=1%)`p y[1! // H$:1I$I$9F1I$I$9F1 LB&$I91 I$I&91 $I$g9*9F1 I$I$9F1@9F1I$H$)I)I$I$g9* k-v91~꯿tB 1E)IB' 1E)U^xI$I$e)E)UUU\I$I$1tI$1E)-UUM햴1E)HAS1e) I$$C1f1I$11*11 I$I$g9*H$11I$I$1f1I$11 !I11I$I)I)I$I$)I)I$I$)I)@ 11I$I$11!I$11  $1f1I$I$g9*A I$)I)I$I$)I)11$&011~Xp` Rmi9! * J991Tp 22c9E)kjI$v,1׾(d@1E) I!A91 I$I$9F1 $I$I291 L& C291I$I$g9*   $91 A$:1 "  91j 91 `091ꪪI$I$)I)  $91 I$I$B$! I$I$B$! H$ :1I$I$9F1 h2,91~ꪪ N$Mڧ9e)- f1$!I$I$e)E)+e)E)!I$1E) +$A$11?@!11I$I$9F1I$I$9F1I$I$9F1Op`9 )%pSqfi+-(聧F -,f=5-)ID$,%I$L&,X%P2)EXPPB1! EAA!O'z>F1W^\x9F1I$H$)I) I$)I) $I1f1@$11$@ 1f1 *$I$)I)I$I$)I) I$I$91  )I91BJ H$HE)Aܰi۶E)!H$I$E)! o9w9!- I$N'9E)鐴I1E) * IL91 -% @ A) d$L&91  $(H9UUU H$I$H9 !XH+ 1۰MX1PTUU 91 C't:9x^^x$!Ie)** kQ+9E) II91? 691 "m91j訠# ц1E)ꨠI$`&1E)UWV^I$I$E)! @R!1E)* In9f1* P9,9bp`IP1b5%  I$11/9F1I$H$)I) 9F1@$ )I)P91E)`p 1E) %5 I$@ :1I$I$9F19F1#I1`1 1%) I$H$)I)s%1 %# N1%q /1PN.sf +4-@ &S 43DZ44I$I$%44I$I$%44I$I$%44I$I$&?4I$I$蹧??4@$I$蹧?3蹧44I$I$&?4I$$蹧?4I$H$蹧?4II$蹧?4I$I$蹧?4I$I$DZ?UU?4$I$蹧D4I$I%DZUUUP44I$I$&D4I$ɐdDZ5D4I$H$DZUUTT44I$I$&D4ɖ IdDZ55?4I$@$蹧44I$I$&44I$I$%D4ÖmٖmDZD4K$K DZD4I$IDZUUUD4I$IDZUUUD4IdImDZ557?4 蹧D4I$IDZUUD4I$mDZD4I$mDZD4۲mDZD4I$mDZUUD4I$ DZUUD4I$DZUUD4I$DZUUD4I$ضmDZ?4I$蹧D,6b˒ I蹧OOIx4I)ED4I$؆mDZD4I$۰mDZUD4I$$DZUUUD4IdmDZ?<D4K$mDZD4I$۰mDZD4ɒ,mDZ?4II蹧????4@$@蹧??4I$IDZUUU?4$I$蹧?4$I$DZUUUD4$I$DZUUU?4II$蹧??D4۰ I$DZUU4IDZEJ4 I$ DZUUD4I ِ$DZJ4Ia$)DZUUD4ٲ-$DZD4I$ې DZ?4I蹧??D4[%[2DZPPPJdB&$ IEZZ?ٖmȱE?4 $I$DZUUUD4IIdDZ5555D4؆mI$DZWWD4IdIDZ44I$I$&?4I$I蹧?D4$I$DZUUU?4I$蹧?J4IBI$)DZU*UUD4K$ɐ,DZD4۲-$DZ_J4I$IB)DZUUUD4۲%[%DZ?4II$蹧??4I I$蹧?4I$$蹧?4I$H蹧??4I$I DZUUUL44I$I$%?ö%[%ǹEPPP?ٖmDZE?4$I$蹧J4ې$I$)DZ*UUUD4۶ I$DZD4l%DZQJ4ȍ J4dBr$7l DZZ**Jd" I)EZ*Dm& E D4I$I-DZUU44I$I$%4!DZx4$ 4)`Eq!TUUU@$H$$!I$I$!H$I$!$! I$I$$!!PE)!$E)!H$I$e)$$!b`@!$!b I$I$1I$I$1@$E)$!I$I$1I$I$1I$I$1I$I$1$E)xE)!I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!*$H$E)!I$I$e) @$E)!^I$I$!!^  @$E)!z^ @ !b` I!b%%I$I$e)IE)!I$I$1I$I$1I$I$1I$I$1 C&$!ap$I$$!%I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1 E)! %)a, @$E)$!I$Ie)$@$8$)UU%$I$8%)I$I$80I$I$@! I$ @8+ I$AH8+I6E X@ }. iH 4 %qX*ܶ %ya  mw4 %y$q i E%y!I$EEy hI$I$hI$I$hI$I$hE)!I$I$1I$I$1@$@$E)$!I$Ie)1I$IA%!UUU%I$H%)U km۶mH(Im۶H8UIB'( X8UVIض X8UUI$ IP8m- `@ ks4 iH } %yX  y[4 %yi* iR E%qim6E%yIE%yhI$I$hI$I$hI$I$h$EE)@T$I$EE)@TUUI$I$1I$I$1I$I$E)!I$I$E)!I$I$E)$!* I$I$1)()($)(H$I$1I$I$1 $1I$I$1II$1I$A10ldE)< E)!પIMѢe)!? L$H$) % N7wiH +-Mn%yi +-P(@%yE)P@@I$I$1I$I$1$E)b@p E)b%% I$I$E)$!I$I$E)$!* I$I$1I$I$1I$1 )($I$1$E)b`P %)b E)  H$)(I$I$1[$X-E)PTP@!!@E)b %  E)!ꪪI$IE)!.Inò6E)!/ @ $@E)X說E)* IE)! I$I$e)E)/I$I$e)E)I$I$1 I$I$e)E) *I$I$e)E)I$I$e)E)I$I$e)E)+E)!@I e)!?I$@@!$@!I$1"P$p;e)bPTXhHdKE)b I$I$)(I$I$e)E)II$e)E) @$I$e)E)I$I$e)E)X$@ E)bPTP@e)b0L$e) H$I$e) I$I$e)I$I$e)$I$$$!b@Pm e)b*  I$e)E)H$I$e)E)I$Ie)E)** I@!$e)E)$I$e)E)H$I$e)E)I$Ie)E)I$$e)E) $e)b@P@D E)bI$I$@!I$I$@!I$I$@!I$I$9$e)$!H$e)$!$I$e)%)I$I$1 I$Ie)%)*Ie)%) @!I$I$@!I$I$@!I$I$@!$e)%)I$e)E)$I$e)E)I$I$e)E)$E)!L$E)!^Um۶E) @I$H!bU8!I$IE) I$IBE)!I$$E)!m!E)jI$IE)bUտ ٖm6e)!I$I1E)I$ I1E)IB2$ 1E) I@1E)II$1E)I$I$1e)I$1e)$)$If1@I$IE)bU 0e)! @$HPf1aH++yw/vEa------E)BB@@1$!I$I$'9#I$I$'9#1e)*B"A$I1! 1E)$1e)*(@ $1e)I$I$9 $1E)* $1E)@$$1E)@$$1E)@$$1E)@$$1E)H$$1E)$1e) $1E)H$@$1E)I $1E)*$I@*P1UU5H$I$HE9I PH*  ɛqP/ qw7fi/ /sTJf--+ ;,۶k豦?3蹧?P$J$DZ1PTTU$I 1e)LB&$1E)۶-Z-f1b@P@Ie)b$If1$!(If1!?? 1e)I$I$'9#1e)I1e) I$@1E)IҶغm1E)תI&m 1E)_c$ 1E)UI e)E)UH$He)E)WUV$H$)( &e)E)u]  e)E) $e)E)wI$ Ce)E)UUlI$Ie)E)UUU@$I$e)E)UUUI$e)E)5UU@Ҏ$1E) UDJ&1E) $C!$1E)I$ C1E)KْI1\1 $I$9!HI$9!I$9!I$I 9!I$I$'9#!11$@211 (@"-1@P@TIT1 %% 11I$I11**H$11 1111pIȐ11L$L&11WUWX!I$11 UI$11?!01I11*Z$X,1bPTP@H$I1bp Q1E)3'K%f1bhXTPIIe)I$1E)1E)fI$1E)*d1E)?I$I g9*I$I$g9*I$I$)I)@1f1I$@11I$I$11*I$1e) 1f1 $)I)  9F19F19F1I&1e)I$I$11*I1f1**I$H$)I)I$I$)I)I$I$)I) $I$)I)O1!UTamh1I$Xl1%)UWXI$I$1I$I$E) *ɐ$1!/m1E)*11I$I$g9*I$I$g9*I$I$g9*H$11I$I$11I$11  1E)@N$N1%)U,11LE1T!I11I$I$9 11+I$I$g9*I$I$g9*I$I$g9*I$I$)I)I&11U\p y91% c-59$!` I$If1!Uېml11  $9F1@ H$)I)I$I$)I)$1E), I$LB091 $I$)I) 91 I$H :1 B$! @ B$! I$`0911@ Id 1bU 91 @ B$! I$I$9F1 #ђ( 91^zI$L011UUWps:@ Ɇ1Zh$!I$I$$!!m&E)*j`{m;1E) UU &ib9E)@ $Q >pSy%yP +/lkf%y (9F %%4(DZ4%IDZՕ 4 DZE4@ 4Ey`/P-i.`i+11N f/+ D/ VV*D34H$I$DZ1TTUUI$I$9!$C$A1E) I1E)I$I$9!B1E) 1E)* 0 1E)I$I 1e)I$I$9I$I$1e)I$1E)@$&1E) I $1E)*I$9!$I$ 1e)I$I$9!h&1hX1 ۲m1E)j I„E)b(J@ 1$!I"I1E)NRے1E)WI$ @1E)UWI$ 1E)UUWI$I$E)$!(I$1E)UUI $e)$! I$e)$! I$I$e)E)UUUP$I$1@I$1E)Uv؆1E)+Ħ1E) $ 11 I$H 11I$I$11*I$11 H@11T*dB& 11__x I 9! #%1`p1b %511I$I$g9*h L1%) 11I$I$g9*I$I$g9*`11\I 11U1$!II1E)7@11-H 11I$H 11I$11  1E)I$j1$! $I$1E)H @! 1E)WI$1%)+ 1%) I$I$g9*$111f1H$1f1I$I$1f1!I$1f1 $I1f1 I$I$9F1I$I$9F1 9F1$9F1L2$I1f1I$I$11$I$1f1 *$I$1f1I$I$)I)110I$I$g9*M1 VWm&h1E)zI$k,1!  $! &ie) *@I!1! a閤11 $ 11"! I1E)@@I/1׿(1E)I$@$11I$I$11/ 11 /I$I$)I)I$I$g9*I$I$g9*@ 11I$I$11I$11/11I$I$g9*I$ )I)1%)n1& $I11%% P]ɶd91 '~'91UUWT9$M1``X`1%%  dH$I91I$I$9F1 $H$I91I$@$)I) I$I$91 91 I$I$B$! I$I$B$! 91 I$`$91 mѶmڶ91 91 I$I$B$! @@9!p TI$I9E)1E)l 1E)^ZxI$`0E)!!I$I$$!! $ E)! /ɐxI$1E) =R e`1%%pSwe` /-,`N/sE +/3)P R )43DZ44I$I$%44I$I$%4/P DZ訠11 I1x`"5 f1UկۓZ %q%SP9 $Ib'HeAI$I$H@$$IP@ IYHUݖCKYHտ! IPHc6`H I.)iHU I~&qPU In%'%yXU6.%yPjj?w EHy$H$y1ZTTU I$ :1 I:1 L$`$91  I91/ I$I$BD! I$I$B$! k 9b I291  I$91 91 I$@:1 I$I$9F1`01e)I$I$11* `91 k5,91 N$1!M&]R,1E)WW[{II$e)E)UU۰mݖm1E)@IJ1E) @91 + I$h%91WW^x I$11?O$z.\1bVV 1!I$I$)I)@$1f1 I$1f1 * 91 I$@$:1I$I$9F1 [-ۺ 91I$I$11*H$1e)1E)@XGS%q %5?" Nq%y+=.ȱf 4-@ &S D3`?4 $I$蹧?4$I$蹧44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$&44I$I$%?6l۶%DZfPD3DZUUUQ?4II$DZW4IDIDZED4I$ؒ$DZ44I$I$&?4H$I$蹧?4II$蹧?4I$I$蹧44I$I$%?4II蹧???D4,˲$DZ@LLDIdI&EJ"). fJJJOII H)EJ4I$Il)DZUUUD4IdImDZ=???4@$@$蹧?4I$I$蹧?4I$I蹧?4 $蹧D$&&EXDImED4۶m$DZD4۶m$DZD4۶m$DZD4۶mؖdDZ?OK$j2!)EVVXBJI$E44I$I$&?4A$A蹧D4I$IDZUUUJ4I$I2)DZUUUD4I$IDZUUUD?I$I 豪?4$I$蹧I$I$%)%0@0%)bpLH@E)* $ %)%/ I$I$1$@1;nDZ$) 1& ImܧA+{۔蹧C/tO蹧 ED۶mȱED۶m#$EZR?maȱE44I$I$&?4II$蹧??4II$蹧?1۶ DZE@@4 DZED4I$IDZUUU4IDDZED4I$H$DZUUTT44I$I$&44I$I$%44I$I$%?4I$I$DZUU_D4ې$I$DZUUUD4I$DZUUD$EVO4IK!$)DZ)U?`IdȱEO4Ij )?4蹧?4 蹧?4I$蹧?4@$@蹧?4 $蹧?4 蹧?4II蹧?????4$蹧D4I$K$DZ??4@$蹧?4蹧?` 蹇@4h$M$!X\VUA$H$!  !* H$I!$! + $@ $!``II%)a// @$E)!I$I$e)Ie)I$I$1I$I$1$1H$I$$! $H$!a\H!%) I!./$! @$%)$!I$Ie)I$I$1I$I$1I$I$1I$I$1 @$E)!I$I$e)I$I$$!!`PI$I$$!!XVI!C&E)!5rH$I$E)!VUUUI$I$$!! I$I$e)I E)!$E)!I$e)$I$e) 1@$I$e)I$Ie)%)$!1I$I$1I$I$H%)UU=HH%)=I$I$H1I$IPH I$IXH c7- `8jT?E%y8/&Wa*% }-'Hq ,4 E*1!nܴ 3+iR$+4/iJ DZ410DZ*44I$I$%44I$I$&4I$DZEUP4I$I0DZEUUU`@E$!PUE%)PUUUI$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!* I$I$1I$I$1I$I$E)!I$I$E)$!I$I$1 E)!I$I$1I$I$1M&[7E)^@ E) I%)$!I! &e)$!* E)!ꨨI$AE)!* I$H$1e)!jH$I$9WUWWq縣`)**  /W%qX /-  %y%q H$@$%q%)TTPPI$I$E)$! *I$I$1I$I$1  A$1$I$E)$!0E)`II@E)%* @$I$1I$I$1I$I$1II$1@$I$E)!I$I$E)!I$Ie)!  2`$E)!  C$IE)!說IE)!*`$@ E)XTP@ 0E)b I$I$)(I$I$1 I$I$e)E)*I$I$e)E)K%E)b\p E) I$I$e)E)I$I$e)E)*I$I$e)E) *H$E)TU0e) I$I$e)E)I$I$)(I$I$1 I$I$e)E) E)@I$I E)? e)E)+@$E)!`$I$E)!I$I$$!!I$I$$!!I$IE)!I۰me)! I$I$e)E)I$I$e)E) E)$!L$E)!MemE)0I$e)E)UI$I$)(I$I$e)E) I$I$e)E) I$1"H6` e)!<I$I1"I@!I$I$@!$e)E)$I$e)E)I$I$)(I$Ie)E)+I$e)E)*$I$1"I$I$1"r$r8e)bXVX Ie) (R$e)ap\P)E)b %&E)!XL$E)!VU$I$E)!WUUI$I$E)I$I$E)I$IE)!UU-I$!E)!U IE)! e)$!I$Ie)E)Ie)%)f1e)1E){Ie) /I$I$9e)I$ $9I @$1E)@$I$e)bTUT0I4If1I$I$@!e)@IL$ f1b!I$ 1E)I$1E)ꪪI9I1e) 1e)I$I$'9#1e)***  H1ULȄIPH? yWtiP-- / 1Sf%q---/(B'J$f)P\TTI$@9I$I$9f1!1e)*J"%f1b\ f1  1E)jL$f1(W1$!$IԤ1!&1E)U$1E)U$1E)U$1E)U$1E)U$ $1E)U$ $1E)  $1E)۶m"X1UUյH$m۶PEAIXH* InWiP+ fnP fX[[+ 3cIi 3+1uJ@ - D1蹧4$@$DZ1@PPTI$I$'9#I$I$9! iҢ%1p01a -X$1@PT0L1$9 9 H$H$9!I$I$9!@1E)IB$I1E)H$1E)ꨀI$I1E)I$I$'9#Т%J"%1@PTP J1 % L"&# 1VXA1 I$9!sm&@1$!I 11)A$I$11"I$11"H!1f1I$)1@چHI$1 UNR;Z@1E)UWI$N1E)UUWI$I$1$I$e)E) UUU@I$e)E)\UUI$1I$I$1$I$e)E) UUU`[I$1E)/=U Yئ1E)0&Hm1E)I 11I$I$1f1 $I$11 d$11`ZVI 1@ɔIH1 !0I$11-uUWI$11 U11 I$I$g9*I$I$g9*I$I$g9*I$I$g9*@$I$11I 11 L$ 11WWxI$I$9!I$11UU11H$11I11*  $I$g9* I1E)Il۠ Ȧ1E) 1E)I$H$e)E) $I$1E)?`$1E)?l1E) 11 @$11 1f1I$@1f1I$I$11*I$1e)9F1@$@ 9F1I 9F1I$I$)I)$C$I1f1I$d01f1 $I$11 $I 1f1 *X$I$1\W\P)P1 `1E)$C$A11# 1E)ꠀڀ 1$!~I$I$E)I$I$E)!*I$1! /퐶1E) iH1%)I$I$11*"h1b@ːI1bUH$11  1E)EL$1U1 I$I$g9*I$I$g9*@ 11I$I$11 I$11 /11 I$I$g9*H$I$g9*I$I$g9*11`L$L$1E) ԓ≑9f1RM5 I$9f1UUU!@11 +I$)I)I$I$9F1H$H$)I)I$)I)&i"`1%)ːdId1E)5? @!91 I$I$B$! B$! 91ꪪ I$H091 I$I$91 91 @$@$:1I$I$9F19F11E)S۬ ڦ1E)W^ZxI$` E)!I$I$$!!*I$I$%)!WUU@!E)! %.`kǦ1E)=UpS~xE1 *)# 7w$q++1"Nw ++-4/P DZ *+44I$I$%4$H$DZETTT4)DZ3)b# x+# ѧEzE`~xxu2;j miP^^I %qPUU %iPU 9lmaP/ c-9%qP~Iv7 EXU%' E`Uo$'fa In&f$q"IfP?%o&EU)o&EU + %-$9 @@P  091I$I$9F1 I$@$9F1  :1 I$L$91  91 I$I$B$! I$I$B$! I$I$B$! I$@091 !I$91 B$! I$H$9F1 I$I9F1H&@ 1e) II$91? @91 {H9E)Vؠmm֦1$!I$`$1E)UUW^!Ie)E) 5II$1E)/? @J91/ 091`m$K&11_WT\ 11 5H$@ )I)I$I$g9*I$I$)I)I$@$1f1! 1f1 *  :1 I$H$9F1I$I$9F1 K&C-91 I$1f1 *$9F1@$I$91:pW%9 %)N7%+1# n +4/PJDZ *44I$I$%44I$I$%44I$I$%4/DZǩ?4I$A$蹧44I$I$%?4I$I$蹧44I$I$%44I$I$&?۳=[2lDZEppP49DZEy?3蹧D4I$$DZUUU44I$I$&?4II$蹧?D4I2I$DZUUU?4I$I$蹧?4I I$蹧D4$I$DZUUUD4$I$DZUUU?4$I$DZUUU44I$I$&?4I$I蹧?4I$I蹧?4I$I$蹧?4I$I蹧?D4I$I2`DZUUU?4I$I$蹧?4I$I$蹧??m[%DZEPP?ضmȱEDb"&& EXXDٖmED4I$DZUUD4I$DZUUD4I$`DZUU?4I$ 蹧?JB*$IEJJDa۶%)**P4$DZ$!U4O$DZE)WU4I$DZ4?I$DZE)|UU4$I$DZE)UUU4$I$DZE)UUU $I$eQ%)pUUUI$I$1I$I$1 E)$!I$E)!I$E)$!$I$e)!\If$)55#@rF ,@ .wf +4B"! 駩$)P@4{I$$)*)UU4>I$!UU?$I$DZ$)UUU?I$ȹ$!UUDI$!UU4$I$DZ!WUU4I$DZ!%UU4@I$ǹ!UUDېI$DZ!UU3m@I$!*UU?I$ǹ!UU?4II$ǹ!UU?$ IdDZ!?1 $蹧U;1m۶豧?3蹧?4I$@ 蹧4J$DZETT44I$I$%4IDZE44I$I$%D4ې$I$DZUUODdM&EZOI F D4ۆm$DZJ4I$)DZUUj?4II蹧????4I蹧??4H$H$蹧?4H$H蹧0?4H$I$蹧?4 蹧?4r$!``XV $@$!I !**@$H$! $!* I$I$e) E)!﫫!%) H$I$e)I e)1I$I$1 1@$ $!!@H$I$!awI$ $!V %) -5I$!!$%)$!I$I$e) 1I$I$1I$I$1I$I$1$E)!H$I$e)I$I$$!!@I$I$$!!P||I  E)!յ@$I$E)!ZVUUI$I$$!! I$I$e)I$IE)! E)!%)$!ꪪ H$e)I$ e)@$I$e)I$Ie)1I$I$1I$IH%)UUU I$I$H%)I$I$H$1I$IPH I$IXH Iv iP*. %yX }. fi % m%E %y ,m4F*4! M*C+_7f鹧UD/蹧UU43IDZ*44I$I$&?4I$I蹧?D!$Iļf4 DZE)@4H$DZ$!TU4@$I$DZ$!PUUU1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$E)$!*I$I$E)! I$I$1$E)pI$E)5I$I$E)$!* E)!說I„ E) U.E)$! I$I$1I$I$1dB2$IE)!*I1!I$I$E)$!I$I$E)$!*I$I$E)$!I$I$1I$I$E)$!`E) AdH2P%))% N7iH +- N%yi ) %yE)@@I$I$1I$I$1I$I$E)!I$I$E)$!I$I$E)$!*I$I$E)! I$I$1I$I$1I$I1  @$1ضm۲%E)b@p %)b %$C&d$E)!rp$I$E)!}UE)!I$IE)!*I)(I$I$)(I$I$)(I$I$)( 1 )(I$I$)(I$I$e)E)I$I$e)E)*I$I$e)E) @&e)Xe)HhE)T 6E)jE)I$I$e)E) *I$I$1 I$I$1 I$I$1 C&E)!$I$E)!I$I$e)I$I$$!!I$IE)!/IE)!/I$I$1 I$I$)(I$I$e)E) I$I$e)E) I$I$e)E)LH E)!I$I1I)(I$I$1 I$I$e)E)*I$I$1"I$I$1" @!$e)%) H$e)E)H$I$e)E)I$Ie)E)?I$I$e)E)I I$e)E)/@$I$1"I$I1"I$e)E)$ I2e)E)~IL$e)E)WU@$@&E)!X5k۶E)bpਪ!bI$I$E)aI$I$E)aI$IE)!UUU-I$!E)!UIHE)!5I$Ie)E)* I$ e)E) Ie)E)e)$!I$I$@!`$e)8I$I9I$I$9II$1e)i$Ie)@I  E)bUI$I$@!%e)pPe) f1E)j$61$!5 1e) 1e)  1e) I1e)I$I$'9#I$I$'9#I$I$'9#$@$1e) I1e)* $H1 PH 9S1qX----#1%y---/%'H$E)TTTT@I$1!UUH2c;e) I%)/$I$E)!UU$I$E)!_UU$I$E)!UUU$I$$!!UUUI$H$!^V !I$I$A(8!I$I$E)@$!I$I$E)I$I$E)I$I$E)I$I$$!!*UUUI$I$$!!UU-mݶmP%!% $AdHPH6eS`P/-/w7Ea-+)/wd f+1(D P-- ?1ɝp蹧D @")1@@4H$I$DZ1TUUUI$I$9!I$I$'9#H%H1\pL4If1% @"($Hf1P@  f1I$I$'9#I$I$'9# 1e)*I$I$9!I$I$9!A$9!A I$9!I$I$9!I$I$'9#"  1@`1E) 9  9 $I$&1E) I$1E)*I$11UUa$11 UI$$1111H$H11 IL1 I$11 dB!1f1 1%)I 1E)U~I$ц1E)UU~۶mۆ-E)@I$I$1I I$1I$@E)! I$I$E)!*I$1E) UUUI$1E)U 1E) l1e)*I$@11UVPI$I$'9#I9!@ 9 I$d11UU^$H(1!@@ $1E) 115I$I$g9*I$I$g9*@11 $I$11I$I$11*11pI$11UWpI$I$9!I$11%U11/I$I$g9*I$I$g9*I$11-I1E)I$J(1E)e)E)I$@e)E) ;I$1E)? 1ئ1E)H$11 1b$1PT1a @1f1I$H 11 I$)1@P1b I$I$9F1H$H$)I)I$I$)I)II$)I)L&$I1f1I$I$11@TM$1 U$IB1!I$I$)I)I$I$g9*$rĦ1!(k11\b"ɒ1!I$L01!I$I$1)I$1! a۶[1E)?W[;lݖt11%I$I$1f1$@$I1bI$I11**P&1P@ID1= @$I11 11I$I$)I)I$I$g9*11I$H 11I$I$11?11 I$I$g9*I$I$)I)I$I$)I)h,1e) $ 1e)*** Aˉ91sͽ  11 $1f1@$1e)@<1@ppI1 % $I$)I)d$I$1TUT IDI1 I!91 II9F1 I$I$B$! B$! $IF9E) I$I$91 91$@ 9F1I$I$)I)9F1 1E)`E) I$@ E)!WTPI$I$d!d I$I$$!!?E)! /)p`E)pSwf`+/,`N/sE +/3)P R )43DZ4-p IDZ4%(5DZ`4) ־XUU-t:@fA - q_# InҨ=چ$qU cbtFq^  Iۭ) fiU" Ir&f%qU %ݖ$%y)&EU,$fU/$ f/"I쒓1%M$ 1(ےU3+o$/ȏI$1TTUU 091 I& 091 @$I$9F1  $@$:1 @ H91ꪪI$I$)I) 91 I$I$B$! I$I$B$! 9E)4 I$`&91  91 @ B$!  $@$:19F1I$`01f1 XI91? `0I91P9H1e)[ۆm1E)zjIe)E) e)E)/I1E) /? !91 + 8 91\x`I$I$9!011 I$H$)I)I$I$)I)1f1I$I$1f1 mt91 @$A$:1x$1\V1 I$H&1f1 1f1 *$IH1E) I$I$i1UUUpSq%EI *+,`/wE +/3)PJ.W )410DZ 44I$I$%41 &?)?$ ȹ44I$I$&?4I$I$蹧?4I$I$蹧??4$I$蹧44I$I$&44I$I$%44I$I$&44I$I$&44I$I$&44I$I$&44I$I$&44I$I$&?4I$ 蹧?4I$蹧???4IH$蹧?4A$ 蹧D4Im۲aDZ?4II$蹧?D46lI$DZD4ې$I$DZD4@m DZPD4ImlDZ?D? $豂D4K$%DZ44I$I$&?Xm۶mDZEPJ!D$I% D4mI$DZUUD4mɖmDZD?$I$D I()E1@D$%)UDmI$UD@I$E)UU?h$I$E)XWUUh%۶mE)aؠE)$!I$I$E)$!** I$I$1I$I$E)$!$%)pE)!E)  E)!^E)! E)!着$LȄ$!a4( L$!4, $ea?`wFX " PN.wf%q +//2 EY@/I$`%$!UUXPH0$!@@$!H%) H$I$e)$! $H$! ( ! I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$d!d /Il!557"$ٶȱ U3&mhA/_'a ?؆m@"<ȱEPpJI @ E?4I$I蹧???4 H$蹧D4Id`DZ??4I$H$蹧?[5۰mDZEP`?ٖmضDZE44I$I$%?4I$I$蹧?D4lI$DZUUJ4F $)DZ eUJ4L$䖄 DZVT D?I$H豪*D4۲mۆmDZ?$ɒ#=DZ(`pH$I$f TUUUI$I!*$@$!I $!*  $!$A %) 5I$I$1@$I$e)$$!bp$!I$Ie)I$I$1$H$e)I$Ie)`B$!$$!` $!  1H$I$e)I 1I$I$1I$I$1I$I$1 E)!H$I$E)!I$I$e)I$I$$!!pX\~I$IE)!5$H$E)!XVWI$I$$!!? I$I$$!!I$Ie) E)!H$I$E)$! $I$e)I$Ie)$H$e)I$I$e) I$e)H%!UU I$I$H%) $PHaB PHY/Im YHIv iP*. %yX }. fi j%%q X, -In%y*1"r$ 3)q[R$*4$ E@4DZED4 $I$DZUUUD4I$dDZUPD۶m$EP4۰m; j HE$!@TU?H$I$$!TUUUI$I$$!!* $!I$I$1H$%)b V%) I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1 E)!蠀E)!++ I$I$E)!%)`I$E)/ I$I$1I$I$1I$I$1I$I$1I$I$E)!I$IE)!*  "D$e)! H$I$E)!!@E)! H$I$E)!I$I$1I$I$1I$I$E)$!*I$I$E)$!  @$@$!UUUSX( ** N/w%qX +- H$%y%q )H$@$%yE)TTPPI$I$E)!I$I$E)!I$I$E)$!*I$I$E)$! I$I$1I$I$1I$ 1`X$E)\E)![5ۺ %)b`f1)Xm۶E)!ਪdB& E) _^j !AE)!%  $)(I$I$)(I$I$)(I$I$)($)(@$I$1I )(H$E)^E) I$I$e)E) I$I$1"M&hE)b\Xh E)  C E)!k5@ `E)bx`I)PE)b- I$I$)(I$I$e)E) 0E)!2L$E)!I$I$e)I$I$$!!I$IE)!I!AE)!  e)%)+ I$I$e)E)I$I$)(I$I$e)E)*$e)E)^$I$e)E)^UU )(H)(I$I$1 I$I$1 I$I$1 I$I$e)E)I$I$1"I$I$e)E)$I$e)E)I$I$e)E)I$I$e)E) I$e)E)  I$1"H$I$1"I$I$1"6-e)!@IXE)& @$E)!m&E)!W2L$E) ~UUI!I$I$E)aI$IE)!UUUI$!IE)!U+IHE)!  )(I$ e)E)6 e) e)b I$I$@!I$I$f1e)I$I$1E) 1$!I$ME)WV(`$I1!I$I$@!I$I$@!1E)I$I$1E)I$I$9J"'e)b\X` f1 @ f1!`I;E)//h IIf1$!@$I$1e) 1e)I$I$9I$I$'9#I$I$'9#I$I1e)@ 1e)I1e)@$@%H1 !XH//yw7qSEyX---/&1 E-/+ (H$H$!TTTVI$I$E)I$I$$!!UUU=$!I$I$!!UUUI$IE)!UU m&m E)!UUm$m E) UUN$ e)^$f1Nl&1c1!UUIbI1!UIBe)IBf1!U*IBf1!UIBf1!UIBf1!UIlӒ,HE!% I$I$PHIiXH+7%yX/+# yysT %q/+ 11R + 4-!eR@ DZ43DZ4@$H$DZf1PPTTI$I$1E)I$I$1e) $I$9I$1E)II$1E)$1E)I$1E)*1e)(I$I$9!@$@ 1e)1e)**H$1e) I$I$'9#I$I$9!I$I$9!I$I$9! $9!I$9!9 H$9 I1E)It1E)/ IB11U I$d11UUް9  $I$11 @L$11*U@$11I$11I11* I$I$11*$I$1f1 `B!$11m$p"91bz\X`i1b I$ 1E)UUI$I&E)!I$E)!*I $E)$! I$HE)! $I$E)!$I$f1$!*@؆1%)(I1E) /I@11խI$I$11 I$11 +P'z"=1p\X`P`1b   9 $@d$11 _W@$11/11H 11I$I$11m۲-1E)O$1b &I1!I„I11UI$I$9 @$I&11 _11 I$11I$I11* $11I% 1E)I$M61%)I$I$e)E) I$I$e)E) &XI$1E) ?j"6Z1X`)TI@1  11 I$I$)I)P8 1bp`ITP1b5% I$11*1e)I$@$)I)I$I$)I)I$I)I)"H1@I$΍N1bUUM۶m1$!$ !1f1 1E)@Ou 1ז@I$I1E)C$A11I8 1E)M$[1!`$I$$!b WV@R!f1*@ 1E) *-D1e)*I$H$11 11 H$H$11I 11 I$H$11ؠ&1b`x1b --I$I$g9*I$I$g9*I$I$g9* 11I$I$11/11/I$I$g9*I$I$g9*I$I$g9*@11$ 011x` I$91%U Nb'pB891|rvm$11 ?W01@IV1%)$I 011b(QX1b&ٶml11I$I$g9* $A 91 H$:1  91jjH$KeE)a0 II9E) I$)I) $C 91ꪪI$H$)I)I$I$)I)4X":1@`p`IIe)5 e)E)``I$@ E)!I$I$$!!I$I$E)!WUmݖnXE)UUUpSy1 **# 7w$q++1"Nw +4& [vDZ3) +۴CSDZVWk%mjf/Z%m{JʆW!Jf3`=ǩfhT-IfU*-rf/ ]$1#v&$P1(ߒ$3)ݒ$3,ym4/IڶDZ*41ImDZ 4IcDZE*43IDZ4 @$DZe)@@PPI$I$1E) t9f1 - A) I$d&91 I 91 @`$91 H&$C291 I$I$91 91  9E)@$LE)b* h9e)I$I$)I) @91 @$ :1I$I$9F1 [ضm91ꪪI$H$11 X91 /? k5 l91蠀r"'Ѧ1e)H$@ 1E)^ZzI$I$e)E)?$A!1E)` K1E)  91 * N"'891WV\xɐtI$115U 9F1I$I$g9*1 l@1%) I$11 **9F1{1\)`I$H1! `B2$C1f1 41 @``ɑə1/%+I$I$)I) OIy1 -" Rwfi +// sf +4,Iߔn 43DZ44I$I$&44I$I$%44I$I$&?4I$H$蹧?4II$蹧??4I$I蹧??4I$I$蹧44I$I$&?4I$ 蹧44I$I$&44I$I$&?4I$@$蹧44I$I$&44I$I$&?4I$蹧44I$I$&44I$I$%?4 $I$蹧?4$I$DZ_UU44I$I$%44I$I$%44I$I$%44I$I$%?4H$I$DZUUU44I$I$%44I$I$%44I$I$%4-e9@4$DZE)_U4 I$DZE)@UU%$I$E)UUUc;meAE)\UUU  )(H"$HE)! Id%)a 6,I$I$E)$!* I$E)$!* $E)% I$I$E)$!HE)bؠI$I$E)!I$I$E)!*I$I$E)$!* E)!! E) E)  E)!ꪪ $H%)%  %)$!꫿@$E)!H$@$!R.`$) --pSwwE`+--,NSE ++-/P$@" $!PPP@A$I$e)H$H$e)I$I$e)I$I$e)H! .I$I$d!d I$I$d!d  @ !a`!I$I$d!d I$I$d!d  H)F) rnfFy(PNn{E*/%p1QQ+-HDC$I%bD M۶mDZEJ4I8I$)DZUUJ4L$$ DZVV UD4Y%XlDZJ4 9 DZ%DжM۴-DZEI@D4,K$DZ\\?4I$蹧???4I$I蹧?4I$I$蹧?4I$A$蹧44I$I$&?4I$I$DZUUD"@$I2fjDh$I$!XVUUH$H! ! I$I!*I$I$$!! @ $!`I$I$!a5/ $@$E)!I$I$e)L$dB0!a` $!b  1 @$1I$I$e) e)I$I$1I$I$1I$I$1@$H$e)IIe)I$I$1I$I$1I$I$1I$I$1@$H$E)!I$I$e)I$I$$!!ppXI$IE)!U!B2`$E)!bXVI$I$$!!U?-I$I$$!!I$I$e) E)!$H$E)!~H$$!,I$Ie) $@$e)I$I$e)mۮ:$@$!UUmQlٖmH$! I$I$H@I$IPHI$IXH* I.W iP }.WEX* oW. fiտ 3 dY ǩ% 3}-)lE 1 d%%yZZ3%y41ImDZ 43 DZ 4DZEy@4 DZE44I$I$%4 DZ$!@4 8H$!`TUH$IE$!TUUU!I"D&E)!+I$I$$!!I$E)!C2$!b@$I$E)b &I$@%)bW0!@E) I$I$E)$!I$I$E)$!I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$E)!I$I$1I$I$E)$!I$I$1I$I$1I$I$1I  1 &L$E)!mie)!/  @$e)! I$I$E)!I$I$E)!* @$I$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$1I$I$1H$E)!I@ H%) pSyiH+/IN%ya +-($@%yE)@@I$I$E)!I$I$1I$I$1I$I$1I$I$1I  1$I$E)!L$H$$!aX^1!E 1*!@ @$1!+H$I$E)$!I$I$E)!**I )(4X$E)b`P\nE)b %I$I$)(I$I$)($I$)(I$I1I)(I$I$1 M$@ E)b^)E) I$I$e)E)@$e)E)^U6k$E)bhXV)E) I$I$)(I$I$)(I$I$)( )(`$E)!H$I$E)!I$I$$!!I$I$$!!(I$ E)!/ AE)!/I$I$1 I$I$)(I$I$1 $1 $I$)(I$I1I)( E)!@1 I$I$1 I$I$e)E)* I$I$e)E)*I$I$e)E)$e)E)~_ )(I$I$e)E) I$I$e)E) I$I$e)E)I$I$e)E) * I$I$e)E)$@$I2e)E) I2$C&e)E)~_5ۺE)`I$I!b5 @$I$E)!ZUUU@$!I$I! I$AE)!UUI@E)!/ E)! I$Ie)E) Ie)E)/-'N'E)X^`!`e) $e)b`pD Ie)b%5 $1E)$1E)1E)H$He)E)I1E)@1E)I$I$1E)1%)X$I$E)bTW@f1I$I$9I$I$9I$I$9I$I$9r$p0f1XVXH$ f1 I$H$1e) $9 IZ$f18I$1E)$I$1E)$I$1E)H$I$f1e)I$I$@!@$H$He)iviXH///+y1qE`----(Nt E Im`f1$!U*-I0e)a&I1$!$ &e)E)p\1E)I I$1E)I$I$9I$I$9 $I$1E)I$1E)I$1e) I$I$'9#H$I$1e)I$I$9I$I$9I$I$9I 1e)I1e)R+@&H1 ۰ P8 vRi@+*wNfX++, I䆩%q* U3 $EyU?۶m$ǹEU?$)b'e)@@ZI$I$1E)I$I$1E)꯿I$@$1E)I$I$1E)I$I$1e)I$I$1e)I$I$9I$I$1E)I$I$1e)I$I$1E)$I$1E)I$1E)*@I$1E)*$1E) J1$I$I$'9#I$H$9!I$I$9!I$I$9! I$9!I$I$9!I$I$9! I$11%%UU$$11/U11/H11I$H$11I$dH11UW9 @$I$9!0I$11eUUI$9!H$%1!PI$I11II1%)`@J&I1e) C $1f1 I 1E)Nڐ@1E)WI$1E)UU_I$I$E)!$I$E)!I$I$E)$!I$I$E)$!** I$E)!(&a$1%)+UDĦ1E)/$)I 1e)"IH1$!@1E)@I$11*dB&I11_^I$I$9!!I$11)UU@!11 11I$11~.^H1 I$I$9! I$11 **H 11LB&`11W_\ $I$9!@ 11 %11H$@11I$I11**l1e)IB' 1E)I$I$e)E)I$I$e)E) I$I$1%)`$1E)711$11 $1f1 @1f1I$H 11 $I$11  !11?I$I$)I) )I)@$9F1I$H$)I)I$1f1I$I$11*$I $1f1 I$I$)I)I$I$)I)I$I$g9*C$11N"ڐ@1e)M"I1ްI$I$E)!I$I$e)$!*@!f1E)P4'vRۆ1$!\_4@4A1%)I$I$9! @ 11 I$11*#ɐ1!PyN$9/VU1I$I$)I)I$I$g9*H$I$11I$A 11I$I$9  11?I$I$g9*I$I$g9*I$H$)I)@ 11m6k51e) I$9E)/ O$xr<91UW\S6`m;1e) *lm11,)$I1@I$I1b7 I$)I)I$H$g9*I$I$g9* $A!91  B$! ` I9e)  $I91ꪪI$I$)I)  I$919F1I$@)I)1$! `1  1E)|xmӶmE)!I$H$E)!__^xI$I$d!d  I$E)!%UU`shE))%ryf`+1-rwE*-(IyQҧUU5-I|t$n㧱Տ^U)'I$ڧxWUU4,HɟDZ 4(DZ?4,O'm%4/IҶDZ4/IڶDZ41ImDZ*4([DZ?1oضm蹧43IDZ*44I$I$%41ɐ%44I$I$%4 DZf1@4 H$DZe)@TU4x<ɟDZ1TUUU I$I$1e) I$1E) DIR91 - ز۶m91 IL291H$I)I) 9F1I$@$)I) M#3&9E) jZ 9E)  9e)< I$I$B$! L& 91  I$91 B$! I$$:1I$I$9F1`$1e)I$I$1f1* $H91 X `91zI&k%1e)I$H$1E)W^^ I$e)E) +*IdI$1e) * @IR91+ 091`I$m11UU 11 /H$@$)I)L$H1\^ B$I1 I$`B&1f1! 1f1 *I$I$9F1$@$9F1I$I$)I)L$dB21f1 ۴M1E) I$@$)I)I$I$fI1UUU.w9 +-(N7%y +/3"TNÖr "-4 "!E@@4 DZE?4I $蹧44I$I$&?4 I$蹧44I$I$&?4I$I$DZUU?4H$I$蹧44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%?4I$IDZUU 44I$I$%44I$I$%4%P;DZ~4?DZEy4P)DZqB4`O$DZE)WU4>I$DZE)zUUI$I$e1E)I$I$e)E)XdE) ,mE)@aVlE)  )(I$I 1I$I$E)!۶[&E) $I E)!* AE)- H&E)A@E)! (I$I$1I$I$1 E)`!@E) 0E)``C!@E)j !HE) E)$!몪I$He)I$%)$!H$H$e)I$e)` DP$! R6%yH ++&`S%y ++--" ")@@@$ A$! H$A$e)@$I$e)@$$!ApI !b&  ! !b I$I$e)I!A&I$I$e)@$I!( roih) вwEyX* pO9si /-6]iyȱf+=/ 豧 ?4H 蹧?D4Im[ DZ?4I$I蹧??4I$H蹧?4I$I$蹧?JFEzVJ4LBI$ DZV UUD3ߏ'蹧DA/%EPD۠ ِAE4H$JDZETTD4K-H$DZ?4 $蹧4,P$)@@PTA$!$!** @! $!*  $!I$I!($E)!I$I$e)I$I$e) I$e)I e) 1H$I$e)I$Ie)$@ $!$!I$I$1$H$e)$!H$I$!!( $! =@$$!0E)! @$E)!I$I$e)I$I$$!!`XI$I$$!!|Օ5 2C&E)!-XI$I$$!!T_UI$I$$!! I$I$$!! I E)! @$E)!$!@I$!? I A$e)I$ H$!UUI@$IH$!@H8PٶmP8 Im XH vGiH*.I EXU*}- fa&4 %y*,v$f 1"q[n4 C1 $l* D1Lm蹧D3蹧44I$I$%44I$I$%44I$I$%4$DZ$!P4$I$DZ$!PUUI$I$$! I$I$e)I&E)!?H$I$%)!I A$E)$!I$I$e)IE)!I%)bI$I$1I$I$1I$I$1@$I$%)TUVE)I$I$1I$I$1I$I$1I$I$E)!I$I$1I$I$E)$!I$I$1I$I$1$H$E)b@PTPۖ I$E)bU $E)!MҶmf1!?)Vh۶1$!I$I$1I$I$E)$! I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$1@E)UUU1S阣P( ) Now%qX /- a%y%q )H$@$%yE)TTPPI$I$1I$I$1I$I1I A$1I$I$E)!I$I$E)!I 1!/$H$e)!I$I$E)!*I$IE)!* I )( I$1[-E)bP)PE) $)(@$I$1I$ 1)(I$I$1 I$I$1 I$I$1 $1 $I$1I$I1k5E)bXE)I$I$)(I$I$)(&E)!$I$E)!I$IE)!I$H$$!!(I$IE)!/IE)!I$I$1 I$I$)(I$I$)($)($I$1I$I$1I )(1 I$I$1 @6@E)!PTP@ 0e) % I$I$e)E)* e)E)pI$I$e)E)I$I$)()( e)E)5 I$I$e)E)I$I$e)E)*I$I$e)E)*$e)E)~W$e)E)}U Id$E)!pW$I$E)!^UUI$I$E)aI$I$E)aI$Ie)!UUUI!IE)!U I$AE)!-IB$Ie)E)U߯Ie)E) e)%)I$I$@!I$I$@!@ e)!@$@!$I$1E)H$I$1"lh$E)b( 1!/+1E)I$I$9I$I$9I$I$9I$I$9I$I$9Pf1I$I$9 f1!(P$1XU$IHf1  I$1E)I$I$1E)$I$1E)H$I$1e)e)%)IĠe)0e)!I$I$@!I$I$9I$I$9H$e)0\_H$I$He)퐤`H//EX//(  i(f1``I$IE)a'1E)`0e)E)X`!@e)E) $1E)I$I$9I$I$9I$I$@!$@!I$1E)@I$1E)H!1E)I$I$1e)I$I$1E)$I$9$I$1E) I*-8f1UU5h$M$$98\VWUI @8/w`@/ qN %yX++ S@Eyq I E%yI$I$h ۈĆyI$I$f1e)ꪫI 1E)@ I$1E)I$I1e)$I$1$!* PI$I$9I$I9I$I$9I$I$9I$I$9$I )1$!@1E)ꪫI$I 1E)e)@Ie)bUٰm۶m1E)$I$1E)I$1E)$1e) $I$1e)**I$I$9!I$I$9!I$I$9!I$I$9! $I$9!! 11-11  11I$@11dB11^ I11U@$I$1TUTm$iRe)bZVYK4I1 @H$I11I$11*I$I1f1 I$11 *I$11 LB!11/m1E)zI$Z 1E)UVI$I0e)$!I$I$E)$!*I$I$1I$I$E)$!I$I$E)$! I$1!nv1E)@!1E)*I$I1f1I$I$9!$J1 I&H11U\ $I%1p0Im1 !11-11I$11I$I$1111 $11H 9!  9  $I$11%UUUmۦ1e)!I11)H$I$11 H1 1E)I$pȆ1E)I$I$1 I$I$1 I$1%)!X1%) /I$H$1f1I$1f1*1f1 I$11I$I$11I$11 /I$I$)I)I$I$)I)I$I$)I)I)I)dB 1f1I$I$11$I$1f1 $I$1f1(@(1@P@I1bI$I$g9*r,$I1e)sj1%)\訠I$`&f1%)UU^XI$I$1dI$f1E)UِIt1E) *IB1f1 $IҢ%1@P$1$11Mf&m1V0II11U11/I$I$g9*@11 I$I$g9*H$119  11/I$I$)I)0h$1XV1 `1e)I$K$1E) 19f15U I$Hr$91UUTS)I$1e) *1e)I$I$)I)I$I$)I)I$I$)I)11 I$11* $Rͦ1b`DID1b55 $I$I291 d2$I91ꪪI$H$)I) I$g9*9F1I$I$9F1@$9F19F1P*@1E)pmmۆmf1!jI$H$E)!UUTPI$I$d!d II$P$!UUU7wǙ8+yϟ%-W!)f4(mk@DZ 4)vXDZ44I$I$%44I$I$%44I$I$%44I$I$&44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4 DZ1@4 DZ1@TU4H'DZ1TUUUI$K%1E)訠I$I$1E) bR4p9e)b%I$I$@!)tI$1E)* 091 / [5ۺa91II$)I)I )I) $C$91ꪪ K2&ڂm9E)VZj  I 9E)* I$ :1 I$:1 B$! I$H&91 I91 )R$1@PTD1 I$H$9F1I$`$1e) XI91? $CI91 -h91_~ 1E)ꪪI$He)%)*I$I$9 1E) /? $@ 91 * h%91\xI$I$9 11 I$I$)I),1$!@4K؆1$! 5I$I$9!@!1e)@$ 9F1I$I$)I)$IP1 $I$H$11H!1f1 I$I$)I)  I$q15U pSyE$Q +-,`/wE ++3"0 E@4 DZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4/&DZǩ4/JDZǩ 4!:DZz42Eyj?6ln$DZEU4O$EWU4$I$DZEVUU4'I$DZE]UU4$I$DZEUUU,Ж$I$EUUU-$I$EUUU-$I$EpUUU(EEq`&Ee1`^Ee)UUI$I e)E)$I$e)E)I$I$e)E). I$I$e)E) *I$I$1 $e)E)_$)( )($I$E)!$I$E)! $I2$BE)!h@ $ E) I$ $1I$I$1I$I$1 E)@ E)b / E)!$%) 'I$I$E)$!$I$E)!$I$E)!I$E)! I1`B$ $!I$Ie)@$!8I$Ie)S p`$! %pwwE` /-)k f--,L$@$$!VPPPI e)$! I$I$$!! !!I$I$d!d I$I$d!d I$I$d!d I$I$d!d Id@H??IIPH? 1S1QiP---+ 1S7f%q-----S20EyZZ 4 Ey 4)DZZ4-DZ44I$I$%44I$I$%44I$I$%4)pDZ?3x$'蹧C1g' Y=1 ɟ蹧?3.9蹧?D4I ɀmDZD-m 4س'M$ p\VWI$I$E)a  $!H$I!*$!I$Ie)E)$!@$H$E)!I$I$$! *I$I$$! H$!\$ $! I$@$e)I$I$e)I$I$$!! D$I$$!a ^^$I!$!  $!!H$I$e)II$e)I$1$1I$I$1 E)!H$I$e)I$I$e)I$I$$!!pI E)!5-d&L$E)!pX^WI$I$$!!Օ5I$I$$!!*I$I$!!** $1H$I$e)I$ H$!UU I$AH$!I$HPHUUI PH* i6I `H* wY qXխ PNFaկ+ - eǡ%q 1}-5%+6}-)`ȱf1%[$*1)%% ?*41I mDZ*43DZ4/DZǩ41Id%43 %4$DZ$!T4$I$DZ$!PUU 1H$I$e)II$$! H$I$$!!$@B$E) BR  ! =I $$! *@ Ie)IE)!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$Ie)$!* :hӦe)!I$I$E)!*I $E)! I$I$E)$!I$I$1I$I$1I$I$1 0%)`$I$%) &I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!@%)UUU1SP( ) Now%qX /- a%y%q )H$@$%yE)TTPPA$I$1I$I$1I$IE)$!* &1!`$I$E)!I$I$E)!* II1 H$)(@$ )(I$@$1II$1$I$1I$I1 )(I$I$)(I$I$1 I$I$1  )(@&H%E)`X\ptIE)b - I1I$I$)(I$I$)(I$I$)( $E)!@$I$E)!I $E)!z$ $E)I$IE)!  IE)!/,غmE)@I$IE)7  )($)(@$I$1I$I1I)(I$I$)(I$I$)(I$I$)(I$I$e)E)/+I$I$e)E)@$)(@$I$1I$ )( e)E) I$I$e)E)I$I$e)E)  e)E)*z@ضmE)`!E)! j H$E)!^UH$I$$!!PUUUI$I$E)aI$I$$!!UUU5I$ AE)!U-I E)! I$Ie)E) I$e)E)  H$1"@$I$1"@!$@! H$e)%)@$I$e)E)***I$Ie)E)I$ e)%)*  9I$I$9I$I$9I$I$9I$I$9I$I$9I$I$9I$I$9I$I$9$1E)p$I$e)a^^`AdI1H$I$1"I$I1"[ e)!`Ee)'I$I$@!tb'E) Pe)! I$I$1e)﫪1e)$1E)$f1!Wlk$e)!I$1!UUm&E)j I$e)bUI$IH!UMҶ۰ P8W Pi8 P fP )3!.j@1E)@1E) 1E)I$I$f1e)I$I$9I$I$9I$I$9I$I$9 '9#$1e)9,I1xx &@e)- I$I$9 (e)@I$e)a&$R&f1ax@1A* H$I$!`AIviXH/+yw/EX/&1wSd %y-+ 1%) -++ 41ِ0DZ* 4 DZe)@4H$I$DZE)TUUUM1$!I$ 1E)UUI$$ e)E)UUI$ 1E)UUI$I e)E)dB$Ie)%) e)%)I$I$@!I$I$1E)dB2$I1E) I&) 1E)"#1E)zM$K&e)!^J1! I$I9!@1e)IB2$I1E)ۺ5Ɇ1!zpTI 1 -55 I$I$1e)I$I1e)s Yf1b !I 1E)I$I$9I$I$9$I$1E) I$1E) 1E)I$I9!$@$9 X#&I1`yqKݴM1- I$I$9!$ђ#&1E)`xdJ1X1E) -I$@11 I11[1e)II1E). I$I$11?@d$11 _W 11")1!I$I W1b׿( I1E)H11(&@1E)v @1!I$I&E)!I%)$!@E)!E)!*I$e)! @J؆1E).@21!j1I$I$11?I$11?I&H11U\ I$I$'9#I$9!$1E)*I$I$9 p$1V 1! I$I$9! 1E)If1 I$I$9 0۰m1E)&* $I$9!@$I$9!$A&dB&1e)( 1E)*I$Xm1E)U\I$I$e)E)I$I$)(iI$1E)-UU$hj71E)e IĆ1E)&I11 * I$I$)I)I$@11I$I$9  $11I$I$)I)I$I$)I)I$I$)I)I$I$)I)H$11I$I$11 1f1 *I$I$)I)I$I$)I)I$I$g9*11`NB" 1E)ꨀI&[1E)U_zI$I$1 I$1E)UU m1*"@n1! UJI1) 11 * 11 0$H11|p*I$I$9!@!@11 /I$I$)I)I$I$g9*I$I$g9*H$11I$I$9 I$11?I$@ 11 I$11 *1f1`01`4I1b % 1I$91M5 m˶`=9rP)t1 %۶ml11I I$)I)I$I$g9*81!`p` x1+%5Ph1!`@@1E)I$I$9F1 II$9F11e)IH$ 11*I$)I)I$I$)I)I$I)I)I$@ )I)I$I)I)6 H1E)zh`0E)!pI$I$E)!UUW^I$I$X!UUUN6w( **&N7w%y +-1# N ++-41 DZ *44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4 DZ1@4 H$DZ1@TU-H$I$1TUUU 11 I$I$g9*I$I$g9*  I$91 91 s&9E)I$I$f1e)$D$C&1jZR De)b %5$ 1E)  w91/- I$IBD! >9$!~^x`7xi1 /5/h&R#1E)X\pM$m*f1VV N޶m9%)) 91 H$I$9F1 B$! H$ 91 I$I$91 $I$91 }?R+9^ )tH$I1! `01e)II$1f1** ,91 O$z]9WW0!y$ 1!I I$1E)h$IE)ָ!E1! ) -m91/ @691p I$I$11 11I$@$)I)I$I$g9*I$I$)I)ۆm؆51E)0 1E) @ 9F11E)  &91E)II1! 1e)I$I$g9* I$I$fQ1UUUwyf9 )-!.)%y+/--,4 @槩F Z3۶InF4!L\DZ 4%c mDZ1$|秩EV^4&iDZf4|&3E^Zz4IIE4kEZ?I۰mDZEU4IDZEU4I DZEU 4IDZEU4 I %1@4 $f1U4@?I$DZf1~UU4P$I$e)PUUU$I Ie)E) $I@!I @!r e) @!L$#@E)b<I E)/5(I$ $e)E) ,E)@:)E) E) $H)(I)(A)(H)(4lE)`E) d$IE)!H`E)! k$hmE)I$I$E)$! I$ $E)$!* L$E)a(>L%)6($E)!* @E)'L$%)a$I$E)! I$%)!k@!I%)!_UI I$! $I$$!!C$H$!@$!($! ɐ ɐdX!%R%yX+/-&/w%y +/, $!pvk9$I!b&!%$@$!p!I$I$e)I$I$d!d I$I$d!d I$I$d!d  H!%%% PH vnv$qH__+,1r)ri)))+1 =4/P DZ?)&$Aȹ__*40@$DZEPP4DZE4/-DZǩ 4 DZY@44I$I$%43H$H$DZ31H$I$31?3蹦+*D4H%I$DZU48& `pXH$H$E)aI $!* @$H$! $!* I$I$e) 1 @$$! I$I$$!!I$I$$!! I$I$e)I$@!a $I$! $!  @ $!`@I$I$!A/LB&I%)^!@@$!@$H$e)I$I$e)I$I$e)I$I$$!!I$I$$!!?I$I$1@$H$e)I$I$e)I$I$$!!@|TI$IE)!UU%!C0`$E)!`x^I$I$$!!UU5I$I$$!!I$I$$!!** ImI$!UUU5dH$!U5 $IH)IIPHIB$ PH(mmaH* nW qP  EX }4 fi*)4E / #II%y?/ I H6MzR(ȱJ3mҖ% Z?3蹧?1o? DZUUU\4-@ڶ $DZ 4/QVDZǩ#+4$DZ$!@T4$I$DZ$!@TUU 1 1@$I$e)I$I$e)I$I$$!!I "E)!?/[&mӶE)pI $!/+ H$I$e)I E)$!I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$Ie)E)UU5 B$H$f1!E)!*II$E)!* H$I$1I$I$1I$I$1 E)!$E)$!E) j*IE)I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!H@ @E)1wiH+- N%ya +-($@%yE)@@I$I$1I$I1!/ @$1E)ZWH$I$E)I$I$E)! I$1$I$1I$I 1E)$I $1I$I$1I$I1)(I$I$)(I$I$)(I$I$1 $)(@$I$1۲ 0E)@E)!)(I$I$)(0E)!&L$E)!I$I$e)I$I$e) C&$C$!b`I$IE)b5 @$E)!H$I$1I 1$)($I$1I$I$1I1I$I$)(I$I$)(I$I$)( E)b@1 @$)(@$I$1I$I10KE)(I$I$)(I$I$)(I$I$1 @$e)E)_UI$I&E)!Z$I$e)!zWUI$I$$!!TUUUI$I$E)aI$I$E)aI$!IE)!U  I$IE)!-!$Ae)E)?I$$e)E)/$I$1"I$I$1"H$e)!TU۰ۖme)!$I$e)%)(I$I$e)E)I$Ie)E)Ie)E) @!I$I$9e)$!`$I$E)! e)E)I$I$9I$I$9 9$e)$!$I$1E)@$I$1E)I$I$1"R, e)I$$1"$I$1"I@!I$I$@!I$I$@!0e)!H$e)!T0`M$e)!W&I$e)!x_W$I$E)!]UI$I$d!d I$I$d!d I$I$d!d I$I$d!d !I$IE)*II:H$! PH 9S1qX----#1%y---//"("@e)@@@I$I$9I$I$9I$I$@!0e)@1E)I$I$9I$I$9%J$e)a\V$If1A I$I$1e)I$I1e)H$H$9I$I$9e)E)@If17J"$"if1\p Ha I PH** ɛwqP/ys.e fi/ /qRT f/+3, 43DZ4$@$DZe)@PPT I$9$I$1E)H$I$f1e)ꪫI$ $1E)I$H$1E)I$I$f1e)I$I$1E)&f1`XIɔf1 %$$1!p` 61!*4I$1E)XI$1E)/ 'e) )9$! k 91 Ib;,91U I$91mҶmv11_81%)@9 IB$A11U+I$$I11UV?I& I11U]I$!011UU}``l1E)I$I$9I$I$9I$I$9 $I$9I$1E)* $1E) $I$1E) I$I$9 # I1E)dII1E)I$I$11*11I$I$g9*I$I$g9*H 11L$11WWp 2d211}[xI۴p1H 117I 11I$I11( 11 $11 [#$ 1%)I&[ 1!I$I0e)!I$I$1I$I$1I$I$E)$!X&[E)b`X`ɐDIvf1b5-+۶a1E) I$H 11I$I$9 9!$ 01E)I$I$1e)I$1E)*N$ f1W\0T1I$@9!#%I1`P@Idɐ1b%%@ 1E)$I%f1b@P IIf1b 1E) 1E)I$H$1e)I$1e) ` 1I$I$1E)}_pI$I$)(I$I$)(evaۆ1E)5=U1E) @$11 1f1 *H$11I$I$11I$11/11 I$I$)I)I$I$)I)I$I$)I)@$1f1I$I$1f1I$1f1 *I$I$)I)I$I$g9* 1E)1E)M 1e)N"& 1E)W^ۺ5 lE)`I$I%)bU&ܐmnf1 I!11 - $ 011 @$I$11I$I$9!`HH11I$I$11@ 117I$I$)I) 1$!@D1b@ 11$$L$11WWTI$11UI$H 1f1 I$11 *P-P%1P@PPII1$I 11B")$I1p ɛo;9 tI۶115I$I$)I)I$I)I)"II1!@I  1!% I& 1f1!$I119F1I$I$9F1I$I$9F1@$9F1 11$I!1f1*9F1@$I$)I)I$I$)I)A$I$)I)N'Ȧ1E)`0 E)!x` !@ R h! %%pSqfi+-- Sf+4,MN 43DZ44I$I$%44I$I$%44I$I$%44I$I$%4@$DZf1PU4@$I$DZ1PUUUI$I$)I)@ 1f1I$I$9 11 I$I$g9*I$I$g9* !I$91 91蠨M$X,1E)IHe)@ J%1% M$M$1E)6aۆ1E)*+ 0 91 = 2-91 K$1E) ۶m119F1I$I$g9*  I$91 @$:1   :1 I$I$B$! I$H$91  I$91 I$I$9F1I$I$9F1I$I$9F1L$`01f1  XI$91/  291#1H1E)I$I$1%)Z&I 1!I$L$1E)ɐd1E)/  91*+ H%@ 91^XpbI$I$11?11I$I$)I)I$I$)I): 1!`xTI1! - 1e)I$@$)I)P&@1b`X`D1b5 I$I$11*$I!1f1I$I$g9* 6bia1U[REP==+! K^B%f%qSR1 斋%y 4%NBDZW4)IDZU4,)DZ 4JJ E44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4O'e)W\ `mۿۦIE! 1E)@1E) 0e)@e)I$I$9I$I$@! @!H$e)E) $I$e)E)I$I$e)E)⫂۶mnE)! e)E)E)!X&XE) I$I$1 I$I$1 I$I$)(%h%E)AxmE)@$I$E)!۰vItE)b(&.$I$E)!I$I$E)!I$I$1I$I$1`E)"$E)!W$ $H2%)I0I$$!aA!E)$I$E)!_$I2$I$!$$$I$!(I$I $!! 5dB&I$!a`II$!I$I$$!!L$I$!Vim׶H! 7wiP/-- pO1wfi +/-,!` fJ ,I$X%U_PP$!I$!' $!!I$I$E)aI$I$E)a!I$I$E)a$@$B H!@ X8**%%qw/EX--(1sE/3&1J %4/ j"5DZǩ43 %4@ DZEP4 DZE44I$I$%4DZ41$`%3-P lB@3- m 4- )54-DDZ>4 DZ@1H$I$!TVUUH! $@$$!I $!* I$I$$!!I e) 1H$I$$!!I$I$$!!* I$I$e)I$I$e)I$I$e)$!`I$I$$!!II $!!IHI$!'H$I$e)$H0`$$!a\$! I$I$e)I$I$e)I$I$$!!I $!!/ $@$E)!I$I$e)I$I$$!!PI$I$$!!WU &E)! xI$I$$!!I$I$$!!/ I$IA!UUU%I H$!U5$I$H$1 $IPH ILdXH IĶ+aiPU I-9 %qXU}- E` ! y} f%q+-]$ E* 9}W-Iȱf? ;(=豦?Im6lǹE 41ɶDZ ?4 I$DZUUJ4$lI$)DZUJ4$n)DZJ4dB2 DZZj?$ِ$!`T3$I$$!@VUUI$I$e)I$Ie) 1@$I$e)I$I$e)I$I$$!!I E)!-&L$E)!I$ $! &LB&$!@PTP$ %) % I$I$1I$I$1I$I$E)$! E)!&L$E)XVU@!%)I$I$E)$!I$I$E)$!I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!I$I$1$E)bz"E)I$E)(U:me)!I$I$E)!*I$I$E)!*I$I$E)$!I$I$E)$!I$I$1I$I$1$ E)$!I$IE)!I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!@E)UUU1SP( ) Now%qX /- a%y%q )H$@%yE)TTPP0`$1!I$I$1I$I$E)$!۶mmE) H$I$1I$I$1۲m6lE)@IE)bU$E)!I 1)(I$I$)(I$I$)( )($H$1I$I$1II$1$)(@$I$1I 1C&E)!`$I$E)!I$  E)!I$I$e)I$IE)!+ AE)!/$I$1I$I10 $E)p`ٖlE) H$I$1I$ 1 )(I$I$)(I$I$)(I$I$)(I$I$1 @$h5E)bPTP@!!@E)b I$I1I)(`E)IK E)U,@E)!$I$12E)h$%)I$I$E)I$I$E)aI$Ie)!UUUI$E)!UUI$IE)!U&e)E) I$I$e)E)/I$I$1"@$e)|D PE) I$I$e)E)HE)!T!I$Ie)E)Ie)%)*@!$e)`e) %I$I$@!@$e)b0e)E)`e)E) 9@$e)%)$I$e)%)I$I$e)E)I$Ie)E)I$e)E) I@!I$I$@!I$I$@!@!$A&e)$!X$e)!5M$e)!@$I$e)!_I$I$$!!I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I E)!U]I$e)!uIe)!UI2e)!!1E)I$I$f1e)몫@$@$He) !XH//yws7%yX----(1S1E--) 1L)6B6I$I$e)UUUTI$I$9I$I$9`$`2E)bPTP@!@f1b I$I$9I$I$9He)aX$I If1!1e)$1e)H$I$9@$e) f1$!I$I$1e)0H&Hf1I$IPHi6e `H/+wEX// )qrT E/+10&EyX4 E4 DZe)@@I$I$@!H$1E) @!I$I$@! 1E)1E)I$I$9I$I$1e)e)`ɐI$Ie)e)!Ie)!% H$I$f1e)ꪪI I$1E)N' e)V\)dI$If1  1E) *I$11UU I$91UU  91/U  m91 I991_p I'ZM91] I$q91UU]9 $)*i1E)@I$I1E)U&I$ 1e)I$M1e)!! 1e) H '9#I$I$9I$I 1E)I$I$9$ 1E)@L$1E)1E)  @ 9  I11%UI$11*@$I$11 11I$I$g9*(@1b@I$I f1bUI9 $H$9 I11= 11?&1!X 1 @ @$11Im1E)N6P @1!I$df1!$Id&E)!$E)!I$I$1`[m'f1$!?m1$! nM$1E)*9 @$I$9!$1e)*I$@1E) f1@ x1 59 @9 J$Kf1b\W\01b H%@1bTP@I1bI$I$1e) 1e) 1E)*!1$!@M$ME)bU8 m1I$@a1E)U\p I$I$e)E)@$@$11$1E) U@N1E)-I$I$9!I$11 *@1f1$I 11I$I$11/ 11 /I$I$)I)I$I$)I)I$I$)I)$$I1f1I$@ 11 I$11 **11@&P1!`X`11! 5  $I$g9*X4 1e)tB2$ Q1E)^zI$K%1%)UUVXI$I$e)$!*I񖸆1%) >&KB'1\Z`11 II$11*11 11pI$L&11UUW\I$11U.H1a@Id 1bU&11@ 11P@I$I$11UUUTB$I$10TWVT !1 J"&H1bTP@ɔIH1b!!@11 I$H$11 %Rm>9E)*_۶m1E)!!I11$9F1@9F1 9F19F1$I2`211!I$1e)1e)$H$9F1 9F1 01e)I$I$1f1$I$)I)I$I$)I)&1X$IA1۲a 11@uڢ զ1E)^^m$k5%)bXTP@XeoP=5=/qSEX/&/w%y +/1%P N +)40DZf--44I$I$%44I$I$%4@$DZ1PU4@$I$DZ1PUUUͰ ۶m1e) $H$1f1I$H$)I)I$I$g9*H$@ 11I$I$11/11I$I$g9*I$I$g9*  9$!& h5 `91~mӶh 1E)ꨠI$I$@! hb59e)XciII$1")I$1E) **  9$!& Mz9E)I$)I) $I"<1!@pdJ1 /I$I$g9*  91 I$I$B$! B$!  C2$I91ꪪ I$I$91 $ 91I$I$9F1I$I$9F11e)I$H$11 X91/? $2 91蠠X&M"'1bXVX mf1 @ H1E)I$I$1E)?01E) 91 + I$K&91UWV\I11/?I$I$)I)I$I$g9*I$I$)I)H$@ 1f1 I1f1 ** 9F1I$I$)I)I$I$)I)H$@$1f1۶-1E)L$10U1 !z $q1 %%"P fX 1PN.r *+4-@ RDZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$&?tB?(@E1Xj%I$O'e1UUUTI$I$9I$I$9e)$!@1De)b 6(@$1E)$Ie)E) ۶mؖe) $I"$He)E)H66)AE) me) ɐE) I$I$e)E)I$I$e)E)* hE)bؠA$e)E)]U$I$1@$I$E)! $C$ E)$!ઊ$E)!*۶m5E)j!E)IE)!տ$I!IE)! $C&$ E)!m۶6E)dB!E) IB@E) UI@$E)!U! I%)&6$I$E)!@$dB$!aؠH$&$!`$I$E)I$I$!!I$I$!!**I$I$e)I$I$$!!VVI$I$$!!UUI$I$E)N`) )))pywE`+--+`NSf)---,P4 P`@@I$I$A I$I$bZI$I$b %I$I$]I$I$}I$I$ UUUI$I$!UUH$I$ b^ @Hɔ `8**1u7E`---+1NtE-+++3, 44I$I$%4%X%DZE`PPP4DZE4/hDZǩ4/ DZǩ4DZEQ4-HvHZ*3,m؆%X=-k蹧??3/ɟ蹧?-Oܶڶȹժ9R%b$DZ `PXT!$A$C0$! I$I!$! / I$Ie)1@$H$$! I$I$$!!**I$I$$! I$I$e)I$I$e)I$I$e)I$I$e)II$e)$H$e)I$I$e)I$I$e)I$@$!A^ $!b I$I$e)I$I$e)IIe)$1I$I$$!! (I$I$$!!BI$I$$!!X\_I 0E)!5% H$I$E)!\VWUI$I$$!!5% d„I@_P9* H$PHdB PH I. iPU+ I. %yP w6 ei (yPnEyի ;$7E6!O\N lȱf*=(}V[ 蹧UA/!O$I蹧  ?3K蹧?D4ٖmlDZ?4I I$蹧?4I$HDZUU\44I$I$%? R$ȱ$!PUD$I$$!@TUUI$I$e) @$$!b`XI!b/551@$H$$!!@$! I$I$$!!I$IE)!UU+$H$E)!p|~I$I$$!!?/I$I$e)dB$A$!`!%)!I$I$1I$I$1I$I$E)$!E)!ꪪI$ E)bVZ!@%)b I$I$1I$I$E)$!I$I$1 E)!jE)!I$I$1I$I$E)$!I$I$1$E)x`I$I$bXZb1E E)b I%)׼E)!I$I$E)! I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1 E)!jI$I$1I$I$1I$I$E)$!I$I$1I$I$E)$! H@ @E)1wiH+-(a-,6"I$)jJ"I$I$%)UUUTI$I$E)$! $@ E)p` I%) %% I$I$1I$I$1$I$1I$I$1I1I$I$)(I$I$)(I$I$)( )(@$I$1I$I$1II$1I$H$1I$I1I E)!2d$E)!I$IE)!?II$E)!H$I$e)I$IE)!   I$1H$I1I)(@$E)!h$k%E)bx\xIdIE)b-5-I1I$I$)(I$I$)(I$I$)(I$I$1 $1 $I$1$C$IE)$!** IE)!I$I$)(I$I$)( )($H$1$E)!z$I$E)!zWU@$H$!pXXp I!b--I$I$!!UUU IE)!U !I$AE)!+ e)E) I I$e)E)/I$I$1"`5e)b`P )E)b%I$I$!bՕ&`E) X$I$E) WW$e)  @!$Ʉe)E)@!e)`I$E)b%+I$I$@!I$p Xe)bWV `$Ie)$I$e)%)I$I$e)E)I$I$e)E)*I$I$e)E)*Ie)%) I$I$@!I$I$@!$e)E)غ&e) m$e)!X$I$e) H$I$E)!I$I$$!!I$I$e)I$I$d!d I$IE)!UUuI$Ie)!U Ie)!U Ime)!Ie)E)@!I$I$@!I$I$@!I$I$@!I$I$@!$e)%)(@$H$He)iviXH///+y1qE`----)1p e---+1,` 1J$J%f1TTTPI$I$1E)$e)$!$1E)jI$I$1E)H$e)%)I$1E)I$I$9I$I$1e)I$I$9$H$@!@$I$e)E)ਨI$HtE)VV !J$I1B$He)UI$I$!`AI!XH/ y7a%yP+" yysT$q-+ /1N /+ ?s%۰mǹE^Z4 DZE4@$H$DZe)PTTUI$I$1E)I$1E) 1E) 1E)jR$E)$A$f1%)I$I$9H$I$1"@!$H$@!9@$@!99I$I$9I$I$9I$I$1E)$I$1E)I$9I$1e) &1b`X@S1a 6m$11jU nv91/u :$91-U I 91- Il*91U $I$ 9E)@ Sϟ1bݖm1E)d@11^I61e)I$d11UU_dB$ 1e) 1e)I$I$9I$I$9I$1E)$@!$1E)1E)  @$9 ͛3'1`X@61b I$I$g9* 1E) I$11$11zIȐ 11H$H$9!r&h H1\Z1` 1! H$@11I$I$11* 11 *s,͒$ 1%)Sk1$!zꠀI$kE)! $I$E)!H$I$e) $I$E)!@I$E)! mi1$!*1E)I$@1e) I1e)*4 1p`Ix1b+  $I$9 R1E) )`I1%)I$I9!I$I$9!1E)  ,1`0Ie)&I$I$9 $1E) *`1E)I$H 1e)I$1e) k24m1E)\ N$L:1E)UUVxI$I$1!I$e)E)-UU@Ie61j@!1 -,@ 1E)-tI1$!*%%*I$11I$I$9 I$11/I$I)I)I$I$)I)I$I$)I)I H$)I)H$11I$I$11* 11 /1f1I$I$g9*I$I$g9*hm11xkX1E)xI$H&f1%)UVTXI$I$E)!*C $@e) d dS1E) *I$@ 11I$I$11*@$I$11DB$A11R*I$L&11UUW\! 11 %11I$I$g9*I$I$g9*̐#'1b`Xh 1* @$A1E) *11I$11*1111=;p$1x\ .t 19 + m&h%91|{ Z&1E)hX 1E) I$I$9F1$H$)I)1f1I$H$11 I$1e)9F1I$I$9F1I$I$9F1H$ )I)$I$11$I!1f1 L2'1b\X9J$I1 1f1 `$H1UUUd$I$HE)U IPH *** S1wiP/-- pS1Wfq/-/ N)S+-4/ 4@$DZ1PU4@$I$DZ1PUUU*51`1E) I$H$11 11 +A$I$)I) 11@}|$1b V1$! I$11 /?I$I$g9* 1!@I$IXE)&& `091 5 9e)$C2$1E) Iا9e)5r'@bȦ1E)!۲me) $I$!b WW\ .ħ9b ) I&@091#$ 1!@IVI1%+ `$C 91 II$91 91 I$I$B$! B$! `$91I$I$g9* $ $91I$I$9F19F1`01e)I$I$1e) S9 DI1hI$H&1E)ݐɐ1E) /K&X,1E)ɐI$1E) ** ! 91 @4 91xp 9  ZѦ1 I$I$g9*I$I$)I)$C$A1f1I$I$1f1@!1e)H ,1%)@ Ħ1b&$C$A1f1$C 11jMҦZ% 1V 1E) II$EY15UUPRy$A ))`/wE++1& N ++41 DZ *44I$I$&44I$I$&44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%41,,DZ1X8 If1Xp f1E)jj@!1$!$ 1E)I@! @!`e)!  e)a "$JE)$@e)$!$ $e)E)V@$e)E)_U$I$E)$!@$I$E)!E)!..$I$E)! $AL„E)!־ C&$E)!ziie)!/C2HE)h@1 ME) liE)!됤MmE)$IE)!X&[E)ap E)!I@E) I@$E)!I$$! H I$%)!@$$! I$I$1@%)pH $!I$I$e)@$I$e)I$I$e)I$I$$!!HJ I ! I$I$e)` XP %7qSw%X/-(NsE +---" $ @@Nێ $9_I$H !XI !I  !I$!]I$!UI$H$!UI$I)U_*!I$IP@)**X `P---quS7qfi---/Od f--4/i DZ44I$I$%44I$I$%44I$I$%44I$I$%4 DZEq@4DZfq4/JI*DZ1-@$XX3,CB@4,9b/$`DZ 4`,@#H$I$ TUUU$ $!* `&L$%) XTWU $!* I$I$e)I$I$$!! I$$! I$I$$!!I$I$$!! I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$e)I$H$e)I$I$e)I$I$e)I$I$e)I$Ie) 1H$I$$!!I$I$$!!*I$I$$!!bp$H$!aXڶiE)I$I$$!!Օ5 I$I$$!!mmH!PP!$ `Pշ T %yX+}. fa +}6 Ey*64 ȩE 7 " lȱf C)۶m D1PPJ1i?)§ij`D4I$I%DZ??4I$ 蹧?4 蹧44I$I$&D۰ C$ȱ$!PU?@$I$$!PUUUI$I$e)I $e)I$I$e)I$H$!bVWT0I$!b- @$e)$$!`p  !%5 I$IE)!յ!H2d$E)!PTI$I$$!! + $H$$! I$Ie)1I$I$1I$I$1I$I$1@$E)!I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1&H$$!bp\p!IE) -% I$I$E)$!I$I$E)$!I$I$E)$!* E)!i۶mf1!?!H0`$1E)eYVUI$I$E)$!*I$I$E)$!* I$I$E)!I$I$1I$I$1I$I$1I$I$1I$I$10%)`@!E))%I$I$E)$!I$I$1I$I$1&H$$!bpXp!I%) 5 I$I$E)$!I$I$E)$!I$I$E)$!*I$I$E)$!I$I$E)$!*7ux(/)%N.$i +W, 4I %q,J"%@(E)TPP@$H$1I$I$E)$!E) I$I$1I$I$1I$I$1II1H$)()(I$I$)(@$)(H$I$1I$I$1II$1I$I$1I$I 1۶E) $I$E)!I$  E)$!I$H$E)!I$IE)!+ $@E)! $I$1I$I1  )($H$E)!I$I$E)$!$C$IE)!j* ! $IE)! I$1I)(I$I$1  1  H$)(I$I$1I 1)(I$I$)(I$I$)( @$)( I$I2E)!j H$E)!jVUI$I$$!!\UUUI$I$E)a$C$I$!j* !IE) !I$IE)!۰ːdE)bI$I$e)E) I$I$e)E)I$I$e)E) * II$e)E)`1(IE)apIE)5  %I8E) pIE) %Ne) I$I$@!@!LH e)E) e)%)I$I$@!$e)%)$I$e)E)H$I$e)%) E)!@ E) %I$I$e)E)I$I$1"I$I$1"@$I2e)E)`K$e)!@2I$e) X۶m&E)jI$I$e)!bI$I$e)I$I$$!!I$IBe)!Iݶe)!im e)!!Ae)E)  @$@!$I$1"I@!$e)%)@$e)%)I$e)%)$I$e)E)(@$I$e)%)I$Ie)E) I$I$e)E)*H$H$He)ItI`P-q1qEi----,` f--) 3-ِ 3P%P,e)PPP@A$I1"I$I$e)E)I$Ie)E)1E)I$@1E)I$I1E)I$I$f1e)I$I$f1e)I$I$1E)1E)ꪪI1E)I1E) He)UUUH$I$He)IIPH** 1iP-/w7 f`/+,qR E/+ 3)1JP - 410DZ 4 DZf1DI$I$9I$I$9@(e)b@I$e)bUf1!@I$!e)a׾(f1$!I I$1E)I$I$9I$ 9@1E)I$A$1E)H$1E)!I$ 1E)I$@!$@$@! 1E)I$1E)꯿@$@!99H$f1\pɐJ$If1b- I$1E)$H $1e)$@$1e)*$I$9! I$91-UU bvk9E)@II1׿ ox91] I$v91UUI$I$11$I$11 d$11|WI$11UW`I11U#)11b@e)bI$I$9I$I$9I$1E)*p$, f1bX  1b- Z"'1 @PT0H1! 11 11 I$I$g9*@11IH 11$i )1@"ДI$1bU-1!1%)I$I$g9*@ 11I1E)C `1$!~I$hf1!$I2d$$!bpX$ $!b 5 @$E)!+@6c'e)bz0l1+1e)+$H$1e)$͒#'f1b`X$I$f1!If1 %5 I$1E) !1E)*,P(1!`pI1! %1%)@I017 @ 1E)I$H$1E)I$1E) *1e) I$1E)I$I$1e)@ $1e) *I&X `1E)UWxI$I$1[5غmE)pɑTwiۆ1=/+$I 1E)0ll1E)I11**H$11I$I$11!I$11/1f1I$I$)I)I$I$)I)I$)I)L$11I$I$9! $11I$I$g9*I$I$g9*I$I$g9*X1e)mӶM1E)zI$k41%)UU^p@$E)!Vې ɐ1E)*i$11 =UۦmШ11E)`1E)I$I$9!C$A11r** I$ 11I$11 /I$I$g9*I$I$g9*J%1b\pɖi1b I$I$11UUUT$-Z$1@P\4IC1  I$11 *11H%P%1b\ppPI@f1 I$1E) *r": 1E)VXh1 mն1E) /@$I$)I)@ I$)I)I$I$g9*$C$A1f1I$d11 $@$A11 I$I$9F1$9F1@$I$)I)LB&$C1f1I$I$1f1*H$I$)I) $H1UUU&I$H1UI$I$!`AI$IPH Im XH w/U qP/+ 9uS7fq---+,0S$!PU1@$I$E)PUUU1E)/I$I$)I)j$H$1XTTTP P1b %%%I11 **I$I$11* 1111@I$X1bW041 I$H$11I11 //I$I$g9*H1%)$  I$91 91ꪪ u&9E) @ 1E) .I1e)/ I$M'9e)UUW\#8" e)h`Iq1% 91 I$I$91I$A )I) !I$91D1E)7 mv91 I$I$B$! I$I$B$! I$I$B$! I$`&91  I$91 9F1I$I)I)I$I$9F1I$`$1e)K$HD1TWT0 B$9 @, 1E)II$1E)?,I1E)I$M$1E))1E)  !91 / k5P 9e)hL$L1VU0 1I$I$g9*I$I$)I)`&$C21f1 I$1f1 ** 1@IDH17 I$I$)I)dB0$C1f1 I$1f1 *H$@$)I)I$I$)I) 1i1 55Nwfi+/-` Wf+4,Mo 43DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%41,`DZ1)P6Pѧ蠠(J%톙e1TPpI$I$9I$I$9I$I$9 @!H2e)E)z$$e)E)W I2!e)E)~}6E)@ۖ閭E) $$&E)![@%]mE)bpE) H2E)!  $E)!/@IE)!(׿ضk%E)!X E)!j IE)!dB$IE)!I$I$1I$I$E)!$HE)!IE)!I$I$1IE)!IE)!L$`%)A\d&%)XE)!I$E)! ɐ$!,@LȄ%)(H$I$$!!$I$$! I$I$$!! @!@!I$I$d!d m۶H!%UU R/wq0 *+)" pO1sf$q +/--" -O$h%!WVXPI$I$d!d I$I$d!d !!A$!`I ! I$IHIIPH+++ qS1iP---/ yS7f$q---+/" ` /+++41ɐ DZ** 44I$I$&44I$I$&44I$I$&44I$I$&4+DZ@43 DZ31$@$11I$I$31 41 DZ4'z$pX\VI$I!**$I &E)!}{^VI$ $!**I$I$$!!I$I$$!!I$I$$!!I$I$d!d I$I$$!!// I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)$!4$I$e)I$I$e) $!@I$$!A.I$I$e)I 1@$@$$! I$I$$!!*I$I$$!!pXI$IE)!UUM$XE)^z $! ` !A 'I$I$$!!*IɚP$!5%%mڶXH ? qys.Q%qP/ % /e%i+ 6qr ȱF D%r%*;1&I 豧?1\蹧R?3I蹦 ?4I$H蹧44I$I$%J4ܖI$)DZ%UUJ4$,)DZj`D۶mX$DZ$!PU?P$I$ȱ$!PUUUI$e)H$I$e)I$I$e)I$I$e)I$I$e) 1 $1I$I$e)I$I$$!!I$I%)! C&E)!-I$I$!!*$I&$!P$I!$!b  1I$I$1I$I$1I$I$1$@$E)!I$Ie)E)!I$I$E)$!I$I$E)$!I$I$1I$I$1%)%)@%) I$I$1I$I$1$H$E)!IIe)!/ 0`$e)! I$I$E)$!I$I$E)$!  @0%)b@P`I%)b%I$I$1I$I$1I$I$1I$I$1I$I$1@ %)P@I!%)I$I$1I$I$1I$I$1%)%)I$I$E)$!I$I$1I$I$1I$I$1I$1!/PIhE)%%.qEX+/+  PNq +,@E)@&I$I$E)UUUTI$I$1I$ $1I$I$1I$I$1I$I$1  )(I$I$)(H$H$1$I$E)!I$I$E)$!I$I$1I$I$1I$I$1I  1 X۶E)@I$I!bUIA$E)!H$I$E)!I!E)! I$I$E)$!I$I$1I$I$1$E)!@$I$E)!I$I$E)$!I$I$E)!* *I$I$1I$I$1I 1)(@$)(@$I$1I$I1I)(@$I$1)(@$)(I$I2E)$! H$E)!j^UH$I$e)!VUUUI$I$E)I$I$$!!UUUI E)!U !I$@E)! Ie)E) E)b@IdE)bUe)E)*I$I$e)E)*I$I$e)E)I$I$e)E) I$I$e)E).II$e)E) $He) @Ie)% I$1" @ @!I@!$e)%) H$e)E)@$I$e)E)I$I$e)E)ꫯ+I$I$e)E)I$I$e)E)@e)`I e)5$e)!`$e)!&I$E)!H$I$e) @$$!@PT $!b %H$H$!bXVX`!$!CE)iUiIIE)bIm۰ e)!!I$e)$! IIe) II$1"H$I$1"$e)E)@$I$e)E)I$I$e)E)I$I$e)E)(I$I$e)E)I$Ie)%)I$Ie)%) I$e)%)(8e)`I$e) 5I$I$@!I$IPHWqiP- 1S7fi---/- --)4/ P DZ++**4(`e1@@@$1E)I$I$1e)I$I$f1e) H$1E)1E)I$I$1e)I$I$1e)$H$@!$A$I2e)!-f1!* 5I$I$9I$I$90`$He)I$IPH6e`H/{6EX/ (yysT%y++1")N@ ++4/P  DZ+* 4 DZ1@@I$ 1e)I$I$9I$H$91E)jIf1@&@f1$!x|p 01$!)*I$I$1E)ꪪI$I$1E)I$I$9$If1!WI$I9I$I$9I$I$9I$I$9$I$9II$1E)ꪪI$ 9IȐ@1E)I$@1E)$1E)  @!I@!I$I$@!I$I$1e)I$I$1e)I$I$9 $I$9I$9$91e)!$I$11=UUU 'I$91 UUU P91U I091W` I$j91UU\I$I$11UUUTI$11UP"-$I1bP@Iر 1b婀01!I21%)I$d1E)I$I$1E) $I$1%) P $I1!P@*HI1!  9  I$11 /$I$11 11 I$I$g9*11@Ip1b3'1`X`XtR1 % I$11?11I$I$g9*@$11 k6X 1E)b(e)xIX `E)I$Ie)H$$!b\pIti׶%)%  ɖ$f1!*+H$1E)* 1a`II$ 1=&¤m1 I$dB1E) I$I$9I$1E) 01$!I$9 I$I$9!I$I$9!&1$!pXDI1$!%I$I$9 $1E)*'N$1bXV^IBf1 $I$1e) k61E)Wp I$I&1E)UUUVI$I$1I$1!P1!/ 9 @ 11*&@11I$H$11I$I$11/11 I$I$)I)I$I$)I)I$I$)I)LB2$ 11I$I$11I$11 *11I$I$g9*I$I$g9*C$I1f1"# ц1E)蠠I$X e)!UTE)!I1E)U@"1$I1E)PbIH4@1E)I$I$9 I$I$9!I$I$9!I$I$9  I$11 /11 I$I$g9* 11@ 11P@cۆm1!X`۰m1!I$@ 11 I$11 *J%"@1bTP@I1bI$K%1E)"!1E)**I$M1e)lIt11%5I )I)H$9F1I9F1H$@$)I)H$H$11I$1e)H$9F1I$)I) 9F1@$H1UUU %I$H1UI$I$!`AI$IPH I$AXH IvY iP - EX* C%E)*PUB$I$E!PUUUI$I$E) E)!-%II1E)5@&1E) +@(1P@TII1 I$$11*H$I$11I$I$11?11I$I$)I)I$I$g9*@ 11I$I$9  11 I$I$g9*I$I$g9* !I$91 X91ꪪM$h51E)蠀I$H$1"c)6[1E)Ë/II$1E)6aSۦ1E)//  $91  `91I$I$9F1"IH1$!Id$ 1%)? I$I$g9* !91 I$I$B$! B$! 91ꪪI$I$g9* ! 91 $'1`X`91b % 1e)I$I$9! )91 // L&91M$@$1E)I$1E) ? Z%29E)IdI$1E)**۰ ۖm11 091‚ I$M$91UUWV 11 ?I$I$)I)I$I$g9*I$I$)I)I$H$11! 1f1 @ 9F1I$I$)I)1e)I$H$1f1 1f1 *I$I$)I)I$I$91?7wy9 %& N7%y +1"PNw +4/P VDZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%43 DZ4,[ m/ f~z"O$Z-fe1WTP@Xe) $I$e)E)ضmۚE)!H@$E)! $$E)!M$E)b$I$E)!UUA$I$$!!(+ dB&$IE)zz !2 IE)! $0! E)!  $IE)!+ E)!/(I$I$E)!k5۶E)x!I$IE)!I$I$E)$!I$I$E)$!I$I$E)$!  E) %/I$I$E)$!I$I$1I$I$E)$!I$I$E)$!I$I$1$E)$!`@E)!^$E)!IE)! I $!.$I&`0$!b`$!I$!I$Ie)I$I$e) $I$$!!$! $@! ذI$I$$!!*)Ryth! )-%pSqwfi/--+ \i>55-@$@ !PPP@I$I$d!d I$I$d!d I$I$d!d I$I$d!d !(H!((d@$@H!5 PH yS1qX----#1u%y---/1&` ++ 410DZ 44I$I$%44I$I$%44I$I$%44I$I$%4 DZ%i43  DZ31@$@$31I$I41ٰ ۰DZ*** 4=ppH$I$%Q TUUU I$H%)!eiH$H$!$!* I$I$$!! !$I$!A! I$I$$!! *I$I$e)I$I$e)$!b8I$I$e)$$! $!? $!@I$I!a(A$!;WI$I$$!!DB2$I$!`I !a7A$I$!! @$$! I$I$$!!I$I$$!!* bI$I$$!!TVUU B0E)!% bH$I$E)!\VUU@ !bpI !A?/ I$I$$!! / P$!%%%% !AXH///yW1q%X--4oN)qǩf--C-qV` ȩ= JL$+@%yVVD3Hm蹧?4 @$蹧?4 蹧?4II蹧?????@ !@4 H$DZ$!@TU4@$I$DZ$!PUUUI$ e)I$H e)I$I$e)I$I$e)I$I$e)I$I$$!!$! $e)H$I$e)I$I$e)I$I$$!!*I!H2E)!5H$I$E)!I$I$$!! H$@ $!\X`I @$!b% I$I$1I$I$1I$I$1@$E)!@$ e) E)$!I$I$1I$I$1 E)!I$E)$!0$!@I$I$!b5Օ&I$I$1I$I$1I$I$E)$!$@$E)!I$Ie)!/)VC&e)!  %)$!I$I$1I$I$E)$! E)!ꪪ!A@%))I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1$E)!%)$!I$I$1I$I$1I$I$E)$!I$I$E)!*I$I$E)$! E)!I$IE)$!I$e)!/ `$I$E)bWW@!%) Rqy$) ))% R7%q++," ,H%@(E)TPP@E)!*I$I$E)$!I$I$1I$I$1I$I$1I 1 )(@$I$E)!I$I$E)$!*I$I$E)$!* I$I$1I$I$1I E) k6E)$I$E)/H$! I$IE)!I@E)! $I$1I$I$1I$I$1I$I$E)$!I$I$E)!I$I$E)!* I$I$E)!`$I$$!b0WVmٖE)I)($E)!$I$E)!I$I$E)$!*I 1  )( I1,X%E)bppIE)b 5%@$E)!zW@$I$E)!ZWUU!I$I$E)aI$ E)!Uխ I$IE)!*Ie)E)U= I$I$e)E)/$E)!|E)!I$I$e)E) I$I$e)E)I$I$)(I$I$e)E)/ @!I$I$1"I$I$1"۶m۶!e)!$e)! =I$I1"$e)E)$I$e)E)I$I$)(I$I$e)E)I$I$e)E) I$I$e)E)I$I$1"$II2e)E)p $e)!H2I$e)!@$I$e)I$I$$!!*I$I$e)I$I$$!!M&mE)ZjIE)b Im`e)!'I@$e)E) $I$e)E) I$I$1"$@E)p` IE) 5% I$I$e)E)I$I$1 I$Ie)E) I$Ie)E)+I$e)E)/Ie)%)*I$I$@!I$I$@!I$I$@!I$I$@!e)Ie)b5I$I$@!IIPe) 11iP--// 1S1f%q----1"N---)41DZ 4-)"I$I$e)UUUT I&e)!ۖe)! $e)E)@$C&e)!mM$E)!_mI$e)!mme)!#Ie) `ࢪItE)/-  I&L$e)E)^WU@$IHE)U%ضmKdH8I!XH/ y7e%yP+" ys.efq+ /1N f+ 4-1RD 43DZ4@$H$DZf1PTTU I$1E)I$I$1E)H$I$1E)I$I$1e)I$H$9I$I$9I$I$91e)I$H$9m1E)jꪪIĤ e)8@ 1$!)***H$H$9lh&f1!^f1E)I$I$9I$I$9@$I$9I$I$9I$I$@!I$I$9II$9 1E)I$1E)I$I$1E)$@@!@$I$E) VT`!`e) 9I$I$9I$I$9 $I$9 $1e)$1e)$@$1e)* mI$91?UU Z$91 U Iԓs91Up- I$p@91UU\$Id&11_\I$11UU$I$11 $C 11I$I$9!I$@$9I$I$9I$I$9I$1E)*$1E)9 I$11  $11  @$1111 11@H$H1E) 1E)I$I$11+I$11/I$@ 11I$I$9 ` 1E)LB2 1E)C" 1!ꪠI$L2E)!I$I$e)I$I$e)!I$E)! @R6ۆ1$! m햴1E) I$@1e)1e)*@1e)*I$H 1E)I$I$1%)*@!1E) @$I$9!I$I$9!1$!p`1$! H 1E)I$I$1E)t"ڠ e)!VXXp)P.1  I$ 1e)I$I$1e)H1E)`m6[,e)!I$I$$!!** $I$E)!/` f1! -1e) I$117UU11I$@11I$I$11?$I$111f1I$I)I)$H$)I)@1f1I$H$11 I$11 /11I$I$)I)$11$@11` *I$[1E)I$[1E)UVZI$I$1I$e)E) UI-1$! jjdI17Օ1%)I$I$9!p$1a V1!I$I$11/11 @$@$11 I$11 *@ @11P@I$I$11UUUT 11%I$H$11 11 I$I$)I) 11`@۶mV51!b 8AS9 i۴ :91^@1$!@XI1& 9F1I$I$g9*@ 111E)!1f1$H1UUU$I$H1UI$I$!`AI$IPH I$AXH IvY iP - EX*r$%9 @T?E1@TUUNB'p"91E)z  E)!`I$I$E)!UUWVI$I$E)$ E)! %-i1E)/P1E)  11I$ 11  @$11 *I$A$11 I$11?11I$I$g9*I$I$g9*H$ 11I$I$11/11I$I$g9*I$I$g9*  91 091Zzm6k1E)II$1E)?r"'Ɇ1E)I$@! O$9E)?UU x9a & I$@ 91@ 9F1II$)I)H$@ )I) II$91 91 H$H$:1 $I$9F1 dB&$C"91 I$I$91 &@9p1a  $I$91 #9$!p [ɛ9 ? 91 ۼ-59E)jzx @ e)E) % 19E) / I$H%9E)ɐ1E) / ! 91+ h$91^zbI$I$11?11,1E)1   1f1۰ ۰e1f1***9F1H$@$)I)]'j1E)^\ޖbVI1E) I$I$1f1*$I1f1I$I$)I)  $I$a15UpSwf`++`N/sE +3)`J)W +410DZ 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%41lDZ3)# xࠀ-#hEQ` O&fE)UUTX$$E)!_ $C2! II!b I$I$!!WULB$AE)߫I$IE)!*IHIE)!*I$I$E)!*$I2$IE)!j lE) I$E)! ۆKdE)<!!E)A I$I$1I$I$E)$! I$I$E)$!I$I$E)$! I$I$E)$!0%)$E)!E)$!I$I$1I$I$1H$E)!I$E)!I$E)!IE)! E)$!I&$!@$$! H@$!(  I$$! $I$$!  I2$C$!@H$I$! !!a HX!%55pSwEX//(7sE +---&TIII$N$EI!UUWTI$I$E)I$I$E)I$I$E)I$H!<( !!@H  !XH//+q1q%yX----(1SE-- 3))Rd -) 43DZ44I$I$%44I$I$%44I$I$%4DDZE4DZ43 @$DZ31@$31 4& DZ@,x'O$ \\WWI $!*+ $@$$! !** $!`! I$I$e)I$@!V !I$I$e)I$I$$!! I I$$!!@I$I$ A8$!$$! $!I$I$$!!I$I$$!!ʫI$@!WT$!H$$!(I$I$$!  I$e)H$I$$!!I$I$$!!* I$I$$!!I E)!5 @$L$E)!p\VWI$I$$!!5-I$I$$!!`I$I$E)I$I$$!!//ɖ`YH$!]uXP55s7f`-/+1N f--/+C,۹}蹧=J4˜mI$)DZUUJ4II DZJ4dB$ ?4I$蹧?(@$!@PP?H$I$$!TUUUI$I$e)I$I$e) $1@$I$$! I$I$$!! I$I$e)I$I$e)@$H$$!b`XX I$!b %5 I$I$e)$H$!b\^! I "E)!mK ɄI„$!(I$I$$!!*I$I$e)I e)I$I$1I$I$1I$I$1 E)$!H$I$e) 1I$I$1I$I$1I$I$1@$H$E)$!I$Ie)I$I$1%)!I$I$10`&E)hX E) %5dB$IE)!*֭[6e)! H$I$E)! E)!I$I$1E)! 2dB2E)jz!I$! %5 $I$%)$!1 $!!%))I$I$1$E)!H$I$e) E)!I$I$E)$!I$I$1I$I$E)$!I$I$E)$! I$I$1`$I$$!0`DE) )ڴ$E)hVH$H !ܨ!!@E)  ɐtI`E)pSwe` /-) sE +ZmӶm8j*pI$I$ʣUUUTI$I$E)$!E)I$I$1$I$1$E)!@$I$E)!I$I$E)$!*I$I$1I$I$1I$I1$@ 0E)! II$E)!$C H$!$!+ mڶ E)!W߯+!AE)! H$I$1I$I$1I$I$E)!H$I$E)$!I$I$E)$!I$I$E)$!* H$I$1I$I$1Ke0E)a E)! I&E)!xE) I$I E)$!*  I$E)!  I$I2E)$!0mE)b$I$1E)` ! I$I$E)  !I$I$bVU$E) I$I11 I$I$e)E)I$I$e)E)* k&XE)XX!@E)!  @&E)`X-E) I$I$e)E) I $1"@$I$1"I$I$1"I$I$1"[52e)!`p $E)%% $I$e)E)I$I$)(I$I$e)E)+I$I$e)E) I$I$1"I$e)E)l۶&e)!L$E)!$I$E)!I$I$$!! I$I$$!!I$I$$!!*I$Ie)!/I$e)! imme)!IH$1"$I$1"I$I$e)E)I$I$e)E)I$I$e)E)I$I$e)E)I$I$)(m6E)!I$$e)E) I e)E) I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!I$I$9I$I$9I$I$9H Pe) y9qP-///"1%y----1&++++41DZ 41,`DZ1H$J&E)TTTX@$@ E)!@$!a !I$E)! ] $E)! /I$dE)!_I$I$$!! I$I$$!!(IE)!  E)!I$IHE)UUU5A$H$H$1 LH$APH** 1iP-/w7 f`/+,yR E/+ 3)1eRD -) 4 DZE@4 b'e)@@ZI$I$1e)I$I$f1e) 8p$e)b`X\)E) IIe)E) **I$I$@!$e)%)I$e)%) **I$I$1e) Id$1E)1E)$1E)$A$1E)H$H$1E)kf1!^)۶m1E)I$1e)I$$1e)I$I$9I$I$9I$I$9I$I$9I$I$9$I$9I$I$9I$I$1E)I1E)r t If1$I 1$!dB&$1E)@!I$I$1E)I$I$f1e)1E)I$I$9I$I$9I$9$'9#I$I$'9# XI$91 UU :$91U I2:o91Uz% ش 91UUW I„11UId$11WL& 1E)I$I1e)I$1e) 1E)I$I$9!I$1E) @!1%)*9!I$I$9! 11  I$I$g9*H11811I$11dB&d211__^xm۶-1E)̔d1bI$@ 11I$I$9!  1E)k1E)~M le)!L$L&E)!I$I$e)I$I$e)I$E)! ?@ $1$!*1e)H$H$1e)I$1e)*I$1E) I$I$9I$1E) *1e) I$I$9!I$I$9!I$I$9!1E)&1bhxIXdIf1a--1e)*H 1e),f1$!h$C$1E)jI&Xe)$!WI$I$$!!I$I$e)I$e) ?@$1E)**@$11 11 H$11I$I$9 I$11/A$I$)I)I$I$)I)II$)I)$C11I$H$11 I$11 /11  11I$I11$C$A11IX 11UN"'1E)W^xI$I$1I$e)E)UͰfH$E)bTWTIB1 I$I$9!Nǀ1aV DA I1!I$I$11I$I$11/11I$H$11 I$11 *`011X`I$I$9!$I11 -I$I$g9*I$I$g9*@9`41b`xA$IE)bs}DI1b%5 :-1e) *I$I$1E)MɊH.1дI$1U ۶mh911@ Ie9&7 %I$H1UI$I$!`AI$IPH I$AXH IvY iP - EX*wR%1* @T$I$E1@TUUI$I$)I) :ئ1E)1d1E)‹I$k61E)Wx`0E)!X`I$I$E)I$I$E)!UU@!E)! nI1E) /11 H 51`TI1 %(5`'1x\P1 % I$11 +?I$I$g9*I$I$g9*I$I$g9*I$H$11 I$11 ?I$I$g9*11* II$91 B$! s:Z 9E)H$@ 1E)ɚI$1%)/?I$H$1E))) e)I$I 17 91 I$I$9F1H$@$)I) 9F1I$H$)I)  I$91 I$I$B$! H :1  $I9F1 I$H&91 !I91 9F1I$I)I)1$!Inm1E) ) Id91/? h9f1`] 1E)ꀀII$1E)/ (j9E)I$I$1E)*@IK1E) @91 / I$H&91UW^\@$11/P9 @1 I1`1 // `1e)۲ 9e) `%I$9b ' 9F1@11I$I$)I)I$@$1f1! 1f1 *I$I$g9*I$I$)I) mr q9 %! R7f$q /-/`JS++4-@ &RDZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%41X,`DZ3(R 蠠,[h)`I$O'f!UUW\mӶE) ImÀmE) IH$E)$!*$I1I$IE)!**Ie)E)UըI)()($@)(H$H$1I$H$E)$!(I$@$E)!0E)``!E) I$I$E)$!@IE)b &.@$E)!$%)a` @%)b I$I$1H%)a(I$I$1I$I$1E)!I$I$1I$I$1I$ E)!dB&$!PI$I$$!!I$I$e)I$e)I$I$$!! I$I$$!!H!b! H!a((L$LH$A WyqP/ N7wfi+//,  f ),x'`%!\XXPI$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$d!d @H S6e`Pyyw7E`--,)uNTE-)++3, 4!daDZ*44I$I$%44I$I$%44I$I$%4c;Aj44I$I$%4$H$ETTT3# )&43I$IDZ**49`&DZ `XXI$I!*!@0E)!m{ZI$I!*I$I$E)H$@ !bppI !b55 I$I$d!d I$I$E)I$I$e)I$I$e)I$I$$!! *I$I$$!!@$! 8*I$I$e)@$!I$I$$!! I$I$$!!I$I$$!!* I$I$e)$B"$A$!I$I$!a׾($H$!bx\ ! %I$I$$!!*I$I$$!!x^I$IE)!UU%H0@&E)!pXI$I$E)I$I$$!!_UI$I$d!d I$I$e)I$I$$!!+Y YP$) XaP+qqw7eSFa---+-Pf+!-)?/ٝܐ 蹧Q?4I$I蹧???4I$I$蹧D4dI$DZUUJ4L`ɐ$)DZV%UJR"%P2$!PPPP$!I$I$e)I  e)H$I$$! I$I$$!!**I$I$$! I$I$e) $!I$I$!bVU8$I$!bI$I$e)H$!Xi۶mE)* $H$E)!c\WI$I$$!!I$I$$!!I$Ie)1I$I$1I$I$1$%)$!@$I$e)I 1I$I$1I$I$1I$I$1 H$E)!1I$I$1I$I$1I$I$1I$I$E)$! E)` $@$! !C&e)$! E)!說IE)! I$I$E)$!%)H$I$!b8UI %)@!I$$!bUI$I$!!1$$!@P@ E)b%% $E)!H$I$e)I E)! E)!j@L$%)bVU%)I$I$E)$! 0%)`$I!e))%[K$%) TU5ݚnE)b` I$IE)bUU $E)@P%) I$I$E)$!.wwOy( *--Fw{ɛX+&Fn$MۧpWtHB'vb; $)TXZj $E)I$IE)bU/E)!I$I$E)!I$I$E)!I$I$E)$!I$I$E)$!*I$I$1I$I1`B&E)!@$IE)!I$ E)!I$I$!!/ I$ AE)!.$H$1I$I$1I$I$1$E)@P %)b %%)@ IE)bUI$I$1I$I$1I)($)(@$I$1&E)b`X`IɖmE)%I$I$1I$I$1[%mE)b@P@  E)b$H$E)!z^UI$I$$!!TWU_I$I$E)I$IE)!UUU$CE)jId6E)5I)(I$I$)(I$I$)($e)E) B^ I$)(۶[E)`͐dIE)bUH$e)\PIe)% I$I$1"I$I$1"I$I$1"I$I$e)E) `$e)!H!e)!@$E)\E)I$I$e)E)I$I$1" e)%)m[$e)!$I$E)!I$I$e)I$I$e)I$I$e)I$IE)!/I$!e)! IHe)!I$I$e)E)I$I$e)E)  e)E)`@$e)E)UI$I$e)E)I$I$)(I$I$e)E)I$ e)E) $Ip$E)( e)b@ I$E)bUe)E)I 1"I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!$e)E)$e)%)I$e)E).$I$e)%)@$I$Pe) p7SqP//--" 1S%y----1%pR++)-41DZ 43 DZ3P%P4!PPP` $IE)!I$KuE)bWW !$ E)I Ie)!@$e)$!M6E)!I$m e)!WߪIe)!  e)$! ")HE)5+۶mIP8 6e`H/{6EX/ (yysT%y/+ 1")N@ -+ 4/  DZ* 4 DZE@@I$Ef1TTUU%J$1\Wf1 R") If1ap f1 ! @1E)$ 1E)$C@1E)I1E)I$I$1E)I$dB1E) $ 1E)H$@ e)E)  e)%) * $H$e)p\p e) % H$1E)$@$21E) !1E) 1E)I$I$9II$1e)I$I$9I$I1e)I$H$1e)I$I1e)I$I$9I$I$1E)I$I$9I$I$9A$I$1E)I'9#I$$1E)I$H$1E)H$H1E)@!I$I$@!I$I$9I$I$9 $I$9I$91e) 1e) ?9e)WU b $9E)7U @o9e)!I2d211^x 9  $i1E)@N$NSf1$!׿,1%)I$I$9I$I$9 $I$1%) @ $1E)*1E)@2d$11z^W@I$11 U11 I$I$g9*11m1@I I1U!$I11  $@11 $C$ 11~I$9 [m`1E)ꀀ$#Hf1$!ꨠI$[mE)!I$I$e)I$I$e) I$E)!/ 閤f1$!*H!1E)*I$@1e)1e)*@1e) I$H 1E)(P$e)p|0 1 %I$I9!I$I$9!I$I$9!I$I$9!H$1E)I$I$9I$1E) *b$`")1!ZVX``f1 BIE)bUNB:,H1$!WzI$I$e) I$I$e))tI$f1! UU h%f1bBZ ɔD1bI$11*H$11I$I$11I$11/I$I$)I)I$I$)I)I$I$g9*@11I$@ 11I$I$11?11I$I$g9*I$I$g9*I$I$g9*L&`011V\X`H$1E)VZjI$I$1LBF$AE)\0`S6i1E) *$ 11I$I$9!I$I$9!A I$11⊪I$I$9 $@$I211 /$11I$I$9!I$11 *`0 I11X`I9 @$A11/$112۶m1E)I$K1UU0h1I$I$1E)h4 1e) *!I$ 1E)* I1 (H1UUU)H$H1UH;I$H1I$IBPHUI$IXH* IvYiP*- %X*r%9 @TE1@TUUI$@$11*$I 1f1 *A$H$)I)1e)1f1 @1!mҶk1E)UU^L$`B2E)!V\pI$I$E) I$E)!5UII$E)$!@IS1E) )`"1 1bP@IHH1b5R" 1pTI`1 *I$I$1111/I$I$g9*I$I$g9* 11I$I$9 I11 //I$H$11$11 I91 `9f1ꪪ ڤ ֧9E)I$H$1")X1E)/I$I$1"-i1E) *+ 091 +- @$91 9F1I$I$)I) 9F1I$I$g9* !91 H$:1 B$! `B2 91I$I$g9* $I!91 I$@$:19F1`01e)I$I$9! P91  [X 91I$h%1E) D9E) ?? l :09p9\I1b+%   91 @,`91x`I$I$9!@11 I$I$)I)I$I$)I)#A I1!hIHI1 @1e)H$@$)I)I$I$)I) 11I$I$11*Ħ1(I$I$)I) II$EY1UUW%$Y+)N/wE+/1& O ++410 DZ *44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4/R @DZꨠ1yp @Ey%)c1 hE1P`$IEAE)UUUTI$Ie)E)U IH$Ie)E) e)E)I$I$e)E)I$I$)($)( A E)!.*H$I$E)!H$I$E)$! I$I$E)$!I$I$E)$!$C IE)$!*E)$! E)@$!E)  E)!j`E)!I$I$1I$I$1H$E)!E)$!Ie)LHE) I$I$1 E)!ꪪ@$%)$!I$@$e) 1$I I2$!$I$!I$I$$!!I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)v`) )))RwwE`/--+Sf +---@  !P@@@I$I$d!d I$I$d!d I$I$d!d I$I$E)$I&dB$9?$@H8PP.RTi8))* yS7qfi---/-p` --4/ DZ4mDZE44I$I$&44I$I$%44I$I$%4@DZEQ 43 @$DZ3 XI$IX1 3|4" @@ H$I$ TTUU !@%)!յ`$$%) XVWUI!**H$I$ A ! I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$$!!$!bp$! I$I$e)I$I$e)I$I$e) @ $!apI!b%I$e)`B2$I$!bp !b I$I$$!!* I$I$!!x* !H0E)!- H$I$E)!\WUUI$I$E)I$I$E)a !b !bI$I$$!!/YuuP$! xg`P--/+ ?wqSfi----16a)RDZf?/۹蹧5?4 $I$蹧D4ۂ-K$DZ?4I$ 蹧44I$I$%4H$H$DZ$!TTTTH$H$$!b\WT!!$!a @ $$! I$I$$!!I$I$$!!*I$I$e)I$I$e) $!@ $!I$I$e)I$I$$!!I$IE)!UW @$E)!I$I$$!! I$I$$!!I$Ie)1I$I$1I$I$1 %)$!@$H$e)I %)$!1I$I$1I$I$1 @$%)$!I$Ie)1I$I$1I$I$1I$I$1 %)I$IE)! 0e)!/ II$E)!I$I$1I$I$1I$I$1I$I$1L$!@$H$E)!IȐ$A%)E)$!I$I$1I$I$1$E)!H$I$e)I e)%)@H$I$!b(UIA%)bVE)!I$I$1k6[ %)bX`I!)1L%)V e)!I$I$1H&%)bTP@ $E)% I$I$1&TI䧉%)%%v.wEP5++(`OE ,E)@(I$I$WUW@E) I$I$E)!I$I$1I$I$E)$!I$I$E)$!I$I$E)$!*I  12L$E)!H$ E)!+ @$E)! E)!꯯I$E)!/ @$I$1I$I$1I$I$1I$I$E)!%)@ E)b% I$I$1 E)I$I$1  )( H$E)!I$I$E)$!I$I 1 $H$1I$I$1I$1@$I$1@$E)!^H$I$E)!~WUUI$I$E)I$I$E)I E)!U!I$IE)!* I)(I$I$)(I$I$)( )(I$)(H$)(I)(I$I$1  E)I$I$e)E)"I$I$e)E)I$I$1"I$I$e)E)e)E)I$I$e)E)`2E)!!IE)! I$XlE)bV\ E) $e)!0d$e)!@$I$E)!I$I$e)!b 7I$I$e)I$ E)!/IE)!I$I$e)E) I$I$e)E) *I$I$1 2E)!@h$I$E)(UضmٶmE)I$IHe)E)UU!Ie)E)?$I$Ce)E)@Ie)E)Ue)!@I$kE)U(e) IP$E)bI$I1"@!I$I$9@$I$e)b^\`!`Ie) $e)%)I$e)E)$I$e)E)$b$E)\E) I$I$e)E)/ I$Ie)E)<I$e)%)I$Pe)UU 1SqwiP--- pS1wfi +/-/ pJ)S+)-4/ DZ **+44I$I$%4(e)@@@ e)E)5 I1"I$I$@! f1e)I$I$1" @!H'e)bXf1 ۶m!Pe1U5%L$H0>? IDR X8** y6a %yP+" ysTfq-+ /1N f+ 4,M4 43DZ4  DZe)@@@@$e)E)UJ"&DE)\@@E)e)E)e)$!$@ @!I$I1"I$I$1e)I$I$1e)I$I$1e)I$I$9@$I$1E)I$I$9$IEf1f1@ٶmm1%)LB$I1E)@ 1E)I1E)@$H$1" A @!I1E)I$I$1E)$@$I1E)H$I$9-1E)jN$18U1 I1e)`1 `2IDf1? $1e)I$I$9I$I$1e)$1e)H$I$1E)I$H1E)I$I$1E)I$I$@!I$I$@!I$I$1e)I$I$9$I$9$C2$H1E)I$H1E) $I$1E) I$9E) T91UZ5 N$N(91UUW`II$9!L01E)I$1E) !I1e)*IB&$ 1E)I$I$9I$I$1%)*I$1E)*I$I$9! 115I$11*I$I$g9*11*11 I$11I$I$9! 115I 11/$C$ 11z$I)1@HHf1 C" 1$!~ꪠI$`E)!I$I$e)I$I$e)!I$E)!/@J&f1$!*1E)I$I$'9#I$I$'9#R)f1P@IIf1 $I$1E)*1E)I$I$9!I$I$9! 1e)@D1 7I$I$1E) I$1E)*1e)*J%If1$ I$1e)@f1$!Z言I$K%e) I$I$e)!b@1b I$I11"$I$11@ 11 I$I$11 I$11?11I$I$g9*I$I$g9*I$I$)I)I$@ 11I$I$11?11 I$I$)I) 11I$11M&X31E)`0e)E)\pI$I$1i׶1E)U-vm1E) *$ 11I$I$9!I$I$9!I$I$9!@$H$9! H1!9 I$I$9 H$H$9!I$9! Id$1E)ad1e) *I$I$9 I11 +*I$I$)I)h1e)Ivk1e)**(&m6)H1UUU6M$H1UH$I$H1I$IPH*I$IXH*qviP+۶FX+R$$1 @T$I$E1@TUU $9F1H$I$)I)dB&$I1f1I$I$11*$I!1f1 I$I$)I)81a`II1b559 1E)xLB&$ e)E)W_I$`2E)!WVX`I$I$E)IE)! 5  1E)UU ݐn1E) + 11 1 IX 1 / @$ 11I$I$11?11I$I$g9*I$I$g9*H$11I$I$9 @ 11 I$I11*I$I$11 t91 P`91Zzm&k1E)I$I$1%)H$A21E) I$e)%) * W9E)+ 91 d$@091I$I$)I)I$I)I)H$@ )I)II$g9*9F1I$I$9F1 A$I$9F1 L$d091  I$91 H$I$9F1H$H)I)9F1 M$[591 ɐI$91/  911I1E)I$I$1E) BJ9E)@  I" 1!IP1E)   91 / L'`91WV\x%J%1\Xp91 I$I$g9*I$I$g9*H$@ 11 I$11 /? 9F1I$H$)I)I$I$)I)@1E)@Iī 1Ֆ($I$H1%)I$I$g9*  Di9 55 pSyfi+/-` Sf+4,Mߔn 43DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%43DZ4-"# DZ1 z訠&K=Ze)Tp`I$I$e)E)I$I$e)E)KdE) )($I)(I$1kdK E)(<@ )($I)(I 1 $1 E)!H@ݖ mE) I$I$E)! I$I$E)$!I$I$E)$!HE)!E)!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$$!!I$I$!!* I$IE)!$C2$!@  I%) $I2$0%)jd !  I &$! @ $!$! !dP! 5RwwEX/&7SE ---/" !@N$ueAI$I$d!d I$I$E)I$I$E)LI@H??/IIPH*** yW9uiP--/+ 1Sf$q--/+1"Nd-))41ِDZ* 44I$I$%44I$I$%44I$I$%44I$I$%4 pDZEa41؂-[%DZ1/$1/3%`'pX\IIE) UUյI0E)!y{Z^II!I$I$E)H!I$I$e)I$I$E)I$I$d!d I$I$e)I$I$e)I$I$$!!I$I$d!d I$I$d!d I$I$$!! H$@ !AI!b% I$I$$!!I$I$$!!+I$I$$!!I$I$$!!@ $! $I$$!!I$I$$!!I$I$$!!* I$I$$!!XVVWI E)!%- @$H$E)!pX^WI$I$E)I$I$E)aI$I$E)@$!bp@I !!?' I$I$e)H PH qWiP//" ws%q--7 qw]ȱ ?1ɑɽ蹧544I$I$&?4I$@蹧?4 $I$蹧44I$I$&4H$H$DZ$!TTTU@$H$$!bxx I$!b - H$I$$!!I$I$$!!*$$!p$!  @$$!b`pA$I$!bI$I$5/*I$I$$!! I$I$$!! $E)!I$I$$!!I$I$$!! I$I$e)  1d$$!0$!!I$I$1$H$E)$!I$Ie)I$I$1I$I$1I$I$1 @$E)!I$I$e)1I$I$1I$I$1E)! $E)!jjI I$!.ݰ[פE) *`$L$E)!I E)$!I$I$1I$I$1I$I$1 %)$!@$I$e)I E)! %)!j$%) )I$I$1$E)!H$I$e)I E)$!I$I$1I$I$1L%)( E)``I$%)b7I$IE)!* -P@6e)! E)!I$I$1I$I$E)$!*I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$E)$!.R1x$)**)# 7w$q++," ,H$@(E)TPP@I$I$E)$!I$I$1I$I$E)$!* I$I$1$E)!xh  2E)!/-I E)!I$E)!!HL$E)! LB&$E)!+  E)!/ H$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$E)$!@$I$%)b VWE)A$I$E)$!I$I$E)!*I$E)!* @$I$1I$I1I$H$1 E)!$H$E)!~I$I$E)I$I$d!d I$IE)!UUIE)!I$I1 )( 2E)! E)! //@$)(H$I1I 1(дE)I$I$e)E)I$I$1 I$I$1 th$E)b Ve)! $e)E)xU$I$e)E)xWUUI$I1I$I$e)E)*$E)!`p E)! %5&E)!5k&E)hzI$!b %5I$ $! I$I$e)$C$IE)jI$NLE)bՕ&ݰmk$E)bXE) I$I$e)E)$1  I$)(@$I$1I$Ie)E)UU+Me)(!A$Ie)E)-@$I$1"I$I$1"I$I$e)E)e)E)&I$Ie)E)I@! @!I$I$@!$@!H$e)E)$I$e)E)X E)E)I$I$e)E)*I$Ie)E)+I$e)E)/b"2e)X`!@He)$e)%)I$e)%) @$I$e)E) $I$1"L`1**--pywE`+--,`Of ---4,MߔN 44I$I$%4@ Ey@@I$I$eIe)UUUT 1E)I$I$1e)$1E)1E)I$I$f1e)L$PE)a\XNݶM9-*C$K$Hf9 I PH* 1iP/+yw.ef`++,qR E/+ 3)1R@ -) 410DZ 44I$I$%4@$H$DZ$!PTTUH$I$$!!I$I$d!d I$I$E)I$I$$!! =$I$E)!U$I$E)!UUU$I$E)!UUUI$e)!UU@Ic;e)!UUmI$e)!U$e)! Uۖ$e)!e)! H$M&E)bWV e)I$I$@! 9p$f1hX\`1e) I$1E)II$1E)I$I$91E)I$I1E)H$@@!I$I$@!e)E)@Nb"!Ae)V6lۖm1$! I$1E)C$A1%)*͠ If1 &@$@$1e)II1e)$@ 1e)I$I$9I$I$9I$I$9@$I21E)z I!1E)$I 1E)I$I$@!I$I$@!I$I$1e) 1E)1E)`$I1E)I$ 1E)I$I$1E)* ;91UU +&9E) vb'#91UUX$@L$1e) $I $11 %UI$11ꨀL$L&11WVVXI$9I$I$9 $I$1E)*@ $1E)*9  $11II$11**H$H$1111@$@$11  9 I$I$9!mm61e)*P8,1bp`IX`f1b5% 1e)L2 1E)-8f1` ! %I$I$e)$@$C&E) zJE)b %!1E)1e)$I$1e)* @1E) I$H$9I$I$1E)*1e) +I$I$9!1@I$I$bUUU 1$! I$H 1E)I$I$91E) *H:1x1E)`f1$!ࠀI$X,e) I$I$e)IIe)!/Px1%) 5I$I$11 I$11 + 11I$I$11 I$11?1f1 I$I$)I)I$I$)I)I$I$g9*I$@ 11I$I$11/1f1*I$I$g9*I$H$11$I,)1E)@IM1&H$e)E)I$I$e)E)I$1E)tI$1E) *$ 11I$I$9!I$I$9!4@1f1?/$I$1E) *9 H$H$9!I$I$9!@$1E)I$I$1e)@!1E) *I 11* 11* H1UUU(H$H1UH$M&H1I$IPH*I$IXH*IضiPU+IoY%yP Ry9*@T ۶m?%y1@TUUH1  M1E)@$I$)I)I )I)I$I$)I)H$@ 11II11***I$I )I)I$@$)I) lز%1E)1e)t'Ȧ1E)^x C E)!I$H$E)!UWV\I$I$E)$A!E)! )m1E)-nv1e) @ $11I$I$11*@$11$ 2dB211|Zj$I115I$I$)I)I$I$g9*I$I$g9*H$@$11II$11/?H @ 11I$I$9!II$1f1** 91 s9X 9e)H$@ 1E)II$1E)?I$H$1E)W^Z$ 1E)  O9E) ++ 91 I$L$91 A$9F1 9F1I$H$g9* ! 91I$I$9F1 II$9F1 I91ꪪI$I$g9*  91I$I$9F1 $AL$91 ز۶m91ꪪI$I$11  91 - H& 91"<1` -9 +- r"&R3,9e)Xx`IdI$1E)// mn91 @91pkچm1h@$@1E) I$I$)I)I$I$)I)1f1$I )1E)PNĆ1!Z 1E) IĦ1E)&Ԡ:1`h1 )!1f1 I$I$g9*I$I$fI1UU1w9 +&`N7w%y +/1" r +)4 "!E@@4IDZE544I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4 IDZE44I$I$&43 DZ4,[҆- mEy%3?-$!V\p@b)E)a -He)E)׿,E) `E) I$I$)($)(@$)( I$E)!H$I$E)$! * E)`@E)I$I$E)$!I$I$E)$!*$E)a` %) I$I$E)$!I$I$1I$I$1 E)!$E)!$$I%)!$I$E)!$I$E)!$I$E)!a$$E)!I$$E)!I$$E)!$ 0E)!zIHE)!$C $E)!꠨_IB$E)! K۶E)ؠ$$E)*$ IE)!WWI$$E)!_IIP! pSywqP//-! p1wf%q /--/"dJO+++-/O$X%!WVXP ! ! !'$@$H!%5 PH yW1%yX--%1R %y--/+1&p 410DZ 44I$I$&44I$I$&44I$I$&4DZ%I@43  DZ31@$H$1/@$H$D1`,9` H$I$Ea TWUU!$HE)!kI$$!I$I$E)aI$I$E)I$I$e)I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$$!!*I$I$$!!I$I$d!d I$I$e)I$I$$!! I$I$e)I$I$$!!I$I$E)I$I$E)I$I$$!!rz^I$IE)!UՕ%H0`&E)!pXI$I$E)I$I$E)aI$I$E)aI$I$e)I$I$d!d I$I$e)I$I$$!!*MdM P8 1S1iP---/ 1uSpf%q----?"uZ -4-444D4I%؆mDZ?4I$H 蹧?4A$I$蹧?4I$I$蹧?I$I$$!! $!$! I$I$$!! *I$I$e)@$@ $!b`X`  !b % $H$!bTUI$!I !/ I$I$e)I  E)!H$I$E)!^WWWI$I$$!!+ I$I$e)Ie)1I„ 0$! $!* @$1I$Ie)E)$!I$I$1I$I$1$%)$!H$Ie)I1I$I$1I$I$1 $!!@H$I$!VUT$!b.V`E) J I$I$!bU(E)I$I$1I$I$1I$I$10$!b@I!$!I$Ie)E)$!$%)`p@I$I%)b% $E)!H$I$e)I E)$!I$I$1I$I$1I$I$1I$I$1E)!ꪪI̐$IE) -P@&e)! @ E)!I$I$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$E)$!I$I$E)$!I$I$E)$! I$I$E)$! pI`E)pSwe` /-+`N/sE +/,%)@%I$I$%)UUUTI$I$E)$! E)@E))%$I&E)!@$@E)!I E)$!I$E)!I$$IE)!   @$E)!I$I$1I$I$1I$I$1I$I$1I$I$E)!*I$I$E)$!I$I$1I$I$1I$I$1HE)0I$I$1I$I$E)$!I$I$E)$! *I$I$1I$ $1A$I$1@$E)!zVH$I$E)!^UUUI$I$$!!I$I$$!!I E)!յ!I$IE)! I)(I$I$)(I$I$)(@$@$E)!E)! I$I1 1  ,E)@I$I$E)bUUUTɖE)bIE)!(E) I$@E)bW0ٶmۆmE)I$I1I)(I$I$e)E)*I$I$e)E) $E)!I$@ E)!I$Ie)$C$ $!` !b  E)! IHe)!/e)%)I$I$e)E)M$@`E)a^ ۶mE) m۶-E)@I$IE)! Ie)E)Uկe)E)I$I$e)E)I$I$e)E)  E)b@lI$E)bUI$Ie)E)I$1",@,e)!@P@ِlIlE)!$e)E) I$e)E)H$I$e)E)I$I$e)E)I$I$)(I$Ie)E)I$e)E)*I$e)E)*  @$@! I$e)%)$I$e)E) I$I$1" e)%)E)!`$E)!$&E)!I$E)!/  P%)7qSww%X/-(NSE+-3)J)S --43DZ4@DZEy@1N$H'E)VTT\I@!$e)E)I$I$e)E) @!I$I$@!I$I$@!2ɐHE)%% I$IPH+i6e `H/y7eEX/ (yysT%y/+ 1"Nݰ++ 4/P  DZ+* 44I$I$%4 @$DZE)@PPI$m e)!I$m e) Im e)!IB$ E)!I$H E)!I$I$$!!WWWI$I$$!!]I$I$$!!I$I$$!!_~!I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)ِ$I$e)!UUUtI$e)!5UUP"ɶmE)$e)!Ute)!=I$I$@!I$I$@!I$I$f1e) $I$9$I$1E)I$I$1E)I$ 1E)Z5X,f1`P`!Ie) %I$I$@!$1E) 1E)$I$A21E)I$9I$1e)R$f1TI$1e)1e)@ 1E)zꪪI!I1E)X$N"'1^W\11 I$1E)I$H 1E) 1`0e)`P`If1 %I$I$f1e)I$I$9II$1e) $1e) 1E) 1$I$9E) UUU m 9E)誥I$[[11UVI$I$9!B$I11@I$H$9! 1e)I$I$9I$I$9 $I$1E)* $1^@$1UI$9!$@!$11 }UI$9  @$9 I$I$9!@$@ 1e) $I$1e)* I!1e) I$I$'9#I$I$'9#@ 1pIH1I$ E)!@ $!apI!$I$E)!/@J&f1!  1E) +`$I$f1b\W\dI1b  hf1ېmɖm1E)I$1E) *I$I$9!I$@1bW001 I$I$9!I$1E)I$I$9p$p'e)aX^C1 IA$1e)1E)ꪪI$@`e) I$I$$!!!$I$E)!+ɐ1$! %I$A$11I$1111 I$H 11I$I$11?11I$I$g9*I$I$g9*I$I$g9*I$11I$I$9  11?11#H1@I 1b7 M&X31E)H$e)E)I$I$e)E)I$e)$!Nm61%) j gN$1b8U1I$I$9  H1E)I$I$1e)!I$1E) *@ 9 I$I$9! 9!L&1E)$&1!hXĆ1! H$H1Um?c?@1ۖl P8  $IXH I/}%iPU/I.I %yP nYr`) Z%0$I$E1PUUA I$)I)P%`1`P@I 1a5 I@1%)շ@@11 I$I$)I)11 9F1LB2`01f1!I$1f1**I$I$)I)k 1E))P1e) 11@N$`91E)^^xpdB2 E)!pI$I$$!!UUUTI$I$e)!UU$A$E)! t1E) )-9 I$@$11I$I11/$B11JIH$ 211x  1!I$I$)I)I$I$g9*11$I$211~|$D1!I$I$9!I$I$9! )I9f1/ 91ꪪ#ڐ Ѧ1E)I$H$e)E)A" 1E)s?$ALHe)E)/׼6a[ۆ1E) / 091 - `$91I$I$)I)I$I$)I)@$A$)I)$H$11 mݖn91I$I$9F1  I$:1@ 9F1I$I$g9*9F1H9F1HТ%1b@PII1bII$11*. 91ࢃ R")I1bpI)1b- bT9E) / '9e)_T\`1E)  91 r&091V^zzII$11UU1f1I$I$g9*I$I$g9*@$@ 11I,O I1%) A9F1%KI1E)7 @1%)PTI@1E) I$1f1 **I$I$g9*I$I$)I)  I$i9%UpSqfa+/,`N/wE ++3"0 E@4  DZE%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4IDZE44I$I$%44I$I$%4/hDZ(3IdEy- #h%h!I$!E)! @lE)`PضaE)$I1$I$ E)!((ۆ lE) I$I$1I$I$1I$I$E)$!I$I$E)$! E)!j$E) -@@%)p @$E)!@d$%)a$E)$! %)$!IE)!IE)!IE)!I$HE)!*d$IE)!I$Ime)!@$ $E)!I$$$!! I$$$!!0I$!@! IE) $ $C2$!@ !E).@I$E)!L$I!b H$I$$!!IL$$!I!b.'pN/s` pS7wfi/-, Of )--@$PPp$I$!I$!I I$!'  H !!XH///9%X--)TJ i+* 32)"Ey@@@49 DZE 44I$I$%44I$I$%44I$I$%4@DZ43 @$DZ31H$H$1+؆ (@1أ'K$ p\VWI$AE)!UՕ2`B&E)!z^VWI$I!I$I$E)aI$I$d!d I$I$e)I$I$E)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$$!!I$I$e)I$I$$!!I$I$d!d I$I$e)I$I$e)I$I$$!!  I$I$$!!I$I$$!!~_I$I$E)aI$I$E)I$I$$!!WW? H0E)! H$I$E)!^WUUI$I$E)aI$I$E)aI$I$d!d I$I$e)I$I$e)I$I$e)II@!$IP8* 1uS1WiP//--" 1S1%y----1%p))++?1蹧=44I$I$&?4AI$蹧?4I$蹧?$I(DZ@I$I$$!!* I$I$$!!I$I$$!!/I$I$$!! I$I$e)I$I$$!!I$I$$!!H$!bT!**! IIE)! I2E)j ! %I$I$e)I e) 1@$I$e)@$@ $!I$I!:$!I1I$I$1I$I$1 %)$!H$I$E)!I 1I$I$1&$!@P$! E)!`@%)*I!@E)!? &dB&E)!I$IE)!E)!I$I$1I$I$1I$I$1@0 I$!P@I!A!b  $!`$I$$!TUT@%) E)!@$H$E)$!I E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$Ie)$!*$@&e)! H$I$E)! E)!I$I$E)$!I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1R1y$) *)#PNt'i ++_, 4 %y ,J%@(E)TPP@I$I$1@ E)p@IE)%H$I$E)!E)!@$H$E)!I E)!/  $I$1I$I$1I$I$1I$I$1I$I$1I$I$E)!**E)!j`$I$E)bVUV@E)I$I$1I$I$E)!I$I$1I$I$E)!* I$I$E)$!I$I$E)$!*I$I$1$E)!$I$E)!jzWUI$I$d!d I$I$d!d I$IE)!UIE)!*I 1)(I$I$)($)($I$1I$I1I1I$I$1 I$I$1 I$I$1 E)@1 H@$e)$!($I$e)E)pWUUI$I1@)(I$I$1 I$I$e)E)*$e)!$I$e)!I$I$e) I$e)1$ E)@I E)!?I$I$1 I$I$1 $)($I$)(I$I$1I$I)([$X,E)bPTP@ )E)bI$I$1 I$I$1 I$I$1 I$I$e)E)I$I$e)E)I E)b$A$e)E)@$I&e)E)_ 2L$e)E)`WU!A$IE)!)(I$Ie)E)I$e)E)I$e)E)@"e)b@ DIE)bU@$I$e)E)  E) $e)!$E)!@L$e)!C&LB&E)!Hd$E)V IE)!I$@E)! $E)!IIE)!$IP$! /qSwwqP///-" p1S%y--1#`N++)-41DZ 43 DZ3@$@$e)PPPP(P(e)@P@Ie)aI$I$9I$I$9I$I$9 Pe1U%%H$I$IHTUUU !AXH+wi.%qH+5" yywTf$q-+ /1N f+ 4-1R@ 43DZ44I$I$%4H$I$DZe)TTUUI$I1"@!I$I$9I$I$9I$I$9I$I$@!I$I$@!@1E)~me)!Ie)!UIle)!I$e)!U^I$e)!UUI$ke)!UUxI$Ie)!UUUI$I&E)!UUUxI$I$E)I$I$E)I$I$E)I$I$E)  !@I$e)bUI$e)! U$e)!te)!/I$I$9I$I$91E)e)I$I$1E)ꪪi*,f1`I$e)b d$d01E)@!I$I$1e)I$@He)UT  1 ,X-1`X`If1 5 I$1E)R"1!P I$I$'9#$1e)1e)1E)jIf1I$I$1E)I$I$1e)I$I$1E)I$I$1E)II$1e)L0$I1%)પI1E)жm&1E)* I$1E)U$1E) I$I$11UUUTI 9!I$ 1E) Q"ɐ1!  0f1!@I$I'E)bVUVXI$I$a ** 1 $I$1E) I„1E)8 I!I1e)I$I$9!I$I$9!H 1E)$I%f1P*5m61I 1! 5-I$I$'9#I$I$'9#d21E)^ꨀM5lf1$!_zI$I&E)!I$I$e)I$I$E)!? ɖf1!*R,M1!P  1e)ꪂH$He)TUTmIf1I$I$1E) I$1E) *1E) I$I$9!I$I$9!I$I$'9#H$1e) r$r9e)bXVX4If1 1E) I$H 1e)I $9J%,I1$!VXI$I$e)  I$E)!I$1! -1%)/$AL$11*VU!11 $ C11p $I$117UUU11/I$I$g9*$H%1bp\PI 1b % I$11I$I$9  11?H$I$11I$I$9! I$11*M&X31E)@ e)$!I$I$e)E)* @!Ne)8۶mۖa1e)I$I$9 H$H$9!&i -1@I$I$9$$1e) *@ 9  9 I$I$9!ȰMHf)H!I$IPH*I$IXH*IضiPU+I.I %yP r <%E1*P I$Ef1PUUo&m1$!5Id1E) /?I$I$)I)I$ $)I)I$I$g9*I$I$)I)I$I$11@ @11B I$I11U $I$)I)H1e)I$H$11 1f1 *I$I$)I)I$I$g9*I$I$g9* 1`dIdE)b H$ E)!\p`I$I$E) I$E)! 5II$e)E)UU@IS1E) -@$11 I$I$9!A$11,4*i1`ĉGO155@11 I$I$g9*I$I$g9*`1!@I1!UI!11 I$I$9!I$I$9! t91 0 91^zm6k1E)I$I$1E)_X9[-1xZjPe) 5 ^N$9$! WU 9%) I$H$91I$I$)I)I$I$)I)LB&d01f1 I$1f1 *I$)1 @11I$I$9F1 L$dB&91  I91I$I$9F1K%H1bTP@ 1bI$H&11 )I91 -5 @91r9ɦ1E) 9e)?U P4R9e)P`@ItI۶1E)? ݐn11  @91ꪪI$K$11UUTT 11 5I$I$)I)I$I$g9*11I$I$11 11 @$ 9F1I$I$g9*11I$I$11!11I$I$g9*I$I$g9*?{x9 )" N1wq++1 `Ns ++4/ VDZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%41,DZ3)# hࠀ,ieYhI$L%fE)UUVXۆ $E)a`E)!)(ز$MvE)( b)mE)a I$H$E)!&E)xE)!HE)!$E)! E)H$%) $E)!`HE) I$I$E)$!*mò5E)`[5nE)p $IE)!LB&E)!@2Ie)!$IBE)!$IE)!I$HE)!$I %)IE)$!I1A$ 1$C0dB&$!a``!I!$!I$I$e)I$I$$!!I$I$$!! I$I$$!!׾I!.`Oe[X!/qSwEX//)N/wE+/-(d@ (I$I$UUW\@$I$!I$I$!!I$ H01eS6e`P%w~nEP ,I i 4-1R! 44I$I$%?4I I$蹧4IE(?4I$H$DZUUT4DZP43@$@$DZ11I$I$1=)`pH$I(!H0E)!cRHI!I$I$E)aI$I$E)I$I$e)I$I$d!d I$I$E)I$I$e)I$I$e)I$I$$!!*I$I$d!d I$I$$!!?I$I$$!!$H$!!I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)I$I$E)aI$I$d!d I E)!5- @&L$E)!pX^WI$I$E)aI$!!** I$I$e)I$I$e)I$I$e)I$I$e)I$I$@!۶ ɐP8"% wr$qH+ w7uNf%q -- 1"pIf ?4#DZ 44I$I$%44I$I$%?4H$I$蹧?" ")ȱb@@@@ $!b I$I$$!!I$I$$!!//I$I$$!!I$I$$!!I$I$e)I$I$d!d I$I$E)a$H$!II!*//$@$$!!@ !pII!%+I$I$e)I$e)H$I$e)I e) 1H$I$e)I 1I$I$1I$I$1I$I$1@$H$E)!I e)I$I$1I$I$1L$`$!bTX` $%) H$I$e)I E)!/Hd$E)!%)$!ꪫ E)!H$H$!8 $! Ie)$H$e)I$I$e)  11d%)  E)!@$I$e)IIe)I$I$1I$I$1I$I$1 %)!j $%)!^U$I!E)! $@&e)! H$I$E)!IE)!I$I$E)$!I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!ɐTI$X%)U[f%X_/+ TNi *,@$!@(I$H$E)UUTT$Hd$E)! E)!IH$&E)!IE)!@E)!*E)!I$I$1 E)I$%)(H0%)bI$E)7I$I$1I$I$1dE) I$I$E)$! I$I$1I$I$1I$I$E)$!* I$I$1I$I$1I$I$1@$E)!^H$I$$!!I$I$d!d I$I$!!/IE)!խI$IE)$!*I$1 )(I$I$)( H$)(I$I$1I$ 1)(I$I$)(I$I$)(I$I$1 E)!$)($I$1I$I1I)(I$I$1 I$I$e)E)*I&E)!I&I$E)!I$Ie)I$@$e)I$IE)!I!IE)!+IE)!*[$k5E)bp\X`)PE)b @$)($I$1I$I1Ie)E)U  e)E)%I$I$e)E)1 I$I$1 I$I$e)E)I$I$e)E) I$I$e)E)I$I$e)E)$e)E)^H$e)E)WU$I$1I$I1I$!Ie)E)UU-IBe)E)U  H$e)E)$I$e)E)H$I$e)E)*I$I$e)E)@$E) H$H$%)`XX E) -- E)$!A$IE)!? E)! I@$E)!> @$E)!I$H$!bUVvmE) ** L$dE)!I$E)!뫟WI@e)!/maPE)UUUqxiP-- p1wfi+/---p+-4/ DZ4DZf==4  e)@@@@@f1E)! f1 I$I$9I$I$f1e)I$I$Ie)UUU@$H$H1 I PH* 1iP/+REH5+ , TN %q+* 9).Yrȹ=1 طm蹧44I$I$%4$@$DZf1@PPTI$9II$1E)$I21E) $$1E)f1E)I$I$1E)I$I$1E)I$$1E)I$H$9I$I$1E)ꪪI$I1E)I$@ 9I$I$1E)I$I$1E)I$I$f1e)I$I$f1e)I$I$@!1E)Me)!^I5e)!UI$e)!UUc۴ Ie)!UU^Iڴm E)bI$I$d!d I$I$d!d I$I$$!!'$$I$E)!*UUvI$e)!*Um$e)!*e)!*I$I$9 e)!IEdž1b&$I$9II$1E)I$1E)*L$d1E)I$I$1"@I$e)E) I1! 8R#f1@p`[1a/+I$I$'9#H$1e)  1e)I1e)@$1e)I$I$'9#I$1E)I$H1E)I$I$@!I$I$1e)I$I$1E)I$I$9$C$@1E)ꪪm6Xm1E)UWzmM1E)UUWI$1E) U$ 1E) 8-ی1!@I$I1Օ&I$dB1E)$C$ 1E)ꪪI$b1bUV @f1I$1E) *H1e) *I$I$9!I$I$9!I$I$9!I$I$9!J"&@1\X`IN$1)  IIf1$!  $1E) *I$@ 9!I$I$9!@ 1e) *# H1$!zꨀI$ E)!I$I$$!!I$I$$!! I$E)! @ $1$!*@1e) 1e)1e)*I$@ 1E)I$I$1E)*1E) *I$H$9!I$I$'9#I$I$'9#1e)ꪪ*I$H$1E) $I$1E)*1e)H$@ 1e)`@&f1$!p\b"1 1$!Zj I$M&E)!I$I$$!!**tI$e)! ?01! I$I$'9#$I$11*ULI11I$I$9  11 *`1@1 1E) I$I$)I)H$11I$I$9 H$ 11? 11I$I$9! I$11*M&X31e)@!I$I$@!I$I$9I$1E) *lۖn1e)9 [$r:f1bp\X`@)P1b I$I$9 1E) *@@$H1UU@I$H1dB$PH^I„$ XHmn `PU I.I %yP r $%E1*P %1PUU@11@ I$X1E)aB" $1E) IL21E)Pt1E) /I$I$)I)I$I$)I)I$I$g9* 11I$I$11*1f1 I$I$)I)I$I$)I)@1f1I@$11** I!1f1 I$I$)I)I$I$g9*1e)M+m1L$L$e)E)WUTTI$@$E)!W^XpI$I$d!d  E)! %5tI1E)U$@!1E)+A 11 I$I$11I$I$9!i,91$! d1! ?1E)I$I$g9*I$I$g9*H& 11T\p@!I11-H$@ 11I$I$9! I$11 * I!91 k:Z9e)zzI$@$f1E)zz():E) pE)  Ke۰ E) 0  N91  91ꪪI$I$)I)I$I$g9*A$I)I)I$L&1f1@$j"51bp\X`! `1b  9F1 $C2$A91ꪪI$I$g9* $!91$@ 9F1 I$)I)2$I11I$I$9 P91 kX l91I$k%1E) )ID9E) /? I$H&9E) Id1E) // !I91 `%91^ZzjII$11UU$I11I$I$)I)I$I$)I)@ 11I$I$11+1e)I$I$g9*I$I$)I)H$@ 11 I$11??I$I$)I)I$I$)I) ɖdI$$i15UwEa+-)`sE +3(JV +410DZ 44I$I$%44I$I$%44I$I$%4DZf44I$I$%44I$I$%4$DZEP4DZE44I$I$%41[-`DZ1&ѐHz+c1hE9P@ vbY_mkE)I$E)!$I$E)!H$I E)! I$I E)!`0H2%)x@$2E)!)+U$E)!UU$I$E)!UI$I%)!dH$ $E)IE)! 2E)jh!@E) H E)!~ E)!I$I$1I$I$1$HE)$!$ E)$!$I $!$E)$!I%)*$E)!z$@ E)$!@$$%)$!$C@E)* $H$E)!$A2%)* k $$!I I$e)I$I$$!!(I$I$$!! II$P!U /qWqH++/! N1wf$q /--  ,x'~b?f!\^^zH!v؉eX!ՕdH$ YB@WqiP-- qS7fi--/+--+4/ P DZ44I$I$%44I$I$%4IDZE4 DZEa@4 DZEa41؆-ز-DZ1/ 1h"'M$ X\VW !E)!Օ%X&mӶE)!XVWUI!!*I$I$d!d I$I$e)I$I$E)I$I$d!d I$I$e)I$I$e)$H$!A ! I$I$e)I$I$$!!@$!I$I$$!!I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)I$I$E)aI$I$E)I$IE)!UՕ!H0&E)!`xI$I$E)aI$I$E)aI$H!$!!.I$I$e)I$I$e)I$I$d!d I H!%I@ X8** 9SdBqP-/ "u[a 5==1M$$E* V4(ikkDZ40k&DZE*ZZ4dDZE44I$I$%4 $DZ!@@@PI$I$$!!I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$E)a $!H$I$! $!+I$I$$!!I$I$$!! I$I$e) I$e)I$I$e)IIe) 1@$I$e)I e)I$I$1I$I$1I$I$1$H$E)$!I$Ie)1I$I$1I$I$1I$I$1 H$E)!HE)!E)!I$Ie)$@ 0E)!{Z@$E)!H$$!@1  @$e)I$I$e)II$e) 1IIe) E)$!@$I$E)!I$Ie)I$I$1I$I$1I$I$1$E)$!`$L$%)b`XTVIIE)b% !@ E)!H$IE)$!$A0%)`@!E))%I$I$E)$!I$I$E)$!I$I$E)$!I$I$E)$!I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1R1y$) ))# N7w$q++, ߐ ),X%(%)PP`@I$IE)! $IE)!/H$HE)!IE)!/ 0@ E)`p@II%))%I$I$1I$I$1I%)(E)bI E)7I$I$E)$!I$I$1I$I$E)$!I$I$1I$I$E)! I$I$E)$!I$I$E)$!*$E)`p I$E)+$H$E)!zVWI$I$d!d I$I$d!d I$IE)!UU E)!I$  1$I$1I$I1 $1@$I$1I$I10,E)@0E) %I$I$)(I$I$)(I$I$1  @E)` I%).55I$I$1II$1)(I$I$1  &E)! I&I$E)!I$Ie)I$@$e)I$Ie)I!AE)!+!AE)!+I$I$)( 1 IE)!@I$I$1I$I1I)(I$I$1 I$I$)(I$I$1 I$I$1 I$I$e)E)*I$I$e)E) I$I$1" e)E)xH$e)E)VU$I$1I$I1I$!Ie)E)UUIHe)E)+I@$e)%) $I$e)E)I$I$e)E)$E)@$E) $I$E)  I&dBE)!I$I$E)![-m%)p6mE) E)!$IE)!L$$IE)!*IB$ e)!$Ce)!!@e)! I$I$e)E). e)E)MXe)!W !Ie)$!9ItMפ`E1*))pSwE`--+NSE++--3,  4- DZ?4e)@I$I$@!I$I$1E)I$I$f1e)I$I$9 @$He) I$IPH+i6e `H+{7EX+(nn i[[ 1  .᧩%q4 E%%44I$I$%44I$I$%4ȟ$DZI$I$9I$I$9@$@e)%)I$Ie)E)* @!I$I$@!I$I$9@$H$e)E) e)E)I$I$1e) @$1E) 1E)$A$I21E) I 1E)I$I$1E)$ɐ1E)I$I$1E)I$I$9I$I$1e)I$I$1E)I$I$1e)I$I$@!e)%)de)E)^Ie)!WI$X e)!U^I$Me)!UU~I$I$$!!I$I$d!d I$I$$!!$I$E)!UUmI$e)!UH$H$!bTV e)aI$I$9-X$e) @K1$! H1E)ꪪIB21E) $ 1E)e)!f1E)!1E)I$1e) 1e) 1e)I$H1e)1e)I$I$'9#I$I$'9#@ 1e)I$H1E)I$I$@!I$I$1E)I$I$1E)I$I$9$C$A1E)~ꪪI$H 1E)UW~I$I$1E)UUWI$1E) UKI1E)  $I$1E) 1e)*$I2$C1e)I$I$9I$I$9I$I$9I$1E) *1E)I$I$9!I$I$9!I$I$9!I$I$9!@1E)I$H$1e)!I$1e)* $1E)*I$I$9!I$I$9!L21E)~m5 lf1!_zI$I&E)!UUWXI$I$e) I$E)!/`R11!*@$1E) I$I$'9#I$I$'9#I$1E)I$I$9 $1E)  1@дI$1U1e)* 1$!.I$@ 9I$I$91e) *b91$!Xx`IIf1$! #ɒ$I1$!x蠠I$M%e) I$I$e)I$f1! %Uۖn1$!* 1e)0$C&1bp8:I$1bUU@H1 0-d1e) *I$I$)I)@$1f1$1f1H$11I$I$9 @ 11?I$I$9!I$I$9! $I$11ʪL&@ 1E)I$I$@!I$I$@!1E)`6ᘆ1E)/*.I$@ 111! 1E)ldPf1UU[$K,He)I$I$HH I!PH* m&E `H %qX/ }6$%%1*P I$%f1PUUH$1e)!A$I21e) $A!011*ui18I$I$9a$ 1E)* Mj$f1 ^01 11@ 1I$I$g9*H$@ 11 I$11 ?1f1I$I$)I)I$I$)I)dB2 C1f1I$I$1f1*$ !1f1 I$I$)I)$11 11h# 1E)~xE)!I$H$E)!UWV^I$I$$!!?E)!It1E)+! 11 -5H$@ 11I$I$9 1 m[6S(1bjp1XIP1 %I$I$)I)I$I$g9*11I$L&11UWV\!11 5$I 11@I$H$11! 1f1 * öm91ꪪkX۶1E)r"'RE)ahxI E)b-- I$I$e)E)+*`11E) / P91 H&@091I$I$g9* IҴ1E)H*(1@ I$1b&U1f1 H$9F19F1I 01%)`0 6X1!/5 @$9F1I$I$)I)I$I)I)L$`B&11 $@m'9E) *W 911-1E)I$I$1E)* #,a9e)p$AdH1E)01e) B91ꪫ I$t'91UWW^! 11 %5I$I$)I)I$I$g9*II$)I)I10m1e)t1$I$I$)I)1f1I$I$1111 I$I$)I)I$I$g9* [m7q9 -% Nwfi +//Isf*+4-` &S 43DZ44I$I$%44I$I$%4- DZ44I$I$%44I$I$%4@$H$DZEPPT4DZE44I$I$%44I$I$%4/j HDZꨨ1"k lz)K=i\kmۆme)!֪$E)! ~ E)@d$E) UU$I$!*d$$I$!*IݶaE)  IE)!ի E)!*I$I$E)!`E)ؠ$E) -@$E)!I$I$1I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$1I$I$1`E)$E)$!@$E)$!dB&%)xxHE)!I$1I$e)I$$!!@ $$! !I $!I$I e)I$I$$!!I$I$$!!I$I$$!!R.r`1 ))pSwwf`//, Of )--6"!")!@@@@H!(( I `i!%M&k`P_ W9qP///" 1S7$q-/+ 1"N --)+41DZ 44I$I$%4IDZE44I$I$%4@DZEY43 DZ31@$@$1 <(`pH$I1H 0E)!crX! @$!jjI$I$!A*!I$I$E)I$I$E)I$I$e)I$I$e)I$I$e)H$!bx !b I$I$e)I$I$e)I$I$e)I$I$$!!I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)a !** I$!a(E)!- `$I$E)!XVWUI$I$E)aI$I$E)aI$I$E)H$I$!~v~I$I a.I$I$e)I$I$d!d I$I$E) H!!!XH//++%H+++%)E---,?H$EyVTT35Q3WI$I$9!1e)I$ 1e)$I$1e)*$C&H&1E)d2 1E)Ivm$1E)//1E) I$I$g9*I$@ 11 11 *I$H$11 I$11 ?I$I$g9*I$I$g9*11 @̆1`II1b55Օ11I$H$11 11 Nf1!I$a0e)!H$@ E)!^zzI$I$E) E)! I$1E)U@1E)I$I$'9#$I$9!I$9!H&dB21E) I$1E) **9 $H$9 @$I21E)H$@$9!! 11-I$I$9!I$I$9! I1f1 **@ 9F1MR':1E)W_\x$ 2@0E)p IE)bMdI$e)!.?Nmv1%) *) 91 L$`091I$I$)I)I$I$g9*@$11II$1e) 9F1I$I$)I) 9F1L$`&1e)p$p1%)\W\1$! I$I$)I)1f1I$H$11 )ɐ91   91h%@,1E) _I9e)?5 H&@"49e)TXP`I1E)??  I91 ) H91zjI$I$9! R 1E)H$!p1 @ 11I$I$11?1f1$1111 @$ 11 I$11??I$I$g9*h51bX I17tx9 *)% N7%y+/1"Pw +/4/P DZ *+44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4/j @DZꨠ1%c hz蠀)1 h%1X` m fQ%I$I$)($)($I$1$I$1E)!**'I$I$E)$!(I$I$E)$! I$I$E)$!I$I$E)$!I$I$E)$!I$I$1I$I$E)$!  E)!j %) I$I$1I$I$E)$!I$I$!! IE)!I$I$1$C2%)j !a @LE)>@ H$E)!Z~ @$%)'$A E)!z{IE)!`&d$!p $I E)!yI$I$$!! I$I$$!! k$mڶH/߿ .w%yP/" N1w%q+//"`JS ++//)[1zꪂ,!`f-"r *3+1uKD - 43 DZ 44I$I$%41d%4/@DZǩ4DZE`4IEU1vR'P$ ZZPPb:E)! BH$H$!!I$I$E)aI$I$e)I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)a !I$!*** !2E)! Ch$I$E)I$I$!HI$!I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$d!d $!pI$I$!A// !I$I$e)IIPH 11iP--// 1S1f%q----/"p ` --))41DZ 44I$I$%44I$I$%44I$I$%4  DZ!@@@I$I$e)I$I$d!d I$I$E)I$I$E)a$H$!I$I$I$I$* I$I!!I$I$E)I$I$$!!+ I$I$e)I$I$e)I I$e)I$I$e)I$I$e)I$I$e)LB&$I$!X`!H0!  ! /I$I$e)$$!a` $!a %I$Ie) @$E)!I$I$$!!I$I$$!! *I$I$e)I E)!H$I$e)I$I$e)I$I$e)I$I$$!!pX@$I$!b VV !I$$!b'Ie) Ʉ$!H$I$e)I$I$e)I$I$e)II$e)I1@$1$I$e)H$I$$!!*I$I$e)I$Ie)I$I$1I$I$1I$I$1I$I$1$H$E)$!I$IE)$!E)!I$I$1I$I$1I$I$1I$I$1I$I$1@$%)a E)  E)!* d$E)I E)!@$H$E)!I$IE)!E)!I$I$1 Sqp$) )! N7wfq /-, f -,P$ $!PP@@I$I$1I$I$1I$I$E)$!$E)! 1IE)!I$I$E)$!I$I$E)$!e) ꪪI!b,I$I$$!!I$I$$!!I$IE)!IE)!@$`0E)p\X`!@E) H$E)!^zL$L$!WVE)!I$I$E)$!**I$I$1$I$1H$I$1 I1I$@$E)!H$I$E)$!I$I$E)$!* I$I$1I$  1 $E)!@$I$E)!I$ E)!$I$E)!I$IE)!I$IE)!+$I$1 $E)!@$I$E)!I$I$E)!*I$I E)!*I$I$1I$I$1H$I$1H$E)b ^۰E)  )($H$E)pXX E) --I$I1$I E)! @E))I$I$e)E)$E)!$I$E)! E)$!M$m0E) UW!IC&E)!H$H$!b\\!E)cIME)bU&m$h4E)bxxX1e E)b - I$Ie)E)*R0,Ie)p`ItiE)%) $I$e)E)WUUI$I1I e)E)ե I$I$e)E) I$I$e)E) 1"&e)a``Xe) -$I$1"H$I$1"$e)!p` Ine)!=- I1"@!I$I$@!I$I$@!$e)E)$I&e)E)_$I$e)E)$I$e)E)e)E)hMk5E)V`PE)U 7Wy{iP+/-- pS1wfq+/--/!p +++-41ِ DZ **43 DZ3)b# x`+3 Ez^# fEU)yr E+*1#fN+ 41ɐ 0DZ** 44I$I$%44I$I$%4 $DZ$!@@Pm$1!Umm$f1!Umm$e)!Um$1! Um$1!Um$f1!U$if1`IֶE)%+h5ֶE)X`!`de) $e)$!$e)E)U$ $e)E) Ie)%)I $e)E)X$h4E)bp\X`H1`e)b I$Ie)%)I$I$e)E)I$I$e)E)I$I$e)E) I$I$e)E)@$I21E) I䤆1.I$$1E)$ $1E)I$$9I$I1e)I$I$9Rf1 I$I$9II$9J,Yf1 ֺ 1E) f1I$I1e)I$@$1e) I$A1E)I$1E)ꪪI$I$1E)I$I$@!I$I$1E)I$1E)$1E)I$@9I$I$1e)ꪪI$I$9H@!Me)!i۶kmE)!I$I$E)$!*!e)E) - A$@! @!I$I$1e)I$9 @1E)I$ 1E) $I$1"I$1E)1E)I$I$'9#I$I$'9# @$1e)I$I$9I$I$9#'f1Z$He)   I1E)I21E)_`$tB;1bx^Zj!@1`1 I$`01E)UU^z!I$e)E) 5UUL"&CE)| nE) *0nf1!*I$I$9I$I$9I$I$9 I$1E) $I$1E) I$I$'9#I$I$9!I$I$9!I$I$9!p9@ `1xxIO4If1--  1E) I$I$'9#I$I$'9#d21E)zhM5 `f1!^zI$I$E)!UUW^I$I$d!d ݐlI$E)! m1E)1e)'9#IH1$!I$I$9#)m'f1ZI 1?+  1e)1e)@1`!I 1E) I$1E)*1e) I$H$1e)I$I$9M&@e)!xI$I$e)I$f1!5UUTWĆ1*1E) 1e)H$1e)I 1e) ";H1UUI$H1KtP8(I$IPP=ImuaPյ %q8տy$9 @"L$%1JVUH$I$E1TUUU@3ۺm1E)₊I$ 1E) I$1E)뫯vb'r81E)WW^p! 1E)1e) $1e)1e)@ 1e)⊪I$H$9 1E) *I$I$9!I$I$'9#`1%)@Iĭ Mf1ֺ ۰ 1$! * @ 1e)I1e)I$H$1e)[an1E)ꊪH$1E)L$1E)1`Siۦ1E)/ 11  11I$I$1f1@ 11 I$I$9  11 /I$I$g9*I$I$g9*@1E) 1& 11 @11 $I$11 Zm$H1$!#ђ1E)zࠀI$H$E)$!I$H$E)!WV^zI$I$$!!UUE)!*it1E)1e)"I$I$'9#I$I$'9#1e)I$H$1e)! 1E) *@$ 9 @$@ 1e)!!A1e) $1e) 0l1E)9 I$I$9!!01f1#"-ц1E)pC" e) jꨨ !)I$I$$!! Ide)  // t9e) + @91ꪪI$I$)I)I$I$g9*I$I$)I)I$H$11 1f1 I$I$)I)I$I$)I) 1f1I$I$111f1I$I$)I)I$I$)I)@ 11I$I$11?  `91ꪫ۲ۆm11@I$K&1E) 1L9e)C I$M$1E)@1E) !91M$h%11VTXP 11ťM†181e)I$I$g9*I$H$11 11 /H$11I 11/ I$I$g9*I$I$1111I$I$g9*I$I$g9* $2!i1-%Rwe` +-,`N/sE +/3)P R -43DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$&44I$I$&44I$I$%44I$I$%43DZ4/j# DZ1" 蠀({'f%)\XxA$ E1E)UUUVI$1I $1I%)'&$E)* E)!+dM E)6>I$IE)!۶mۆ5E)`$I$E)! $ $E)! ^$$E) U$$E)$$E)! UU$I$E)!UI$I$$!!$E)!*$E)!I$E)!%)$!$H$E)!H$I$!,I$E)! A$I2$!$I$E)!HL$%)I$$$!I$I$$!!UI$I$$!!UW@$@!X!-Rih)*))pSqfi/-, f --1-$! 1-L3-in۶ 41ɖ 0DZ* D6$[%ȹEPPPDo)oE4 IDZE44I$I$%44I$I$%43@$DZ3H$H$$!TTTW@&L$E)!pX\V!I$I$E)aI$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)I$I$E)aI$I$E)aIڴ E)* [%h$E)I$I$!H$I$!I !** I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$E)I$I$e)H$H$!xI$I$!UUk! H=555I PH* iyW%qX---"1'%y-- 1&p)+++410DZ 44I$I$%44I$I$%44I$I$%4  DZ!@@@@I$I$d!d I$I$d!d I$I$E)a @$!I$I$ jzI$I$$!BI$I$b\I !* I$I$E)aI$I$d!d I$I$$!!I$I$e)I$I$e)I$I$e)I$ e)I$I$e)@$I$e)II$e)H$I$e)I$I$$!! I$I$e)dB2$I$!bpI!I$!b5   $E)$!I$I$$!!I$I$$!!I$I$$!!* I$ e)@$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!TXjH!  $!cI A$!b7 $!I$I!׿(I$I$$!!I$I$e)I$I$e)I$Ie)I$I$1H$I$$!!I$I$$!!WUI$I$$!!*++ I$Ie) E)!I$I$1I$I$1I$I$1E)$!I$1E)!I$I$1I$I$1I$I$1%)$!I$I$1I$I$1I$H%)bVW0!E) @$I$E)!xI$H!bVW02dB2%)zIIE)b/E)!I$I$1I$I$1`GN$X$!URwE`/-)`sE++,(l)I$H$I$I$1 @$E)!H$IE)$!E)!I$I$1I$I$E)$! E)!$H$E)!I$I$d!d I$I$$!!I$ E)! E)!*I$I$1E)!hI$I$E)$! I$I$E)$!@E)!I$I$E)$! I$I$1I$I$1I$I$1I$I$1 $I$E)!I$I$E)$!I$I$E)$! I$I$1$A0E)!I&L$E)!I$I$$!!I I$%)!H$I$e)IE)! I@$E)! H$I$1I$I$E)!I$I$E)$!I$I$E)$!*  I$E)!H$I$1I$I$1I$I1I)(I$@ E)b^)`۶mE) H$I$E)$![-۶ E)p E) 5h$E)b@PT@S$Y$E)`RQU IE)b%$I$E)!I$I$1I $E)!*  H$E)! H$I$E) dB2$IE)! IBE)!  )(I$I$e)E)+۲me) ! $$e)E)~U$I$e)E)WUU)(%E)@e)E)_ I$I$e)E) I$I$1"I$I$1"I$I$1"I$I$1"p"9,Ie)xIe)-I$I$1"I$I1"X&E)bX$Ae)$e)E)$C&e)E)~_I&I$e)E)^UU )(H$I1I$@1e)E)I$I$e)E) I$I$e)E)*k$X5E)X\p) I$e) -Wܒ-`()fH=5- Sf )-=-w{蹧4KdJE4-"# DZ1%# ~言6 lIJ$DZ%yTT1 4IEy*4-1eR@ DZ 43DZ?m6&DZEP?IdIlDZE4H$I$DZ!TTUUI$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$d!d  !b@I$I$E)aI$I$E)I$I$E)I$I$E)I$I$E)aI$I$E)a $I$E)!UUU$$I$E)!UUU $I$E)!UUBI$E)! UUmI$e)!U۰m$E)! U`ۖe)!@$e)E) -H$e)%)I$e)%),)$Ie)@I$IE)b7 I$I$e)E)I$I$1  $I$e)E)I$1E)$@I$1%) * $1E)I$I9I$H 9I$I$9 f1b@$A$1E)@$A$9I$I21E)jDf1I$I$9I$1e)H $9I$1E)I$I$1E)I$I$@! $I$1E) $1E)H 9I$H9I$I$f1e)I$I$9$e)E)~!I e)E)I$I$e)E) @!I$I$@!I$I$9I$I$f1e)I$9 @1E)I$ 1E)  1E)I$1E)1E)1e)I$@1e)I$I$9L' 1^1dI$If1 $C$I1E)ꪪmӶkm1E)__ml1!*1E)I$I$1e)ꪪL21E)W^I$@$1`B& 0E)zx`itItE))5-@I$1E)U1E)I$I$9I$I 9I$I$1E)* 1E) I$I$9!I$I$9!I$I$9!I$I$9!@$1E)I$I$1E) t11e)I$I$'9# 1E)ࢪtB:" f1!~ꪠI$L&E)!UWVXI$I$E)!I$E)! %U 햶1E)+1e)I$I$'9# 1E)B *N$N&1bVW^IIf1b%5 5h1E)x\z1E)I$I$'9#1e)I$H$1E) I$1E)*1e)I$H$1e)I$I$9M&@e)!I!a?Pf1! I$I$90$H1UU$I$H1 I$PHLB&!@PH +I۶ `H* w iP+}. EX . B$%f1 PUB$I$f1PUUU$ 1E)I$I$9!I$I$'9#H,1` !e)bm1E) ?m۴ :1E)~XnI1E)+@$A 1e) I1e)I$I$'9#@$1e)I$I$91E) I$I$9!,1E)`$@1!/5I$I$9 1E) **I$@$1e)@$I1e)II$1e) H1E)ꪪH$1E) 1e)`X1E) ?I$I$g9*@$11II$11***H$$11I$I$11?11I$I$g9*I$I$g9*H$ 11I$I$11?11l,1E)I d1bH$H$9!k5X1E)V^xx E)!jꨠI$I$E)!UUUV I$E)!I$I$11E) +--I$I$9!I$I$'9#I$I$'9#@ 1e)II$1e)*9 I$H$9!I$I$9!(1`MdIĆ1&U 9 9 I$I$9  9 k5X1E)^zxH$@ E)!I$I$$!!**I$I$E)!?PR.1$! +) nn91 H&@B 91I$I$g9*I$I$)I)@$ 11II$11**11I$I$)I)I$I$)I)H$ 11 I1f1 **I$I$)I)I$I$)I)`,1!@0؆1!& ) Id91 `&091`9)1E) DI$9E)5U x1E)\Xp`Ć1E)// I$)I) #ѐ 91zzI$I$9!@11 I$I$g9*I$I$g9*@ 11I$I$11?11I$I$g9*I$I$g9*H$@ 11 I$11/?@ 11`@!1  II1UUUTx9*++# N7wq++( 䆙%q4 F44I$I$%?c2&XmǹEXXP4)DZ44I$I$%?۶mC2$DZEPP4 DZE44I$I$%44I$I$%?۰m۶1DZE@?K$K`DZETTT44I$I$%43DZ4-# 13 fz%N'-E)W\p@H$I1I$@E)!I$E)!ݶM֤E)(6$L$E)! (Um$E)I$E)@$I%)bpꪪ$I$!I$!*I$E) IB E) I%)!UIE)!$E)!I$H$$! $ A$! I$I$$!!' $1@$H$e)I$I$e)I$I$$!!(@$!`!@!H!b(I$I$d!d ! I! '/I$I$d!d R!SX! 7qSqEX/-)N)sE+/;)wqȱ+=3蹧 ?3I蹧W??4I I$DZU@?4I$ $蹧?1c۰mDZUU\4IDZE44I$I$%44I$I$%4 DZEa@  E)! j $$!I$I$!z^I!+-5I$I$e)I$I$E)I$I$E)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)aI$I$E)aI$IE)!UUՕ6` 4E)!bpH$I$!I$I$! I$I!*I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d  @$!apI!a-7!!IIH! PH qW1%yX--%1SE----;(qȱ 43DZ44I$I$%44I$I$%44I$I$%4$@$DZ!@PPPI$I$d!d @$I$!bTUV $!H$I$!UI$I$I$I$b@PTPI$I$bUUյ I! / I$I$E)I$I$$!!*** I$I$e) $!@I$I$$!!I$I$e)I$I$e)I$I$e)II$e)H$H$e)I$I$e)I$I$e)$I$$!(I$I$e)I e)@$I$$!!I$I$$!!I$I$$!!/I$Ie)$H$e)I$I$e)I$I$e)I$I$e)I$I$$!!I$I$$!!* I$I$e)I$I$e)1@$I$$!!I$I$$!!I$I$e)I$I$e)I$I$e)$1I$e)H$I$$!!p\VU$!ZI$I$$!!1I$I$1I$I$1I$I$1$H$e)I$I$e)1I$I$1I$I$1 E)!@$I$E)!  E)$!I$I$1I$I$1$E)!*@$I$E)!I$I E)!A$I$E)!I$Ie)!!0%) `I$%)U E)!@$I$E)$!I$IE)$! op) "PN)sfP ), f -,@$ PP@ %)@$ !$!b% E)!I$I$1I$I$1I$I$1@$I$E)!z^W_I$I$$!! //I$I$$!!I$IE)!UE)$!I$I$1I$I$1I$I$E)$!I$I$E)!I$I$E)$!I$I$E)$! I$I$1I$I$1I$I$1I$I$E)!I$I$E)$!I$I$E)$!*I$I$E)$!* I$I$1$E)!@$I$E)!I$I$e)$&dB2$!!!AE)  E)!/ I$I$1I$I$E)!I$I$E)!I$I$1I$I$E)$!*I$I$1I$I$1I$I1I)()(@$E)!@$I$E)!I$IE)$!*I 1I$)(I$)(X,mE)P@A-۶mE)Q@It E)% $%)bX%)I$I$E)$!۶m۰E)<IE)!*I$I$e)E)I$I$e)E) $e)E)+^ I$e)E)pUUH$I$1I$Ie)E)UUU-۶m E)b@ I$E)bUH$K2$E)b\W\E)A I$I$e)E) I$I$1"&e)!@!e)!?I$I$1"I$I1"I$ $1"$I$e)E)UI$e)E)UM&@3E)bVX E)a I$I$)(@$e)E)__I$ e)E)UUb0 E)b$E)!L$E)!W0I$E)!]6m6E)bz I!b %%I$I$$!!ꏏI$H$!bUTMdOPts%P+//)SE+-;+wyqȹ=43DZ41lDZ4/mҶR IDZ;Jm&IDZ%yTAm۶mȹF* 43 DZ 44I$I$%?X&۶mDZEPXD%[$E)BRPTI$e)!UUI$E)!I$e)!Ie)!IBe)!IB&E)!m$X,E)bZTP@iنmE)bI$ne)!UU I$e)!UUI$e)!UUI$$ e)!UUI$IE)!UU_I$I2e)!UUUI$Ie)!UUUI$I$E)!UUU~I$I$E)I$I$E)I$I$E)I$I$E)I$I$E) $I$E)!-UUU$I$E)!UU@I$E)!UUömi$E)! Uaۖe)!HI$e)E)*I$ $e)%)*I$e)%) I$I e)E)I$I$1 I$I$e)E)*$I$1E)HI$1%) R$Z-1PTXjH4f1  I$I9"H@f1@IDe)bU1%)I$$9I$I$9I$I$1e)H$1e)I$I1E)ꪪI$H$1E)f1E)j`$IE)0 $I1! @$1E)I$9I$I$1e)I$I$f1e)I$I1"@!II$1e)I$1E)*I$I$1E)I$I$@!I$I$f1e)I$9H 1E)ꪪ&-X$f1p\@He)@ 1E)'9#@ 1e)I$H1e)I$I$9I$I$9I$9LB&C1E) @! 1E)I$I$91E)zꪪI$`1E)UU^z!H$IE)! I$$1 $I$1E)UUU 1E)I$I$9I$I$9I$I$9I$1E) 1E)I$I$9!I$I$9!I$I$9! 1@I$IT1bU$ ۶m1E)*$ $1e) I$I$'9#1e) *# 1!zI$H0E)!UW\`I$I$d!d !I$E)! U@R6f1$! @$1E)@$I$1e)@ $1E)*e)B$I1E)*1e)I$I$'9#I$I$9!1E)I$H$1E) I$9'9#I$H$1e)I$I$9M&@f1!W\pI$I$e)IIH$!UUU&I$He)I$I$PHI$ PH I۶ XH w iP+}{. EX rD$%1 PUB$I$E1PUUUI$I$9!$I-f1` Hf1I$I$9!I$I$9!P9-e)aP`IlfCe)b I$I$@!Sɝ1E)pB IĎڦ1E)UU\$I$1E)  1E)I$1e)I$I$'9#H$@ 1e)I$I$1E)*1E)1!pI61!5H$1e)I$I$91e) * $@$1e)H$ 1e) I$1e)LI 1E)@$I1E)II&1E)?  1E) I$I$g9*I$@$11 'N"'1\W\P)P1  I$11?I$I$g9*I$I$g9*I$I$g9*I$H$11 I$11?`1b@IDH1UH$@ 9 @$f1b(LB&`$e)E)W\\PH$ E)!^ZjI$I$E) E)!ɐtI$1E)U1e)I$I$'9#I$I$'9#I$I$'9#H$@ 1e)I1e) ** 9 I$I$9!1E)%KIf17  1E) *I$I$'9# 9 9!`0 1E)ࠀkXf1$!~I$I$$!!I$I$$!!tI$e) / t1%) % B$A91ꪪ I$I$91I$I$g9*I$I$g9*&-@,1p1IX1b %%1%)I1E) ?W7$@$ 1E)@ 151f1  81`hoĆ1 %IH1! $Ad$11?W 6`91LB&`211ࠀI$H$1E) L9e)Á %I$N$1E)`1E) 91M&h511V\Xp I115I$I$g9* 11I$11I$H$11 11I$I$)I)I$I$g9*11 I$I$9 b"1(1bP@IH$I1I$11 R$b `9 55pSwe` /-) T PN%yZ ++3 0 E43DZ?4I$H$蹧44I$I$&44I$I$%?C2l۶mDZEPD m۶mF44I$I$&44I$I$%?ò5۶mDZE@`D l۶mE44I$I$%44I$I$%41`DZ4+k mh- f~!'r=f%)UT\p L$%).$I$$!I$I!(I$$ E) UU*I`E) UInmE)!U IE)!I$I$E)!I$I$E)!`&$IE)@`&E)XXHȄAE)"@ %)$!ꪪI$e)H$Ie) $I$$!  $!'.I$I$e)$@$!``$I$!I$I$$!!訪I$I$d!d I$I$e)I$I$$!!׺I$I$d!d  !€ !b  !*I$I$d!d !@P  /qSwwqP///-"1R%y--1%R++)-41DZ 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$&D)m۶-*蹧JJ4b+c?$)@Jjz 0`&E)!zZ^V@$I$!I$!Zꪪ ! I$I$d!d I$I$E)@$!bp!I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$$!!*I$I$$!!I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)I$I$E)aI$I$E)I E)!5 X&K$E)I$I$!ʪ* I$I$ A. !+ I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)@ !b`I!b% I$I$e)I$I$d!d I H! !XH//11%yX----& E-- 3))J - 43DZ44I$I$%44I$I$&44I$I$%4@$@$DZ!PPPPI$I$E)H! A$H$!I$I$ I$I$?I$I$b@0WI$I$ _U ! I$I$e)$H$!bpXpI$!b % @$H$$!bPTX` $! I$I$$!! I$I$e)I$I$e)I$I$e)I$I$e)I$I$e) $!I$I!ז(I$!!$H$e) @$!` I$!b55$!@ I$!b UI$I$$!!I$I$e)I$I$e)I$I$$!! $!@I$!b 5ՕI$I$e)I1$H$$!!`PI$I$$!!$!I$!//I$Ie)I$@$e)I$I$e)$@$$!I$I!*I$I$!\V\p!I$%) 5I$I$1I$I$1I$I$1  %)$!I$Ie) %)$!I$I$1I$I$1 E)!@$I$E)!I$IE)!E)!I$I$1 E)! $C&E)jzI$!b-5A$I$e)I$IE)!E)! $!!@I $!b@$I$E)$!I$IE)$!E)! @%)UUR.wEH ++)`sE++,"6`2%I$J"%_|I A%)b%)I$I$1I$I$E)$!$E)!@$I$%)!I$I$$!!I$I$e)I E)!I$I$1I$I$E)$!I$I$1I$I$E)$! I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$E)!* I$I$E)! I$I$E)!$H$E)!I$IE)!I@$e)H$I$e)IE)!+I$I$E)!I$I$E)!I$I$E)!I$I$1I$I$E)!I$I$1I$I$1$E)!pI 1)($E)!$I$E)!I$I$E)!*IE)!*$)(@$I$1I$I$E)$!I$I$E)$!I$I1I$E)!*$I$E)!H$d%)bTZh ɖmE) 6 E)I$I!bU(E) @$e)E)XU$I$e)E)pUUUI$I1I$)( @,E)`-ItE) /%e)E)`蠨IlE)bI$I$1 I$I$1 I$I$e)E)***I$I$1"[6e)! ۶me)!$$$e)E)WH2I$e)E)~UUH$I$1I$I$1I$I)()($E)  $E)!2I$E)!6m۶E)@II!bU&I$I$d!d I$I$d!d I$I$$!!I$I$d!d  !b I$IE)!I$d%)`K$IP$ ? /Syw%yX-%R7S%y+--1%`N ++)41DZ 44I$I$%43DZ43IDZ44I$I$%44I$I$%44I$I$%?$I$-DZE)@4H$I$DZE)TUUUI$I$e)E)I$I$)($H$)($I$1$I$1I)(I$I$e)E) @ e)E)Xj*  e)E) ~$A e)E)/$I$e)E) IL$e)E)*UI$I$e)E) I$e)E)  $I&e)E)^II$e)E)* @ $e)E) e)!Im6e)!U$ H$%)I$`E)!UUI$dE)!UUI$IE)!UUUI$I$$!!UUUXI$I$E)I$I$E)I$I$$!! UU$I$E)!UU@I$E)!UE)!@$e)$! I I$e)E)I$e)E)I$Ie)%)I$I$1 I$I$e)E)*I$1%)@$$1E) I$9I$I 9I$I$9I$I$9I$I$1e)1e)$1e)@ 1e)I$1e)b$I 1!I$I$1E)I$I$1E) $I$1E)I$1E)H 9I$I$1e)ꪪe)DIe) ?Օ$@!I1E)/ $1E)*I$B1E)I$I$1E)$@!$A$1E)P"5&if1pD 1** $ 1E)(@9e)bp`LIxf1%I$1e)@ 1e)I$H 1e)I$I$9I$I$1e)H 1E)ꪪd$d01E)I$1E)1E)I$I$9d&1E)W^I$I$e)E)UUUT@$I$e)E)^QUUI$I&e)E)UUU\ $1E)U$I$1%)/I$I$9I$I$9 $I$1E)*1E)*I$I$9!I$I$9!I$I$9!1E)I$@1E)I$I$1E)$Hd1 7I$I$'9#1e) *m l1E)Um@E)`H$I$!8U$A!%)* ِlf1! *H 1e)+&- h1`I$I1U&I$I$1E)I$1e) 1E) I$I9!H$1b^1 I$H$1E) I$9$I&1E)I$I$1E)$Hf1UUUMvm׶H%!UHPHI$`HPHU"e$X8*5 I߷%qP*}. EX vYNB$%e1 PUB$I$Ef1PUUU@$I$9!I$I$9!I 9!X1 I1P`IH$f1= !I$1e) I$I$9!P)1!Xh 1! LB&C1E)I$I$1E)*M'N$1E)\WWW$I!Ae)E)?/ $H$1E) +I$$1e)$$1E)  1e)*I$@$1E) I$1E) *I$I$9!I$I$9!I$I$'9#I$@$1E) I$1E)*@ 1e)H$1e)I$@$1e) I$1E)ꪪI$H$1E)@$ 1E) XIĆ1E)/?1111Z,II1!I$I11몪 I$I$11 11 /I$I$g9*I$I$g9* 11I$I$11 11 @ 11`1!@I$LM1U׾-@1!颀I$I$1I$H$E)!WW\xI$I$E)!UUE)! *t1E))I$I$9!I$I$'9#I$I$'9#1e)*I$I$1E)@!1E) *H$I$9!I$I$9!@ 1e)I$I$1E)*1e)I$I$'9#I$I$'9#1E) #:" ц1E)zxLB&$2E)!I$I$$!! **I$I$$!!*[؆1!?P 1E) H$C 91I$I$g9*I$I$g9*`1e)15&1 xtI\1a-1%) #(I1b`ID1b5 I$11 **`1$!@u 1% I$I$g9*I$H&11UTTX  91 Ш9E)@$2 1E) DI$9e)5U p%3,9E)\XpbI$1%)  o9E) *+ (@9$!``1?@11  @$11I$I$9!I$I$9!II$11??I$I$g9*I$I$g9*H$H11 I$@ 11II$11//H$H$1f1I$I$11 tIA1=Tp9 )-# N7w$q++1!`Ns ++4/P DZ **+44I$I$%44I$I$%44I$I$%44I$I$%44I$I$&44I$I$%44I$I$%?/m۶a;ȹ?4/DZǩ44I$I$&44I$I$%44I$I$%41lDZ3)# h,#h$A@I${%$)UUTP I@E)!*II$E)!*@$I$E)!I$I$E)!I$I$1I$I$E)$!I$I$1I$I$1 E)!@$E)!H$E)$!$H$e)$I$e)I$I$1HE)!~ I$!Ie)$I&`$!I$I$$!!$@ !p$! I$I$$!!(I$I$$!!I$I$e)I$I$e)$!@!I$IH!UUIIPH++/+ 1S1SiP---- 1f%q----/"  ----41DZ 44I$I$%44I$I$%?4I$A 蹧44I$I$%4,DZ4H' DZET\43%4v$`$%)ZPXTH$@$$!I$I!I$I$E)I$I$e)I$I$E)I$I$E)I$H$!a\X ! I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)aI$I$E)aI$IE)!UՕ5 @4E)I$I$! $!II!**I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$E)$@$H !!XH/+++9S9%`%---)e----3, 44I$I$&44I$I$%44I$I$&44I$I$%4@$H$DZ!PTTTI$I$E)a $!I$I$ zI$I$$!!I$I$/I$I!bV*I$I!_ $!  $! /@$!b $! $!  $! I!+%%+I$I$e)I$I$e)$H$$!axx $!b -I$I$e)I$I$e)I$I$! $@$e) $!!jI$!/ I  e)I$!b&I$I$e)I$I$e)I$I$$!!I$I$$!! I$I$$!!I$!b&I$I$e) I$$! I$I$$!!x*I$I$$!! I$I$$!!@ !@$@!$!  H$$!T I$$!I$I$  $! $C2$@%)z I$ %)* 1I$I$1$1I$e)%)$! &%)XE)!I$I$1@$H$E)!I$Ie)E)$!I$I$1I$I$1$ E)$!@ $!`I!b%)I$IE)!E)!I$I$1 1@$I$e)I$Ie)1$$!!p%) SIp%) %Nfi +%Vn/f-(R)@$)P@` E)! %)& E)!H$I$$! I$I$$!! I$Ie)IE)!I$I$E)$!* I$I$1 @$%)`P$I%)b)%I$I$1I$I$E)$!I$I$1&E)bh@!E)b -I$I$1I$I$E)!I$I$1I$I$1I$I$1$E)!@$I$E)!I$  E)!$I$E)!I$IE)! E)! I$I$1I$I$E)!I$I$E)!I$I$1I$I$E)$!*I$I$1I$I$1I$I$1H$L$E)b^^ mE) $I$E)!I$I$E)$!I$IE)!  $E)!$I$)(I$I$E)$!I$I$E)!0E)b itE)+%$I$E)!I$I$E)!I$IE)! IE)! I$I$e)E) I$I$e)E)*H@$e)$!($I$1I$I1I)(I$I$)(I$I$1 E)!iE) %I$I$1 I$I$1 I$I$1 I$I$e)E)*I$I$e)E)* l6e)!zضme)!@$I$E)! I$I1I$)(5E)`P閴E)b @L$E)!$I$E)!H$I$$!!I$I$d!d I$I$e)I$I$$!!:I$I$$!!I$I$$!!~I$IHE)!} I$E)!U*IBE)!W!IE)!$ 0`$E)!*`X^@!E)! I$PE)U 1SqwiP/-- pO1Wfi +/-/ p O++-4/P DZ **+44I$I$%44I$I$&44I$I$&44I$I$%4);h DZT|44I$I$&?X%J$ȱE)PPTT!Ie)E) I$e)%)I$e)E)dB1E)U$-9p$1jX\$iI11 - I1E)UI$e)E)I$e)%)$C 1E)W_I$1E)UI$@e)%)I„$ e)E)U*I$I$e)E)I$I$e)E)H$@e)E)WW^)( )(I$)( Ie)E)JuUME)ֺ @$IE)$!II$e)E) H$$e)E)LB @e)E)Wme)!IҶۆme)!Um6X$E)pp!I! - I$I$$!!UUUI$I$E)a $I$E)!UUUI$E)!UU@!$E)!)UmۖE)! I$e)E)I e)$!I$@e)%)I$I$e)E)I$I$e)E)$I$1%) H!$1E)I1E)I$I$'9#$H$1e)@$I$1e) A$1e)I1e)1e)I$1e)I$H$9I$I$1E)ꪪI$I$f1e)I$I$1e)H0$C1E)oH$Ie)E)VUU'NJ@f1 I$I$f1e)I$I$@!I$1E)+:ݐd1E) 7m&@ 1E)I$I$e)E)*Ie)E)1E)I$9#1$!j1eI@e)b I$1E)H$1E)H$@"1E)j f1b1%)I$I$9  1e)LB& I1E)I$I$1" $1E)I$I$9k۰m1E)~ꪪI$H01E)UUW~I$e)E)}UUI$@ 1 I$1E)UU$1E)I$I$9I$I 9I$I$9 1E)*I$I$9!I$I$9!I$I$9!I$I$9!(1`I$Ie)b&$ 1E)*I$I$'9#1e) **LB& 1E)^zI `E)ޠI$I$E)aI$I$e)!5UU@R!1!*1E)j @$1`p f1b %5I$I$1E) ۶l1E) *$@$1E)L' 1^`1 1E)I$H$1E)$8e)UUU$I$@f1UI$I$!`AI$IPH dH$AXH %iP?+I f@տ* - %e1*PUB$I$Ef1PUUU1E)I$ 1e)I$1E)**$I$1E)I$H$9!I$I$9!$C$@1E)I$I$1e) 1e) *I$I$9!I$I$'9# I$9!I$C1E)m ۰m1E)/9CcɆ1E)$I$e)E)UUH!1E)-I$d1E)@@1E)'9#I$I$1E) 1E) *I$I$9!I$I$9!@%h41E)z^^x$!@e)$!I$1E) **H$1e) 1e)I$I$1e)@ 1E)II$e)E)I$A e)E)I1E) /?11H$H$11I$I$11*H$ 11I$I$11?11I$I$g9* 1E)NĆ1$A$11/11H$H$11@$ 9 I$I$9!k&X-1E)W^xx E)!`ࠠI$I$$!!UUVTIE)! I$e)$! *@!1E)I$I$'9#I$I$'9#I$I$'9#@$ 1E)II$1e)I$ 9!I$I$9!I$I$9!I$@$1E) 1E) **I$H$9! 01!`pXO1!-5-  1E)M&[51!I$H$E)!I$ $!  I$E)!I1E) -5 $I,19%)b0O1.I$I$g9*I$I$g9*H1b` 1a- I$I$)I)I$I$)I)I$I$)I)I$H$11 11  L1E)((@11@011P`@II$9!KX 1E)ٚ01E)I e) i9$!‹ -I$I$1%)J21E) *AW9 - 1!& I11%@$11I$I$9!4h&1E)`X\1E)  11 /I$I$)I)I$I$g9*11I$I$1111  11 IH$11**( %Ba9%pSwf`+,`N/se +-3)P R -43DZ44I$I$%44I$I$%44I$I$&44I$I$&4,$DZP4)@DZ?30۲ ȹE```4 DZE44I$I$%44I$I$%44I$I$&44I$I$&41[-`DZ1&ѐH+hE9pɏE$!UUUTI$I$E)$!I$I$E)$!E)! E)! E)$!$@E)!@ E)!jI %)/%LȄ %)(H%)$!I$I$1I$I$1H$Ie)I$Ie)@$I$e)I$I$e)I$I $!!I$I$$!!I$I$$!!I$I$d!d I$I$$!!I$I$d!d I$I$d!d I$I$d!d @ !`!bI H!5%%IIPH*** yW7uiP-// ! 1Sf%y----1#Nd --) 41DZ 44I$I$&44I$I$%44I$I$%44I$I$%4DZEI ?4@I$DZUU?۸-ǹ@x'O$!TUUUH$H$!I !*I$I$d!d I$I$d!d I$I$E)aI$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E) !I$!A(!I$I$e)I$I$E)aI$I$E)aI$I$E) !@E)! X$K$E)I !I$!I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$e)I$I$d!d I$I$e)I$I$d!d I$I$E) @@H iXP55-ywqE`---+Nf---/3, 44I$I$&44I$I$%44I$I$&44I$I$%4H$H$DZ!TTTTI$I$E)aH$I$!I$I$|WUI$I$- I$I!I$I$E)aI$I$E)@ !I!/ $!@ $!b5I$I$e)I$I$e)I$I$$!! I$I$e)@$I$e)@ $!p $! I$I$e)I$I$e) $%)$! I$I2$!H$I$$! $!* I e)@$I$E)$!I$I$e)I$I$e)I$I$$!!I$I$d!d I$I$$!! I$I$$!! I$I$e)I$I$e)I$I$$!!I$I$$!!*I$I$e)I$I$e)@ @$!b`PI $!b* I$@$!WTpI$I$bU8I!+ I e)$%)$! $e)$@ $!b %)$!H$I$e)I%)$!I$I$1L$H$$!bXVX!%) $H$e)IIe)1I$I$1$E)!@$E)$!@$I$e)I$I$e)I$IE)!E)!I$I$1 1@$I$e)I$Ie)1I$I$1 &%)`X`  %)%mI$X$!UUpsw%P+ RwWfq+--" MÓ$f%q'Eq|I$I!b55 @$IE)!I$I$$!!*I$I$$!!* E)!I$I$E)$!I$I$E)$!0E)`@$B%)PP@I E)b% I$I$1I$I$1I$I$1`$E)X`IE)5 I$I$E)!I$I$1I$I$1I$I$1@$E)! H$I$e)I$e)H$I$e)I$ E)!/ E)$! I$I$E)$!I$I$1I$I$1I$I$E)! I$I$1I$I$1I$I$1I$I$1I$I$1E)I$I$1I$IE)! IE)!* H$)(H$I$E)!I$I$E)$!I$I$1I$ E) @ E)pI!E)b/ 2`$%)b`XTɐ E)bI$I$e)E)  e)E) p H$e)E)@WUH$I$1I$I1I)(I$I$1 I$I$1 I$I$e)E)꠨I$I$1 I$I$1 I$I$1 I$I$1 I$I$e)E) $e)E)*xU$I$e)E)^UUH$I$1[6[E) X\pl6E) -$@0E)! `$E)! I&I$E)!`B2$IE)XjI!I$I$e)I$I$e)I$I$d!d I$IE)!UU?I$IE)!IE)!߿m ,E)@E)!I$)($I$)(H$I$1I$I$1@ E)!z !I$ e)!I$$ e)E)UUIItXE1pwwea+---, Sf )--4-!S 4,yDZ==544I$I$%44I$I$%44I$I$%44I$I$&4`[c'%)*jZ @!@$I$e)E)@!I$I$9I$I$9@ f1p f1 I$I$99H$I$e)E)@!@$H$@! I@! 9I$1E)H$1E)1E)%1!ZI 1E)I $1E)} I@1E)UI$1E)U_I$I1E)UUI$I$e)E)I$I$)(I$I$)($A$I2e)E)I$e)E)'UU@$IE)@ E) $C He)E)zMۆme)!I$E)!UI$LE)!UUI$I$E)!UUUxI$I$$!! жm&E)jZ0nE) $A$e)E)/I$e)E)I$ $e)E)I$He)%)I$I$e)%) $I$e)E)*I$1%) 1E)  1e)@$H$1e)II$1e)H$I$1e) @$1e)1e)I1e) @$1e)I$I$1E)ꪪ f1E)j FL$e)bVU If1H 1e)I$H 9@e)@I%) W?`R!I1E) #&`1E) m۰ 1E)H$I$e)E) e)%) I$1E)@1E)ꪪI$1E)I$I$1""I$i1!@IJ!f1U,``1!f1I$I$9I$I$91E)ꪪI$1E)I$I$1E)I$I$1E)I$I$1E)ꪪIB& 1E)UWzI$I$1H$I$1 $I$e)$! @ f1E) $H$1e)I$I$9I$I$f1e)I$1E) /I$I$9!I$I$9!I$I$9!I$I$9!@ 1E)I$I$9I$1E) @$91e)*" `$1!XVLB&E)!^z I$I$E)I$I$E)!5UUmie)!"Jf1@ H$e) TW$Jf1 I$I1! I$1%) *1%)I$@ 9!$H1UUU$mӶ@1UI$I$H8UUUTI$I$@! dIP8 mY`@ 5- EX*-WS?%%)*PUB$I$F!PUUU)I$e)! -@"Ie)@dIdE)bU@1E) I$H$9 I$1E) *H$I$9!I$I$9! A$-1b@@1e)  H$1e)1E) *I$I$9!I$I$'9# I$9!I$H$1E) I$1E)?N"'01E)WTX`tI$1E)-UU$H%f1@P Im61 K1 @$I9I$I$9 1E) *I$I$9!1e)A '9#I$I$9$)R$f1@P\ H1 @ 1e)* 1E)j $I$e)! I$e)! /?I$I$e)$!` K1E)@$11I$I$11 I11 **I$H$11 I$11/?I$I$g9*1!@Ix1a׿($II1%) I$11? 11I$I$11ꪪI$H$9!1E)L$d&1E)UWW^H$ E)!^ZjI$I$$!!E)!* vI1E)1e)I$I$'9#I$I$'9#I$I$'9#I$H$1E) 1E) *@$9 I$I$9! 1e)I$I$9I$1e) I$I$'9#P$1b\$1$!"# 1E)zxdB&$2E)!I$I$$!! **I$I$$!!hX$!E)!*+Sɝ 1` ID>15 I$I$g9*@$I$11 @ 11 I$I$9 11I$I$)I)I$I$)I)@$ 1f1 I$1f1 **(#1@ dId1511L$`&11WVXX 91u L$@ 91N$H1b^W\ 7i9+- H&@R89E)TXPr$E)`1b%% 1 91~zI$I$9!11I$H$11# 1E)نm`1E)$A 11/1f1I$I$g9*I$I$g9*H$@$11 I11??H$H$11@$I$11 )bIt91/aWNYp9 ))" 7w$q++1!Ms +4/P DZ **+4,ȋHDZ44I$I$%44I$I$%44I$I$%44I$I$%4$H$DZETTT4-`DZ44I$I$%44I$I$&44I$I$&44I$I$&44I$I$%44I$I$%4/j HDZꨨ1"k hz)c1iE1X`I$I$EA%!UUHE)!I$I$1I$I$1I$I$E)$!I$I$E)$!$E)*p @E)!$E)!$E)!I$E)$!  1$I$e)$I$e)I$1H$$1 $I$e)I$I$e)I$I$!!H!$4 !b !I$I$d!d I$I$d!d I$I$d!d I$I$d!d  H!  XH/qS7%yX--/&1uS E---+1( P 4100DZ 44I$I$&44I$I$&44I$I$&4DZEI@4DZ43 H$DZ40@%$)@`PXH$I$!^WWI$I!!* I$I$e)I$I$E)I$I$E)I$I$d!d I$I$e)I$I$e)@$I$!a\ !b I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)$! *I$H$!b׾(!I$I$E)I$I$E)a@$!$H$!appI$%)I$I!I$I$!I !* I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d H!ItI`P5q1Ei----/)NNf ---4-!e` DZ?4I$I$DZUUUs44I$I$%44I$I$&44I$I$%I$I$E)a$H$!I$I$@pXTI$I$!AI$I$  !I$I$E)I$I$e)I$I$e)I$I$$!!* *@ !b`I !b5I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I  e)@$I$$!!@$H$$!I$I$ @PT$!$!b$@$$! I$I$$!!I$I$$!! I$I$$!!I$I$$!!I$I$$!!??I$I$$!!I$I$$!!** I$I$$!!I$I$$!!,I$I$e)I$I$e)I$I$e)IIe)H$@$!bTX`  !bH$I$!I $!?/ I$I$$!!1H$He)$C$!b@I $!bUA$I$e)I1I$I$1I$I$1I$I$1$H$E)!I$Ie)$C&H&$!b`XpI$!b %   E)!I$I$$!!*I$I$$!!I$I$$!!  E)$!﫫I$I$1I$I$1 E)$!@$I$e)I$I$$!!@$!I$I$1I$I$1 E)!@$I$E)!I$IE)!Lvl'X$) ew$qH"mo Ei m! F$)ZB@I$I$$!!*  $! I$I$!!IE)!I$I$E)$!I$I$1I$I$E)$!`$L$E)bXVVV! %)bI$I$E)$!I$I$E)$!$E)@P %)I$I$E)! I$I$E)!I$I$1I$I$E)$!I$I$1$I$e) I$IE)!  H$E)!H$Ie)IE)!+I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)!I$I$1IE)!*)(H$I$1E)I$I$E)!I$ e)$!  H$e)! H$I$E)I$I$E)! I1k%E)bPPI`E)b H$e)E)pWUH$I$1I$I1I)(I$I$)(I$I$1 I$I$1 I$I$1 I$I$1 I$I$1 I$I$e)E)*$e)E) ^ H$e)E)pWUH$I$1I$I1I$ 1I$E) `$E)!$I$E)!I$I$e)I$I$$!!I$I$e)I$I$e)I$IE)!I$IHE)!IE)!?IE)!7I$1$I$E)! IL$E)!@$@B E)bPTPBtE)b % ۶mۂ&E)X۶m$E)}e)! $Ie)E) $I$e)E) $I$e)E)I$I$1"IIPe)7qSqEX/-)SE++-3)JR -43DZ44I$I$%44I$I$%44I$I$%44I$I$&?R$J$DZe)PTTU$e)%)I$I$e)E)** @!I$@!I$@! @! 1E)H$1E)@!I$H$e)E)I$Ie)E) @$@!I 1"  @!I$I$1"I@!$e)%)p$t"E)XVX  e) H$H$1"I$I1" @ @!I$1"$I$1E)1E)If1E)WI$1E)U_Ie)E)U#'L'e)bXVX E) I$I$)( $I$e)E)@I$e)E) I$ $e)%) I$@e)E)M&[mE)!M&`E)bVX@InE)b% I$I1)(I$I$)(I$I$e)E)?I$e)E)+I e)%) I$H1E)I$I$e)E)* $I$1%)H $1E) I$1E)+(P$e)bPT$IHf1I$1e) 1e)I$I$9%J%1p\XJI 1b % MF1VI$I$1E)I$I$1E)I$1E)@'9#J%I@f1$I$I$9H$H$1"!XI$1E) ?h1E)+$01E) I"e)@IĆ1$Um1E)`@1E)ꪪd$d01E)!I$1E)"@If1@ If1UI$1e)I$I$1e)I$I$9I$I$9$C2$C1E)II1"I$I$1E)I$I$9`1E)_zI$I&e)E)UUUX@$I$E)$!*I$I$E)$!*I$f1E)UU$I1E)I$I$1E)I$I$1e) I$1E) /1e) &L&1E)@!@1E) I$I$9!@ 1e)I$I$1e)I$I$9!I 1E)`1!Xi`1!K%ۊmE)!\pI$I$E)!UUU^I$I$$!!/vItE)!-H e)b\ٶmۆmf1!I$1e)*۶m,Hf1UUU@R$$Hf1UUU$I$H1UI$I$!`AI$IPH $CI X8j I$? `8UI a@UmS)`E1JTe)BVUU@$@!I$`0E)!W\pI$I$d!d ٖ Ie)! 5f1$ I$1e)1e)I$H$9I$1E) *I$ 9!P$P)f1bPTP@L 1bL& 1E)I$I$1e)I$I$9!I$I$'9#I$I$'9#A$I$9!I$H$1E)BB$AR1E)C/I$t&1E)UU^XK%۲ E)a\pI6*A1f1%  $@$1e)H$I 1E)I$I$91E) I$I$'9#I$I$'9#H$9@ e)p$ f1 Df1 5H$@ 1e)$ 2(1p$I$! %%@ E)! /II$1E)??1E)&1XHI1 $11⩥U H$9 @ 11 %I$I$g9*I$I$g9* 11I$I$9  1 @$ 11@ 9 I$I$'9#X 1E)^zI$I$E)!I$H$E)!UWVz I$E)!I$I$1ݐ1E)+-I$I$'9#I$I$'9#I$I$'9#@$1e)II$1E)*$1E)I$I$9!I$I$9!H$@ 1E) I$1E) **I$H$9!I$I1bW\1 4I1b @$@ 9 K%X51E)W_^xI$H$E)!I$I$$!!TZR I$E)!U11! +/1f1I$H$)I)H$@ 11II11***I$@$11 I11??I$I$)I)I$I$)I)'1E)1E)!11 m1 11011``II$9! (AI91ꪫ k[91I$M&1E) 깔P9E)C %I$I$e)E)  1E)  91M$H&11WTTX 115@ 11II11***11 I$H$9! k$1DID1E)U$11R#&1bp D15 11I$I11 IIȐ11***0@Hh1%%pSwf`+,`N/sE +/3)P R -43DZ44I$I$%44I$I$%44I$I$%44I$I$&?,m[m6蹆?ۆmۖlDZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%43DZ4/j6P DZ1  z&s"&E)\X`I$I$E)$!I$I$1E)!@$E)!I$I$1`B$%)X*E)!髪@ H$e)I1 1$%)$!I$E)!HB$!b  I$$!! H$Ie)E)$!`&%)H$I%)!I @$E)!z@I$!!@/ I$H$$!!I$I$$!!I$I$$!!^KI!(.I$! H!ng`H/yW7qE`----)` F---+3+t ` 43DZ44I$I$&4%8DZt44I$I$%4DZEQ43 @$DZ;Ҧ ۶%EyP/H$I$!TTUUI$I!^@$!`I$!a&I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$e)H$!X!I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$d!d  ! $!I$I$!i֭E)jI$H$$!II$!I$I!! I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d H!X `P---- 9S1qfi-----p-4/ DZ?4I$I$DZ?UU?4I$I$蹧??4I$H DZUUT44I$I$% !H$I$!~I$I$!AI$I$!I !I$I$E)aI$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$$!!*I$I$$!!*I$I$$!!pI$I$$!! I$I$$!!I$I$$!! I$I$e)I$I$e)@$H$e) @$$!I$I$E(CI$$!bZj $I!b I$I$$!!$H$!`XX ! I$I$$!!I$I$$!!/I$I$$!! @$!x $!b -I$I$$!!!I$I$e) $!@@I$$!b 7I$I$e)I$I$$!!@@$I$!I$I!?$!I$ e)$I$e)1I$I$1@$H$e)I$Ie)1I$I$1I$I$1@$E)$!I$Ie) 1$!`!@%) @$H$E)!I$I$d!d I$I$d!d I$I$!! *  $E)!I1 E)$!@$I$E)!I$Ie)d&`$$!ap` I$! %% I$I$1 E)!@$I$E)$!I$IE)!E)! @%)UU 9wq@=-/ j7f%q--(O mE "I$H$$!UTTP E)$!E)!I$I$E)$!*I$I$1I$I$E)$!*I$I$1d2 %)bXh!@E)b I$I$E)$!I$I$E)$!E)b` %)b% I$I$1I$I$1I$I$1$E)!@$I$E)!I$  E)!$I$E)!I$IE)!E)!I$I$1E)!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)!I$I$1I$IE)!* I$E)! $I$1 $I$E)!0 E)`I$I%)7&0-e) *hmtE) )I$I$E)$!* I E)! I$I1 )( H$E)!H$I$E)$!I$I1I)(I$I$)(I$I$1 E)!,I$I$1 I$I$1 I$I$)(I$I$e)E)$e)E) zU$I$e)E)WUUI$I$1I$I1I$E)! $$E)!I&I$E)!@$I$e)I$I$$!!I$I$$!!WI$I$$!!I$IE)!UUUI$!IE)!IBE)!*I$1 I$1H$I$1I$I$1I$I1I$e)E)UULBE)!:IB$Ie)E)UI$I$e)E)K&hE)b\XhI$mE) E) I$I$1 I$I$e)E) I$I$e)E) *I$I$e)E)I$I$PE) ywqP+//-" 1S%y/-1%pR +)-41DZ 44I$I$%44I$I$%44I$I$%4 @$DZe)@@PPI1"I$I$@!I$I$9@ @!I$I1"I$I1"I @! @!I$I1"I @!e)b e)!e)E)$@!H$I1"I@!I$I$9@$H$e)E)I e)E)@!I$I$@! @!@!A$@$e)E)I$Ie)E) *  $@$1"I 1"@$I1"I$I$@! @Qe)`! @e)E)I 1E)ꪾI$e)$!$I E) @ I$E)a&I$I$)( $I$e)E)/@I$e)E) I$e)E)I$I$e)E)I$I$e)E)I$I$e)E)+I$I$e)E) I$Ie)E)I$Ie)E)**I$I$e)E)I$e)E)/I$e)%)I$H e)%)I$I$e)E) X,E)bP@TIf1 I$@1e)I 1e)I$H$1e)"a*1`$I$1/1%)1e)I$1E)I$I$1E)I$I$1e)I$1E)H$9I$I$1e)I@!$H$e)E)SI$1%)+M$1E)~nm1I$e)E)$A!1E)I$9LB2 1E)I$I$1"1E)I$9@1e)I$H$1e)I$I$9I$I$9I$ $1E)ꪪ @ 1E)I1E)I$I$1E)1%)ꪪI$`e)E)UU\I$E)! I$IE)!$I$e)$!۶m1E)@$@$1E)ꪪI$I$1e) I$1E)*H1E) 1E)I$I$9!PM'1!^1E) I$H$1E) I$1E)*1e)I$I$'9#d21E)Zjk5ۊmE)!xI$I$E)!UUW^I$I$$!!-UUm閴HE)UUUöa]$Hf1UU$I$Hf1UI$I$!`AI$IPH I$$IPHIl۶`H* I. iP - EX*-YN%e1* @T[$I%y!`TUU#&e)bp`XIKf1b-- I$I$91E)I$h4f1!UW\pI$I$d!d Idf1!1E) I$1e)@ 1e)I$I$9! 1E) **1E)I$I$9!I$I$9!$ 1e) I$1e)I$I$9!I$I$'9#I$I$'9#dB2C21E)ࠂ IdB&e)E) ^\@S )1E)rkI$L$e)E)UWTt1E)I$H$1e)I$I1e)1e)I$H$1E) I$1E) *I$I$9!I$I$'9#I$I$'9#I$@ 1E)f1`IdNA1/ I$1e)۲m؆m1E)j-f1 I$H$E)!@E)! It1E)/L2'f1b\Xh  1 I$I$'9#I$I$9!$A$I21E)@!11@$I$11$I$11"%#1bp` Dəw1b 5%)@$11 I$C&11zZI$I$9!1e)*M&k51E)W^^z@ E)!ꪀI$I$$!!E)! ! 1E)U1E)I$I$'9#I$I$'9#I$I$'9#I$H$1E) 1E) **I$I$9!I$I$'9# I1e)I$I$92I1!@IĎf1ՕP1E) 9! 0 1E)h蠠0`$E)x^! I$I$d!d $!E)!*+N1E) @ 9F1I$I$g9* 11 @51`1E)11I$I$)I)Z"-&1%)$I@1%) I$11 *I$I$)I)I$I$g9*I$I$g9*L$`$11WV\P [91 h5@91X41E) dI$9E)5U s";-9e)V^ZrК'1*^ J1$! @411P`@I$I$'9#@11 11H$H$11"ɒ(1E)I$u 1bWV P1 11ZI1` Rf1 1E) $H$11$I$11 %Y1UUWNWq%I +-# N7wq++1"Nw ++-4/P DZ *+44I$I$%44I$I$%44I$I$%44I$I$%4 DZE@@4IDZE44I$I$%44I$I$%44I$I$%44I$I$%4 DZE@4DZE44I$I$&43@ DZ4,ۣ m43+DZf~z@ O$`R?f$)WTXz$$&%) *X E)!I$I$1I$I$1I$I$1I$I$1 %)$!  %)!j%)$!E)$!ꪪ$@E)!I$E)!II$e)!I$E)!IE)! @0%)p$I$$!!`  @%).' $H$E)!^^A $$!!H$I$!!<I$H$$!!p $!$ I9!UUdB&dBP@Z*)R.U`@))+*qS7ufi--,kf/);%Wlnȹ44I$I$&4@$@DZEPPP?!mǹE?4I$I蹧4DZEY41؆-؂-DZ1 8%!`@PH$I$!I$I$!! I!a7 I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d @$!! I$I$e)I$I$e) @$!@$I$!`I$I$a// I E) Uյ% 0`&E)I$I$!I$H$!`p`I$I$!A //I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$E)I$I$d!d I$I$d!d IIPH/qqiP--- 9pfq----/ )Np -/)+41ɐ ِDZ*** 4IDZE4$H$DZETTT4DZE?#8#) ```@@$H$!I$I$pXTUI$I$!UUՕI$I!I$I$E)aI$I$E)I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$$!!* I$I$$!!x\^I$I$d!d I$I$$!!I$I$$!!** *I$I$e)I $$! $$!I$I$E(CI!* I$I$e)I$I$d!d I$I$d!d @ !`!I$I$d!d I$I$$!!I$I$e)H$$!bxI!b-$@ !b`p I! %I$I$e)I$I$$!!I$!b7I$I$$!!$H$!I$I!$! I$Ie) H$e)I$I$e)I1$H$e)I$I$e)$$!b 0$!b@$I$!b@$E)$!H$I$e)I 1I$I$1I$I$1$E)!I$I$$!!@PTWI$I$$!!5I$I$!!  E)!I$I$e)  1@$I$e)I$Ie) 1$!!$! E)!@$I$E)!I$IE)!E)!$%)p$I$E)b /q h$)))Rqfa+/).ys f/-,S"($!P@@E)!I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1E)I$I$1I$I$1H$He)E)!I$I$1 @$e) H$I$$!!***I $E)!@$I$E)!I$ E)!*I$I$1I$I$1 $E)!I$IE)$!I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1۶mۺ!E)*@ I$%)b$UE)!I$I$E)$!I$IE)$!*I$e)$!*! $IE)!@$%)b`pI E)% I$I 10 [$E)bTA$E)!H$I$E)$!I$IE)! @$E)TE)!I$I$)(I$I$)(E)H$I$!(U0E)  e)E) j@$)(@$I$1I$I$1I$ 1$I&E)!L$E)!@$I$e)!I$I$$!!I$I$$!! I$I$$!!I$I$!!I$ IE)!U/IE)!+ $E)!$I$1H$I$1I$I$1I$Ie)E)UUIe)E)U e)E)I$I$e)E)I$I$e)E)I$I$1 I$I$1 I$I$1 I$I$1 I$I$e)E)*I$I$1 I$I$e)E)I$I$e)E)I$I$e)E)*II1"I$H$Pe)UUqxiP-- p1Wfi+/--/NO+--4/ DZ44I$I$%44I$I$%4 DZE)@4H$I$DZe)TTUU$@$I&e)!@!e)$! I$e)E)I$e)E)$I$e)E)$I$e)E)I$e)E)$I$e)E)$I$e)E)I$e)E)M$H$E)bVWI$E)b_WIDE)b55H$I$1"$e)E)$e)E)e)%)@@!@ @!I@!I$I$@!@$H$1" @!@!  e)%)H$I1"$@!I @!m۲me)!@$I$!b0DAHe)I$I1"I$I$@!H$Ie)@I$J"$e)W|pSE) %I$@1E)I$I$e)E)I$I$)(I$I$e)E)I$I$e)E)/I$e)E) I$I e)E)I$I$e)E)?I$e)E)H $e)E))Ѡ&E)b`PɐE) 5I$e)E) @ $e)E)I$e)%)*I$I$e)E)$I$1E)$21E)I$@1E)I$I$9If1(1e)(1b@1E) 1e)I$I$1E)I$I$f1e)I$I$1E)I$1E)I$9dB2$ 1E)I$e)E)*I$I$1E)?mA $1E)/I&X31E)I$I$e)E) I$e)%)*@$1E)H 1E)I$I$1E)@$1E)@!1E)1e)I$ 1e)I$I$9I$I$9$C$I1E)ꪪI$ 1E) I$1E)1E)I$I$1E)ꪪI$ f1E)UW^ $I$E)!H$I$E)!* I$e)$! $1E) 1e)I$H$9I$I$1E)* 11!j1E)t 1!^)1E) (@ 1E)e) I$1E) 1e) 1e)* @%If)W_}k5X۶HE)UUI$HH!UI$I$PHI$IPH I$IXH*m6I `H* I. iP I-9 %yXU o%7EX.[$%f1*@T$I$E1@TUU@$1e)`01E)۲mۆm1E)j1%)I 9I$I$9 1$!說I$H$e)!UW\pI$I$E)!UUU e)! %I$I$9I$9@ 1e)I$I$9 1E) *@ 01$!`` 1$!+%I$I$9!I$$1e)I$1e)I$I$'9# @ 1e)I1e)k5 `1E)^^II$e)E)UWX+S&1bZ@R6E) 6`ݖn1E)I$I$91e) 1e)I$I$9 1E) **I$I$9!I$I$'9#'9#I$I$9 1E) *I,1`4ILf1 %I$I$9h4@1!vm6E)*j"I$E)6U@f1!  I$1e)I$I$'9#I$I$'9#@$@$1E) I$1E) * 9 9 @$9 m&m1$!  1E) **@  9 I$I$'9#I$I$'9#01E)zꪪI$L$e)$!H$@ E)!II$E)!I$I$E)$! *  l1E)I$I$'9#I$I$'9#1e) r$f1$!\_f1$!1e) I$I$9!1e)(H$@ 1e) I$1E)**I$I$'9#I$I$'9#II$'9#H$9 L$p'e)b^X ! I$I$d!d  I$E)!T1! //@1e)I$H$)I)I$I$g9*j'1X\pKH1  I11 /?I$I$)I)I$I$)I)I$I$)I)I$H$11 11 I$I$)I)I$I$g9*@ 11I$I$9 a91ꫫm[11j蠀I$H$1E) 19E)N"'IE)Z )@I1 9F1I$K&11UWT\! 11 55 @ 11I$I$9! I11 ** d$11_T@$11 I$I$g9*H$H$11MZ@1E)W޸!A1E)H$11۶2`1f1MdId1E).*C0:,`1 %5pSqf` /-,`SE ++-3, o 43DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$&44I$I$%44I$I$%4 DZE@@4 DZE?4I$IDZUUU?4I$I$DZUUU41`DZ3"ɐH`/ h%qU!I$z=_E)!I$I$1$E)$!E)!H$E)! E)!ꪯ[%ۺ E)`pE)!$I&@E)zIE)!IE)!I$E)!E)$!$E)$!@$Ie)dB$I$!``$I$$!! H$e)@$I$e)A$I$$!!I$I$$!!I$I$$!!IIH!IIPH+++ wiuiP--+/ yS7fq--/+/fIP f++ 4#  44I$I$%44I$I$%4 DZE@? IKDZ%iN?3?蹧3 Ey@1X$J$!PTTUI$I$ II$!I$I$d!d !I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$!A !I$H$!a~ ! I$I$d!d I$I$d!d H$I$!I$I$!I$I!!AE)!zH$I$!I  !I$I!ꪪ*I!)I$I$d!d !I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$d!d IIPH/+++ 1S1iP---/ 1S1f%q----/"p ` ---)41DZ 4IDZE44I$I$%44I$I$%4  DZ @@@@I$I$ z^^I$I$!AI$I$!!I$I$E)aI$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$$!! I$I$$!!I$I$$!!** I$I$$!!I$I$d!d I$I$e)I$I$e)I$I$d!d I $!!@$I$$! H$I$!II!** I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$$!!**I$I$$!!I$I$d!d I$I$d!d !I$I$e)I$I$e)I$I$e) @$$!I$I$ bhX`II$!b)%I$Ie) $1I$I$e)$I$$! I$@$$! H$$!8V$C$C$!@P@ !b$!!I%)H$I$e)I1$H$1I%)$!$@$E)!@$! !I$I$!!%  $E)$!H$I$e)  1@$I$e)I$I$e) I$e)1I$I$1 1@$I$E)!I$IE)!E)!I$I$1%)@I%)5mvm6X%)UU79EX--(N/wE+/,%H@R)I$H$%)UTTPI$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$E)$! %)@I$I%)U$@D$%)bZ%)I$I$1I$I$E)$!$H$e) I$I$!! I$I$$! H$I$$!! I e) I$I$1 E)! I$E)!IE)$!I$I$1I$I$E)$!I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$E)!* $IH2E)$! ömۖmE)IE),E)!I$I2e)$!*`$E)TE)!I$IE)$! A E)!I)( @$E)!I$@%)bUTٶm۶ E)bIE)! I$I$)(I$@E)UT0E)I$I$)(I$I$)(I$I$)(HlE)  I$1H$I$1I$I$1I$ 1$E)!$I$E)!I$I$e)I$I$$!!I$I$$!!*I$I$$!! **I$IHE)!IE)!E)$! $I$E)!I$I$E)$!I$I1I$Ie)E)UUIe)E)U%e)E)-I$I$e)E)I$I$1 I$I$1 I$I$1 I$I$1 I$I$1 I$I$1 I$I$1 I$I$e)E) **I$I$e)E)I$I$e)E)I$I$e)E)**I$I$e)E) $e)E)U$A$$e)E)xU I$e)E)U6aS1`%) )))pSwwE`/--,Sf)---1" "E@@@4 DZE44I$I$%4$@$DZE)@PPT  e)E)%% &e)!itE)!  I$Ie)E)$IE)I$Ie)E)I$Ie)E)I$Ie)E)I$Ie)E)I$Ie)E)I$Ie)E)"IE)@I$Je)bU,$I$ E) I$I e)E)&H$E)!p\p E)! % I$I$e)E)+I$I$)( 4h4E)b`X`HIPE)b 5 $I$e)E)II$e)E)$I$e)E)?  $e)E)@$I$e)E)   @!I$@!I$I$9I$I$9pe)H$@! @!I$I$@!H@!#ـ e)`eE)b%+* I$I$1e)I$I$1e)H1E)~I$1E)U$I e)E)I$I$)( $I$e)E)@I$e)E)X$I$E)0DIDHE)`E)b@ɖ ۶m1+I$$1E)~I$I$1E)UUWI$I$e)E) @I$1E)UI$e)E) I$H$1" $I$1E)/I $1E)/I$$1E)I'9#P$P)f1bPTP@ 0 1 % I$I$'9# 1e)f1$I$ 1E)ꪪI$I$1e) $I$1E) $1E)I$@9H 1E)I$H$e)%)I$1%) h,1E) /I$I&1%) I$e)E) $A!1E) $1E)dB& 1E)I$I$1"I$1E)@$1E)I 1e)I$I$1e)I$I$9$I$1e) C2I21E)۰mې e) 1E)I$I$9`$f1%)^XI$a&e)$!*H$I$E)! E)!*0@d1I$I$9I$I$9X$X-f1!XVXh!@ 1! *I$I$'9#I$I$'9# 1@I$I1U$$$ 1E)۰mے$Hf1UUٶmH)H nɖP8 +%%I$IXH*m6I `H* I iP I~.I %yX %7E`U  %7fi* nI҃$Ee1`T$I$Ee)@TUU I$1E)1e)I$H$1e) I$1e)@$1E)ꪪI$I$1E)I$1E)I$@$99۲e) I$M$e)!UWV\I$I$E)!UU ٖl1!9 $9i"i1`DId1U"ID1E)@  A1$!% I$I$9! 1E)I$H$1e) 1!I$I$'9#I$@$1e)I9K&[1E)WW^hK%ۂmE)TP@InE)b% !I$1E)U$I$1E)II$1e)$1e)@$I9I$I$91e) I$I$9!I$I$'9#H '9#0`0f1`X`Q$If1S?ILIf1bH$@ 1e)I$I$9-;$e)h`PI !bdI$E)! ?1E) 1e)**I$I$'9#1e) I$H$1e)1E)  I$9!I$I9!0 1E)I$I$1e)I$1E) I$I$9!I$I$'9#I$I$'9#k%X,1E)VZzzI$I$E)! @$$!PT@E) - I$e)$! *@!1%) 1e)I$I1e)pX1$!\! 1%) I$1E) **I$I$9! 8p91b`X`I1 5 I$H$91e) *I$I$9!I$I$'9# 9!N'h1bVXɚlE)I$I$e)I$I$d!d ! E)!++ R1E) )@ 9F1I$I$g9*I$I$g9* 11I$I$9 11I$I$)I)I$I$g9*@$@ 11II$11/?I$I$g9*I$I$g9*I$I$g9*I$H$11 tI91 X91R"%(1%) II$9E)5UM'h%1E)V)I1E) ??$!1f1 X411Pp@I$I$'9#11I$I$9!I$I$9!H&dB211TXZz I11%I$I$g9*I$I$g9*I$I$g9*L$H&11WWT\@1E),@$I$111$! D@!eI1UU7Sq%A ))%N/w%y +-1# N ++-4II E44I$I$&44I$I$%44I$I$%44I$I$%43 &4DZE44I$I$%?4 $I$DZUUU44I$I$%44I$I$%44I$I$%44I$I$%?X%[mǹEPPP4DZE41,DZ3)# zh,h%1@I$K$f$!UUVT$I$E)!UUI$I$$!!H!($I2E)j!!I%) - E)!I$I$E)$!LȄ$!b8I$I$1I$I$1 `E)E)$!H$ 1 $E)!IA$e)I$I$e)$$!b$! $! !& ! % H!  PH yW1%yX-/%1S %y--/+1&p ++ 410DZ 44I$I$%44I$I$&4DZE@4 ?DZ%a43 $DZ3 (!@@H$I$! $!JI$I!A,@$H$!bbX` I!b %I$I$E)I$I$d!d I$I$d!d I$I$e) @$!axI$!a -I$I$$!!I$I$e)!I$H!UV8!I$I$e)I$I$d!d I$I$d!d  @$!I$I$E)aI$I$!ItInE)//2d$$!I$I$!*>A !I!** I$I$d!d !@I$I$!a,}!I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$E)I$I$d!d I$I$d!d IIH!UI IPH yW9qP-///"1S%y----1%`))++41DZ 44I$I$%4$DZET4DZE4@$@$DZPPPPI$I$!AI$I$55 I !I$I$E)aI$I$d!d I$I$d!d I$I$e)I$I$e)I$I$d!d  @$!bp\!b I$I$$!!I$I$$!! I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$$!!$@$!I$I!!I$I$e)I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$$!! *I$I$$!!I$I$d!d I$I$e)I$I$$!! I$I$e)I$I$e)$$!H$I$!I !* !I$A$!b $1I$I$e)I Ie)I$I$$!! $!I$LH$!UV@$!I$I$1 1H$I$e)I e)I$I$1I$@ e)$@E)  $C&$!H$I! $!* I$$! 2d$$!bx$ $!a-$H$e)I$I$e)I$H$e)I$I$e) Ie) 1@$I$e)I$IE)!E)!I$I$1I$I$1@$%)E)!$H$E)! RIp) ) Rqfi++`JNf++--+@(%)P@@I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$`$!bVX` E)  E)!*$I$E)!I$I$$!!   I$$!!I$I$!! e)!I$I$E)$! @$E)!Ie)IE)!I$I$E)$!I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1۶m2$E)`nIE) -&@0E)`X`  %)% @&@ %)|pmE)+- @$I$E)!I$`E)bUV !@E) I )($E)!@$I$E)!I$I$E)$!*I$ E)! )(I$I$)(,E)@ I$E)b 7)( )(E)!$I$E)!I$I$1I$I1I$E)!@$E)!@$I$E)!I$I$$!!I$$$!!* I$I$$!!I$IE)!I$IE)!*!IE)!+$I$1I$I$1I$I1I$ E)!Ie)E)U-I$I$e)E)I$I$)(I$I$)(I$I$)(I$I$)(I$I$)(I$I$1 I$I$1 I$I$1 I$I$1 I$I$1 I$I$e)E) *$1 $)(I$)($I$1@$I$1I$I$1I$I1I$Ie)E)UUՀ ېmPE)7w%yX//--(NsE )--1)% 43DZ?$I"DZe)@%K&E)bp\Xe) $$e)E)Ukۦe)!$Ce)p` Ke) 5% $@!I$I$@!I$I$@!H$@!$I2e)E)z$$e)!m$e)!ݖe)!$e)E)$e)$!`e)!!e)$!@!Ie)E)[le)!`DIe)I$Ie)E)$I E)!TE)!I$I$)(I$I$)(I$I$1 I$I$e)E)I$e)E)+I$e)%)*@!I$I$@!I$I$@!I$I$@! @!De)b60e)!I$I$9I$I$@!I$I$@!@!H$He)E)TUV1E)I$e)E)I$I e)E)[ E)$I$e)E)H $e)E) /I$e)E)I$I$e)E)I$1E)UH 1E)~I$@e)E)I$I$e)E)?I$1E)I$1E)dH$E) VE) ! 1E)/H$1e)I$I$1e)$I$1e)f1@I 1bU61E)I$H$9I$I$1E)I$I$@! I$1E)@ 1E)I$H$1E)I$@e)%)I$I$e)E)*a61! jjh$I$E)a(זE)!I$e)%) @$1E) H1E)ꪪI$I$e)E), I$1E)д1E)I$I$'9#I$@1e)I$I$9 9Hf1!`Xh[ 1! H$H$1E)I$1E)1E) f1E)ZjI$I&e)$!2۶mE)@I E)bU&If1! /I$H$1e)1E)I$I$@! J$f1^1 $H1UU$I$H1UH$I$H1I$IPH*I$PHIڶm XH Iv iPU* ImG %yP -7E`U  }%7fi*%m$ %y($I$E1 @P"e)@TUUI$I$1e)A 1E)ꪪI$I$1E) I$1E)1e)I1e)$H$1e)@ I$1E)ꪪI$I$f1e)I$I$1E)I$I$9I$I$9@,l1$!XjI$I$E)!UUW\ I$e)!5U f1$! I$I$9I$ 9$I@f1&II$1E)* 1E)K$10W1  1%)@L$L$!b0 1!1e) I$H$1e)%J"'f1bp\XI$E)b5ii1E)I$K51E)UUV^i1E)=H$I$9I$I$9I$I$1e)I$@ 9 I$1E)*1E)I$I$'9#01E)Xl۶m1E)z $If1 H$ 1e) I$1e)I$H$1e)f1`IkE)H$I$e)ɐe)! ?I$I$9 r$1^ IKf1 @$ 1e)II$1E)**I$A9!I$I$9!@$I$9!H$ 1e) I$1E) **I$I$9!I$I$9!Adž1!8@ 1E)ꪪI$`&e)$!`2E)X!@E)+I$I$E)$!** MĆ1 .I$I$'9#I$I$'9# 1%)@ZN$1b(f1$!  D1 7@1$!` 1 @$ 9II$9I$I$'9#I$I$'9#II$'9#9 k6X1E)^~xH$@$E)!I$I$$!!II$E)!ItĆ1E)% 1e)I$H$)I)I$I$g9*I$I$g9*H$@$11 I11 /?I$I$)I)I$I$g9*@ 01@0IĆ1 711I$I$g9*I$I$g9*@$ 11$A$I11? $!91ۂmۆm11@I$L21E) h1E)ÃII$e)E) *01E)@1e)$I &1E)@!1E) +I$I$9!I$I$9! 9!I$I$9!@!11 I$I$g9*H$11 (Lӆ1E)L$LE)!((l61E)h&ht1E)0ݰ 1E) mZj`1 55pSqfi+--` Sf --4,Mn ?3蹦+?4I$I$DZUUU44I$I$%44I$I$%4-DZDId%!iE*?4I$H$蹧44I$I$%44I$I$%43$&?6rIdE*44I$I$&44I$I$&44I$I$&44I$I$&41[-`DZ1%b#hxࠀ+c1 ipI$I$f%)UUUT$%)(6I$I$1 E)!ꪪ $E)/ I$I$1I$I$1HE)!I$I$1I$I$1I$I$1H$@E)$! 1Ie)I$@e)$I$!$C$H$!I$I$$!! $!I!& !!!IH!iviXH///+qwS7EX-//)1` E--+7+/rȹ43DZ?4I$I$蹧?4I$I$蹧?44I$I$%48PDZEI 43@$H$DZ1P%K$!PPTTI$I!I$I$E)aI$I$E)! !I$I$d!d I$I$d!d I$I$d!d I$I$d!d @ !`I!a- I$I$d!d I$I$e)I$I$d!d I$I$E)!I$I$d!d I$I$d!d I$I$d!d H$I$! A$!I$I!*)VŊ5E) pH$I$!`I$I$A>( !*I$I$d!d I$I$d!d I$I$E)H!$I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$E)I$I$d!d I$I$d!d I$I$d!d IIH!$ PH* ywEyP///%1S5eBE--/ 1() + 43DZ44I$I$%4H'DZET\4PDZEy4@$@$DZPPPTI$I$b ^WI$I! !H$! V!  !! $!`! H$!a ! I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d $!I$I$E(CI! !@$I$! VW!I$I$e)I$I$e)I$I$d!d  @$!p I$!/5I$I$$!! x!bI$I$d!d I$I$e)I$I$d!d I$I$$!!+//A$I$e) $!H$I$$!II$!?/I$I$!!   1H$I$e)I$I$e)I$I$e)H$I$e)II$e)$11I$I$1@$I$E)!I$I$$!!  $1H$I$e)&`0%)b`p I$!b %H$I$! !* I$I$e)H$I$e)@$$!a`I$!a- I$I$e)$Ad&$!p I $! I$Ie)  1@$I$e)I$Ie)E)!I$I$1I$I$10%)`I$H$!VVܪ!I$E)I$IE)!a[e[X%)pSwEX+/& S%y /-,&HAB)I$H%$!UTTP0%)`$I$%)b&I$I$1I$I$E)$!I$I$1@$I$E)! E)$!I$I$1 E)!@$I$E)!I$I$$!!** A$I$$!!I$IE)!0E) @`I$E) U$E)!H$ %)$! E)!I$I$E)$!I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$E)!*II$E)$!* @-۶mE)`I!E)- I$I$E)$!E)!I$I$E)!I$I$1AL$E)b VUA&I$E)b UUaE)$H$E)!I$I$E)$!I$I$E)$!*II$1I$1 @$)()(`ضmE)I%)b&$)(@%k5E)b`x IE)b %5 I$IE)! I$E)! d$E)!@$I$E)!I$I $!!I$I$$!!*@$I$$!!** I$ E)!+I$AE)!I@$E)! $I$1I$I$1I$I1I)(I$I$)(I$I$)(I$I$)(E)!0)(I$I$)(I$I$)(I$I$1 I$I$1 I$I$1 I$I$1 $)(I$)($I$)(@$I$1I$I$E)!(I$I1I$e)E)UUIB$ e)E)U e)E) II$e)E)$ $$e)$! 9bB2E)`p)I P 55 /qWwqP//-" pO1sf%q +--1"N+)--41 DZ *44I$I$%4I$I$lj_! e)!I$Ie)$!I$LE)! E)!!A$E)! $I$$e)!$e)$!B e)!&$I $e)E)U@$$1 E)!ꪪI$I E)! $E)!$@E)! @ )(@$H$E)!! E)! //  2E)!$I$E)!miE)! mM$e)!0ݖve)!/M$hڶE)ZZ)ne)!  @e)%) I e)E)I$1E)I$@f1E)W_I$I e)E)I$I$)(I$I$)( $I$e)E) #&e)ap &He)b  e)I$Ie)b6A$@@!@!I$I$@!I$I$@!I$I$9He)$!I$I$@!I$I$@!I$I$9@1E)ꪺI$$C1E)W_I$I$e)E) $I$e)E) I$e)E);I$e)E)I$I$e)E) $I$f1E)@ $1E)_I$1E)_ @ e)E)?_zI 0E)V`DI E)  $I 9E)b`` Xf1*H!$1E)I$9I$I$9I$I$9I$I$1e)$I$1e)I$I$9I$I$1E)I$I$1e)I$I$1e)I$1E)I$1E)dB2$ 1E)I$H$e)E)ME)k24)d1E) ?I$L&1E)_^xI$e)E)  e)%)II@1E)շI$ 1E)~I$Ie)$!**!1E) 1e)I$@1e)I$I$1E)ꪪ1%)1E)I$H$1E) I$1E)1E)1E)ꪪL$`$1!I$I$1I$I$E)!!1E)1E)I$I$9N' f1^!i HE!H$H8TTI$IPH*Im XHvv hPU* -7qP-7 EX}%7fiտ# m4%yտ +$ E/r$f/$!@$!@PTI$I$E)!UUvie)! *I!1E)I$I$9@ I1E)ꪪ ;t$E)bhX\I$1b*U1E)I$I$1e)I$I$9I$@ 1E)I$I$@! 1E)I$H$1E)@@!--&E)I$I$E) I$e)! %U 1E)I$I$9'9#I$H$9 I1E)N2ǐf1bV 1$!I$I$9!X`1E)I$I$1E)*1e)@ 1e) f1b`I&1նI$I&e)$!C-1E)zk5I$I$1 1E)I$H$9$f1b`p f1b %5I$H$9I1E) *I$I$9!`&1E)zz!$@1E)I$H$9 9I$H$1e)@$I1e)I$I$1E)ꪪh5e)!I$I$e)I$I$E)!?01$! *+)N$L'e)bVV^ 1f1  1e) I$@$1e)0I11`DIP1 %I$I$9!$C I1E) I$I$1E)1E)  1E)Mī 1 (1E)[5 1E)^zzI$I$E)$!I$I$1 E) JjI$IE)b׿(` 1$! I$I$'9# 1E)jNbZf1bֺ( (@1!C`I$Ie)b6:t$f1\VP1 1e)* I$H$1e) 1e) *I$I$'9#I$I$'9# 9![ۊm1E)m6he)!I$I$$!!I$I$e)! E)!+6 1E)  @ )I)91!`p X1! %5@  119 11I$I$g9*1!@I\@1b& I$11??I$I$g9*I$I$g9*I$I$g9*L$L&11WWW\11 % 21f1h5@41E) I1%)/?N$H%1%)KP1E) /@!11 `&@01E)II$1E)/I$I$9!I$9!9!H$@$9  9  11 9!IM1e)* I 1E)(@!11 I$I$9!I$I$11*XҭX15U/qsy%yP +/&N7w%y +-1# N ++-41 DZ *44I$I$%44I$I$%44I$I$%J4I$I)DZUUU)k4I$IjDZUUU 4I$IB DZUUU*4I$IDZUUU*4I$IDZUUUO$O2l1%WWWIl۶ %4I$IDZUUU4I$INDZUUU 4I$ȱUUU4I$ȱUUU3I$DZUUU/I$I맱UUU"I$@MㆡUUW'i1^ZjMnۆme1 E)!E)!I$I$1I$I$1I$I$1I$I$1$ %) % I$I$1H%)bI$I$1 %)$!@&%)X$A$E)! $e)$I$e)H$$e)I$I$$!!I$I$$!!I$I$e)I$I$H1X`P=--wSpEi-----` f-- 7-i.rȱU\?4I$I$DZUU5U44I$I$%?4I$I$DZUUUs4DZfy@4$@$DZEPPP;`h28J#H$I$!TUUU  !!*+I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$E) !@@I$I!6Օ&I$I$d!d I$I$d!d $@$!``I$I$ A//I$I$!InE) 5% &`B&E) x\^WI$I$E(CI$I$!I !** I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I H!  XHyuS7%yX-----1sE/--;+ 豧?1-ۂ-蹧44I$I$%43%44I$I$%4H$H$DZTTTTI$I$ V* I ! I$I$E)aI$@!bWT !b @ !I!* @$H$!bpXpII!b 5- I$I$$!! * I$I$$!!I$I$$!!I$I$d!d I$I$e) !@!I$I$d!d  ! @$I$!I$I!I$I$E)I$I$d!d I!0I$I$d!d I$I$e)I$I$E)I$I$e)!bI$!5 $!@P@  !I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$$!!@$H$!I$I! $! I e)@$H$e)I$I$e) @$$!$!I$I$e)I $e)$!I1 I2$!@ $!5@$I$!bTUTI!I$!bI E)! $I2E)!_I$I$!I $!/  $!@$ !$!I$Ie)I$@$$! I$I$e)I$I$e)H&$B"$!bX`II$$!b55U$@$!a@$H$e)I$Ie) $@$e)I$IE)$!I$I$1@$%)$!`$dB&$!bPTPP! E)bI$L@%)U>%) I$I$P%)UUU 7WyiP+--N7wfi+/+tN-,R( $!P@e) ꪪI%)I$I$1I$I$1%)$!ꪪI$E)$!%) $e) H$I$E)!I$I$$!!I$I$$!!(I$ E)!$E) $@ %)`I$ A$!b I$@%)$!E)!I$I$1I$I$1I$I$E)$!$e)! E)!Ie)I$I$E)!* E) I$I$1I$I$1$1E)I$I$E)!I$I$E)!* I$I$E)! M0E)b0IdmE)_0E)!I$I$E)$!*I$I$E)!* I$I$1I$I$1I$I$1I$I1)(۶-`E)@I$I$!? I$I$E)$!$C$IE)!* ٶE)2L$E)!H$I$e) @$$!bTI$I$e)I$I$e)I$ IE)!/I E)! I$I$E)!I$I$E)$!I$IE)$!*۶mdE) e)E)+I$I$)(I$I$)(I$I$)(I$I$)(I$I$)(L$HE)! E)!I$I$)(I$I$1 $1 H$)($I$1H$I$1I$I$1۶mۂ%E)b@PۖmɐE)b  e)E)uKHE)!$e)$!۶-e) j@$e) @$I$e)$!I$I$E)! * I$I$E)$! I$ E)!ٰm۶ PE)UUU q aP----& 7uS%q---C! P  k1IPjDZ k4n$ʧ+WhJ$H&j҂TTTZ%) e)E)? e)E)xz$C2$ E)!ꪠI%)$!I$I$1$C$IE)!j IvE)!U&I$I$1I$I$1I$I$1@$E)!I$Ie) E)!)(I @ E)!@$I$E)!~@ %) &IB0E)!$I$E)!I$IE)!  I$E)!I$I$!!  @$E)! IE)!'&M$e)! I$e)!I$e) +Фe)!@!Ie)%)I$e)E)J"%e)\pHIE)% E)$I$e)E)I$e)E)$e)%) @$e)$!@!e)$! I$I$@!I$I$9I$I$@!kפe)*I$I$@!I$I$@!I$I$f1e)I$I$1e)ꪪI$1E)E)I$I$1 I$e)E):I$e)E)?I$H e)E)I$I$e)E)/@I$1E)zUt$P")E)X\PɐtmE)b % PB1$IE)P@IHDE)I$I$e)%) $I$1E)$)[$f1@z^ $f1f1 I$I$9I$I$9I$I$9I$I$9I$I$1E)I$I$1e) $I$1E)@1E)$C 1E)I$e)E)I$I$e)E)ŚlI$1%)m˶`ۦ1I$I$e)E)+e)E)?@$A1E)dH1E)ꪪI$H$e)E)I$1E)@$1E)H$1e)I$I$9I$I$9C$I1E)ꪪI$ 1E)I$I$1"1E)1E)jI0e)$!I$I$E)$!I$A$E)!!I$1!+۶ma1E)؆-۲%Hf1U۶%[%H8PPPLJ X8V) I6W iPս }. %X -7 fi " m4$q )N$E7mIȱf*1"r$*3+iS$+1 H$1@TUb"2" 1!ZjI$I$E)!UUW\ I$E)!%UU@R&1!*H$1E)I$I$9j"5 f1XI$Pe)UU I$If1@ 1e)I$I$1e) @$1e)I$I$1E)I$I$9I$I$1E)I$I$9t e)I$E)!]@I$I$E)ِnIe)! %1E) I$)f1@tI$f1$UB1E)j`$I$E)bTUT  1I$I$9!I$I$9!I$H$1e) I$1E) **I$I$'9#H$ 1e) I$1e)k5X1E)^^zII$e)E)UUK&E1E)W_{m I$e)E)UUI!1E)/e)@f1a @ 9I$I$@!1E) I$I$'9#I$I$'9#@$9I$I$9@1e)۶mۂ%1E)jZ f1E)1E)I$k%E)!I$I$e)I$e)!/?@0f1$!r  1e)I$I$'9# 1e)Z"- i1x1/'1E)$I1E)//@$ 1E)II$1E)**I$I$9!I$I$'9#I$I$'9# '9#LB&`2f1E)WW^^I$I$E)$!I$I$E)$!I$I$E)$!NmU1 **'9#(P$f1bp\`f1a %1e)I$I$9r" f1\)P(f1b@P@If1b@ 1e)8p$f1`XV 1 I$I$'9#I$I$'9#H$ 9![5 1E)^^|pH$@$E)!^^xpI$I$d!d II$E)!UĆ1E)=@ !1e) i$H1 `A1!  9p"91`X` I1 %  I11??I$I$g9*I$I$)I)11I$I$1111 I$I$g9*I$I$g9*`011\pp I$115U1e)ۂ-l1E)$I`&e)E)>\\RR9"1E)II$1E)??$@!11  [X1e)I$I$1E)  1$$1e)$@ 1E) *@$I$9!$A$I1E)@$11 +I$H$11I$I$9!@$@ 9  I11%5I$H$11I$I$9! 11 + w wie1 %& y7SEq--O"/nJ+/h1v)'ʧ_3-I$$ҧ*U4$I$ DZU4@ڧՎ4I$DZUU4I$DZUU4$@I$DZ UU4`I$DZUU4I$맱UU4 $I$DZUUU4$I$DZUUU4$I$DZUUU4$I$DZUUU4$I$DZUUU3$I$DZUUU3$I$DZUUU3$I$DZUUU/$I$ҧUUU"$?MӧUUU9H'C6%!TXpI$I$1I$I$1I$I$1I$I$1I$I$1 E) ꪪ I$E)!IE)$!@$Ie)H$I$! I$I$! dB$$!I$@$$! I$ $! I$$$! I$I$$!!I$I$$!!I$I$$!!kꨯIIH!5m&kR'P8XXZ -Ni8 /IyP+9 qw+ȱ4+p{7 4/@$DZǩ4/ DZǩ4-$DZ4 DZfq43 $DZ3%X$DZ!`PX\@$H$!bx^I$I$ A I!A?I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d !I$I$d!d @$!bx! I$@$!II$!?/!I0C&E)!bzH$I$!I$A$!I$I!!I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d $ H!!!XH////1q7q%`5%--)E----3+p p JDL$E*VVD1ێmDZ UD1~lDZW\D3DZUUUP4H$H$DZTTTUI$I!!I$I$E)$!`I$!b 5I$I$e)I$I$d!d @ ! !  !@!I$I$d!d I$I$e)I$I$e)@$@$!b`X`  !b 5 H$!@$I$!z^_I$I$/? !*I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$E)!8I$I$e)I$I$e)I$I$$!!I$I$$!!WUI$I$d!d  !@ !5I$I$d!d I$I$E) @$!I$I$E(CI$!?I$I$e) $I$e)I$I$e)I$I$e)dB2 I$!$!I$I$e)$C&C$!b`I$I!b5 @$e)@ $!pI $!b5@$!bI E)$!@$H$$!!`@$I$!I$I!* !I$A$!`2 I$!P@I$! $I$e)I$I$$!!I$I$$!!I$I$e)I$I$e)I„$$!b8$H$e)I$Ie) 1@ 1 E)$!$H$$! I$I$!!dB2$!bP@I!A!bI$I$1I$I$E)$!I$I$E)$!`R6PX$) )%79WEX/---)` Se-+--%"H$@+K%h%)TP@I$I$1I$I$1I$I$1I$I$1$E)@P` !bH$I$E)!I$I$$!!**I$I$$!!I$ E)! E)@I$IȐ$!U@$@ 1I E)$!I$I$1I$I$1I$I$1I$I$E)$! E)!H$I$e)!I$IE)!E)! $E)pI$IE)5յ/I$I$1I$I$1 0E)!zI$I!bUVE)I$I1I$E)!$I$E)! %)@I$%)U$E) )I$I$1I$I$10E)`E) I 1 H$E)!H$I$E)!I$I$E)$! $I$I2E)!  H$E)!H$I$e) I$ $!I$I$$!!I$LH$!bUV!I$E)  E)$!/I$I$E)!I$I$1I$IE)!ۺ5h&E)b`XXlI$E)b 5H$HE)\WTE)E)!I$I$)(I$I$)(I$I$)(I$I$1 I$I$1 $)( I$1@$I$1I$I$1I$I1I$e)E)UUIe)E)U $e)E)Wl۶mE)b@ m۶mE)bH$I$E)$!I$I$1I$Ie)$![&[E)xxlmE) I H$E)! $I$E)!  $L$E)! I!IE)!I$IE)$!** .k`%)*)))%nr%yXKk/+ `Ni  3, 43DZ3@$@ DZIB$@e)$!I$e)E)/ @$e)E)۰5e)!` @$e)E)I$I$e)E)I$e)E) $e)%) e) @$e)%) $e)%)$e)%) $e)%) $e)E)*@e)$!Ie)E)e)hIDIe)b??7$Ce)E)d$I$E)bZVX6E) I$ke)!IimE)!H$H$E)!I$I$E)!I$I$e)I$I$$!!I$I$$!!*I$I$$! *I$I$$!! `N$e)WI$e)!e)!0He)`I$IE)bI$e)E)I$Ie)E)I$I$e)E)@ E)!@$Ie)$! $e)E)@!e)$!IҤhe) (e)E)I$I$9I$I$9I$I$@!@e)@ID E)bUA1E)뫫I$@1E)UWzI$I$e)E) $I$e)%) @I$e)E) I$@e)E)I$I$e)E)?e)E)@/I$C1E)UW e)E)I$e)E) *I$e)E) R")IE)I$E)^xI I1% I$@ 1e)I$I$9I$I$9I$I$9I$I$9I$I$9I$I$1E)I$I$@!I$1E)I$1E)dB$ 1E)I$H$e)E)H$K%)b\WT$&VN1 I$L$1E)UUWTI$I$e)E);$I$1E)`1E)I$L&1E) I$1E)1E)@$I$1e)I$I$9I$I$9I$I$9I$1E) H$e)E) e)$!I$I$9I$@ f1!I$I$E)!*0`$%)@PT-Vi1 *@$I$Hf1IIPH** qiP/}7ef`+({ %y*/4 f*1"v63)ݒ$4-I$DZ*4 e)@4$H$f1@PTUI$I$1e)@ H1E)⪪k6ke)!x訠I$I$E)!UUW^ I$E)!-U me)!+1E)I$I$9H$1E)I$I$@! I$1E) @$1e)I$I$9I$I$9  1E)I1E)@ $1E)I$I$1e)@ @!L$@B E)!V\PBI$I$E)te)! %9If1$@$'9#`e) 1e) I$I$'9#I$I$9!1e)I$I$1e) 1e) I$I$'9#I$H$1e) 1e)M$k51E)WW^zɖI$1E)UUI$`01E)UUVZtI1E)-UI$A$9I$I$9I$I$9H$I$1E)II$1E)/1e)I$I$'9#I$I$'9#I$@$9II$1E)l6`1E)j 1E)I$I$9,1!ꪨ$I$2e)jI$!bU tf1! +I$I$9 A$1e)I1e) *h@1`IDe)bUI$$9! 1E) I 9!I$HB&1E) 1E) *I$I$9!I$I$'9#I$I$'9#X `1E)zI$I$E)$!I$I$E)$! E)!jH$H!bUT f1 P(1p`1a I$I$'9#H$@ 9 I$1E)*1e)1bI$I$'9#r9Hf1bX0 1 I$I$'9# @$1e)$@ 1E) *dB2 1E)"-:P$E)`X ! %I$I$d!d $!E)! )ݐ1E) ++Ŗt11 5I$I$9!1%)@$@ 1%)I$I$9 11I$I$g9*I$I$)I)H$@$11 I11??I$I$g9*I$I$g9* 11I$H$9! 11 `2 1f1jښ Ն1E)\Xp1t1E) --?I$K$1E)VTJP1E) `2$I11\|) Hf1@I$I E)bU1e) 1e)*I$I$9!H$H$1e)!1E) *E1 I$9 9 1e) I!11I$I$9 I$I$11/h $@,P1_ww%y@-55/(7sE+-1&  +410DZ ?4I$IDZUUU=?4I$I$蹧44I$I$%44I$I$%44I$I$%?4I$I$DZU?U44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4/@DZǩ84, m蠀/ --i%q`@"O$~5f%)UV^`I$I$E)$!I$I$1I$I$1E)!H$E)!E)!I$I$1I$I$10$!@ %)$ $!  I$$e)II$$!!ZI$I$$!!I$I$$!!I$I$$!!xI$I$$!! H!5%[P8P qRi8) " 1S%y/A"w۷{蹆/D-t۷cD,mI蹧D- ٶe'蹧?_D,Ob§UJ  Eq D-ْ$ 2fhH$O$TTWUH$!axI!+!I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$H$!AI !A/ H$I$! !E)///2dB&E) X^VWII!H$I$! !* I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d $! @H!ivXH////17qE`----+1Of----3, 4J$DZETT4 DZE@D۰m,dE*D3vlDZ=UI$I$! !I$I$E)aI$I$d!d @ !bI !b5/I$I$e)I$I$d!d I$I$e)I$I$e)@$!bp`II!b%)I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d I$H$!zzI$I$$!!II!I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$!a!I$I$e)I$I$$!!rZ^I$I$E)I$I$e)@$!`I$I!bյ.I$I$d!d  @$!zI$I$!II$!?/I$I$$!!I$A$e)I$I$e)I$I$e)$$!I$I$e) e)I$H e)II $!!$@I$$!b V I!$! /I$I$e)I$I$e)I$IE)$!A$H$$!!$H$!I$I!/!$A$!  $H$$! I$I$e)$@$$!`X\ ! I$I$$!!*I$I$e)I$I$e)I$$!!$H$e)I$I$e)Ie)I$I$1I$I$1$@$$!!I$I$$!!/  A$$! I%)$!I$I$1I$I$1I$I$1 @$E)!ɐ IdP$!qw%yX/-%N/S%y+/-/&dJ +)/"# ~z&K%Z-f%)TPP@I$%)$!I$I$1`$%)hX!%)@$$! $!/I$I$$!! *AE)$!I$I$1$E)!I$I$e)E)$!I$I$1I$I$1I$I$1I$I$E)$!$E)!@$H$%)$!I E)!+I$I$E)$!*I$I$1I$I$1 $%)$! 1I$I$1I$I$1HE)!I$ $1 H$E)!I$I$E)!I$I$E)!*  E)!IH$!<, E)!/ I$I$1I$I$1`0 E)bx`ImE)5% H$I$E)!I$I$E)$!*I$I$E)$!*@$E)!@$I$e)I$ E)! H$E)!H$IE)!IE)! E)$! I$I$E)$!I$I$E)$!I$IE)!*I$E)!*$I$1E)b`I$L$E)bUU^p E)b @&`$E)xx IE)b-- I$I$)(I$I$)($)($I$1H$I$1I$I$1I$I1Ie)E)U+ e)E) -E)!bnIE)b&$I$1I$I1I$Ie)$!*I@&e)!.IBd$e)!$I$e)$!$I$e)$!I$I$E)$!I$IE)!I$E)!I$ e)$! mm۰me)!I$@$e)E) II$e)E)II$PE)pyw%yX/--&SE ---7(ywȱ410DZ 4 E)@@@I)(I$I$e)E)H$I$1&`0E)p\X`!@E) I$I$1)(I$I$)(H$M&E)VVPE) I$I$)(I$I$1 I$I$)(I$I$)(I$I$e)E)I$I$e)E)*4X%E)b`ppIIE)bՕ%$I$e)E)hl E)x@e) &I$e)E)$e)%) @@!de)E)\Ime)!m6e)!~zI&k `e)!I$IE)!$C$ %)ꪨI$I!UV !I$I$$!! $I$E)!mI$e)!*Wi$e)!ue)!+@!I$e)E)I$He)E)I$I$e)E)I$I$e)E) I$e)E);e)$!I$I$@!I$I$9I$I$f1e)ꪪI$I$9I$I$@!I$I$@! e)E)۶$e)! e)E)I$1E)I$I$e)E)I$I$e)E)?@I$e)E)?I$He)E)$@2dB&e)E) z\XI $e)E)%UdB&Ce)E)_^` $I$1H!e)E) I$@e)E)*I$I$e)E)I$1E) 1E)I$I$1e)I$I$9I$I$9I$I$9I$I$9I$I$1E)ꪪI$I$1e)$A$I&1E) $1E)$C2 1E)dH$ e)$! I$I$e)E)+[aɖ$1E)-I$H$1E)UWVI$I$e)E) I$1E)$@5f1`$ e)!I$I$e)E) ***1E)I$I$9I$I$9I$I$9I$I$9@$1E)I$I$e)E) 1E)I$I$9Le)E)Wk6؊mE)bX`Id H=I$I$PHUUUiv`H/{7EX/+(yrT%y/+ 1!1in + 4,ym4 41ImDZ43IDZ*4 DZ1@4@$I$DZe)PTUUI$I$1e)I$1E)1e)[-`1E)Zzm6kE)!xI$I$E)!UUW^ I$E)!U!If1$!+I$ 1E)I$I$9I$I 1E)I$I$1e)@$I$1E)I$1e)I$I$9I$I$9I1E)I$I$1e)I$I$9 4@f1!xxtIe)! 5% I$`$e)!UV\pI$I$E)!UU ِn1!**1E) 9I$@ 9I$I$9и1(I$I$9!I$I$9!@ 1e)I$I$91e)@1e)I$H$1e)`0I1E)ꪊI$L&e)E)UUV\ 1E)ymI$L$e)E)UUWT!1E)I$I$9I$I$9II$9I$I$@!I$1E) +I$I$'9#I,9f1a`dAXf1b %I$I$1e)I1E)I$H$9I$ 9I$I$1E)ꪪK%@,e)!I$! I$e)!?$1$! **II$1e)@$1e)1e) I$H$1e)1E) I$I$9!I$I$9!@ 1E)I$I$1E)*%J$1x\^`11 I$I$'9#1e)M&k51E)W^^zI$I$E)$!I$I$1H$E)!`S1$!/'9#I$I$'9#1e)@1 1E) 1E) *I$I$9!I$I$'9#@ 1e)I$I$1E)*1e) 1e)II$1E)*@$@ 9!j9X&1xx I$!b +.I$I$d!d  I$E)!f1$! /$A$1e) I$I$9!I$I$9!II$11***I$H$11 11 ?I$I$g9*I$I$g9* 11I$I$9 11I$I$g9*I$I$g9*`& 011XXx`IdI$115U@  )I)ђ1E)I$I$e)E)**r"$01E)XpɐtI1E)-?I$ 11룃$2 1E)e)E)1e) I$I$'9#I$I$'9#@  1e) I$1e)H$Nf1bWV0L1!I$I$9!H$@$1E) 1E) *$9 9!B H11BB ?q{pE1 + Rwwfi /-/`JSf++-4-@ RDZ44I$I$%44I$I$%44I$I$%44I$I$%4$@$DZEPPP4DZE44I$I$%44I$I$%4 IDDZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4IkE(41lDZ3)# xࠀ-#iEA@I$J&f%)UUTXHE)!H%)E)!L„%)(I$E)$!$E)!$@$E)!C&LB&!aؠ !A I$I$$!!U?$I$I2$!@! I$I$$!!pH$! * $!$!n͖mP -  !XH//yW1q%X--(1SE-- 3)1Rd -) 4120%41%4/P4DZǩ4  DZ%i@4-Ib۶ DZ44&`pXI$I$AI$I$A  ! I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d  @$!`X! I$I$E)a$@$!`I$I!**)  A$E)!{zH$I$! I$!I$I!**I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d !*I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E) !H$I$!H ItI`P%qEi----, f--) 4-!` DZ44I$I$%4 DZE@@4IDZE4 DZ@@II$!+ !I$I$E)I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d  !H$I$!ZVUUI$I$!UU ! I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$E)I$I$e)@!(I$I$e)I$I$e)I$I$E)$H$!b@PT !bI$I$e)I$I$d!d  !H$I$!^^WUI$I$!U$! I$I$e)I$I$e)I$I$e) $!@I$I$!U,$!I$I$e) I$e) $!!@I$@$!bWްI$!- I$I$e)I$Ie)  @$$! $@$!I$I$  !I$!/  A$E)!I$I$e)I$I$e)@ $!p$!I$I$e)I$I$e) 1`$I$!\V\ ! I $e)Ie)I$I$1$!@I$I!b&UI A$$!! I$I$$!!**** E)!I$I$1I$I$1 @$E)!I$I$e)I!IP%)UUU 1wiP/-- pS7wfq/---0!)EyBBJ/IEy+# fx!I$Z-f$!UTP@I$I$E)$!L& %)\x ! I$H$!b\W\I$I$b5U$E)+ I$I$1@$E)!@$I$e)I%)$!I$I$1I$I$1I$I$E)$!I$I$E)$!$E)!H$I$e) E)!I$I$E)$! I$I$E)$! E)!$H$$! I$Ie)I1I$I$1I$I$1I$A$1 I$I2E)! E)E)!jIE)!&UE) @I$E)b׿(E)!I$I1I$$E)!$I$E)!I$I$1I$I$E)! $E)! $I$E)!I$Ie)  I$e)H$I$e)I E)!/E)!+I$I$E)$!I$I$1I$IE)! I$E)!*$I$1I$I$1I$I$1I$I$1۲ ۶fE)bI)(E)!E)!@$1@$I$1I$I$1I$I1I)( )(@$e)$!$I$e)$!I$I$E)$!C$I E)`IE)b7IHd$e)E) XU$&I$e)!`$I$e)$!I$I$E)$!I$IE)!`$E)b8Ie)$!* X$I$E)0\_0mE)H$e)E)WU H$e)E)zWUI$)(H$I$1I)(I$I$PE) pSywqP/- 1Sf$q /--1"Ns ++-41ِ DZ **41X,,DZ1I$I$E)UUUTI$I$e)E)II$e)E)me)!Ie)%)Ie)%)Ie)%)I@![ e)Ie)%)I$e)E)I $e)E)Ie)%)I$H$e)E) I$I$1"I$e)E)#@e)` e) I$Ie)E)#ɒIE)I E)7I$I$)(I$I$)(I$I$e)E)/I$I$e)E)$I$e)E)I$e)E).$e)E)I$I$@!Le)$!me)!~mv E)!UUUTI$IE)!]I$I$$!!I$I$d!d I$I$d!d I$I$d!d жm$E)j@ E))te)!-e)%)I$1E)I$H e)E)I$I$e)E)$I$e)E)I$e)E) e)E)I$I$9I$I$9I$I$9 0e)$!I$LE)!e)!I$I$f1e)9e)`I$1E)WI$I$e)E) $I$e)E) $@e)E)`mh&e)!hX$@$e)! e)E)x-$e)E)}_x!I$e)E) UU !$e)!E)! 5 $I$e)%) *@ 1E)I$@ 1e)I$I$9I$I$9I$I$9I$I$9I$I$9@$@1E)  @!@$I1E)I$@1E)ꪪI$e)E)I$I$e)E)ٚI$1E)-UI$@1E)W^zI$I$e)E)//X$@ E)P\p Mf1 - LB2I1E)I$I$e)E) 1E)I$I$9I$I$9I$I$9I$I$9@ 1E)I$I$1" "%e)pe) %`$ He)UUUI$I$H$!$A PH**//EqP/  ywSRfi/ */1N f++4,M 43DZ44I$I$%4$DZf1@P4H$I$DZf1TUUU1e)I$H$9I$I$1E)*1e)@$1e)ka1E)^m6ۂmE)!X`I$I$$!!!I$E)! -ni1E)UI$I$1e)I$I$9I$I 1E)I$I$1E)  1E)I$I$9I$I$9I$I$1E)ꪪI$I$1e)9I$I$f1e)ꪪe)E)[`e)!I$L&E)!UWVX I$E)!U AL9e)p`OĆ1 / I$1e) f1 @I$IE)W1E)+)I$I$9!I$I$9!H$@ 1e)II$1E)**1e)@$1e) $I$1e)*[5:l1E)^ZI$I$e)E)UUW`$1E)V[im@$E)`T$IIf1 I$I$9I$I$9I$I$1E)ꪪI$I$@!1E)P)@f1bpIe)b5 H$I 1E)I$I$1e)@$ 1E)I$I$9I$I$91E)~ꪪI$M&e)!I$I$e)ِIe)!/?I$I$1E)@ 1e) 1e)**@$ 1e) I$1e)**I$$9!I$I$9! I$9!L$`B21e)Z" 1x1 I$I$'9#I$I$'9#`1E)zI$I$e)$!I$I$E)$!I$dE)!E)!1E)I$I$'9#I$H$1e)L$HD1VW\I@f1 II$1E)*I$I$9!I$I$'9#I$I$'9#I$H$1E) 1E)I$I$'9#I$H$1e) 1E) L$Hن1b^^|IɊmE)b I$I$$!!I$I$d!d ! E)!+1E) +- 9 I$I$9!I11*@ 11II$11?/11I$I$g9*I$I$g9*I$H$11 I11 /?I$I$g9*I$I$g9*11@I$I$9!P11 LB& 11K$X%1E)VTXp隬ɐ1E)Ʌ ?$Id$E)!TAt1!@$ 9 I$H$1E) I1E) //I$I$9!I$I$'9#I$I$'9#I$H$1e)R4I1!X$I$E)bTW\PP1 @  1e)II$1E)**@$H$9!I$9!$@$11 .7 X1%%pwE`/-)`SE++/3)`J)S )-410DZ 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4IDZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%41X,`DZ3&k xࠀ,h%1pI$I$f%)UUUTH$E)!zI I%)&6HI$E)!H$He)I$HE)!_I$E)!UI$$$!!I$$$!! `I$I$$!!I$I$$!!pI$I$$!!)I$I$$!!I$I$$!!*uUI$I$$!!UUI$I$$!!UI$I$H@iS6e`PywS7E`--/,1Nd f----3, 44I$I$%44I$I$%44I$I$%4-DZa4,@ DZ@3`'L$DZ!X\VWI$!^I$@!W!I$I$E)I$I$E)aI$I$d!d I$I$d!d @$H$!pXX I!a -/I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E) !@$I$!a(!H$@ !apI$I$ a / $!H$I$!bx\ZI $!A/  &dB&$!I$I!I$I$E)a !* I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d  !I$I!I$I$E)I$I$E)@$!p! I$I$E)$@$!I$I$E)aٖm6lH!X1`P---- 9S7qfi-----p--4/ DZ+++*44I$I$%44I$I$&44I$I$%4  DZ@@@@I$I$ bUUT ! I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)@$H$!`zZ^I$I$$!!I !)*I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$E) !I$I!bZj*!b0I$I$d!d I$I$E)@$H$!jz^WI$I$bI !+I$I$$!! I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$A e)I$I$e)I$I$e)@$I$e)I$I$e)I$I$e)I$I$e) $E)! I2dB&$!I$I$!bVUVI !b* I $$! H$I$e)II$e)H$I$$!!I$I$$!! * I$I$e)I$I$e)I$I$e)H2$!a@I$!b,U$I$!1I1@$$! I$e) $!I$I$$!! I$!I$I$1I$I$1 @$E)!I$I$e)IE)!I$I$1d'`) ))`.sEP ++(i.Fm1%y%551)v# uj,#h%1@I$J%f$!UUTPI$I$e)$!@P!bLHE)* I$I$1$H$E)!I$I$e)IE)$!I$I$1I$I$1I$I$1I$I$1  E)!I$I$$!!  E)!I$I$E)$!I$I$1$E)!Z@$I$$!!I$IE)! E)!I$I$1I$I$1II$E)! H$I$E)!%)@IE)bU$E)!E)!.I$I$1I$I$1I$I 1I$I$E)!I$I$E)!E)$!$E)!$I$E)!I$Ie)II$e)I$I$e)I$ E)! E)!/ I$I$E)!I$I$1I$I$E)$!*I@$E)!*$I$1@$E)!\E)!I$I1I)($ HE)!L$L$!bTUTmE)$I$E)!I$I$E)$!I$IE)$! I$1I )(H$E)!$I$E)!I$I$1I$IE)$!I$E)!*I I$e)$!*$I$e)$!I$I$1۶mE)@I$%)b,U$IE)! $e)E)W IE)!@I$`E)bU8m۶mE)@E)!I$I1I$Ie)E)UUU @$I$E)bTUT۶ 0E)b@e)E)_*e)E)-I$I$e)E) (1`P---7qS7wfi---p Rf+4-` !RDZ41``DZ1H$H$e)TTTPI$I$e)E)I$$1"e)b@ȐdIdE)bUe)E)@$@!I$@!I$@!@!I$I$@!@$@ @!I$I1" @!I$I$e)E) @ e)%)I$I$e)E)**I$I$e)E)  A$e)E)I$I$1"I 1" @!He)E)I$I$e)E)I$$e)E)I$Ie)E)몪 I$Ie)E)I$I$)(I$I$1  $I$e)E)I$e)E) @۰me)!e)%) e)$!Ie)!I$ۂme)!U_I$I0e)!UUU@$!PI!=I$I$d!d $I$e)! UUPI$e)!= e)!@e)E)I$1E)U_$)R$E)@PT0E)I$e)E) Fe)I$I$9I$I$9I$I$9I$I$9@$@!p$r";e)bXVX@e)1E)ꪫ$ &1E)U^^^ )(H$E)!TP@Im۰mE)!!I$e)E)h$I$1H$1$C$ e)!jꪠI IE)!5$ e)E)I$I$e)E)!I$1E)H@Ff1$! I$I$9I$I$9 1E)jI$I$9I$I$9I$I$1E)H$H$1E)!I$1E) 1E)ꪪ$C$ 1E)I$H e)E) I$1E)-uWdB&!1E)^zk-I$I$e)E)?I$I$e)E),$@!1E)H0H1E) $H$e)E)I$1E)I$I$9I$I$9I$I$9I$I$9 9"II1 j I15+*$H$Hf1I$IPH+kwv`P-ywwE`-+) E/ C(}ڤ}蹆C'K&EVVX4 E)4B$e)PT4H$I$DZ1TUUUI1e)I$I$'9# 1e)'f1X@f1DIDe) ?W I$9d2C1E)H&$E)!I$I$d!d I$E)! 1E)I$I$9 I$9I$H$1E)@$1E)II1E)I$@$1e)I$I$9I$$1E)ꪪI$I$1"1E)I$I$1E)I$I$@![5ۊmE)!p@I$I$E)!UUUT E)!A %5a f1% *I$I$9I$I$9I$I$9I1E)I$I$9!I$I$9!I$I$'9#I$H$1E)I$9I$I$'9#I$@$1e)I$I$9L&01E)W^Zz I$e)E)UM$HdE)bVUT !ARf1 )*H$I 1E)I$I$9 f1@$I$e)b\WUDId15յ1e)I$H$1e) r$1Ve) I$1E)I$H$9I$I$9e)X4 e)!I$I$e)I$I$$!!01$! *)II$1e) @$1e) 1E) *I$H$1e) 1E) *I$I$9!I$I$9!1E)I$I$1e)1E) I$I$'9#I$I$'9#I$I$'9#K%X,1E)W^^zI$I$E)$! e)$! I$I$E)  I1E)1E)@$ 1e) I$1e)I$I$'9#I$H$9 1E) I$I$9!I$I$'9#@ '9#I$I$91e)1e)I$I$'9#H$@$9!k6X1E)^~xH$@$E)!V^ZzI$I$d!d II$$!! /Id1!+/II$9!I$I$9! I$11I$11 *$C&`B&11^\^ 11 I$I$g9*I$I$g9*@  11I$I$9 11 @$11 11 H$`B&11TTXZ-vM1E) *I 11/@,`1E)I$I$1E)?U9P=1!  @ f1$!/+**9!dB&$21E)I$I$1E)1E)I$I$'9#I$I$'9#H$@ 1E)$B$A1E)***dHR$1*I$I$9!I$I$9!I$H$1e)$!1E) I$I$9!I$I$'9#@,òeA)? Rwq$1 +-" N7wfq +/1 `Ns ++4/P DZ **+44I$I$%4/ DZǩ4IDZE44I$I$%44I$I$%44I$I$%4$DZEP4DZE44I$I$%4@$DZEPP4DZE4$@hDZEpPP4 0DZE4H$ETT44I$I$%44I$I$%44I$I$%4/j HDZꨠ1#c lz蠠(Z=;f$)Pp@h@$I$$!!`II$!! E)$!몪 $1I$$e)I$$e)I$I$e)H! <I$I$$!!A$I$$!!I$I$$!!_$@ !b` ! I$I$d!d IIH!ՕIIPH+MMX8>> 1uwwfi-+- f))+4/ DZ44I$I$%44I$I$%44I$I$%4 PDZEQ49DZ!`pH$I$!!I$I$E)I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d @ !` ! I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)!@I$I$!A ! @$I$!avvI$I$ ߿$I$!I$I!**$!H$I$! $I$!I$I!I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$d!d H$@ !AI !b--  !H$I$!I$I$!IIPHq iP--- 1pfq----/!pp -+++41ɐ DZ** 44I$I$%44I$I$%44I$I$%?2s"' @HXX@!I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$$!!I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d  @$!zI$I$I$I!U%!*  @$!bp ! 5I$I$d!d I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)!I$I$E)I$I$e)I$I$d!d H$I$!\WV!$H$!zZI$I$@I$I!bU*$!++ I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I e)$I$e)I$I$e) $!@$!a I  e) $C2$!H$I$!I$I!* !I$@$!H$I$e)I$I$e)I$I$$!!I$I$$!! I$I$$! I$I$e)I$I$e)I$I$e)I$I$$!!hI$I$!&I$I$e)I 1 $1I$I$$!!I $$! @I$$!  E)$!I$I$1I$I$1@$I$$!b ^W$! I1I$I$1I$I$1[ۺ H$! )%y@))-/%1wE--1%1QR!RDZ=1/II$*+1%#)z+h9`I$I$f!UUUTLB&$C!bTP@ $%)b% I$I$1$H$e)I$Ie)IE)!&%)x$!IE)!I$I$1$H$E)$! %)$!E)!*I$I$E)$!I$I$1 H$E)!~WH$I$$!!\WUUI$IE)!E) * I$I$E)$!I$I$1A$I$E)!I$I$1I$I$1I$I$E)$!I$I$1 E)!jI$IE)!ՕI$I$1I$I$E)$!I$I$E)!I$I$1 E)!H$I$$!!ָI$I$$!!I$E)!$I$e)I$IE)!IE)!+ I$I$E)!I$I$1I$I$E)!*I$I$E)$!*I$I$1I$I$1I$I$1I$@E)!W^"!@E)! I$I$)(@$I$1I$I$E)$!@$E)!I$I$E)$!I$IE)! ۶,E)!*`ݖlE) $I$E)!I$I$E)$!I$I$1I$I$E)$!I$I$E)$! I$I$E)$!I$I$E)$!*I$ e)$! Ie)$!e)E) $e)E)UKl۶mE)4I$I$1I$I$1I$I1I$)(I)( )(I$I$e)E)I$I$e)E)*X E)be)E) **I$I$e)E)I$I$e)E) *$H&E)axxMٔMPp7wE`---)SE+--3+p K 43DZ3@$@ E)PPP@(tE).I$I$1" $1"J)@"9E)a!XIe)b /%I$H$1"I$I$1"I$I1"I 1"$@!$@!$@!$@!H$I$e)E) e)%) Ie)%)I$H$e)E) I e)E)I$@$e)E) Ie)E) P$I$e)b0WV0E)I 1"@$H$e)E)II$e)E)* e)%)@!He)%)I$e)E)I$He)E)I$I$e)E)I$I$)(I$I$e)E) I$e)E)@ $e)E).@![le)!`I&e)!UxI$Me)!UU^I$I$$!!I$I$d!d I$I$$!!/UUUI$e)!UU0i$e)!UH$I$%)Xze)$I2 e)E)nH$LE)bUVIDIE)$@2e)$!e)E)I$I$9 0e)E)@``$L$E)!0e)! I$I$@! l $e) p$e) I$@e)%)I$I$e)E)I$I$e)E)/LB2$He)E)T` I$I$e)E)UUUPI$1IB&e)E)U^bI$I$1 $e)E)5UI$@ e)E)H$LE)!WVd]2'f1zZ@1f1 -@&X,1!!@f1! I$I$9I$I$91E)I$H 1E) I$1E)I!1E)@$I$e)b0WV0PE)I$I$e)E)/dB2 1E)z%I$I$1E)UUW\I$I$e)E) +I$1E)dB0$I1E)ꪫI$H$1E)I$1E)1E)I$I$9I$I$9I$I$9@ 1E)ꪪ$I $He)UUnIdH8  !XH/7%yP/+" ySd %q/+1 9n /+ =/}蹧J1{)DZV%UUD-@$ǹe1@PT$@!$I1E)1e)I$I$'9#I$I$'9#M"'hf1VXh e)  e)I$H$1e) I$1e) H$E)0W E)I$I$e)$ E)! @$1E)I$I$9I$I$1e)ꪪI$@1E)1E)1E)I$I$9I$I$9H 91x`IXe)-1E)I$I$9 e)%)`$E)!Xp@I$I$d!d ېmte)! /e)$!I$I$9I$H$9I$I$91E) I$I$9!I$I$9! 1e)I$I$9 1e)H$1e)I$I$9$CH1E)ꪪI$L&e)E)UVTX!" e)E)aII$I$e)E)UUUTmv1E)I$H$91E)ꪪIXe)U$ e)  1E)1$!@I$tQ1bWVڠ1I$If1 I$I$1e)*9j:f1xh3 E)J I$Ie)b7& @!M&k5E)!I$I$$!! Ie) /?1E) 1e) 1e)*@dž1$!$A$1%)*I$I$9!I$I$9!I$I$9!H$@ 1e) I1e) **I$I$9!I$I$'9#I$I$'9#1E)zꪪI$L&e)$!II$e)$!**H$@ e)$!I$I$1 n1E)I$I$'9#I$H$1e)1e)@$ 9II$1E)**:1x$I$1(UUP)1 -I$H$9 1E) **@$1e)1e) 9! 1E)ࠀ$2 2E)!jI$I$d!d I$I$E)!!E)!+@$1E) +-9  9!I$I$9 I$I$9!ݰnm61e)1E)I$I$g9*I$I$g9*I$H$11 11 ?@$11II 11** 1%)I$I$9vi1e) I=1a`ۆmݖme)!ْ! 1E)a $Ae)E)5% *1E) $C&1E)I$I$@! 1E) /$1e) 1e) 1e)I$I$9$@$1E)̆1` I17ՕH$@ 1e) I1E) **I$I$'9#I$I$'9#dB&$C1e)*1XIXe1 %5pSwE`+/-,`N/sE +/3)P R )43DZ43%4!qDZ-4)8DZP4)DZ44I$I$%4@$@DZEPPP4DZE44I$I$%4PDZEyP4pDZEy44I$I$%44I$I$%4-DZ44I$I$%44I$I$%44I$I$%4$HDZEPp4I4@E13;,$)hhx@@$E)!z$%) -I %)$!I$I$!! *I$Ie)I$Ie)I$$e)H$!6<I$I$e)I$I$$!! !@!I$I$$!!ꂪI$I$d!d I H!5I PH* yww7qP--//"X+5551#N -)++41aDZ 410%44I$I$%4؀DZap4 @DZE4p'z$XX\WII!I$I$E)aI$I$d!d I$I$E)I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d @!I$I$d!d H$$!a0I I$ I$I$!շ !  @$$!I$I$!I$I$E)a !** I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d $@$!I$I$E)aI$I$!~IIPH/+++ 11iP--// 1S1f%q----6#]c7wsDZ# -)=1ۂ蹧44I$I$&4 DZE@4DZE4p$@$!XPPPI$I$E) !@$I$!b VU!bI$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$E)H$I$!z^^WI$I$$!! !-*I$I$d!d H$!pI!b% I$I$e)I$I$E)I$I$d!d I$I$e)I$I$e) !@I$I$!b*W!I$I$e)I$I$d!d @!0 !I$I$!^WUUI$I!UUյ! I$I$$!!  I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!  I$e)I$I$e)I$I$e)@$$!bppI %)b55- &$!`@$I$!I$I!/!I$A$! A$H$e)I$I$e)I$I$$!!I$I$$!!*I$I$$! I$I$e)I$I$e)II e)I$I$$!! I$I$$!!H$1H%)$!$E)!@$I$$!! I E)!H$I$E)!I $! I$I$1I$I$1$%)$!I$H!bWV  $!b I$I$1I$I$1I$I$1$A$C&P$!UUU Rnvh( *) pSwwfi +--,`'S ++4+mvovDZ-3-]6`DZ1# z([1Њf$)P@I$I$E%)UUUT %)$!$H$E)$!I$I$!  1I$I$1L$`0$!bX\p E)I E)!$H$E)$!I$IE)!E)!I$I$E)$! E)$!$H$E)!z^UI$I$E)aI$I$!!5 E)!I$I$1I$I$E)$!* I$I$E)!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1 E)(I$I$1I$I$1$E)!@$I$E)!I$I %)! H$E)!I$I$$!!* IE)!+I$I$E)!I$I$1I$I$E)!*I$I$E)! I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1 I$E)!I$I$E)$!I$I$1I$dHE)!ֺ*!AE)! @$E)!X%[E)`p  E)%5$I$%)!II%)$!I$I$1I$I$E)$! I$IE)! IE)! )(@$e)E) _U$I$e)E)WUUH$I$1I$I1I$)(I)(I$I$1 I$I$1 I$I$1 I$I$1 I$I$1 I$I$1 I$I$e)E)I$I$e)E) ?I$I$e)E)I$I$e)E) *I$I$e)E)@E)`@I$IPE)7qw%yX/-%N/S%y++--1&`  ++410DZ 4 @%)@@@IĎ) E).I$Ae)E)I$I$1"e)!@iE))I$I1"I$I$1"I$I1"@$@ @!I$I$1"I$I$1"I$I$1"I$I1"I 1"H$I$1"I$I$1"@ $e)E)0I$1"H$e)E) $1e)p$Ae)a !A$Ae)E) @$I$e)E)I e)E) 0 e)E)`p@Ie)$! * I 1"@$I$1"@!I$I$@!I$I$@!H e)%)I$e)E)I$I e)E)I$I$e)E)I$I$e)E)  $I$e)E) I$e)E)@!de)!I6 e)!WzI$Me)!UU^I$I$$!!UUUT !@I$I!b7  I$e)!5Une) Xe) 0I$@e)E)-:b9e)hxPE) - $e)E) e)E)`@Ie)!/*I$I$@!I$I$@!&E)b`` `e)-- I$I$@!@1E)~꫿I$@ e)E)I$I$e)E)>ömk$E)!0$ E)!I$I$1@I$e)E)PUI$H$e)$! I$e)$! *`!e)$!  h$ E)ax  $Ie)- $C$1E)ꪫP$f1 V1E)I$I$9I$I$9I$I$9H$1E)I$I$1"r,Y e)b i6`1E)I$@ e)E)I$I$e)E)mm$1E)U$I2 01E)__^{I$e)E)+UI$f1E)1E)I$H$1E) I$1E)1E)I$I$9I$I$9I$I$9 He)I6 ۰P8 qiP/w7fa/+,1N E++ ;){vi蹦43 DZ 4$H$ǩ@$1E) 1E)ꪪI$I$1"$ 1E) @$1e) I$1e) I&-1!h4IO1! %I$I$1E) I$1E)I$H$9Nǀe)aV !M 1!骨H$@ E)!I$I$$!$A!E)!**/1E)I$I$f1e)I$I$1e)몪 e)$!`$LB&%) h$I$1b 'UI$I$9f1x K@e)  I$1"1E)I$I$@!H$@$e)E)L$`0E)!II$E)!?۰ ݖme)!9I$ 9I$I$9II$1E)**1E) 1E) k$1 V 1E)I$I$9H$@$1e) 1E) Mf1 )[- l1E)~zI$I$1H$2e)E)TPcM I$e)E)5U$I!1E)I$I$9I$I$9I$ 1E)ꪪI$I$1e)'9#H$H 1e)I$I$9I$I$1E)@e)!p1EI$@1$! e)E)I$I$f1e)ꪪ 9&e)`XI! %%I$I$$!!f1$!* ij&f1hX1 L$p,Yf1!VV h;v$E)bZ\`)1 I$I$9!I$I$9!I$I$9!I$I$1E)1E) I$I$9!I$I$'9#I$I$'9#k5X1E)^^z$E)`xK e) %5I$I$1 I1E)U'9#@$1e)r$f1Z^` f1 I$H$9#ْ*f1xI1իI1- @ '9#I$I$9@$1e) 1e)I$I$'9#H$H$9!k&X51!I$H$$!!I$I$E) I$E)!ِɖt1! +/I$9!@$H$9! I$9! 9 P5`"51`x1ɑ1 --I$I$g9*I$I$g9*@  11I$I$11?I$I$g9*$H$11I$H$9!I$H$1E) 1E) +//r"'Z̆1X\pKHE)a  6aĆ1E)?m&h1E)TTX 1E) %k6@ 1E)!$ 1E)II$1E)/ 1E)I1e)I$I$'9#I$H$1E)! 1E) *"I$I1E)@1&1e)*I$I$9A$I$9!I$I$'9#I$I$'9#h%@34Hf15pq%yP+/% R7w%y+/1"`n +-41ِ DZ **4,HDxDZ<44I$I$%4@$@DZEPPP4DZE44I$I$%44I$I$%44I$I$%4$@DZEPP4)`DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%43@ DZ4(($!@@@@$I$!! @$ $! A$I$$! I$I$1I$1I$@$e)I$I$e) @$e)@$I$e)I$I$$!!  $! ** ! % $!  !' H!  !XH/+yww7%yX---/&1 E--- 1) ` 43DZ43 %44I$I$%4 DZi4l<)rpH$I$! !I$I$E)I$I$d!d !I$I$E)I$I$d!d I$I$d!d  H$!A !b I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d H$I$! I$!I$I!*I$I$d!d H$I$!_I$I$!I$I$ x!b $!` ! -I$I$d!d  @$!`p` I! ///I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$d!d @$!xH$I$!I$I$!zIIHI PH* yW9qP-///"1%y---1&p )+ 410DZ ?! ۺ-蹆*j?,$ȹE@`4PDZE4@$H$DZ!PPTTI$I$d!d I$I$e)I!V8I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d $@$!zZI$I$$!!II!I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$@!bUT!I$I$d!d I$I$d!d I$I$E)@$H$!p^^WI$I$$!!I !I$I$d!d I$I$$!!I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)$!H$I$!b8U$!I$I$e)I$I$e)I$I$e) @$E)!@$H$!bp\xI$I$!b !I!/  $@$$!!I$I$$!! +/I$I$$!!I$I$$!!I$I$$!!  I$I$e)I$I$e)I$@$e)A$I$$!!I$I$! I$I$$! I$Ie)$%)$!@$I$$! II $! ** @$I$E)!I e)I$I$1I$I$1$E)$!H$I$e)I E)!I$I$1I$I$1I$I$1$1H$I$E)!NIw`$)))pSywEX+/--+N/sE+/1+mDZ3)$:DZ^1&>oZZ)3 ৩f~zbc"%mf%)PP@@$I$e)$@$$!b`P`!I$!I$I$1I$I$1I$I$1$E)!@$I$E)!IIE)!I$I$E)$!*I$I$1 E)!j@$I$$!!@PVUI$I$E)aI $!!I$I$1I$I$E)$! I$I$E)$! I$I$E)!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!  %)@I$IE)bU$ E)!$H$E)!I$I$$!!I$I$$!!*@$I$$!!(**I$Ie)!$@$E) TE)!I$I$1I$I$E)!* I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)!I$I$E)!I$IE)!*I$ E)!* $E)! I$E)!ضmۺ&E)!V E)!^UUI$I$$!!TUUUI$IE)!IE)!!I$IE)!IE)!* $)(ض-E) @mɖdE)a5I$I$1I$I1I$1I)(I$I$1 I$I$e)E)I$I$1 I$I$1 I$I$1 I$I$1 I$I$1 I$I$)(I$I$1 I$I$e)E)*I$I$1 I$I$1 I$I$e)E)I$I$e)E)** I$I$e)E)I$I$PE)U 7Wy{iP//-- pS1wfq+/--/ ` R+++-41ɐ DZ **41X,,DZ@$e)E)I$e)E) I$$e)E)U$e)$! D&e)P$$e)$! I$$e)$! D2e) jDI$e)b8U$Ie)$e)E)(UI$e)E)I$e)E)@$I$e)E)I$I$e)E)6e)!X$I$E)bTUTD  e)be)@H$I$!? e) H$H1"I@! I1"I$I$@!I$@e)E)@(e)b@ I$E)bUI e)E) @!I$I$@!@!I$I$@!I$I$@!e)%)I$e)$!I$@e)E)I$I$e)E)I$I$e)E)?I$e)E)/ $e)E) I$I$@!k`e) I$e)!U_I$I&e)!UUUXI$I$E)I$I$$!!5UUUlI$e)! U`ݖte)!-$@e)$!m%K%E)bjPTP E)bI$I$e)E)I$e)E)R$e)T9I$I$9I$I$@!I$I$@!I$I$@!I$I$1E)H$1E)-:R(e)hpɐIE)b %%`$@e)E)Pm۶h4e)!$ E)! +I$E)! I$I$E)!* $e)$! I$I e)E)I$I$e)$!I$@E)W04I$Hf1 I$I$9I$I$9I$I$9I$I$9@$1E)IA 1"$I$1E) H1E)ꪫI$f1E)H$H e)E)WWVx)i׶1E)IH Ie)E) I$I$e)E)"$@$e)E)-1E)ꪫI$H$1E) I$e)E)1E)I$I$9 آ@f1P8 IvmXH/+y7%X/+&qRT %y-+ 1")N ) 4 e)@4$I$ǩ@p %) -m$e)! /e)!@9 @!I$I$1E)I$I$9f1!X`af1!5I$ 9I$I$f1e)A I$1E)/I$I$1e)A$I$1E)ꪪL$`f1E)UW^zI$@ e)! I$E)!vme)! *$I!1E)I$I$@! 1E)ꫪX `E)b`@@I$Ie)bUUUI$A 9I$I$9I$I$f1e)ꪪI$H$1"I@! 9I$I1"$ e)$!I$L&E)!~~ IE)!/? e)$!I$I$f1e)I9I$H$1e)I1E) 1e)ȪI$P(f1UT0@1I$H$9II$1E)*$f1@p@D1%% I1E)ꪪM&[-1E)W_^~ I$e)E)UI$H$e)$!! f1E)I$I$9I$I$9I$I$9I$I$1e) I$1E)1e)I$I$1e)I$I$9I$I$f1e) I1E)I$H$9I$I$9e)`ے e)I$I$$!!ɐdI$e) /L"&Ce)TP A$If1 I$I$1e)p4$`1XJ$f1VU1I$I$9!I$I$9!H$@ 1E) I$1E) **I$I$9!I$I$'9#'9# C$I1E)$#" e) j R$IE)`&0e)E)\X``I$I$11E)I$I$'9#r"If1\  If1!@$A$9II$1E)*I$I$9!I$I$'9#I$I$'9#I$H$9 1E) *I$I$'9#I$I$'9#I$I9!@01E)dB2 E)!zI$I$E)I$I$E)$!e)!/??@!1E) @$ 9!I$I$9!I$I$9!1E)0N$G1%)* 11$11$11I$H$11 11H$ 11@$@ 9 @$@ 1E)𠠀I$I$1e)$)4I1!@IĶ)1 UI$de)E)UV@;4R 1E)ZzKII$1E)5U@$@ 9  1e)I$I$@!1E) I$I$'9#I$I$'9#@$ 9II$1E)*I9 I$H$9! @ 1@P@If1b %% $11$!j1!I$I$'9#C2$C1e)RqהhE1 )%pSqfi/-- Sf --4,MߔN 43DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4$H$DZETTT44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4% DZ@4b;c!@jj$ %)`!@%) H%)$! Ie)@$@E)$!I$I$e)$I$ $!8I$I$$! I$I$$!!I$I$e) !I! I$I$d!d I!%H$!iv`H/yS7E`--+1RdE--++3, 43DZ44I$I$%4x$DZE\T4 (P DZfYB1x$N$ǹ!\WWUI$I$!!I$I$d!d $@$!pI$I!A./I$I$d!d I$I$d!d I$I$d!d H$!\pI!b I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d  !I$I!I$I$! !*  @$!I$I$AI$I$  I$I !AI !A// @$!`pI$I!A// I$I$d!d !I!- I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$H$!AI$I$ b %5I$I$ pX\xIIH PH qW1%yX--%1SE----1( p ----43DZ4%p DZ@4DZf4)DZ@@?H$N$!TVVVI$I$d!d I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e) @$!p\! I$I$d!d  !H$I$!^WUUI$I$!UUյ!+I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$d!d $H$!p||I$I$ I$I!յ @$!@P`I!b%%I$I$$!! /I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)H$!I$I$e)I$I$e)I$I$e)I$e) @$!I$I$$!BI !/ I$I$$!!I$I$d!d I$I$e)I$I$$!!I$I$$!!I$I$$!! I$I$e)I$I$e)I$I$$!!I$I$$!!*I$I$e)I$Ie)A$H$e)I$I$$!!IIE)!A$H$E)!I$I$! **1I$I$1 %)$!@$I$E)$!I e)I$I$1I$I$1I$I$1%)b,H$I$e)I e) IP$!pq%yP//#7%y+/-mۧf,#{),%$D$C2 (Ш$EypW c_fip K2&q$)VX` E)!o!$!I$I$1I$I$1$E)!H$I$E)!I E)!I$I$1I$I$12E)!^ I$$!$!IE)!I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$1I$I$E)$!I$I$E)$!I$I$E)$!*I$I$E)!I$I$1I$I$1$E)!@$I$E)!I$I$%)!I$H$$!!I$I$! * IE)!I$I$E)!*I$`$!bUT!@E) I$I$E)$! I$I$1I$I$1I$I$1I$I$10E)$I$E)z^IE) =-I$I$E)!I$I$E)! IE)!*$E)!$I2E)! I&E)!^UI2I$E)I$I$E)aI!$! I$IE)!ի*I$ E)!I E)!*@$)($I$1I$I$1@ E)b`IdɰE)a5 )(I$I$)(I$I$)(@&E) p\E)  I$I$1 I$I$1 I$I$1 I$I$1 I$I$1 I$I$1 I$I$e)E)*I$I$e)E)I$I$e)E)I$I$e)E) I$I$e)E)I$I$e)E)$e)E)U$e)E)zUI$e)$!`Wvw`1 **)pS7wf`//- Sf --4-` !R41``DZ1H$H$%)TTTTH!$E)!I$I$E)$!I$I$E)$!H$H&%)b\W\@%) I$I$1I$I$1I„%)<I$I$1 E)!@L$E)! IIE)!I$I$1 0E)!zz$ E) 5Xm۶mE)bI$E)! HL$E)! mE)@$$e)E)U A$e)E)*@$I2e)$! e) @!I$I$@! e)%)IHe)b@!I@! @!I$I1"I$I$@!I$I$@!I$I$@!@$H$1"@!I$I$@!I e)E)I$@e)E)I$I$e)E)I$I$e)E);I$e)E) $e)E) e)%)I5e)!WI$Ke)!UU\I$I$d!d I$I$d!d I$E)!/nE)@  @!I$e)E)$I2$ e)E)I$[ E)UT@ IE)@!I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!1E)꫿Ie) I$I$e)E)E)! E)!I$I$E)!A I$E)!*I$H$E)!!I$e)E) UU$ e)E)-I$I$e)%)I$1E)1%)I$I$9I$I$9I$I$9I$I$91E)ꪪI$@1E)$I$1E) 1E)ꪫI$@ f1E)  e)E)p`@$I$e)E)UUk6Eӡ1E)W^[I$I$1$@!e)E) 1E)ꫯI$@ 1E)$A$I2e)! e1b7H$I$Hf1۰-2X8*jjj wwi@- yw fi/+/1N f++3  e)@4@$I$DZe)PTUUL$e)$!&%)x $!= I$1$!Ue)E)I$I$9 @!$I!1E)I1e)I$1e)$1e)H$I$1E)ꪪI$I$@!A 1E)I$I$9 C$H1E)d$`&E)!I$H E)! E)!!I$1E)UU1E)I$I$1e)H$ 1E)~ e)1E)I$I$9I$I$9@ 9I$I$1"@!I$I$@!@ @$@!E)!I$I$e)!!E)! / e)%) I$I$1E)H$I$9I$I$@!1e)* +P$Z-1bPTX`01 ̘%1hxI$f1/UA$I1E)I$I1e)I$I$9C$H1E)zI$L$e)E)UUTT e)E)AAI$I$E)!* L:e)re)!I$I$9I$I$1E)ꪪI$I$@!I$1E)H$I 1e)I$I$9I$I$1E)ꪪI$I$1e)H$ 1E)I$I$9I$I$9l`e)!I$L$E) I$I$$!!*te)! /I$I$1E)I$1e)1e)Ke@1V  E1$! I$I$9!I$I$9!1E)I$I$1E)1E) I$I$9!I$I$'9#H'9#k5؂1E)^~zzI$I$1 e)E)I$H$e)E)UUVT I$e)E)U:41E)jzmɖd1E)I$I$9I$I$9I$I$9 1E) I$I$'9#I$I$'9#@  9I$I$1E)*I$I$'9#1e)I$I$'9#IH1$!K&k51E)W_^~I$H$$!!TXPpI$I$E) E)!t1$! + I$9!I$I$9!:1x0.1 -I$H$1e)1E) I9 $9 H$9 ۰ ֤1e) $I$11@$I$9!1!$I$I$9 1E) *9! : І1E)\\pp-I1E)%5IL$1E)UUUV`@J1E) I$I$9!I$H$1E) I1E)/??I$I$9!I$I$'9#'9#I$I$1E)!1E) H$@$9!I$I$9!H@1 f1!P`a1!I$I$'9#II$9!4%bXe)5pSwEX//(7sE+-1&  +410DZ 44I$I$%44I$I$%4&H$DZEXTT4 DZE44I$I$%44I$I$%44I$I$%43%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4@4($!``@@E)!$H$E)! I$E)! E)!jj$0 C!͋$!@$!b L$!8I$$!!I$H$$! $! I$I$$!!j^I!$!$I$@?I$IPHxqiP-quS7fi--/-`f++4-!a @ DZ44I$I$%44I$I$%4H$ DZETT48x'DZE)pp\\H$H$$!I !I$I$E)aI$I$d!d ! !** I$I$d!d $!bpI$!b5I$I$E)I$I$d!d I$I$d!d I$I$d!d $!A`I$!a !a -I$I$d!d I$I$d!d I$I$d!d I$I$E)a $!I$I!I$I$d!d H$I$!I$I$ ZI$I$E)a! I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$d!d  !H$I$!`* $I$ I$I$!IdɖlH !XH/q1 %yX--- & E-- 3+1J - 43DZ?4A$I$蹧44I$I$&44I$I$&ȟE!TUUUI$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)! I$I$d!d I$I$d!d I$I$e)H$!X` ! $!H$I$!bWUI$I$I !I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d  !H$I$ ꪪI$I$ UUՕ !* !I!)$!$! I$I$$!!I$I$$!! I$I$e)I$I$e)I$I$$! I$I$$!! I$I$e)I$I$e)II e) $C2$!H$I$$!II!/II$$!!)H$I$$!!I$I$d!d I$I$d!d I$I$$!!?I$I$e)I$I$e)I$I$$!!I$I$$!!I$I$$!!I$I$$!! I$I$e) $1@$I$e)I$IE)!I$H$E)!I$I$! * I$I$1I$I$1 %)$!@$I$e)I$Ie)I$I$1I$I$1I$I$1 %)@I$I!bՕ&I $! I$I$1 H$E)!^W Rh( *.qswwE`+-%` E++)M$g'E_)$I$E`VUU@ E%y#?EyUUU%.iWI$[,f%)UTP@I$I$1I$I$1 $E)$!I$I$e)I E)!I$I$1$E)$!I&%)!j^@$I$$!I$I$!* I$I$!bWV%)I$I$E)$! $E)!I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$E)$!E)!I$I$1I$I$1$I$E)!I$I$!!**I$E)!@$I$E)!I$ E)!$E)!$I$E)!E)$!I$I$E)$!* I$I$1I$I$1 e)!jI$E)(E)$! I$I$1E)!jꪪI $!U!@E) I$IE)!*  @$E)!I$I2E)! C&E)!^U $I$$!I$I$ jI$I$!.!I E)!kj I$I$!b>ח.@E)! H$1H$I$1I$I$1I$I1I)(I$I$)(I$I$)(I$I$)(I$I$)(I$I$)(X-E) X`0E)  $h&E)b`pIE)a -- E)!E))I$I$e)E) I$I$e)E)  4e)`ne)!I$e)E)UU,[%E)`pIE)b)%I$I$E)$!I$I$E)$!I$I$E)$!I$I$E)$!vitP%)7qqw%X//-)SE--3)` R -43 DZ3@$@$E)PPPPI$e)!$I$E)!$ $E)!$ E)!I$e)$!I$e)$!$ @2E)!$ E)!I$$E)!$C$E)!I$$e)!IE)!I$E)! [% E)hp`I$I%)b?5.I$I$E)!H$I$%)!E)!$H$E)! E)!H$E)! $`&E)pXh dItE) %5%I$e)$!I $e)$! 06e)!Ke)b I$@!@!I$I$@!I$I$@!I$I$@!I$I$@! @!I$I$1" @!I$I$@!I$I$@!I$I$@!@!I$e)E)I$I$e)E) E)  IKE) I$e)E)@ @!ke)!xI$ke)!UI$I$E)!^I$I$$!!*`Ӷc'e) _SE) /?$e)%)I$e)E)I$I$e)E) $I$e)E)* $e)E)?I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!@ e)E)I$H$e)E)I$I$)(e)E)`I$@ e)$! I$E)! *I$IE)$! I$I$e)$!*I e)$! *$I ɐe)E) $I$e)%) *I!1E)I$I$9I$I$9I$I$9 @$1E)1E)꯯H$@ 1E) I$1E)1E)@ 1E)I$e)E)UVvm׶1E)M&m1E)W^ze)E)-=/*I$I$1"1E)ꫯ0f1jIHI$IPH+nr-U`@o+ yr.UEH+ )R E++1"$e)@P1H$I$e)TUUU ɒ#'e)b`Xe)b e)` $ E)I$I$e))vi׶e)! //e)$!@ @!I$I$1"@!1E)I$I$9I$I$9I$I$9I$A 1E)ꪪI$I$@!H$ 1E)I$I$91E)~I$L&e)$!I$I$1I$I$1!1E)@!I$I$f1e)I$@ 1E) I$1E)I$I$9I$I$9I$I$9@ 1E)I$I$1"9ۆm e)!@$Xe)-`0E)!IIE)!?$A!E)$!9I$I$9I$I$1E)I$I$1E)@1%)ꪪI$I$9!p9 `1bXhI$Ilf1bUU*`I$I1!)+51E)z $1E)II$9k5ز1E)^zzI$I$e)$!*H&d2e)$!`&%)XX`1@e) I$I$9I$I$9I$I$1E)I$I$1e)'9#I$I$1e)I$I$9I$I$1E) $I$1E)I$I$1e)I$I$f1e)9k%[,e)!I$I$$!!II$e) /L f1! JK0XI$e)b&1E)1e) r$Nf1WV@1$! I$I$9!I$I$9!@$ 1E) I$1E)**I$I$9!I$I$'9#I$I$'9#@P&f1ZI$I$E)$!II$e)E)U`&C e)$!I$I$E)$!ےm1E)kInl1E)I$I$9I$I$9I$I$9I$I$1e)I$I$9!I$I$'9#I$I$'9#I$H$9 1E)I$I$1e)("H1$!``If1''`1E)zxH$@ E)!~zI$I$E)I$I$$!!UUniE)! +/1E) H$@$9!1x1 H$@$1E) I1E) **I$@$9!I$I$9!I$I$9!I$I$1e)@1E) 1!@@M$IE)b&&I$A$1E)II$1E)** 9 @ `1E)` A$I&e)$!K&CS1E)VVZy)1E)5I$I$'9#@$ 1E)I$I$1E)1e)I$I$'9# 1 @I$f1(v1E) *++H$I$9!I$I$9!I$I$9!I$I$1E)!1e) I$I$'9#I$1e)*0"Ȇ1E)p`@ Rvp1**+ Rqwfi +//`JO++4/ VDZ44I$I$%44I$I$%4`DZEX4,DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4  DZ!@@@@ %) LȄ%)(I$I$1 I$!b H$I$!I$IE)!I$IE)!I$I$!!UI$@$$!!͊ !I$I$$!!W/I$I$$!!]@I!* L@$@H!%% IIPH*** yW7uqP-/ 1Sfq--++1")N)++ 41ɐDZ* 44I$I$%44I$I$%4&DZ X ?'I|_WI$I$!!$!`! $H$!x^ !b-I$I$d!d  !@I!b5I$I$E)I$I$d!d I$I$d!d I$I$d!d H$@ !apI$I AI !a- I$I$d!d I$I$d!d  $!I!@$H$!ꪪ !/  $!I$I$E(CI$I$E)aI !** I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d @$H$!AI$I$  5-I$I$!jjzI$I$!  H!!XH/1qS7uE`5---1oqwǩE --=, 豧 44I$I$&44I$I$&44I$I$&44I$I$&I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$ bTUT!I$I$e)I$I$e)I$I$d!d I$I$d!d H$H$!zI$I$b0I$I!UՕ!* I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$E)@$H$!xI$I$$!!I !+I$I$d!d I$I$d!d $@$!@P\H$I$!b`ZYeII!b%5I$I$d!d I$I$$!! I$I$e)I$I$e)I$I$$!!I$I$$!! * I$I$$!!I$I$!!A$H$$!!`@$H$!I$I! ! !I$I$$!!?I$I$$!!I$I$d!d I$I$$!!/I$I$$!!I$I$$!! I$I$$!!I$I$$!!?I$I$$!!*I$I$e)I  e)H$H$$! I$I$$!!*  A$E)!I$I$$!! E)!I$I$1I$I$1@$H$e)I$Ie)1I$I$1I$I$1 1@$I$e)I$Ie)1 H$E)!j~_ @$!PP) ry'%yP +/ٿfa @ E%yh%I$ EUU-8I0E,!O [m(3 iE~ I$Z%f%)UTPP @$E)!$! I E)$!I$I$1  1$$!H$I$$!I$I%)/!@E)!`%)I$I$E)$! 2E)z I$E)/I$I$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$E)$! E)!$H$E)!II%)$!$E)!@$I$E)!I$I$e)$H$E)!I$I$$!! IE)! @$E)!H$Ie)IE)!*I$I$E)$!I$I$1I$I$E)$!I$I$E)$!E)@I$E)U,E)!I$I$1I$I$1I$IE)!  @$E)! I$I2E)! H$E)!^UH$I$$!!PUUU@ ! I$E)!UUIB$IE)! Ͷ E)!*$E)!H$IE)!I$I$1I$I$E)$! I$I$1I 1I$I$)(I$I$)(I$I$)(I$I$)(I$I$)(I$I$)(I$I$)(I$I$)(I$I$e)E)+X&K$E)bXV e)  @$lE)`p@IdIE)%%$I$E)!@$I$E)!`$@ %)bp|p !@E) % I$I$E)$!E)@InlE)- I$ e)$! IB$e)$!IB$e)$!$ I$e)!IPE) 1Wyw%yX-#1S%y+--1%`N ++)41DZ 4  %)@@@@I$I$E)!H$E)!I$Ie)%)$!I$I$1I$I$1&H$$!! $!  I$I$1H$%)$!$H$!b\V$I!%) I$I$1 @ E)$!I$I$$!!!IE)!+@2d$E)!I$E)!@$E)! &LB&E)b`XVZ! E)) HE)!^ A%)- H$I$e)@$Ʉ$!&$C%)`P`IdɖE)%@$E)!$e)$! @$e)$!I$1"De)<@$I$e)E)0e)E)@@! @!@!I1"I$I$@!I$I$@!I$I$@!I$I$@!%@e)`pDe)%5 I$I$e)E) $I$e)E) I$e)%)*e)E)t$N'E)bXVXiE)$C$ E)  ! I$E)!-Umݖte)!-@!I$@e)E)I$I$e)E) $I$e)E)/e)E)I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!I$e)E)I$I$e)E)I$I$e)E)?I$e)$!I$I$E)$!I$I$E)! %)@IE)b,U۶mmE)!I$I$e)E)? $1E)I$I$9I$I$9@ 1E)ꪪ1E)I$I$1e)ꪪ@$@!I$I$1"1E)H$@ 1E) e)E)`I$I$e)E)UUUH!1E) e)E)|$A!e)E) B"He)UUI$I$!`A !XH/w7%yP/+" sd q++-0 R$e1PT-H$I$虢\WUW1`e)a J"%He)b\p IE)a I$I$9h4 e) I$I$e)@$I&%)ZIe)! /I$I$9H$@! @!$I$1E)I$ 1e) I$1e)$I$1e)I$I$1E)$Ad$1E) 1E)I$I$9@01E)^zjI$I$E)!%)I$I$E)$!@!f1E)I$I$@!I$I$1e)몯ۺ5h4f1!z~ɐe)! I$I$9I$I$9I$I$9H$ 1E) I$@!$e)`IIE)%% I$I$e)E)I$H$E)! I$E)! **I$e)%) *I$I$9I$I$9I$I$1e) I$1E)I$I$'9#I$I$'9#I$I$'9#I$H$9@6@ e) 蠀0f1! - I$I$9I$I9L$`0f1E)UW^z!I$e)$! *I$I$E)!$!f1E)I$I$9I$I$f1e)I$I$9I$I$@!@$1E)H$@ 1e)I$I$9I$I$1E)ꪪI$I$@!I$I$1E)ꪫI$I$9I$I$9e)E)@I$H&E)!^\XI$I$e) e)! %If1 A$ 1e) I$1e)**PHH1$! I1e) *I$I$9! 1@tI$f1$U1E) 1E) I$I$9! 1E)jM$M&1bVUVi 1I$I$1!1E){I$I$e)$! If1E)I$I$9I$I$9I$I$9I$I$9I$I$1E) 1E) I$I$'9#1e)@$@ 1E)II$1E)I$H$1e)A$I$1e)˰۰ 1E)&** 1e)L$`01!I$H$E)!UWV^I$I$E)a IE)!1E)+) $9!I$I$9!I$I$'9# 1E)I$I$1e) I$1E)I$I$9!I$I$9!H$@ 1e) 1e) **I$I$9!1!$ 1e)I$I$@!$!1E) ` 81`X$I$E)VUUHIE) 5 MI$1E)UU I!1e)I$I$9!I$I$1E) 1E)++/I$I$'9#I$I$'9#IL@1,I$I$91E)I$I$9!I$I$9!H$@$1E) I1E) **I$I$'9#H1e)A$I$9!H`E) %%%pS{E`/-+`N/SE++-3)` R -43DZ4$H$DZETTT44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4$@$DZEPPP4DZE44I$I$%4/ DZǩ4$H$DZETTT44I$I$%44I$I$%4$DZET44I$I$%44I$I$%488DZ$!@`p`$E)!HE)!0 E)ꪨ  $! I$I$1$HE)$!$@ E)!$! I$Ie)I e)$ $I&$!$CH$! $H$! !H$!  !XH/+yW7%yX--/&1Rp E--- 1&` `+ 4100DZ 44I$I$%44I$I$%4@$O$!PTWUI$I$ bUI$I$II!*+/+H$@ !AII$!A// I$I bxI!b- I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d  !@$H$!II$!I$I  !@$H$!I$I$!I$I$E)a!  H$!x !a I$I$E)I$I$E)aI$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$d!d  !H$I$!xI$I$ I$I$!Z^VWI$I$!  HivXP5%1u7qE`----+Nf----3, ?4I$DZ5UU?4I$蹧??4I$I$蹧4  DZ!@@@I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)@!I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d H$I$!zZ^WI$I$!AI !*I$I$E)$H$!b`X`I!bI$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d  @$!jzI$I$bXTP@I$I!b) ! I$I$d!d I$I$d!d @ !aI!b!I$I$e)I$I$$!! I$I$$!!I$I$$!!I$I$e)I$I$$!!I$I$d!d $A ! @$!I$I$$!bI!?$!pI$I!b55I$I$$!!/I$I$$!!I$I$e)I$I$$!!I$I$$!! * I$I$$!!I$I$$!!I$I$$!!??I$I$e)I e)H$I$$! I$I$$!!I$E)!I$I$$!!I $!   E)$! @L$$!($H$E)!I$Ie)1I$I$1I$I$1 1@$H$E)!I$I$$!!@PI$!! $E)! @$!I$I$$!bɐIH UItX8/ )S%qX+--" %q5 ,yn0E-!IP`mf?/)$ ǩ53(Ow@DZ 1&e h蠀+#H$1@I$J%_|I$I%)b% I$I$1I$I$1`$$!H$I$!I$I$!/ !A$@E)!I$I$E)$!I$I$1H$E)!`0HE)  %)/ I$I$1I$I$1I$I$E)$!I$I$E)$!$E)!@$H %)$!I E)$! @$E)!I$I$$!!I$$E)!@$I$E)!I$IE)! $E)!@$I$E)$!I$ E)!E)!I$I$E)$!I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$E)!I$I$1I$IE) I$E)! $I2E)! H$E)!^UH$I$E)!^UUUI$I$E)aI$ E)!UU I$IE)! I1@$E)!m۲E)`I$! ??I$IE)!*I$@$E)!ːdE)I)(4h$E)^E)I$I$)(I$I$)(I$I$)(I$I$)(I$I$)(I$I$1  e)E)z@$E)!H%۶mE)bXE)I$I$1H$H$E)!VUVE)!I$Ie)$!I$!1E)UUI$f1E)UUI:`M$1E)UUU$I$f1E)WUU`$I$e)$!I$I$E)$!I$I$E)$!I$I$1I$I$1۰k$%Q??_W 1SqwiP/-- pS1wfi +/-/ pJ)S++-4/ DZ **+41X%,DZI$E) *I$e)E)UU*I$$Ie)E)UU I$$ e)$!I$e)!I$E)۲mE) j!Ie)!I$$Ie)!I$ e)$!*K$E)\`E)I$E)I$IE)!IB$ E)!!I$ E)!@ E)!IE)!@ E)!ꪪ$C$E)jH$@ e)I$I e)H$I$e) $H"$I$!I$I!bU,$$I$!I$H$e)I$I$e)$I$E)!I$E)!-ֶE) JI$I!bU(mE)Ie)E)I$I$9I$I$@!I$I$@!@!e)!I$I$@! e)@I$e)b,Ue)!I$I$@!@!I$e)%)I$I e)E)I$I$e)E)?#$IE)!PH e)%)[m`e) I$E)!U\I$I$E)!UUU\I$I$d!d lI$e)!Umۖe)!e) I$@e)E)I$I$)(I$e)E) e)%)I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!@e)E)I$H$e)E)I$I$e)E)?@e)$!I$H$e)$!I$I$E)! E)&$@$CE)! IE)! ?I$I$e)E)I$1E)1E)I$I$9I$I$9I$I$9I$I$9H$@! @!1E)H 1E)LB&$ e)E)W\ )( C0$H1E)^[oI$I$1@I$HE)I$dPH/xqiP/w7fa/+&0S"$PPe)@ e)I$I$@!@ e)%)I$I$e)E)I$e)E) ?I$I$9h le)!L$H&E)b^W\$! Ite)!/?9$ @!I$I$1E) $1E)I$I$9I$I$9I$I$9H$@ @! 1E)I$I$9II$9 8 e)`I$I%)55I$I$E)$!II$E)!**1E)ꫯI$I$@!f1E)zꪪ!I$ e)E)@!I$I$9I$I$9I$I$9H$e)bTU  e)@$@!I$I$1"$C2$Ie)E)I1h$E)8V e)$!I$I$9I$I$1E)ꪪI$I$@! 1E)I$I$'9#1e)@ '9#$9H$I$1E)I$I$9I$I$91E)z$I ɐE)!@$IE)! II$E)$! *1E)뫭I$I$@!I$I$9l51!mve)! /$@$1E)I$I$9I$I$9 @ 1E)I1E)I$I$9I$I$9I$I$9[5؊e)!p`I$I$d!d II$e)!U@$1$! * I$1e)I$H$1e) 1e)I$I$9'9#I$I$'9#I1$@$ 1E)II$1E)**I$I$9! 1!1!1E)ꪪI$L$e)E)UUTT I$f1E)UH$@B0f1%)TXPcI$I$E)$!1E)I$I$1e)I$I$9I$I$9I$A$1E)II$1E) 1e)I$I$9I$9I$I$f1e)A 1E)I$I$9I$I$91e)X 1E)ZzjLB&d&E)!^zzxI$I$E)aI$I$$!!-mve)! //$ [$1VI$I$'9#I$I$'9#I$I$'9#H$H$1E) "i1`5IX155I$I9!$C 1E)II$1e)I$I$9!I$I$9!I$I$9!H$H$1E) I1E)+/" 1$!@I 1U@ $EE)L$`2e)E)WV\x1E) 1e)**II1 J$e)b\W1b I$I$'9#I$I$'9#I$H$9! 1E) @$A$9!I$I$9! 1E)I$I$1E)*I$I$'9# 1E)j 1h@4Qe)UU SyP//# 1s%y+-1"`n +-41 DZ *44I$I$%4$DZE`P4)DZE 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4- DZ4, DZ44I$I$%44I$I$%4H$DZETT44I$I$%44I$I$%4,(DZ%)`@`@$ $ɐ$! E)!ꪪH$IE)!WߪI$I$1$E)$!I$I$1 E)!jꪪ HH%) I$$!  IH$!b'.@$!$I$$!! $I$$!!! $IH%!-X@jJ 6P EH/%%/+1RdE--++3, 43DZ44I$I$%4@$DZ!`p0%)I$I$! !몪 !+ I$I$d!d @$!I!** I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d @$@$!I$I$!/H$I$!ZVUII!-= $!I$I$!I$I$E)aI !***I$I$d!d H$@!AI!b5 I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d $@$!I$I$E)aI$I$!zzI$I$! I$I$!UյHaP=q1Ei----, f--) 4/i DZ44I$I$%44I$I$%?4$I$蹧?)")DZ!@@@@I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)@$I$!bx\\ !b  @$!zI$I$$!!II!Օ5-I$I$E)I$I$E)! !bI$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d  !H$I$!^^WUI$I$$!! !**I$I$d!d I$I$d!d I$I$e)I$I$$!!*I$I$d!d I$I$$!!I$I$$!!*I$I$$!!I$I$$!! I$I$d!d I$I$e)I$I$d!d  !@I$I$$!bUI$I$ II!?/ I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$$!! I$I$$!!I$I$d!d I$I$$!! +$$!` $$! I$I$$!!I  E)!H$I$E)!$I$C0$!@ I$$!7B$@$!I$H!U<$!I$Ie)I$I$1I$I$1I$I$1@$H$e)I$Ie)I $!!@I @$E)!z^ I2d$!I$I$ I !?I E)!$H$) %UpSEP- +(7tsf-)),(,ő 3)I@DZU-3,0`lDZ-41ؖmٖm%3/$2 DZ1#[iz言+i$9`?$y_\I$$!a+0I$%)bI$I$E(CI %) UUE)!I$I$1I$I$E)$!I$I$1HE)$!I$I$1I$I$1I$I$E)$!I$I$1I$I$E)$!$E)!H$I$e)  E)!$H$E)!I$I$!I@$$! *H$I$$!! I E)! @$E)!H$I$e)IE)!I$I$1I$I$10H$%)x^%) I$I$E)$!I$I$E)$! E)!@$I$E)!E)!+IA$E)!* $I$E)! H$E)!~WH$I$$!!PWUUI$I$E)aI$I$!!UUIE)! I E)!  H$E)!H$I$E)$!I$I$E)$!I$I$E)$!* E)I )(`E)@I E)bU&I1k6E)X0E)I$I$)(I$I$)(I$I$1  1 @$E)!$I$E) I$I$E)!I$I$1I$I$1I$IE)!I$ E) I$E)!$@2I$e)!$I$e)$!I$I$E)!I$I$1I$I$1H$%) V۶mۖE)I$IE)!*I$E)!*Ie)$! e)E)*K$h5E)bTTX`@dN` +pywE`+--, eW&%y [4  Ey41,`DZ1H$H$E)TTTTI$I$1  $I$e)E)@$I$e)E)$$E) I$I$e)E)I$I$1 I$I$e)E)I$I$e)E)@$I$e)E)I$I$e)E)I$I$e)E)I$I$e)E)I$I$e)E)I$I$e)E)I$I$e)E)+I$I$e)E)I$I$e)E)ꪪIe)E)U I E)!I$E)!I$@E) LB$ E)!H E)!ꪀI$E)!I$I$! **I$I$$!! $I$$!!II$$!!I$ $!!JI$I$$!!++I$I$$!!$I$E)!$AI$E)!*nme)! @!$e)E) Ue)E) `e)H$I$!bWT6IE) -5e)E)I„E)b,e)E)H$@!@!I$I$@!I$I$@!I e)E)I$H e)E)I$I$e)E)*I$e)%) He)%)[me)!I$e)!U^I$I$E)!UUU\  !@I$IE)?$e)E)*H$e)E)I$I$e)E)I$I$e)E)/ $e)E) /I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!I$@e)E)I$I$)(I$I$e)E)/I$@E)!I$I$E)! I$IE)!*E)$!$!e)! I$I$e)E) I$1E)1E)I$I$9I$I$9I$I$9I$I$99 e)!.I$1E)@ 1E)I$I$e)E)I$I$e)E)`0$B&HE)UUI$I$!`A !AXH/w/EX/! 2%f@P"H$IT@$@e)!I$I$9I$I$9I$I$9@ e)E)I$I$e)E)I$e)%) @ @!k6@e)!I$I$$!! I$E)! e)! /I$I$9I@!@$f1E)I$I$1E)I$I$9I$I$9PM'e)ضmݖme)!! 1E)I$I$9I$I$1e)ꪪL&`01E)WW^ZI$I$1I$I$E)$! I$e)$! **1E)I$I$1E)@$1E)II$e)E)1E)I$I$9I$I$9L"e)bTe)E))e)%)I$@ @!A$I$e)E)E)!@I$mE)UV `I$IE)9I$I$1E)I$I$1e)II$1E)@$1e)H$I$9 I$9H$H$1E)^W^1E)I$H$1e)I$I$9,`e)!I$IE)!II$E)!**I$H$E)!! 1!+I$I$@!I$I$@!`e)!mle)!  1E)I$I$9I$I$91E)ꪪI$I$1"1E)I$I$9I$I$f1e)@ @!L$`$E)!V\XpI$I$d!d  e)!?1E)@$I$9 I$1e)H$@$9 I$9I$I$'9#I$I$9!I$I$9!I$H$1E) 9&f1`Xh I1 %- I$I$'9#k%X1E)^^zzI$I$1"!f1E)imI$I$E)$! Ie)$! **H$A 1E)I$I$9I$I$9II$9I$I$1e) R"'f1pX4IL1 -I$I$9I$I$1E)I$I$1E)I$H$1e)`$1E)W$@$1E) *+@ 1e)k6[E)!蠠I$I$$!!UUTT ! E)!+I$m1bUV*P1I$I$'9#%J"'f1bp\X@ C1b II$9ͤI$1!&I$I$9!H$I$9!H$@$1e) 1e) *I$I$9!I$I$9!@$ 1E)I$I$1e)$@$1E)1E)I$K$1E)UUWT0C"f1E)ZYym I1E)$e)ap`DIBf1b 5% L E)b\$I$f1b+`1!I$I$'9#@$@ 1e) I$1E)***I$I$9! 1E)j$I$f1b(Pe)!1E)  1`IM1Օ&[,21E)```Ri`%) pSqfi/--` Sf+4,MߔN 43DZ4@(DZEP@4 DZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4 8DZ%!@@@` E)I$I$1I$I$1C&$!a`!0a&!A`@%)I$I$1 %)$!着I1H$ 1I$I$e)A I$$! I H$!5I$IPH+TqiP- yS7fi---/-pP f++4-!a @ DZ44I$I$%44I$I$%4h'H$$)X\TV@&`$E)I$I!I$I$E)aI$I$d!d I$I$E)I$I$E)aI$I$d!d  !@I$! 5ՕI$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d @ !I$I !I$I$ A !@$H$!I$I$!I$I$E)a! I$I$E)I$I$E)$!p ! 5I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)H$I$!I$I$E)aI$I$!^^WWI$I$! I$I!H X`P%--- 91qfi----/N--;/yy豧44I$I$%44I$I$%44I$I$&4@$@$DZ!PPPPI$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)H !x !H$I$!~^WWI$I$$!! ! I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)I$I$d!d I$I$d!d  $!@$I$!b&U$H$!zz^I$I$!AII!I$I$E)I$I$d!d  H$!bhX!I$I$d!d I$I$e)I$I$$!!I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$d!d  !H$I$!^UUI$I$!!I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$e)$I$!VI!.?I$I$d!d I$I$d!d I$I$e)H$@$!bXX  $!b - I$I$! @$H$E)!$I$I&!a$!!IȐ@$!b& $e)I$I$e)I e)@$1 1I$e)$H$e)I$I$e) 1 1$!I$I$!I$I!/ II $!!) $1$H$$! DI$%y$! UU! f$)/# ݖrDZ+3,umv3 I")E@@4 IDZE543I$ $%4- H蠀1"3 ~([1mP@I$I$EUUUTI$I$!bI E) UUE)!I$I$E)$!$E)$!*$I$E)$!I$I$1I$I$1I$I$1 E)! E)&I$I$1$@$E)!I$Ie)$E)!@$I$E)!I$I$! **  $H$$! I$I$!!I$E)!$I$E)!I$IE)!IE)!I$I$E)$!I$I$1I$I$1L$E)^x E)  E)!I$I$1@ %)$!ꪪIE)! I$I$E)!  I$$E)!^@$I$$!!PUUI$I$E)a@$I$!^V! E) IE)!*@$E)!H$I$E)!I$I$1I$I$E)$! I$I$E)!*I$I$1I$I$1$@$I2E)!@XצM$E) VUE)I$I$1II1I$I$1 I$I$1 $E) $I$E)!I$I$E)!I$I$1I$I$1I$I$E)!*I$I$E)$!II$E)! $I2E)!H$I$E)!I$I$1I$I$1I$IE)$! I$IE)!*I$e)$!Ie)E)U**M@E)V @E)!I$I$1 I$I$e)E)*I$I$e)E)lX&E)X E)  II$PE)7qSww%X/-% ]^`%qZ[ +3MEy*4,$@3P$@"%E)PPPPI$I$e)E)*I$I$e)E) E)I$ME)b E)!I$I$e)E)I$I$e)E)I$I$1 I$I$1 I$I$e)E)ꪀI$I$)(I$I$1 4X&E)`xE) -I$I$e)E)/+I$I$e)E)I$I$1"I$I$e)E)I$I$e)E) I$I$e)E)I$I$e)E)**I$I$e)E) I$I$e)E)ꨠHe)E)WI$E)!dH E)!IB&$ E)!I$@E)!_I$H $!!zxI$I$$!!I$I$$!!I$I$$!! I$I$$!!I$I$$!! I$E)!_$E)!I$e)! knE)! ! e)'I$I$@!I$I$@!I$I$@!I$@!@! @!@!I$I$@!I$I$9l e)!@ IE) &I$I$e)E)/I$e)E)/H e)%)kle)!I$`E)!U^$!!I$E)!)UU@!E)! % $e)E)I$@e)E)I$I$)( I$e)E) e)E)I$I$@!I$I$@! (e)@2XI$e)b&@!H$e)E)$I&$ e)E)_e)E)=H$E)!I$I$E)!*I$I$E)!I$I$E)!*I$e)! /I$I$e)E)I$I$e)E) *[&e)!e)  +`$e)bTe)$! 1E)jzIMe)!.I$I$e)E)**I$1E)@ 1E)HE)UUH$I$HE)IIPH** 1iP-+.R)E9* BJ$TT!I f1$!I$I$e)%)*e)$!I$I$9I$I$9I$I$@!@ e)%)I$I$e)E) I$I$e)E) Ie)E) M&Xe)!I$I$e)I$I$e)!ݖne)! 9I$H$e)E) 1E)I$I$9I$I$9te)V1! @$@! 1E)I$I$f1e)@1E)zI$H&e)$!I$I$E)$!***I$I$E)$!! e)$! *I$I$@!I$I$@!I$H$e)%) I$e)%) *I$I$9I$I$9I$I$9H$ e)%)II$e)E) *@!I$H$1"I$A$e)E)I$I$e)E) /I$@$e)E) Ie)E) ?I$I$1e) e)$! e) $1E)I$I$9I$@ 9I$I$9I$I$f1e)I$I$1E)I$I$9I$I$9 1E)I$H$E)!a2 E)! $A$I&E)!* f1! I$I$@!I$I$9 9I$I$1"1E)I$I$9I$I$9@1E)I$I$1"1E)I$I$9%e) X,:`e)!`I$I$d!d II$E)!_U@!e)E)I$I$9I$I$9 1e)I$I$9'9#I$I$'9#I$I$9!@$@ 1E)II$91E)ꪪ1E)`%1`X&iJ1 I$H$e)$! I$f1%)5UK$h$1E)WV^ZI$I$E)$!**an1E)I$I$9I$I$9I$I$9I$I$1E)p$ e)X`K1- I$I$9 1E)ꪪI$I$@!A  1E)L1E)W޺!A$I1E)I$I$'9#k5Xf1$!H$@$$!!XPP`@$H$!xx I$! -I1! +/I$I$9!I$I$'9#f1a`1!I$H$1e)!1E) I$I$9!I $9!@  1e)II$1e)**I$I$9! 41`TIf1.I$I$1e) 1E) +9  ڐ81E)TXPP$ 1E)eI$I$e)E)UUT901$!L$`&1E)v1* 1 I$I$'9# 1e) *I$I$91E)I$I$9!v1(H$@$9 I1E) **I$I$'9#I$I$'9# $9! nvXe) %5pSw%X/-(/s%y++/1(%p  +4- DZ4)DZ__4)IjDZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4/m6DZǩ4)uRDZWW4%NbDZW48#0DZ%)pp``I$I$1 I E)! $!  @ %) %/@$%)ap@ %)// LH$!.&`B&%)pI@$!@I$e)I$I$$!!I$I$$!! H$! I PH* ywW/qP//+!gn^ fa[ 1 0 %q41ِDZ* 44I$I$%4  DZeY@@??EQ$!TVVWH$I$! !I$I$E)I$I$d!d I$I$E)aI$I$E)I$I$d!d I$I$d!d I!'I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d $!I$!@$H$!II! !I$I$ I$I$!II!**I$I$E)I$I$E)I$I$E)@$!pII!%) I$I$d!d $!! -I$I$E)I$I$E)I$I$d!d  @$!pI! - @$!I$I$E)aI$I$!z^I$I$! I$I$!UUՕI !$A P@**/qqiP--- 1upfq----/ )Nt --)+?1ɑ蹧544I$I$%44I$I$%44I$I$%4@$@$DZ!PPPPI$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e) @ !` I!bUI$I$e)I$I$d!d I$I$d!d  @$!`zZI$I$$!!II!յI$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d  @$!b@PT !b %!I  !I$I$\VUUI$I$b@I$!UI$I$d!d I$I$d!d I$@!bTX@ !I$I$d!d I$I$$!!**I$I$$!!I$I$$!!* I$I$$!!I$I$d!d I$I$e)I$I$d!d I$I$E)@$I$!jZ^VI$I$!AI !+I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$e) @$!I$I$b ! I$I$d!d I$I$d!d $!b@P@  !bI$IE)!$@$E)!I$I$$!! * L$LB$$!b\W\!H$!a  I$e)H$I$e)IIe) $ 2$!b@I$$!bUI$$!!?I @$e)I$I$e)I$I$e)@dB&$!b`PI$$!H$I$!I$I!?!I$A%)!Uս$H$e)I$I$$!!I$I$$!!*I$A $! I$I$e))HI$$!U/ M$!3"A IE@4! E541۶m0 %4/h۴DZǩ1,X-|/ i~(c%m PP@I $!/ E)!I$I$E)$! E)!H$I$E)!I E)$!I$I$1I$I$1I$I$10E)`I$I$!bU$I$E)!I$Ie) $E)!H$I$$! I$I$$!! I$I$$!!*@$!bT $E)!{H$I$$!!I$IE)! E)!I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$E)$!$E)!@$I$E)!E)! I$I$E)!* E)!j$I$E)!ZWU !H$I$!bVU$I!%)*M%0E)^mE)$I$E) I$I$1I$I$1I$I$E)$! I$I$E)$!I$I$1I$I$1I$I$1I$I$1LE)V8I$I1I)($)( H$E) @$I$E)!I$I$1$$!! I$$! @$I$$!  1I$I$1I$I$1I$I$1 &L&$!b@PTPݖnɖE) I$E)!*IE)!*I$I$1 I$I$1 I$I$e)E)I$I$)(I$I$)(@$E)b\`E) )($H$1M&[E)VX)mۆmE) A$H HE) q8 +"܆i++, %yU1 DZ&y1-R.E1@@@BI$I$1 I$I$e)E)I$I$1 `%E)@P E)I$I$e)E)I$I$e)E)I$I$1 I$I$e)E)** *I$I$e)E)I$I$e)E)*I$I$e)E)@E)p)PE) I$I$1 I$I$1 I$I$e)E)/I$I$e)E)I$I$e)E)I$I$e)E) 1  E) I$I$e)E)(I$I$e)E)I$I$e)E)*I$I$e)E)*I$I$e)E)*e)E)z I$E) dB$ E)!IB&$ E)!I$@$! I$I$$!!I$I$e)I$I$d!d I$I$d!d I$I$$!! I$E)!@!E)!*@ $e)! te) .I$I$@!I$I$@!I$I$@!@  @!I 1"I$I$@!I$I$@!I$I$@!e)? I$e)E)I$I$e)E)I$I$e)E)*I$e)E)Ie)%)K-le)!|I$L0E)!UUV`I$I$E)I$E)!-U ۖne)! @ e)%) I$H$e)E)I$I$e)E)/ $e)E)?I$I$@!e)E)@IH@e)b5 I1"$@!@ e)E)I$H$e)E) E)!fM$E)U %)B@$E)!I$I$1I$E)!"e)E)E)!) 1$! *I$@e)UT e)bI$I$9I$I$9@ @!I$I$1"@$I2He)UUU`$I$He) $IPHkv`H+{6eEX/ ӯȟf$ e)E) - 1E)I$@$1E)I$I$e)E) @!I$I$9I$I$@!I$I$@!H$e)E)I$I$)( e)E)@$@!-:b1E)`P@I!b I$e) /0e)! I$I$@!I$H$e)E) 1E)I$I$9I$I$9I$I$9@$1E)I@!I$I$1E)I$I$9@1E)^I$I$E)$!I E)! I$I$E)$!@!e)! I$I$@! f1E)ꪪI$I$e)%) e)%) I$I$9I$I$@!I$I$@!I$H$e)%) I$e)E) HDe)b@$e)!)( e)E)/۶-[-E)!p!IE)! +Ҷme)!H* IXf1!UI$I$e)E)$I1E)1e)I @$1e)I$I$1E)ꪪI$I$f1e)I$I$1E)I$I$9I$I$9d2e)!$A$C&E)!*zX%[ӭE)hP` Re)?/+@!I$I$@!I$I$9H$@$@! 1E)I$I$9I$I$9I$I$9I$H$1E)1E)I$I$9r$pE)X^Ce) L$`$e)!VTXPI$I$d!d nIte)! %%9I$I$9 I$1e)H$@$9 I$9I$I$'9#I$I$9!1e)I$I$91e)$ 1e)H$f1TP@ɐ I1% k&X51E)^^zzI$I$E)!E )`1!ËI$I$1 If1E)I$I$9I$I$9I$I$9I$I$1E)ꪪI$I$@! 1 H$H$1e)I$I$9I$I$1e) I$1E)H$e)bTUf1b 1e) **h(1@ۊٖl%) !jh I$!b8U۰ ݐme) **@1E) +H$I$9!I$I$'9#I$I$'9#@$ 1e) I1e)***I$H$9!I$I$9!I$I$9!I$I$1E)1E) $1!PIP15H$@$1E)II$1E)+/I$I$9!#Ȓ, 1E)`@@IL$e)E)WWK&kR$1E)VV^[@!1E) I1E)***`01E)%`E)b@P@ɐ 1%I$I$'9#I$I$'9#H$H$1E) 1E) I$I$9!I$I$9! 1e)I$I$9I$I$'9#I$I$'9#I$I$'9#`@0E9e)_ r`8 vfX / i/f-!if,%$I$/%$I$,%$I$)۸1fz)@$$fU)@$$fU)@r䖐f*)!@$$f!I$IREUUU!I$IEUUU!mi F)!!!If,%$I$,$I $EP4#5b+$)``@J$@%)a`E) E)! $He)$I e)I$I $!!'I$I$e)I$I$$!!Ie)I$@e)I$ $$! I H$!I$I$PH6e`H/w7EX//)1Rd E++3(V ++4106 %41 %4#3$DZ%1@LpR $$!I$I!! ! I$!*I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E) !!I$I$d!d  !I$I$ AI$I$  I$I$! !$@$!I$I$!I$I$E)a ! I$I$E)I$I$E)I$I$d!d I$I$E)I$I$E)I$I$d!d @$!p`I !5%I$I$E)aI$I$d!d I$I$d!d H$@ !xpII !A-/ H$I$!I$I$!I$I$PXTVI$I$! I$I$!I$I$E)aI$I$H8*.7X}i@/5{fX++-/"p p ---)41DZ 44I$I$%44I$I$%44I$I$&4H$H$DZ!TTTTI$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d  !@I$!b U! !H$I$!^VWUI$I$!UUU ! I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)I$I$d!d @ !bP@ ! I$I$E)@$H$!zZ^WI$I$!AI$ !u I!bI$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$$!! *I$I$$!!I$I$$!!I$I$$!! I$I$d!d I$I$e)I$I$d!d I$I$d!d $@$!hZI$I$!AI$I!U! I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)H$!I !Z@!I$I$d!d I$I$d!d I$I$$!!**+/ ! $E)!I$I$$!!**I$I$!  @$1I$I e)@$I$e)I$I$$!!@$I$!(ז &$C!b@P@I !b$!<I$I$e)I$I$e)I e)`2$I2$!`I$I$I$I!/!$I!$H$e)I$I$$!!I$I$$!! I $$! 1I$@1 1#I$I$$!UUU- $$!U1#I 3$I )Ey@4$DZ%y 31 DZ3+#ђIz/ i~z%K% f)TPIi$E)!H$I$e)IE)!I$I$1I$I$1I$I$1I$I$E)$! E)!$I$E)$!I$IE)! @$E)!z~I$I$d!d I$I$$!!"I$I$$!!I$I$! **I$`$!bUT$!!!@E)/ I$I$1I$I$1I$I$1I$I$1I$I$1 E)!$I$E)!I$IE)$! E)!+ I$I$E)! @$E)!ZWH$I$$!!\UUUI$I$E)aI$I$!!UU%I„%)bVE)!+$I$E)!I$I$1I$I$E)! I$I$E)$!E)$!IE)$!I$I$1I$I$1I$I$1I$I$1I$I1I)(@$E)!@$I$E)TWV!%) $$!!$I$$!!^UH$I$$!!pWUUI$I$$!!UUUI$I$!! I$!I$I$1I$I$1%) 7IE)! [E)` X$E)bp\0ɖtE)b$I$1$H&E)bp\XɐnE)a $)( )(I1I$hlE)bW\aE)b I)(H$)()(@)(HE)UUU X8 yuE`--, ɟ %qUU 3ߒ$%y1oSrHEk*I$I$1 I$I$1 I$I$1 `E)@  E)E)-I$I$1 I$I$1 I$I$e)E) I$I$e)E)I$I$1 I$I$1 I$I$e)E)*I$I$e)E)I$I$1 I$I$1 I$I$1 E) I$I$e)E)/I$I$e)E) `E)@IdˀE)I$I$e)E)I$I$e)E)I$I$1 I$I$1 I$I$e)E) * I$I$e)E)I$I$e)E) I$I$e)E)*I$I$e)E)ꨠHE)!I$@e)!LB2$ E)!~I$@E)!UWI$I$$!!I$I$$!!I$I$d!d I$I$E) $I$$!!I$I$$!!>?nme)! @$e)$! I$@!@ @!I@!I$I$@! e)%)I$e)E)**I$I$@!I$I$@!I$I$@!I$e)E)I$I$e)E)I$I$e)E)  $e)E) I$@e)E)d$I$E)^W\ ! I$I$E)!5UUU@IE) -I$e)%) IP$E) I$I$)(I$e)E)e)E)I$I$@!A$@!I$I 1"I$H$1"I$1"ۊmX$E)!MfPE)8C$h4E)bPTX`!!A%)) E)! *I$I$E)! I$e)!/I$@ e)E)I$I$e)E)* 1E)I$I$9I$I$9I$I$9I$I$9؊k&e)!H$HE) I$IPHIvm`H//%yX/ 2Ey$@I E)$!I$I$1I$I$e)E)+ e)%) I$@ e)E)I$I$e)E)*e)E)e)!@$I$E)(Ue)!H$ e)E)I$I$e)E)/ e)E)`e) I۶h e)I$I$$!!*!I$e)!/@$e)$!@ e)%)I$I$e)E) *1E)I$I$9I$I$9I$I$9I$I$@!I$I$1E)I$I$1e)I$I$9 8e)p۰mݖl%)H$I E)!II$E) **@e)E) @$@!H$ e)%)I$I$e)E) *e)$!I$I$9I$I$@! e)%)"IE)b@ID$ E)bUm&X le)! E)$!I$I$1E)UUU@$ 1E)~!E)! e)E) I$I$9H$@@! 1E)I 1e)@ $1e)I$$1e)I$I$1e)I I$1E)1E)jP$I$E) @f1!K&[5E)!\x E)! //I$I$E)**$!f1E)I$I$1e)I$I$9 9I$I$1"1E)I$I$9I$I$9@$e)( I$1E)I$I$9I$I$9I$I$@![- le)!`@I$I$d!d II$E)!Uݐ e)!I$I$9I$I$1e) $1e)I$I$91e) I$I$'9#I$I$'9#H$@ 1e) I1E) **%K%1^Xd11 I$H$1e) 1E)I$H$E)! I$e)!+*L$`$1!0`0%)@P`If1%I$I$9I$I$9I$I$9$f1pĉWe)b%%+1e)I$I$9I$$1E)ꪪI$I$@!J"e$@e)bT1E)II$1e)P-@1P`Il`E)$2 E)!WV^ZI$I!V @$@$! L%tB'1zzJIN1 - I$I$'9#I$I$'9#1e) I$I$1e)1E)I$I$9!I$I$9!H$@$1E) I1E) **p$J%1\V\01  1E)I$I$@!1e)  @$1E)L$`&1E)UWVVA$i$1E)YY]U Ie)$! **$A 1E) 1e)I$H$1"@$1E)  @$1e)1e)@$ 1E)II$1E)***II$9!I$I$9!I$I$'9#I$H$91e) *I$I$'9#I$I$'9#1E)LLƔDBPE)+ %9SN%yP-- +) oN%qU+++3IA0FU4 DZf4!IDZU4% DZEy@4DZE 4- DZ43I%43I%43I%44I$I$%44I$I$%44I$I$%4)ֳDZW|V4)IbIDZUUU4۶md$DZE ZP4S"%ERP} 4vc'V<$!jzrp 0%)`!$! $E)!@!%)b  $!b 'I&L$%)ޞI$I$$!!I$I$$!!./I$I$e)I$I$$!!xx$! * IH$! I PH** w7qP// yyw/fi/+ ;9qwȱf-C/r} UZ1_JDZU*U4 4%i.??kmR'H$)$)ZZTV@$H$$!I !I$I$E)a@$!I$I A.!*+ I$I$d!d I$I$d!d I$I$d!d I$I$E) ! ! /I$I$d!d I$I$d!d I$I$E)@$H$!A I!a I$I$d!d  !I$ $!aި I$!I$I$!H$I$!H$ $!ꪺI$I$!II!*I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E) @$!I$I$E(CI$I$!zzI$I$! I$I$UU5I$I !IIH U$C$@PH^ i.q@+ j!TAEi1ߧ&y 4 &y4%DZ44I$I$%44I$I$%4H$H$DZ TTTTI$I$d!d I$I$e) !!&I$I$e)I$I$d!d I$I$d!d !@I$H!b!@$H$!jzZI$I$$!!II!I$I$d!d I$I$E)I$I$d!d I$I$d!d !I$I$d!d I$I$e) H$!bhX! I$I$E)I$I$d!d I$I$d!d  !I$I$d!d $@$!jzI$I$!AI$I!Uյ! * ! I$I$d!d @$I$!b ^^ ! I$I$$!!? @$!`X !a I$I$e)I$I$$!!I$I$d!d I$I$e)I$I$d!d  !I$I$ ~I$I$b % !+ I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)I$I$$!!I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d @$H$!`XXp I!b - I$I$$!!  $e)I$I$e)$I$e)I$I$e)II$e)LI$!I$I$e)$I"$C$!I$I$b(*$!I$I$e) $I2$!@$I$!I$I$!I$H$!jXX $!b I$I$$!!I$I$$!!I$I$$!! I$I$e)I$I$e) Ie)$1H$I$e)I E)!&DI$%)UU+,ќD$)39IEy4/ mDZ41` DZ*3+#ѐHh/# f~ c1 f$)X`O$I%%q$!UUUPIE)$!I$I$1I$I$1I$I$1I$I$1$E)!H$I$E)!I  e)$I$E)!I$I$$!!*I$I$$!!I$I$d!d I E)! H$e)I$Ie)IE)!I$I$1I$I$1I$I$1I$I$E)$!I$I$1$E)!@$I$E)!I$ E)!*E)$!+ $E)!~I$$$!I$I$E)aI$I$$!!UU5IE)!սE)! I$I$E)!I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$E)$!E)!I$I$1I$I$1I$I1 )(H$E)!5K$E)bhZ@!$! H I$!$!I$I$E)aI$I$!!UU-I$ $!!U%I$!!I$I$1I$IE)!*IE)! `E)I$LE)Օ& I$1@$I$1`$ E)XPI!AE)5%)I$H$1E)b`!I$HE)! I )( )()(I$I$)(I$I$)(I$I$)(I$I$)( )(m$E)b VE)!vXE)77SE`----,NSE ++-3,  4@ DZE@@1H$N$E)TTVV I$E)!I$E) I$E)!@%۲mE)p`I %)b55 I$E)!$I$E)!I$E)!*$)($)($E)!$E)!*I$I$1 I$I$1 I$I$e)E)  ,E)``I$IE)77I$I$e)E)I$I$e)E)I$I$e)E)** I$I$e)E)I$I$e)E)I$I$e)E) I$I$e)E) I$I$)(I$I$e)E)+I$I$e)E)I$I$e)E)I$I$1 I$I$e)E) ** I$I$1"I$I$e)E) I$I$e)E)He)$!$CE)!ꪀIB&$ E)!I$I E)!UWI$I$$!!I$I$d!d I$I$$!!*I$I$$!!~I$E)!U@$E)! @ $e)! @!I$I$@! @!Ie)E)*I$I$@!I$I$@!I$I$@!I$I$@!@e)%)I$H e)E)I$I$)(I$e)E) p e)Xm@E)+m&X,E)zpI$I$!b-nIE)!UI$ME)bWV*dH e)I$I$e)E)I$I$e)E)/ $e)E)e)E)$ @!I$I$1"I$I$1"k&h lE)ne)! e)$!I$I$e)E)?I$@ E)!I$I$1I$IE)!*I$e)$!*e)%)/I$I$1 I$1E)I$I$9I$I$9I$I$9X$@6@e)I$I$@8!I$P8 = vrp[i@* /!Ã%e1 BPTI$I$e)E)ꪨE) H$ e)E) $)(e)E)*e)%)I$H$e)E)I$I$e)E)?e)%)Nڀ E)IE)/.I$I$@!$2e)E)xp` Ie)E)5Ue)E)$0e)!I$L$E)!I$I$e)lIe)  /@!H$@ e)E)I$I$e)E) 1E)I$I$9 e)E)@I$I$9 @! 1E)I$I$f1e)`: e)x`Il6lE)- II$E)! **I$H$E)!!I$e)$! *H$ @! I$1"I$@$e)%) I$e)E) *I$I$9I$I$@!I$I$@!H$@ e)%) I$e)E)Ęe)I$I$1" @ e)E)|Pp$ 1E)I$H$1E)W_^zIe)E)?I$I$@!I$I$9$H$@!H!1E)I$I$9I$I$9I$I$1E)ꪪI$I$@!I$I 1E)df1 I$I$9 f1E)zjI$I$E)!H$A$E)! I$E)! **1E)I$I$@!I$I$9@$ @! I1E)I$I$9e)!I$NE)חmۆme)  1E)I$I$9I$I$@!@  @!L$`$E)!^\xpI$I$d!d ! e)! 59@$I$9I$I$9I$I$9 I$1E)*I$I$'9#I$I$'9#1e) 'L$1^^a)1  1E)@$I1e)I$I1e)M&h51E)W^^zI$I$1@B f1!Ë@I$$!!@1`@ f1 *I$I$9I$I$9I$I$9I$I$1E)ꪪ!1E)'9#I$I$1e)I$I1e)I$H$1E)-1E)o f1I$I$1E)1e)Xl1E)zz@$ E)!zzI$I$E)aI$I$$!!U۲m E) * 001E) j 1&I$I$'9#I$I$'9#H$H$1e) 1E) *I$I$9!I$I$9! 1E)I$I$1E)*@1E)I$I$'9#I$I$9!I$H$1E) 1E) +/H$H$1E)0 f1E)ZZzjIIe)!***I$I$E)%)$A!e)E) 1E) ++L&`&1E)! 1E)/@$ 1e) I1e) '9#f1 1E)I$I$'9#I$I$'9#H$@$1E) I$1E)**I$I$'9#I$I$'9#I$I$'9# Ʉ Xe)5pWy%yX/-%PJXX 551%`R ++)41 DZ *44I$I$%4 DZE@@?ɖlضmDZE44I$I$%44I$I$%44I$I$%44I$I$&44I$I$&44I$I$&44I$I$&44I$I$%44I$I$%4@$DZEPP4DZE484DZ$)p```d$`%)bب@ E)$!$ B2%)j!@$I2$! I$$! H I$$!!@$I$e)I$I$e)I$I$$!! $!IvmH!5 I$ $PH6e`H/wfX+! ?fi 3 %y 41ٖm0DZ 43 %4P DZ%9@ $!I$I$! !I$I$E)I$I$d!d I$I$E)aI$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)@!I!* I$I$d!d I$I$E)I$I$E)!@!I$I$d!d  @$!I$I$E)aI$I$!ꪪI$I$!I$I$!I$I$ VWVI$I$  !** I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)H$I$!I$I$E)aI$I$!^^_WI$I$!AI$I$! $!I$AH! PH qW1$qX----#Vi++W1O8FW~3Inǹf4Na۶mDZf74!I$DZU4%DZ  ! I$I$d!d I$I$e)$!b`I$I!b5I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$E) !I$I$!^VWUI$I$? !+* I$I$E)I$I$E)I$I$E)@$H$!bpX` I!b %5 I$I$e)I$I$e)I$@!VX ! I$I$d!d ! I$I$d!d @$H$!`PTP I$! %H$I$!^^WUI$I$!A !+I$I$d!d H$H! I$I$e)H$!!I$I$e)H$!\PI!% I$I$$!!I$I$d!d I$I$e)I$I$d!d I$I$d!d @$H$!zz^VI$I$bX`I !b5% I$I$d!d I$I$d!d I$I$e)I$I$E)I$I$e)I$I$e)I$I$e)I$I$$!!I$I$d!d I$I$e)I$I$d!d I$I$d!d !I$I$$!!5$!$!I$I e)H$I$e)I I$e)I$I$e)II$e)I$I$e)I$I$e) e)I$H$e)H$!<I$Ie)  @$$!!$H$!I$I$$!BI!?/ dB2$!p $! I$I$$!!* $!b@$!bI$I$e) $!b@I$!bUH$I$$!!I$IE)! H$E)!10`$$!+I$UU/ I3+@ ۧ 3/ L$1&#b+iDZ\~-3 if~!l3 f9jI$J-%y%)UUT@I$I$10%)` I$E)&U @$E)!H$I$e)I E)!@$H$E)!I$I$d!d I$I$d!d I$I$$!! *I$E)!@$I$e)I$IE)! E)!I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1@$E)!I$I$e)IE)!+ $E)`X$$%)@$I$$!I$I!I$I$!!U% E)!*I$I$E)$! I$I$E)!I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I1I)(@$E)!@$I$E)! E)!L&`B!\p ! I$I$E)aI$I$$!!UUI$I$$!! 1I$IE)! I$ E)!*IE)!@$)(`۶5E)b`֦M$%)bVUE)bI$I$1I$I$1I$I$1I$I1I)( )($)(I$)()(@$I$1)($E)!$E)!I$E)!$I$E)!I$@%)bU0m۶mE)! P%)pSww%yX//-&7SE ---1(%p  +4 DZE@3f$@$E)ZPPP0`$E)`XT@!%) %I$I$E)$!I$I$E)$!I$I$E)$!I$I$E)!I$I$E)$!I$I$E)$!I$I$E)$!I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$E)$!$I$E)$!$I$E)! 0۶mE)! I$)($)(1 I$I$1 I$I$1 I$I$e)E) I$I$e)E)I$I$1 I$I$e)E)*I$I$e)E)I$I$1 I$I$e)E)I$I$e)E) I$I$e)E)I$I$e)E)I$I$e)E)I$I$e)E)I$I$e)E)I$I$e)E)I E)!dB E)!I$E)!UI$I$$!!WW\`I$I$E)I$I$E)I$I$$!!I$$!!/$@$e)! @ e)! /e)%)I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!H e)E)I$I$e)E)I$I$e)E)/I$e)E)I$e)E)IE)I۶mE)!UUU\ $I$E)!%UU!E)!- $e)E)I$H e)E)`E)@I%)bU@@e)!@@!@$E)Te)E)  $I$1"H e)E)I$I$e)E)@$e)E) WI$e)$!I$I$E)!I$I$E)!II$E)$!**$Ie)!I$I$e)E)I$1E)I$I$f1e) @$He)UI$I$Q!@MX8* I[i@ߪ )&iE)@PI$1E)e)@I$!bUE)$!@$e)E)\XjI$I$E)$! $A e)$! *e)$!I$H$e)E) I"%E)pIE)b % e)! I$I$@!I$I$@!I$H$e)E)$Ad$e)E) /We)%)[-le)!I$I$e) I$I$e)te)! /@!I$H$e)E) I$e)%) *I$I$1e)&J%e)b@PTP f1 1E)ꪪI$H$1"1E)믿I$I$9e)E)`I$H$E)!A$IE)! *I$I$E)$!$ e)$! I$H$1" @!I$I$e)E) e)%) I$I$9I$I$@!I$I$@!()IE)!@I$I E)׿e)!I$I$e)E)Ie)E)@ 1E)zkI$I$e)E)?e)E)I$I$9@$@! I$1E)I$I$9I$I$9 $1e)I$I$1E)I$I$1e)I$I$9I$I$9I$I$f1e)LB&`2e)$!I$I$E)$!I$I$1$@!e)! I$I$@!I$I$9I$I$9I$H$1"1E)I$I$98e)b`HHe)a II$e)E) I$I$@!I$I$@! @! aE)I$I$$!!WW|I$I$E)!UU$@$e)!I$I$90`$e)$!۶m`1E)I$I$91E) @$1e)1e)HـHf1\ I1! * 1e)I$I$1e)H$I$1e)01E)zz  E)!- Idf1!/?I$Hf1!!A$IE)!+ *1E)I$I$9I$I$9I$I$9I$I$1E) 1E)H$@$1e)I$I$9H$I$1E)e)!@IHf1׿,1E) I$1e)@$1e)ꪪL$`&e)!蠠I$I$$!!WTTPI$I$E)a! E)!+)$(Df1b II01?I$I$'9#I$I$'9#@  1e)II$1E)**I$I$9!I$I$9!I$I$9!I$H$1e)1E) I$I$9!I$I$'9#H$@$1E)I$I$1E)@ 1E)ࠀ @!I$H$1H$`&e)E)TTPQ! e)E) 5II$1E)/@001E)۰M۴l1*1e) 1e)I$I$'9#M$He1VWT 1 I$I$9!I$I$'9# 1e)I$I$91e)I$I$'9#$H$1E)@$@ @! 6SqiP/-Ia.eSeP- ++- L$%y VVW4-` RDZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4 $DZ$)@@`P$@$CE)* !a $!$$@$! $!a I $e)I$e) I$e)H$I$$!! dB&$IE1z*HI PH*  wqP/+ ywwd fi-/ /1N f++4-!eJ@ DZ44I$I$%?[ ۖmDZfy40%!@`pP$@$!I$I!I$I$E)aI$I$E)I$I$E)I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$d!d @$H$!I$I$!I$I$ I$I$E(CI$I$ I$ $! I$I!!I$I$E)I$I$E)I$I$E)$!I$I$E)$I$!A ! I$I$d!d  !I$!A(!I$I$E) $!I$I$E)aI$I$!~I$I$I$I$! I$I$!I$I$E)a!!@H!5  XHyuS7%yX----& a* 1) !`-) 4/" DZǩ4 8DZfp4mۖ,Ey~`/ mm6(*jI$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$E)@$H$!zz^I$I$$!!I !I$I$E)I$I$E)I$I$d!d I$I$d!d !@!I$I$e)I$I$e)I$I$e)I$I$E)$!pI$I!%% I$I$d!d !@A$@$!xI$I$II!ՕI$I$E)H$!(I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$$!!I$I$d!d I$I$e)I$I$d!d I$I$d!d  @$!b@PTI$I$b %I$I!Uյ!+ I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$d!d  !H$I!*!  !b$I $! %A$H$e)II$e)H$I$e)I$I$$!!I$I$$!! I$I$e)I$Ie)I$H$e)I$I$e)I$I$e) $$! $@$!I$I$$!BI !/ I$I$$!!I$I$e)I$I$$!!I$I$$!!* @ $!bP@I!bI$I$e)I 1I$I$!bUUUT$ $!  @$E)!I$I$e) @$$!hI$I$!I$I$!b* %I$I$$!UUU) ɔ$$!U/"P s*++1,6{/)[`^z-hf^% Z %q~I$c-%y%)UTP@E)!jIȐ %)I$I$e)I $$! $I$$!!I$I$$!!H$!$I$I$$!!*I$$! H$I$E)!I$IE)! E)!I$I$1I$I$1I$I$1I$I$1 E)!$I$E)!I$IE)! E)!H$E)!~H$H$!bTXhI$I$  I$I$!/ I@E)!յ+I$I$E)! I$I$E)!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I1I 1 I2E)!IL$E)!2d$$!b@PT@!0$!H$I$$!b! I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d $!`! I$I$E)@$H$!pXVI$I$aII!// I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$d!d I$I$d!d I$H$!\xI$I$b I$I!յI!(I$I$E)I$I$e)I$I$E)I$I$d!d I$I$e)@$H$!x\p I! % I$I$E)I$I$d!d I$I$d!d I$I$d!d $@$!I$I$!I$I$E(CII$!/I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I e) I$I2$!I$$!?I$I$e) $C2$!H$I$!I$I!? ! I$I$e)I$I$$!!I$I$$!!*I$I$$! I$I$e)I$Ie)  $!$I$!bU$!  $E)!$$!`I$I$!H$I$!I$I$!/!$! 1$E)!jI$I$e)I$ e)H$I$$!bVW\( I$=, M$!-H-Eyj( 0{?%y`VU F`\_ ~bp!ZjI$I$P!UUUTI$I$E)I$I$E)I$I$!!+*  @$E)!I$I$e)I E)!E)$!I$I$1I$I$1I$I$1I$I$1@$E)!H$I$e)I E)!$E)! d$E) z^WH$I$!ꪪI$I$!I!A$!/E)!j$I$E)!U@$I$E)$!E)$!I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1 $I$E)!@$E)!@$I$E)$!H$@ $!X\z !I$I$E)a !b@H$I$!bVUU$!IE) I$AE)! I E)!  @$1H$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1@ E)`!@E) I$I$E)!I$I$E)!I%), E) $E)!j I$E) $I$E)!}}I$I$$!!I$I$$!!լI$I$$!!^I$I$$!! jZ^I$I$d!d I$I$d!d $!`I$I%)b7I$Ie)!W_IE)!` &eR`$))))p1wE`--)` OE++-3+p K 41,6`DZ1I$H$%)UTTTI$I$E)$!I$I$1 E)$! E)I$I$1I$I$1$E)`p E)+%LE) IE)!(IE)!$E)!WIBE) UIBE)I$$ E) UUI$$ E) UUI$I$!I$I !I$I$E)aI$I$E)aI$I$!*I$$!@I$E) UU$E) *UE)!I$I$E)$!I$I$E)$!$I$1II$E)$! *)(I$@E)W00E)I$I$e)E) I$I$e)E)I$I$e)E)I$I$e)E),E)@6ِ E)!AE)!+I$e)E)H$I$e)E)*I,S$IE)bI$E)!LB2$ E)!~ꨀI$H$E)!UW~I$I$E)I$I$E)I$I$$!!UUI$E)!miE)!+I$e)E)M$@ E)V iҶE)!e)   $1"I$I$1" $I$1"H$I$1"I$I$e)E)I$I$)( I$e)E)H$e)E)dB2$ E)$!I$H$E)! I$E)! * $A$e)E)?@ $e)E) I$H$e)E)$H$e)E)?WWUe)E) %I$I$@!I$@ 1"I$I$1"I$I$1" $@!I$H$e)E)I$I$1$C!e)E)z 5LB" E)0$%)!Zz!@H!I$IPH+6e`H/{7gEX+2$H$Ee)@PTUI$I$@!I$I$@!I$I$9H$e)%)I$I$e)E) I$e)E) *I$KE)bVW0`E)I$E)!I$H$E)! IE)! e)E)b*M$@E)^ E)  e)E) e)$!I$@e)W m$@ E)bZ\p4I$E)b \ɖtE)b % d$E)0 He)$!I$L&E)!_^\x@$H$!`P@XIE)b %%e)%) H$@ e)E)I$I$e)E) **e)$!I$I$9I$I$99I$H$1" 1E)믿I$I$@!e)E)@I$H$E)!B$IE)!Š**I%)7 !e)! @$H$@! @! E)! [NE) ,Ue)$!I$I$@!@!I$I$e)E) e)E) H$@ 1"I$I$e)E)I$I$e)E)UUUr"9Ɇ1E)\Ps $Ie)E)%? @$@!9H$@ @! 1E)I$I$9I$I$9I$I$9I$I$@!I$I$1e)p$I$E)b\^\&i!`E)1E)I$I$E)!@$ E) II$E)! **@ e)%) II$1"I$I$@!Ȁ$e)b`pd$I$$!b0Օ@!@e)Ae)!0I$I$@!I$H$e)E) e)%)e) @Ie)bն! e)E)L$`$E)!VTXPI$I$E)ݐ le)! `e) !@f1 J$1VW@e)II1E)1e)H$1e)A  1E)ꪪI$I$@!p$,@1x f1-I$I$9I$I$1E)ꪪmkE)!訠 A$IE)!/H&@Re)!E)$!@1E)I$I$9I$I$9I$I$9$@! 1E)I$I$9I$I$9f1pKIe)5 I$I$9I$I$9II$91e)`& 01!`& 0$!I$I$E(C$@!E)!ِ1E)I$I$'9#I$I$'9#I$I$'9#  1e)I$I$1E)*I$I$9!I$I$9! 1E)H$H$1e)1e) *I$I$9!I$I$'9#@$ 1E)I$I$1E) 1E) f1E)$I$ 2E)$!h6[E)` I$!b? ٰm1$! +*@01E) $e)1%)I$I$91e)I$H$9 1E) **I$I$9!I$I$'9# 1e)*I$I$91e)I$I$'9#H1UUU PH 11$qX----"E----1) ))))43DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4IDZE44I$I$%4@$@$DZ%)PPPP E)! %)$!1H$I$%)! $I$! I$IE)!I$E)$!I$$E)!zI$H$!5I$IPHkwv`P--yw7fa/,1RT E-+ 3)1JP - 410DZ 4 @DZfi 0043 DZ4@8&``pxI$I$!II!I$I$E)aI$I$d!d I$I$E)@ !j  ! I$I$E)I$I$d!d I$I$E)I$I$d!d $!pI! / !I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)H$I$!I$I$!I$I$$!bI$I$$!BI$I$ I$I$E)aII!**I$I$E)I$I$E)I$I$E)I$@!a\ $!I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)@$H$!I$I$!I$I$@PPXI$I$! I$I$!UՕI$I$E)aI$I!!H!ItI`Pq1Ei----, f--) 4-!` DZ44I$I$%44I$I$%44I$I$%4@$@$DZ!PPPPI$I$e)I$I$e)I$I$e)$!p! I$I$e)H$!T! !H$I$!VWUUI$I$uUI$I!U:!bI$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d H$@ !PTP@  !b %  $!jI$I$!VUUUI$I$b\W ! I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$d!d  $!I$I$!VWUUI$I!UUՕ !) I$I$d!d I$I$d!d I$I$d!d  ! !a?I$I$e)!@!I$I$d!d I$I$d!d I$I$d!d  !H$I$!I$I$ I$I!** $! I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!I$I$$!!j* I $!*@@$I$$!bTUU@$I$!I$I$$!B !/ I$I$$!!I$I$$!! I$I$$!!*I$I$$! I$I$e)I$I$e)  @$1$I$$!!I!b8I$e)H$I$e) $!H$I$!I$I!? $@$!$!b@ IE)b&UH$I$E)!I$Ie)1@%)I$I$1 $I$$!UUUh붱%$)! @$%yU\U Pb?f%qP%iaWߋw" E([ I$Hb'p!UUTZI$I$$!!/ I$$!!I$I$e)I E)!I$I$1I$I$1I$I$1I$I$1 E)!$H$E)!I$I$e) E)! $E)! H$$!I$I$E)aI$I$!* E) *I$I$E)$!  @$E)!H$ %)!IE)!I$I$E)$!I$I$E)$!I$I$E)$!0E)`E)%E)!*)I$I$1$E)!@$I$E)!I$I$$!!`TI$I$$!!@VUUI$I$E)aI$I$$!!UU I$I$$!!dB2$I%)X`Itٰ E)b%I E)!  H$1H$I$1I$I$1I$I$1I$I$1$E)pE) I$I$1I$I$1 E) @I$E)b8UE)I$I$E)!I$I$1$$! I$E)!HL$E)I$I$e)I$I$e)I$I$e)I$I$$!!*I$I$d!d I$IE)!UUշI$IE)!UUߪI$E)!]IE)!Ie) I$I$1I$I$1I$I$1I$I$1 PE)p1w%yX/-&1S%y++--1&`  ++416`!DZ 1H$@%E)TPPPI$I$E)$!I$I$1 IE)@I AE)W.e) I$I$1E)@ E)% I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1@E)!xIE)!ULBE)!UWIB& E) UUXI$IE) UUUpI$I$E(CI$I$E(CI$I$!*I$E) UU $%) UE)!I$I$E)$!I$I$E)$!@$I$%)bTUTmE)1 I$I$e)E) *I$I$e)E) *I$I$e)E) @ e)P@I E)I$I$1 ,X$e)b`XVE)I$I$e)E) I$I$e)E) I$I$e)E)dE)!IB2$ E)!_ꪠ$H$!b@PT !bI$I$E)aI$I$$!! UU$@I$E)! : I$E)!$$Ae)E) I$@1"I$I$1"I$I$1"I$I$1"@!I$@!I$I e)E)I$I$e)E)I$I$e)E)-e)!@ E)b5I$@1  )(I$I$)(I$e)E)")"@E)@H$I$%)b,U HDRe)!*$I$1"I$I$1"I$I$1"I$I$1" I$1"L&Ie)E)VXI$I$1@ e)! *H%) I$I$PHIiXH/ /%yP/+B%B$%E)JRPTI$e)E) /I$I$@!I$I$@!I$I$@!I$I$@!H$ e)E)I$I$1  e)$!I$@ e)E)$ 2E)!h$@!E)! *+-I$I$E)$!I$E)! **I $e)E) +H$@ e)E)I$I$e)E)/ e)E)@ @!I$I$1"P")$Ie)phI$AE) I$XE)0  )e)@ `tE)b %$C$ E) !ې tE)! %@!I$H$e)E) I$e)%) * e) e)I$I$9@ @!I$I$1"1E)I$I$@!`0e)$!I$I$E)!H$I$E)! I$E) **He)E)$H$E)b@PTPIAE)bIE)!,e)%)I$I$@!$@!H$ e)E)I$I$e)E)/?A$e)E)I$I$1"H$@ e)!)Id1!?m6k%1E)UWV^e)E) 5 I$1" @!I$I$1"1E)I$I$9I$I$9`$e)0I$1"@e)I$I$9I$I$1E)L&`2f1E)W^^~ I$E) **I$H$E)!! e)! I$@$1" @!@e)@IJIE)b5 e)$!Kke)! e)$!@$@$e)%)II$e)E) **I$I$9I$I$@! @![-ۂmE)!p@I$I$E) I$E)!%5 e)E)I$I$9He)\01%)I$I$1E)H$I1E)1e)$H$1e)I$I$f1e) 1E)I H$1e)I$I$9I$I$9`01E)VZZz$H$E)!Ś)e)!ƒ@$%)$! I1$!/I$I$9I$I$9I$I$9 9 IR$e)bT1%)I$I$9I$I$9H$@$@!1E)I$I$9I$I$9 9X 1E)zzjE)!ZjjI$I$E(C! $! //  1!/1e) ***I$I$'9#I$I$'9#I$I$'9#I$H$1E)1E) I$I$'9#%H%f1p\p؆1 %II$1e)**I$I$9!I$I$'9#1e)I$I$@!1e) I$H$1E)k$X%e)!A$I$E)!Mm׶E)&**@ f1E)i 1K$HdE)bTWT01 H$H$1e) 1e)@$ 9II$1E)*I$I$9!I$I$'9#I$I$'9#I$H$1E) 1e) 1e)I$I$'9#IHP1 11$qX----"E---=1) ))))43DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4,DZE@4DZEy 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4<8DZ$!pppp1H$E)!I$e) I$E)$!I$Ie)$E)!@$E)!U`$$I$!p$IH! I PH* yyw7qP-/+" ySdfq-/+ 1 1n ++ 4/ PDZ4 DZfa@4+DZ4-H)DZ1x$J$\\\WI$I$ !I$I$E)aI$I$d!d I$I$E)aI$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d @ !I!b/ H$I$!bhXVX !b I$I$d!d I$I$d!d I$I$d!d  @$!I$I$E)aI$I$!I$I$ I$I$ I$I$ I$I$E)a !* I$I$E)I$I$E)I$I$E) !ȪI$I$A( ! I$I$d!d I$I$d!d I$I$E)aI$I$E)I$I$E)I$I$E) !I$I$E)aI$I$!I$I$TVUUI$I$! I$I$!I$I$E)a !*** I$I$d!d H!X`P%--- 9S1qfi-----p-4/ DZ44I$I$%44I$I$%44I$I$%4@$H$DZ!PPTTI$I$d!d I$I$e)I$I$e)H$@ !\pI !b5 I$I$d!d I$I$E)I$I$E)$H$!jzZ^I$I$!AII!I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)@$I$!zZ^VI$I$!AI$I!V* !I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$d!d $!p@$I$!I$I$!AI !)I$I$d!d @$I$!bXVX ! I$I$d!d @ !b`I$I$bյ!I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$E)@$I$!I$I$!I$I$  ! I$I$$!!I$Ie)$ L$$!b(I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!!0I$I$e)@$H$$!bPTX`I$I$!jI$I$ %I !+I$I$d!d H$! I$I$d!d I$I$$!!* I$I$e)I$I$e)I$I$e)I$I$$! I$I$$!!**I  $! H$I$E)$! $!@$I$$!I$I$  !I$!/1 E)$!ꪪ$!bI %)$!I$I$1I$I$1I$I$1I$I$1 @$E)!I$I$i$!UUUnWɐDE$!)( 1@ %y  +#[#aIꊠ)3 fZ! iE0I$[1%$!UVP`I$I$e)IE)!I$I$1I$I$1I$I$1I$I$1 %)$!@$I$e)I$IE)!$@0E)* `ȐI$%)b$I$$!I$I$E)aI$ $!* !@E)!I$I$1$H$E)$!H E)$!ﯫE)!I$I$1I$I$E)$!I$I$E)$!I$I$E)$!`0 E)X`I! %)$ E)!%$H$E)!I$I$$!!pI$I$$!!\UUI$I$E)aI$I$$!!UUU5I$I$$!!I$Ie)$I2`0%)`X`!IE) 5%I$I$E)$!I$I$1I$I$1I$I$10E)!ZE)! E)`H$E)TX` $E)% I$I$1I$I$E)!I$I$E)!I„%)bֺ$E)!$I$E)!H$I$E)!I$I$$!!!@I$I!bU,I$I$d!d I$I$!!?I$ E)!UխIE)!U E)!I$I$1I$I$E)$!I$I$E)$!I$I$1H$E)^E) I$I$E)$!I$I$E)$!I$I$E)$!IIPE) 7Wy{iP+/-- pS1wfq+/--/!p N+++-4/R ǩ4R  E)P@@@I$I$1I$I$1HE)!I$I$E)$!I$I$1$E)xE)  I$I$1I$I$1I$I$1I$I$1I$I$1@$E)0I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1E)!IE) UI$E) UUI$LE) UUUI$I$! $I$!$I$%) UU@$%)@@%)*I$I$1I$I$E)$! $I$1I$)(1 I$I$e)E)I$I$e)E)*I$I$e)E)X-e)X`0E)bI$I$1 I$I$1 I$I$e)E)*I$I$e)E) $C e)E)`k5e)bXh!I %)I$I$$!!UUT`@$I$!I$I$!* $!* E)!@$e)$! H @!I$I$1"I$I$1" $I$1"I$@!@!$)P9E)ap` IE)a 5%@,@$E)`IdI E)b5/I$@$e)E)I$I$)(I$I$1  @ e)E)|Pp!Ie)E) 5Je)4I$I$1 e)E) 5I$1"I$I1"I$I$1"I$I$1" I$1"L&Ce)E)VX`I$I$HE)UI$I$!`AI!IXH+ wqP/ )S"$%$) BPPle)! I$I$)(I$e)E) /?I$I$@!I$I$@!I$I$@!$@!I$I$e)E)I$I$)( e)%) k%Xle)!\pI! E)!5 A$I$E)!*I$H$E)!* $E) * e)%) I$H$e)E)I$I$e)E) ?I$e)E)H$@ 1" e)@ De) 5I$H$e)E)@,E)apI0E)b% `0E)!X`I$I$d!d I$I$E)!UUݐne)   e)%)I$I$e)E)#'#E)b`X`  e)b 5 I$I$@!I$I$9H$@ @! I$1"I$I$f1e)I$I$@!LB&`2E)!I$I$E)! *I$I$E)! Ie)! */I$He)b@ I$e)E) I$H$e)E) Ie)E) ? @!I$I$1"I$I1"I$H$e)E)I$I$e)E) *I$  e)E)e)E)h۶mۂ%E)p*Kf1  Ie)E)5I e)E)@!I$@ 1" I$1E)I$I$91E)jꪪI$bf1UV @$e)0@$1E)X$e)!\e)! @'e)bX@!%)b -I$I$E)!II$E) ** e)E)II$1"I$I$@!H$@ e)%) I$e)%) **I$I$@!I$I$@!9I$H$e)E) e)$!I$I$@!I$I$@!@$ e)%)I$H&E)!UTTXI$I$E)@&c&e)z e)b 5e)!I$I$9 e)@ Tf1-$H$1e)II1e)@$@$1E)ꪪII$1e)I$H$1e)$f1bpDe)b 5&K&e)!\X E)$!ꫫmI$e)!???-ڠ &e)xE) @1E)I$I$9I$I$@!I$I$9I$`QE)bUT@ e)I$I$9I$I$9@  @! I1E)I$I$9e)!II$91E)ꪪL$d&E)$!L$d&$!II$!** ݖne)**!!1E)I$I$'9#I$I$'9#I$I$'9#H$@$1E) I"1! j2Idf1 ?1@I$J&1WW\@e) 1E)I$I$'9#I$I$'9#H$H$1E) I1E)p$f1a^ ɑE)I!*.I$I$$!!BhE)b@Id͠ f1bUL$`21E)@ X1$!***6@$@ 1e)I$I$1e)I1e)I$I$91e) I$I$'9#`@%1xdIXf1- I1E)***@$@$1e)$H$1e)@B$dB"P1 11S$qX----"1Ey----1(  +410DZ 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4@$ DZEPP4 DZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4@0@$DZ$)``PP$I&%) $ @E)$E)!$I$!*$ $!I$!I$I$!IIH!5I$I$PH-!X@*jJJvPɔEH%%)1N` E/++3)1Rd -) 43 DZ 4 DZEY43 DZ3@(0@H$I$8I$I$!!I$I$E)I$I$d!d I$I$E)aI$I$d!d I$I$E)@$!X!I$I$E)I$I$d!d I$I$d!d I$I$d!d @!`I$I$d!d I$I$d!d $!`I$!A@$H$!I$I$E)aI$I$ I$I$I$I$!I$I$E)aI$I$E)a!I$I$E)I$I$E)aI$I$E)I$!H!I$I$E)I$I$d!d I$I$E)I$I$E)aI$I$E)I$I$E)aI$I$E)a$@$!I$I$E(CI$I$!zzz^I$I$I$I$A(I$I$!I$I!*! I$I$d!d IIPH/]`@* fP+ / )Np --)+41ɐ DZ** 44I$I$%44I$I$%44I$I$%4H$H$DZ!TTTTI$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E) !I$I$!VWUUI$I$!A !)+*I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$E)I$I$d!d I$I$d!d I$I$d!d $!`$I$!I$I$TUUUI$I!UUՕ! I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$d!d I$I$d!d H$@$!b\XpI$I$b - I$I!UՕ!*I$I$E)H$!h!I$I$d!d $H$!\I$I!V+ !I$I$d!d I$I$d!d I$I$d!d I$I$d!d  @$!I$I$!I$I$!I !** I$I$d!d I$I$$!! **$B2$I$!I$I$!b($!I$I$e)I$I$e)I$I$$! I$I$$!!H$I$!VV$! $!I$I$ppI$I!յ5+ !*  !@@I$I!bշ($! I$I$e)I$I$e)I$I$e)I$I$e)$$!b`$ $!b %$H$%)$!I$I$$!!@$H$$!I$I$$!bI!A$!? I$I$1I$I$1@$H$E)!I$I$e)I$$!! ?$$!I$I$1I$I$1 @$E)!I$I$e)I$I$$!! I$I2$!!II$f U) .sf +-+&[n/) `fh蠀" 3 %q~I$c%$)UVhI$I$1I$I$1I$I$1I$I$1 E)!@$I$E)!I$IE)! $E)!$C&E)`I$I$ 7 I$I$ I $! I E)!$E)!@$I$E)$!E)$!뫫I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$E)$!I$I$E)$!*I$I$E)$! $E)!H$I$$!!$$!I$!I$I$E)aI$I$$!!U I$I$$!!IE)!* E)!@ IL$%)!@@E) I$I$E)$!I$I$1I$I$1I$I$1`$`$E)x\x! E))%- `$H&%)p\\p %) I$I$1I$I$1 E)!@$E)!$I$E)!I$I$$!!I$I$$!!*I$I$$!!*I$I$$! I$I$!!*I$H $!!ZZI $!!% I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!L& %)^ !@E)!I$I$1I$I$1I$I$1I$I$1`Wvw`1 **)7qS1wfi--- Sf )-4-` !RDZ4E)@I$I$1 e)!j E)b&E)!I$I$1H$@ %)XX` %) I$I$1I$I$1I$I$1I$I$1I$I$1I$LE)WW0E)0E)`$I$%)&I$I$1I$I$1`$%)hXE) I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1E)!LE) UI$ E) UUzI$I$!bWWT !$@$I&%) $$%)j@!E) %I$I$1I$I$E)$! I$e)E)U1  e)E)*je)E) I$I$1"I$I$e)E)1 I$I$1 I$I$e)E)I$I$e)E)*$e)!E)bLB& E)!dB E)!U_~H$H$$!I$I$E)a!I$$! *@$E)!*mie)!+I$e)E)I$@ e)E)I$I$e)E).I$I$1"I$1"زm۶me) dI$He)b h&@e)bxxI PE)b--  I$e)E)I$ e)E)I$I$1$C$@e)E)@  I$Ie)E) I$e)E)`2He)E)\` I$I1 I$e)E)/$I$e)E)@ @!I$I$1"I$I$1"$@$C&He)UUI$I$Q!@۶ P8 ɝiP/ .U2%$)* BPH$?E$!TUUU I$E)!/E)! I$I$)(I$e)E)?I$I$@!I$I$@!I$I$@!I$I$@!IEE)I$I$e)E)*e)%)$C2 e)E)zx$I$ 2E)!` %)b&I$I$E)!*E)$! e)%) I$I$e)E)e)E) /$@!@4%e)``IInE)/  $e)E)$@$e)E)__\ e)E) %I$I$e)E)L$`0E)!^\p`I$I$d!d  I$E)! %5I$e)E) *H$H$e)E)I$I$)(@e)E)I$I$@!I$I$@!@!I$I$1"@!@$H$e)E)$C$Ie)E)`I$H$E) A E)! I$I$E)!*H!e)$!I$I$e)E)*@ e)E)I$I$)(e)E)H$@$1" $I$1"@$I$e)E)I$I$e)E)?e)E)I$H$e)E)H&@E)\X`qv1b -+I$H$1E)WVzA$I$e)E) / I$1"֤e)!I$I$e)E)1E)I$I$9I$I$9I$p Xe)bWV `e)h6e)!XPe)!p8 e)X`1i E) I$I$1I$I$1!!e)! I$H$1" @!@!I$I$e)E)e)%)I$I$@!I$I$@!@$@ e)%) I$e)$!I$I$@! ;t$E)bX^dIKe) @0 E)!P`I$I$E)dB2$I!@I&E E)bYbXIe)b %5 I$I$9@8f1ppI IE)b5*@f1E)I$I$9H$I$9I$I$f1e)I$I$1E)f1a` e)b% `e)!LB&`2e)!蠠I$@%)$!pB&dBE)xpI %)b--! e)$! I$I$9I$I$@!I$I$9@$ @! I1E)I$I$9I$I$9I$I$1e)ꪪI$H$1" 8@" e)``1Ie)b %% I$I$91e)`2 01!`2$C$!I$I$ bxx I$! %5`JdRf1$! ++I$I$'9#I$I$'9#$1e) 1e)I$I$1E)ꪪˤA$@1! I$1E)*1E)I$H$1E) *5f1`PiT1)%I$I$'9#@$ 1E)I$I$1e)s";*1^!h@e)  I$ %)!UWI$A$$!!)Ite)! --$@$1E)(H1$!``I$I$!b*`01!I$I$9I$I$1e)I$H$9 1E) +I$I$9!XH1hIJ4Af1- I$I$9Ȑ1E)I$I$9$B$APf1UUU pSywiP //-! p1wf$q /--1"Ns ++-41ِ DZ **44I$I$%43%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4@$@8DZ$)PPPpdB$$$!Ad$$!`HI$!(E)!$ E)$!I$E)!I$I$$)E*A$H$HE) I PH** w7iP-/  ywW fi-/+ /N f/+4-!eJ@ DZ4 @@DZeY44I$I$%43$@$DZ39P%`pPI$I$ II!@$! !I$I$E)I$I$E)I$I$E)I$I$E)I$@!V^ ! I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$d!d I$I$d!d !I$H !a.I$I$!I$H$!ꪪI$I$ zz^I$I$$!!I$I$!I$I$!I$I$ p ! 5I$I$E)I$I$E) $!H!***$H$!x\ ! -I$I$d!d I$I$E)aI$I$E)I$I$E)I$I$E)I$I$E)aH$I$!I$I$E)aI$I$ ^VWWI$I$AI$I$ / I$I$E)aI !**I$!(U!IIPH/+++ 11iP---/ 1S1f%q----/"p ` ---)41DZ 44I$I$%44I$I$%44I$I$%4H$I$DZ!TTUUI$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d  !b@!@$H$!zz^I$I$!AI$I!ՕI$I$E)aI$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d @ !p@I$I$5I$I$!AI !% I$I$E)I$I$e)I$I$e)I$I$e)I$I$d!d $!b@P !bI$I$e)I$I$e)I$I$d!d I$I$e)I$I$d!d I$I$E)H$I$!x\VUI$I$!AII!-- @$!b@PI$!b %I$I$d!d I$I$d!d I$I$e)I$@!b^ ! I$I$d!d I$I$E)I$I$d!d I$I$d!d $!I$I$!I$I$***I$I!*I$I$E)I$I$d!d I$I$$!!*+I$I$$!! I$I$$!!I$I$e)I$I$e)I$I$e)I$I$$!!I$I$$!!** *@$! $I2$!H$I$!I$I$!I !+*!I!**I$I$$!!_/I$I$$!! I$I$e)I$I$e)I$I$e)I$I$$!!dB2$IE)zj I$!I$I$e)$H$$!I$I$$!bI$I $!j I$!UUE)$!$H$E)!I$Ie) $!I$H$!!>d$I$!bXVX $!b  @$E)!I$I$e)I $$!! $!$I$!I$I! LI$f!UU(0 M$)+%+)@ lz" 3 m%y^M&#E$)VZ I$I$$i%)UUUTI$I$10%)` I$%) I$IE)!E)! C&E)!~^WH$I$!I$I!I$!/ E)! $E)!I$I$e)IE)!I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!* E)$!$I$E)! $!$I$$!I$I$E)aI$I$! I$I$$!! I$IE)!IE)!+ I$I$E)$!I$I$E)$!LE)80E)`I$I$1I$I$1I$I$1I$I$1e)!je) E)`I$I$1$E)!$I$E)!H$I$E)!I$I$e)I I$E)!@$I$E) I$I$! * I$I$$! I I$$! 1I$I$1I$I$1I$I$1I$I$10%)` I$%)b.5I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!vitPE)p7wE`---)SE+--3)` J )4/m6DZ1I$J$E)UTTTE)@IE)U`$I$%)bTW\!E)b I$I$1I$I$1I$I$1I$I$1I$I$1$E)pI$%)5I$I$1I$I$1e)!jIE)5I$I$1I$I$1L&E)VX E) I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1H$@ E)bTTP@ E)dB&`E)~zI$I!z I!I!5%)$!I$I$1I$I$1I$I$E)!*%K%E)bpXpِ Ile) %%I$I$e)E) e)!@H$I$E)b8U0E)I$I$e)E)I$I$1 %`E)@P@ DIE)I$Ie)E) LB2$ E)$!mX$E)`PI$I!b %I$I$!I$I$!I$$!*$Ie)! +$H$e)E) -I$Ie)E)/K$E)bTW0e)b  I#&E)b@Pe)bI$I$1"I$I$e)E)I$I$e)E)I$I$e)E)?I$e)E) $I 1E)b@Ie)E) H$@ e)E)I$I$e)E)/H$e)E) ,E)@ɐdE)5I$I$e)E)H$1"$I)8e)UUؒ,ɒlH ɖlɰP8D `8V wR!%1+* Bz?ɟEE)TTUUI$I$E)I$@E)$! E)!/E)!$I$1@!e)E) % @!@! e)E)@L$LFE)bTUT0IHE)I$I$e)E)?@ e)E)"IE)@I %)U,I$I$1I$I$E) **$A$e)E)+?@ e)E)I$H$e)E)UUWX$e)E) 5K$H$E)\^|I$I$$!%׿0e)!dB$Ie)E)X H$1e)E) E)!I$L$E)!UWV\I$I$E) E)! 5I$I$e)E)I$I$e)E) I$e)E) //I$I$@!I$I$@!I$I$@!@$ e)E)I$I$e)E)e)%)@! (E)@$A$E)!*H$@$E)  I$E)! *I$A e)E)II$e)E)  I$@$e)E) I$e)E)??@!I$H$1"I$I1"I$H$e)E)I$I$e)E) *I$I$e)E)I$I$e)E)I$H$1E[)l1E){iH$e)E)?WU @e)!N$N,E)׾(l`e)  @$E)@PT`1e)b %I$I$9I$I$9I$I$1e)I$I$9I$I$9I$I$@!e)E)`I$H$E)  1 IE)!?@  e)E)II$1"I$I$@!H$@ e)%) I$e)E) **I$I$@!I$I$@!e)%)I$I$e)%)e)$!r"ْIe)\IHe)e)E)xI$L$E)!WWV\I$I$E)a ِme)!1!)I$I$9I$I$9@1E)I$I$1E)I$I$9I I$1e)I$I$1e)ꪪI$I$1e)I$I$9I$I$9I$I$90e)E)`@ $E)!-Ie)!/?I$L$e)!$$AE)! +*e)$!I$I$9I$I$@!I$I$9I$H$1"r$e)a8I$I$1E)I$I$9H$@$@! 1E)f1 I$I$9 9@$ 1E)IB&d&E)!I$H$!ꪪ  $! **te)! ?1e)**I$I$'9#H$1e) 1e)I$H$9 1E) I1E),I$I$'9#@$ 9@ e)bpI1% I$I$'9# 1E)ꪪI$I$@! 1E)I$H$1E)H$h%e) A$I$$!!Š I$E)!- f1E)  '9#Km؆me)!<@!1E)I$H$1e)I$I$9@$A 1E)II$1E)/?/I$I$9! &1E)jz  1E)@e)@HIe)b,Uf1!I$I$1e)vh`f1 %%pSq{f`+/-Sf +--4,MN 43DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4  DZE@@@4DZE44I$I$%44I$I$%4$@$DZEPPP4DZE4@9@Id&$!*PI„$A$!a(I @E)!$@E)$!H$Ie)I E)!I 0H%)%=I$I$PH6e`H/yw7EX/)qRT E/+1&d @+ 4 `E4 DZeY43 $DZ31 @$1p$J$X\TTI$I$ !I$I$!A!I$I$E)a !@! I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d $@$!I$I$!WW^zI$I$  +WI$I$ ^^UUI$I$%% I$I$!I$I$E)aI$!bxI !a' I$I$E)I$I$E)H$! !* I$@!axI!- I$I$d!d I$I$E)aI$I$E)I$I$E)aI$I$E) @$!I$I$E(CI$I$!zzI$I$! I$I$VI$I$!I$I$E)a !I$I !a!I H= I PH* y9qP-///"1%y---1&p)+++410DZ 44I$I$%44I$I$%44I$I$%I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d @$H$!bPTP@  ! % I$I$!^WWUI$I$!AII$!UI$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E) $!pI$I$TUUUI$I$!UUU!I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d !b@ !bI$I$e)I$I$d!d I$I$e)I$I$d!d I$I$d!d  @$!`xXI$I$!AI$I!U !!b@I!bI$I$E)I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$E)I$I$d!d I$I$d!d I$I$E)@$H$!I$I$!I$I$!jII$!bUI$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$$!!I$I$e)I$I$e)I$I$$!!I$I$e)I$I$e) $!@$I$!ZVWI$I$!AI !+I$I$d!d I$I$d!d @$!TI$I$$!!/ I$I$e)I$I$e)I$I$e)I$I$$!!I$I$!!**+  @$e)I$I$e) @$$!I$I$$!bI$I$!?I$I$$!!AI$d@$!bU0 I%)I$I$e)I$e)1I$I$1@$!p$$!H$I$$!! I  $!  $I2$!@$I$!I$I!/$!I$I$$!! DI$f!UU%0IܔL$1+!hn+++!](iz訪&3 iE^zm6 E$)Zj %%q$!UUUP`$dB2$!bPTP@  @E)b%  @$E)! Id$$!@$I$!I$I! $@E)!U E)!$H$E)!I$IE)$!IE)!I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!@$E)!H$I$E)! @$$!H$I$!I$I!*I$!*I$I$!!IE)!+ E)! I$I$E)$!I$I$1I$I$1I$I$E)$!`$`2E)bXTX`I$%)b5I$I$1I$I$1I$I$1I$I$1I$I$1@$1 e)I$IE)!I$I$e)I$I$$!!I$I$!! I$ $! * I$!@$I$e)H$%)$!I$E)!E)!I$I$1I$I$1I$I$1I$I$1E)!jI%)b5I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$! IP%) Syt%yP//%N7S%y+/-1#PNr +1,8~-H$P%E)TPPPI$I$1I$I$1@E)I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1E)@IE)5I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)!I E)!E)!0%)I$I$1I$I$1E)E)˖dE)e)E) +he)I$I$1 I$I$1 I$I$e)E)I$I$1 I$I$1 I$I$e)E)*$I$e)E)*#I$Ie)b@IE)b $C2 E)!WI$H$$!I$I$E)aI$$! + @ $!IE)=-J" e)a\ٶmle)!K%E)bTP@ e)bI$I$1"I$I$1"$H%E)@PTP E)I$I$e)E)/X$@,E)bPTP@ٖ 0E)b e)%)$H$E)\PIIe)@ $e)b`I E)b5-[5E)b@P`DIfA@$I$He)I$IPH+mv`H+ qRB$qX-/KC'%yE)PTVUI$I$1@ E)! E)!$E)$!$I$E)! .H$E)$! )(@ e)E)I$I$1"@$I$1" @! $e)E)I$I$e)E) I$e)E) /?@$e)E)H E)!I$I$E) I$I$E)! I$E) ** I$e)E) /ۆe)!I$I$1$I$e)E) he) I$I$1"II$e)E)H$ e)E)V\zj I$e)E)%UI$I$e)E)@0E)!pI$I$$!!UUUTI$I$E)!UUE)!I$I$e)E),E)@I$e)U@!I$I$@!I$I$@!I$H$e)E) Ie)%) **I$I$@!P$P)e)PTP@!!%)   IE) **I$I$E)!$!e)$!I$H$e)E) e)E)dH$E)TU e)$ @!I$I$1"I$I$e)E)I$I$)(  e)E) I$H$e)E)@ )( I1E)UH$@$e)E)TTPP e)E)II$1"e)%)R")IE)P@!@ e) I$I$9I$I$9I$I$f1e) e)$!e) I$I$@!I$I$@!d& 0E)!I$I$1I$H$E)!e)! I$H$1" @!p$e)^E)  e)$!I$I$@!I$I$@!H$@$e)E) I$e)%) **H$@@! @!I$I$e)E)`$0E)!Xp`I$I$E)a E)! 5e)%)I$I$f1e)I$I$9I$I$1e)1E)I$I$9I$I$9I$I$9I$I$@!I$I$9I$I$9I$I$99k6kE)!II$E)!?h&@R4e)!IE)!@!e)$!I$I$@!I$I$@!I$I$9lle)!@I$r e)bU8e)I$I$9 1E)II$1"@f1@Ie)b,U DI1%)**I$I$1E)ꪪk&[5E)!H$@ $!II$!*I E)!?/$!1E) 1e)I$1e)1e)H$@$9II$1E)**I$I$9!I$I$'9#1e) 1E)j I$1!.1E)1e)I$H$1E)II1E)H$@ 1E)ꪪ@%ز-e)!I$I$$! ***I$I$$!!*ې ٖmE)!1E)H$@$1E)! 1E)H$@$9I$I$9 $9I$I$@!1e) 1e)H$I1e)I$H$1E)! 1 6 *I$H$1e)I$I$9DHHX1URwwEX/&7S%y +/-1& O +)410DZ 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%43%44I$I$%44I$I$%44I$I$%44I$I$%41,,DZ1K$H'$!TTT\E)$!$IE)!I$I$1I$I$1I$I$1%!?2 P%))I PH**  w7qP// yyw/fi/+ /1N f+*4")&E@@4 v`>`%a/43 DZ4H@$EyPP1 @`E H$I$TWUUI$I$!!@!*I$I$E)I$I$E)a@$H$!A I!a - I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$d!d H$I$!I$I$!jꪪI$I$ AI$I$I$I$ I$I$!I$I!*I$I$E)!I$I$E)aI$I$E)!*I$I$d!d !I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)aI$I$E)H$H$!I$I$E)aI$I$!Z^VVI$I$!AI$I$ ՕI$I$E)aII!**I$I$d!d m&mb@_?@H !XH/qS7%yX--/%1OE----1( p 43DZ44I$I$%44I$I$%4 DZ!@@I$I$d!d I$I$e)I$I$E)I$I$d!d I$I$d!d I$I$E)!$@$!zzI$I$!AI$I!UՕI! I$I$E)I$I$E)I$I$d!d $H$!b|xI!b--I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)@$H$!p\VWI$I$!AI !5% I$I$E)I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d  !H$I$!bI$I$? !)+ I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$d!d  $!I$I$!I$I$!I !* I!&I$I$e)I$I$e)I$I$d!d I$I$$!!+ I$I$$!!I$I$e)I$I$$!!I$I$$!!I$I$e)I$I$d!d $H$!hZ^I$I$!AI$I!U! I$I$d!d I$I$E)I$I!bUV $! $!`I$$!b&I$I$$!!I$I$d!d I$I$$!! I$I$$!!$$!H$I$!I$I!?$!I$IE)! @$E)!I$I$e)Ie)H$1 1I$I$1$E)!H$I$E)!I$I$$!!* $I2$!@$I$!I$I!? $!H$H$!b^X ! $I$I0$!$I$f!UUU%Id$)+ W*++#Sh$z +3 f^zl3 f9jIʏ%q$!UUT@$E)! @$$!I$I$E)aI$I!* $I$!/  E)! I$E)!I$I%)$! E)!I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1$H$E)!I$I$$!!x$H$$!I$I$E)aI$I$!*  $! I$IE)! E)!*$ E)@pp IE)/+I$I$1I$I$1I$I$E)$!I$I$E)$!E)!jIȐ E)I$I$1I$I$1I$I$1$1@$I$e)I$IE)! $E)!$I$E)!I$IE)!I $!  E)$!I$I$1I$I$1@E)!I$I$1I$I$1I$I$1@$E)!E)!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1H$H1I$I$1I$I$1I$I$1`%) ($I$HH%)51wiH//pO7wfi /-,%`sf +,%$d>) P,ڸfaР X/EY_  :>%a@~xx^&m&80~$I$1b($I$0 $I$1b $I$0 $I$0(U$I$1b($I$1(I$%1( I$0%)UI$0E)U!$0E)U_$0E)UU0E)UU_I$I$1E)UUUI$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1H$L$E)a^Z!E) I$I$E)$!I$I$E)$! $E)@@`pII%)bUI$I$E)$!*I$11 I$I$e)E)****I$I$e)E)I$I$e)E)*I$I$e)E)I$I$)(I$I$1 I$I$e)E)*H$I$e)E) H e)!I$ E)!I$$!I$I$!jjI$I$ UW!A!E))@$E)! *$@$e)E) I$@$1"I$I$1"I$I$1"I$I$1"`E)@e)E)I$I$e)E) )(H$e)E) 5@$@$e)%)mE)Ie)E)$@!He)E)p۲lE)@IHI$IPHIvm`H//%yX/ 2$J$%E)BPTUI$I$e)E) *LB&$Ce)E)W\`I$I$1 0HE)!I$I$E)!I$I$e)!IE)! /  )(@Jd$E)a  e)E)I$H$1" $I$1" @!I$e)E)I$I$e)E) Ie)E) ?I$@$e)E)I$@ E)!@$E)!*I$I$1 I$E)!H$H!0k le)! $e)E)%=WII$e)E)H$@ 1"I$I$e)E)I$I$1 I$H$e)E)UWVX e)E) 5 e)!@kkE)I$I$E)d$I$E)b:WWPe) e)!I+E)b&e)E)I$I$@!I$I$@! e)%)ФE) ( e)%)II1"$0 e)$!I$I$E) @$ E)!II$E) **Ie)E)I$I$e)E)L")@E)bTm۶mE)!@!I$H$1"I$I$1"I$I$e)E)I$I$e)E)/?@$I$e)E)I$I$1 )(B $@e)E)@C I$I$e)E)UUUe)E) @!H$@$e)E) I$e)%) $I$E) WVe)!I$I$9&e)bp` e) %%  e)E)жMڤe)!@$ 1E)ZzI$H$E)$!E)!ꢢII$E)! **@$ e)%)II$1"rڐHe)Xm6lE)! Ie)%) *I$I$9I$I$@! e)%)I$I$e)E)* e)E)I$I$1"I$I$1" E)!I$I$E)!UUWVI$I$E)!UU$@$e)E) )I$I$@!I$I$9@$H$@!I$I$1"1E)I$I$9I$I$9I$I$f1e)I$I$1E)I$I$9 0e)E)`@$!Ae)E) `&0e)$!I$H$E)$!-4E)!KoII$%)!  e)! +I$I$@!I$I$@!I$I$@!@$@$e)E) I$e)E) +/I$I$1e) e)! IE)be)$!1E) e)$I$I$9I$I$9X e)!$C2$ $!I$I$E)a$@!$! t1!*++I$I$'9#I$I$1e)I$I$9 '9#I$I$91E)I$I$9!I$I$'9#  1%)訨IP 1! @  1e)II1e)@$@$1E)I$I$1e) '9#؂le)!I$I$$!! !IE) '$!1E)@  1E)II1E)@  '9#I$I$9I$I$9I$I$1E) 1E)@$@ 1e)II$1e)@$A$1E)I$I$1E)H$@$1e)I$I$9 1e) ** 7WhE1 )) R7wfi +/-/JS--4-@ RDZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$&44I$I$%?4I$I蹧?4$DZEU?4I$$蹧?4I$H$DZUUW44I$I$%43  DZ1@$4Ppp`$!@E) I$I$1$E)$! $E)!` aa$!% @$H$X@hi6e`9*)ywEX-+ )qRT E/+;&ynȹ+= 4iRIDZea44I$I$%41l؆-DZ3@EyP1 09@@`I$I$ II!I$I$E)aI$I$d!d I$I$E)I$I$E)!!I$I$d!d  @$!ax !a-I$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$d!d I$I$d!d I$I$d!d   !I$I$E)aI$I$E(CI$I$!~^^WI$I$UI$I$!I$I$E)a !****  !I$I$A.?!*  !I !***  !I$I$A ! I$I$E)aI$I$E)I$I$E)aI$I$E)a !I$I$E(CI$I$!I$I$TWWUI$I$!AI$I$!I$I$E)a ! I$I@!UU5 H! I$IPH+*IqiP/yw7E`/ +1wSdE-++3)JP 43DZ44I$I$%44I$I$%4  DZ!@@@@I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)H$I$!^VWUI$I$!AI !I$I$E)I$I$E)I$I$d!d I$I$d!d @ !p !I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E) $!hjI$I$!AI$I$UU!I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$d!d I$I$d!d @$H$!`I$I$bI !%-I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$e)$H$!b`XT !b I$I$e)I$I$E)I$I$d!d I$I$d!d !I$I$ bVUTI$I$I$I!! I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$$!!I$I$$!!I$I$e)I$I$e) $!hI$I$!VUUUI$I$UU5 !)+ I$I$d!d I$I$d!d I$I$E)I$I$$!!I$I$$!!*$!bI!b7 I$I$d!d I$I$$!!//I$I$$!! !`H$I$!I$I$! $! I$I$e) $E)!I$I$e)I  e)I$1I$I$1I$I$1 1H$I$$! I$I$$!!*** $$!`$I$!bUUI$I$!b- ! I A$$!!!I $! *H$! $!/ I$Ie)%Mɖd$)+ f *+% `& hfx蠀" # fi~$b1%y!UTP@I$I! $!* I$E)!UI$I$$!!%% @$I$E)!IIe)I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!$E)!@$I$E)!$$!@$I$!bhXTI$I$ b %I $!* I$I$$!! IE)!I$I$1I$I$E)!I$I$1 E)!I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1$1$I$e)I$ E)$!IE)!?  E)!$I$ $!bII$e)I$e)@ 1I1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1dB& $! $!!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$10`$%)`XT@!%) $%)(UH$%)(VU$I$0E)I$0$) @0I$I$H8ɐ I XH--%%EH+%N)wf+&#K:~!Ъc>izc:fy%Iz~`-s$%IWH$I$0a_I$I$ aI$I UI$I$ aI$I$ UEI$I MNI$I$ aI$I$ AI$I$!I$I$(UI$I$(UI$I$( I$I$( I$I$0 I$I$0 *$I$$1(UUUI$0E)*I$0E)U$0E)UU_0E)UU_pI$I$E)$)$E)p!E) I$I$10E)p E)+%I$I$1I$I$1E)$I$I$1I$I$1I$I$1@E)!pI$I$1I$I$E)!L$E)b,@0E)bpI%)b5 I$E)$!E)!I$I$1I$E)! 0E)!@͐dE)I$I$e)E)**I$I$e)E)蠨I$I$)(I$I$1 I$I$e)E)*I$I$e)E)*$C$Ie)E)pd E)!dB$ %)!W^I$H$!߸I$I$ hI$!*$I$E)! +$I!e)!+I$@$1"I$I$1"I$I$1"I$I$1"I$I$1"I$I$1"@ e)E)^xpII1 I$e)E)?H$@$e)E)WV\P I$e)E)U@$ e)E) QL$E)b8C۶He)I$I$H@I!XH= {7e%yP+!C$%E)BPTI$I$e)E)I$I$1  I$e)E) I$`B0e)E)UVXp۰ ۶5E)X E) I$I$e)I$A$$! @ $E)! /I$HdE)bVW0 DRE)H$@e)E)I$I$1"I$I$1" @!H$@ e)E)I$I$)( e)E) $C e)E)L$ E)!$I E)!I$I$1d@$AE)!: e)E) L$L&e)E)WWV\ e)E) -5$H$I2e)E)@I$)(I$I$1  e)E)pj*۰m۶eE)42E)`IIE)b? I$L&E)!UWTXH!0!!E)! %I$I$e)E)I$I$e)E) I$e)E)/?I$I$@!I$I$@! e)I$I!(ݐ ۶mE)!$@!I@!LB&`2E)! E)! *E) te)! /I$H$e)E) Ie)E) *I$I$e)E) e)E) /@ @!I$I$1"I$I$e)E)I$I$e)E)I$I$e)E) I$I$e)E)1  I$e)E)7UUL&`0e)$! e)$! `$E)b@Pɐe)b %I$I$e)E)L" e)b I$I$9I$I$9e)E)@ٰ ۶me) I$I$@!Ie)E)U<1e) 0e)! IE)!I$E)!ݐe)! I$I$1"H$I$1"A$I$e)E)I$I$e)E)>e)%) @! @!$ e)E)`H$Ie)E)UUI$I$e)E)A$ 1"I$I$e)E)L&`0E)!\XX`I$I$E)aِmlE)! @!I$I$9I$I$9H$@$@! 1E)I$I$9I$I$9I$I$f1e)I$I$1e)I$I$9I$I$99e)E)@@  E)!IIE)!I$L$E)!!!E)!+++e)E)I$I$@! e)E)@ e) I$H$e)E) 1E)I$I$9Ie)!U(H$@$e)E) Ie)%) **I$I$@!I$I$9I$I$1E)@ 1E)L$L&E)!~H!I$I$$!!5mte)! ///1E)H$H$1e)I$I$9 $I$1e)I$I$9 1E) I$I$'9#I$I$'9#@$@ 9II1E)***1e)I$I$9 A$9I$I$@! 1E)dB&`21E)L$`&E)!^|xX!I AE)?**! 1E)$C$I1E)ꪪI$I$e)E)@1E)I$I$9I$I$9I$I$1E) I()1$! jԤI$1(Uf1!I$I$9I$I$@!A  9I$I$9II$1e)kv[X1pwE`/-)`SE+/3)` R -43DZ44I$I$%44I$I$%44I$I$%44I$I$%?4I$IDZUUUD4I$I DZUUUD4I$IDZUUUJI$$)EUUJ4I$I)DZUUUO4I$I)DZUUUO4I$II)DZUUUJ3I$!1 DZUUi`4Hy@I$I$1 E)!I 1;I$Ii$!UUUMsI@먠I qPUɟ-̓HZ ɟyjq/e߮ifR-ɟJ§UUUJ mhEy?3?'蹧?_=1'O$蹧pUUU11I$I$;b&j"'ǹXXXXI$I$b !I$I$E)I$I$d!d I$I$E)a  !@I$I$ A,߿!I$I$E)H$!AI!A/ I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)I$I$d!d  $!`H$I$!A*I$I$E)aI$I$ `I$I$*I$I$!յI$I$E(CI$I$E)a!* I$I$E)I$H!awܰ ! I$I$E)aI$I$E)I$I$d!d H!I$I$d!d I$I$E)I$I$E)I$I$E)aI$I$E)a@$@$!I$I$E(CI$I$!zz^^I$I$!AI$I$I$I$!I$I!I$I$)!UUU !IH!5 I$IPH6e`H/{7EX+% yys.U $q+ 1 1n ++ 4/i PDZ4  DZE@@@4 DZE4$DZ!@P4$I$DZ!@QUU !@I$!beQz #L$fY`VWI$I E)AI$I$ AI$I$bjI H$! I$I !A)I$I !AH$I$ |*I$$ I$ $!I$I$I$I$$)AjI$I$@I$I$!A+I$I$ I$I$ I$I$ ! I$I$(*I$I$(*I $(+I0!*I 0) $dB0%)P H$ I8^j I$@9I$I$8E)UUU@E) @ AE)% I$I$1 E)@I$I%)bU,E) I$I$1I$I$1I$I$1I$I$1E)@I$HE)bU,E) I$I$1H E)!IE)! E)$!E)!E)`IͰmE)b5I$I$e)E)*I$I$1 I$I$1 I$I$1 I$I$1 I$I$1 I$I$e)E) I$I$e)E)  E)!mӶ[mE)!_I$H $!bZVX@I$I$ b % I$$! +@$E)!  de)I 1"I$I$1"I$I$1"I$I$1"I$I$1"I$I$e)E))(I$I$)(e)E)@ /IȐ$ e)E)E)!@IdlIU  H@* IIPH// niH T2%Eb BP E)bI$I$e)E)I$I$1 I$I$e)E)I$e)E) *d"'PE)b`X` ɖmE)b 5  CE)!I$I$$!!I$I$$!!** $E)! /H$H$1! e)E) 5@$@$1"I$I$1" I$1"$$@!I$I$e)E)I$I$e)E)/ e)E)۲ۆmE)!IL2E)! $E)!IE)!*/$ e)E)- 0He)E)p`I$I$1e)E) -Ie)E)I$I$1 I$I$e)E)*K$HdE)TUT۶mE)I$I$e)E)@ E)!p@I$I$E) I$E)!%UE)!I$I$e)E)I$I$)( e)E)I$I$@! e)!L$Le)!U,e)$! $e)E) +e),@  e)E)[%X%E)jXh E)/+ I$E)!/$I!e)$!I$I$e)E) H$A e)E)I$I$e)E)/$e)%)I$H$1"I$I$1"H$I$e)E)I$I$e)E)/I$I$e)E)*I$I$1 I$H$1 e)$! I$I$E)$!**0E)@ e)H$@$e)E) I$e)E) **I$I$@!I$I$9I$I$9I$H$1" @!@ 8e)b`I$e)a5$ e)!I$L&E)!H$A E)! E)!//H$ 1"I$I$1"I$I$1"I$I$e)E) Ie)E) @  @!I$I$1"@$I$e)E))(@$ e)E) I$1"I$H$1" E)!`I$I$E)a IE)!5 Ie)E) I$I$@!I$I$@! @! I$1"I$I$9I$I$9I$I$9 @$@!9I$I$9I$I$9Ee)L$`B&E)!I$H$e)`B$D0E)! IE)! e)$! I$I$@!$@e)@P@ĉ e)b%% H$@$@! I@!I$I$9I$I$@! e)%)I$I$e)E)**I$I$@!&L"&E)PTP f1 I$I$1E)ꪪk&X5e)!I$I$$!!TT\P@$H$!b@PTXitItE)b %)n1E)@$ 1e)I$I$9I$I$9I$@$1E)II1E)H$I$1e)I$1e) 1e)I$I$91e)H$H$1e)Df1 f1e)$@$1E)+/ 0 1E)ꨪ[5[4e)!p``I$I$$!!I$I$e)۰ ېme)! 1E)I$H$e)$!  )1 j!f1b % 1E)jf1I$I$@!N" f1(۶m؆-f1$!II$1e)I$I$1e) 1E)I$I$9I$I$9 0HPf1UUU .qw%yP/" 1w%q+/1"Ns ++-41ِ DZ **?4I$I$蹧??4I$$蹧?4I$@$蹧44I$I$&?4I$蹧D4۰ I$DZD4IlDZUJ4!$)§VJ?I$I蹪UUO46)§ jZ4$JDZ Uk4۶m$jDZU1lK$ҧUL$H'j$)TTT^I$E)$!IE)!#Iphf$):E`xxxx$DIiXCIX'ɟ%)I$n㧩UU(ɟn맩/U3d $DZU1$맱U1Cn맩1Ipn㧱U"H$K$\TVWI$I$ !I$I$E)I$I$E)I$I$E)aI$I$d!d I!&I$I$E)I$I$E)aI$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d  !I$I$d!d @ !`I$I$ b/ I$I$E)aI$I$ jꪪI$I$I$I$ jI$I$ a /I$I!**I$I$E)I$I$E)I$I$E)!II!*I$I$E)I$I$d!d I$I$d!d I$I$E)aI$I$E)I$I$E)I$I$E)a !@H$I$ a&I$I$!I$I$!^WWWI$I$!AI$I$AI$I$   !** I H!% H@ I$ PH%/ S9qP--! yw/e fi+ -qN@f*3 $ET4DZE41%4 DZ!@4@$I$DZ!PTUUI$I$d!d !I$H!׾I$H !bTX` !b I$I$E)I$I$E)@$H$!Z^VVI$I$I$I$*>!I$I$E)I$I$E)I$I$d!d I$I$E)aI$I$d!d I$I$d!d @$H$!PTX` !I$I$E)I$I$E)I$I$E)I$I$E) @$!jI$I$$!!I$I$!UUՕ !**I$I$E)I$I$d!d @ !b`I$I!b5I$I$d!d I$I$e)I$I$e)I$I$e)H$!P@I$I$!-!I$I$d!d @$H$!zx\TI$I$!AII! !@I$I$bU !I$I$E)I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$E)I$I$d!d I$I$d!d  !H$I$!jz^I$I$$!! I!*I$I$E)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$$!!I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d @$I$!jz^I$I$!AI$I!Օ! I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$$!!*I$I$$!!I$I$$!!jzH$H!8!I$I$d!d $H$!@xX^I$I$!AI$I!ՕI$I$$!!I e)@$I$e)I$I$e) I$e)I e)@$1 1$H$E)!@ !bpI !b% $@$!hI$I$b I !?/ $I$H2$!I$I$$! I$I $! * @$I$e)I$I$e)I$Ie)10 $!b@I !bUI E)!DI$f%)UU(0 n1+!0Hs"+$z) Eyl26E$)Zh $$i!UUUTI E)!E)$!I$I$1I$I$1I$I$1I$I$1E)`I$!/ $$!p$I$$!WUI$I$!bjI$I!bU& $! I$IE)! e) %) 7I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1E)!`0%)bx $!a $H$e)$$ E)!$@ E) *h $E)!I$I$e) I$e)1I$I$1@1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1$($!UUU$$$) W`$I$(AI$I$0WUI$I$(_I$I$ aI$I$AzI$I$A쏪I$I$A/ZI$I$AI$I$ J(I$I$AI$ $ A'Ϻ-gN $IA ywdEq$Q-/+ qN Eq++aݶm刪 Ѡ/:izЎ=a`I$I$a<I$I$ I$H$ mVI$IE)b?I$I$I$H$!I$I$!jjM$I$1>_IA$E)AbI$I$ AɖI$E)?I$A$E)I$IXE)b"IB8I$E)zI$I$$)UI'I$e) I$If1/I$I$!AnI$I$jI$I$ I$I$ bhI$I$ b $I$0 W$I$1I$A *I$A( UZ;EA0 UUm ޔ8E)U_m۰@E)UUVE)! . E)!(@E)!I$I$1 @0E)` IE) 5I$I$1I$I$1I$I$1I$I$1I$I$1I$I$10E)` E) IE)$!$E)!I$I$1 I$11 I$I$1 I$I$1 I$I$1 I$I$)(I$I$1 I$I$1 @$M$e)b^^V)E) I$ E)!I$I$$!bVWVI$I$ b  $I$!JI $!b?  E)! *@$I$1"I$H$1"I$I$e)E) I$I$e)E)I$I$1"I$I$e)E)I$I$e)E)$H$)( e)E) 5$I"$8E)UU IHE)I PH* wiH+wS%1**JBy|ɐ۰mE) I$I$e)E)I$I$1 I$I$1 I$I$1 e)E)B *I$L&e)E)UUTX I$e)E)UUI$ E)!@$! I$I$$!!H!E)! I$H$1$ e)E) %5I$H$1"I$I$1"I$I$1"I$I$1"I$I$e)E)I$I$e)E) /H$e)E)@0 E)!IE)$!H$@ E)!!!IE)! + I$e)E) /" 0E)`I$E)b 7e)E)I$I$e)E)I$I$1 e)E)j**I$H$e)E)UWVX e)E) 5I$I$e)E)H$@0E)!T\P`I$I$E)m$E) ze)I$I$e)E)II$e)E)?I$I$@! @$@!@!H$ e)E) E)@I$I!bU m۶me)!H$KE)$$E)!?-H$E)! IE)! **H$H$e)E)4E)`I$E)a?I$I$e)E) ?I$I$1"I$I$e)E)E)!I$I$)(I$I$e)E)  X$E) @ )(mѶM$e)!*H&@$e)$! Ie)E)II$e)E)* @!I$I$e)E)e)$!I$I$@!I$I$@!@$ @!II$1"`le) IHHe)I@!k6[E)!蠠 E)$!I$E)! e)!@$M$E)a^X e) I$I$e)E)ࠀI$I$e)E)*.@!I$H$1" I$1"I$I$e)E) e)E) I$I$1"@$A$1"I$I$e)E)L$H&E)!VT\XI$I$E)mٖnE)! @!I$I$@!I$I$9ۆm؆ee)!01E)I$I$9I$I$9@ @!@!I$I$9I$I$9J$Ne)TUV(E)H$@$E)!! E)!/H$1 IE)! *I$I$@! @!@! @!I$I$e)E)I$I$9I$I$@!I$I$@!I$I$e)E)e)%)e)`e)%)I$I$1E)X 1$!z @$!bp\@!b` $!  1$!++/$*5f1!pf1! 01E)z6`l1E)ꫥI$I$@!@'9#I 1e)I$I$'9#I$H$9 1e)@$@$1e)H$L1WVAD@1 I1E)@  92 e)$!I$I$$!!I$I$d!d !e)! C 1E)e)E)@ E)p@I!!E)b&E)@P@ DIJf1b5% I$I$@! 1E)#'b11$!x^Xh0f1! I$I$1E)II$1E)I$H$1e)I$I$91e)qWhE)))pSq{f`+/-Sf +--4,MN 43DZ44I$I$%44I$I$%44I$I$%44I$I$&44I$I$&4%( @DZ@4% DZ44I$I$&44I$I$&44I$I$%?4I$IDZUUU?۶m۸!ǹE@1P H[&۶P8ZX[4$X@*{7gEX+>H$EE)@PTUH$@ 1@0E)P`Il0E)a5 I$I$1 )(I$I$e)E)I$I$1 I$I$e)E)I$I$1 `B2$Ie)E)X` I$I$1B$@E)! I$H&E)!I$I$e)!I$E)! /H$@$E)  I$e)E)5UU I$e)E) I$I$1"I$I$1"I$I$1"@ e)E)X`I$I$1e)E) dB2$ e)E)_|I$@$E)! %)$!I$I$E)!*$ e)E)/-0He)E)p@H$HE)0E)I$I$e)E) I$I$1 I$I$e)E)*H$@ e)E)V\Pb I$1I$I$1 `0E)!X`I$I$E) I$E)!5 B E)!@@@H$I$!bUUUIIE)I$Ae)E)e)!`$I$%)bTUT0e)I$I$e)E)*@$ e)E)II$1"[ le)!$Ad$E)*^ E)lɖdE)!?H$I$e)E)I$I$e)E) **I$H$e)E)UVTX e)E) %%I$I$e)E) E)I$I$1 E)!@IE)5I$I$e)E)@ )( I$e)E)5UH$@$e)E)VT\P )(I$I$e)E) **I$I$e)E)I$I$1 e)%)I$I$@!I$I$9H$@$e)%)dB$Ae)E)Z **I$I$@!H$H$1" e)E)M&k5E)! $e)!I$E)!+He)E) I$I$e)E) *I$I$e)E)H$I$e)E)II$e)E)// @!I$I 1"  $e)E)I$I$)(@  e)E)I$I$e)E)*I$I$e)E)e)$!I$I$E)!UWW\I$I$E)!U$A$e)%) *+m۲%e) pIe)! %X`e) 0I$I$1"9I$I$9I$I$9I$@@!1E)P(e)P@Ie)a5 I$I$@!H&`0e)$!I$H$E)!CS]&E)`zI!$!%  ! e)! I$I$@!I$H$1"@!H$@$e)%) Ie)%) *I$I$9I$I$@!@e)@IE)b,U00e)  @ @!I1E)I$I$1E)ꪪm&h5e)!I$I$$!!VTTXI$I$E) IE)!/!!1E)H$ 9I$I$9I$I$9I$I$1E) I1E)@$1e)H$@$1e)I$I$9I$I$9I$I$9I$I$9I$I$9I$H$1E)!!1E)II1$!hI$h E)UV!bII$E)!U Ie)E) I$I9I$I$e)E)1%)I$I$9I$I$9I$I$1E)I$I$1e)1e)I$I$9I$I$9I$I$1e)A I$1E)I$I$9۰-[%Hf1U IPH *** 7qSywiP+/-- S1Sf$q+---/"p N+++)41ِ DZ **44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4%DZfP4,DZ4H$HIDZETTT41Y-,DZ1N$x&$)WT\X1Hm)j5ѧf~xz3۠ MfEV"yN E+ /"1eJ+ 1fi1/$1/31 43I$IDZ*4+$ @-x$N$\\VWI$I$!I! !  ! &I$I$E)aI$I$d!d I$I$d!d I$I$d!d  !I$I$AI !5 I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d  !I$I$E)aI$I$E)aI$I$!zzZ^I$I$!AI$I$!I$I$E)aI$I!$H$!|I! I$I$E)I$I$E)!**I$H!V !I$I$d!d I$I$E)aI$I$E)I$I$E)I$I$E)I$I$E)H$I$!I$I$!I$I$TVWUI$I$!AI$I!H$H$! H I$IPH6e`H/ ܻ+@i@ܻ+ fX9qWnDZf+# 4-!eR@DZ4+ DZ4,DZ~-$!@P-H$I$!TUUUI$I$d!d I$I$d!d $H$!b@PTXI!b I$@!bV\ !b I$I$E) !I$I$ VVWUI$I$$!! !+* !I$I$!bVUV!I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)@$H$!px^^I$I$$!!II!I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$e)H$!TP@I!b% I$I$d!d @$!b0\! @$!`XI$I$ bI$I$UUI !+* I$I$E)I$I$d!d $!x!I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d I$I$d!d I$I$E)@$I$!zI$I$!AI$I$!jII$!bUI$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)H$H$!|XX$I$!b !!I$I$d!d $H$!I$I$I$I!Uյ !+ H$!TP@I!b% I$I$$!!I$I$e)I$I$e)I$I$$!!I$I$d!d I$I$$!!UU% !I$H$!bUVX`I$I$b%I$I$!AII!5- I$I$$!!=- I 1H$I$$! I$I$$!! I$I$e)I$I$e)I$I$e)II$$!!H$I$$! I$I$$!!*  !I$I$ I$I * ! I$I$$!!I$I$$! *I A$$! I$I$e)I$Ie) 1H$I$$! I$I$$!!*I$IE)! @$E)!I$I$$!!W$!! *$I %) 5 @$E)!I$I$e)"I$f$)U!Vn.E(/-)m 0F+3+@f_z&  %yW~I&c=%$)UZh$E)!`&$C2%)XI$I$!_WI$I$!AI$I$!AI $!5 I$I%)! E)!I$I$1I$I$1$ `$! \$@E) I$I$1I$I$1$E)!$I$E)!I$I$e)I$I$e)I$IE)!I$E)!$I$E)!I$dB$!bVX $$!b $I$e)$Ad$$!\@$$!1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1`2 $! $@$!/  0$)UUUH$I$1bTU$I$) WI$I$(I$I$ AI$I$AI$I$AgI$I$AI$I$A*(I I$!I$I !I$q$1bI$ $$!a↨ $I$E)A* I$$1UQ}UI$I$!AI$ $!Aja$I$1sI$A$!AH$I!I$I%)I$ $E) R1wfYE1---- pJ/SyfY+dɉ؆yq uTGuTfaEQ :9fYE1xxxx I$I 9Aq$I1a=I8 $1 UeEUAI8E)A&K IE)AI!Afh1;؎؆1f1/Ii$f1!?}<1bbk!@ ϋ~1ڦgضe1:@ !p !L !1\e1`H$I%)IH'9!UT] I N$A!UEWUm۱aE)b* s9NbۆmE)A$Mf1 QUUW H9aDI$%)bI$I$ b8I e1FoA$I$$!QU_I$I$E)bI$1U0*I$I$8( $I$8%)`* 8E)UV`@ e1Zj!@E)b LE)8I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1@$E)0IE)! $E) :I$I$1%) @@$@E)! *I$I$1 I$I$1 I$I$1 I$I$)(I$I$)(I$I$e)E)/I$I$e)E) *H$e)!蠀$C E)!_I$@ $!I$I$E)a$ $! *I$E)! ?e)E) )I$I$1"I$I$e)E)$HE)UUH$I$He)I$IPH*m6e `H+OnU %@W׫*!S$EE)JBPTI$H$1 I$1I$1 $I2e)E)=?H$e)E)TXzI$I$1e)E)I$I$e)E)*I$I$1 I$I$1  E)@؆tI$E),U$A$E)! *@0$IE)! I$I$E)!~I$I$e)$IE)! ?I$H$1!I$e)E) 5UH$@ e)E)I$I$1"I$I$1"I$I$1"$e)E)|Xp I$e)E)5UH$e)E)  E)!I$I$E)!$I$e)$ E)! +/$ e)E) %5LB&$2e)E)T\p` I$1I$I$e)E) I$I$e)E)I$I$1 e)E)j*I$I$1 )(I$I$1 H$@$E)!VVXxI$I$E)a!E)! %ME)b8$)($ e)E) %I$I$1"X,e)@e)a I$I$e)E)E) IE)! ?5A$I$1"M&XE)VX!$@E) *I$I$E)!?E)!I$I$e)E)@ e)E)PbBII$1I$I$e)E)I$I$e)E)I$I$1 I$I$1 I$I$e)E)/?I$I$e)E)I$I$)(I$H$1d2!e)E)RAMII$E)$! * $E)`I$e)/I$I$e)E) Ie)E)?I$I$@!I$I$@! @!I$I$e)E) e)%)@$H$1"II$1"X- e)!I$I$e)I$I$e)ne)! I$H$e)%)fE)I$Ie)E)I$I$)(e)E)$H$1"I$I$1"I$I$e)E) I$e)E)/?I$H$e)E)(I$I$e)E)I$I$1 H&@$E)!\XppI$I$E)P-ҮE)JHIE)UI0e)!% I$I$@!H$H$1" 1E)I$I$9I$I$9I$I$9@!I$I$9I$I$@! e) N$E)8U %)M&me)^Zj*I! $!b% $!E)! +++ @!H$@$1" 1"@  e)%)I$I$e)E)**9I$I$@!I$I$@!%IIE)$ e)%) @$@!I$I1"I$I$1E)X- e)!I$I$$!!PPp@I$I$E)aI$I$!! !!1!++ 1e)I$I$9I$I$9I$I$1E)ꪪI$I$1e)I$A1e)A @$1e)I$I$1e)I$I$9I$ $1E)I$I$9I$I$9@$@$1E) I1E)A$@ 1E)0E)!@@I$I$d!d I$I$d!d  ٖmE)! ID11$! jH$H$1E) 1E)I$I$9I$I$9I$I$f1e)ꪪI$I$@!'9#I$H$1e)I$I$9I$I$1E)I$I$1E)$Hf1UUH$L$8f1$!@PH)) yw7qP-/ 1s1$q+/ 1s1g +4,ݐN4 43@$@%41۶%[%41ۖ$I%41ۖ$I%41ۖ$I%41ۖ$I%41ۖ$I%43II%4/*5RDZǩ4b& DZEXX4! DZ 43 %4/$)R4DZ1X1 H%)P`3-X- 耀-"5 z&~ºfW(-krܰf*3(J0 4-N$ IWT1+u\UU1,!`MK1,۱m UU4-!`DZ 4`(-@`H$H$0TI$I$A( !@$!b`I$I$A? !I$I$d!d I$I$d!d I$I$d!d I$I$E)H!$!I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d  @$!I$I$E)aI$I$E(CI$I$!VVWUI$I$UI$I$!I$I$E)aI !***I$I$ AII! %% I$I$E)I$I$E)a! I$I$E)I$I$d!d I$I$E)I$I$E)aI$I$E)aI$I$E)I$I$E) $!I$I$E(CI$I$!jzzzI$I$$!!I$I$$!!II$! &L@!H!I$I$!`AI!AXH+ {6e%yP+! yw/U fi/+ /1N f+*4,yNݴ + 43 DZ 44I$I$%4 ( @@$I$E!PTUUI$I$d!d I$I$d!d I$I$d!d @ !b` ! I$I$d!d I$I$E)I$I$E)@$@$!zzzI$I$$!!I$I!UՕI$I$E)I$I$E)a@!*I$I$E)I$I$E)aI$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$E)I$I$E) !I$I$I$I$$!! !*I$I$E)I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)$!P! I$H!bWV  !H$H$!xI$I$b% I$I!I$I$E)I$I$E)I$I$d!d H$I$!b\V^|I !- I$I$e)I$I$e)I$I$d!d I$I$E)I$I$d!d I$I$d!d  @$!I$I$ X\VI$I$ %I!* I!b&I$I$e)I$I$e)I$I$d!d I$I$$!!* I$I$e)@$!b`I$!bI$H$!~x I! -  !I$I$ I$I$!A !- I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$$!!* I$I$$!!pI$I$E)I$I$$!!%I$I$d!d @$@$!`I$I$b I$I!Uյ! II$!!  @$H$$! I$I$$!!**I$I$e)I$I$e)I$I$e)I$I$$!!I$I$$!!I$I$$!!* $! @$I$!h\VI$I$b I!%  $!@I$!a.I I$$!  $!I$I$$!!I1$1H$I$$!!I$I$!!**  E)!j II$!b V$!I$I!*!H%)o I $!&I$I$e)I e)I$I$1LI$f%)UU+0 n%9,"`s+(@~&c=iXXpO'6 %(W_m$I$ATI$I$!AI$I$!UUսI !-+*I$IE)!E)!I$I$1I$I$1I$I$1I$H%)WVؠ !&E) x %)b %$E)!H$I$$!!I$I$e)I$I$e)I E)! @$E)!H$Ie)I%)$! @$e)I$I$e)I$I$e)I$H$$!bV^ $! I$I$e)$I$e)1I$I$1I$I$1I$I$1I$I$1I$I$1$)E!$$$)(^$I$1b UI$I$(WI$I$ a_I$I$A.kI$I$AI$I$UOI$I$ I$I$A I$I$$!b.I$I1I$A$E) IH$9bN$1Ih۴E)I$@!J I$Ib$1I$I$$!6I$ $$!I$I $!AH$H$!AI$ $1I$I$b NfI  OqfY+)---ڢ)yq Z5Pyfaxxxx bXfYE1xxxxI$I$!I$I$%)qI$I$  I9d I0%)NE)-!$$HE)ꡊhvٶm%)(!!%) A%)qUUU9!O G;9}I$mf1! 1bc†1 $C$IE)j*?1A( I$1!E_ I$I$9!WUW Ϗ<9ts$I$B ! L$I$f1!UUUA6k6%)kA6f1mӦmۢ%) $Nbe1DN#IGE)=I$ $%)!I$I$%)SI$I$!n㪪I$ b+*( I$I$8)  $I$98W $8E)WzI$I$8E)UUWxI$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$`E)WVHE)I$dE)ֺ(E)! %)I$I$1I$E)! *k$E) Vlm&E) _E)  I$I$)(I$I$)(I$I$)(I$I$e)E) /? E)!蠀I$$ E)!I$@ $!I$I$E)a $! *!I$E)!/e)E) 5$HE)UUH$I$HE)I$IPH*mv`H+}.WEX+-W*S"$EE)*BPPI$I$16`ۺ5E)`@ E)b+%$)(@$H$1 I$1H$ e)E)W\zkI$I$1@@E)!:I$I$1 I$I$1 E)!IڴE)I$@ e)E)UUZrI$I$1d&CE)!xpI$I$$!!I$I$$!!?$I!E)! %I$I$1$ e)E) %I$I$1"I$I$1"I$I$1"I$I$e)E)I$@$e)E)UW^\! e)E) 5I$@ e)E)@$E)!II$E)!I$H$$!!M$E)b V$He) I$H$1 e)E) %I$I$e)E)I$I$e)E)I$I$1 @$ )(II$11  0E)!`I$I$$!!UUUT I$E)!%UE)! 1 I$I$1e)E)@4 E)ap`I)Pe)b5% I$I$e)E)I$I$)(˶maE)!I$I$1"[غe)!ࠀI$I$e)H$@$e)! E)!//I$I$e)E)II$e)E) *?I$H$e)E)UVT\e)E) -5I$I$e)E)I$I$1 I$I$e)E)@$)(e)E) I$I$e)E)@$ E)! I$e)$! **I$H$e)$!`$E)bx`I$IE)bյ PE)I$I$e)E)/e)%)I$I$@!I$I$@!H$H$e)E) $I$e)E) **I$1"I$H$1"C He)E)@@L$L&E)!I$I$e) IE)!//6,òme)!@I$I$ bWWaB&%)[Z!E)! $@ e)E) 5H8e)`e)!I$I$e)E)I$I$e)E)?I$I$e)E)I$I$e)E) **I$I$e)E) E)!`I$I$$!!UUUT IE)!55ME)& @!I$I$@!@$ @! I@!I$I$9I$I$9I$I$f1e)ꪪI$H$1"9I$I$@!e)E)@Nb e)a:$C2 2E)!II$E)!?L$`&E)! E)!Ie)E) I$I$1"I$I$1"@!I$I$e)E) e)%)I$I$@!I$I$@!H$@$e)%) Ie)E) .I$H$1"@!I$I$1e)@  e)E)I$L$E)! !L$I$!(@ Se) I$I$9I$H$1e)$H$f1p\\ f1 I$I$@! $1E)I$I$9A$I$1e)I$I$9I$I$9I$I$9I$I$9 1E)II$1"  9I$@$e)E)I$L$E)!UWVTI$I$d!d ! E)! %X&h5E)IE)b 'II$e)%)****I$I$9I$I$9I$I$9@$@!@$1E)@$@$9I$I$9A$I 1E) He)UUU@$I$Hf1I$IPH+kv`Pյ/wEX/+ )qrT E/+1&d++ 410DZ 44I$I$%44I$I$%44I$I$%4DZ4!IDZ=44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4-#2 ѧ41X%lDZ1)b@z/)I’3+iS$ + 41Ie6DZ** 43A$ DZ31I$H$11I$I$31I 43DZ4,=@@@pI$I$b I !  I$I$E)aI$I$d!d H$H !A !b I$I$E)I$I$d!d I$I$d!d I$I$d!d H$!^H$I$!! I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d @$H$!I$I$E)aI$I$!jzI$I$!AI$I$!I$I$E(CI$I$E)a ! @  !b`I$I$!b%UUU! $@ !@P@I$I!A/' I$I$E)I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)aI$I$E)@$H$!I$I$E)aI$I$!ZVVWI$I$!AI$I$ j*I$I@UI$I$H@I PH*  ɝqP/{7ef`+ ,yR E/+ 3)qRD ) 41ٰDZ* 44I$I$%44I$I$%4$H$DZ!@PTUI$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)H$I$!^^WWI$I$$!!I !I$I$E)I$I$E)aI$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)$@$!`pPZI$I$$!!I$I!յI$I$E)I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)H$@ !`X`I !%5I$I$E)  !I$I$!VWUUI$I$!A !)+ I$I$E)I$I$d!d I$I$d!d @!I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$E)@$H$!bhXI$I$bx%II!- I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$e)I$I$$!!*I$I$$!!I$I$d!d !!@$H$!hxZ^I$I$!AI$I!յ-I$I$E)I$I$d!d !I$I$e)I$I$e)I$I$e)I$I$$!!I$I$$!!X^WUI$I$d!d I$I$d!d  !H$I$!^VUUI$I$$!!I!-- I$I$$!!? @$$!I$I$$!!*I$I$$!!I$I$e)I$I$e)I$I$e) $@$$! I$I$e) !@$I$!z^WI$I$b\pII!- I$I$$!! !@I I$!b7 I$I$e)@$@ $!X\!!@$!@$H$e)I$I$$!!I$I$!!$@ %) @ $I$E)UI$I!UV:!I$IE)!$E)!H$I$e)I e)I$I$10%)@ I$E)b&UDI$f%)UU( ܔp%1-!DIR+--!c@z( l Ey~j? EZj I$J$%qUUTPI$I! !$A%)! E)!I$I$1I$I$1I$I$1I$I$1E)$!`0%)bxI!I$!b% I$I$$!!@H$I$!(I$I$!!I E)!$I$E)!II$e)$1@$I$e)I$I$e)I$I$e)I$I$e)I$I$e)$$!b`$!I$I$e)II$e)I$I$1$$!!I$I$1 )E!d$$)(_@$I$)bI$I$ a^I$I$AI$I$!к I$I$xI$I$A* H I$I !I I$!aOjI$I$$!Aj*I81oI$L$f17I$I! 3؎mf1IۤMۢE)cmE)bj mӴiE)j($I IE)*1Lq؆1>.I$I!$I$1?I$ %); $I$!jI$N$1RfI)--- qeQ+/--))yq 1 ͆yfixxxx b#6bfaE9xxxxK%h$E)I$A$!a$I$1+ 1{ŎmE)m5hE)鬯 w9?9?} m9mgf1 *) 9 Ƿ {1!<%)!jq[m1!۶f1 ?9BH$!2e)*hmҡf1ʊ ?A 9  I$9!U>n?1jIX$f1 I$ $E)!c;vf1j Ia2!a!6ӦiE)"m۶cE)bj0$I%)窨 ! 3ڶm۴E)I  !I H!AI$H$%)bI$IE)Aj(I$I$ ꪘ $I$)  $)A I$I$8! I$I$81@*I$@E)W| @E)UUU\I$I$1I$I$1I$I$1I$I$1I$I$E)$!`$I$E)bVUT@@E)I$I$1 E)@I$IE)bU,E)!I$I$E)$!I$%)W0m&[E)_PE) I$I$1 I$I$)(I$I$)(5E)b@e)E) /@ e)%)L$d2E)!~I$!I$I$E)a ! *!IH$!UUH$I$He)I$IPH*mv`H+}6gEX+- "$EE1 @PH$I$fE)TUUUH$@ )(@ E)pI)E)b5/H$H$1I$I$1I$I$1 $e)E) UI$@ 1`$I$E)bVWT)E) I$I$1 I$I$)(I$I$)(I$I$e)E) /I$H$e)E)UUV\$H$I&E)! *H$I$E)!^^I$I$d!d II$E)!5UU E)!۰mm$E)V$I!e)! I$I$e)E)I$I$e)E)(I$I$e)E) e)E)p`I$I$1H!e)E) -LB&d&e)E)W^XP`$H$E)xX\P !b  I$dH$!bW @IDRE))&J$E)X^mٖnE) e)E) I$I$e)E)I$I$)(I$I$)(ۆm؆tE)$ 1I$I$1 H$@ E)!TXP`I$I$E)a! E)! 5I$I$1 H$)(e)E) -/I$I$1"I$I$1"I$I$e)E)I$I$e)E)I$I$e)E)??I$H$1"I$I$e)E)LB E)!IL$$!TW$A$E)*E)!I$I$1 dB2$Ce)E)PrbII$1I$I$e)E)I$I$e)E)I$I$e)E)"H$@ e)E)VZRb Ie)E)5I$I$e)E)I$I$)(I$H$E)!d2!e)$! II$E)$! **I$I$1 I$I$e)E) I$I$e)E) Ie)E)/ @!$I$e)E)0@$ e)E)I$I$1 $I$e)E)@$I$1"II$1"[%؂-E)!II$e)I$I$$!! $!e)! hE) LE)!V E)!Ie)E)`$R")e)apx)PE)a - I$I$e)E)$e)E)~\e)E) -I$I$e)E)I$I$e)E)I$I$1 L$L&E)!VV\XI$I$$!!UUE)! I1"I$I$@! @!I$I$e)E)e)!I$I$@! e)!@ e)E) @!I$I$9I$I$@!@!d&`2e)$!I$I$E)!D$"E)!II$e)! e)! I$I1"I$H$1"I$I$1"I$I$e)E) $%e)p9I$I$@!e)E)@@$I$E)!6l6e)! @!I$I$1e)1E)`&@$E)!I$I$$!!VV\\I!*** IE)!/??1E)H$A$1e)P f1pf1 I$I$1e)I$I$1E)I$I$9I$I1e)I$I$1E)I$I$f1e)I$H$1e)I$I$9I$I$9I$I$1"!1E)@$H$1E)H$`$E)!T\XPI$I$d!d  IE)!%%5"I$ e)@I@f1bշ I$I$1 1E)I$I$9I$I$9@$$@!$!1E)@$I$9I$I$9 I$1E)&L$He)I$IPH6i`H/7EX/% ywT $q+ 11R f/+ 4-1eR@ DZ 43DZ44I$I$%48EA`4$I$DZe1@PUU49IE) %54)Iضm41mI$DZ410ېlDZ*44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%41X-lDZ43DZ41K-DZ41I$DZ41ɶ DZ*44I$I$%44I$I$%41[mDZ41Il۶ DZ*43I DZ** 44I$I$%4X&`'PXXXI$I$b!$! bzI$! .I$I$E)aI$I$d!d I$I$E)I$I$E)I$I$E)!I$I$!A޺  ! I$I$d!d I$I$E)aI$I$E)I$I$E)I$I$d!d I$I$E)H$I$!I$I$E(CI$I$!z~^^I$I$!AI$I$!I$I$E)aI$I!I$I$E)!I$@!A ! I$I$E)a ! I$I$E)I$I$d!d I$I$E)aI$I$E)I$I$E)I$I$E)a !I$I$E(CI$I$!jI$I$!AI$I$!AI$IHUUUH I$IPH* IqiPյ/{7E`/+)qr E/+1%)gN+ 4/T  DZ* 44I$I$%44I$I$%4 @$DZ!@@PTI$I$E)I$I$d!d I$I$d!d I$I$e)@$!`X!I$I$d!d I$I$d!d I$I$E) $!pI$I$bp\pI$I$b 5=I !? I$I$E)@$!bX!I$I$E)I$I$E)I$I$d!d I$I$d!d  @$!bp\ !b 5I$I$d!d I$I$E)I$I$E)I$I$E)H$I$!VVWUI$I$$!!I !+I$I$E)I$I$d!d H$!,I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d I$I$E)I$I$E)@$H$!zz^^I$I$!AI$I$b@PTP !bI$I$E)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$d!d  !H$I$!bhI$I$b*II$!VI$!jZ !I$I$d!d I$I$d!d H$!VI$I$$!!I$I$e)I$I$e)I$I$d!d I$I$d!d $@$!xI$I$TWUUI$I$!UUU !) I$I$d!d $ !@P@@ I$!?7I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)I$I$e)I$I$d!d @$H$!`X^VI$I$$!!I !% I$I$d!d  $!H$I$$!!I$I$$!! I$I$e)I$I$e)I$I$e)I $$! I$I$$!!I$I$d!d @$I$!z~I$I$TWWI$I$!UUI !+ I$I$$!!I$I$$!!* A$I$e)I$I$e)I$Ie) @$1@$I$$! !4IE)!H$I$E)!~_WI!($H$!jZj!IE)% $E)!H$I$e)I$Ie)1I$I$1E)!ꪪI$!b E)!I$I$f$!UUU)I%9*+Iwf-"4 +3 f_!l3 f0j%q@E)!H$I$E)$!1I$I$1I$I$1 @$%)@PTH$I$$!b,UH!I$!I$I$e)I$I$e)I$I$!! @$E)!H$Ie)I$I$e)H$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!! I$I$e)H$H$$!bXTX`I$I!b?$!I$I$e) I$$!!@I$I$!!U@$$)(~ $I$)b _I$I$ a~I$I$AI$I$AI$I$*FI$I$!񯨂I$I$!AII$!?#I$H$ :ISI 1+I$I%)I !*MI$1!VUUYm19!!! IB'i9!U^YvĶ!f1*tb;-e)xjM۶]6E)bhmcdž1?q";؆1I$I$!H0I0E)ajI$1I$I$ a81 SeA-%%- NieQ ---iiyq 1ȆyixxxZPfaEAxxxxJ$H&E1h $I$%)I   "-ێ;e1Am]Z4%)A2b$H I2%)jvkY1A I$H'9%)UT]UZdnf1]ێmf1mۖnE) " I$I$9%)UUWhںm61bjI8B$1!B%)!.mvlۦ9 ?E)!l۶m׆1!@%)! 3lħ9 ?9 gI'1 ɒ$MbE)! f1릢 I$I$9!eU_-ڶm.%)jmf`9e1A2f1?f1B$ɐ I%)I$If1!UU`1A`*I $C2%)AjH$I$%)I$H$ bI$H$$!z $I$!! j$ 1 8) I$@$1JI$I$@E)UW`I$I$9E)UUUTI$I$1I$I$1I$I$1@E)I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!E)!I$I$E)!* E)!*I$I$)(I$I$1 @$@)(k$k5%)bPTP@ E)bI$I$e)E) /@ e)E)\pI$d2E)!H$$!I$IH UUH!I$IPH*mv`H+}6gEX+ .WN0!f$9* @ B$I$fE)PTUUI$I$1 I$I$1 ۊ5h4E)!jXTPېmɖmE)  % @ e)E)Zj%I$I$e)E)UUUXE)I$I$1 e)E)i%5[mlE) I$1)(I$I$1 I$I$)(I$I$)(@ e)E)RC/L$LE)!I!IE)!+*I$H$E)!WVVxI$I$d!d IE)!ɭI$k6lE)bU8@R$IE)I$@$e)E)I$I$1 I$I$e)E) **I$I$e)E)H$ )( I$e)E)5UHe)E)`۲mۆmE)`!I$ E)I$I$e) E)! +hE)Xنmle)! I$1I$I$1 I$I$)( E)b@I$I E)bUI$I$E)!*1  E)!I$I$E)!UUW\I$I$E)!5UU$E)!I$I$1  )(I$I$e)E)I$I$e)E)I$I$e)E)*I$I$e)E)I$I$e)E)@$$e)E) E)!` de)H $!b $ $! %! E)! //I$I$e)E) I$e)E) **I$H$e)E)UWV\e)E) 5I$I$e)E)I$I$1 1 I$I$1e)E)"I$I$)(@$@ E)! I$e)$! **I$H$E)! E)!I$I$e)E) I$I$e)E)I$I$e)E)/,@-e) !IE)!  e)E)I$I$e)E)I$I$e)E) *I$I$1"I$I$e)E) (Ȃ"%e)@P !bI$I$$!!! e)!/H$H$e)E)I$I$1 I$I$e)E) **H$H1e)E)I$I$e)E)I$I$1 H$)( e)E)%%I$I$e)E)I$I$1 I$I$1 `2$2E)!X```I$I$E) E)! I$I$e)E)@!@! 8 He)ĉa E)// I$I$9'e) p\pPD@e) %  I$1"I$I$9`e) h$I$e)b8U($@e)H$@$E)! E)!Ϗ/?I$I$$!! *nivE)! ++ @$@!H$I$1"I$I$1"I$I$1"H$H%E)bXVX e)b  @!I$I$@!kmۆmE)!0 e)E) I$I$@!H$e)E)8I$I$1e)X5e)!$$!p$!I$I$$!! @$1$!***I$I9I$I$9$e)bpe)b %I$I$1e)I$I$9II$1e)H$I$9I$I$9I$I$9I$I$9I$I$9H$H$@! 1E)1E)@$ E)!Pp@I$I$d!d I$I$$!!W$A!E)!1E)I$I$e)E)1E)I$I$9I$I$9 1E)I$1E)I$I$9 1E)j L$He)I$I$!`AI!AXH+ {7e%yP+ {wT fi+ -qN@f*4+qnݴ ) 410DZ 44I$I$%4'DZe1\4x$I$e)|WUU`&`B21E)/ɑdI$E)5U/"$ick'U/"I-ا*3)PJ. +41 DZ *4$@$DZEPPP4)DZEy 44I$I$%44I$I$%44I$I$%43 DZ4-$1DZ4,LDZ'43H$%43$H$%43%44I$I$%44I$I$%44I$I$%44I$I$%4 DZ@!H$J$f\TTWI$I$!I$I$E)a@$!I$I$!b/*I$I$E)aI$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$d!d I$I$d!d $H$!p\$I$! %I$I$E)aI$I$E)aI$I$!^WWWI$I$UUI$I$!I$I$E)aI !**I$I$E)I$I$E)I$I$E)I$I$E)aI$I$E)I$I$E)I$I$E)I$I$d!d I$I$E)I$I$E)I$I$E)aI$I$E) @$!I$I$E)aI$I$!jzz^I$I$!AI$I$UՕ HI$IPH6e`H/{7e%X/+& yysT %y+ 1 1n ++ 4-!eR@DZ43DZ44I$I$%4$DZ!@PI$I$d!d I$I$E) !I$I$d!d I$I$d!d I$H$!  ! I$I$d!d I$I$E)I$I$E)@$H$!px\\I$I$I$I$bp@ I!b% I$I$E)aI$H$!bVXh ! I$I$E)aI$I$d!d I$I$d!d I$I$d!d H$@ !b\xI !5 !I$I$E)I$I$E) $!``xI$I$$!!I$I$!Uշ!I$I$d!d  @$!p\I$I$bU5!I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$E) !I$I$\VWUI$I$!AI!bjI$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d $!p @$!@pcI$I$!I$I$I$I!U+I$I!UV I$I$!bUZzI$I!bU% I$I$d!d !I$I$!bUV!I$I$$!! !@I$!b 7I$I$d!d H$I$!z^^WI$I$!AI$I!)!I$I$d!d  !@I$I!bU!I$I$e)I$I$e)I$I$E)I$I$$!!I$I$d!d  @$!xI$I$$!BI$I!UUյ!I$I$$!!//@$@ !$! I$I$e)I$I$e) $!@$A!$!a  $I&$!!  H$!I$I$!^WUUI$I$ UUյI !* I$I$d!d I$I$$!!* I$H$$! I$I$e)I$I$e) @$e)@$I$e) !@I$I!U<$IE)I$I$E)aI$I$E)a$! !@%) H$I$e)I$I$e)1I$I$1I$I$1I$I$1I$I$1 2 %)!Z^^Z$! DI$EUU%Irf0 ), Sf +--$O䧩%yTWW- if~蠀# 3 $q~I$Z%$)UVX@I$e)%)$!I$I$1I$I$1`0 $!bP@I!b%I$I$e)I$I$e)I$I$e)A$I$e)I$I$e)H$$!0$!I$I$$!!x\^I$I$$!! I$I$e)I$I$e)I$I$e)I$I$$!! I$I$$!!I$I$e)I$I$e)I$I$e)I$I$e) a0$!UUսC&L$)b ~I$I$(bI$I$A~I$I$ j I$I$AI$I$b II =+A$I$!AI$ $!aj $I%)ɒIlφ1/HӶe)A$$HE)!UUMU ߆1aښ*mĆle) 9? I$I09!UUd ?9a;e)&*jh"mE)K$$I$! 9?l5f1a!LMҦiE)I4F8e)Aj"E$K&E)I$I$!b PPfA-/)/SieI---vyi )[5X5yi99fieIxxxxJ&Z%e9I$@$%)? ɛ͑<9>hڶmt%)- ϳ?9w~79?9?1 | Oy1Ǫ.%))m%E).lٱ&1 z ?9j*hmf1 E)!A$I$e)%)dHIE)i۶Ŋf1$)%) 0f1%)$I&I1MXE[8e1>rᘖ ;f1!? %)@qVl;f1)j cm9sḭݶe1*v \f1 G1cرf1! 1AI$Q8f1!UTQwm۶af1?I$I e1!eUUE 1b| $@!I$&E)AšI$I$!I$I$   0I$) @ 9 @)* I$@%1hʪI$@@E)UUZI$I$E)$)I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1`$LE) TUVE)!I$I$1I$E)! *I$I$)(I$I$)()(I$I$)(I$I$)(I$I$e)E) /@ e)E)ZhI$dH%)UUH!I$IPH*mv`H+}6gEX+# {w q/ #S$H$E)PTTUI$I$)(I$I$1 X$E)b E)!@$ E)!II$e)E)UU@ e)E)P`cH$L&E)\WV!@E) I$I$1e)E)z%I$I$1I$1I$I$)(I$I$1 I$I$)(I$I$)(H$e)E)TZkI$I$E)$!** C2$IE)!` I$I$E)!UUUVI$I$d!d  E)! -I$I$1! e)E)5I$I$e)E)I$I$1 I$I$1 I$I$1 I$H$1 e)E) %d2 Ie)E)\xH$ E)!I$I$e)I$I$E)!$@$E)$! + e)E)`@I$I$1)(I$I$1 I$I$)(I$I$)(H$@$1 I$1I$I$1 H& 2E)!\p`I$I$E)a E)! %5@$I$E) ^^maE) Ie)E)5I$I$e)E)I$I$e)E) *I$I$e)E)I$I$e)E)I$I$e)E)??@ E)`I E)b&.[5X E)p`I IE)*II$E)!E)!I$I$1 @  e)E)XpbBII$1I$I$e)E) * $h%E)ax`IE)a--H$@$)( )(I$I$1 )(I$I$E)$!dB$ e)$! ۺ5E) E)a I$I$e)E)I$I$)(I e)E) ٶmضme)!@!I$@ e)E)I$I$e)E)**I$I$1"I$I$e)E)"$ E)@IX e)b $$! *II$E)!?$I$e)E)Ï I$I$1 I$I$1 I$I$1 (tE).I$I$e)E)I$I$1 I$I$e)E)I$I$1I$I$e)E) I$I$1 I$I$e)E)H$@ E)!I$I$E)!UUUV IE)!5I$I$e)E) // I$1"I$I$1"@$@ e)E)II$e)E)****I$I$@!I$I$9@!I$I$1"@!I$I$@!rIe) e)E)dB2 2E)!II$E)!?H$H$E)! E)!+$Ie)E)&e)xe) I$I1"I$I$e)E) e)E) @$@$1"I$I$1"H$I$e)E) Ie)E)?$H$e)E)H$Ie)E)WUU1E) e)$!LB& $!XpI !I$I$$!!% e)! I$I$9I$I$9@e)@ @f1%)%L$E)bXV f1 5I$I$9I$I$9I$I$1e)  1E)o[{I e)! /I$I$9@$@ @!IIe)E)*I$I$1E),)P9E)@p`I$!%%I$I$E)!E)!  1E)H$H$1E) e)%) I$I$9I$I$91E)ꪪI$I$1"1E) He)UUUH$!I PH++/ w6iP/+{w.e f`/+ +yRT E/+ /( %7l+*4-@Jmۧǩ 4 (DZfY@4 <~$e1p_U H$I$Ye)TUUUI$I$9$C0C1E)II$e9E)U!m&fE9"PNv%y -Prf+/4,Ni 4 DZfp4,DZE@4(Ғ/DZE@`M4$DZE  43H$%43$%4-#DZ4- eKDZ/4!@DZ@4$IIDZE4-I DZ41۶%[,%4/$m&DZǩ4/TADZǩ41[%%4 ,DZP@I$I$b'' II!I$I$E)aI$I$d!d H$I$!XVVx ! I$I$E)I$I$d!d I$I$d!d I$I$E)$@ !  ! // I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d H$!X`I$A$!- I$I$E)aI$I$!zI$I$!AI$I$!յI$I$E(CI$I$E)a! I$I$E)I$I$E)I$I$E)I$I$E)aI$I$E)I$I$E)I$I$d!d $!b`!I$I$d!d I$I$E)aI$I$E)H$H$!I$I$E)aI$I$ Z^VVI$I$!AI H I$I$!`A !AXH+ {6e %yP+! ywT fi/+ /1N f+*4,Nݴ 4DZE44I$I$%4 DZ!@4H$I$DZ!TTUUI$I$E)I$I$d!d @$H$!hX\x ! I$I$d!d @$@!`xI !-- I$I$d!d I$I$E) !I$I$!VWUWI$I$$!!I !+!I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)a!I$I$bVW!I$I$E)@$H$!XX^VI$I$$!!I !%%)I$I$E)I$I$d!d H$!XpI!5 !!bI$I$e)I$I$e)I$I$d!d I$I$e)I$I$d!d I$I$E)@$@$!`pPXI$I$!AI$I!ՕI$I$E)I$I$E)I$I$d!d I$I$E)a @$!b`X !b I$I$e)!*I$I$d!d I$I$d!d H$@ !b\\p  ! I$I$)I$I$!UUՕI$I$ b"VU!@$@ !bpp`@II$!b%UI$I$d!d I$I$e) !@I$I!b&7I$I$d!d  !@I!7 $H$!zI$I$!AI$I$!UUյ !+ I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d  !H$I$!\^WUI$I$$!!I !/ I$I$d!d $@$!b`XI! -5I$I$$! I$I$e)I$I$e)@$$!a``I !b%5 @$@!h`II$!-I$I$!z^VWI$I$$!!I$I!+!I$I$$!!UUI A$$! I$I$e)I$I$e)I$I$e)I$I$$! I$I$$!!**$I$I&$!I $E)!}I$I$$!!xWUUI$I$E)I$I$!!Օ5   E)!@$I$E)!I$Ie)I$He)1I$I$1I$I$1I$I$1$E)!H$I$$!!@ !I$I$!W^DI$EUU&Mrf9 )-L2 EyV /)c3# /^## %y~zLB&"E$)VZh%)$!I$I$1$1H$I$e)@$$!p $! I$I$$!! I$I$e)II$e)I$I$e)H$$! $!I$I$$!!xI$I$$!!I$I$e)I$I$e) @$$!`PI$!b %I$I$e)I$I$e)I$I$e)I$I$($!UUU5@$) WH$I$(bI$I$!I$I$I$I$ *I$I$A)0I$I$A:I$I !A/I$I!*n*ɒ$IE)a I1?1aǶcf1A)* 9!UUUQ 9!UUY$I2 IE)j 3I$1!mUme))$A$$!aa^۶1*lڢf1 yϏ9!] Sl9ڿĿ 1?9~ $!a@ccۆ1w?c;1e)AꋦlE)aLB& 2E) $a$$!IE1A * faeA----ِyi) C:҆yqzh``X5XieIxxxb(&`%E9!  $L$%) I4%)akǶc؆1!U]QI I$%)!m۱ME) ڏ}{1b"*E[6ڶ1!{kۆ1O A$AE)WEQUmڶm[e)!M۶n ׆1I&I$1E)U\UUvlCOnۆ1  ۶ߦ1!& If1觪I$IE)!`vچ1!' I2$I:f1 jz ?9  zۆ1 Mm۶1I$Ȃ$1!-ڴiE)!&i۶f1 9 >??B%)UW ڱmݦ9 o6ߦ9 I&O^<1!Miv%)A'If1!c_B!UYW$C$I%)j!$I%)mǶae)A*?f1I$-ڵ%)I$I$E)!ZI$I$E)!I$I$E)]閤I$) ?$9+I$I$@$1 *H I$@E)^I$H$@E)UUWXI$I$1I$I$1I$I$1I$I$1I$I$1I$I$1 E)!j$I$E)&I$I$E)$!I$I$1I$I$1I$E)!*I$I$)(I$I$)(I$I$1 I$I$)(I$I$)($HE)UUH$I$HE)I$IPH*mv`H+w%yH5=# {w q/ ("%J$E)@PTTe)E) I$I$e)E) 1 I$KE)WW04@ E)c`IdIE)b+%/I$H$1 I$1@E)!I$I$E)$!I$I$E)$! I$e)$! *@ e)E)\zi$H$E)!~^V!E)! I$I$1 I$I$)(I$I$)(I$I$)(H$@ e)$!I$I$E)$!*LB&`B2E)!\XpI$I$E)I$I$E)!UI$E)! I$I$1e)E)%I$I$1 I$I$1 I$I$1 @ 1 II$1$H!e)E) H$@ e)$!I$H$E)!I$I e) E)!+/ e)E) %H$@ e)E)VXP`II$1I$I$1 I$I$)(I$I$)( )(I$I$1)(@  E)!I$H$E)!UWV\I$I$e)!UUku E) E)!I$I$1e)E)I$I$1 I$I$e)E) **I$I$e)E)I$I$)(,X$E)b@`XII!b5550 ÐE)!I$I$e)!H$@$E)!! E)! //I$I$e)E)I$I$e)E) *I$H$e)E)UUVTe)E)@`E))PE)  )(I$I$11 I$I$)(H$@$E)! e)$! *k&[%)b`pIɐE)b%5 I$I$e)E)I$I$1 I$I$e)E)/??I$I1" @! I$1"I$I$e)E)A$ e)E) I$I$e)E)I$I$e)E)*X:e)!I$I$$!!*>I$I$$!!ِ tE)!I$I$e)E)I$I$1  E) I E)?e)E)I$I$e)E) I$I$e)E)"H$@$)(e)E) 5I$I$e)E)I$I$e)E)I$I$1 L$`&E)!V\XPI$I$$!!UUU@E)!I$I$e)E)"I$I$1" @!I$I$e)E)e)%)I$I$9I$I$9H$H$e)E) e)%) I$I$@!@!@$@!  E)!蠠I$I$$!!@$A E) I$I$$!! **@!@e)! K$hE)bX\x)e) 4X&E)px E)  Ie)E) //@$ @!I$I$1"I$  e)E)II$e)E)///H$H$1"I $1" @! e)$!L&`&E)!I$I$E)I$I$$!!ɐtIe)!/ 1E)I$I$9I$I$91E)ꪪNB' e)bVXe)b% I$I$9I$I$9I$I$1E)$C$A1E)!1E)I$I$9  9I$I$e)E)*1E)Xmۆme)!`IڶhE)bI$I$E) E)! % I1E)` 1$!h"aN$E)e)!I$I$@!I$I$9I$H$1E)@$He)UUH$I$Hf1I$IPH*v`H/+/EX+ )yr Ey+ 1#VN0+ 4/mR  DZ4@-'DZe1\/$I$e)xVUU 1E)I$I$1e)I$I$9 1E)ꪪI$H$e)E) qE1RwEa+)sE+//1)P!- 410DZ4@$@DZEPPP4 DZE43%43H%43I$%44I$I$%43$I$%4,"h&hDZ@4I  DZE43H$%43I$%43%43%4DDZE48%```pI$I$a  !I$I$E)I$I$d!d @!I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$d!d I$I$E) !!H$I$!I I$ apI$I$A //I$I$!AI$I$!I$I$E)aII!*$H$!V! I$I$E)I$I$E)I$I$E)aI$I$E)I$I$E)I$I$E)H$@ !AI !a I$I$E)I$I$E) !I$I$E)aA$I$!I$I$I$IPUU%H@I PH**  ɝwqP/{7ef`+ ,qR E/+ 3)1RD -) 41ٰDZ* 4I DZE@4 DZE4@$H$DZ!PPTUI$I$d!d I$I$E)I$I$d!d !I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$E)I$I$E) @$!pXI$I$$!!I$I$ UՕ!+ I$I$E)I$I$E)I$I$E)I$I$E)aI$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d H!I$I$E) $!I$I$I$I$$!!! I$I$E)I$I$E)I$I$e)I$I$d!d @$!b@P@I !bI$I$e)I$I$e)I$I$E)I$I$d!d I$I$E)I$I$E)H$I$!VVUUI$I$!A !-+ I$I$E)I$I$d!d I$I$E)I$I$E)H$!b\PI!b% !I!I$I$d!d I$I$d!d I$I$E) @$!zZI$I$!AI$I$!I!VI$I$e)I$I$e)I$I$ bUUTT!b!H$I$!bVUV !b !I$!b8U $!I$I$!z^VUI$I$!AI$I!+!I$I$d!d @$!b`X!I$I$e)I$I$e)I$I$e)I$I$E)I$I$e)I$I$d!d $@$!@I$I$$!!I$I!׿/-I$I$d!d I$I$e)@ !` $! I$I$e)I$I$e)I$I$e)I$I$$! I$I$$!!I$I$d!d @$H$!jZ^I$I$!AI$I!Օ !* I$I$E)I$ $$!! I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!I$I$! ** H$I$$!bTUW ! I$I$E)aI$I$$!!UUI E)!$H$E)!I$I$!!  $!I$I$1I$I$1I$I$1I$I$1$E)!H$I$$!! I$I$$!!pP^_I$I$E)aI$I$E)!DI$E$!UU& rf$9)/Dn6f*/)lR6)ꪪ /3iz(3 E_m6E)Zjm6m$P$!UUUTI$I$e)I$I$e)H$!bXpI!b% I$I$$!!*  I$e)I$I$$!!I$I$$!!I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)$!@ $!bI$I$e)I$I$e)$A($!UU@$I$(bI$I$ a_I$I$AzI$I$!/I$I$bUUI$I$+ Iā$f1aI I$$!I $!*.Aiڵ%) ;mۆ1!UTUUcce)A* H ɐE) 79!ee1a ۰f1 w9[3?cf1jöoe)F$Q$1![m۶E) ~ط9?۰.ضmE)HE)!j]me)!I$CE)z* ۶mņ1!CI%)ihۮE)!TeM۵X6e){I$I$ AIDIDE1 faE1 )))  yi----$C$ Іyqhhh b#6b5qeQzzxxb&6AN$i$E)A*jII%)b' 71*J 9mHlf1b@D@$)0$I$ E) ** ?1"j 9!<A&L1E)Q]Vk-ܶ1ʪ؆mۆ1I$! 1E)UUIE$EB$͐f16؎Kf1 B $H$BE)UVTW1Ҷڶ1M ?9 ?umIl؆1!۶ mE)!m۶M1.mۦ-1H2!1ꩨ 9a۶ K.%)$I2&If1!6lŖmۆ1!I$b$1%)UUES REe)!<múl%)`3Ŷ][e1*cۖ!e1"ɓ<#9!uuiI?9f1b뉪M۶IѶE)/m۶8f1~?~?1~I$ !I$H bI$L%)AjM4I$%)!nI$e9TönA! I$@%1@ I$I$@E)UTPI$I$1I$I$1I$I$1I$I$1I$I$E)$!@$I$E)!IE)7I$I$1I$I$1I$I$1I$I$1I$E)! *l%E)@PɐE)I$I$1 $HE)UU OR4I$X0*I$j %YHUU^-mv`H*{.WEX+# {w q/ ( !B$ @PT$! *$ E)! +/I$I$e)E) +I$I$e)E)I$I$1 I$I$1 )E) @ )(I$I$1I$e)E)UI$@E)!I$I$E)$! *I$I$E)$![&E)\X%X-E)`PBɐtIlE) %)(I$I$)(I$I$)(I$I$)(e)E)k˯I$I$E)$!I$I$E)$! **I$H$E)!WW^xI$I$E) I$E)! %5I$A$1 I$e)E)5UUI$I$e)E) @$E)0 E)I$I$1 H$@ )( e)E)%%$C0$Ie)E)p`dB2$E)! $I$e)I$I$e)$A!E)! +e)E)@ I$H$e)E)UUWT )(I$I$1 I$I$)(I$I$)(H$@ )( I$1I$I$)(dB2 E)!X``I$I$E)a! E)! -%1 H$@ )( Ie)E)5I$I$e)E)I$I$1 I$I$e)E)" e)E)pzM$[ E)VX`IE)5 IE)!L&`2E)!A e)II$E)!?e)E)I$I$e)E)*@$ e)E)\PrC I$1I$I$1 I$I$1 I$I$)(I$H$1 )(I$I$1 @ )(I$I$E)*H$@$E)! E)! *I$I$)(I$I$e)E)ꀀI$I$)($I$e)E) @!I $1"I$I$e)E) I$e)E) *.I$I$1"I$I$e)E)A$ e)E) L$d&E)!I$I$$!! IE)!/??H$A$e)E)I$I$)(I$I$1 H$@$)(e)E) %I$I$e)E)I$I$1 @  )( Ie)E)55I$I$e)E)I$I$e)E)I$I$1 @00E)!P`@I$I$E)a! E)! %I$I$1 I$I$e)E) I1"I$H$e)E) e)%) *I$I$9I$I$9@$ e)%)۰ [$E)!0I$I$@!H$H$1"I$I$1"  e)$!H$H$E)! $! I$I$$!!**$A$E)! *+I$I$1"I$I$1"@e)pDI$Ae) I$I$e)E)?? @!I$I$1"e)E)I$I$)(@$A e)E)II$1" @$@!I$I$9k6[5E)!I$I$$!!XXXxI$!bPT$A$E)***@&M&E)bXVX e)a I$I$9I$I$9 @ @!I1E)I$I$9I$I$9I$I$1E)I$I$@!I$I$9I$I$9I$I$9I$H$e)E)1E)@$H$1E)H$`$E)!\\ppI$I$E)IIE)!555 I$1E) 1E)ME)(9I$I$@! He)UUU &I$He)I$I$Q!@$I$@ P8ݶ%CP8t%yH%" ys q/+ /1eND + 3  (a@39t$e1p^Um۶m;aEAXe) ' @!I$I$f1e)I$I$9I$I$9H$H$1E)^^~l-ڮXE)%5 /Wyw%yX/" 7S%y/--/# N++-41DZ44I$I$%44I$I$%3DZE41%31H$H%43$%43$%41%43 %43H%43I%41l@%4 DZE@@4IIDZE4p'x$X\\\I$I$!!I$I$E)I$I$E)I$I$E)aI$I$d!d I$I$d!d I$I$d!d  !I$!,I$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$d!d I$I$d!d @$@ !`p`I$I !I$I$E)aI$I$!`I$I$A I$I$!AI$I$!I$I$E)a !* *I$H$!A ! I$I$E)I$I$E)I$I$E)H$!a !I$I$E)I$I$E)aI$I$E)I$I$E)I$I$E) @$!I$I$E)aI$I$ jjzzI$I$(bW@H I$IPH* k.iPյ/{7E`/+)qr E++1%)gN@+ 4 E44I$I$%4DZE@46 @$!J@PTI$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)@$H$!X^VVI$I$$!!II!I$I$E)! *.I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$E) !@$I$!WUI$I$II!?-I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)$H$!b`X`I!%I$I$d!d I$I$E) @$!hxXI$I$$!!I$I$!Օ!I$I$d!d I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E)H$I$!^VVUI$I$U%I$I$!:VU!I$I$e)I$I$d!d H$!bP@!bI$I$e)H!I$I$$!!I$I$d!d I$!b8@$@$!jz^I$I$!AI$I$!UՕ! I$I$d!d I$I$E)I$@!bVX` !I$I$e)I$I$e)I$I$d!d !bI$I$d!d  !I$I$I$I$!UWW ! I$I$d!d I$I$$!!I$I$$!!/I$I$$!!I$I$e)I$I$e)I$I$e)I$I$$!!I$I$d!d  $!uI$I$!VWUUI$I$!UUՕ !)* I$I$E)I$I$$!!U% I$I$$! I$I$e)I$I$e)I$I$e)I$I$$!!$!  $E)!@$!РI$I$E)aI$I$E)I E)!$H$E)!I$I$e) 1I$I$1I$I$1I$I$1I$I$1$E)!H$I$$! I$I$d!d @$!!I$I$$!!"I$IE)!I$I$1I$%$!UU# rf8 )/ `N7 +/),!hh+c9hiZzc f0o I$H&$y$!UUTXI$I$$!!pVUI$I$E)I$I$!!+ I$H$e)I$I$e)I$I$$!!I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$($!UUU5$H$$) XWI$I$ bzI$I$AI$I$A߷I$I$A*I$I$A6*I$I$A"I$I $! I$Iħ9?I$`%)j)i6E۶%)!I$H$)J!UUTU ǟ?9}$!@ I$I$$!!$ɐ!$! mvaE)* !I IE)!m׶ Ǧ1aE)!ji۶A6E)!j?9ak51!kH%) $I$1!= qv=1*bN$A$9$!WWQW1A~<9mӦmZE)޿6b;ce)AjHN$1Idqf1 U ɝfaE9- yEQ ) Цm;yq Z/:qeQxzZ5XfAb`a$H$%)AiII 9O?1I7If!U}U}Ik UIґ$I%)UIظyj1U }Ik UI$$K)UUO$ J%!WUI$IIj%!UU`I$I%!UUU eQm߶ۦ9!tۆm+1JmۢM6e)!hڶm۶1$! 3E)  I$q$9!E)` ܶ[1!ѿ6mmf1 **Z?9!/öe[E)0a۲me1!+$I0f1n 9'=v׆1bm,%)AmӦHf1ꚬ ؖ 9`BAe)ت*Osۆ1 qm8e)bm6m3e1Jl۱؆1!-mۥE).7f1!*$H$%)&1R;e1j.I qbۆ1I$I$$)$M$f1w $A )b  햤$9 /A$1 H$HE)\ I$H IE)UUWxI$I$1I$I$1I$I$1`$E) 8I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1%)@ɐ 0E)$HE)UUH$I$HE)I$IPH*v`H+/7W%yX-/ ( ۶&`N$q 4M$$)@PH $!!*I$I$$!!*%5!E)! /I$I$e)E)I$I$e)E)I$I$1 I$I$1 I$I$)(@ )(I$I$1 e)E)㭥I$H$1I$ $1L& E)W\)۰ E) ٶmlE) I$E)$! *I$I$)(E)I$I$)(I$I$)(@  )(E)a 7 E)!` I$I$$!!UUT\I$I$E)$!E)! %I$I$1! e)E) %@ E)6h5E)x`nIE) k dIE) 7ՕI$I$1e)E)  @$E)!0I$@$E)!I$I$e) E)!$H&E)@PTX E)bI$I$1)(I$I$1 I$I$)()(۶mۆ-E)@I$E),UE)!I$L&E)!UVTXI$I$E)!UU@$E)! 1 I$I$1e)E)I$I$1 I$I$1 I$I$1 I$H$1e)E)I$I$e)E)** 0 E)!II$e)I$H$e)! e)! +/I$I$e)E)e)E)KϯI$I$1)(I$I$1 I$I$)(@$ )(I$I$11 H$)(I$I$E)! E)! I$I$E)!*I$I$)(I$I$e)E) I$I$e)E)II$e)E) ?$I$1"I$I$1"I$I$e)E)I$I$e)E)?H$I$e)E)I$I$e)E) $I$e)E) ***`2 0E)!I$I$$!!I$I$e) !e)$! I$I$)(I$I$1 @  )( Ie)E)5I$I$e)E)I$I$1 I$I$1 I$I$1e)E)I$I$1 I$I$1 @$@$)(I$I$E)!UUUV IE)!%%I$I$1 I$I$e)E) *I$I$1"H$@ e)E)II$e)$!I$I$@!I$I$@!e)%)I$@E)!000e) H$@$1"I$I$1"I$I$e)E)dB&d2E)!II$$! ****I$H$$!! E)!+/e)E)I$I$e)E)I$I$e)E) *** I1"I$I$)(e)E)I$@$1"I$I1"I$I$e)E) e)E)  $e)E)\e)E)@!`20e)!$! 誨I$I!bUVZ  !bC ` E)`I$I$f1e)ꪪI$I$@!I$I$99II1E)I$I$9I$I$9I$I$9I$I$@!I$I$1e)I$I$9DH$e)0W$IIe) Ie)%) @ @ 1E)@0 E)!p`I$I$E)I$I$$!!5$A$e)E)?)f1E)I$I$e)E) e)E) @$He)UUH$I$He)I$IPH*m6ۺXHo* ws7Z i@o ɛ E@/1W6T.fikR+ ?i* 1 A.=E!p)$I$e)pWUUI$I$9(f1`I !e)H$I$1"I$I$9I$I$9I$I$9@$@$1E)IIPE) 1sqiP/- pS1wfi /--`/S --4-` &ZDZ *41$%4-@$DZ3I IDZE*4-$DZ4/ImTDZǩ*/1%lIDZ^/)ۖpIǩ 4&)"ǩE@@4DIdDZE 4)PDZ4-6e;DZ/4)#$DZU4 4IDZE@@4 HDZEH$O$Ey\VVVII!I$I$E)aI$I$d!d I$I$E)I$I$E)I$I$d!d I$I$E)I$I$d!d  !@@I$I!A>!I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d $@$!I$I$!a(I$I$!kI$I$!AI$I$!յI$I$!I$I$ X! I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$H!A~ !I$I$E)I$I$E)aI$I$E)I$I$E)I$I$E)@$H$!I$I$!I$I$ ^^WUIbmH% I$HPHUU-Im XH/ {7%X-/% yysT %y+ 1 1n ++ 4"!"E@@@4 DZE%%44I$I$%4$DZ!@PI$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$E) $!I$I$$!!I$I$``II$!+-$ !I$I!77I$I$E)I$I$E)aI$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$d!d  !$H$!bpxVI$I$ b55 I$I$bֺI$I$$!! ! I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)@ ! !b I$I$E)I$I$E)H$I$!X^VWI$I$$!!I !-) I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$E)I$I$d!d I$I$d!d I$I$E)$H$!hjzI$I$!AI$ !I$H!bV !I$I$e)I$I$d!d I$I$e)I$I$e)$H$!X! I$I$d!d I$I$d!d H$I$!bx^^xI$I$b I$I$!AII!++I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d @$@$!pp I!b 55-!@$H$!I$I$$!!I !% !(I$I$e)$!`I!b)%I$I$e)I$I$e)I$I$e)I$I$$!!p\I$I$d!d $@ !``I$I$b+%/I$I$$!!I  !H$!(I$I$$!!UUI$I$$!! I$I$e)I$I$e)I$I$e)I$I$$! I$I$e)H$H$!bx\X` ! I$I$E)aI$I$E)aIIE)!յ @$E)!I$I$e)Ie)I$I$11I$I$10`$$!b`pI%) 55H$I$E)!_ @$!I!I$I$ p\XI$I$ 5I$IE)!E)!I$I$1I$I$1 DI$E%)UU# r$9 ), r*+)1)(A,H$E@T" Ќ=oiX 3 q(jI$k-`!UVX`I$I$$!!5 I$I$e)I$I$$!!I$I$$!!I$I$$!!****I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)$($!UU@$I$)bI$I$ az_I$I$A0}I$I$!& I$I$Az&I$I$a)I'I$E)UY5I$A$1I !a!I I$! I m$9!UEZUmۢm۴E)жXE)1 / ?1m'1e)zm-۶a$!!@IIE) gǎ9߷;ۺdeE)4 ۶mـnE)qaۦMˆ1!-B?%)Z5ڵ1o#mن1ʺ1! ֆ1bm+ڶE)ZxO1II$E)!UUU`@!IE)a?1 H$! I&N9= fYE1--- qEQ c;Myq 3:X цqeQxx b5XfIh` $I$f1I $ A@ !IDI % eh6Sj}_0*Zvnl)Ҭr-Jڿ?}IH_È*ҢI$ $ UUET`$,a2JҪ*kC۶mm ɪ3hZJyh I"4 )WI' k%)U^I$%)UUzAI$I q~1*"i߆mۦ1A& 9 1vlضme)!a۱ۆ1"$A"IE)mm&1 ۶-ڶf1 mۢi۶e1 IIf1$)?II1%)UUѦڶf1" 9 8W9 /۶af1* |^6,˧9 o9 ?g۵f1 ?~I A$E)!$!0kڤmE)amжm۶%)~?1A$Nb'e1 1$I$1IUA$I$!a(ݐtI$$1-_$IJA! +I$ H$9bI$HE)UW|I$I$1 e)!ꪪI$L%)bWV E)I$I$E)$!I$I$E)$!I$I$1E)!I$I$1I$I$1 I$HE)UUH$I$HE)I$IPH*mv`H+}6gEX+# {w q/ -ܶI$ E1@)H$I$E)TUUUI$d2E)!I$I$E)I$I$E)aI$I$E)!@!E)! I$I$e)E)I$I$)(I$I$1 I$I$1 I$I$)(H$@ 1I$I$1e)E)`㩥I$I$E)$!I$I$E)$! I$I$E)$!* E)!I$I$E)$! I$E)!H$I$E)bWW0E)I$I$)(E)@IMnE)bՕ&I$I$E)$! *H$ E)!^xhI$I$E)II$E)!UIE)$!I$I$1e)E) E) !IE)!ME)&H$ )(II$1I$dHE)!WV !C2$ E)!ꠠI$I$e)I$I$$!!C@E)` !@@e)! I$H$e)E)UUV\ 1I$I$1 I$I$)(I$I$)(  E)!hIȐ E)E)!`0E)!P`@I$I$E)a! E)! %1 H$@ )( Ie)E)%I$I$e)E)I$I$1 I$I$1 @$@ )( e)E) 55I$I$e)E)e)E)rL$d&E)!A$ e) I$E)!e)E)ɉI$I$)( 0E)!ME)1 I$I$)(I$I$)(I$H$1 )(H$H$)(I$I$E)!II$E) ***I$I$E)! E)! I$I$e)E)I$I$1 I$I$e)E)?I$I$1"I$I$1"I$I$1"I$I$e)E)I$I$e)E)/I$I$1 I$I$1 d&C0e)$!I$I$E) I$I$$!!!!E)! -I$I$e)E)I$I$1 I$I$1 I$I$1e)E)+I$I$e)E)I$I$1 H$@$e)E)TT\Z e)E) I$I$1 I$I$e)E)@$ )(H$@$E)!TTXPI$I$$!!UU@E)!I$I$e)E)**I$I$1"A$I$e)E)I$I$1 e)%)I$I$@!I$I$@!H$H$1" @!@$ @!I$I$1"I$I$1" 2 E)!蠠I$I$$!  I$C2$!@@$I$!6@E)!I$I$1 I$I$e)E)*I$I$1"I$H$e)E) e)E) @$@ @!II$1"H$@$e)E)II$e)E)/??L$de)E)VVXe)E)  @!e)E)`H$H$E)!I$I$E)aI$I$$!! %!!E)! +/I$I$f1e)I$I$1e)I$I$f1e)I$I$9I$I$1"1E)I$I$9I$I$9I$I$@!I$I$1e)I$I$9Le)V!Ie)$!I$I$e)E) ***I$I$1E)E)!I$I$$!!UUVTI$I$d!d E)!@! 2HE)UUU$B&L$HE)I$I$H@I$IPH/Im XH }6W%qP }. fa+%%7 Ey ) C %qz ,6x$e) \W pb'vb'fIe)TUUUIIe)%) *I$I$9I$I$9I$I$f1e)1p"'E)xXf1 -%I$I$@!I$I$9  1E)I$I$1 IMt`H//p7wE`//--, f-)--3-ivِ 4):DZ__4%$DZW 4%DZ*4,yDZ4-i@DZǩ4-1DZ4,'DZ_4,DZ4-t`DZ4, DZ4-0DZ4)IbDZUU4,y DZ4ڦ- P@@@H$I$9 !+ I$I$E)I$I$d!d I$I$E)aI$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d H$H$!hI$I$ bU8I$I$!bI$I$!AI$I$!I$I$E)aI$H$ A\ !b I$I$E)I$I$E) !! I$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$E)I$I$E)I$I$E)I$I$E)H$I$!I$I$!I H% I$I$Q!@I!AXH+{wFyP=% kVNi ;{n DZf3) v떧 410%44I$I$%4 DZ!@4H$I$DZ!TTUUI$I$E)I$I$d!d I$I$E)I$I$d!d  !!I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d @$H$!hzzZI$I$$!!I$I!??I !- !! I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)$!`I$I$a( A$!I$I$$!BI$I$!!I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$E) @$!xI$I$$!!I$I$!UUՕ! I$I$E)I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$d!d  @$!b`I$I$!bUI$I$!UUՕ! I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$@!^ ! I$I$d!d I$I$d!d @$@$!ࠠI$I$$!!I$I$!Օ ! I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d A$@ !`p@I$I$!bI$I$* I$I!_? !@I$I$b8U!@ !pI $!b- I$I$e)I$I$e)I$I$$!!I$I$E)I$I$E)$@$!hz^I$I$I$I **)@$H$!b`XTPI$I!bU%!$I$!I$I$e)I$I$e)I$I$e)I$I$$! I$I$$!!IIE)! %)j!*I$I$E)I$I$!! $E)!H$I$e)I$I$e)$$!a 1I$Ie)I$I$1%)`  I$! I$I$d!d H$ ! !*H !pI$@$!bjP@!I%) %5I$I$11I$I$1I$I$1dI$E%)UU#If0) @i@$Ey%q "Ey%q) i@iW"rhP_I&#%$)UZhI$I$$!!I$I$$!!@$!bT$!  I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)H$$! xVH$I$(a~I$I$AI$I$AI$I$A* I$I$A(I$I$a I$ $%)N$Ie)IvmE)A)*O~ɟ1  Ƕ;e)jj $!a  @ $!  vföme)dHdBE)ڪc4Ae)k*Y6l݂e%)!0}+aІ1K*I$ $1%)UUW@%) IdHE)! 9!$M#$IE)HI$ $E)! iuW7f1+ =>9 ۶1*}I$IlJ$)UUIĖ I%1UI"I!U}I$@$)UW`ϏcI! ۶me)AL L$E)!d $$!J pS9wfQE)---- p SqfY -E[-yq P5XqfQ :#:fQE)xxxx I$I9? $I'E)bwII)!UWm۶S-*_3M ɑ!sɨ_hvl6 J<M[hٶN*kضe J??R$I$͐ ҪꦤUې$I)⦪` @J@pkڪU ko*~+rslm khض-jϵe1w-J?CJ$ɫ \uѶmӶ-J?*#I$I$QhI$!Uy$jI%)]UxpI$I' %)UUUX@E)$!öm+lE)vl۶mÆ1 E)!@A 3 ǟ'9]o$i If19!~<+m]-E) L#@ 9!{} o~91 I$A$e)E)I$I1"I$H$e)E) e)%) I$I$@!I$I$@!H$@$e)E) Ie)%) ***@!I$I$1"I$I$1"@$ E)!I$H$$!!I$I$$!!I!$@!E)! +I$I$e)E)I$I$1 I$I$e)E)I$I$e)E)II$e)E)/?? @!I$I$1"I$I$e)E)I$I$e)E)?H$I$e)E)I$I$e)E)IIe)%) *  @!dB&`&e)!I$I$E)I$I$E)  E)!///e)$!I$I$1E)I$I$@!I$I$9H$@$@! 1E)I$I$9I$I$9I$I$9I$I$@!I$I$9I$I$9e)$!I$I$e)E)*f1H$H$e)E)L$L&E)!VV^XI$I$d!d ! E)! $@$$He)UUXIڶHe)I$IPHU]I$!IXHU+ .W iH+ }.W EX+ " mi -yr4 E - $e)@P-@$I$e)PVUUI@!@$ e)E)II$e)E) 9I$I$@!I$I$@!рHe)`` e) I$I$@!I$I$@!I$I$1E)I$I$)(AAPE) 7qwwEX/--)sE+//3& 喖4- DZǩ4,'DZ__4)I$DZUU4)DZUU4,NDZ--4-c;#DZ4)vb'm DZUU4)IDZUU3-m۶DZǩ/)6&cqǩ^^3%$e DZ* 4)0d36DZ~4%@nqb;DZ]4=I H$E)!}$C Ie)ꢦ ??1!Uu /$99$!kUMIme)!?voۇۆ1E۶mڶE)!mӶm1!?B%)UUTU(BE)! o9!_Um6f1"kiӶf1I$ H%)UUUI$I k$)UUIm$1U%1 #I EaR" $J L Mۺ ܖ *\8vkN*?wC6lnɢk"%"A!Xp@@$!9MZ$M&E)bɒ!I$e) eIU eI!)--- S1qfY-I$Iyq Z ͆yfazzzx #XfYE1xxxxa$I$%)?II (wII$)Wvvn*߷7DY6-Z ɡjCn; ɫfe÷m;NJڿm~l Jڳ=``eI$IJڧU[mm*Һ}I$H$-UWTUe-ʦmy j޿zvl۷a=`p*zmmslNJ޿MhV-*Ҽ=}$HNUTՎ}UUUU[6u۸)Қ*FHI$I ɤL2ضm1TI$"A!UUI$I&*%)UUUXimf1 驪+l۶mE)  Um1I$E81E)uUSu-mӶf1mŎme1 kvmۦ1zJhf1m[m1M$Q$1%)vTQU 19 m?9 c.lf1$)UgKI$ME)! mXc#E)"$ $!a?9mqm#1m;mE)j@ !ILB&!! O$I$9?L̄a e1a E9 I%1 +@IE)XI$L$$AE)UUVTI$I$E)$!I$I$E)$!I$I$1I$I$1!%)@$A* HbI$IPH*mv`H+}6gEX+# {w q/ /qN4 f+ /$H$E)@PTU$I$1 I$1 )( E)!蠀I$H$E)!_I$I$E)aI$I$E) I$E)!/)(I$I$e)E)I$I$)(I$I$)(I$I$)()( I E)!I$1H$@ E)!I$I$E)! **I$H$E)$! I$E)! *I$H$E)!II$E)! *I$I$)(I$I$)($)(I$1@$e)$!I$I$E)$!E)@I!I$I$$!!UUI!E)!I$I$1e)E)I$I$)(I$I$1 I$I$1 @ )(I$I$1H$e)E)TPC$C$ E)!I$I$$!!I$I$e)E)! +e)E) I$H$e)E)UWV\ 1I$I$)(I$I$)(I$I$)(H$@$1II$E)$! *E)!@$0E)!PpI$I$E)a E)! 51 H$H$1I1I$I$1 I$I$1 I$I$e)E)*@$@$)( e)E) $E) L$LE)U:$$ E)!A$A$$!!@$I$!bXVX$I$E)ɐ E)k$hE) E) I$I$1 I$I$)( )(I$I$1)(I$H$1I$I$E)!I$I$E)!H$HE)!E)!I$I$1 H$@$)( I)(I$I$e)E)*I$I$1"I$I$e)E)I$I$)(I$I$e)E)I$I$1 I$I$e)E)**`2 0e)!hI$I$d!d I$I$$!!?@!E)!  @ E)!IE)! * @$ )(II$1I$I$1 I$I$)()(I$I$11 I$I$)(I$I$)(  E)!  !訨I$IHE)U׾*0E) $e)E) I$I$e)E) H$I$e)E)II$e)E) *** @!I$I$@!  e)%)I$I$e)E)*$H$@!I$I$1"I$I$e)E) e)E)``@$H$E)!Z~I$I$$!!?//I$I$$!!  E)!///I$I$e)E)I$I$1 I$I$1 I$I$1 I$I$e)E)?I$1"I$I$1"I$I$1"I$I$)(I$I$e)E) I$I$1 I$I$e)E)***I$I$@!-e)`I!bUI$I$E)aII$$!! +@$e)$!I$I$f1e)I$I$@!I$I$@!@$$@! 1E)I$I$9I$I$9I$I$9H$@!I$I$9I$I$9I$I$9(1E)@I$Ie)UH$@$1E)`&`&E)!XXXpI$IH!UUU !IH$!UI$I$H@I$IPHIvmXH+ {.W %qP+vG F`*%{s E++ d=/ৡ%yzZP@)6"M$fE) JVU$A e)E)?5 @! I$1" @!I$I$e)E)e)$! e)$!ZJ$e)A  e)!II$e)E) *I$I$9I$I$@!I$I$1e)I$H$e)E) PE) %% )WqW$qX----"S%y +--1#/r+)4-;$@4,O2DZW4)IҒDZU4)ImDZU4,*@DZ43 %4, !DZ@4% DZ'43I%44I$I$%44I$I$%4,DZ|4, DZ4P&H$PX\TI$I$!I$I$E)I$I$E)I$I$E)!***I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d  @ !II!H$I$!I$I$bppI$I$b-I$I$!I$I$E)a! I$I$E)I$I$E)I$I$E)I$I$E)!I$I$d!d I!&I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)@$@$!I$I0 UU!@H IIPH** IqeiP/7E`/ & /gNF!%y/+B14 %Ey  4-B  4-1DZ41l%4 B$DZ!@@PTI$I$E)H$@ !bTX`I !b% I$I$E)I$I$d!d I$I$d!d I!׾I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$E) $!I$I$I$I$!)+*I$I$E)aI$I$E)I$I$E)I$I$E)aI$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E) !I$I$I$I$$!! ! I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$E)  !I$I$I$I$$!! ! ) I$I$E)I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d  @$!p\ !b -I$I$d!d I$I$d!d @$H$!xxI$I$ I$I$!AI!* I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$e) !I$I$e)I$I$d!d I$I$d!d I$I$d!d H$I$!TWV\I$I$ I$I$!U ! @!I$I$E)I$I$E)I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d I$I$d!d $@$!I$I$ I$I$a ! I$I$$!!@$H$!`X` I!5% I$I$$!! **I$I$e)I$I$e)I$I$$!!pXI$I$E) !H$I$!p訪I$I$b% I !+! I$I$E)I$I$$!! I$I$e) @$$!bp\$!b I$I$$!!I$I$$!!*  $!@$I$$!!`pX\I$I$E)$!bp$I$%) $H$E)!@!bI$I$e) 1I$I$e) $I$e)IE)$! @$E)!I$I$$!!X!I!I$I$E)I$I$!!**   E)!@$I$E)$!I$I$e)I$Ie)1I$I$1I$`$!0$! $!ɐDI$Ey UU%Ir8 ), .wf*/)$I! +/+vbL-!l hz訠%҈E~l26 E)Zh I$K'q!UUTXI$I$e)I$I$e)I$I$e)I$I$e)I$I$e) b($!UUյ$H$)b ~_I$I$ AzI$I$*I$I$j I$I$I$ $!I$I$E)**j L$i9b 9! 9!UUEmE)*G1Ar*1lfde)˂2۷31ke[MҶ1v 9p-۶;ӆ1! mװئ1 Mm;1!> E)!jߟ1! 9 m k߶æ1A*I$II$!UU Ixk$)U%11n۶`)M$O2I jZöm)Ңےtm}۶?W-۶eѦ Ҫ*U5ʶMӺ)ҊfZmm۶Jj*M }" ɺKhm׶cC J,I$H$f!UWTT 9vb#v$e)!UEUUI 4E)AN.SfI!--/- RqeQ/---yq  ͆yfixxxx b#6ZfaE9xxxxd$J$E)< $N$9 EWWUIq;$IR]i"p)Һ*z?ӟ UVR}wkڪFd'*O0. j\$Ð$H*jI$A$UUQUWۆmm)ҪH"I@mvc[ kRmm*Ү_mm*:Wضl۶)Ҩ.I$A$hR$H$Ijښw?-k|cۆm[G,JڪjIDGUU\/˺-J} ? EuUUhٶm۶aJکpl۲ ;-j|M$H)TI$pmUUx7I姩%yrRRZ4!Ey 43$I$%43 %44I$I$%43@$%43 %4 DZE@@@4IIDZE44I$I$%44I$I$%44I$I$%43$@$%4  DZ%q@(H$H$TTTUI$I$!A  !a I$I$E) @ !b`I$I$!A.?!I$I$d!d I$I$d!d I$I$E)I$I$d!d !I$I$d!d I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d @$H$!   !I$I$!zzzI$I$!AI$I$!UUյI$I$!I$I$E)aI$I$E)I$I$E)I$I$E)I$I$E)I$I$E)aI$I$E)I$I$E)I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E) !I$I$E(C @H% I$IPH+6e`H/{6EX/+& yrT %y+ 1ܲ)0EjJ4 Ey43DZ4@$DZEPP4b$ BR ! I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d H$!bV!I$I$E)@$H$!I$I$I$I!=I$I$E)I$I$E)aI$I$E)I$I$E)I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)@$@$!pXzI$I$$!!I$I!ՕI$I$E)I$I$E) !! I$I$E)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$E)@$H$!|I$I$aI$I *+/I$I$E)I$I$E)I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$e)H$!\pI!b I$I$d!d I$I$E) $!I$I$! II! @$!`X !b I$I$e)I$I$E)I$I$e) !@$I$!b`XVU !a I$I$E)I$I$d!d  !I$I$!^^WWI$I$!AII!)+I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d  !H$I$!I$I$ I$!!I$I$e)!!I$I$$!!** I$I$e)I$I$$!!I$I$$!!\VWUI$I$E)$@$!zzI$I$!AI$I!Օ!*   !@I$!b&UI$I$$!!I$I$e)H$$!aX` $! I$I$$! I $! * $H$$!!@pI$I$E)I$I$E)H$@ !b\\p !IE)-I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$Ie) $E)!I$I$$!!@$H$!|x$I$! !* I$I$$!!   E)!@$I$e)I$I$e)I$I$e)$@$$! I$I$1 @$e)I$I$e) $!@$I$$!I$I!*DI$E!UU# r9 ), ק*-% @R-&b۶m{`?/&@f~") diPZX@E1`I$J1%y$!UUT`I$I$e)I$I$e) $! $! @$I$)aI$I$aI$I$AI$I$A, 2I$I$ **I$I$ aI$I$!I$ C$$! 9w?1m;e)jf1I0 0E)!By|pldž1mۦ1mmӴ1!O1!?Mۦmf19 9 km9 ?ön۶l%) ۊ[{1I$n%)UU%IjB@M$9hI,HJڠ\*ecژm.JZ!۶)*Jwc۶mseN˪ J?Zu6m[v).j*Um Һh-UۦJڪ*}$I.UU}U,)`M$H$ VTTTmDZcE)bk*6E&E) $I$  P PfA/''/NRieI+++-$@!yq )1)yixxxhZPfaEAxxxx $$E1 H$O<9| a&%)ߨfhޖqahMmk7?_m[EӴ Jsc)ߨcmm۴k?Hmkǰնn*:l!WpI$I&)%)UUWp6|۶؆1$ $IE)!0I$H$A!T!I$ e1 I I$9! ?AI$I%9E)UUY slۆ1b m۶ا9$I IE)!l1mۢIE)mvle1 I$I$%)!?68m;E)j$ɐdHE)!*!C2 %)bƻI$IB%)bk"I$f1?I$I$$)a*IxEI +lm$IE)` I$[I%)UI$I$HHI$IPHv`H+}6gEX+%w `_[* /J i 1 $%)@P1H$I$%)TUUUH$1E)!˯`$I$E)bVUT۶m0E)bI$H$1I$I$1 I$1@ )(LB&`2E)!^zx`I$I$d!d I$I$e)$AL$E)*^W0E) I$I$)(I$I$)(I$I$)( [$E)bTC$E)UE)! I$1H$@ E)! I$E)! **I$H$E)  E)! *I$H$E)! K$E)<I$I$)(H$@ )(I$I$1I$I$1H$@ E)!I$I$E)!**@ E)!Zhh !jI$I!UUU$I$HE)bU,ٰm۶mE) )(I$H$E)b_W\I$E)b 9I$I$)(I$H$1 )(@$ )(H$@ E)!^ZZhI$I$d!d II$E)! I$E)! @$ E)!I$I$E)$!6E)@I$E)! ?I$I$1 E)!I$I$E)$!$I$E)!I$  E)$!L$H&E) UWV\! E)! )(lX&E) `X۰ ۖmE)I$I$1 I$I$1 I$I$1 @$@ )($@2$IE)!M$ME)bVU8`E)H$@$E)!I$I$$!! II$E)!?)(I$)(XmlE) I1I$I$)( )()(I$I$1 1H$H$1I$I$E)!$AIE)! *?I$L$E)!I$I$E)$!  )(E)!I$k E)bUV8E)I$I$e)E)I$I$1 I$I$)(I$I$1 I$I$1 `%E)b@P E)bI$I$d!d I$I$$!!?U$H!e)! )I$I$1)(@$@ 1II1I$I$1  E)!`E)I$I$1)(I$I$)(m$h E)!!@E) I$I$$!!UUWT E)! %51 @`E)` E)I$I$1  $I$e)E) //I$I$1"I$I$1"@$I$e)E)X&M&E)XVX e) I$I$1"I$I$e)E)E)!I$I$$!! IE)!oI$I$$!!/  E)!/?I$I$)(X&M$E)bXVX E)b @ )( Ie)E)5I$I$e)E)I$I$e)E)I$I$1 $C AE)! E)@I$I$1 I$I$e)E) *** $@!dB&d&e) I$I$d!d I$I$$!!5 IE)!/???e)E)I$I$@!&e)b@Pe)I$H$1"0k$e)!8I$I$9I$I$9@ @!  @!e)$!*I$I$@!$He)UU@$I$HE)I$I$!`AI IXH/ IvW iP }.W EX " }& fq+ ,I^n$ a*-$=p,ؿ$I$\UUI$I$d!d II$E)!k%XmE)ax`I1`e)%% H$H$1!e)E) H$I$e)E)  e)E) @$@$e)E)II$e)E) **I$I$@!I$I$@!I$I$@!H$H$e)%) Qb$e) ۰mۖ e)!I$I$@!  1E)zI$I$)(dHLHPe1 7S7w%y`---%)SE--1)`  ---410DZ4/j&jDZǩ4/JHDZǩ 43I$I%4H$DZETT43%44I$I$%43%4/JDZǩ41Il%41ِ %4,0 @``I$I$!! I$I$E)I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d !$!`!**-I$I$E)I$I$E)I$I$d!d $!`$I$!gUH$I$!UI$I$\TWUI$I$!AI$I$!I$I$E)a !* I$I$E)I$I$E)I$I$E)I$I$E)aI$I$E)I$I$E)I$I$d!d I$I$E)I$I$E)aI$I$E)I$I$E) !dB H/%H0 I XH+ ɛ7qP+I.e f`+ ,yR E++ 3)qRD -+ 41ٰDZ* 44I$I$%44I$I$%4@$H$DZ PPTUII!***I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d !H$I$!(!I$I$d!d I$I$d!d I$I$d!d   !I$I$I$I$$!! ! I$I$E)I$I$E)I$I$E)I$I$E)aI$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)aI$!V$H$!@PTUI$I!bU $!I$I$$!BI$I$$!B ! I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$E) $!I$I$$!!I$I$??!+ I$I$E)I$I$d!d I$I$E)I$I$d!d $!PI$I!bVX  !b I$I$E)!@  !@I$I$!bUI$I$TVUUI$I$ յUI$I$E)I$I$d!d I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e) !b@I$I!bU$!$!H$I$!jZI$I$ I$I$bU<!I$I$E)I$I$d!d I$I$e)I$I$e)I$I$$!!I$I$e)I$I$d!d I$I$d!d  !H$I$!I$I$ ! I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$e)I$I$$!!**I$I$$!!I$I$E)a ! @$I$!zZ^I$I$!AI$I$!! I$I$E)I$I$e)I$I$e)I$I$e)H$$!X`!I$I$$!!*  $!!BI$H!bUT!I$I$E)I E)!@$H$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I1@$H$$! I$I$d!d I$I$E)aI$H!bVXh !b I $!  @$E)$!I$I$e)I$I$e)$AL$$!b(@1 @$$!I$I$$!!**I$I$$!!@@B&L$$!I$I!* $!+ H$I$$!!TVUUI$I$E)I$I$e) I$!UU#psf8 -, wf *-) IH*,),z+#P5hz{"XfxxxZ`fy%YxxxxJƠ9Q!TH$H$0zI$I$AI$I$!I$I$j*I$A$ aI$I$$!/I$IE)/2I%)jٶm؆1 ɓ$I 9!uUUE$$!m[mۮE)$I!$!b0I~<'IJ v9$I2$AE)!* 9?B%)UTUvnӦf1kki]m[f1颪A$I$1%)UUI j$)U UI$M8)em۶NJ͋\$ $E*k[m; jڿh$I$ijڦI$I$Lj᪪Z؆n*wvc˶ǃ_*h]m{-J>Cn[{-Ҿ-ɫ>JIy$-U]UZ'$٫ ҋw k=humMjZ&4E Jzh&h%J!XXXPM&h[E)!C"!I$!I$I$%). i9- faeA ---` yi )-00yqxxhhZ5XieIxxxb"&`e9XذI$I$1?IIE)A**1s ! C!f$)pmѦ-ڶ?hv|;1.J?Z$KJҪ} k`w$ِJ(WMڣmNJtm۶- k8փ !IfqEIz~Xb=:EIzI$I$ X\I$I$A#I$I$A/I$I$/+ H$I$!8.) $I ! @ A9@!0!H$IE)mَme)*$IdH$!a0N9$!WuQU۶!Y %)a@m۶h6E)! ;mæ1b붊 ۱oۦ1a .욱ħ9˻%) %)bI$ɕJ$)UU% eiI)Unmߏ)=w0DWmؖ]N*ҟmmm[tjڪ"t$IEkڪ#_$'H*ҪU: 8 ) @cm5b-J{h-_ض k`$ITJҪ"Hۈɪ詨\&}-JҪjk>NJ={\T] *3@}$M$ EUVQJIS Iɢ.W68N*܃R%P%jPPpp1$!@ $I$!a GDE1;-?  SfaE9/--- 0B!yEY Kk IyEY Z5X5ieQxx``b&6eAI$I$%)bbY$I E)azʡlɘc( `n*MɒH ʹ*RڶƏ)ۡR$IB ʪBJZ6[ ʫjWq[m[NJR#.$I)ʪn*Rm.k ʪ竣Jmڲm;-ɚhmnJOmm*nJH$I$1%)dUUU` %)@ v9:a$I E)!3?f1$H$I$E)!TUUW$ÀdH%) IB0d0!A#Q$e1 jI I$%) EA +DJ$QE1 +- {/EiQ+/ yyS`%i-++(1N` f-+++/(PP/+1@$H$$!PTTU!@%)  %)@H$I$$!b\VU I$!  I$E)!/I$I$E)$! II$E)!um$E) E)$! I$I$1 )( 2 E)!hI$I$$!!I$I$$!!ꫯ/I$I$$!!! E)! -)($H$1$)(H$I$1I$I 1I$I$E)$!I$I$E)$!**M&C;`E)b^m۶mE) H$I$E)! I$E)! *H$@$E)!I$I$E)!**@$A$1I$I1 E) `۰nIE)b&H$ E)!I$I$E)$!@ e)!zjI$I$E)aII$E)!5UI$I$E)$!I$I$E)$!**@ E)!M$E)(W E)/I$I$)(I$H$1Ie)E) 5@$@ e)$!H$@ E)!^~I$I$$!!II$E)! I1@$ E)!I$I$E)!*)(H$@$1II$1@ E)!I$I$E)$!I$I$1E)$!蠠I$L$$!! E) -%%)(H$@$1II$1 @$)()(I$I$)(M@&E)x E)b -I$I$)(  )(I$H$E)!I$I$$!! IE)!@$@ )( I$1ku؆mE)  E)! @  )(II$1@$ E)!I$I$E)$!*)(I$I$1@$@$E)! E)!I$I$E)!*I$I$1)(؆-؂mE)@@I$Ie)77I$I$e)E) ++I$I$e)E) 1 HI$E)! )(I$I$)( e)E)oo?H$H$E)!^^\xI$I$E) IE)!%5@$A e)E)\[Yy I1I$I$)(I$H$1 )(1 E)!H$@$1 I1I$I$)( )(I$I$1@$ E)!Zzh`I$I$E)@E)!` IE)%*I$I$1 I$I$e)E)ꪪ I$I$)(I$I$e)E) I$I$1"I$I$1" E)!I$I$e)E) I$I$e)E)HE)!1 d2 2e)!I$I$d!d H$I$$!!I$I$$!! E)!I$I$)(I$I$)(I$I$1 k&E) ^^!e)! I$I$e)E)I$I$1 @E)!PE) @E)`IE)%)I$I e)E) e)!ࠠI$I$$!!I$I$E)I$I$$!! +-e)! I$I$@!@!@$I$1"@4`e)!pAJE)%%*I$I$9I$I$9@!$HE)UUD$I$He)۲-۲ P8Jbj I$I$X8UU {-G iH*}6W EX " } fi+,4 E -  &e1X,$I$e1xVUUI$I$)( @! E)!$ $$!I$I$E)!E)!  e)E) I$I$e)E)E)!<I$I e)E)I$I$e)E)* ( I$1"I$I$e)E) e)%)$@! @!@$@$e)%)II$e)E) * .H @!@!I$I$f1e)@$H$)(-nnQE)%555 7SywiP//-- S1Sfq+/--/"` N+++)41ِ DZ **44I$I$%44I$I$%44I$I$%43I%44I$I$%44I$I$%44I$I$%44I$I$%4$@$DZEPPP4 DZE4h&L$XX^VI !/ I$I$E)I$I$d!d $!I$I$E)I$I$d!d $H$!A! I$I$E)I$I$d!d I$I$d!d I$I$d!d I$@!a| ! I$@!a\!I$I$d!d @$H$! $!I$I$!zzzZI$I$!AI$I$!A$I$!II!I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)! !  H!% I$IPH+i6e `H+{6%X/ &yysT %y+ 1!1gn + 4-!EJ@DZ43DZ44I$I$%4$DZ@PII !@$I$!!I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)H$H$!I$I$II!5// I$I$E)I$I$E)I$I$E)H$H$!XxI !b5 I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$d!d @ H$!b`X!b !I$I$!^VWWI$I$$!B !/// I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d  !@$I$!,W !I$I$!VWUUI$I$$!! !)) I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d  !I$I$!^VVUI$I$!UUՕI!{** I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)!bI$I$d!d  !I$I$!Z^~I$I$$!BI$I!/+I$I$d!d I$I$E)H$I$!bVUT ! I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d  !I$I$!I$I$$!B ! I$I$$!!/I$I$$!!I$I$d!d I$I$e)I$I$$!!I$I$e)I$I$e)I$@ !II$!%H$I$!Z^VI$I$bVWTII!/- I$I$E)I$I$E)I$I$e)I$I$e)I$I$$!!**I$I$$!!I$I$d!d I$I$$!!5 @$e)I$I$$!!pWI$I$E)I$I$$!!U  %)$!H$I$e)I$I$e)I$I$e) $!$!I$Ie) $1 $! @$I$!I$A$!z I$!+%I$I$$!!**  %)$!H$I$e)I$I$e)I$I$e)I$e)H$I2$!b@I$!bUI$I$$!! *  @$$!I$I$b`II!b**-%I$I$$!!\VUUI$I$E)I$I$e)I$I$$!!*I$I$$!!I$I$e)I$I$e)DI$Ey$!UUM%f1*i%fu=:i~ c>qeI~ ;l>Qzh$I$E1sI I$!AI$I$ ajII$!A.I$A$!b! I$ۆ1Ķa'E)*m˱ f1m8f1b $! @Yۮ vE) 1 =Ƕcڧ9Aj D$9%)uRT<ןBs ?9ۆeۂme)j 9 I$IE)UUU%I`jE1 pض- kU6.ڶn*p$I% kڦ*}H'I$nT]uUU I 9 Ҩ_l*-J~LI$C$ UURUe];NJI$IυO paەm;.k?Wm۴mQNJ?ϸzg-\U\V^ضmNJSkm۞anJ;R&mm*Ҫk$N,ǐjʚWA۵M)ҡ_&KG6*ҫjw1(j `@@@1)m&kE)I$H$ a$NI%1 fYE1++-- yeYk+++ IyEY XP ՆqeQxZ5X5fIxhhhaI'e1?II b,ɔPxj%%tH0$ ` @W]ݶMע*&cmE۶Jꩢ?2n۶mJRmڶ-N*pmm?\۶]oJ\v]nJz۶mګO Oljջ-j.(hm۶cNjhc}Nj?c6,۶mJҪbWiێ*ҿ7`ڴ 4gJ(**\dHJҚem.j`m$yJjr6ۦ]-kzmیMڪUm[m*҈Z$ɔ$C*Ҫj:OI!M Ҫ颡U$$I)*_+Qmƶ*(7$IdV *wǟNQU]Um6}2 kKRId ҢkZۦkߋ#I(`I$`(%)UUP 6m;؆1j ??9!|n6چ1J?A o  9!GM{1lۆ1*d@4Ee1 ˶önE) S;qۦ9!j+ _<9!s>pvbf1bة 9II$E) m۶iV%)pRۮf1AتI$dB"%)jI$ie) UQI$I$!RYeA - %a?eaE1 +/ PseY++&`.w+-"$J$TTE)!I$I$1 E)!I@%),E)!ꪪI$@$E)!I$E)! +I$I$E)!I„E)(E)!I$I$1I$I$1)(LB&$2E)!~xI$I$d!d I$I$$!!‹I$I$$!!/?@$E)! )@$ )(I$I$1 E)mtE) %I$I1I$I$E)$!IE)! *I$@$E)!&L&$!b@PTP$ %)   E)! $I$ 2E)!E)b  )(؂۶mE)@IE)a7  )(I$H$E)!I$I$1I$H$e)!WV^ZI$I$E)a E)! I$I$E)$!B$@E)!B I$h`E)bW޸IIE)?I$I$)(l,E) @E)e)E)@ $I2 E)!訨I$I$$!!I$I$e)E)!*)(I$I$E)$! E)! `,E)@E)II$1I$I$E)$!I$IE)! *I$$1`&@$E)`II$$!**-$@$E)!  )(I$I$1lö%E)p )(I$I$)(h$ E)axI ٶmE)a-)(I$I$)(dB& 2E)!``I$I$d!d I$I$$!!? E)! I$I$1H$A$E)!I$I$E)! ***I$I$)(I$I$1 $I$1I$I$E)$! E)! H$H$1 E)! IE)!/??$%)$!I$I$E)! 1@$@ )(˰۶mE)KE)a,I$I$1 1 I$I$1)( )(I$e)E)?7U`&0E)!xxI$I$E)I$I$E)!UU E)! I$I$1I$I$)(H$@$1 I1I$I$)(I$I$)( )(I$I$1)(I$I$)(I$H$1 E)!`ࠠI$I$E)E)! -)(I$I$1 I$I$e)E) *I$I$)(I$I$e)E) /I$I$e)E)I$I$e)E) h&M&e)bhXVX E) I$I$e)E)@&E)`XɐE) 5 0 E)!I$I$$!!I$I$$!!SI$I$$!!/=?!!E)! X&E)b`XɐE)5I$I$1 H0E)!@E)! I$I$e)E)I$I$1 @ )(IIe)E)5I$I$e)E)I$I$1  I$e)E) e)E)`I$H$E)!W_I$I$d!d I$I$$!!/iɖte)!++/I$I$@!I$H$1"A I$1"  @!I$I$e)E)((@! He)UUU$ IHe)UH@I$IPHW+ I6I `H+ }.G %yP*}. f` ({ %y*-qYn0ৱ*J-0`$e1`XVH$I$e)TUUU  e)%)I$I$)(e)$!'r:e)AxxI$I$A* ! ! E)! %$A$e)E)* ؆-۲e)!@@H$I$!a,ߗ>mme)!I$I$e)E)(I$I$1"I$I$e)E) Ie)E) @ @! I$1"  e)%)E)$!@$H@! -'E)Xe) ` e)E)\ IQE)5qWxhP-p7Wfi/--f ))4-` RDZ44I$I$%44I$I$%44I$I$%4/DZǩ41l%41%%41m%43%4)DZp4  DZEy@ H$M$$Y ! / I$I$E)I$I$d!d H$I$!A ! I$I$d!d I$H!A ! I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$d!d  !H$I$!WA$A$!I$I$!^^^VI$I$!AI$I$!H$I$!I !***I$I$E)I$I$E)I$I$E)I$I$E)I$I$E) !I$!*I$I$E)I$I$E)aI$I$E)I$I$E)IH!% I$I$PHIiXH/+ɛw%yP/+" ywT $q+/1N f+ 3 B$EPP4DZE44I$I$%4 DZ@4H$I$DZTTUU !I$I!*I$I$E)I$I$d!d !b@H$I$!bU!I$I$d!d I$I$d!d I$I$d!d $H$!b`X`I!b 5I$I$d!d I$I$E) !I$I$$!BI$I$ ! I$I$E)I$I$E)I$I$E)H !Xh! @$!\!I$I$E)I$I$E)a!4I$@!bVX` !b @$!I$I$**I$I$$!B!!I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I!,$@$!hZI$I$$!!I$I$!U! I$I$E)I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$E)@$H$!jjI$I$! I$I!I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)  !b@I$I!bUI$I$d!d $@$!~I$I$$!!I$I$? !+ I$I$E)I$I$E)a@!H$!(!b@I!bUI$I$E)I$I$d!d I$I$E)@$H$!I$I$$!bI$I!?/I$I$d!d I$I$$!!/ I$I$d!d I$I$e)I$I$$!!**I$I$$!!I$I$e)I$I$d!d I$I$E)@$I$!I$I$a I$I$ UUI!+ I$I$E)aI$I$d!d I$I$e)I$I$e)I$I$$!!I$I$e)I$I$E)I $!!5 H$I$$!!xI$I$E)I$I$E)I $!! @$H$$! I$I$$!! I$I$e)I$I$e)@$@ $!b`X`  $!b 5 1H$I$$! $H$!I$I$$!BI$I!**I!b% $Ad$$!0@$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!@I!b @$$!I$I$ I$I$!bZj I!bI$I$E)I$I$e)I$I$e)I$I$e)I$I$$!!I$I$$!! I$I$e)$$!PI$%q$!U@nfy%YU8?fqEI~_ кl>fQjzp$N$E1XVUL t$E)TFXI$ $!?I$I$!ꢪ Iڃ9qfYxxxx X5PfI`I I$E)L$$f1 WTUUpI\J%555O@rdH *CmeѶ "H$IdJɪ*ڪAdN$s *Rm}-JW .I4L)`1mmNJc}߆cNJshv׆m-kF$%ɕ ʪkmۈ.k}Y$H'YUT]Fm$ bp&ly=-k˳pmӶ t$I$ڪ*ejXj۶JҘ`aێmoJ?ߤP!IY ʩei۶m.j7p?njh-Xmӵ ڏRh[m5n*z_H'C*Ҋ*kP۠m۶- *jta۶m k?߼Pu:m۵ *|k7{6b.kOU  OlѺ-.*>7\n{m۶ JC$$UɪꩺUݚ۶a)骊N2Cml 5N`ʃO$IoUUPӴ6, *bR-]mԶ .mvla.k`}Qj>eEڡS jy4HR!I 먹*ʤ\]E J;߭c.lv? JϿZ$C$Jj O&IA!WYU 9? AO'1!II$1 RfQ!----R*` qEQkk++ IyEY P 1qfap``` X=fYE1xxxxI$I$$!jI I$$)bj"IDIE ՚hɟɂ0 kUUedW-۶-*?e j߳PdG)*"J]ȱ$I ʛ O۶mCi)ʪFI2D٫jUmuJ*RoѴ 7 )+$nO+-fn)ʎj}r۰a[mڋ0D$Jx)Acmжlժk*em۴hE)!($ @$)0m۶E)f1aj( ϋo9!&9I$ &%)b $qE) EW_?I$I$$)An.`jɖxfA 2֍EQE1@ I$N&%Q%)UUW\I$I$1I$I$1I$I$1H$!!I$I$1I$I$1I$I$1I$I$1I$I$E)$!* I$I$1I$I$1I$I$1I$I$1)(LB& E)!~xI$I$d!d @ $!I$I$b׼P E)H$@ )(I$I$1I$I$1I$I$1I$I$E)!I$I$E)$! E)! $I$ 2E)!$C2$E)! IE)!/?@$ E)! 2 %)!Z^z!&d2$!bbp$I$!bUU IE))%%I$I$1@$ E)!I$I$1E)!jI$I$!U׺I$I$ b^^PP %)b %I$I$E)$!*)(H$H$1 I1)(I$H$1 E)! H$@$E)!H$@$E)!VVZZI$I$E) IE)! E)! H$H$E)!I$I$E)$! **I$1I$I$1I$I$10`&E)b`X E) %5I$I$1E)!Zzh !**$!E)!*+))(I$I$E)$! E)! I$I$)(I$I$)( )(I$I$10lk$E)T$@!E)! d& 2E)!Xxhh@ !`I$I!b Id E)b? I$I$1H$A$E)!I$I$E)$!**IE)!0HE)!ܠI$I$E)!I$I$E)$!I$I$E)! I$I$1 $E)! I$e)I$I$e)E)!  )(H$@$1 I1I$I$1 I$I$)()(I$I$1I$I$)(@$@$)( I1dB& 2E)!ZxhhI$I$E)II$$!!5B@E)!BIE)'I$I$1I$I$1 1@$ )(I 1@$ 1II$1H$H$1 1I$I$1@  E)!zH$I$!VWTni6E) j0) E) I$I$)(I$I$1 I$H$E)!0 E)I$I$e)E)I$I$e)E)I$I$)(I$I$e)E)I$I$1 I$I$1 I$I$)( & 0E)! !@I$!b$UI$I$%)!)(I$I$)(I$I$)(I$I$)(I$H$1)(I$I$1 I$I$1 H$H$1 )(I$I$)(I$I$)(I$I$e)E)4@5E)pII!/55I$I$$!!I$I$$!!**!!e)E) -@e)E)$@$C&He)UU@$I$He)I$I$PHI!IXH*Iv iP+}.W %yX+ { fi+ , NRN4 %qW* - 0E)`-%I$e)`PUU C$Ie)$!A@e)%I$I$e)E) A e)E) e)@I$E)A,@$@$e)E)XXXQ e)E)55X$I&E)a\VXÚa)lE) I$I$E)I$I$$!!U  E)B" He)a`mlE)  nE)!@I0%IE)U e)%) I$I$e)E)I$I$e)E).e)%)I$H$1"I$I$e)E)IlۆmE)!? a۶!E) `"'I$E)apxVWI E)a5 @  e)E)I$I$1a 0PE) %%% 9WqX----"S%y/--1# ++4-DA4/M& DZǩ41ِ%1 E4!0 sDZ41`%4/$I$DZǩ4/ DZǩ 4H$DZETT4@$V'ppr^I $!* j ! %!I$H!UV !  I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$$!!? !@! I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d @ @$!I  !I$I$!zZZZI$I$!AI$I$!I$A$!II!*I$I$d!d I$I$d!d I$I$E)!H$I$!A ! I$I$d!d I$I$d!d I$I$E)I$I$E) H!5 I$IPH+vv `HU+. EH* qMfi=-kҧ%y 1EWV@ /1؉ħE 4@Io秩F+4 R%DZ@RI$I$I$I$$!!II!H$I$!I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$d!d  !@I$!&U !I$I$!I$I$ !o/ I$H!bU<!I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d $!`I$I$E)H$!T!I$I$E)  !I$I$**I$I$(! I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)I$I$d!d I$I$d!d @$@$!I$I$$!BI$I!??I$I$E)I$I$E)I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$E) ! H$H$!bXTP !b@$I$!zz^I$I$!AI !H$@ !p\pI !b% !bI$I$d!d I$@!bW\ ! I$I$e)I$I$d!d I$I$d!d I$I$d!d $@$!zI$I$$!!I$I!I$I$E)I$I$d!d I$I$E)aI$I$e)I$I$d!d I$I$e)I$I$e)I$I$E)I$I$e)I$I$E)H$I$!I$I$$!BI$I!/ I$I$E)I$I$d!d I$I$$!!5I$I$$!!I$I$$!!* !@H$I$!b>mGۦmNkڷhvc۶goJ?`ny 6-jҫn} hc6 .kI$I$zϏ OWTcmm j?P+Y$)ʮZː`hJʺ(+h ㇹ\mm;-*?CO`)bMO$H$!WTTThM4E)A諦aB&!B&E)bꪉI$ 81N)fI!--` ߆qEA++yEYUU?qEQW_ ؃=eYE1xx~~K$H$E)I$I$ A@رQf9 p PɹPkFe-kUFM-ܦm[ ʚhi$NUEYUUM{N*%h}QUVe?NJUMk-J7ߝO!I} ©*ZckNJ?D#ـ9 \Mڢ-ږJϿw$UQUUWlVmڶ J<_c#a.JwO?Paۏ*?ch۶V2 k`l$]JҞ*J$9!h Zm;OU*Ҫ%e!C ȒjiҀMI$oWUR$A"*B;2[r jbMda&I yI&-UU]\R$I mJҚ*t6۶m kpmöa; k?ciEݶJ⪸töm-kP#6 ҪDmmɪ ZF۶lӶ.J~M(@ %I$EQUT`#C#I*j*CڶM9PI$K2$k%!UUTPmm۴f1* 1<(Bmضmg1!>;A{o >9 } ]԰ا9 !I!IE) Eۦ[E)cێm1 ?I4I$E) = ?1Ajƪ$C$I$)ꪪ"pr'?1 $I$E)!jI$I$ )۪`N1eI - #IEY%)p I$M&%Q$!UUVXI$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)! **I$I$1I$I$1I$I$1I$I$1I$I$1H$@$E) I$@$E)!W^ZxI$I$$!! %H!IE)!+- )(I$H$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!**0HE)! IȐE)!/?I I2E)! E)I$H$E)!E)!**E)!E) I$I$1 I$1I$H$E) I$I$1L&`0%) VXXxI$I$ P@I %) I$I$E)$! E)! I$I$1 A$1I$I$1@$A$E)!I$I$E)$!**@ )(@ E)!zjhI$I$E)I$I$$!!?7U$A$E)!**@$ E)!I$I$1I$I$E)!I$I$1I$I$1E)` %)E)! E)!蠠I$I$$!!UWTT E)!I$I$1I$I$E)!II$E)! ***I$I$)(I$I$)( )(H$E)TUI$YE)bWW!@E)b IE)$!ࠠI$I$$!!UUUTI$I$d!d ! E)!+-I$H$1aۺ5E)!p@ E) *L$LBE)!:$ E)!0E)`I$%)?I$I$E)! *** E)!L$LE) WU<I$I$$!!H$A$E)! E)! II$1@ $)(I$I$1I$I$1 I$I$)(I$I$)(I$I$1)(@ )(I$I$1 0 E)!hࠠI$I$E)$!**$!E)! I$I$1E)I$I$E)$!I$I$E)$!** )(I$I$1aK$E)b8I$I$E)$!@$A E)!II$1I$H$1E)$!ꪨ@!dB2$HE)Zj I0E)b5H$E)TU0E) -lE)b@I$I E)bUI$I$1 I$I$1 I$I$1 I$I$e)E)/???I$I$e)E)I$I$1 I$I$)(0E)!$!I!I$I$$!! -%@!E)! H$)()(I$I$)(H$H$)( )(I$I$1 I$I$)(@$@$)( I)($H$)()(I$I$e)E) H$HE)!\ !I$I$$!!I$I$$!!(_@$L$%)ZVZd!IHE / H8@@۶mɐ P86i`H+ .W qP+ }. f`*& %y+ ,yn,'f , h$e)XVH$I$yE)TUUU N$E)A ݖme)!@ $1"I$I$e)E) e)E)  2$Ie)E)@@IXHe)b,e)E)pE)!RH e) PH$e)$!I$H$E)!UWVVI$I$E)!!E)! e)E)  @$@$e)E)\\\\ e)E)555I$I$e)E)hѤE)($H$e)E)I$I$)(e)%)@$H$1"I$I$1"I$I$e)E)蠠 Ie)E) /NBǐIE)ָe)E) e)%)I$H$1֡ҭPE)%% Na8 PfP + 0 %q1 ܧE4ܔ$DZE U44“'DZE``p]4y$ @DZE]U1)$ if)!$If-Ԓ) f3)mDZ-UU4H'mET\-M$H$^TTTI$I!rjI !A?/ I$I$d!d I$I$E)aI$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d @$H$!pxpII!A// I$I$E)$!I$I$d!d I$I$d!d I$I$E)I$I$! $A$!I$I$!^^VVI$I$!AI$I$!I$H$!II!****I$I$d!d  @$!` I$! -5I$I$E)I!^ @$!x!I$I$d!d I$I$E)I H!5 I$I$!`A !AXH/+ ɕ{i@+5" ywT $q+/qiN f+ 4y3-$Fu`4ə${EU\16Ei/e "(JH$I$EyTTUUI$I$)͋I$I$? I !II!I$I$d!d I$I$d!d I$I$e)I$I$d!d  !H$I$!,U! !@I$I$d!d I$I$d!d I$I$E)I$!? p$A$!I$I$I$I$$!B! I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d H$I$!bXVXh ! I$I$E)I$I$E)I$I$E)@$@$!I$I$* I$I$bXVX ! I$I$d!d I$I$d!d I$I$d!d I$I$d!d !$I$I$e)I$I$e)$! !!I$I$d!d H$I$!I$I$I !?/I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)@$H$!b`X` I!b5% I$I$E)I$I$!^^WWI$I$!A!))+ I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$E)H$I$!^^I$I$$!!I !/  !@H$I$!,U! I$I$d!d  @ !@p` I! /%I$I$d!d I$I$d!d $H$!p\x$I$!I$I$!I$I!?I$I$E)@$!0I$I$E)I$I$$!!5I$I$$!!I$I$e)I$I$e)H!I$I$E)$H$!zI$I$$!!I$I$!Uյ !+ !I$I$d!d I$I$e)I$I$$!!**I$I$e)$!` !% I$I$$!!- I$I$$!!VI$I$d!d I$I$$!!%  1H$I$$!  $!@I$I$$!!I$I$e)I$I$e)I e)$@$$!  $!I$I$$!BI$I$$!BI !/ $I$C&$!p$$!I$I$e)I$I$e)@$$!b0I$I$$!!I$I$$!!hXWW!$H$!pXVI$I$II!b7 I$I$E)I$I$E)I$I$e)I$I$e)H!$I$I$e)I$I$e)I$I$e)I$I$e)I$I$e) ! @$H$!b`X\WI$I$ I$I$* I$I$A I0I$$!b_I$I$ A  me)Am۶8E)1 ?M۶mۢE)!$I$E)!~ ύ9! %) m|9uacu۴1.$Cm1j ۶cf1j}I$Ik%)UUU J*@$1 ʀINNUդPI#I ҹ*;-ZlӲNjZmfբ Ҫ:M$I"O ɪJꪚZ~m Kpk-kZ`-*ҩjO ҁU-q[.*P$)$I @\4I"H*Lmi۶-ڶ k5zu.kϿ`IdJҪcٖmoJҩ"\%IЊMJҷ訃\Jjzz?NTwTuZ$H"y6JҊi_$QmQj*?ts_[UUehf JʛUj-*=m_mU6|Ƕm-)hc<'kUQUUhJ$H$j!TTTT!$I%)!UU]Y$B2 0E)An E) dEUeM͔ E1!  k faEA ?q%Q% `qEQ__ S?kfaE9__zK K$9ƾI$ $%)bp%)hp`JX ;h-ȹr?4 IPHovk *tZ+~LJʕ`c߶mjJm-.*pI0I$ UaUW}? I$E *ZpMڶM/NJnPmK˶ J?Pɒ H)ʢm?-\UFdH3ɲ*P4$*ʮtUUw?UQMWodH ʨWV{MۖJʣ#c}۶۸ jҿp埿oEU[խwq I< UTUWrmیm _mNJ ?tmv` rsv Z0(J Hۖm ʪ:HmXm FömL ɢ*&Wmm۶ ҪɪcI1.Jګ\}NJ' $I$c f6- JڿW$S$x2 jk2l6neY@I$X-J%)UVP@9!sivme)!*}A B 9 ?q9!%)!j[mR5f1zb6n9 }?9>mvLE)6l6mE)!EUg_81aI$H b II%)bAI$9N7wEI +-X"0:EY%)X` I$I$%A$!UUUTI$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1II1$C$ E)!hI$I$$!!^\A$I$$!! I$I$$!!?ХM$E)b0W؆mݖbE) I$I$1I$I$1I$I$1I$I$1I$I$E)$! E)! I$I$E)! E)@I$IE)bU&H$A E)!I$I$1I$I$E)$!I$I$1I$I$1I$I$1@$A$E)!I$I$1E)!zzI$I$  I%) +-I$I$E)$!I$I$E)$!**H$@$1I$I$1II$1I$I$1I$I$E)$! E)! H$H$E)!I$H$E)!UWV^I$I$E) E)! E)! I$I$E)!I$I$E)! **I$I$1I$I$1I$I$1&E) jXx! E) 5-I$I$E)$!H$@$E)!^^ZzII$E)!UI$I$E)$! *I$I$1I$I$E)$! E)!)(I$I$)(Ke`E)TII$E)!***H$H$1 $1H$H$E)!VV^UI$I$d!d II$E)!A$A E)!0E)`I $!+IdE) ?@$I$1E)$!IE)5I$I$E)!*I$I$1I$I$E)$!H$H$e)!A E)! IE)!//I$I$1I$I1I$I$1)(I$I$)( E)@ldE) 5 I)(I$I$)(I$H$1@  E)!I$H$E)!WVVV$!$$@E)!----H$H$1H$LE)bTUVbE) I$I$E)$!)(زmlE)I$LE)U׾%) E)! I$I$1H$I$1I$I$1I$H$E)! Ie) -E)@H$I$E)bTWU)E) -$ )(I )(I$I$1 I$I$1 I$I$1 @&M$E)0_^00E) I$I$1 I$I$)(@$@ E) I$I$$!!`PpI$I$d!d I$I$$!!5=$!E)! +/H)(I$I$)(I$I$)(@$@$1 I1I$I$1 I$I$)(@  )(II$1$)()($H&E)bp\XɐbE) I$H$E)!_~zI$I$$!! I$IH!UUH$!I$I$PH$C$ X8j ID i8 }.W %X }. fi+ +DE+ /$  8e1p-'I$e)p\UUI$I$1"e)E)J*I$%E)aּ Vle)!I$I$1"I$I$e)E)ࠀ Ie)%) **I @!@$I$1"۶me)!H$I$!A`!`If1 $I&d&e)E)Z\XH$H$E)!^^^^I$I$E)! E)! )$@!e)E) dB&$2e)E)\XppII$1 E)!I$MvE)a׾(ݰme)!I$I$e)E) I$e)E) @$$1"I$I$1"I$@$e)E)I$I$e)E)???/I$H$e)E)I$I$e)E) @!H$H$e)E)VVV\! IE)r@`8**}EP +# w>i1MEy1I$DZEUU4I$&DZEUU*44I$I$%4/h&P DZǩ4/I$m DZǩ43A$%3-kXDZǩ3-ImDZ/?/H$I$ETWUU! I$I$d!d I$I$d!d I$I$E)aI$I$d!d I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d !!I$I$d!d H$I$!AI! % I$I$d!d I$I$E)I$I$E)a@$H$!I$I$TTWUI$I$!AI$I$!I$I$! !** I$I$d!d !I!/I$I$E)aI$I$E)I$H$!A ! I$I$E)I$IH!UUH1I PH**  ɛ7qP+r fP+* -qN E+ 3)qJ@ - 410DZ 41%4[E`/m&H$ ZZTUI$I$!_WI$I$I$I$!$A$!  !****I$I$d!d I$I$E)I$I$d!d I$!b V!I!I$I$e)@$H$!bp\\p !b I$I$d!d I$I$E)H$@ !b\XpI$I$!I$I$ I$I!=I$I$E)I$I$E)I$I$E)I$I$E)@$! !I$I$d!d $!b@I$!b /I$I$E)I$I$E)I$I$E)I$I$E)H$I$!I$I$I$I!z !I$I$d!d I$I$d!d I$I$d!d  !@@I$I$a ?.!I$I$e)H$I$!bWWI$I$a I! %5   !I$I$I$I$$!B ! I$I$E)I$I$d!d I$I$E)aI$I$E) @$!x !b -I$I$E)I$I$E)!! $!jI$I$!AI$I!յI$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d  $!I$I$$!BI$I$>*!I$I$E)I!(I$I$d!d I$I$d!d !I!-I$I$E)@$!@ ! I$H$!I$I$$!BI !/  !@I$I$TUUU!I$I$e)I$I$e)I$I$e)I$I$e)I$I$E) !I$I$ I$I$$!!I$I!  !I$I$,WW!I$I$e)I$I$$!!* I$I$$!!I$I$$!!XVVW !I$!bI$I$E)I$I$d!d II$!! @$H$$! I$I$$!!* @$H$$!b`XXp I! I$I$$! I$I$e)  1 IdB&!@$I$!I$I$$!BI$I!?/I$I$!!* L$`0$!b\X` $!a I$I$e)I$I$e)I$H!bWV !$ !`@I$I$b&&I$I$TWUUI$I!UU5!+*I$I$E)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e) !I$!b!@$H$!`XTVI$I$AXI$I$*I$I$ AI$I$b++ $IE)IҤi۠%)ovl1!*m׆׆1?1AJf1j۶c1j" ?9!?@%)Î1b.?ߦ1!! If1I$I J%!UUymضmI-_mmJڪ*kcm-jZڴm۶nJhmeڶJڪ(_i[ڶ)ҩhm]n`-kp$E$ khmöoJPH!i )҈pvm ?t9NkJ$ɓ ɪkm۶ .k $I'-EUU]U/6-)ʂ*jO%I$) @\ɒ]Jҷ\mlJ£c-ѵjӶk*|RMqoo*>}WMmۮj,t?_TUW KviJ:1,E$I⨹*Rھm-*ѤFEX튶 )ʓ\?-*e?kTUUUhH'h&J!\\XPc6mE) ?1 jI$I$ ! ɐLe9//-%N1SfieI----m yi +#) yizz99fieIzzxxr&Z5e9 I$$!* ɓ9bOwmIbJ( Onk*?hC! "I *jOmvm )߈R-[m\Jp6R ȹ 0Rm#N*OD X$ ˆ_A׶m۪JʡkM IwHA  MmG[ *jeC-ٶJ*wֶhڋگ}_@!!IJB(Cpzm *cm~vi#.jO`mnJ+jh k\k۶NJrw1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$1H$I 1H$@ E)!^^xI$I$$!!5WI$I$$!!I$@!bV m۶mE) I$H$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)!*H$E)!I$I$1E)!$H$E)! *+I$I$E)!I$I$1I$I$1I$I$1I$I$1II1I$I$E)!I$I$1L$`$%)x訠I$I$ %+ @E)!I$I$1 E)! I$I$1I$I$1I$@$1I$I$E)$!II$E)! **@$@ E)!H$@ E)!^ZzjI$I$E)aII$$!!%IIE)! ***H$@$E)! E) *I$I$1I$I$1I$I$1I$I$E)!E)!I$I$1 E)!jjI$I$E)E)!*+I$I$1I$I$E)!uk$E)b V$A$E)! $I$1I$I$1I$I$1@  10@ E)`` I!I$I$E)I$I$d!d $H$E)! I$I$1$$IE)!ꠠ E)!7**I$I$1I$I$1I$I$1I$I$E)$!I$I$E)! I$I$E)$! @&%)b`X$@!%) )I$I$E)!I$I$E)! I$1I$I$1 I1I$I$1 @4E)p`IIbE)b+ I$I$1I$I$)(H$@$1 )(H$@$E)!V^ZZ@$I$!bVW$ E)*+/-A$A$1@E)$! **II$1I$H$1 1@$H$1I$I$E)!H$I$E)$! IE)! *I$H$1A$A 1I$I$1H$@$e)!II$E)!۲m۶ E) @I$k E)UVE)  1 I$I$1I$I$e)E)I$I$e)E)*I$I$e)E)X E) e)E)I$I$1 I$I$)()(H$H$E)!~z~I$I$d!d I$I$d!d  E)!///)()(I$I$)(  )(I$I$1I$I$1 I$I$)( )(I$I$1@ )( )(@E)`!E)! dB&`&E)!XXxXIH!UI$I$!`A@$H8P1`H+ .W qP+ }. f`* . [fi+ X/ %GN%y -p$e)\WH$O$aE)TUUU4h$E)ax^DIE)b I$I$e)E) Ie)E) $H$@!I$I$1"I$I$e)E)II$e)E)****@$I$1"I$I$e)E) I$I$e)E)hm؆mE) $A!e)E)  `$Ie)E)Pd&`B&E)!XxxxI$I$E)  E)!%%$A$e)E)?? 02e)E)ppp`I$I$1I$I$e)E)I$I$e)E)*I$I$e)E)*I$I$e)E)I$Ie)E) I$I$1"I$I$1"I$I$e)E)I$I$e)E)+@$I$e)E)$I"Ie)@HIe)a,U  E)! e)E)%%5 Rb"&Y8 *LE@*+-) -`N%ykk+3 Ey4/IҶDZǩ4/i DZǩ+ 4/m&m"!DZǩ4/)iDZǩ 41 Id%4/&j&DZǩ4/iDZǩ 4 DZ @@I$I$  I$I$E) @$!ap !a 'I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)@!p ! I$I$d!d $ !I$I!H$I$!zI$I$!AI$I$UՕI$I$!I$I$!!I$I$E)I$I$E)I$I$E)I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$IH!UUU H I$IPH* IqiP/wiwɕEH+5=)qR E+ 1%)W@+ 41ɐ 0DZ** 44I$I$%44I$I$%4 @$DZ @@PT I$!I$I$I$I$!]_VVI$I$!@$I$!! I$I$d!d I$I$d!d !I$H!UV8!I$I$e)I$I$e)!@I$I$d!d I$I$d!d I$I$E)I$I$E)H$I$!^_I$I$pSXII!55$@$!@PT ! %I$I$E)I$I$E)I$H$!b^W\ ! I$I$d!d @ !pI !5I$I$d!d I$I$E)I$I$E) $!I$I$$!BI$I$ ! I$I$E)I$I$d!d @$H$!b`X`I!b 5 I$I$d!d H!$I$I$e)I$I$d!d @!!!$@$!I$I$$!BI$I$!I$I$E)I$I$E)I$I$d!d I$I$E)aI$I$d!d H$!XpI!% I$I$E)I$I$d!d I$I$E)I$I$E)@$@$!zZZ^I$I$!AI $!I$I$E)I$I$d!d $!u !bI$I$e)!I$I$e)I$I$d!d I$I$E)I$I$E)@$H$!z^VI$I$II!/I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$d!d I$@! $!I$I$$!bI$I$$!b!@ !`I !$!@P!b I$I$$!!I$I$$!!I$I$d!d I$I$E)@$H$!@I$I$bUI$I$-?  !++ !bI$!׿I$I$e)I$I$$!!*@$I$!0!I$I$E)!@I$H!U,!I$I$!!?+ 1I$I$$!!I$I$$!! $!@$! I$I$$! H$$!bTUH$$!bH$ !I$I !I$I$$!B ! I$! @$H$e)$$!bpI$!b %I$I$e)I$I$$!!hI$I$E)a !* I$I$!VVUUI$I$!AI!- I$I$E)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)!@I$H!U( @$!@PPI$I$AhI$I$ hI$I$AII$!9 $$e)I$%)j+ڶi۶e)A C HE)nmڶhڮe)}Idž1=m§9mѸme)* -.9!~5 9$F ªz }1$I uڨ(#I<-g.Ahm ¼r?۶۰L*&DB&d:j!Ppph þ9I$I$E)aI$q$E)!DJDE)=9$E)| A$$9E)QUEVca߆1j**II$)U5 1m[Nf w ۶c ZvۦaoJ_;m۶Nj7hm.ESJڪJbP˰mm &Wێ ۏ*Z%Ir*ҫƚRiۆy*&3$Iri⇹@J,@<ɒ ʪ\q\۰*O!I$ّ ɩm'N$ڨC$ْC `Ā $I$NEUUUkl; k=R#kY hci۶m je۶qI0jҪbRڶnbN*ߏtI$L$-UVUrq4I$ of5QWmNJhNT]iUF-6[ )pC@k'?ڋUTEW9$$IȹOhڶm֫)˜6$9Iȹ*M[mK)?Cs- >߀B-[-j1@@@mڤEE)I $1!UEUH $!0 $I$1 fYE1---- qfa----  yEY`` iEQ X5PfI`I$I%)b(H$A$%)bj`IIj 55`1@pjȱBw?yl9i蹺Amm[)Uo *4F˴۶ȹpJö-n)¢jHmێm-)Mi{a *?eڋUUTUC۵mۏ ?9Iȍȹ9$Q 9*#H ٶmB*¤=.lۭN 3۸mPgȹ*3َm ㇱAذmݦ(\-J߅WI$Jʹ*pI$I(VUez`6oFjʪM$$C *jOBɮ)JwH`@ € }A%IP)0C` I$IJҦr?~Q\ IHJHK$ ح`mA۶-jD$I0d[ ɪb\$C Jj`dGb*JҺ(\۶-ضm*ҪjMڢ-ݶn*hmۆ.k`IJzUEn[nJs_`#E~JX(IdI$ĀIlNj/ߗm`*pRC3ِ *k*Wa;oJ==$Ly-*Pm۶uZ ʪ_$9IJp `i۶S-kk\ٹmCJҙc8$c2JҊjkO$IdH ʪʚA%)!-Pmh ꩨ\öm۲mJʢjZmNJ|R˸۶)ʦt?83!II 㧹Pm2m JnPv9N*ʯscشijʢ8 Jشm#e (D$I!HD$) ª68; )$I2ȹjMEвiۖ *Cmvڦ蹪*zH%A$ɇ)*CJa˗)h1$IB$Ijʨw;$1$ ȹj`ʨ$$I$!&!I$0E)**nNb'f1ό I$5%9 fQ$ ++) 1SqfY++-- yEY` qEQ #:9fYE1xxxxI$Ib1 I8q$9b=WIdIJ+۶mJ~%زmV҇h1mHȱꨆw_Lb74jΪHmpZ-)4-ڶmӖjcɛ&Ab'ڋ]QUM4lb *+m[mӶ gj9-mۊ鹊k=x Rni JͿ}7يiq騪RNJ½Omm-*?AD$C蹒jw3$IUJȹ_mӶaJ?Rm݂e֦ JϛߕZMѶ J7p_@jrZ-@ J 2@Jm۶- Šjr $ $ UEUeq-j?=C I ȹz:W+ٶr jq:P% I$IPHm6e `H+{6EX/+& yrT %y+ / 1eND*3-aݰDZ 4/iDZ41ɐ$I%%4$DZ!@PI$H!bUV  !bI$H$!   $!I$I$!I$I$! !I$@!!I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$E) !I$I$(*I$I$! ! ! !I$I$!bU׿?!I$I$d!d I$I$d!d I$I$d!d I$I$E) !* I$!a(!I$I$E)@$H$!xxI$I$ I$I!?I$I$E)I$I$E)H$!(!I$I$d!d I$I$e)I$I$e)I$I$e)@ !X!I$I$E) !H$I$!I$I$$!BI !/+ I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d  @ ! I!I$I$E)I$I$d!d I$I$E) @$!jI$I$!AI$I$!Օ!I$I$d!d I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)I$I$E)@$@$!I$I$I$I$!I$I$E)I$I$E)I$I$E)I$I$e)I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$d!d   !I$I$ I$I$ ! I$I$d!d I$I$d!d I$I$d!d  !!I$I$e)I$I$d!d I$I$E)$@$!I$I$ꨠI$I!UշI$I$E)I$I$E)aI$I$e)I$I$e)I$I$e)I$I$$!!I$I$$!!XZVUI$I$E)I$I$$!! I$I$d!d I$I$e)II$!!@$H$$! I$I$e)I$I$$!!**I$I$e)I$I$e)I$Ie) $1 !I$I$$!b !I!*@$H$!bPTP@$!I$I$e)I$I$e)I$I$$! I$I$d!d I$I$E)a !hI$I$!VUUUI$I$UU !I$I$E)aI$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)H$! !  ! @H$I$(A~I$I$A8I$I$!+*I$I$A* I$I$!Aj(I %)j H$A$9!TUQU 9i4E))* ۶kwf1*nEf1M?mۦ1!~ s9  sB{mUm61*j\O'IE!W]%dp,I8 A!I%H ɩRj۲)V )Ҩ pmùm-kpm k=I$I$pر.kםW۶ضm*Ҫ横\m׶.jZA[moJ?۶mƖm-r!Ɂ$I߸O $K- ʦ걀$ $ UUEUkmm۶ `J=?C jz'I$U?,I8*e$I jҪH$H&IZiµ} Jϡc0l۶c j`I֭]jʥꎨP-Զז JpI$ UeUA[o :w\#II6Jʪj1۶ aȹ*ȉk7 ȹhC I @RmhlJA~/6 w36.hMȱj*p(ڶe ʨ+Af۶UQ)3 A$v'eQ!YU^\mmۆ1!UUaUd&DE)=I$H*1K N)RfI!)--- RqfQ//6lۖmyq 1X5qfapxxx #XfYE1xxxxI$K$E)* A$1ϟ$a7r69leȱP-ju_eMP )cȟ$I.ۋTUUՃhɕɟҋʕUUDlM۶)ZmкҊc ӊ`ۄݪ jϫ6_X$gMȱ2JEmJlFIÝ jp((Mɋʧ z9ۦm[蹪; ȓ$iȹRmmj J?Uwo)JmێmN)_6J/$I$Bڧ Pi J=t`r6Ij8M0IH  ! H I$E)I$H$%)? P ReQ$! ) ?4EY$)\Pp` 1`$I$$!b VW@!$!I$I$1 $!!I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$E)$!**H$@ E)\XpI !b- I$I$E)I$I$E)a E)! +-L$`0%)\\x E) 0E)`@ E) /I$I$1I$I$1I$I$E)$! IH$E)!H$H$E)! E)! ///I$I$E)!I$I$1 E) @@I$IE)b(E)!I$I$E)$!H$H$E)$!E)$!ꫫL$L&$! I$$!/??I$I$1I$I$1I$I$1I$I$10E)``I$I%)b'7I$I$1 E)! E)$!L$H$$!I$I$E)a@$E)!I$I$E)!I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$! 1I$I$1I$I$E)$!H%)$!I$I$1e)!jI$ %)b(E)! ***I$I$1I$I$1I$I$1I$I$E)$!K&[%)bxx !I%) I$ E)!}}kI$I$E)I$I$$!!UUUE)! ++E)!زm6lE)!hI@%))I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1@$ E)!zzI $!!  II$E)!?I$I$1I$I$1I$I$E)$!C5E)p`II@E)bյ/ mضmE)  E)!@ ݐE))I$I$1I$I$E)$!A$A$E)$!d$d&$!I$I$!jI$IE)7 I$I$E)$!I$I$E)$!E)! $%)`$I$E)b /I$I$1I$I$1I%)(I$I$E)$!I$I$1 E)$!L$E)(E)!I$I$E)$! *I$I$1@$A$1I$I1I$I$1 )(I$I$)(@E)`ItlE)b%+ )( $)(I )(I$I$1`&`B2E)!I$I$$!!UUV\I$I$E)I$I$$!! -A$I$E)$! I$I$1I$I$HE)UUUI$I$HE)I$I$PHI IPH* mnWaP . %X+} fi+(yr E/*6M )EQ@+UU@$@ E)!zz$A$$!b6,[$E)apXɐE)a % e)E)**jI$I$e)E) )(e)E) /=5I$I$e)E)I$I$1 I$I$e)E)ࢪI$I$1 I$I$1 I$I$e)E)* I$I$e)E)I$I$1 e)E)%%%I$H$e)E) ,زE)!```j !* E)! Ie)$! ** h$@ E)bX\p %)A I$I$1  @$)()(H$@ )($CE)!`)m۶me)!  ۶me)!@I$I$e)E) )(I$I$e)E)I$I$e)E)E)!@InmE)%  e)E)5II$XE1 )7q7%yX----% fnfni 1 J %y 4+{w DZ4-IIDZ410l%4/ 5DZǩ4" )DZJI$H0I$I$E)I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d !@H$I$!X;Kd@ ȹ_>? Jkɂ$I$-eTUU;Ȓ I蹂Jnm 6J|wM۰y[v)*w=۰mòm*b`;yr,kUuU͈3$Cmȱj**=۶ - *jhZ$ND ۋPU7` ۋQUUUmJٴ]M*!0Jc۶] )Fh6m] )<`x'`&)!\XPPII&f1!UU$$C!INf1} ȔLe9/#$/` wfiEA/+0?yEQ `#'yEQ_ZRc;fiEAzxzJ"&`%e9|$N e1N  %)Aj*hjIJ( AI I鹢};@nl.,ٶmuȱ mNI$ҋԕ?!CI&btJ)PGbJ¢)?۶l܆m 鹪9'oضL 蹺&`-Ҷ}۵jJO;gvl )ꞪzrI$ҬUXP߸mۏJrZdjªR$A IJ*?-޶gƎ)O߱D-ӢeڹMIoڲ\}߬Sj}Oۥm)¢*ANmۆmN wO޶N)«*_? JkI$C$.UURU;6m۶ 蹦*PdF$A)š*H$LI)ªH$1$ *pI$NUQeQe-6- jʪꊨDmۏ GmOÎmڋP$IH2)ʪjr ۶wNeEURy۶p۶ ʭr-k}<.C4I2M@"H۲۶a @D- Y P$I$I Ҫmvcنm-jocITJڦccmNJ?Z$E$Cr**jkmFmkCDɑY``I$I$)%)UUUT 99!ӾI$ɐE)! }yL1I$I1E)UUU #9 O%)A@ E) mێmE) *$I2I!@?9s$2 2%)I$IR$%)bII&E).j 9teI! )- b20Aea%)Xb I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1 %)@!E) %I$I$E)$!I$I$1I$I$E)$! **E)$!訪I$I$$!!VT\PI$I$E)I$I$E)E)!I$I$1I$I$1I$I$1I$I$1$%)@pI%) % E)!ꪂI$I$e)I$H$e)E)! I$I$1I$I$1I$I$1I$I$E)$! %)@I$%),UI$I$$!  E)!z~I$I$!! $!  I$I$1I$I$E)!***I$I$1I$I$1I$I$1I$I$1H$%),LE)VI$H$E)!~~I$I$E)a I$! * E)!*+ E)!$A2d$$!b`X`&I%)Ps=5I%)bI$I$1@ E)!IIE)!I$I$E)$!I$I$1I$I$1 $%)@pI$I!bUE)!I$I$E)$!I$I$1I$I$1I$I$E)$!II$E)!***I$I$E)$!I$I$E)$! H$H$$!!TTTPI$I$E)a IE)!I$I$E)$!I$I$E)$!*I$I$1I$I$1I$I$E)$!I$I$E)$! E) L$E)VUE)I$I$E)$!I$I$$!!((I$I$$!!e) I$I$1I$I$E)$!I$I$E)!***H$E)bX`$E)8VI$I$1I$I$E)$!I$I$1I$I$E)$!I$IE)! ***0E)!ZzxxI$I$E)a! E) H$A$E)!I$I$E)$!I$I$1I$I$E)!I$I$E)$! E)I$I$1I$I$E)!I$I$1I$I$1I$I$1&L$E)bXVX E) I$I$E)$!I$I$E)$! I$I$1I$I$1 $I2E)!$A$E)$! */ @,E) @P` IlE)?  E)!L$E)8ضm E) 6,C,E)b` IE)b55 E)!ꠀI$I$$!!ZxppI$I$E)I$IH!UUUH$!I$I$PHI IPH* mnWaP .W%X+} fi+)r4E+ -$  E1@/$I$E)@PUU@$E)!x $@E)!- @$H$1 I$1I$I$E)$!I$I$E)$! **I$I$1I$I$1M 0E)@$@ E)!I$I$E) E)!ɉ$! $@!E)! I$I$1  E)!h@E)!X,E)`I E)b-+I$I$e)E)I$I$e)E)X4@4E)p``IdI$E)a/7I$I$e)E)I$I$e)E)* I$I$e)E)H$@$1 e)E)5X&E)ax@!E) )!IIE)!II$E)! I$I$e)E)‚I$I$E)$! E)!@$)( )(  )(II1I$I$e)E) I$I$e)E)I$I$e)E)I$I$1I$I$1 I$I$1 I$I$e)E)?`B&$C2e)$!I$I$E)$!****(A):HE)%% vi8* P ߆P+*, 0ߧ%q 4&iFI$I$hI$I$h)$I$E UUU,:: `jjj! I$I$E)$H$!ap ! 5I$I$E)I$I$d!d I$I$e)I$I$$!!|I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)a@$H$!-I$UU/I$U//(3/"3@W-3f,~ If_(IEW! : `%q_z , fiWk?E`WTOR%yXU. Eaտ# 1wSD %q-+ -08$E* Z4$IE 41ö$K%%43$%41Km%4@DZ!P1I$H!UT I$I)f!UUU@I$I$d!d H$@$!   !I$I$ *I$H$!II!@ $!! I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d I$I$d!d I$I$E)  !I$I$!W޺I$I$ xxX I$!b %5I$I$E)H$@! ! + I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$E)@$@$!I$ !I$I$!I$I$E)I$I$d!d I$I$d!d I$I$d!d $@ !@``I$I!bՕ5-I$I$e)I$I$e)I$I$d!d I$I$e)I$I$E)I$H$!bWVؠI$I$I$I$$!B ! I$I$E)I$I$d!d I$I$E)aI$I$E)I$I$d!d I$I$d!d I$I$E)  !ꠀI$I!?.@ !b`I$I$!bI$I$II!7+**I$I$E)$H$!X! I$H!bUV  !H$I$!bX_WI!% I$I$E)I$I$E)I$I$E)H$H$$!I$I$II!//I!&I$I$E)aI$I$E)!8I$I$$!!+I$I$e)I$I$E)I$I$d!d I$I$E)@$@$!I$I$ II!??/I$I$d!d I$I$e)!I$I$$!!***I$I$$!!I$I$$!!**$@ !p`I$I!b-I$H !VI$I$I$I$ I !++ I$I$E)I$I$E)I$I$e)I$I$d!d I$H$!bUV!I$I$E)I$I$$!!)+ I$I$$!! $A$$!!I$I$!!?.  $$!I$I$e)I$I$$!!z I$I$$!!**I$I$$!!I$I$$!! $e) $! H$I$!A$H$!I !* II$! @$H$e)I$I$e)I$I$e)@$$! $I$!bx^^ !  @$!pI$I$$!!I$I!UՕ5!I$I$E)I$I$e)I$I$e)@ !p ! I$I$e)I$I$e)I$I$e)I$I$e) @$!`PI$I$ AxZI$I$A?I$I$ꭊ+I$I$!=J$HPE)h ڶmE) ILH!Av`۶c%)a"hI$I؆1$!UQ %)A0@%) $I$e)!@E) k׶ǧ9AIIH$)Umi6-ږ kϿwa۱}?eۥNJ{zPj˶uNJ>zNUW\!$I*ҩ*_JAm6nQ.ɪj+cpl߱]ojޫ'O$ YUuQI$I$UO" ⪨4Fm -w <1lv-뇹w {F:6n)¿}R}n)O N96)ƪjMmۮ[-JUl{io)�?Hm4 h.`Z[-ڴjs_mӶFj9$IdH ȹwy$I8]Uq_mʼjҷֱUA˷ )ʡ.em[i۪kҺkv|-k߽_[ mJҚ*UVm-)(*z.kI$OUUUFۼmˆU ꪦRdْ *ҺWU6-ڶ)ҢjIA$UQV?ܶ-ȱmɪjF$j Mɩ M$#!$!V\p@۶![mE)Aۂ۶mE)@mm1 m9«)-f171!k E) jmҢmE)ڊ$Id@E):۶af1!*a۶mf1=I$Q$E)AI$a%)a"*SIeA -% 3 ea$)r I$L$%1$!I$I$e)I$I$$!!!bI$I$e)@ $!bpI!A$!b5 I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$E)$! ** E)!I$I$$!!UUTTI$I$$!!ame$A$$!**E)$!**E)!jI$ E)(E)!L$E) VW@%) I$I$E)!**@$@ E)!I$I$$!! **I$I$$!! ** E)!ƒI$I$e)E)!I$I$1I$I$1I$I$E)$!@$ E)!zI@$!b.T@  $!`I$I$!@$E)!I1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$E)! *E)!@$@ $!I$I$E(C! $! I$I$E)$! H$@$E)!E)!I$I$E)$!I$I$1I$I$E)$!I$H$E)$!E)!I$I$1I$I$E)!*** E)!ꪪLȄ$ %)!UվE)!H$%)b\p E)b I$I$1E)!I$I$1I$I$E)$!I$I$E)$!@  E)!xhhhI$I$E)a!***E)!I$I$1I$I$E)!E)!I$I$E)$!I$I$1I$I$1IH$e)AL$E) VU@E) @$@$E)!zZI$I$$!! IE)!I$I$E)$!I$I$1I$I$1I$I$E)! E)$! %)bI$I$E)$!I$I$E)$! I$I$1I$I$E)$! C2$CE)!I$H$!I$I$E(CE)! +I$I$1I$I$E)$!I$I$E)$!I$I$1@E) I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$E)$!@$ E)!I$I$E)$!***I$I$1I$H$1I$I$1I$I$1$)()(I$I$)(I$H$1I$ 1 $H$1I$I$1I$I$HE)UUUHH$!I$I$!`AI IPH* mnWaP .W%X+} fi+)r4E+ /$ ,$)@-%K$%)@PTUI$I$E)$!I$I$1I$I$1I$I$E)$!II$E)$! **I$@$E) I$I$E)$! H$I$E)$!I$I$E)$!I$I$1I$I$1II1 E)! 2 E)!^VV^$$AE)!555I$H$$!!ָx! E)!+//-I$I$1  )()()(H$I$1e)E) I$I$1 I$I$1 @ )()( 4E)` I$E)b 5  e)$!I$I$1I$I e)E)*‚H$I$E)!H$H$E)!VVVVI$I$E)I$I$E)!*** e)E) H$H$E)!IIE)! ME)a޸ IE)!I )( E)pI E)5I$I$1 I$I$)(H$H$1 )(I$I$)(I$I$)($C0$C2e)E)bBcbI$I$E)$!!!IE)55IXH+//mREP +, TNi *3I"4IEU31%3/$C2DZǩ3/ IDZǩ3`&`&ǹ(XXXX!I$I$d!d I$I$e)I$I$E)I$I$e)I$I$d!d I$I$$!!* !@LH$I$!A.!I$I$e)I$I$$!!XI$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$E)I$I$E)aH$@$!jjjzI$I$!AI$I$!A  !I$I$E)aI$I!A!$I$fy!9UUU/I$ UU16`䧱 ?1 䧱EY1IEy%1+NҶW1+۶ 4-1iRDDZ 43 DZ 44I$I$%4/h@DZǩ4-mېDZǩ4/I$I$DZǩ/4/RHi$ǩ1)#6 ^z`+3"Ezz_EP\| q@W߿ m2&p`8ZIH$ H UjI$H8UUP  !I$!I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d @$H$!I$I$!I$I$!I$I$d!d I$I$E)aI$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$ A$H$!I !/ I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$E)@$H$!I$I$** I$I$!*I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E)H$I$!^WW_I$I$$!!!+ + I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$$!!JzzI$I$E)I$I$d!d $@$!I$I$I$I$!! I$I$E)I$I$E)I$I$d!d H!I$I$e)I$I$d!d !I!** $!I$I$!I$I$!!I$I$d!d I$I$E)! I$I$$!!I$I$e)I$I$e)I$I$E)I$I$E)H$H$!I$I$b@I$I$!bU!I$I$E)I$I$e)I$I$e)I$I$$!!I$I$e)I$I$E)I$I$$!!)+I$I$$!!ࠨI$I$$!! I$I$$!!**   1I$I$$! I$I$$!!I$I$e)I$I$$!!I$I$e)I$I$$!!H$I$$!! *@$I$! !`!  I$I$$!!  $!$! /I$I$e)I$I$$! I$I$d!d I$I$E)a $! I$I$I$I!յ=!I$I$E)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)@$H$!xPI$I$A|I$I$ I$I$ A˿I$I$!+I&H4E)Ajj@!  29!UiU۱me)ꨩ!I$AE)e۶-%)@6L߱چ1 9 ?E׶Mڶf1 y9! lm$) D=Ip Z$I0*c$DJڊ_MNJgR&ɒxH)ҫrm]J?} _NUUT}?;NocMxV*Ҧ*W}m*?tm۶ܗ͟?}r~3em#lNjOo}_BIJ z\@DJ06ۆl۶m ȹDZo šJ$IB#I2 ª jtUC+J0DW۶h6jʺ~OI!I)²6۲Oȹjj,Rc߶mc *Wжm6J}WIn.J¢+JR&m[0 J?Wmij˦۰m-ۇ*W;Mnj}DMm-)*RI=!J.O]NJ߻};$IHc:-jxFHHr J,,ڶ FCI Hd+dC jFh۶e[*wP#1")j!@@@@m[4mve)s!H$I$ a ItI$E)=4 fYE1+--- ` qfa-- yEY@@XOqEQxZXeA`I$I$ jAI%)A-I|I!%%55e?.`* Bte ҋeU}U;iJm[ Om;mN*J5])®)M]4Ñ*ڣnHm۴Eݶ 鹪⪨MY6-ڶ )©jC-п- pe?jmaێi ۋwq ienJ_c!I$KJҩ_Kmۖj_;n*Z(۶mZJʨZ}Ogm *3K ȹJw\!Ib IJʩ On۶ *MMk_mS J~tZ۸rJʪb;lˮMQ. 77$Arm*jJIP )&Zl۱]nj?Roۥ-ڶ-jϿ}FR$ J Umk۵Nj?`۲mmkj`ڶlK2jʈj3 ɕ#I-ۧ1.GLI ۧAMmӢN)·ϡPn۵-JoP??n MFlӶm; )z"!,j0@@!Iɐ!  !N$Kf1_IDI1== R1wfYE1---- p qfY +/  yEY@@IqEQ X5ZfQhhhIIde)?I@'I,f1??MIId 5hZm]mJ*WN)˿wA۶ma _}-J?Pm[b J};m۴h۵ 蹪}RK0EJª*t ۫Օ66ܶm-ȱ*h-vl-߿U$$KJªM$Ȇ$I )Šme[mګ\m4lJ­.\eSJj zO$!$ ۬WUIT\II$H$1H!"1?s1}dȄ!I$!b08ݶ-mE)( A%)(  #9N$&$ e) Yjmʶme)* I$1k-۶mK\s۶.J?Dg I ɡO$I-UU՗\m*ҦJR$I$Ȭ ʪ\mѶoNJ?}e I$nJҦpHܬkpK"C ~F$Sd j直m]QU=d$I.j*e>JxzN$xNU\WF#O2 ŠjjcϿNJ?}4"I$Iȹ@Uont J?\mJ?習H$I!H ªe?jkP)@0($I"L ۇJʪ?DɲC zFK$E2)*j9$lmꤋ=m벏)%~_$IH2ҋ>M$E'ɐ )*=I#-豺R߰e6mJ)ri1l ۫ʿz\@ j@WcvhۏJ?O۶ `Jª*P1l[Jj,u۶m ۧH%KrdH *}ZlElKƫJ*ڒ;!8ҤK蹉AmE )U-jUUu#I$N䅙!UWWmme)A.v'FbE)鲪O'O$Ba )RfQ!-/-- pqfY)--- yq 1 ̆qfap`` :5fYE1xxxxII01N$ $E)Aʪv`qeIAmmڶ Jnaf )?׈Pm۶+JޫUm0k-J߈H IL Z!I$IJ© k-ۋtȟҫʨcoM ۋzRJ0 J$K7A2 +jRomۦNjk~nkF۶mȶ `mNj7PIcJ¢&PmZm۶NjH6lٶm zI80NUtYeP)ڶmnJUۖ-JA@Um6h۶-je4@V$R Ӌ?zD$IʄJJ&˶ ȩ.`o.m;-ۋWcor94m,鹨`FvھmN zF6aٸq)¬*U wl-*¿zH۶-6l ªjRmжm[ JJ{mۯ >J!lvۏ UiɶeYj?`g{sNJʳCm]lֶ ;m۶- ȹjc-ڶmۦkҊpm h6l;m.kr* &)ڮjI$A$-UUQUH ɒ&p ɨ&Ca[! ɯK?@  \ I$A*Ҧ*I4 $r?~-jW$IE Ҫ$"$I$Q@I$M$J%)UUVTaۆ1*ꦩ"9!Kmi9a DL$9%)tVU mۆ1:s8f1cFشMf1r$) jvlqlE)۪c۰cE)hI I!a$I$1^ 1wfA -C%hfa)b/ I$IQUI$I$e)I$I$e)@ $!P$!$! I$I$e) E)!I$I$1H$%)<I$I$1I$I$E)$!H$@$E)!^ZzzI$I$E)I$I$E)a E)!I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$1H$1 E)!I$I$$!!(I$I$$!!E)!$ `$$!aX@%) @$I$$!bTUT@@%)I$I$1@  E)!I$I$e) $!I$I$$!b!!$! ! $!E)!I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1E)!@$ $!I$I$ !!$! I$I$1H$H$E)! E)!I$I$E)$!I$I$1I$I$1I$I$$! E)!`$%)XP@  E)%% I$I$1&E)`x  $!?I$I$1I$I$E)$!I$I$1I$I$E)$!I$I$1I$I$E)$!E)@*0 E)![ZzxI$I$!$!***E)!`$I$%)\W\  $!b  E)!I$I$E)$!I$I$1 E)!$C&$!p %) %I$I$1H$@$E)!~ZVI$I$$!!CU E)!I$I$E)$!$E)bpI$I$!b%% I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$@E)WT!E) 0E) h`hhI$I$E(C $!+/I$I$$!bVUVT%)I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$E)$!*I$I$E)$!II$E)!** *H$@$e)$!I$I$E)$!*I$I$1I$I$1I$I$E)$!I$I$E)$!***$I$HE)UUUB$IHE)$&H8 P[mP81i`H/ɟog%yP }. fi+ )v E ( %i_-2K$E)hVUI$I$1I$I$E)$!I$@$E)!$H$!hI$I$  /$A$I&%)++ZE)  I$I$1I$I$1I$I$1@E)![۶mE)b`!E)m @E) I$I$1I$I$1I$I$1I$I$1I$1  E)!H$H!bxIIE)bI$I$!!5  E)! X&E) IHE)! )(@$)()(I$I$)(I$I$)( )(I$I1I$I$)(I$I$)(I$I$)(I$I$E)$! E)! `4E)`I$$!a.@$!@E)!  E)!@$ E)!I$I$E)$!)(I$H1I$1H$@$1 )(I$I$1 I$I$)( )(II$1 )( &E)!E)!H$I$E)!$@$@E)! :IPE) 9yWqP----"O1S%y----/# N)-41Xm6%410` %3  DZfy@@@@ I!.>.I$I$d!d  @$!`xI$!a /-I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$$!!?H$!AI$I$e)  ! I! -5I$I$d!d I$I$$!!I$I$e)I$I$d!d I$I$E)aI$I$E)aI$I$I$I$!AII!$H$! ! ** I$I$e)I$I$d!d  !bI$I!A*!I$I$d!d I$I$e)I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)H$H$!XI !I$I$ ^A$A$!dIE*UU+-aI$!* U+hnf(@$EEy$E%yhI E%ydB EEymE%y_ HEy%qz C# I%yi~ ֐@%y`W # i%qPN hiHWIb;" HX@UmӶ[mP8I$I$H!UZ 8!UUTI$I$d!d I$I$E)$@$!II!??H$I$!!I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)H$H$! $I$$!Z^I ! %I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d @$@$!I$I$!I$I$ !I$I$E)I$I$d!d I$I$E)I$I$d!d !$I$I$e)I$I$E)aI$I$d!d I$I$d!d !I$I$!^VWUI$I$p I$!b 5I$I$d!d  !I$!H+I$Y2 ɪkhm6nj-+޶h6l-? UUU?; UUuw w }`$IP$HjҪcnJwwH@ tD @W{vlnJCS$ y&$c'eڇ⺚C۶hV ¶*Jmm-*kh@$FNmN)}6-MȱjWgm^-j_Fo۴({ )?mڶUۢ- Po6mNj?WAɔ$A *_ٰm.JO 6-JiA ۵N)MmǶmo zF$ 2$9 hz71ȱjjN$H$ VVTTmvle)O+?1b$I$!A )afI!---- RieQ )-iiyq))-P--yixxxx b#PfaE9xxxxH6h$E)<I$I$f18q{f1?`H@j%UqjUU]}ReJ;?Pv.vk Jl?#YeВ蹪JHA)"Om؏Je?NjʷϚUmӾڶJj\m˶5VJªN*h6NOmm;m ۋ?eiۢnӶ ۋ}pN?hYm ۋ6H# )º Aeݶm em;a ۋ>˵wI INUEUU4$AӼ 豪wE$SUuՈpumUګe$I ۋO'$)J@zW޶-ۆj©jhrJ8 @* (Ch]i-Ir_k0ث*ʪȠhe,H\? JWmߺ+ڦJ߃Auf鹪C$$I*pM  0zJJ$@)ª\mۦh JW1Z{o-J;R-mע)ʊ*cv vm-jkEm*jҢʸ}L$I'.VU]\$ɐ$ *ҪJn]Aݶ)ڃII$oUUUF6 ۰mhm;l.j_I۶_-Jy/O$ɑ03n ɪl\qmvmNJs_6T.J7}UUh%(k)XP@Lm31j* ?9!ʂjI$A$E)$) {~\?93I$a 1%)UUYE 9밵ےm%)avje))*I۶mE)* 9!UUe a#9I I e1HI$!A(( wqwweY$)// H$P$EY$!TVXPI$I$e) $! $!5I$I$e)I$I$e)I$I$e)I$I$E)!@%)@I$L%)bU׼@%)I$I$E)$!@$@ E)!zz@$!!II$$!!%I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$H$E)!E)!I$H$E)!_W^^I$I$$!! E)!I$`E)bW\ $@E) *`%)bI$I$1@$E)!E)!I$I$e)A$ e)I$H$! $!/Id$$!$@$E) *I$I$E)$!I$I$1I$I$E)$!I$I$1I%)$!I$I$1 2 $!I$I$  $!/ E)!@ @ E)! IE)!I$I$1I$I$1I$I$1H$@$E)$! E)!I$I$1E)!+@$H$E)!E)!I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$E)!I$I$1@$ E)!xxjH$I$!I$I$E)a$@ %)b`%)$E)!  E)$!I$I$E)$!I$I$1I$I$1$$!@I%)% I$I$1 E)I$I$$!!UcI E)!I$I$E)$!I$I$E)$! E)!E)!I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$E)$!@ E)!I$I$E(CII$!????`0@%)X`!@$!I$I$1$E)! E)!I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$E)$!*I$I$E)$!I$I$E)$!*@$@$e)$!I$I$E)$!* I$I$1I$I$1I$I$E)$!I$I$H%)UUH$I$HE)I$IPH*[% P8ZZ qwi8=?k-5 EP* {s f%q- -rD E / a3&E)`X-`$I$E)XVUUI$I$1I$I$E)$!I$I$E)$!**@$H$E)!zx\^H$@!zꨨII$!%* H$I$ Ax  E) - I$I$E)$!I$I$1I$I$1I$I$1I$I$E)!I$I$1I$I$1I$I$E)$!I$I$E)$!***I$I$1I$I$E)$!I$I$1 E)!I$I$$!!U׾A  E)!kI$I$$!!*U E)!L$L&E)A^6lE) $I$1I$I$1II$1I$I$1 I$I$)(I$I$)(H$)()(I$I$1 I$I$)(I$I$E)$! IE)!  E)!`IȐ %)@$I$!$!$!  $I$E)! *  )(I$I$1 $1 )(I$I$1I$I$1 I1I$I$1 I$I$)(  )(I$I$1A$@ )(k&kE)x--E)!  2E)!`$I$$!b WeQ!BP$! -% 1wiP---- Wf%q ---/ tOpS---4/I$IDZǩ3/IHDZǩ1 <DZ)p !.I$I$d!d H$!pI!5/I$I$$!!-I$I$d!d I$I$d!d I$I$d!d  !@@I$I!a>!I$I$e) ! I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$E)a  !I$I$$!!I$I$$!! !+!! I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$ A  !I$I$ ׿@$H$!I !H$!!I$%y!UU I$Ey!%UnEy! @$E%y$E%y@hI$E%ykm`E%y #E%yW v i%y%q~3h%yi_ H%qX  iqP_Sc `HWI&[ lX@U_dH H j@!UT8!UUU@  !I$I$!!I$I$E)I$I$E)I$I$E)I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$d!d I$I$E)I$I$E)I$I$E)I$I$!I$I$b\TTWI !b  $! &I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$E)H$H$!I$I$!I$I$!b*z$I$!bUU!b I$I$E)I$I$E) $!b@`I$I$ b7!I$I$E)aI$I$d!d I$I$d!d  !`I$I$$!!I$I j*I !- I$I$d!d I$I$d!d I$!׾I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)I$I$d!d H$H$!I$I$$!BII!???/I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$E)@$H$!I$I$ xX\II!*+-%I$I$E)I$I$d!d I$I$E)I$I$e)I$I$e)I$I$$!!* I$I$d!d I$I$E) @$!I$I$ *I$I$ !+ $H$! V! I$I$d!d I$I$e)I$I$e)I$I$E)@$I$!b0WW$!I E)!I$I$$!!( $!!@I$!b $!I$I$$!!I$I$$!! I$I$$!!I$I$$!!*I$I$$!!I$I$E)I$I$d!d I$!&I$I$$!! I$H$e)I$I$e)I$I$e)I$I$$!!I$I$d!d I$I$E)a@$H$!I$I$$!BII!?/HH$!I$I$d!d I$I$e)I$I$e)I$I$e)@$!a !b %I$I$e)I$I$e)I$I$e)H$I$ bx~I$I$AI$I$A/I$I$AJ A$ $! 蚴m&E)̷ 9!5UUvl۰me)I$ „E)!9$!UUMԶhڶf1 y<1lƦ1$I$Ae)*ɔn%1  \cN*|U@m &rضoNktE_o߶k몭km} kΤP$Hy1 Ҋ*cpqmۦm Mmۖm 7oJ|psm.=J, H`EZmJҒr}Ԉ-M5TNJZ5\ێ]NJzw H$LjUThqJ8WE߶mZsjs߿WU"j۷ jNh?ǟNUQUFh۶u].)ߚ?Z퀶kNjecS ۋ?_j?}D$I$K$ R}e6|ƿjCn߲a iHm;mn)sp;@0cm#JO}WؖmkͬJʨ`mg jk?-UUWmۦo .Jȭ`ia<.J=W*ْEӦ*ʨbco6mjҩj(_Mm6NJ?c-ڪm-j޿? 4k–q\mjڠU1m)Ҫj*hmk kk7l.JڿlHmӶD۾N*ߡU$A I *ꦪJF$A$G. *jWeҦmJ cmU۷ *j΢O݂ۼm*CeH"kҪk_h$ʁJҨZqmvYoJO?ym ?8CbK ȹltWJʠ_vaǶm J/Adˢl鹪ڱ1]vm-㧱(;tFDI$H m9ȹkD @}R#I2$HJ¨jJvض-)Zs6bnjORcmЯJ{P.cJkψZlۆmJªkɐIҋʚzI!I$HUH!KI )©ZжEk-j mضm-?zY y$YEUU\R $I2jN jk0 ۋg/RMۦmNJ}h!I YҋʩrHH 0 P-JpURHIJ;m6}ȱ*hkR]m۶AJ› W)7`h%X%J!XPPPFǶmۆ1@  !I,I %)*Otif9!%&9p NiEA++-mqyfi ,)C;yij~~P/5PfaEAxxk2&c"e9xx8I$H$!)( I$$!! `NJ( 7 Mեȱ&eU Jj=m[4m˶-)sZnv;j޼kI$NuUU)۶&n ۧ&em۷ ۋ=՝J$Ɍ%ق t $I4n҅UUuhmVmʢڋ?}wA$I$ҫ"wI9 s$I IE)!I$ %)m۶i4%)d@ !I$A$$)e1 % SfaE1 -- M$x'fa$!WTT\I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)II$E)$!I$I$1I$I$1I$I$1 E)!jjI$I&$!VUV ! I$H$!$@$E)!I$I$E)$!I$I$1I$I$1I$I$1@  E)!II$e) E)!jI$I$d!d I$I$d!d H0E)b$! E)!I$I$1I$I$1I$I$1@$@ E)!IIe)d2$C2$!I$I$!? I$! I$I$e)I$I$1E)!jI$ %)׾(E)!I %)E)!@ E)!H$H$$!I$I$ $A$C&$!b` I$%)&UI$I$e)E)!I$I$1I$I$1  E)$!II$e)I$I$1I$@ E)$!E)!㢢E)!E)!ꪪII$e)I$I$1I$I$1I$I$1I$I$1E)!*I$I$E)!I$I$1H$@ $!I$I$ &$I$!$ $! E)!ꪪIe)I$I$1I$I$1I$I$1I$H$!bVW\0!$@%) E)!ꪪ %)I$I$$!! *?I$I$$!!/E)!%)@I%) e) I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$E)$!I I$E)$!L$H$$!I$I$  E)!))-I$I$1I$I$1 E)!I$E)$!I$I$E)$!I$I$1E)!ꪪ$I$$!bI$I$E)$!I$I$E)$!I$I$1I$I$E)$!H BE)!BH$I$!bTUT@HEI$I$HE)[m۶ P8Z!EJ X8* ɟwWiP+ nWEX+ "  q " wMq_{,`'f$) *z^(`$I$E)XTUUI$I$1I$I$E)!I$I$E)!****I$I$1I$I$E)$!I$I$E)$!  E)!H$H$!\I$I$` !  * E)!I$I$E)$!I$I$E)$!I$I$E)$!I$I$1۶ ۶!E) @趤I$%)a,UE)I$I$E)$!I$I$1I$I$E)$!* LE)8I$I$E)$! I$I$E)!H$$! E)!I$I$d!d   E)!///+)(I$H$E)!L$`E)!WUָ$$IE)!I$I$1 )(I$I1)(I$H1 )(@)(I$I$)(H$H$E)!I$I$E)$!**** e)E)kH$ $E)!*H$H$! E) %%% IE)! *$@$)(I$I$1 $I$E)! I$I$1 I$1@$A$1I$I$1 )(I$I$1$@$I2E)!@E) )(I$I$)(I$I$)(@$@$E)!I$I$E)!**** 0 ÄHE)%%5`WIt`H+/-pOqwfa//-` qwf 4,O$$ DZWW*3,y'm DZ]]/<<)ppppI$I$$!!I$I$e)I$I$e)I$I$d!d I$I$$!!B@$H$!P`II$!%!I$I$$!!I$I$$!! I$I$e)! I$I$d!d  @$!pI$!A //!8I$I$E)I$I$E)a$@$!hxZI$I$$!!I$I$ U׷!@!I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$d!d I$I$d!d I$I$e)I$I$E)I$I$d!d I$I$E)I$I$d!d   ! I!H$@$!II!??/*H$I$!ꪾ !I$I!*I$I$d!d $@ !! @$!b! I$I$e)I$I$e)$I$Ey!UUU I$Ey!U Ey!@$EEy$E%yI E%ydB E%yMۆmE%y IB: @Eyq C I%yi~I%yaW ~ h%qP Rc miH_NR[ m`@W ɟ Ii@I$L$P!Uh8!UUP8!UUUTI$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d !@H$I$!b$U A$!II$!_H$I$!I!<I!I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d $H$!bTU!b !I$I$!I$I$$!BI$I$bXVX !b I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$E)I$I$E)I$I$d!d I$I$E)H$H$!ZzI$I$$!!I$I$bTUU !b I$I$d!d I$I$$!!I$I$d!d I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d  $!@PI$I$!I$I$$!B! I$I$E)I$I$E)aI$I$d!d !I$!I$I$E)I$I$E)I$I$d!d   !I$I$E(CI$I!!I$I$d!d I$I$d!d I$I$e)@$!bP@I!bI$I$e)I$I$E)I$I$E)H$I$!I$I$I !I$I$E)aI$I$E)I$I$d!d I$I$d!d  @ !bp@ I!b %%I$I$E)I$I$$!!*** @$@ $!! I $! @$H$$! I$I$$!!*I$I$$!!**I$I$$!!* I$I$e)I$I$e)I$I$e)@$I$!bTUT !b I$I$d!d I$I$$!!****I$I$$!! I$I$e)I$I$$!!@$I$!bTUT !b I$I$E)a @$!I$I$$!BI$I!?I$I$E)aI$I$E)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)!I$I$e)I$I$e)@$H$!PPTTI$I$Ax<I$I$A󷿏I$I$  I$I0$! ɓ? 19AmӶhڶE)jc۰me)j?1$!?A I$$9 'I'9%)u]_-ZӮ1!Vm9 mNkr kem۶ k7hжi[ k+Fmmk.*kuӵE˶-kRM.*>/6NC-.*jw.=M49&Ϡ ʮkZ *ҪʦF$i kdʾDӶkҚrMonN*}{J҆ml ʪ7 7J ȹ*몵3h[46-㧱hr6pȹ&ܸlöm ㇱR$ $*ª쪩AC.MbwhlL۫kʊphmP4I$jʻRh٦mJ¼z\m۾ ʊ߽/Ai[W(۽- .?k[{6N jk1n_ڶm-ۋ?zYINYUc I$Hjʦ*U$Ő$IJ*\tl j®U޶qeJ«kv`۶m ۋ߸9$R4-ȱ*;6l۶ 鹪hmž ۋwc}?_Nj?R6Xɾ jʟ`oj?WkhO$I NUU)}Ad88鹚UmXJ?o7Um#CJO_P$S%JPPp&m۶E) s9 I$I$9 IE1 ** OfaEA----1WI`Jyfi/>yEYxX\P#-fieIxxb"&X%eAI$I $)) %)b*e J 9!G"IȱOmض )cI < ۋUEVCme-)ܻtU۶nJª)p/H ʧDۢm\ jFcضm k/_mö-j_69njtHm6 )YhPmtѦNJ¿>߱Oem[NjWik6-jʽcKd@jʺO=߶M nJo`mqLNj_I˘j }CI@i)tM`Iªz=6{ 蹪*H}mۢ)–U vl Jc翏NUUut3$'~IڨZXYJʊO]M۶ JZmN*c$%"j Jp?kD+ڦu۶N*en1i k?hc۶m.k4ߴh +UĆmF*ҢjWoۦm NJЗrm۶m"oPٶmq ҩzq.UUH%C k=nmHcm}-Jٿ;O$ɒ H ҪI$H&$!UVTX tئ9b!o۶lĆ1몊iZmۦ1nnoۆ1ڊ@%)00 8I'1%)EuU] qf1&6۰lE)?9|!!w$1? I$IĆ1 N1wfI )/#<Nfa$)PPBBI$I$e)I$I$e)I$I$e)I$I$e)$!I$I$e)I$I$e)E)!I$I$1I$I$1I$I$E)$!@$ E)!zH$I$!@$$!$!$! I$I$1I$I$1I$I$1I$I$E)$!E)!ꪪI$I$e)E)!I$H$E)!UUVVI$I$d!d dB2$HE)  $ E) E)!I$I$1I$I$1I$I$1  E)!I$I$e)I$I$$!!@I$I$!jZ$I$$!W$ $$!E)!%)I$I$1I$I$1H$@$E)! E)!E)!ꪪdB&d&$!b`I$I$bU$!I%)bI$I$e)E)!I$I$1I$I$1I$I$1I$I$e)E)!@$@ E)! E)!ϋI E)!@$I$$!bTUT !C&$!a@$E) UI$I$1I$I$E)$!E)!ꪪI1I$I$E)$!I$I$1dB&`2$!a`I$I$ bU !A$! E)!I$I$1H$I$e)E)!I$I$1 &L&$!b@PTP $!b E)$!I$I$1 E)!jI$I$$!!UWI$I$E)E)!I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$10`$E)XVE) dB&d&$!I$I$ $!E)+I$I$E)!I$I$1I$I$1$$!I$I$E)$!I$I$E)$! %)@I$I!bUE)!I$I$E)$!I$I$1I$I$E)$!! HE)UUU`H$I$I$Q!@I$ PH mn `PU+ɟoW%yP }. fi+ )v E -  E*@, 4M$I$I$E)!****I$I$1I$I$1I$I$E)$!I$I$E)$!****I$I$1I$I$1I$I$E)$!@$ E)!H$H$!pI$I$b %I$I$ *zz!I%)a /-I$I$E)$!I$I$1I$I$E)$!I$I$E)$!I$I$E)$!IE)bI$I$E)$!I$I$E)$!I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$E)!I$I$$!!hXIIE)!I$I$$!!\VWWnnE)!)---I$I$)(H$I$1I$I$1I$I$1I$I$1)(,@4E)`͐dIE)a ?$I$1@$@"E)!E)!$H$1I$I$E)$!I$I$E)$!****  e)E)kbbbI$I$1H$@$$!訨  $! *I$I$E)!*e)E)z멉I$I$1II$E)!  )(I$I$1I$I$E)$!I$I$E)$!*I$I$)(@ )([&XE)`x` I%)a/5-  $I$E)$! I$I1)(@$@$E) I$I$1@$@$1E) X8) )11Ea----)11f--/ ܔ$E*U3 DZf1'H$x\\\I$I$$!!q! I$I$d!d I$I$d!d  $!I$I!' I$I$!A  ! @$I$!A  !A@$H$!b`p I!A //I$I$d!d @$!`I$ !a-*I$I$ A!I$I$E)aH$H$!ZZZzI$I$!AI$I$  !I$I!I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I!@$I$! !* I$I$!!I$I$E)I$I$d!d I$I$e)I$I$e)H$H !axxI ! - I$I$e)I$I$e)$!! I$I$e)DI$%y!UU ɔ$Ey!UIE$) @$EEy$hI$E%yLB$ EEy #E%yW H%y%qz3@%yi_!I?gCfa՗6ۏfX~zxN# iiHWIb; X@UI$LP jH!UZ8!UUT@I$I$e)I$I$d!d I$I$d!d I$I$E) 8!UUUI$8@ H$8 UUI$I$8UEI$I8UUUPI$I$E)!I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$$!!I$I$d!d I$@!bV!  !I$I$$!BI$I$!A!rI$I$E)I$I$d!d I$I$E)aI$I$e)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$!^V^~I$I$$!!I$I$!bUV" !b I$I$d!d I$I$$!!WI$I$e)I$I$e)I$I$$!! I$I$e)I$I$E)I$I$d!d H$@$!TXpI$I$!I$I$$!B! I$I$E) !bI$!b U$! 7H!(I$I$d!d I$I$d!d I$I$E)$@$!I$I$E)aI$I!.*I$I$d!d I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)a !I$I$$!BI$I$ !++* I$I$E)aI$I$d!d I$I$e)I$I$e)I$I$e) ! I$I$d!d I$I$$!! IIe)!H$I$$!!  $! I$I$$!!I$I$e)I$I$$!! I$I$e)I$I$e)I$ $! @$I$!b0WV@!bI$I$d!d I$I$d!d I$I$$!!H$!I$I$e)I$I$$!!@!I$I$d!d I$I$E)a@$H$!I$I$I !//I$I$E)aI$I$d!d I$I$e)I$I$e)I$I$e)I$I$e) !@I$I!bU&I$I$e) ! @H$I$(A~I$I$"*I$I$A/I$I$!?+I$HE)al }%1b 9/?BkAQ1#%) a3m9;oNaۖۆ1&"s9aIL$)%cTD:IJڀ誡kupߵkݻ|` vlۯ*HD(R'ɤb`ܲaNJ<_ڡmnJP>lӲm jbk?.dUUI$I$NUUQm9JͷZ*I IJ$t.kws<']QUU}U`)0_am3NJ?o1#$ -뇹tD evjʨAmmn NU$C2$CJjjj-۶mmڧmFǀ ļMo׮QN)w;ZmmJ㏕AY!Ir N*Hflm )?ڶm[0 )m~-ݹRa۵J?;Ȓ$-蹌kU[Nm-Ru<۱mJ?zH& 0Xzr@ҋʺD$ Ml˰ )ª&Z`DIJt?$ګO_WZd+lJª*\m6-JD$I ɐ m=@tHUک Je1kʨ0@Ao- t#=#6J(p```H$]ڶE)v8lۆ1?aIe) "z*MIE1  NfaE1+qEQ?qEYUU:c;fiEA"6c1f9`ɒ'I&1II! *z lhk rO}VmJ?p9Ͱ-۶'jtO!E$Q))**mJdO;m  6mE P+ɗٵJHvۢN)ϭ\6l-jϿFm۴NJ=Zvl-jɤWhzmӪ-jψ6*5H 蹮rmۑҫ1A÷mz `mmڋ͕Dmp t?ګZm6NjA'I2ɋ 蹫j`vl۶mNj`J?`ܯJcml۶-Z홶mۢJš\@m6-jp7#CHNȱj"J$LH .Pm;J7Wzk-ۋ~r1FDZ?$Mr$ѐ**Fj۸ C $O &jOm6|-*ݕ)Bn$A 㧱n*.pJp Jmm)‰Umƚ Jʿ݋M~dH ¢W$FjJʊWgMnJʿhvaj k?ۚeI$IJҲkMɖm _m[m6 )Ҫ"je jڪjem;]NJΤ_l˷aK*Ҫkm۰i.jw.uUUEtoUUUc۶mNJk9ͫ9P`@]5m[1kUE۶f1 I$I1E)UUU  $y$9E)UUUI$I$E)%)ꪨmۦmĆ1 yA>f1 49??Bvb'6f1ϿI$I$!(ɐTe9//? %` faE1J ++ I$N'EY$!UWW\I$I$e)I$I$e)$ $!`I$I!55/I$I$e)I$I$e) IE)!I$I$1I$I$1@$I$%)b_^!2%)kH$I$!b 7A  ! I$!**//E)!I$I$1I$I$1I$I$1I$I$1I$H$E)$! E)!H$@$E)!V^zI$I$d!d  E)!H$@$E)$!IIE)$!I$I$1I$I$1I$I$1E)!ꪪI$I$e)A A$e)I$!jI$I!UW !I$!  IE)!H$L$E)TWV!@E) I$I$1$E)!  E)$!I$I$1d2 0$!I$I$ ($! E)!H$H$E)! E)!I$I$1I$I$1I$I$1I$H$e) E)! E)!$IE)! /??$I2%)j`ȐI$!a0.H&%)\xI$I$b^^!@%) I$I$E)$!I$I$1$I$e)I$I$E)!I$I$1 2 2%) xxxxI$I$E(C!I$! /??E)$!I$I$1I$H$E)!E)!I$I$1 %)h$@$$!  Ie)I$I$1I$I$1!I$I$$!!+]E)!I$I$1I$I$1%)$!I$I$E)$!I$I$1E)!I$I$1I$I$E)$!`2E)Xm۶mE) @$`B2E)I$I$ !!E)/I$I$E)!I$I$10 $%)`I$I$$!b5ՕE)!$%)P%)H%)$!I$I$1I$I$E)$!I$I$1I$I$H%)UUI$I$H%)I$IPH*I$AXH ɟwWiP+ ks8%yX/"ri -r4 E /  'E1\/$I$`^ E)- I$I$E)$!***I$I$1I$I$1I$I$E)$!I$I$E)$!*I$I$1I$I$1I$I$E)$!  E)!jjH$I$!AI$I$b% I$I$!UI$@E)=+ *I$I$E)$!I$I$E)$!I$I$E)$!$E)! E)!I$I$E)$!I$I$E)$!I$I$E)$!I$I$1I$I$E)$!I$I$E)$!I$I$E)$!****I$I$E)! &`&E) ^^^^!!E)!I$I$E) IE)!II1I$H$1I$I 1 $1I$I$1)(E)!@IE)7 H$H$1&`$E)xx` I%)a -- I$I$1I$@$E)!I$I$E)$!***)(I$H$E) `&`&E)!VVVV $!****I$I$E)$!e)E)I$I$1I$IE)! I$I$1I$I$1 1I$I$E)$! I)(H$I$1)(e) I$ 1  E)!A&L$E)b ^WVlٖ4E) &H$%)x~tE1 )-` X8*+E@++&I.i I$I$hI$I$hxE!\\\\$!apI$I!a%% I$I$$!!^x !I$I!U8$!I$I$$!!I$I$e)H$!T@$@$$!bp\ppII!a)'''! I$I$e)I$I$$!!(I$I$$!!H!I$I$E)aI$I$E)aH$H$!~^VI$I$b@pI$I$ A*+/I$I$E)a!****I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$d!d $!ap!b I$I$d!d $@$! I!*H$H$!  !II$!I$I$E)a$H$!A!a I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)@$@ !b`X`I !%I$I$e)I$I$d!d I$I$!!?-I$H$$!!`PXXE!UU $Ey!%UKEy$) @$EEy@$E%yI$E%y fEyUUU+fI$퇩E+`" H$%qTW~Bh%yiW  H%qX_ R# miP_# h`@I&k lX@U_I$I H Z@!UV$I$8!U@$I$8!I$I$@! I$I$@! I$I@%(I$I@8UI$@ j$@ @pI$I!&I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d  !@@$I$!I$I$!I$I!.I$I$E)I$I$E)I$I$E)I$I$E)I$I$e)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d  !I$I$!I$I$*.!I$I$d!d I$I$d!d I$I$E)I$I$e)I$I$e)I$I$$!! *I$I$$!!|^I$I$E) @$!b`PI$I$bI$I$.I$I!I$I$E)I$I$E) !@I$!bUwI$I!b7 I$I$e)I$I$E)I$I$d!d I$I$E)@$H$!I$ $!I !** I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$E)a$@$!I$I$$!BI$I$!! I$I$E)aI$I$e)I$I$d!d I$I$e)I$I$e)I$I$E)I$I$d!d I$I$$!!  E)!I$I$e) E)!jI$I$d!d I$I$$!! I$I$$!!**I$I$e)I$Ie) @$$!H!a I$I$e)I$I$e)I$I$e) !@I$I!շ$!I$I$$!!I$I$e)$@$! !** I$I$!bzI$I$  !I$I$E)aI$I$e)I$I$e) @$!b`X!b I$I$e)I$I$e)! I$I$e)$@$!@@`PI$I$AI$I$A+/*I$I$a!I$I !k 8E)AKֶm4E)l G9S$CCe)jbnM۶1 1!ӯm[m1!w/ 9 h9ؿI( 1 cRI"HJjhm꿾-kڇce6} k|N}@꫺`m&JҮڎ=TIH I'}-UUWZ\ۺJҺꚱeiڶm-k/cP3m-kxJ۾` 膱Reîj j+co;.k_`#@$)J AۖoM*UE˶J_m۶ {NJe? J?UmQ7n J?M[v N)¿kM(` @) #PHd@$ ⪡Ro۱k JstWmQjʿ) Chٶiۦ- \m}ۺjj*F.ܶm 8hAY5sۺ 9*PmÊ-nJRmѶmӶ-j?U۶ۆ-JªhH6g۰m *z8I$5uUUMdH$Y )šzII$NUU_mþcNkwW̻-ڶJ¶wJ )@r? ۫UguUWnѶڷJ+=۸M鹪*pk $h$ ۋeUXUt=A$I hchm6蹪=HH Ku蹔M? k#1")J$)`@@@ 1!a@M$M$E) UTWTII$E)**EIE1---- !!EYEI  qEYUUU+?fiEAd36cfAjjh A$I.E) UM $IĆ1dIdj)%54m۶M 7hM ٶ)®*zD!)$ᒫ *rO$!I4)ª"bHo *rJEۼi)ªꪅC[!r )pCp D$I$ɐ Zvd׷JŸ?Om|۩NJŸ˫ZێmNj˕R"C4̲JhήU 9R ӆJ¨*fWmeNJ?ReH,qJšj*`mm6k**jcmۢMjʪ&t ۫UIGJºmmvm ۋ/zI$ $UUeUFm۶FS- cO I$( J¦؈cH2jʊj.7N-N蹧`mѦ]{j*=iRG鹒e?-ۋ|cMo ӋJsۺm *6ꪋ?  qkj -t 6 H@/8p$E)p\U H$I$faE)TUUUI$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1$E)!E)!I$I$1I$I$1I$I$E)$!E)`I$I$ !I$I$b I$I$!$A!%)**+/I$I$1I$I$1I$I$1E)!ꪪ E)!I$I$E)$! `$E)bE)!I$I$1I$I$E)$!I$I$E)$!I$I$E)$!***I$I$1H$H$E)!^^~~$A$C&E)a*zI$!AIIe)!I$I$1I$I$1 1H$H$1I$I$1 1H$H$1I$1H$H$1$B$@E)!J نm۶mE)! I$A$1H$I$E)!I$I$E)$!)(@ @$E)! khE)!T\\\ $A$!****H$1tE)$I$I$1I$I$E)! **H$I$1I$I1 )(I$I$1 )(I$I$1I$I$1I$H$1 )(H$I$1K E)\I$h4E)a_VXI0!@%)am6lE) IKmH80 X@--- 1S%q` ---3-ivDZ3#iDZf~/M'x'!^\\\I$I$$!!@!(I$I$e)I$I$$!!*I$I$$!!I$I$$!!// I$I$e)I$I$e)I$I$e)@ $!bpII!b5I$I$e)I$I$$!!*I$I$e)I$I$$!!I$I$e)!I$I$E)aI$I$!VVV^I$I$@I$I$ A/@$I$!- I!****I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$E)H$@ !apI!A/ I$I$d!d $!  !*I$I$!  !cI$I$A $!H$@!A|!I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$$!!I$I$$!!*I$I$d!d I$I$d!d I$I$e)I$I$d!d II$!!/H$H$$!!PX$I$Ȅ$! (I$I$E)I$I$$)!I$Ey!UUEy!?HEy$A+ Ey5%,%J$E`PTV$C EEyꪪmۆmE%y NBҒ@Eyq CH%yi3I%ya_ # i%qXW S iiH_vR[ h`@WI$mP8LB$ H8_IB$ H8I$ IP8 ImP@U*Ib$)X@Um&`HUIb;$ `HU[ mXI$I$H!UUUTI$I$d!d I$I$d!d I$I$$!! I$I$$!!*I$I$$!!I$I$d!d I$I$d!d @ !`I$I$!bյI$I$!II!+/??I$I$E)aI$I$E)I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$E)I$I$d!d @$I$!  $!I$I$ I$I$!UշI$I$E)@$H$!b`X` I!I$I$E)I$I$e)!I$I$e)I$I$d!d I$I$E)!@I$H$!I$I$!UUII!?//I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$E)@$H$!I$H$$! ! I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$E)I$I$E)@$H$!I$I$$!BII!I$I$E)I$I$E)I$I$e)I$I$d!d I$I$e)I$I$d!d I$I$E)I$I$$!!++++I$I$e)$@$E)!I$I$e)@$@$$!!```PI$I$E)I$I$e)I$I$$!!* I$I$e)I$I$e)I$I$$!!I$I$e)I$I$$!!I$I$d!d I$I$e)I$I$$!!I$I$$!! H$$! I$I$e)I$I$e)H$I$! @$!I$I$bPTTTI$I!b-55%I$I$E)aH$!bV$I$!UU!b H$!bTP@ !I$I$e)I$I$e)I$I$e)I$I$e)H$H$ a|I$I$bAܼI$I$I$I$ 2I$I$ +  !@$I$E))mpe) YrkG1b ]۞c؆1!@ %)g6ۆ1!? vX9=7IgI je)U`aO*;mm۶ kkME۶Jڦ+\i۶NJI$N$-UU7U`m[.jWk34*v\*@DO#9 ʪzEUU`:i JҪ<#ڪO-ܖ۶.JϿPAV$ɛ)6:ZmvNJPdD$I)*Fhzn 躯Uڶ]-JspU@ AJʀJmn 4$I)2ȱhk=& 鹀@Zֶ J?+ IҨ& R <9IwMIAJ?$l j*;ۖuŶ 蹪\ݶ-vlj«j=MڶN蹦zII$ ۬UUURm֧ѶNjJ۶mm )ª;zm 7\6l׶njwN,I$-WeUQr8ګ_ vmnjU<3ɂJn}RmҖqJ©r\DIkʪWmԞiNJ3Ohݲ ȱ*誕Hli *JU"m[*NeMHH)¨9[[.蹺>۲ch۴U[ jzϏ?-UTUF DHm$$Ij*A۶aٺɪdB&S2%1PP@Bn6f1 jB ?9!{ 1wîmf17(BoC4[,%) MM$f1!~@!$ 0۶E)&$H'AbI I%)AJO1zfI!-% B34JfY$!``I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)E)!I$I$1I$I$1 E)  I&L$E)bVUI$I$!T$@$!iI$%) I$I$1I$I$1E)!ꪪI%) 1II$e) E)!jI$I$E)I$I$$!!<E)!ꫫI$I$e)1I$I$1I$I$1I$I$1H$@$E)!I$I$e)I$I$$!!PPP`I$I$$!!  e)I$I$e)H$%)\P %)b% I$I$1E)!ꪪI$I$e)E)!@ @$E)!I$I$!II!//?? E)!@$@ E)!II$e)I$I$1I$I$1I$I$1 0@0%)` I%)b&U E)!ꪪI$I%)!H$H$E)! E)!E)$! A$AE)/*I$I$E)$!%)@H$I$$!,U  E)!E)!I$I$1$@$E)!I$I$ I$I$$!*jZV@!E) %& $! E) IE)!I$I$1I$I$11I$I$e)E)!@ E) I2`2%) !  IE)! %)@I$%)bBmۦ-ڶ1 pl{vlۦ1a* bo9lKI$) OumN =\0 a*Һfmm;v kp?NJϿH $I ƪI$I$ UVUUPiرo۰)ҿeɑ$IJҢc۶MoJҶr$I ɒڪW$ JҪj)R˶u6 *ʦ"}Z(I*0P$[2%Ȑ*kCdIb$ɀ ª\mkk jmc۵oڋ_W[p3` ҨZ$TJJʪڋCdN$ ڊ_ J=? ]$- ꘚMFlٶ *?OF۶m6MjJömٴmJWMqNj>Z][*6 J¢:j\$I! JªkM۶ ۋUhYmJ€1e&`}{- kc۶=N|}Jl0u)`lnj7n۶EN蹪_hڢ ۋϨZE6mNjJ۸# Ja <ɓ Jc\m۶NJtC$$I \l;m J}H̸Q *1$K'I(ȱB9mJ;ȱ٤̀_O$A$jUUQUFmv< $1Dahjcێme)sI$I$$!!UUUQ$Jb!e)I$I$!!IAEA$!  fqEI%%%--qfi‚ C?fqfYzzz #:9eQE)xxhI$ $$!a  $I$f1Ķ8f1;w\ I$J 5U#Gb$yz?&I%ٓ鹫wR۶m"JODmnk )?Cm׶ o WEkJ=e6m )H%ڶi۶JMoڶ^ -J/&YA6 ۨ>jRVuݢ-J?ϤMu߶NJw7Umm['Jª*^7 q ȱ*hmm۶kʪti`%I$-[UU_}mjʊ)mϽ-?Du]kJN h?nj\GR4CJ¢*jzi$ (N]WEEOG$I)`m>EڷjʪzcyďjtA&I$Q]UUe A$BRڋZP]۶ Ǐ*ܤHe[i)ª.Ri+m۶ JwDH$IrO R$I)R ۦ-*=$A$C*jeH$a$ ۋTUYU=nM ?`mۢmӶҋªj;/ .r-YUU\m[-6-H.I$H )zڭ\mݶNjzM2@) FٶQ)©*\$I ɅJª p߶ ۋʿ̭pNcH$HkʊO˶}NJ?MH6m[ )¤jU-\B jʯ m7-QUeUmжmU jpCbAH !D#Y$3 jMlm˔JcI $kUFUPmǶ )߿hJ6dm)m)miȱ_@4C&*A` !ABdH$%)j+@$@$!jIIE)A. )fQ!--@ NqEI+++)$H$yq 1 1qfap``x 99fYE9xxxxI$L$%)bI I„E)԰e1AI i0f1!UEYE\ $I$J!UU\$ !-UtRI\j8 %k4$I$Ekp?0ne*cI$IkUUUrRFlVJŠ*H:1|o {AmvmQ-)?ۡU6mݶ J\\6m J½ϡcmǿڋUU;E۶iɶ-ȱUuݶ-6 j/}c?NJ?RE۶m٦J¢HSH$G2)>jU#-ٶJŠj.Umص-Ц J› tϭnUVU\Z}sNj}r/kmva;-/Z%D2yJ jkt`۶m-ۋcE۶mSjʢjk c-Umѷ6-j?\$)]J$0`iѶ]ۖj)P#YJªJ7۶ ۼa 鱪&ꊎ_m} ӊ~J6ж -*翐hI$I$-UUUHu^m-)O&Xeؒ ‹ʚmOOڋUUR_NJ_/\lmNJrI$Iڋ??r[' wI8I8UuUthhߖiۖj誩UuhӵNJ|J$C$I j*`uעiNJҿ_vmnJ=҃'a&ndVY_hmѦm[ k?èJ$I ɪO[m Ҹڱ?ːdI FH2'c9)TXP` !Ǧ1*dHI2f1*j 9!?k۶ۦ1j 9 #1! 1+f1BbMe1bp*I$I$$) [^I$L$E)AI$I$1w p{fY$!/-== h&X9ea$!XXPpI$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)II$e)I$I$1I$I$1I$I$1 E)!ꪪH$@$$!A$ ! I$!/+*E)!I$I$1I$I$1I$I$1I$I$1H$H$e) E)! &E)xI!-% E)! 2`$%)pXH$I !bxx I @%)%-I$I$1I$I$1  E)$!I$I$$!!I$I$$!!I$I$d!d $! $! // I@E)  I$I$1I$I$1I$I$1H$H$E)! E)! @$E)!H$@$$!I$I$d$I$!b UU2%)$!H$!UUU H$!UU@H$!U I$I$H%)I$I$Q!@I$ PH I$IXH m6I `H*In7iPU %)iP I$ qXU bd HiPIbk HiPUI$m ``PU_MҶ[ lXHMڶ lX$)VI&$HP%)U@$C2IH%)UUM$KaH UUTI$I PUUU@!!E)++0$!@@I$I$bI$I$ 77E)!I$I$1I$I$1I$I$e) E)!I$I$1 %)!zzzz !****II$E)!I$I$1I$I$1`$%)b I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!I$I$1E)!ꢢH$H$!II!E)!I$e)`$%)h %)% E)$!L$ @_:A$H$@I@8 P8+++ I1g iPս }.W EX " }& fq+ ,r4 E*- 6%)h-c'I$%)p_UUI$I$E)$!I$I$1A$A$E)!I$I$1I$I$1&%)x%) I$I$1$%)`I$%)A /I$I$1I$I$E)$!I$I$E)$!I$I$E)$!**I$I$E)$!I$I$1`B&$C$!ࠀI$I$\I$I$$!!I$$!++/I$I$1E)!ꪪ!A%))I$I$1I$$!!@@$E)!I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!0`$%)ap\L$ !A  ! E)aI$I$E)H$I$$!!\XXI$I$$!!5%%/I$I$E)$! @$I$1II1 $)(I$I$1 $I$E)$! *H00E)` I%)a ?A$I$E)$!I$I$E)!****@$H$1I$I$16C3,E)`H$I$A-I E)b - @$E) dB&dB$E)!zzI$I$d!d I$I$E)$! I$1I$I$E)!E)!*I$I$E)!I$I$E)$!I$I1L$L$$!ap\ِlVlE)a @$I$1 $1H$H$1I$I1I1I$I$1  1I$I$1 E)! ɄAPE)  `1iP---- 1S%q----/-H$Hǩ3/!"!C2DZǩ HH$9H$I$$!!p\\pI$I$$!!I$I$$!! * 11I$He)I$I$e)II$e)$I$e)I$I$e)I$I$e)I$I$$!!(I$I$e) $!@I$I!>$!I$I$E)  !I$I$AI$I$A  !I$I$E)aI$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$d!d I$I$e)I$I$e)I$I$$!!I$I$e)I$I$d!d $H$!a^ A$!I$I$!A(  !II!*+@$H$!xI$!(UH$I !i!I$I$d!d  !I$I!a׼ !I$I$e)I$I$$!!*I$I$$!!I$I$d!d I$I$e)I$I$$!!jzRI!($A $!!I$I$E)@$A$E)! $!H$I$!a !I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)1$I$%a! UUUprI$Ey!+U䐜E)*  IJE%iI I$EEyI$EEyLB$ EEyIH$ EEyI$E%yIE%y hI$I$h@hdB EEy d"Ґ@E%qꪪl%yi^  %qP~M:c `!VjI$I$P!UUUTI$I$d!d I$I$e)I$I$E)I$I$d!d I!((*H$I$!!I$I$E)I$I$d!d I$!bW ! I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$d!d  !@H$I$!I$I$! !  I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$d!d @$@$!I$I$!I$I$!j I$!b'I$I$E)I$I$E)H$!P`I!b5 I$I$e)@ ! ! I$I$E)I$I$d!d I$I$$!!ˏI$I$$!! I$I$E)I$I$d!d !I$I$e)I$I$e)@$!P`I!b5 H$H$!X訤I$I$!I$I$b@I$I$!b! I$I$E)aI$I$d!d I$I$d!d I$I$e)I$I$e)I$I$E)I$I$$!!--+I$H$e)$H$C$E)jR !b$@$$!!@I$I$E)H$!b\pI$!% I$I$e)I$I$e)I$I$$!!I$I$e)I$I$d!d !*I$I$$!!*I$I$$!!@$$!`p@I$I$!b%% I$I$$!!$!b@PI$!b)% @$!I$I$I$I!??I$I$E)aI$I$E)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)H$H$!a~I$I$:I$I$ *$I$I$ Aj(I$I9? 9?y17m˶f1*IE)!AEۥkӶf1j$IdHE)! H9ԿItHE1\m;Sz.J|k-۶ˢkΒcaےJکjڃq$I,]TUe`$H$C*Ҋj_JJn[l.ɫ.1&lV-(eIIJe%D$I2j *j؂%[d;Cqö hdHdvjҚcm׶h۬jҪ\x>m۶jҤZA'"ئO ²Nk?ڋ_GG?!IB&y蹩 _8-JߎUh۶oڶJMc6oN)ӒJ[mJCbH$W Jm-ۋRm:nj?~DSʑ- bꪸZaǮNj7W$i!I JªU&p b J‹f=dɆ$I-蹺FcIG _mۂa6-ۋHqIj) @w'G$ ۬UUQUwpҋʫ\möX-j7wMd) A6y۰- $0 @pO$Q$ ۫UTQUP'38J¡lWomv; J|rO$I"IJ@p-Pʧ 7I2ȱjDlV *īCpm۶:N{Jmvb)_6aܼ9jʣ0`ZH$I$TVUU6e)Aʦ!dB$!I&m%E)bI$I$  ))fA!-- iEA +ٖm yq  Іqfa`` XXfYE9xxx`L$te1aI$IE)?  _s9?{;6چ1OgA>$I!E) )`1$I$I$) UUU`P`ɑ$J%)5Uz$ sj@ R۰;/ J]nO];m )~?wJ۶-2)jh,Jn CRڧh*hɟ$H$-ۋUUTUAMm鹦*A!I$I蹩ʫFq{mN)=oUpö-J|_n6l kO{ci˶m ۋ΃e$IҋʪhZ6l;v:J{Hkۆ[- "Wmہmnj9dIh-ȱJ$ɑ$ *p6b۶ګO=) I-鹭hmvbnj_W i$IJ¦Foєm- +W.ضnjJmp *«⬥CДN)*7$)24X-豪hz9m&蹨peۉثkʿ\m۱ojU$9Jʟ΋_vjv jz\6r۶eJ*7@@@%)00 9  ۄ[e)+avXf1b.. ?9dH2E)AbI$I$ C3 I$f1? /SfY%) +-- H$`$fa$!TTXPI$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e) Ie)H$@11I$I$1@$@$$!!@@I$H$!zI$I$!b'$!$! I$I$1I$I$1I$I$1I$I$1 1I$I$e)  E)!jjH!(I$I$$!!5W  E)!I$I$e)1 1@$I$$! !AE)+**H$H$E)!II$$! I$I$$!!*I$I$$!!I$A $!!II$e)I$I$H%)UUUI$I$H$!UU`H_HI$IPH*۲P8@ iS$X8*M& `8V^ i& i8 I%'$qP. EX N$/ EHW %7 iPկ* wrti%5)eս*-햤$f 1"ݖ6 *1&r"3+mR$ + 4/I۶DZ 41Im,DZ4,&H0%R4$%$!P1$%)U1$$!U1 Hm1)m"ڧ1%3F/~c f-f+-O? EU~)s/W E+(O hEW#%y_! R Hf$q  @fi_bc hEiUR# @E`UOb# H%XU Ibd I%yXU b# IqPWӶ$ Ia8zq˶# I`8mҶ ``PUUmmX)ZI۶ۆmP$!Uۺk%H$!UU$@H$!UURH%)UUU*d%)(I$I$1I$I$1I$I$E)$!I$I$1H$I$$!bWVd&aBH?I$IH UULB&HWH8I$IPH*Im XH I. iP - %yX I~8AEaUw fi}* k- Ei@|$f%)^W H$I$EQ$!TUUU @ %)$!I$I$e)E)!ꪪI„ %)a޺ E)!@$H$E)$!$"!E)!ˋI$I$$!!@E) I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$E)$!`& %)xx $@%)-- I$I$1I$I$1$E)!0@$E)pxxI$I$I$I$I$I$ A* @E)I$I$1I$I$1I$I$1 I$C&$!b` E)b -I$I$E)$!I$I$E)$!H$E)$!E)$!I$I$1I$I$1I$I$1 E)!I$H$!hH$I$!AII!**++E)!*I$I$1I$I$1I$I$E)$!I$I$E)$!$I$E)!__E)! II$1I$H$1I$I$1$)(H$I$1I$I$1I$I$1 E)! $2 E)!I$I$e)I$I$$!!$I$e)$@!E)!  0 E)!ࠠI$Ie)I$I$E)$!I$I$E)$!I$I$E)$!I$I$E)!I$I$E)! I$I$1I$I$1I$I$E)$!I$I$1H$I$1I$ $1)(I$I$1 $I$E)! A$A HE)%11`H//--7q7Wfi----/)ǩ1 ")(@@@@$!%)$!@$I$$! @$!I$I$e)1I1I$I$e)I$I$e)$$!A@$I$$!b H$I$!8$!I$Ie) 1 1H$@!\pI$!I$I$!_^I$I$ˏ I$I$!UI$I$E) !.**I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$$!!I$I$d!d I$I$d!d I$I$d!d I$I$d!d !I!****I$I$E)I E)!I$I$$!!(6$@$$!` I$!A&I$I$d!d I$I$e)I$I$$!!I$I$$!!I$I$$!!/ I$I$e)I$I$e)@$H$!ax I! % I$I$$!! *I$I$$!!I E)!@$@$E)!zI$ E)!I$I$$!!VUUI$I$$!!I$I$E)I$I$E)I$I$d!d $H$!A!b I$I$e)!@I$H!U(!I$I$e)I$I$d!d I$I$d!d @ ! !€I$I!I$I$e)I$I$e)I$I$e)!$I$%y! UUUP I$Ey!U\Ey!5 ۖvEEy $E%yhI$I$hh$ E%yꪪ @E%y_~ C %yiz Z %qX_zSc`@mҶ[mP Z @!UTI8!UUUPI$I$d!d I$I$E)! !* I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$d!d  $!I$I$ oI$I$!I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)I$I$d!d $H$!bx\ I! %I$I$!I$I$! !//+*I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$E) !@II$!b&UI$I$!!W( H$H$E)!V^I$I$$!! I$I$$!!I$I$$!!VV^I$I$$!! I$I$$!!*I$I$$!!I$I$e)I$I$E) !I$I$ I$I$! ! I$I$E)aI$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d II$!!5@$@$e)I E)!///H$I$e)$$!! H$$!hX$!I$I$$!! I$I$$!!I$I$e)  $!  ! !**H$H$!bxxI$I!b5- I$I$d!d I$I$$!!** I$I$$!! I$I$$!!I$I$$!!I$I$E)  !I$I$$!BI$I$$!B$$!I !** I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e) !@@$I$!pp^VI$I$A輺I$I$ +ͧI"I$E)aI$ %1EIӶE)k ?9/mَe)c'v w1bj$IIE)!mm!1!Ki%IP&9%)]X[$I$H2e) jhɖ!% Zi$I*JVʐ (c%I4Jڪ.p؆m kW I˕ *Ҧtem-k=O Q2%Y &j UUTemؖmNjZlJҺc7i;mNJүJ-۸ ,jHmv-*nJ-ܾmڶ *`6,vl jCiWk۶ )rZJZ%IA2Jʫ*jM$IC)ªakD@  kOH I)6$C$aȱj*_/jK,Ӌmr_ʋjꪅ_1KnFlҋ­ zA"( B m6a۶m; ۋ/zH$IڬTUUDmؼm 誕pm7 ۋϷh?jzkHҋʪrO IUEUU\m6mJªjpރ'O$-[TUUrI;I'nU}U\W5[7 j30mۖȱ*wM"im)@OmN*SUmn J?Pm; J?cON -UWEH}ض>N [w$-k$J$)XV!H$I䧉(B@,یMe) " E)ʦ*mӮ(ڶE)jm1lf1 $C$!0 $A ɐE)?I„Q e) UQGIDIxe1/3=/ p faEA---- @rL$qEYVV HZqFaX9fieIxzxxb&&b&fAxH$I$  **؆1w?y?s1A9 9!]WTU2ömۆ1 Ow|f1:1!'7 9 sNm۰l1*6ldž1!m6i61*u¶mf1 cI<)!%U4an%AFEڶ )Jmqi *o?R}㶰[ JwkA$ҋUQUUkm[jσJض m)¨&Hۺm[6l)ꪚ3mmۢN㨱_㛎kNjscm ۋ5\ڴ}.j?ϭ9 I%G-ȱ:comNj_vnۢ-kʯϒ\$ɀ&IJªhg -ʿemֶc-ۋpuUUhm۴ ۋMd*ª&HdK, Hm[6 )j-˸mӆm DZ;$X!;豊MIJm-*mR( EJZ~l۶mJ}M۶m۶)ª6Zj۶-㧱p?ڋUe2 j?7-ڴNڊz`  JrHDRڋ}I8 $ eEUhl-kҳp~^nWwTc6o-JҪ4jMiv`ۆ1(B m;m9! vmǧ9 B]ue1!im6E)*ǟ>?f1!ɒAE)!ʢ& $I$f1 NSfI --S2%C!fi$)RRrBI$I$e)I$I$e)!I$I$$!!I$I$e)I$I$e)$A$I2$!@$@$$!  1I$I$1@$@$E)!H$H$!I$I$ bVW8 $!  I$I$1I$I$1I$I$1I$I$1 2$!I$I$e)E)!I$I$$!!|\VI$I$E)aE)!I$I$e)11I$ e)I$1@$@$E)!I$I$$!!****$I $8$!UUU@$!UU*H&IB@!U H$!I$IPHI$ PHI$IXHm&I `PUUIn7iPU m qP-9%XU Im)EaU }%%fi*#o&%y(m& E*,o(f) L%%qVX I`-mE%q=1TI)TE  %3-Iۚb肍4/iHiVǩ **4/ %DZ4%DZ$)X4HZ$$!PU4-%I$$)PUU#E$I$$!RUUUIE)!I$I$1H$@$e) IE)!I$I$1,)$I$%! UUU,$I$U_,ېI$$!UU/@ I$$!UU+`QI$$)UU-$$$!U+$U, , f)3fU)ӶE(HE_% I%y_! OR @q R[ Hfi_o &f`X&oEHZfA%yHOb$ H%yXU v6# Hi8Z-ҶmmP8OIj۶ X8]mۖXHIB$ P$)PI$$ P$!UI$@P%)UUI$IP%)UU@H$!UI$I$PHI$IPHI$IPH*IڶXH I. iP .G EX*}% fi+&m6 %y*-4f*,d=)p'I$F$!p\UUI$I$1I$I$1I$I$1I1I$I$1I$I$1I$I$1H$@E)$!!$HE)!IE)$!I$I$E)$!I$I$1I$I$1$H$%)$!E)!I$I$1I$I$E)$!I$I$1I$I$1I$I$E)$! E)!JH$I$!A(C!I%)멢I$I$!AI$I$ I$I$!E)!I$I$1I$I$1I$I$1@ %)pI!E)a/ I$I$E)$!I$I$1I$I$10%)`@ %)b5I$I$1I$I$E)$! E)!@!I$I!(II!****E)!I$I$1I$I$1I$I$1I$I$1HE)!*I$I$1I$I$1I$I$E)!I$I$E)$!0E)`@ %)a %I$I$E)$!  E)!h۰mݖ E)   E)!IE)!I$Ie)HE)$!IIE)! *** ,X&E)`X$ %) -I$I$E)$!*I$I$1I$I$E)$!* *I$I$E)!I$ $E)! H$I$1I$I$1I$I$E)!I$I$1I$I$1I$I$1 $I1 H$E)! E)!+///I$I$HE)Nvg'`@+_`.SEP +%1))K DZu/") $1@@@@$!<E)!H$H$$! I$I$$!!*** $1I$Ie)  1I$I$e)I  e)L& $!a\p $A$!A `H$I$!8 $!@$!!I$11I$I$$!!VVV\I!H$H$!^^zI$I$!{II! H$!T! I$I$e)I$I$e)I$I$e)I$I$d!d I$I$$!!55I$I$$!!I$I$$!!*I$I$$!!@`hj!@H$I$ A8!I$I$d!d  !!**** ! E)!I$I$$!!UU<$C$ 2$!I!a7 I$I$e)I$I$$!!*I$I$e)I$I$e)I$I$e)I$I$e)I$ e)$C$ $!@!I$I$e)I$I$$!! E)!H$I$$!!P\T E)!I$I$$!!WW(I$@$E)!{zzI$I$d!d I$I$e)I$I$d!d I$H!bVX !I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$!!I$I$!!//I$I$$!!I$I$e)I$I$e)$!I$I$$!!//%I$I$$!!9$I$Ey! UUUp I$Ey!UEy!@$EEy $E%yhH$E%ykۊmE%y~ 3 m%yi # @%y`_~  iiHv# `@_I$mP8$I2$ H V@@!UU`I$I$8!UUUTI$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$d!d @$@$!I$I$!I$I!*I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$$!!I$I$e)I$I$$!! I$I$E)@ !bp  !b I$I$!I$I$!! I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$E)I$I$d!d I! IE)!I$I$$!!((I$I$e) I$e)I$I$$!! I$I$e)I$I$e)I$I$$!!I$I$$!!`hI$I$E)  !I$I!I$I$!!I$I$E)aI$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d $@2d$!@PT  $!b %  E)!I$I$$!!I$I$$!!??I$@$!bVX $!b I$I$e)I$I$e)I$I$e)A$I$$!  !I !H$I$!!I$I$d!d  !b@!bI$I$e)I$I$e)!@$@$!I$I$!I$I!??@$@$!! I$I$e)I$I$e)I$I$e)I$I$e) !b@I$!bUI$I$e)@ !pI$I$bxxI$I$AI$I$Ao*I$I$!IȚE)a* ?~?1{~1Am;a'e)j*vn1acme)ꪪ%) 9 ? ??9P0_Vhv*J**OdA!O *i_}ؖ9JsWmm*_PIbI2 ʺjp?g:nk۱m\!IK )ҩ*eJp`˷mӢ.jϒe!ɑjҨBM$!$ *m7.jMض_7n)nMEӶm۶ bkߏ YeQT\N*?_uZڷjRm훶J;-m蹪Fl[lڶ *wJEJ$HIªJ&MiQlۮ-)).R"knjOzD@ cMVE۶ ۋ?Fl׭Ѵ- :U6m[nj~UضkJOM۪][X *抢2J붍 )®*ca;-?wHmm6 )ªkwA  @Ahm 鹨;dm-ȱ*Hi۶.*OtMJ$AI)Rm sn J߬=D$M$ *k/BʧH$Ir$ jt-զmˆҨc $H$j!PTUm6k1mme)+?(B $!a@;6 ;1}|!2$IE))ꪪmitE)6?1@$!A $E)AIME)?>?  SfaE9---- |@qEYV (IHyq]z؃=iEAppbd5e9РI$I$%)!*II9 UuU[mXf1!Uݑm۶E) ?f1bj?9 O1aom9!Oۆmض,E)DE)!m۰ئ9!h1m؎mۆ1!I$%)%UU۴qEAH..j )Q= Yі鹦m9pYȱ3tR)yJj&kɜq$ ۋU\kf-j}7MVO۷-J¯FmǶm)D$ɓ &Av׏)_\oEjʲCmm- emٝNjh3vn[ ۋʌ_?wA$H$ҫҢMm׶mۯ*zR JedȓڋʟO۶löm*ª6ߺmʶ ȱ몤cm ӋϭJM[-ܶNJ7`Od ȱ誚hA $cNJʿ{rEuSUC ˶]*:cm۶EjҪ)?Y$ }I$K$NUVUD!IbI A! b$ɪMh2$i ʊk+P}ܹN*7W)0USm۶A*ҒF$i KɪI$H$jE)WTTTm۶Ć1 $a$f1E)eUUU mۦ1(%) `&#@pضm;1 ?9k۶mӢE)jm۶-E)vbvf1** ɺ ɒ$E)I$I$AH9T|e9 /-B^ fa$)BBJ I$I$$)$!I$I$$!!H$H!0$!I$I$e)I$I$e)@$@ $!PTP@!!$!/ 1I$I$1I$@ E)!@ @$!A$I$! I$!+/??E)!I$I$1I$I$1I$I$1d$`0$!$!  E)!I$I$E)!UWW^I$I$E) E)!I$I$e)$@d$$!$! $HH$!UUUI$IH$!UU@H$!UIH!I$@ H8UVP@I$I$@! mɖP8=IiXH+I6)`PU -7 qP e7%yXU%%EX* o%'fi" In&%yU )m6 E +풛$fտ*-M@/"qJ0*1)MU* 3,IҶkm4,Mm4IV1I$@-ǩEUTP@%mѶm'f!*^4 Iv$$!ZU1&I$$!XUU/`$I$$!XUUUI$I$e) $e)H$C2%)`I$!a=H$I$$!! $!@$@$e)IIe)I$I$1I$I$1I$I$1H$H$e) E)!H$10%)`I$I$ II!?  e)I$I$y$!UUU+$I$$!UUU)$I$$!UUU+I$$! UU(I$$!UU)I$$!U(/ڀ$f!U%fI$f$!U%ö&EU#@%y_! R A%q_}&fP^Z6Ԗ%qHu* I;iH/b# %yXWOb$ H%yXU c HqP_Ib iPUI$ H`PUIĶ) `PU Ib%7 iP I~-7 %yXU m%7E`U*m%7 fiտ&k4%y*-r$f*1%yr$@ / @$$!@PU-H$I$$)TUUU I$e)I$I$1I$I$1I$I$1 $!@ I$!a(E)!I$I$E)$!I$I$E)$! $E)!I$I$E)$!I$I$E)$!I$I$E)$!I$I$E)$!H$E)!E)!I$I$E)$!I$I$E)$!I$I$1I$I$E)$!I$I$E)$!I$I$1HE) @$@ E)!zzzjH$H$!xI$I$!AI$I$ E)!I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$1I$I$1`0$!a`I %)5I$I$1 E)I$%)U!I$I$$!!bz-I$H$!AmE)b I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$E)$!`0E)bpI$!0%)a`I$E)b5&E)b`pI$I%)a%- )(I  1I$I$1I$I$E)$!$A$CE)$!**h$MҤE)x $A$! I$I$E)$! I$I$E)$!I$I$1`$E) VE)$!*I$I$1I$I$1I$I$E)!I$I$E)$!I$I$1I$I$1II1 0E)`@!E) %I$I$HE)vb&` X@_[++EH- ++3)I-$DZU38@"% @pPPI$I$A(>@E) @$H$E)!I$I$$!!  Ie)H @$e) I$e)I$I$e)A$I$e) e)I$I$e)I$H$$! @$H$$!p\X` I$!a  $!a  $1I$I$$!!pI $!!@$H$!\VA$A$!ZZZ[II!I$H$!bW^ ! I$I$d!d  !$!I$I$$!!^^^\I$I$$!!55=I$I$$!!I$I$e)I$I$e)I$I$d!d I$!I$I$d!d I$I$d!d @$H ! !** $! (!$I0E)!ɣI e)`& $!I !*** I$I$$!!?I$I$e)I$I$e)I$I$$!!(I$I$e)I$I$e) I$e)H$I$$!!I$I$e) @$!bp`I!b 551I$H$$!!\p$@$I&%) z$A$$! @$@$E)!zzzI$I$E)I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$E)H$! $!II$!!/-5%I$I$$!!I$I$e)I$I$$!!H$H$!XVVX! I$I$e)I$I$e)I$I$d!d I$I$E) $I$Ey!UUUI$Ey!UUDEy!@$EEy@ I$EEy@EEy t"Ґ@Eyq C I%yi~3֒I%yaW ~ h%qPv hiHWNb;k mX@WmӶ[ lP8$I$ H!UjI$I$8!UUTI$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$E)@$@$!I$I$! I!*+/-I$I$E)I$I$e)I$I$$!!zZxI$I$d!d I$I$$!!I$I$e)I$I$$!!I$I$d!d I$I$d!d @  !I$I$!I$H$!! I$I$d!d I$I$E)I$I$e)I$I$E)I$I$e)I$I$E)I$I$d!d I$I$d!d I$I$$!!//I E)!I$I$$!! I$I$e)$I$C$$!p$! I$I$e)@$$!\ $! -5I$I$$!!hppXI$I$E)a$@$!II$!H$I$!I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$E)dB2H$!P@ $!b  E)!ˋIIe) $e)I$I$$!! I$I$e)I$I$e)I$I$e)IIe)H$H$$! @  !I$I$!II$!I$I$E)aI$I$d!d @ !bP@I!b !  !I$I$!H$H$!I$I$!II!/? H$I$!! !I$I$e)I$I$e)I$I$e)I$I$e)I!bI$I$e) ! @I$I$a``I$I$ HI$I !I$I %)?IA%)̶mf1!TEUUm'mۆ1m۶)ڴE)BwsE)b d$)2e)h Ir(ϓ'9!_I$O E!Uוhfm[-Jz-ۆujR$ %I ҩ*ZdF$*Қ&?B$G.jze۶EʶMۢmy jʻp-ڶm6-6d= rk@@kڀctZJҀcF|NJӿWle߶.J?{w3 EeDO]u]NJߋPd'IR)ʪ*Z4E$I2Jʮ*jPh۷ Jʼp`H$ij" Fmۦ-)?9ni ?e}`O$ҋ_UUCeQɵ(*WkEٵ-ۋ~_{nj7emccNjpnkʷPmiNjz`1jʪJk۵)—ǫUMٶ-kʷ1[n۶y-ȱzU$IR@JPmkm[4NJsk-7Um׶mZ j?pI J$-۫UETUOԙK)²O}n*PJm JFڮm *m6J$)ȱ@kA k &K$jE)@XTU,X۶1* $f1 |?9hm1h* 1$@ $!00m;-e)a(I$$1!UTgUϏ9۞؆1I$I$E)aIdM$%)*" RoweYE1 ---PnqEQ+ I$yEYUU3>ufiEApx\5X5fIzjhI%H$E) QTVaI$%)?@$!AaǶmE)b)؍f1nkNg1 @%)A` kۆ1  $I$1E)EUUU 9 uݺMBf1 f۰mٶ-E) _9A) 9!JI$y$)%)UUUcFH\J)%cA$N$ kʑUWU?m;-Ҷ- OwC[6zڦ *_ jߡFhm W I%ȔJ¨PM[*¦ʙFdFG鹚Um۶NJRѶZNJ;rI.UUUPum )ʅ9)6n@RhM۶-JenVUQU\Wk߳c-j~w\I"Ij0@U6MJ._o1jY k3tc`Xk t?`) @pM(&II @m&&!Iʇ@0h\ 0njʉJ-j )ߗ=ه-b蹺* mH@R P7$I! 㨹p` Jʀ ?4 M*jwk۰mJҪ_m-JҺ WmdGlJʤ`=kS jUM )*k$IRɫkګmضmk3Wu6lۢ.JϋMܶli ҫOԶo F>I$CɯjR$AȐ *}d%@8j)PPP` ۡۦ9!mömƆ1??rB}O Y$9%)QuQN`9s =f1m6e)b 6mۥ%)ꪒI$$ II$E)!*H$I$!A(jDE1=5=)WfaE9 +-- I$O'eY$!UUW\I$I$$!!I$I$$!!I$I$$!!I$I$$!!I$I$$!! $!bI$I!bU$$@$!I$I$1  E)!@$@$!I$I$!II! IE)!0%)`I$$!a 7H$$!0\W!$! H$H$e) E)! &%)!~^^^!  E)!H$HH$!UUUdBH!UU H$!I$I$Q!@I$IPH I$IPHIڶm XH Ib$%`HU-a8UImX@U*) %yP.W fi ! $7f$q*&$ Eկ*+_(AfU,%I䧩E*V1#r&1)[3,ݶ *4-!MJ$! DZ 4/I$h%DZ4$DZU4H$DZ!TU3$I$DZ$!TUU/x$I$ǩ$!\UUUI$I$$!! ***I$I$e)I$I$e)I$I$e)$&L$$!$I!$! I$$$!!@@I$A%)& I$I$$!! E)!@$@$E)!IIe) &L$%)~@!E) I$I$1I$H$E)! E)!I$He)`$H&$!bp\X`I$I$A*I$I$ a  E)!H$H$e)@$ e)I$I$e) 1@$I$e)@0d$$!A` $!b - 1I$H$e)I$A $!!@#ɐ$I$!%UUU"$I$!UUU ؖI$i%)UU I$%$)UUfI$E$!UU)I$f$)U =$h$)Um;ҖE$1 b$ HfiU InfiU I~& fq%$ %y)$Eտ-ݒ$f1#qn4 *3$%%)P1$I$$!@TUU $E)!%) $!`I$!A+'C0$!@ %)a /I$I$$!!@I$A%)b׾*1I$I$1@&E)xmɐtE)b-@$E)!I$I$1I$I$E)$!I$I$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$1I$I$1  E)!jjjjI$I$!^^__I$I$!AI$I$!E)!I$I$1I$I$1$E)!I$I$1I$I$1I$I$E)$!I$I$1$@$E)!IE)$!I$I$1I$I$1E)!ꪪI„ E)׾@$! $! H$!A!@E) I$I$1I$I$1I$I$1I$I$E)$!I$I$1 E)!E)$!I$I$1I$I$1I$I$1E)`I %)a5I$I$1E)!+*** I$1 I$1I$I$1I$I E)!II 1L$IE)!ިI$Ie) &dB&E)@!%)   E)!jʂI$L%)aֺ @E)I$I$1I$I$1I$I$E)!I$I$E)$!I$I$1I$I$1II1`$E)x`IdImE)a-+ HE)ImX8**7{EH++/- E-m&m"$ ZZZPI$I$!!I$I$1H$H$$! I $!  11$I $!I$I$e)I$ e) 1I$I e)H$I$e)$C$I$!L$%)Z`I!$!A- @ 1I$I$e) I$e)H$I$!VVVXA$A$!YyII!5=/I$I$E)I$I$E)I$I$e)$!`I$I!A? I$I$$!!YYxI$I$d!d I$I$e)I$I$$!!**I$I$$!!pP!$H$I$!A ! I$I$d!d I$I$E)aI$I$E)I$I$E)D$A$E)!sSI$I$$!! %H$H$$!!pI$I$$!!?/I$I$!! I$@$e)I$I$e)I$I$$!!(I$I$e)I$I$e)I$I$e)I$I$$!!I$I$$!! $!@ $!b E)$!H$I$$!!L$LB$!aX !b @$@$E)!zzzz ! !A?I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)I$A$!!`I$I$$!! I$I$$!!I$I$e)I$I$$!!$!`! I$I$$!!I$I$$!!I$I$$!!Zr`I$I$d!d I$I$e)I$I$$!!// 2$C$!Ey!UUU0Ey!UPEy!%EEy E%y #E%yW vI%y%q~3h%yi_ CH%yX  iiP_NR;c miHUIb' X@U_mڶkmH(j@!UP$@!UUVI$I$d!d  H$!bhXH$I$!bI$I !u﫪I !-+* I$I$d!d I$I$e)I$I$$!!ࠠI$I$$!!+**I$I$$!!I$I$$!!***I$I$$!!@@I$I$E)I$I$d!d  @$!I$I$!I$I$!I$I$d!d I$I$d!d H$H!I$I$e)I$I$d!d I$I$e)H$!b V! I$I$E)I$I$$!! $!!OI$I$$!!5//I$I$e)H$@ $!XXpI $!b-- I$I$e)I$H!bWV  ! I$I$d!d I$I$E)$@$!I !ꪫI$I!I$I$E)I$I$E)I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$E) E)!$$! @$ E)!IIe)@$@$e)I$I$e)I$I$e)I$I$e)I$I$$!!$AL$$! VH$I$$!!@$H$!I$I$E)aI!I$I$E)I$I$d!d I$I$$!!+// H$$!b V@$H$!xxI$I!--II!**H$I$!~I$I!b*! I$I$d!d I$I$e)@$!! I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)  !@@@@I$I$AXI$I$  :I$A$!I$I$E)+q۱Ge)Aڪ*:ض!ۆ1!&*EѶmE)"IHE)!<Mնl[1&y{vlÆ1"+ $He)^Pm1!'?I|I)5%%m-\h۶ kƀH$i=.TU]QW)6M۶)҉hJVmɪ+O$J2$E Ҋj*\vbئmۯJ_tNk>$I!IڪUhѶ- ʆ(P@ hlHm۶ kzN$GnWUS_m۴k jhSõQ k{?wM@1@)0tc@$HJ ?H2$O蹃jjUۆMZ J:Uo)¿ϒW؇}JHmSm۶JeOYڋUQQwP"H%JB2z=$I& Pi׶mNj==G[uV)OmٺuSNJ¿U6ѶNjZ I2$@J¨j zI$ $ҋʪC 3$I-蹨n`}ۦh۶ڋOfacoJ;~ߵPnۦkQNJ>m?޿ kϾ7=۶E6m 1dɒ ȱpW IR$IJe?.UwEWAH S hh=@ "@r=۶-۶ 鹪j*c%L$*%)@PTUs1ާ9޷mѨn۶1*Ii B%)UE$cf1b E9s<;9$!UQUuO?1K I'1!TEU]A$qĦ1!QW]m#mφ1O@ !b@N&q"1~IH$1 {fYE1--- p /WqfY+ +- &H[͆yFaj qEI_~ X5lfQhhI$I$  $IȄ%)( !A@m$me1A 9G 9=E)!!I f1 x9 #9!Mmӵme1!j*A!-ڶ]Ӧ1m}ۆ1* 9 (Ir %y+ 1"V կ 1&ݒH4+}o *4I$L@DZEyUUV3oIE+4$$)U4@I$DZUU3$I$DZ%)UUUH$H$$!!@@I$H$! ! //$@$%))H$H$E)!I$I$$!! I 1I @$e)I$I e)@H$!a0II$!! H$H$$! I$I$$!! *A E)!I$I$1@  %)$!I$I$e)`E)!^E)!I$I$1@ E)!ꪪE)$!I$I$1  %)jI$H$!bUW\I$I$ a II$!! I$@$e) $@$e)I$I$e)1I$H$e)H$$!bxI!b- $!  I$I$1 0$!I$I$!II!****I$I$1I$I$1H$@ e) E)!I$I$1I$I$1@$@$E)!II%)!ꫯ!$I$$!UUU)$I$$!UUU/I$%) UU1I$!UU1(I$@UU/H$I$$!TUUU@$!b\$$!`p $!%5@ $!I $!a/ D $!b`I $!A/ H$I$e)E)$!I$I$e)E)!`$ %)bxI E)b- H$H$e)E)!I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1  E)!jjjjI$I$br{rI$I$! I$I$!$!E)!I$I$1I$I$1I$He)$1E)$!I$I$1I$I$1@$@$E)! IE)!H$E)!E)!I$I$E)$!  E)!@$H$$! $! I$I$E)E)!H$%)(I$I$E)$!I$I$E)$!I$I$1I$I$1&H$E)xXp!IE)b -5 I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)!****A$@$1I$I$E)$!**I$I$1 1)(E)!訨I1 E)!^*E)!I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1E)I$I$E)$! ** HE)m@X8կ*wS%qH5 1IIE1R"%R$pP$!I$I$1H$I$$!  I$!  @$H$e) I$!!L$L!0$$I$!$A0%)*j %)$!1I$I$e) I$e)1I$I$1 $E)!I$I$e)I$  e)I$I$E)! !+I$I$E)aI$I$E)I$I$e)I$I$e)I$I$d!d I$I$d!d  !I$!?I$I$$!!* !@I$I!!? @!p!I$I$d!d $!$! I$I$!!W AB$DB$E)!SrII$!!5/ H$I$$!!xXI$I$$!!/I$I$$!  I$I$e)I$@$e)I$I$e)I $e)I$1II$e)I$I$e)I$I$e)I$I$e)I$I$e) E)!I$I$$!!UW  E)!I$IE)!@$@$E)!zzzz@ !b`I !A=I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$$!!. A$I$$!!@ $! I$I$$!!I$I$$!!**I$I$$!!**H$!X`I$!% I$I$e)I$I$e)I$I$$!!I$I$$!!*+I$I$$!!I$I$$!!??I$I$$!!xI$I$$!!I$I$$!!վ**I$I$$!!pPX!$I$Ey! UUU`I$Ey!UEy$A5pdEy%y t"E%q @%yi~Bm%ya ~ I%qX_  IiHv# m`@_I$k lX@UWLH$ H jI$@WXI$I$8@I$I$!!I$I$d!d I$I$e)I$I$$!!I$I$$!!** $H$!bTU!bI$I$$!!I$I$d!d I$I$d!d @$@$!I$I$!ﯯI$I!I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$d!d I$@!bWT0 !I$I$$!!** I$I$$!!  A$E)!{Y I$$!!I$I$e)I$H$$!!I$I$$!! **I$I$e)I$I$e)I$I$e)I$I$E)I$I$E)H$H$! I$!II!**+/I$I$E)I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$E)$H$%)$!H$H$!\V\ !! E)  E)!H$H$$!!pXxI$I$$!! % I$I$e)I$I$e)I$I$$!!I$dH$!W0!@$I$!I$I$   !I$I$E)I$I$e)I$I$$!! I$@!bW\0!!I$I$E)@! I$I$E)A$A$$! I$I$$!!***I$I$$!!$H$!`XV!I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)@$@$!`PPPI$I$AI$I$ B I$I$!A*N$A$e)?1ͯ ?9~@$!0ii3e)˶t-E)b,ضmݶE)[6`[me) ~mcۆ1*j  )) _]۶ N*ܒMY- Ҫjem&B.jKwڶm pZm;-kڳ;HIj\Ȓ ʢI$I$ ⪪Za߱۰J>c$$JҪ(Z`-$0J*dkknjRumoJ=}PC) \m_nJjO$0H ؊Jmۢm ªjmI$1$NUMV?ɨ9鹥131Iڨ.Um/i-JoHMѶ]ն J7;_ؓ' Ҋ߾W^۶mj£*_Xvk-ۋ4zzI$I$ -ªZ~vNj`mmӏjA۶e#m Z}۶m#NjOR#I$ Jªw'I$N]UUJlm6 )jJ,G Wd’$ JZ}D$H$E)ª)pI0Iڋ??JE6m{ j7he jw_$ˤP˶jʪAmmn tA۰i۶L *&h%x$J)@P\V`HIe) %)hBA 9_9= ?mǦ1:E)*I$Ie)!<!mE);cێf1ێcۆ1>O$O'1I$A $!X NfQ+++) 1SqfY----#I$yfiꪪ qEI~ :9fQE)~xI$I%)!뺮I I0%)Ajm4Eڶ%)b f ?yiz!I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!*I$I$$!! 1$1  1@$ !ࠠI$I$8I$I$*"!!! %)$!@ H$!UUU$AD&@$!UUH$!U  IH *$I$P@I$PH*I$$IXHUiXH+ Ib-9 iP Im9 qP*-I %X-eaտ m%qX>(#m&%y)$E +ےfկ*/!] *1"öS (I醡EyUTP@+EUU1 hE4)DZ =41ɶmۆm%4DZ@4I$PDZ%)UV`  1I$I$$!! E)!$ $!H$H$!I$I$A I!b% @$@$e)I$I$$!!I$1I$I$e)$!I$H$!A}8!A$A$!I$1I$I$$!!(A$I$%)!~ E)!  1I$I$e)@$H$e)1I$I$1$@$1 I%)$!$%)$!E)$!ꪪH$H$!I$I$!!$!H$I$e)  E)!I$I$$!!(* e)  1$$!a`I$I!A?? $!!  1H$!I$I!*$!+*** @$11 1%)$!I$I$1I$I$1@$1I E)!I$I$1$%)$!E)! 2 0%)xhh`I$I$$!b$!I$`$!aW\ $@$!a    1I$I$e)I$I$1 1I$e)H$@$e) E)$!H$H$e)%)$!@$%)$! !AE)!//+* E)E)!I$I$1`$I$$!AXX %)a E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1 @$%)p\I$I$I$I$I$I$!!!E)!I$I$1I$I$1I$I$1H$H$E)! IE)!I$I$1I$I$1@$@$E)$!IIe)I$IE)!U׿E)!E) E)!ꪪ@$@$$! $! H$! E)!iI$H%)(E)!I$I$E)$!I$I$E)$!I$I$1؂m۶mE)E)I$I$1I$I$E)$!I$I$E)$! I$I$1I$I$1I$I$1I$I$E)!****@$@$1H$E)!E)! A$1)(I$I$E)!1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$10E)`I$I!A?= E)!I$I$HE)UUUI PH%% ɝ&`$qH 1IǩE1@$@$ǩPPPpI A$!A I$I$1H$H$e) 11I$H$e)H$I$$! IIe)H$L$!A $! I e)I$I$e)I$A$e) Ie)I$I$1 @$1I$I$e)  $!!!(*$H$!x\T !%I$I$E)aI$I$E)I$I$d!d I$I$$!!//I$I$e)I$I$E)I$I$$!!E I!.I$I$e)I$I$$!!I$I$$!!7*I$I$$!!I$I$e)I$I$d!d I$I$E)a$!  E)!Êm؊5E)I$$!bI$I$$!!TV^yI$I$$!! I$I$$!! I$I$e)A$I$e)I$I$e)H$I$e)I$I$e)$!8I$I$e)I$I$e)I 1I$Ie)I$I$1I$H$$!!$@$E)!zZ IE)! 2$!@H$I$!A(!I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$$!!??/  $!!I$I$$!! $$!! I$A$$! I$I$$!!***I$I$e)$I $!>I$I$e)I$I$e)I$I$e)I$I$$!!I$I$$!!/ I$I$$!!I $$!! @$! $!$! **I$I$$!!X|||I$I$d!d I$I$E)I$I$$A!5UUU6I$Ey!UUp$Ey!UEy$A@pLEy%q NB HEyq C I%yi~I%ya_ ~ H%qXW S iiH_v$ `@_I$k X8LB$ H ZI$@UT8$I$I$$!!**I$I$$!!I$I$e)H$!bT$!I$I$d!d I$I$d!d I$I$d!d $H$!I$A$! I!*+/?I$I$d!d I$I$E)!* I!(>I$I$d!d I$I$d!d I$I$E)I$I$e)I$I$$!! I$I$$!!_I$A E)!]{I$I$$!! I$I$e)H$I$$!!I$I$$!!** I$I$e)I$I$e)I$I$$!!I$I$E)I$I$E)H$I$!A$$!₫I !/+ I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$d!d @$@ E)!IIE)!H$E)! $H$E)!I$I$$!!I$I$!! I$I$e)I$I$e)I$I$e)  e) !I$I$!~I$I$! !I$I$E)I$I$$!!*I$I$e)$!P! I$I$E)I$I$d!d I$I$$!!7-5I$I$$!!׼%I$H$$!!I $! I$I$$!!H$!X`! @ !bp I!b55I$I$e)I$I$e)I$I$e)@$H$!bpP||I$I$b!ꪩI$I$! I$I$!I$!**:?f1a]dž1'$I I%) ؇}ۦ1 ]Ķm9 %)m8eۆ1!s?mmѶe)*m49r IlHkڨM--Ѵ-Ɋ*Rm_TmnJ3eٱ{NJHۆbٶm Ҫh " J@hV`ڱmnjJd ʢ溘hFm jңZmöiNJwo `!I$IJҩzR*r9'| ͒46 [m蹩h? VUUe]ۆm[ڋUWQcj?hڋUQUuMXۦm  R}CJ z_زm6ҪlwPH2iJHZ-R%IkO_m۬u+-k8AI Ȑ- ꈦzM `)WsC JºzzIDɒ ڬUeE`h۶m6J¨k#.OwH)& hvm ۋ_ϒ IjR$I$I *ªBWm-JP5lvN*z?m\/鹬oFM[U[*cI'I$NUTuWc (@&J@pX۶1!|۶mٶ%)# l9m۶1Aֶi1j*@%)@Mcmݶf1nE)!@$!0cǶ 'f1*xM۶mE)*" 9$! x'1~I% 1yͿ N)RfI!)--- ` fifQ -ۆqEi?qEQVW :3:fYE1xxxxH I$%)I$I$ ?9Eَmf1A e1N{߆1 s}%)Aim1) 9 ;l1d;1! E)@ im۶1+$I$Ie1 ۰m۶lE) ɒA&9E)EQ]mlf1 : <9!s`I$I%)5UA%m蹪*ON ?߿\.jueԕ;,H$2蹊nUێ8 J}veA$ ۋWeVe? ۋUUU?I$P蹢&Fmm۴ *t\m۴-JʨOm馁NJ¿F >鹨zt?N$ pU I$)J@}cZmڬҋ_UC$ 1g wA$ia D;mn |ψC$A ɒ*O7dێm J tJ۰l) pH!7P#)"W)¿zJ$u$2 *+zUh۶J}Cim߷蹫ꮗ;%ٖj٠ȹkI$INUQUՈR܀=֬)ʆ\h6mJlF$IHr ª*/$H$ɒ 뇹mw kEUUJ$Iن ʪꢚ\m۴,ڴJc+nJOH$II *`۶}n*Ҍߵ`ög JͿhm۶ij4@$k @`PV1l۶m;E)j  I 9!eUE >9=m4m۴E)cm۱aE)b+m6m&E) UTUH$I Ai$I$E) UUUII%)A**A$I$ H$I$ A* ɐY--%-m&2!iZz  ! 5 I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!! A$I$e)I$I$e) e)  $!I$IHUUUI$ HUU!HH$!I$IPH[P8xI$ P8H$H8Vd`P8 / m qP-7 %yXU-7 EaU }%%fi#o&%y)&EU, --"@%qj@/ IS?% %q5%%1&Inݪ1&ז$m4,T4,IDZ5(4/"@DZ4!#ۘ DZ~%I$p8EUW\p%I$I$EUUU/ &E 4)@DZ 41۶m$%4-HH@ 1j"5i%!X`#I$L%$!UUVX&dB2$!ap` I!a ?- H$H$!|\\xII!%$!+***@$A$$! I$I$$!!*I$I$e)I$I$e)I$I$e)I$I$e)II$e)H1@E)!H$H$E)!^^^^ E)!  1I$I$e)I$I$1I$I$1I$I$1@$@$E)!IIE)!H$H$E)! e)H$H$$!I$I$!!$!I$H$e)  e)I$I$e)I$I$e)@$I$e)I e)I$H$$!!  I$e)@$H$e)I$I$$!!$!*I$I$$!!?@$A$e) 1@$@$1IIE)!I$I$1I$I$1I$I$1I$I$1I$I$1@$@$E)$! E)!0 2E)I$I$$!b$!  %)$!ꪪ1 1I$I$e)1 1I$Ie)A$I$e) IE)$!I$He)E)$!E)!$%)p` I!A?' E)!I$I$E)$!d%)Z$H$e) IE)!I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1`2 %)x蠀I$I$!U}zI$I$! I$I$!!E)////@$%)$!I$I$1I$I$1H$H$e)$@H$E)b ^!%) I$I$1@$@$1IIe)I$I$1 E)$!ꪪH$I$$!a^V!%) @$$! $! H$H$! $!!I$I$E)$!*I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1۶m5E)! r۶mE) %I$I$1$H$E)!! E)!+///@ )(I$I$e)e)!I$I$E)$! IE)! I$I$E)$!H$H$e)E)!I$I$1I$I$E)$!I$I$E)$!I$I$E)$!***I$I$1I$I$1I$I$1&E)bx@ E)a -I$I$1I$I$1H$$E)! E)!.I$I$1  PH +/-po7{'%yX-]1I@HE,@$@$)PPPPI$I$1I$I$1I$I$e) e)I$I$1I$@e)I$ e)I e) $!d$$!a0$!!I$I$e) 1I1I$I$1I$@$e)I$I$e)$A$$!!@@@I$I$!H$H$$!TT\ !%)% I$I$E)I$I$d!d I$I$$!!*$!I$I$$!! I$I$$!!I$I$$!! I$I$$!!H$!bx$!c !a I$I$e)I$I$e)I$I$d!d I$I$E)aI$I$$!!II$!!/???X6hE)h訨I$IH!aI$I$$!!I$I$e) I$e)I$I$e)A$I$e)I$I$e)I$H$e)I$Ie)H$H! I$I$$!!I$I$e) I$e)I$e)  E)!I$I$$!! H$H$E)!\\\XIIE)!H$H$E)!~I!b(I$I$d!d I$I$d!d I$I$$!!55-/I$I$$!!I$I$$!!* I$I$$!!xxI$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$$!!IIE)!H$$! I$H$e) $e)I$I$e) $!I$I!a׾($$I$!I$I$e)I$I$e)I$I$$!!I$I$$!! I$I$e)I$I$e)I$I$$!!UV^$! $!*** I$I$$!!\\\\I$I$d!d I$I$d!d I$I$$!!555I$I$$!!I$I$e)I$I$A!UUU6I$E!UUp$Ey!UEyAHpmEy%q I%y%q C" I%yi~I%yaW ~ H%qXW R# iiH_NR[ i`@WI$mP8 I2$ H Z@8$!UT8$!UUU@I$e)$H$$!b^! I$I$d!d I$I$d!d I$H$!I$I !II!??/*I$I$d!d I$I$E)I$I$d!d !I$I$e)I$I$d!d I$I$E)aI$I$e)I$I$$!! $! I$E)!A I$$! IIe)I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!I$I$E)I$A$$!!YQSSI$H$!I$I$! ! I$I$E)aI$I$d!d I$I$e)I$I$d!d I$I$e)I$I$d!d I$I$!!=?/ @$%)$!E)!H$I$e)E)$!ꫫI$I$e) $e)I$I$e)I$I$e)I$Ie)$@$$!!@@$@ !I$I$!^^~^I$I!!I$I$d!d I$I$$!!* I$I$$!!H$@!\X` ! I$I$e)I$A$$!!RrI$I$$!!UUI$I$$!!5I$I$$!!I$I$$!! I$I$$!!I$I$e)I$I$e)!I!I$I$e)I$I$e)I$I$e)H$H$ Axx|I$I$**.I$I$AoI$I8E)*Iɟ1II$(B=1ajl۶m81 sM$I21⒪jmѴm6f1*h"cۦ1b o9!4ɓ$IgE)Ur1L kΨM$i ɪ_n:NJڟ\mѲm[NJ?`v)ڶNJ\MۺNJ?M I fk۶m?Nk_ʅq&HDO>H zjhI$ ۋUIUUmR IJF-ڦmZN)z_$٢LۦjʪUeˢJ}OIdH)ªRpJ\و}-Jz\4I*ҶjLhA'I ۋQ]U\ǟ?NJ}RҠ-۶JjPN۶hږJe9  =;mݸmSj\h$ jʕU\Ut(öl҇꫒=-Z6m۪ {ψONm*w&cɟ&JUh۷mJw?3KӴ Z*Hv{]N)m?_ڋUMdE I :CBM}꺅D]mu ʛeqk[j҈?R I2%I ʨjH'rjMlMݶ.)~?$I$6.$Yjz X$k PUȓ$I$d TUUU$II%) ?mۦmE)b* H9\ Ν1Ʋ1"3f1lvlǶ؆1??q$A{|AU$f1 QSU H$I$9AL$I$1b\|I'q$E):~I $$)bMIS a% )2ᆁ%9JJJI$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!! II$!  H$H$!UUH$!UIH!I$I$Q!@I$IPH*I$IPHI$ XHU"mm7 `H m&hiPUIr-Y%yXU @ 1I$H$e)I$I$e)I$I$e)I$I$$!!(I$I$e)I$I$e)I  e)I$I$$!! I$I$$!!I$I$e)   $! I$I$$!!I$I$$!!I$I$$!!/ I$I$$!!TVVVI$I$d!d I$I$E)I$I$d!d I$I$e)I$I$e)$!p ! 5I$I$e)I$I$9!UUUp?%y!UU0oEy +TEy%a%$@Ey%y $#Ey%q I%y%q t@%yi~ @%y`W O# i%qPv HiHWNR[ m`@WI$mP8IH2$ H(jI$@@WV ! $!`X!@! !!*I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$$!!*I$I%)!@$@!!I$I$$!!I e)I$I$$!!I$I$$!!I$I$e)I$I$e)I$I$$! I$I$d!d I$C2$!H$I$!H$@ ! ! I$I$E)I$I$d!d I$I$d!d I$I$d!d $!! II$!! H$H$E)! E)!H%)$!  1I$I$e)I$I$e)I$I$$!!*I$I$e)IIe)@$H$$!!`PPp$!I$I$\TVI$I$!II! !@I!b+%I$I$$!!I$I$e)I$I$$!!I$I$e)!b$I$I$$!!u]I$I$$!! I$I$$!!~_A$I$$!!I$I$e)I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$! I$I$ Axz:I$I$A*+I$I$A*" I$A$!b*!)؉E)a*)1oئÆ1% Ć1!LI$I$1!?[-۶ E) j*%)A*  Ie)IDIE)%zNUUtUwmضm; UQUUr)6l kڽ?` G$I*Ҧ*}cgmcm]6Njz.k|DINɺWmE7nJw}?~ ڏU"IR )ʨ}';'mEѷ-3݋U#9$C*ʪjh.TUDtU F@*@ma$f$-YUUPjm[-JoJQU-)?zh??ҋWEuJƮm[ *?HN5m)©*)Rm۶m:Nj_cvkNjU H9Q J†Zކl޶mJ«\"Y4IjbzA @ zI I$-UEUU\m۪-Nj՝k+6n{ ۋMOwA  @WmQq_J*-63$ITHB-ȱ rD P ڽ=.JAM۶]Q-);`J?N۶Ѳ )?H׶ )c@%$J$!pPtViڶME)!ۆm۶l%) 2lٶ.%)B%)TUUU 9I$M&B%)UW] B %)A$e)" E)<e)檣mme)h۶ME)am6E)!UTVNb' 1wI$N$E)sɐ ɐPeA %%%%SfieI/---qfi`(qEQ@ XPfaEAxxxr'HE1bhI$I A8II b 9ضm;E)!yI$iJA۰mۖl%)bmۢmڶf1]ZF[1m̶؆1 9!6 9 B۶l6l%) m99 s6l;1 jmv ۦ1!(O$I$%!UU$ '-H3nh&ȱkZJm۷mB ANlخmN k?OHk,Ji[m*Wl۶]JhH R$I Po)>߀M$I!ٶ *AKvTN ?t42ٲ5bȱj;$IAۖȱwWD@]#JO=$ic)+-mmѦڧ*ZN)Amu[- W?-kEUUUw6ܴm6,ȱbz6E,I*7#I>$ȹzꊈ-#9$IҧzWl{A۫J??;%Җm۶ȹJp\m[ .뺋JʯC+$ˑGڇ"9$ɖ/>ȹy}$I:kAjm$k9Up $J%)U6mɓ$!Ur$I$J UUr?I$j!~UUt$I$J!UUU;؟y$]U xAb^af1+vٶmf1!UXW AII0E) =I I$%)!e]U6l6mE) h4MvE)bn+@!0 !dH$!) y$9_>I$I E)!I$I$ I$I%)!* A$I$9A I'IQb't q$1)+ !&SN ik++ M$H$EQ!WTTTI$I$e)I$I$e)I$I$e)I$I$H!UUUI$ H!UUIH!UI$I$PH_I$I$PHUI$IPH IB$XHI$I `PU Il-7 iP I-) %yXU*%7E`Uo$'fanR/fX_Z&Il$ X+Sr$E*, IiU% 'Jp[%y %( /*1(/J%P?3-imDZ*3$!T4J$DZ$!TU4$I$DZ$!TUU4H$I$DZ$!TUUUI$e)3I$$!U3@I!4,vmDZ +4 !DZE@4DZE4/@DZǩ4"IhE@,I$H%EUUTZ,!xI$E U4!NDZ )4/P Bǩ /+8 DZz_, hfx蠀" uBc EyW_l2: %y)Z` 'z%$q UUVXII$!I$I$$!! I$I$$!!I$I$$!!(I$ e)I$H$e)II$e)@$@$$! I$I$$!!**I$I$1H$H$E)!VVVVI E)!I$I$1`$L&!axx $!a %)$! 1I$I$1 0`$$!Ap$@!E) +-$H$E)$! e)@$@$$!I$I$$!b$! I$I$$!!II$!! I$I$e)I$I e)$I $!a'I$I$e)I$I$e)I$I$e)@$I$e)I$I$$!!.H$H$!ؠI$I$!$!!I$I$1@$@$e)IIe)I$I$1I$I$1$$!b` I$$!a/E)$!I$I$1I$I$1  $!ࠀI$I$$!b E)/H$H$E)!IIe)I$I$1I$I$e)1@$H$e) Ie)I$I$$! I$I$$!!  E)$!I$I$1IE)!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1`$%) E)!`$I$$! WVH$!I„ E)W(E)!I$I$1I$I$1 %)$!ꪪ@$@$!xhhxI$I$! I$I$%%% !!%) $I%) $H$e)E)$!H$H$E)! %)$!I$I$1I$I$1 1I$e)I$I$1I$I$1I$I$1I$I$E)$!I$I$$!!xI$I$d!d I$I$!$!%)!I$I$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$1I$I$E)$!I$I$1I$I$1 E) E)!  E)!hH$I!A8E) I$I$1 1I$I$1I$I$E)!0@$%)a`X E)a H$H$E)!I$I$e)E)!I$I$E)$!I$I$1 E)!E)!I$I$1I$I$E)$!I$I$E)$!@$%)XE)!I$I$1II$E)$! *HH$E)bW@E) I$I$1IIPH=/ /7W$qP--/-1,N$DZWW1H$H$DZ$!TTTTI$I$1 E)!j$I$!A, $!!I$@e) 1H$I$e) $$!!@$E)5I$I$1 $1I$I$e) $I$e)1I$I$1H$@$E)!@ $!pI %)I$I$d!d I$I$E) $I$$!!I$I$$!!UUW\I$I$!!- I$I$e)A$I$$!!P@ $!`I !a5/H$ $! I$I$$!!*  $!@@I$I!&I$I$$!! I$I$$!!蠠I$I$d!d   ! I!**E)!kIn۰ E)% H$`2E)!  E)!I$I$$!!I$I$$! I$I$e)I$e)2 $!@!@$$! @$1I1$@$e)$@ !b``II!a55I$I$e)IIe)E)$!ꪪIHE)!@$E)!E)!@$H$E)! $!@!I$I$d!d I$I$e)I$I$$!!***I$I$$!!I$I$e)I$I$d!d I$I$e)@ !b`I I!a= I$$!!  E)!I$I$d!d 1H$H$e)I$I$e) $!` $!5I$Ie)I 1 $1I$I$$!!I$I$$!!I$I$e)  $!!@@@$H$!$$!I$I$!! I$I$$!!V\\\I$I$d!d I$I$E)I$I$$!!I$I$e)I$I$$!!@ !b`I!5 I$I$d!d I$I$d!d  ! !* %a!5UUUI$Ey$!UU0ߖ$Ey$!U XEy%i$@Ey%q #Ey%q v"ڒ%y%q~3@%yi_ @%y`W O# i%qPv HiHWNR[ m`@WI$mP ZLB&$@W_| !% H$!*@$H$! ! I$I$d!d I$I$E)I$I$d!d I$I$d!d $!b@I$!bUI$I$d!d I$I$$!! I$$!  E)! 0I%)!zz $!**  1I$I$$!! I$I$e)I$I$e)I$I$e)I$I$$!!I$I$d!d $C2$ $!訨I$I!*$I$!$!b@PI!bI$I$d!d I$I$d!d I$I$e)@$! !* II$!!  I$I$e)  E)!IIe)  E)!I$I$e)I$I$$!!I$I$$!!** A$I$e)II$$! I$I$$!!px^_H$@ !I$I$!AI ! !****@ !bpI $!b% I$I$e)I$I$$! *I$I$$!! !b@I$I!bUI$I$$!![j"I$I$$!!I$I$$!!V\`I$I$$!!I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e) $!`I$I$AI$I$A?I$ $%)bI$I$E)$ $%)Fl7^e)ʲm4-жE) y;1amm1j*@@%) _9>@%)b"  m6l׶c.Kϸehۢ Jc>l[i=Nj?~A&ɓD QYUZ@*UG$ɜ )ҩʪkm۾m-k?_m6k JҪjhkm; NkJl˶h ʪ褝A۶mFd ZmˬmQ J:Rlնe[4)*bzkR)ڋj`,yjҢe}kW\mJ 1ڦmeڨFmݶh hw6%mR'!蹾Jt9&,鹪bW!Jmٶ j‰O[uۦ J`Vn=Sҋ ftI.TU՗w&I$ ۬]UUenkcm_ېm-ۋߚZmӶJ²jw $I$ҫҊ}U&mJ&hs-w9]i ȱ)`FlȳM j96m0 cUٖ J—tH$hg ꝝc<& ۋ_U]-I0$iڧbض-2%!@p iA@%)0?A?k 1ܱm߆1 1 @%)$m:-Z1AjI4M$1%)qWU äI 9$!wW H$I$9$!TUUW ω1A& #9@ !$A I$I<1??I$I$ Hɐ ˔Le9//./ NfaEA +-Pqi  `qEQ@@~Z =fiE9xj%X%E1II$$)bI$I$  <9?! Ϗ9 ??A!EUUu&mvhf1kmUf1膪" mا9 ?m-ff1 kmۧ9 iնkۢf1)%) oۆiǦ9b" @%)@ ??Ϗ1jB @%)L@@2%)j`9IJ 5c9I(Ij C۴M \tUh궶kJ"$$Arf*\?J?+$A$҇*C$IR )9hٮF[>ȱz}HdK($!!I$I$1I$1H$@ e)$C&0$!I$I!a?/ I$I$1@$ 1I$Ie)I$H$e) 1 1@$I$e)I$Ie) 00E)!ZZZZ I$!*///I$!*I  $!!I$I$$!!II$$! I$I$e)I$I$$!!I$I$$!! I$I$$!!(( A$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!I$I$d!d I$!**@$H$E)!z^_  E)!//-- E)! @$E)!I$I$$!!(I$Ie)I$@e)I$Ie) & $!b`I$I!a%5/ 1 1H$H$e)I$I$$!! A$A$!  1 E)$! $E)!IE)!/?H$I$$!!@ $%) H$I$$!!@$@ !AI !b % I$I$d!d I$I$$!!I$I$e)I$I$$!!I$I$d!d I$I$$!!// I$I$$!!I$I$d!d I $! I$I$$!! E)!ύI$I$!!(A$I$e)H$A$e)I$I$e)@ $!`I $!?/ I e)  1I$I$e)I$I$$!!I$I$$! I$I$e) $I$$!!I$I$$!!U׾*@$@$!!$A$! I$I$$!!VVTT$H$!Ax ! -I$I$$!! I$I$e)I$I$$!!I$I$$!!zI$I$d!d I$I$d!d I$I$d!d @$H$! I!+///I$I$$!!//55I$Ie)I$1 y''%i$!UUUoE! UUMEy!$Ey%y dEy%y d"Ey%q vI%y%q~3@%yi_ @%y`W # i%qPN:c iHWI$kX!VZL„$ H!UUUP@$!I$I$E)I$I$d!d I$I$E)I$I$e)I$I$d!d  !I!bI$I$$!!I$I$$!!I$I$$!!I$I$$!!** $!H$I$e)  $! I$I$$!!*I$I$e)I$I$e)I$I$e)I$A$$!!I$I$$!!** I2`&$! I!**+/I$I$! !b@I!b%)I$I$e)I$I$d!d I$I$$!!I$I$$!!I$I$E) E)!I$He)E)!㣢I1@$@$E)!I$I$$!! I$I$$!!I$I$$! ****I$I$e)I$I$$!!ࠠI$I$E)$H$!jjI$I$II!+I$I$$!! I$I$$! I$I$e)I$I$e)I$I$e)I$I$$!!I$I$$!!** I$I$$!!UUVI$I$d!d I$I$$!!I$I$$!!**H$I$$!!I$I$e)I$I$e)!I$I$d!d I$I$d!d I$I$e)I$I$e)@$@$!````I$I$AI$I$ *JI$I$!aI$H$$!mfe)b2 ~ 9 9ene) 1*E)! }m9? ?s9{ɖm$! W$I k'IrɰJګF$9 ɪftm۶M[kڪZZ*zg86 sOm6J?e]M_Nj?wc-m۰.k?Ud@L )꺼U nSNJ{O# d8 ʪm$d˴k*c6lǶm j-mضt 㧱*\dCJJjꊪPdI)ªW]Ѵo۵j;kII'ڋUU]9mm?OۘyJ}UضmۖiF I h϶-;Wi{NjZ$)J¢hFmEۺ*MFmoJϚA$I I 蹪*_ڶhY5 ۋ{MlnJ?};۶-ۆm@Uڶ j;i$ȱ kI$I# ۋUVUM`nUW]T\" JKc'ҋUEUUF\ۦE *cX'L$ $!P\TV I"Ie)*IH$1%)UUD۴mݶ1cAkf1ꪡ ۖc;9smۄib1+ 9?9 Ƕi1!? m9A$n$1$!QU[U! 1>hm&E)bL$ E)I$D$E)AtI$1] DNDe9/ yfaE9+-=5!!qfi   qi=цiEAXXXc2&c%e9pKҢI$%)7I$I$%)?1q$1vm۶Æ1mm۠E)$C$HE)jI$A!uUU I'1 Ͽ@@$I$)bmG9 w!I%)L*Vm׶E)iضf1ye1(Ϗwf1m1le1C$I'f1!M;E) x}e1\AI) -}?mVE۶ ?mm۶ }Oٶm)K1mM#m-Nw_II$jUUWJRm۶J=cF I,Ej !%O&A?چ+^t$A'jX_pIk$j8Uk*$i$J$)U[7 I! z I$j)UU`I$J!UUC$y$! U]U j#vQ $I$f1!GVUUC۶iE) mWmE)*"jvضa'f1? 97ce16I$I$E)!UYUI$K$e1!uUVtum۶f1ɏ1$I$A%)*h۶mڶ%) UAw7v`+mE)a:Jf1!$ 2$I$)hmNE).m E)!!!C$I%)i Gۆ1A* '9nۆ9Aj*9& e1s+le9ߪvt@E9A&߶& fI ܶ&AfIߪ Ib۳EQE)U VfYE1Ib$faE9U%7qeI  } yfY*is i* %yr + +!떝 *+%ql:$ѧ+%XZՆExj' EHWWߨc miHvb$ `H_ vWqP o$9%PEaU }%G fi #o %yտ (o&Eտ(r&f- r@ 1&ߖ& 1)VH3,nm +*3$!U1HI$$!UU1$I$$!UUUI$I$$!! $!$$!!*A$I$$!!)@$$!$I$$!I$I$e)I$I$e)I$I$e)H$H$E)!!I$I$$!!*&DI$!UU/0 l!1(  4-@&ӧJ1IIEՕ3d1mDZEZj%I$I$EUUUT)mɖdE4@ LDZf '4/J5@ DZ蠠/-I1! l~( d(%yꪠ@eiWu26j%q)Z` I$L%i$!UUVXI$I$$!!I$I$e)H$I$e)I$I$e)  $!I$I$!a?@ $!`  $!a   @$e)II$!!.H1I$I$e)I$I e)I$Ie)I$Ie)LB& $!a\p $! I$I$1I$I$1`&@$E)I$I$$!B ! A$I$e) $I$e)@ !`I A%)a7 H$H$e)I$I$e)I$I$$! I$I$! **** `$E)^! I$H$!I$I$ I$I$$!! 1L$ $!a\p $I$! 1I$I$1  1I$I$e)@$I$e)I$I$e) E)$!I$I$$!!h`@@I$I$bpI $!b%  E)$! $e)I$I$e)I$I$$!!I$I$$!!*** I$I$e)IIe)H$H$e)IIe) 0$!@AL$!a vH%)II$e)I$I$E)!I$I$1I$I$1I$I$10E) $! I$I$! * I$I$1I$I$1@$I$e)I$I$1I$I$1I$I$1I$I$1H$H$!I$I$$!BII! E)! $!I$I$e)E)! E)$!%)$!I$I$1I$I$1I$I$1`B&L$!ax! %) --I$I$1I$I$1I$I$1 $!  !I$I$!!!A%)!I$I$1I$I$1I$I$E)$!I$I$E)$!%)@I$ %)bշE)!I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$E)$!***I$I$E)$!I$I$1 I$E)! I$I$1)(H$H$E)! E)!////@$@$E)!I$I$e)E)!I$I$E)$!I$I$E)$!@$@$E)!IIE)!I$I$1I$I$1I$I$1`2$I$!` AE)) I$I$E)$!I$I$1I$I$E)!I$I$1I$I$1IIPH- yyWiP////1$ǩEV-H$H$$!TTTTI$I$1  E)!I$I$e)1I$I$1HE)$!@$H$%)$!  1$$%) ($H$1 1@$11I$I$1 &$!`$!I$I$e) E)!Z^^^I A%) I$I$!  E)!I$I$e)I$Ie)I$I$e)I$I$e)I$I$$!!I$I$$!!I$I$e)I$I$e)@ 1I$I$$!!(I$I$$!!I$I$e)I$I$$!!I$I$d!d  @$!b`p I$!A -?  E)!%%// I$C$!H$I$!.@$!a$A$I2$!$$!a H$I$e)H$H$e) I$!! I$I$1I$I$1H$@$e)I$I$e)I$I$e)A$I$e)IIE)! 2%)x$A$E)***-I$I$$!!||I$LH!(I$I$$!!I$I$$!!$! I$I$d!d I$I$$!!I$I$e)I$I$$!!I$I$d!d I$I$d!d I$I$d!d  @$!Ax$@!$! I$H$$!! E)!E)$!I$He)I$e)I$I$e)I$I$e)I$I$e)$$$!(@$I$$! I$I e)I$I$e)1I$I$e)A$A$$! II$!!/I$I$$!!XI$I$$!! I$I$$!!H$@ !XpII!%-/ I$I$$!!I$I$e)I$I$$!!I$I$d!d I$I$d!d I$I$d!d I$I$d!d H$@ !I ! $@$!` I$!A-@$I$e)@$A$e)I$I$$!!* I$I$%i$!UUU0 ɔ%y$)% IEy%q $E%yI$I$EEymlE%yꪪ #E%yW v2 i%yqI%ya_ " %qPSki@I$dP!UVhI$I$@!UUUTI$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$$!!%I$Ie)I  E)!IE)!L$I$$!b^^!!$!   e)I$I$$!!*I e)I$@ e)I$I$e)A$I$$!!I$I$$!!****`B&dB&!II!??/H!**I$I$E)!I$I$e)I$I$e)I$I$d!d I$I$e)I$I$d!d $! E)$! @$E)! 1@$@$$!I$I$$! ****I$I$$!!I$I$$!! I$ e)I$I$$!!I$I$E)aI$H$!jzzzI$I$bxx I!b--@$I$!b^W !$! I$I$e)I$I$e)I$I$e)I$I$$!!I$I$$!!I$I$$!! 7I$H$$!!^I$H$$!!II$!!I$I$$!!I$I$e)@$@$!bpp I!b %5 I$I$e)I$I$e)I$I$e)I$I$e)@$@$!````I$I$A<I$I$AO $I$!A I$$E)anm[횶E)A$I$(BbE۶ME)!Rlݒm%)a@ m۲m%)A @vmۆ1!mcۆ1!?tvnlÆ1!!yO$IW5I"$K ҮJꮡMemʚ\EҖ )ҢJp}m6k?mim-k&"FH}x TUUTpokܝ?UUW$I*Ҧtc{ }?1I% e}׵S{kRm۶F6NJcm۰jzRç/&l)²nFe~nN)«;_AI 蹺*1$ieӵ ۧjCڶEڲ)ξp; Us۵o8.js;۰M- *hR$B}jJª rګUuUQ3&q!v-ȱ)FӶ ˶m *zPH*! ecö-j7vmؖa蹫R$Ȑ$G*ŠrF@ \]]ص; j}kI$A-UUQ6۶ns-ȱ.h;dHބ9蹚ڲc?,JDvMǶmn ϋöܲ9jE9@`AE)!m۶ ;1bhI$N$1! I$I$1$! r1aȢ,me)ud۶m1:*?$1!A@$!B 1!T$!1?mqfφ1ϝp$N$1I I$$!*HM$E)I$I$ ANDHDE1>?4? 9 RfaE9%---.qfa qa 6X5ieQxxxhb&:`5AH$I !AjH$I$$)AkI$H%)b ɟI#f1!m;qE)A*i mE)bF!I!E)$I$@2%)b j!A A5II$E)!?mؖmE) IdȐE) 9 9 ?x9eǎm8e1*s1C$I%)⪪mE).Z)I<)) UU\0$) U`@$) U_ICK!F Hd$IR *C id[鹦AH Dz =m wi۶鹪,pD^۰. n*n?]ǵmN sm҃%j$J!pPX\ImE) IL$E)!Bq19b؆me)<1'A$!~uM]mӶMSe)fdH!I%)*LHI2E)* 9e)檠m۶MѶe)b&I$Lb$1!UVS$Cd$E)!UUUIIGe)A.I0I$E)AjII$E)*jI$I%)j?II$E)?/ /wfYE1++-- &p qqfa  @"#qEahh~fiEQ^Z5c36eA`Iq$E)*$I$f1I$H$E)IH$E)wI$I$ A@$ AE)c{q f1b*$I 1!eVUF$I$E)J H$2!ABm.)ڶE)J!b 9?a۵mE)*cömۆ1{I4I$e1!UdUU$aH%)$$I$)* !b !b L '9?1Ne1A$ IE)1@ !oϟ9 ?Am=ۆ1 9fO?e1  $I$1!EUUUblE)bC;nf1*|mAl;f1@ ! HI$IE)!UUĎ ;E)a&mӦm3E)jҲf1{!% E13+rbےE1xiSE9! Ib%I fI!U In&fQ! Ir$) fQE)U InHfYE1U o@fYE9U ɟefaE9?߶$ faeAկ_ieIU Ib$)ieQU ߒifQի* In$'ifYU I~$ qfY SnqfaU m"yEQ_ZkqEQ$ Ifqi] kq%Q lfqEY 6A XyFa % I>-yFaUhb qFa% $HIyfi$'y$b Ćq /U0 ܔsq* PJ/ +%P . ++"Iw,)0  ,#h, `f_(mf/ߖܴ U /!ϒ-οfW/% =:-z3H$$!U, I$$!UU1$I$!UUU@$@$!XXxI$I$5=/II!I$I$d!d  $$! 1H$H$e)1I$I$$!!!I$I$!bVUVI$I$ !I$I$e) $! @$I$e)I1 1@$@$$! H$H$!bTW\!!$!b H$@ %)bXTP@ $!b I$I$e)%I$I$$!UUU-II$$!U1# w /!Z$Z+L$آEVPh!II$E5UU/@R'nE *+4,& DZ)4/Ij6DZǩ4,R# DZ`3#=HEPP, K%y+3 E~ꪠ! ~ $q_" %y)^h I$~=a$!UU_PI$I$$!!I$I$$!!I$I$e) 1 @$E)!A$I$$!!I$I$$!!I$I$1I$I$e) e) &$!p$A $!A -I$I$e)I$I$$!!@$@$e)IIe)@$@$$!I$I$ $ !br I$I!A% IIe)I$I$$!!I$I$$!!@$$!a@pI$I$A/? ! !bI$I$$!!I$I$d!d H$H$!I$I$ A~!a II$!! %%% @$1IE)!I$I$1I$I$1  1I$I$e)1I$I$1I$I$1@$@$E)!zzzzI$I$ $!A$A$E)!I$I$e)I$I$e)$C&HB&!b@pX`!I!A / H$1 $!$! IIe)  $!@ 1  1I$I$e)H$@$E)! 1I$$! I$I$$!!.<E)b*1I$I$1I$I$1I$I$1I1I$I$1I$I$1I$I$1L&$!aX`I $!A/ I$I$I$I$****!!$! I$I$e)H$H$e)%)$!$%)`pI$I!A'?I$I$1I$I$1  1I$I$e)%)$!$@$1$A&L$$!TW@%) $@$$!II!**H$H$!IIE)!I$I$1I$I$1I$I$E)$!I$I$E)$!$%)a`pI E)a%- I$I$1I$I$E)$! E)!jE)!I$I$E)$!I$I$E)$!$ E)! Ie)I$I$E)! I$I$1I$I$e)E)+h6hE)hI$IE)aU.IE)!I$$!IE)!5I$I$1`$@ %)axX` $! % IIE)!I$I$E)$!I$I$E)$! E)!H$$!a,E)!I$I$1I$I$1  E)!IIE)!I$I$1۰ ۲6H$) /ɕ|q@++5!miF!H$L$f$)TTVVI$I$1 d2%)!jZVZI$I$$!! % H$%)I$I$$!!%)$!I$I$e)IE)$!I$I$1I$I$1H$H$E)! I$e)E)$!I$I$1I$I$1H$H$e)IIE)!H$H$$!!I$I$$!! @$!$A$E)!I$I$$!!* Ie)I$I$e)I e)@$@$$! I$I$$!!*I$H$e)I1@$H$e)I$I$$!!(A $! I$I$e)I$I$e)I$I$$!!ࠠI$I$$!!+***I$I$1 e)$! I$I$$!!$A$E)!I$I$$!! **$!@I$!b% 1I$I$e)1I$I$1I$I$1@ @$1@$H$$!bP\X  $!b % H$H$e) E)!@E)!E)!.@E)! E)$!ꪪI$I$e)I$I$e)I$I$$!!I$I$e)I$I$$!!I$I$$!!**I! I$I$$!!*I$I$$!!I$I$$!! I$Ie)I$I$e)I$E)![[;E)ࠢI$I$$!!-/*`$I$$!0WV$!I$e)A$@$e)I$I$e) 1@$1 I$$! I$I$$!!* 1I$I$e)@$A$$!!PppI$!*** I$I$d!d I$I $!!I$I$$!!I$I$$!!j!I$H!bU!I$I$$!!蠀I$!V!I$@!bW\ $!a I$I$d!d I$I$d!d I$I$$!! I$Ie)I$I$1H$H$$!!II$!! $$1I$I$e)A$I$e)I$I$%Y$!UUUPI %q$!% M%y%q -۰mtE%y E%y@hdB EEy #@E%yW $:Eiꊪ  h%qX^ ~R# iH_Ib' X!VjI$I$H!UUT@I$I$e)@$!X!$!@I$H$!bU<!I$I$$!! I$I$$!! **I$I$e)A$@$$! I$I$$!! **I$I$e)I$I$e)I$I$e)H$H$$! I$I$!! @$H$$! !ꊊII!I$I$d!d I$I$E)I$I$e)I$I$e)I$I$$!!*I$I$$!!I$I$$!!+* I$I$1E)!$E)b`I$I$!b55H$H$$! I$ $!  I$H$e)I$I$e)I$I$e) $e)I$I$$!!hjh`@$H$!ZZ^^I$I!I$I$$!!=/II$! I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!! I$$!!I$I$!!I$I$!!W($&H&$!b`X`!I$!b 5 !@I$!b,U!I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)H$H$!bppI$I$bA.+I$A$ AI$A$!A H%)* I$I$9!UUU6I$I$Z!UUU@$!a00w|<f1r 1 9m6`E)~Z󿿱Wi۵- ҩ (Z۲ML*jw~evhI$Jڢj'kM۶hۖ kh4HI$I&E)7_W_$I 1aI$f1οA$I$E)b Pfa!+++) PN~yEY  IA!nf۰cۆ1 x9 !bMK$E) *(I ɛf1'I$I$ I"$I$E)~I$I$$!A*A$I$!A"* I$I9A $I$!A*Zi. a  EY  IҭEiU C @EaUzc yEI_ M$c1fQVVP@I$A$ ?qI$A$$)I$I$aa I$%)H$I$!LJ * K(1N ljf1 !A Ia&%)x 9_ҶEӶE)b=n1>mLj-If1?oA7GmK9E9CܴAE9޶mEA!U m;mNJkݢߴk؊Z_K6ǏJݫwN$$ WQuQt}rq!@@$!H$I$$!!I$I$!~I$I$UXx`I$I$a /// ! I$I$$!!H$I$e) e)@$@$1IIe)I$I$1$@$1H$!I$I$$! I$I$1@$@ 1II%)$!I$I$1@$@$!II!I$I$!I$I$!!-- I$I$1I$I$1I$I$1I$I$1 &`2$!!@%) I$I$E)$!0%)`I %) /I$I$1$E)! E)!I$I$1I$I$1I$I$E)! I$I$1e)E) ` E)!I$I$E)!****I$I$E)$!H!E)!I$I$1 0 $!`I @!a=I$I$1I$I$1I$I$E)$!I$I$1H1I$I$E)$!I$I$E)$!I$I$E)$!***H$@$E)! E)!I$I$E)$!0H$)O`8***-/)$l ǩ-H$H$%)TTTTI$I$E)$!@$E)!IIE)!I$I$E)$!I$I$E)$!I$I$1I$I$1@E)!e) I$I$E)$!%)1I$I$1%),I$I$1I$I$e) E)!H$$E)!^z$B $HE)!mko !** @$@$E)! @ $! I$!A/?1 @ 1H$$!x $I$! I$Ie)I$I$1  1I$I$e)I$I$e) 1I$I$1H$H$e)IIE)!I$I$E)$!B B e)!BI$I$$!!(*@$@$E)$!I e)I$I$1I$I$10%)` I$!a>E)!%)H$I$!a(@HE)E)$!I$He)@$1I$I$1H$%)$!   E)! $! I$I$1I$I$1I$I$1 @$e)I$I$$!!*I$I$e)I1  1I$I$e)$I$e)I$Ie)II$e)I1I$I$1$@$E)! %)$!%)$!ꪪI$e)I$I$e)@ %)$!ꪪ 1I$I$1I$I$1@$@$E)!IIe)H$@$e)LB&$I%)~!I %)I$I$$!!I$I$e)$A$$!!`I$I$$!! %%I$I$$!!I$I$$!! //I$I$e)I1I$I$e)I$I$$!! I$I$$!!I$I$$!! I$I$e)I$I$$!!I$AE)$!I$I$e) 1I$!!!I I$! 1I$I$1@$I$e)H$I$e)II$e) 1H$I$$!!I$I$$!! I$I$d!d  $I$$!!H$!$! ** 7I$%q$!5U0 o%q$)  @E%q@$EEyhI$I$hI$E%ymۆmE%y h%y%qxI%ya~ꠀ  %qPu" `)ZI$M5P$!UUT@I E)$!H$H$E) I$I$$!  I$Ie)I$I$e)E)$!I$I$$!! $! H$!$!IIE)!I$I$$! I$I$$!! I$I$e)I$I$e)II$e)H$H$e) E)!I$I$1H$I$e)$H$$!X^$@!$!I$I$e)I$Ie)  1II$e) %) $I$E)U!I$I$!A $I$!_I$! -5 E)$!ꪪI$I$e) $I$e)I$I$e)I$I$e)I$I$$!!H$H$$!! $$!   E)!I$I$$!!(  e)I$I$$!!I$I$e)I$I$e)I$I$e)!I!5 I$I$e)I$I$e)I$I$ AxxxxI$I$!I$I$[///I$I$!;NDIe)?/$!%)!?1jmضe)!UM-ڶe)$!aB IE) mM۶E):} %)Ucئo*H$IdAɪ:H$ɐ%Iɪmúl۴nJڢ*\Y*@8\-֩NJ}r=ێm kϭ}A$O$ km-jRJJ)ʈUh2&I)ʊkP9& ʪ*˭kI'HNUTMmڵ *pZJ!mڶmJ6Hmh۵ ªOm)rA#I蹪)U_?JtU۶k׫J;}[蹮 m\ضyϋjª/D|[5 {c`;JaHjc  $JWt$H$J Um$ I$j WUԆI$k!UUmI$j$!UU}ې$I$!UUU,؟$I$1غI$ID1!UU! 2dH0%)hbm۴-4E)ǟ1MYE) .)" $9I$ E)b+ m$IE)aꨶH $!A IH$L$E)aI$I$%)bI $e) I$I$%)j*A$I$E) UUUAH$I$!aI$ $e) i I$9I$IE)O$IҶ9|ߪ $%e1i&&e9{IE9_ IҶ$eAW IҒ$fIa* 4 faE9տ qeI*  qv fa w y+ &Wn=/+%$o&@U+%s2 UW)"I@Eyh% I(iHEq C iy iq_~R Ifi_I@yfiUILRqfiժIqiI$fqiI@qfi H$HqEYTTT IqEYqfi@&qfiqfik$qi_@Z;qfiU m$k;qfa im$qfaU im$qeY $qfYU m'fieQ 4m'fifQUm'fieI_ P+Il$faeIU k$eYEAU$M'EQE9_Dm'EIE1_mm$EIE)_ h'EQE)Uhm$EA!U$$$EA!UF5de9 m۶A@Fme1!Uؖ4i$E1!e]UvmE)*l۶a;E)b*jK$1$1!TUMU]۰چ16l۶m7e1AJ@bӶm;f1p[ҤYnE)A`ض-e10! 9dBLHE)z$$I%) {1mעi۶E)*vmE)) I$CE)A$H2$C$) jk@!0A۶mѶ%)*!Ð$H2!A@ mff1A!b@mĶmۆ1vvdf1A:m۶m;f1m۰m;1m۶e؆1?$$I%)6؞e1AԆe1A I!$E)!Hqb'E)aII$E)>I I$!I$I$!銪I$N1?qIDE1=554 faE9I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!$!!I$@$!bI$I$$!!I$I$!I$I$d!d I$I$$!  I$I$e) 1H$H$e)I$I$$!!hhxXI$I$E)a@$@$!I$I$ !I$I$E)! !b I$I$$!!I$I$e)I$I$$!!I$I$$!! ***H$H$e) E)!  E)!I$I$e)A$A$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e) !I$I$!^I$I!/! I$I$d!d ) $I$!UUU+D!1#@J- /U1+ڃ.VVZi1+`qxDZ11I$I$%1/$@$DZǩ1/H I$ǩ1(j"*|ʊ+ 3h~ꨠ(3 mE Z fi[ %!zꨀ'J&Ei^x@$A !`XrII!A -/ Ie)@$H$$! I$I$$!!*H$H$e)I$I$e)  $!I$I$$!B $! I$I$$!!I$I$$!! *I$I$d!d I$I$d!d I$I$$!!I$I$$!!I$I$$!!I$I$$!!///?I$I$$!!I$I$d!d H$H$!|||~I$I$!II$$!!%5 2`B&$!ap`!I!a ' H$e)I$I$e) $I$e)I$I$$!!( I$e)@$I$e)I$Ie)@$@$$!!@@@@I$I$ $!A$A$e)I$I$e)I$I$e)I$I$e)I$I$$!! I$I$$!!I$I$$!! ***I$I$$!!I$I$$!! /I$I$$!!I$I$$!!@$@$$!H$@!ax %)A I$I$1$1I$e) @$1I1I$I$1E)!ꪪ!I%)I$I$e)I$I$1H$I$e) A$e)I$I$$!!I$I$!I$I$bI$I$  ! I$I$$! I$I$e) e)@$H$e) I$e)1H$H$e)I$I$e)I$I$e)1I$I$1E)$!&%)bx@$I$!bI$I$!I$I$V!!$! I$I$1I$I$1I$I$1I$I$1@ $!!E)!I$I$E)$!@0E)pI A$!a5- I$I$1@ E)!ꪪI E)! E)$!E)$!I$I$E)$! I$I$E)$!e)$!H$H$E)!I$I$E)$!* I$I$E)$!I$I$$!! $! I$I$1H$H%)$!E)$!I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$E)$!$E)!*ZH$H$E)! E)!I$I$1D$DBHR`8%*/) 9#9ǩ-H$H$%)TTTTI$I$E)$!I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$! E)@I$I%)bUն(E)!E)I$LE)A׾(E)!I$I$e) E)$!H$I$e)I$I $!!@@@@I$I$d!d @$@$E)!I$I$$!!@I@%)' I$I$1I$I$1$ 2$!$A $!5IIe)I$I$10%)``I$!A&H$1I$I$e)@$1H$I$e)IIE)!I$I$E)$!***۲-2,E)!@@@@I$I$$!!****@$@$E)$! E)$!I$I$1I$I$1%)!jI I$!A.E)!I$I$1LE)(H$H$E)!%)$!I$I$1I$I$e)E)!I$I$1I$I$1I$He) E)$!I$1$1I$I$e)I$Ie)I$I$e) I$e)$@$e)I$I$e)I$I$e)IIe)@$@$e)IIe)I$I$1d&`$E)! E)!I$I$1I$I$1I$I$1 @$E)$! 1I$I$1I$I$1@$@$E)!IIe)@$1I E)$! 2H$E)b|W!A I$I$$!!* $$! I$I$$!!-$I$$!WWI$!W$ $!1I$I$e)I$I$$!!I$I$$! I e)I$ $! I$I$d!d E)!H$I$e) $I$e)E)!I$I$$!! $! I$I$1@1@$@$E)$!I e)I$I$1I$I$e)II$e)I$I$$!!( I$I$$!!I$I$$!!I$I$$!!****I$I$e)ɐ$I$$Y$!%UUU` 7'%q$)U0 $%y$!* IE%yI$E%yhh$ E%yꪪ "E%y_ d#H%yi#֒I%ya_  qP_]۫X$)VjH$H$H$!UUUPI E)!I$I$1H$@$e)II$e)$$!$H!$! /I$@!!I$I$$!!5I$H$$! II$!! I1I$$e)I$I$e)I$I$e) E)$!$H$E)$!I$I$e)H$! E)!I$I$e) e)1I1I$I$1I$!( $!I$I$!AI$I$ zzII$!b5552`$%)`PTI!$!I$I$e)I$I$e)I$I$$! I$I$! **@$I$! $I! E)! $$!  I$I$$!!(  e)I$I$$!! *I$I$$!!I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$ AxxxxI$I$!*- I$I$ J IIB:f1a?I$I$$!AII e) UUE 99MvmE)^*.%fǶ$f1hڵME)1mۮm%)ɐ\Iċ 5Pˆq۶m Ҧ`%H$SJښhضg Jp ;y k|_ ۩oJ}H!IDɩ_mݶE6 JFa1 ʵjw? )eYEAI$I$e)I$I$d!d I$I$d!d @$H$!bppXI !b5 E!I$I$d!d I$I$d!d I$I$$!!I$I$d!d @$H$!ZZZZI$I$!AI$I$!I$I$E)aI$I$$!!* I$I$e)I$I$$!!I$I$$!! *I$I$E)I$I$E)I$I$!I$I$ !+* I$I$E)I$I$d!d I$I$e)@ ! !I$I$d!d I$I$E)H$!(H$H$! ! I$I$d!d I$I$$!!I$I$$!! ** I$I$$!! H$!VI$I$e)I$I$d!d  !I$I$  ! *I$I$d!d I$I$d!d I$I$$!!/I$I$$!!I$I$e)I$I$d!d I$@!bW0!I$I$E)I$IE$!UUU(Dn1, 斗 *3+q[䧱UU1IHE@1I  E3,[DZZK/-)#IHE- ~:X ~-lÑ4fz +S?lFUW +h%q_C i%)~ ?v%Eazp@$A$!aI$I$A( !+ H$@ !ApI !A / I$I$d!d I$I$$!!+I$I$$!!I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$VVWI$I$??=5I$I$d!d I$I$d!d I$I$$!!ꢠI$I$$!!/+**I$I$$!!VXII$!! I$I$e)I$I$e)I$I$$! II$e)I  e)I$I$d!d I$I$E(C!I$I$e)I$I$$!!*I$I$$!! **I$I$d!d I$I$$!! I$I$$!!I$I$$!!* *I$I$$!!V^xI$I$$!!u/I$H!V׼ !H$I$!A$I$!aH$I$ Au!@$!I$I$1H$@$e)I$I$$!!I$I$$! ** I$I$1I$I$1@$ 1I e)I$I$e)1I$I$$!! !@$I$!jzzI$I$!AI$I$! !** I$I$d!d II$!I$I$e)I$H$$! I$I$!! $@$e)I$I$e)I$I$e)H$!bXI!I$!b- `$LB&$!A`! $!a I$I$$!!H$H$!I$I$$!bI$I$$!B$! 1$ 0$!@I$!a.I$$!@ $!I!E)/ I$I$1I$I$1H$1$E)$!E)!0&%)a`I$I!a/ I E)!I$I$E)!I$I$$!!aaf1!H$I$$!!E)!  E)!I$I$$!!*E)$!I$I$e) E)$!@$H$%)$! %)$!I$I$1I$I$1&%)ap$A!$!A E)`I$I$ A(>@E)!@$H$e) E)!&%)`X!RRPiP--/-?4I$H$蹧4H$H$DZ%)TTTT`0E)IE)I$I$1I$I$1L&E)^x %)b- I$I$1I$I$1I$I$1I$I$E)$!@$H$e)E)!I$I$1I$I$E)$!I$I$E)$!` $!@H0E)j !   E)!I$I$e)H E)\II$!!I$I$1I$I$1I$I$1H$H$E)! E)!I$I$1I$I$1I$I$1I$!!0I$I$1I$I$1I$I$1I$I$$!!  $! I$I$$!!*2,2,e)!I$I$e)H$H$E)!IIE)!I$I$1E)$!I$I$1I1I$I$1I$I$1I$I$1I$I$e)E)!I$I$1I$I$1I$I$1 $%)$!I$I$e)E)!  E)!I$I$$!!@H$H$!U8I$!IIe)I$He)E)!@$@$1I$I$e)I$I$1I$I$e)$@CE) jH$I$!A($!H$H$e)! E)!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1 %)&@$E)$!I e)I$I$1I$I$1E)$!ꪪ@$@$$!!I$I$$!!  E)$!IIe)H$@$E)!I$I$e)@$@ 1I$I$e)I$I$e)I$I$e)H$H$e) E)$!  1I$I$$!!%)$!@1I$I$1I$I$1I$I$1I$I$1I$I$1`$I$$!\W\$! I$I$e)I$I$e)I$I$$!! $!! I$I$e) 1@$@$e)I$I$e)I$I$e)A$A$e)I$I$e)I$I$e) E)$!I$I$1  1I$I$E)aI$I$$!! I$%q$!U PNm%yi +@I&E%y $E%yI$I$hH E%yklE%yꪪ t"E%q l3H%yi # @%y`_~  iiH~NR;k `@WI$H H!UXI$I$@!UUUTII$!!? I$I$e) 1I$I$1@$@$1IIe)I$I$e) E)!I$I$1$!$@$$!I$I$1I$I$e)1I$I$1`$`2$!bPTP@!!@E)b  H$H$E)!  $!@@@@I$I$bT !I$I$e)@$@$E)!IIe)I$I$1L$!TI$I$e)IIe)I$I$1H& E)\x $I$!bI$I$e)I$I$1@$I$E)!$$!I$I$$!!I$I$$!!$!bI$I$e)I$I$e)I$I$$!! I$I$(AxxI$I$A5I$I$!R0I$I$$!A%II$E)6I$ E)AH$I$!fI$L$$!*(jɒI$E)'I4DĆ1oI I$e)!Ib$I&E)AjA$ $$!I$ $ A @I$I$!*j"I$I$E)aI$A$E)ꢪ $IE) I4I E)b. 'I(IE17I$E1 UU*I$$' EA UUImEA!UImE9ے$ eAIbEQE1U ݖ&eQE1տ Iܖ$eYE9U Ӷ& eYE9* I eaEAU IbeaEIUo$fiEIU Im$fieQ nm%fieYX $IbfaEQjZ IB$EYEQU* IH$EYEQU* I$EYEQ I$EYEQ IEYEQ I$I$aH I$I fqEYUU) IR IfqEY-! Ifqfi  ؆m$fqei^  ڶAqea j Ifqfi}m1 qfi  P'4qfi W~4,q%Q jҖqEQ  Id'qfaU $qfYW  im?qfQ_ 4m$qeQUml$ieIWm$fieIU$mm?faEAU m'faE9U M?fYE1U 䑶$fQE1U mm$fImm0fAD$fAzU4I$eA5I$e9Җ$Ie1UU$i$%)bI$IE)II$!A**I$A$%) $I$eQUUUPNpi *)NWa*+&&r ++("$m;ȑ%O:񧙧zzz X:X#:Yxz X%$fQPP|TJ$I$f1b}?A$I0E)bI"I$)o*I$I%)b I' 9  by??s_1o;؆mf1! ɐ$A%)* Id%)! mҶmѴE)*mvbe1A:ڪI %)$ IE) 9]f1p ~$9mM۶%)"ڶmE)*-ڶme)bZI$y)!UU \ɓJ!u_Ib J UpI"HDAj)}(6҇;n鹫+$(iҧ*Ov ;l )|Aݪm_ Ӄ,$ǖ#҇-Dtڡ O]Fl *Fm2 )k?H[S$I鹤.Fm̱m-)w=n6,蹮bD6Q-);tF$I$b RoJkmF-۶m kOڶ)I$I$1$ &`$!ap$ E) %%)!R$E P yw9qsiP-?4I$IDZUUU?J$J$ǩ|\E) I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1&E)x E) 5H$H$e)E)!I$I$E)$!H$E)a^E) H$H$e)dB&B$!p`II!5- (!!0E)!a$I $!'H$H$E)!IIe) %)I$%)a(E)!H$H$E)! E)!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$e) e)I$I$$!!****2,2,e)!I$I$e)H$H$E)!$A$I2%) **jI$%),E)$!I$I$1I$I$1I$I$1I$I$1 E)!j$!'E)!I$I$1I$I$1I$I$E)$!@$@$e)I$I$e)E)!  E)!I$I$e)I$I$e)A$A$e)IIe)I$I$1I$I$1@$@$1I$I$e)I$I$1I$I$e) E)$!LE)I$I$e)H$H$e)! E)!I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1$E)$! 1I$I$1I$I$1I$I$1@$@$$!!I$I$$!!?  E)$!IIe)@$H$E)!I$I$e)$1 1@  1I$I$e)H$1$@ $$!  1I$I$e)E)!H$I$e)E)!I$I$1I$I$1I$I$1I$I$1`$!I$H$E)!I$I$e)I$I$$!!@ $!  $!! I$I$e) 1@$@$e)I$I$e)I$I$e)A$A$e)I$I$e)I$I$e) E)$!I$I$1  1@$!I$I$$!!I$I$1  DI$%q%)UU P%y$)% @ !E%q@!EEyhI$I$hH E%ydB EEy d"Ґ@E%qꪪ C %yi~  h%qX^ ~B# miH_NRk X(jIȄL2P$!UVjI$I$e) %)$!I$I$1@ 1I1I$I$e) E)!I$I$1@$@$!!!$!I$I$1I$I$e)1I$I$1I$I$1I$I$1@$@$E)!  $!@@I$I$bUV ! I$I$e)@$@$E)!IIe)I$I$1I$I$1@$@$1$A$A2$!$%)7 2%)hI$I$$!! I$I$e)I$I$1@  $!H$H$$!\^^$! I$I$$!!H$I$!TWV! I$I$$!!** I$I$e)I$H$(bI$I$ A؀I$I$aA$I$!!A$I!H8I$%)A $I$$!Aq$e);I$LE)a ɒME)OI$IE1 UTI$E1!UU*I$E9 IҒܶeA!U IҶ&@eAIEA$!*IҶEIE)IҶEIE1UI&%AEQE1 Im+eYE9տ ILQ6`KEYEA m5kmEQEA M$EYEA }TfiEI IbeiEQ ImfieYU  M$fieY ݶmafieY* aB$fieY mmfqea  J`fqea+ $5fi%Q &%L$fiEY^W I$I$aH I$I$aH $aH aH @$EYEQ $EYEQ m۱a faEYUU) IIAfiEY  m[fifY 8ii'fifaU [Mm$fifY_ $am?qeQ mm$ieQUml$ieIWm$fieIU o'faE9Z_ I$faE1u -dm?eYE1 U $fYE1U mmk%Q[mm$fIUDu$Az4IeA m?A$A U$I$E1AI$E)A" $I$)? O$I$9a_ $I$ AI$ $!b*ʪII%)A*i$I$f1I$I$ bZ(A $!I$I$!?A I$!bI&A$f1YQTa$H%);;I$I$!bjI$I$eIUUUPN.ri  )"PNwfi +%4i":qzXի:yeIzzHN$eATWTI$I$$!aI$ $$!I$I$ I I$f1 UEUTH$IE) TUU$I"!I2%)Jj$!A%)+m۶ 3f1lI$I$e)c c99!f1bϏ?A|G1v۱ce1bj* 1ah$ɐ I%) mضe1jZIdɐR %)UrѶI۠mҦ *m;۲Mömj*mAܖm'l鹪:eRmۖmJeR۶ IJª*HP۶ 9cH4Hȱr $Hrg;MN ?whR$IjJªwF$IXՈ (PmmѦJ?ߗ\~ Je ҋEUUUMm]9N){HUںEI)’wZ]mѥj?ۋDi*j)Ȋ}CL˶DY Amжs۶ W=طJ}}CcL$Ibڊ,mJB۷ ㇱmP )@MEݴm ){Mh\m۶آHۖ-X~ ¶MiE*ʪRmjѶ ʪ(O ۮm;n*rvl|ǽe#H!IJ҈eh״m۶J(R @=!A$Y )zI$I UUU`m۲h&J_ز-1!@@@@I$I$E)$)$IAE) MӶm1f mm9 aǶmf1!? <9 w 9 9?o9ce1bcE6m4E)⨪I$ !(IXE9/$// ))faEII$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d @ !I$I$!ZZZ^I$I$!AI !%---I$I$d!d I$I$e)I$I$$!!I$I$e)@$H$!bPTX` ! I$I$E)H$H$!I$I$ I$I$d!d I$I$E)I$I$e)! 7I$I$e)I$I$d!d I$I$E)! I$I!H$! I$I$E)I$I$E)I$I$d!d I$I$e)I$I$$!!I$I$d!d I$I$E)I$I$d!d @$!I$I$$!bI$I!H$I$!\W^! @!b0I$I$e)I$I$e)I$I$$!!I$I$E)aI$I$d!d I$I$E)I$I$E)aI$I$E)I$I$d!d I$I$E)+ I$!U-HI!/" v{ǩ*=1,a{DZ/-II$ǩ**/!"),(f4!@1`DZ /4 ?DZf~/"C՛xa+C mez"  $i~}6 m% ^ꠀ a!UUW`I$I$E)I$I$e)I$I$d!d I$I$d!d I$I$e) !I$!0W!I$I$d!d I$I$E)I$I$I$I$A >!*I$I$d!d I$I$e)$@ !`I$I!b/%+I$I$e)I$I$$!!I$I$$!!**/H$!I$I$$!!@ !`I !b- I$I$E)aI$I!*I$I$E)I$I$d!d I$I$$!!+H$I$!A ! I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$$!!++I$I$d!d  IE)!I$I$$!! I$I$$!!A$A$e)I$I$e)I$I$e)I$I$e)I2$!@$$! @$@$e)I$I$e)I$I$e)I$I$$! I$I$$!!  !I$I$````I$I$!AI$I$AI! %%I$I$d!d I$I$$!!I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)H$H$$! !I$I!bU:H$I$! I$$! I$I$d!d H$I$ hI$I$bWUUI$I$A?/ !!$! I$I$1%)$! E)  2dB&%) XVU$I!$! I$I$1I$I$1 1$I$e)I$I$1$E)$!@E)! 2 E)!~^^~ E)/I$I$E)$!@E)!!!1!I$H$$! (E)!+ @$@$E)!I$I$$!!*1I$I$11H$H$e) E)!I$I$1I$I$1@$@$E)! I$A$!(I$H$E)! E)$!I$I$1H& %)X $@%) %) IIP%)iP----?4 I$蹧4H$H$ǩTT\| !@E)a - I$I$E)!I$I$1I$I$1I$I$1I$I$E)!I$I$1I$I$1`0E)xIE)5 H$H$e)E)!I$I$E)$!I$@E)A^!E) H$H$e)H CE)jI$I$A ?/ES4RE)bI$I$!a?H$H$e)!IIE)!%)I%)a׶(E)!H$H$e) E)!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$e) e)I$I$$!!****2,2,f1$!bbbbI$I$e)H$H$E)!$C$A%) j**I%)շ,E)$!I$I$1I$I$1I$I$1I$I$10%)`I$I!a5/$E) I$I$1I$I$1I$I$E)$!@$@$$! I$I$e)E)!  E)!I$I$e)I$@1A$@$e)IIe)I$I$1I$I$1@$@$1I$I$e)I$I$1I$I$e) E)$!@$@$E)!I$I$e)H&`&E)! E)!I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1@$@$E)$!IIe)I$I$1I$I$1I$I$1@$@$$! I$I$$!!?** @$E)$!IIe)H$H$E)!I$I$e)@$@$1IIe)  1I$I$e) %)JI$I!a߾$$!I$I$$!!(E)!H1I$I$1I$I$1@$1H&%)hE)!0`$%)`X\ $!a %IIe)I E)!着I$L$%)b^VX! %) )- I$I$e) 1@$@ e)I$I$e)I$@1 1I1I$I$e) E)$!I$I$1  E)!I$I$!$!I$I$1I$I$1I$I$1 I$%q%)U  %%y$a )@I&E%y $E%yI$I$hI$I$hI$E%yklE%yꪪ H%y%qӶc Ei_*`%yX_  iiHNB; X)Z H$!UUT@ Ʉ$!,II$e)I$I$1I$I$e) E)!I$I$1@$@$!!!$!I$I$1I$I$e)1I$I$1I$I$1I$I$1@$@$e)  $!I$I$!A !I$I$e)@ E)$!ꪪI11I$I$1@$@$e)$C2$C$!II@E)? `$H$E)bx\\p! $!a I$I$e)I$I$1  1I$I$$!!I$I$$!!$!@$! I$I$$!!*$0$!UUUH$0$!UUH$I$($! I$I0 + I&AUz I$$ %9bI,eA I`ۭͶIiIr& EAIҶEIE)UIl& EQE1UIb۔EQE1Il$ IEQE9IEQEAU ITeaEAU ݖ,eaEI ۶mEQEI@IHEYEIU I$IEYEI* Ib&IEaEI*{fiEQտ2)fiEQj IEYEQ*Ib`fiEQ/ ڶ۰ fiEY** ɖ@ $fiFY PfiFa -ڶh&ih $ih qX m D2fqfa*  m$6fqEY~ s$fiEQ^U  I$EaEQ_U @$$EYEI$I2EYEIU m۶eYEI m[۶ $EY%Ap $жfYEI vVfaEI_ϱm$faEA/_$mm?faEAU $m'faE9U m?fYE1U $fYE1U im8fQ!Wmm$fI UDu$eA _U4$e9 yUI'E9 U]$Ie1I$%)2jI$I I$I$f1?I$L$%)!q$I$e);I$Y%)A"I$1$f1oI'I17I$I$ H$I$E) TUUIDIe)??I $!I I! UI$q1I$I! IIB$)* A$I?9QI$ &e) UUeXqI'E)I$q$%)AA$A$!jzI$I$ eI$I$E)UII$!A" )pY ))% /sfY++ R2$[mEaPPP ٚa)Eab>ieIxxxxH'J"'E9|I$I$ A4i$q f1I$A$%)bI$ $%)몉I  !mرf1c۶ E)ꪪm;v1!@ IA,9!UQEضmf1A IN9!UWk۶iE)mۢmڶE) }؆1 ޏ?ؖS1AmڶA"E)*J9!hI$IDj!UUw ӺM҆**w;$|DIȱcA$IIjPm۶*Aplۿm. e; @kHMnc*h9ȱRm;6l JϒCmbX2 kWmڦmjš*DKmӶ)jDgH&M *m7 ȱ MK߶T)d.mH 0_ضm# jOkM&)$ *@wPdC$IJzRAe\:J{eO k AA۵N ?he kʿm?$)R@0Rmբu[ JʿۋJ qdH &9 I2Y2 ȹj-njr-맹U$`D)ʪ*\[&lJjwݶˆ ڋﮪhm۶m;NJ}~$I$nWUUTr o܀_H JmNJR lmۏ ſZm8mN*s}.08JE1@@`` ضԆ1-m۶iP1 }[1j!+ ۶9!$Ȑd e1ڨHvnڶf1 u9!!?Ba?c{681I$I$%)=II e9//-/ <,C34fY!bbbI$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)H$H$!^^^VI$I$!A I!-)I$I$E)I$I$e)I$I$e)I$I$d!d !@$! !H$H$!II!*+I$I$E)I$I$E)a !@@I$I!b7 I$I$d!d I$I$e)I$I$E)I$I$E)I$I$E)I$I$ !I$I$E)I$I$e)I$I$$!!+?I$I$$!!I$I$$!!I$I$d!d I$I$d!d H$H$!I$I$ !"@!I$I$E) ! I$!bI$I$d!d  @$!`p I$!b %UI$I$E)$!$!***I$I$d!d I$I$E)I$I$E)I$I$e)%I$I$!UUU% I$!U-0 sf+/+ ا/)òaFǩb?4$AR$%DZE**X4h@DZF/(r**-&#Hzꠀ,т@fz( %y~ mEQzꨠIR'$y!UZhI$I$Q!UUUTI$I$E)aI$I$$!!I$I$e)I$I$$!!JI$@!W^0!I$I$d!d I$I$d!d I$I$TI$I$ >**I$I$E)I$I$e)I$I$e)I$I$$!! ! I$I$$!! * I$I$$!!pPI$I$d!d  ! ! %I$I$e)I$I$E)I$@!!I$I$d!d I$I$d!d I$I$d!d @!I$I$$!!+I$I$d!d I$I$e)I$I$E)I$I$e)I$I$d!d  @ !II!+%/I$I$$!!*+/?H e)I$I$e)I$I$e)I$I$e)$I$ 2$!$!bdB&$$!`p  $!-- @$H$e)I$I$e)H$ 1I$I$$!!I$I$d!d   !I$I$````I$I$!AI$I$ ! I$I$d!d I$I$$!!I$I$$!! I$I$e)II$e)H$I$e)I$I$e)I$I$$!!I$I$$!!I$I$e)I$I$e)I$I$$!!  !@I$I$ I$I$I$I$A($! `$$!b$I$$!$E)!z$!*$@$$!I$I$1 E)! Ȑ$!I$I$e)I$I$1I$I$e)E)$!H$H$$!!II$!!I$I$E)$!I$I$1 0e)E)AAAAI$I$1I$I$E)$!@$@$E)!I$I$$!!*1 %)$!I$I$e)H$@ e) 1 &L$$!b\W!$!b @$1I $! @%)$!1I$I$1I$I$$!! E)!oH$I$!bVUT$R!aRPiP--/-44I$I$%4H$H$DZE)TTTT E)!b$E)!UI$I$1I$I$1I$I$1I$I$E)!I$I$1I$I$1I$I$1I$I$1H$@E)$!E)!I$I$E)$!I$I$1I$I$1H$H$e)E)!I!.00E)!I$I$e)H$H$e)!$A2dB&E)*jj I$$!b5E)!I$I$1H$H$E)! E)!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$e) E)!I$I$$!!***2,2,f1$!bbbbI$I$e)H$@$E)!I E)!I$I$1I$I$1I$I$1I$I$1@$I$$!aXVX %)b I$I$E)$! $!I$E) UI$I$1I$I$1I$I$E)$!@$@$$!I$I$e)E)!  E)!I$I$e)I$I$1@$@$1IIe)I$I$1I$I$1@$1I$Ie)I$I$1I$I$e) E)$!@$@$E)!$I$C&$!pXXE) E)!I$I$1I$I$1I$I$E)$!I$I$1I$I$1H$%)a(I$I$1@$@$E)!IIe)I$I$1I$I$1$E)$!@$@$e)I$I$e)@$@ E)$!IIe)H$H$E)!I$I$e)@$@ 1IIe)1Ie) "$!@I$$!b,UE)I$I$e)I$I$1I$I$1I$I$1I$I$1I$I$e)H$H$!a`I$I$ A?u@B !@E)bp   $!b I$I$e) Ie)`B$I$!`  E)!믯I$I$$!!  I$e) I$e)I$I$e)@$1 1I$I$1I$H$e) IE)!I$I$1 E)$!I$I$!$!I$e) E)$!I$e)I$I$1 ɐdI$%y%)%UU P%y$) % @ !E%q ݖnE%yhI$I$hhI$E%y q"i&F%y u¶AE%q i%yiz  i%qX_ ~Rc iH_NB:" Xj$@E$H$e)I$I$e)E)!I$I$1@$H$!!!E)  E)!$!bE)!I$I$1E)$!I$I$1  1  $!I$I$!A !%%%I$I$$!!I$I$1  1IIe)I$I$1@$@$$! II$!  * I$I$E)$!E)`  E)!I$I$e)1 %)@ $!b % 8!UUUI$I$8UU $8$!UH$I$8$!I$I$80I$I$80WI$I80U* $@@0/ 1a Q@ݵ- I{TEa%IU #9 EaEI} IҶEYEIU M$)EYEIU Il$FaEIի IB IEYEQ m6@FaEQ I$EYEQIwD fqEQտ* $[$fqEYZT `B&I$fiEY^_UU I$I$aH I$I$aH IIfiEY==5 I'@FfqEY$?fqEYj^U I$I$aH IdfiEY a[IDfiEY: I62fiEQz$$fiEQU `@ޖeiEQ$$fiEIVW PI}>eaEAY$IofiEA $il?faEA~W hIEYEAU}ֶ 6EIEAW [[f'eQE9W $ @#i;eQE1W $fYE1U mm'fQ!Wmm$fI UDu$eA _U4I$e9 UW5I$e9I$E1 Um$I$9bq' e1ϿN I$1I$I!*ȓ$<9tUuII$E)A+H$I1MH$%)I$IE)?I$IE)?Hq$1|wI$I$ * II9a?I$ 8f1ɓ$Ae1AnI$E۶E)Iڱm;e1 jIb;E)!IH$ %)aǶm;e1?1?$I %)-4mv%)Jf(1L I'f1!VEW]!b@0 I'1 ymh۶1 |nװ؆1bh Aqضof1?AO4۶؆1 [me%) Yڶ1b-M6mVf1&:_ J!% pH$I$Of *r;˶mm蹦6$$ɒȱ*Ao[i )}7$=[ ȱz*PkӶmJ~?6$I2$yȱjmO )@D I!I ꩪOmm[ J?tD$ *I)Wڶm JPA$K*r_۶a&IjʪD+޴' ʦ=a۶C-)C۶M_ )›f9$m *P}ۦm I®p=۶[l蹪ʚk+$HBkʇ mD$I$I)ªJmڶ;.)tW9mJʳ1-mڨhR:)yOyV ʊZqnܶ-J=Pm`m*&*Wm۶c؏*_nYm j+HɐNfmm׶kNjπ_@ *@Rmۢm˴NJ`mբ Jπh(IRAJڀt?jڿ}D%B$j)ppPPmϱ ۦ9b (BGݶmݐlE) vl۾m9 6-ߦ1 9jmǶme)ꚪM۶ME)mѡi۶E)A*6'b'E)bI4A$%)곪1 eA//- C34C34fY!bbb`I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$d!d  !I$I$ |\I$I$bI !))) I$I$d!d !@H$I$!bU!I$I$d!d I$H$!bVUT I$!b_I$I$II!/???I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$d!d  @$! $!I! */?I$I$ b T!I$I$E)I$I$e)I$I$d!d I$I$$!!/I$I$$!!zI$I$d!d I$I$d!d H$@!I$I$! ! **I$I$d!d I$I$E)!@I$H!U!!@I!I$I$E)a@ !I$I$! ! I$I$E)I$I$d!d I$I$$!!I$I$d!d I$I$d!d %DI$!UU, d!,% %*-P$(EPP4E *4! X DZ/%V`) 1,d٧eՕ_/!3izꠀ)3 hf^ 3 hf$q~uc %1^ꨠ I$L1i!UUV`I$I$e)I$I$d!d I$I$d!d  !!I$I$d!d   !I$I$$!!II!55I$I$d!d I$I$e)I$I$E)I$I$d!d I$I$e)I$I$$!!I$I$$!!pI$I$d!d @ !pI !% I$I$E)$H$!I$I$! ! **I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$$!!I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I @ ! $! **I$I$$!!I$I$$!!I$I$$!!II$$!!* `$dB2$!Ap !a 7 I$I$1  1I$I$e)I$I$e) $e)I$I$$!!I$I$d!d  !I$I$!zzI$I$!AI$I$b`! I$I$d!d $!b`I$!b5I$I$$!!2$!4I$I$$!!I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!I$I$d!d I$I$ UVV^I$I$I$I$!A߾* !I$@$!a $A$!a I$e) 0 %)`I$I!A?=10%)`I$I!a} I$I$$!!E)!@E)$! 1I$I$$!! E)!I$I$1E)!C0C0e)$!E)!I$I$E)$!H$I$$!!I$I$$!!*1%)$!$&$!`$!b  1L& $!A|!I $!@"D$$!bp\@!$!aI$I$1&$!a`I$%)b5$I$ $! I$! d$!$A!P$!iP----?4@$I蹧??DK$H$E)TTTT @ E)! I$A%)!I$I$E)$!I$I$1I$I$1I$I$E)!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!$E)!I$I$1H$H$e)E)!I$I$E)00E)!I$I$e)H$H$E)!@ $!b`II@$!a7E)!I$I$1H$H$E)! E)!I$I$E)$! E) ***L$%)(E)!I$I$1I$I$1I$I$1I$I$e) E)!I$I$e)2,2,f1!bbbbI$I$e)@$@$E)! E)$!I$I$1I$I$1I$I$1I$I$1@%)PE)! 2E)!z^@$$! I$I$1I$I$E)$!I$I$1I$I$E)$!@$@$E)!I$I$e)E)!  E)!I$I$e)I$I$1@$@$E)$!IIe)I$I$1I$I$1I$I$11I$I$1H$1E)$!@$@$E)!H$@!TX` E)$@$H0E) jI$%) 7%)$!I$I$1I$I$1E)!jꪪI$LE)aU׾(@%)@$@$E)!IIe)I$I$1I$I$1H$H$E)!I$ e)I$Ie)I$I$1 1@$H$$! I$I$$!! **I$I$1%)$!I$I$1H$I$e)H$$!!@I„$%)a׾  E)!I$I$e)E)!I$I$1I$I$1I$I$1$! I! (+L%)b I$I$1@$@$E)$!I e) %)$!$I2`$$!b\@!%) -I$I$$!!$Iɐ$!I$I$$!! $! I$I$e)I$I$e)I$I$1H$H$E)!I E)!H$1E)$!I$I$!$!I$I$e)  E)!I$I$e)E)$!I$I$1I$I$$9$/ ɛ$%q$) U0 n%y$Y @I&E%y $E%yI$I$hI$I$hH$I$ht+FE M\bB$)E%yx* @E%qђH%ya~  %qPú" `HWd2dP$)UVhI$$@$!UUUTE)$!I$I$1I$I$E)a!!E) --0%)b@@@I$I$ bUUU$! E)!I$Ie)I$I$1 $E)! $!I$I$$!! !%%%%I$I$e)I$I$1 1I%)$!I$I$1@$@ e)I$I$$!!I$I$1I$I$E)$!E)!$8$!UUU@I$8$!UU@$I8_  @85 C`H$I$@8TWUI @8UH$I@8VI$@8U IB$IH8Uiڶ P8U I6P8տI&EY@* {WD%iH/  ImKFiEa IҶhFiEYW I$mFaEY? I$I$aP I$iH m۰m;FaEY^U $I$aH IJն-fiEY5 /[$fqEQzU I$EYEQ_ $$EYEQU @$$EYEI mgeaEI*+ #H>fiEI _ @$eaEI_UmڴEQEA %v$eaEA U $eYEA~U @r'EYE9 U и?EYE1UIn$EQE1Um$EQE)Uжi$$eI W9m$fI UIm'E9z6q4e9 Uu 2I'e9$I E1Aۚ$'1/ A$$)*I$A$!II$f1sI$p$E)!jI$I$%)A*& $$9aI%Y1 UYQI;HXf1 UUTI$I1>H$L$!I$I%)9 Osn)e?J=&2K蹫jC!A$Y)pI$I$ UQUQknіMْڋ?DE-ݶ ¢ꪒ_ 9$uJҨڪCm[eb- h}۾NJ6Rئ4m)Ҫڨ_vmnJ\ I$i*Ҩ\m۶m.JJ/wɨnO۶. ҺC I1$I ɦbB"%@%%!PPPP۶ۖE)0-mڪf1 Ꚋ$L0E)! D ?A A$H&9%)QUY Ɲ؞9f1*6`۶me1 ضE)H@$!  $I$$)AJ+9fI/-// C3430fa!bbbbI$I$d!d I$I$d!d I$I$d!d I$I$d!d !b I$I$d!d I$I$d!d I$I$d!d I$I$d!d !I$I$ |I$I$b! I$I$d!d I$I$$!!*H$!$I$I$$!! I$I$d!d I$I$E)I$H !bW\I$I$b II!?//+I$I$E)I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$d!d H$I$!bTUVI$A !I$I$!I$I$!bUV !b!  I$I$d!d I$I$e)H$!,$!bI$I$d!d I$I$d!d $!@$I$!II!***I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$d!d $H$!H$I$! ! I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)%HI$!UU, L!-J$EyVTT4*@ Ey1% ViDZ%1-$C&`B&DZ3,GnXkc/&(`DZ_+#" f() E_b faI&b$y!UZ`I$I$@!UUUTI$I$d!d @$H$!A I!A?' I$I$E)  !I$I$!AII!5%55I$I$E)I$I$d!d I$I$d!d I$I$$!!I$I$$!!*I$I$$!!I$I$e)I$I$e)I$I$e)I$I$e)  !I$I$!I$I$!II!****I$I$d!d I$I$d!d ! I$I$d!d I$I$$!!I$I$e)I$I$e)I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$E)I$I$E)I$I$d!d I$I$$!!I$I$e)I$I$$!!  I$I$$!!xII$$!! $I$e)@$I$e)I$I$e)$A2L$$!b\$! I$H$$! I$I$d!d  !I$I$!zz~~I$I$!AI$I$!azI !5%  @$!p\ ! I!A?. !@I$I$ A>,!I$I$$!! *I$I$$!!I$I$$!! I$I$e)$!0I$I$$!!I$I$d!d I$I$!~I$I$xI$I$!I$I$$!!=-) @ 1I$I$e)I$@ e)@$I$$! IIE)!I$I$1I$I$1 $1I e)$E)$!I$I$1I$I$1I$I$$!! E)! $E)!zI$I$$!!>W:,2,e)!@I$I$$!! / E)$!H$H$$! I$I$$! ****  1I$I$E)!L&`B!bXpI!b% I$e)I$I$1I$I$1d2 $!ap $A$!A I$I$1$!@I$$!a5H$I$!A!@%)   $!!@RP  7qswwiP/-D4I$DZUUDH$K$E)TTTTI$ E)$!I$I$E)!I$I$1I$I$1I$I$1I$I$E)!0E)**zE)! I$I$1I$I$1I$I$1I$I$1`$E) ^`$I$E)a^V E) H1I$I$1I$I$E)00E)!I$I$$!! *@$@$E)!IIe)I$I$1I$I$1I$I$1H$H$E)! E)!I$I$E)$!e) ꪪI„$ %)ߺ E)!I$I$1I$I$1I$I$1I$I$e) E)!I$Ie)2,2,f1!bbbbI$I$e)@$@$E)! E)$!I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$! %)!Zz!AE)!I$I$1I$I$1I$I$1I$I$E)$!**@$ E)!I$I$d!d  E)!E)$!ꪪI1I$I$1@$@$%)$!IIe)I$I$1I$I$1  1I$I$e)I$I$1I$I$1I$I$1@$ e)IIe)H$I$E)! %)`I $!b7I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1@$@$E)!IIE)!$`$%)ax E)a +-H$H$E)! 1I$I$1I$I$1I$I$1H$H$$! I$I$$! ****1I$I$1  %)$!I$I$e)1I$I$1 C&%)x!  A$%)$! 1I$I$1I$I$1L$`0$!AxI %)a-- I$I$11@$@$1I E)$!I$I$1LB&`!Ax $I%)-  @ !I$I!a7I$I$e)H$H$!A $! I$I$e)I$I$1@$H$E)!II$e)I$I$e) $E)!{I$I$E)a!$@E)!I$H$e)  E)!I$I$e)1I$I$1I$I$1  E)! 7I$%q$!-UU T%q%) % @ !E%q@!EEyhI$I$hH$I$hI I$hI$dBE%ykE%y 3Eq_#I%ya_z ~ iP_vR;[ mX(j $ 2P$)UUXI$I$1I$H$!!!E)!E)!ꪪI$@$$!b&@!%) -I$I$1E)$!I$I$1@$@$E)!I$I$$!!@@I$I$$!!II$!5555I$I$e)I$I$1 $!$%) -I$I$1  E)!$8$!UUUI$8$!UU$I$8%)UI$I@0I I$@0I @8U*I$HH85@@0 IڶmaP8տ/ I$$IP@UկI&) X@U m$7 `HU o%7 iH mHl%qP Iܖ%iXկ*TfYտ $$ C2FqEi[VU  2EaEY ضkۦEaEY^U $@H"I:FaEQ ۀmۚEYEI $$EYEIU$EQEI vKn$eaEI/W $EaEA^U$$EQE9_mm$EQE9UM$EIE1_0ۖ&EIE1Um$EQE1U6mkEI Iۖ$eA U$mk$e9m E13 1IE1 jUY$A$e1 m$I$9bI$I%)AaI$E)I$I$ I(Ie1<HI %)I$$E)!j.II$ A$I$!jjI I%) UgUq$I1.I$I$9I IbE)a*IIB2%)?H$  I$9sq8cE)AiI1I?17; !jI$I$1!UUU 9!U]U!E)bI$IE)!]U!a 1G1G1ӿE۶mҮ%)Z ?9ϳ !m{mf1 =f1wt B$I$9!PUUUdH$@E) 6ƴm׆1 $I$%)& ɒ I$9!EEU?1|f1**c۶چ1AjIH"f1 |9I$I$1!UUUQ $%)icf1/{H$ b y$G9I$ $ bI$I$E)AHJDE1!()(*/qieA---yi  hcyfqz 3:qfQzxzzj&b.eA XXXXIdmӢ%)+ 8qE)ꩋ A2$I$)&ꪺmӶEӶe1Ajb$I$%)!$CI%)j? ۦ9 o ɓ$H$9%)uUTUcö؆1!Aٺmn%) ?A O Ivǧ9%)U_vlضmۆ1 ?9ʊ]mۆ1! 1`I$I)_P]w *mOn۰m)ª*r76lm豩D6]ÎmN c ۋUUUW6m; J5wk?ҋUp9ȱ;Gr!I ȱ6۶l P6/mJ¢nHI!G M$Iu)ª予?Cy۰- j3$4 ȱJ [ )Uܰ˶lJ*:F"Ӹ)kNn`.ۋ7p/LLȩ }`}ܬj?=]m rUض۶eJ¨ꪚFm۶#6 *}Z&2$HJʫjHaFm)¦7$Hɐ ȹC0I1K *Uo۶NJk|#=NjOh+IIJҪ⡪\vl߰mJMmvE.- *JMٶqöm ʩmok~Oط5۶=)ҘzZM9$C ɺ,j}I$I$ UQUUW$G)ҧ*s'H$%1XXTTI%I$BE)UQU p9 ki1Émφ1m; ;1!|m)6e179i`m%)H$ʘ$1!TUWqb$N$E) $A$9 wUT fI ---- &p'fY!xXXXI$I$d!d I$I$d!d I$I$d!d  !I$I!b77 @$!bx ! -I$I$e)I$I$e) @$!I$I$!AI$I$!A ! I$I$d!d !b&I$I$$!!I$I$e)I$I$d!d I$I$E) @$!I$I$(I !/I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d H!b  !   !ʊI$I!@$H$!p\\pI$I$!b/! !@I$I!UI$I$!bz^^x !   !I$I$!ꪪI$I$!!*I$I$e)I$I$E)aI$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$d!d H$H$!I$I ! ! I$I$E)I$I$E)I$I$e)I$I$$!!*I$I$$!!I$I$$!!\VW_I$I$d!d I$I$d!d I$I$!UUU#hI$U1 -eE ./1&x 5Pz/(a p3 I")E@@3DJIE 1)vl۴DZUUUV-#$^+3 ie~ꨠ"  i$q~I# %(_ I$K1i!UUT`!!  !$I$!VI$I$!AII!%%%%I$I$E)I$I$d!d I$I$d!d I$I$$!!I$I$$!!I$I$e)I$I$e)I$I$$!! -I$I$e)I$I$d!d  !I$I$!I$I$!I !*** I$I$E)  !I$I$!A.߿$H$!pX !A -I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)aI$I$e)I$I$e)I$I$$!!****I$I$$!!I$I$$!! I$I$e)I$I$e)I$I$$!!I$@!aX $! @$I$$!!I$I$d!d @$@$!I$I$!^___I$I$!AI$I! @$!b@@I$I$A !a I$I$d!d I$I$d!d $!.I$I$$!!I$I$$!!****I$I$$!!I$I$$!! I$I$$!!H$I$!aw!b !I$I$(I$I$X\\\I$I$ I$I$$!!) 1I1E)$!ꪪI$@$e)IIE)!I$I$1I$I$1@$@$1IIe)H$He)1 1I$I$$!! E)!H$H$E)!~~~I$I$d!d 2,C34e)!@@I$I$$!!. E)!H$H$E)!II$$!!  1I$I$e)I $e)I$I$$!!(Ie)I$I$1I$I$1H$H$E)!I$I$e)I$E)!I$I$1  E)$!@$!8E)!  E)!jjjI$PH* ywiP--/-44I$I$%4H$H$DZE)TTTT 1I$I$E)!$H&%)`XX E)a --I$I$1I$I$E)!`$L&!a\X ɐaE) I$I$1I$I$1I$I$1I$I$1I$`E)aW^ aE)"$E)~!%) -I$I$E)!I$I$E)00E)!aaaAI$I$$!!////@$@$E)!IIe)I$I$1I$I$1I$I$1H$H$%)$! E)!I$I$1I$I$E)$! %)$!I$1I$I$1I$I$1E)!I$I$e) E)!I$I$12,2,e) I$I$e)@$@ E)! E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$E)$!****  E)!``!  I$$!!  E)!E)!I$I$1@ 1 1I$I$1I$I$1  E)$!I$I$e)1I$I$1I$I$1 1IIe)I$I$E)$!I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1@$E)!IE)$!H&%)\XI!@E)5- H$I$E)!U E)!I$I$1 E)$!I$e)H$@$$! II$! H$Ie)%)$!1I$I$e)1I$I$1L$`$!axxI!b- I$I$$!!x $!!I$I$1I$I$1H$$! 1 %)@I$!A>ߟ@$A E)!I$Ie)I$I$1E)@ $$!!!* I@%) @$@$e)dB$A$!b$!!I E)!j %)*7H$H$$! IIE)!I$H$E)! $!!I$H$!! E)!@$H$%)$!  E)$!I$I$e)I$I$1I$I$1I$I$1 E)$!ꪪI$I$e)a;c;%Q$!5UUU  $%q! U0 n%y%Y @I&E%y $E%yI$I$hI$I$hI$I$hDB$Ih  @0E%y d"@E%q 3 i%yiz 3 h%qX~ꠀ ~Rc iH_mǤ ѣX$)Zj$C2d0H!UUT@ E) I$I$E)$!LB& $!b %) I$I$1I$I$1I$I$1@$@ E)!I$I$$!!I$I$$!!II!5I$I$e)%)$!$$)aI$I$8$I8$!U $@0I$I$@! I$I@8UI$@8+* $IH8*Iڶm H8*I6X@Uׯqb$%X@_ Iv iHU ݶ&iP In$'%qP In$%qX r$ %ya v-FFi? H`Ey%qT I{fFy%qU7 ڌڵ_?FyEa~_ %m;EiEQ~ $i;EaEIW@I;EQE9m'EQE1Um$EIE)U I&EA_0m$eAl8eAju Iq%E1$Q$E1$ɒ$E1o('Ie1?H$I$%)aa I %)AI$ $E)AkI$ $!I$ $%)aJs$AҤ1 ^UQ$I'E)A I I81A$I!A@I$I$ A ! I$I$E)AA$I !0I$I`;E)b:IaH%))I$$%) I %)bI bI_1C?I%q1!UY] ?9sI$I$9!UUU3mf1˨ ??9mc;f1/e1F.$I$$E)bXvۦAdž1+ A?ڶmE)*͘vEI!Uu+OI$I !UUtI$IAJ!UU_I$yI)!UU/_I$J)UUI8j)UtIRDhJ0U }I۶mj9U\I$m U^MI$O' !UUW\ #AO6lLme) $!~1*I$I%)!B= ߟ9 ~sӧ9 ~kmۦf1j?9 Ͽd2%)8vҵЮf1Z ?9OmǵmE) *!  I9յm.EE)ʢ ~܆1ϳǶ +E)AHR$m%)bJҪ:Ii97uSqfaE9--- N yfa+(@yfi_?:fqeIzzz#beA!Xxxx<9?m'mf1!b 0@!b ?1?c)j;e1jjm&mE)!*z 99- ۣaۧ9!8 E)ALI$I81$!?IJ79!nۆn۶ E) 1ߦ9*HE)$I$1$!pITIj!5% tP-ٖK2J;fI豫*O6Bk_ JO~Pvl۰m-*}M`Hz$-)˜hpZ$I J0OMѺh۔*&em6lڋDضm n*«RulNJŸψ\$I 2Jªh`JMömm*¢B`mvV k=WZm߮JꪋPH>ݶJªZ wM)MK’JJzRݖ $ij H[5[)hj*w=۶m7l蹪6-ȹhzH۶uq ªPڶmJʇl1NmvNȹ(rJ @ }k%% ڋAmڢڶ A۶l6lt}ۆZm۷h6JҪjcQ٦lۢJҡW$I I ʪkڶ] k?tmG$[I$I$!! I$I$e)1  E)$!I$I$$!! E)! %)!j$A P@* 11iP----1I'vǹUUO$H$5$)WWTV 1I$I$E)!%)`ٶmضmE) I$I$E)$!I$I$E)$!@E)!zI$I$1I$I$1I$I1I$I$1I$I$1 $I$10E)``I$I$A I E)b- I$I$E)!I$I$E)ZZ,E)!AAAaI$I$d!d @$@$E)!I$I$e)I$I$E)$!I$I$1I$I$11I$I$1I$I$1I$I$1  1I$I$e)I$I$E)$!I$I$1 $LE) WW^I$I$$!!  E)!I$I$E)$!2,2,e)!I$Ie)I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$1I$I$E)$!I$I$1 %)&I$I$1 `&$!a``IE)a %5  E)!````H$I$!$!$`0%)pp I%)a %/I$I$1  E)!I$I$e)I$I$1I$I$1I$I$1I$I$e)1I$I$1I$I$1&$!ap @!%)a -I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1 @$E)! %)$!I$I$1 &%)xI$H$E)!UWTU E)! I$e)  E)$!IIe)@$H$E)$!IIe)@1I$I$1I$I$1I$I$e)E)!I$I$1 1I$Ie)I$I$$!!^\X E)!I$I$1I$I$1I$Ie)E)!I$I$1LE)(I$I$1I$ 1 %)!jjH$I$!a׼$!I$! $! E)!H$I$e)I$I$e)10%)``I$I$!a/I$H$E)!IIE)!@$@$E)$! $I$e)H$H$! E) %@E)$! E)!I$I$e)I$I$1I$I$1I$I$1 E)!I$I$e)  E)!I$I$!!** g%q%))UU T%y$) % @ !E%q@$EEyhI$I$hI  pH$I$hH E%yklE%yꪪ H%y%q3l%yi_ b %qP~c iHWI" X!UZ@%)UUUP$H$e) 1I$I$1I$I$1I$I$1  E)! 8$!UUUI$I$8UUI$I$8U$I$8$!I$I$@ I$I$@! I$I@8UU?I@8H@8I۶m P8 I$m P@UծIl6 `@*Il%' iHU -G%qPտ+ R*9%qX_nUFaU i]k rFi q[$ %yi* mw$%y%q  o۶F%yUU? - $I2F9*jئmے$Ey$!@U I$Ey$!@UUIFq$! +֫:EiEQz~ $m;:EQ xI$EAUU$I$E1I$I8e1AI$A$!AbI$I$ )I4i$%)AI$I$!H'I$f1I$A&$)AnII0$)jI$He)A $I9I$K,e1<I$Ib8f1WI$I @L !I$!I$!IE)AImE)b*I @Nȱf1=6 mE) Ǯ1?M۶HE)A-!I$$!* m'E) !bO?E)֨ 9?$$IE)**`HdH%) ! vضmS%9!YU+"IIU/kI$I)UU*`I$/IUUI$mj)UU I$X'lU I6qj(U*C6mAUzqu& kD c=#j"L?mڨ:- 9i[- ~M})zPhmӴJ}Pm{H=*1h۶m҇*-ҢmgB*;iт 鹽?73ƵjPb\I$N&!UUVX'9bڪAۦm۶f1!Nl6lۧ9ifM۶1a): ؆c9sG9 /AmVf1a* Am۶MZ1 mۏ 9 $I"Re1"ȩm9 > x9$)UUU ᅥ1mFlE)@!A7sf1!kmӖcf1{mѦm6%)?)pyIrE1++\ w$̚fi U`@m$̚yU} $fiU#>?(bxxzzam;f1!&! f1bzA?mێme)hlnE)I$I$f1)?m۶ce1$!mֆ1)m۶m 1!CA$I$f1E)QUUU۶mf1 y|9b*LhIf1!I!IE) c۶ۆ1!s m۶A& !݆faOi-Ķ*}eqM$]QWURk~JǒkI7I$ڋUmUkIɟ?-ۋUEU]D5۶m *tR5J‡M$G.6l)ªjDF˶- D% I ZmӶG۶Jj_-6mڶ-kR۴.J=U$9#Jªb\C[i۶Njhdhҋʚ-}WR$iIjʚ`qK0n۶ Ӌbp$I$nuQUUW۳- J 0%)A`tL:f1b ?9vl۰mE)e1A*H$I !M$I$%)af 1fY%)--) M$eY!\VVW!I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$d!d @$@$!`hhhI$I$I$I!!I$I$e)I$I$e)I$I$e)I$I$d!d !I$I$E)@$H$!`xxxI$I$$!! ! I$I$E)aI$I$E)I$I$e)I$I$d!d I$I$d!d I$I$d!d I!bTH$ !蠨I$A$!II!+/I$I$E)aI$I$d!d I$I$d!d !@I!b% !!$! !**H$! ! * I$I$d!d I!:**I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)$I$!I$I$$!B !CI$I!bU<!bI$I$d!d $!I$I$d!d I$I$d!d I$I$$!!I$I$d!d  !I$I$!AI !%%%%$!b@DI$?,0 L)1%PR.DZ/1,6oDZV_/+a۰ǩ?4)9!DZI3$IDE/#`z,3 hf~"z?`\|Y}EX ~c iH~$ XzI$Z mXU^ @I$I$E)I$I$e)I$I$E)I$I$$!!髫I$I$e)I$I$$!!I$I$d!d I$I$e)I$I$e)I$I$d!d $H$!A I$I$!I$I$E(C ! I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d H$I$! A$! I! +/?I$I$e)I$H!WW ! @ !I$IA,.I$I$$!!*!I$I$e)I$I$e)I$I$$!!I$I$$!! I$I$$!!h`pI$I$E)@$@$!I$I$^\XXI$I$Օ5I$I$ b*jZ ! %!b&I$I$d!d I$I$$!!kI$I$E)I$I$$!! I$I$e)I$I$e)I$I$d!d I$I$$!! I$H$!^^x !II$! "  !I$I$!AI$I$ oII$!a *!A $e) $e)I1I$H$$!  1 1I$I$1@$@$1$C$A$!aI $!a/I$!$@$$! I$I$$!! * E)!I$I$1$I$E)!*+ `$E)a\%) !IE)!I$I$$!!I$I$$!!  $I$e)H$Ie)$C$!$! 1$I$e)$!@I $!a& $! H$11  E)!I$I$$!! **E)$!`$L&$!``IbߒiPUIn`U 4/4 DZǩ4x%R"%%)\PPP E)!I$I$E)!I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$E)$!I$I$1I$I$15k$E)bx\@!E)a I$I$E)$!I$I$1I$I$1Mm6`E)!I$I$1I$I$E)!I$I$d!d $LB&E)AZ ! @$@ E)!I$Ie)I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!E)!ꪪI1I$I$1I$I$1@E) H$H$e) E)!I$I$1C0C0e)!E)!I$I$1I$I$1I$I$E)$!I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$10%)@I$I!a'E)!%)` E)b   E)!```I$I$ $!E)!b!&%) X!%)   E)!I$I$e)I$I$1I$I$1 E)!I$I$e)1 @$1 E)$!L& %)axI%)b% I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!@ E)!ꪪI%)$!I$I$1L$L2!A ! I$I$$!!I$I$$!!e)$A&$!`H!%) -II$e)I$I$1E)!I$I$1I$I$e)E)! $$!1I$I$1H$@$E)! E)!I$I$1I$I$10@0%)`p I!A //1I$I$1 E)$!H$I$e)E)$!` %)ؠI$I$$!!%%//L$d2$!\VX!!@%) I%)$!I$I$e)1I$I$1I$I$1@$@$E)! E)$!@ E)$!ꪪI$@ e)H$H$$! $!E)$!I$I$1H1I$I$1I$I$1I$I$1I$I$1I$I$e)I$I$1IE)! I2E)!a۶%Y$!UUU p$%y$! UI%%y$a )@IE%y $E%yI$I$hI$I$hI$I$hhI$E%y#ђIE%y v i%y$q3I%ya_ c %qP_vc `(jL$d2P$!UVh e) 8%)UUU$$8$!UU I$8%)U$I$8%)I$I$@ I$I$@! I$I@%(I$ @8UI$IH8U i۶m P8*I&)AX@UNb$%X@WI-7 iHU $7 iP ݶ$ %qXտ*I~$ %yaտݶ-Fi*  wۖF%qo mIE%q* ڶmF%yIn۶ E%yEy!UI$E!UU $$I$ II!b5/I$I$e)I$I$e)II$9$! &6EY1{P$I$%9AxL$I$%)AI$I$0I$I1b?I$I$!*I$ $$)Aj $H$$)H%I1I$ bI A@se)A <1$C!HE)aj@!PI$H$A޼6ضcۆ1 ۶m;1 1_6b۶Sۆ1O!H$$A%) ? mf1GmڶE۶E) I$IE9!UUUPI$I$)UUU=I$I"@!UUUtɓ$ORlj)UUmI$F JUUI$6lk)UwIrs*IjA `I` `J1qmkDa `D j _I,$ jUEuQM6o;i)Jql=. 7$qhȱ*Jvm )eAk PŶm *M6i[*Hm)ڲ )r6&MS$H蹪"Omu` )HhӶ^ٶ )|Aڰ `Ir$I' jUSU^Ahڶhۖ )O9 t4-۶mȱhFvY[ miJ`ϟ?~9!8 m6lߧ9A!0$ f16*;flۦ1bh ϑo1&%)#ٲmӶ1j?9{%)blۦ9!I$If1%)UUU+U6f1j%) ovǦ9 a۶؆1a*жmۦE)v ϲf1 m׮E) G~?!1lmE)* SfYE1---- p qfa   yFaX 95qfYzj X5PfQ$!xxB!UUUmIlE)aH!IE)b$I! E) 'I$f1!}Arن1bӢ _9> c۶m;1hjI$IĦ1E)UTU l۳9 1&$" e)!jh <=?9!wHڶkۢ1A 9 Ӷ`ۆ1 I oj%15 PmmJ;Eٖ+ȱNhy$IB$ ۋUUURkI I% ۋUEUYZmװm JpO ϓ$-WEwUJ$5<˓ hWsJ¯)hw-7zh$IB$AҋʪwwI$I$ Za@6IkʪH$I7 )ª}` $Akʩ.mE6m[ګU[6 *ºj\iۢ|-j϶z1@@ȩ@rI$ _m۷)ڢjҫCٶmX ڕOCm۶m ʒWm}OJ?-I$I$ UUWmp۶JҪC@` ?$Ű$ r *檨Z$IzdA2*Ҫ*jmmmJڪ*eo˶}[ jۺ۾-H@ 9E)uTQUiJenf1**jII$1E)UUY Ii\x( aA$q  Ifijm lfP# hEXW I$i8W~u:b ` ^I$ P!UW*$I2d0$1z` $! -5I$I$e)I$I$$!!* I$I$d!d $!I$I$e)!I$H$!AI$I$!I$I!! I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d H$!A$@ !II!?/+*I$I$d!d I$I$e)I$I$e)I$I$d!d  !&I$I$$!!(I$I$$!!I$I$$!!I$I$$!!I$I$$!!** I$I$$!!ppppI$I$E)@$H$!I$I$!^^__I$I$ I$I$ axI$!mI$I!a7 !! I$I$E)I$I$$!!I$I$e)I$I$e)I$I$d!d I$I$e)I$I$$!!**I$I$$!!I$I$!A  !I$I$I$I$I$I!A $! I$I$e)I$Ie)I$I$e)I$I$$!! $!  $%)`p$I$%)b U@$A$$!!@I$!($!I$I$1@$@$$! I$I$$!!* E)!$@$E)!z^ IE)!/==N$p&e)b^XXx I!A/I$I$1I$I$$!!I $! H$H$e)II$e) $1I$I$e)I$@$e)I$I$e) 1H$H$$!  $! I$@e) $1 @$E)!I$I$$!!* %)$!  &$!@ PH-+ 11qX----D4I$IDZUUUD[%[$DZE)PPPP E)!H$H$E)! E)!L$E)a(E)!* I$I$E)$!I$I$1`$E)^E) k5ۺ E)Ax %) I$I$E)$! I$I$1I$I$1 $1I$I$1I$I$E)! I$I$d!d mSZE)j$! E)!訨IE)$!I$I$E)$!I$I$1I$I$E)$!I$I$1I$I$1I$I$1e) I$I$11I$I$1I$I$1I$I$E)$!H$@$E)$! E)!II1 e)E)bbbI$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1 %)(I$I$E)$!I$I$1I$I$1I$I$1E)!I$I$1I$I$E)$!I$I$E)!   E)!I$I$ !!$!I$I$E)$!L$`$!ap !@E)--   1 @$$!ap@ %)b -I$I$1 E)!ꪪI$I$e)$1H$I$e) I %)$!IE)$!I$I$E)$! E)!%)$!I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$10$!@I$!a.@E)!H$H$E)!^~ $!! I$I$d!d E)!`&C%)bXxI $!a--I$I$e)0`&$!A`p!I$!a %%I$I$1I$He) E)!kjI$LE)׾(E)!I$I$1I$I$1I$I$1I$I$1I$I$E)$!E)!jI@E) I$I$1I$I$1  1I$I$e)1H$H$%)!ZZZI$I$$!!/?//H$I$$!!ࠨIIE)!E)$!I$I$e)E)$!$%)$!I$I$1H$@$e)IIE)$! E)! I2d$$!H$I$! $!//A$I$e)E)!@$I$e)E)!I$I$1I$I$1I$I$1I$I$e)E)$!$%)$!@$@$E)!I E)!H$H$E)! |ɟ%q$! UU T%q$!% @ !E%q@$EEyhI$I$hI$I$hI$I$h@h$C EEy E%y_ l3 H%yi  H%yX  iiHS;X(ڪdB2 H8I$H@8W_I$I@0I$ @8UI$IH8U* I$H8*ImP@UIl6`@U Il%7 iHU }D%qPկ  qR '%qX_o4 %y`U ߶& %yi r$ Ei* [r$E%yտm-AF%y?/F%y$E$!T$ȟE$!TU$I$E%)TUUH%)ܠ! %)I$I$e)I$I$e)I$I$e)I$I$$!!0I$I$e)@$!X-m&9ajA$I$1 I$I$ !bI$L$%)<I$I$ bbI$I$!N$Iħ9AY$IE)A"I1 ϛ9? ۵mf1$ɐ$Ie1!!lڶ e)AI$ $e1!UUEUiۤ-'E1e9I!]U+?I$IrUUU zI$IBJ UUUI$q)Aj(UU)}I$ UUI$ U/I 6M0Uˁ+IDa}_iA%j=kUvNm J_>H!I$E ©*=u#FȹJc۶ N M-ڶm*eA@Aj?Zۦ鹊wA$&H鹪R~?jWEe]/TɒȀȱOkۮJhM4IZ$ *ª"tF˶m7l FL۶)OD۶mӃ)h6ȱ@J66m )O}?}WU۶iWjOm67 *mP7;=.)£~t\i۶$ J«w\dÝݦj¯zMadI)©*P}mӂJ`?jE^?VM+蹂*=L9,֫鹶jh7"$Ij&_N$h=!V\X`CHRf1b I$I"9%)UUUpI$^Ħ9%)U[I$IRE) 99˪$I$HE)  }9!mӭEvE)!@۵m1!?XYm61iȦmf1 G9?1!:f1j $I$%)!mڶm[%) y9 9mm6E)* 6uS1fQ$!+/)- q/yfY/I$(yyUU yfa~~ #:fYE1xxxx?13Ǧcf1 ! I8N$f1!UtWUX9h |ɟ9$)QUU %) 2B mNoק9 wif1!6l۶E) ?BI$I 1E)UUUE m˶3#9 N@E)@ P=~mۧ9cI$IJ%)UUflݺmj%IcQ$y ۋQQUe`jzA[6ۧ *8; E) ȱ&OEZ P]J5kdz-ۋs?LkmKo)R΋mNJW=ֳmSNjʇ'w ۋWI!Jª騼mNkWmvSnJekShն ۋz<\dH$ Jšzpҋʫ`Yjʪ*U P<1J&.tA`2 ªj1I Aڨ wPa\*"OomՖ k*JeJ zʡky uUTuM%9L)ª*zP$V$)(cƭضMjҩꨪ\mplNJ\m׶MZ.JҿMɔBJ ʪF  Cۼmvd ꪪ\JҢ@0cmHѶ-J4z.UuXP#92$a Ҫj*Rm6m_N*|J@۶p 208k)@@@`A  !NF9E)FAWB mVl1*+ m%)@%)LKA۶E)6Цm;f1 ! c;c8%)j A$y&9IDe9  %a$1KKKI$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d @$H$!xx I! - I$I$e)H$!XpI$I$!bI$I$!AI$ !jzI$I!b55-I$I$e)$!b@! I$I$d!d !I$I$E)H$I$!\^VWI$I$=5I$I$E)I$I$E)aI$I$d!d I$I$d!d I$I$E)I$I$d!d @ !ࠠI !?**I$@$!xI$I$b5 I$!jZ !**)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d  @$!! I$H$!! I$I$E)I$I$E)I$I$d!d I$I$e)I$I$e)$!!  !I$I$!I$I$!I$I$d!d  !!bI$I$e)@!I$I$e)I$I$d!d I$I$d!d  !@H$I$!I$I$!AI !) I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$d!d +$I$!UUU, I$!U1 @H!1+{DZ1/@ $DZ/)DZz,(N [:(/ m~+C(hf_#Ew !ufXZzy6EP?O%q@_ öfHh0j$ ` _I$k lP!UWI$I 9$!UUU@I$I$d!d H$I$!Xz ! I$I$E)I$I$E)H$H$! I$!**I$I$E)I$I$E)I$I$d!d I$I$E)$H$!`XXI$!a -/! I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E)I$!I$I$E)! I$I$d!d I$I$d!d I$I$d!d  !@! I$I$$!!I$I$$!!I$I$d!d I$I$d!d I$I$$!!I$I$$!!I$I$d!d H$H$!I$I$XzI$I$5%-/ !////I$I$d!d !@$H$!ah I!A // I$I$d!d I$I$$!!I$I$e)I$I$e)I$I$E)I$I$e)I$I$d!d I$I$$!!@! $@$!hI$I$*/I$I$!AII!-I$I$$!!*++/I$@$e) 1@$H$e)I$I$e) e) %)`I$IE)UU(!$ $! I2C$$! I$!A.$!@$@$$! I$I$$!!*E)$!$I2d&$!iIE)+/??ڠ-E)ࠠ $@E)+**I$I$1I$I$$!! $I$$!!H$I$e)I$I$e)I$I$$!!I$I$$!! I$I$1I$1 1I$I$$!! $I$$! $Ie)I$Ie)@$@ E)!jH$!A @E)@$$!𠠀n X8 yEyX/J?@&I$I_UUD@%P$E)PPPP $E)! H$I$E)$!۲ ۶mE)!j***I$h6`E)aW(E)@$E)aXE)`I$I!A>Vl݆mE) I$I1I$I$1I$I$E)$! *I$I$1I$I$1I$I$E)$!I$I$1I$I$E)! *I$I$$!!ZR,E)bBI$!A =I$I$E)!I$I$1I$I$E)$!I$I$1I$I$E)$!I$I$1I$I$1$`0%)A`x!IE)a --  E)!I$I$e)I$I$1I$I$1I$I$E)$!@$@$E)$! E)!۰m۲5E)`I$E)H$H$1I$I$1I$I$1I$I$E)$!I$I$E)$! E)!jI$LE)տ,E)!E)'I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$E)$! @$E)!I$I$ !!E) ---@$E)aX%) I$I$1  %)$!H$$!bX`I%)% I$I$1I$I$1I1H$@ e) 1%)$! E)!$E)!@$H$e)IIE)!E)$!I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$E)$!E)!I%),I$I$1@ E)!ꪪ 1I$I$!!(E)!I$He)  E)$!I$I$e)%)@ %)b I$I$1$1%)$!I$I$1I$I$1$H$e) E)!%)$!I$I$1I$I$E)$!@$@$E)! E)!%)I$I$1$%)pI$I$!!E)$!H$@ E)!$I$I&$!XI$I$$!!I$ %)!I$Ie)I$I$e)%)$!H$He)1@$@$e)II$e)`$E)dH$@E)!_L$H$E) UTVV IE)??@ E)$!ꪪE)$!I$I$e) 1I$I$1I$I$1I$I$1H$H$e)E)!H$I$$!!A$A E)! E)!H$H$E)! IE)!v$I$$Q$!UUU I%q$! %U@ %y%Q @IE%y $E%yI$I$hI$I$hI$I$hI$I$hH h[`E%yꪪ t"Ґ@E%qꪪi%yi~  i%qX_ ~Rc iH_~Ib;$ IX@UImX@U*Il6 `@U*Ib%7 iHU %7 iPկ* %' %yXU*햓$%y`v-@`Fiտ .35`;F%qk I E%q !i6`E%yI E%y $E$!PE%)PU $I$FE)PUU$E$!TUUU@$@$E)!I e)I$I$1I$I$1@$H$E)!I$I$e)I$I$e)I$I$$!!@@$I$!0$!bI$@!b^I$@$)bkppI$I$A$I$!y $I$ A&I$I !aꩊI$I$%)b᮪I IE)Aqlضmf1 qO9!WmӱcE)k]6Y6%)A@?B~?k4mѴE)j*mMۮE)IJ)U%}94j`-Z~mJe0IdHJڬ`m[m۴ JAI$M ʪ _pv6 J/~Zk"m JOoO4K$I ʮ`}6 JOv۳E)h;ݶJ說?$IIڸFژ]N)}U`KGJzZmjKJ??߅ZomJe,jʇ}H*N6$I)HjAmuhKZ鹪:z#möegCeVm *;?еJwkˍmN)ϒPiۢ JeI<-UUQ_ݶEӶjs}PI$*ª&kA$ڋQUgR0vV JŒU۷KJ¹PM;ݶ-J~p= IL蹀$==۶tH豮k=8 pCdI!A )p3$I )ȱ@RmNJzDH L ƪ;mжt+Rȱ($`jઠ9O$N<%!UUV\m;mĆ1j ?9!h9! v} ۦ9+mӶf1jE)   $I$1E)EUUUfױ˦1ۦCǦ9!{9I$I$Z 9 @@%)nm:e)s XCB$ jW_r*[UmNL J>4`[1 ȱbhGҋQUUAl۶j蹪(&Rw mJ?bܻ owH$ dH `O'kUUms"9B))X` -׌I [ç9A)6l˶mE) ?BI$I$E)$) ضdž1*m6E[f1ꢮ ۶m9 vL۶me)!-۶mf1p4m۶f1f]6hf1!?#;9f1!IdH$f1 9ϵI۶ E)a۶cf1;#me1K x٘I! N)RqeQ----yq P-͆yfixxxx b#PfaE9xxxxH$$E1!VTDT !A@ ƱE)bmve1 mmۢE) ?9= 9 ~9 mێm1 <1rmStiٖ1ꢩJi1*c۴mf1 k $I$1E)EUUUcO J=kF$IQ%k !0Mm -Y)ªAD$ɊdC jeICUURCkMۮ-*6 ǐ,] ȱ(ꪅP۶ ۦ*ª*ر)H$IN㇩k-ۋ?waIb<-yUUStI-uUUFM&M!I * Jh-[- "Um׮mÏJzh@ҋʚeNm-zP)O$I,Ӓ )ªjhqc;-xv\I$I2j¢jR$I[j**DmѶm-)?_mǰmj}Aöm۶1鹢jp9 ȹ h(N5eu]W۵.JpNO WUUEUMlJ7n/A$ ʘ}M ʀ@Z۶mO*ʪjO$$IS j.W-Ӷm*҈jH$I$TUUTUm۶m؏*cm۶-kڿI$H$-UUTUUl٦mѶ Ҫ*R$C$ jPm6-ZɪjH$J'k%!\TTTI$ $f1$)?A ۰m;9j,ڶM늆1Flc;9Ajۺ銬E) I$I2%) jj@!A $I$A%)!Y I'O9 &L$E)9S eA CR&d'YZZ^ !b I$I$d!d I$I$d!d I$!(I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e) @$!TI$I$I$I$b` !b I$I$e)@$@$!b@P` I!b% I$I$e)I$I$d!d I$I$E)a  !I$I$$!!II!55- I$I$E)I$I$E)I$I$e)I$I$d!d I$I$d!d I$I$e) @$! ! I$I$b\W\I$I!+ A$@ !! I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$E)H!a I$I$E)a !I$I!  @ !P@I$I!b%)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$E) @$!I$I$!I$I$bp\PI!b I$I$E)H!I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$ WVI$I$I !** @!`I$I$E)I!*I$I$d!d $@ !b@P` I!b%)I$I$E)I$I$d!d I$I$E)  !I$I$! +$I$UUU1 $!U/(/,hR$@ VY_1, /j1觩EX``, rk?Eyi%5# Id%q(c6f&I'iXU_ ~ ifi_ `E`_ Ic hqP NRc iiHI6 i`!UjNb'HP UUXI$mH UUUTI$!**I!I$I$E) @$!`XI! %I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I!H$@ ! ! I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$$!!I$I$e)I$I$$!!I$I$d!d I$I$e)I$I$$!! I$I$E)I$I$E)H$I$!I$I$I$I$A  ! I$I$E)I$I$e)I$I$d!d I$I$d!d I$I$d!d $!I$I$e)I$I$$!!bI$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d @$@$!xxxxI$I$!AI$I$!A ! I$I$$!!-/*I$I$e)I$I$e)I$I$e)I$I$e)E)!I$I$1$1I$I$e) $e) 1 @$1H$I$$!!I$I$$!! * I$I$1 @$E)!z^dD ` E) H$H$E)!^VVV A$A$!@$ E)!I$I$$!!dB$H$!@$I$!aXX$ $!a I$I$e)I$I$e)@$I$e)I$I$e)I$I$e)I$I$e)$C$$C$!b`I$I!A7/ II$$!!H$H$$! $!L@@%)6`H$???? PH 11$qX----?4I$蹧?R"%@$ȱE)PPPPH$@E)!^^E)!I$I$1I$I$1 $)( )(I$I$10E)pE) I$I$1I$I$1I$I$1$I$@"E)!ۆvM$E)bE)$!I$I$1I$I$E)!****I$I$E)$!!!e)$!e) ꪪ E)!ꪪI %)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1E)$!ꪪ E)!H$E)!-[&E)bpx$I$!b %%$A E)! Ie)I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1E)!I$I$1I$I$E)!I$I$1I$I$E)$!I$I$E)$!I$I$1H$H$E)!I$I$   E) E)!H$HE)$!E)$!I$I$1I$I$1`$L&$!p\\p %)  E)!@$1E)!I$I$1I$I$1I$I$1I$I$e)@$!`!@E)!dE) I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!E)!ꪪI1I$I$1I$I$10H$8%)UI$I$80I$I$@! I$I@%(I$I@8UUI$I@8UU$I8$!V$I$8$!UI$8%)U@I$8%)UU`2I$8I!$0$8%)UUU8$)UUU\I$He)A E)!dB2$ E)z !@E)) I$I$1I$I$1I$I$1@E) I$I$1e) ꪪ@&%)p`I !a55  E)!I$I$$!!?I  e)I$%)$!0 $!``I$I!b?? E)!I$I$1I$I$1 E)$!ꪪII$e) E)!j$$$!dB&d&$!I$I!bU**!$@%)I$I$1$@$E)!@$H2E) j$E) -I$I$1I$I$E)$!@$@$E)! $)$!/$8$!UUUI$8%)UU$I$8$!UH$I$8%)I$I$@!  I@8 I$H8 +S`H/ psq%qX+ $`&S%yi +@!E%yhI$I$hI$I$hI$I$hI$I$hI$I$hh$ E%yꪪMۆmE%y NBEy%q IBEy%qImE%yIm6E%y!I$EEy$EU4!I$F!@UUIE$!@UUUI$I$1 @$%)$! E)$!I$I$1@$H$e) IE)!￿IE)! &E)!  E)!I$I$e)I$I$1I$I$1 E)! $!@I$I!bՕI$!bZ $! I$!b&I$I$e)  !@@I$I$A:LI$I$A*)"I$H0$!aI$ &$)I %)@!bl8vE)%) I< 9$)Ue%)+ڶm[61 {жmÆ1!} J1%WZlq)ҸOئ%Y ҂w?.EVUpof krdJv_Cm\:`:ڂWAdH "\Bm۶.Jm>M!I$! ʩ*PmѶmۦ *Mlq ʊ_NJ1q㶭 㧹wM$II)!Pm;l *?k_ڋUUek;@ ȹ eII$ kUUDʖ|C nDmۮ )p`?ojσ/fn,AfҨ*CۿN)}cYҋ¿5P65v-JZ6bӶ] jOz_I2$mjʢjj}enѶ$I2ҋ?}1 II PmQmVj??wC|I 8Pe۪m)ª(OA$)**MFl}NJe-ۋUUQEZmܶjr6[6möm豚7X蹹D!I$H \;xJFl۶Ѷ*9w#')j%)VXp@ IdHRe1 *$$IE) vc۰m99j۶- 6lE)@ 9*nAvضچ1* I'I$9E)]UI$A49E)UUQu vl܌mۦ1"I4e) $Ðf1b UD@)H'E$ )W6l;mn*Mm6n)JkoӶ-*?}pR(@ ) UI'9%JZJ-l۲ *rA"I$A DDMͰ$; 榪h=kȹ}=!D$I zUFL%pIª"PmFNJz1R%A:Iȱ0};H$IeM[ ۋ>ze$I[mҋ`*ێm jteҋrɳ M$uFWU\$ɐ$ jªcc ۋ[<~rMr)@rF !Zo j7A'$c )jky8H -]uT%Dm۰Ǐ חcG? ۋQUUUFmݶ-Z *}PMm[Jw?cI$[(J%1UTP@mm.f1*jm˖m;f1$! 9!79!? "IE) 4C4Ie1 n ?~A۰uۖmE) 1!?]rmf1*نm۶.E)hH !$@ ǎc׆1wp۶؆1A$I$e1!QUUUI I$E)!E]U6!S15wf9/,-.ifI----^ɟyq; 69yfi`#:#ieIxxxx%e9xmMѴE)A.Mnf1<1splǶMe1@ !LI$1|I$H%)!* 1/ faE1---+ H$I$eY!TWUUI$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$d!d H$H$!hzzzI$I$!AI !!0I$I$e)I$I$e)!I!.I$I$E)aI$I$E)@$@$!pppxI$I$$!!$!b!bI$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)a@$H$!I$I$!I !**+/!I$I$d!d I$I$d!d  !I$I!**I$I$E)I$I$d!d   !I$I$$!b@$I$! !**I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)aI$I$E)H$H$!I$I$ ! I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$H$!^^^VI$I$! ! I$I$E)I$I$E)I$I$E)I$I$d!d  !b@I$I$E)I$I$E)aI$I$d!d I$I$E)@$@$!zrpxI$I$!A !) I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$e)%PI$f!UU,1$!U(ɗdEy%%1+E]cQQe-+ I$$-(#͐I1;DZ^ /cH],CHfU&HEW  ifq_Sc mE`WRc m%yXW  ih(jI&[ m`!UZI$KlP!UUTI$I$1!UUUTI$I$e)I$I$d!d H$!訠II$!b**!I$I$d!d H$I$!!I !* I$I$! A !bpII!! /'I$I$d!d I$I$d!d I$I$$!!//I$I$$!!I$I$$!!I$I$e)I$I$e)H$!X! !@@$I$!AI$I$bI$I$$!BI$I$  !+* I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$$!!-@! $!bpI$!A /I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$!^^^^I$I$$!!I$I$+-5! I$I$$!! I$I$e)$I$e)I$I$e)I$I$e)I$@e)I1$1I$I$e)A$A e)I$I$e) 1H$H$$! I$I$$!!* E) I$@ $!!xɖڢe)! $Ʉ$!E)!@$H$E)!I$I$d!d I$I$$!!I$I$$!! I$I$$!! I$I$$!!II$$!! I 1I$I$e)I$I$$! @$!a0\I$I$$!!I$I$e)I e)H$H$$!! I$A$!I$I$1LdH$!inXH+*yw1uSE`-5%44I$I$&4 DZ%9@@@@HI$%)A(Wm56lE)ax!@E)a I$I1I$I1I$I 1I$I$E)$! I$I$E)! I1@$I$1H$I$E)$!II$E)$!  @$E)bp\Vl)tE)a -I$I 1I$I$E)$!IIE)!**** @$E)!-nlE)! I$I$d!d !0E)!I$Ie)I$I$E)$! I$I$E)$!I$I$1 E)!ꪪIE)!`$E)8I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$1@$@$E)$!IIE)!H$E)!!H$IE)!  @E)!I$I$E)$!I$I$1I$I$1@ E)`͐dI%)a 'յ$L&%)a`XpIE)b % I$I$1I$I$1I$I$E)$!I$I$E)!**I$I$E)$!I$I$1IIE)! * @$E)!H$H$! $! E)! I$I$1I$I$1I$I$1@$@$e)E)!I$I$1E)!j!I E) E)!I$I$1I$I$1I$I$E)$!0`$E)x`I!5I$I$$!!I$I$1I$I$1H$E)!IE)!I$I$1I$I$E)$!I$I$E)$!I$I$1%)UUU H$)UI$I$80I$I$@! I @8+i۶ P8 .W`@+ %G %qP o$%q`U* b%q`U I%qXW @%qXU Ib$ IiP NҶiPUӶiH_I# IaHUIbk H`HUNb H`@UIb$ HX@UI&[ X@U_I$mmP@UI$$ P8dB$ H8IB$ H8_IB$ H8UI$@8I$@8I$H@8UI$I@8UU!$IB28%)\$I$8%)U$0I$8!U` I$8$!UU$AI$8!UU$8%)UUU $8$!UUU$@$8$!UUU\I$I$1I$I$1 E)$!I$I$e)E)!뫪I$Ie)@& 2$!I$I$ dB@"%)z$8%)UU I$8%)U$I$8%)I$I$80 I$I$@! I$I@%(I$ @8UIH8U I$ H8I$m P8*Ib$%X@UIm'`HU o$' iH I~%7 qP 햜$%qX  %ya* iY$ %yi* 1EJ Ey%q!I$AEEyI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hEH$E$!TU?E%)TUUHqTI$I$E)$!I$I$1@$@$E)!  $!I$I$!AII$!%555I$I$e)I$I$1I$I$1 $!!I$E)!U  E)!I$I$e)H$E)!I2E)!I1I$I$e)E)!I$I$1I$I$1H$H$E)!I$I$$!!I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!I$H$!a_||xI$I$A++!I$%)?I I %)!@!b c{-ۆ1!j*i&Ie) ?1{j*(c{6lφ1c* mwm1* 9 FIO$DZ?M"F*'K Ҋj_wmNJڝle$|HJ*OiZ&Y ҙ\]Mۏ*Dh$Irk6c koӤ`&A$I*+ʪOMe ɦ*D@P `Op4IJҪOiنm*ʈr; UtUUR&&IJʪtW@J PmѶmڶ-J?Wvhvm Jʟ?_m۵ ;J|=H$I鹁tU,9 *ªt4W#iIȱcr3&iREȹzMoߒu*o?}\$IP Ijª"m a&-۫Z1$!I-ȱ*\]Ƕmnj\mjߴjʟlcah ۋ;Woh׸-j~cv]-jrqګ]W}JI$Q)@ `۶i-j?$ɐI 蹪hovlڋrWTj¦_mvl J˗JmڴJɦUm˶-6JªjJ]۔U[ *J$;$ɀ HhӶ۶ )|cI$d,)£M[i[1.M#؆1j }09 E)!0mҶmѶe1 * I$H$9E)UUTU6m6ldž1i2$K$9%)]RVUB H$I'9%)TUU] $I%)$ɐ$$)ǟf1Ar۶a'e1A* !A@ v&aGe1A:&: OfaEA---- X0-yEYbbj ` byEYX5ieIxx :eAx$1AZI$A'1!UUS]vmlf1Am)ڢ%)!IdH%)b  HAm[]lf1@E)!Z b@$If1$I$CE)! @ eI$IJ%!UU5pt$Ij) C(ِ$IV := I$I蹦Cm[xQ۶-)Cu#6-)?hۏ}ڋ-$9ɐ ۨzM$I$DJªcF<;m;-j~AMǢk۶-&J!IN) )©8HI} zI$I$-UUUQC.Y۶)e;-ۋw̎Z,)$Jª(O$IIf )ªzIfA/-.21I$I$f1 I$1!eUedže)A*mǶmf1iӆmf1 )SfYE1+ --Msya++--c#6b;yq 9qfYxxxx #:5fI!xxxx !b@]ۉmÆ1l#f1!mضc[e1aj*˶me1 ?@"$@$) @Km۲%)i۶if1*`ɓPJ)u}i۶ukʧq) PmӶJ?A&I2'iP鹫j#Wmm۶j*C##$8 j=$A$C*jcطk͗kڋRN EJJ*&CHI 鹪_mmF ۋ?Z ȓJ¨&OM.)º*nedE6(IڋʿoHo[)ª(cIdHjʢUiænJ¾hm۾mZ ۋӚzp$H$ ۬UTU`m1l-j_m۷A-=#m l Z*}PmӆiJWn۵n\JªۢwF$GbCm {U۷ N)74y$蹮JWmK-ݢJϸ_NJeNUUMm š&}U۶!۴MJʪJPֶ؏*WnmNJM_SNJ~s`͉J$IJҗ \M[h JҦj+OaM ʭ+e]یmnJ` J0`m۶m.j9e#I"IJڪciێ.Jڿ`Ӷ`۶Jڪf`(9@@9!= 9j"m[umf1 ) I4I$AE)uUUv6 ۆ1%) [EE)v\6jۆ1 !ɀc;#E)jLLB$E)I @$!ʰ 9u`fQ!%--) B"&H$fY!PXTTI$I$d!d H$I$!hXVX ! I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$!V@$H$!jI$I$!AI$I$!յ! I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)I$I$E)a  !@I$I$bVW0I$I$ I! - I$I$E)aI$I$e)I$I$d!d I$I$d!d I$I$d!d @$!   !ʂI$I$**I$I$a蠀I !b--I$I$E)$H$! ! I$I$d!d I$I$E)I$I$E)aI$I$d!d H$H$! $!I$I$!I$I$E)I$I$E)I$I$E) !@$H$!b ! )- I$I$E)aI$I$E)a $!I$I$I$I!?I$I$E)I$I$E)I$I$d!d I$I$e)I$I$e) !@I$!&I$I$d!d I$I$E)H$@$!I$I$$!BI$I$ brBI$I!%! I$I$E)aI$I$d!d $!!bI$I$E)I$I$E)@ !x$!H$I$ hI$I$ *I$I$E)aI$I$E)I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$E)I$I$d!d I$I$E) !I$!*$@$! ! ***/I$!UU1 $!U3I!41ض ٖ$DZ*31@4-#DZ3)#@~1%3+-ڧf_xz"c 1Ex` ce i b?- fX_Z EP_ Mc iP}~ڬ#@` j% i` UZm۲HX!UUVI $!***{I$I$d!d I$I$d!d I$I$d!d !I$H!A(!@$!pI!b/ I$I$e)I$I$e)I$I$$!!zZI$I$d!d @$H$!I$I$I$I$I$I!I$I$E)I$I$d!d I$I$d!d $@$!axI!A +/I$I$d!d I$I$e)I$I$e)I$I$E)I$I$d!d !H$I$!:!  !I$I$TTT\I$I$!AI$I$ z*I$I!A/ I$I$$!! /// @$!I$I$$!! @$$!\$A$$!`2$I$!!A$I2$! $! I$I$e)$1I$I$e)I$I$e)I$I$$!!I$IE)! E)!ꪪI$I$!! :C;4E)!rpI$$!*C&%)rI$!a 7I$I$d!d I$I$e)I$I$d!d I!8I$I$$!! (I$I$$!! $I2$!@!b-I$I$$!!I$I$$!!* I$I$$!!I$I$$!   1I$I$$!! $!! I$E)! H$! !!XH////q1E`----44I$I$&?($B$J蹆JKH$EIE)VTTT$I$1I$I$E)$!X2, E)pIlE)a I$K %)~(!@E) I$I$1HIE)!ޮI$E)!H$H$1I$I$1dB2$HE)!x E)!-@$H 1$I$%)a^^@!E)  0E)!|xɐ f1!%%-/$ 2E)!I$I$E)$!I$I$1E)!j @E) I$I$E)$!I$I$1$1I$I$E)$!L$E) ^WWE)!HE)!I$I$1I$I$E)$!I$I$E)$!I$I$1L$`BE)b^^x !%) I$I$1` E)\!H$@E) I$I$e)I$I$1I$I$E)$!I$I$E)$!*I$I$E)$!I$I$E)$!**I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$E)$!I$I$E)$! ***$C$ E)$!ࠀL&`&%) UTTTII!**** E)!//I$I$E)$!I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!$E)!IE)!I$I$1I$I$1I$I$1@ E)!ꪪI$I$$!! IE)! %)@I$I%)a&E)!I$I"PE)UU) $I$HE!%H I$PHIĤm XH Iv iP+.WEX* }. fi+ +E* 1!qin4 + 4,ym4 *41ɶDZ 4$DZE)@T@$I$E%)PUUUH$@ E)!I$I$$!!I$IE)!I$I$1I$I$1  E)!I$I$e)I$I$1I$I$1I$I$11I$I$1I$I$E)$! E)!H$I$$!!$O$%y$!UUU%y%)UUI$Ey%)UU$Ey%)U%y%) ImEyi I%y%q vBے%y%q Ibے%yi u%yi NB%yi_OBi%yiU vB%yaU ڒ%q`U I%qX_ Ib$ %qXU IR$ IqXU R HiPW IR HiPUIҶ@aHUIbaHUI&aHտ* %7 iPտ* $%qX 햔%yaU m6%yiկ* iK$%yi* I$Ey%q 1IJE%yUIn۶E%y I$EEyIE%yIhI$I$hI$I$hI$I$h$E$!UɟEy'eqI$I%)b5I$I$1I$I$1@$@ %)$!IIE)!I$I$E)$!L$d&$!II$!/?I$I$E)$!@$@ E)!  E)$!`$I$$!b0WU%)I$I$1E)` $!b I$H$!^\\XI$I$$!!$! I E)!߯I$I$E)$!I$I$1I$I$1I$I$1$E)$! %)$!ꫯ  E)!/+.d$H&E)!@ %)$!$A$A$!I$I$1I$I$1  E)!@$!I$I$e)I$I$e)I$I$e)I$I$e)I$I$e) $! @@I$I$ VV\\I$I$!B  7$I$9A %)I$I4E)!I$Hbf1 d@%) O$N'9%)WWW\ ضmǧ9a+ I$F9E)UU۶k1"mTf1 $IDI$k%)UOk۶дѪ+w UUQ_mە-*ҪښrmEۮkڪZ`ENJέ`u7m*Үnj*cmiNj_`mYlSJҪje!OIJ*`mEfNJM m ʊ*r ܱt _}?\E IJ6$ r$If 먹WYCJʢbCx۶m˸.)4] ȹpJ Rw- JpO I$IJ)}?۶۲c鹪 j; ǂ$Y蹨_$$qrҊ)/`mvL-ۋ>zH" @̎zIIڬUUՅcؖm۶mҋʨ*zY, $NYgEU\cǰmnjDdI"d J\e6h:-j}D@F$y \mնm* **HUm۠-JtA\1$NQmUJmNNJ=r\Pj M/`kNJm $Q2& ۋEVQXtMi$P*O +$)¨r1 E$IʨR-*9&h豋۳۶k1`hI$hJ$)UUXhmZ1ڦE۶e)! IݺSf1I$M9f1!|vsiۦhӶE) 1? I2$2%)A!A 1 1_fYE1---5 )r1g qfa c۶-@yfq 3::qfYxh X5PfQ$!xx$ IE)aڶmf1!]UQI$f1!UWEǟ3e1bImǶmf1ۿئ1 w_I$I !UU `Ij%1 rD$Hbl 7-Fmۢ ώH-4lѳ)g*p?I$I\NJRmעi J¿uUmض-J7[i۶a 豚rI$I ۫UUE_ ۱iNjU۶i{nJ}m'Nkev-ۋ\I`1*b1@ !I$I$ b@LI$) 1wfYE1-- H$I$eY!TTUUI$I$d!d @!pI$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d @$I$!bp\W\I$I!bU5I$I$ bI$I$!AII!I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$e)I$I$E)I$I$E)$@$!``xXI$I$$!! ! !I$I$E)aI$I$e)I$I$d!d I$I$d!d !@$I$!$@$!rI$I$bII!@$!I$I$E)!I$I$d!d I$I$d!d I$I$E)$H$!b\W!a H$I$!A$A$!II!I$I$d!d I$I$E)aI$I$d!d $!b@I$I!bUI$I$d!d I$I$E)aI$I$E)@$@$!`P`I$I$b %%II!////I$I$E)!,I$I$d!d I$I$d!d I$I$d!d @ !aI !b5I$I$d!d I$I$d!d @$I$!I$I$$!BI!+*** ! I$I$d!d I$I$E)I$I$d!d @$@$!b`X`I !bI$I$E)I$I$E)I$I$E) !*I$I$$!!I$I$!u I!UI$I$d!d I$I$E)I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$E) !I$I!*$!! I$I$E)I$I$E)-HI$!UU1 Im!3%0M%y;U3 i۞DZ4!IDZꥷ3 >v'HDZz4WDZ1IqDZx)` 5eKfz*,c;6' E_, ӶI%q_&OIi R# ifiWSc mE`WObd %yXW  i`jْHXI$KX!UU^I$I$)!UUUTI$I$E)I$I$$!!I$I$$!!I$I$e)I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$E)H$H$!I$I$ **I$I$II$!I$I$E)I$I$E)I$I$E)H$!XI!% I$I$d!d I$I$e)I$I$e)I$I$E)I$I$E)I$I$E)H!I$I$d!d $H$!I$I$I$I$$!!I$I!I$I$d!d $H$!AI$!a I$!A/I$I$ bxX $!b -I$I$e)`B&$C$!xp $!--I$I$e)$AC&$!I$!a/I$I$$! I$I$$!! E)!@$H$E)!~~I$I$$!!7@$0E)!pI$!*dB %)b 'I! !a% I$I$e)I$I$e)I$I$d!d I$I$e)I$I$$!!.I$$! dB&$C$!ap`I !a7' I$I$e)I$I$e)I$I$$! (I$I$e)I$ $e)I$I$d!d @$I$!A  ! H `PyW7uE`----44I$I$&?3??蹧x$fAT`aE) I$I$E)$!I$I$1 )(I$1H$I$1A$ 1I$I$E)!(I$I$1I$  1I$I$1 $H$1@$I$1I $1HE)XE)![$K&%)aX\pe)a - `$H$E)!T! E)!I$I$1I$I$E)!* I$I$1I$I$E)$!I$I$E)$!I$He)I$I$E)$!`E)!^**I$I$E)$!I$I$E)$!I$I$E)$! I$I$E)$!I$I$E)$!  E)! I$E)$!@$@$E)!  %)$!@ E)!+E)$!I$I$1I$I$E)$!"I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$E)$!I$I$E)$!** )(`&`2E)II$!**!!E)!+ I$I$E)$!I$I$1I$I$1$@$E)$! E)!I$I$E)$!I$I$E)$!E)!ꪪIE)!I$I$1I$I$1I$I$E)$! E)!H$I$$!!|\\\IIE)!I$I$1I$IAE)UUUIa$HE)U H$I HAI$IPH Im `H+ nW qP }. f` - ]Tǩ%y*4k-'lȱf3&qr4 *4/iJ DZ4 @$DZ@P4H$I$董I$I$E)$!I$I$E)$! E)!H$I$$!!I$I$$!! @L$E):W%)I$I$1I1I$I$1I$I$1I$I$E)$!H$I$e)E)!I$I$E)$!E)!ꪪI$HE)!@E)!I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1$I$Ey%)UUUI$Ey%)UU?Ey%)UUEy$!UEy%)IEy%yIBEy%qMEy%q IBEy%q IBEyi Ib;$ I%y%q Ibے%y%qW vҶ H%yi 3%yi IB%yiU Mr%yi ݶ$%yi  I$Ey%q 1IJE%yIm۶E%y I$EEyIE%y hI$I$hI$I$hI$I$h'E TE$!TU$E$!TUUI"$B"E)!I$Ie)@$@$E)!IIE)!I$I$E)$!I$I$1@$I$%)TWV!$!I$I$e)I$I$E)$!`&`&%)II$!E)! E)! Ie)LBE)V E)!I$I$1I$I$E)$!H$H$E)!H$@$$!\XxpI$I$$!! $!  IE)!$E)p%) I$I$1I$I$E)$!@$@ E)!IIe)I$HE)! 2@B0E)!  E)$!H$H$!bTUT@%) I$I$1I$I$1I$H$E)$!I$I$e)I$I$e)I$I$e)I$I$e) $!@I$$!UI$H$)b^XxxI$I$A*3iɒ$1b=ڍf1 TYVUA!UQUm6b;E)1lhKf1 9 9 $Id@1 mkǧ9 @E)00B?an(=6!FnɪBRI2i0 Ңjcev ױmoJmHp$I.jڪjJy$ TUUpJc]m6Nk?z1۶ ;cmuXv.kkmeVk=?e]mkPkm6NJpp.UU]A-9\}vx-Jﴗe۶mjH-e Ši_m۲mJʪ\o; JDm۰_;n I)H-FP)ҲmնJM?F uї .Mdׯmnj%szWݶ Kmjª*A$)I jedHɁڋ˱zl'I$N]UH$I6$I )ªz*_۶mjʪʉt ۫+p-A!u J6$E Iȱcmm[je ۋtU0J RJ¿mI&H' ۫UYTUWmZE j݈k{ҋ^QW+ i$K ۇ=DJ:AiU۶ )=kZòm'mjbF?|H1$nk!\cI$K,)$!UU\ E) 9 I$a<9%)UUYTB$If1!K o#1bJ{;1A* 99?m;me1bj  $I$9!QUU wuWfQ!//)- qY -&m&$i  yfa~| #::fYE1xxxxvlڶaۆ1? IIE)?9~@!PO'I!UUU5mIPJJ%1U!H$IfRN ߶l*t=6l蹪=dH$ 蹚*8D(۶m*ޒUHVm۶ JmI$E8-UURuJ!IIv)Rmᶭ" j?OZm۰L;-j~h6l۶cڋR 3r$I*hDIH 0PI% J¢UMl۶-j/zIO$NUWQm$C$Iҋje$͒$ ڋܤM%,Ε )Šʪ\RIIjʚ}1@ҧea]-ۋ;zI$I$ ۬TUU_c8$CҋAmji- \m- jWkWvkJ?=mѶn ?H3 =p4 @ҧZZEVj?DNY ¯ZmFjNJ}14KڧRmڶ=ڶ-JW[۶Jʚ rwx c3I$JҮckvʮNjrdO2$Izjki[m۶kکOP$I !köm-jMiƶm[ P۾m m jFhm˶Jڪ)_@*C zH$L$)%!\TW 1\۶-dž1B  (B ϟwp9; xrvl٧9!OsRkh٦ j¬ߤzI&H$-UYTUzF0 c1l[ONj?P"I$I)@/"H,ˈN㧱t~\NUQU`mYm-ʿߤm4-ۋCܶql Zmnۦ.j7߀_-ۖmjʊjHۖqm *Jm{mo*3gb$ ȱp1ʧwDէ.I $m; (Ue㶬Jºj4zݻm[# ȱ쾪N}es'ҋt]Mn ΤHvl۰m- }B8ң(ZtI#aJ%)UUh#y$I&f%!UUUx9%)TUUUme1*I8Hf1!@!b ! EömE)*m6mdE)b* 1SfI!)--- tbyqfY $IEY* Ѭ:yfazz9#:aE9xxxx$Ʉ! E)vbf1vlmE)b !ɐ ɄE)} ٶJ % m\ JFmSF )/zAdJ$I ڪ}U-ڴm[JUON*?Z-JJuѴR .*kM۶ҋ?J-6m* *oJtW J@Ou۶E[3J®n=mѴV߶- *cM$I )ª*6A!I-ȱ"Pm۶m:nj߲ZonJwm6mҫʨp?Nk?zIh'fQxxx I$!7ՕI$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d  @$!I$I$TTVUI$I$!U ! I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)aI$I$E)H$I$!X^VWII!55I$I$E)I$I$E)aI$I$d!d I$I$d!d @$H$!bp|x I! %-  $!I$I!*H$H$!I$I$@II$!b.5!I$I$d!d I$I$e)I$I$d!d H!!I$I$d!d   !I$I$ I$I$!j !+*I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$E)a@$@$!I$I$$!B !-%-I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d H$H$!I$I$ II!***I$I$E) @$!x !b-I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)aH$I$!VVVWI$I!I$I$E)aI$I$E)I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$d!d  !I$!b 7I$I$E)I$I$d!d I$H!$@$! ! I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d !I$@ !bVX`I !b &HI$!UU/ M)3)PJ.*-41ِdDZ *43DZ44I$I$%4$DZ!P4$DZ!@U4I$DZ!UC۶mۖ`DZ!4IDDZE?3$蹧U?3蹧=1Ho蹧TW4-C@DZ3)CH_1"3H_/uBIf_) hE_" R ifqbd fiUbd EXW Sd $qP_MB ih VI$`X!UU`I$I$P!UUUPI$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d  @ !``I$I$!a !I$I$d!d I$I$d!d I$I$d!d  !I$I$!^VVVI$I$! I$I$$!b! I$I$d!d I$I$$!!I$I$d!d I$I$d!d I$I$$!!I$I$e)I$I$$!! I$I$e)I$I$$!!I$I$d!d I$I$e)I$I$E)I$I$d!d $ $$!! K$@!* "E)! II$I$$!!   $! I$I$E)I$I$E)aI$! I$I$d!d I$I$d!d I$I$E)I$I$$!!55I$I$e)I$I$$!!I$I$e)I$I$d!d I$I$e)I$I$$!!I$I$$!!/@! !I$I$d!d II$1!IHIPH /ywiP+ -/ f%y----D4I$ɖ DZ?Km۰mDZET?#=8ȹE1xpppI$I$1 I$H$1 )(I$I$1 I$I$)($@$1 I1I$I$)(I$I$1 I$I$1 I$I$1@$)(I 1X4E)`It`E)a-/I$I$1  E)!H$E)!*C24E[e)!ࢂ $AE)!/+**H$H$E)!I$I$E)!***@$@$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$E)!I$I$E)!***I$I$E)$!I$I$E)$!0E)`$I$! %I$I$E)!****  E)!h`I$I$$!!*%)$!I$I$1I$I$E)!*I$I$1I$I$1I$I 1$E)`@!E) - E)` I%)a./I$I$E)$!I$I$E)$! $I$I2E)!I$E)!$!E)! +++$C2$2E)!jjjhI$I$!!!E)!  E)!I$I$E)$!I$I$E)$!*I$I$E)$!H1I$I$1I$I$E)$!I$I$1 E)!~۶mH%)UUU $H$HE)% I$I$Q!@MҶmP@ m- aHU* ɟoIqPս y. Ea "ywPEy- / i$Wǩ*1+i - *4 !@?$I$DZE)@TUUI$I$E)$!I$I$1I$I$1I$I$E)$!I$I$E)$!* I$I$1I$I$1I$H$E)!I$I$1%)I$I$E)$! @$H$E)!zI$I$E)aI$I$$!!I$I$E)$!I$I$E)$!I$I$1E)$!I$I$E)$!I$I$E)$!E)!ꪪ E)$!I$I$E)$!I$I$E)$! E)!$I!E)! +/I$I$e)0@ %)b`p@!IE))%%I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$$!!I$I$$!!* I$E)!I$I$E)$!$H$E)$! E)!I$I$1I$I$1I$I$1H$e)I$I$E)!I$I$1`&`&E) V^^^II$!**E)!I$I$E)$!***I$I$E)!I$I$1I$I$1I$I$E)$!HE)!*@$@$%)`PPPII$!b%H$%)$!ER4]ۮe)!IE)$!@$@ E)! IE)!I$I$E)$!I$I$1&`$%)`X`I$!5II$E)!I$I$1H&`$E) VV\XI$I$E(CE)!*)I$I$E)!I$I$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$E)$!*@E)$!`& 0$!I$I$E)a$!  IE)$!I$I$E)$!I$I$1I$I$1I$I$1  E)!II$E)$!I$I$1a2 e)!I$I$1@E)!I$I$1I$I$E)$!I$I$E)$!I$I$1H$@E)!I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)$! I$I$ AI$I$!b?I I$$!y?1?6le1bj]ǎ;e1. w|;9?M"E)m۶-69Ajvl۰mf1!i;6l1*vlӆۆ1 S6 1樊%1p1 c$XȐJڪh۶ Jkk;\Njڿ`I$ \UUW3$K *RpNk~kvi˸-kڿ?M&6 ʫڨwm_[ ?vlضm}r7 em۶Njem۶8NJq_$$Jʪ)Fm6N)~=-$I`D5 Q ®(tk )ҋwM I)I ¨w1P%IMҨ0t_$AJ*mWI AJʪR-Ҷm[JJ1mm ȱ*z`۶m_mjʫrI$I% ӬUTUZeqkm-ۋrϓQUUz_ J\sMۏJ7wA$I$-QUUQzeD`ҋʛeH[f[ ۋ\0'@Jºf \ض ޶ljʨ*`l{Nk|W8nJrI$'UUQUPm[mV *ªcZM۶ ۋWEڶ j’ꆭJFeA *RH۶] joU KJ¦7˷mȱ*J,I$)\Ǵqj>7(M Iȱ캦M8i-)w\J¿߸r_II,j?9mexȱ6\(0J‚`@@@ !b ql6d'E)b z !b@v`GE1&(::/sieA----Qsyi ڣ=fyfqpp:X?qeIzz_QI:m6☆1O?9_IɑI!%%55}/!9$ɕҧ}A$I G蹪*M:m ){?$H鹪*_ JWnJ?ߕF,IdJ)ceߞ-j8enM$I$ 2 )ªh\7anjn?Jm[ m۶- BC$I 2-蹪*h\ NJ¨ʪM-VI>NJ?_ze@ҋʚz= @Jܶq7d)ª7$۠$Ir-ȱ}\dIj#RFoل1Jª)h?H rH )D۲ö)jjrAÆeZ (meImVkFi۶}ߡ m?  zM[me) _mǦ j߻LD۰ݖm *jM□߶m ¨Zmvivj?pyN5[Wձko۶m-k_$ jҪ*&:z۰ 6lگC$p Ɋ.*p|Nkݨrm?m _?_mۯJR۶ ۶m)Ҫ&Uضin*Ҿσ_#iE*1\K:o*Җ뮤NdaW, f@zH$I$)$!TTWU 9!y&O$B =$H!Af1 ) 9  bǷ1Κ+ ym9ۭk+ڦE)?9?mضe)Aj'>e1AI$I %)aI&I%)/ )RPfY$)-+ K'fIx_I!7 I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d H$I$!zzI$I$!AI$I$!I$I$d!d I$I$e)I$I$e)I$I$e)!$I$I$E)I$I$E)  !I$I$TVWU !- I$I$E)I$I$E)aI$I$d!d I$I$d!d !!@$$!I !**I$I$!I$I$jI$!.I !***I$I$e)I$I$d!d I$I$e)I$I$d!d I$I$E)aI$I$d!d $@$!II!I$I$!!** I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$E)a@$H$!\TTI$I$$!! ! I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d  !I$I$E(CI$I$E(CI !** I$I$E)aH$@ !X`II$!55?I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E) !I$I$!AII!I$I$E)aI$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I!7 I$I$E)  !I$I$!b(VUH$I$!bUU ! I$I$E)aI$I$E)I$I$E)$H$!b`XI!b %5 !I$!b<I$I$E)aI$I$d!d I$I$d!d I$I$E)!$I$fUUU, Y$QU1 !I$ @UU4$I$UUU4H$I$DZTUUUI$I$d!d $@$!`x !5I$I$e)1DI$!)UU1$!U4I!41ɖ$DZ 43DZ*43HDZ41KmDZ4$I E@@1H E1"vBi-Hf_)~ iE_" R if$q~Rc if`_cd lEXW R %qPWMB i`!VI$[`X!UUPI$I$P!UUUTI$I$d!d I$I$d!d !I$!!I$I$E)I$I$d!d !$!I$I$!VVWWI$I$! I$I$!I$A !ZZpI !a-- I$I$$!!*I$I$$!!I$I$d!d I$I$d!d I$I$$!!I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)$!I$I$E)aI$I$E)@$H$!apx I!b - !"!C0E)!KKI$I$E) $I$$!! @ ! I!**I$H$!xxI$!A /?I$I$$!!I$I$d!d I$I$d!d I$I$$!!I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$E)aI$I$E)@$I$! VW$!$1*++)IHPH yys7w%qP//! 1P%y--- D4ɐ$DZUD4۲-$DZ4<<DZE1ppppI$I$e)E)H$H$1II1I$I$)(I$I$)(l,E)`IIE)! I$I$)(I$I$1 I$I$1 I$I$1)(I$I$1 I$I$)(  )(I$I$E)$!H $B2E)!I$I$d!d ZZ,e)!I$E)!*$E)!RI$I$E)!**I$I$1I$I$E)$!*I$I$E)$! E)!jE)I$I$1I$I$1۶mölE)I$I$E)$!***I$I$E)$!I$I$1E) @IȐ $!/E)!*@  E)!I$I$$!!_E)!+I$I$E)!I$I$E)!****I$I$1I 1 I$1`$E)x`ImE)5- )(Ͷ`E)I$I$E)! E)!jE)!-I$IE)!׮ E)!  M$E)bI$I$!  E)///E)!I$I$E)$!I$I$E)$!I$I$E)$!IE)$!I$I$1I$I$E)$!I$I$1d H$!U%IHP%) dB$ PH_*I\mYH /7 qP .W EX+ # }D %q+,ݒ$E/}[+Hf,!93 [$!PT1H$I$DZ!TUUUE)!I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$! I$I$1I$I$1I$I$E)$!0%)b`I$I%)UI$I$E)! ***H$ E)!@$!$A$%)!I$I$1I$I$E)$!$E)!  E)!I$I$1I$I$E)$!E)!Ie)$H$%)bXV%)b @ E)!ꪪI AE)!??/ m&M&E)bhXVX E) !E) I$I$1&L&E)b`XVX %)bI$I$1 E)@I$E)I$I$10E)`$$!U!II$$!!  I$I$1 %)@ I!bUE)!I$I$E)$!I$I$E)$!H$1I$I$E)!I$I$1`22%) \XPYI$I$E(C@%)!I$I$E)$!I$I$E)!I$I$1I$I$1I$I$1I$I$1%)@ %)H$E)$!!H"$HE)!ʊ I$I%)$! E)!ꢪIIe)I$I$E)$!I$I$1E)!j %)@I$$!bUE)$!@$ E) XXx`I$I$E)aE)!))I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$E)! 0 $!I$I$E)a  $!****I$I$e)I$I$1I$I$1I$I$1I$I$E)$!E)!ꪪII$e)I$I$1 Ie)$! **I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1H 1I$I$e)I$I$e)$I$I0$!@$I!$!bI$I$1L$`&$!b\|pI I$!bI$I$ A *۫ 1m6XvE)j*O~f1bꪞvl[/f1*$IHf1[m6l%) c۰ا9  mkۦ9ꤪ x?9 "Id@f1 II$$!-5wy.UTVeR A$ɐ $k%6Mjڪjʅa$A$NYUQUe)۶- khV۶v& k?_eMǾ nje"AȐJ(pmݖO-?r{6.ڟMk߶-ҷ JF'e- )۠JA[mVl ʚO,kaQ ʪ(Wfm.NJO、tI$$ UU5Up?oڋ}FRI$ šDm۶[ ª}Pmöe)ºD۲Y Šjjc۰mjkM@@h)ke$C2$ ,HteDI$ҋ嗕UHE7m IoDm )-R6l۱aۏJ=zrҬO!AM ))z i' ۬wGYUzI$I ڬUUecwsjzC \m] J€eUUUGzi8HNҝuTUŽmnJ_mKeSڋ{ϒ_mmjʪZ3hI 豪O۶%mJªZA۶mؖ ze I[؍ҋOiVm۾)©(kO'ڋ\Pṏ ?\NJ\cvf Js49-ȱ.jC]د- })T=r҇k")JH@@ 9I$I$D) FmE)bmQiE1! ` Rfae9---- yfi----  yq` b#6XqeQxxxx``eIxvlیme1vge18}IdIdjb???Pǧ ?Hl)?}HI$92 jmMp !)8mU(@J O.mvJ)`a۶9-j?{UIBj¡JUmE۴Jªj9$^2$G-ȱj*c!Ijʩzkҋʩi_۞m߰j+jRvnmǏJ?ߒOoq*²UuRi۶Nj?PeAm[Nj;ߨeڱc-}kܰ۶-ҋ*jzI$O$-UQUVrOdnUUr? @W6\۲;NjwPQvcJ=Fmۦmn P[mڶ)º7۶kȹ_mmj?zD4MSM ¢zR$A$J*iz7Dɐiȹcvl6l jtIɟڋҿ_vm7no jUۖiϒJʢyO$h ʪh| 2#OJҮ誡JFd݆m ʪOm[+mo*o?rvfm kڟ?W}[NJW׶m6l*ҩkmώoNJυkDIҤjڢ&Z\M[)¢cmڶ NJG 0@&k)@`Pm۾mφ1!möÆ1e[UK1 ᐌIf1( }9I$A$e1! A|I$O8B?mҵm6%)*j?r1O@$H$ Pɓ$I,  $! +*IIE)! I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$E)$!I$I HE)UUUI&H2HE)I$I$!`A PH ıi `P+w7efX ( %W%i* 3r$ȩfկ+; }*ȱf;+y~nȹU4  %)@1$I$E)@PUU@  E)!zjjjI$!E)!)I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$! ***I$I$1I$I$1I$I$E)$!I$I$1I$I$E)$!I$I$E)!**** @$E)!H$H$! ! E)!I$I$E)$!I$I$1%)$!$H$%)a^%) I$I$E)$!%)$!H&%)bX!@E) I$I$E)$!$E)!**h؆mE)hE)! E)@$E) 5 %)`E)!I$I$1I$I$1IE)I$I$1`0 E)bX`I$!UUII!% I$I$$!!+- E)!$E)! I$@$!I$I$E)$!I$I$E)$!I$I$1H$@E)$!E)! *$%) $ $!I$I$ !!E) %I$I$1I$I$E)!I$I$1I$I$1I$I$1I$I$1I$I$E)!I$I$1$E)!iive)!+///H$%)0WE) I$Ie)I$I$1I$I$1I$I$E)$!$H$E)!I$!bE)!K`$I$E)bUVI$I$  E) %%%%I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)! 1H$H$!I$!*I$I$$! E)!+++ @$E)!Z\ E)!I$I$E)$!I$I$E)$!I$@E)$!E)$!%)@I$!b UE)!I$I$1I$I$E)$!I$I$1 E)!`$I$%)0VUV%)bI$I$1I$I$1@0$!bP@I!A$!bI$I$10$!I$I$bvII%)Ak.YI4E)H!*mڶmE) ߿??vlöf1@@ %)$I"Ce1Jdm۶؆1!Ϸm۲lf1 Z 9!_ A ? ͐$Ef1@$) U-ܪ}۴ ʊP!9,IR ҩ.*}׃NUfYTWm۶mnJ?gpgϱm.kڿP1$K ҢjꪕO$WWW3'H$I⇹ R$h I ʊ릢A۶l.*hm1jNjkzm-kּHm&Ʒ- ʪ[t? 9m*Eۺ-ȹjJwJ €CUۮmP ¢9iݶp ȹ,`o߶c JpW"@ J@z`$HJʊk d$ڋEUUCm@uٶ jkedB2 I,HeI$,ۋU5UrRi &Hm۶3Җ- L\am-ۋ?ϨZh۶NjO}ۢM[nJ_ ۶[SNjz`aXHjʙUMEӶ-jw>sU$I"$H JªJk۰m˶lҋ*hmm\ ۋcv<m-ciEۦjʩwI$I" ۬UUUMD II 4|JH-ȱM)ڶ˶-jMΐ#*j(95[:-蹮zemض}ڋpHP BmeID ªAm; n 6d$9ȱDm{mN ?Jڼc)~c, jʇ€@3A!WeTVA$I$E)!QVUU !a ۰mۆ1 fYE1+--- Nyfa+---m6ESyqࠀ 9qfYxxxx bZfIx y9 ۶mE)b6IdI䦱!ՃAY[۾蹩m4@IJkȱ }7۶mk0l蹪}_voVjψZnڶE۶j; 蹶:UIR IJ¢**Z$G?d Jª~CHHۦ9 9! mpmǧ9bm۶m:1b I$J$!5ՃJA BwێmkkDJ F$I0 p0I ːkڬ榒pBr$IkhWmںmoJ?`!_0ؖ *b\mڶnJkmZo =ƃI$I$NUQUU`EӶlJbꫡc\[ JҢ)DۼmlꪂW=vnJzkH@kҪCms *z`۰-[mJʪj=6nnȹ9,ؖm6 㨱j`m ljt\#!XmJʪJRlvP-*Pkm۶JzD%[0n OFcM)sWdA4i2Ҋ*=n۴h׶-鱫(cˏjPːJڦb`mN-?绡ReII" J»JW=ڴ];JW۶a۶eJªhmÖm-ۋߝ`-ڶ{۬jʊMa$I%)b)II$ Al 㼧9?]v چ1mٶm#f1J ϓ9a& mݴiۂ1 vk;6ǧ9 AI$I$E)$) <9!>w E)@ؐmlE9UfL6l ҩ#U!M.I *걃 0Ib2 EeUkc$ALJ*e6nvNjOtq۶c k?Omn۴*9HlQKN* hmnj?Dd($IR ɚ(*=$˦%J.e#gۈjҪen\]6 kJɈ$IR ʢ*e>NJm rI$L W_~?_NJZm+-ʴJʪUm6ܶ J|O:--*~|e' JJmQm[6J?{Ph۴)ˆ;#q鹪CV-ڦ *=m6h-)k9׶ߢN9enj?W%%Jh!m{-7A2 :j9$YH-蹪`;vcNjʿ>mI'NmmDZ ۋR H$ɆJˆꪞP߶mM)«)zRJBЀmm ۋӡH%I+q (t I'-۬EUUUw\jXpj#RdH4?Jš*n`mxi3-jo6ڶö ȱ~9$Wd+ N蹪(UQ; J=~F Ip$G "*t77˾蹢fc?TITj4_H$J$Jb me1bM&iۥE)A*I$I$$)!U]UwyqeI$!--۷[ fiEI  I$)AyEYUU'c q%I S?eYE)~~z y#9H !A$ wv??9"&Rf+9)Am+mڵ )0eϑɟڋUUU;۶Cmȱ"7ۺmòmȱbtPP *#D`vk76` kHвuu h껚`mm ۋ͝3vm-ȱMmNJ7O$E$H)`mαANj=hh6ֶڋ`aێmNj>cqעmj-ZM-jFC )zC%Y!Hr )`۰}Nۋ¿|ݎZm:aj~?Dk. Oa{vj-*>OdI)„.;,9\P鹮OjݵmX J~߳Rm۝an):zZömٶͬJʪ4`HC 㨹j74$IȹڪZ Ҷە JG߻7i۲mѶ.맹*em.k=Z$IG2*ʪj\&ymJҪJ?m[m-pvm;6jNk/ZEm׵NJkmcNj}\m]o*ZmծA_w **>PəH ҹh ɓ IJڦhǶi J߿+II2.fj$I$JE1TTUU@ E)!@0@ ǟ<|9o 9 mݶhڶf1ꪘ mFۆ1mӶA[f1ꪡ OI$9 ? I:X'9!UyX] A~D93H !<I$I$  $I$%)b IW)fI -- J$eITI$I$d!d $!$H$!b`XVH$I !bXTUE  !b  I$I$d!d $H$! !I$I$d!d $@$!I$I$!^VWUI$I$!Օ !** I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)a $!b@H$I$!bUI$I$!! I$I$E)aI$I$E)I$I$e)I$I$d!d I$I$d!d I$I$d!d H$H$!  $!I$I$$!BI$I$!!I$I$E)I$I$e)I$I$d!d I$I$e)I$I$d!d I$I$E)I$I$d!d $@$!II !I$I$ !* I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$E)H$I$!Z^^WI$I$$!!!I$I$E)aI$I$E)I$I$d!d I$I$d!d H$I$!bhXVX ! I$I$d!d I$I$E) !I$I$!I$H$! !*** I$I$E)aI$I$E)I$I$E)aI$I$d!d I$I$d!d !I$I$!U!I$I$E) @ !I$I$!VVWWI $!I$I$E)aI$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$E)H$I$!@$@$!P@I !*I$I$E)aI$I$E) !b I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$E)@$H$!b`P@ I!b %I$I$E)H$H$!I$I$ II!I$I$E)I$I$d!d  !b@!I$I$$!!oI!7 I$I$e)I$I$d!d I$I$d!d I$I$d!d I!,A!bH$@$!I$I$!H$H$!II!I$I$E)I$I$E)-I$!UU;I$U4-@J&ۧ=/mk?ȹ5U?($I ȹ44I$I$&4DZEy@4HEy4,I4&3&IDZ|/ CH,CHf&HEW R# ifq_Sc meiU# l%yXW c iqH_NB# m`VI$$@XUUjII @I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$d!d $!`I$!A/I$I$e)I$I$d!d I$I$e) !bI!A/ I$I$E)I$I$E)aI$I$$!!? $!mvmE)!==%H$I$E)!VVWWI$I$e)I$I$d!d I$I$E)aI$I$d!d I$I$d!d @!I!5I$I$d!d I$I$e)@$!bpI$!A* !H$I$ a(!!I$H!A !)*(I$I$d!d I$I$d!d m&mRlH! ؉ X8 EH+" fa44I$I$%44I$I$%?mDZEUO  @$e)E)szXPII1I$I$1 I$I$e)E) E)I$I$!b&&@E)!I$I$1 I$I$1  )( )(I$I$)(I$I$1 I$I$1 H$H$1II1LB$ E)! E)!I$HE)!_!HE)!I$I$1:4k$E)axXŖaItE)a--I$I$1I $1I$I$E)$!* (I$I$1I$1H$)(E)!jIҤkaE)a׾(E)!I$I$1I$I$E)!I$I$1I$I$E)$!L$`2%) VVTT  $! *I$I$E)!*`$%) VE) $I$1$A$@E)!H$H$1I$I$1I$I$)(I$I$)(@$ )(I$I$1 $)(@$I$1I$I$1 E)!`&d$E)I$I$!!!E)! )H$@$1dB$H!@H $IPH[mXH+*%qP++}Ha%}W. %y ) I["凡%y XPA$Inl%;/o۶豧?@$ȹE)PT?H$I$E)TUUUI$I$E)!*I$I$1I$I$1I$I$1I$I$E)$!L$L$$!  %)!I$I$E)$!I$I$1I$I$1I$ $1I$I$1I$I$1۲mE)b@IdˆE)bUI$I$E)$!I$I$E)$! I$I$1A$I$E)$!d& 2E) ZZZzI$I$!IE)!+/??$H$%)b`X`IE)b 5-HE)!I$I$1I$I$E)$!I$I$E)$! I$I$E)!I$I$E)$!**@$E)b0I$I$1I$I$1a-E)@I$%)UI$I$1I$I$1I$ E)$! %)@!E) %I$I$1 E)@!%) %I$I$1 E)!@  $!II!?/IIE)!I$I$E)$!H$E)!E)!I$I$E)$!I$I$E)$!I$I$1 %)$!I$I$E)!I$I$1LB&`&E)I$I$ E)!I$I$1I$I$E)!I$I$1I$I$1I$I$1I$I$1I$I$E)!I$I$E)!**I$I$1ò%K$%)bP\\ %)b %-@ E)!IIE)$!I$@E)W\!@%) I$I$E)$!I$I$E)$!I$`$!bV\ E) @00E) XPPpI$I$ bpIIE)555I$I$E)$!I$I$1I$I$1I$I$1I$I$1E)$!* A&E)* X$!I$I$E)aI$I$E)aI$I$$! E)! I$I$E)$!I$I$1I$I$E)$!I$I$1I$I$1I$I$1II$e)$!***I$H$E)!I$I$1I$I$1I$I$1I$I$1 %)I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1$! @I$I$)W^^xI$I$!A $I$ b "?=1Ocf1b梨Emf1/}f1*mm۶f1 9 ??B ߿ 1n ˆ1詉 q&A$9E)]QUI$!%Uevl۶.J-_,m4.JڎwpvkkkciöMNJڹzmVhۦ?ߵtovd kz7b Mz,۶m ӱhoSn۵ k} QUUEec}Nj~rGö$Jy\)mۖJ҉P$AP Jl۶NjZn--j7=ZOnJ=cbm kOJ Ii)J#))z\l[AKj:Umm J/?wM$K)`P&@$J!PPPPA !b2 9<qmǶE)j21eAA  )RqfQ----)iyq  ͆yixxxx 5PfaE9xxx}9ΞIڶ-ڶE)b??9On)sʣ \~ *he ,HɪUa J?݀=̰m蹮&C$I鹪c[k kmcҋh_ۖuذMjʪ(*z`B "jʒjRmk۔-jhjAI "`!A$Ij)P]-mxnJ{_܏j?FHX )Uu۶Zj®;&Ar鹊+U~N)3dd'˚ȱPkѶw6 J>Jv`۾oN)w`ύ-JD۲öa jjCmq ®詎m?ǿ_ڋhmڰkP$,Y*ʪRm;5NNJOZ$ՀIRJ**rC~-kUmk j(=HI.WIÒ *ҪbMmΆm ʪW4Ȓ$B*ҎJcUۢ)ʶ-kU:mo*3C$I G ɪ* $I' EVUU-$I()g@K&I$VYUmؼ5@`CH$I$%)TUUU EIe1-mۦE[׆11l۶mۆ1!%)"H$f1mۺm"e1H]6l;E)$2E)"$!`dHLE)!+H$I$  (I$e1 DUVT9 eA7/- Ž=j'fIpX ! %I$I$d!d I$I$d!d I$I$d!d I$I$d!d $H$!bxxI!b--I$I$d!d @$H$!p\Xp $I$! % I$I$!Z^VWI$I$!UՕI !** I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)I$I$E) !I$I$E(C!* *I$I$E)I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$d!d  !I !**H$I$!\VWUI$I$$!B!I$I$E)aI$I$e)I$I$d!d I$I$d!d I$I$d!d $!`!  !I$I$ I$I$!I !+++I$I$d!d I$I$E)aI$I$d!d  !I$I!Օ&H$@ !XxI !5- I$I$E)a @$!zzI$I$!AI$I!UU%I$@ !b^Z`I !% I$I$E)I$I$d!d I$I$e)I$I$e)I$I$E)H!!@$@$!I !I$I$E(C$H$!bxXI! 55I$I$E)I$I$E)I$I$d!d $H$!bp\\ !b I$I$E)aI$I$d!d H$I$!TWWI$I$ I$I$! $!I$I$E)aI$I$d!d I$I$E)aI$I$e)I$I$d!d I$I$e)I$I$E)I$I$d!d I$I$d!d I$I$E) @$!I !***I$I$  7!H$@ !XxI !5- I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E) !I$I$!I$I$  !// I$H$!bV^ ! !! I$I$e)I$I$e)I!b$I$I$d!d I$I$d!d I$I$d!d I$I$E)  !@I$I$**I$ !I$I$(* !+ I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d - $I$!UUU1 I$!U3H!4(4+ɟ$DZUU4,==DZpsq4)`{DZ4#l"b DZZ4#j@DZ+3&1d͍Cҧ`) @IGE( l-&/$%yXPP dcfi髏NRl HfiWObm iE`U_~$ h%HWW o| iH}֔bd mh8WIB HX!WI$]X!UUI$I 9!UUU@I$I$e)I$I$E)I$I$$!!I$I$d!d I$I$d!d I$I$E)aI$I$E)I$I$e)$!$HH E)!iiI$I$E)I$I$e)I$I$E)I$I$E)aI$I$d!d I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$e)H$!bx ! I$I$d!d I$I$$)!I$LP1 X1`P---- 9S7qfi-----p-?4I$A$蹧?4I$I$蹧?44I$I$&3K"'X&e1TXPXI$I$e)E)I$I$1I$I$e)E)I$I$)(I$I$e)E)* @)(I$I$1 I$I$e)E) I$I$e)E)I$I$e)E)I$I$e)E)/+@&M$E)A\E)  ,E)`nIE)a/I$I$1`&`2E)!XxI E)!=-/ H$H&E)! E)!/'I$I$1$B"$AE)!J *I$MvE)a׼ !$IE)!I 1I$I$E)$!A$A$E)!II$1@$)(I$I$E)$! $E)! I$I$1I$I$1I$I$E)! &H$%)axx %)a --@$I$$!II!***E)! E)! E)  I$E)![2l E)   )(I$I$1I$I$)(I$I$)(I$I$)(I$H$1  )(I$1H$I$11 LB&`$E)!^zxm۴-mH!UٶmۆmP) IH P8MmXP׵/ nW %qP }.W fa+ # { %q 6y{nUȱf/*;(Mk+豆?-m۶k蹧UU??$IR$DZE)PT4H$I$DZ%)TUUUI$I$E)$!I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$E)$!*I$I$E)$!`&0E)!^^ZZ I$!**E)!+I$I1I$I$1 A$)(I$I$1I$I$1I$1H$1H$@$E)!I$I$E)$!****I$I$1I$IE)$! $@$E)!jzI$I$E(C!!E) I$I$E)$!I$I$E)$!I$I$E)!I$I$1I$I$1E)bI$I$E)$!I$I$1I$I$E)$!I$I$1I$I$1I$I$E)!***I$H$E)!I$I$E)$!I$I$1II$1I$I$E)$!I$I$E)!I$I$1I$I$1H$I$E)!`0@$%)bx`I E)5  0@0E)I$I$!$! E)!I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$E)! *I$I$E)$!0E)I$I$!_W^! E)/%%I$I$1 E)!I$I$1I$I$E)!I$I$1I$I$1&H$E)xx! %) )- I$I$E)!I$I$E)!**I$I$E)!I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$E)!***IE) H$H$$! I$!***E)$! +I$H$E)!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)!H$@$$!!TPP`I$I$E)aI$I$$!!%5II$E)!I$I$E)$!I$I$E)$!I$I$E)$! e)!ꪪL$L%)(A$!!!AE)! $E)! I$I$E)!I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!@E)IB%)  $!+ IIe)I$I$1I$I$1I$I$1 $!!@I$H$!AI$I$ oI'N &e1$!2%)*!B$I"%) MKmڦA4E)fbHvE) * 9 ?I If1 h&$if1[ G9 o9 >+ vlˎoÆ1rI$I$k%)UUU0M~mo*?c!A$I*)e~?JMOUUmۮ "!`(I$ Jک*tm*h۶O[9I0I.U4I"$ ʮJ*em_J҉ꢒpdH Ikښ\NmNjCCmm Rh] k?߱?%&I 7eom-jߵ_M߶ .JܵM-m̶N*`$Y-$HJʪjz?$ R+*W,Jʊ*OEiۮ*bz"$JHfc J\m6j?wJ۰ٶm *ꩪrJ۲m* jem۱ ӫUUC&I$Ȑ 6[vlm ȱR`/mۏJ/oekne8-ۋsFӖn8c)ªC&M$e Omc۶ *jW9JR۶NjŪzI$IdUUUcmmۢjʪJi[Z- Amۆ UiۢmNj`$IdIjʪ*c I!CkʨiJj۶ *M#IRɐ)¨*mh``P]n`NJUi-)ϗJ )szB%R%j!PPppO?9?dž1j꠺RmE)6Qe9!)%%*N)RieI +--&a1yq Ȁ Ȇyi`PPfieAxxxxN9~ 9@@!  oɖ j) Ov!J?zD Fv &hI0 $ ۋUeEU` j\m۰m;-jtA@`鹂Dm۰l *eۆ-wFm-ۺ- ڬ\mvڏj_hl۶mҋʪUm[hNjrsK(NU]VdrI$I N۬UUUE?m6E۪-jO۶mްIª+el(IڋWGUEDEi-)W7mmJOm۶8N)wA$I$ȹ*ҎMl)º7m $I4 EUUeRmV -JxOMör*w<}3B$I%IҨ0k#vڋUmڶmۢNJϚU!g$A))*mM kҿ\m}Njܷ?k۶L۶ kڪ*hAkҹtضm-kwk( Zl۶m*Ҋe$idxJڪ\Ö!ۺ*ҢI글$I$.EUUT_mm J?c J@r I$ kڨ@H$k!pTW ۆ1 N mmۆ1y$I_k8-jtc$I!Ijʪ_mբm_-k??P I$IJUy۶Nj¿9Om~I?H H$ IZ4lvJ`OnURUAR8jc7;jʾ~weplnJʸ\k۶c JR% ,Jʫ*Fmڢm߶N)D$Irȅhy?NuUcNJ?p? j?wI$I,-UUUako.nkҫjMmmY-*ʪ$hI$jҀ0tmm pvmcNk{PII ʢp"K6,V\$HI2*ҊjrNkޗ;ڠaE*klm-JC,F$ r ɊcM_mjw4K6'(@`X ۭm9!k[mҶ1Z 49! II 9E)UYUEB m۰m;9 %) 7;9bJ骪H$I E) -M۴E)bm"i۶E)aʩH I$ @I I$ aL ɛv9I- 3<{'fY!rr\\I$I$d!d  @ !b@P@I!bI$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d  @$!I$I$!z~^_I$I$bVUVI !I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$E) !@!ਪI$! !I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E) $!I$I I$H$!xI$I$$!!I !!I$I$d!d @$I$!TUT!I$I$e)I$I$d!d I$I$E)I$I$d!d H$I$!I$I$I$I!!I$I$E)I$I$E)I$I$e)I$I$d!d I$I$E)I$I$E)I$I$E)a$H$!H$I$ I$I$ UU!I$I$E)I$I$E)I$I$d!d !I$I$e)@$I$!bXVX !aI$I$d!d  $!b`I$I$ b5A$I$!bXTU I$! H!I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)$!I$I$!I$I$!^WWWI$I$!!I$I$E)I$I$E)I$I$E)I$I$d!d !I$H!bUV!I$I$d!d I$I$E)I$I$E)I$I$!A$A$!II!++/+I$I$E)I$I$E)I$I$E)@$I$!8!I$I$d!d I$I$d!d I$I$E)aI$I$E)I$I$E) @$!b@PT@$I$!bI$I$ I$I$!I$I$E)I$I$E)I$I$d!d I$I$E)$H$!\_! I$I$e)I$I$d!d $!b`I$I!UI$I$d!d I$I$E)$@$!I$I$ *A$@$!I$I$!I$I$E)I$I$E)@ !p !b I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$E)I$I$d!d @$H$!1HI$UU3 $U4-@J&+410ٖdDZ43DZ*44I$I$%4H$H$DZETTTT4/@DZǩ4/m#DZꪨ4,I1(C1"CI-C@f_+ IE_% I%y_ Sc ifiSc iE`WRc m%yX_ Oc mqPWvRk i`8^IB;" IX!U~I$aP!UUI$I$)!UUU{ $!II!** @E)!ZZZ^! I$I$e)$!!* I$I$d!d I$I$E)I$I$d!d I$I$E)aH$H$!A !a @$@ !A`I !A/?H$! !I$I$d!d I$I$d!d I$H$!^V\ !-- I$I$E)$$I@55IIP@ yW7qiP-//+ 1Sf%y----1"N--))?4H$I$蹧44I$I$%44I$I$&4X,,E1P@@@I$I$e)E)H$H$1e)E) - I$I$e)E)I$I$1 @E) p-ItE) //I$I$e)E)e)%)I$`E)!U8!AE)! I$I$e)E)**I$I$e)E) I$I$e)E)* *  e)E)xp`pe)!ꪪ 2C0E)!I$I$!! $`B&E)!IIE)!H$H$E)!I$I$E)!****H$)(I )(I$I1I$I$E)$! E)! HI$1)(@$@$1IIE)$! ***I$I$1I$I$1I$I$1I$I$E)!I$IE)!**dB&d2E)!zzzhI$I$E)a@$E)!I$I$E)!I$IE)! ***)(I1I$I$1 I$I$1)(I$I$)(I$I$)(H$@ )(  )(I$I$)(@$H$HE)UU$I HE)IIPHI$@XH+ ɟwW $qP+}.W EX # { $q /If) D,ky D/U D $E)@T?H$I$E)TUUUI$I$1I$I$1I$I$E)!m۶aE)bI$I$1I 1I$I$E)!I$I$E)$!I$I$1I$I$1I$H$1  E)!jjI$@! E)!-%%I$1H$H$1 $I$1H$I$1I$I$1I$I$)(@, E)pItiaE)%+I$I$1A$ 1@E)$C& CE)!H$H$$! $I$$! z^mE) -I E).I$I$E)$!I$I$1I$I$E)$!I$I$1I$I$1I$I$E)!I$I$E)$!I$I$1I$I$1I$I$E)$!A$a2e)$!I$I$E)$!****I$I$1I$I$1I$A$E)$!H$E)^E) I$I$1 I 1I$I$E)$!I$I$1@$ E)!@$@$$! I$!//$B&LB&E)z^Z E) - I$I$1I$I$1I$I$1I$I$1I$I$E)!I$I$1H$@$1I$I$E)$!L$H&%)bTT\xI$I$!b%%)*E)!II$1H$H$E)!I$I$E)$!****I$I$1I$I$1II$1I$I$E)! E)@!%)-I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$E)! 0 E)!ZzzI$I$E)a! E)!I$I$1I$I$1I$I$E)! I$I$1I$I$1I$I$1I$ E)!I$I$1I$I$$!!VTTXI$I$E)I $!! I$I$E)!***I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$! &E)x$@%) I$I$1I$I$1I$I$1I$I$1I$I$1&E)x`  $! 5@$$! $!I$I$1I$I$1I$I$1 $!!I$L&!^ܰI$I$ I$I$  *'؆1_6$6bۆ1_ ٶcۆ1 I"$f1!llۆ1!?mٲmE) i*F;1*jԶaÆ1*m۶m#1!O9A E)0HL T1%O M$Ʌ 說I$I$ ڪhhNk kr|.jZ$I*$I)ҪJcEYm۴jڢk$Ijڪ)hu֒-Jڞ*J$I$p-ɪ.? UUEUh$@k ƤkkڪPm[K-J*cxIJҩF 0 +/$Q҄H Uiۺ--JϒWo Jr*ʫ*Md$G)š*tH @Fb׶mۏ KF$I$CjRm-[ JpM4II)kIb$I4-USUu}J۶mۖa ªz_vmjꪡzDm *_8njrH [m(jtMIB*_cϞ [nj~

eAx ߧ9ǿm۶8e1A*jtIɕDj!%555tJ$I I2 jPm[lJU-VJ‹?Pm>lN*Rhڶ۶ je ۋw?k]UUkm۞a ۋ;FM-*<7kM߶-ȩ}rI$I$ʋ*OGF0 I brRIhM Idz*¨6$I٦ȹ 7$A!Aȱ*)Cm۶hڶM)UM}[J7z_Y%Jʺ)nòmڧbpJ9 ?>vm؏ zOI"i*@M$G#Y)ªZ$pmJʪjm3? k||HmѪmp *ꦀH`a PiBr ʢjU0 e)Y$Hjҩ\h]ۮ*Ҩm۶mØmkڪkNjwNkܾ`9NJڿ`Jv$ JҩꨎF*)$ ɀ@Lr'O$ V]UTrm k0 ,@@pHI$ $!TVUU>=1!sE׶iۦe1!?A I(IĆ1E)UEUI$I'1%)TU]B?mέۆ1 k:1  9 >1!h@ @$!I$H$E)!I$vxf1޺, /u>fY$)-+o^H$I$$1!TWUUI$I$d!d  !@I$I!U&I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d H$I$!I$I$I$I$!* ! I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)@$H$!bP\X`  ! % I$I$E)aI$I$E)I$I$E)aI$I$E)I$I$d!d I$I$e)I$I$d!d I$I$d!d H$H$!  !*I$I$ b\W^~I$I$  !I !***I$I$e)@!I$I$e)I$I$e)I$I$E)I$I$d!d  $!I$I$!I$I$$!BI !+++I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$E) !!H$@ !I$I$aII!5%%I$I$E)I$I$E)I$I$d!d @$I$!hI !U' I$I$d!d H!`!I$I$E)@$@$!`ࠠII!&I$I$ bVX I!bI$I$E)! I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$d!d I$I$E)a@$H$!I$I$XII!I$I$E)a @$!h ! )@$!0I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$E)a  !I$I!H$H$! ! I$I$E)I$I$E)I$I$E)I  !I$I$!.U!I$I$d!d I$I$E)aI$I$d!d I$I$E)H$!bX`I$I$!bI$I$!II!???I$I$E)I$I$d!d I$I$d!d I$I$E)aH$!\$!!b I$I$d!d ! @$!x!I$I$E)@$H$!I$I$!H$H$!II!I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)H$H$!I$I$! I$I$! - $I$UUU1I$!UU3 D!4/PImDZ 41lDZ 43DZ44I$I$%43DZ41`DZ41I-DZ4-vB @DZ3)CH1%C@/IW+~ IE_& H%y R ifq_bc ifiUui%@^Z `q@v# hh(jI6[ m`)UjI$[mP!UUPkk$P!UUUP! I$I$d!d H$!! I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d !I$I!I$I$E)I$I$E)aMfmѶ@7??DJ@P8 9S1qX----"%----1& p ?4I$H$DZWWTU44I$I$%44I$I$&4,(eA```@I$I$e)E)H$H$)(e)E) I$I$e)E)I$I$e)E)* E)$! A@E)!'I$I$e)E)I$I$1 ` E) @@dI$E)a>e)$!I$I$)(I$I$1 e)E)bI$I$1A E)!IE)!*E)$! E)!/+H$I$E)!E)!*. )(I$I1I$)(H$H$E)! IE)$! **H$@ )( I1@$@ E)!I$I$E)$!** I$I$1 $I$1I$I1I$I$E)$!II$E)!****2$C2E)!`hjjI$I$!!!E) A$A$E)!IIE)$!****I$I$)()(I$I$)(@$$)( )(I$I$)(I$I$)(@$@$)(II$HE)UUU$HE)UI$@PHWI$IPHMI`PW/ݷP%qP "ui )} Fս*=]Вȱf *C/nR$ _?4I ȱ!@4$H$DZ!PTU]ѦM$E)b"VU؆mlE)I$I$1I$I$1I$I$E)$!$@$I2E)! E)- )(H$H$E)!I$I$E)$! **I$I$1I$I$1H$I$1E)$!說I! E)!I$I$1A$A$1II$1A$I$1I$I$1)(I$I$)(I$I$)(I$I$1 $1I$I$1A$ E)!`&`$$!I$I$ \pImE)- H$H$1I$I$1I$I$1I$I$E)$!E)!I$I$1I$I$E)$!I$I$E)$!**I$I$1I$I$1I$I$E)$! e)$!I$I$E)$!I$I$1I$I$1A$I 1L$ E)^)m۶mE) I$I$1 $I$1I$I$E)!I$I$E)$! C0CE)!  $!I$I$!$C$E)j* E)!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1A$I$E)$!I$I$1`0@0E)xI$I$E)a!E)!I$I$1@$A$E)!I$I$E)$!I$I$1I$I$1I$I$1H$A$E)!@$%)ppI %)55 I$I$1I$I$1I$I$E)$!**I$I$1I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$1I$IE)! ** E)!I$H$$! I$%) UUII$1I$H$E)!I$I$E)$!*I$I$1I$I$1I$I$1 1I$I$E)!H$@$$!!PP`@I$I$E) I$!!%I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1L$`0E)^^x %) I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!E)!I$H$!VV !@$! I$I$1I$I$1I$I$1I$I$1@0$)bpI$I$b+즺A0I0E)j䉑Ć1//NAlf1 ;91Aj O1* 95ۦm 41`Ƕm1"mǶaf1$)?d@2$If1j mmG9 ?JI$ɓ$%)UUU ɑ&c0`y IJڢ\mmNJ?Zذq[*(R$y O ҪfU$I E)Ҫ&K I%.TEUQhJڊꚪ_kw@iNJrjönkU۸m- )Ҫ*jpM۶ ?' eUUVw#wN]G_e$[dHjҪ_eFmJ.kMe˲ڋҦ)Mزl)h*`sc[m-j~?,&Iڇ}rI$ $ڋwpNböcӫҋmI,I$-eVOclN){?p3@ҧ 7ٱ]6 㨱hkXߏҊnH%P$s)ª&j}`}ضjF H!I H%BH KꊪW6m JZv6E}JHBn 9} Hph` ªU۶wJʙzkmYoڶڋe.UUuMۺ1öm)ʪjW~yۯ)k<۶S kz@$J.PUUM%ɒ$C jzy_?NeeDt?Nkwc7l ɝ$yUk=شNjƃIyNUUռw?_-k=P۶Iۖ ҪŚkɐIJڢMlmɦ⫎k 9$IJڦpKmm; k@'K$J%)pXTUA =mW4s۪f1b 1A??A  #9M%)Lc۶me1bf1A 9ɏ7<9N0H$e)AjIS?I!8xzz 9?!b&II禩!Օ9vh٦ȱ*}(2lm҇jZ: Jh?m۶m jC۶MQ)6D݂6 )֊zj9ے I ȱpA&I<ҫu\cٶaMj?PbI0,J¸r7C,m)®?Ǖ`J?FmcN |c JrU6n߰mJ¦)mP0)€LZiq JʿJ ɰ&I ¨櫪\)IɓJʩMI$ ¢\l۶ JD$98 ªj34ɐ$ 㨹W.:m-J{\mʶm[ jM$IR )*Rl:lY ʪy`h۶kۦJҨeHhۺ.kP[m_- ʺ겨tmێm /Wl[ ʺpWM;.kڰ~m 0kڪjtm6mUk**Z)$CC&I b7޶-8 j:y$I -]UUE.8bj!`PF$q$BE)SU]UmVmۦ1(A???A  79"H!$I<B%)IWuI0I e1!];]'f1I$a0f1 ߻ 1A 9߿O$9 dUUq$ $f1A{f93- DaӢ%eQ! bXI$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)@$@ !b`X`I$I$!I$I$I$I$! ! I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)aI$I$E)I$I$E)I$I$E)I$I$E)H$!0! * I$I$e)I$I$e)I$I$d!d I$I$d!d  @$!II!** H$I$!X說I$I$  $!@ !*I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)I$I$E)H$I$!I$I$!I$I$!WU!I$I$E)I$I$E)I$I$d!d  @ ! ! * I$I$E)a!j !)***H$I$!TTVUI$I$!UUՕ!I$I$E)I$I$E)I$I$e)I$I$d!d @$I$!bTUTI$I$!bUUU !b I$I$E) !H$I$!@$@$!I !** I$I$E)I$I$E)@!`I!bUI$I$d!d @$@ !b`P`II$!b5= @ !pII!55 $!I$I$!I$I$! !I$I$E)I$I$E)I$I$E)!bI$I$d!d I$I$d!d I$I$E)I$I$d!d I$H$!b\W\ ! @$H$!I$I$!I$I$!I$I$E)I$I$E)H$!I!/  !@ !I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)  !I$I$((I$I$ !I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$E)I!I! @$! !I$I$!I !I$I$a I$! 5I$I$E)aI$I$E)! I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d   !I$I$!~_^^I$I$! I$I$*  I$!6U!I$I$d!d I$I$d!d I$I$d!d ,IHr!)/ I.3(Im*4/P mVDZ43DZ44I$I$%44I$I$%44I$I$%44I$I$%43@DZ41[`DZ4/m#DZꪨ4-NB" I3)v I_1#3H_-3f)~B@E_% I%y_  Ifi_[hI?A ۋU]QUUaێN*7?$I$I鹪\Hۺ]۶j\k۶mSj˅c_nZjU=dz]N*Wo۶m[JʩRmi.J?\mSזJj8}?I"IH`l.J?߫\Em[-JDC4I$K ʒF<ǀ,2 ʦn_@mJ+c$-mJҪjcۦdJҚ:O,HȒ ʊ} ?_˦}JҠ&8Ce@`J0@_ۧ ;NJ|D$Ioن ɪ_mݺєJ:zlۆm⤠ $(@P)HI8E)TU۶m2lE)C 1ۃ؆1!ybצ9!ʪc۶mۆ1!iX۴f1: $)iӴ-ڶe1릊m6mE)j:CdB%)b5bۖc'1si$I$%)bI$ !*9N@afI!- X$L$eQ!XVVUI$I$d!d I$I$d!d I$I$d!d $H$!b@PTX$I$!bUU! $H$!b@P`I!b%I$I$d!d  @$!I$I$!I$I$** I$I!/I$I$d!d I$I$e)I$I$e) @$!`P !b5I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$d!d H$I$! $!brI$I$$!!I$I!յ5! !* I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d  $!I$I$!I$I$ I!W+ I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$E)a  ! B`I$I$$!!II!5%I$I$E)I$I$E)I$I$d!d I$I$e)I$I$d!d @!bI$I$E)I$I$d!d I$I$E)$@$!II!*** H$H$! ! I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d !@I$I!U! !@$H$!I$I$!I$I$!I$I$E)I$I$d!d I$I$E)!H$I$!bTUV!bI$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)H$I$!I$I$!I !////I$I$E)I$I$E)I$I$E)I$I$E)a@ !p@I !!I$I$E)aI$I$E)I$I$E)I$I$E)$@$$!I$I$ I$I$bXVX ! I$I$d!d I$I$d!d  !@I$!U!-I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d H$!X`   !I$I$(( $A$!I$I$ j**I!5 I$I$E)$@ !@P`I$I!b%%)I$I$E)aI$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)$!p! I$I$d!d $@$!I$I$!^^WWI$I$! I$I$!I!b<I$I$d!d I$I$d!d I$I$e) I h!U%rE`! PNwfq*+PN/E +1& O ++41ِ DZ **44I$I$%44I$I$%44I$I$%4(DZEQ@4 O$! U46*4X541lDZ 43IDZ*41ImDZ4-C@DZ3)#@~1%3@/ C I_,d%HiZZ(iHi" R if$q_b$ ifiU~B# h%HW^ u&c h%q@^Z Ibd iiPUMҶH`!VI$`P!UVI$IP!UUUI$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$e)@$! ! I$I$E)I$I$d!d  !H$iXP5--1u7E`---+Nf----3, 44I$I$&44I$I$%44I$I$&43 DZ/{'x'e)V\\\  e)E)x e)E)?I$I$e)E)I$I$e)E)**I 1"I$I$)(I$I$e)E)I$@!I$H1"I$H$e)E)I$I$e)E) $I$I0e)E)*`I$I$e)E) I$1"H$H$1 I)( &H$E)!@"d$%)bZ I!E)!!E)! I$I$1 E)!I$I$)(`$L&E)!!HE)!$ E)`IItE)a//I$I$)(I$I$1 I$I$1C$@E)$!I- 4E)byI %)A5//A  E)!I$I$1I$A E)!I$H$E)!WV^^I$I$E)IIE)!** I$I$E)$! E)! E) I$hE)aW\It E)a%- I &HE)U5@$I$He) II$PHIXHU+ 6YiH}. EX  {w. f$q+ )N E+1"qn4*;-qvȹ??$$ȱE)@T4@$I$DZE)PUUU$H$)(e)E) dB2$2E)!xjI$I$E)aIIE)!E)!I$I$1H$I$1I$I E)!I$I$E)$!@$I$1I 1E) I$I$E)$!I$I$E)!I$I$1I$I$1I$I$1@$@$E)!ZZZXI$I$E)ae)!I 1H$1 E) H$@$)( I1I$I$)(I$I$)(@$ )(II$1H$@ 1II1 2 E)!訠I$H$!  %) %% E)! I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1 E)!`@I$ E)bUV E)b% I$I1$C$ E)$!I$I$E)$!`B$A0e)$!I$I$E)$! **I1I$I$1H&@2E)bxpIdI&E)b--bP)E)b %I$I$)( )(I$I$1I$I$1 2C0E)!H$@$$!I$I$ b@I!@%)b%)I$I$1$%)b`@$ %)b)%!@E)) I$I$1I$I$E)!I$I$1A$A 1I$I$1d2 E)!WVV^I$I!E)!I$I$1H$@$E)!I$I$E)$!***I$I$1I$I$1I$I$1H$@$E)!I$I$E)!****I$I$E)!I$I$$!!TTTX $!! I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$E)! IE)! *I$I$E)!I$I$$!!UUUTI$I$E)!UUII$E)!X5 lE)x` !@E)5% I$I$1I$I$1I$I$1 1I$H$E)!@$ E)!ZzjI$I$d!d I$I$$!!/??%)$! E)! I$I$1I$I$1I$I$E)$! I$I$1I$I$E)!I$I$1@$ E)!ZzjjII$E)!UE)$! I$I$E)$!I$I$E)! I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1d&$C2!p`I$I$b+W $I$1 ɑI$9?o ?9mѶmۦE)*6؎E) ! E)!dB$I1Z*$a$҆1b* g۶Æ1* F:mۆ1꺪m۶iۢf1 ?9!}A۝ P$1 pضi ksӈzنmm⩨!۰eꪺhEڲmv k?w+-k?O\,IC*Ҫh}.lS˟UH!I Ҫ hmۆmNj߭muӢm[jnH$A$I2-*jh$C9Jj꣊6XH$).mk;m.k_Q$J"?l_iY-ꪩMC$M jꊵ`۴-J~_iݶE j}\FcNJsHӶmXjo ¢r#ڋo\e[4m۶JʪbrO)Jmîn)mI$I$-UTUU_-JrH)4)@ҝWm׆} JOh`ۧJ<ר\{-J3$Id2ڨhAMˢ }PVmū*҈UB{jm=nmM)«eE۶'ʪʢDm϶m)Oi vJ(J!M$H)骊_k Nlk¨߭RLzvmNJֿZa J7Hm;an ?hC$I" @O1l )?HK$H$ȩT\\ĶE)bI$I 1!UUG!A$I%)!UU fI  qfY )) ǁa Z5Zyfazxxx #:bfYE1xxxx! mM۶E):mضE)'!u h!kPr$V/*ªoAmv[Z-)_q'j?WWwOc۴)Œ訦`6jo6UựmJ?r9lX5Jn8 Wڦm' J?_cINUTUu`?2mjjtU۶3!*ªJMmmڶ**e?{ JJM[-JU_v J׫H}mѶ J?WmK[t JrɓqڋH$K ʏc[3luJz`{aۮmJҾjcvl;.jnmٰm kh-j=\TۨJʢZʵrIINUUըRmڶh۶-J\0O{mNJ>- ɍ 㨱WOA$J%_Möi;JοJi oۺ *OE *{GrJT) I*CkA$I8 ۋQUUuwM0m߶!)*J}OI$)¢AVl+鹾)(PmۢJϱC"4m.)oϱ6=\-蹽FFme ,?نmF WdÒ->Jj[O$Mq$2*ꢪhDm *ꩅP-ڤѶ*:CL[]}ۡ 2…Cmжi۶ tR O-ۢJw}K$K'j!\\\X!I O$A!UEWUc9me)bh⪪ O1uSeI$!/--/ OOqfY-----)yq 1͆yfax 5X5fYE9xxxp $$f1!EUFV C$I$) |!hi J9_$kʕVQUZ ͙jUEUp7نm۶mȹDhۖ5C鹨n -d8 ڨ(P { *zhH$I<ҋWUU\voplJOh˲jۦJmM@@)0p;ȹPhmv)¨+pW0*@ r`$I"J;]Kdm׶-ȹ*;H$ȹ9Z-mJʨjU۰mNJwA$ϒ$-QUeUmFh۶mkғ\m6mu-j?pG߇k Q߱1$ A-먹 e*ڶmV k?C (wm6co?6m[ ɢM $S ɺjh6vlNj\}- * rTJ"ڪjUi߶m 骪*I%I WPU \chK*ҚAӖmQ ɪ\$Y$S*Ҫj.@'M$E)P\VU A ~۶amE) ᴎaۆ1*&B? 9 ]7چ1JI$I$9%)UUUQ ?9A O9!eYTWvm;1?A.m6E)bJjv'v$f1_ yI$9II%)A** J.2!eQ$!-KBH$I$EI!TWUUI$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d  !I$I$!UI$I$@I$I$!I !** I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e) !I!.?I$I$e)II$!!/I$I$$!!TVUUI$I$d!d I$I$E)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d @$I$! $!jI$I$$!!I$I$!UU!I!****I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)H$!\ !I$I$!I$I$I !+I$I$d!d I$I$E)aI$I$E)I$I$d!d I$I$d!d I$I$d!d $H$!bhXV !b  ! *H$I$!VVVUI$I!UUՕI$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$E) !I$I$E(C$@$!II!*** I$I$E)I$I$d!d I$I$E)aI$I$d!d @$!@P !b H$!bV$@ !`PBII!b)%%H$ !xI$I$ I$I$E)a !I$I$E)I$I$E)I$I$E) !I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E)$@$!I$I$!I$I$ ! !@I$I!b&UI$I$E)I$I$E)I$I$d!d I$I$d!d H!I$I$E)aI$I$E) $!`I$!&H$I$!WUI$I$I !////I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d  $!pI$!b/5I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)@$H$!I$I!H$I$!I$I!k+I$I$b(U!I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)a@!! I$I$E) !@H$I$!bUI$I$! I$I$! I !+**@$H$!pXp I !b 5I$!$ H!I$IPH+I`P-w7E`+)qsT E/+1&t++ 41ِ0DZ* 44I$I$%44I$I$%44У')`p\I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)a$H$!a\I$I$fa?1$I$ǹ!*UU3@I$ǹ UU3&$!U4 Ea3, 31I 1$H$EyTTT3 J'I%yTTT1%C@/ C I_,CHfW( iEW! R hf%q_c# ifiUhEHjh  Aq@ Ibd iiPWuҶ h`!^I$lX!UWI$LX!UUWI$I$E)I( IIPH+qWqiP--`fX++ - p--)4/ P DZ++**44I$I$%44I$I$%44I$I$%44I$I$%488e1pppp@  e)E)I$I$)(I$I$e)E) $I$e)E) I 1"H$H$e)E)I$I$e)E)  $I$B e)E)@@ذI$E) WW6lٖme)!I$I$e)E)/*# e)p6lle)!II1"d&`2e)E)\XXxII$1$@$E)!I$I$e)I$I$e)  AE)!/// I$H$E)! IE)! I$I$1 @ )( )(I$H$1)(I$I$)(I$I$1 @$@ )( I1)(I)(I$I$)(I$I$E)$!I E)$! @0E)`ࠠI !' @d$E)aZۆvI$E)a($A$E)!  $ 0HE)Uյ)H) * I$IPH*I$IXH+ IwiP }.W EX+ " { $q+, -C$ %qk1 IL %q%4L DZFV֨4zm$$)*jT4@$I$DZE)PUUU,X$E)b@PT E)I$I$)(I$I$)(I$I$e)E)??@$e)E)\PH$!I$I$E)a$@!e)! *++@$@$)(I$I$1II1I$H$E)$!A$IE)! $E)!`X E)!H$H$1I$I$1I$I$1I$I$1I$)($2CE)!hh  !$ E) )I$I$1H$I 1E) @E) I$I$1I$I$)(I$I$1 I$I$1 I$I$1)(I$I$1  E) `& 0$!II$!*!!E)!+++H$H$1I 1I$I$E)$!I I$E)! I$I$1)(@$@$E)!I$I$E)$!****۲m؆mE) @Il6lE)b5I$I$E)$!$D e) &I$H$e)E)UWVTI1H$@$1 1I$I$1)(I$I$)(I$I$)(H$@$1I$I$1 1  %)!zzI$I$E(C! $! I$I$E)! I$I$E)!I$I$E)!*I$I$1I$I$1I$I$1I$I$E)$!II$E)! ***I$H$1 E)!jH$H ! IE)!UI$I$1 1I$H$1 1)(I$I$)()(I$I$E)$!I$I$E)$! E)!zzI$I!bUV!$@%) I$I$E)!I$I$1I$I$1I$I$1I$I$1I$I$E)!I$I$1 E)! dB2 2E)!P`@@I$I$E)a I$E)!%%)(I$H$E)!I$I$E)! *I$I$1I$I$1I$I$1)(I$I$E)$! E)I$I$e)II$$!! .I$I$1@ E)!I$I$1`0%)bP@%)bI$I$1I$I$E)$!I$I$E)$!H$@ E)!^Zzj$A IE)!Ue)!I$I$1I$I$E)! I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$!b,I$I$1`0$!pI$I$  G$e1b;oH$I$E)! O๟9I&IE)! m$)`XV 6Vm9 x_9 ?z ?9!~7m턆1ꠖ~`ۆ1+ m;m;9 $I1b۶m:E) "m.؆1 m;E)&!1!UuUE6lE)b  H$!0 I $9bONXf1 Wŵ5I28eI! `H$IeA @$!`p I$!b)%I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d $I$!I$I$!ꪪI$I$ I !* I$I$d!d I$I$e)$!`!I$I$e)!@I!7!@I$ IE)bU.  I E)I$I$$!!I$I$E)@ !jj* I !b? I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)a@$H$!zz^^I$I$!AI !%H$H!! I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)! @$!I$I$ I$I$I!+ !I$I$E)a$!&I$I$d!d @$!bppI !b55 I$I$E)a!  !*I$I$TVWWI$I!Օ55I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$e)$@$!`XI!b %5I$I$E) !I$I$E(CA$H$!I !** I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$E) !I$I (@$H$! !* I$I$E)I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$d!d  @$!`pA$I$!૥I !b7I$I$E)$@$!I$I$!I$I$ !I$I$E)aI$I$E)I$I$E)I$I$E)I$I$d!d !@I!-I$I$E)aI$I$E) !@H$I$!b(UH$I$ 訪I$I$b I$I!z  !I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d $@ !`I$I!/5 !I$!bI$I$E)I$I$E)@$H$!I$I$I$I$b5?I$I$!I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)a$@$!b`PI!b %5!,I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d @$@$!I$I$!VVWUI$I$bxX`I$I$  55I$I$d!d I$IH!UUH!I PH* 1iP/+{w.e f`/+,w2 Eo+ 3 I %y41ِ0DZ* 44I$I$%43 DZ4'x$p\\WI$I$e)@$I$!AI$I !b~^{  $!A /I$!A(!I$I$E)aI$I$d!d  @$!@I$I$A`B&$$%) !**I$I$d!d $@$!X! I$I$d!d I$I$E)I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$d!d -ɐ$I$!UUU1LI$!%UU1 I$!%U1!%1؄I$E((T1,vl7$m=DZEx/!CH-@f_)HEW#OEU%m& Eտ-qR@ f+ 3,n 43DZ44I$I$%44I$I$%44I$I$%44I$I$%4)DZ@M$J$qe)VTTTI$H$e)E)I$I$e)E)///I$I1" @!@  e)E)II$e)E) pe) ٶmle)!I$I1"I$I$e)E)X$M&E)ax|S BE) I$I$e)E)A$e)E)H$ )( E)! $E)!I$I$E)I$I$$!!I!IE)!I$I$1E)! I$I$1 I$I$)( )(II1I$I$1  4X$E)pxE) -H$I$1)(؆mضE)C $@E)!I$MvE)W׾(e)!I$H$9E!?IH!5H0I$IPH*m6i `H+ }.E%yP*}.W f`+ ){w E /qiN$ 3)qR$+4% ħ4 H$DZE)@TUI$I$1 I$I$e)E)* I$I$)(I$I$e)E)I$I$e)E)I$I$e)E) @e)E)I$I$1 I$I$1 I$I$e)E)I$I e)E)؊-E)!h``` ! Ie)!e)E) $  0E)! !E)! )(I$I$1)(I$I$)(I$I$1 I$I$1I$ 1I$@ 1 1$I$1H$@$E)!\XPPI$I$E)a! E)! I$I$)(I$I$)(I$I$)(@ )()(I$I$1 I$I$1 @  )(II$1h4E)X0۰ E)H$@$E)!@$H$$! I$! ** E)  I$H$1)(I$I$E)$!I$A$E)!I$I$1)(H%؂mE)b\PIE)bI$I$1H$H$1E)@! !e)$! I$I$E)$!*)(I$I$)(  )(II$1I$I$)(I$I$)(I$I$)(I$H$1I$I$1A  E)!$2$ E)!_~~I$I$E)a$!$! `$@ E)bXTP@!E)b II$E)!***I$I$1 E)@$I$E)b\WUI$IE)b5  IE)! **I$I$1 E)!bbH$!`I!b %LB&$E)^zIE)b% I$H$e)E)UUWTE)! IE)!* E)I$I$)(I$I$E)$!I$I$E)$!* E)!jjI$I$E)a E)!I$I$E)$!I$I$E)$!I$A E)!I$I$1H$E)TP@ E) I$I$E)! E)! $2E)!`I$I$$!!UUUTI$I$E)!UUE)!H$@$E)!II$E)!***I$I$)(H$@$1`0E)\0E)H$@$E)!@$E)!I$I$e)I$I$$!!*E)! E)! *H$@$1I$I$1 )(H$)(I$ E)!I$I$E)!*&E)`XI!b 5 E)!I$I$E)$!I$I$E)$!*I$IE)!@$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1 E)!jI$I%)U8%)I$I$10%) `I$I!8I$E)CEI4%)jmi%)j!b@Ϗ9$I$f1 ?9biۦjUt1A("$IFMf1* |9*a$I"f1E)UVUecñe1!ꊫI$H$(JE)UTWmǶmچ1! I$$! 5U&iHEQJ$?y ꨢMTI!raR-k=O?۰օ *`Eպmٴ kڳt}Nko?ZDP*Um[6} ʪjnmW說_m۰-JҪ*jHlۺm"-ɪJMٶ6p ʩjc$Y$#rJҪjkimvk*p"* OfaEA----ɑ0yEQ55  ҆yq```bXieIx#>eAx$I$2%)*imڶmۢ%)`ɑIJ 555r9۰m˶mȹ*WmۆJMg۶m-)±4ݖȹ-mm۸nJm ªFmϱ }7}Zv}Jʪي_ 6jGP۶m˰i*ʪ&=˶q붡 ¦`>?Jʿ|O eC)ʺj}Z$I(*_i`hJҩmymNk=m z k`R @$IJkùnkɚk$I{HBڪI,qd.Ue]hEۮmf.kkض.k7W< ~dg ҮReӶF۶nJ{UTI*cvfFnNJڟS`I.XUըh-ڶۦ kߨkm"mu kLW$Gn Ҫ`};6oJ}7<9p$(`XV&IdHE)Flۄm׆1! m;n`ۧ9bj: $ɓ$BE)EUUUnѤM۶1+ I$I$9%)UUUQFlõmۆ1!uڶjf1 ~1A) ۶-f1V8f1 !b$I2L%).I I$E)I$ %)A* yRfQ-+ j'N$eQ!X\WUI$I$e)!@I!% I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)  !I$I$$!bI$I$!I$I!*! I$I$e)I$I$e)@$@ !b`X`  !b 5 !bI$I$E)I$I$d!d I$I$e)I E)!H$I$$!!I$I$d!d I$I$E)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$E)a !* I$I$TVUUI$I$UՕ5!I$I$E)aI$I$e)I$I$e)I$I$e)I$I$e)H$!VI$!0!bH$H$!I$I$I$I!!I$I$E) !@I$I!bU, !!H$! @ !b`I$I!b&U$@$!jzXXI$I$!A !- I$I$E)I$I$E)aI$I$d!d I$I$e)I$I$e)I$I$e)@ !` !I$I$d!d  @$!II!H$I$!!I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$E)I$I$E)a @$!I !***H$I$!!I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d !@I!5 I$I$d!d I$I$E)H$H$!I$I$!I$I!?I$I$E)I$I$E)aI$I$E)I$I$E)I$I$E)I$I$d!d  !@I$!b$U!+I$I$E)I$I$E)I$ !լI$I$I$I$bTUTI ! I$I$E)I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d  !!@I$H!U$!I$I$E)H$I$!I$I$!I$I$!zI !///I$I$E)aI$I$E)I$I$E)I$I$E)I$I$E)a@ !` !bI$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d @$H$!xI$I$! I$I$bII!)***I$I$d!d d@H!%I$IPH+kv`Pյ-{6EX+)yr %y+*1"iNݰ ++ 4/i  DZ* 44I$I$%44I$I$%4<'pp\I !A?/ I$I$e)I$@!V !  !bI$!I$I$E)I$I$E)aI$I$d!d  $!I$ E)Uߪ*I$I$!I!**I$I$d!d I$H$!A ! I$I$d!d I$I$E) !!(* *I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$E)I$I$d!d )$I$Ey! UUU1pI$!UU1 ۇ䇱!1/ 1-d1)m"_1&~B1&m3)qR$ + 41ɖ 0DZ* 44I$I$%44I$I$&44I$I$%43%44I$I$%43  DZ3N$M&e)VVVXH$@$e)E)ࠠII$e)E)+ ** @$@!I1"  e)%)I$I$e)E)**I$I$@!I$I$@!I$I$@!I$H$e)E)[e)!`e)E) 9`'e)AXHIHe)b? @$@$e)E)^W^\ e)E)-L$L&E)!$!II$E)!HE)! I$I$1I$IE)!** I$I$e)E)I$I$1 I$I$1 H$)(I$I$1 @E)p)0e) I$H$1 @E)!@I$Mf%)aW(E)lX&E)AX۶mlHE $I$HE)=I$IPHI!IXH*Iv iP+}6W EX " }. fi*,r4E*1#qn  4-1iR$ 4$DZE)@P4P$I$DZE)PTUUI$I$1 I$I$e)E)*I$I$e)E)$H$E)!\WIE)!? I$I$1"I$I$1" e)E)`)(I$I$1 I$I$)( Ie)E) * E)!蠀!II$E)!U e)E) -XE)@ IE)&U )(I$I$1)(I$I$)(I$I$1 H$H$1 1  )(II1)(d&$2E)!pp@I$I$E)a E)! %5)(@$E)E)!I$I$1 I$I$)(I$I$1 I$I$1 e)E)JꪪI$I$11 I)(@$ e)$!d&`&E)!W^^^II$!$A!E)!**+)H$@$1 )(I$H$E)!I$ E)! I$I$1 1@$@ E)!II$E)!****I$H$1I$I 1I$I$1  e)E)5I$H$1E)UUWVA$I$1)(I$I$)(I$I$1)(I$I$)( )( E)!II1I$I$)(L$d2E)!|I$H$! $! **$!E)! `$E)pI$%) %I$I$1I$I$1It۰E)$I$@$E)!%)a 7H$@$1I$I$E)$! **L$H&%)bZhII!b% E)!  I)(H$@$e)E)TXPZ I$1 E) L$L$!bTUTE)H$@$E)!I$I$E)$!**I$I$E)$!I$H$E)!UWV^II$E)!I$I$E)$!I$I$E)! E)! I$I$1I$I$1I$A 1I$I$E)$!I$I$E)!**I$I$)(I$H$E)!W^\X!! E)!  )(I$I$E)$! $1 )(I$I16,X5E)@P`lIE)%I$I$E)$!H$@$E)!I$I$$!!$@ E) .I$I$E)$!* )(I$I$1  E)` dIE)b ?5 H$)(I$I$E)!%)`  E)I$I$$!!UUUE)! *+)I$I$E)!$I$E)! *I$I 1I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1`&E)xI I$! *j $I$%)/I$I$E)b*jm$! vۆcf1s$ 2$I!@Igf19˺mne)Bm0l/1!Oj6f1?~9 {ޏ5Rl׶1J*oBA$I$)J%)QUUU I$%)UU&mۘ %Y\$ 2$*ҪhJdmꯢRm[Mn*>_ o*wrdH,Akښ.W*ۼ_N*s\$I$I*M$i2sA ʪk>c$Ij,w~ok}_?y\U`nKm׶ Jҫ*kf}k.k뱷F0M[m *"ZY[wm[NJ;wn=`U80$IJҒ`\rx'}JjPm"N*Np Wv^܃\۶eڶajҪ\m1NJ?f 'c j7tI$˓NUQVUMڶR )bU]mb JzrI$Iڋ_eχ-UT;}Kdȑ ȹMmm6N*?rP@)Ri J?tmA$I&ҋQUUU4hV˶ 㧱(kZjʪhI%}r$ڋUYWQFm۶})f%H$)ڇ 6 Aȹr(2㈍҇j⪨?9c'plf1ڨcێ%)j+KkE1>?>7  RfaE9----  yi----h4m6yq` b5bՆqeQxxz::eI!xxxxm۶m%)$dH%)hII ,iӶڶڇi?mڶb(}P%I$)ª)Rm۴(۾ ªDI03O ¼b&?mm| ȹ,۰m6" 㧹*J\6lNJHuU jDdǘ KC,B$G JR$ ɵ*ʪzɓk\miݦ.J߈t-P rگ;$$K-*_m-jμ߮hm.kڪڋhM"I2&xn ʨjUmE9NJFi{ܴo)qH!ђdH )mkڶU-k?H6ml Ɋ}`NUU^\\HHJҚ*U$r a&`Hb(ٖmٰP86i`H+ .W qP+ }.W f`*&{ %y+ /qr4 f 3)qR$ *41I 0DZ* 4 H$DZ!@TU@&`$E)xx  E)b--1 I$I$1 I$I$e)E)LE)!V !@E)! I$I$1"I$I$1"0Ce)E)pp`I )(I$I$e)E) I$I$e)E)II$e)E)****$& e)$!I$H$E)!UWVVI$I$E)a$@$E)!  2e)!ࠠME)&I$I$)(H$H$1 1I$I$)(I$I$1 @$@ )(II1I$I$)(I$I$1I$I$)( E)!I$I$E)aII$E)!55)(I$htE)VV )E) I$I$1 I$I$)(I$I$1 I$I$e)E) I$I$e)E)*(H$H$1)(I$I$)( e)E)KJʪ00E)!ZzzxI$I$E)a@!E)!)@$ )(II1H$@$E)!II1H$ )(II1@4E)``$IE) -H$@$1 $1I$I$1II$e)E)UH&@B$1E)V^[[I$I$1 )(I$I$)(H$H$)( )(I$I$)( 4@E) pptIE) 55 I$I$1H$I$1H$@$E)!d&`B2$!II$!** IE)!/?=@E)`ImE) E)! -I$I$1 I1, E)@I$IE)bՕ7 E)!I$I$1@$@$E)!XXXxI$I$E)a E)! %%%I )( e)E){koI$I$1)(HE) I$I$)( )(I$I$E)$!I$I$E)$!@$@ E)!ZzzjI$I$E)E)!I$I$E)$!I$I$E)$!**H$H$1I$I$1 )(I )(I$I$E)$! E)! [5@E)`I$I!7Օ7II$E)!5U)(ۆm؊&E)h!E)/ I1I$I$)(E)!)PE) H$@$E)! E)! $!@I$I!bՕ&E)! E)! *H$H$1E)! E)' I$I$1I$I$E)!I$I$1e)!ꪪI$I$e)!UUWV I$E)!-I$I$E)$!I$I$E)!*A$E)!I$I$1I$I$1I$I$1I$I$1I$I$E)$!E) I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1L$`0%)^\xA$I$!㩯I$I!? I Amm$E)*I$NĆ1!UW O1/A$I$%)!ijf1 ~9 mmӶf1jm~ ۆ1 9 ڶmf1 E) m5m۶1hI$k%)UU$9&I 4[}۶m W4ɲ*n.`Cn$GJr_mm3 *ҪjUmJ?ܶo*M$AdH *zHmY.ɪ*O۶hڴ ɢօI"I+neIUG_*pm۶ W.kk ImkҨM÷l۠y ʲ*Z ?9!wHy'(B E6m1"jɐ$I$1E)%UUUI$J%)%UUI@E9Z6Ll.*M$I2$ ѪjO M  F6d ɪ:ąy$y.UU]mI$IJ R M%? *kr@k0e۶mNjϼrCll.kq$ .]UE\m;M[ )Ҫzcm-/mmۢq-oI ɣ$.UEUTPMu[ ʦꮢPei)ɟ$ `m}NJ?eFصV kң?Za)=߀`%IPjҹ*cv,-j߰pmخPI)ʺ4$AR-먹:*Zcc.J{Jm۱ݻ cmߎm-JϋeݲmZjҺp~'Ip&n_U[UdF$IJkWqm*bR$AC *bt?U]EUcmѶ²J*Jws?-~?0w"mڨ>h۵ NjmNMm۵ m&]öm;.k}mHڶm-k`[lmJj:OI I Ң\m۪Eڶ.J`meڶ.JW)0eJ@c.J_۶a޸*ҪڋR$H$%1@RTUy9! 9 qB 77bݮcۆ1˲j$$ E)!  tڶf1 -;aۆ1bh*I$I$9%)UUUnڵ ;E)ʪy?f1<$!xm8mE)bbɐd@2%):p(q$E)ʩL$$%)bh E1/.Щ#&eI! bXH$I$E9!TUUUI$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!! !I$I$E)aI$@$!I$I!*!I$I$$!! H$H$$!bXVX$! I$I$$!!I$I$e)I$I$E) !@$I$!  E)-- H$I$E)!I$I$e)I$I$E)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)I$I$E)a@$H$!zZ^VI$I$$!!I !I$I$E)a! @!I$I$e)!a0I!b7 I$I$E)I$I$d!d  !I$I$!I$I$ !++ !@I$!b+%I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$E)I$I$E)I$I$E)@$H$!PXTVI$I$UU!I$I$E)I$I$E)I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d I$I$d!d @$H$!I  !I$I$!!@!I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$E)I$I$E)a@$@$!I !**H$I$!!I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E)@$H$!I$I$!I$I!I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d $@ !b`P@II!b)%%I$I$E)I$I$E)I$I$E)aH$I$!^^W_I$I$$!!I !% I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)@$H$!xI$I$!I$I$!II!I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)aI$I$d!d I$I$d!d I$I$d!d @ !P ! I$I$E)I$I$E)I$I$E)@$@$!I$I$TTTVI$I$! I$IHUUH I PH* 1iP/+{w.e f`/+,qr E+ 3(yNT + 41ِ0DZ* 4O$DZEU44I$I$%4@'H$DZ!P\TWI$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)I$I$E)I$I$E)I$I$d!d I$I$E)aI$I$E) $!I$I$ז*A$I$!I$I!! $!!** H$@ !p`I$I!A-+I$I$E)I$I$E)a !H$I$!A !I$I$E) !jŠ I$I!Uն(!I$I$d!d @$H$! !* I$I$E)H$H$!iۣP!na@* rwqP + PR/r%yi )"!R&E%y(I$I$hI$I$h4I$EUU4I$I DZEUU4I$DZEUU4I$MHDZEUUV-I$IhEUUU%:mEE9jj$C2$ e1e)I$I$e)E)b"&#E)pI E)551r$e)bXV$IHe)b  @!I$I$@!I$I$@!  e)%)I$Ie)E)* 9J&E)a`X`Ie)a % I$I$@! 0 e)E)@I$I$1 0E)!I$I$$!!XXp`I$I$E)a  E)!/+/@$@$1II1A$A$e)E)I$I$1 I$I$e)E).$e)E)xZ e)E)5@&@ E)!px!!@E)! - $C$IIE)UUU$Er$@E)U%h۶mIHTUUUI$IPH*m6i `H+ .W qP+ }. f`*& %y+ -qN f 3(yV4 +*4/iJ DZ4 H$DZE)@TU  1H$@$E)!^ZZZI$I$E)!!E)! ))H$H$1 I)(I$I$e)E)** I$I$1"I I$e)E)I$I$1 I$I$1"I$I1"I$I1"I$I$e)E)I$I$e)E) I$I$1 I$I$1 A$I e)E)`&`B&E)!XPPx ! nE)!%I$I$e)E) I$I$)(I$I$)( )(I$I$1I$I$)(I$I$)(I$I$1 I$I$1)(I$I$)(I$I$)(@ )( & E)!\\\X!m.E)J I$E)b U[$E):I$I$1 I$I$)(I$I$e)E)///I$I$e)E)I$I$e)E) e)E)`II$1I$I$1 I$I$e)E)?H$@ E)!LB& E)!UWVVI!b IE)! I$H$1 )(I$I$1)(I$I$)(l$E)ap@$I$%)`WUUɐɐ E) % I)(H$)(I$I$1! 1E)奵I$I$1 )(I$I$)( )(I$I$11 I$I$1 I$I$1 @$@ )( I$1XE)$C2 E)!I$I$E)a I$$!! IE)! @  E)!I$I$E)$!I$I$E)!I$I$1 )(@$ E)!۰m۶eE)@$)(I$$1I$H$E)!UVT\I$I$E)! E)! I)(@$@ e)E)\XPsI$I$1I$I$)(X$I$E)bTUT0E)b@$ )(I$I$1I$H$E)!I$H$E)!W^^zI$I$$!!UUI$I$E)!*I$I$E)$!II$E)! ***I$H$1I$I$1)(@ E)!I$I$1E)![5 E)bP`I!b I$E)!%@@0E)!$ $E)! I1I$I$)(I$I$)(I$I$)(I$I$1 H$@$1@ e)!I$I$e)I$I$e)@@%) E)! *K`E)\E)! I$1 )(@$I$E)!I$I$E)$!I$I$1I$H$e)!UWV^I$I$e)!UUE)!I$I$E)$!B$@E)! I E)@$)(II$1I$I$1@E)I$I$E)$!I$I$1$%)p %)%I$I$1I$I$1I$I$1@ @0%)pI I$$)bN $I$%)IB'q$1  Aذl;E)kGBӿyf1* 9 mvf1.$I'9%)nU]$C1A1a)mػ9!}/B I$ɐ4f1E)UU%ukۦE[e1! [Æ1)Zq$ɓ$j%!UuUdIDE1 CTH$" k$AT)KڪkeAl6].JŸWRUpnjsZI2# p )Ңjꠤ`!E(HJ)zoUuUĒmmݲmkڬkwXm.k?I$y$.UUUekMrJ(A\[m *ڪ*\o mNJ+tc۶n |O? UVUU`m& J*)z/ ZmJ.j?̭P%$y ʫeӖm-j?zO ڕTUoc%Ҷ kO?Wۦm& JҪ*cr|-j?po}k?ߚkv۰MkkwNk;۶m[Ѭ `rڋPmҌ N*ܭpH$$-TWuUUm_mK4Jr_8oJ>tpPPH)P1lїm )Om{ )kJ$H'jTT\\dB!HE)AꚊ1*mYE)b* wfQ$!/--_ P qEI+  I"I$AyEYU qEI :bfYE)~xx!I$i,E)!UQD!I$ %)*kdj$QUA۶m۲JO]׶N)?Aȶm۶@Fa7OH$H ¦wi$yN]U]Pk۶)ʪzUmZmۺ)ʚMmm۲n*?Z]ۮ苦NJ\ۤaoJҿ:߅t$)"AڪjjI8H$-UUTUhu[mNk_mݶ5JꪘjH<;H bzm۱m?W@ *R؜mۆ)詪r'I$Cک:jD$i9Q ɪ-%7m 'Am6o ɡMm۶m۠ ɪWXc߶i)h㩊D$ib!ɓ ɪ+m5P`$I$%)`\UUm;me1 j Na۶چ1m;mç9!E)1!7$Id(e1 * c۶9cۆ1 ? mۄ8f1bņmf1b* ! I$0%)fmpbE)F$N$1F8I$1 RwUWI$qE1Aj** 1 :fI!- b `$I$eQ!XVUUI$I$e)I$I$e)I$I$e)I$I$e)I$I$E)I$I$e)I$I$e)I$I$e)I$I$$!!* I$I$$!!~H$I$!  !H$I$! !*I$I$$!!/+ I$I$e)I$I$e)I$I$e)I$I$$!!I$I$d!d I$I$E)@  !@I !$@$E)!I$I$e)I$I$E)I$I$E)I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)a @$!`I$I$I$I!UՕI$I$E)aI$I$E)aI$I$e)I$I$e) !I$I!bTUT!bI$I$E)I$I$d!d @$H$!I$I$I$I$!! @ !aI !b% I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$E) $!`I$I$TUUUI !5%I$I$E)I$I$E)I$I$d!d !I$I$d!d  !@!I$I$d!d I$I$E) !I$I$ $@$!II!/+* I$I$E)I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)aH$I$! $!I$I!I$I$E)aI$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$E) !H$I$$!I$I$!I !/// I$I$E)I$I$E)I$I$E)I$I$E)!I$I$d!d I$I$d!d I$I$E) ! I$I$E)aI$I$E)a  $!I$I$aI$I$bU!$!p!  !@I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$E)I$I$E)H$I$!ZzI$I$!I$I$( !/++I$I$E)aI$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$E)I$I$E)I$I$E)I$I$d!d H$H$!I$I$! I$I$!  HI$IPH+kv`Pյ-{6EX+)yr %y+*1"iNݰ ++ 4/i  DZ* 44I$I$%4IDDZEU4<@'DZ!pP\I$I$E)I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$d!d H$@$!zI$I!H$I$!WI$I!I$I$d!d H$@$! ! I$I$d!d I$I$E)I$I$E)I$I$E)aI$I$d!d I!8I$I$d!d I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d !I$I$E)!I$I$E)aa!AP! I `@+*+R`EP++) o@ i 3I %yU4I$DZEUW?I$6`EUU44I$I$%44I$I$%44I$I$%?4I$I$DZ=UUU44I$I$%4 DZi|FsI$I$I e)E) e)E) e)%)r9e)AXDIHe) @!I$I$@!I$I$@!@!I$I$e)E) @ e)@ e)I$I$@!  e)$!@H$1  e)$!H$@$E)!~zzI$I$E)aI$ E)!A$ )(I$I$1I$I$e)E)I$I$1 I$I$1 ,E)@$E)mI$E)b 7U$I!0HE)UU$&I$He)k2`۶ P8^I!IXH* IvYiP+ w/qHZ r fX) +DE+ 1"qr4 4,yn4 + 4$E)@P4@$I$DZE)PTUUH$H$1 1@$ E)!Zx`h$!p@$E) )@$A$1II$e)E)UI$I$e)E)I$I$1"I 1"I$I$e)E)I$I$e)E)I @!P$I$e)b0WUE)I$I$e)E) *I$I$e)E)(I$I$e)E) e)E)  00E)!`@@@I$I$E)II$E)!e)E) I$I$)(I$I$)(I$I$)(I$I$1)(I$I$)(I$I$1 H$H$1 1 E)! E)a&I$I$)(dB2 0E)!p```I$I$E)a E)!%5I6E)I$k E)ָ0E) I$I$1 I$I$)(I$I$e)E)I$I$1"I$I$e)E)I$H)(I$I$1 I$I$)(` 4E)` ɄI$E)I$I$E)a$!E)!*+))@$@$)( I)(H$H$1 1I$I$)(`E)@Iv`E)%)I$I$1)(I$I$)(@$I$1II$1E)UUK$h&1E)WVV^ I1I$I$)(I$I$)(H$H$)()(I$I$1  @4E)``!IE)b/5%I$I$1)(H$@$E)!I$I$$!!TTXPI$I$E)a$A!E)!**@$@$1I$I$E)!I$I$E)$! I$I$1I)()(K$M$E)TWV)E) I$I$1dB&DB2E)!XPp`I$I$E) IE)!-55I$I$)(e)E)CÏI$I$1)(X lE)bE) I$I$1 I$I$1A$ E)! @ E)!zjI$I$E) E)!I$I$E)$! I$I$E)$!@$A E)!I$I$1 I1I$I$)(I$H$E)$! I1 )(I$L$E)!UUVTI$I$E)d2!E)!- !E)!I$I$1)(I$I$)(E)HI$E)b(ՕE)!I$I$1I$H$E)!I$I$$!!@H$I$!WV%)E)!I$I$1I$I$1)(I)(I$H$E)!I$I$E)$!@$e)!zzI$I$E)aIE)!I$I$E)$!I$I$E)$!**I 1I$I$)(I$@ 1A$I1II$1I$H$1I$I$E)$!E)` E)%)I$I$10`$E)x^%) E)!jIB%) A$L&%)QWXI$I$!&I$I1'avf1.o I'A$9!U]QULȐ$E)*m m%E)???9 |c9 " %) Jmۖa%) A? 9!A"I$f1$)IM$BE)UVU?9!I$If1*kI$%! 5]Z$I)Ҫ\dI *ڪh ITK*R" 0@hc߶.jpm8mNjsϱ}? ?'I$Iu 9x9?m:uچ1*ڪA!W]UEaHI%)qf1A* ?o9$$L$$)I I$!jI$q1 ~RJfI)h$I$EI!XWUUI$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!/?/I$I$$!!@$H$!I !@$I$!I! I$I$$!!* I$I$$! I$I$e)I$I$e)I$I$$!!I$I$e)I$I$E)I$I$d!d @$$!bp`I!bI$I$$! I$I$d!d I$I$E)aI$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)aI$I$E)H$I$!x\^WI$I$$!! !% I$I$E)aI$I$d!d  @$!bp`I!b 55I$I$e)I$I$d!d I$I$E)I$I$d!d $!I$I$!I$I$I !++I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$d!d !I$I$E)aI$I$d!d @$H$!`xX^I$I$!A! I$I$E)I$I$E)aI$I$d!d H$I$!^\! @$H$!bPTX` I!b% I$I$d!d I$I$d!d $@$!II!H$I$! ! I$I$E)I$I$E)I$I$E)aI$I$d!d I$I$E)I$I$d!d I$I$E)I$I$E)a$!`$I$!@ !**@$H$! !*I$I$E)I$I$E)I$I$E)a !@I$!b 7I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E) $!`I$I$!I$I$$!bI$! 7I$I$E)I$I$E)!  !@I$I!bU&I$I$E)I$I$E)I$I$E)aI$I$E)a @ !` I$!b7@$@$!zzzI$I$$!!I$I!**I$I$E)H$@ !b\xI !b% @$H$!bPTX` ! I$I$e)I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)a  !I$I$ WUI$I$!yI$I$/?! I$I$E)aI$I$E)I$I$E)I$I$E)aI$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)$!p! I$I$E) !I$I$!zzzzI$I$! IHH$H8TTIvmXH+ w/%yX/+% ywd %q/ /1N.U- -+3,5: r4-` DZZ-O$)§WW?=DZ!@p?$I_W!a I$I$d!d I$I$d!d I$I$e)I$I$E)I$I$d!d I$I$d!d I$I$d!d $!I$I$E)a !I$I$!z^~II$!I$I$bp I$!a -7I$I$E)H$I$!!I$I$E)I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$d!d !H$I!I$I$E) @$!II) UUUI$I$H$1II`P%-9S7qfi--, f-) 4-!` DZ44I$I$%44I$I$%44I$I$%?4II$蹧?44I$I$%44I$I$%44I$I$%4HDZET&N$JVI$H$e)E) Ie)%) **I$I$@!I$I$@!@$@!II1"I$I$9I$I$@!I$I$9I$H$e)E)@!I$I$@!I$I$@!@!I$@e)E)UW^  E)!H$ E)!~$!$A!$! H!HE)!I$I$1$I!e)E) I$I$e)E)I$I$)(X%@lE)ap`I$I E9bUU+I֭Hb ضmIdP8I$IPH*m6i `H+ }6W %qP o.㎡%yXj&vp X% /yr4 f 3(yN$ 4/iJ DZ4 H$DZE)@TUI$I$1 I$I$1 H$@$1II1$C2 E)!jhH$@ !  E)--+*  )(I$I$1I$I$e)E)I$I$1"I$I$1"$I1e)`۶mۖe)! e)@I$IE)bUU7I$A$e)E)I$I$e)E)****I$I$1"I$I$e)E)II$e)E) * ѐ 9E)` !b %I$I$$!!UUU$!E)!I$I$e)E)I$I$)(I$I$)(H$H$1 $E)! E) I$I$1 H$@$)( I)(, E)`I$IE)b7 I$I$)( E)!I!II$E)!I$I$1 I$I$e)E)ʊI$I$1 I$I$e)E)I$I$)(I$I$e)E) I$I$1"I$I$1" e)E)p)(I$I$)(E)@I$I$!bUVVT !  IE)! )(I)( `$E)!\II$E)$! ***I$I$)(I$I$)(I$I$1 I$I$1)(I$I$)(I$I$1I$I$1@B01E)ZYyiI$I$1I$I$)(I$I$)(@  )( I)(I$I$e)E)E) @I׭ 4E))` I$E)& )( E)!H$@ E)!^zzjI$I$E)a $E)! kפE)!@$ 1I$I$1I)(I$I$)(I$I$)(` E)!ؠ Ie)E)%5H$@ e)E)WT\|$C2$E)!I$I$$!!UUVTI$I$$!!/U@$E)!I$I$e)E)//H$@$)( I1I$I$)(I$I$1 I$I$1 H$@$1 I1I$H$E)!I$H$E)!WVV^II$E)!I$I$E)$!***I$I$E)! I$E)! *I$I$1I$I$1)(@$ 1I$I$E)$!*)(H&@0E)!\Pp@I$I$E) I$E)!%5I$I$e)E) ++I$H$e)E)UWT\ I$1I$I$)(I$I$)(IE)(I$I$1 H$@ 1@ E)!I$I$e)@$!0E)! I$E)! **H$@ )(I$I$1II$1 )(I$I1I$I$E)!I$I$E)$!I$@$E)!W^Zz !*@E)!+)I$I$1 I$E)! **I$I$)(0E)!`۰ MdE)&H$)(`۶E)I$I$E)$!I$I$1I$I$E)$!I$I$E)$!L&E)^x %) I$I$1I$I$1`0%) xI$I$)I$ $!nA$I&%)! I!%)jEۉE)+-ڦi۶E)mm۶E) ]iӶE).k9 ߿m׎aۆ1!? 9 ? 9!E)!1br1˪E)! mIG9 3ض%6E) I$kE1 UU&lkB( F$IRIRoӲmQ*}?UmٶM Jڿk$M$IJ*eضjNJr-ڶm5p U"Ik @Fඥ۶m ɨz6lO۶ ņ)Ҫ&}02ڪrmNL.k}sN?h1FbjڪjHIC-ɪb`Aݶm׶Nj`E4mu.jw?W)I I$-UEUVkƇmNkm;6l.kڿ}sUMǮm*?= Ȋ$M ꪗq$;cmönJr?UGUUD2l[m j? I;$Y ~_mTE۶ kҿhnc-jzZTI$ JCmӦ-ڶjAmfP ;R&I%(HmQڴ*?mD$h$j)RPXP$$C!@ AO?Ab4eI!--/% )RqeQ----)iyq  ͆yixxxx 5PfaE9xxxLL$f1!VVVLH"$2E)aJI O$(Bp1 J  ?MMf C<ɼ,I*mNUUQ_em6kJҪk訸F$۴E۴ ɪwG-kI' U]QYMHr ʉUۼ-m)jm$IIkڊpoۢo6 c A>IJ&h-" kmz{-ڿϽPMm۶ ɦ*U$[%r*ҪkJ$!!Y *+U A$A% *mm;-jhKm۶mJڶ`mߢ-v-jϽkhӶm۶ k|C$I% ɪ:5p$%1`XUǶmfI$ 9}A mۭf1 :6 ӆ1 *j &f1Ph$Ie1 ~9 ?iԺh19 9 y?9?3}mmE) ~>ߟ9simWE)b*I$I$E)!UTUU&L%)b.a I&1i$A%) /WQ ) S'\2!q$!{^ZBI$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!**I$I$$!!$H$!I !** H$!I !* I$I$$!!+ H$$!VI$I$$!!I$I$e)I$I$$!!I$I$$!!I$I$E)@$I$! Z^! II E)!H$I$E)!I$I$e)I$I$E)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)a @$!pxI$I$$!!I$I!Օ5 I$I$E)I$I$E)I$I$e)!@I!b I$I$e)I$I$d!d I$I$E)! @$H$!I$I$I$I$!! I$I$d!d I$I$E)I$I$e)I$I$d!d  !$I$!bVUI$I!75I$I$E) !I$I$!VWUUII!55 I$I$E)I$I$E)I$I$E)I$I$e)@! I$I$e)!!I$I$d!d I$I$d!d H$I$! $I$!II!/I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$E)@ !I$I$!շI  !*I$I!!I$I$d!d I$I$E)I$I$d!d I$I$d!d I!7 !I$! W!I$I$E)I$I$E)@$H$!PXhI$I$ 55kI$I$bUI !7 I$I$E)a$@ !I$I!+/I$I$E)I$I$d!d I$I$E)I$I$E)$!b@!!ꪊI!7 H$I$!^^VWI$I$$!BI !?///I$I$E)I$I$d!d I$I$d!d !@I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E) !@$I$!I$I$*I$H$!{{I$I!յI$I$E)aI$I$E)aI$I$E)I$I$E)I$!V!I$I$d!d I$I$d!d I$I$E)I$I$E)H$H$!xXX`II!%5I$I$E) @$!I$I$!^^__I HUI$I$Q!@LBJD X8V* ߿EyP I q zɟ.!֫E+&In㧩UU1INO$DZUWU-.Q?I$M㧱+~UUX?M=p$I$ȱ!XVUUH$!A` !a I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d H$I$!VV ! $@ !I$I$ zI$I$ I$I$ z*I$I$a?/ !I$I!I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$d!d I$I$d!d  @$!I$!!****I$I$E)@$@$!ItI$1 IIPH/qWqiP-- 1S7fi--/+- p---+4/ P DZ+***44I$I$%44I$I$%?4I$I蹧?D4I$I$DZUUUP44I$I$&?4I$I蹧?44I$I$&43 DZ3z&Ѓ=f1\Xpp@$@ 1E)IIe)%)****I$I$@!I$I$@! @!II$1"I$I$9I$I$9I$I$f1e)H$@$e)E) e)E)I$I$@!I$I$@!I$I$@!I$I$e)E) @$E)!$H$E)!H$@$!bp`II!a/5' $@$E)! /I$H$1!!e)E) -H$I$e)E)I$I$e)E)$I 9@E)UU%$ģH%)% *$C$IP@j*IhS$ X8* IvYiP+}.W EX ! }- fi*, E* 3 d2$S.%qZP4IEy 4$e)@P4@$I$DZE)PTUUe)E)I$I$1 I$I$1  )(I$I$1m؂%E)b@P!bI$I$$!!???IIE)! I$I$10C$E)\6e)jI$I$1"X$@ e)p\p` e) % H@!$ $ e)@$ e)E)I$I$1 I$I$1"I$I$e)E)I$I$e)E) **P($@e)bP@IiE)bI$I$E)! E)! ) -@$A$e)E)I$I$)(I$I$)(@$@ )(I$IE)!  E) I$I$1 @  e)E)Zzj`II$1I$I$)(I$I$)(I$I$)(@ )($ H%)!VVVVI$I$E)a@$E)!I$I$e)E)**I$I$1 I$I$e)E)* I$I$e)E)I$I$e)E) *I$I$1"I$I$1"@ e)E)PpI)(I$I$e)E)E)I$X lE)bUT!II$E)! e)E)5H$H$1I$dHE)!_E)!)(I$I$)(I$I$1 H$@$1 I1I$I$)(H$H$)(I$I$1! 1E)奵I$H$1)(I$I$)(E)!@H$I$%)b8U00E)I$I$e)E)E)!@Il`E) ۰ E)I$I$)($C2 E)!jI$I$E)aI$I$$!!Mڶm E)!U7*E)!I$I$1)(I$I$)(I$I$)(@  )(I$I$1e)E)AI1I$H&E)!W\\xI$I$d!d ! E)! -I$I$)( e)E)rbI$I$11  E)!@E)  1 ꪪI$I$1@$ E)!@$ E)!ZzjjI$I$E) E)!I$I E)!%)@IE)$U$A@E)!I$I$)(I$I$)(I$H$E)$! e)$! *E)!I$I$E)!UUWVI$I$E)!E)! @ e)E)Pp@I$I$1$)(K$E)bTUIE)b %I$I$1 1 ꪪI$I$1H$@ E)!I$I$e) I$E)!I$I$E)$!e)E)멭%I$He)E)UUWI)(I$I$)(I$I$)(H$$E)!I$I$E)$!E)!j$@$!`Ph I$E)b)5E)$!I$I$E)$! E)! @E)b`I E)b5H$)(K$K2E)\W\ݖbE) I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1`0H$%)(xTUI$I$!AI$A$%)HI$E)E)b!b0#Bc6lن1I4H21 ۶t"%),ۺmقm%)Cڶmf1 vmǶM$9Plؤm;9! 9 !E)b ߦ1((jvl۶m1*ZI'I)E)5UUUmyċ1-UVa R^۷N*mI I$EUU`m$*ڪW۸m@i*ҪUQ$A)Ҫk$H$JڊZH&I*Z@ *04$IN\eNJ7o{rm۱mNkFm[N Ҫ* UUUeR KJ t/۶ lN$?-WUTUtv|m- e% hj(F!H$I ʉjP`P  _K$ JҚM(Iɰ ʬ\ ٶ'zRJҦ+\oۺnNJ6Röm۶g)ʢR e{*?MH $ZyߖmJҠmNJҿ=wP8 < =mm:N}}`4Ɂ$JҮ[2$[1!pp@@I۵A6E)bh$C$IE)bj =ۨ]f1`aSe9A  N)RieI +--&a1yq hmyfi`P5PfieAxxxxrZe1(e1bm۴m[E)" p ` Hvl۰ۏ rhڶm۶}Oc@ haώ j?t?-kWme[.Jҿe˾mNJ>wNkwN!I$E)~I$I bj* ɛ)U I+ {.U yeI+ is i+*% 4 J$Ei+"H!@#I$H%!UUTPI$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!*I$I$$!!  $!I$I$E)a  A$!I$I!I$I$d!d I A$$! I$I$e)I$I$e)I$I$e)I$I$$!!  !I$I!?.I$I$d!d I$I$$!!*  A$E)!I$I$$!!I$I$d!d I$I$E)aI$I$d!d I$I$e)I$I$e)I$I$e)@$! !I$I$E)a$H$!I$I$$!!I !% I$I$E)aI$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d I$I$E)I$I$!I$I$$!BI$I$!! I$I$E)I$I$E)@ !bpI$I!bU7!I$I$e)I$I$E)aI$I$E) !H$I$!TWUUII!յ5-I$I$d!d I$I$E)I$I$E) !@H$I$!bTUUU I!b% I$I$e)I$I$d!d $!bp! @$H$!ZI$I$!I$I!/I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E) !I$I$!U׾II!+* H$I$!! I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)@$@$!b`X` I!b% I$I$E) @$!I$I$!I$I$$!B!I$I$E)aI$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$E)I$I$E)aI$I$E)$@$!jjZZI$I$$!!I$I$$!aI$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$E) !I$I$!^W_I$I$!moI$I$$!! !+* I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$E)I$I$E)I$I$E)I$I$d!d H$I$!z $IHI$IPH+kv`H/+{6E`+)yr %y+*1"iNݰ ++ 4/i  DZ* 44I$I$%44I$I$%4 4P&!`PXI$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)aI$I$d!d H$I$!jzI$I$!UוI$I$!^V^WII!I$I$d!d H$H$! ! I$I$d!d I$I$E)@ !`I !'I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$E)I$I$E)I$I$d!d H$I$!a\^I$I$  ! I$I$E)I$I$ )aVlH!%%  I XH+qS7q%yX--/%1SE----1( p 4100DZ ?۶-DZE@DDIXE 544I$I$%?4I$I蹧?4I$H$蹧?۶m2,DZE@@4 DZE44I$I$%4 ( @Q@@ Qf)UUWTI$I$1"9I$I$@!`0 Ce)E)\p`8 $e)E) 9 9(P'e)ax e)! -II$1"I$I$@!I$I$@!I$I$9@$@ e)E)E) @I$H`E)A׾(!I %)!U^ZZI$I$E)I E)!?/+@$@ )( I2PE)UU%$H$He1 I$I$PHI!IXH*IqiP+.W%XU* I fXU ,4`1 ɟ/%qU+IEx4r-&%1 Z4$I$DZe)@TUUI$I$1"@!lle)!@eJ IE))I$I$e)E)I$I$e)E)I$I$e)E)* &`&E)!xx  E)!/--L&dB&E)!^xppI$I$d!d MvE)* H$@$)( Ie)E)%5e)E)pkvۆmE)!~(Pe)!I$I$1"@!I$I$@!I$I$@!H$H$e)%) e)%) I$I$1"I$I$1" @![%[-E)!Pp@I$I$E)II$E)!! e)E)  I$I$e)E)I$I$1 I$I$e)E) *I$I$1e)E)I$I$1 I$I$e)E)H$@$e)E)WV\\k$E)bXE) I$I$e)E)??I$I$e)E) 20E)!``@@!nmvE)!%I$I$1 I$I$1 I$I$e)E)**[m۶ e)!p)0E) I$I$e)E)M@e)b^ )m۶me)! I$I$e)E)I$I$e)E) I$I$e)E)e)E)B I$H$%)VVؠ ! E)!)(I$I$)(@$ )(II$1@$I$1)(I$I$1 I$I$1k:l0E)E)!I$I$1I$I$101E)Z{yiI$I$1I$I$)(I$I$1 I$I$e)E))(I E)!&I$I$e)E)I$I$1  E)!, )( )(@$ E)!ZzjhI$I$E)a IE)!E)! @  )(I$I$1)(I$I$)(I$I$1 @$ )(II$e)E)UUI$I$e)E) E)!I$H$E)!WV~I$I$$!!/!E)! I$I$e)E)*dB&C e)E)PP`B I$1e)E)j * ,E)@II$E)b)&@ e)E)ZjˋdE)!׮I$A$E)!H$@ E)!^ZzjI$I$E)I$$AE)V* IIE)!II$1 )(k$E)b VE)!I$I$)(MuۆmE)  e)$! *E)!I$H$E)!UWV^I$I$e)!E)!  e)E)p`I$I$1)(I$I$1 I$I$1 I$I$)(I$I$e)E)ƒ I$H$e)E)UUW\@$ E)!IIE)!IIE)$!I$I$1 e)$! *I$@$e)E)UU^PI$I 1 I$1I$I$)(@ )(I$I$E)$!I$I$E)$! *I$@$E)!WVXpI$I$E)a@L$E)bjZE)b  I$1)(I$I$)(I$I$)(hE)hE)!H$@ )(I$I$1I$I$1I$I$1I$I$1 HE)U$I$ 2H0`$I$@0(I!IH0 C2$AzI6M%)h 0I%E)o Iy$1?$9 '9_?}1}f1IdI$f1!?-1 ?ڶi۶f1!d$IE)!`H$ɐE)!E)!"E$Cf1jt$if1 ۱{9!mo12ön˲mE)b;ɑI$%!5UU`hI$k%1%U_ I"9*ڨJ\N*ڻ:WѶm;o ҩ讚Fu mɊU&9䉐 )ҫꚤ}? Ri$I Ҷ*rmӶ\*0pmӶEjm ێNj}.UaUQ\IR*Ң)r۰m ڿy>e9a`I`۶f1!7$$I%) IId 55hi1mjүr?#-UUUEJ @ 7ضa߶=Z`$C9BJjZ%dKJ+Wmba۶.JMEh ʢhm>-ڶk_Zi6mѶ.J}?JP`0 mm۔h۴kWNazmo*'zm۰5I !+++*I$I$E)I$I$E)a!I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$E)aI$I$E)I$I$E)I$I$d!d @H$!bI$I!I$I$E)  !I$I!*a&A$HE) iviXH//%yH+/q 7RǩE)--9IOE-?3蹧44I$I$&44I$I$&4mH$DZETT4H$HIDZETTT4,pDZ4DZE@4 DZE44I$I$%4,(DZ@@@ae)TVTTI$H$1"@!I$I$f1e)I$H1E)WW޺$@ 1E) @!9p'e)a`xxd3e)a e)a I$I$1"I$I$9I$I$9I$I$9 e)E)I$I$)(C$$CE)!H$H$E)!^^~zI$I$E) E)!-DIHE) @$I$HA I$IPH Im XH+ nWqP .7 f` & { %y+ -qN f*3(yN4 4/iJ DZ*4 @$DZE)@PU1H$I$DZE)TUUUIIe)E)/??/I$H$1"II1"  e)%)I$I$)(I$I$1"I$I$e)E)I$I$e)E)@$@$e)!ࠠ IE)$!dB2 2E)!pI$I$E) IE)!-555@$  )(II$e)E)UUI$I$1"d$Ie)E)@!H$H$e)E) e)E)I$I$@!I$I$@!@$@$e)%)IIe)%) ***I$H$1"I$A$1"II1"؂- E)!I$I$$!!UWV\I$I$d!d nine)! + I$I$e)E)I$I$1 I$I$e)E)***H$H$e)E)VTT\ e)E) I$I$e)E)$E)!@PmɖdE) M$[ E)VX E) I$I$)(I$I$e)E)  E)!I$I$E)a$A$$%)!UE)!I$I$e)E)**I$I$e)E)* II$1"I$H$e)E)I$I$e)E) I@!$ &e)E)`X $e)E)I$I$e)E)/?/I$I$e)E)I$I$e)E) ***$2 e)!jhI$I$E)aII$E)! )(I$I$)(1 I$I$1@ )(E) I$I$1 H$H$)( )(I$I$)(I$I$)(I$H$1 e)E) I$L$e)E)UUWT)(I$I$1 I$I$e)E) *I$I$)(I$I$e)E)**I$I$1 I$I$e)E)*@$ e)E)RPp~ I1I$I$1   E)!訠I$I$$!!UUUTI$I$$!!5U$@$E)! *+I$I$)(I$H$1 1I$I$)(I$I$)(I$I$1 I$I$1e)E)I$I$)(d& 0E)!XX`I$I$d!d  IE)!%I$I$)( e)E) *I$e)E)\1 1 ꪪIE)b7 I$I$e)E) **H$H$e)E)WWV\I$I$1 E)!訠I$I$$!!UWVT I$E)!I$I$E)! I$I$1 E)! I$XE)bU00E)I$I$)(@ )(I$I$1e)E)`&0E)!XP`@I$I$d!d  I$E)!/Ue)E) +)H$@ e)E)V\Xp I$1I$I$1 I$I$1 eK$E)00E) @ e)E)Xp`I$I$1I$H$E)!E)!I$I$1I$I$E)$!*e)E) I$I$)(I$H$1 )(I$I$)(H$E)!I$I$E)$! E)!`ࢪI$I$E)!UUW^I$@!TX @E)b I$I$1I$1I$I$)(I$I$)(I$I$)(I$I$)(I$I$)(I$@ )(I$I$1I$I$1I$I$HE)UUI$I$HE)۲-ۺ P0jj6 X0/I}HU+3Iw I%QUUcP_i q$u9E1I$I$E)AI$I E) UUUE 9Em۴%)K$M$e1!VUV\mǶf1b*$C$AE)j* y'9$!UU\۶mۂE) JźlYe%) 3 6a9 }/vlmf1!+ I$f1E)eUU 99 ܶm9 O?B}s9!}wEѴEf1 "1I$j! UUظId5U"I<" ҨNmBlso.k|m~~NJMJB,M R$II ҪPH$; ҈U$AI *\DB$Gr*RPۆnZ}*ҪMmݷ}Z ɪz ψ}۶-#mڪꪪhچmۼlJڨꦕR۶e*Ҫ*Wڢm- ʋ(t]!Hj0Zz ͶmJ)Zװ-۶MJ@zm-͝\QJ:*~J"IRHI ɨ*pNkϚ}]m' \$I$IJҢJa6- ʦjp}-ڶe7ҺmӶjMcj[mӠ jǗ`M۶eѶ*Ҧ*A lE B *ؖ E1؆f1!j"$Ʉ$I0%)Ab@e[E)*)*  RfaE9---- yi----h4@4yq b5XՆqeQxxx::eI!xxxxvG E)bA!1tIIJ5pk=}ݵwI%I-UYU=M[-ضm j}hjOöm۶5 ʢjZc۰mۏ*R2I0I)j*\-uҶ Jڪ^cmNJM̒$If ʪZ$I$*ҪF$I zF`p k5ڮN kC&I-ɫ"WuӴ-Z )n>W14 Ҿkmݶ1A@$%N$)pVU Immܶe1 *Zh٦mf1@E)!Mh۶f1ꨪHI(JE)TUUcVl1j겢 ??9 ~[l۶m%)` u[mf1E691jjI%ɒf1!?ϻve1m6mE)bjLH$I$)i[i6%)ifI$%)i*I$I"E)H$I¤1߾Js6E9$ vrϔq+ 4 eY ( n&$= Eq_[) &Eq 1+fا+/3,ݺm-1%c z蠀)h9`I$J%E!UUTPI$I$e)I$I$$!!* $$!H$I$!I $!@$I$!$!* I $! @$I$e)I$I$e)I$I$e)I$I$$!!0I$I$$! I$I$d!d I$IE)!UUI$I$%)!I$IE)! `$%)\!bI$I$d!d I$I$E)I$I$e)I$I$$!!I$I$e)I$I$e) !b@ !b !H$I$!X^VUI$I$  ! I$I$E)I$I$d!d I$I$e)I$I$e)I$I$$!!**I$I$e)I$I$E)I$I$d!d !@I$I$b7 I$I$I$I!UW> !H$!T!!@ !b I$I$e)I$I$e)I$I$E)a !b !H$I$!\V^~II!5 I$@!V\  !CI$I!bUI$I$e)I$@! !I$I$d!d I$I$E)I$I$d!d I$I$d!d @$H$!I  !zI$I !I$I$E)I$I$E)I$I$E)$!I$! /I$I$d!d I$I$E)aI$I$E)aI$I$E) $!II!**@$H$! ! *I$I$E)I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d !I$I$E)  !I$I$!I$I$! ! I$I$E)aI$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)!@I!b-  $!I$I$!AI$I$!A !I!8I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$H$!b\V\ ! I$I$E)$!bU! I$I$E)H$I$!I$I$!I$I$!VVWWII!-)I$I$E)aI$I$E)I$I$E)I$I$E)I$I$E)aI$I$d!d I$I$E)I$I$E)@$!I$I$E)I$I$E)I$I$E)I$I$d!d $C$@HWI$I$!`AI!XH+ /qP/ {w/fi/+ -qN@f+3))eJ@- 410DZ 44I$I$%4 DZfy@3h$I$!XVUU$!`!-I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d H$@$!!**  $!I$I$!V^^WI$I$!m}}I$I$!յ ! $!I !*I$I$d!d I$I$E)H$!(!I$I$E)I$I$d!d I$I$E)I$I$E)I$I$E)aI$I$E)I$I$d!d !@I$H$ AII!I$I$E)$@$!II%) L$H$IHTTTVItI`P%-yww7E`--/+,1 f--) 4I %y%544I$I$%44I$I$%44I$I$%?۶۶%ǹEP?۰mۖmDZE?4H$I$蹧4 DZE@@4 DZE44I$I$&41``DZ/M'p秱E1V\\\H$H$e)E) @!I$I$9I$I$9 1e) @!e)`@f1 I$I$9H$H$1"@!I$I$9I$I$9I$I$9E)!I$I$e)E)@$@$E)!zzz$8!UU "$IH!=IImX8$I0P@ tIqiP+.W %yX+  }. fi )r4E+ 1!irܴ *4,yn4 + 4$e)P4$I$DZe)@TUU e)E) @$@DE) 7I$I$e)E)?I$H$1"I$I$1" @!I$I$)(I$I$e)E)I$I$e)E)I$ $e)E)  `h$E)8I$I$1$2 e)!蠠I$I$$!!UWTTI$I$E)! I)(I)(4X4e)`X`I E)b 5 @!e)`IDe)55I$I$9I$I$@!  e)$!I$I$e)%)*H$@ @! $1"I$I$1"0e)E)pppI$H$E)!WW^\I$I$d!d ! E)! @$@$e)E)I$I$1 I$I$1 @ @ e)E)XpPb Ie)E)%5I$I$e)E)E)!@ E)!II1I$I$1 I$I$1 I$I$e)E)@ 1 kk&E)hX A$!IE) %I$I$e)E)* @-E)ap)IE)b %%H$@$e)%)I$I$e)E) **I$I$1"L&$Ce)E)VX`D@E)@ȐdIdE)bUe)%),E)@dB&DB0e)E)XPPbI$H$E)!UWV^I$I$E)a$@!E)! *+)I$I$)(I$I$e)E)/H$H$e)E)WWV\ò%۲mE)pIIE)%% I$I$1 @  )(II$1I$I$)(I$I$)(@$ )( Ie)E)%H&@$1E)V^ZZ 1I$I$e)E)//I$I$e)E)**I$I$e)E)I$I$e)E)?I$I$e)E)I$I$e)E)ꪨI$I$e)E)I$H$11  E)!H$@$E)!V^ZZI$I$E)a E)!+E)!H$@ )(II$1I$I$)(I$I$)(I$I$1 H$@$1 Ie)E)5 $E)` E) I$I$e) I$I$$!!*@!E)! I$I$e)E)*H&@B0e)E)TXP` I)(I$I$1 I$I$e)E)I$I$e)E)* @ e)E)X``I$I$1I$I$1H$@ E)!^^z`I$I$E)E)!*+I$I 1I$I$1)(@$I$E)TUTP)E) I$I$)(I$H$1 I1e)E)jꪠI$L$E)!I$I$e)! E)! /e)E)@ I$I$1)(I$I$1 HE) TI$I$1 I$I$e)E) *I$@$e)E)UV\X@ E)!ꪪ $1$H$E)$! E)! I$e)E)%5UI$I$e)E) )(I$I$1)(I$I$)(I$@$E)!I$I$E)$!**@ E)!X`I$I$E)a I$E)!%U I$E)$! I$I$1 1@$E)\E) I$I$)(I$I$)(I$I$)(I$@$1I$I$HE)UUUI$IHE)I$A%YHUU ɟM%aH- Wan{yX-+3})E_@fqWZ eQ_ ?ڈ$fYE)~Ub$p0E1A`I$I$  *I I%)߿ !E)+s<1jm;qf1-?y1A+ 9/9 mۈ;9 %)%) m۶m:1 аcۧ9b9!>mZ4ڦ1b yO59!? m8mۧ9!s Ҏm9 ? c؇Iۦ9b#ߖI$)%UU@qՖt%I"%Fmۦlq ɪ*\M۶m*ҦM II *cMٶ}J*e]NJRam׶cï*ϼhXhnNj\O   emUnڶ k?m}Vmۦ kߎe`)QJڸitvl ?;I'A&.U]QYZe H*4Pٶm ҩ*I I$-UEUUex۶.k_tm:hz~oUUQ`︆kNJ=۶ ضm ɪ&p'$Ck)jm@kڪR!Ar`I )*Zhݺ.J}O 4M۶˶m ʪʦhy~.kUWUQ%I$N$v=ۖ؆1I N$f1!EWum׶еE)b* fYE1+--- yfa+/--ES4E[yq 9XqfYxxxh 9X5fQ!xxxx?1 9+oEI?-_%Y QJҪ&HmҖ ɪ:BPd !I ҺkmS-ڶk7tkڪcU۶7JڢdWm϶mN*/Nb&I$.W[U_۶lnJڪ⯸t۶m kF0`mٺh-Jڿk嚶-[JڪWm, )ҪJʵWF7mێ)ғn1$I$ 2.h$I"L$\Ux$O$E)\UWUö۶mE)KӶm1fH$I$e1%)ٶmذ-E)b@q۶f1* h$ID9E)XUUmڶ1 t۶mض-%)@ mvئ9 ۶m1AB?Vlf1A*mËf1϶ ۶e71?oI%$f1!UPiUIӢm$%)v1$f1 $A$ !0@I$IE1 UUU5S0eI - &M$EI!`XVUH!bT#I$!U+" n1+vgwv4,O IW4H'ET\44I@E1!ۊmzꨀ)cm9hI$K"$f!UUTP $!H$I$!II$!* H$I$!I $!/ I $!! @$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!0I$I$$!!@I$I$!!UU4 H$$!!H$I$e)  @$E)!I$@!bV\ !b I$I$E)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)@$!bP@I !b@$H$!pX^I$I$$!!I !5  !@ ! 5I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d @$I$!I$I$I$I$!I !+ !I$I$E)aI$I$d!d I$I$e)I$I$e)I$I$e)I$I$E)I$I$E)@$H$!bp\\pI$I$b  I$I$!A ! I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d I$I$E) !I$I$!A$H$!I !** I$I$d!d I$I$d!d I$I$E)aI$I$d!d !I!/ I$I$d!d I$I$E)I$I$E)I$I$E)a@$H$!  ! I$I$%)a!I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d ! !@I$I$ bUV!@$H$!I$I$!I$I$!!I$I$E)a$H$!bXV!b I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$E)I$I$E)I$I$E)a@$H$!jjzZI$I$$!!I$I$!ՕI$I!*I$I$E)I$I$d!d I$I$E)@$!X!I$I$d!d I$I$d!d I$I$E)$!@P@I$I!bUUU I!5   !I$I$!I$I$!kI$I$$!! !) @$I$!b\WV ! I$I$E)aI$I$E)a$H$!b`X`I$!b5I$! 7 !I$I$E)a!I$I$E)I$I$E)I$IH!UUH!I PH* 1iP/+{w.e f`/+,qr E+ 3(yNT + 41ِ0DZ* 44I$I$%44I$I$%4@&M$!`XVVI$I$E)H$@ !apII!A// I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$E)I$I$d!d H$I$!z I! @$@$!I$I$!AI$I$sqpxI$I$!!@$@$!I !** I$I$d!d  !I$I!A $!I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)H$!A |! I$I$d!d @$@$! !** I$I$E)@$H$!1SI!555HIPH++ qW1iP--/ ySfi-/+ / 1Np --++4/ P DZ+***44I$I$&44I$I$&44I$I$&?[%mDZEPP4DZE44I$I$%4DZf@4! DZ44I$I$%43DZ3r'81\\pp@$@$1E) I@!I$I$9I$I$9I$I$1e)ꪪ @!I$I$9I$I$9I$I$9@$@$1E) @!I$I$9I$I$9I$I$9K$KeE)!0E)!` IH%)UaB H I$IPHIm XH .WqHW .W E`+ % {% %q* /r4 f 6)nYRȱK=//蹧U?$)B$DZE)@PU4H$I$DZE)TUUU@$@$@!e)@I% e)Օ&I$I$e)E)?H$I$e)E)I$I1"@!I$H$e)E)I$I$e)E) /I$I$e)E)E)!@I$M E)bUֺE)@$)(I$H$E)!WWV^I$I$E)!E)!I$I$)([m۰ E)!D e)I$I$@!e)E)@ ! Ie) &I$I$@!I$I$9I$I$9I$I$e)E)( e)E)II$1"I$I$1" e)%)H$@$E)!\\p\I$I$d!d  IE)! %5  e)E)I$I$1 I$I$1 e)E)BʊI$I$1I$I$1 I$I$1 I$I$e)E)H$H$11 I$I$1 I$I$e)E)??/I$I$1 H&@E)TXpI$I! IE)5/ e)E)jI$e)$!0E) I e)E)I$I$e)E)*I$A1"I$I1"@$@!ˆE)I$I$e)E) X$h5E)bp\X`1dAe)b H$@$E)!^^xxI$I$E)a E)!I$I$e)E)I$I$e)E)/@$ e)E)XPp`II$1H$E)^E) I$I$e)E)I$I$1)(I$I$)()(I$I$1[-1E){ki$H$E)bp\Xɐ E)b I$I$e)E)I$I$e)E)I$I$e)E)?I$I$e)E)I$I$1"I$I$1"@e)E)^I$I$)(I$I$1 dB2 2E)!zhI$I$E)aII$E)! E)  1 I$I$1)(I$I$)(I$I$1 %K$E)bp\X E)b h%@3`E)XpI)PE)%- L&@$E)!I$I$$!!! E)! //I$I$)(B$He)E)BI$H$1e)E)+- I$I$e)E)I$I$1 I$I$e)E) *I$H$e)E)UVTX )($C$ E)!I$I$E)!UUWV I$E)! I1I$H$1 1X lE)`@5E)`P)E) -@ )(I$I$E)$!*e)$!`$E)!I$I$e)I$I$e) E)!H$@ e)E)TXP`II$11 I$I$1 I$I$1 I$I$1 e)E)`I$I$1H$ E)! E)!믯 IE)$!I$I$E)$! e)E) 5 @ e)E)~XpI$I1 )(,h$E)x\E)a I$I$E)$!I I$E)! **H$@ E)!VXp`I$I$E)a@$E)! %H$@$1I$I$1L$`E)^\)E) I$I$1 I$I$1 I$I$)()(I$I&PE)HPHФItYP -wEX/# {w q+ +qr4f +&i E9@!"%H$E)`PTUI$I$1!I$E9E)%UI$`"E9W^xA$I$!;I$Ie1?6 e1 Nm̎mf1$ $1!UeP! s1E #1iJ?@$I$)jvl9$I*If1j mǰ9 A51!3avlf1 *I$N1$!$C IE)@ (9*$E)! $@2$A%9E!?I$%)UU%I|0%F$Y.0h_mvl*?pm7=8.kr\m=8*ҩr.k7eIdHJڧI$I$UYUkml[Jڪk}P-ۖJ" G]U;ۆe ɪJ$I-ɪ.khkjڨ }q?]UUZuڶmۢNJϱZ6nۢ *kUÆm[-*Ң:h_Uպ JҊ)"F@ɠ \m[2 )ҪhrE6m۶Pd$I ʚAu6#ɮNeo-NJ/Pt t=ږ[[M$L$)VTVT[f1!++$H I$)* I$CE) UU SfYE1---- p qfa A$ ǁa 9P5qfYh ZZfQ$!x 9oǶ f1cöce1O߫c ط JPEjiݖ *O,IEF Ү*Uj÷m Ҫcm۶NJ?C$I)I ɪ9&IdJ RFR Ҧ"(A%Cb j}~-]QEY`H$HJڪe$p$Y"Jڪ&J۰m۲l⪪ꮱm60eQ@ H$$!\Up$I$I!XUUU k;mߧ9!m)Z1:(ڵM۶E)! uiԶ1*mmf1( I$y$9!hڸmݶ1 9 |A@%)b$%)!** @L$9!Vu$!`mvle1bMvlf1?$)cض$1LL$%)b* II81?IIE1'qwN*fI+h$I$EA$!XVUUI$I$$!!I$I$e)I$I$e)&DI$!UU-0 m!1& s *4`" EX4)DZA-c]蹆?6 C#DZfz(,d3)9hI$J%f!UUTPI$!I$H$! I $!*+- E)!$H$E)$!I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$E)!H$I$$!! *I A$E)!I$I$$!!***I$I$$!!xx\I$I$E)I$I$d!d I$I$$!!I$I$e)I$I$e)I$I$e)H!I$I$E)a @$!pI$I$I$I!Uյ5!@$!p`II!b5/I$I$e)I$I$e)I$I$e)I$I$e)I$I$E) !@ $!I$I$!I$I$II!+ !@I$I!bU&I$I$E)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)aI$I$d!d @  !`I$I$I !% I$I$E)I$I$E)I$I$E) @$!bpX ! @$!! I$I$E)I$I$d!d I$I$E)@$H$!I$I$!I$I$E(C!I$I$d!d I$I$E)I$I$E)aI$I$d!d I$I$d!d @$I$!bx\\ !b I$I$E)I$I$E) !I$I!$@$!I$I$ ^Xh ! I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)H$I$!b\WV!@! I$I$E)H$I$!I$I$!I !?// I$I$E)I$I$E)I$@!bXh !I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)aI$I$E) @$!bpp I$!b -H$I$!^^WWI$I$$!!I !)I$I$E)I$I$E)I$I$d!d I$I$E)I$H !bVXh ! I$I$d!d I$I$E)I$I$E)I$I$d!d  !@ ! 7@$@$!I$I$bI$I$ I$I$!Օ!H! !I$I$E)aI$I$E)a@!j !I$!& @$!I !****I$I$E)I$I$E)I$I$E) H!I$IPH+kv`Pյ-{6EX+)yr %y+*1 LJ.%yVTT4/i  DZ* 44I$I$%44I$I$%4 4p'DZ!`\\I$I$E)I$I$E)I$I$d!d I$I$d!d  !*!I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)@!**I$I$d!d H$H$!xxzzI$I$?I$I$ II!I$I$E)H$I$!! I$I$E)I$I$E)I$I$E)I$I$E)aI$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)I$@!A !a I$I$d!d H$I$!! I$I$E)H$I$!I H5 I PH* yS1qP-//+" 1%y--/1%)u` )+ 41DZ 44I$I$%44I$I$&44I$I$&44I$I$&44I$I$&44I$I$&44I$I$%44I$I$&44I$I$&44I$I$%401p`@  1E)II$1"I$I$9I$I$9I$I$9I$H@!I$I$1E)I$I$9I$I$9 1E) @!I$I$9I$I$9I$I$1e) $He)UUU$I$HE)I$I$PHI IPH* mnWaP 6WEX+ ɝ{. fq )q4E 1!n4 4,n4 4$!P4$I$DZ%)@TUUH$@$e)E)TTXP Ie)E)% @!A$I$1"$@$I2e)E)@ )(I$Ie)E) I$I$1" @!H$@$e)E)I$I$e)E)/+/I$I$1"I$I$1"I$I$1"I$H$e)E)UWVT )(dB&d&E)!XXXxI$I$E)! E)! )(I$I$e)E)// @!&e)ap & e)b I$I$1"@!I$I$9I$I$9H$H$e)%) e)E) I@!H$H$1" "e)H$I$!b,׿I$I$d!d I$I$E)!UU$@$e)E) I$I$e)E)I$I$1 I$I$e)E) *H$H$e)E)W_W\e)E)I$I$e)E)* e)E)@lؖlE) )(I$I$1 I$I$1 I$I$e)E) E)!@@I$I$E)aII$E)!5I$I$e)E) I$I$e)E)I$I$e)E)I$I1"I$I$e)%) e)%) I$I$@!I$H$1"I$I$e)E)I$I$e)E) /+*۲mle)!@ Ie)%) **k5[E)!pI$I$E)aII$e)!e)E)%I$I$)(e)E)BI$I$1M$C;E)^)E) I$I$e)E)* H$@ e)E)W\\p )(I$I$1 I$I$)(؆m ,E) `JI$1 /[-ذlE)a` 0E) I$I$e)E)I$I$e)E) ***I$I$e)E)I$I$e)E) I$I$1"I$I$e)E)I$I$e)E)ꊂI$I$)(I$I$1 H$@ e)$!I$H$E)!WW^^I$I$E)$!E)!*+)I$I$1 H$@$1 I1I$I$)(I$I$)(X,E)a`ٶmlE)  e)E) %5I$I$e)E) E)!I$I$$!!I$I$$!!**@E)!II$e)E)+*d& e)E)\Xp e)E)-55I$I$1"I$I$e)E)I$I$1 @ e)E)PbBI$I$1H$@ )(H$@ E)!^XX`! E)!*+))@$ 1I$I$1)(h4 E)hI]%E)b+bPIE)b %I$H$E)! Ie)$! **I$I$e)E)訨I$H&E) I$I$$!! Ie)!/?A$I$e)E)I$H$e)E)UWV\ )(I$I$1 I$I$1 I$I$1 I$I$e)E) **H$ e)E)TXp@I$I$1I$H$E)!E)$!I$I$1I$I$E)$!*e)E)`  )(I$I$)(K&E)\x E) @$E)!I$I$E)$!I$I$E)$! *I$H$E)!UW\XI$I$E)a E)! %I$I$1I$I$1)(I$I$1 I$I$1 I$I$)($H$HE)I$I$PH !AXH/+w%yP+wf`ok-ɔO0%q%% 1$I E)@-@$I$E)PTUU&E)b`X$E) I$I$1I$%9E)UUM&X$1$I$1b/IM&E)߻>$I$ A@0 m۰f1!WUTU A2 %)&jmڵmѶE) ?1 -؎-E)OAimdf1؎f1?9 ?m[E:f1z!Id1A  E)!@ E!IE) 9*vClۆ1! vlöuۆ1*-Ҷm۶e1 ʪI$J$!5UU4A) դ}' UV+R I I Ҩh?O*߱möq.%jP)H[ ҍ_+.\.Jڴc MI1J檢bzm5ڶDY۶.ɲcIdHJڢh$I IFJڪ܅II$UTUUD4S I-nʨ=H.M ɊjઋmiIkk$I$ Jڪڪr@4 $Iښ_d($HJҚڕh&I0$HJګbhmh߮ j;# &Mj*`$H*ҮZm:J{Pزm0d h*H$K$)TTT\c;iE)j*"m۶E%) !b 0  fQ$!+/-- qfY )) ǁa Z5Zyfazxxx #:bfYE1xxxxz1lgێ]f1<B!QWUUMDI!wk}A$I0QUUe4$I$.6h[_ۢJڷh,ںjmVaٶmJڪɓ!I&.uIUYkaڵ?NJ?RѶ}[ 2R۶m0l)Ҫ&$IH'8X8I$k%)`WUcH$I'JE)TUUUnҦ]1 I$ 9E)UUEM۶m[1 ݟ9! N9!'-ܦm۶f1ʚ1mۦ9!E)! cہ9 mbç9 cmv|ۦ9 ?cce11آaf1bk*:<1s ?'9! @ ?#9O$I2D$E)akI$I$ hjI$If1?Iĉe9/ 1aeI!-bXh$I$EI$!XVUUI$I$e)I$I$$!!I$I$e)I$I$e)I$I$e)DI$f!UU+ ٔp)1"Mw*4-@J&DZ 43@ DZ 4%@$EyPPP-Иh Ey(㢱h9hI$J%E!UUTPdB&$I$!z $!- $H$e)I$I$e)I$I$e)I$I$e)I$I$e)I$@$$! I$I$$!! **I E)!H$I$E)!I $E)!H$I$$!! I$A$$!!pI$I$E)I$I$d!d I$I$e)I$I$$!!I$I$e)I$I$e)I$I$e)I$I$E) !H$I$!XTWUI$I$$!!I$I$!b jZI!b %I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d @$ !`I$I$b5?I$I$$!BI$I$! @$!p !b I$I$E)aI$I$e)I$I$e)I$I$e)I$I$e)I$I$E)I$I$E)I$I$d!d @$H$!`pX\I$I$UU! I$I$d!d I$I$E)I$I$$!!H$!b\p !b H$! ! I$I$d!d I$I$E) !H$I$!A$I$!I$I$ @I$!b&UI$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d H$!bx$!I$I$E)I$I$E)a@$@$!I !H$I$!!I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)@!0I$I$d!d $! $!I$I$$!BI$I$$!B ! I$I$E)aI$I$E)I$I$E)I$I$E)aI$I$d!d I$I$E)I$I$E)I$I$E)aI$I$E)I$I$E)!@I$$!I$I$$!!I$I$$!!!+* I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d @$!`I$I!b5 H$H$!I$I$!I$I$I$I!-I$I$E)aI$I$E)I$I$E)I$I$E)aI$I$E)aI$I$d!d I$I$d!d I$I$d!d @ !! I$I$E)I$I$E)IH!I$I$PHIvmXH+ /%X/% ywT $q/ 11r f+ 3 ȋ$EyT43DZ44I$I$%4<DZ)pp H$I$Ei!TUUUI$I$E)I$I$E)I$I$d!d I$I$E)@$@$!`X` I! 5% I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$E)a !I$I$!^~^^I$I$b@p`I$I$!bյ  !****  !I$I$E)aI$I$E)I$I$E)I$I$E)@$!X! * I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E) !II!I$I$E) @$!II!*!I HE!  !XH//yW1q%X--(1NE-- ;){wq蹧=43DZ44I$I$&44I$I$&?4I$I蹧44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%?ۂ۸mDZ@#I$O$f1UUUTI$I$1"I$I$1E)I$I$9I$I$9I$I$1e)I$I$1E)I$I$9I$I$9@51! e)! /I$I$9I$I$9 @&He)UH$I$Hf1I$IPH*Im XH* wi%qP+.WE` % { q* /r4 f 3&qr4 *4/iJ DZ? )R$DZ!@PU?H$I$!TUUU E)!@$e)E)RQcI e)E)9I@!dB2$ e)E)P@I! e)E)II$e)E) **@ @ @! I@!@ e)E) E)I$E) ?I$I$e)E)I$I$1"H$@$e)E)TTPP Ie)E)X%K$E)\W!  IE)!%5I$I$)(I$I$)(e)%)H$e)\p e)% H$H$@! @!I$I$@!I$I$9@$@ e)%) I1"I$I$@!@$@!II@! He) I$I$E)!UUWVI$I$d!d vive)! +))H$@$e)%),X$E)E)@$e)E)\\x e)E)5=?I$I$e)E) $ e)pI$I$bU0 E)I$I$1 I$I$1 I$I$e)E)I$I$1 I$L$E)!UWV\I$I$E)aE)! II$1"I$I$1" @!H$@$e)%) I$e)E) *I$I$@!H$@$1" $e)E)I$I$e)E) *I$I$e)E)I$I$e)E)* 20e)$!I$H$E)!UVVVI$I$E)a$@!E)! +) E)!E)H$H$e)E)WTT\ e)E)I$I$1 I$I$e)E) * e)E)ppII$1I$I$e)E)I$I$1 @ E)b`I$ E)bI$Il%)5? I)(`%E) `XP)E)!I$I$e)E)I$I$e)E)//?I$I$1"I$I$e)E)I$I$1"$I$&e)E)|X)(  E)$!H$H$E)!^z~I$I$E) IE)!E)! 1 I$I$11 E) I$I$1 1 II$1I$A$e)E)E) I$H$E)!I$I$$!! !@!E)! +/I$I$1 A$Ie)E) I$I$e)E)I$I$e)E)e)!hѤIҤE)(UE)!ۆmX$E)TH$E)!ۺ-ۂmE)b@I$I$ bU$@!AE)! I$1I$H$1 1I$I$)(`E)@ E)1 I$I$1$!e)E) %@ 4@ e)bp I!b %%I$I$$!!**E)!@ e)E)XpI$I$11 @$I$E)!\W\@!@E)! I$I$1 ȐdE)bI$H$1@ E)! I$E)! E)$!@&E) z I$e)E)5UUI$I$e)E)I$I$)(I$I$)( X$E)b@PT0 E)bH$ )(I$I$1dB2HE)!p I$I$E)!UUW\I$I$E)a E)! 5I$I$1 I$1)(I$I$1  @$HE)UI$I$!`AI!XH+ ɛwqP/+ywP fi/ ,qRT E++ 1  %)@1@$I$PTUUE)H$E)TP@ I$E)b% \E)I$I$1II$1E)%UUL0$1p I&)$%)I$IE)*V$ %)ʪmhE)a*vhE)b:H0IE)!U%)v1=b۶mE)Cm6ۆ1Aꨫ '9 _I%p$f1! %)b@ I I$9%)eEUUmȷc9!}moۧ9b]iѶf1) tm;m[9 ? }ہ}ۆ1ju۶1:c1lf1 ⚏II&1E)UU] $I$J%)UUUP@I$%)UE9Pۘ ۰m Ҫ)*Rm6n*_mۦ-j?r ۱mNkM$ ɪ?_m۶NJC=k jڀ@`-ҕn6JJkcnJ7}?NUUwmޢ횶_tm-k;ߨ_Eڶk[*ҒeX`߷-j_xH#S#ibjzI $oUEU\Kö.Jڷ\!99*ҩH۶.6lɪnWl$ɑ Ҟ>p%R"$!XPPPa/xe1&J& wy1Am؎mۆ1 N/RI )++ OOqfY-----)yq 1͆yfax 5X5fYE9xxxpi۶k %)!A@e1Amٖl FۺlۆɪZ8IR$I)Ҭ*mmjc>eJڢ[m=ۮ ; j|_@ *  $I$1q9 󆹪zІs$1xUB$I$k!^UUBE)bC m#6m[9bJ*m۾adž1.mێmئ9b 1ڳmۧ9 ѧ9!/ ;9!meQ1*vl۰mf1! ߶ 9 m۶s9 ڰm;1j@0%)khڶE)?f1bꫮ1!ڍq̴ f1A?H1$!I2E)b$I$!I$A$  I I$ b*Iyg eA- ԡB$eI$!+`VH$I$E9$!TUUUI$I$e)I$I$e)I$I$$!!I$I$e)I$I$e)I$I$e)I$I$e)I$I$f!UUU)Iɖd)1 PN/ *4,VIw;=+4(@04(!`1 mzꨠ%#Шmf9`I$J%E$!UUTP$H$e)I$Ie)I$e)I1I$H e)I$I$e)I$I$e)$IL$$!V 2d$E)hZV$I$$!bUU I!E)I$  E)!jI$I$$!!\VUUI$I$E) @ !b@P@I!bI$I$e)I$I$e)I$I$e)I$I$E)I$I$E)$H$!`P\VI$I$$!!I$I$I !j !I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)I$I$e)@$H$!zI$I$I$I$$!!I !)+ H$ !bXpI!b5 I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)aI$I$d!d  !@I$I$TWUUI !5% I$I$d!d I$I$E)I$I$d!d I$I$$!!I$I$e)I$I$e)I$I$d!d I$I$E)I$I$d!d I$I$E)$@$!I$I$!I$I!!I!I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)aH$I$! @$!I !**I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d !I$I$d!d I$I$E)@$@$!b`X`I$I$bAI$I$b$UI$I!/-I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$E)I$I$E)!@I$I$!b<$eI$!p_UI$I$e)I$I$e)I$I$e)I$I$$!!I$I$$!!I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!*I$IE)!&M $$!U/If *6,f9ȱ41öaٖlDZ3-[`9 I(`ȱ%y(chf9hI$J%E$!UUTP 1I$I$1I$I$1 $1$$!pI!b/5I$@!bUTaB2$AE)Yj*I$!bU!$L$$!bx^I!E)I$I$E)I$I$$!!*I$I$$!!Z !bI$I$e)I$I$e)I$I$d!d I$I$E) @$!pXI$I$5I$I!UI!/+I$I$E)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d  @$!I$I$!I$I$I$I!** ! @$H$!b`Xx I!b 5- I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)aI$I$E)I$I$E)@$H$!pX\VI$I!Uյ!I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d I$I$d!d  !H$I$!I$I$ I !** I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$E) @$!I$I !H$I$!!I$I$E)I$I$d!d I$I$E)I$I$d!d H$!b0W!$@ !b`I$I!b&I$I$d!d I$I$E) !I$I$$!BI$I$b$ !/ I$I$E)aI$I$E)I$I$d!d I$I$E)aI$I$d!d I$I$E)I$I$d!d I$I$E)I$I$E)H!4I$I$E) !H$I$!^WWUI$I$$!! !+++I$I$E)I$I$E)I$I$d!d I$I$E)I$I$d!d H$@!bX`I !b !(I$I$d!d I$I$d!d I$I$E)I$I$E)a$@$!jI$I$b0UI$I$I$I!** ! I$I$E)aI$I$E)I$I$E)aI$I$E)aI$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$E)I$IH!UUH!I PH* 1iP/+{w.e f`/+,qr E+ 3(yNT + 41ِ0DZ* 44I$I$%44I$I$%4'N$ `XVW  !++ I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$E)@$H$!I$I$$!!I$I$$!!I$I!I$I$E)H$H$! !* I$I$E)I$I$d!d I$I$E)I$I$E)a!`I!5I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d @$H$!j ! I$I$E)aH$H$!Ib$I-I$IPH/tqiP- yS7qfi---/-p`f) 4/ DZ44I$I$%44I$I$&44I$I$&4MDZEV44I$I$%44I$I$&44I$I$%44I$I$%44I$I$%44I$I$&44I$I$%43 DZ3P%P91PPPpN"'X If1a^aB1E)s`!@e)- I$I$1e)ꪪI$H1E)UWf1E)I$I$9I$I$9I$I$9[[$He)U5 `$I$HE9[m۰P8Rm4 X8* s. iP+-WE` % { q* 7}.Iȱf 3&qn4 4-1IR DZ 4 @$DZf1@PT4H$I$DZe)TUUUIҤXE)aֺ !C E)!먨I$I$E)I$I$$!!% Ie)$! **I$I$e)E) e)E) I$I$@!e)E) @!I$I$e)E)(@!I$I$@!I$I$9H$H$e)%) e)E) I$@$1"II1" e)E)@@I$I$1 )(H$H$E)!VVVVI$I$E)a!E)! @$@e)E)\\\ !Ae)E)%5-/I$I$@!I$I$@! 9M&@E)bVXID ae)b5%)I$I$9I$I$9I$H$1"@!I$I$@!@!I$I$9k&[5E)!p`@I$I$e)IIE)!5?$@$e)E) I$I$e)E)I$I$1 I$Ie)E) I$I$e)E)I$I$e)E) h4 e)bx1eK e)a I$H$e)E)I$Ie)E) /I$I$e)E)I$I$e)E)* (I$I$1 @0 E)!p`!II$E)!UI$I$e)E) A$I$1"II$e)E) Re)!@@I$I!b..P0e)!I$I$@!I@!H$@$e)%)I$I$e)E) **I$I$1"$@$@2e)E)@ 2 E)!``I$I$E)aII$E)!5$!e)E) -%E)!I$I$e)E)ƒ$H$)(h0E)hE)!I$I$e)E)I$I$e)E)e)E)/?7e)E)`@%E)a`P)E) - I1E)-?M&h1E)WV\\)(I$I$e)E)**I$I$e)E)* I$I$e)E) e)E) z@!@$I$1" Ie)E)I$I$e)E)I$I$e)E)* @ e)E)Pp@H$@ E)!^ZZjI$I$E) E)!)e)E)@ )(II$1 e)E)I$I$1 I$I$e)E) @ e)E)Zz` I$1 Ie)E)I$I$1 L$`&E)!I$I$e)m6E) jite))%A e)E)I$I$)( e)!I$IE)bֺ e)!I$I$1"H$@$e)E)WV\XI)($C$ E)!ꨨI$I$$!!UUVTII$E)!UII$E)$! I$H$1 I$1I$I$)(I$I$)(h5@ `E)xx-0E)-) I$H$1! e)E) ,ѐ :E)b`!I$I$$!!I&dB&!``6S E) I$H$e)E)UUWTC3E)`It`E)b%+XI$E)b VWE)I$I$e)E) *LB&Ce)E)VX`I$I$1I$I$1@E)!zE)$!I$I$1e)$! I$I$e)E)E)!I$I$)(I$I$1 H$H1I$I$1 I$1  E)!b !$IE)!5UUI!E)! I$I$HE)UUUI$I$HE)I$IPH* kniP/ .a=%yP/).R i) 14 !E)@1@$I$E)PTUUI$@ )(I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1 E)`I$E)/ I$I$1$C$A$1E))UIXE1I I&E)H$ $%)~~ $$e1mۦh4E)A@!b0iۥE4E)6۱c;f1bj6cږmÆ1oA$O9!וDB$IE)*Ҵm61A:jh۶hE)! %) @۶1 9 !I$ 1f1 {9bmӢm붆1j ?1˪ ~9 /mvZ!1*B 1i'I$1!/ ??A O`$IE)A $I$*%! UUU I$%)UU$I$(U?m.ɪkm[MJڪ*`]۶NJ=PH"H Ҧ\-Zmۦ)Ҋz UeUr6`; kc- j?Wжmۗm*ҠUeKnڢN*ϡkoVkڭ=?ramkڪ} l$.$)XpXTmDZme1?-mE)!`6aSeA'///N)RieI +--&a1yq Ȁ Ȇyi`P5PfieAxxxxĈE1I$H$f1!UUTUʱf1c۱e1Ab DI$ UU}I$!U0O$%9WU$I$%)VUUm۶fA ?1"j6߶1!  E)<@`H$ɐE)!,$HtHf1m۠cۆ1!pA!6lۆ1!Ӷuۢ1~mnݴf1* =9!m-ڴf1ꊦZkעf1(@E)!m[wm#f1*J ޟ1!)؊me1bfm;mf1 _LI%)(@!b q&f1/m;$M$E)aI$I$!A$i$$)N8E1/ ywN*eA! `B&I$EI$!p^UU$$!I$I$e)I$I$e)$$!`! I$I$$!!I$I$$!! I$I$e)I$I$e)I$I$$!!*I  $!!  H$E)!I$I$$!!XVWW"LI$f!U/0In1 ;(B鶱ȱ=/ ?蹧_P=-SV蹦?1 mzꨠ(chf$9hI$J%E$!UUTPI$I$1$1H$I$e)$C2$I$!@I!%)I$I$!! @$I$e)I$I$! *L$ C!Xx ! I$I$e)I$I$$!!*I$I$e)I$I$e)I$I$$!!I$I$d!d I$I$E)$!`H$I$!|I$I!*!  !I$I$d!d I$I$e)I$I$e)$!I$I$e)I$I$E)I$I$d!d  !H$I$!I$I$$!BI$I$b\X ! I$I$d!d !!I$I$e)I$I$e)I$I$e)I$I$E)I$I$E)aI$I$d!d  $!`hI$I$!AI!% $!h!I$I$d!d I$I$e)@$H!(I$I$e) ! I!*/*I$I$d!d I$I$d!d $H$!I$I$ I$I$E(C! I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d  !H$I$!  A$!II!I$I$E)aI$I$d!d I$I$E)I$I$d!d I$I$d!d I$@!bV !I$I$E) ! I$I$d!d I$I$E)@$@$!I$I$$!BI$I!?!I$I$E)a !I$I$E) !** I$I$d!d I$I$E)I$I$d!d I$I$E)aI$I$E)I$I$E)I$I$E) @$!jjzI$I$!AI$I$!յ!* I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I!I$I$d!d I$I$d!d I$I$E)I$I$E)aH$I$!zz~^I$I$ bW޺*I$I$II!/I$I$E)aI$I$E)I$I$E)I$I$E)I$I$E)aI$I$d!d I$I$d!d ! I$I$E)aI$I$E)I$I$E)$@H (I$IPH+kv`Pյ-{6EX+)yr %y+*1"iNݰ ++ 4/i  DZ* 4%X&DZEXXX4DZE4 *$I$JE)UUUkI<%) UuDII-ݭmܖ$!ՋRE)U)A DͶmHBɧkmNJ?9۶m-ꨝr6l;kedmj:`m۶eJڋmc۱a j=$I"%DI@Pex$I$J!\WUU1~I$I$! H$I$E)!TUUU6SgwE1a  R1SfieI----nvn6yfi c;@yei#6XieIxxxxb&`&eA!^^\X6E) 1?m6mڶE)蚪6vlE)mQ4iE)*⩩]emE)*m۶m9 @E)" ~mpl׆1mMee1 &m8m˧9!sm-1ꊭ 9 mѮN1*9 ۦ9!{ Gmۦ1 * af1!?i$ $1%)UEUI$I:e)-۶m%)BŖn[ۦE)[E6%)BI'I'B1Ak۶E)lm1II$$) / !8@ $ I I$!$I!/I9W fI Uխ+$eA$! pWh$I$EA$!XUUU $!@I$I!bUI$I$$!!I$I$e)H$@ $!XTP@  !b I$I$$!!I$I$$!!I$I$e)I$I$!! IE)!@$H$$!!@PTI$I$E)I$I$d!d I$I$d!d DI$f!UU, r$1 1%  +3-ېn3-[`1 mzꠠ(ch$AjI$J%E$!UUTPH$I$e)I$IE)!$H$$! I$IE)   H$E)!%)$!ꪫ$H$E)!jZ^VI$I$E)I$I$$!!+I$I$$!!* I$I$e)I$I$e)I$I$e)I$I$$!!x^I$I$E)a !@$I$!x\WUI$I$?I!- I$I$E)@$H$!bp\p I!b 5 I$I$e) !@I$I!bU8!I$I$d!d I$I$e)@$H$!I$I$I$I$$!BI!* I$I$e)I$I$E)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)aI$I$d!d I$I$E)H$I$!X^VWI$I!U5I$I$d!d H$H$!! I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d I$I$d!d $!I$I!I$H$!I !++ I$I$d!d I$I$d!d I$I$E)I$I$d!d H$!b<I$I$d!d I$I$d!d I$I$E)aI$I$d!d I$I$E)$@$!II!** H$I$! ! ! @$I$!bVU!I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E) !H$I$!I$I$$!bI !/// I$I$E)aI$I$E)@$H$!b@PTP I!b % H$I$!`XVX ! I$I$E)I$I$E)I$I$E)aI$I$E)H$!(I$I$E)aH$H$!Z^VVI$I$!AI !I$I$E)I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$E)  !I$I$ ^^WWI$I$I$I$?? !+ I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d  @ !`I$I$!&UI!*I$I$E)IH!LȄP8*IvmXH+ /%X/% ywT $q/ 11r f+ 4-1eR@ 43DZ44I$I$%4@$DZ`P H$I$EiTUUUII!/+I$I$E)I$I$E)I$I$d!d $!!I$I$E)I$I$d!d I$I$d!d I$I$d!d I$@!^ ! I$I$E) !I$I$E)aI$I$E) @$!pI$I$ I$I$OI$I$I$I$A. $!I$I$E)aI$I$E)I$I$E)aI$I$E)I$I$E)aI$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$d!d I$I$E)I$I$E)  !II!ꪪ! $!II!?.*A۵];HE)  !XH/+yW7%yX-//&1Np E--- 9%Wrȹ4100DZ 44I$I$%44I$I$%44I$I$%44I$I$%41$%?-mǹz*D- ضm44I$I$%44I$I$%?4I$ $蹧?4I$@$蹧44I$I$%?!#3;`ȹjd&$21e)I$I$@!I$I$9I$I$9@4 f1!xpIt-0e)!%/ ۶ $Pf1U-X$I$HEA I$APH ImXH* ɟ7G qP*.WE` % {% %q+ -yr0f*3&qn4 4" F@?$HR$e) PT4H$I$DZf1TUUUI$I$1E)I$I$91E)I$I$1 @  e)!H$@$$!!XpppI$I$E) E)!@$I$E)TUT0E)Be)E)@ E$IRE)I$I$@!@$@$e)%)IIe)E) *I$I$@!I$I$9 e)$!I$I$1 I$I$@!I$H$1"@! &`0e)E)|\Xp e)E)550 E)!`@@I$I$E)@$@ !bp\p ɐE)b % I$I$)(e)E)I$I$@!I$I$9H$@$@!R"! e)a`1`e)a I$I$9 1E)II$1"I$I$9I$I$9I$I$@!1E)^~I$L$E)!I$I$d!d ! E)! %@$ @!I$I$1"I$I$1"@$A e)E)I$I$e)E)??I$I$1"I@! e)E)HeE) TI$A$e)E)$e)%)e)E)* I$I$e)E)ꪂL&`&E)!\XXpI$I$E)a! E)! %I$I$e)E)@e)E)@e) @!II$e)E)I$I$@!I$I$9I$I$9I$H$e)%) e)%) IIe)`I@$e)% `&d2E)!XPp`I$I$E) IE)! %5A  e)E)I$I$1 ItE)a,I$1I$I$e)E) 4 E)!pɐdIE) %% @$@ e)E)^T\xe)E)I$I$1 I$I$e)E)H )( 1E)饥m$K&1E)UWW^ )(I$I$e)E)  I1"#IIE)@0ee) 0I$I$@! @$@!A$I$e)E)I$I$)(I$I$e)E)  @  e)$!H$H$$!bTUT!  E)!e)E) @e)E)XI$I$bTTTT E) I$I$1 I$I$e)E)@$ e)E)XX``II$e)E)UUH$@$e)E)I$I$1 $ &E)!H$I$e) E)!?,X,E)b@P@HIe)%I$I$)(I$I$e)E) I$I$e)E)ȐdE)a 7 I$1"L$d2e)E)TTPp I1$C E)$!ਠ$I$2E)!UWW^$I$E)!UUU$A$E)! *H$@ 1II$1I$I$e)E)I$I$1 I$I$e)E) **I$I$e)E)I$H$1 Ie)E)%H$@ e)E)I$`$E)!I$I$e) I$E)!/ R$e)a0@$@ e)E)_\\p I$1I$I$1 I$I$1 I$I$1 I$I$e)E)* :`!e)!@I$E),E)!I$I$1I$I$1I$I$1 I$e)E)5UU$Ie)E)I$I$1 I$I$1 I$I$1 I$I$1 @ )(I$I$1I$1I$`$E)!UVXpIH!I$I$PHImXH+ɛw%yP/ " ywT $q+-4 !E1@-@$I$E)PTUUI$I$1 I$I$1 I$I$1 I$I$e)E) MfE)VI$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1"C$A%9$!x?I$"BE1 i$I$%)SA $ a@ $I$!h1f1 IdHE)b I$HƧ9!UUT 9ħ9!m5u6le1bꛊ 9!Aݐ e)!H$H$1"A 1"II$1"I$H$e)E) e)E) p0Ie)bxIĒ!e)U lle)!II$e)E)/+**I$I$1"I$I$1"I$A 1"5E)`I$H$E)!UWVWI$I$E)@!E)! I$I$1"۲me)!@1ae))@$@ @! I1"e)!@H$I$$!b(׾X۵ `e)!e)E)+ @!E)8@$ e)E)I$H&E)!WT\XI$I$E)! E)! @$@$e)%) I$e)E) **@$e)E)XX`  e)E)5I$I$e)E)I$I$e)E) I$I$e)E)Ie)E)@%h$E)`X`) IE) % I$I$1 H$H$1a1E)멭E)! 4X$E)`P\) e)b %H$E)! @@E)!0e)%)I$I$@!LEe)a A$ e)E) $E)M$KE) YRl`E)sI E)I$I$E)! E)!+)X5@ `E) pxٖn0e) + e)E)55I$I$1 I$I$1 I$I$e)E) @$ e)E)XP`@ I$e)E)5UH$I e)E)I$I$1 L$`$E)!I„$@$!(!$AE)! +*I$I$1" e)E)I$I$e)E)IIe)E) @ @!I$I$1"I$I$1"L&C0e)E)TXp@ I$)(H$@ e)$!L&`0E)hI$I$ b&U@E)!*+)-@$1I$I$1e)E)I$I$1 I$I$e)E) **I$I$e)E)@$ )( @ E)`P` IdE)b?`0E)!I$I$$!!$!۰ ݖle)!H$@ e)E)@$I$1e)E) I$I$1"6h$e)hXV0E)  $1"d&e)E)^XpI$I$E)$!*I$I$1H$ E) I$I$1I$I$E)$!*@$BE)!ʪ@$I$$! 0 E)I$I$1 I$I$1 I$I$1 H$$HE)U H8I PH**  ɝwqP/{.e e`/ ) 0!1@)@$I$E)PTUUI$I$1 )(I$I$1 I$I$e)E)* I$I$e)E)IE)!U(I$I$1 I$I$e)E) *@ e)E)^@lؖ E)I$I$1I$I$1I$I$1I$I$1E)!ꪪ$I2`$E)xX E) -E)bHE)ܰE)!)B$I%1E)UUIB'M@E9I$I$$)I $E)bI $%)mK$E)Aj ! * #9vlcE)b*$$I2!! !??9 !$A$I2$)jz B!UE?9 I$N9%)UQWhۦme1 9ߏ?Aq$1%)Q]Uvخm1* \96gA I$I$1E)UU 9!ǿI$K$9E)UTVU?B$c$Ie1 j3۰؆1j ?9mvlۆ1!-Zq۶f1 ʪA$y(B q$a7AE)]U}9!> I$A89E)UUQu0%) pXm۶m%) a1b($Bf1vdH$E)j+!  $I2%)h(jkێe)b+& SfYE1+---qEQ $HHyEY 9ZqfYxxxh #:b6fQ!xxxx؎E)㦪iI$9!YUaێme)!UuvlE) ?1A*=A s9oso#mۧ9 Oc#1Ajݶam%) ۲ ۶uE) `*m۶E1 mvlf1!ɐ$f1 $I"1!?K 9 #9OI$A$1!UUQU?f1$$I $C%)Bmډ"1m>۱mE)?m۴-$%)b NN'E)AnI$I!j&I$I$%)Aq1EE1+ygNeI$!bR$I$EA$!@TUUI$I$e)I$I$e)I$I$e)$!I$I$b0$!I$I$e)I$I$e)I$I$$!!I$I$e)I$I$!!* IE)!$@$E)!z_I$I$$!!P\UUI$I$E)I$I$E)I$I$$!!W-I E)!I$I$1I$I$1H1I$I$1L$!a I$I$1%LI$f$!U- f*1)@S*1-; PMȱf~*1l3 9jI$J%E$!UUTP  @$E)!I$I$$!!I$I$$!!* I$I$e) $!@I$I$!b&5I$I$e)I  e)H$I$$!!`XVWI$I$E)a @$!`XI$I$I$I!U5 !I$I$$!!UUU/I$$!!%  @ $!`p@I!/ H$H $!X\ $! @$!pI$I!5  !@$H$!xZI$I$$!!I$I$?I !+ I$I$d!d I$H! !I$I$e)@$!p !b I$I$e)I$I$E)I$I$d!d I$I$d!d @$H$!I$I!II!* I$I$d!d I$I$E)I$I$e)@ !p!I$I$e)I$I$d!d I$I$$!!?/I$I$d!d I$I$d!d @$H$!I$I$ I$I!/I$I$E)I$I$E)I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$E)H$!b V! !H$I$!  A$!II!**I$I$E)I$I$d!d  $!`I$!.5I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E) @$!I$I$I$I$! ! I$I$E)aH$!|!I$I$E)aI$I$d!d I$I$E)I$I$d!d I$I$E)aI$I$E)I$I$E)I$I$E)$!I$I$!^VWUI$I$!A !)+ I$I$E)I$I$d!d H$!bT!+I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d @$I$!bhXV I$! I$I$I$I$I$I$  ! I$I$E)I$I$E) H$!b`T !  !** I$I$d!d I$I$E)I$I$E)!* @HI$IPH+kv`Pյ-{6EX+)yr %y+*1"iNݰ ++ 4/i  DZ* 44I$I$%44I$I$%40v$@`ZVI$I$b I$I$5II!/+I$I$E)I$I$d!d I$I$E)I$I$E)I$I$E)aI$I$E)I$I$d!d @$H$!apx I!b %5 I$I$E)I$I$d!d I$I$d!d I$I$d!d $H$!!   !I$I$!Z^^WI$I$$!!I$I$!յI !*  !I$I!$!`$H$!`X^I!A /I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$E)I$I$E)@! !I$I! ! !I!***in-ڢHE)5%%IIPH/++ ywyuiP--// 1S7fq--/+/ 8!EB4 $E 44I$I$%?4I$I$蹧44I$I$%43%41mK%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4/PDZǩ4/I$DZǩ?41%45觱1p`O$Ofe1UU5^%e)k$k5`P^V^x`B&R"IP8PXPђ)G`8i) k%E%q@+ !ߖnri++/m@Nǩ%*A v蹆 C(ɝ۶蹧4,4-@8DZ4$J$DZ1@PTT 1e)I$I$1e)A  1E)ꪪI$I$9I$A$1e)I$I$9 $I1e)dB2$21E)I$I$1 HB&dB2E)!$ %)!WV^^I$I$E)$!e)!/+X$I$E)b\W\ JE)A I$I$1e)I$I$@!@&e)  e)! e)%)  I$I$@!I$I$9@$ e)$! r$E) 0\We)  I$I$@!I$I$@!$C&`&e)E)|\XX$ e)E)%%`$@0E)!Ppp`I$I$E) IE)!%%5I$I$1 I$I$e)E)/I$I$9I$I$9I$I$9H$1E)@!(P$e)b@PTe)b@  1E)II$1" @ e)p!Ie) %I$I$f1e)@$@ 1%)I$I$E)!I$I$$!!ِlɖlE)!@$@ @!II$1"I$I$1"@$A e)E)ࠀI$I$e)E)***I$H$1"II$1" @!I$I$1 I$I$e)E)I$I$1" I1"h$h4E)bXVX!! 0E)b`I$I$E)! E)! %%5I$I$1"@!I$I$@! 9I$I$1"9He)!I$I$9I$H$e)%)@"$Ae)!N$LFe)U8 e) -ْ 9E)` ! %II$E)!5H$e)E) I$I$e)E)I e)E)I$I$e)E)I$I e)E)I$I$1" @!H$@$e)E)E)!@E) I$I$e)E)@ )($C& E)!hX`IdlE)!%5@ E)PD e) He)!  @$E)b@PT@ PE)bI$I$@!I$I$@!I$I$@!k$he)!\VXe)! I$I$e)E)[غE)I$I$E)II$E)!U e)$! I$I$e)E)$H$)( )(I$I$1 I$I$e)E) ***I$I$e)E)I$H$e)E)UUVT$!e)E) %I$I$e)E)@ E)!II$e)$H$E)!@E)!II$1"@$ e)E)I$I$e)E)?e)%)H$@$1"I$I$1"A$Ie)E)I$L2e)E)UWV|)($2 E)!``I$H!$!$IE)!U$@$E)$! *+I$I$1 I$e)E)5UI$I$e)E)I$I$1 I$I$e)E) *I$I$e)E)I$@$e)$!I$HE)bWUTID@E)bL$`$E)!$I$e) I$E)!/?@$e)!d e)E)I$I$e)E)?I$I$e)E)X,e)Xe)I$I$1" @!L$`0e)E)WVX`I$I$E)$!*I$I$E)!*H$A E) I$I$1I$I$1k3,۶mE)b@I$IE)bUI$I$)(I$I$)($HE)UUH$I$HE)IIPH** IqiP/7f`+&I0!f1@(B$I$!PTUU I$E)!UU E)! I$I$1 $)(I$I$e)E) * I$I$e)E)I$I$1 I$I$1 I$I$1 4E)a`I$IE)b55@$e)E)__I$I$1I$I$1I$I$1I$I$1@ E)pI&E)}[`  E)bI$I$1I$I$1I$I$1I$I$E9E)UUUCA$EE1`*I$-E1^I,I E)OI$I$ aI$I$%)ajj* y$97m۱f1 !@y QA ?qI$IJE)]UU=ۆ1 k8X9 s7mc߆1*h-ZMf1e1a۲E) 1!VeT 9?!Ʉ A%).iǶmE)*?  fQ!+--- 1SqfY )--yq P11qfapp`` #:bfYE1xxxx6b۶mۆ1Oc'mۆ1۱c1?m۠m۶%)I$I$B? ?9m;l;f1A6I$E)!?A!UWI$ $E)!?f1{O 9{ <1af -9imۢE)m۶-4E) mװ,E)JdBdH2$)aH2L!"@*L$H$E) UWTUI$I$ I$I$ b($ge9 UU- }w fAA*$8fA pI$I$ bU$!I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)$$! I$I$$!!I E)! $E)!~@$I$$!!PWUI$I$E)I$I$E)I$I$E)I$ E)!E)!I$I$1I$I$1I$I$1I$I$1L& $!T!@$! @$e)I$H!bUT!!%) $H$E)!z^WDI$f!UU+ ٔp$)1"Iw +1-+/ hzꨀ(ch1Z蠀I$J%E$!UUTP @$1I$I$e)I$I$e)I$Ie)$H$$! I$I$d!d H$H$!bXTXxI$I$b I$I$!UUյ ! I$I$d!d I $! @$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!I$I$d!d I$I$d!d  $!I$I$!Z^WWI$I$!AI$I$I$!a ?I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)I$I$d!d  !H$I$!I !// I$I$d!d I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$$!!$! $@$!`I$I$b55.I$I$!II!/@!`I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d @$I$!XV^@$I   I!%  !I$I$ I$I$E(CII!I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$E)I$I$!bTUV!I$I$E) $!I$I$ I$I$* ! I$I$E) !@I$I$bU(!)*I$I$d!d I$I$d!d I$I$d!d I$I$E) !I$!a(!$!H$I$!^^WWI$I$!AI !I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d @$!bpI! I$I$d!d I$I$d!d I$I$E) !I$I$!Z^VWI$I$/I$I$$!!I !+ I$I$E)aI$I$E)@!`I$I$E)I$I$E)aI$I$d!d I$I$E)I$I$E)I$@HWI$I$!`AI!XH+ /qP/ {w/fi/+ -qN@f+3))eJ@- 410DZ 44I$I$%4,!@,H$I$TTUUI$I$ I$I$! I$I!I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E) !I$I$!zzzI$I$!AI$I$!AI$I!I$I$E)H$I$! !** @ !`I !-I$I$E)I$I$E)I$I$d!d I$I$E)I$I$E)I$I$E)H$!A!I$I$E)I$I$d!d H$I$! !  I$I$E)aI$I$! !%)/ @$H$HE1 ivXH//+wS6EX5-/+)1` E--+3)JP 43DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4 DZE@@4 DZE44I$I$%44I$I$%44I$I$%44I$I$%41,`DZ1& ͧh&Zm`h=IEP }- fi*) E 1qr4 f*3)1YJ$ 41I DZ* 43DZ44I$I$%4 ۰#'E)hX/H$I$ǩE)TUUU#: e)``q601--I$@1e)1e)H$H$9 9I$I$9I$I$9$A 1e)I$H$1E) e)E)ʊ[%h&E)xXI! %5IIE)!! e)$! I$I$)( 1E)I$I$9I$I$@! 1E)I$I$1"I$I$9r: e)bX`1`f1b H$H$1"@!I$I$@!I$I$@!e)E)@LH E)!  )(I$I$E)!WWW^I$I$E) 6E) jE)! e)%) I$I$9`e)!I ! @e)E)I$I$9I$I$9I $1e)I$I$1E)I$I$9I$I$9I$I$@!I$I$1E)[5؂f1!zzI$I$e)I$I$$!!*ݐ e) H$@$@!I$I$1"II1"k&kE)! e)$! I$I$@!I$I$@!@$ e)%)I$I$e)E)** @!I$H$1"A$A 1" E)H$I$!bVUUI$I!b-aKdKE)'  @!I$I$@!I$I$99I$I$@!I$I$9I$I$9I$I$9I$H$1"@!H$H$1" e)%)L&`0E)!\Xx`I$I$E)$H2dB2!@`itIE))%5-I$I$1"@  e)E) e)E)? $e)$! II$1"@!I$H$e)E)I$I$e)E) /?I$I$1"I$I$e)E)I$I$1  I1E) %5M$H%1E)WT\xI$I$e)E)+///II1"@$@!p$,He)bx  e)a I$I$@!p8 e)ax1ae)a I$H$e)E)I$I$e)E)  LB$@e)$!dB2 E)!I$I$d!d I$I$E)!UUM$E)e)E)I$H$e)E)UWV\e)E) I$I$1"I$I$1"#:-e)xx-0E)) $@$e)E)/5I$H$e)%)@ e)$!@$H$E)!zI$!b&@!e)! I$I$1"@$e)E)I$I$1 e)%)I$I$@!I$I$@!I$I$@!LB e)E)WI$I$)(X$H$E)pXXp  ! - I$I$E)a0d$E)b`Z^m E)b II$1e)E)I$I$1 I$I$e)E)***I$I$1"@$e)E)\P``E)bxIXDe)/ `0e)!  E)$!I$HE)$!! e)! /@ e)E)$@$e)E)_^\ e)E) 5I$I$1"I$I$1"I$I$1"II$1"@e)E)`I$H$e)E)UUW\I$I$E)$! I$E)!*I$H$e)!I$I$1I$I$1I!e)E) %@$H$HE)I$IPHHP87%X+ .WN0!e%9 @"B$I$E)PTUUI$I$1C$@E)!*mۦhE)!UW\pI$I$E)aI$I$E)!?UUIE)! I$H$1I$)(1 I$I$e)E)I$I$e)E)****I$I$e)E)I$I$1 I$I$e)E)*I I$e)E) e)E)~I$@ 1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1`E)b E)!I$I$1 E)@됤I$e9*U`!&%1!X I$CE1LB$I„%)I$I$ Y$A$%)A IO<9?w 2I$%)aڶf1 yUUmv1:жbE)bʨ ?9Ͽ!!Av@m'f1b*I$I$%)!/fl۶ME)mDZaE))p1 mSqf1YYm톶E)(Böm˶%)b{m؆1Aj(Mݢm1j m~`ۆ1mݶE궆1B߿m;1!1 IdI$9%)UUTo?1!?} ϟAdHڴmE) veǮ 9f1b*$I2dH$!@62ۙS;e1Aʨh6ێ؆1/?1?Mvm$%).*NfI!---- NqeQ+/--yq Z#1цyfaxx 9X5fYE9xxxxI$ 4E) UUDta#L$9II$E)!*m E)b. xAbe1A!B %)˪!H$IE) 9 9mvl;E)jm۱mE)I$A$%) {Umm[%)+?f1!-ڶiE) UU!I& $E)ajH$I$1A$A$%)AbI$L$E)I$M E9 REA!կr$EA$! \U`$I$E9$!XUUUI$I$e)I$I$$!!$I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e) $!@@I$IE)bշ.  E)!$I$E)!WI$I$$!!XUUUI$I$E)I$I$E)I$I$$!!UU IE)!I$I$1I$I$1I$I$1I$I$1$@ 1 Ie)I$I$1$H$e)I$I$e)I E)!$H$E)!I$I$d!d I$I$$!! *I$I$f$!UUU)Iɖd$)/  攗*1,ؼmۖm說/ hz訠(c f$9`I$c1E$!UUX`I$I$e)I$Ie)$H$$! I$I$e) !@$I$!xXWUI$I$!UUՕ !- !'I$I$!  H$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!I$I$e) !H$I$!z^WI$I$!AI$I$!UUյI$ !kjjbI$I$ b.&I$I$E)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d I$I$d!d $@$!I$I!*!I$I$d!d I$I$E)I$I$$!!5I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d @$! I$I!"@$I$!I$I$ I$I$!! I$I$E)I$I$d!d I$I$E)I$I$e)I$I$d!d I$I$d!d I$I$d!d H$!|!!*$@$!I$I !I$I$E(C !I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$E)$!@! I$I$E)I$I$E)@$I$!I$I$II!//I$I$d!d !(I$I$E)H!I$I$E) !!)I$I$d!d I$I$E)a!I$H!( !h@$I$!bI$I$!AI$I$!UUյ!I$I$E)I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)@$@$!zI$I$$!!I$I$I$I$!I$I$!bWW!I$I$E)I$I$E)aI$I$E)aI$I$E)I$I$d!d I$I$E) $8!UUH I PH*  1iP/+{w.U f`/+,qr E+ 3(yNT + 41ِ0DZ* 4IIDZE4! DZ@4P%J$!PPTUI$I$!VXjI$I$b%I$I$* I !/+I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d @$H$!A I$ A/ A$!I$I$!^^^^I$I$b`X`I$I$A // II!+**   !I$I$E)a! I$I$E)I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$E)I$I$d!d !I$I$A ! %I$I$E)  !I$I$E)a! !I$I$  ڭ8$!55؆mɐ H8veW`H//+quS7fi--/-)` f+4-!R` DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4  EI 44I$I$%44I$I$%4@DZE@4 DZE44I$I$%44I$I$%44I$I$%44I$I$%43 DZ3,۳؎-hf~)^# fU& 4%y*4T1%1YN + 4+M 410DZ*44I$I$%44I$I$%4 DZ1@4P$I$DZf1PTUU@1E)*I$I$9'9#I$I$'9#I$I$'9#@$@ 9II$9H$@$1e)H$I 1e) 1e)L&`&1E)II1"b" E)p $ !I$I$$!!UUU IE)! * I$H$e)E) I1E)I$I$9I$I$9I$I$1E)I$H$1"1E)I$I$9I$I$9@$ 1E) @!I$I$9I$I$@!I$I$9I$H$e)E) e)E){OL$`$E)!\\XpI$I$E)@$@ !bPTP@dE)b*II$e)E)***I$I$9 8e)@I$I%)bU&ۖmۆm1E)I$I$9I$I$9I$I$9I$I$1E)I$I$@!I$I$9I$I$f1e)I$I$1e)  f1E)~zI$H$E)!V^VI$I$e)ِnɖlE)   1E)I$I$1"I$I$e)E)0 He)E)pII$e)E) **I$I$@!I$I$@!I$I$9I$H$e)E) e)E)@$@ @! I1" e)%)I@ E)W !  I$E)!%55e)%) I$I$@!I$I$@!I$I$9H$@!I$I$9I$I$9I$I$9@$@1E)4h$e)b`XV I$e)bU@![؊e)!`I$I$E)I$I$E)@ `JE)I$H$1" @!)ѐE)II e)!//I$H$1" 1"@$ e)E)I$I$)(I$I$e)E) e)E)I$I$1 I$I$1 @2,1E)pÃI$I$1 I$I$e)E)I$I1" e)%)I$I$e)E)**@!I$I$@!I$I$9@$ e)%)I$I$e)E)** @!  e)E)|I$H$E)!!@I$L@E)U. 0e) @e)E)X e)E)5I$I$e)E)I$I$1"@! 0 e)E)p@I$I1@$ e)E)I$I$e)E) H&E)!$I$!b $IE)!/+I$I$e)E) I$@!I$H$e)%) I$e)E)**I$I$@!I$I$@!I$I$@!@ e)E) @$e)E)_TE)I2$E)!]` !@$I$!bptE)&I$@$)( Ie)E)5I$I$e)E)I$I$e)E)I$I$e)E) **I$I$1"H$@ e)E)WV\p I$e)E)%Ue)%)m&he)!E)$!I$I$e)@D"e)@tI$E)b,U$@E)!e)E) 5I$I1" @ @!I$I$1" I$1" e)E)pI$H$1I$I$1 I$E)!***I$H$E)!I$I$E)$!*I$I$HE)I$I$PH !AXH/+w%yP+.WN@!E$9* BB$I$fe)PTUU@$E)!TI$@ e)E)UTPBI$I$1B$@E)!I$H$E)!UUTpI$I$E)I$I$E)!5I!E)! ?I$H$1 I$e)E)%UU6 E)@I$E)UI$I$e)E)I$I$e)E)I$I$e)E)**I$I$1  I$e)E) *I$I e)E)I$e)E)U_|I$I$1I$I$1I$I$E)! I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1IE),&E)b`X` 9%[S`mѶE9%!z?a$LE9[~I$ɂ-E1I$H$$)I$$%)b 8u$E)Ah$A$1qlIl7e1? ?9 UUEY dE)bN ;vb9E)mhE)j(!mƎie) ۷E۶h$E)hmvlE)!bI$ $B?f1IDI$f1!>??f1j ?9? 9mSL 1  $%)!j ?9!7u Aev$f1!?4öME) .m'mf1^m۞k41 qYiE)b'mf1 zOe1!*vI$f1/I$I$ A)q PeA+/'' NieQ --- $yEYV -yfah` X_]faE9x_JJE1I$I$!I$I0%) UUUdq %E)A*J I$!!I&E) ! ! ! ?9|?1I$aE)!UQ '9? $1~v$I f1 $I$$)I$H$!Mi%) *qq eA ]W reI!խX8cEA$!PUUH$I$EA$!TUUUI$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I E)! @$E)!~@$I$$!!xWUI$I$E)I$I$E)I$I$E)I$IE)!U E)!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1 1$I$e)I$I$e)I E)!@$I$E)!UUI$I$$!!I$I$d!d $I$E)*&`$%)T$!&Mɖ$f$!U/If */)ꪫ/ i~&{?P^|I$"%$)UV`$H$E)!I$I$$!!I$I$$!!*@$I$$!pXVWI$I$UU?I!% $!bI$I!// $H$e)I$I$e)I$I$e)I$I$e)I$I$$! I$I$$!!I$I$$!! !@$I$!z^I$I$!AI$I$5I$ !+ @ !`I !b5I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)$@$!p\ !b 5I$I$d!d I$I$d!d H$@!* ! I$I$d!d @$!\!I$I$e)I$I$e)I$I$e)I$I$e)$H$!bTU ! I$I!bVUV$!I$I$!I$I$ I !?/ I$I$d!d I$I$d!d I$I$E)I$I$d!d $!aI$!b5I$I$d!d I$I$E)I$I$E)I$I$E) !H$I$!$@$!I !I$I$E)aI$I$d!d I$I$d!d I$I$e)I$I$e)$!b@P !bI$I$E)@$@ !`X`I ! = I$I$E) @$!I$I$I$I$ ! I$I$E)I$I$ bTUT!bI$I$E)I$I$d!d @$@$!`PPTI$I!b%%%I$I$E)I$I$E)I$I$E)I$I$E)@ !@I$I$!UնI$I$!AI$I$b@PT ! @$!bp\ !b %I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)H$I$!z~^^I$I$$!!I$I$I !++H!I$I$E)I$I$E)I$I$E)I$I$E)aI$I$E)I$I$E)I$IH!UUUdBH I$IPH*kniP//EX++)yyw %- 1"iNݰ++ 4/i  DZ* 4/6DZǩ4ж:DZfz40b$!``XV$@$!I$I$!~^^_I$I$! I$I$!!+ I$I$E)!I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$@!VXI$I!AA$H$!I$I$!AI$I$aI$I$ -+** ! @$@$!II!*I$I$E)I$I$E)I$I$d!d I$I$E)aI$I$E)I$I$E)I$I$E)I$I$d!d I$I$E)aH$!bX` ! I$I$E)@$@$!II!*I$I$E)a$@$!II!??/$C HHE)  P8 N6eq@/+! ySf$q--/ 1")N)++ 41ɐ DZ** 4 =DZ%ix4DZE4$K$DZETVV44I$I$%44I$I$%4+ DZ@4Id$! %%541m[$DZ31I$41ٖdDZ 43DZ44I$I$%43 %4DZE44I$I$%44I$I$%41X-`DZ3,l1+Nvת3KEyV4&E 4+ DZ44I$I$%44I$I$%44I$I$%4@$H$DZ1PPTUI$I$'9#I$I$'9#H$H$1E) I9I$I$'9#I$I$'9# 1e)I$I$9@ 1e) 1e) 1e)@0 1E)I$I$1" 8e)` ɐI$!b I$I$E)!!E)!+)@$A$e)E)ࢢII$e)E)/+I$I$9I$I$9I$I$9H$@$1E) 1E)I$I$9I$I$9I$I$1E)ꪪ 'e)Xe)I$I$@! e)$!FL$E)0TUE)@0E)!p`I$I$E)I$I$E)!UUH$KeE)\_^2E)e)$!e)!@`f1 % I$I 9I$I$9I$I$9I$I$9I$I$1E)ꪪI$I$@!I$I$f1e)I$I$f1e)ꪪI$I$9 1E)`&`0E)!I$I$$!! IE)!/??1E)I$@@!I$@e)E)0e)E)I$I$e)E)e)%)DH$e)b0We)H$@$e)%) Ie)%) **@!I$I$1"$e)!-vE)!Š+I$I$$!!UUVTI$I$d!d  ِ e)!I$I$@!I$I$@!I$I$9@@!I$I$@!X1!*I$I$9I$I$1E)ꪪr"9Ie)bX`I$R$e)bUU e)b ,e)!@H$I$$!!\|^_I$I$E)! E)! %%%@$ e)E)II$1"H$J"E)b\WTKDIE)b H$I$1" Xe)?I$I$@!I$H$e)E)I$Ie)E)?I$I$1"H$@$e)E)I$I$e)E)) Id1E) %M$h&1E)I$I$e)E) Ie)E) I$I$@!H$@$@! I@!I$I$9H$e)XVe) I$H$e)%) e)%)  e)%)d2 E)!I$I$e)I$I$E)!5U$@$e)! *+I$I1"۶mۊ5E)!.E) I$e) 7II$1"I$I$@!I$H$e)E) I$e)E) ??I$@$1",`E)@I$I%)bU$E)$!IE)! *I$I$1"@ e)%)I$I$e)E) e)E) I$I$@!I$I$@!I$I$@! e)@ːdIE)bU@ )(`2E)hI$I !bUUI$I!U&@E)!ۆm˖$E)a DIE) 7 4E)`I$E)I$I$1"I$I$e)E)I$@ e)E)UU\x$@ e)E) 5e)E)@M$M6e)!AE)!I$I$1IX@e)b.d& e)E)_PI)(@$I$e)E)   @!I$I1"I$@$1"I$@!d2Ie)E)\pI$I$1۰-[$E)xPɐtE)b -ۆm؆dHE)U)I$I$!`AI!XH+ ɛwqP/+vr)E$9* BB$I$fe)PTUUI$I$e)E)I@E) UTe)!H$e)E)W\pI$I$1B$@E)!I$`0E)!I$I$d!d I$I$d!d  E)! I$@ )(I$I$1I E) 4E)`I$E) 5I$I$e)E)I$I$1 h$E)(I$I$e)E)I$ $e)E)@e)E)_I$H$E)!I$I$E)!*E)!*I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E9E)UUUXtI$EAE)Uv5me9z ۲HE1MI$%);I$L$E)I$I$!j&I$I!*!$`$%)I$ @ I2$E)a*xe1A.%)I$F$IJ!UUUköm;f1Ne)b*mӶh۶E)ja/8e1A+ʪj !;f1+{vce)+ I$$1!UtW@$) 9m 4m6%)@I$L$E)!?I$I$$)!$I$IE)*!0mӶkѶ%) j<]۰c;f1| y$I9/ M$I$9?I$'E):k %8E)biɐ PeA//'%ieI)--- {m0yEY^ d#6b yi`XՆiEA_xK$J$e9H$I$ A I(H&E)Ap I$!bJF$I$BAH$ $1I$I$ a@1$I$f1mI$E)A@I$ $I @$I$  I$IE)A+"I$I$!`I$I$ +Iĉ E1 eA [NeA$!_$I$EA$!_UUI$I$1I$I$11H$1I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$IE)!I E)!@$I$$!!xWI$I$$!!\UUUI$I$E)I$I$E)aI$I$!!UUIE)!I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1 E)!j$$!?@$I$e)I$IE)! $E)!@$I$E)!zI$I$d!d I$I$$!!?$I2$IE)jI$I!bUI$@!bWT $!b I$I$e)"LI$f$!U,0N$!6&d۲nDZ-/#ļ9*m(3 %y~M&[E$)VZh I$I$q$!UUUT$I$$!I$I!UW/I$!I$I$$!!I$I$!!* $1I$I$e)$! I$I$e)I$I$e)I$I$$!!*I$I$$!!I$I$$!!hx$I$!jzI$I$\WUUI$I$!AI$I! !I$I$d!d I$I$$!!UU5I$I$$!! !@$!bI$!b I$I$d!d @ !p !b I$I$d!d I$I$$!!W_~I$I$E)I$I$d!d I$I$d!d I$@!W^ !  !@H$I$!b,U!I$I$d!d H$!T!I$I$d!d @$I$!I$I$$!BI$I!?$!pI!I$I$d!d I$I$E)I$I$e)!@I!b5I$I$d!d I$I$E)@$I$!bXVX ! @$H$!I$I$!I$I$!! *I$I$d!d I$I$d!d I$I$E)I$I$e)I$I$e)!b@ !bI$I$d!d I$I$d!d I$I$E)I$I$E)H$I$!I$I$II!?/I$I$d!d I$I$E)@!bI$I$E)I$I$E) !@@$I$!PTU ! I$I$E)I$I$d!d I$I$E)I$I$E)$H$!jI$I$!AI$I$UUI$!Zj !@ !a !a I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E) @$!I$I$ VVWUI$I$$!!I$I$ Օ ! $@$!b@P` I!b %%I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)IH!I$IPH6i`H/7EX+# yyS %y- - @'F ^3 @LbfV3$mDZfV,hҶm۶fX!%!`PI$I$E)H$H$!I$I$I$I$** I$I!I$I$E)$@ !`I$I$ A.?!I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d $@$! I!*** !I$I$!zz^I$I$!AI$I$$!!I$I!I$I$E)H$H$! !* I$I$E)I$I$E)I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$E)I$I$E)I$I$E)H$H$! !* I$I$E)a@$H$!  E)''/ $@$HE)  !XH/+yww/%yX-//&1uS` E--- 1() P+ 4102DZ 4HDZEyp40@DZE4HHDZET41%44I$I$%4 ,@%%1@`PɑI$ !/ $If1 H'Id9? $I$%)I$ $$)bI$ $!ꊮ &I$E)I$%)bjI6aE9߿  eA!+N$EA$!^Up$I$EA$!|WUUI$I$1I$I$1I$I$1I$I$1I$I$1I$I$1@ 1I$H$e)I$I$e)$$!$! I$I$e)I$I$e)I$Ie)IE)! I2%)!j_ ɄI$$!(W!I$I$E)I$I$$!!UU=I$IE)!UE)!I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1$`&%)xxII!*/- I$IE)!$E)!H$I$$!!I$I$$!!++I$I$$!! I  E)!յ$I$E)!I$I$$!! I$e)$H$!b\\ $! I$I$$!!& I$$!UU40 $1%/(Xn)Gȩ-"Zx+C E~l26 F ZhI$I%qUUUP $!I$I$e)I$Ie)  @$e)I$I$e) $!bI$I!bU&+A$I$$!!I$I$$!!I$I$!!**   @$$!!` @$!jI$I$I$I$b )I$I$!յ! I$I$d!d ! I$I$$!!/+I$I$$!!@$H$!aI$I!-I!b&I$I$E)I$I$d!d I$I$d!d I$I$$!!/ I$I$$!!I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$$!!I$I$e)I !!I$I$d!d I$I$$!!I$I$d!d  @$!I$I$b I$I$ ꪪI!/ @ !`I!% I$I$E)I$!b V!I$I$e)I$I$e)I$I$E)I$I$E)H !h !I$I$ I$I$!I ! I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$d!d I$I$E) $!I$I$$!BI$I$ ! I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d !I!b&I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$ I$I$ II!I$I$E)aI$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E) @$!pXH$I$!I$I$$!!I$I$$!!II!+I$I$E)a!* I!)I$I$E)I$I$E)aI$I$d!d I$I$d!d $C @HWI$I$!`AI!PH*  qSiP/-g/aEi--/}Mfi"I$)f@4 I$IbDZUUU4!I$DZUU4&,%A`H$I$!TTWU !I$I$!~I$I$I$I$ I !+* !b!I!'I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$d!d H$H$! !  $!I$I$ ZZVVI$I$!AI$I$ յI !**  !I$I$E)a!I$I$E)I$I$E) @$!p`I$I$ A /7I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$E)I$I$E)I$I$E) !I$I$E)a I!!H$I$$!b E1++@$H$P$9 iS6e`P-ywW7E`--/,1Nd E-++ 3, 4,DZ 44I$I$%4#(DZ 4HE4/P $IDZ *4 DZ@1p$O$$!\TWUI$E)!+p@j$! &@m䆡f(- Pw*3,  4DIDZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4< DZ@@f1b+%H$I$91e)1e) *#'f1X1I$I$9!I$I$9!H$@$1E) 1E)*I$I$'9#I$I$'9#)1!@H$@$1E) @!$2 E)!jhI$I$E)II$$!!  e)! +I$I$e)E) 1E)I$I$9I$I$9I$I$1e)ꪪI$H$1"@$(e)@I$e)I$I$1E)@$@ 1E) I@!I$I$9I$I$9I$I$9LB&$e)$! E)! L&`&E)!^XXXI$I$E) E)!I$I$e)E)II$e)E) **I$I$9I$I$9I$I$9I$I$9II9D1$!(I$I$'9#@$@ 1E)I$I$f1e)I$I$9I$I$9I$I$9 $I21E)I$H$E)!I$I$e)nIte)! // 1E)(1R)e)a@p1XIE)b e)%)I$I$e)E)*@!I$I$@!I$I$9I$H$e)$! e)%) I$I$@!I$I$@!@![5Xe)!p``I$I$d!d II$E)!U e)E)I$I$9I$I$9I$I$9@ 9e)b` !e)b I$I$9I$I$9@ 1E)II1"I$I$9I$I$f1e)@$@ 1E)^I$L$E)!UWTTI$I$E)ِnɖtE)! H$@ @! I1"H$@$e)E)II$e)E)/?/@$@!I 1"%e)@pɐE) =A e)E) II$1"I$H$e)E)I$I$e)E)! 1E) -?M$K%1E)I$I$1" @!I$I$@!Xle)!Iݰ e)!/ @&e)!`X`Iv$E)bjZe)I$H$e)%) Ie)E)@!m6kE)!zI$I$$!!I$I$E)!uvE)!I$I$@!I$H$e)E)I$I$)(I$I$e)E)?I$I$1"@!H$@$e)E)II$e)E)/?H$@ @!I$I$e)E)I$H$E)!I$I$1 I$E)! *e)%)I$I$@!I$H$e)%) Ie)%) **I$I$@!I$I$@!I$I$@!@ e)E)I$I$e)E)e)E)zdB& E)!XpI$I$E)I$I$E)!U@$E)!@,`E)pImE)/ H$I$e)E)I$I$1"I$I$1"I$I1" e)E)xx`I$I$1 e)E)I$LE)bWW0E)!I$I$1 IE)! * e)$!IB e)E)UI$I$e)E)/$I$e)E)H @!@!I$I$@!I$I$@!L& HE)UUUI$I$HE)I$IPH+kniH/wr!%1* BC$I$EE)PTUUI$I$e)E)UUU#&LB&E)pXp) IE)b % I$I$e)E)I$I$e)E)*e)E)@*I$XE)׼  e)!I$I$1I$)(I&IE)!WI$I$$!!@$H$!b`X`)IE) % E)!I$I$1I$)(e)E)*I$I$e)E) *I$I$1"I$I$1"I$I$1"I$I$1" $I$1"H e)E)dB e)$!LB& E)!I$I$E)!@B0$IE)p⪪I!E)b/  E)@ I$E)b&UI$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1E) `I$I$1 I$E9E)UU` $E9E)x%UI6e9 I$siE9n $I&%)mI$I E)I$H0e1oa$I$f1I$$! $I$%)Ah$I%)bj*$I$E) ۉf1@$!)E 6%)m۶mE)cq f1y؈me)Amm۴%)8mNlE)*m6b;e1AJm;mE)Ajv1 UUUD$L$%)aA$h4E)$i'E)A"bI$A$)A"I$A$!I a$9b I@IDfA?? 1 qeQ--- )N y-  #1Ea``O EYc.&a`I$ !AI de)b?I,M$$)AI$I$$!"A$$!!挪I$I$!Aj*I$I$ !@Mr'A1[QN$ E1AjI$EAU  eI!\ :E9jI$E1UI$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1@ 1I$I e)H$$!$! I$Ie)Ie)$E)!^@$I$E)!^UU!I$H!W8!I$IE)!UյIE)!I$I$E)$! I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1 I2$!@`$I$!bU E)  @$E)!zwI$I$d!d I$I$$!!I$I$$!!"I E)!@$I$E)!I$I$e)Ie)I$I$1H2 I$!x$!I$I$$!!7 I$Ie)I$I$f$!UUU1@n!$1 6 "Ynȱf6%@ȱ~ 6l DZE~!3 F9jO$K%%y$!UUTPI$Ie)  @$E)!I$I$e)I $e)$$!`p  $!/ I$I$e) !b@$@!$!b 2`$$!I$I$!z^WUI$I$b`P@I$I!b% I!* I$I$e) !@I$I$b U$!I$I$$!!@$H$!\_!I$I$E)I$I$d!d I$I$d!d I$I$!!*I$$$!!I$I$d!d  !!I$I$d!d I$I$e)I$I$e)I$I$e)@$H$!p\p I! % I$I$e) !@@$I$!bUI$I$!I$I$bVW\0I !) I$I$d!d I$I$d!d I$I$E)I$I$E)I$@!bW0!I$I$e)I$I$d!d I$I$E)I$I$d!d I$I$E)@$H$!I I$!I$I!!I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$E)@$H$!I$I$II!?/I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$E)I$I$E)I$I$E) !I$I$ |^zI$I$ յ-I !**I$I$E)I$I$d!d I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$E)H$@$!\PI$I$b I$I$I$I$!UUՕ !++ I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)aI$I$d!d $@!UU0I$H$IH8UUېmnP8 /wEX+ { %q 3  F 4 ! DZ 44I$I$%4 DZ@4X&L$ǹ!XXVUI$I$E)$@$!I$I$`pP\I$I$ I$I$!! @$H$!A`  !a- I$I$d!d  !@H$I$!A(!I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$H!!@$H$!I$I$\WWWI$I$!AI$I$!! $@$!II!**I$I$E)I$I$E)I$I$E)@$! I!-I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$E)I$I$E)I$I$E) $!I$I!*I$I$E)a$@$!I$I$!??inڢHE)55%IIPH/+IWiP-- qS7fi--/+--+4%644I$I$%44I$I$%4# DZ3IE33I$I$40'$!`pXH$ E)!I$E)$! Df%) %5$jfE V)R7e+/1(%p  +4)t044I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4x$H$DZE\TTT1II'9#I$I$'9#I$I$'9#M&PIf1VX  1 I$I$9!I$I$'9#@$ 1E)II$1E)*I$I$'9#I$I$'9#P$P)f1!PTP@``1!II$1"L&@$e)E)TPPPI$H$E)!UWVVI$I$E)!!E)! ++H$@$e)%) I1E)I$A$9I$I$9I$I$9H$@$1E) @!Ie)5 I$I$9 1E)I$I$1"I$I$9I$I$9I$I$9H$@$e)E)I$I$e)E)/// 00E)!```I$I$d!d II$E)!U$I!e)E) I$I$1 1E)I$I$9I$I$9I$A 9 1$!jN$N E)U( 1$! '9#I$I$@!I$I$9I$I$9 8e)`fkĆ1k%X5e)!I$Ie) I$E)!/??1E)I$I$1e)!e)0`0e) `X`iE)  5@$@"e)E) JI$e)!*e)E)H$@ e)%) Ie)%) *I$I$@!I$I$@!I$I$@! e)E)@I$L$E)!UWTTI$I$d!d ݐ ِle)!I$I$@!I$I$9I$I$9p8 e)bX`Ie)b5 I$I$9f1 I$I$9 @$@!@!I$I$@!1E)jk%[-E)!XPp@I$I$d!d $H$!d1`e)! I$I$1"@!I$H$e)%)e)%) I$I$@!@e)@H@e)II$e)E)***H$@ 1"I $e)E)e)II$1E)X,R`1E)ƒI$I$1"II$1"I$I$@! @!I$I$1"@0e)!`Nb'e)VZ@ e)hפIҤe)!(I$I$e)E)"e)%)0 e)E)ppI$@ E)!W^I$I$$!!IE)!)@!e)E) @ e)E)I$I$e)E)Ie)E) I$I$1" I$1" e)%)I$I$e)E)Ie)E)/I$H$1"@ e)$!I$I$E)!I$I$1! e)!I$I$@!@ e)$!I$I$e)E)e)%)I$I$@!I$I$@!I$I$@!H$@ e)E)I$I$)(@e)E)\I$`2E)!W\p`I$I$E) I$E)!5U e)E)I$H$1!Ie)E) %I$I$1"I$I$1" I1"@$@ @!dB2$0e)E)_|x`!I$e)E)-UUe)E)I$@e)!I$I$E)$!***I$I$E)$!I$e)! *@ e)$!$I$2e)E)|pIe)E)?e)E)I$I$@!I$I$@!I$I$@!I섢8e)I$IPH+6e`H/{7gEX+S"' yS/a fY++!qrT -) #C(hꪢ!3 y^z3 eQ~IfY UVxII$ "I$I$e1b?I$A%)* H$9TU*I69 eA*I~eAկ19ImeI$)*\UٶeA@$I$EI$!PUUUI$I$1$!!@I$!b I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$E)!IE)!$$!!p$I$$!!pWUI$I$E)I$I$E)$!I$IE)!UUIE)!I$I$1I$I$E)$!%)I$I$1I$I$1I$I$1I$I$1I$I$1$1@$I$e)I$IE)$!I%)b,$I$E)!jzWUI$I$d!d I$I$d!d I$IE)!Uխ $E)!H$I$E)!I$Ie) 1$! 1I$I$e)$!I E)!$H$E)!I$I$$!! I$I$$!! &Iɖdf!- sf +-І$H%yTT- hf~耀, S qI$Z-%$)UVX`I$I$e)I$I$e)I$ e)I$H$e)I$$!I$I$$!! dB2 $!bP@I!bH$I$!x^VWI$I$!AI$I$!UUI !+*  ! /I$I$E)I$I$$!!յ H$!4I$I$$!!I$I$e)H$!\0!I$I$E)I$I$d!d I$I$$!!+   E)!H$I$$!!I$I$d!d @$@ !b`X`I !bI$I$e)I$I$e)I$I$e)I$I$e)!@!I$I$$!!I$I$d!d I$I$!׼I$I$$!bI$I!! I$I$E)I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d I$I$E) $!I$I$ I$I$  !I$I$E)I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$d!d I$I$E) $!I$I$**I$I$! ! I$I$E)@$@!! I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E) !** j!I$I$E)I$I$E)@$H$!jzZ^I$I$!AI$I$!! I$I$E)I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)@$H$!zI$I$?I$I$VI$I!!I$I$E)a!I$I$E)I$I$E)aI$I$E)@$8!UUE@$I$8!I$I @0I`8Uյ=I.WEHխ+ )yy Ey+1#ign 4-d $ IDZ* 41ò-%41lɖ %38`$DZ)`pXTI$I$E)$H$!a~I$I$!I$I$TVWUI$I$%II!@$!!@I$I$E)I$I$d!d I$I$E)I!b(I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)a !I$I$!zzz^I$I$!AI$I$!AI$I!* !`H$I$!A  ! I$I$E)aI$I$E)I$I$E)I$I$!^Vܰ ! I$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$E)I$I$E)I$I$d!d @$H$!I !** I$I$E)aH$H$!I E)///!&a$HE) I PH* ywqqP-// " 1S%y-/1"N++K*4-@@44I$I$%44I$I$%4 @DZ43I$I$DZ3 fq@,x$I$$!\VUU$1E)! II$EQ%)UU`)&E%y_ Pm&fi [[/ 0 %q 4/P DZ **+44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%41 `DZ1H%@$e)TPPP Qf1(I$I$'9#I$I$9!H:1x  1$! I$I$9!I$I$9!1E)I$I$91e)I$I$'9#I$I$'9#@  1E)I$I$1" B e)E)@@@@H$@$E)!V^ZzI$I$E) IE)!e)E)I$I$e)E)* 1E)I$I$9 8p&e)xpdIe)   @!I$I$9I$I$9'L$1b^^I e) 9I$I$91$! &@$ 1E)ZzjI$I$)(dB2$C0e)E)\pppI$I$E)!UUWVI$I$d!d !E)! I$I$e)E) 1%)I$I$9I$I$1e) I$9I$I$9I$I$9 I$1e)@$I$1e)I$I$1e)I$I$1e)I$I$9@f1!`O f1% ڬ͆1` I$$! ?חI$H$$!!)1$!++1E)I$I$@!e)E)@ٶm`e)! Ie)E) * Ie)!>I$I$9 e)$!I$I$e)E)*@!I$I$@!I$I$@!@$e)!T`$@0E)!XPpAI$I$d!d  Ie)!%%@!I$I$9I$I$9I$I$9I$I$1e)$e)@p@ f1%%)I$I$9@ 1E)@!I$I$9I$I$9؂le)!I$I$E)!UWW^I$I$E)lE)! %H&e)axpe)a - H$@ e)%) I$e)%) ***I$I$@!I$I$@!I$I$9I$H$e)$! e)%) $@e)ap`ɐɐE) I$I$e)E))I1E) /?I$H%1E)I$I$1" @!%J'e)bp\XICe)b  @!I$I$9I$I$9e)! I$@$e)$! Ie)E) *@!kXE)!ࠠI$I$$!!I$I$$!!*niE)! )e)%)H$@$e)E)$@L$e)$! e)E) e)e)a H$@ e)E)I$I$e)E)?@$e)E)I$I$1"H$@$E)!I$I$E)!I$I$E) *@!e)$! I$I$@!H$@ 1E)II$e)E) **@!I$I$9I$I$@!I$I$@!I$H$e)E)I$I$e)E) E)$!I$H$E)!UW^XI$I$E)! E)! -e)E)r믿I$I$1H$e)E)=I$I$1"I$I$1"$I$1"@$I$e)E)Ie)E)U$A$$e)E) /Ue)$!I$H&e)!I$I$1I$I$E)! e)$! e)E)@IȐ$ e)E) I$e)E) +*@!I$I$@!$H$He)I$I$!`A$@ P@ `@wi9 %yH%2%B$%%)JRPTI$I$E)$!AI$e)$! * e)E)}`I$I$1I$I$1H!e)E) 5I$H 1"I$I$1"I$I$e)E)`E)@S$E)b% e)E)`I$@ e)E)UU^`I$I$1@E)!I$L0E)!UI$I$d!d I$I$e) $E) /I$)(I$I$1@$@2E)$!e) I$I$1"I$I$1"e)!I$I$1"I$I$e)E)IdE)b8H$Ie)E)I$e)E)klE)!mӶ[ lE)jI$ C!UUDI$I!UE)!H&@$E)bTXPP E)b5I$I$1I$I$1I$I$1I$I$10`$E)bx`IE)b 5%I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1 I$EAE)UUtI$EAE)UUimkEA$!~q2TeA]Ib$ E9 I$e9I$NE1I$I%)ݠII ! y$H'9{II$ I$I$ H$I$!!|@q&I$f1 ]YUQI$A$1 ɓ$$1dI$ $!aI$I'$)A* $I$E)II!a*I$I$ A $|QA-1wN q -+  qwsTi+*&)g%@*)#iSU)3~!3 lq~ " 醁fYdۆa$1^ ofY$)_6G$eI%)U$I$eI%) WUUH$I$EA$!WUWI$I$$)$!$ $!b`I$I!b55.I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1@$E)!_$I$E)!^WUI$I$E)I$I$E)I$I$E)$!b`H$I$!b\W^!@E) I$I$E)$!I$I$E)$! E)!jH$I$!TUTA$I$$!b3UU@!%)I$I$1I$I$1 @$E)$!H$I$e)I$ E)! @$E)!~H$I$E)!~_UI$I$d!d I$I$d!d I$IE)!ս @$E)!I$I$e)I$Ie)10$!@I$I$!bU&1 0$!@I$I!b$I$E)!I$I$e)I E)!I$I$$!!I$I$$!!*#LI$f$!U, .f /-(,@  -`fz&%y~M&bF$)VZhIIe)I$I$1 &`B2$!@P` I!b% I$!@$H$$!!$H$!x~I$I$!AI$I$!UUյ ! @ !II!*I$I$d!d I$I$$!! * I$I$$!!I$I$e)I$I$e)I$I$$!!\WUI$I$E)I$I$e)I$I$$!!/ IE)!$H$E)!I$I$d!d I$I$d!d I$I$E)I$I$$!!I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$d!d $@$!I$I$ I$I$$!bI!// !,I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$E)I$I$E)I$I$d!d $H$!*H$I$!I$I$ II!I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e) !@ ! -I$I$e)I$I$e)I$I$E)I$I$E)H$I$!I$I$$!BII!// I$I$E)$!`I$!b?I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)a@$H$!pXx I! 5- I$I$E) !I$I$!VWUUI$I$UUUI !+* I$I$E)I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d  !I$I$E)I$I$d!d I$I$d!d I$I$E) !I$I$!z^^WI$I$?I$I$!AI !)+ I$I$E) !I$I$ bTUV!I$I$E)aI$I$d!d L$ A@ )Il۶ P8U*ir X8 7gEX+# yyS $q+ / 1wR + 4-&E +* 41ٶmDZ43I$%4% PH$I$$9!TUUUI$I$E)H$@ !\I$I$AI$I$b I$I$  ! I$I$ A!I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)H$!(I$I$E)I$I$d!d !I$I$E)$@$!I$I$ zI$I$b*I$I$?? ! %  !ࠠI$I!W(!!I$I$E)aI$I$E)a@!***I$I$d!d I$I$E)I$I$d!d I$I$E)aI$I$E)I$I$E)I$I$E)I$I$E)H$I$! !  !I$I$!!@E) ]hHE)iviXH/++ywW7EX-//( d$q V3 H4 43DZ43 DZ43DZ*4!DZ@4(3=P'$!@pP\I$E)!IE)$!I$I$10E)`Ij%q  e-vE`Z*+/, TN$q *3+` '[W41DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%43 DZ3(HE)@@N$LE)VW 1!I$I$'9#r2'̆1X^K$If1 I$I$9!I$I$9!5j$1`X\@e)  1E)I$I$'9#I$I$'9#I$I$9!H$H$1E) @!@  E)!xI$I$d!d II$E)! e)E)I$I$e)E)!!1E)I$H$9f1 pm 1$! I$I$@!I$I$1E) 1E)ꪪIm 1_(TIH1!f1E) e)`Ie)b.?1E)ꪪI$I$e)E)A e)E)⃃L$`$E)!T\XPI$I$d!d   E)! %%5I$I$e)E)II$1E)I$I$9I$I$9I$I$9I$I$1e)II1E)I$1e)I 1e)@$@ 1E)I$I$f1e)H$@$1e)I$I$9II$9@01E)ILۢ e)A E)!mte)! +/?)۴-:E) `@!Pe) I$I$@!9I$I$1"9I$I$@! 1E)H$@$1E) e)E)I$I$@!I$I$@!tB' E)XX.le)!I$I$d!d I$I$$!!?e)  I$I$9I$I$9I$I$9I$I$1E)I$I$1e)!f1%) I$I$9I$I$1E)ꪪI$I$@!I$I$f1e)I$I$9 1E)H&`0E)!\Xp`I$I$d!d  IE)!5# f1r  Pe)!e)$!I$I$e)%)e)%)I$I$@!I$I$9@$ e)$!II$e)E) **H$@$1"!I$Ie)!I$I$e)E)I$I$1%)@,`1E)ƒI$I$e)E)  @!e)b`e)  RN$E)1E)I$I$9I$I$9 1E)ꪪI$I$e)E)**@!e)E)pLB&`0E)!^ZxI$I$d!d  IE)!!e)$!  e)%)I$de)$! e)E) /@$E)`pIDe)b%5 I$I$@!I$H$e)E) I$e)E) /I$@$@!e)E)`I$I$e)$!I$I$1 I$E)! *"C&E)Pe)nM֤E) $@$e)E) )I$I$9I$I$9I$I$@!@ e)$!I$I$e)E)I$I$e)E)?d0 E)!pI$I$$!!I$I$$!!?WUU!E)! - e)E)|pI$I$1H$ e)E)I$I$1"II$1"I@!I e)E)I$Le)E)UUW$$Ae)E) /1E)I$ E)$! A )( H$E)!@!1E)@ 1E)I$I$e)E)*  I$e)E)( @$He)UI$I$!`A$C*, X8jjj Ui85= ӯ%E1BPT&) 8E)`@ %)b+%I$I$E)!I$e)$! *I$L&e)$!I$I$E)$! *I$I$1@ e)E)I$@ 1"I$I$e)E)I$I$e)E)*  A%&e) e)!I$I e)E)I$e)E)UVxI$I$1k&E)b`Pm۶bE) I$I$$!!I$I$e)!I$E)! ? E)!&`&%)b`x IlE) %5 e)E)  ,@e)`IIE)a.?I$I$1"I$I$1"I$I$1"I$I$1" $I$e)E) $e)E) $e)E)h$-:r'E)`X\$A!%)* I$I$E)! @ %)a`IE)5 0E)E) I$I$1I$I$1E) p @E)b  E)!L$E)(E)!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E1E)UUU$I$E9E)UUU$I$EAE) UUmI$EAE)UUkI$EAE)+U@dEA$!{I жE9$!*Nm e9 IE9uIbE9UIb;E9AbǒIE9ӺIbE9Rے$E9EIE9UIے0IeA ImfQb+1Mri$9*%EJE1 % ܔEi*,#qN4 + /)i۶$9-& h+$H$bTTT۹?fA}%) I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1 $!!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1$E)! H$E)!~WH$I$$!!XUUI$I$E)aI$I$E)I$I$E)aI$IE)!UUխIE)! L$@ E)^\p !E) I$I$E)$!$I$%)b VU%)I$I$1HE)!L%)b E) $E)!$I$E)$!I$IE)!I E)!$H$E)!UI$I$$!!說I$I$d!d I$I$!!/I E)!$H$E)!I$I$e)I e)I$I$1`$$!\$! $! 1 E)!I$I$$!!I$I$e)I $e)@$I$E)!I$I$$!!* I$I$$!! I$I$e)!DI$f$!UU, n%1-%$J - c@x)Z FW~L5 E%)Vh 'O$$q$!UUUTI$I$e)!I$E)* @$E)!z^ @$!I$I$xX\I$I$!UUյII!* I$I$$!!-@$!!$$!b` $!b %I$I$e)I$I$e)I$I$d!d I$I$E)I$I$d!d I$I$$!!/I E)!H$E)!I$I$$! I$I$e)I$I$E)I$I$$!!յI$I$e)@$I$!b VW!I$I$e)I$I$d!d I$I$e)I$I$d!d  !H$I$!I$I$ I$I!?/ !@I$I$b ?!I$I$E)I$I$e)I$I$e)I$I$e) @$!`P ! I$I$d!d I$I$E)I$H$!I$I$!I$I$! !I$I$E)I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)@$!``I$I!b- I$I$e)I$I$d!d I$I$E) @$!I$I$b`XI$I$!- ! I$I$E)@ !b`I$I!bշ(!*I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)!!I$I$E)@$H$!jzZ^I$I$! II!I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d @$H$!hx I! --@$I$!b VU!I$I$E)@$@$!hI$I$!AI$I$$!!I$I$!!I$I$E)aI$I$E)@!8I$I$E)I$I$E)I$I$d!d H!IvmXH/+w%yX/+" yw. %q+/qR f+*4+Nݴ 43 $@$DZ 43@$I%4,1@"H$I$\WWU! I$I$E)$H$!I$I$AI$I$ I$I!!@!8I$I$E) !!I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E) !@I$I!A(!I$I$E)I$I!I$I$E)H$H$!I$I$I$I$b7*I$I$ {j I$I !a/ H$I$ AH ! $@ ! I!*I$I$E)a @$!b`p I$!A '7I$I$d!d I$I$E)I$I$E)I$I$E)a$H$!! I$I$E)$H$!^I$I  I$I$E)a$@ !II$!/!I2$AHE)Օ%ٖm۰ P8xqiP-quS Ei--- - %iV 4-!Rd DZ43 DZ4$H$ETTT33I$I$44I$I$%4-EA@H$I$y%)TVUUI$I$1I$I$1H$IE)!@E)$! 7`v\i$!55`S%`/&7SE ---1&fn  ++410DZ 44I$I$%44I$I$%44I$I$%44I$I$%4 DZE@4DZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4-" DZ/I$H$e)UTTPI$I$'9#I$I$'9#I$I$9!I$I$1e)1E)I$I$9!PX$1VHH1!II9I$I$'9#I$I$'9#I$I$9!`&`01E)II$1"hh e) 訨I$I$$!!I$I$E)mive)!*+)H$@$e)%)MĆ1**@$@ 1e)$f1@P Jf1 I$I$1E)I$I$1E)I$I$9 I1e),P(1`P@I1)%%I$H$9 e)!I$I$9H$H$1E)^^I$I$e)E) **@0 E)!P`@@I$I$d!d I$I$$!!???E)!I$I$e)E)(1E)I$I$9I 1e)@$@ 1E)I$I$1E)I$I$'9#I$I$'9# 1e)I$I$1e) 9I$I$9I$I$9 1E)ꪪr"&d21$!^ZZhIIE)!II$E)![2) 1z**ITI1I$I$9I$I$1e)H$H$1E) @!I$I$9%H$e)@PTPIe)bII$1"I$I$@!I$I$@!I$I$@!@ @!M$K%e)!VpI$I$e)! e)! /%59I$I$9I$I$9I$I$9I$I$9I$ 1E)$iЊ5f1`$If1I$H$1E)I$I$@!I$I$9I$I$9[ lf1$!zI$I$E)!UUWVI$I$d!d  ِne)! e)<I$I$@!H$@$e)$! Ie)%) **&e)`Xe)I$I$9I$H$e)%)A$Ie)E) I@!I$@$1"I$I$e)E)ɐ1%)?M$h51E) I$e)E) * @!e)!@I$@e)U( ۰me)!I$I$9I$I$9I$I$9H$@ 1E) I1"I$I$@![X e)!I$I$E)!I$I$$!!$!E)! +@e)E)H$@ e)E)I$I$e)E)? e)%)I$I$@!I$I$9 e)E)I$I$e)E) e)%) I@!d&e)$!I$I$E)$!I$I$E)$!LB&$CE)\ e) Ivf1$!վI$I$e)%) e)%) I$I$9I$I$9I$I$9H$e)E)I$I$)(e)E)xLB& 2E)!\p@I$I$d!d  I$E)!%UU@!E)! I$I$e)E)$I$e)E)?UU e)E)I$I$1"II1"I$I$@!@$e)E) )(@!1E)e)E)@I$H$e)$!I$I$E)! E)!* e)$! *@ 1E) $HE)UI$I$Q!@I PH* 6eiP-+6B%%E1* BPH$I$Ee)TUUU@ e)pI@E)% I$E)!I$I$E)$!  e)E)A%5I$HB$e)$!I$I E)! I$I$1 e)E) %I$1"I$I$1"K$H$E)b\W\XE)a  A$I$1"I$I1"LB&$ e)E)VPK&lE)TX@ ۶mE)L2HE)!I$I$E)!I$I$$!!I$I$$!! I E)!+/l6E)I$I$1I$e)E)-U 0e)!I$I$1"I$I$1"@&e)b`X E)I$I$e)E)I$I$e)E)  $I$1" Ie)!IIe)!I$d&E)! 2`$%)`XT$@!e) @&dB%)b`Xh  E)b 5 I$I$1I$I$1I$I$1I$I$1E)@I$HE)U,E) E)bI$I$1I$I$1I$I$1I$I$1I$I$1I$I$1 E)@!E) %I$I$1 E) @I$E),WE)!E)8I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!&%)`X%)I$I$1" %)( N-* *-)DJP 1,ٶm+1,۲m/H$@$TPpI$I$!Z^Zj  E)-5 I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1$E)!Z I$E)!WUI$I$$!!pUUUI$I$E)I$I$E)I$I$E)I$IE)!UUIE)!թI$I$E)! I$1I$I$1I$I$1I$I$E)$!L%)b0I$I$1 E)!jAL$%)bVU0D0%)p!I! Id$$!`X$I$"$!$!E) @$I$E)!_UUI$I$d!d I$I$e)I$IE)!Uշ $E)!@$I$E)!I$Ie)I$e) 1I$I$1I$@$!V\ $! I$I$1$E)!@$I$E)!I$Ie)I$I$e)I$I$e)I$I$!!I $E)!I$I$e)I$IE)! E)!$I$f$!UUU+Ip%)-"0N --#x+3 E^ l2 E1ZI%y$!UUTP @$E)! @$!I$I$$!BI$I!_I$ !* $! +* I$I$$!!pXVI$H$!TUT $!b @ $!P@I!I$I$e)I$I$d!d I$I$E)I$I$d!d I$I$$!!**IIE)!/$C E)!‚I$H$e)I$I$$!!I$I$d!d I$I$$!!սI$I$e)I$I$e)H$!T0$!H$!VI$I$$!!I$I$d!d I$I$d!d @$H$!I$I$$!BI$I! ! I$I$d!d H!$I$I$E)I$I$e)I$I$e)I$I$e)I$I$e)H$!\I! I$I$d!d $!I$I$!I$I$ I !/ I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$E) !H$I$!I$I$bTP@I !b% $H$!b\W!b I$I$d!d I$I$E)H$!a8I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$E) !H$I$$!VWUUI$I$UU !+* I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d !!H!TI$I$E)I$I$E)H$I$!zZ^VI$I$$!!I$I$!AII!++ I$I$E)I$I$E) !!I$I$E)I$I$d!d I$I$d!d IIPH/[qiP-w7fi-/-yR f-+ 3)qJ@ - 41ٰDZ* 44I$I$%4,(DZ@4X$J$!PTTUH!I$I$E) !I$I$!zI$I$!AI$I$55% I !+I$I$E)I$I$E)I$I$E)@$H$!pXp I!a /-/I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$d!d  @$!X !** - !I$I$!zZZ^I$I$!AI$I$UU5II!I$I$E)I$I$ ^ !)* I$I$E)!"I$I$E)!jI!a I$I$d!d I$I$E)I$I$E)I$I$E)a@ !I$!a8!I$H$!^ ! I$I$E)aI$I$E)a!A$AE)!% $HE) I PH** yywwqP-//" ySf$q-- 1!vN )++ 41ɐ ِ DZ****43$@$DZ3-H$43I DZ** 44I$I$%4X=p$%)`pXT$H$E)!$Ie) E)$!$E)!_L$$!a(N$E95 -aswqH** pSwwfq+/-/`JN++-4/ DZ44I$I$%44I$I$%44I$I$%44I$I$%4`DZE@4 DZEy44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%41,`DZ1P%(e)PP@@1E)+I$I$'9#I$I$9!H$H$1E) 1E) *1E)@I$Z1bUV$@1I$I$1e)I$I$'9#I$I$'9#I$I$9!01E)ꪨI$I$1"@B$C e)E)PP@@H$H$E)!^^^XI$I$d!d  E)! 52:e)!I!<d@`1$!H%@e)TP@ f1b% I$I 1E)$e)bp D1 %I$I$1e)@1E)ꪪe)@$A 1E)I$I$9I$I$9@ 1E)I$I$e)E)*e)%)訠I$I$E)!UUWVI$I$d!d !E)! I$H$1" 1E)I$I$9II$1e)'9#I$I$1E)1e)I$I$'9#P'f1pXdIXe) % I9I$H$1e)I$A$1e)II$1e)h6X 1E)~~I$H$E)!H$H$e)!~_ݐn 1!+H$I 9I$I$@!H$e)E) @ 1E)$A$I2e)E)@1E)e)@1%)I$H$1E)@!I$I$9I$I$@!I$I$@!X5؂e)!pI$I$$!!(II$E)!e)!I$I$9I$I$9I$I$9I$I$1E) I$1E)h4@,1bX```II$f1b@ '9#e)` Ie)I$I$91E)M&k5e) I$I$e)$H2dB2E)bjI$I$bUe) e)$!I$I$e)E)L"&#AE)bTP@ e)I$I$9@ e)$!I$I$e)E)***I$I$@! 8p%e)b`X`I E) 5 I$I$1%)@ݚm1E)I$I$e)E)** $@!9I$I$1e)ꪪI$H1E)1E)I$I$9I$I$99I$I$1E)@!@ e)E)d& 2e)!I$I$$!!I$I$e) ۰ ݖvE)!I$I$@!I$H$e)E) I$e)E) /?I$I$@!I$I$@!I$I$9H$@ e)$!I$I$e)%)**e)$!@!I$d&e)$! @$%)pXېmɖdE) 5!e)E)I$I$@!H$1E)I$I$e)E)* *e)$!I$I$9I$I$9I$I$9I$@ 1E)W^I$I$e)E)/eK$E)b0Um[E)I$I$d!d  I$E)!-=E)!I$e)E)UW|!$Ie)E) =@$@$e)E)I$I$1"I$1"@!`0e)E)\pI$I1 e)%) *@ e)$!I$I&e)$!d$LB$E)!ZV^p E)!)j@I$!m۶mH%) IIPH+ IqiP/iS!%y$1* @K$I$Ee)TTUUI$I$@!I$I$@!I$I$@!I$@ e)E))( )($I$e)E)7UU$C&$"e)$!I$I$E)$!*I$I$1!I$e)E) %UH$e)E)R$b1E)bpXp ɐE)b % I$I$1" $I$1"@$e)\e)I$H e)E)UUT`I$I$1@E)!I$` E)!I$I$e)@$!XnmE)* E)!+I$@ e)E)UU_r $I$1e)E)-I$I$e)E)@e)b` e)a I$I$1"I$I$1"I$I$e)E)I$I$1" $I$e)E)$@e)E)@*K$H%E)TTTPIl E)  $E)!$H$e) E)!+E)!۶mۊ5E)`E) $E)pE) $E)b@P`  E)b% I$I$1 E)$!E)I$I$1I$I$1I$I$1@ E)P@I!%)b% I$I$1I$I$E)$!IE),0E)`H$I$!UE)I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1L& E)bVX` E)I$I$E)$! IDI$f%)U%@Nn߆E+M.f *1& S ++41I$ِ DZ4@  %)P@@@%) 4I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1E) I$I$1$%)I$E)!_U$I$$!!VUUI$I$E)aI$I$E)aI$I$E)aI$I$$!!UUUI$ E)!Uկ E)! I$I$E)!*I@$1$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$1LB$!bTA$I$e)!I$AE) L$ %)bVX`I !I!I$I$d!d I$I$!!?IE)! H$E)!I$I$e)I e)1I$I$1I$I$1 1I$e)I$I$1$E)!H$I$e)I$I$e)IIe)H$I$e)I$ e)I$I$e)H$I$e)I$IE)!0H$%)XV%) I$I$1I$I$f$!UUU(Iɔ%)-sf+-&Rh4,hf^z"l3mf9jI$[-%y!UUP@I$I$!bz^zI$I!% $! I $!!-I$H$$!!I$I$$!!Zj*I$I$$!! I$I$e)I$I$e)I$I$e)I$I$$!!p|I$I$E)!I$I$$!! I E)!  A$E)! H$He)H$@$$! I$I$d!d I$I$$!!5I$I$$!! I$I$$!!(I$I$$!!I$I$$!!!I$H!bUV!I$I$d!d  @$!I$I$$!BI$I$$!B !/ I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)I$I$d!d I$I$E)@$H$!I$I$!I$I!/!I$I$d!d I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)@$H$!I$I$XI$I!)!H$!\!bI$I$d!d !@I$I!bUV!I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$E)I$I$E)$@$!hzZ^I$I$! II!I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E) @$!I$I$@PI$I$b%I$I$!յ ! I$I$E)I$I$E)@$@$!b`X` I!b% I$I$E)I$I$d!d I$IH!UUIIPH+// yW?uiP---/ 1Sf%q---+1")N-))4-@ @;4-@"DZ41dId%4$@$DZ!@PPPI$I$E)I$I$E)I$I$E)$@$!I$I$`pXI$I$!AI$I$ !* I$I$d!d I$I$E)I$I$d!d @ !p ! I$I$d!d @$H$!^^! I$I$E)I$I$E)I$I$d!d I$I$E)I$I$d!d H$I !^^zI !-- $@$!I$I$!VVWUI$I$!AI$I$!յ !*  @$!I$I!I$I$E)I$I$E)aI$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$E) !I$I!A  !H$I$!! I$I$E)aI$I$E)a E)!-- A&L$HE)  !XH//ywW7EX-/(1LEy/' 1()q 'P+ 41ٰm۶mDZ*33I$I$43I$IDZ**43DZ4`($!@H$I$y%)TUUUI$E)!$IE)$! E)!I$ !*(I$ $! IB$$!'`Nf`$) Rq{EX+/-,N1SE +--3& P4+DZ 44I$I$%44I$I$%44I$I$%44I$I$%?۶mC%DZEPP4 DZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%43DZ4,[,I$I$f1UUUTI$I$'9#1e) *@$ 1E)II1e)**I$I$9!I$I$9!I$I$9!I$H$1e)1e) I$I$'9#I$I$'9#1e)I$H$1E) e)E)dB2 2E)!x``I$I$d!d II$E)!U e)E) Mڶ[mE)!-1E)I$H$1e)I$I$9 9e)`IV$Hf1b%)I$I$9 1e)H$H$1E) I$1E)I$I$9I$I$9I$I$1E)ꪪI$H$e)E)I$I$e)E)H$`$E)!\|xpI$I$d!d  IE)!-=?$@%E)$A$1E)I$I$9I$I$1e)1e)H$@$1E) I9I$I$'9#X41xɔJf1 I$I$9@$@ 1e)II1e)I$I$9@  1E)m&k5E)!dB&$I$! I$E)!%=!1E)f1E)H$e)E)01E)X&h1!~~)e)!- I$I$9I$I$9@  1E) I$1"I$I$9I$I$@!I$I$9@ @!I$K&e)!I$I$$!!nɖte)! ?9I$I$9I$I$9I$I$9I$I$9"$If1$!IT$ f1b& 1e)ۂmضm1$!訠!f1& I$I$9I$I$9Xlf1!j蠠I$I$$! I$I$e)a `JE)-I$I$@!I$I$@!H$@ e)%) I$e)E)I$I$@!I$I$@!$e)E)PIJe)  @$@"e)!N$E)bDI@e) I$I$e)E) ! 1E) /d&`01E)I$I$e)E)** @!I$I$91E)I$1E)I$I$90P%f1xxf1 %5(81pp&Ie)b +I$I$9`2 e)E)XpI$L&E)!I$I$$!!! E)! //@$e)E) @ e)%)I$I$e)E)e)E)I$I$@!I$I$@!I$I$9$I8e)``If1 ?I$I$f1e)e)E)`k%؊mE)x %)a  I$e)$! *e)%)I$I$f1e)I$@$1E) I$e)%) **I$I$9I$I$9I$I$9I$I$1e)ꪪI$H$e)E)ꨠM@E)bV E)!I$L&E)!UWI$I$d!d !IE)! %5I$I$e)E)H$H$1! e)E) 5I@!I$H1"@!I$I$@!I$@ e)E)I$I$1  1E)@ 1E)~@$e)E)^\ HHE)UUU @H!I$IPHi6e`H/qiSP%yX/ÏI$%ye)PTUUI$I$@!I$I$9I$I$@!I$I$@!I$I$@!I$e)E)I$I$)(I$H$1 I$e)E)UUI$Ie)$!I$H$E)!I$I$E)$! *!I$e)E) 5U RB'E)axɐE)a -I$I$1"I$I$1"M$he)b^Z1$Ie) I$I$1"H$e)E)W\I$I$1I$)(L&E)!I$L$E)V^~` I! %5I$I$$!! E)! -H e)E)Wz I$I$1I$e)E) UUe)E) 5A@!I$ 1"I$I$1"I$I$e)E)I$I$e)E)I$I$e)E)I$I$e)E)`e)`5h&e)hxxI$I$ b.m`e)!dB2 E)!IIE)!`&%)bphIɖm%)5% H&XE)\Xp  E)%5%+I$I$1E)!I$I$1&@0E)xp IE)b 5% I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1E)!jjI E)b&I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$10E)`@IE) /Mvq(*`N6f`*+.R/E/+/4(4 I%)@I$I$1$%)h%) I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$10@B2%)`I$I$$!b?C2$I%)jI$I!ח(!I$I$E)aI$I$E)aI$IE)!UUIE)!U*E)! I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$10%)I$%)b&I$I$1I$I$1@ %)$!ꪪIE)!@$E)!^ I$I2%)I$I$d!d I$I$E)I$IE)!Uյ $E)!$I$E)!I$Ie)I1I$I$1I$I$1I$I$1I$I$1I$I$1IE)$! @$E)!I$I$e)I$Ie)A %)$!ꪪIE)$!@I$1 @$e)I$I$e)I E)!E)!L$ $!Xh!%) I$I$1$$!$$! (I$$!U/M.f -)#H $-Hfz% C %y_zI$"%UT@ ! IE)!@$I$e)I$I$e) @$$!``I! %%I$I$e)I$I$e)I$I$$!!$H$!bxx I!bϭ-I$I!b7Օ&I$E)! $H0E)!/  $I$E)!1H$H$$! I$I$d!d I$I$$!!- I$I$e)I$I$e)I$I$$!!I$I$e)I$I$d!d I$I$$!!I$I$d!d $!I$I$!I$I$$!BI !/ I$I$d!d I$I$$!!/I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)I$I$d!d $!bh!I$I$E) @$!I$I$$!bI$I$$!bI!/ I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d  !* I$I$E) !I$I$!I$I$bVXhI! I$I$E) !I$I$d!d I$I$E)$!BbI$!b /I$I$d!d I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$E) !H$I$$!VWUUI$I$!UUՕ !+* I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$$!!I$I$e)I$I$e)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E)$!H$I$!I$I$b@I$I$b% II!/+I$I$E)aI$I$E)I$I$E)I$I$d!d !I$I$d!d I$I$d!d IIH! PH 9S1qX----"N%y----1%'R!u)4")E@@@4 DZE43%4@$@$DZ!PPPPI$I$E)I$I$E)I$I$E)H$I$!I$I$\\VWI$I$5% II!I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d H$!!I$I$E)I$I$d!d !&I$I$d!d $! !***I$I$E)H$I$!zzI$I$!AI$I$!AI$I!I$I$E)H$H$!I !**I$I$E)I$I$E)aI$I$E)I$I$E)aI$I$d!d I$I$d!d $H$!Ax $!a -I!*I$I$E)I$I$E)I$I$E)$@$!II! !!$I$$!***!I$A2@E)U5H$H@@ 6S`H/7wWEX/)` 1E/+3 I$EUU3I$EUU3&y1 @yDZ-% I$)Ѓ&x$!pX\V I$$$!I$!$I$!*$ $!I E)!$$@E)/  I%)'lP%! yqWyw%yX=-&N/s%y++--1"eZ 4#& DZ 43 %41%44I$I$%41ې%4@DZEP4 DZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4! sDZ(41X%,DZ1J%P%f1TPPP1E)@NLe) (׾6`1E)I$I$91E) I$I$9!I$I$9!H(1!` ΐDf1b5I$I$'9#I$I$'9#I$I$9!L&`&1E)II1"LB& E)!I$I$E)!UUWVI$I$d!d  nE)!H$@$e)E) I1E)@$@$1e)I$I$9II$1e)I$H$1E)I$I$1E)I$I$9 I1e)@$@ 1E)ꪪI$I$1E)I$I$1e)I$I$9I$I$9H$@$1E)zzI$I$e)E)*+/@0 E)!pI$I$d!d I$I$$!!*K$ME)\_:IIe)1E)II1e)I$I$'9# 1e) I$I$9I$I$'9#I$I$'9#I$I$'9#$I 21E)$ 1 I$I$9I$I$1e)e1E) X, 1! I$E)!I$I$e)Pm1!*`$I$E)(׾Pe)!I$I$f1e)1E)~ If1E)I$I$9I$I$9I$I$1E)ꪪI$I$1"9I$I$9I$I$9I$I$9h5Xe) I$I$e)II$e) ?e)$!I$I$9I$I$9I$I$9I$I$9I$I$1e) 1e)@$@$1e)I$I9I$I$@!I$I$1E)I$I$9 1E)K$[%E) I$I$e)  E)!%%0-f1$!jI$I$@!9I$I$1"e)%)I$I$@!%@e)@p Xd@E) -E)!@I$e)b׿(`e)!$ $'e)Je) C1E)ꪪI$I$1%) e)%)e) I$I$9I1E)I$I$1E)@f1` f1 f1@IdKH1 @!9k6XE)!I$I$$!!I$I$$!!*vie)! *+e)%)H$@ e)%)II$e)%)** @! [e)!09 e)`IDIE)b?  1E)믿I$I$@!`2 e)$!I$I$E)!**I$H$E)!! e)$! *I$I$@!1E)믿I$H$1E)$&J$E)bXV@e)b I$I$9I$I$9 1E)ꪪeE)bI$ e)E) [5ۊmE)!I$I$E)!I$I$$!!  E)! /I$I$e)E) /I$I$e)E)@$e)E)/7I$I$@!I$I$@!I$I$@!I$I$9I$@ e)%)I$I$e)E).1E)`01E)_^zI$I$HE)I$I$Q!@$A$P@*`W:qgOX@/&LيXE)BPTUI$I$e)E)I$e)E) *I$I$@!I$I$9I$I$9I$I$@!I$I$f1e)H$e)E)e)E)I$@1!$I$e)E)-UUU`$f1E)VZiI$I E)!* I$H$1H$I$E)b\\W\I$I$E)b5UDI@e)I$I$1"I$I$1"I$I$1"I I$1"I$I$1"e)E)|I$H$1 I$1 E)@IK E)տI$I$$!!I$$$!! $I$E)!/!E)! I$e)E)U_ $)($I$e)E)-Ue)E)I$I$1"I$I$1"I$I$1"I$I$1"I$I$e)E)I$I$e)E)@e)IE)=I$e)E) @@!$C e)E)zI$e)$!۶X$e)hP$ $!mۺ5E) z0ɐdE)bI $E)!*I$I1I$I$E)!E)I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1 e)!E)b E)pI E)? ! P%)7WyW%yX/--#i 1 ܔM%y*)4+߮/HUU]1J$J$%)TTTTL$`0E)ZVX!%) I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1 E)!$E)!UL$E) WU 0I$$!H$I$!II!I$I$E)aI$I$E)aI$IE)!UUUI$E)!Uի*IE)! I$IE)! I$$1I$H$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1E)`I $!b7  $!I$I$1$E)!z$I$E)!ZUUI$I$E)@$@$! !b IE)! @$E)!H$I$e)I$Ie) %)$!I$I$1I$I$1I$I$1I$I$1I$I$1 E)$!$I$E)!I$I$e)Ie)I$I$1$E)!E)$!ꪫI$I$e)I$I$e)I E)!I$I$1I$I$1I$I$1I$I$1I$I$1`$`B2$!b`X`  $!b 5 IE)!"LI$f$!U,0 n$)-&&@N - `z(3 %y~M&[E$)VZh 'O$q$!UUUT $!@$!$!@ $! I$I$e)I$I$$!!@I$I$$!!|VUU@ !b $!b$!$I!@E)!**  C2$IE)!說I$e) @$e)I$I$$!! I$  $! * I$I$e)I$I$e)I$I$e)I$I$$!!I$I$d!d I$I$$!!I$I$d!d  !H$I$!I$I$$!BI$I!/!I$I$d!d I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)H$H !XTX@ ! $!I$I$!I$I$$!bI !/I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$E)I$I$E)@$H$!I$I$$!BI$I!/I$I$E)I$I$E)H$I$!b\V\ ! I$I$E)a@ H$!`I !b5 I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)@$H$!hhXZI$I$`XTII!//-%I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$e)I$I$e)I$I$e) @$!b`PI!b I$I$d!d I$I$d!d I$I$E)@$@$!`I$I$b5I$I$$!!I$I$!Օ !*I$I$E)aI$I$E)I$I$E)I$I$E)I$I$E)aI$I$d!d I$I$E)I H! XHqS7q%yX--&1E---)1) !-- 43DZ44I$I$%44I$I$%4@$H$DZ!PPTTI$I$E)$H$!XV $!I$I$I$I$!AI$I$  !+** $!@@$I$  !b I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)$H$!`pI$I$A?/ !! !  $!I$I$!z^^WI$I$!AI$I$5%I !** !I$I$E)a! I$I$E)I$I$E)I$I$E)I$I$E)aI$I$d!d I$I$d!d H$!XI$@$!  !*** I$I$E)I$I$E)@$!xH$I$! !** @  !I$I$ @P`II%)a+%%$C"IHE) I$$AP8  .i@+ ` fP /@ E3IEU3IҶEU1߶I%,!i۶f)&()@h۶ɖtE1IE)!U E)!H$I$e)I$E)$!I$e)IE)!H1imP%) 9WIwiP--%- S1Sf$q/---/"Jiڧ++4#0I544I$I$%43$%43%44I$I$%D3DZUUUD1ImDZUUZ1?_JDZUUU*4}DZEy.41$@%43%41[%41,%41`%3(He)@@1E)h1%)I$I$9!I$H$1e)1e) *I$I$9!@1@H$If1b\WUI f1b5 I$I$9!@$I$f1\W\P)P1 01E)I$I$1"H$@$e)E)L$`&E)!VVXXI$I$d!d ! E)! %@  e)E)I$I$1"H 1E)I$1E)UI$I$1E)@$ 1E)I$I$1E)I$I$9I$I$1e) 1e)I$I$f1e)A$I$1E) @$f1@PT f1b  1%)ꪪI$I$1 e)%)ࠂI$H$E)!WWV^I$I$d!d ِ ɐle)  H$@ @!  1E)1e)I$I$'9#I$I$9!I$H$1E) '9#I$I$'9#I$I$9!$@1b@P@ɐdɔ 1b%% I$@ 1e)I$I 1e) I &1hXC'I$e)ZUU$!H$E)$! $E)! *.r$@ 1!I$I$9I$I$9I$I$1E)ꪪI$H1"I$I$1e)I$I$9I$I$9H$@ 1E) I1E)I$I$9I$I$@!I$I$90e)!I$H$E)!I$I$$!! b'Nb'e)bz^Zf1b % I$I$9I$I$9I$ 1E)ꪪI$I$1e)'9# 1e)I$I$1e)H$@$1E)I$I$1E)I$I$9I$I$9@ 1$!zhI$I$$!!I$I$$!!>@$I0E)!0e) I$I$9H$@ e)%) I$e)E) * I$I$@!I$I$@!I$I$9I$H$1E) e)%),`e)!M$M&E)ɐdɐe)%%  1E)@ 1E)%"Ie)bpĉ e)b%% I$I$9f1e)$I$1"I$I$1E)I$I$9I$I$9 1E)ꪪI$I$1"9@$e)E)LB&d2E)!I$I$e) I$E)!/$ e)E) 5I$I$9I$H$e)$!Ie)%) *IXe)!0e)!I$I$9H$e)%)I$I$e)%)**1E)I$I$@!L&`0e)$!I$I$E)$!*I$I$E)$!*!e)$! I$I$@!1E)J"%Ie)aX  f1!*I$I$9I$I$9 9J$JEe)bTUTE)b@$ e)E)  0 E)!I$I$e)I$I$$!!** @!E)! + )(I$I$1!e)E) -I$I$@!e)I$I$@!I$I$9I$@ e)E) J$E)b0\WH% *  $H8hW$IH8IIP8+ 1a"D$`E)*JRT !1E)H$1E)I$I$e)E)**I$e)E)9I$I$9I$I$9I$I$@!I$I$f1e)H$1E)^I$I$e)E)H$1  e)E)%C!e)E)` m۶m6e)!@E)pIE)5@ e)E) 5I$@!I$I$1"e) @IE) ??I$I$e)E)``E)b@ dIE)bUI$e)E)UVbI$I$1B$IE)!@$I $E)apI$!b %I$I$e) @$e)6m$e)bz^VɐtE)b %I$@e)E)UUPI$I$1I$e)E)%UUe)E)5I$I$1"I$I$1"I 1" E) I$E) Ue)E) * I$I$e)E) I$I$e)E)$I$e)E) I$e)E)@ e)@Ie)#1HE)b`Ide)UI$I$E)!$I$E)!*@I$E)! I$ $E)! I$@1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1$H$E)\W&!E)`Xk  %)bI$I$1I$I$1I PE)KtHX@" a)++1%`N ++)41aaDZ3P$@$E)PPPPI$I$1I$I$E)$!I$I$1I$I$E)$!I$I$E)$!$E)!W I2%)!ZU$2E)!zUU0I$$!$I$!I$I$!I$A!I!$!*I$IE)!UUI$IE)!U  I$E)! $I2`0E)!jX`!IE)! 5- H$1%K$E)\WE) I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1E)E)!I$I$1 E)jI$I!U$I$E)!{_UI$I$$!!TUUUI$I$E)$H$!`Xpa$I%)k% I $!bU@$I$E)!I$IE)$!IE)!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1$E)!@$I$E)!$I$C$!H$I$$!b8VUV%)$E)!@$ %)$!I$I$e)I$I$e)IE)!I$I$1I$I$1I$I$1I$I$1I$I$1$H$e)I$I$e)IE)! @$E)! @$$!DI$fUU+0 ܔl -#@$ --"Zx3dE~l26 E)Zj$>fq_W_x  $!b % H$I$e)I$I$e)I$I$e)I$I$$!!pPhI$I$$!!UU-I $!! %)$!I$@E)!.  &L$E)!I1$$!H$I$$!! I$I$$!!I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!I$I$$!!I$I$d!d I$I$d!d @$H$!I$I$ * I$I$! ! I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d  ! !I$I$E)@$I$!I$I$$!bI$I!?!I$I$d!d I$I$d!d I$I$d!d I$I$e)@$!bX!I$I$e)I$I$d!d I$I$e)I$I$d!d I$I$E) $!xI$I$$!BI$I$* ! I$I$E)I$I$d!d @!PI$I$E)a!@I$H !U$@!I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$E) !I$I$ bx^zI$I$ bUUU%I!b I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)!b@ !bI$I$d!d I$I$d!d  !H$I$!zz^I$I$$!!I$I$$!!II!)*I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)aI$I$d!d I$I$d!d I$I$d!d  H!!!XH////1u7q%y`----)E---3+t p 43DZ44I$I$%44I$I$%4H$H$DZ!TTTTI$I$E)I$@!bXI$I$!I$I$I$I$???I$I!! @$!p`I$I!5)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d H$! ! I$I$d!d I$I$E)aI$I$E)@$H$!I$I$I$I$b-I$I$!! $@$!II!*I$I$E)I$I$E)I$I$E)I$I$E)aI$I$E)I$I$d!d I$I$E)I$I$E)!!I$I$E)I$I$E)I$H$!\XI$I$  +!$@$!I$I$!~ @E)) A$I$HE)  !XH/+w7%yX%--&qR%y--++1&t )+ 3143I$IDZ* 4)DZV4)IDZU4&H$$)pXTV I$E)!I$E)$!$I$E)!H$I$$!  $I%)! 1%)$!$E)!DHTb%P$! PNi8**)) 11fq----/!/N--/4,I 44I$I$%44I$I$%44I$I$%4$DZEP4DZE41,l%D1DZUUU4IDZEk3ֶI$jDZUUk3tBn$jDZ^ Uk4IݖjDZUՎ1I$$h DZUU1I$NB DZUUW*-I$O:ҧUUUx,I$I$1UTUUI$I$'9#I$I$9!@$ 1e) I1e)**I$I$9!I$I$9!J1$I$H$1e)1e) P 11e)*I$I$9!I$L$1E) @!`2 0E)!X``@I$I$d!d II$E)!5$@$e)E)-I$I$1"! 1E)I„ 1E)׾I$I$9 9I$I$@!I$ 1E)I$I$91e)H$H$1E)I$I$1E)P(1X`!@f1 I$I$9I$H$1E)I$Ie)E) `&`0E)!XXp`I$I$e)II$E)!?? e)E) I$I$1"H$1E) 1e)I$I$9!@$@ 1e) I$9I$I$'9#I$I$9!I$I$9!I$I$1E)1e)H1e)H&P1b\X`IN 1) k%X,f1!xh$@ %)7I$L$E)!? n1E)H$H$9I$I$9I$I$9 @$1E)z 2e)&I$I$9I$I$91E)ꪪI@!I$I$1e)I$I$9I$I$9I$I$9k%X,e)!PI$I$$!! **$C$AE)j** m'E)Zf1! I$I$9$I$1e)I$I$1E) I1E)I$I$'9#H$@ 1e)$H$1E)@! 1E)kL$f1(WH@1$! ۠ 9E)I$!b(-mE) **!!1E)믭I$I$@!@e)@IE)b 7Օe)$!I$I$9I$I$9@ 1E)I$I$1"@!@!I$I$e)E)I $1"@"%e)a` E)b 5 e)%)I$I$f1e)I$I$9H1E)I$I$1E)I$I1e)I$I$9I$I$9H$ 1E) I@!I$I$9d2 0e)!$I&H$$!b\W !b 5! E)! // e)E)@ e)$!I$I$1 e)%)I$I$@!I$I$@!I$I$9I$@$e)%)0`&E)!e)  @ e)%)I$L&e)$!A 1 $I$e)E)5UUU@e)E) I$I$1e)@$1E)II$1"1E)I$I$9I$I$9I$I$9H$ 1E)I$I$e)E) *H$A$e)E) L& E)!I$I$$!!$A$E)*@!E)! /dBIe)E)\I$I$1  ,Ie)@I$IE)b7Օ&e)%)I$I$9I$I$@!L@$$1aT`$I$H8XUUUI$I80* ivP8+ɝ;3$)okRL$ e)$!*$H$E)bp\Xe)b @ 1E)I$I$e)E) I$e)%) *9I$I$9I$I$9I$I$9I$I$@!@ 1E)zꪪI$H$f1E)UU^z@ )(I$I1X$m6e)!|z!!IE)! I$I$1I$I$1$I$e)E)5U 0dB2e)$!$ e)$! e) I$I$1"e)E)@ % e)bI$@1"e)E)pI$@ e)E)UUX`E)@I E) I&E)!I! 2E)!d0$I$!P@ $ %)-+ $ e)! @ $e)! I$e)E)UUpI$I$1Ie)E)I$I$e)E) I$I$1"$C$He)E)@IȐHE)I$I$e)E)I$I$1"I$I$e)E)I$I$e)E)*I$I$e)E)I$I$e)E) $I$1"I$e)E)@ $e)E)(I"e) @I$!b?!@E)!I$IE)!I$I$E)$!I$I$E)$!*I$I$E)$!I$I$E)$!I$I$1I$I$E)!*H$E)!I$E)!*$E)!$E)!E)$! *I$I$E)!E)!I$I$E)$! *I$I$1I$I$1I$I$E)$!I$I$1L& %)\!@E) I$I$1I$I$E)$!I$I$E)$!II$PE)U 1SqwiP/-- pO1Wfi +/-/ p S++-4/P DZ***+;" ")DZ$!@@@@$$E)$0E)!WU@L$E) UUI2I$%) WUUI$!@$I$!H$ !I$I$E)aI$A !I $! !!E)!UU ɐE)!Uժ IB$IE)!ժ*I$IE)!*IE)!* )(I$)(@$I$E)!E)! I$I$1H&%)\!@E) E)@I$E)b,ՕE)! #I$I$1I$I$1I$I$E)$! E)I$I!7 E)!* E)! $H$E)!^UI$I$$!!UI$I$d!d  @$!I$!b7$%)j! I$!I$I$e)@$I$$!0WV@!%) I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1 @$E)!H$I$e)I e)%)$!MmE)A$I$E)!H$@$e)A$I$e)I$IE)!IE)!I$I$1%)8I$I$1I$I$1 1$I$e)I$Ie) E)! @$E)!z^ @$!I$I$!I$I!?I$I$f!UUU) p$)%- s -1%$2InDZJꪪ-֚ iE~舀(u>c 0zI$K%%y$!UUTPI$I$e)I$I$e)I$I$e)I$I$$!!I$!! $I$e)$!E)!+  I2E)!j I$$!*  1H$I$e)I$I$$!!$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!0I$I$$!!I$I$e) @$!I$I$**I$I$$!BI$!/ !b I$I$d!d I$I$d!d @$!(I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)@ !`I$I!Օ&$@$!I$I$!I$I$$!b !/I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$e)I$H !bTXh !b I$I$d!d I$I$e)I$I$e)I$I$E) !@$I$!X^^I$I$$!BII!/ I$I$E)I$I$E)I$I$d!d I$I$E)I$I$E)I$I$d!d @$H$!p\x I! %- I$I$E)aI$I$E)I$I$d!d I$I$d!d I$I$E)@$H$!zz^^I$I$I !- I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$e)! I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)$@$!I$I$ ^~_UI$I$$!!I$I$!U ! I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)aI$I$d!d I$I$d!d I$I$E) !H!ivXH//++1q7qE`---+ i 53, 44I$I$%41$%41`I$%4H$H$DZ!TTTUI$I$d!d  $!I$I$!I$I$$!!I$I$ I !/*I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)a !I$I$!zz~I$I$`P`I$I$b% I$I!I$I$E)H$I$!  !* I$I$E)I$I$E)@$!b@P ! I$I$d!d I$I$d!d I$I$E) $! !***I$I$E)I$I$E)I$I$E)$@$!I$I!Uֺ*$$!H$I$!I$IE)?IIAE)UH$I$P@iS6a`P-yW7EX-/++1RdE-/++1+) 3143DZ44I$I$%4 DZ@ N$z?EQ$!WTTWI$I$e)I$Ie) 1I$1L$$!$&$I e)$  E)!o$ A$! VbHDHP$!PP`8  11fq-----! ----41ɐ ɐ DZ****?4 $I$DZ}UU44I$I$%?4II$DZUU4@$DZEPP4DZE44I$I$%?4I$IDZUUU44I$I$%44I$I$%41؆l%43 %41 %1$I$DZ=UUU1I$DZUU I1E)*I$I$'9#I$I$9!1E)I$I$1e)I$I$9!I$I$9!I$I$9!P%f1`pI1 -=I$I$'9#I$I$9!I$I$9!H&`1E) @![ e)!I$I$d!d I$I$d!d $@!E)! )H$@$@! I1E)@  1e)I$I$9II$1e)I$H$1E) $I$1E)I$I$9 I1e)@$ 1E)ꪪI$I$@!(f1`1E)I$I$9@$@ 1E)II$e)E)***[5؊e)!`I$I$d!d I$I$$!!" ِme)!$ 2e)E)`DJ1! '1e)I$I$'9# 1e) I$I$91e)*I$I$9!I$I$9!Itf1I1E)*I$I$'9#@$1e)1e) **-h1``I$I%)b7 H$E)!  e)! +@  1e)I$I$9I$I$9 f1@I$Ie)b7 1E)I$I$9I$I9I$I$1E)@!I$I$9I$I$9I$I$9``e)!I$I$e) I$I$e)vb&i E)Z)e)! I$I$9I$I$9A 1E)ꪪI$I$f1e)1e)I$I$'9#d1E)I$H$1E)1E)kI$@1W($I$If1! 1!zI$I$ b׾!R1f1$!++I$I$1E)e)%)%K@e)a& I$@!I$I$9I$I$9I$I$9H$@ 1E) @!I$I$@!@$ @!I$I$1"@ e)a`IE)5  I$e)E):I$I$f1e)I$I$9I$I$1e)ꪪI$I$1e)II$1E)H$@ 1e)I$I$9$i*5f1`0ِE)b@!1E)ꪪI$RE)W\I!b5 $ALȄ$! nE)! I$I$9H$ e)%)I$I$e)E) *@!I$I$@!0e)$!$J E)b[ۆmE)!!@$e)E) I$I$@! 2 e)E)p@I$I$e)E)UUUTH$ e)E)VZqE!I$e)E) 5UUe)%) $I$9H$@ 1E) I$1"I$I$f1e)I$I$9I$I$9I$I$9I$@ 1E)_^zI$I$e)E)/?E)k&X,E)`I$I!b/?$A$I2E)*j+дI$e)bUE)$!I$I$)(0 e)! I$I$@!I$I$@!98e)UUH$N$8e)I$IH8UUUɟD a8- RN%1*JBH'Eye)TUUUI$I$E)$!X2,E)a`m۶mE) @!1E)@ 1E)ꪪI$I$1%) I$e)E) **@!9I$I$9I$I$9I$I$91E)ꪫI$H e)E)I$I$)(I$H1!I$e)E)UH$)(I$I$1I$I$1&L$E) ^V$`!He) I$@!I$I$1"I$I$1" I$1"e)E)I$@!I@!L2e)E)V`I$H e)E)UUWxI$1@ E)$!I$ e)! $I$E)!E)$!I$I$1$@LB&E)!*E)!/Ie)E)U@$@$1I$e)E) 5UU@$0e)E) uH$I$e)E)I$I$1"I$I1"A$@$e)E)I$I$1"I$I$1"I$H$e)E)I$I$e)E) I$I$e)E)I$I$e)E) * I$I$e)E)*ME)I$I$e)E)I  @!I$I$e)E)Ie)$!I$@e)$! I$I$e)$!I$I$E)$!I$I$E)!*I$E)!I$HE)!I$I$$!!*I$I$$!!^^pI$I$E)a !$I$!$$I$$!$I$E) UUUI$E)!UUU@I$$! $AI$$!@I$%)@ %)@$C&$!HI$$!I$$!$I$$!IIt`P-%pwwea+---, Sf )--4-R!S 4/P DZ訨I$I$!ꪪI$I!I$I$!I ! I$H!!$IE)!UU+ $E)!UUMڶ6lE)!UIB$E)!!IE)!I)()($)(H$)($I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1IE)(I$I$1I$I$1I$I$1I$I$1I$I$1 e)  H$E)!^UH$I$E)!^UUUI$I$E)I$I$E)I$IE)!UULB&%)zjI$!b'H$I$e)I$ E)$! E)!H%)ؠE)!I$I$1I$I$1I$I$1I$I$1 E)!$H$E)!I$Ie)I1I$IE) * I$E)!* H$I$E)!$1H$I$e)I$IE)!E)!I$I$1 $!!@I$I$!bVW%) 1 2$C2$!@I$$!b& E)! @$E)!z~ @$!I$I$!I$I!/ $I$! %)$!$H$$! &Iɖdf!- sf +-(hd , Hf~蠀# Z q~I4Z %$)UfI$I%i$!UUUPI$I$e)I$A$!!`pI $!!%5 I$IE)!* $H`$E)!$!!IȐ $!>A$I$$!!I$I$!! I$@$e)I$I$e)I$I$e)I$I$e)I$I$e)I$Ie)I$H$e)I$I$e) $!H$I$!I$I$*I !/@$@!`pI !-- I$I$$!!z\VI$I$E)I$H!WW0!I$I$e)I$I$e)I$I$E)I$I$d!d I$I$d!d  !H$I$!I$I$!I !/ I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$E)@$H$!`x\I$I$$!!I$I!! I$I$E)I$I$d!d I$I$d!d I$I$E)aI$I$d!d I$I$d!d !!I$I$E)I$I$d!d I$I$E)I$I$E) $!I$I$\VWUI$I$!Uյ !+* I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d H$I$!VW!I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d H$I$!zzZI$I$$!!I$I$$!!I$I$ b*VU!I$I$E)I$I$E)I$I$d!d I$I$E)aI$I$E)I$I$d!d I$I$d!d I$I$E)H!II`P--91qEim--,_ i5564-!iDZ++++41X$I%41I$%41I%!I$I$E)@$H$!I$I$I$I$?/I$I$!A$I$ a`pI!A /I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$!! $@$!I$I$!^^WWI$I$!AI$I$! !*  @$!I$I$E)aI$I!!*I$I$E)I$@ !AI !b% I$I$d!d I$I$d!d I$I$d!d @ ! !*I$I$E)I$I$E)I$I$E)H$H$! ! H$@$!I$I$!  E)//  $HE)%%% IIPH+** qW1iP%-/ yS7fq--- --+3- ݰ 43IIDZ***44I$I$%44I$I$%4 0'$!`p\ $ e)I$I$e)I$I$e) H$e)$H$!a $I$$! $E)I$E)!W$I$%)!zlٖmP$) 11`P---- 19fq-----! ----41ɐ ɐ DZ****44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%41`DZ8e)`I$15I$I$9!I$I$9!H$H$1e)1E) I$I$9!I$I$9!"i$A1`I$If1I$I$9!I$I$'9#I$I$'9#dB& 21E)ࠠI$I$@!  e)E)@H$H$E)!TT\PI$I$d!d  E)!-%5Ie)E) I$I$1"@1E) I$I$1e)I$I$9@$ 9I$I$f1e)I$I9 1@1E)I$I$1E)P$@ e)bPTP@ 1 % I$I$9 1%)ꪪI$I$1 @$Ae)E)ࢂI$H&E)!WT|XI$I$E)! e)!//?l6`e)!@Ie)!  1&I$I$'9#I$I$'9#H$H$1e) 1e)**I$I$9! 1@I$I 1U$1E)1e)I$I$'9#I$I$'9#@ 1e)k$@4e)!! E)!/ I$E)!/ 1E) /I$H$9I$I$9I$I$9dB& 1E)1E)I$I$9II9H$ 1E)ꪪ@!I$I$9I$I$9I$I$9I$I$9K&@4e)!I$I$e)ItIe)!/?e)$!I$I$9I$I$9II1e)I$H$9 9I$I$'9#I$I$'9#@ '9#I$I$9'9#I$I$9"H$A1$!`I$r E)bUָ$! I$E)!??1E)I$I$1e)I$I$1E)ꫫI$H$1E)@!I$I$9I$I$91E)ꪪe)1E)I$I$9I$H$1"I$I$1"$@$e)E)Z\XX$I$E)\W\ e) I$I$f1e)I$I$9I$I$1E)I$I$1e)H"%f1apf1b P(f1P@@I$Ie)UII$e)E)9@$1E)^zL&`0E)!I$I$$!!U4II$E)!?? e)!I$I$9I$H$e)E) I$e)E) I$I$@!e)b@I e)b e)@IE)b,U00f1$!*I$I$@!H& e)E)TPpI$I$1I$@$1!I$e)E) U9I$1E)ꪪI$$&1E)I@!I$I$9I$I$9I$I$9I$I$f1e)ꪪ)H1 jI$IE)U ,@$E)pX  $!b %I$H$$!!I@%)e)$!I$I$e)E)I$I$e)E)?e)E) 8e)UUUH$I؂8e)I$H8U -W `8* wR!y1* BC$I$EE)PTUU1E)H01E)VZj)(LBHe)E)Te)E)-@$1E)U@1E)ꪪ$I 9e)b` IHE)b P$'v"e)!TUT  e) I$I$9I$I$9I$I$9I$I$9I$1E)W^zI$I$e)E)ۆm$E)a`lI$E)b5@ $1I$I$1H0E)XE)I$e)E) U@ e)E)I$H 1" @ e) I E)?I$1"@!I$I$@!@ $e)E)I$e)E)UV@I$I$e)E)UUUTIe)E) H E)$!I$H E)!I$I$E)$!@ E)!ꪪI$IE)!*$I$E)! $E)! I$$e)E)UW`I$H$1 $I$e)E)%UUUI$e)E) U$A$e)E)=I$I$1"I$I$1"I$I$1"I$I$e)E)I$I$e)E)I$I$1"I$I$e)E)@$E)bTe)$!I$I$e)E)I$I$e)E)I$I$e)E) E)!@I$e)! 5I$1"I$@e)E) e)E)H$e)$!I$e)E)U] I$Ie)$!LBE)!IE)!WI$$@E)!U~IҶۆmE) UWI$ E) UU*I$m;E) UU_I$m `E)!UUUI$$ E) UUUI$dE) UUUI$I$!I !H$!I$I!I$I$!PI$I$! @ P!7qSqw%X/--)SE--3)` R )412,6`DZ1H$H$$!TTTPI$IE)!U* IB E)!U I$E)! @$I$$!0U0E)H1 I$I$1 I$I$1 I$I$)(I$I$)(I$I$)(H$H$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)!*I$I$1I$I$1I$I$E)! $E)!z I$E)!jWUH$I$E)!VUUUI$I$E)aI$I$E)I$IE)!UUIE)! E)!@$I$E)$!$!IE)!I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1$E)!@$I$E)$!I$Ie) 1۶m2$%)@PmId%)a=I$I$1 H$1I$I$e)IE)!I$I$1I$I$1I$I$1I$I$1`%)$E)!H$I$e)I$IE)!I$%)@P$E) H$!bI$I$$!BI$I!/ $I! IE)!$H$E)!I$I$e)II$$!!#LI$f$!U, .f /-(,@  -`fz&3 %y~Cc f`_~ >cq$)UZhuI$YTI$IE)!* 0 C2E)!I$I$e) 1@$I$e)I$I$$!!  I$$! `$I$$!bTUT$!bI$ $e)I$H$e)I$I$e)I$A$e)I$I$e)$I$I2$!$I$$!I$I$!I$I!? !I$I$d!d I$I$$!!sZI$I$E)I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d  !@I$I$d!d I$I$E)@$H$!I$I$$!bI$I!! $!I$!I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$d!d  !H$I$!^WUUI$I$$!!I !5 I$I$E)I$I$E)I$I$d!d I$I$E)I$I$E)I$I$d!d $!bI$I$d!d I$I$E)aI$I$E)I$I$E)I$I$E)$!@$I$!zZVVI$I$I !- I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)@!0I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d  @$!I$I$!^VWUI$I$$!!I$I$!յI!VI$I$E)I$I$E)I$I$d!d I$I$E)I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$E)a!I$AH!WqaP---- 1u7qfi---/-` ---4/ DZ++**43@ %43 %4 DZ%Y@ I!A/'  !I$I$!I$I$I$I$ I !/+@ !` !I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I!**I$I$E)H$I$!~I$I$!AI$I$!AI$I!!@$H$!I !**@!I$I$E)a$H$!AI! 5I$I$E)I$I$d!d $!!I$ !$I$!V! I$I$E)  !I$I$E)a !@$I$!I$I$!@E) I$I$H%)  !XH'yww%yX-/%1Sd %y-++1%)uN )++ 31 43 DZ 44I$I$%4 DZA@,H$I$I$I$!! I$e)I$e)I$@$e)@$$!ap$ $! !$@!a`$$ E)lVlP$! qqaP---- 11fq--m/ ɑ%q 4# 䧱T44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$% mökAE!I 15I$I$9!I$I9!dB&01E)II1e)***I$I$9!I$I$9!II9!I$L$1E)1E) I$I$9!I$I$9! C$I1E)I$I$1e)e)E)dB&$2E)!Pp`I$I$d!d I$I$$!!/??! e)! I$H$1"i[91z4II$1?1E) 1e)**I$I$f1e) 9@$X,1P\X`)1b % @$@ 1E)ꪪI$I$9I$I$1e)I$I$9I$I$9H$H$1E) Ie)%) [%[-E)!PpI$I$$!!**II$E)!?$c'E)z e)@I$IE)bU1E)I$I$'9#@ 1E)II$1e)I$I$9!I$I$9!I$I$'9#I$H$1E) 1e) I$I$'9#I$I$'9#I$I$'9#[-؂1$!$%)pkvE)ِlɖt1!+//@$@ 9I$I$9I$I$9@$ 1E)I$I$1e)I$I$9I$I$1e)1e)I$H$1E)I$I$1E)I$I$9I$I$9I$I$9 e)!I$I$e)I$I$$!!(( )1$!+I$I$9I$I$91e)@ 1e)II$91e)I$I$'9#I$I$'9#I$H$9I$I$9I$I$9 I$9"# 1$!j訠I$I$E)!I$I$$!!tf1!+)I$I$1E)ꪪI$I$f1e)@ 1E) I$1E)I$I$9I$I$9 0 f1`I$I E)b5 I$@!I$I$@!@ @!I$I$1"@ e)E)P@@%)P $I$E)!/e)!I$I$9I$I$9I$H$1E)H%@e)a\pIK$ f1b% I$I$91e)LB&`1E)(1b9E)@P`Ie)b5$2 1!ꨪI$L&E)!I$I$e)! E)! / e)E)e)%)I$I$e)E) e)%) I$I$@!I$I$9I$I$9H@e)4I$I$1%)1E)I$I$@!L&`0e)E)VXX`I$ 1I$I$1$e)E)%I$I$9C $@1E)ꪪI1E)I$I$1e)I$I$9I$I$9I$I$91E)ꪪI$H$1E)@ E)a` IHe)I$H&E)! I$E)!$AI$E)! *E)! I$A e)E)۰m۶-E)!@@1I@E) m۶ P8*IvXH++/%yX/ \2$H$%ye)PPTUI$@ e)E)I$I$e)E)? 1E)H 1E)$I 2e)E)xx$I$e)E)BUI$I$e)E)UUUT 1E)p8 e)bX`IH$@E)b5 @E)! e)%) I$I$9I$I$9I$I$9I$I$9I$I$@!@ 1E)^z#HE)IlE)b5I$H$1I$I$1I$I$1I$I$1I$I$1 I$e)E)%UU@!e)E))I$e)%)$Ke)I$I$1"I$I$1" @!@!I$1"I$I$e)E)!I e)E)I$I$)(I$I$)(H e)E)Vj+I$@e)$! E)!E) @$@E)!! E)!+$I$E)! I&$e)E)UXI$He)E)UUI$I$1I$e)E)UU$e)E)]I$I$e)E)/I$I$1"I$I$1"I$I$1"I$I$e)E)I$X E)bUT0E)bI$I$1"I$I$e)E)I$I$e)E)e)E)zIe)!5I$I$1"I$I$e)E)I$I$e)E)I$I$e)E)I$I$e)E)* I$I$e)E)I$I$e)E) * I$I$e)E)I$I$e)E) * @e)E)\Ie)$!I$I$e)E)*e)E)pI$e)E)UUI$e)E)UUI$e)E)UU۶m%E)apۖm E)b 5I$e)E)UUM&XE)VXɖmE)  PE) /SqW%yX--%N1S%y+/--1&`  ++416`DZ 3P$@(E)PPP@ X$E)ap\0 E)a I$I$1 XE)I$I$)( @$E)pX E) %I$I$)(I$I$)(I$)(I$I$)(H$H$1I$I1I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!*I$I$E)$!I$I$1$H&%)p\xI$!b % @$I$%)TUW@!E)I$I$E)a ! !I$IE)!UUIE)!I$I$1I$I$1I$I$1$ E)@I$I$!UI$I$1I$I$E)$!I$I$1I$I$1 $%)(I$I$E)$!I$I$1$I$E)!I$Ie)I1I$IE) *I$E)! @%[E)bpP`I $!b5@$I$$!b\V\$ $!  E)!I$I$E)$!I$I$1I$I$1I$I$1I$I$1%)H$I$e)I E)!E)!H&`B2$!bTP` $I$!bʼnI$I$bU<I$I!* !I$A! E)!$H$E)!I$I$e)I$I$e)I  e)@$I$e) dI$f$! UU, v1)-%$R+-!cf蠀)3 hE c fi_# %0j ɓ'bpE)UUXI$I$1 1 I2$!$!I$I$e)I$I$e)dH$I$!bI$I$e)I$I$$!!$!I$I$e)I$I$e)I$A$$!!@ @$!I$A !ꪪI$I!.! I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$$!!I$I$e)I$I$e)I$I$d!d I$I$E)@$H$!PTP` ! $@$!I$I$$!BI$I$$!B !I$I$E)!bI!I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$$!!I$I$e)I$I$E)I$I$E)@$H$!pX\WI$I$$!!I$I!յ5-I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d H$I$!bTUVXI$I$ bU !* I$I$d!d I$I$E)I$I$E) $!hzI$I$@I$I$bU&!+ I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)H$I$!jjZ^I$I$$!!I$I$$!!I !++ !@I$!$U!I$I$d!d I$I$E)aI$I$E)I$I$d!d I$I$d!d I$I$E)  !IIPH/++ 1S1iP---- 1Of%q----/" ` )+++41DZ 44I$I$%4A\DZE43 "!DZ!@@@@! H$I$!I$I$I$I$*I$I$ !* I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d  @$!pI$!A /I$I$d!d I$I$E)I$I$d!d $!I!+% $!I$I$!^^^^I$I$!AI$I$55I !//  !I$I$E)a! I$I$E)aI$I$E)H$@ !AII!b5- I$I$d!d  @ !@I$I$AI$I$ a --!* I$I$!a ! I$I$E)@$@$!II!***@$ !I$I$!IIE)5@%)UI$I$Q!@iS6e`P-yW7E`--/+1RdE-++3+1uKd ) 41ٰ 0DZ** 44I$I$%44I$I$%4=h'DZ!`pX\$!* I$I$$!! I$I$e)I$Ie)I$$!!dBI$!!I$ 0$! !@%)E)$!I%)b*'.P%!qqaP---- 1fq---- 10%y 4#+ 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4H$HDZETTT44I$I$%44I$I$%44I$I$%44I$I$%3K$x&f1VT\X I$1E)**I$I$9! I$9!$H1E)I$I$91E)41!p IJ1! HB&dB&1E) 1E) **I$I$'9#I$I$9!I$I$9! 01E)`d$e)hX[e)!訠I$I$d!d I$I$d!d !!E)! H$@ @!h5@ `E)x`I$Ilf1UU*A$ E)!10 1E)H$@ 1E) I91%)ꪪ1e)** 1e)X6e)!0f1! I$I$9I$I1e)dB2 1E)II$e)E)  e)!I$I$E)!I$A$$!!H$@$!b\X e) II1E)I$I$'9#I$I$'9#I$I$9!I$H$1e) 1e) I$I$9! 1E) @HW1!II$9I$I$'9#I$I$'9#I$I$'9#@$ 1E)ꢂL$`2E)\Xp %) II$1!? 1E) I$I$9I$I$9 I9I$I$1E)I$I$1E)I$I$9 1e)H$@ 1E)I$I$1e)I$I$9I$I$9I$I$9I$I$9K$h$e)!I$I$!!II$e)!/?I$I$1E)I$ 1e)II$1e)I$I$'9#I$H$1E)@$I21E) 1E) I$I$'9#@ 1e)I$I$9'9#I$I$1e)CH1E)ꪪK&[4e) I$I$$!!** I$E)!/@$f1E)I$I$f1e)I$I$1E)H$@$1E) @!I$I$9I$I$91E)I$H$1E)1E)I$I$@!I$I$@!I$H$1"H$@$E)!dH$AE)!:**@!I$I$9I$I$9A $1E)ꪪI$I$@! $I$1E)H$1e)  @$1e)@ I1E)ꪪ#I1$!z!@!e) &e)apXn%) I$I$e)I$I$e)mtE)! /e)$!H$e)E)I$I$e)E)***e)$!I$I$9I$I$99I$H$e)%) I$1E)I$I$f1e)@!L$L&e)E)WVTXIe)E)I$I$1@!e)E) I$I$9H$I$1E)ꪪI$I$1"1E)I$I$9I$I$9I$I$9@ 1E)ꪪI$I$e)E)I$e)E)([lE)!I$dE)!I$I e) I$E)!/ ݖnE)! R IHe?`&H8XXvmP8)w %yP+%C$%e)JRPTI$I$9I$I$9I$@ e)E)I$I$e)E)/ 1E)[ۆm1E)zjI$I$e)$!A e)E)Q5 $ 0e)E)`@I$1E)UU1E)I$1E)I$I$e)E)* $@!I$I$9I$I$9I$I$9I$I$9I$I$91E)꪿I$H e)E))(I$H$1I$I$1I$I$1$E)! I$I$E)! I$I$1.mӶe)!MIE)..I$Ae)E)I$I$1"$I$1",H$e)b^@e) @@!$e)$! $e)! I$H e)E)I$I$)(@$e)E) _WX%X-E)ppII E)b-5% I$I$E)!*I$I$E)!I$I$E)!@E)$!I$E)! $E)!Ie)E)UڪI$H e)E)UUWxI$I$1I$e)E) UUe)E)-I$I$e)E)I$I$1"II$1"I$I$1"I$I1"I$I$1"I$I$e)E) I$I$e)E)I$I$e)E)I$I$e)E)  4E)`+IE)b.I$Ie)E)* I$I$e)E)I$I$e)E)* I$I$e)E)I$I$1 I$I$e)E) I$I$1 I$I$e)E)I$I$e)E)**I$I$e)E)I$I$e)E)I$I$1 I$I$e)E)@E)b`IE)b% I$I$e)E)0e)!`(IE)&I$I$PE) 7Wy{iP//-- pS1wfq+/--/!p R+++-41ِ DZ **4 @E)@@@k5 E)bX` ۶mE) I$I$)(I$I$)(I$I$)(h5ۺ E)xIE)- I$I$)(I$I$)(I)( )( $I$1 &E)!^@!E)! I$I$1I$I$E)!`$E)hZ%) I$I$E)$!I$I$E)$!*I$I$E)$! E)!* IE)`$!I!b I$I$E)a$!@$@ !bp` I%)b-5% I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1e) I$I$E)$!I$I$1I$I$1 E)!jꪪI$L%)ז(E)!I$I$1IE)$! &%)h۶mE)  @$E)! I$E)!$1I$I$$! LB@E)^E)!I$I$E)$!I$I$1I$I$1I$I$1I$I$1 @$E)!jzI$I$!WW$%)*  E)!@$I$E)!WU$H$!I$I$$!BI$ !/$H$!b`X\$ $!b @$H$E)!I$I$$! *I$! d$I$$!b VV!$!I$I$e)I$I$e)$I$E$!UUU)PR))*- M$%yWU-&j$-3`f)~ mE_c fi_N:` $)Vj'K%`$!UUTP@ $!I!A$!5% H$$1I 1 1@$@$e)$@$!bpPP I$!b 5H$I$e)I$I$e)C&d$$!I$I$E(CI$! !&I$I$d!d I$I$d!d I$I$d!d I$I$$!!Օ% I$I$$!!*I$I$$!!I$I$e)!I$I$E)I$I$d!d ! $!I$I$$!BI$I$bp\\I !* I$I$E)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$$!!I$I$e)I$I$d!d I$I$d!d @$I$!b WW!I$I$E) @$!`XI$I$$!!I$I$!UUՕ ! I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d @!I$H!(!I$I$d!d I$I$E)$!H$I$!Z^VWI$I$!AI !*I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)$@$!I$I$I$I$$!!I$I$!Օ!* !I$H!b!I$I$E)I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$E)aIIH!I PH** 9uS7qiP//+ " 1S1u%y----;%qȱ-;1۰蹧44I$I$%4J DZE4c;( jjh@!I$I$!I$I$I$I$* II!// I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$E)I$I$d!d  @$!` I$!A /@ !`I!a% I$I$d!d I$I$d!d I$I$E)H$!x`I$I!A? @$H$!I$I$TVUUI$I$!AI$I$  !+*  @$!I !**I$I$E)I$I$E) !I$!A(!I$I$d!d I$I$E)I$!VI! I$I$E)@!I$I$E)I$I$E)H$I$! !  @$!I$I$! !E)-- @H$IIPH/++ qS1iP--/ ySfi-/+ /N -+4-!eRD DZ43DZ44I$I$%4` ,$1@H$I$fy!TWUUI$I$$!! --I$I$e)I$I$$!!I$I$$!!jI I%) LBA$!b0d0%)bbI$E)!$C0$!@!%) P%) qqaP---- fq----/"J ))))41ِ ِDZ*** 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%3<f1pppI$I$91E)I$I$9!I 9 L$H&1E) 1E) X'@1xXp `I1-%  1E)II$1e)I$I$9!I$I$9!I$I$9!``1E)`IĠe) A e) H$H$E)!^^^xI$I$d!d  IE)!-555!e)E)I$I$1"@$1E) [l1E)I$I1e) '9#I$I$9'9#I$I$'9#I$I$'9#X-l1$!訠a 1E)$I$ 21%) If1! '9#I$H$e)E) A  1"H$`$e) A$I$!  IE)!/%A$I1"I$I$1"@1E)I$I$'9#I$I$9!@$ 1e)II$1e)I$I$9!8 1p1%/ I$H$1E)1e) I$I$'9#I$I$'9#I$I$'9#[%[1E)^ZzjII$e)$!***I$H$E)ݐ t1! ++r$1\V f1 I$I$9I"%f1p e) I$1e)II$1e)1e)I$I$1E)I$I$1E)I$I$9I$I$9I$I$9@ 1$!zII$E)!I$I$e)) 1!+)II$1e)I$H$1e) 1e)@ 1e)&1!ɐ 1!//I$I$'9#I$I$9!H$@ 1E) I$9H$@$1e) I$1e)ɀ1$!h蠠I$I$E)!I$I$$!!ݐIde)!/? !e)b@1E) 1E) I$)e)1E)I$I$9I$I$9@ 1E)II$1"I$I$f1e)I$I$9@!e)$!$I$ 2E)!@!e)! /@!I$I$9I$I$9I$I$1E)I$I$1e)@21E)H$H1e)I1e) 01E)M$He)VUTL'6be)bz  Ke)b- L&`0E)!I$I$e) I$E)!/ ݐne)! I$I$9H$@ e)%) I$1E)I$I$9I$I$9I$I$9@ 1E)ꪪI$I$e)E)*$)R$e)bp\e)b %e)E)pI$d$e)E)W^Td e)E)\!AL$e)E) ?VUe)E)I$I$9d$I1E)@!1E)I$I$9 1E)jI$I$9dB0$H1E)ꪪI$I$e)%)A$I$e)E) *e)E)pI$H$E)!I$H$E)! H$!U$I$H8UUUtBڤ$ P8^ qr-Wi@+ pyI$I$@!I$I$9I$I$9I$I$9I$@ e)%)I$I$e)E)  1E)@1E)Zꪪ $ e)E)HL$e)E).WWI$H0e)E)UUTq!!I2e)E) 1E)LB&I1E)I$I$e)E)I$e)%) 9I$I$9I$I$9I$I$9I$I$@!I$I$9H$1E)_~I$I$e)E)I$)(I$I$E)!I$H E)!I$E)!+UUE)! I$I$1 A$IE)! @ e)E) %H$e)%)I$I$1"M$@ e)a^ Ie) e)@H$I%)b$UItiaE)!/ @!H e)E)dB& e)E)_^I$I$1 ۰mE) dB$A2e)E)^I$CE)!I$I$E)$!m۶-E)*jI$%)b,UE)!I$I$E)$!*I$e)$! @$e)$!I$e)E)UUIe)E)I$I$1$I$e)E) UUUI$e)E)UU$e)E)UI$I$e)E)I$I$1"I$I$1"I$I$1"I$I$1"I$I$e)E)E) @IE)I I$e)E) *I$I$e)E)I$I$e)E) I$I$e)E)I$I$e)E)* / e)4I$I$e)E)I$I$e)E) I$I$e)E)I$I$e)E)I$I$1 I$I$1 I$I$)(I$I$e)E)I$I$e)E)I$I$1 )(ME)7I$I$1 1X`P--%7qS1wfi--) L %qVV4-` !RDZ41X-,DZ/I$I$E)UUUTI$HE)!*)(I$I$)(I$I$)(%E))(I$I$)($E)!$ E)! %I$I$)(H$@$E)!dE) ^E)! I$I$E)$!I$I$1M$[E)VXɖmۆmE) I$I$E)$!$E)!jU0d$E)!ZUU`$I$$!!I$I$E)aI$Ie)!UUUIE)!յL$`%)^VX!2d2!BP@ I$!b 5 I$I$1I$I$1I$I$E)$!I$I$1I$I$E)$!I$I$E)$! %)@ I$E)U%)!I$I$E)! I$I$E)!  E)!j AL$!bTU%)I$IE) M$k-%)bXTX)lٶmE) 0@ %)p I!b %%H$IE)$!IE)! I$I$1%)I$I$1I$I$1I$I$1 &%)b@PH$%) I$Ie)d@E)>$e)  $I2E)@$I$!I$I$$!bI !/ I E)!տd0%)z$!I$I$!! I$!$1H@$!0$!I$I$e)I$I$$!!I$I$!!?E$!UUU-dE-wۧE -/ F)1&쳱Hz-3Hf_&  %y_c f`_ "ym;v'`$!UUUTI$I$e)I$I$e)I$I$e)I$I$e)dB&$C$!bPP@I $!I %)$! 2`$$!H $!I$H!I$$!bI$I!I$I$d!d I$I$$!!I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)H$I$!bVUT!bI$I$d!d  !H$I$!I$I$$!BI$I!z* !I$I$d!d I$I$e)I$I$d!d I$I$$!!I$I$$!!***I$I$$!!!bI$I$d!d I$I$e)H!b0I$I$E) !H$I$!^VUUI$I$$!!I !- I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$e)I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$E) !@$I$!z^I$I$!AI$I$! !* @$!b`X!I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$E) !H$I$!z~^I$I$!AI$I$!AI !+*I$I$E)I$I$E)I$I$E)I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)aIIH! PH qW1%yX--%1SE----1() p + 43DZ?4I$I$DZUUUT44I$I$%4$@$DZ!`PPP @$!I$I$bI$I$ I$I$A  ! I$I$d!d I$I$d!d $!! +I$I$E)I$I$d!d I$I$d!d !I!' I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$E) !I$I$!jjzZI$I$!AI$I$UՕ5II!+* !H$I$! !* I$I$E)I$I$E)!I$I!a(!I$I$d!d I$I$E)I$I$E) !**@$!p ! %I$I$E) @$!II!* !I$I$!I$I!?$H 0E)!zݖmmH !XH/yw7%yX-/&qwS%y-++1%t )+ 4 ,B$E@PP4 DZE 44I$I$%4%x$DZ$)pP\V $I$$! I$e) @$e)I$I$$!! I$I$e)$I$$!!$Ie)HI$e)$E)! E)  @%)a !P%)iP---- ppfq----/ )E J4 E44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4DZE4HHa@I$K$ie1UVTT 1E) I$I9!9 [`1e)I$9 I$ 11UI$I9!9 I$L1E)!$I1e) I$I$9!I$I$9!I$I 9!I$I$1E)f1E)jdB2 e)!zzI$I$d!d I$I$d!d  ݐ e)!H$H$1"@$1! >WH$1e) 1e)I$I$'9#H$H$1E) 9I$I$'9#I$I$'9#(@(1@P@IT1 %%%,1`X`` I$e)=1e)`& 01E) I$e)E) [-e)!$A$C&!p$! le)!I$H$1"! 1E)I$I$'9#I$I$9!I$I$9!I$H$1e)1E) I$I$9!K1!HH1! I1E) **I$I$'9#I$I$'9#I$I$'9#  1E)jm&k%E)!@$ E)! I$e)! +*r" f1X$IIf1$! I$I$9H$f1\pe)a%  1E)I$H$1e) 1! H$@ 1E)I$I$1E)I$I$9I$I$9I$I$9I$I$9M&h4e)!I$ e)$B&H&$!b@PTP 1 %)A 1e)II$1e)*I$I$'9#H$@$1e) I1e)I$I$'9#I$I$9!Ć1!WI$I$9'9#I$H$1e)B$@1E)ꪪtB:f1$!~I$I$$!!II$E)!@$[-E)bPTPB e)bI$I$9P$@(e)pTP@ f1 )*I$I$9I$I$9I$I$9I 8f1 hp`e) %I$I$f1e)I$I$@!H$@!@0e)!I I2e)!?$A!e)!I$I$9I$I$9 I$1e)I$I$9@$@ @!!@1E)$1e)H$I$1e)b"1H1$!Zhe)!I$I$9$ f1!ꪨI$L$E)!I$Ie)! $E)! /@$1E)I$I$9I$H$e)E) $1E)I$I$9I$I$9I I$9@$1E)@ E)p1` e)a I$I$1e)`$e)E)XPI e)E)L$De)E)TTR  e)E)%-I$I$9I$I$9$&C 1E)I$I$1"0 f1$! mnf1!1E)I$I$9@ 1%)ꪪ$)R1E)b@P@I E)bdB2$ 2e)!HE??I$I$I!HI ۰P8 qiP/.U2<%yE1 BPi$I`E)TUUUe)E)I$I$@!I$I$@!I$I$@!I$I$9H$e)$!I$I$)(I$1E)$CI1E)ꪪI$H01E)UUVZ  e)E)d&@B"e)E)_PPK  1E)UU$@!1E)`B$I1E)ꪪI$H$1E) I$e)%) e)$!I$I$9I$I$9I$I$9I$I$9I$I$9@1E)~ꪪI$H 1E)UW^)(I$@ E) I$E)!UI$I$$!!I$E)!5UE)!-I$I$1 $I$e)E)%UUU@ e)E)I$@!$I&e)P IIe)e)$$H$I2e)!$ e)I$I$@!I$I$@!e)E)@Ie)E)d$d2e)E)_W_pm۶-E)@I$e)I$e)$!IҤE)׾I$I$1I$I$E)!I$I$E)$!*I$I E)!I$I$1I$E)!*@I$e)$!*I$$e)E)UWI$Le)E)UUVI$I$1I$I$1$I$e)E)UUUI$e)E) UU$e)E)/UI$I$e)E)I$I$e)E)I$I$e)E)I$I$e)E) I$I$e)E)I$I$1 I$I$e)E)** I$I$e)E) E)@I$IE)bU,E)!I$I$e)E)I$I$e)E) I$I$e)E)I$I$)(I$I$e)E)I$I$e)E)I$I$e)E) @$I$E)bTUT00E)bI$I$)(I$I$)(I$I$e)E)* IPE)p7wE`---)SE+--3+p K 41`6`DZ1H$@$E)TTPPI$I$)(I$I$)(I$I$)(I$I$)(K$K%E)b\W\0E)a $)($IE)! $IE)!/@$I$E)!I$I$1I$I$E)$!I$I$E)!*I$I$E)!*$E)!* zI2E)!zUd$E)!\UU I!$!I$I$E)a@ !IH$I%)!UUUI$ e)!UUIE)! I$I$E)!*I$I$E)!I$I$1E)!ꪪI$I$$!bTUT@@E)I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$E)$!IE)a,I$I$E)$!*I$I$E)!I$I$1I$I$1L%)VI$ A2e)! `ز%E)`ؖlI$%)5I$I$1I$I$1 E) E)!+ I$I$E)$!$%)b`I$I$!b55I$I$1I$I$1 E)!H$ $!bTP@ $E)b%  E)!@$E)  I$$$!H$I$!I$I!I!/ IE)!$E)!@$I$E)!I$Ie) 1 1H$I$e)I e)I$H e)I$I$e)I$Ie) 11Il۶ e)*LEE)( tQ%i.1Nu;F 1 h1" h^ꨀ,3 iE~"  %q_# %1j I$q$)UVXI$I$e)I$I$e)$I$$!<@$I$e)I$I e)!b I$I$!I$I$E(C!!$!* I$I$e)I$I$$!!8I$I$$!!I$I$d!d I$I$$!!I$I$e)I$I$e)I$I$e)I$I$d!d @@$!TI$I$d!d I$I$E)@$H$!I$I$$!BI$I$! ! I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$$!!I$I$e)$!b@P@  !bI$I$e)I$I$e)I$I$E)I$I$E)@$H$!`X^VI$I$$!!I$I$b|I$! %I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$E)@$H$!I$I$!^WWUI$I$!UUՕI !)* I$I$E)I$@!bVX` !I$I$d!d  ! !I$I$e)I$I$e)!I$I$e)I$I$d!d I$I$d!d I$I$E)$H$!I$I$\VWUI$I$$!!I$I$!Օ! I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$E)$H$!bp\p! H   $AXH///yW1q%yX----(1OE-+ 3+1Kt ) 43DZ44I$I$&44I$I$%4@$@$DZ!PPPPH$I$!I$I$bpXpI$I$A I$I$ azI!A/ I$I$d!d I$I$d!d @ !ࠀI!/ I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d $!`I$!A $@$!I$I$!^WWWI$I$!AI$I$! !*  @$!II!**I$I$E)I$I$E)! 'I$I$E)I$I$E)aI$I$d!d I$I$E)I$I$d!d I$I$E)@$H$!x\xI$I$a II!a-/+/I$I$E)H$I$! !** $H$!I$I$!I E)%%0@H$?I$I$HAiS6e`P-yW7E`--/,1Sd E--+ 3+t ` 4!DZ@4!DZ 4 0DZEA`H$I$EI$!TWUUI$I$$!! I$e)$ $H$! $%)+ $Ʉ`$!`& %)@ %)a `& %)X`&dB$!P$E)!I$I$1P%) iP---- pfq----/) EJJ 4  DZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4 DZE@4DZEy54)HDZT44I$I$%44I$I$%44I$I$%4IIDZE41X-,DZ1r&5e1\Xp`II$1E)*** I9 II11+*** 11I$I$9 11H11I11L&@011VXPp I9!H9 I$9  9 Ȇ1` If17Օ 2 e)!I$H$E)! !͐dI$E)b7Օe)E)@M[E) 0dIDI1!I$I$'9#I$I$'9#@$ 1E)II$1E)*I$I$'9#I$I$'9#1e)j$IIf1)():1$!zILT@1&  I1e)1E)ꪪI$I$1" A 1"K$h5E)\xI !b%  Ie)!??A$ 1"II$1"'9#I$I$'9#I$I$9!H$@ 1E) I1E) **81p $ $!bII1b?.I$I$91e) I$I$'9#I$I$'9#1e) k5[m1!言 !@e)! I$I$e)E)UUUTې ِ1E)+H$@ 1e)I$I$9I$I$1e)H$A$1E)II$1E)8R#f1@p`[f1%)I$I$'9#I$H$1E)I$ $1E)I$I$9I$I$9I$I$9f1$!`ࠠI$I$E)! @%)`f1!-+/0P9f1x`K1 5%1e)1E)ʪP$I$f1b0WV`1!1E)jIī 1ֺ DH@1%) I$9@1e)  1e)*X`1E)|I$L&e)!I$I$e)!Ie)!/?1E)I$I$91E)ꪪI$H1"I$I$1E)I$I$9I$I$9#ɒIf1!`iSIE)% I$I$1e)I$I$9I$I$@!H$@$1"L$`$e)!Ie)!/?@!I$I$9I$I$9@$ 9I$I$9I$9H$1e)5k&1!x^^d@11! I$I$1E)I$I$1E)I$I$1E)ꪪ[ lf1!I$I$e)I$H e)$@$E)! *e)E)9I$I$e)E)1E)I$I$9I$I$9I$I$9H$ 1E)I$I$e)E)**** I!1E)I$I$9 0e)E)x``  Ie)E)% I2e)E)B$@I$e)E)/Ue)E) I$9IB 1E)'e)ax`I 1b=- I$1e)I$I1e)I$I$9f1%)x0E)b@%XtEAz^::HI$IPH6aH/ wN!%y1* @EE)TTUUI$@ e)E)I$I$e)E)? ,:e)`e) I$I$@!I$I$9I$I$9H$e)E)I$I$e)E)*!I$1E)$I1E)ꪪ$ 01E)]~zI$I$e)E)UUU$ 0H1E)W{kII1@$1E)U@$I$1E)ꪪI$@1E)I$I$e)E)  e)%) I$I$9I$I$9I$I$9I$I$9 0e)&IE)b+%%I$1E)W~I$I$e)E)H$)(d E)!xI$H E)!UU^`I$I$E)a$I$E)! UE)! I$I$1$I$e)E) UUH%۲mE)\PJ e) I$I$1"@%Xe)bx` e) 5% I$I$@!$@!I$I$@!I$I$@!@!d2e)!I" HE)&I$I$1 $e)E) U$E)$!ۆeH$%)b V۶mۖaE) $I$e)E)5UUU@I$E)!I$$E)!I$LBe)$!I$I$E)!!$I$e)$!I$e)E)UUH$)(I$e)E)UWI$@1I$I 1I$I$1$I$1I$e)E) UUI$e)E)UU$e)E)U$e)E)*U$A$e)E)I$I$e)E)I$I$e)E)I$I$1 I$I$e)E)****I$I$e)E)I$I$e)E)I$I$e)E)I$I$1 I$I$e)E) I$I$e)E)I$I$e)E)X ,E)E)!I$I$e)E) E)I$I$1 I$I$PE)7qw%yX/-%N/S%y++--1&`  ++416DZ 3@$ E)PP@@$)(I$E)!I$E)!$I$E)!H$I$E)$!I$I$E)$!I$I$1I$I$E)$!I$IE)! I$I$E)! I$I$E)$!$E)!$$E)!UHI$E) UU$I$!I$I$E)aI$I$E)a 0 C$!I$ E)!UUIE)!իI$I$E)$! I$I$E)!I$I$1I$I$1I$I$E)!*I$I$E)$!$E)p` E)+ 5I$I$E)$! *I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$E)$!*I$I$E)$! I$I$E)!I$I$1I$I$1I$I$1I$Ie)$!* $e)$!  d$E)!%)!jꪪI$$!5I$I$1I$I$E)!*I$I$E)$!I$I$1I$I$1I$I$E)$!E)!I$I$1 @$E)!Ie)d$H&%)XTX`I$I$bUU!IE) @$!I$I$!I$I!  I$I!  E)!$E)!H$I$e)I$Ie)E)!I$I$1$1I$I$e) 1@$I$e)I$Ie)@$I$$!b0WV@!%) I$IE) *  H$E)! I$I$X%)UUUpE)*+-%#iߕf[16w뻧F'3 DHɐ䧱%3)#֒(H~/I_) iE_Z fi_u6c)Zj ?a!UUT@I$I$b>$$AE)!$@&$!bppI$I$!%-@$!I$I$!W$$!I$I$e)I$I$$!!I$I$d!d I$I$$!!/++*$!I$I$e)@$!a !I$I$d!d I$H!bUV !$@$!I$I$$!BI$I$$!BI!/ I$I$E)I$I$e)I$I$d!d I$I$$!!?I$I$$!!I$I$$!!I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$E) @$!pxI$I$$!!I$I$@I$I$ bUU&I !b%)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d  !I$!(W!@$H$!jzZ^I$I$!AI$I!! I$I$d!d I$I$d!d I$I$d!d I$I$d!d @ !`I$I$!bՕ!$@ !b`I$I!b5յ.I$I$e)I$I$d!d I$I$d!d  !I$I$!zz^VI$I$!AI$I$$!!I !)+ I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)a@!@ @$@HXH///yW1qE`----)1p E---+3, 44I$I$&44I$I$%44I$I$%4@%H$DZ PPTTI$I$$!bI$I$@I$I$ !+* I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)@ !`I$H !էI$I$!zI$I$!AI$I$UUUI$I!+I$I$E)@$H$! !*** I$I$E)$@ !``I$I!a//I$I$E)I$I$E)I$I$d!d I$I$d!d  !I$!@ !`I$H$!ZxI$I!A//   !I$I$E)a!H$@$!I$I$! @E) ` H!5% IIPH*** {yuiP-// ySfi-/+ /N )+4/ P DZ44I$I$%44I$I$%4Ѓ%r$ǹ$)pX\VI$ $! I$ $e) 1$1$%)$!I$I$1 %)@@ 0aB2!A  $!a I$I$1I$I$1`&E) $PE)iP---- fq----/" ----41DZ 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4 DZE@@4IDZE4)H DZT44I$I$%44I$I$%4@$DZEPP4DZE43 DZ3 f1`I$I$9 ِm1e)I$I$9!11I$H$11 I11 //I$I$g9*I$I$g9*11`I$I$9!I$I$9!I$I$9!I$I$11۲ۆm1E) e)a&@$e)E)LB&`0E)!I$I$e)I$AE)7**!!e)E) I$I$1"!1E) /I$I$'9#I$I$'9#1e) *I$I$91e) I$I$'9#I$I$9!H$@$1E)k$he)!X\! 1$! I$I$9 1e)L$`B&1E) I1"k5X5e)!II$! I$I$e)0 e)!I$H$1"!1E)I$I$'9#I$I$9! 1E)I$I$91E) 1E)  1E)L$`$1E) 1e) **I$I$'9#I$I$'9#I$I$'9#@$@ 1e)$@!H$@B e)$! I1!/ 1e) I$I$9I$I$9I$I1e)I$I$1E)I$I$1E)!f1%)  1e)@$@ 1E)I$I$1e)I$I$9I$I$1E)I$I$9I$I$9K&@4e)!E)$!$I$E)!*??@`Pf1!`1` f1 I$I$'9#I$I$'9#s YHf1  I1E) **I$I$9!I$I$9!1E)I$I$1E) 9@$H$1e) 1e)*#: ц1$!zzI$I$e)I$I$e)ِ1$!*I$H$9I$I$9I$I$1E)I$I$1e)I$I$9I$I$91e)I$H$1E)I$I$@!I$I$9I$I$1e)ꪪI$I$@!@ e)!I$I$E)!e)  /I$I$9A$I$9I$I$9I$@$9I$I$91e)1!x1E)@$9I$I$@!I$I$1e)$C2$I1E)zm6[E)! $Ie)I$Ie)! E)! 1E)@ 1E)I$I$e)E) 1E)I$I$9I$I$9I$I$9H$ 1E) I$1E)$ 1E)I$I$9H$ e)$!$H$I&e)E) ^I$`e)E)UU\!!Ae)E) -/I$I$9I$I21E) e) 1E)I$1E)I$1e)H$1e)I$I$9&i 8f1UUUmIdH%)*I$IPH6e `H/{6EX/B$I$%y%)PTUU I$E)! * I$I$e)E) I$A e)E)h$X,E)XX1 e) I$I$9I$I$9I$I$9I$I$9@$Ge)I$I$e)E) I$1E)$ $1E)mۆm1E)W@$He)E)WWdB0 $1E)~I$Le)E)UWV@a$1E)UUېm1E)L&I1E)I$I$e)E)* I$e)E)9I$I$9 e)E)  e)bAe)=I$I$9@1E)I$@ e)E))(I E) I$E)!WxdH$ E)!UUU^I$I$$!!UUU $E)! UI$E)!I$I$1$I$e)E) UU$e)E) $He)E)@I$I$E)!TWPe)!H$H 1" I1"@$@!@$I$e)E) L$E)a8e)E)$e)E)hdB2 e)E)_~I$He)E)UUWI$[lE)W0۶mE)$e)E)z-UI$E)!I$I$e)$!I$I$E)$!*04k$E)b`XT")A!E)I$e)$!*I$He)E)UUW$I$ 2E)!`nME)I$E)! HH$)(I$e)E)UYI$e)E)UU I$1E)I$I1I$I$1I$I$1$I$1$I$1I$1I$e)E)UU $)(H$)(I$)(-E)@ФI$E)bUE)!X&@E)xx)ݶmE) I$e)E)UU%k5E) `XTXmE)!  IPE) 7Wy{iP//-- pS1wfq+/--/!p N+++-41ِ DZ **4 E)@@I$I$E)$!I$I$E)$!I$IE)$! I$IE)!I$E)!I@$E)!IA$1a6E) ^ضmk$E)I$E) zUU$I$$!I$I$E)aI$I$E)aI$I!*I$ IE) UU/I$E)!U/!IE)! E)$! I$I$E)! 2%)hE)!I$I$E)!I$I$E)!*I$I$1I$I$1I$I$1@0E)pIE)5 I$I$1I$I$1I$I$1I$I1I @$E)$! I$I$E)!I$I$1I$I$1I$I$10`$%)b`XT$e E) &I$e)$!I$I$1I$H$$!!TV $!!I$I$E)!*I$I$E)$! I$I$E)$!I$I$1I$I$1 E)!L$E) C&E)hZ@$$!I$IE)$!  E)!j E)bL$I$!* H$!I$I$ I !+!I$A%)! E)! @$E)!I$I$e)I E)!I$I$1 E)!I$I$1@$H$e)I $e)@$I$e)I$IE)! E)!H%)0!I$IE)!* $H$E)!  E)!$!!?$%$!UUU"PN-ve1 ))Mfڊ+/mX"@fX1 )ۧ 3 iEy@@@1 HEy%%-3Hf_&C i%y_~Rc fa_I" y)UZ H$E)!~_H$I$$!I$I$!$!* I$@$!W $!$I$&$!a` !b I$I$$!!/ @ !`I$I!/5I$I$$!!**I$H$!bVWܰ! $@ !`p I! %5  @$!I$I$!I$I$*I !/ I$I$E)I$I$e)I$I$d!d I$I$$!!?I$I$$!!I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$d!d  !`H$I$!bI$I$$!!I !% !I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)I$I$d!d !I$H!W($I$!jI$I$\WUUI$I$!յI!** I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$e)H$@ !X\p ! I$I$d!d  ! I$I$d!d I$I$d!d I$I$E)@$@$!zI$I$UUI$I$!AI$I$!! I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d $H$!bx\I! -5I$I$E)I$I$d!d H!`P&\ɕEH+555,1O f----4-!R! 44I$I$%44I$I$%44I$I$%4H$H$DZTTTTI$I$$!bI$I$$!bI$I$ a(!I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d  !I$I$E) @$!I$I$!~^^_I$I$!AI$I$! !**  !I$I!!I$I$E)aI$I$E) !I$I$E)aI$I$d!d I$I$d!d I$I$d!d !I !** I$!H$!Z! @$@$!I !**  !I$I$!I$I%)յ50E)`!H  !XH//yw7%yX-//&qR` %y-/+ 1&t )+ 410DZ 44I$I$%4@ DZEQ@H$I&%A$!TUUWI$I$!!" $!$$H$!b I$ $! $II$%)zE)!I$I$1 E)$!I$I$1$IE)!շE)!dH A$! P%!iP---- f$q----/"  ----41DZ 4` DZE@@4IDZE%%44I$I$%4/4DZǩ4/DZǩ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4-DZ>4PLDZEP4 DZE44I$I$%4#hH@-I$J%e1UVVX! 1E)$ 11+ % I$I$g9*@$@ 11I$I$11/I$I$g9*I$I$g9*I$I$g9*d 11 11/I$I$11@11$C 211hI$H$1E)I$I$@![5؊E)!I$I$e)I$I$e)mnE)! H$@$@! I1E)/?I$I$9!I$I$'9#I$I$'9#H$@$1E) I9I$I$'9#I$I$'9# 1E)I$I$9'9#H 1e) 5h"5f1`X`K1 I$I$e)E)(( 2Ie)E)@@I$H$E)!I$A e) e)!?f1e)II$1E)I$I$'9#I$I$'9#I$I$9!H$@$1E)$I$1e) 1E) *I$I$9! 1E)I$I$1e)1e) I$I$'9#I$I$'9#I$I$9!L&@ 1E)(J$E)bTU%)b ِn1E) )-I"%f1@P$I 1 I$I$1e)H$@ 1E)I$I$1E)I$I$9I$I$1e)1e)I$I$1E)(P(f1`X`Ie)f1I$I$9 1$!蠠I$I$1H$@$E)!1$! $Ad$1E)W '9# 1e) 1e)*I$I$91e) I$I$9!I$I$9!@$ 1E)I$I$91e)H$1e)*P$I$1\W\ $!b I$I$e) I$E)!?ݐ1E)I$I$9I$I$9I$I$f1e)I$I$1E)I$I$9 I$1e)@'9#I$H$1E)I$I1E)p$e)XVe) I$I$@!k&@e)!I$I$E)!0e)! I$I$f1e)H$A1e)II$9I$I$9 I$9I$I$'9#I$I$'9#I$I$'9#I$@ 1E)I$I$1e)I$I$9LB&$C1E)~L&`$E)!Ie)IIE)!?$!f1E)1E)I$ 1E) I$1E)9I$I$9 1E)j$1E)ꪯI$H$1E) I1E)I$I$9I$I$9d$`$e)E)_V\P Ie)E)I e)E)  $e)%)$e)bpĉf1b%% I$H$1E)I$I$1E)I$I$1E)I$I$1e)@I$1e)@j۶H1IH8%I!XH/w %yP+.S&2$EE)jZBPI$I$E)$! I 1$I$E)! $A!e)$! I$A1"I$I$e)E)   f1 I$I$9I$I$9 e)!@N$Ne)bU8f1 I$H$e)E)I$I$1E)I!1E)@ 1E)ꪪ$C&d&1E)___^$ e)E)5I$@e)E)UV!I$1E)UUU1E)`$@1E)ꪪI$L&1E) $I$e)E)* e)$!$@$e)b@PPPDIDE)bI$I$9I$I$9I$I$9I$I$9H 1E)^I$H 1E)UUWz)(E)!`I$E)!UV`I$I$$!!UUUT $I$E)!%UUUI$E)!5U$ E)!I$I1$e)E)W[0me)!0I$I$9I$I$@!$@!I$I$1"۲ 0e)!@I$he)bU8 @e)I1"$e)!PI$I$@!de)E)_I$e)E)UWpI$I&e)E)UUUXI$I$1$ 2e)E)}`HI$e)E) Uk40E)X`ٶmE)$H$%)b\W۰mٖnE)b 2l۶mE)@IE)bU I$@$E)!I$If1$!/I$L$1E)UUUZ  e)E)%uض-۶mE)@I$IE)UI$)($I$I2e)E)k@H$e)E)_UIB&@e)E)U^ I$e)E)UU(I$$e)E)UUUI$LBe)E)UUWI$ e)E)UUI$H1I$I1I$I1IE),E)I$I$)(I$@)(I$I1$C$ E)!jI$I1I$Ie)E)UUU1X`P--%~"/EaKKK-- ` $q4-` !RDZ41,,DZ1I$H$E)UUTT@$$E)!~ $E)!U@I$E)!WU$I2E)!xUU$I$E) UUU@$I$!I$I$ @pI$I$!bյ/I$I!I$ IE) UUU I$d E)jIIE)b5 IIE)!-I$I$E)!H$I$E)!I$I$E)$!I$I$1I$I$E)!d$`0E)bXVX`!E) I$I$1I$I$1I$I$1I$I$1E),I$I$1I$I$1I$I$1I$ 1I$H$E)! I$I$E)!I$I$1I$I$1I$I$1I$IE)$! I$e)$!*[-۶mE)P@!@%) I$I$1I$I$1I$I$E)! I$I$E)!*I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$E)$!%)@I$H$!bU,I$$!bVP@ %)I$I$1 E)`I$H$!U@$I$!I$I!*I$!/I E)! E)!$H$E)!I$I$e)IE)!I$I$1I$I$1&H&$!b@PTP$ %)b % $E)!I$I$e)I$I $!!@L$%) >WUI$E)!$I$E)!  $H$E)!I$I$1@$ $!!@P@ $I$! * I$I$e)ɐdI$%y!UU%PN.f9 )/Isf *3 b,铰I3$S2" Ejjh@3 IPE%%,H'_EyVW1"h^ꨀ,3hE~ꨀ" ~ mqI$K%E!UVTPH$I$!I$I$!?  $E)!I$I$e)I$I$$!!HB&$C!bX`I$!b5 I$I$$!!*I$I$$!! $!I$I$$!!ZTI$I$d!d I$I$d!d I$I$d!d  !H$I$!I$I$ I$I!? !I$I$e)I$I$e)I$I$d!d I$I$$!!I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d @$H$!b`PTZI$I$bU%I$I!//!I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d  !@ $!bI$I$!Z^VUI$I$UUUII!*I$I$E)I$I$d!d I$I$e)I$I$d!d  !@I$!b$U!I$I$e)I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d  !H$I$!z^^VI$I$I$I$W=5I !+ I$I$E)I$I$E)I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d @ !p ! I$I$E)I$I$E)@HII`P%--quS7qei5----pf/- 4/ DZ44I$I$%44I$I$&44I$I$%4H$J$DZTTTUI$I$$!bI$I$I$I!bU׾ !I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d $!I$!A ?I$I$d!d I$I$d!d I$I$E)@$H$!AI!A /@$H$!zI$I$!AI$I$!AI$I!I$I$E)@$H$!  !*** I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$E)I$I$E)I$I$E)aI$I$E)I!*I$I$E)I$I$E)H$I$!! @$I$!I$I$ 訪Ilɖ`E)5-@H!5I$IPHqgwv`P--yww7E`-/+,1N` E-++ 3, 43DZ44I$I$%4@4DZ$!``IdB&$!`H$$! I@$!'$@$e)@$I$e)$!IE)!IE)$!I$I$1$H$$! $@!@E)*E)!IE)!YA۶P$)iP---- f$q----/"  ----41DZ 4)DZ@4DZE44I$I$%4@$@DZEPPP4DZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4I$IDZEUU44I$I$%44I$I$%44I$I$%41,`DZ1(e1XP`@I$1 71111  11I$I$9 11 I$I$g9*I$I$g9*@$ 11II$11??H$@ 11 11 C2$I11`j*@$@ 1E)@$e) ؊ؖae)!I$L$E)!I$I$e)  E)!// 1E)I$I$1"1E) I$I$'9#I$I$'9#@ 1e) I$I$91e)I$I$'9# 41`TKIf1b ? -Z$e)bp\$Hf1b ۲m1E)j 1!I$H$1E) @!`0 0E)!$E)! Ie)!?f1E)He)@DIe)U1e) *I$I$9!@ 1E)I$I$9!I@1E) I$H$9!I$I$9!H$@$1e) 1e) **I$I$'9#I$I$'9#I$I$'9#1E)L"IE)bTaB$C e)! Ie)! ++H%@e)bTP@ɐI$I1% I$I 1e)$Af1@IE)b U6l 1E)I 1e)I$I$'9#H$@ 1E)ꠠe)E)f1H$L1TWV@f1 I$I$1E)ꪪL$`$e)$! E)!ꪪ $IE)!//$I$1E)UU!I$A1E)I1e)I$I$'9#H$@ 1e) I$1e)**I$I$9!I$I$9!𐤆1,I$H$9I1E)**I$f1pR"If1 $#1f1$!I$I$e)I$I$e)Itf1$!+@$ 1E)I$I$9I$ 1E)ꪪI$I$@!I$I$1E)I$I$9I1e)@$ 1E)ꪪI$I$@!r"ق$Ie)X0f1! I$I$f1e)e)E)@I$K&E)!_V\PɐI$E)!5U1E)II$1e)I,9f1!x6lۖmf1$!I$I$9 1e)I$I$'9#I$I$'9#I$I$'9#I$H$1E)I$I$1E) $I$1e)  f1!ꪨIB&L&E)!  1$IE)! /@!1E)I$I$f1e)ꪪI$@ 1E) I$1E)I$I$9e)E)`I$1%)յI$I$1E)ꪪI$H$1E)$I1E)I$H$9e)$!!I e)E)( Ie)E)*$I e)E),%r"'E)xx  f1 -)AI$1E)*I$H$1E)I$I$1E) Hf1UUU$I$Hf1I$I$HH *I XHU ɛ/e $qP/ ys.U fi+ H$I$fe)TTUU$C$ e)E)x e)E)h @$E)pp I$E)5$ e)$! H$I$e)E)H$K&E)\W\!`Ie) I$I$f1e)I$I$9I$I$9I$I$9I$I$1E)ꪪI$@e)%)I$I$e)E)* 1E)[m6`1E)zIB& 01E)UW^z I$e)E)%5ULB&$e)E)VPI$H$1@!$1E)U f1 @ I$e)aE)@")(IE)bP@I e)bI$I$9I$I$9 e)e)$!I$I$9I$I$f1e)ꪪl f1!@I$E)a(`E) L&`0E)!|I$I$$!!UWp`I$I$E)I$I$E)!5UUUI$E)! E)!  $H$1$I$e)E)UU@$e)E)/ e)%)@$e)0$I$e)E)II1"@$H$1"I$I$1"h$h5E)^X@e) I$I$@!I$I$@!I$I$@!Le)E)TdB2 e)E)_I$Ie)E)UUUI$I$1 $I$1HE)b\0mE)IB$e)E)U I$@e)E)UUPI$@ e)E)UU_`I$I 1$I$e)E)>UUU@!C&e)E)y^LH!$e)$!( `ؖe)!I@1E)Uի$C21E)_I$Ie)E)UU!Ae)E)- dB&d2e)E)\_^xI$I$1!!Ae)E) 5 $H$@!$@$e)E)^^^I$I$1I$I$1$H2$IE)!H$H!TUTÖmݶmE)I$I$E)!I$I$E)!@$I2E)!۰ m$e)!lm$e)!_`R!RX$) p7wE`---)SE+--;+wywȱ43  DZ1H$@$!TTPP@$I$!I$I$E)a$A$!$! I$LE) UUUI$$E) UU-I6lE) UImE) U!I$@E)$!+ IH$E)!H$I$E)! %)I$I$1I$I$E)$!*I$IE)! I$@$E)!I$I$E)! **I$I1I)(I$H$1I$I$1I$I$1I$I$1E) @I E)U׾(!I$IE)!I$1 X$E)axmɖdE)b-I$I$1 @0%)p!I%)b /%I$IE) I E) $I$1I$I$1E)!I$I$1I$I$E)!*I$I$E)! I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1H$HE)$!IE)!*  E)$! $I$E)! $$!H$I$!I$I!*  I$IE)!IE)!$E)!@$I$E)!I$IE)! E)$!@$I$%)WV@!@$!I$I$1$$!@p$%) H$I$e)$I$@&E)*Z%)%LH $!(I$ E)!/ $H$E)!I$I$1I$I$1$H$e)I$I$e)I1@$!!0PI$%$)%U& `N/%y +1 PNw +1$H$EyTTT4z$H$E\TTT3IHE3/ ǩ3)#Hz1 3 m~)c%( PP@@I$I$!* !A$H$!H$I$e)I $e)H$I$$!!I$I$$!!+ I$I$$!!I$I$$!!I$I$$!!*I$I$$!!I$I$E)I$I$d!d H$H! !@$I$!I$I$`I$I$b %!I$I$d!d  !I$!*H$!b0\W!I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d  @$!`x^I$I$b@I$I$!UUՕ ! I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d @$ !pI$I$b5I$I$!AI$I$! !* I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$e)I$!b$ I$I$e)I$I$e)I$I$d!d ! I$I$d!d I$I$d!d I$I$E)@$H$!zzI$I$$!!I$I$bTUVI$I!++!I$I$E)I$I$E)I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)IIPH/qWqiP-- 1uSpfi--/+/ Rt ---+?1ɝѝ蹧44I$I$%44I$I$%44I$I$%I$I$b`PI$I$b %5I$I!+I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)@ !`@I !?I$I$d!d I$I$d!d I$I$E)aH !  $! I$I$!z^^WI$I$!AI$I$5I !*  !I$I$E)a! I$I$E)I$I$E)I$I$E)I$I$E)a$!$!iI$!A.$!!***I$I$E)I$I$E)I$I$E) @$!II!* !H$A$!jI$I$bWla$I$/H I PH*  yyw7qP/+! ySd f$q-/ / 1NP --++4/ PDZ+** 44I$I$%44I$I$%4@%P'!`PPX@H$!ࠨI$I$$!!uI$I$$!!^@$!P I$$!!s$I$$!!U$I$E)!$I$E)!$I$!$I&d&$!bpI$I$1LȄ %)(&%)`p$Y!HP!iP---- )f%q----/"  ----?1蹧=?4I$I$蹧?4I$I$蹧??4I$@$蹧44I$I$%?4I$I$DZUUu44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%40DZE``@3b6@ J IܽZP1e)H$H$1111H$H$11 I11 //?I$I$g9*I$I$g9*11I$I$9 11 H$ 011 ` 1E)'X`1e)I$s1WVܠ!Bf1`& 2E)!$@$!b`P\$ E)b*/ ݐ f1!**+I$H$1"! 1E) //I$I$9!I$I$'9# 8h$1`X\`e)b  9I$I$'9# 1!`@IX+1/ p9e)bX``1b $1e)1e)`$ 1E)II$e)E)***؂`e)!I$I$e) 2`&E)!e)  /H$e)E)J Ie)&Ɔ1 1E)I$I$9!Il1!(! 1E) *@$I$9!II$9!01E)I$I$1e)1E)I$I$9!I$I$'9# 1e) LB&$1E)n1E)oI$I$f1%)UUUT ِ1E) ))L$dB01E) I$1e) Ȑ%1b`pe)b&)%5II$9I$I$'9#I$I$'9#I$I$9!I$H$1E)I$I$9@1E)ڪI$I$9I$I$9 1E)zjH$H$E)!$E)!ɐ1!+I$I$91e)I$I$'9#1E) I$H$1e)1e) * 1!@@IĎ f1ՕH1E)I$I$9H"'#!f1\X`ɐIĆ1-%#'rB91!x^^zI$  E)!I$Ie)II$E)!? t1$! +/$I (1$!@ I$e)b1$!I$I$1E)I$I$9I$I$91e)I$H$1E)I$I$1E)I$I$9I$I$9I$I$9@, e)!`I$I$E)!UUUVɐde)! I$I$1e)`& f1!\\x)f1! H$ 1E)I$I$91e)I$I$'9#I$I$'9#@ 1e)I$I$1e)I$I$1E)I $1E)ꪪ[ lf1!ꪨ @$%)$!IE)!$@$E)! * 1E)I$I$1e)ꪪI$H$e)E) 1E)I$I$9I$I$9I$I$9@ 1E)ꪪI$H1"I$I$1E)I$I$9@ 9e)0ې E) @ I$1E)ZiU#ɒIE)` ۰me)!I$I$9 1E)*۶mۆ-He)UUU$I$8e)$HHHIvXH/ ɛ7e $qP+{.Ufi/ 2!B$fe1@@PTI$I$1"AI$1"I$@ e)E)[%lE)pII!b%+II$E)!  E)!*DB$@e)E)RI$I$e)E)@$I21!*e)bI$I$9I$I$9I$I$9I$I$9H e)$!I$I$e)%)!I$1E)I$I1E)ꪪd01E)W^z A$e)E)5]\ e)E)%I$@ )(C&M$E)XVWIضe) A1E)ꪪI$@ 1E) I$e)E) * B2f1E)k f1'p8e)`XX`& e) I$I$9I$I$9e)E)@I f1׾(!Ie)E)$C$ e)E)K$M$E)^^ib)E) I$`E)!UWxI$I$$!!I$I$E)!UUU$I$E)!+U$ E)!)ۺ%h&E)xx IdE)b --I$HE)bWV @Ie)@!I@!@$e)!`p$eE)+%%@!$H$1"@!I$I$@!I$I$@!I$I$@!e)%)I e)%)IBe)E)UI$$ e)E)UUI$I1I$I$1 $I$1k&E)!x^V@!E)! H$e)E)*U@ e)E)^x۲5@E)``ɖdIE) -- e)E))H$I$1$!Ie)E) -$IIE)b  ne)! @$e)%)@d$e)E)^WHI$e)E) Ue)E)x @4E) E) //I$I$E)$!@E)!@$H$e)I$I$e)I$I$e)I$I$$!!I$I$$!!I$I$d!d ɐLh!%.X//F.e )E++c)8§UU3I$ڧUUhm6m I)Zjj@In۶ E) UImE) Հ!I$E)!+I )( H$E)!H$I$E)!$I$E)!I$I$E)$!I$I$1I$I$E)$!*I$IE)!*I$ E)!*IE)!  )(I$I$)(`ضeE) I$I$E)! II$1@$I$1I$I$1I$I$1I$I$1I$I$1E) $IE)!$I$E)!I$I$E)$!`$%)bx %)- I$I$E)$!$C$AE)!j*IlE)= $I$e)$!H$I$E)$!I$I$E)$! E)!jI$I$E)$I!E)! I$H$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1@$H%)$!E)! I$I$E)$!*$E)!@$I$E)!_$H$!I$I!I!*I$ E)! E)! @$E)!H$I$e)I$IE)!E)!I$I$1`%)$!I$I$1H$`2$!b\X` $! I$ E)!H$I$!bXVW\I$I!b%5$!AE)!  $ɐE)!I$I$1I$I$1$H$E)!I$I$e)IE)!I$I$1I$I$1I$I$1PI$E$!U) PN.o3q ko1  H%q4/P VDZ *4/ DZǩ4/I[@ DZǩ41`%4-#@DZ1I@!@I$I$$!! I$I$e)I  e)H$I$$!!I$I$$!!I$I$$!!I$I$$!!I$I$$!! ** I$I$$!!I$I$$!!I$I$d!d I$I$e)I$I$E)$@$!I$I$**I$I$!*I !b/ I$I$d!d I$I$e)I$I$d!d I$!?.I$H$$!bVTXp !b I$I$$!!I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$d!d $!`I$I$!VWUUI$I$$!!I!%- I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$E)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E)$H$!I$I$!^WUUI$I$!UՕI!* I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$e) @$!bI$I!bշ I$I$d!d I$I$d!d $@ !``I$I!-5-I$I$d!d I$I$d!d  @$!I$I$!^VWUI$I$! I$I$!UյI!+*   !@I$!b7I$I$E) !!&I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$E)I$I$E)I$IH!UUUIIPH/+++ yWyuiP--// 1Sf%q---/1"N---)41DZ 44I$I$%44I$I$%44I$I$&I$I$ jI$I$!!+ $!!I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d H$!a(!$!a`H$I$!aI$I$T\WWI$I$!AI$I$!!+  H$!I$I$ @PI$!A / @$!`XI$!a -7I$I$E)I$I$E)H$H$!appI$ !m% I !bU5@$! !* I$I$E)I$I$E)I$I$d!d H$I$! !** H$I$!I$I$ bxIdIE)//-$H$HE)5 I$IPH+kwv`P--wE`-++qyS.Q E+ 3)qRT + 4100DZ 44I$I$&44I$I$&4x$M$!\TVWI!*$!I$I$$!!@$!II$$! I$$!!$ $!,60`B$!b`&aB!s@E)!I$E)!I E)!E)!z}Ei1+oX-z ɛ{˺%y- +SۓMǩU1I맱U/4I?d DZU_4I$맱UU4I$ҧUUO4I$I)DZUUU?4I$I$DZUUU44I$I$%44I$I$%?4II$DZUUU44I$I$%44I$I$%?4I$I$DZUUU44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4/P DZ訨/H'@<1T\PP! 11 -%%I$I$g9*I$I$g9*@ 11I$I$11?11I$I$g9*I$I$g9*H$@$11 11? 0 1!`1!55 I$I)I)L"&RѦ1E)I$I 1E)Xlf1$!zꨨdB2 E)z  E)! E)! -@$A 1E) P1**1e)I$I$'9#@ 1p4H@1 II$1E)*I$I$'9#I$I$9!I$I$9!I$H$1E) 9@ 1e) 1e) 1E)ꪪI$H$1"@!K&h5e)!i.ɖ e)!Itm e)!/?/I$I$@!I$I$@!J$He)bX^f1  1$!@IĶ1׿,$$A1E)*I$I$9!I$I$9! 9 L$`B&1E) 1E) *I$I$'9#I$I$'9#I$I$'9#$C 1E)$A&dB21E)H%@R,1%)TXPc Ie)$! * C!1E) I$I$1e)"@ 1@Af1b I$I$9 9I$I$'9#I$I$9!@ 1E)%e)b@P$ f1b%9r$e)bXV4AHf1 I$I$9h&@,1!~ E)$!ﯯI$IȐE)!?f1E) I$1e) 1e)1b@$1e)II$1e)*1E)I$I$9!I$I$9!H$@$1E)" If1!@Iİ`1U,, dIf1$! ۂ `1$!ꨠI$L&E)!H$I$e)!Ie)!??H!1E)I,W$If1,I 9I$I$1E)I$I$1E)I$I$9 I$1e) '9#I$I$1E)I I$1e)I$I$9I$I$9I$I$9H&@ e)!\XpI$I$$!!UUUP) e)! I$I$1E)H$I1e) I$1e) *I$@$9 I$9I$I$'9#I$I$'9#I$I$'9#H$ 1E)I$I$f1e)I$I$1E)dB$H1E)m&Xe)! E)!I$H%)$!ݐnmvE)!  1E)1E)ꪪ $@$1" 1E)I$I$9I$I$9H$1e)I$I$1E)ꪪ @!I!1E)#ْ If1x1eJe)- lX$E)bT!e)E)--I$I$e)E) $1E) 4Hf1UUm'N$H1IH@I!AXH/ oW%qP+{.W fi+&M0!EA* @"H$I$f1TUUU`B0$H1E)ꪪI$I$1E) @!d0e)!I$H$E)$!I$I$E)! I$I$1$ E)! @ e)E)#%IE)@p@ JE)e)$!I$I$9I$I$9I$I$9I$I$9@1E)ꪪI$H$1E) I$1E)$I!1E)-ђ !f1$!L$E) U@$E)$!Ke6E)0 $I$E)$! @!1E)$I$1E)IB& 1E)#Ie) `I+E)?e)!@1%)I$I$9I$I$9J$e)TW e) I$I$91E)[mf1!ZI$I$e)E)I$I$)(`E)!xI$`E)!U_I$I$d!d I$I$$!!?`B$IE)xɖ vE)I$H$1I$I$1$I$e)E)5UU@ e)E)e)!@Ibe)!5 I$I$1"I$I$1"I$1"@!$I$e)E)6,[e)!tIte)! %/ @$@!$I$1"I$1"@!I$I$e)E)LBe)E)WM5`e)!^!IE)!I$I$1I$I$1I$I$1!@$IE)! *$I$e)E)UUUI$e)E)UU$@I$e)E) UUL$HE)bVWT0E) $e)E)WI$@e)E)UW^-I e)E)UյI $e)E) e)!@1eIHe) ִE)L$E)bVUE)IE) IE) IB$Ae)$!IHe)$!Ie)E)U I`E)!ɟyX Z ɝjy !%f*1`I$ҧUUm@@$I$1$I$1E)b &L$%)b\W@!%) I$IE)!I$IE)!*I$E)!I)()(I$I$)(I$I$)(I$I$)($)( I$E)!H$HE)0E) I$I$1I$I$1I$I$1I$I1I )( @$E)!L$HE)bVWT%) I$I$1I$I$1I$I$E)$!I$IE)!*I$e)$! $I$E)!I$I$1I$I$1I$I$1I$I$E)$!*I$ E)!LBIE)!:A$I$1I$I$1I$I$1I$I$1$E)a`I$%)b5I$I$1I$I$1I$I$1I$I$E)!* E)$!$H$E)!I$I$$!!zV$!I$ !*  $!*Ie) I$I$1 H$E)!I$Ie)IE)!I$I$1I$I$1I$I$1I$I$1 %)$!$H$E)!I$I$$!!@$I$$!>E)!`%)XI 0lE)%@$I$E)!%)$! E)!$I$E)!I$Ie)IE)!I$I$1I$I$1I$I$1 E)!$I$! ɔ%!) r%q +1% r +4/RAJ4II DZE 44I$I$%44I$I$%4/j DZ1J$H%$!TTTPI  e)@$I$$!!I$I$e)I$I$e)I$I$$!!I$I$e)I$I$$!! I$I$$!!I$I$d!d I$I$e)I$I$E) @$!`I$I$bUUUI ! %I! I$I$$!!UU5I$I$$!!@I$I$$!! I$I$$!!*$I$e)$!@I$I$$!!I$I$$!!I$I$d!d I$I$$!!I$I$e)I$I$d!d  !H$I$!x\WUI$I$$!!I !5- I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)H$H$!zz^WI$I$!AI$I$!b*VU!bI$I$d!d I$I$d!d I$I$d!d I$I$$!!/I$I$e)I$H!bVUT!I$I$d!d I$I$d!d I$I$e) ! I$I$d!d  !H$I$!z^I$I$!AI$I$!AI$I!)+I$I$E)!I!a? I$I$d!d $!`I$I!5I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$E)I$I$d!d I$I$E)IIH! PH yS9qX----"1%y----1&p +++ 410DZ 44I$I$%44I$I$%4  DZ@@@@I$I$!I !+I$I$d!d H$@!x ! I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)!I$I$d!d I$I$d!d  !@I$I a}, ! @  !`I$I$ aI$I$!AI$I$!UյI !***  !I$I$E)aI !jI!A' @ !pI!a- I$I$E)aI$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)aI$I$E)I$I$E)I$I$E) @$!I$I!$!@$I$!I$I$!I )VlI/ I$I$!`A !AXH/+ww%yP/+" yws $q++1 1r /+ =/{蹧?4$I$蹧?4@$I$蹧4 (DZfq@M۶$EA_I$I$d!d H$!!I$I$e)I$I$$!! I$I$$!   A$I$!, $I$e)@IE)$!H$Ae)%)$! 0%)`@%) ID'P1 yWyiP//// 11f%q----/" p ----?19۹蹧 J4$I$)DZ*UUUk4I$jDZUU4I$n맱UU4pI$맱U4O$맱U4nDZW4IR`ێȱU4I$ݒDZUU4I$DZUUW4I$I>DZUUUx44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%41``DZ3ȧ1p@ I115I$I$g9*I$I$g9*I$I$g9*I$H$11 11I$I$g9*I$I$g9*@  11I$I$11?11I$I$g9*II$g9*X:l11p 1E)@  1E)Zj`$@0E)!|pI$ E)!II$E)!=?$!$ 1JI$It%)U  `J1! I$H$9!I$I$'9#I$I$'9#I$H$9  )1@1 %I$I$9!@$ 1E)۰ ېm1E)**I$I$'9#I$I$'9#I$I$'9#`&01E) I1"[-le)!Imf1$!?M$H&1E) e)%) $@!$ 1E)I$I$'9#I$I$9!I$I$9!I$H$1E) 1E) *I$I 9!I$I$9!@ 1E)II$1e)*I$I$'9#I$I$'9#I$I$9!9 k6X 1E)ْn1E)/?1I$ 1%) I1E)**L&dB1E)  1e) 1e)H$@ 9II$91e)I$I$'9#I$I$9!J$J%1bTTTXI$I E)bUs291Z$IIf1$H$f1@PTPJE)bI$H$E)*I$I$1 I$e)! ?I$I$9$(&Af1b@I$Ie)bU1e)"I$H$1E) 1E) *81p`Ć1b %1E)I$I$1E)#&#Ɇ1$!`Xz))Pf1$! 5  1e)*r"9 Ɇ1$!^zII$e)I$I$e) 1$!+)؆m6,1%)b IDf1@$ 1E)e),I$I$1E) f1@ f1l,1E)je) H$I 1e)I$I$9I$I$9e)E)I$H%e)!UW\pII$E)!%U1$!**I$I$1E) 9r"91p\pK/1b kI$e)UI1E) *I$I$9!I$I$'9#I$I$'9#I$@ 1E)ꪪI$I$f1e)I$I$1E)dB2$I1E)~I$H&e)!I$I$1I$I$1$ E)! *$I1E)@$1E)I$I1"I$I1E)I$I$1e)I$I$1e)Т#1f1$!ni1!/I$I$1"$ɓ#'f1rXd1e) /I$Re)bUT$Ie)b@ 1E)뫪۶m[$He)UUH$IHe)IH@*IرiXH+ }.U%qP/ }.U fi+ )yr E*+C"$H$1PPTTH$9I$I1e) 1E)ꪪ$I$ 21E)I$@!I$@e)E)aB&$2e)$!I$I$1E)@L$e)!+I$1"I$I e)E)I$I$e)E) * 1E)I$I$90e)@f1?I$I$91E)ꪪI$@1E)I$I$e)E)* $1E)N,[$1 ׼I&1E)U_z e)E)@$$)( I$1$@$$1E)UU6lݖv1E)1E)I$@1E)I$I$e)E) $1E)1E) f1@Hf1T %e)!I$I$9I$I$9I$I$91E)I$1E)WI$I$e)E)I$I$1 @E)!pI$E)!UW`I$I$E)!UUU^I$I$d!d  $I$E)! UUII$E)!$IE)!/I$I$1I$I$1I$e)E)%UU!e)E) I e)E)I$@@! @!H e)E)I$I$e)E)* I$ e)! I$I$e)E)I$I$e)E) I$Ie)E) * $I$1"I$I$e)E)Ie)%) * @$I$1"I$I$e)E)I$I$e)E)e)E)pIe)E)UIB& e)E)U\I$$Ie)E)UUI$He)E)UUVI$Ie)E)UUUI$I$e)E)UUUX $ 1I$I$1I$I$1I$I$1 $I$1H$I$10%)`I$I!bU$I%)bV2I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$10$[%X@*RZZ )rfH ))- Sf )-4-` &RDZ41,lDZ1I$H$E)UTTTI$)(K$KeE)bTUTI%0E)b_E) I$I$)(I$I$)(I$I$)(I$I$)($)(@$)( I$1$H&E)b@PTP E)b I$I$1I$I$1I$I$1I$I1I )( @$E)!$I$E)!I$I$E)!I$I$1I$I$E)$!I$I$1I$IE)!*I$ e)$! IH$e)$!*@$I$e)$!I$I$E)$! @ E)! IE)!I$IE)! I$ E)!* H$1@$I$1I$I$1I$I$1I$I$1I$I$1E)@H$I$%)lWUI@$!b5I$I$1I$IE)! I$I$E)!  d$E)!@$I$E)!_I$I$E)I$I$E)aI$I$$!!U I$IE)! E)! E)!$I$E)$!I$IE)$! E)!I$I$1I$I$1I$I$1I$I$1$E)!@$I$e)I$IE)! E)!﫪LE)!նI$I$1I$E)! H$I$E)$!I$I$1 E)!@$I$E)!I$IE)! %)$!I$I$1I$I$1I$I$1$E)$!$I$E)$!I$IE)$!%)$!N E$) %,`N.E +3&PJs +41ِ DZ **44I$I$%44I$I$%43@  DZ+@&C2f$!PZjjA$I$$! I$I$$!!*** $$!@P $!bI$I$e)I$I$$!!I$I$$!!I$I$d!d I$I$e)I$I$E) !I$I$!I$!bWjI$I$!bUUV!I$I$e)I$I$$!!PTX`I$I$$!! I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!I$I$$!!I$I$$!!I$I$d!d I$I$d!d $H$!p\VI$I$$!!I$I!Uյ-!I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E) @$!jzZI$I$b0\I$I!յI!bV !I$!(U!I$I$d!d I$I$$!! I$I$$!!I$I$e)I$I$e)@$I$!bXV\ !aI$I$d!d I$I$d!d I$I$E)$@$!I$I$!VWUUI$I$b`X`I$I$ b%% !  @ !` I$!5յI$I$d!d !4I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E) @$!p I$!b55I$I$E)I H! PH 11q%yX----! `*&!%q KKK1 %y 43DZ44I$I$%44I$I$%4  DZ@@@@I$I$ !+ I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d   !I$I$a..I$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$d!d @$H$!I$I$!^WWUI$I$b VI$I$!+! $@$!II!*I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$E)I$I$E)I$I$E)$!`@$I$!I !** $H$!I$I$!II1Օ55 $IHE! I PH+/= ɝywiP-/w7e fi/++1NP f/++1)PPI- 410[m%4/IҶDZǩ4/IҶDZǩ4(9$)@`pH$!$! H$!X$! I$I$$!!7I$ e)I$e)I$I$e) $e)I$1I$I$1 $I $! A$ $$!H$ $!!m&0P! 11iP//// pf%y----/#----?19۹蹧 44I$I$%44I$I$%?!lۖw蹆44I$I$%44I$I$%44I$I$%44I$I$%Z4$I$JDZ+UUUk4I$DZUU4$I$DZ*UU4@]$DZU4OB$DZUՎ4I'PڧU^4I$ڧUUx4I$IDZUUU44I$I$%44I$I$%4)H%y@@-I${'1UU^\@!11 I$I$g9*I$I$g9*H$@ 11 I$11/?I$I$g9* 11MĦ1E) W9 @$M$1^^p)1  I$I$g9*)I)M$k&11WT\X@$ 1E)dB2 1E)_WW^I$I$1I$I$E)!ݐ lE)! H$@ 1E) I1E)/I$I$9!I$I$'9#I$I$'9#@$@ 1E)@0e)p@ITiQ1%)I$I$9! 81$!p`-ɐe)! /1e)I$I$'9#I$I$'9#1E)ꪪI$I$1"@!I$@e)E)a2! 1E)[I$I$e)E) ** @!I$I$1E)1e)I$I$9!I$I$9! 1E)II$1e)* 9 I$H9!I$I$9!I$H$1e) 1e) *I$I$'9#I$I$9! I9!1E)I$I$1E)H$A 1E)I$I$9I$I$9!I$I$'9#@$@$1e) $1e)Ae)  9I$I$'9#I$I$'9#P`1` 1E)1e)H$@ 1e)"I f1`ɶmۆm1E)`& f1!I$I$1I$I$1!f1$! ++/I$I$9 1E)I$I$'9#@ 1e)I$I$1e) 1`15/I$I$9!H$ 1E)II$9 1e)!N$e) VV$HdA1$!M&h5e)!A IE)$! I$e)!?#HJe)@IE)a5 "$If1@IČ 1U(@1$! **@0f1bp`IMe)b5%&cۆ1bxjIIE)-%)@$e)`XeI$f1Pf1! I$I$9@,e)!pI$I$E)!UUW\ I$e)! %U1E)1%)j@2f1hILT1& I$I$9 9I$I$'9#I$I$'9#I$I$9!I$H$1E)I$I$1e)$I$1e)@$1E)~I$H$E)$!I$I$1I$I$E)!*$@!f1E)I$I$1E)I$I$1E)H$@! I!1E)I$I$91%)ꪪ01E)d 1E)HE)I f1 I$I$9e)b& @He)UIH@*I$IPHu%[2X8? %y@- { i++ys f+, $e)@@P@ 1E)I1E)I$I$'9#I$I$'9# 1E)ꪪI$L&1E) I@!H e)%)$)2 He)hI$I$!b? $E)!չ@$IE)!$@$e)$!I$e)%)I$I$e)E)*I$1E)`1$!jꪂI$I$$!e)!I$I$9I$I$9H 1%)ꪪI$I$e)%)*!I$1E) $1E)Yp$e)b V E)!I$I$1I$I$1 I$E)! *@ 1E)U1%)H 1E)ꪪI$H 1E) $I$1"@8,Ie)bp`IX1ae)b% I$I$9I$I$9I$I$9I$I$9I$I$9I$I$9I$I$9I$1E)WI$I$e)E)I$I$1 E)!IB& E)!UxI$I2E)!UUWhI$I$d!d I$I$$!!/I$E)!UU$E)!+I$$E)! I$I 1$I$1@I$e)E)/UU$e)E)+e)%) )8e)&IE)*%% @!I$I$e)E) I$e)E) II$e)E)H$I$1"$Ȃ#1e) @``ItE)*%%H$I$e)E) $e)E)  I$I$1"I$I$e)E)I$I$e)E)  @$e)E)I$e)E) H$@!I$I$e)E)(I$I$e)E)I$Ie)E)e)E)~Ie)E)U e)E)H1 ꪪIe)$!Mm۶ e)!IB$ e)E)UIB$ e)E)UIe)E)UIe)E)UI)(I1 I)(Ie)E)*MKDP%)))p7WE`---5)OE+--3 0%EyP4DZE3H%@$E)TPPPI$I$1 @)(I$I$1 1  )()(I$1I$I$)(H$)(I )(I)([`E)b@!I$IE)! I$)(I$)(H$E)!$I$E)!I$I$E)$!I$I$E)$!I$I$E)$!*0H$E)x^%) I$Ie)$!*I$e)$!  I$e)$!H$I$E)$!I$I$E)$!I$I$E)$!I$I$1I$I$E)$!  I$E)! $)(@$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)!L%)(I$I$E)! ۶۲%E)b`lۖE)!$I$E)!I$I$$!!~I$I$E)I$I$E)I$I$!!% IE)!* I$I$E)$!@$E)!H$Ie)IE)!I$I$1I$I$1I$I$1I$I$1I$I$1$E)!H$I$e)I$ E)!E)!I$I$1I$IE)!**I @$E)!*I$I$E)! E)!jI$%)(@$I$E)!I$IE)!E)!I$I$1I$I$1I$I$1$1H$I$e)IIE)!I$I$1I$I$1 '%y%)UUU PN)f) )-IwE +3)PJ.W +-410 DZ *44I$I$%44I$I$%4@@!@I$I$%y!UUUTI$I$! dB2 I$!b`I$!b% I$I$e)I$I$$!!I$I$$!!*I$I$$!!I$I$d!d  @$!H$I$!I$I$!I$I$E)I$!bI$I$$!!I$I$$!!I$I$$!! * I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!I$I$$!!I$I$e)I$I$$!!I$I$$!! @$!`XI$I$$!!I$I$!UUՕ ! I$I$E)I$I$d!d   !bI$!b 7!I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E)@$!xH$I$!I$I$bWV ! I$I$d!d I$I$e)I!׾I$I$d!d  !I$I$e)I$I$e)@$!a I$I$d!d H!pI$I$e)I$I$e)I$I$d!d  !I$I$!zZ^VI$I$bI$I$I !-* I$I$E)!I!& !@I$I$b7! I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$d!d !I!/I$I$d!d  H!!!XH////9S7q%`5--)1uOE----3) ` 43DZ44I$I$%44I$I$%4<@$DZ@pPPI !+I$I$d!d !*I$I$d!d  !@ ! %I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d H!b I$I$d!d I$I$d!d I$I$E)aI$I$E) !I$I$!zzzI$I$I$I$bW8I !  !H$I$! ! I$I$E)I$I$E)a$!`I$!*! I$I$d!d I$I$E)I$I$d!d I$I$E)aI$I$d!d I$I$E)I$I$E)H$H$!p\PI$I$!A+/+/$H$!I$I$E)aI$I$! !@H%% I$IPH6e`H/yw6EX/ (yysT%y+ 1"qr 4/ID DZ+43@%41I%41I%4%h'!pPXXI$I$d!d I$I$$!!  !@!I$I$$!! I$I$e)H$!<II$e)$I$e)$I$e)$I$$!!$H%)$!`B%)x E)!YhP%1 11iP//// f%y----/%----41DZ 44I$I$%43 %4DZf+-44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4%0aDZ*:4I$IDZEUU44I$I$%47$I$DZUUU`wm;%m=`n4OȱUU1I$m맱UW ~b?9If9^zzp! 11 5I$I$g9*I$I$g9* 11I$I$9 1111MP1E)W0l`1E)p 1ܠ1!I$I$g9* I$)I)X511P`@1E)dB&d&1E)zzH$)(L$ E)!!E)! 1E)魥I$I$1"1E) I$I$'9#I$I$'9# 1e) I$I$91E)I$I$9!I$I$9!! 1E) I9I$I$'9#I$I$'9#I$I$'9# &1hX e) @!I$1E)/??I$H$1E)I e)E)@@! I$1E)1e)** , 1pqxIf1+%%I$H1E)$@1E) I$I$9 H9 @01E)II$1e)*I$I$'9#I$I$'9#I$I$'9#n11 M&[51E)ɚ I1E)??I$M$1e) 1E) I$I$9! 1e)$I2$ 1E)ꪪN$Lf1VW8I$I1!))1e)I$I$'9#I$I$9!I$H$1E) I$9I$I$'9#I$H$1e)$iZ$f1b\(IB1$!I$H$E)!I$I$1II$e)!//$I$1E)1e)I$I$'9#I$I$'9#H$@$1e) I1e) **I$I$9!I$I$9!I$I$9!I$H$1E)I1E) h T1 1e) **[5 1!ࠀI$LE)!H$ 1! E)! +/?A 1E)I$I$9 9I$I$1e)I$I$1E)h4 f1!x1i If1! 1$!J"%Ie)\pIw If1ٶm؆m1E)I$I$9I$I$9k%e)!\pI$I$d!d ɐe)! I$I$1e)`$`f1X^)K @1 H$ 9I$I$91e)* I$I$9!I$I$'9#1E)I$H$1E)I$I$1E) 1e)[5[1$!ꨨI$H$E)!I$I$E)!I$I$E) @!1!* f1! H$@ @!II1E)I$A 1E)I$I$9  1e)I$I$'9#;'ue)\^@B&C&f1Z,( 1 I!@HbH@ I$IPH/naH+}6W EX+! {s i* (qgN @f+ +&)Mh(@$I$e)PTUU I$1e)1E)*I$I$'9# 1e)X$M1!V`01E)ꫩIB2$1E) $I$1"@!Kۊme)  %)@I$E)b&UI$e)$!*@!e)$! @ e)%)I$I$e)E)I$1E)uU4I1!߸I$I$9I$I$9I$I$9I$I$91E)ꪪI$@ 1E)I$I$e)E) *I$@E)bV 6I$ f1M `1E)U_I$E)!I$I$E)$!I$I$E)!*۰mִE)!."%1jz E)bLB2$ 1E)I$I$1"I$1"1E)I$I$9I$I$9I$I$9I$I$9I$I$9I$I$9I$I$9I$I$1e)ꪪI$1E)I$I 1E)UUI$I$)(E)!LE)!^I$dE)!UWI$I$$!!I$I$E)I$I$E)!UUU$I$E)!%UU I!$E)! U$IE)! E)@tI$E)&U:`ۖmE)aJ$EE)+$e)E)He)%) I$@!I$H e)E)I$I$e)E)e) iE) = I$I$e)E)I$I$e)E)I$I$e)E)I$I$e)E)** I$I$e)E)@$Ie)E) *$I$ e)$!@Pe)I$I$e)E)(I$I$e)E) $e)E) I$I$e)E)I$I$e)E)I$I$1 I$I$e)E)* I$1" @!I$I$@!@!I$@!I$@!I$H$e)E)I$I$1 I$I$e)E)I$I$1 JH$KP!)7q1{%yX/--&1S%y++/-/B"$4ERR" 4 DZE3  E)@@@@I$I$)(I$I$)(I$I$1 H$H1 )(I)(H)(I$I$)(I$I$)(I$I$e)E)I$I$e)E)$E)!$I$E)!@$I$E)!I$I$E)$!I$I$E)$!I$I$E)$! H$E)!j^Ve)!I$I1M$[ lE)Zh)۶mE) $I$e)$!I$I$E)$!I$I$E)$!I$I$E)$!I$I$1I$IE)!*I$E)!ۖmE)b I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)!L$E) E)!I$IE)! IE)! I@$E)!H$`B2E)bX\x !b I$I$e)I$I$d!d I$I$d!d I$IE)!E)!* E)!$I$E)!I$IE)$! E)!I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1 @$E)$!I$I$e)IE)! E)!@$I$!TWm6`E)I$I$E)!*I$I$E)!I$I$1%)!jI$H$!b(!I$E) E)$!I$I$1I$I$1I$I$1$E)$!H$I$e)I E)!I$I$1I$I$10E)!z $I$%)bVUɓ$Ea?"PN-rf( )- wf*3+@ S -410DZ 44I$I$%41X-,DZ1J$P%!TTPP$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!`px !H$I$!ꪪI$I$II!**)I$I$$!! I$I$$! I$I$e)I$I$$!! @$!b@PT$!bI$Ie)I$I$e)I$I$e)$@$$!pxI$!b z^$!bI$I$!! *$I 2$!H$I$!^WUUI$I$$!!I!- I$I$E)I$I$d!d I$I$e)!I$@ !W|P@ I!b %I$I$e)I$I$e)I$I$d!d I$I$E)I$I$e)!bI$I$d!d  @$!`I$I$bXVUUI$I$ I$I!*I$I$E)I$I$e)I$I$e)I$I$d!d I$I$d!d @$H$!b`X\P I!  I$I$e)I$H!bVW0!I$I$e)I$I$e)I$I$d!d I$I$d!d @$H$!zI$I$TUUUI$I$bVWTI$I$ - ! I$I$E)I$I$E)I$I$d!d I$I$E)H!$I$I$d!d I$I$d!d I$I$d!d $H$!b|^I!b -5I$I$E)I$I$E)I$I$d!d I$I$d!d  IH!ivXH//++17qE`----+1Of--/+3, 44I$I$%4$DZET44I$I$%4@$@$PPPP ! !I!*I$I$d!d @$!p`I$I!A' I$I$d!d I$I$d!d  !I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$d!d @$H$!I$I$!^^WWI$I$!AI$I$!Uյ !  @$!I !**I$I$E)I$I$E)I$I$E)@$I$!AII!A/ I$I$d!d I$I$d!d I$I$d!d  @$!x ! %I$I$E)I$I$E)I$I$E) H$!hI$I$A>(A  !I$I$!I$IAUU5I$H$H9I!XH? T Ϳi@+* yyst f$q- -)g f- 3- ڶ 4/m$DZǩ4/JDZǩ 43@$%41۶%%3x$L$!\\VVI$I$d!d $@ !` !b I$I$$!! I$I $!!+*I$I$$!!H!<4I$I$e)II$e)II$e)I1 E)$!H$H$$!! I$I$!! $IPE! 1S1iP---- S1uS%q--/!pNir+4,P)DZ 4/$DZǩ4/DZǩ 43$%43%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%?۲-mDZE@@4IDZE44I$I$%43 DZ%h;oEI$H$y1UUTT11I$I$g9*I$I$g9*H$H$11 11 I$I$)I)I$I$)I) 1f19 11 I$I$g9*I$I$g9*CH1e)I$L$11UUVT[ma1E)I$01E)W_p`I$I$)(I$I$)( Ie)E)?H$H$@!! 1E)//I$I$9!I$I$'9#I$I$'9#L$`$1%) 1E) **I$I$'9#I$I$9!$C1E)I$I$91e)I$I$'9#I$I$'9#K&1VX I$Ie) HPe)I$I$e)E)@B$1E)  @!I$@ 1E)0`1E)b@P@If1bI 9!1  1! d211^xpII9!I$I$9 I$I$9 $H$9!I$H$1e) 1e) **I$I$9!I9! I11 **" 1E)I$I$1E)h$ 1E)ÃII$1E)+/I$I$9! @$1e)H$ 1e)1e) **I$H$1E) 1E) *I$I$'9#I$I$'9#@ 1E)I$I$9'9#@$1e)I$R,f1bW\1d@f1a h$I$e)!TUT$A!E)!*I$I$1ِlɖd1!+ 1e)I$I$'9#I$I$'9# 1e)I$I$1E)1E) I$I$9! 1%)@SN$1!,U1%)1e) I$I$'9#1e)*M&[-1!@$1I$H$e)IL1 *H$@ 9 Tf1$I$I$1E)ꪪI$I$@!I$I$1E)I$I$9 1e)@ 1E)ꪪI$I$@!I$ 1E)I$I$9I$I$9e)$!I$@4e)!W\P`I$I$$!!?P e)! I$I$9$I$9  1e)I$dB01E) I$91e) * I$I$'9#I$I$'9#@ 1e)I$I$f1e)$I$1E)1E)ꪪm6k1E)__~I$I$1I$I$E)!*II$E)! * H$HeE)\W\0 f1 1E)I$I$f1e)'9# 1e)I$1e)@ 01!M&Pf1VX $IH5 I$I$HH*I$IPH/ wgiH+nWeX+! r0%q*& ۰+* 1%q۷iUU-1")B$f1@@PTI$9I$H$9I$I$1e)1E),X,1`X`!I$f1)5` D1 /'9#ۦm`f1@DI$E)bUe),[l`e)!Il؆mE)I$I$E)$!* I$I$E)$! $Ie)$!**@ e)E)I$H$e)E) $I$e)$!1E)I$I$9I$I$9I$I$9I$I$9I$I$9H$1E)I$I$e)E)*!I$1E)$1E)H 1%)ꪪmҶk 1E)UU_$I2 E)!ꠀ$!Ҷm۶E)@ JdRE)$@ $1E)$C$I1E)ꪪI$1E)I$I$1"I$1E)1E)I$I$9I$I$9I$I$9I$I$9I$I$9I$I$9I$I$9I$I$9H1E)ꪪI$1E)U_~$%E)a` I$E)b5E)!mۦH$E)TUm۶mbE) I$I$E) !@! ֶM$E)!UUUI$$!b\@  %)b)I$H$1I$I$1I$I$1@$ɘE)$@ $e)E)U!$e)E)U$ e)E)%I$e)E)*I$He)%)$)B e)p I E)I$I$e)E)I$I$1 I$I$e)E) (1,Ie)`I$IE)UI$I$e)E)*I$I$e)E)I$I$e)E)** I$I$e)E)I$I$e)E) **I$I$e)E)I$I$)(I$I$e)E) ++I1"(P(e)@P@dI$E)bWUe)bI$I$e)E)I$I$)(I$I$e)E)+I$I$e)E)I$I$e)E) I$I$PE) 7qSywiP///- O1Sf%q----/!rt +) 4/IP 4-C۲ DZI$I$)(I$I$)(I$I$)(I$I$)(I$I$e)E)I$I$e)E) $e)E) _$e)$!I$e)$!$I$E)!I$I$E)$!I$I$E)$!I$I$1&%)`XIE)I$I$E)!***I$IE)!LB&E)!^E)! $I$E)$!I$I$E)$!I$I$1I$I$E)$!I$I$1I$I1I$1۰%H$E)b\W`ٖlE)a ز%۲mE)b@P@  E)b@$I$E)b\V\ E) I$I$1I$I$1I$I$1I$I$E)!%)@I$K E)bU<ٶ E)$)(d$E)!@$I$E)!I$I$$! I$I$$!!I$I$$!!I$Ie) I$E)!W_j E)!%E)!H$Ie)IE)!I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1 E)!$I$E)$!I$IE)! E)!I$I$1I$I$1km0`E)m۶-E) j!%) %I$I$1 E)!@$$!0E)!I$I$E)$!I$I$1I$I$1I$I$1@$E)$!@$I$e)I E)$!I$I$1I$I$1 2$!@$I$$!I$I$ VI$I!j* ɐDOEq%PN.f9 )/Isf *4,Iߔn 43DZ 43 DZ3P)($!P@@@I$I$e)I$I$e)I$I$$!!I$I$$!!***I$I$e)I$I$e)I$I$$!!`p@$I$!I !I$H!~I$!% I$I$$! I$I$$!!I$I$$!!(I e)`2 $!P@$! I$e)I$H$e)I$I$e)I$I$$!!@I$I$$!bVXV $!$I&$!bp@$I$!bI$I$$!!I !I$I$d!d I$I$E)I$I$e)I$I$e)I$I$E)I$I$d!d !I$I$e)I$I$d!d I$I$E)I$I$d!d  !I$I!bTUT !b@$I$!jjz^I$I$b4I$I$! !* I$I$d!d I$I$d!d  !b!I$I$e) !@I$!(!I$I$d!d  @ !bp I!b55I$I$e)I$I$d!d  @$!I$I$!^^WUI$I$!AI$I$!UUյI!++ I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)! I$I$d!d I$I$d!d !I$H!_( ! I!&UI$I$E)I$I$d!d  !@NO`H--.EP+++-, f--) 4/i DZ44I$I$%4H$HDZETTT44I$I$%4@$h$!PPXTI$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d @$H$!^\^ ! I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$E)aI$I$E)$!I$I$!zz~I$I$!AI$I$U5%I !/ I$I$d!d H$H$!II$!*I!*I$I$E)I$I$E)H$!X ! I$I$d!d I$I$d!d I$I$E)H$@!xI!% I$I$E)I$I$E) !I$I$E)aI!!I$I$! !H%% I$IPH߯+niH/OT EH* +)R E-+ 1()u %@+ 4/MR 4/IDZǩ4/DZǩ 43@%4-DZ` H$O$EQ!TVWUI$I$$!!UU*I$I$$!!U]I$I$$!!I$ $$!!hI$I$$!! I$I$$!!@II$$!! II$$!!I$E)!_UI$E)!Ie)I$E)!j$IH$%) E)! I$P%)%UU 7a6Rh1 *) 7uSf%q----/"t ---4/)RP ǩ˂4/IҶDZǩ4/)PDZǩ 4-c;& DZ4,Oo@DZ74-D&C:DZ4,/DZ  4/H$DZǩ4/ )DZǩ4/ TDZǩ/43%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4/P DZ訨/L&X41VXX` 11I$I$g9*I$I$g9*@$ 11II$11?/I$I$)I)I$I$)I) 11@mפMv1E)($!A11 )-/I$I$g9*I$I$g9* )I)k%X,11\PP@ I$9!m6k41E)ࠠI$H$e)E)I$I$)(I$I$)(@ e)E)I$I$1"nI1E) 1e)I$I$'9#C $B1E)I$I$1E)*1e) I$I$9!$9 H$@$1E) I1E)***I$I$'9#I$I$'9#I$I$'9#چ- l1hI$I%)U$ e)E) I1E)I$I$f1e)'9#[ۆm1E) f1 II$9!I$I$9!I$I11*  I 11I$I$9 I$I$9 H$@ 9!$C$H1E) $I1e)**I$9 !I$I11,=p>1ax`ɑ1b--K%[51E) lId1E)??m۲ ڦ1E) 1E) dB$01E) I1e)@$1e)@ 1E)I$I$91e)I$I$'9#I$I$9!H$@ 1E) I$9I$I$'9#$H$1e) 1e)RH@1!؀I$H$1!I E)! * $ e)! $@$1E)I$I$'9#I$I$'9#I$I$9!@ 1e) I$1e)*$ $1E)$C$ 1E)N(S1!I$ 1E)II$1E)**I$I$9!I$I$'9#@$1E)袊I$h5e)!C0$C$!@I$IڴE)Օ@$I$E)b\WVI$I$!bUlݶm1E)I$I$1E)I$I$1E)I 9IH 1e)1e)H$@ 1E)I$I$1e)I$ 9I$I$9I$I$9`e) I$K&E)!UII$E)!=0e) I$I$91e)I$I$'9#I$H$1E) I$9I$I$'9#I$I$'9#I$I$9!H$1E)*I$I$@!II9@$1E)ꪪLB& e)!۰m۶lE)! H$I$E)$! I$E)!* ݖn1E)@"%f1pe)I$I$1E) 1E)I$I$9 $)8f1UUU@&@1$H8 I XH/ ɟwiP/ }.WEX !qNݴ Ey/* +.Yf*/#{o 1@$)E)@/H$I$ǩe)TUUUI$I$9$"f1@DIe)a 7I$I$1e)C$@1E)j*#H1ɔ 1%+I$I$'9#I$I$'9#K)f1I$I!U e) de)!I$@ e)E)UUXpI$IE)$! I$H$E)$!*Ie)E) 5@$e)E) I$e)%) I$I$1" $1E)I$I$1e)I$I$9I$I$9#9f1h IE)b?1E)ꪪI$@1E)I$I$e)E)*** $1E)HH1!&*5*h1!xI$IE) I$H E)!__^I$I$$!!?I$E)!U@J$1$!  $1E)I$1E)ꪪIB& 1E)I$I$1E)I$1E)1E)I$I$f1e)I$I$9,f1$!I$I$9I$I$9I$I$9I$I$9I$I$9@f1!`IHe)b5I$H e)E)KE)bT!@E)!uk$E) m$hR4E)bZTXb IE)b I$H $!I$I$E)a! ***I$I$$!!+UUU@$ɄE)۶!mӶE)@I$I!U.$IE)! I$I$1I$I$1 $I$1@ $e)E)U@ $e)E) U$e)! $e)E)I$e)%)I$@e)E)0I$e)E)I$e)E)I$Ie)E)*I$Ie)E)  $e)E)I$I$e)E)I$I$e)E)I$I$e)E)* I e)E)Ie)%)  @!@e)E)I"@E)bWe)E) e)!@ME)7I$I$1 I$I$1 I$I$)(I$I$PE)UUUqWxiP-p1Wfi/---`f++4-` DZ41,`DZ1H$H$E)TTTT$e)E)UI$e)E)UU$I$e)$!$I$E)!I$I$E)$!I$I$E)$!I$I$E)$!I$I$E)$!E)!I$I$1E)$!I$I$E)!*k6[ `E)xjI E)UI I$E)! @$E)T&L$E)XV_ E) I$I$E)$!I$I$1I$I$1I$ 1I)(I$I$)(I$I$)(K%E)b\@E) II$1I$I1[m`E)pI$I$E)!I$I$1I$I$E)$!I$I$E)$!I$IE)! IE)!  )( I&E)!@$I$E)!I$Ie)I$e)H$I$e)I$Ie)IE)!*I$I$E)$!*I$I$E)!@$@$E)$!  E)!E)!I$I$1I$I$E)$!I$I$1@&%)|@!%) - @$E)!H$I$e)I E)!I$I$1I$I$1I$IE)!*I$E)!*H$I$E)$!@$H$%)bPP\XI %)b%%  @ E)$!I$Ie)I$`%)_\!@%) I$I$1I$I$1I$I$1 $E)!I$I$e) E)!I$I$1I$I$1 2E)!z^@$I$$!I$I$E(CI$I$!* !A$@$!I$I$1S?%$) %U& `N/%y +1 PNs *+4  )E@4DZE4-"#2 DZ-I$I$$!UUUTI$I$$!!I$I$$!!*I$I$$! I$I$$!!I$I$$!!I$I$$!!XVWUI!$!* I$I$$!!I e)H$@$e)I$I$e)I$I $!!I$I$e)@$I$e)I$@ e)I$I$e)I$I$e)I$I$e)$!I$H!bUV!II$!H$H$$!b\xI$I$b% I$I!U5 !I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)@$@$!jI$I$!^WUUI$I$!UՕI!* I$I$d!d  !!@$H$!P\X`  !b % I$I$e)I$I$e)I!(I$I$d!d I$I$e)I$I$e) !I$I$d!d  !H$I$!z~^I$I$!AI$I$!AII!+I$I$E)$H$! ! $! @$I$!bXVZ$I !@QeI$I$!b%%!I$I$d!d I$I$E)$!`I$!bU!I$I$d!d I$I$d!d @$H$!! H131X@o/eP555 -p---4/ DZ++**44I$I$%44I$I$%44I$I$%/H$H$!TTTT! I$I$d!d I$I$d!d !I$I$E)I$I$d!d I$I$d!d @$H$!AxII!A //I$I$E)I$I$e)I$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$d!d @$H$!I$I$!^WWWI$I$!AI$I$  !  $!I$I!*!I!*I$I$d!d I$I$E)I$I$E)aI$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)@ $!I !*** @$!I$I$!I$I0UUH0 !XH/w7$yP/+" ywS` $q++/ )uN +++3/!$@43DZ44I$I$%44I$I$%44I$I$%4 4DZ!`` $!$!*  @$!I$I$$!! b! !I$H$! I$I$$!!U @$!A`` !a ' I E)!IE)!I$HE)$!L %)(HE)!  %).6*HE)!I$a%) %UR7wEY ++--` Sf++4,Iߔn 43DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4/HDZǩ4/ )DZǩ4/ITDZǩ//4/R"%PDZǩ4/IIDZǩ44<DZEy`pp4HDZE 41%%41%44I$I$%44I$I$%44I$I$%41``DZ3ɀH9@ II$Y1UUUTI$I$)I)I$I$g9*I$I$)I)I$H$111f1I$@$)I)I$I$)I)H 11I$I$9 11I$I$g9*I$I$g9*6`11@I$I$9!C11rL&@$1E)VXXI$I$1 I$I$)( I1E)I$H$1"I 1E)?//@$@ 1e) I1e) **II$9!I$`&1E) 1E) *I$I$9! I9!1E)I$I$9P1!I$I$'9#I$I$'9#01E) A$Ie)! 1E)ꪫH1E)I$ 1E) I$1E)*@$ 1E)I$I$1E)1E)9  11 @$@ 11I$I$9 I$I$11ꪪI$I11*I11I$H$11II11+/?$@$11#$I1!p1@ 1 #ɐH1E)I$I$1E) [R89E) I$1E)* 9 I$I$'9#@$@ 1e) I1e) **I$H$1E) I1E)*I$I$'9#I$I$9!1E)I$I$1E) 9@ 1e)II1e)I$I$'9#[- l1E)zjI$I$E)!* I!e)$! @JL21$! jдI$1(1E)I$I$'9#I$I$9!ۆm$1E)X0I*1(TI$1b&1E)I$I$9!I$H$1E) 1E) *I$I$'9#I$I$'9#R P%1x$A$$!aHE)!Mv۰m%) i7 1$!+ I$I$9 9I$I$1E)I$1E)H$I$1e) R&1b`X  1 I$H$1E) I$1E)I$H$9I$I9I$I$9X,e) I$I$e) ɐdI$e)!?1E) I$1e)1e)C$I1e)I$I$9 1E) *I$I$9!I$I$9!I$I$9!H$@ 1E)I$I$9$I$9 0f1``I$I$!b.5. E)!ȐE)!viE)! +H$RBE)bXX` e)b   1E)I$1E)۶mR$Hf1UUH$I$Hf1@$H8PP P X8* oW%qP+{w Fa %y{oWEy+,0f+/%I6n/,h۶IDZ-$H$e)@PTTIm1E)I$$1E)I$I$1E)N If1&I$@ 1E)I$I$f1e) Uk$1b V1E)* I$I$'9#I$I$'9#I$I$'9#hl1E)ޠI$I$1e)I$I$1E)Hf1E)~IB2$e)E)U|`I$I$1I$$1 I$e)E)5UU@!e)E) 5@ @!I$H$e)E)I$1E)1E)I$I$9Xe) `ae)&I$I$9@%1x$!e) $ɐH1 jj IE)b&70v1E)L@1%)$e)$!M6ۊmE)!^I$I&E)!UU_xI$I$E)!UUU@ $E)! Unm1! $1E)H 1E)ꪪIB&$ 1E)$I 9e)b`` Xe)b %1E)#'L"'f1Z^1f1 I$I$9I$I$9I$I$9I$I$9I$I$f1e)I$I$f1e)I$I$9@1E)I$1E)UNBǒ@f1E)!I$I$)(HE)!mE)!WI$$E)!UU$I2$ %)!UUUjI$I$bVT!I$I$E)I$I$E)!UUU@$I2%)j I$E)bU$E)!)$I$E)!I$H1I$@1II1@$H$1I)($H$)(@$C&E)hX IE) @I$e)E)UU@!$e)E)U$e)E)I$e)E)$$e)E)U@$$e)E) U$e)E)$e)%)$e)%)$e)%)I$e)E)ضe)!I(mE)&$e)E)UI'e)X ۖe)!$$e)E)zUiv`%)*)))p1wE`--+N)SE++--3, 43 DZ3P$@$PPPE) I$I$1 E)!I$I$E)!E)!H$E)! E)JI$$!b&U ! E)!+$IE)  0E)!.ȐIE)!I$I$1I$I$E)$!I$I$E)$!*I$HE)^^IE)oE) I$I1I)(1 I$I$)(I$I$)(I$I$)(I$I$)(I$I$)(I$)(l E)@дI$E)b&$E)!H$I$E)!I$I$E)$!I$IE)!IE)!  )( I&E)! I&I$E)!I$IE)!I$E)!$H$E)!I$Ie)IE)!I$I$E)$!*$ E)!I$I$E)!I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$1I$I$1`0E)xࠠ!A$I$!I$IE)!IE)!I$I$E)$!I$I$E)$!I$IE)!*  @$E)! I$I$1I$I$1@ %)b`!I I$! E)$!E)!I$I$E)$!I$I$E)$!$%)`p %) %5 H$E)!@$Ie)IE)!I$I$E)$!I$I$1 @$E)!z^@$H$$!I$I$E)aI$ $!* !I$!I$I$1I$I$1@$H$e)L %$!) Po?iz[1 뉐H%q4  E41,lDZ1H$P$$!TTPPI$I$$!!*I$I$$!! I$I$$! I$I$d!d @$! H$! !*I$I$$!!I e)$1H$I$e)IIe)1I$I$e)I$I$e) I$e)I$I$e)I$I$e)I$I$e)I$I$e)II$e)0d$$!I$I$$!bI$I!߿+! I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)I$I$e)I$I$d!d I$I$d!d $!@$I$!zZVWI$I$UUII!**I$I$E)I$I$d!d @$@$!bpp I!b %5 !I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d $H$!jI$I$TVUUI$I$!AI$I$ Օ ! /I$I$d!d H !!H$H !I$!j!I$H$! I! + I$I$d!d I$I$E)@ !@I$I$ bUUW| !b I$I$d!d  $!I$I$ $C$APH{**&LX@+ Y %yP!/ p %q 4#0B#E```D1kmȹE 44I$I$%44I$I$%1H$H$!TTTTH$I$!յ! !I$I$ ! I$I$e)I$I$d!d @ !` ! I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$E)aI$I$E) !H$I$!x^I$I$b I$I$Օ5%II!// I$I$E)@$H$!I !** I$I$E)I$I$E)I$I$d!d I$I$E)aI$I$E)I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)@$I$! ! @$@$!I$I$!IɖnH5 I$IPH+`P--yw7e`-/ ,1RT e-+ 1)1eR@ 41ِ DZ** 44I$I$%44I$I$%44I$I$%44I$I$%4%X&!ppPXI$I$$!!{.I$I$$!!-I$I$$!!I$I$$!!I$H$$!!II$e)d&`B$!PC$A%)j!@$!I$I$1I$I$1 E)!IE)!HE)!I$I$1I$I$1I$I$E)$!Sɗ%E) %5&`N7%y +1!Ms +4-@ RDZ43DZ44I$I$%44I$I$%4dI$DZEUU44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4,DZ`4)1 DZ4-M&DZ4-DZ44I$I$%44I$I$%41ېd%44I$I$%4)(Ey@@@&'M&|^VZɐ1I$I$g9*I$I$)I)@$ 11 I11 **I$I)I)I$I$)I)I$I$)I)I$H$11 11 I$I$g9*I$I$g9* )I)K$h%11TTXP I11#: 1E)hhI$I$)(I$I$e)E)I$I$e)E)/@$ 1E)II$1E)$I$1E)1e)I$I$'9#C0$C1E)I$I$1E)*1e)I$I$9!9 ڪ-m1$!`H$I$!bVUT00f1I$I$'9#I$I$9!L$`21E)! 1E)I$H$9 I$1E)**I$L$1%) 1E) I$H$1E) 1E) // I9 II11***11I$I$11 11 /I$I$g9*I$I$g9*@ 11I$I$9 @$ 11I$I$9!I11* )I)r"&11e) I1E) *I$H$1E) 1E) H$@ 9!I$I$'9#1e)1e)I$I$91e)I$I$'9#I$I$9!@$ 1E)II$1E)*1e) @ 1e)I1e)@ 1e)L&01! I$E)! **I$@e)E)I:01. I$I$'9#I$I$'9#I$I$9!P&@1`X` f1%5IL0I17 I$@$9!I$I$9!@ 1E)I$I$91e) I$I$'9#p$ 1xI] 1I$I$1I$I$1vI1!++H$ 9I$I$9@$1E)ꪪI$I$f1e)I 1E)H$1\Pɐ1% 1e) I$I$9 I9I$I$1e) 1E)I$I$9h%@e) I$I$e))I$f1! %U f1!B0[N$1>U1!dB2$H1e)I$I$91e) *I$I$9!I$I$9!I$I$9!I$@ 1E)I$I$9 1e)HH1!m6Xme)!hI$IE)׿,I$H$E)! I$e)$! * 1E)I$I$1E)ꪪ$I2`$He)UH$I$He)H$H$H8TTTTi X8) }.U%yP+{. Ei+ ({. E +M%yV^XP,Ey-)$ )D-$f1@PI$I$f1E)__W^lI$1E)L$`$1E) I$1%)I$I$9 I$1e)$H1E) I$Pe)bU0  If1I$I$9!I$I$9!I$I$'9#I$I$'9#@ 1e) I$I$1E)(e) e)a % C2 1E)UI$I 1@ I1I@$1$ $e)E) U@!I$@ @!I$I$1" $1E)I$I$9I$I$9I$I$9p$ e)X`f1% I$I$1E)ꪪHf1 I$I$e)E) @"$I1E)I$If1E)UdB1E)ꪪ$C @f1$!ꪨI$E)!W|I$I$E)!UUW\I$I$E)!5UUUI$E)!U@R$1!*I!1E)Z-h1X`Ile)b5 $$e)`ۚ I$E)b %I$1E)1E)I$I$9I$I$9I$I$9I$I$9I$I$9I$I$9 f1@XI$e)b,Uf1!@1E)I$e)E)I$He)E)I$I$e)E)I$I$)()(k E)I$E)!UI$I E)!UUH$!b0I$I$E)I!,I$I$E)I$I$$!!UUU @$!`P鐤I$E)b $I$E)!VUU E)! $L$E)!^W E)!-H$E)\xɖaжE) $I E)$!I$I$1I$I1 )(I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1E)I$I$E)$!I$I$1I$I$1H$H$E)b\V\ٖl`E) I$I$E)$!lP%)pyw%yX/--&1SE ---1(%p  +410DZ4 H@@@  $!5 IE)! //@$E)!E)!*IȐ$ 2E)!@E)!$H$E)!IȐI%) C&L$%)x\X!IE)b -55E)!IE)!I$I$E)$!I$I$1I$I1I$ 1I)(1 I$I$)(I$I$)(I$I$)(I$I$)(I$I$)(I$I$)(I$I$)(I$I$)(I$I$)($E)!I%)7 I$I$E)$!$%)b@P۶E)b$1 $$E)! I&I$E)!I$Ie)!I E)! H$E)!@$I$!bTUT$I!@E) !I$E)!+$E)!؆m۲mE)!jH$I$$!8UE)!I$I$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$1I$I$1$E)!@$I$E)$!I$ E)!E)!I$I$1I$I$1I E)!*$I$E)!I$I$1I$I$1$E)!H$I$E)$!IE)!E)!I$I$1I$I$1I$I$1%) @$! I$IE)$! E)!0`$E)b`XT@!E) &E)H$I$$!H$I$!I $!+  E)!I$I$1 E)$!$I$e) $!b@$@!$!bNIE$) + rq +1& s +41mٖlDZ3P((!P@@@I$I$$!! I$I$e)$!p$I$!xI$I$$!BI$I!/$! I$Ie)$1H$I$e)I$I e)I$I$e)I$e)@1I$I$e)I$I$e)I $e)I$I$e)I$I$e)I$Ie) C&$!H$I$!I$I!? @$!bX!I$I$d!d I$I$e)I$I$d!d I$I$$!!5I$I$e)I$I$e)$!b@PI!bI$I$E)I$I$d!d I$I$d!d I$I$d!d $!H$I$!jz^I$I$`P@I$I!b5 ! I$I$d!d I$I$d!d I$I$e)!I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d $!I$I$!zZVWI$I$! I$I$!UUUI$I!* I!?I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d !!I$I$E)aI$I$E)I$I$E)!bI$I$d!d I$I$d!d H$I$!IdIH??IIPH*** wrOqH_+PEX)+ -qwf--4/PP44I$I$%44I$I$&4/  DZ@$@ !x\`I !5% I$I$d!d I$I$d!d H!I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d  !I$!I$I$d!d @$H$!I$I$VXI$I$ I$I$  $!`I$! %I$I!!I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)I$I$E) @$!I$I!** !H$@$!I$I$>HI PH*  y7eqP// " ySdf%q--+ / 1uN ++ 3/!$@43$DZ43$%43$%43$%43%1h'H$!X\TTI$I$$!!*I$I$$!!"+I$I$$!!II$$! A I$$!  I$$!  $$!$I$$! $I$! @$Ie)@$@E)$!I$AE)!E) I$I$1I$I$1I$I$1I$I$1I$I$1N9E%) -)PNwEy +1% r +4/PJDZ *44I$I$%44I$I$%4ODZEy44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4$DZfP4DZE44I$I$%44I$I$%41I %44I$I$%4@Ey@1H$z @$11??I$I$)I)I$I$)I)1f1I$I$11*1f1I$I$)I)I$I$)I)dB&$B"11II$11?/I$I$g9*I$I$g9*II$g9*@ 11pI$I$9!H11pI$H%1E)W\|xI e)E)ˏI$I$)( 1E)I$H$1E)t1E) /I$H$9!1e)* I9!I$L&1E) 1e) *I$I$9!I$9!01E)@f11E)I$I$9!I$I$9!@$ 1E)@!I$I$1E)I$I$9@B$"1$!II$1E)**@$ 1E)ࠠI$I$f1e)$@1E) 11I$I$g9*H$1E)PI$I$11?11I$I$g9*I$I$g9*I$H$11 I11 /?I$H$11 11 II$g9* -91~zI$L&1E) V)1H9e)[ͭI I21E)+*$C$I11I$I$'9#$1e)  1e)H$@ 1E)II$1E)**$1p1 51E) I$H$1E) 1E)**I$I$'9# @$1e)1e) 1E)ꪪI$H&e)$! e)$!  I$1E)/1e)I$I$'9#I$I$'9#I$I$9!`B&$C1E) I$1e)** $9!I$H$9!I$I$9!H$ 1E) I$1E)*I$I$9!I$I$'9#1E)`m[5E)!$Ie)L@$IE)!> t1! +I$@$1e) I$1e)H$@ 1E)ꪪI$I$f1e)'9#I$I$'9#I$I$'9#@ '9#I$I$9@ 9@$@ 1E)1E)I$I$9M&X,e) I$I$$!!*ɐe)! ?N f18I$1E) *I$I$'9#@$1e)I$I$91E) I$I$9!I$I$9!I$I9!I$`$1E) I$9%"I1!`X`ɖdf1!I$I$e)E)I$e)$!I$@E)! 1 @ L$He)UI$I$Q 0I$IPHU/v`H+ {.W %qP  6gfi+(}s0E/ + 0  * -+ D-)$ADD-`$EXT,J$E)PTTU@ 1E)zꪪI$I$1E)!A1E)+I$hڵ1E)$1E)1E) I$1e)*H$1E)*I$I$1E)I$1E) *1E)1E)आ1!,I$I$'9#1e) R"-@f1pID E)b% I$I$f1e)ꪯ1E)_I$Le)E)UUTA$I$1I$@$e)E)UUPW!I$e)E) UUe)E)5H$@!I$I$1"I$1E)$I$1E)I$I$9I$I$9I$I$9I$I$9I$I$91E)I$@1E)I$I$e)E) I$1E)1E)P$I$e)bTUT,I$@e)I$`„E)!U\I$I$E)!UUU^I$I$$!!?I$E)! U$ҶE)b@P@ In1b%)H$1 `IHf15I$@1E)I$I$1" 2e)!<1E)I$I$9I$I$9I$I$9I$I$9I$I$9If1b,I$I$9I$I$9I$I$9I$I$9I$I$f1e)H1E)WI$e)E)I$Ie)E)I$I$e)E)$ E)!@I$K E)bU8Y;E)I0E)!UI$E)!UuI$LE)!UUmӶmE)jI!% I$I$d!d I$I $!!///I$I$d!d IIE)!յ@$H$E)!~~WI$I$d!d   E)!$E)!H$I$E)!I$I$$!!( IE)!I$I$E)$! C$E)0\IE)!I)(I)(K$K%E)b\W\E)b  @$E)!H$I$$!!IE)!+IE)! I2 E)!蠀 IP$! 7qSywqP/- pS1w$q+/1 ݐnn ---4-$@Jd:3,؊@6`o+I$I$%)UUUTE)$ E)!L$LE)!@ E)!IE)! HE)!E)!ꪪ` E)x E) I$I1I$Ie)E)UUIe)E)U e)E)I$I$e)E)I$I$1 I$I$1 I$I$)(I$I$)(I$I$)(I$I$)(I$I$)(I$I$)(I$I$)($)($I$1H$I$E)$!I$I$E)$!*I$ E)! IE)! K%؂mE)bTP@ mm%)$I$E)!I$IE)!I E)!?$H$E)!H$I$e)I$ IE)!*mmE) $E)!$I$E)!I$I$1I$I$1E)!*I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$E)$! E)!$I$E)!I$IE)!IE)!I$I$E)$!I$I$E)$!I$IE) I@$E)!*H$I$E) I$I$1I$I$E)$!I$I$1H$He)IE)!I$I$E)$!I$I$E)$!I$I$1I$I$1 E)!$E)$!  E)!@&E) pX %) 5@ %)bP@ C&$!H$I$!I$I$E(CI I$!? I1I$I$1 %)$!@$I$E)!I$Ie)dB2 $!bP@I$!bI$I$e)PN)E) )%,PN/wE ++3(Iw +3-زۺm-I$I$$!UUUTI$I$$!!`H$I$!\|I$I$I$I!? $! I$Ie) 1H$I$e)I$Ie)1I1I$I$e) I$$!!@ C&L$$!b@PT_$ $!bI$I$e)I$I$e)I$Ie) I2$!H$I$!I$I$$!b $!/ I$@!bVX !a @ !@p@ I!b %%I$I$d!d I$I$$!!- I$I$$!!I$I$e)@$@$!bPPP`II!b%I$I$d!d I$I$d!d I$I$d!d  !@$H$!jI$I$!VUUUI$I$!UI! I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$$!!I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$E)@$I$!jz^I$I$! I$I$! I$I!+!I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$e)I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$E)I$I$E)I$I$E)I$I$d!d  @$!I$I$!IIH PH+ y1qX----" f%y #p f)+++4 pwDZ '410%44I$I$%4) DZI$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d  !I$I!U !I$I$!jzZI$I$!AI$I$Օ5-I !/+H$ !AI$I$!) I !*** I$I$E)I$I$E)I$I$d!d I$I$E)$!`I$!A /I$I$d!d I$I$d!d I$I$E)aI$I$E)I$I$E)I$I$E)I$I$d!d H$I$!| !@$H$!I$I$!II@5I$I$Q!@6e`H/yww7EX/+)1Od E+1()RP ++ 41Idٰ DZ***4-b, DZǩ4/I$j DZǩ41ٖm%41I$%4  DZ@ H$L$ea!TVVWI$I$$!!I$I$$!! I e)I$I e)I e) E)!oﯪ %)% %)$!I$I$1  %)b*6.I$I$1$`%)XI$I$1I$I$1I$I$1I$I$1 E)!ꪪE)!mѶfI?N1E%1 -+`N7E*3(J 4/6I$DZ4$J$DZETTT4)`lDZ41ٖm%4/$DZǩ43%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4!@8DZPp4`DZf44I$I$%44I$I$%44I$I$%44I$I$%43DZ4,Zࠀ-I$L'1UUV\1f1I$I$)I)I$I$)I)H$@$11! 1f1 *I$I )I)I$I$)I)I$I$)I)I$H$111f1I$I$)I)I$I$g9*9F1M&k&11W^\X! 11-%5bB:"҆1E)P``II$e)E)??I$H$e)$!1E)@$@ 1E) I$1E)/ 1E)I$I1e)*1E)`B2C1E)II$1e)* 1$!@1 -9 L$`$1E)! 1E) *I$I$9!I$I$'9#I$I$9!I$H$1E)I$I$1e)I$I$9 I1E)>>I$K$1E)m)1E) I$M61E)ti1E) + I$I$g9*I$I$g9*H$M1^^`1  11 /I$I$g9*I$I$g9* 11I$I$9 @ 11  $11 I$I$g9* )I)t":ɦ1E)DI$1E)+*k$X$1E)! 1E) //@$9 I$I$'9#I$I$'9#I$I$'9#I$H$1E)" 1`w1 I 1E)++ @ 1E)I$I$91e)@ 1e) I$1e)I$I$'9#[51$!NȐe)$!/?? M$mR41E)$ 1E)I$I$'9#I$I$'9#I$I$'9#I$I$9!I$`B&1E) 1E) **@ $9!I$9!9 I$L&1E) 1e) *I$I$'9#I$I$'9#Xl1E)zIH$ E)!I$I$E)!  I$E)! *1E)+I$H$9 9I$H$9 I$9I$I$'9#I$I$'9#I$I$'9#H$ 1e)I$I$9H$A 1E)II$9I$H$91%)ꪪI$h%e) I$I$E) P)e)  /I$I$9 1e) *I$I$9!m"Ɇ1@ DI$1 7&51!z$I1!$H$9!غm۶l1E),I$H$1E)I$I$9'9#L& 1E)~I$L&e)$! I$E) *$HHHE)@I$H8 UUI$IPHս i@`H/ {n %yX " /W i+(qM0E+ ,&iJ$ -)$I ")$-)$IHD/)I$lǩ1;R"%E)hhPPNĤ e)8DIHf1$!I$I$1E)ꪪ$@ 1E)!I$1%)L&@ 1E)II$1E)I$I$1E)I$I$1e)@ 1e) I$H$1E)0e)$!)If1!˯/ Nu 1ח(@1E)I$I$'9#I$I$'9#I$1E)*I$I$1e)I$I$@!e)$!IB2 e)E)UxI$I$e)E)UUVL$ e)E)VUI$I$1@ e)E) %e)%)ۆmX&e)!$A!e)E)  $1E)I$I$1e)I$I$9I$I$9I$I$9I$I$9I$I$9@1E)I$@1E)I$I$e)E) b( IE)b$B$@1E)jꪯIĴ) 1!׾(C H1$!{I$[ le)!U^I$I$E)!UUUZI$I$$!!?W$I$E)! Um햤1!*햶1E)$ $1%)"1$!jIĴ 1׾(!I$ e)!$I$1"I$1E)1E)I$I$9I$I$9I$I$9I$I$9 e)!f1)I$I$9I$I$9I$I$9I$I$@!I$I$1e)1E)d1E)_I$1E)UI$Ie)E)I$I$e)E)I$I$)(I$I$)(I$I$)()(LE)!^! @E)!I$ E)!UV E)!I$HE)!WW^I E)! E)!I$I$$!!__\I$IE)!IB$@E)!W*   E)!$I$E)!__I$H!bWV $IE) E)!I$I$E)!I$I$E)! @$E)!@$I$E)!I$I$$!! j$I$!b,@!E)!h$E)V[ѶmP$!UUU.RvwiH/p1wfi/---`Sf++1@("E`@@4@ E1J$H$TTTP IE)b-!@$IE)$! **H$I$1I$I$1I$I1I$Ie)E)UU?I$e)E)UUIe)E)Ue)E)I$I$e)E) I$I$e)E)I$I$e)E)I$I$1 I$I$1 I$I$1 I$I$1 I$I$1 I$I$1 I$I$1 I$I$1 $)( I$1@$I$1I$I$1I$I1Ie)E)U I$I$e)E)$E)!d$E)!$I$E)!I$IE)!I$E)! I$E)!H$IE)!IE)!  I$E)! $)($I$E)!I$I$1I$I$E)!*I$I$E)$!* E)!I$E)(E)!I$I$1I$I$E)$!I$I$E)$! @$%)bpX I!%) -IE)!E)!I$I$1I$I$E)$!I  E)!* $H$E) I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$E)$!I$I$1@$H$%)$!E)!I$I$1`0%)x E)- 0d$E) z^UI$I$E(CI$I$E(CI!@E) յI$I$1I$I$1$E)!@$I$E)!I$IE)$!E)$! @$1I$I$e)I$I$e)DI$$y$!U Nwfi +-P wf*1)@  -/H$H$$!TTTT$H$$!I$I$$!BI$I$! $A$!/ I$Ie)1 ɐ$!I$Ie) 1I$I$1I$I$1@ 1@$@$$!bp`II$!bU5% I$I$$!!I$I$e)I$Ie)$@H2E)!@$I$$!I$I$$!bI$!? A$I$e)I$I$e)I$I$$!!!I!)I$I$$!!?/ I$I$$!!I$I$e)I$I$e)! !b I$I$d!d I$I$d!d I$I$E)@$@$!I$I$!z^WWI$I$!UUI ! I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$$!!I$I$$!! I$I$e)I$I$$!!I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d @$I$!b|^^I$I$ I$I$! I$I$!յ !* I$I$d!d I$I$d!d I$I$d!d I$I$d!d $H$!p\\I!b I$I$e)I$I$e)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d  !H$I$!I !.L HnivXH++/yuS6%yX--//&1 E--) 1!O($H$E8TTT4 DZE43%4((DZ!@@@@I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e) @$!ap !A /I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$E)I$I$E)aI$I$d!d @$H$!I$I$!^WWUI$I$!AI$I$ !   !I$I!!  @$!! I$I$d!d I$I$E)@ !`I !% I$I$d!d I$I$E)@$!I$I$E)I$I$E)I$I$E)@$!I$I$!^VXI ! I$I$!I$I$ɖmVlHI PH+++ wws.i@+/R f`/+ -p f- 3- 41ٖmDZ 43I$%44I$I$%44I$I$%43$I$%4 ()@$$)@$!$$!I$I$$!!H$$! $$I$!I$e)H$e)1IE)$!I$I$1I$I$1I$I$1E)!I$I$1I$I$1@&E)pE)!I$I$1H%)( $Eq%!5UU _f0/?-P /wf+3)P S -4- #@ DZ4/i DZǩ41l%4ImǩE*43I$H%4/ R DZǩ4/жM$DZǩ4/ R+%DZǩ4/ADZǩ41 %44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%41X-lDZ1j=ȧ9Xpp I11 //I$I$)I)I$I$)I)$C2$H1f1I$I$1f1*I$I$)I)I$I$)I)I$I$)I)H$@ 1f1 I11 **I$I$g9*I$I$g9* I)I) #991^zzII9!`$C 11XPrCI$L&1E)WA$ 1E)[[oo I$1E)U1E)ꪪI$I$1"n1E) /I$I9!h$N$1^W\)P1 I$L$1E)S38۲M1`p@1a%/  I9!01E)II$1e)*I$I$9!I$I$'9#I$I$9!@$1E)I$I$@!I 1E)I$I$9P"%b!1E)6I$1E)??H11p9 11I$I$g9*@ 1E)@ 11I$I$11?11I$I$g9*I$I$g9*I$@$11 I$11 //H$@$11 11 *I$I$g9* [3,R91I$H$1E) 1E)ƒ ID1$!* (@1E)I$H$9!I$I$'9#I$I$'9#@$ 1E)II$1E)*1e)I$I$9!I$I9!H$@ 1E) I$9I$I$'9#@ 1!@ذdI$1(U@1!1E)mӶm1E)??Im1E)1E)I$I$'9#I$I$'9#I$I$9! 1E)I$I$1e)@Ң%1hXMݖ1*)I9  1E)I$I$91e)**I$I$'9#1e)**K%X-1E)W^zhI$I$E) *LH$IE)!!I$e)! /@ 1E) I$I$91e) I$I$1E) 9I$I$'9#I$I$'9#I$I$'9#I$@ 9 I$9I$ 9@ I$9f1@e)!I$M&e) I$I$E)!?0f1$! -I$I$9 1e)'9#IK@f17 P'P$e)`x)P1 - `1 @DIE)71E)I$H$1E) I$9I$I$'9# $He)UU@$IH%)H@*IbD P8Uk `H+ ɟwEX+" t0i' +qr4 f*+%p*,(زmۧ/ 1@/@$1PU/$I$1@TUUI$@1E)I$I$@!I$1E)I$H 91E)ꪪI$H 1E)ɐI61E)/MŚl1E)@$I$e)%) 1E)I$I$91e) *I$@ 1E)!A$I1E)1E) I$I$9!I$I$'9#I$I$'9#I$I$'9#@ 1e)**I$H$1E)I$I$1e) 1E)ꪫ  e)E)x@I$d0e)E)UU_p$I$e)E) UI$$Ce)E)UW!Ie)E) %k۶ E)!!e)E) I$H 1"$@$I21E)f1 'I$I$9I$I$9I$I$9I$I$9I$I$9I$I$9H 1E)ꪪI$H 1E) I$e)%)I$1%)+1%)$1E)ꪪmҶ[ `1!I$E)!W~I$I$E)!UUWI$I$d!d !$I$E)! UUmI$E)!%U@J$f1$!*H!1E)I$I1E)ꪪdB1E)ꪪI$1E)I$I$1"$I$1"I$@!9I$I$9$f1b`p E)b%5 I$I$9I$I$9I$I$9I$I$1E)I$I$f1e)ꪪI$I$@!I$I$9I$I$@!I$I$9 f1!@dI$E)b(Uf1!I$1E)UI$@e)E)I$Ie)E)I$de)E)UU^)(ۺ[E)`MIE)&$@$)(I$I$1I E)! )($I$1HI$E)!IE)!IB@E)!IBE)!!IE)!I$E)!I$E)!$CE)!IBIE)!IE)!IE)($I$1I$[aE)V E)iv`1*)p1WE`--+R)Se+/--3,oi+ 41`0%3P%P觱PPmE) I$Ie)E)U IB$ e)E)UIH@e)E)$I$I2e)$!ۆmۖme)!$I$e)E)*I$I$e)E)I$I$1 I$I$e)E)*I$I$e)E)I$I$1 I$I$1 I$I$1 I$I$1 I$I$1 I$I$1  1 @$)($I$1I$I$1I$I1I$ 1Ie)E)կ e)E)**~ I&e)!I2I$E)!H$I$E)!I$ E)!I$E)!$I$E)!I$IE)!mn6,E)!@ݶ IE) *&U$)($H$E)!I$I$E)!I$I$E)!*I$I$E)!*I$I$1I$I$1E)!@I$`E)b(E) E)bI$I$1I$I$1H&%)b\p E)b I$I$E)$!I$I$1I$IE)! I@$E)!*@$I$E) I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!I$I$1 E)!j &L$$!I$I$!I$I!* E)!յI$I$1I$I$1$E)$!H$I$E)!IIE)!I$I$1I$I$11I$ $!!I$I$$!!$q1PUUUt1E) %I$I$9!dB"@1E)I$I$1E)I1e)**I$I$9!1E)zI$L2e)E)UUTp Ie)E)EI$HBe)$!e)E)/$I$1E)'9#I$@9I$I$@! $1E)`1@ȐI1b,U@1E))I$I$'9#I$@1E)I$I$f1e)I$1E) /I$H 1e)I$I$9rI1!I$1E)/ 퍱S9E)- O$N9e)UWW$1E)I$@$1e) I$1e)*)$1!(I$I 1E)e)@ 1E) I$I$9! 1E)@ N$1!,1e)"I$I$9!I$1E)I$I$1E)I$I$f1e)I$I$f1e)H e)$!I$I$e)E) $I$e)E) /I$e)E)I$I$e)E)I$e)E)/H$L"E)bTUTe)bI$I1"I$I$1"I$1E)I$1E)I$I$1e)I$I1e)I$f1Tf1!@$H$9'P(f1p\xِ,Y-E)bOs@ IE)bI$@1E)J$J&e)b\V\CDIe) I$1E)1E)1%)ꪪI$1%)Kmf1!^I$ۊme)!U^I$IE)!UUWI$I$E)!I$I$E)I$I$E)!=UUUI$e)!UU0I$e)!U dI$f1!Uf1E) 8f1`I$f151E)ꪪ 1E)I$1E)A 1E)I$Ie)%)* I$I$e)E)I$Ie)E) * $H$@! I1"$e)%)$I$e)%)۰ee)!0$@!I$e)E) @($Ie)P@DI e) @!I$I$9$@! @!`$e)0$@!$e)`1`He) 9$@!ID$IE)a(@$I$He)IIPH+* 1iP-+w7fi-+,1R f-+ 1 hB"$EPP4@ DZE44I$I$%44I$I$%4 E)@@I$Ie)E) I$Ie)E)I$e)E)I$ e)E)H$E)!0@Ѷm&E)!WUW6me)!$$e)$!0lk&e)!0d$E)!$I$E)!A$Ie)I$IE)!I$ E)!I$E)!$I2$!@ !$!I$IE)!I$E)! IE)!/@E)` IE)b5ՕH$ME)bTUV@E)I$I$E)$!*ͶmE)I)(@$E)XaE)H$)(@$I$1I$I$1I$I1I$I1I$I$E)!m[%E)`P %)I$IE)!*I$@ E)!*I$I$1I$I$E)$!H&@&%)XX`X E) 5I$I$E)!I$I$E)$!*I$I$E)!*I$I$E)!I$I$E)$!I$I$E)$!I$I$E)!* I$I$E)!*I$I$1I$I$1I$I$1@$@0E)bp\p  %) % I$I$E)$!I$I$1I$I$E)$!* I$I$1I$I$1I$I$E)$!C&E)!zW`$I$$!I$I$ I E) UU!@ %) BI$I$!bUE)!I$I$1@$I$e)IE)!E)!I$I$1I$I$1I$I$1@$E)$!H$I$E)!I$ e)I$I$1I$I$10$! C&I$$!I$I$E)aI$I$!? !@$! DI$`$)%URwE`/-) dNq +,(l)I$H$$!UUTT$!I$I$1I$I$1$H$e)I$IE)$! $! I$I$1I$I$1$1$C&$!H$I$!I$I$!? $! I$I$e)I$I$e)I$I$e)I$I$$! I$I$$!!**I$I$e)I$I$e)I$I$e)H$$!TP@ !b I$I$$!!*I$I$$!!I$I$d!d I$I$$!!+I$I$$!!I$I$$!!*I$I$$!!I$I$$!! *I$I$!   @$e)I$!b8I$I$e)I$I$e)I$I$e)I$I$e)$!aH$I$$!b\WUUI$I !b5M@$I$$!b$!I$I$e)!b@I$I$d!d @$H$!zI$I$TWUUI$I$! I$I!յ !  !I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d @$H$!I$I!A$H$!I !/+I$I$d!d IIH!I PH++++ yW9qP-///"1S%y--- 1%` )+ 410DZ ?0nIȹE D4I$H$DZUUTT41 DZ/H$H$!TTTVI$I$d!d I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$E)I$I$E)I$I$E)H$I$!I$I$\TWUI$I$UՕ5I$I!/I$I$d!d I$I$E)I$I$E)a$@ !蠠I$I!A*!I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d H$!b\! I$I$E)$I$!^V!   !I$I!!I$I$E)aH$I$!1hH!%I$I$!`AiS6a`H//ywwEa=++1RT E-/+1)` @ -)-+31I$I$31IDZ***43$@$%43%44I$I$%43I$%43I%4X%`'!pPP\ !b! I$I$d!d I$I$d!d I$I$d!d I$I$$!! I$I$d!d I$I$$!! /I$I$$!!$I$$!!*I$I$e) $Ie)$I$e)H$Ie)I$I$1I$I$1%)$!LȄ%)(`&I%)XHE)! E)!$E)$!E)!E)!I$I$E)$!I$I$E)$! Ei$/"PN.fA )/PNsf*+3+$E S )41I,%4)lBrDZ_4) =# DZu~4%IlDZ3!K2۴= DZV 4%&n&DZ [[X4! fmDZ 4% DZ%4)I dDZU4%IDZ4uZ @f/kˤF4%mIDZ 4! DZ 4-DZ4-"#m /J&4f1TXP`$I1e)I$I$)I)I2dB211I$I$9 ! 1f1 9F1$&1bx@`S1b $ 1E)**! 1f1 I$I$)I)I$I$)I)  91 M$h$91W^~zII$11/?ɐH1%)I$I$e)$!k2$A 1E)II1E)/? 11p@I$I$9!11 I$H$g9*H$H$11 I11**I$H$9!$!11I$I$11 I11 ** 11p@I$I$9!9!I$I$9 H$@ 9 @ 1E)ࠀI$I$@! 1E)  ٨91xx {9 - $I$1%) (I1E)p$1^ 1 H'1b\X`&01b 1E)@IXH1b&1f1 I$@ )I)I$I$)I)@ 1101E)X6A1E)/* 11 I$I$g9* ! 91믯 k:X 9E) vam9E)? 'C9xxs1 --B$11I$H$11H$@ 9!II$'9#L$`B01E) I$1E) *I$I$9!I$I$9!9 L$`21e)۲ ۰m1E)j**Y21YI1%)I$I$'9#I 115-k$h$1E)lI1E)/I$M$1E) 1E) I$I$g9*I$@$11 I11 **11I$I$11I11 //I$I$g9*I$I$g9*I$I$g9*d$`$11_V\P (51$I1$! I$I$1f1*X6`1E)I$k%1E)xD"I$1E)I$I$e)E)**$!1E)/H1e)I$I$'9#@ 1e)I$I$9 1E)" *I$I$9!I$I$9!I$ 9!L$d&1E)`0e)pI$@f1 I$I1e)$I%@f1UUU؉mۣ@e)UI$IH8VVV*I IH@="I$IPHUյ+Iv `H . %yP n B$yf1*PU?%y1PUUUI$I1e)`1E)bɐ 1E)) I$I$9! 9 `1E)I$ 1e)H$1e)1e)*d2 1E)~Ie)E) e)E) h$C& 1E)W_[e $I$1mٖl1E)1e)H$@1E)ꪪI$I$f1e)I$1E)M 1I$I$'9#I$I$'9#I$I$9!H$1E)ꪪI$I$f1e)I$1E)*I$@1e)I$I$9H 1E)ꪪ!A$ 1E)+ q9e) - =;XM91UVx$AL$1E)1E)jꫯMڤk 1!׾(ٖ ֶ1E)*I$1E)I$I$9I$1E)*1E) IȐ1!1e)Ȁ%1b`p D1 551e)I$@ 1E)I$I$@!I$I$91E)I$e)E),I$H$e)E)I$e)E) I$$1E)U^mڶm1E) 4E)`4Ie)b.@9I$@@!I$I$1"I$1E)$$1E)N$p"1b^^1 9f1 h@1e) %1E)ꪪ1E)ZI 1% I$@$1e)[ 1E)zI 1E)I$@@!I$I$1"I$1E) $1E)1E)I 1E)ꪪIB I1E)ꪪ[mf1$!zI6`e)!UzI$$e)!UUzI$I$E)!UUUzI$I$E)I$I$E)I$I$E) $I$$!!}}B$IE)!bUUUI$IE)5.mm$e)!]ݖf1! $1E)$1E)1E)I$I$9I$I$91E) 1E)@ 1E)I$e)$!r$Le)ۖm6e)!I$Ie)%)I$Ie)%)*Ie)E)I$I$@!$H @!I$I$e)E) e)$!I$ME)bWV PE) $h&e)bxxI e)--I$I$e)E) I$I$e)E) @$HE)I$I$!`AiviXH/{7EX/+&yRT %y/+ 1%)N + 4R" IEP4 HDZE43%44I$I$%41,,DZ1I$H$e)UTTT$e)E) $e)E)Wlmۤe)!H$E)!ָAA$E)!IE)!@$H$!I$AE)!I E)!諭I@$E)! H$E)!$I E)!H$ E)!I!IE)!m5 E)bp`ItiE)b% I$I$e)E)/$e)E)^H$e)E)WUC$IE)!@ `$E)&hX[mِE)  ۺ%h&E)xxIE)--I$I$1 I$I$1 M$HE)b^XɖnنmE) I$I$1I$I$1I$I1 $E)!$I$E)!I$I$E)$![6E)`IE)b% $)($I$E)!I$I$E)$!*I$ e)$! [5ضmE)b` %)% I$I$E)!*II1l%E) XE)b I$IE)$!*I E)! E)! I$I$1I$I$1I$I$1I$I$1I$I$E)$!0H$E)x^ I$$!jUE)b I$I$1I$I$1 E)! d$E) zWUH$I$!I$I!*I$@E) E)!I$I$E)$!E) * $E)!Ie)@E)!I$I$1I$I$1I$I$1I$I$1 @$E)!I$I$e)IE)!I$I$1I$I$12$!`$I$%)I$I$E)aI $!*!@L$$!b V%)* I$I$1 itp$) )%" Rqfq +-, f -,@$ !PP@@I$I$!b7Օ&E)$! $$!!I$Ie) E)$!I$I$1I$I$1I$I$1 I$C&$!H$I$!I$I!* %) % @$I$E)!I$I$e)I$I$e)I$I$e)I$I$$!!I$I$$!!*I I$e)I$I$e)I$I$e)I$I$$!!I$I$$!!*** I$I$e)I$I$e)I$A$$!!/I$I$$!!I$I$$!!**I$$e)I$I$$!!I$I$$!!  $1I$I$e)I$I$e)I$I$e)I$I$e)I$Ie)I$I$e)I$I$e)H$!$!I$!b&I$I$e)I$I$$!!I$I$d!d  $!I$I$!^VWUI$I$! I$I$!UՕI!+* @ !`I$I!bՕ&I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e) @$!I$I$!  A$!I$I$!!+ I$I$e)IIH! PH 7s+7~%yPooo/%[Q `55 1( p 43DZ4I DZE44I$I$&?,@S4m6ȹ`bjjI$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d $!*I$I$d!d $@$!I$I$!z{__I$I$!AI$I$! !/ $!b`I$!a /I$I$E)I$I$E)!I$I$d!d  $!I$!a&I$I$d!d I$I$d!d I$I$d!d I$H!A  ! I$I$E)H$!^! ! !** I$I$E)a$@$!p`I$I!a*7!I$ HE) I PH. .iH//K .NfP+ ==/1N ++1-!A@+3-۰ Ф4/ DZ* 43H$%41۲-%41I$%41%4 DZE@1H$N$!TTWW!@ !I$I$e)I$I$e)I$I$$!!I$I$$!!( $!  ! I$I$$!!$ I$!@ @$e)@$I&$!PE)!I$I$1I$Ie)IIe)IE)$!IE)!E)!I$I$1I$I$1I$I$E)$!I$I$1I$I$E)!I$IE)!I$H$E)!$ I&E)!*zwO$Ey$) 5U%PN.a *1PN. +4-@J& 43DZ44I$I$%44I$I$%44I$I$%4/HDZǩ4%DZx4%=5 DZb4!DZ1fM6IDZf+4@NMDZf*4!$DZ*V4!I DZ 4Ā DZfՀ4mٶq ̧f/DVmF*- mfY@@ o鷈Q)I$I$)I)I$I$)I)I )I)I$I$g9*9F1p$ 1bx 1- L$ 1e)II$11**I$I$)I)I$I$)I) II$91 @:91I$I$11A 11H&@41E) I1%)??I$M$1E)`1E)L&`011W\XpɐtI115@$ )I)@ @$11I$I$9!dBH11Z!A$I11=?@x1$I 11* I$I$g9*L$`011WT\p 9 I$I$9!9 I$I$9!H$@$1E)II$1E)/?R"$I1!P yqWmٶ9%)5 M$[b$9E)I1E)+* N'#9V\xɐTI1 ) 11I$I$g9*I$I$g9*@$ 1f1 I$11 *I$)I)$I-1b@0 1bH$@ 11 I$11 /(P$1E)@P\ 1%)I$I$g9* @B 91t$I$1VUT V9 * M۰9E)`K6X1e) *`0C1f19!I$I$'9#B$H1E) I$I$1E) 1e) *I$I$9! I9!1E)I$I$1E) 1e)I$I$'9#@$I$1e) n1e) `1e)#&e)bXIj1 I$I$1%)*01E)11I$I$11*11 @ 11(1b@@11I$I$g9*I$I$g9*h$1E)@PX$m61x~9I1a - I$H$11 I11 **1@1E)I$I&1E)d2!1E)I$I$e)%)*!1E) +/I$H$'9#I$I$'9#@$1E)I$I$9 1e)I$I$'9# i&-1@LI$1&I$@$9  %@f1UUU$I$@1U $I$H8UUUI$IH8.  I$IP@ I6I `HU+ .Y %qP -q%) PU B$I$%qf1PUUU 1e) *I$I$9!$@f1I$I$'9#$1e) *I9 I$I$9 I$I$9 @ 9 I$L&1E) I$9'9#L2 1E)$C2e)E)pp@$H$E)!jz~$ E)!  e)E)%5vm۴1E)/1e)H$'9#I$I$1E)I$1E)1e)I$I$'9#,X$1`XT 1 %@ 1e) *I$I$1E) I$9H$1e)I$I$1e)@$I$1E)ꪪ'9# 1XI$91 UU }l9e)^xI$I$1E)I$1E)I$I$1E)I$1e) * @&1E)I$H 9 $I$9 1e)*I$I$9!IH1 @ 1 @ 51` 1 H 1E)I$H 1E)I$I$1E)I$I$1E)1E)I$@e)E)$I$ 2e)E)hM1 mI1!j IdKI1I$e)E) 1E)1E)ꪪI$@!I$I$1"$I$1E)#͓M1pf1%I$I$9I$I$9I$I$9H$I$9 I$9H$@$9 f1@ĐI$E)UHH0e)`E)I$I$e)E)$I$1E)I$1E)$A$$1E)I$I1E)I$1E) e)@me)!~I& e)!UI$Le)!UUI$I$$!!I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$$!!7ЦI$E)bVvmE)+@I$E)!_W I$e)!lݖ$e)!0ې$e)!f1E)I$1E)@@e)$! I$I$9$1E)1E) e) @De)a %I$I$9I$I$9I$I$9I$I$9I$I$9@e)p@e)9 He)UUUH$I$He)I PH**  ɛwqP/+ yyw.efi++/1N f+*4+qn )+41I$DZ41K$%41`%4/mDI DZǩ*?4/jնm)DZ1H$@$%)TPPP$H$E)! E)!I$HE)!@ E)!ꪯI@$E)! H$E)! I$E)!$I$! I$@E)!IB2$ E)!m&K$E)jZ\p6KIE) !IHe)E) II$e)E)$$e)E)WI$e)E)UU$I$1I$I$1I$I1I1K&E)\x E) @E)P PE) I$I$)(I$I$)(I$I$)()(I$@ 1 @$E)!@$I$E)!I$I$E)$!I$IE)! $C&L&E)!!@E)! $I$E)!0%)@$I$%)b*5 H$E)!H$I$E) &E)`X %)5I$I$E)!E)!jH$I$!bXTUTIdlE)b%5  $I$10@0E)! E)/I$I$E)!I$I$1I$I$1I$I$E)$!I$I$1M$[3`E)a^I$E)U E)b I$I$E)$!*0E)!Z C&I$E) zVUUI$I$E(CI$I%) UU%!AE)!I$I$E)$!I$I$1I$I$1 @$E)!I$IE)$!IE)!I$I$E)$!I$I$E)$!I$I$1I$I$1$H$E)$!I$Ie)IE)!I$I$1I$I$1&$!@$I$$!說I$I$E)aI!A$!*  $!I$`%)bW0!@%) H$%)$!DIX$!URwE`/-) Pi *%,(l)I$H$$!UUTT%)I$I$!b8U@%)I$I$1I$I$1 1H$C&$!H$I$$!I$I!* $!@$I$E)!I$I$e)I$I$e)II$$! I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!! I$I$$! I$I$e)I $e) $C&$!p$!!bI$I$$!!I$I$$!!$$!b@P $!bI$I$e)I$I$e)I$I$e) A$e) I$e)H$I$e)I$I$e)I$I$e)I$H$e)I$I$e)I$I$$!!I$I$d!d $!H$I$!jz^VI$I$!AI$I$UU5I$ !* $!I! /I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$e) !H$I$!I  !H$I$!I !+ I$I$d!d I$I$e) H!IX8*ywquS%yX----(1OE-+ 3)J` 43DZ44I$I$%44I$I$%4, DZ@@ !b I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$E)aH$I$ A  ! H$I$!I$I$TVUUI$I$U5II!/I$I$E)@ !b`I !a/ I$I$d!d I$I$E)I$I$d!d I$I$E)@ !`I !A/I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$E)I$I$d!d  @$! I!I$I$E)I$I$E)a@I$!jInm$I?I$I$Q!@ivIXH=/ws6EPo++)R `+* 1%p @- 3/!I3-M$WV4/)DZ43H%41%41I%41%4 ($I@H$I$$A!TWUU$!@$!bp!I$I$d!d I$I$$!!I$I$e)I$I$d!d I$I$$!!*+$H"$C$!@ $! I$I$e)@@$$!P I$I$$! @$Ie)I$e)%)$!LE)6 $ E)%%H E)/'I$I$E)! I$I$E)!$E)! l[&E)! Umm$E) _U@I$E) UU$I$!(I$ $!IL%)PE%) %5(`N/%y +/1Is +4-@ RDZ43DZ44I$I$%4&DZEyX4DZEy44I$I$%1ȑ$I$E4UUW44I$I$%41%4,@DZ4!MDZ4!NDZו4NDZfח4!@NbDZW4DZf`4%&HFX/|'8e1^^xp11I$I$)I)I$I$)I) H$d&91 I)I)I$I$9F1I$I$9F1I$I$9F1۶m؆1!0$!1f1 I$H$)I)I$I$)I)  91 M&h491W^^zII$11/?ۂ-l1E)I$H$e)E)* H61jI$1%)??H11` I$I$9!11 I$H&1f1I$I$9! I11 * $)i1@I$I1bU,$I1E)I$11*11pI$I$9!$I$11 I$I$9!HĆ1$! 1E)I$I$1E)iId1E) +/M$h%1E) ɖt9E)˯L$I$1%) iٖn9E)I$H$11 11?I$I$g9*I$I$g9*I$I$)I)dH$10\W 1X,1bP@I?1$ 1!I$H$11R") 1%) 1%)I$I$g9* I$)I) R*H1IȐ$&1E) 3  9E)‹/I$I$1E)*$K1E) H$@ 11@$9 I$I$'9#@ 1e)I$I$1e)1E) I$I$9! 9 `$1E)I$I$1e)1e)@$1e)  1e) **@11 N'@1bVXIIf1b L$21%))dI$1E)**11H 11 $I$11 11Z$P(1bPTP@ I1b11I$I$g9*1E)@In1E)9  "%1%) 1E)5I$11 *d":@1E)I$I$1 $(#e)@I1/5յ1E)I$I$'9#I$I$'9#H$ 1E)I$I$91E) 1E)I؆1 $I$@1UI$I$@8I$I$@8InP8U+IiXHUս nYqP wR$qe1*@T C$O'%q$!PUUWI$I$$!! If1$! 5 1e) 1E)jM$ME1VUVH$I1I$I$1E)!I$1E)*9 I$I$9 I$I$9 H1E)I$H$1E) I$9I$I$9!I$1e)C" 1$!IIe)E)$ He)E)@/I$I$1!1E)0.1E)@1I$H$9 I$91e)@ 1P@)P1 I$I$'9#1e)I$H 1E)I$I$9 $1E) I$d21E)I$I$1e)1e)6m$1E) XR$9e)x/I$H01E) e)@I$e)U`$dB1E)^W_DJ1E) I$B1E)I$I$9I$1E) *1e)*I$I$9!h4 1X` 15 I$I$9! 1!N$f1b8U$IH1 I$I$@!I$I$f1e)e)If1U!I$ e)E)H$e)!I$I$)(I$Ie)E) $H$e)%) $e)$!@1E)I$@!I$I$1" $I$1E)I $1E)IKf1!I$I$9I$I$9I$I$91e)I$H$1e)If1,`0f1bX`If1f1$I$1E)I$He)%) I$I$e)%)I$I$e)E)**$I$1%) @$R")1XVZj I1  I$I$91E)I1E)Km1!^I&`1!U~I$:le)!UI$Ie)!UU$C$ E)!UUW\I$H!bUV!bI$I$d!d I$I$d!d I$I$$!!I$I$d!d  $I$$!!I$I$$!!I$I$$!! //@!C2E)!$I$e)!ې$I$e)!_WU@b;me)a`I!A$!bI$e)E)UU@I$e)E)+UU II$e)E)UUI$e)E)UUI$e)E) *UUI$e)E)U$@$2e)E)}$I$e)$!ڶM۶HE)I$IPH+kwv`Pյ-{7E`-+)qR E+ 1()%HA+4IIDZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%3@( $!P@@@ E)!I$I$e)$E)!I$IE)!/I$dE)!IE)!Ine)!Mme)!>Ie)%) I$e)E)le) @I$e)E)UU$I$e)E)UUUI$I$1I$I1I$I1I)( 1 I$I$1 I$I$1 I$I$1 I$I$)(I$I$)(I$I$)(I$I$)(I$I$)($)( I$1H$I$E)$!I$IE)! I$E)! E)! $E)!@$I$E)!I$I$E)$!I$I$E)! E)!jI%)5 I$ E)! IE)! @mE)b` %)I$I$1I$IE)! kE)@  )(I$I$1I$IE)!E)!I$I$1I$I$1I$I$E)$!I$IE)!*I$H$E)! I$I$1I$I$1 E)$!`$E)!z^UH$I$$!I$I$E)aI!E) Ue) I$I$E)$! E)!j$E)!$AE)$!I E)!E)!I$I$E)$!I$I$1E)!I$I$1$I$E)$!I$IE)$! E)! E)! %) C&$!H$I$$!I$I$E)aI!@$!*I$I$1`$%)8 E)!@$I$E)$!I E)$!I$I$1 ! Th%)%!_9rfP==%+, Of -,@(@$!P@@%)$!H%)I$I$1I$I$1I$I$10$!@H$I$$!I$I!* %)/ $H$e)I$I$e)I$I$e)I$I$$! I$I$$! I$I$$!! A $1I$I$e)I$I$e)I$I$$! I$I$$!!**I$I$e)I$I$e)I e)@$H$e)H$$!\p $IE)oI$!bUI$I$$!!I$Ie) $I$!b@ $!bI$I$e)I$I$e)I 1I e)I$I e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$$! I$I$$!! !@$H$!zZI$I$!AI$I$!AI$I$b@PTP ! !I!/ I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$d!d @$H$!I$I!A$H$!I$I!+I$I$d!d I$I$e)I$I$e) H!IviXH=//+y1qE`----)1p E--/+3, 44I$I$%44I$I$%44I$I$%4((!@@@I$I$e)I$I$e)I$I$e)I$I$e)!H$I$ A(!I$I$d!d I$I$E)I$I$E)a@!b$@$!I$I$!z^_WI$I$!AI$I$  ! I$I$E)I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$d!d H$I$! !* $!$I$!zIIE)-H$)5IIPH++ w1iP-/ ys/fi-/ -)f++4-!eRD DZ43I$DZ43IDZ*44I$I$%44I$I$%4,DDZ44I$I$%44I$I$%4( )@@@@I$I$d!d H$@!ؠ@!I$I$d!d H!b(6!  !@ ! I$I$$!!*(I$I$e)I e)I$1I$I$$!! &$C$!PII$$!  E)!$E)! $I&%)!_U@$$E) L$E)  I$!$I $!jd$I%)b I$dE)^I6E)I$E)!U?(MhE)(I$E)!*@I$E)! @$ 1N EE) %)N/E+1% r +4$$R"%EPPP4DZE 4X%DZEPP4DZE44I$I$%43$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4IDDZE4%DZ4!Ilۀ DZ4vd f/dKfi@着ێfq1UUVTI$H$)I)I$ )I) 9F1I$I$g9*9F1̦1!@3I1/$L1^\0Nm1!@$@ 9F1I$I$)I)X51e) m 91I$I$11A 11k&X41E)h$k6E)bp\X`E)a @ц1 bj+IX1 ?5ɐtI$115U@0H1e)I$I$9!11@011Pp@II$11UUI$H 11 ]{$1 V1!`&011\\p`! 11I$I$9!p$K1^\P1 L&@01E)I$I$1E)21E)Im$1E)* J"%9E)ɐI1E) **$H&(1@LI$1 711I$I$)I)I$I$g9*K1Tmۆm1E)1f11!P@1 H`gdž1!( $)1%) 1! I$I$g9*I$I$g9* 6-9E) j ޘw1) ɐxI$9E)/ H&3(9E)ɐI$1E) *C$1f1I$H$11I$@$9!I$I$9!H$@ 1e) I$1E) **I$I$9!I$I$9!9 I$`$1E) I1e)**I$I$'9#I$I$'9# I11%%I$I$g9*K%X1E)II$1E)***I$h$1E) Id1E) *I$I$g9*I$ 11I$11*I$I$g9*I$@$11 I$11/?I$I$)I)I$I$)I)I$I$)I)`11`1E)I 1E)I$H$11 11 *r"ڐɆ1E)I$I$e)E)Mm6i1 I1E)?I$1E)I$I$'9#I$I$'9#I$@ 1E) I$9@f1UUUIĂ81UI$I$H8VV H8m۶IH8?I( X@յ wqP Rqe1*@T ?%q1@TUUI$I$1e)@ f1$!pI$M&e) I$I$e)Ć1$! 5I$1e)I$I$'9#I$I$9!$C$@1E)I$L&1e)!I$1E) *9 l 41E)1E)1E)۶-#0f1p6DI1b ? 1e)1E)*I$1E)WH$He)E)WUWLB9&hR1E)Ws?i&m&1E)UUW\%[E)bp` Of1b 5% '9#I$@ 9I$I$9 1e)I$I$'9#I$I$'9#I$I$'9#I$I$9!I$1E)I$I$9I$1E)*I$1e)I$I$1e)@$I$1E)ꪪI$I$1e)I$1E)/kՒI1E)~IڴIf1A$I$1E) '9#$I$1e)*C$1E) I$@1E)I$I$9I$1E) ='1Z1! I$I$9!1e)N2g1b:1e)I$1E)I$I$1E)I$I$1e) 01E)j{I2$IE)!*II E)!?5I$I$e)E)*$I$1E)L$1E)I$L 1%)I$I$e)E)Ie)%) I$I$9I @!"%e)`IIXE)%5/$@I$1E) I$1E)I$$9I$I$9 8f1`f1! I$I9) Hf1@I$It%)7@1$!I$I$9I$I$1E)He)%)I$1E)I$H1E)I$I$e)E)* I$I$e)E)$I$1E) $1E)$I$$1E)I$I$1E)I$I$9I1E)I$1E)$C1$!ꪪIme)!UI&f1!W~I$ۆmE)!I$dE)!__xI$IE)!UUI$H E)!~I$I$E)I$IE)!@$H$E)!~zI$I$d!d I$I$$!!//I$E)!  E)! I$E)!$I$E)!U$I$E)!$I$e)!I$E)!I$E)! @I$E)!IH$!UUI$I$Q!@I!XH/ yw7a%yP+" ywsT $q/+1 1r -+ 4-!e @ADZ43%44I$I$%44I$I$%44I$I$%44I$I$%4$DZET4@`!@Ive)!+Mme)!!Ie)E)+Ie)%) $e)%) 4e)!IIڴe)!?$$e)E)W I2L$e)E)WU@$I$1I$I1I$I1I)(Ie)E)ժI$I$e)E) I$I$e)E)I$I$1 I$I$1 I$I$)(I$I$)(I$I$)(I$I$)(I$I$)( )(H$)(@$I$1I$I$1I$I1I1$)(H$E)!@$I$E)!I$IE) I$E)!* $I$E)! (H$I$E)$!(I$IE)! E)! $)($I$1I$I$1I$IE)!  E)! I$I$)(I$I$)(I$I$)(I)( )(I$I$1I$I$E)$!I$IE)$! I E)! $I$1I$I1I$I$E)!2E)!^I&L$%) p^UUI$I$E)aI$I%) UU% AE)!I$I$E)$!I$I$1I$I$E)$!@&`0E)|x!!I$! IIE)!I$I$E)$!I$I$E)$!I$I$E)$!0%) @P`  E)/?I%)$!꪿I$E)$!I$I$1I$I$1E)hI$H$!H$I$!I$I!*IE)!I$I$1 E)!ꪪI$d!b0@$!IE)!I$I$1I$I$1IDI$`%)UUpSwEX+/( )2%qJKk, @ %y)I$H$%)UTTPI$I$1I$I$1I$I$1 2$!H$I$$!bXT^zI$I$!+ E) $H$%)$!I$I$e)I$I$e)I $e)$!I$I$! * $I@$$!T $! $!@I$$!I$I$$!!)I$I$$! * I$I$e)I  E)$!I$%)$!I$I$e)IE)!@$H$E)!I$I$$!! *  Ie) H$%)$!I$I$e)I$I$e)I$I$e)I$e)  1@  1I$I$e)I$I$e)I$I$e)I$I$$!!pI$I$$!!I$I$$! I$I$d!d $@$!zI$I$!^WUUI$I$!AI$I!յI!j!I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e) @$!I$I$!  A$!I$I$! ! I$I$e)I$I$e)I$I$e)H!ItI`P5yuS7qE`---/, f---)4-!R!a DZ44I$I$%44I$I$%44I$I$%4(( @@@@I$I$$!!I$I$e)I$I$e)I$I$d!d I$I$e)I! I$I$e)I$I$d!d I$I$E)aI$I$E)$!I$I$!z{I$I$!AI$I$ I$I$!  !I$I$E)aI$I$E)I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)$@$!pp I$!A/'?I$I$d!d ! @$!I$I!**I$I$E)H$I$!I$I$!^VWU !E)% $$H!  XH/W1q%yX-/%1Rd %y-/+1%)u -+ 41ِ0DZ* 44I$I$%44I$I$%43@$@%43%4I$IDZEUUU44I$I$%44I$I$%4 @DZ!@@EQ!UUUTI! % I$I$$!!U_ I$I$$!!UIH$I$!I$I%)I$IE)!!I$ &$! I$@E)!$I$$!8I E)! %)$!ꪪI$E)!IE)!IE)!I$I$$!!*I$IE)!_UIBE)!UUIBE)IBE) UI$AE)!+$$IE)!jm۶mE) $I$E)! ضKuE) $E)!z CE)b$`%)I$A$1HI$1a;I8EQE)UUUNyEE1 %,`N7E +3&PJs +41ِ DZ **44I$I$%44I$I$%43 %4/IDZǩ//44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4IDZE44I$I$%44I$I$%43@%4ZiHx-|&,f1^Xx` 11I$I$)I) I$I9F1 I$H$91 I)I)1e)M!1& R,$I91ZI$d11  )I)I$I$)I)11p )91 * K&X$91V^Xp I$11??[- l1E)I$I$1E)d$ 1E)$C$Af1E)Wj0 1!5 I$I$9! 11L$`&1f1 $11 11*I$`211UV\x!@11 /Oǐ1V  1 11I$I$11$I11 [l`1E) I$11*1E)I$I$1E)6`1E) /K&X41E) 1ɑD9E)?? I$L'9E)2 1$!@I|h1a&0uD1E)&I$I$)I)I$I$)I)I$I$)I)L&dB21f1 I$11 **I$  )I) 1E)N1b֪ US5 @1$!bbIP 1$!%% I$I$g9*I$I$g9*<1``ɗ|yuA1%5-M$k%1E) K D9f15 I$K&9E)`K1X1E) /`$C1e)I$I$9! I I11I$H$9!I$H$1e)1E) I$I$9! I$9! 1E)I$I$1e) 1e)I$I$'9#I9 1111I$K51E) qd9E)˯I$M$1e)*P 1E) I$I$g9*I$ 11 11 *11I$H$11I$11 /&1b@P  1 I$I$g9*I$H$11I$I$11/@$11I$I$9![3ݶm11pI$Ц1E)  I21E) I I01E)I$1E) + 1E) @1UUU$)K$@1UH$I$@f1I$I$H8I I$H@ZI$mX8+ ݴ qHխ r$pe1@T $O'qf1@TUU0t1E) I$I$'9#1 @ IE)&7@3f1$!zI$M&f1$!UUW\I$I$$!! Ie)! /I$I$9I$1e) *$A$1E)1E)I$L&1e)!I$1E) *:-1E)xx-01E)--I$I$9!1$!@n`17 I$I$91e)* 41`(I$e)&I$I$1"C&A1E)p+I$L&e)!ꪨ$IE)! ݖn1E)'9#I$@9I$I$9I$1E) *I$I$'9#I$I$'9#01E)* ɖt1E) /H 1E)I$I$1E) $I$1E)*@1e) *I$L&1E)I$I$9I$I$f1e)I$I$1E)? 1e)I$H 1E)I$I$1e)H 1E)I$I$1e)$I$1e)*@ 1e) I$I&1%)tf1Z! 1$!  *I$I$9!I$I$9!I$I$9!I$I$9!I$I$9!I$I$9!I$1E)$C$ 1E)!@e)E) 1E)I$I$1e)I$1E) $@ 1"ۺ-1j I$E)bI$$C1E)I$I$e)E) I$e)%)e)$! e)! I$@!I$I 1" $I$1"$I$1E)p"'͆1XXh e) I$I$9A$I$1e)( f1!@I!b>P1$!I$I$9I$I$9I$I$9I$I$9I$I$1e)H e)%)I$e)E)$I e)E)@ E)I$I$e)E)$I$e)E)$I$e)%) *I$1E)$1E)1E)I$I$1E)I$I$9I$I$f1e)ꪪH1E)I1E)L1E)UIB1E)Ummf1$!IҶe)!UIҶe)!I$$ e)!mӶe)!I$k e)!I$m e)!UUI$m `e)!ժI$$ e) I$$ e) I$$ e)!I$m;e)  H$!I$IPH+xqiP-yw/e`-+ ,qRT E/+ 3)1JP - 416`DZ 43 %4DZq44I$I$%44I$I$%44I$I$%4H$IDZETT4H$@E1I$H$e)UTTT$I2e)E)~@ e)E)$H$e)E)ZWW )(I$I1I$@E)!I e)E)Uu e)E)u  e)E)* @$E)$!IE) I$I$e)E)I$I$e)E)I$I$e)E)I$I$)(I$I$1 I$I$)(I$I$)(I$I$)($)(@$)($I$1H$I$1I$I1I1)($E) $I$E)!I$I$E)!I$I$E)!*II$E)! $I$E)!I$I$E)$!*I E)!* )($)($I$1I$I$1I$ 1I)(I$I$)(I$I$)(I$I$)(I$I$)( E)!$)($I$E)!I$I$E)$!I$ 1 @$)(H$I$10`$E)b`X\niE) @d$E)!UU@$I$!I$I!*I$%)!U E)! I$I$1I$I$1I$I$E)$!I$I$E)!E)!ꪪ E)!I$IE)!շI$I$E)$!I$I$1I$I$1$E)! $!!IE)!I$I$1I$I$1 E)!j 2L$$!I$I$E)aI$I$!ꪪ*!IE)!I$I$1 $%)`p$I$E) H$I$e)I$I$1I$I$1I$I$E)$!I$I$1I$I$1 rOp$) )% Rwfi +, Nf +-,@(@%)P@@I$I$1I$I$1 0$!@$I$$!I$I!z* %)/ $H$E)$!I$Ie)I$ e)$I$Ʉ$!b$ C2$C2$!@I$I$!&U$!bI$H$$!b^^$!  H$$!bVI$ !& II$$!!H$I$e)I$Ie)$@$1I$I$$!!I$IE)!/@$E)!I$e)I$@e)$H &$!bI$I$$!!I$I$e)I$I$e)II$e) @ 1A$I$e)I$I$e)I$I$e)II$e)H$I$e) $!$!I$I$$!! @$!I$I$!z^WUI$I$!AI$I!Uյ !+* I$I$d!d I$I$e)I$I$e)$@$!`p ! -I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$e) !H$I$!I $!H$I$!I!+ I$I$e)I$I$e)I$I$e)I$I$e)H!X`P%--- yS1qfi-----pp)4/ DZ?4I$A DZWSqE44I$I$%44I$I$%4(P%!@@PPI$I$e)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$E)I$I$E)I$I$d!d @$H$!I$I$PPTWI$I$!AI$I$!I!b2!I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)!@I!b !H$I$!VWI$I$   !* $@$!I$I$!I$IE)Uյ5 0`&E)!zZ^VH ivXH///+yW7qE`--)1` E--+3)d P 4H$DZETT43%44I$I$%44I$I$%44I$I$%44I$I$%43$%43$%4/ @$)DZ/M$L%!VVVPI$I$$!!0I$I$$!!P`$ $E)!mz$ $!  H$HE)!_^ E)!`B$ %)غ  E)!LE)$!a`!$@%) I$I$1$HE)!@$I$$!!I$I$E)$!I$I$1$%)pE)!I$I$E)$!I$I$1I$I$E)$!I$I$E)$!I$I$E)$!*I$I$E)$!I$I$E)$! (@E)!ب*I$I1I$ 1 )(I$I$)( ?EiE)UUU`N)E$1 --P /we*+3)P W -410 DZ *44I$I$%43%4-DZ43%43 %44I$I$%44I$I$%43 %44I$I$%44I$I$%44I$I$%44I$I$%41,`DZ1h@fA@&ɏ$1UUUT0ᄦ1%),  I$9F1 @B0$C91I$I$g9*9F1I$I$9F1(P$1p|4I 1I$I$g9*H$@ )I) I)I)  I$91*  91`@$1bpI1b %K%X,1E) I1%)?? I$Mۦ1e)ِnɖt1E) /H&@B011T\PbIdI$11%U X4Z91I$I11I$I$11@$ 11I$I$9 11I$I$g9*I$I$g9* $11|P`  11%@$H$11I$I$9!I$I11 H&@01E)II$1E)?dI1e)I@$1e) 3c9E) )R")1$!hXhH1$!5 NlrI1E)U,11I$I$)I)I$I$)I)$B$I1f1I$H$11!1f1 I$I$)I)I$I$)I) 1f1I$I$11*11I$I$g9*I$I$g9* 9F1 5 91_~I$I$1e) P2,C9E)⃏ $I$1%) @ 1e)L$`01f1I$I$9!9!m6`1e)!A$I1E) I$I 9!I$I$9! 9 dB2$1E)I$I$1e)1e) 9!II$11/?11@ 11P@@I$I&1$!**h%it1e)*I I%1E)* 1e) 1f1IH 11*11 @ 11I$I$11H"%" 1\pɐ1I$I$)I)1f1I$H$11I$11@11 $I$11 [a11`m$k%1E) I$1E)۶m,@e)UUU@.mۣ@e)U۶mۣ@1I$I$H@I P@+!I2dP@ItmX@յ* IYN qf1*@T $I$q1@TUUI$I$9! 1E)@N$NSf1$!U,$A1E) *I$I$9!H@1!4@6$e)b U@f1!pI$I&e)$!I$I$$!! If1$! I$I$9 I$1E) *hҢ%1!`Xd11! 5I$I1e)!!I1e)* C&LB&1E)mn 1E) I$H 11I$I$9 I$@ 1$!I$I$92۰m1E)jI@1I 1E)I$I$9mж1E)z I$p"ц1E)UUTp $e)E) uW햴1E)1E)H$9$I(1$!` Df1b5'9#1E)ꪪ A1E)I$I$9!1E)I$@1E)I$I$9I$1E) *I$C1E)I$I$9I$I$9I$I$9$I$1E)I$I$9 @!II$1E)I$I1E) @$1e)*$A-1!@[N$e)(U1$!!I$1E)*1E)*I$I$9!I$I$9!@1 I1! //I$I$9!B$A1E)I$1E)۶[%f1`Pf1 -5I$I$1E)I$I$f1e)ꪪI$1E)IHe)a7  $I$e)$!@I$1E)I$1E)  @ e)%)  $I$e)E)***$1b$e)b@PT e)bH1E)I$@1E)I$I$1" $I$1"I$1E)!$1E)$I1E)J$I 1$!**I$I$9I$I$9I$I$f1e)I$I$9I$I$9I$I$9I$I$9I$I$1E)$f1`P@ e)b%%H@!H e)%)I$1E)I$He)%)(I$I 1E)I$Ie)E)** I$I$e)E) I#'E)`X @Ie)$I$1%) f1E)H$1E)I$1E)@$@!$1E)$1E)e)$!I$I$9I$I$1e)I$I$9I$I$9I$I$1e)I$I$1e)I$I$f1e) $He)UI$I$Q!@IiXH/+7EP+% yyST %q-+ 1!1wn + 4/i$MSA3/$$IBDZǩ*3 (@&$!@`X4pDZ! 4,?DZVV4,Mo4/ 4DZ 4/$DZǩ41`ؖ$%1@$@$E)PPPP$2$Ie)E)}Ie)E)U7dB$He)E)_e)E) I$I$e)E)?I$I$1"I$I$1"I$I$e)E) I$I$e)E)e)%) E) I$I$1 I$I$1 I$I$1 I$I$1 I$I$e)E)  e)E)ꪪxH$)($CE)!j`$I$E)bVUV۶mٖ E)۶m$E)p6E)a  )(@$E)!$I$E) I$I$1I$I$1I$I$1I$I$1I$IE) I E)!  $E)! $)($I$1I$I$1I$I$1 )(I$I$1 I$I$)(I$I$)(I$I$)(I$I$)( )(؂%K%E)b@PTP E)b I$I1I$)(-[$E)@PTmE)b %I$H$E)!@ E)P@!I$I$!I I%)!UU!AE)!*I$I$E)$!*I$I$1I$I$1I$I$E)! I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1 @$E)!I2dB2$!b@P@!IE)b)%%I$I$E)$!I$I$10$! C&I$%) XVUUI$I$E)aI %) UU E)!I$I$E)$!I$I$1%)@I$!% IE)!I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1N`GmX%)UUpSwEX+/(N/wE+/,&H% )I$H$%)UTTP$E) jZ`$I$$!I$I$!/ E)! @ 1I$Ie) 1 $!@I$I$!bUI$I$!!L&$!b|P@  $!bI$Ie) $e)I$@$!bUT$!I$I$e)I$IE)$!%)$!1$ $$!IE)I$I$e) 1@$E)$!H$H$$!bTUTT I$!b % I$I$e)I e)I$H$e)1I$@ e)I$I$e)I$Ie)I$@$e)I$I$e)I$I$e)I$I$$!! $!H$I$!jZ^WI$I$!AI$I$!UUUI !+* I$I$d!d I$I$d!d I$I$e)I$I$e)@ !` ! !@ ! %I$I$e)I$I$e)I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)$H$!hI$I$!)@$I$!II! I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)IIPH/qiP---. fioo+/  %q55 41ɐ DZ** 44I$I$%44I$I$%44I$I$%4P%P%!PPPPI$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)aI$I$d!d  @$!I$I$!z{_I$I$!AI$I$% I !/+ I$I$d!d I$I$E)aI$I$E)I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$e)H!ؠ!*I$I$E)a@  !I$I$  E)-dB$AH!UUI$I$PH-R`@+++-yuS7ufi---,f-) -4+ nW.%3H@DZET4/PI$DZǩ4/$JDZǩ 31$I%1/$IDZǩ41ۖ$I%41۲-l%41ɒ, %4-$C2@DZjj3R"%P$!PPPPI$I$$!!I$ E)!I$H$!!֖I$HE)!u_I$E)!}I$ E)!@$E)!z~I$%)'/@$E)!I$E)!W E)!$E)!E)!I$I$1@$E)!I$I$E)$! E)!@ E) %/I$I$1I$I$1I$I$1I$I$E)!I$I$E)$!*I$H$E)$!( E)@`ݐ6`E)  )(I$I$)($)(H$)(,[mE) ``[Eq=U"N.f%Q */Msf*+4,Mo 43DZ 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%43%44I$I$%4-# DZ/J%P,e1TPP`I551%)U.11 I$I9F1 I$H$91 I)I)I$I$9F1 R")$1p T9  I$L$91 )I)I$I$)I)$9F1 @ 91 / h9hI1b% @1E)I$I$1E) ]!9e)mvm۴1E)/a1e)I$I$9! 91 I$`&91H$H11* 11 I$@$11 I11 /?I$I$g9*I$I$g9*I$I$)I)I$H$11@$I$9!$!@11 II$11**l6`1e)I„ 1E)niѶ11 =J"%Ȧ1E)  9E)?? O$#=9E)D %V1!L&`B211 I$11?I$I$)I)I$I$g9*I$I$)I)@$1f1I$I$1f1*H$1f1I$H$)I)I9F1H&@ 1e) I$11 **I$I$)I)I$I$g9*I$I$)I) $!91ꫫ-ِ (1E)@ 6ϝ9E)7UJ&#(1%)ɐI1e) **6` 11I$@11 @$11I$I$9!H$ 9  I$9!9!I$I$9! 9 @$1e)  1E) ***I$I$9  9  I1E)I$I$g9*h4@`1E)I$I$1E)* M2$E91U[[} m$1e) *11@ 1f1I11* I$I$g9*H$11I$I$9! 1E) I$I$)I)I$I$)I)@ 11I$I$11 I$11 /I11  11-i$!@1UUm6H$@e)UH$I$@e)I$I$H@zI$I$H8I X@*!I$XH/Nm`e1 @T mm&Eq$_ If1 I$I$9!I$I$9!II$9!`01E)I$I$1e)! 1E) *#-I1pI$I9e)bUUV1 e)% @f1!pI$M&e) I$I$e)I$f1$! -I 1E)"i 1$!` 1! I 9 I$I$'9#$C$I1e)***11 Ħ1%)I$I$g9*11M%`1E)I$I$9 $9I$I$'9#dB&$C"1E)I$I$9 )R$f1p\k˶1   e)E)%u~nI1E)I1E)f1a`IDe)b5$A$C&1E)/@$1E) I$I$'9#I$I$'9#I$I$'9#I$I$9!H 1E)I$I$1E) I$1%) *`!1E)*I$H 1e)I$I$9I$I$1E)I$I$1e)@$@ @!$@$I2e)E) ~$e)E)I$I$1E)I$1e)N,[If1,C!1E) I$C1E)I$I$9I$1E)*1E)*I$I$9! 1E)-I$I$9!I$I$9!I$I$9!@ 1`If1I$H 1E)I$I$@!I$I$1E)I$I$1e)H1E)ꪪI$1E)  @ 1E)I$1"I$A$e)E)X,E)bP@E)b@$e)E)% $@!9I1E)ꪪI$1E)I$I$1"I$I$1"$I$1E)II$1E) $1E)ꪪI$I$1E)I$I$9I$I$9I$I$1e)I$I$f1e)I$I$9I$I$9I$I$f1e)I$I$f1e)I$I$1E)I$I$1E)I$I$1E)I$I$f1e)I$I$f1e)@@!L"'He)bVX`Ae)I$e)$! e)%)@$I$e)$! $I!Ae)E)* I@!%K&e)bXVX E)b I$I$e)E)**@!I$I$@! @ @!I$I$1"I$I$e)E)I$I$1 I$I$e)E)*H$I$He)I PH/+ ɛwqP/yw/efi-/ -qr f*1)`J-4-IDZǩ4 (DZE)@1H$I$|\3 PDZ-1(}/(l 1+ `JU4-mJDZǩ41I$ %4") e)@@@@II1"l e)!@ De) 7I$I$e)E) I$I$1"I$I$e)E)I$I$e)E)*I$I$e)E)I$I$1 I$I$1 I$I$1 I$I$e)E) I$I$e)E)* e)E) H$)($I$1I$I$1@$E)0$I$E)!*K$X-%)ܨaE) H%زmE)\pItn%)b%) I$I$E)!I$I$E)!I$I$E)!I$I$1I$I$E)!*I$ E) IE)!* 1 @$H$E)!I$I$1L$E)8W۶mE) 1 @)(%H&E)@PTXɐE) I$I$)(I$I$1  )($H$1I$I$1۲m0E)b@!AE)!+h$E)8WH$)([-؆mE)P@!@E) $I$E)!ZWUI$I$E)aI$I$!!UUUIE)!ե*I$I$E)$!*I$I$1I$I$1I$I$E)$! I$I$E)!I$I$1I$I$1I$I$1H$E)!%)` IE)bՕI$I$1@$@$%)$!I E)!E)!!E)  E)!j$%)@$I$$!I$I$E)aI!@%)!UE)!I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$1 WIp%) )%ɕfP 555, Nf +-,@($!P@@H$I$$!I$I$!/!AE)!I$I$1I$I$11$1H$I$e)I$Ie) $!!@ $!I$Ie) @$$!  I$Ʉ$! I$ $!!I$I$e)I$IE)$! $H$E)!$I$e)I$Ie)!%)` $ $!bI$@E)!  $%)$!I$I$e)$!@$! II$!!I$I$1I$@e)1$H$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!! !@$I$!jz^I$I$!AI$I$!AI$I!*I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$I$$!! @ !P@I !b% I$I$e)$I$!TUI!= I$I$d!d I$I$d!d I$I$e)I$I$e) @$!I$I$P@I$I$!I$I!!I$I$e)I$I$e)I$I$e)I$I$e)I$IH!UUIIPH**** 1iP--/ 1Sf$q--/+1"N--))41DZ 44I$I$%44I$I$%44I$I$%4P%P$!PPPTI$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)$!z!  !H$I$!I$I$P\WUI$I$U5 I$I!+I$I$d!d I$I$E)I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E) ! !6I$I$d!d I$I$d!d I$I$E)aI$I$E)$!@$I$!^II$!?- $%)![ZVV$A$@H!۲P8Jʊ i855= 9PNf%i-%++/1N +3,yn% 41I%41IK$%41$I$%41dId%43$@$%/$I$E(UUU4DZ$)41IdK%43%3@@pI$L$qI$I$$!!(  $!@ $!a I e)I$H$e)I$ $! I$I$e) E)! &`%)ؠ I$! IE)!E)!I$I$1$ AE)/- $HE)!޺I$I$1E)!0E)`e)!I$I$1I$I$E)$!I$I$1I$I$1I$I$1tMtE)*6*I$I$1I$I 1 E)A )(I$I$)(MdE)b4xI%E) 5U& N7%q +1 PN/w +4-@ &SDZ 43DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4$H$DZETTT4H$J"DZETTT4@E1@e9@ύߦa) C&11 ݐ91 @091I$I$g9*9F1  I:1 tB'9$!^^ m&b9E)I$I$g9*H$@9F1I 9F1  $I91/ 91`I$I$11! 11 rڐ ن1E)N`1E)/?I$H&1%)`JP1E) /H&C 11TXpB I$115U 91ꫫI$I$11A$11 11 I$I$9 11I$I$g9*I$I$)I)@$ 11H9 H$@$11I$I$9! 11 I$I 11@$I$9!Z`11 v$t'1E) 걔9f1CA %I$M$1e)DI 1e)I$H$11 11 /I$I$)I)I$I$)I) 1E)@M1b& 11 +I$I$)I)I$I$9F19F1IЈ&1!x 1E)I$I$g9*I$I$)I) II$91 D@91zꪫIڴc1E) JqeW91饵I$K&11UWT\`K6嘦1e) * $r$1\J1! I$I 11 11‚ I$d&11UW^X 9 I$I$9!II$11**I$11I$d&11UW^XI9! 5P1!``.1! --  11 *I$I$g9*k%X,1E) IĆ1E) ** N$p29f1UUTZt1e) *I$I$)I)I$I$)I)I$I$g9*I$I$)I)؆-`1E)ːdIt1E)7շ@@11I9F1I$I$)I)@ 11I$I$9   )@1UUU(H$@1UH$I$@1I$I$H@I$AH@+I$M X@_W* I/ i@ս 1C0A`E1 PIm6`X1@PUU@ 9 J"'1b\X`e)b I1e) *I$I$9!I$I$9!I$9!`01E)I$I$1e) 1E) *dB$ 1E)H$1e)I$I$9@f1$!xI$K%e)$!I$I$e)ۆ1! /ۊ@1E)I$I$'9#$I!11 $>1b`0) 1 - I11%x$N1b^^'`1! I$I$g9*I$I$g9*K,1E)I$L&1E) I1E)**I$I$'9#$I$1E) t2:,@1X`Pnۦmf1b #8M1E)\p I$I&1E)UUU\$ e)E)-5@$1E)1e)L&1E) e)$!I$1E)1e)I$I$'9#I$I$'9#I$I$9!1E)ۆm 1E)@Rv$e)bPUI$f1 WWH1!I$I$9I I$9I$I$f1e)$2 e)E)|pI$I$E)!$I$f1E)Umݖv1$!H $9I$H 1e)I1e) *1e)*I$dB1E)I$I$9I$1E)*1e) I$I$9!I$I$9!$@ 1E) I1E)I$I$'9#I$I$9!H 1e)I$H 1E)I$I$1e)I$I$1e)I$I$1E)I$I$1E)ꪪI$@!I$H1"I$H$e)E)$e)E)~^zI$I$E)$!(@d$e)!mi$e)!@$e)$! I$I$9I$I$9@9I$@!I$He)%)I$I$e)E)$I$1"I$1E)$1E)1E)I$I$9I$I$1E)I$I$9I$@!I$I$@! e)  'e)b&IE)b+%5I$I$9 1E)z@צe)! 1E)I$I$9I$I$@!I$I$9`e)E)I$I$1e)@ 9f1xC&E)` e)$!I$I$@!I$I$9I$I$1e) @!I@!I$e)E)$I,!e)!@@lɖH? $H@ivXH/ /yw7EX/+(qwsT E/ /#nM*4-S1RDZ)))44I$I$%4@&J$e)`XTVI$I$9)IIDe)&lcM?Ez)@J.ۧf*/"NJ*+4/J 41[%X%4-4CӴ DZ訨I$I$1"0,He)@IIE)bՕ&I$I$e)E)I$I$e)E)I$I$1"I$I$e)E) I$I$e)E)I$I$e)E) $e)E)*^@$e)E) ^U I$e)E)~UU@$I$1I$I1I$ )(I)( 1 I$HuE)bWV ݶE)@$I$E)!I$I$1I$I$E)!I$I$E)!* H$E)! IE)!I$IE)!*I$E) 1 lh$E)\lݖmE)  I$I$1I$I1I)(M@E)V eE) )(I$I$1 XE)b`!@E)! I$I$)( H$)(H$I$1I$I1I)(I$I$)( E)!@I$IvE)bֺ Vl۶mE)  H$E)!^UI$I$$!!\UUUI$I$E)aI$ E)!Uխ E)!*I$I$1I$I$1I$I$1I$I$E)!I$I$1 E)!BI$%)E)$!I$I$E)$!IE)!0E)!jZ I$!I%)$!I$I$1I$I$E)$!I$I$E)$! E)!@&H$%)xxI$I$  %5 I$I!   %)!եj$%) I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1$E)!zI$I$1I$I$1II$`%)UURqEP +(N/wE+/,&H@ +I$H'!UTTX!@E)!$E)^$!I$I$1 1@$I$e)I$Ie) 1@&`B&$!pp I$! %% @$I$$! VV$!LH$A$! 1I$IE)$!%)$!I$H$e)I$I$!! $E)!/I$e)I$I$1I$I$1@ %)$!ꪪI$1@$H$! x\ !b I $! I$I$1I$I$1 @$1I$I$e) A$e)I$@$e)I$I$e)I$I$$! I$I$$!!~~ H$!zI$I$TWUUI$I$!AI$I!+! I$I$d!d I$I$e)I$I$e)!I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d I$@!bV  $@$! `X !a @$I$!b WW!$!H$I$!I$I$!I$I$!bWWI ! I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)IIH! PH /qP//"1u%---1&` +++ 410DZ 44I$I$%44I$I$%44I$I$%,H$H$!TTTTI$I$e)!$I$I$e)I$I$e)I$I$e)I$I$E)H$H$!ap I$!A //$@$!I$I$`p\I$I$!AI$I$  !+ I$I$E)I$I$E)aI$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$E)I$I$d!d @$!`I$I!I$I$d!d I$I$E)I$I$E)aI$I$E)@$H$!I$I$ HE)H$I$! I$H mnِ XH- qW/J%yX-& 1R` %i)+ 1%tN 4/ITФ+41Il%41K`%4$<DZEyp4DZE44I$I$%4DZ@@4ɐP$)%4 )"-Ey@@@3tEy3%EyZ-K$Pb'!VTPZ !@ !b I$I$$!! I$I$$!! $!@!A  $!@@!$ $!b $I$e)  %)$!I1 1$IE)!0%)@`@!%) I$I$E)$!I$I$E)$!@@E)b`(@E) (&`E)ب E)!I$I$E)$!I$I$E)$!I$H$1I 1I$1 $@$E) nöE)  E)!@$E)!$I$E)!ذm۲E)!j@OIEy -)n7%y +1 L$%yVVV4)0r=43%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4(DZE@@4'DZEy 44I$I$%44I$I$%44I$I$%4-# DZ/z'8f1\\ppk11 ɐm۶m91  B$!IH1! )I) I$I9F1 H9e)T 9e)P$1$!T@!11I$I$9F1I$I$9F1  91 * K&@491^\xpII$11/? 2)1E)I$I$1e)@B(b1E) I I1E)?1E) I$L$11UUWT0i۲%1b@PIɐ1b@  11II11***H$@$11 I$11?I$I$g9*I$I$g9*I$I$)I)I$H$11I11 /?H$11 I$11 11L 11V 6eN$91U 5,91V^~ I$9f15UU x&s 91TXRAɐI1E) **dB0B11I$I$9 11I$I$)I)@1@ID 1b7 I$I$11*$@!1f1@$9F1I$I$9F1{$pئ1bX^1 11 I$I$g9*I$I$)I) !I91 b"9 91^Zz I11$! иΘ9I$L$1E)*N$ 1^dIH1  I$11 I$I$11* H11x I$I$9!$I!A11)I11* I$I$g9*11pI$I$9!$!11j1$!I$I$9!11 11M&H&1E) ٜhIx9E)/ N$M'9f1UUWT)1e) *I$I$)I)I$I$g9*I$I$g9*I$I$g9*Hl`1E),I$11 * $)I)I$I$)I) H1UUUx81UH$I$@1I$I$H@I$IH@+IP@ qyiH v hE1*P =pf1XUUI$I$e)E)**$11E) +/I$@ 11I$I$11? 1E)`$f1X^DIK1  I$I$9!1E)I$9!`01E)I$I$1e)I$1E) *I$I$'9#H$1e)I$I$1e)v1E)r*I$Mf1$!I$H$E)$!&fs$1$! /U$I$H1E) $I11%h8*1bxɕH1b-I$I 11@1E) 11 /I$I$g9*I$I$g9*I$I$g9*@1E)I$m1E)$C1E)jIE) ׼  I1$!d1E) $I&1E)RӡԮ1E)pI&X,1E)UUX`!Ie)E)-$I$1E)'9#H$I$1E)I$I$f1e) I$1E) 1e) I$I$'9#I$I$'9#I$I$9!1%)@I$1a(IbYHf12 $I$1E) dB!1E) *I$d01E)$@$ɐ1E)I$I$1e)ꪪkۆm1E)_I&  e)!$$dB&E)!*mi4e)!"PI$1! '1e)@$H$1e)$I$1E)*`$1E)*I$`1E)I$I$9I$1E) *$I$1E)*I$I$9! 1e)I$I$9!I$ 9!I$I$'9# $I$9! &H$1E)! 1E) I$I$1E)I$I$f1e)I$I$1e)I$I$1e)1E)ꪪI$@!dB$e)$!m6 `e)!H$! $!I$e) mI$e) ېe) @!I$I$9I$I$9H@!I$@!I$H$1"I$I$e)E) $I$e)%)I$e)%) *I$1E)H$f1E)1E)$f1a`pI E)I`e)5 I$I$@!&H$f1b`X\PI$I$b%UdIf1 @!I$I$@!I$I$@!I$I$@!I$I$f1e)`9I1x訪e)- I$I$9I$I$9I$I$9$1E)@$I$1"$ђ'E)`Xf1 -5$He)UUUI$I@I$I P8UU ߿ a8 ۷ EH ۷ fi!f%y %8$E uuT-:SjjZ!DH$Ie) I$I$)(I$I$e)E)+Ш$faWPNvf` /-` wf++/ fEy4/MDZǩ ../4-٠:DZxx/H$H$E)TTTPIdE) %I$I1"I$I 1"I$e)E)$ $I2e)E)I$e)!$I$e)E)UUUH$I$1I$I$1I$I1Ie)E)U+* e)E)I$I$1 $E) @$E)$I$E)!@$H$E)!I$IE)!E)!* E)! H$IE)!!$IE)! ۺmۆ-E)b@IE)!* 1 @$)($I$1I$I$E)VWW\lE) Ie)E)խI$I$1 I$I$1 I$I$1 K$HdE)VW0E) I$I$1  )(H$)(@$I$1I$Ie)E)UUU%Ie)E)UI$I$)(I$I$)( )( H$E)! Id$E)!zW@$I$E)!zWUUI$I$E)aI$IE)!UUI$IE)!I$I$E)! H$I$1I$I1I$I$E)$! I$I$E)!I$I$E)!*I$I$E)! E)@IE)U,E)!I$I$1I$I$1@$@ %)`X`  %)%5E)!I$I$E)$!I$I$E)$!0%)!z &L$E)!zVUUI$I$!bx^W\I$ %) !A%)!0%)`I$I$!bUUUT E) I$I$1 E)!j %)bI$I$1I$I$E)$!I$I$E)$!I$I$1$$!!@E)!@$I$!bPTUT %) 0`$%)b`X %)b 5 7qh$!)N1f` -, Rf +-,p;$!Xh@I$I$1H$I$!bXVVV! $!b $1@$I$e)I$ E)$!E)$!$1II $!!@Ȑ$! H$! I $!!1I$I$1I$I$1I$I$1H$%)$! "D$E)!/I$I$e)Ie)$E)$!%)$!I$I$1$H$e)LB&$C$!\p %)% I$I$1&$!b@P@I$$!bU$!Ie)I$H$e)I$I$e)I$I$e) $$!@PH$I$!b)I$I$!^WUUI$I$!AI$I!Օ !* I$I$d!d I$I$e)I$I$e)@$H$!b`P@ I!b %I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)H$!\pI!% I!b0I$I$d!d @$I$!I$I$!I$I$!I$ !V !I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I H! XH 1%yX----& %q++ 1) `--) 43DZ44I$I$%44I$I$%4/ DZ,H$H$!TTTW !@I$I!A.!I$I$e)I$I$d!d I$I$E)a!@I $!a% I$I$ zzI$I$! I$I$5% I !++ I$I$d!d I$I$E)aI$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$E)I$I$E)aI$I$!zI $!5/ L$E)!Z^WULLH U HH8TivnXH--//yuoE`=( T ܔ䦡%y+ *U1 $$EyU3@I$EUU3I$EUU4'I$DZE_UU4$I$DZEpUUU, $I$EUUU!h$I$E|UUU,4Ey!@@`gY $"M:Ey%q mI$%y%q* DIREy%qR"%8Ey$!PPpp$! !I$I$!I$I$e)$C$ $!!$@$! I1 11I$I$1@$%)``%)$!AE)I$I$1E)!ꪪE)!I$I$1I$I$1L%)>(I$I$1 $@E)p E)!I$I$E)$! * $E)XE)$! I$I$E)$! *I$I$E)!E)@ E) !@E)!$II2E)!@$E)!*Wغm$E)^I%)'NIE) %5) L r%yV +1&Ms+*+3/!!Aǩ*41$K-%410Id%41d%44I$I$%44I$I$%44I$I$%4DZEy@4 DZE44I$I$%4) DZ@@4)!DZ 41,`DZ1 @a@@(熩1UUW\I$I$9F1 .=.i1pɕĉu 1b%% I$I$g9* 91 @B$! I$I$B$! I$R@9$!UT0I$I1$!9F1 @$I$9F1 II$91*  91I$L$11 11/h5@1E)IĦ1E)/? =۰$9e)V\PKD1E) ?`0H11XpP%K%f1bPPTP H 9b I$I$g9* 11  11I$I$1111I$I$g9*I$I$g9*@ 11I$I$9 I$I$9!I$I 11 I$11 *11@I$ 11UU$ҭ$1\چmi1$! 7KBe)ϯ I$L'9E)JX1E) *I$HB&11 I$11/?I)I)I$H$)I)I$I$)I)@$11 I$1f1 **I$A)I)9F1@$I$)I)H$@ 1f1 I$1f1 *I$I$)I)I$I$g9*I$I$)I)  91ꫯ/#͒i1b`ID1b5H$@1e)ɐvm۶1e) * :`n91ꪯI$ &11*H$I11* I$11 *`B11\@ I$115UU1 I$I$g9*I$I$g9*  11| $I$9!$@51!` Ć1!U$A$11.@L$11VU@`P1e)!A&d&1e)* 19f1R5m6m$1e)P) 1e) I$I$)I)I$I$g9*I$I$g9*1f1I$H$1f1 -Z$1@PT$}ۣH1UUo?~$@1! H8% IH@I$LP@_W,vn*l`HI{Plhe1 R `q1RUUk51e)$1E)m6X1E)?I$I$1E)! 11 %5I$@ 11I$I$9!`01` ID1U$!$I1E)@N$NSf1$!U,1E)I$9!`01E)I$I$1e) $)f1@Hf1@ I1e) ҂%1X) 1S'k9f1$!I$I$e)ɐxI$1$!U$I1!I$I$11*H$11  11 I$@1101`H1I$I$g9*I$I$g9*I$I$g9*11I$X`1E)s4II1$!I$I$'9#I$I$'9#L& 1E)!I 1E)1$1e) Oj9E)U^bI$I$e)E)" I$1E)I$ $1E)+1e)I$@9I$I$9I$1E)I$I$'9#I$I$'9#I$I$'9#I$I$9!1E)I$1E)I$I$9@"$I1E)ꪪI$I1E).I$H$1E)I$I$9I$I1E)r"ђI1$!^ꪨi۶k e)!I$H$$!!f1$!=lۖm1E)I$I$9I$I$9I$1%) `1E)*I$`B1E)I$I$9I$1E)*1E) I$I$9!I$I$9!I$I$'9#I$I$'9#1e)*I$I$'9#I$I$9!I 1E)I$H1E)I$I$@!I$I$@!I$I$1E)I$I$1E)I$I$1e)JE1 VI`e) I$e)!I$I0e) I$I$e)I$I$E)!?`m;e)*jI$e) e)!e)%)I$I$99I e)$!I$e)%)I$He)%)*@$e)\E) I$I$e)%)*$I$1%)I$1E)H$1E) If1@I Ie)b,H$@! 1E)I$I$9I$I$@!I$I$9I$I$9@@!A$I$1"9 1e)I$@!H$@!  e)$I$e)`\U `e1 H hHe)I$IPH/kniP-w7ea/)1NPNE/+1()u P+ 3X%P%EPPPP3dj0%)bH$I$e)TTUUI@!Ie)E)I$H$e)E)+H`E)1a%y`--/-#E+/--1&.7w 3-閮 DZ1- C2$IDZ~1R$@ E)PPP@E)% H$I$e)E)I$I$)(I$I$)(@ e)E)_I$IE) Ie)$!+Ie)E)UI$I$1 $E) @$E) d$E)!C&I$E)! %)$!I$I$1I$I$1I$I$1I$I$1I$IE) I$E)*IE) I$I$1 X$X-E)bPTP@lٶmE)bI$I$1I$Ie)E)UUU Ie)E)U@ E)I$I$1 I$I$1 I$I$1 I$I$1 I$I$e)E) E)$)( H$)(H$I$1I$Ie)E)UU I$@$1e)E)I$I$)(I$I$)(@$)(I$$E)!^@$I$E)!zVUUI$I$E)aI$IE)!UUI$IE)! I$I$E)! I$I$1I$I1I$E)!$I$E)!I$I$1I$I$E)!*I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$E)$!C&%)!ZV`$I$$!I$I$E)aI$!@%)$%)@P@ E)b%% %)`I$I$1I$I$1E)`I E)bUE)$I$I$E)$!I$I$1I$I$1 &E)!!HE) /H$I$$!bTTUT@%)@ %)a`  I!b MI$P UU q%qP?(` 1߆i -,!6 f/+I$H$$!UTTPH$$!bX$!H$I$e)I e)I$I$1I$I$1I$I$10 $!@I$I$!55 I e)I$I$1I$I$1I$I$1@$%)$!I1 E)!* I$I$e)I$I$$!! E)!@$@ %)$!I 1$H$e)I$IE)! E)$!I$I$1I$I$1H&$!bTP@I$I$!bUU $!a  1H$I$e)II$e)I$H$$!!@$@$!@I$I$bI$I$!AI$I$!UUI !+* I$I$e)I$I$$!!. $!bI$!b,U!!I$I$$!!I$I$$!!I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$$!!** I$I$$!!~$@$!I$I$!I$I$!I$I!! I$I$$!! I$I$$!!I$I$e)I$I$e)I$I$d!d I$I$d!d dH&dB"b@!%  X8*- 7q%yX-)ɕ_ a55; 3+t p 43DZ44I$I$%44I$I$%4+DZ@@@@I$I$d!d I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)I$I$E) !@$I$!I$I$pXTWI$I$UՕ5I$I!!  !I$!W!I$I$d!d I$I$d!d I$I$d!d  @$!bx !b %I$I$e)I$I$e)I$I$e)I$I$E) !I$I$d!d I$I$d!d I$I$e)I$I$E)aI$I$E)I$I$E) H$!zI$I$!Օ!H2E)I$I ! !&I$@ $I$H8*UUmvmP8/ qwSd iH-/+  `%yi) 1i&iE%y+#I$Ir EUUU-3I$I2DZEUUU4I$y EUU4I$HDZEUU*3I EU4IRnDZEU4v"%X')ZPP\H!(((@i!"IDn&- s -/ `fi@I$I$$!! *I$I$$!! I$I$$!!*A$I$e)$@$I2$!@ d&$!SI$$!!I$e)I$1@H E)!kk@ %)-- E)$!IE)$! E)I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$E)$!*I$I$1IE)!`E)x$E) 'I$I$E)!*$E)!H&E)!Wöm$E)HI$!$I$!I$ E) UU LBE)*IE)!*a۶eI$!5U`N/E( )%,PN/E +/3(Iw +410lDZ *41[۶m%41Idm%43I$I%41Id%41۶-%41 %44I$I$%44I$I$%4-DZ4-!DZ 44I$I$%4-# /j9̧1Xp`1181E)` P9! ? I$H$91  I91 I$I$B$! @$:1 I$:1I$H$g9* ! 91 I$H$:1I$I$9F1  91 ** h%@,91^Xx`I$I$11?l61E)I$M&1E) c)o9e)siIIȐ1E)1E)cl1` )` va{9e) // H&@091I$I$g9*I$I$g9*H$@ 11 I$11?I$I$g9*I$I$g9*I$I$)I)I$@ 11 I$11/?$H11I$H11(I$I$g9*H$ 11N$h M1V\I4A1 I$I&1E) R_V;9!N1!*?H11 I$I$9  11 H$I$)I)I$I$)I)I9F1I$`&1f1! 1f1 *I$I$9F1@  9F1I$I)I)I$H&1e) 1f1 *I$I$g9*I$I$)I) II$91 XV`91ꢫL$d&11WV^Xiۺ51E)z01E)I11 Xa91 11 H$ 11I$11 *"%(1p` I$1-11I$I$g9*I$I$)I)L 11Vr"&1!Os$@1!I I$11H9 I$I$)I)h1e)c'1E) `$1E) Iti۶1e)**11 I$I$)I)I$I$g9*I$I$g9*@$@1UUXĉۣH10`$H8p\WI H8U ivݶ P@*I.W iH* qWhf9*PMm۶mX1PUU 11 I$I$11!11u&Z1E)I$I$e)E)*V 1E)/I$1e)*P)1E) /I$`B01f11$!̄I1I$I$9!I$I$9!I$I$9!I$I$9!,%r&1bxxoI1b - R"5 Hf1P`I$I$e)bUV0`1 K&Xh1VXh H1b #@ If1$!I$`1f1!_^X`I$I$$!!I$1$!=UU4HS1! I$I$9!11 @$I$11 h4+1X`I!015% I$11 /11I$I$g9*I$I$g9*I$I$g9*L$11VP@$$L$1E) 9I$I$'9# 9 L&1E)im&1e) * kBȮdW9E)^⯿ I$t%9E)UU^X$e)E)  1E)+1e)H '9#$I$ &1E)z I$91e)*I$I$'9#I$I$'9#I$I$9!I$I$9!@1E)I$@1E)I$I$9I$1E) *$ Ȅ1E)I$I$9II$9I$I$1e)ꪪK5e)!I$Me)! $I$E)!*@ $e)$! $H$1E) I$1E)I$I$9I$1e)1e)*I$1E) I$I$1E) $I$1E)  $1E)*I$I$9!I$I$9!I$A$9!I$I$9!I$I$9!I$I$9!I$I$'9#$$I1e)I$1E)ꨪI$H 1E)I$I$@!I$I$f1e)I$I$1E)I$I$f1e)@9@@![le)!pI&e) M$K6E)bZVX`!b I$I$e)$I$E)!_I$e)!mI$e) 퐴e)! $e)E)9I$`e)bV\KD E)  @8e)bp`IE)b 5%I$e)%)I$Ie)E)**$I$ e)E)@$ɄE)!*I$I$e)E)I$I$e)E) $I$e)E) $I$e)E) $I$e)E)@$B2f1E)o aNE)e)$!L$e)E)0WUe)E)I@!1E)1E)ꪪI„e),  He)I$I$Q!@ !AXH/+ww%yX/+% yysd $q+ / L/%yVVT1E4/IDZǩ4&L$ǹe)`XVV @!@!I$I$@!H$H$1" I$Xe)6qq%yX/-"Ey+/ -1%NtN%-+)3Hh&EXX40 DZE4)اE)@@`I$I e)E)I$I$e)E)I$I$e)E)I$I$1" e)E)p$e)E) _$0e)!L$E)!ضmӶE)I$%)(Օ  E)!H E)! A$E)! E)!2d$%)b^۶mE) IE) E)!I$I$1  1  I$)(H$I$1I$Ie)$!Ie)E)U e)E)I$I$e)E)I$I$1 H$E)b^E) I$I$e)E)I$I$e)E)I$I$1  e)E)~K$E)bV@$E) I$ e)E)UU+I1 I$I$e)E)@$@$E)! E)! *@$)(I$$E)!~$I$E)!~WUI$I$E)H$!m۶mE)!-!IE)$!$H$1I$I$1I 1$H$E)!I$I$E)$!I$I$E)$!* I$I$E)! I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!*I$I$E)$! E) d$%)!ZWUH$I$!I$I$!  E)!խ`&`0E)bXX`I E)5% I$I$1I$I$1&%)xE)I$I$1I$I$1 E)@I$I!7I$I$1I$I$1I$I$1$E)!I$I$1dE) I$I$1$H$E)!z^WI$I$E)aLB$A$!* !er`SX$) DW%yX'+ ɑi==5+@ $!P@@$E)$!H$I$e)I E)!I$I$1I$I$1I$I$1$1H$I$e)I %)$!I$I$1I$I$1I$I$1 @$E)!H$I$e)I E)!H$IE)$! E)!@ E)!zꪪI$! I$I$1$@$1I$Ie) E)!I$I$1I$I$1$1H$I$e)I 1I$I$1@$@$e)I e)I$ e)$$!H$I$!jz^WI$I$!AI$I$!UUյI !+ I$I$$!! I$I$$!!* I$I$e)  $!@I$I!b* I$I$d!d I$I$$!!/ I$I$$!!I$I$e)I$I$$!!I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$$!! $!I$I$$!BI I$!I$I$! !+ I$I$$!!+ I$I$e)I$I$e)I$I$$!! I$I$$!!I$I$d!d I$I$e) !H!ivXH///+1u7qE`----+Nf----3, 44I$I$%44I$I$%44I$I$%4,  DZ@@@@I$I$d!d I$I$$!!I$I$e)I$I$e)I$I$d!d I$I$E)I$I$d!d $@$!I$I$`PI$I$! I$I$ I !/ I$I$d!d !I$I!W:!I$I$d!d I$I$d!d I$I$E)H$!bx`I !A- I$I$d!d I$I$e)I$I$d!d I$I$E)@$H$!axx !a $!x!I$I$E)aI$I$E) @$!I$I$!z^^_I $!5%  C$ɐ$! I$@ յ%I$IH8UUUI `8Uխ+ɟ%y@ (oN P / I) %y3+@$%I-/3/C2$I4$I(DZE@@4 ɐDZE%%4/j# DZǩ1!؈-DZ3/IDZǩ4x'M$!\\VVH!hɖf!ЖfEy(U)N/sE*/(/ +/I$H$!UTTTI$I$$!! +I$I$$!!(I$A$e)$C$A$!@!C %)II$E)!z$ E)  %)$! E)$!믯 E)!`$%) E)$!L@$I$!&$IE)$!IE)$!I$I$1I$I$1H$ E)!E)! 0 E)`!E)) $E)! @ɐE)'@$I$%)!I$IE)!WU+LB$E)!UU!CE)!Uh!I!%)+ -A$I$E)!A$IE)! I$IE)! I$E)!MvE). a؆a? PN/E%9 +-P wf+3/91 %y++-416DZ 43H$%43%43%41 ۰ %41I$%4/-&m%DZǩ 4/DZǩ41l%44I$I$%44I$I$%41,`DZ1!hh`)写1UWTP #)H9e)zj i 9!? @ 91ꪪI$I$g9* @91 @B$! I$I$9F1 dB2$B91$A$I211eK$10 I1$! ۰m۶91 @91 I$M$91! 1f1 *ـ 1E)II$1E)/?K$X41E)md1E) //[2,ۺm11P@I$I$9! D@ 91 I$L$91I$I$g9*I$I$)I)I$H$11 11 ?I$I$g9*I$I$)I)1f1I$I$11 11  11 I11 **I$I$)I)L$`&11WV\X)tI11 %5h%@ 1E)۶m1!ʪIv۰e)!%/)I1E) /?H$@ 11I$I$11?11I$I$)I) 9F11e)I$I$11*@$1e)I$I$9F1I$I$9F1@ ,11@$A!11*I!1f1I$I$g9*I$I$)I) !I91+/  2 91~~#ɒI1E)zꪠS 1E)-$I$ 21e) It91 L$@B091I$11*I$I$11" 1E)@Ijm1(@@J1E) I$I$g9*I$I$g9* 11$I 11I$I$11?IH$11 I$I$9! $11 I$I$)I)h&@`1E) m91UU &S)91WVZiɐdI1e) *@* 1@ $9A&?@1mnIP80`H8pIdX8U iۮ lXH wQh1*Z 0خi1PUUt1E),I$@ 11 I$11 /11I$I$g9*A I$)I)M&R 1%) $I1E)?H$1E)I$I$1$!*DIP1E)I$d01f1I$I$9!@ 9 I$I$9!I$I$9!I$I$9!1p P I1!H$9 p YHf1 $͒&f1`x1 -- 1e)I$I$1e)1E)jM۠ 8e)`I$I$$!!IIe)!/4I1E) = $H$11 @ $11 11@ 11I$I$11 I$11 /11I$I$g9*I$I$g9*I$I$g9*X1E)i۶m1e)I$I$9!I$I9!K$1bTW&I1I$L&1E) H$9f1cU CX]9e)U^I$L$1E)_^!I$1E) 1E)*='u"ۆ1^^J@1!I$I$9I$1E)*I$I$'9#I$I$'9#I$I$'9#I$I$9!I$I$9!H$1E)۶`1$!`$I$!b ׼D 1!*I$@1E)I$I$9I$I$1e)I1e)* *NB:-1E)U^I$I&f1%)UUU\ $I$E)! I$1! 1E))I$1e)I$I$1e)I$1E)*I!$1E) I$1E) I$H$1E)I$I$9I$91e)I$I$9!I$I$9!I$I$9!I$I$9!I$I$9!I$I$'9#I$I$'9#H1e)*I$1E)I$I 1E)I$I$@!I$I$f1e)I$I$1E)I$I$1E)I$I$1e)ꪪ1%)z! 1E)UMe)!ޠI$X e) I$ME)!_~I$I$E)!I$I$e)I$I$$!!/$I$E)!___nI$E)!  I$e)!$e)!@_1a`Re)b   @!Ȁ%e)`PKDe) %Mve)!*A@!I$e)E)I e)E)I$He)E)I$Ie)E)Ie)E) Ivle)!(I$I$e)E)He)E)W߮ e)E)$@ @!I$I$e)E)I$I$1 I$I$)($@$HE)I$IPH// qgiP-w7fi-+)1sPf--+ 1('o۶+4,DZ40#&DZe1``XI$I$9@$H$1"I$I$1"@!H$@ e)E)dPe??? 6S1WiP---5 O1Sf$q ---,"p)*+ 1H"I ǩET4 H$HDZE4@"I$IEyP-ɓDZ1,mI$DZUU3")ei@@H$I$%A!TUUUI$I$d!d I$I$d!d I$I$d!d I$I$e)ɐlɖlP!% SqW%yX-" %qK+++/ 5I4DZEy#O$O'WWW\HH$!a(6(!!b.I$I$$!! I$I$$!!I $e)I$I$e)I$I$$!! $! $I$E)!_I$I$1I$I$1LE)!I$I$1I$I$1  %)a(&*I$I$1 $@ %)bp` %)a  E)!`$ E)bI$I$E)$!*0E)`!E) II$E)!   I$E)$! *(II1H )(H)($)(H$e)E)*WU@$I$E)! *@$I 1I@$E)$!*ۀa&E)zmE) dI$%y!%UUPrfI ))P .f+-4(w4-)HDZ=4/mDZǩ/41I$I-%41 I$%41 l%43%44I$I$%Z-O$Iʧ*WWO,-&)§ O3I$#)DZUU`O,?†-觩1Xp@  I9e) * I$I$B$! B$! I$H$91 I 91 M̚9ֺ( 9e) B$! I$L$91  91  @$:1 I :1 91   9%)@ KΙ1& :m91^~zI$L$1E) F鹖L9e) I$I$1E)` S1E) $ 011p IdI$91U `$B91I$I$g9*D1E)0@B0$C115%1E)p61E) /I$I$)I) 9F1he1E)0I$I$11*113'1X1  @1E)XIĆ1(  1E)K&X,1e) 79E)/? L"'X"B1WVZz)i1e) *&m&!1%)$1(1E)9F1I$I$9F19F1 I$I$91Z,I 111I$I$9F1 1%)1( I1$!I$@$)I)" 1E)O 1ֺ V` 9E) K$[%11TTPPM&h41E)W^^zII$1E)UU@r&1E)* a91ꫫ I$I$91@$11I$11* H$81UU'N$81I @0$H@(IibH8յ? iҤi P@] {w4AqHյ MΡb۶p1XU!I X1TUUUI$@1111I$I$)I)`11uk61E)hI1E)I$I$'9#01e) I$I$)I)I$H$g9* $I$)I)H$I$)I)I$@ 11 I$11 *$I$1f1I$H$)I)`11bP@Ć1 &I$I$11!I$1e)I$@ )I)I$I$g9*@B$@1f1I$[11UVp$A$I21e)k24 1E) $Id&1E)`O1E) / I11@$11@ 11 *$C&  11Zx@ I$9!l"1XI 1bՕ& I11 +* H11k `1e)I$I$9! 115I$H$11I$11 *I$H$119!N$P"11E)WTpdE)b&I$I$e)E)**IĆ1E)/?11 I$I$g9*I$I$g9*I$I$g9*H$11I$I$11 ͢3'1`X1  11 I$I$)I)I$I$g9*11I$@11I$I$9 I$11 /11[m۶ 11`Nb" 1e)L$L1E)ꪨ I$1E)L2 1E)VjI$I$e)E) $I$e)E)+$@ $1E) @1E) Iڴ1R#1hɔJIf1% I$1E) *1e)*1E)˄1b 1E)(I$I$9!I$I$9!1e)I$1E)I$I$1E) $I$1E)*$I $1E)*lq$I1! I$I 9I$I$9I$1E) *@1E)hI%1%)UZk if1z!@%) I$I$E)!*I$1%)UUD1$1!l1E)I$H9! 1e)I$I$9I$I$1E)*I$1E) I1E)*I$1E)I$I9I$I$f1e)I$I$1e)$I$1E)I$1E)1e) I$I$'9#I$I$'9#I$I$'9#@$I$1e)1e)I$I$'9#$1E)~$H$1E)I$I$9A$A$9I 1E)ꪪH$H$1e)I$I$9 I$1e)1e)I$H$9`۶-1%)j&5f1 'IB1E) I@1E)$C@1E)ꪪI1E)dB2$ 1E)I$@!d$H$He)I$IPH*// {yuiP--/ yww7fi-+ -)N f-+ 3-nv + 4,@%!`PPH$I$!a~iI E)a +- I$dE)!I$IE)!__M&m E)^inE)-+I$$Ie)$!M6e)!I$e)!ine)!/ dBe)$!v۰vPe)7qwE`----)7uS1f-/&`H4MDZ1$H$ǩETTT3HDZE1@(")e)P@@@I$I$9I$I$9I$I$9I$I$9$N$e)a ^^`!e)I$I$9I$I$9I$I$9@$e)E)($I$e)E) @$I$e)E) I$I$e)E)I$Ie)%)I$e)$!I$e)E)@$e)E)$I$e)E) I$I$1"0E)!e)E)* 8CE)!@pp$ E)/I$IE)!*I$ 1$I$E)! @$I$1I$I$1!I$E)!*Ie)E)U e)E) I$I$e)E)I$I$e)E) I$I$e)E)/mE)@ E)b% I$I1I)(1 I$I$1 I$I$)(I$I$)(I$I$)(I$I$)(@$)(I$I$E)$!0%)`I$IE)?.I$I$)(@ @$E)!I$I$$!!0 e)! $%) \W@$I$$!I$I$!bjIE)b)$E)! z$I$E)!I$H$1I$I$E)!H$I$E)$!I$I1I1I$I$)($@ )(I$ 1I$I$1I$I$E)$!(I$I$E)$!I$I 1I$I$1I$I$1I$I$1H$L$%)\WV@E) e) ꪪI E)&I$I$E)$! E)hE)! H$%)^%) I$I$E)$! E)!I%)$!HE)$!E)!I$I$E)$!I$I$1 @$%)ppIEQ=N6wy0 *)&N7w%y +-,#D ),J$@$%)TTPPI$I$E)$!$H$E)!I%)$!I I$E)!* C2$I$!@I$I%)bUE)!I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1 @$E)!$C$IE)j*I$$&E)x %) 5I$I$1I$I$1I$I$1$H$$!!|$H$$!I$I$XhI$I!U/ !+$$$!+@$1H$I$e)I$I$e)I$I$e)I$I$e)I$I$$!! I$I$e)I$I$e)I$I$e)I$I$$!!I$I$$!! I$I$e)$H$$!axx $I$$!b IE)! @$$! $@$$!I$I$!I$I$!I$I$b_\0 !$!  E)$!H$I$e)I$I$e)I$I$e)I$I$e)IIe) $I$e)I$I$e)II$e)I$I$e)I$IH$!UUU H$!I XH==?'Cf` (S/NE--/-3+  44I$I$&44I$I$&44I$I$%44I$I$%!H$H$!TTTTI$I$E)$@ !pp@I$I!-55-I$I$d!d I$  $!!?  $!I!* I$I$d!d I$I$E)I$I$E)aI$I$e)I$I$d!d I$I$e) !I$I$!bWW^I$!b %I$I$e)I$I$e)I$I$e)I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$E) $!!  H$!I$I$!^^WWI !@$I!!C H U5I$I$Q!@I PH/++ w)%qP-/+ yS$q/+++`JT -+1+DZ_/($L$DZf/2-4IE@@1 p&E3)in DZ3,}'DZ__ 3,ɟlDZ3-i0DZ/3-ImDZ3,, @@@!*I$!(<I$I$E)I$I$E)I$I$E)IIH! 7WyqP/ pSwwi+/-` O+-/`%P%!XXPP@ !a`!I$I!~&$!I$!I$I$! I$ $! H$!4(I$!  I$!E)$!@$E)!I$E)!I$E)!IE)!I$I$1I$I$1E)$!ꪪ  E)!o몪!%) I$I$E)$!*I$I$E)$!I$I$E)$!I$I$E)$!I$I$10@0E)A`Kd]mE)<" I$E)!5[E)pI!IE)!"I$I$E)! $I$$E)!$HL$E)!_$E)H$I$$!!WUd$$I!bp!d&!PI$E)!wEE)-5U% `N7%i +/ w+3,ݐn 4/I$H"DZǩ4/)$I$DZǩ 4/R[I$DZǩ4/IDZǩ +41-؂-%41ɖl%4- DZ4) DZD,I$5UWZ/J§UUR#hJ†x/H e @$H$:1  :1 `$ 91  I$91 B$! I$I$B$! I$I$B$! `091 II$91 H$@ :1 I$I9F1 $A$ "91 &M$9bVUIH1% !I1E) **k%ۂ1E) ɑI$9e)5 J&c-9E)ItI$1E)**&pB:1E)`X\1E)  ɐ91 I$`$91h$O$1VWP 4I13'L&1b`X\p I1 I$I$)I)11@P$I$f1bVWTIH1 I$11?s: 1X1`@1! 1f1 v z1!8 (1E)@<)B1%) ۰dMvE)!(׾ lB)pAE)Ë-/ I$}'Af1UUW\I1P1e) O$I1  ۶m1!9F1H$I$)I)9F1@$ )I)I$I$g9*9F1 H$I$9F1 "A9e)j Oh9(1%) )I)I$I$)I)@$@$)I) !I$91+ @6`91ࠂ"#" 1E)`I$K&1E)UUW^)I$1E)U N91U @ 91ꫯ$I$81UU$81$H$@8q_WUI$I@!(I@8 mvX8+}, iH* e۶h1* PU `b;mp1XUUUI$I$11 11 +I$I$11*$@$11 11 *I$I$)I)&p<1bxx6K1a - I$@ 9! A$I1e)* n11 9F1I$H$)I)I$I )I)I$I$)I)I$@1111  I$)I)@ 1$!@I\1b&1e)m۶k511` Mc$1T11I$I$g9*@ )I)t":Ȧ1e)I$I$1E)*hR4.l1%)*I$I1E) ئ1E)d21f1I$I$9! 1e)L$1E) vm1e) * C&L$11p^WU$ 11 % I$I$g9*I$I$g9*d011Z`I$I11UUU$iڨ11@  1b I$11*I$ 11 1!@@I$Ip1շ,!I$ e)E) I$I$e)E)**DI$1E) ? 1E)I$I$g9*I$I$g9*I$I$g9*@11{">@1X`pI$I1 11+I$I$)I)I$I$g9*I$I$g9*I$I$)I)H$11I$I$11I$I$11+11/II$)I)m۶ 11^ۨ٢&1`PJIf1 %5$C2$ 1E)I$I$e)E)I$I$e)E)+*+?I$e)E)8@!1E)1e)* +@1E)I$@1E)I$I$9I$1E)* 1E)M֤m 1E)׿.1E)I$I$9!II$9!I$I$9!I$I$9!I$1E)I$I$1E)I$I$1e)I$1E) +H 1e) I$d01E)I$I$9I$1E)* $1E)k01E)^*I$ @1%)UWI$I&e)$!I$I$1I$I$E)!*$I$1%)*UU@ $1!/@P1E)I$ 1E)I$I1E)I$I$9 $I$9I$9@I$1E)I$1E)*I$@1E)I$I$1E)I$I$9 1E) 1E)I$1E)HI$1E)1e)$1e)`& 1E)^^~ 1E)H'9#I$I$9 9I$I$1E)I$I9I$I$9 9I$@9R-- f1`II017I$H$9I$I$9I$I$91e)$@$'9# $8e)UH@ !XH/ywWW%yX-/-%1Rpw%y/+1 Mܐ 1$-e)@+H$I$e)TUUUN;e)b^ e)I$I$@!I$I$9I$I$9I$I$9I$I$@!$@!@! e)%)@$I2e)E)j HX$) %pyw%yP++/(N/sE --1(%p /R ++416ِ DZ4/MIDZǩ4H@e)@I$I$9I$I$9I$I$9I$I$9p e) me)! I$e)%)$I$e)%)I$I$e)E) * I$Ie)E) I$I1E)I$e)%) $@!I$e)E) @$I$1"I$I1"I$Ie)E)$I0e)E) p$ d$e)E)XU`B&$CE)!!$IE)! I$ Ie)E)UUIҶ[e)!I$E)!$I$1H$I$%)a^^ٖn)PE)  e)E) I$I$)(I$I$)(I$I$e)E)*$e)E)X H$e)E)pWUH$I$1I$I1I)(I$I$1 I$I$1 I$I$)(I$I$)(I$I$)(I$I$)($)($I$1I$I$1I$ 1 )( IE)!$I$1I$I$1 &E)!x^C&I$E) zWUUI$I !II$!E)!I$I$1[5[ lE)!XXp!$@E)!-5 I$I$1I$I$E)$!I$IE)!* )(I$I$)( )()( )(H$H$1I$I$E)$!I$ $E)! A$I$1I$I$1I$I$1I$I$1dH$IE)!I$I$E)$!* E)!*  E)bI$I$E)!I$I$E)$! I$I$1L$ E)^!@E) I$I$1@ %)$!ꪪIE)!I$I$1I$I$E)$!I$I$E)$!I$I$E)$!@%)@ %)- S?`%)pSqfi+-,` Sf +-, %)@@ @$E)!I$Ie) @$E)!E)!I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$! $E)!I$Ie) E)!`0E)xI%)5 I$I$1I$I$1$H$E)!z^W$H$!^I$I$ I$I!!I$A$! 0$!  $!/?/H$I$e)I$I$e)I$I$e)I$I$e)I$Ie)$1@ I$e) $!b@I$I$$!!I$I$$!! $I$$!  @$$!`X\@ !` I$I$!^VX $! @$$!H$I!說*I$@$!I$I!*IH$AE)*I$I$1@$H$%)$!I$I$e)I$I$e)I$I$e)I$I$e) 1I$1I$I$e)I$@H$!UUUIH$!UH$!I$IPH*S6e `H+ Wy`--4똳{ǩf3(mWDZ //41%44I$I$&44I$I$%4   DZ@@@@I$I$E)H$I$!! !a !I$I$!!5 $@$$!!@I$I$E)I$I$d!d I$I$E)I$I$E)aI$I$d!d I$I$e)I$I$d!d I$I$e)I$I$E)!@I!UI$I$e)I$I$e)I$I$d!d I$I$d!d I$I$e)I$I$e)I$I$e)I$I$d!d !@$@ !b`P@I$I$!b%% H$H$!zz^I$I!UՕ5$!I$A( UUU!H IIPH** IqaPս wwfX++y{E+ 1%GF0I 3+M$IDZ 1,6`%1/$I$3-۰u[״ǩ*3-ضm[&DZ3-`iDZ1/ I$DZǩ3-IDZ3/ $I$DZǩ1%`'DZ!ppX\!((H!(I$I$d!d I$I$d!d I$I$d!d I$I$d!d  ɔt`! %%R7EX++/+PE ++-@0$)P`@I$I$$!! !'$! .I$I$$!!I$I$e)@$ $e)$I2C$!! I$!b  @ I$!$E)!I E)!$ E)!IE)$!I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$E)$!*&`E)XI$I$E)$!* I$I$E)$!I$I$E)$!  I$I2E)!mtE) -I$I$E)!*$E)!($I C&E)!z$A2aE)! I&!C2E)!zkjI E)I$I $!!(I$IE)!UUI6E)b.IHE)!*I@E)!mm۶ E)!I$Ie)E) Me) >səEe) -&`N.%y +1"PN/ *+4(@Z.4# DZ4/I5DZǩ4/I$mDZǩ4/-TI$DZǩ /4/TDZǩ 43I$@%41ېIl%4/DZǩ41ɰ %4+ۼ>j\9 ó1ۢAP@@ Nb''I) I :1 I$I$B$! I$H&91 ! 91 I$I$B$! I$I$B$! I$I$B$! I$H$91  91  @$:1 $I$:1 L" 9T d"9 919!dB21f1I$H%1E) ɐD9e) 5 O9e)UW~x@$I$e)!UH$@1!I$I$11/ :`91誋 R&II9!I$I$g9*@1@H$1bTU$HI1bI$I$)I)Z $I11e)I$L$11 11@ 11I11* I$I$)I)X$ ̦1E)XTP`DI1E)H (@1E)܀IdI$1E)**38CBf1XrÍI$ 1e)**`۲%1!P`1!= 11 +@9F1I$I$9F19F1 L$d091I$I$g9* $@$91 $:1 B$! H$@ 91I$I$g9* 9F1I$I$)I)I$$)I) I91+ bр91^[-ڊm1E)ZjI$I$1` 6a'0)W_ %O$81U@0 @$@8OcI @8 i۶6 P8 kq@/ZM$IX1PUmmh1RUUUI$I$g9*I$I$)I)@ 11I$I$9 H 11?@ 11I$I11 111%)@1$!I$I$9 I 9 !A$A11-/++ 9F19F1I$I$9F1I$@ )I)I$I$)I)I$I$g9*I$I$g9* I$)I)EJ$10_$@A1ظ1c11hZhI$I1UW 1I$I$)I)I$I$g9* $)I)N"'ɦ1E)1E) H8 X9E)?Im61E)ݐvI$1E) *%H 1e)I$I$g9*M'N'1bZV\tit1a I$I$9!!11 I$I$g9*I$I$g9*I$I$)I)@ 11c1l1P@ILٶm1$ 11 I$11 11 I$I11(1E)I$:1E)I$I$1"II1E)?@61E)/I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$11I$I$9 I$11 1f1I$I$)I) 11@31! 511I$11$H$9  11 ><1a`ɑ1b`%I1$C 01E)L&$C1E)_z۶mۊ-e)!I$E)!<!E)!?I$f1E)@$1E)+1e)@'9#I$@9I$I$9I$1E)*1e)*I$I$9!I$I$9!I$I$9!I$I$9!A 9!I$I$9!I$1E)I$H1E)I$I$9I$1E)*H$1E) I&$1E)I$I$1E)I$I$9$ȐI$1E) @1E)*I0@ 1E)Up I$`1%)UUX@$%)TE)!I$I$1$I$1%) UUU I$1%) UU@!$1E) U$)1E) I$d1%)I$I$1E)I$I$9I$I$9$I$1E)@I$1E)I$$1E) IH1E)I$I1E)I$I$1e) @ @!I1E)I$I$1e)$I$1E) I$1E)H$ $1E)$1e)**@$I$e)bTUTPJ1 H$I$9 9$I$9H$I$1e) 1e) I$1e)I$I$9I$ 9I1e)I81UTTHҶi@E)H@H@(IPH & yu7NiP--// 1 yF$q+ JF%y!C%M$fe)PPVUI$I$9I$I$@! $@!H$I$1"I$I$1"I$I$1"I1"$@!I$I$1"I$I$1"@ e)%)۲me) P@P$? S7iP-/= NOf%q --/ ɑ\ɕ\%y1/$I ǩ3/$ DZǩ //4$K$ETTV f1E)$I$@!$I$1" I1"I$I1"I&$C1E)I$! 1E)I1E)I$1E)A$1E)$I$1E)I$I$1"$#E)b@ $I$E)bUUU$e)b0I$e)E)@UU$I$e)E)@UUUH$I 1I$Ie)E)UUIH&e)E)U5_$0I$e)E)@UU@$I$e)E)PUUUI$I1I$ e)E)UU%IIe)E) @ E)I$I$)(I$Ie)E) I$$e)E)$A`$e)E) \U$I$e)E)WUUI$I1I$ e)E)UU5 e)E)I$I$e)E)I$I$1 I$I$)(I$I$)(I$I$1 ` 4E)b`I$E)b5$I$1I$I1I$ 1 )(@$)($I$1I$I$E)$!$E)!z$I$E)!^UU@$!I!E) !E)!媪IE),I$ 1 )( @$1I$I$1I$I1I)(I$I$)(I$I$)(I$I$)(%H$E)p\x I$E) UUmۖmE)I$I$1I$H$1H$I$1I$I$1I$I$1I$I$1öm۶-E)@I$IE)!**  @$E)!%)@IE)bUI$I$E)$!I$I$1I$I$1I$I$E)$!*I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$1@$@E)$!  E)!I$I$1m&mӶ%Y ?`N.s( **&N7w%y +-,#D ),J$@$$!TTPP $@$E)!I$Ie)E)!I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1%)$!ꪪ E)!I$I$1I$I$1I$I$1I$I$1$H$$!!|$H$!p\WI$I$!AI$I!I$I$!*U@$! 1@$I$e)I$I$e)II$e)I$I$e)I$Ie) 1H$I$e)I e)d$`2!bPTP@$!bI$I$$!!I$I$$!! / @ $!P@!I$@E)*@%)p$$!H$I! @$!*HI!*I$IE)! E)!I$I$11I$I$e)I$I$e)I$I$e)II$e)I$I$1 @H$!UUUHH$!UI$I$!`AI$IPH I$IXH Iv iPU+.W%yX  yww fi/+Fyf-/1#rh+|4-`RDZ +44I$I$%44I$I$&4   DZ@@@@I$I$E)@!pI$I$$!!I$I$$!!UU $E)!zH$I$$!!I$I$d!d I$I$d!d I$I$E)aI$I$E)I$I$e)I$I$d!d I$I$e)I$I$d!d I$I$E)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$e)I$I$e)$!I$I$ A>!A$H$!I$I$I  !I$I$!L H 55 I$I$!`AIviXH+ y7EX/!1wO %y/+ ,"&`+ + 1+`DZUU1-H&L$DZ-,$H$E-P'p$EP\\P/IE1)$IRDZ1Ҩ&EX3$$ǩE*U3iҚǩf1@I$DZEUU1H$N$\\VV A$!` !  ! !I$I$d!d I$I$d!d  IP!% pSyqP/-`nF`+/"I֒F$Q@%%y!UWXPI$I$d!d   !@@!I$I$$!! I$I $! I$I$!!LȄ %)(dH$!8I$E)! E)!ꪪ %)%I%)A.5.$E)!$E)!I$I$1@$E)!IE)!I$I$E)!I$I$1$IE)!$E)!*^E)!vm E)!%*L$$ E)!(dB@&E)!z!I C&E)!BE)BۚɖE)b  $E)! ݲ5mE)`E)$2!Ie)E)}IHe)E)տ!Ie)E)@!I$I$9I$I$9I$I$e1e)*ryEe1 ))P/E +/#iN뫭4(`m 4І$H$DZETTT4DZE41K%4/I& DZǩ4(%R<ǩEPPp4HDZE 4/j+TDZǩ/43$I$%41a۲mDZ1)Pр xh+O'91W\pp I$I$9F1  :1 091ꪪII$)I) 91 I$I$B$! I$I$B$! @ 91ꪪI$I$)I)  91  $:1 @$:1 H!91 N$r&91$#51p`'ɗ1 5I$I$1E). R2,J9E) @f1$! *HIK1E) I$H$11  I$91 H$ 91I$I$g9*I$I$g9*J"$A1bTm۶m1e)1f1I$I$)I) 9F1`011I$I$11?11I$I$g9*I$I$g9*11$C&L&11_V\ݖnId11 %K%X1e)9B1%UU L'CB1WVZk If1!@dI$1! I$I$9!@!1e)$9F1   91I$I$9F1 I$L&91 I$)I) I$ :1 I$I9F1  @$:1$ $11 $I$g9*$9F1$I"1@ȐI1 U $` 91)) ")$10Ph $vbۂ8)A$@0I$ @8UU H8I۶m P8* `@*i[MX1PU`1PUUUI$H$11,P51p`I1 5%I$I$g9*I$I$)I)H$1181pI1 /I$I$g9*I$I$g9*I$I$)I)H1f1( 2@011|Pp 1e)tI$1E) * IK1E) 9F1@$9F19F1I$@)I)I )I)I$H$g9*I$I$g9*JE1\0!11I1E)|$@1 I$I$g9*I$I$g9*I$I$)I)I$I$)I) EӮm׶91NB'Ѧ1E)I$I$1E)@Sv1e) *mkզ1E)~t$I$1:UVH` 1cmm1!P@@11@011Pp 9 I$11 UI$I$g9*I$I$g9*I$I$g9*11IB&@11UZP I$115UU $11 5 $H$11 11 I$I$g9*1E)Iؐ 1E)@$I1"I$I$1"؆1E)/1e) I$I$g9*I$I$)I)I$I$g9*@11I$H 11I$I$11/ 11 /`1!@ID1!I$I$)I)I$I$)I)@11P!C& 11}_x"I 1!@$I1b% 11X,1E)II `1E) 1E)jI$I1$!UVxI$I$E)!!I$E)!/$e)! @d$1$!*@$1E)1e)**1e)I$1E)I$I$9I$1E) 1E) I$I$9!I$I$'9#$H&1bp\Xɐ 1 % I$I$9!I$I$9!@1E)I$1E)I$I$1E)I$I$1E)I$1E) 1e)I$1E)I$I$1e)I$I$1e)$I$1E)*I$Pe)bWTia 1I$X1!I$I$f1!I$I$1I$I$1I$I$E)! &I$1%) UUd$1%) U ؆1! m1E)I$L1%)I$I$1E)I$I$9I$I$9 $I$1E)*I$1E)@I$1E)! @1E) I$1E)I$@1E)몪I$I1E)$1E) 1E)P$e)bPp`e)b%%) e)$! IM1!**I$I$9I$I$f1e)@$1E)I$I$9I$$9 I$1E)DJ$1b0W $IB8e1ivmP8/I6e aH/%y@=?&oל ` 1 I0 %yU36@"%e1jPPI$I$9I$I$9I$1E)* 'L$E)a \|IJ1 IB I1E)IB1E)!I 1E)II$1E)ꪪII$9I $1e)I$I$9I$I$9)$I8f1UU!$AH8/-/EP ) i3II$EyUU3 I$DZEU4 b;E)@@j 1E)I$1E) C$I1E)! $I1E) $I$1E)H$I$1E)@$I$1"I$I$1"I$$e)!$I$e)$!$AI2e)E)zd$e)!C2I$e)$!I۶ %)bUi۶me)!I$!e)E)UUI $e)E)UU@2I$e)$!$I$1I$Ie)E)UUU`$I$%)TUV0PE)$I$1"I$I$e)E)I$I$e)E) I$I$e)E)$I I&e)E)/_H2L$e)E)xWU@$I$1I$I1Ie)E)U5 e)E) I$I$e)E)I$I$e)E) I$I$e)E)I$I$1 I$I$)( )(H$)(۶mE) `It۶E)a5I)(I$I$)($)(2dB2E)!p`IE)! - E)!I$E)bW!I$ E)!UUd&E)jX`  E)5% I$I16@E)` dIE)Օ$I$1I$I1I1)(I$I$)(I$I$1 I$I$)( )(H$kE)I&$CE)bUZjɖ mE)@$I$1I$I$1I$I$1I$I 1I$I$E)$!I$I$E)$!*[$K&E)PTTX $I$$!_I%) % I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1 )TIh%) %%pSqfi+-,` Sf +-, %)@@@ E)!ꪪ E)!I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1$H$E)!~_$H$!p\WI$I$!AI$I$!UUյ$! LH$!I$I$1@$I$e)I$I$e)I$I$e)I$I$e)I$Ie)1@  1I$I$e) $I$$!!I$I$$!!I A$e)I$I$e)I$I$e)I$IE)! E)!@$H$E)!~_H$I$$!I  !**H$H!) $I$!* E)$!I$I$1I$I$1I$I$1 1H$$!(I e)I$@H$!UUUH$!UI$I$!`A۶m0 P8@$EIX8  IvYiP*. %yX }. e`*% } $q* ,yr4f1#q6-I5M)c(§\q1%)RDZ*'4/ DZǩ44I$I$&4,0DZ!``I$I $!! I$I$$!!I$I$$!!I E)!@$I$E)!Z^WUI$I$d!d I$I$d!d I$I$E)I$I$E)I$I$e)I$I$e)H$!*I$I$e) !!)I$I$$!!H$! V!)I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$e)$!I$!.H!*!I$I$!^WII!%@$I$!I$IH UUU!H I PH** ɛwqP/yw/efi-/ +irTAf,  ?%q/H1Epi/ IħE-'b">E\XX/|ɗxE4K${"ETV^/IdI $EP3k$EZU1I$EUU-` I$E UU1 /DZEz@ee ȿ$O$%iTVWU I$!UI$!U $!u$!A @$!I$! %/$A$8?? IP0(wRfX+, ۔I%yU *-v&(ZZ@@I$I$e)dB&$I!`pI$I$$!!!I$I$e)I$Ie)I$I$e)@$H $!%) I$I$1 $!I$%)!I$$! I$E)!$ H2E) _$C&E)jlIE)a $IE)!_֤MuE) m65E)!z@iېc:E)*`$IH!E))ݰ6m6e)!~ E)! L$ E)!LBHE)!^@@E)! $IE)! I$IE)$! Ie)E)U/IH e)E) $ Ce)$!DI$RE)'6@&e)ape)!$@!H$@!$I1E) 21$!in۶Ae)i;%E9+ ɔLi%1(P R )41 DZ *44I$I$%43$%43%44I$I$%4/M(DZǩ4/I$h@DZǩ4/I$DZǩ4/$HI$DZǩ/4-#"mࠀ/͐ HQ`?y1UUW\ T9& B$! L&@091 !I91 I$I$B$! I$I$B$! I$I$B$! H$@$91  I91 H$@ :1 I$ :1  Ztb'91*WW M'db91^__}1E)DI$I1 M&[51E) I9e)? L'P"89E)ɐtI1e) **[;b11 I$I$9 ) 91 % I$H&91I$I$g9*I$I$g9*L$`&1f1 I11 **I$I$)I)I$I$)I)9F1L&`211 I$11/?I$I$g9*I$I$g9*I$I$)I)11pI$I$9!$ 11 m۶k51e) 9\9f1 % O9f1UW\p!I11 -I$@ 1f1 I$11 * 9F1@$I$)I)9F1 C"$I91ꪪI$I$g9* ! 91 I$:1 H$@:1L$`1f1 !I$ 11I$)I) @$9F1M)J %1A & %I$81UI$I$@! $I$88@$@8I-mP8/I6I X@U*V@NX1 PU 1) X1PUUUI$I$)I)I$I$g9*11R#iI1E)`)@ I1 I$I$g9*I$I$g9*I$I$)I)1`1b%+11 I$I$g9*$H$111f1 11@I$H&11UUTXI$H$1e) I$1E) /@R&ۆ1E)11 I$)I)9F1I$I$9F1$9F1I$H$g9* 41`PiT1)%I$I$9F1 9F1H$I$)I)dB&`B011 I$11 * 1e)I$I$g9*C$A11L"ڀ@1e)$I&L&1E)I$1E) /u,vH1(퐴I$1E)*DAS1E) $I$11I$11* 11xI$L11UUW$I&11 _11I$I$g9*I$I$g9*I$I$)I)d2 11^xII9!I $11UI$@$11I$11 *11I$I$g9*I%1E)H$I$1" @!II$1E)/0)1E) /I$I$g9*A$I$g9*I$I$g9* $I$)I)I$11I$I$11I$11 $1e)H  9F1I$I$)I)I$I$)I)`%1E)`XH1E)I$I$11 I$11 ?11/I$I$g9* 011x`&1$!hX E)!I$ E)!I$I$E)!E)!+!!e)$! @$@!@$1E)*1e)+1e)I$@9I$I$9@$I1E) $1E)* @1b`)01! I$I$9! 1E) 1$! A$A$9!I$I$9!H 1e)I$H 1E)I$I$9$I$9I$1e) I$1E)*I$I 1E)I$I$f1e) IԸf1(I$1e)I$1E)t"@I1%)^I$ )I1!I$Lf1!I$I$E)!I$I$1I$I$1 $I$E)! `Ć1! mm;1!JNf1b&1E)I$@$1E)I$I 9I$I$9I$I$f1e)I$I$f1e) $I$1E)$I$1E)*I$1E) $9I1e)`1!Ң%P,f1ppɔD1-55 I$H1E)$C2$ 1E) 1E)I$I$f1e)I$I$f1e)ﯫH$I$1"MdHlAWI$IPH6e`H/wW%yXյ ! yw. i+ /yys f 3$I(f1@+H$I$f1TUUUI$I$9I$I$9I$I$9p""%f1p !e)a  $I$1e)$1e)I$I$9I$I$9I$I91e)I$I$9II9I$H$9 MPE)REH++% i //EyUUU/I$I9EUUUp $Ee)@@@PI$I$1e) @!I$I1"I$I$@!I$I$@! e)E)0e)E)e 1%)`$`E)!X\$$IE)!L$ Ce)$!I0$e)!I$1E)UU! $f1E)UU$4f1I$I1I$ Ie)$! I$e)$! I Ie)E)%H$I$e)E)h E)b I$I1"I$1"I$$e)E) $e)E)~_$I$10E)`۶ ) E)  e)E) I$I$e)E)I$I$e)E) I$I$e)E)I$I$1 I$I$1 I$I$e)E)*@&M$E) VWPnE) @$I$1I$I1I)(I$I$1 $)($I$1I$I$1I$I$E)$!E)!$@E)!jI$$E)W* E)!I$I$1I$IE)!!E)! )( IE)!@ E)&I$)( 1 I$I$1 I$I$)(I$I$)(I$I$1 @$)(H$I$1I$IE)!  )(I$I1$@C2E)!`mmtE)+%I 1$I$1 E)!j0mE) Xۺ5E)ࠀ`dB!E)b %!E)I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1`B&E)!~^W E)!I$I$E)$!* $E)!aۉX$!UUUN1w) *)&N7w%y +-,#D ),J%@(%)TPP@I$I$E)$!*I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!I$I$1 E)!j$%) %$@$E)!z~$H$!p\VI$I$!AI$I!UUյI I!+*I$!!I$I$1I$I$1I$1I$ 1I$I$e)I$Ie) 1@$I$e) Ie)$I20$!II$!+5/I e)H$H$e)II$e)I$ %)$!E)! $I2E)$H$!@ !*@$I$!ppI$I$!b-5- E)!I$I$1I$I$1I$I$1I$I$12$I$!I$IBHUշ@ H!U I$I$!`AI$IPH I$AXH 6- `8j  %@ }. fiս % 4 %y,r$E*1"v6 *3)q]J$m 4+SrDZUWtD%Nk蹆/?#$`2&ǹETXX4IIE4IDZE400ǹ$)```` @$1I$I$$!!`PXIIE)!յ5-$H$E)!x\VI$I$$!!UU-I$I$e)I$I$d!d I$I$E)I$I$d!d I$I$e)I$I$e)I$!(I$I$d!d @$@ !`p`I$I!A/// I$I$e)I$H$!a\I$I!a-- I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d @ !說I !/  !H$I$!zZI$I$!UUU  !I$I$E(C H  I$IPHi6e `H/yw7EX/ )qrT E/+1&1u@)+ 4O$䧱EWT1a s>Ei x{4IhIE4$M$EWVW3КODZE-/I$IEUUU/Q%EQQ/I$ǩEUU1 IE 3I ǩEU1(0 @I$I bI$I$!UUתI$I$ UUUI$I$}I$I$uI$I$bXI$I$k{I$I$A  LX 7qyWE`----&E )- -".$1@I$I$E)I$I$$!!+UU $I$$!! $I$e)H$I$$!!@$I$$!! C$IE)b $I$!  I$!a '  $ E)!H$A2%)I$E)!U$ $E) Ud0$E)zપi[`m۶E)@ E)!I2$IE)!H$E)!W$C2E)j`۶mE) E)!/@$E)$! I$IE)!I$I1I e)E)Uu*E)b 'I$I$e)E)I$I$e)E)`@%E)p6Re) ‚DvbE)ZHIe)E)!X ۶me) $Ie)E)I1E)[J:e)b(e)$!I$I$9I$I$9 ?Eie)%UU PN/fE9 +, >REyBBJk3 ?Ey%%410DZ 43@$%43 %43I%43$%44I$I$%4-DZ4/I$ DZǩ4/i$Iǩ1+X:hvV+=̧$ xI$I1U 0$)9e) ZM$9!U1E) @91 I$I$B$! I$I$B$!  91ꪪI$I$)I) @!91 I$E9 H1f1  91 v&(91II$11**$H1e)I$H$1E) XBe)ϭ I$N'9E) I$1E) > 9 II$91UU  91 I$I$91@=1 @P$AI1 I$H$111f1 I$I$)I) I$)I) I1e)I$H$11! 1f1 *I$I$)I)I$I$g9*I$I$)I)H$@ 11$A$I&11/_@01e)IĶm;1e)* =&9E)C[1E) ɐ 11 I$M&9f1I$11 * IIB&91@$I$)I) $A!H91 $I"%9!`X1! $I!91   $:1 I$H :1 dB2H91ꪪ$I%81UUU$'81UI$I$@ I$I$@! I @8* I$AH8+6A`@ N. iPW n$K$hE)ZVTT۰MO1E) 91 I$H$91I$I$g9*I$I$)I)@(1%)@1E) 11 *I$I$)I)I$I$)I)I$I$)I)I$@ 11I$I$11?11 H$11 11 I$I$)I)11`m6h 1E)ꪨ$I 01E)$I$1E) o1 11 I"%1%)@P ɐD1 ?@$@9F1I )I)R")H1pI!1%r$1b89F1I$@ )I)$B$1e) I$K$9f1 I$1f1 *H$A$)I)I$I$g9* !I$91 j9DZ 3%Z"&!ppXXI$I$d!d I$I$d!d I$I$d!d I$I$e)  ! ! H!XH$!b d@ A$? pSvw`0  N7Sfi /--,`  )---H%@"=!TPPp H!/$!( $!I$I$$!!$I&$I$!$I2$ %)!UI$%)!骪I$IE)!_WIȄ %)a&.$ &E) IE)! %)(ILE)a'6(I$I$E)$!I$I$E)$!*ItE)*6.mME)!&I E)! .&E)`)E) @ )( )($)(I)(  E) @34E)`PE)I$I$e)E) ض$hE)(\KIE)b 7< @! Xe)&.A$@!$I@! H Ie)E) @e)UU$Hf1UU*$I$Hf1UHI$HE91[`P/_%qH # `%q)+)+-%JtB+-+3,wDZ4-$H DZ/4/ DZǩ43I%44I$I$%44I$I$%44I$I$%43I%4 @$DZE@PP[5ۊmE%y&?*.f9jJ€ m۶mfQ9UUUT I$I$B$! 91  I$H$91  91//  91 I$j U9bWV P9  I$H$91 I 91 I$H$9F1 @$:1   91 ** P8 91I$I$9!C !11#)1!`@ =\I$9b 7 O'lB89E) I$1E) * k24ҭ91^zjI$I$9 )91 -5 I$H$91I$I$)I)I$I$)I)H$@ 11 I$1f1 *I$I$)I)I$I$)I)9F1L$ 1f1$@$I&11 Z1E)I$I$g9*I$I$)I)@ 11I$I$11! 11 /I$k%11UWXP 1I91 % ?/91WTp`)Iפ1e) *[;`11ࠀI$I$11+ I!1f1 I 9F1I$)I) $ )9e)** $I$)81UUU !J$81UH$I$81I$I@8UUA$I@8Y $AH8/I6E X@ } iH+DF`U/Zq$I%yiɣ }wD E%q !E E%y)"I AEE)@ytI$1E)%UU PNn9e)+ @ 91 I$I$91I$I$g9*I$I$)I)H$11I$I$9  11 1!@I1%+I$I$)I)I11 $11 11{$1 V1%)I$I$)I)$C$A1f1R$p91bp\X` )E)b  I$1E)/$@ &S1E) *+$I1E)9F1 11@JM1$!*  !91﫫$I1f1 I$I$91 91 I$I&91I$I$9F19F1$21f1I$I$11*H!1e)I$I$g9*  I$91 A9e)蠢C# 1j )l1E)I$I$1E) $I$1E)PĦ1E) /$1f1 11 I$I$g9*$211xI$I$9!@!$11 -U @$11 11 I$I$g9*I$I$g9*kmn1e) I$I$9! ,91b`1E) I$I$g9*11 11X, 1E)I$K%1E)I$I$9I$I$f1e)I$1E) 1e)I$I$g9*I$I$)I)I$I$)I)B$I1f1I$C1e)I$I$11I$11*$I$1f1H$H$)I)P$r91bp\X`1`1b I$I$)I)@11I$@11I$I$9 I$11+11 I$I$g9*$11~ml1E)sR 1!^I$dE)!UUxI$I$$!!!$I$E)!+WU@ $E)! U$@$e)!+$I$1E)@ I$1E) '9#I$I1e)I$1E)I$I$9I$I$9I$1E)**1e)I$I$'9#I$I$'9#I$I$'9# 81`H1!I$9 ˆ11e)I$1E)*j"5 1bX`JHf1)  e)E)@@i[f1$!?I$1E)I$1E)I$9I$H9I$I$1e)I$I$f1e)I$I$9A$I$9I I$9r"I I1$!^I"р$1!]I$$ 1!UժI$mlf1!UU^I$aE)!I$I$$!!<I$I$%)!I$I$!!/$@$E)!I$I$$!!*+ E)! @$I$E)!z~ IE)!/$e)%)H&L$E)!~~$I$E)! 0HE)UUUH$I$H1I PH+* wqP/+ ywWd i/+-1N f++3  $,I@/x$O$e)\TWU@e)$!e)%)0e) e)` f1 I$I$9I$I$9I$I9 1E)I$I1"1E)I$I1E)$C$ 1E)ꪪI$ 1E)I$I$9I$$1E)[5@5Pe1%%%%1X`P-%=- 1fi----'po1ws -4+pwww4H$J$DZE)TTTUmnE)! H$IE)$!(($C2$Ie)$!I Ae)$!** L&e)$!!Ie)E)!He)E) A$@!$I$1"I$I$1"I$I1"$Ie)۶ e)!I$e)E)$I$e)E)H$I$e)E)I$I$e)E)I$I$e)E)I$Ie)E)Ie)E)?@! @!$@!$I$1"I$I$1"I$I$1"I$I$1"I$I$e)E)$e)E)V I$)( I)(I$ e)E)UU*Ie)E)U I$I$e)E))(I$I$e)E)$)($I$1I$I1Ie)E)U  $e)E)^ H$)(I$I$1I 1e)E) I$I$e)E)I$I$e)E)$1 d$E)!0e)E)-0E)!e) I$I$e)E)I$I$e)E)*I$I$e)E)I$I$1 $)(@$I$1I$I1 )(I$I$)(I$I$)(I$I$)(I$I$)( @$1I$I$1I!Ae)E)U$`$e)E)\WH$I$E)$!I$I$E)!* I$I$1I$I$1@$H$E)!z^\p E)!- I$I$E)$!I$I$E)$!I$I$E)$!*I$I$1I$I$1I$I$1I$I$10E)`I$I%)b7Օ'I$I$1I$I$E)$!I$I$1I$I$E)$!*I$I$E)$! H$E)!H$ e)I $E)!I$I$e) E)!I$I$E)$!** PI`E)pSwe` /-) Oe +/,@%)@(I$I$E)UUUTI$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$E)$!0`$E)x^!E) @$$!I$I$ I$I! !I$IE)*E)!I$I$1 $!I$I!>ח.$!! @$1IIe)%)$!몪LB $!bTE)! %)$!ꪪI$I$e)I$Ie)I$I$1@1I$Ie)E)!$E)!H$I$$!!`ZVI$I!* $!I$H$!W^x  !%)-) I$I$1E)!ꪪ AC@$$I$8$! @8 5IP@'I۶ XH w iP+}. EX  }. fi (mE -r$f*1%yr$ 4,n4 41I DZ*43DZ44I$I$%4$H$DZETTT41%4,$DZP4HR$$!PU1Т'I$$!\UUI$I$$!!*I $! E)!jI$H!AivaE)-+ `&L$E)!pXVWI$I$$!!?/ I$I$$!!I$I$d!d I$I$E)aI$I$e)I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$$!! I$I$e)I$I$e)I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)!+I$I$E) @$!axI!A /H$I$!zzI$I$? $!I$I$E)aI$I"@ յ H8@EE P X8%*7%yX/+% yyS.e %q-+ 1"qn ++ 4/ PDZ** 4/ DZ44I$I$%41``%3+$I$@UT3,$ɓ'Uu]1,IdDZ1,N$N2DZWWW3,ɛɷaDZ1-L$DZ3-Id۰ DZ**3-mm؆mDZ1z'H$TI$I$d!d I$I$d!d I$I$d!d I$I$d!d @ !@!I$I$$!! @$!0A$A$e) ɔtX$)5pSwwE`+--+N/sE +/-c?#)zzz@$I$e)H$!6,@$I$e)$@$$!$1I$HE)!I$IE)!I$ E)!I$I$E)$!`%)ؠE)!H$E)b`E)I$I$1I$I$1I$I$1 $@E).p$!IE)!)*I$I E)!I$IE)!* @$)( )( e)E)I$I$1 I$I$e)E)I$I$e)E)I$I e)E)$I$e)E) $I$e)E) `@$Ie)E).I$Ie)E)( Ae)$!$@A9*$He1UU'pB@E)U$I$8e)!$I$H8 UUUaIP8iX@% . iP y/EE`/+"`E--- /%J))+4$J$ETT4--ۂHDZ4-N$N9DZ4/I$DZǩ4-[DZ?44I$I$%44I$I$%43I %4H$I$DZETTUU,IDEU5+ =%yPPTT|%q9T\p I$I$B$! I$I$B$! @091 II$91 91 I$I$B$! I$I$B$!  91*I$I$)I) I91 B$! I$I$B$!  BD! N"'`91 I$61`ɒdI1E)I$KIf17 ~9E)ƒ / I$O$9E) P1E) L$`B011 II$91UU @ 91 I$I$g9*I$I$)I)I$ )I)I$L$1f1 1f1 I$I$)I) I$)I) 9F1[:R 1E)@ 1E)/ 81!p 1! %I$I$)I)H$ 11$A$I211?2,n11@@I$H$11UUTT A\915 O91UUVX퐴1e) L$dB01f1 I$1f1 *1e) 81UUU@&H$10`PTUH$I$8E)I$I$@! I$I@8U!I$IH8*IX@U+ }. iH+ y떥$%yX yے$Ei  gU F%qvݶ E%y*E%yI$IfE?lذfEOS\Wx=EE)TPP@I$I$11XI$1E) 5U SI$91U `091ꪯI$I$)I)`e1$!!I11 %%H$11II$11+ 1f1 I$I$)I)I$I$)I)I$I$)I)H$H$11 I$11ŠO%1W0 1!I$I$)I)I$I)I)"1E)@mɀ@1%)I$N'1E)x,@,E)@pIP1 5 I$I$9F111@IX@1$!*I$)I)9F1I$H )I)I$I$)I)X&sڦ1E)11E) I$I$9F1 II:1 M&@9f1  11 * I$I$)I)I$I$)I) I$I$91 k91~ꫫr$1X^@e) I$I$f1e)I$I$f1e)ݐtI$1E)* "I&S91$I2$211 #921$!`H1I$L11UWV4I۶-1E)jfN$1b8U 1 1!`p@wxI1+%/H$11r$R(1bX\pm1b 11 L$11 VU11I$@ 11$C$@11z* I$#1E)I$I$f1e)I$I$1e)II$1E)/)d1E) >I$I$)I)I$I$)I)I$I$)I)I$I$)I) C$I1f1I$@11 $I$11  $11 " $I1E)@I$@ )I)I$I$)I)I$I$)I)I$I$)I)@11I$@ 11I$I$11*I$1111 I$I$g9*k1E)Ib'Ȇ1E)m1!ꪨI$he)!UVxI$I$$!!I$I$E)!UUUI$E)! UUE)!%I$1E)@$1E)*1e)*I$I$'9#I '9#I$H1E)ꪪI$I$9$I$1E) l۲%1E)zZɐ1E)h'@1axx1P1b)- I$I$9!I$I$9!I$I$'9#I$I$9!I$I$9!I$I$9!I1e) I1E)I$I1E)I$I$9I$I$1E)I$1E)@$1e) I $1E)I$1E) I$@1E)I$I$9I$I$9I$I$f1e)I$I$1e)$I$1E) I$1E)說IH1E)WkP&1`xvn1 =vB; 1$!_~Iض 1!c; ц1$!I$IE)!*!I$ E)! @$H$E)!I E)!IHE)! A$I$HE)I$IPHkwn`H/+{w/fX+)qR E-+ /& 0DZ-3"=z$1`p\VI1e)I1e)I1e)I1e)I1e)I$1e)*IH$1E)II$1E)I$1e)$I$9@I$9 I$1E)$I$1E)I$I$1e)I$I$1e)I$I$f1e)I$I$@! p ǣHE) )IIt`P=1Ei----, f----3,i   E)b= `1! H 1E)$H$1E) A @!I@!H$@@!I$I1E)I1E)$ 21E)~2e)$I21E)K$HE)\^E) I$I$e)E) I$Ie)E)*I$e)%) 9I$I$@!I$I$@!H$@!$I$1"I$I$1"I$I$1"I$ 1"I@!$e)E) $I$e)E) I2$Ie)E)I$I1Ie)E)U* e)E)`e)E)*I$I$e)E)e)E)`$E)`P E)b)%I$Ie)E)UU%I$1E)U$ e)E)$I$e)E)`TUUI$I1۶m$E)`pېIdE) %5I$I$e)E)+I$I$1 I$I$1 I$I$)( I 0E)!I$IE)!WU?e)!@5 `E)`pɐ)PE) - I$I$e)E)I$I$e)E)**I$I$e)E) @ )(@$E)! $A$E)!I$I$)(I$I$1 I$I$)(I$I$)($)($I$1I$Ie)E)UU &e)E) @X $I$e)E)pTUUI$I$1I I$1I$I$1I$I$1I$I$1 E)@$I$E)b UE)!I$I$E)$!*I$I$1I$I$1I$I$1I$I$E)$!I$I$E)!I$I$1 E)I$I$E)$!I$I$E)$!I$I$E)$! E)! H$E)!I$I$e)$@$E)!I$IE)! E)!I$I$E)! I$I$1I$I$1R1y$) *)# 7w$q++," ,H$@(E)TPP@I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$E)!*I$I$E)$!I$I$E)$!I$I$1&E)`X$%) L& E)b^x  @$! I$I$ I$I!* !I$I%)! E) I$I$1I$I$1@$I$e) $! @$1I$I$e)E)!I$I$1I$I$1 E)$!@$I$E)$!I$Ie)$H$e)I1I$I$1 E)! E) I$C&$!H$I$!$I$!I$I$!*I$!! I$I$10`HEH$!I$H H@L$`H8VVPI@8 !i`@ ĶriH+W }. fi )k E -r0f 1&in 4-i$+41I DZ*43DZ44I$I$%44I$I$%44I$I$%4(0DZ`4HR$$!PU,@$I$$!PUUUI$I$e)I$I$$!!I$I$$!!II$$!! H$I$$!!IIE)!-2`$E)!`x^I$I$$!!/I I$$! I$I$e)I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$d!d I$I$$!!?/I$I$$!!I$I$$!!I$I$e)I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)$@ !``I$I!A+'/I$I$E)H$!axI A$!% I$I$ Z^WUI$I$!I$I$E)aI$I( UUU@H! IIPH** 1iP-+w7fi/+) e%\> %qZRR3 %y43DZ4(DZ 44I$I$%43  DZ3+H @T3,imضmDZ3/$A$DZǩ***11I$I$%31 %11I$I$%31II%3%I DZ@ HeYI$I$e)I$I$$!!_I$I$d!d H!..I$I$e)I$!&!I$I$$!! (I$I$$!!NQ?pWy%yX/-% N7w%y+/--"FA @1I$I$1$!! %)% 1I$I$1 $`E)pxE)!E)!IE)$!IE)$!I$I$1I$IE)!**IE)(6.I$I$E)$!I$I$1I E)! tE)' I$1)(I$I$)(I$I$)(1 ذdE)e)E)XfkE) 8(XhE) 8I$ $e)E)II Ie)UUU  A&He)UUI$He1U$I$Hf) I$IPH]I$IPHI$!IPH IXHUI$ i8U I?q@UU n qi@ vے%yX-5.Ifi +yV f-+ /()-PDZ3J" ET41ٖ$%43@%4/J)DZǩ4-It DZ4-$`CDZǩ 4- @&DZ+4!#$DZE@`PI$Ih-!8E Bp$ EEy k %yQ@ ]۪%q9UW\X I$I$B$! I$I$B$! H$@091 ! 91 // I$I$BD! I$I$B$! I$I$B$! H&@ 91  I$91  91  I$:1  I$91** 691 k$j69ZVX HM1 H$@1E) I$9E)/ `<n9E)‚II$1$!**HA 1E)I$L$11 ) I91 % `$91I$I$)I)I$I$)I)`B0H1f1I$I$1f1*$H1e)I$H$)I) 9F101e)I$H$11 1  a1!% I$I$g9*I$I$)I)d&`11^\X  11%5[%m11PP II$91UU "v91` ض91UUUT 691$I(81UUU )J$81UH$I$81I$I$@! I$I@8UI$IH8*I]7 X@"}. iH*  %qP*I Ei* Iݶ$@E%q着!e H@E%y) HımF%y}۷mfE?I6l fEvjFE?cKFEAB _:q$ |I$E)b I$1E) )U !1S91 `$91r$p Y1$!\W0 1$!I$I$g9*L&DB"1f1I$I$11*11I$I$)I)I$I$)I) 8p81`X` 1 %  H1!11I$I$g9*I$I$)I)9F19F1#ɐH1E)m۵:1E)UUW\!m۶1) O1E) 9F19F1I$H$)I) I$)I)9F1 I$dB9111p $I 91 I:1 A$I$9F1 I$:1I$)I)@$H11  I$)I)I$I$)I)I$I$)I) r" 1X iKh9!I$I$f1e)$@$e)E)I$e)E)*vm1E) D!S1E) #'Ȇ1b`X` 1b 5 @11ڦmT1E)$N18 11 ?I$I$g9*11 I$I$g9*@<1pdwĆ1 IJ1E) L 11W5I$I$g9*I$I$g9*I$I$)I)I$I$g9*k,1E)I$K41E)R$f1:I$I$f1e)I$1E)/ 1E) I$I$g9*I$I$g9*I$H$)I)I$I$)I)H 1f1I$I$11 $I$11 $)R$1p\@I$1U1!I$I$)I)I$I$)I)I$I$)I)L @1e)$II1I$I$9 I$111111@I$X `1E)ꨀm6m 1E)kmle)!I$E)!U^I$I$E)!UUU\I$I$d!d !$I$E)!UU@I$E)!= ۖne) @ $1E)I$1E)1e)1e)I$9۲m`1E)z e)E) )R$f1bp\`X1b %$1e)*I$I 9!I$I$'9#I$I$'9#@1@JI1,U01E))I$I$9!I$I$9!1e)I 1e)I1E)*I$@1E)I$I$1e)I$I$f1e)I$I$f1e)$I$1E)@I$1E)I $1E) I$$1E)I$@1E)I$I1E)*I$I$9e)` `e) I$I$9$I$9$I$1E)I$1E) $)1!B" I$1I$I$@!$@!$e)%) I$e)%)$I$e)%)I$I$e)E)I$I$e)E)*I$Ie)%)*$I%e)b@P$e)b$e)%)@$e)%)H$IE) 4h5E)b`X` IlE)b 5 -۶mE)@I$IE)bU,6I1$! IL1.M$1E)WU@$I1E)zUUUI$I1I$ )( e)E)*I$I e)E) I$I$e)E) @$I$E)\W\P0E) I$I$e)E)I$I$)(I$Ie)E)/Ie)E)/I$I$@!I$@ 1"I$I$1"I$I$1"I@!$e)%)#&E)@PɐE) =I$I$e)E)*@`e)` e) I$I$e)E)I$I$)(I$I$)($)($K%E)pXp!IE) % I01E)U$L$1E)ZWU@0E)pI E)- @ )(I$I1I)(@$@ )(I$ $E)!I$I$E)$!I$IE)$!*I1 )( I$1I$I$1I$I$1I$I$E)!I$I$E)$!I$I$E)$!*I$I$E)$! I$I$1I$I$1  H$1 E)!$I$E)!I$I$$!!$I$$!!I$Ie)! E)!*I$1@$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!* I E)! I$I$1I$I$1E)@R1y$) *)maf`/ ," ,H%@(E)TPP@I$I$1I$I$1I$I$1 E)!@$I$E)!^WW$H$!I$I$E(CI!* IH$AE)* E)!I$I$1I$I$1I$I$1I$I$1I$I$1 C&L&!b@PTP$ %) %)!jZj$I%)*/ E)!$C&%)bpI$$!b %E)!I$I$1I$I$1`$L&%)bhXVX %)$$!!pdB&dBH!UUUIH UH I$IPH*I$IXH*IضiPU+I.I %yP . Ea+" m6i )r$E /n$3)떥$ *4-IR DZ*4!Z@DZ`)"mچmEj!I$H&EUUT\!II$E5U-$Vmf**4  %E1P4!I$I$$!! I$I$e)$!I$I$$!!I$I$d!d I$I$E)I$I$d!d @$!I$I$!I$I$!I$I$E)a ! I @H!%% I$I$PHIvmXH/+yw.WEH++& yysT %y+ 1"qn + 4/i PDZ44I$I$%44I$I$%44I$I$%44I$I$%43 DZ43I DZ* 44I$I$%44I$I$%4H< DZETp@-$IE/)I$$ ǩUU*1)I$DZUU/)IBrlǩU+1j$H!X\/II!UI$# f!UU h!UUI$ P!UWI$$H!UUI$@$H!UUP$C@8!UU+!I@@$A I&@$!UUT$$8$)UU$$$H [ۚ$H$!U@Rwh0+*.fP ++ ۧ%q *,p&`R'$!\XXZI$I e)I$E)$!I$E)!E)$!I$I$1I$I$1 I$IBEi%)UUU I$Iq%)UUUm$ :XE)UUH&@E)UU+`$$@tHE)U ͆m۶mH$!UA$I$HE1 I$I$Q!@I$!XHU/C$XHUI; `8տm-) aH Il%'iPU I%)qPom'%yX-5 E`* o$' fiտ" In$7 f%qկ*&In(EU)eտ+rf /"YN4 3)ݲ(A3-In۶aDZ 3ӐDE"41ɖmۆmDZ43 I$DZ 43%4/mDZǩ4/I&@IDZǩ3/ $I&DZǩ/4/ I$DZǩ 4/DZǩ/43@%41I-%4/mҶm IDZǩ3/$C2$DZǩ1)R"II籧_1%!HDZ/"8P$E@pPT,I$IEUU,,@%EB`PXI$I$hI$I$hI$I$hI$I$h h# E%y~ c1%q9P@@ A9UUUV I$I$B$!  91ꪪI$I$)I) 91 9@ I$9 U  91 I$H$91   )9$! j '9 - H$@ :1 ! 9f1 * `991I$I$11*I!1f1I$h41e) )ɕ9f1 % L&X"Be)^^XɐI$1E) ** M$91I$I$11 ɐ91 - I$@091I$I$g9*I$I$g9*H0C1f1 $I$11 I$1f1 $I$)I) 9F1$C2 1f1I$I$11*@"11JI$1E)*11II$)I)M[11@$J$81I$I$@!  !AH8/+{/iH/qRD %yX+  qr4%yq  6lE%y I$E%y* IpI$p@$A p  H$IfETUUI$I$h@$I$hI$m$fEUUSI$fEUU7 ;p$fE|\PI$I$hI$I$hI$Ih6 fEUUO@ `?6dK%A@@ X,6`91ࢂ[1E)`I$K%1E)UUV^I$I$1`11E)5 $I!91 I$[-91I$I$)I)I$I$g9* I$)I)IB I1f1  11L$118WU 1@  11e)MfI1V@$A11**I$I$g9*I$I$g9*I$I$)I)I$I$)I)11@$C 1E)jI$h41E)UUTPI$I$1Iq1E) %I11 5I$I$9F1I$I$9F1X@I1 9F1 dB I91ꪪI$H$g9*  I$91 B$! I$I$B$! H :1 @91ꪪ I$@91I$I$g9*$ $I1@I$I e)U I$I1E) @B 91꯿ I2'[ l9e)WLB&$1E)_~d$d&e)E)_W_X$@2d$E)\mpf1 -`J ئ1E) I$)I)I$I$g9*I$I$g9*H 11I$I$11I$I$9  1 I$I$g9*I$I$g9*I$I$)I) 11II1E)I$I$9 ۰m1e) 1I$I$g9*I$I$g9*I$I$g9*1e)i6 1e)I$I$1$!I$9I$I$9vi1e)*$11 %I$I$g9* 11@$1!01E)11`IM11ՕI$I$11$I$11 11 + $)I)I$@$)I)I$I$)I)I$I$)I)I$I$)I)I$I$g9*! 11&-&@1 @I$If17U@!11/$1111M1E)cۢ @1E)IB$ 1E)km`e)!XI$e)!U^I$I0E)!UUU`I$I$E)I$I$E)$A$I2%)*dSe)*۰mI$e)!/e)!$A$$1E)I$1E)H$LB1E)@1%)I$I$'9#A1e)*I$1E)着I$I1E)I$I$9$H$1E)@!I1E) I$1E)*I$1E)$1e)$1e) "$f1!@pIx1!&L&1bXVXɉf1I1! %۲m۰ 1E)jI1I$I$'9#  1e)I$I$9I 1e)**I$1e) $R$81$I$@8UUU$ H8/5.`@/+ 1N %yX++  @E%q@EE)ppxIeAmu`e)! &#e)`pI$I$AxIɆ1 m͐dI1aյ@$I$9I$I$9I$I$@! e)$!I$I$1e)P'P(e)a`X` e)a % Le)b(@e)E)I$I$@!I$I$9I$I$1e)I$H1E),ɒ @f1۰ ݐP8 **- 7qS7WiP----! pO%y----/"d  1J$H$f1TTTUI$I$9@$I$f1!TUV00e)I$I$9I$I$9I$I$9 1E)P$I$e)bTUV@DIe)L„ e)!(A$I$e)E)I$I$e)E)*I$Ie)E)*I$Ie)%) Ie)$!Ie)$! @!$@!H$J$e)bT\|ɐ ɐ E)b  1  I$1)( C$IE)!hi۶m%1I61E)Um$1E)_U@$I$1E)zUUUI$I1۶-[$E)p\)E) %I$Ie)E)*Ie)%)  e)%)@ $e)E)I$I$e)E)@E) I$Ie)%)Ie)$! e)E)I$I$@!I$I$@!I$I$@!I$I$@! @!I$I$e)E)I$I$e)E)I$I$1 `E)@ e)I$I$1"I$I$e)E)I$I$e)E)I$I$1  1  H$)(I$I1$CRE) Ie) H$I$e)E)TUUUI)($ E)!E) I$I$)()(I$I$)($H$1I$I$E)$!I$IE)!  )(@$)(H$I$1I$I$1I$I$E)!I$I$E)$!I$I$E)$!*I$I$E)! I$I$1I$I$1I$1I$I$1@$E)!H$I$$!! I$I$$!!I$I$$!!**IE)!I$I1 @$)(@$I$1I$I$1I$I$1I$I$1I$ E)!* I$@$1I$I$1I$I1I$I$1 @$E)@PTpOxa=5pSwe` /-+`N/sE +/,E)@(I$I$E)UUUTI$I$1 E)!@$I$E)!$H$!I$I$E)aI$!/ I %)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1@$I$$!bXV\$ E)j I$I$E)$!I$I$1 E)! $CE)jH$I!?I%)b% I$I$1I$I$1I$I$E)$!E)`H%)UUUHH!UI$I$!`AI$IPH I$IXH Iv iPU+I. %yP }. e`+# }4 q ,4 e*1 rܶ *3)R$+4/IV DZ 4(DZE@4DZE44I$I$%4%s&,DZ^Xx`%R") HEP@?E$)|%?O$%)B~WU@$I$%1$!I$I$1$H$%)$!I$IE)$!%)$!I$`$!AX $@$!a $$!H$I$e)I$IE)!0%)`I$I$AmIE)b% !H0&E)!I$I$d!d II$!! @$E)!@$H$!  $! / I$I$e)I$I$e)I$I$e)I$I$$!!I$I$$!! * I$I$e)I$I$e)@$!PI$I$$!!H!,I$I$$!!"I$I$e)$ $!b`I$I!a?=H$H$$!!hxX\I$I$E)I$I$d!d !H$I$!I$I$ xI$I$! ++ II!$IdH!UU%I$I$H1I XH+ wqP/+ {w/fi+ -1NPf+4,Nݴ 43DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4%DZEP4DZE4DZEy@4IM$DZEVT1@'E]/ Iۖ$EU1$}$E^U,@I$EUU+ 6>'%qz__X??fX___X&kX@x^~I2$ H8I$@8_I$@8UI$@8UI$@8UI$@8UI$@8UI$@8UI$@8*!I$AH8+ WqW`H---/   %yi-- %y$!@@@@ 1I$I$1 @`&%)X ȄE)@!!@%)b  1%)UUU+-'EyUU&?ba_?EyH___vb; `8WW_I$mH8UUI$@8UI@0*жmmP8) IHP@nW Il`H [r!`%yP)]E`5 &fi 4 f$q*"I4 EyU(߶$ EU+o$ E*+߶Afտ+!i6 /(rIђ * 1+v ې$*?U3R$@"EyPPP4IE 4/i%IDZ41`%3IDE41؀mۖ%43H %43I$ $%43II%43H$%43I$H%4/I(HDZǩ4/ITj%DZǩ/(4$L$DZEVVV4/Pm&DZǩ*4/DZǩ 41K,%41I$%3H DZE@-H$I$ETUUU,`E,H$I$ETVUUI$I$hI$I$hI$I$hI$I$hI$I$hH$@ E%y b"2 Eyq rƐ%q9V\x` 99 I$I$B$! H& 91  I$91/ 9f1@ Iڔ9b 91** @0914 1p` əTiQ9%+ ,191jz XI9e)* m91 N2'91!A$I11 [:l91~Id&1e) AB1멥 I$K>9e)ɐd1E) * M&C-91_^zI$I$11? :91 - I$H&91I$I$)I) I$)I)I$`$1f1 I11 **II$)I)I$I$)I)I$I)I) m&[91 I$11 *Il01E)>I$I$)I)I$I$g9*$)$81UI$I$80I @81e X@-/ qRT %qX-  qNE%qf%y?+@$I$hI$I$hH$HpH$I$h؉fE5p$N$fE\WWUI$I$h6l۶-Efq $I$EY@$Ip1؀8fE ppp$I$fE\UUUI$I$hI I$hIĶafE?'N$fEp\WU$C"(E%yꪈ PEy)tTPP 91z c9E)_I$L$1E)UUUVI$I$e)E)UUU pN99E)* mٖl91/ I$@ 91I$I$g9*I$I$g9* $I$)I)$C 11LB 11WI$I$)I) $I$)I)I$)I)@1e)I$L&1f1 I$11 **-&1$!X1E) l1E) I$I)I)$C11ۢm1E)I$jՆ1E)UW\p0E)pxOI1 %Pm11I$I$9F1H 1E)JM1$!&9F19F1 I$L091  $I$91 @91 @$:1 II:1 $B$! H$91I$I$g9* A$I11 I$9F1I$I$)I) I$91 s&@9e)~ꨂk1E)t": HE)X`m۶mE)  1E)U`oۆ1E) *$HJ1e)I$I$g9*I$I$g9*11I$@ 11I$I$11? *51%)`PT1%) %I$I$g9* 9P1%)p`I1%) 5% @ 11I$I$11I$I$11/11?I$I$g9*I$I$g9*I$I$g9*I$I$g9*1E)i۶@ 1e)I$91e) *I$I$9!I$1e) 1e) LB1!ֺ $I$I1e)I$ $)I)I$I$)I)I$)I)I&H11I$I211 $1111*I$I$)I)I 9F1 $H$)I)I$I$)I)I$I$)I) $I$)I)h:`۶m11d&11_\I 11յI$I$11*I$11 11*11`I-1E)vbې1E)Ib' 1E)_vB" 1!_ꪨI$ e)!U^m6mmE)jI$I!bՕ7I$I$E)I$I$$!!$I$E)! UUnI$e)! U0퐴e)! f1E) $I$1E)I$9 $91e)I$I$'9#d1E)I$1E)ꪪI$I1E)I$I$f1e)I$I$f1e) 1E)C$EJ1$!bꪪ` I1!-@f1hٺm۰m1E)骪$H$I1$!II1E)*I$@$9!I$I$'9# 1e)1E)I$I$9$I"(8f1UUI$I$80I$IP8UU Ii8 ɟ fP ) 0i- %a@ff1\WVU% I1$!($ @21E) C1E)Im1E)U @1E)*N1&I 1e)I$I$9۶!m1E)jjkѤME)(*$!@1E)$@21E)! 1E)I $1E)I$1E)I$1E)ں91zHK1$!I$I$1E) ()8e)I$I@%(ItIP@%%--fX + [%y 5UUI$I$9I$I$9X `f1$!1E)H$1E) f1E)I$e)E)**@$I$1"b(Q e)I$He)%)**I$@!Ie)%)e)%)I$I$@!0e)$!Xe)&$I$e)E) I$I2e)E)z$)(h5ۺmE)X`!@E) I$Ie)E)UUU I$!f1E)UUI&1E)UW݆M$1E)WU 0I$1E)UUUH$I1I$e)E)UUIe)E)UI$Ie)E)b"1e)P``e)b  @! I$e)E)@$I$e)E)I$Ie)E)۶m e)!@(tIE).e)E)I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!@$e)E)@$I$e)E)I$I$e)E)*I$ e)E)*IH$e)E) H$I$1"I$I$1"I$I$e)E)I$I$e)E)I$I$1 @$)(@$I$1I$ @1E)UU $1E)ZU C&!e)E)p_}I$ 1 )(I$I$)(@&X4E)bx` IE)a-- I$I$)($)(@$I$1I$I1I)(I$I$)($@ )(I$I$1I$I1 H$E)!I$I$E)$!0%)`IE) /H$I$1I$I$1  @$1H$I$E)$!$H$E)!I$I$$!! I$H$$! I$I$! * IE)!II1 @$)(H$I$1 E)$E)!x$ E)!5I1 @$)(I$I$1I$I$1I$I$1@$I$1k5ۺaE)bX`!@E) R1y%) ))# N7w$q++,!ߐf ,P$(E)PP@@$E)!H$I$E)!_$@$$!I$I!*I!* I E)!I$I$1I$I$E)$!I$I$1I$I$1I$I$1@$E)!E)$!`E)ZE)!I$I$1I$I$1 &E)z$I!$!  I%) I$I$1I$I$1I$I$E)$!I$I$HE)UUUI$I$HE)UI$I$H@I$I$PHI$AXH IvY iP - %yX {%qH*?+# m4$q ,4 E*1!irܶ *3)qR$+4/iJDZ*43IDZ*44I$I$%4 DZE@@4 DZE4 DZE@4@$~)?O$%)|WUm~$9WE)!I$I$1 $%)$!I$Ie) E)$!I$I$1I$I$1 1H$I$$!!I$I%)!E)!$@$E)!z~H !ahСÊE) H$I$$!!I$IE)! E)!H$I$$!!I$I$$!!z* I$I$$! I$I$e)I$I$e)I$I$e)I$I$$!!II$$! H$I$e)I$I$e)I$I$e)I$I$$!!I$I$$!!*I$I$e)I$I$e)I$I$!!I @$$!!I$I$$!!T^zI$I$E)I$I$E)@ A$!I$I$E(CI$!I$I!* 0!UUU!H  I$IPH+IiP-w/E`/+)qR E+ 3&1N + 41ِ0DZ* 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4P%DZEPP4DZE44I$I$%4H$,DZETT@`I$I$hI$I$hI$I$h@$@$E%y #:Ey%q"?ohf`__O'HEPW_I$. HEPUUIEPUUIEHUUIEHU IҶEHUIҶEHUIҶ EHUӶ$ EHU߶EHUI$)EHUr$fP*) ON4 iժ ,ٚ 8j+I )UI±JEy$)U "b h)UMlH dB&H0I$۶ P8UU1)[mk;UUU+;֧fz 3X fi~S# EyXOb$ EXU%9 E`U }"mKqH^IҶfPUI$)fPU  @XU IfaU IfiU qK$ %yi# $%yUUU, I$Ey UU,$I!$E U-  %y 1+]ۧW-UW3+#pDZVT 3+/ѐhDZU 3+@DZUU{1,$I-DZUU~4,I$DZ UU4,0$DZU4/TDZǩ/41 0%41I$%41ɖll%33I$I$%43I$H%43%43 %43@%43 %4/M" DZǩ4/m%PIDZǩ 3/I$I0DZǩ4/I$DZǩ+4/TDZǩ/4$@$DZE@PPT,IIE5,0R"'E@`P\I$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h[lE%yꪪ t"; %yEah ذ 9%q9UVVX I$91 @ 9e)@@M$1   9%) ) I$I$BD! I$I$B$! I$I$BD! L$`091 !I$91   91ꪪ!1E).  91** D91 I$L$91 II$91X5 `1e) II$9E)/ #zA1XbI$I$1e)1e)* I$h&91UW^^ IdI$915U @091 I$I$g9*I$I$)I)A )I)I$H$11 1f1 *I )I)@$9F1 H$91L$`&11 I$11/I$I$)I)I$I$)I)H$I$81I$I$@! ivmH8// w7eiH/ pN %yi-- 1iE%y#hI$Ih $IEfYP $EfYU$E9U m$E9_U жI$E9UUi'ofi9UUU $I$fY1UUUqfi9UU $aFI$E%y톶mEEy$I!hI$#fEU}M!EI䇙EsUUUI$I hD&dB2E%y-h%y1@@z$1b\V Fi9b t9 I9E)^zI$I$e)E)UUUTI$I$e)E)UUU pn99E)* 91 I$@ 91I$I$)I)ز=1!@P d15I$H$)I)I$I$g9*I$I$)I)I$I$)I) I$)I)@1e)I$H 11k1$!X&P1 @DIE)bտ@ 1a(11$9F1-ɦ1E)ࠀ# 1!~!@E) KI$1E)U`ۦ1E)*@ 1$!IX1$!&A$I$)I) 9F1 $I$9F1I$@ )I)I$I$g9* $@ 91  B$! I$I$9F1  :1 `0 91ꪪI$I$g9* I$g9*H9F1I$H$)I) !I$91 D91^S۪ ͦ1E)IB&e)E)UX@I$I$1!I$e)E)5UU@R$1E) D 11E) /I$@)I)I$I$g9*I$I$g9*H$11#ɒI1E)p I1%)5 11 hآ%1@P1I$I$g9*I$I$)I)I$11I$I$11I$11/11I$I$g9*I$I$g9*I$I$g9*@$@ 11PTP@MҮ1E) I$h 1E) I$9!I$H1E)(I$I$1E)I$1e) 1e) I$I$g9*II$)I)I$I$)I)I$I$)I)I$)I)$2$I11I$H 11 I11 **  IL$1f1(1f1I$I$)I)I$I$)I)I$I$)I)I$I$)I)I$I$)I)I$I$)I)IB&@11I$H11I$I$9  m11@0p111 I$I$g9*h1E)Cڀ 1E)IB$ 1E)m1$!ꪠI&؊me)!UI$I0E)!UUI$I$$!!I$I$d!d I$I$d!d I$I$E)!5UUUېdI$E)!5UUmI$e)!Uۖ$e)!@$e)E) 1E)@$ɐ1E)I$9$'9#H$1E)ꪪI1E)@1E)ꪪ!I I1E)LB$I1E)I$I$1e)I$I$f1e) 9 I1" 1E)I$1E)*͒#f1`IDe).55$$1E)@ زmH1I$ H8UU6kwd`H//qR` EX/+ %1R`NE/++10C>Ejz1<~$E)pp^W @!I$I$9 9`$f1xXwf1+ 5 I$I$9I$I$9I$I$9I$I$9I$I$9I$I$f1e)e)$!I$I$9@$@ @!I$I1"1E)I$I$f1e)ꪪ$C$ 1E)b$P e)ap\pTdf1b % I$I$1E)$@$He)$I$B"P@*JJr%q@+55!] a ,m;"!fE)j@@$@ @! I1"@$@e)E)I$Ie)E) * I$@e)%) 1E)I1E)I$I$@!I$I$9$9$@!I$@!$I$@! I$Ie)E)5h$E)b`XVI$IE)b5 $I$1I$I1Ii1E)UUկI݆1E)U A`$1E)^U&I$1E)^UU`$I$e)$! I$A1I$ e)E)UU5 e)E)/I$Ie)E)I@! @!I$I$@!$@$e)%)$I$e)%)H$I$e)E)I$Ie)%) Ie)%)9I$I$@! e)I$I$@!I$I$@!I$I$9 @!@$e)%)@$I$e)E)I$Ie)%)*I$ e)E) I$H$e)E)I$I$1"I$I$e)E)I$I$e)E)I$I$e)E)I$I$e)E)@$e)E)^W@$I$1I$ e)E)UU5 A$1E)ZU$I$e)E)pWUUI$I1 )(I$I$)(I$I$)(I$I$)(E) E)!$I$1I$I$1I)(1 I$I$)(I$I$)(@$H$1I$I$1I$I$1I$I$E)$!*I E)! C,ضmE)p@I E)b? I 1$H$1$e)!@$I$E)!z_W_!b$!p$I!E)*)E)!*I 1$I$1I$I$1 E)@I$IE)U,d2$IE)!zIE)!5 I$I$)(@$)(I$I$1 I$1I$I$1I$I$1$A$1$E)p\I$a=5pSwe` /-)` SE +-,&#HAࠂ)I$H$$!UUTTI$I$E)a@ !* I$I$!*IE)!I$I$E)$!I$I$1I$I$1$%)`P E)b)% E)$!$I$A$!I$I$1I$I$E)$!I$I$E)$! E)!$I$E)!dB&dB$!`P`I %)b%5 I$I$1I$I$1I$I$H%)UUI$I$H%)UI$I$Q!@I$IPHk I$ IXHm- `H.WEX+}. fiս &m6 %y*,r$fկ*1"v4 3)q[R$*4/iJDZ 43 DZ 44I$I$%44I$I$%44I$I$%4+ DZ4'$!^4"?O$xWUHI$)b,%) I$`E)aWָ !%)  $1I$I$e) E)$!I$I$1I$I$1I$I$1@$H$e)I$I$$!!$@E)  @$E)!zzI$I$$!!UUUI!0E)!5 ch۶m6E)jH$I$!A($@!@%)* @$I$$! I$I$$! *I$I$$! I$I$e)I$I$e)I$I$e)I$I$$!!*I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!I$I$$!!*I$I$$!!I$I$e)I$I$e)I e)H$I$$!! @$!ap !a  $!I$I$ AI$ $! I$I$E)a $!*N1P!5 MۦkP@  PH  /%X/ d*>fi+KB1 H %y 4/i PDZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4)DZ@@4IIEU-ImEU/ '@E1%Iܖ$ DZտ*/J' EyTT,iHEy)O±AfW%C$mfU#m)I)Fh" # HI%y"Cf_ꪨ mHfU&߶fU %I `fU"Ibm E"In fUU֨ n f!+f + +/&`ri*?,ifp 9%qy #bqX^xNB" @`PWIҶ6`PU IliPU3(Om hDZ/C Hf~)cc HE#c @EW#*aEU"vE fտ*% I iU(Rmf* +MRD -#IB1%yIDDZ+3 CDZ~1m"iHEZ/IB&0EUZ``/I$ɟEUUU-I$IEUUU`I$I$h-I$E-UU-` I$E U/IE 3%@ndDZ3)HDZ U3,]nDZ[3,I?XaDZU1,vl'[DZ__3,ߐI$DZ+UW4, ɗ$DZ U4,DZ-43H%44I$I$%43H$%43@$I%43  %43 %44I$I$%43H %41ll%3/dDZǩ4)$Ir DZ@3H$I$ETWUU,BFɧE %H$I$ETWUUI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h@ h @E%y~z #1 %q9`` Iض Ea9UUUT I$I$B$! M^9ָI$I$)I) 91 I$I$BD! I$I$B$! 91 I$L&91  91 / I$H91 B$! I$BD! b991I$I$g9*C$@1f1M&X,1E) 1ɛB1U r>#Bf1^^zII$1E) * ۺN9E)*I$I$11 ) I91 % h`9%)` ID1$!U'1p\TI1 %I$I$11*!1e)I$I)I) I$)I)I$@)I)I$L&11! 1f1 * @$81I$I$80I @8/ɝ %Y@ q.if9zD$$%y1UE9WU@I$E1UU `kfi9UUUcmfi9PUUU I$L91 @ 91 I$I$B$! I$I$B$! I$I$B$! `091I$I$)I)tj1%q9 %0I-%yi  m%yi +kۿF%y51#$fEM |PI$Ih$H$hh[-ۊE%yzz" Ey$ \  $I9E)   1M91h4 @1E)\pI$I$e)E)UUUTI$I$1mx1E) 5 0 91 + $# 91۲m1!@ q1!%  &L&1!XVX`1`1! $111f1 I$I$)I)$)R")1E)@ m&1 z1b $I$11I$I1I1aU( $I1!H$I$)I)I$I$)I)I&[a11U\v2ے-Ȇ1E)UTPI$I$1tI$1E)-UUP o1E) 1f1 @9F1  9F1 )1!@ $@$91 LB&$C91I$I$g9* I$91 @ B$!  B$! I$H$:1 @91ꪪ I$` 91I$I$g9* )I)I$@ )I)I$I$)I) ` 91 M2'[ l9E)tB2$ 1E)^zI$I&e)E)UUUPI$I$e)E)UUU@ e)E)KI$1E) 6`m11I$I$g9*I$I$g9*11IȐ 11I$I$11?H%1T1I$I$g9*I$I$g9*I$I$)I)1f1I$@11I$I$9 I$11 :11I$I$)I)I$I$g9*I$I$g9*$11@ 9 m&m341e)$I$9I$9 1e)I$11%U11/I$I$g9*I$I$g9*I$I$)I)I$I$)I)$I$)I)1f1I$L1e)   11 *  1$!1f1 @$I$)I)I$$)I)I$I$)I)I$I$)I) $I$)I)I$I$)I)@11Z"-$1P@IpH1I$I$9!$I$11UUUI$11U11-@11PM51e)cۢ 1E)Iڶm1E) I %1!zjXI%ۖae)!_I$`e)!UWxI$I&E)!UUUpI$I$d!d I$I$d!d I$I$d!d I$I$d!d $I$E)!uUUېlI$e)! I$e)!?$e)!e)$! I$21$!j If1HI$1E)@ I$9I $9@$@$1e)$)B(f1p1Ie)b %%I 9IȐ I1E)I$I$9Hf1 0 $@e)U$IH@*miXHխɛ%yP+# {/W q+ /4 f+/Z-)$f1@pPc۶mfI1TUUUI$H1E),%f1a`IIe)a%/@1! 됤1E)>IB$ 1E) P41bp` IX1a -%,1E)` 1e)$I$1e)@$I$1e)I$I1e) 1e)I$I$'9#@̆1b` I1a5ՕI1e)I$I$'9#@$H$9@ @4Hf1$B!P@J//R%yH55++& wE- -/" 2%f1@@@PI$I$f1e)I$I$1E)I$I$9I$I$9 9 $1E)$H$1E)I$@! A$Ie)E)$e)E)`Z$e)E){] I$e)E)eUUH$I$e)E)UUUI$I$1tB:1bZHJ If1 I 01E)UVUI$1E)^UUh$I$1E)^UUUI$I1I$e)E)U]Ie)E)UIe)E)I$I1"I@! @!$@!@$@!$I$1"H$I$1"I$I1E)I$1E)I1E)I$I$9I$I$9I$I$9I$I$9I$I$9I$I$@!$@! I$e)E)H$I$e)E) I$Ie)E)I$I$e)E) $I$e)E)I1"I$I$e)E)$H%E)bp\PIE)b %  e)E) @ H$e)E) @TUIe)$!**I$$e)E)UW>I@$e)E)PU@$I$e)E)PUUUI$I1I1I$I$)(E) I$I$)(I$I$)( )($I$1I$I$1I$ 1 1 h$E)b8I$I$)(I$I$)(I$I$)( H$1I$I$1I$I1 $)(@$I$1I$I1I @$1 I$I2E)!$H$e) I$I$$!! !b@I$I!bULB&E)^zIlٶE)% I$)(@$I$1I$I$1I$I$1I$I$1I$I1)(I$I$)( )(I$I$1I$I$1I$I$1II$1@ )(I$I$1E)@IE)b% qx%) ))" N7wfq +/,@ N -,P$ !PP@@I$I$$!!UU%I$IE)! E)!I$I$E)$!I$I$E)$!I$I$1I$I$1@$L$%)bpPTUI!$! %)$!ꪪL$L$!0E) E)!I$I$1$E)$!I$IE)$!E)!I$I$1H%)UUI$I$H%)I$I$!`AI$ PH Iڶm XH I. iPU n %yP+}. f`+ ! kw& %q-rTf 1"qn4*4,n4 41ImDZ 43 DZ 44I$I$%44I$I$%44I$I$%4 DZEq@4@$$)_4P'I$%)^UU@$H$E)$!I$IE)$!L&E)ZxI!@%)%- I$I$1$E)$!$I$e)I1I$I$1I$I$1I$I$1$H$e)I$I$e)$I2%)jbI$I%)a'H$I$$!!I "E)!5`$L$E)!X|^I$I$!! L%)($H$E)!I$I$e)I$I$$! I$I$e)I$I$$!!$!"I$I$$!!I$I$$!!* I$e)H$I$e)I$I$e)I$I$$! I$I$$!!* @$!$! I$I$e)I e)@$H$$! I$I$$!!*LB&B$!aX`I !A I$I$AI I$! I$I$E)aI$ !I$I8ח7@H0cіhBYHz }{7iH?/+yySP fi-+ -qN f+3(I0 43 DZ 44I$I$%44I$I$%4)H8DZTT44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4% DZ@/%mI$-%$)I$,%$I,#i; /#m&g;ZY1"-) DZf*1"I$ DZf3dCDZFz3I_E1%IBIDZU/!IiU/!1)I1)I"I1)I"I_1(O"IU1%@$DZEXPP1E3)M$U3,IҶDZU1(# z,3hE~ꠀ! OHqW ObfiUIbfiU Ib$) %qU3-mM$DZ3-[! K1+:U/+IBU1(CR _**1%I,3%N>$DZW3&I DZU3& @DZ/(I/)$I$ǩ-UUU1)PI$籧UU3! IvhDZ4"mDZF`4@0IE3,ImDZ3ZMDZfz/IIEU-I$EUU-I$IhEUUU%$I$EUUU,KI$E UU,اE 1%ІmDZ1)I$DZU3)j+ITDZ3,I$ۊmDZUW1,I$I,DZUUz4,/ɓ<DZuu4)@aDZ5U4,DZ 43 %43$@$%43 I$%43H$H%43@$%43%43H%4(@%DZE@@PP)IdEՕ5%)$X$E`PXTI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hH$@ E%y b"2 Eyq J"%%q9TX` I$I$B$! I$I$B$! H&91   Ʉ91/+ I$I$BD! I$I$B$! I$I$BD! @091 I1  G9E) I$I$B$! I$I$B$! !A) I$`891I$I$g9* Z6I91~I$K&1E) X9e) ? N$h99%)) I1E) dB&$11I$I$9  91 -5 I9%)P,1pI$I1b H2 1e)H$11 $ $1f1I$I)I)9F1 [ l91$I)81UUUH$I$81Iɕp985%  8iI1*UUU!$I$11-WUUa) 91ﭵI$H$11!I$1f1 * I$I9F1 $@91 $91 091ꪪI$I$)I)  91 I$I$B$! 91 I$I$B$! L&91  $I$fI1UU0w;`E9* `J/w%qX / 7qF$q///IF%y A$hI$I$hI$I$hH$@ E%y -%y9@@ I$I$B$! I$BD! #9,91j"5 i1E)X`I$I$e)E)UUUT I$e)E)5Umx1E) 5 V)91+ $Ѓ'1p\0! 1 P1E)p!H$I1f1L&@B01f1I$I$1e)1e)I$H$)I)|=`1\p1b% IK1  I$11 *11I$I$)I)11I$I)I)9F1X,m11`@k5 1E)WXI$I$e)E)UUUTdI1E)5UUNvx1E) +=9F1I$I$9F1R'X01\P@DI1  $A!91 H2$I91ꪪ I$I$91 !I$91 91 H$:1  B$! I$I$B$! I&91I$I$g9*I$)I)H 9F1I$H$)I) I$91 6@9e)mj 1E)jI$@e)E)UVPI$I$1!I$1E)UUvn1E)*D 61e) *I$)I)I$I$g9*I$I$g9*H 11I$H 11 $I$11 11/I$I$g9*I$I$g9*I$I$)I),1!@4KϑĆ1.I$H 11I$I$11/ $11 I$I$g9*I$I$g9*11I$H11 11k *)1%)@0f17I$1E) m۶1E)/mi 11mk&1e)l1e) I$I$g9* $I$)I)I$I$)I) 1e) II1E)@ $)I)'{1^\JDa1! t$1! W r&1xz1 I$I$)I)I$I$)I)II)I)I$9F1 9F1 #51``Ix1b/5%I511UpI$kl11UU\I$I9! $I$11 I$11 1111L"& 1\PI1!M۶[ 1E)LB$ 1E)[lf1!Z I%e)!UpI$kme)!UUxI$I0E)!UUUI$I$d!d I$I$d!d I$I$d!d I$I$$!! $I$$!!`B&dB&!`P` IE) %@0db'e)zz!Ie)b-5e)E)e)E)%I$I$f1e)1e)$I$9H$I$9I$I$9I$I$9Hm۶Hf1I$IPHտWiP--yWfi-- (1u T f- + / $)a@/p$I$1\WUU1e) 1E)*Ć1!L$I„E)a>>ٶm1E)Iڤm f1!ח*1E)`1!P 1)#'s:1\^xKdIf1 I$I$9I$I$1e)I$1e) 1e)1e) 1E)j!f1b& I$1e)$I$1e)I$I$9@@Hf1 IvXH///yw7qEX-/++qy.e E+/S2%R$e)PPPPI$I$f1e) e)%)H$e)E) $I2e)E)|e)E)I$e)$! $@$e)E)X^]Ie)$! *I$IE)$!( M&m1E)WU}Im1E)UխI1E)UWLd$e)$!(@$2e)$! e)E)H$I1I$He)E)UU(۶@&E)xP E)b-I$Ie)E) I$@!I9I$I$9I$I$@!$@!$I$1"I$I$1"I$I1E)I1E) 1E)I$I$9$f1$!I$I$9I$I$9I$I$9I$I$9I$I$9$@!$I$1"I$I1"I$ e)%)$0e)(I$I$@!H$@!$I$e)E)PI$I$e)E) E) @ E)@ ٰm[E)!H$I$1I$ e)$!  A$e)E)%pW@$I$e)E)PWUUI$I1I)(I$I$1 I$I$)($@E)@p`IIE)%%)I$I$)($H$E)bp\X E)b $I$ E)$!0+E)'I$I$1 E)!I$mE)UV PE)$)( $ɄE)!6I$I1I)(lh&E) ^ I!E)! I$1$I$1$E)!z`$I$%)b^WW!I$I$d!d I$IE)!UU/ E)! I$ 1 @$E) I$E)! )(I$I$1 `$E)bx\۶E) I$I$)(I$I$)(I$I$)(lmE) I$I$1I$I1I1I$@$1I$I$1I$I$1I$I$1I$I$E)$!`GN$X$!URwE`+-)`sE++,(c)I$H$$!UUTT E)!je) I$I$E)$!I$I$E)$!I$I$E)$!I$I$1L %)bV E)!I$I$E)$!I$I$E)$! 0@0%)`p` I$! %%I$I$1I$I$1I$I$1I$I$HE)UUI$I$H%)I$I$!`AI$ PH*Im XH MK `@}. EX m%7 fi#*%y =Ԇ%qp1 It%y 1%'GR)?41I DZ*43 DZ 44I$I$%44I$I$%44I$I$%4& DZ@4`$%)V4'I$%)`^UUI$I$1I$I$1@E)$!I$I$1I$I$1I$I$1 %)$!H$I$e)I E)$!I$I$1I$I$1I$I$1 @$e)I$I$e)I E)! E)!ꪪ $I! I$IE)!U5$&L$E)!bX^WI$I$!!?/E)! @$E)!I$I$$!!I$I$$!!* I$I$e)I$I$e)  $!@I$I!A./I$I$$!!*I$I$e)I$I$e)I$I$e)I$I$e)I$I$$!!I$I$$!! $!I$I$$!!I$Ie)$@$$! I$I$e)I$ $! * I$I$e) $! H I$!I$I$E)aI !*  ! IH%I$IH8UUU 9[WiH-/.EE`/*) nnO q[[[ 1  %q 41ɐ0DZ* 44I$I$%44I$I$%44I$I$%4/HDZǩ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4,DZ@4%]nIDZ1)IDZU1,,DZz1,DZ1-DZ1,s2'DZ__1,DZ34#=E`pp1@ @ǩE/,Iǩ1- DZ1-$L$DZ1/IDZǩ31I$I%31II%4@ DZEP4DZE31 %11I$I$%/,-$m6-(-H(,!l~, In۶ տ*,!Inժ,#m$/-Hǩ1,` ,DZz1H$J"rETTT1  E/-H$Hǩ3-II DZ+3-6k6DZ 3-tI4DZ3-0I$DZ3-閶DZ3-X tDZǩ3)L DZW 3%IрDZ4۶$H$DZETTT1mHDZE1)!IDZUUU3,XI$DZUU3)@DZU3,MRݖgDZW1)l&HDZWV1b"&EXX/I% IEUY,E)%I$I,)I$Ih-)I$R"$3)$I$DZ-UUW3)T$DZUU3, DZ~*?3,I'DZU_1,I-DZ~4,\IDZ54,DZ 43H%4P%DZEPP4DZE43 $%4/"!DZǩ3H$I$DZETTUU, 8!E B!H$I$ETUUUI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hdB2 EEy 3Z %yiࠀ =Dz9%q9UV\p I$I$B$! 91** L$`$91  91 / I$I$BD! I$I$BD!  9f1@@ O$}&9WW^xI$I$$!bUU ``9 I$I$B$! I$I$B$! 291 I$K&91  I$911 H1E)I$I$1E)* \ B1j멭 I$M?9E)J6X1E) .H&@011I$I$11? @#&s99$!pX^z)P1$! I$I$)I) A*)1E)@LIĆ1$!&  $11 591 I$1e)  :1 %P$81I$I$@ IH81x\VUv11 +L& 11V\ $I11%%dB2$11I$I$11 0Ӳ19$!jjI$1A. 1%)  $)9e)b h&!9e)@vN$1b( $̒S91`b /PId9a -55 I$I$B$! 91* I$`091Ő,H1 -5 pSqiH+/-uwFi wE%y*+hI$I$hI$I$hh[5ۊE%yz I$H%%y9UTTP I$I$B$! I$BD! t": 91^xb 51`!E) %$$Ie)E)?md1E) 5 p"9< 1bX` J@1b I$I$)I)I$I$)I)$&-1E)I$@ 11I$I$1e)1e)I$)I)=H1b``9`1a-- I$`01e)II$11**1f1 Xl+21!`I$1 U$I1%)I$I$)I)k۶11\k"Հ h1E)\pI$ e)E)$AL$1E)UUUmt1E))P11 11@I$)I) I$)I)9F1 C$I91ꪪ I$HB$91  I$91 @!91 I$I$B$! I$I$B$! I$I$B$! ` 91ꪪI$H$)I) $I$g9*@ 9F1I$H )I)  I$91 X91zꫯ IR'9E)L21E)W_I$L&e)E)UUW\I$I$e)E)UUUmI1E)PNm[;1E) _@ 1I$I$g9*I$I$g9*I$I$)I)I$11I$I$9 I$11 11I$I$)I)1 I31b.I$I$)I)H 11I$H$11 $I$11  11 ?I$I$)I)I$I$)I) 11/5 1 `IQ1b? H,1E)I$K1E) {m91UUk,m1e)I$k1e)n1e) $$11WI$I$g9*&p<1pxK1a - I$I)I)[mۆm11I I$)I)NBR% 1!V T#H1 b!AJ$I1E)$11$11II$)I)$9F1@$9F11E)@q1)I$9F1 9F111I$11$C2 11zz 9  9  11 R&1`X$I 1 k1e)LB 1E)I$$1E)I$I1E)dB2$ 1E)d1$!IҶf1!UI$k e)!U_I$dE)!UWzI$I$E)!UU}I$I$$!!?$!@$@$!`pII$!))%I$C2E)$I$E)b *@&L$E)!z~퐴I$E)!-m]&e) mI$e)!$0e)! `$He)I$I$H@IiXH/w7EX/%qRT %y/+,!y ݰ+* ,$p$f1pP\WH$@ 1e) 1e) 0 @1!`I$If1A*NDI@1$!"I$I$9I$I$91e)I$I$'9#@$H$1e)f1$!h1E)II1e)A1e)I1e)$@ 1e)I$I1e)I$I$9II$9A $9I$H$1E)I$ $1E)H$H$H1iXH---11qEa----+N/Rf+-/@$J$E)PTTT$IE)! ** C&dB2E)!IIE)! ** dB&$e)E)^^p !e)E)% I„$f1E)UWW$CH21E)}z_  f1E)&M$1E)_WUH2a01E)]u $IE)! I$@e)$! I e)$!e)%)!I$Ie)E) I$Ie)E)I@!b8e)a`@ e)b- MIde)!&7 9$@!$I$1"A$I1"I$ 1E)$81hx e)5H$e)! @1E)I$I$9I$I$9C'N'e)bX^1e) I$I$9$9$@!@$I$1"I$I1"$ِ'e)`X e) 5 e)!@I$IE)b$Ie)!@$I$1"`$L&E)!\^ֶe)! P%"CE)b`pIdIE)b%5 I„$e)E)U  `$e)E)XU$I$e)E)pWUUI$I1I)(I$I$1 I$I$1 I$I$1 ,E)`0ٖ$E)!E)! lX5E)`[6E)b` %!L$E)*VWZ,E)IIE).I$I$)(I$I$)( )($H$1 E)!BJ I$I$b(@E)!$)(kE)!^!$IE)! H$I$E)$! H$E)!^WI$I$$!!I!bI$I$!!/I E)!$I$%) VU0E) )([%[5E)`p ItE)a -- @$I$1&L$E) Z^M$ɒE)bXj  E)a I$I$1 I$I$)($X-E)b`p I%)b)%5 I$I1 )($)(H$I$1I$I$1I$I$1 E)!$I$E)!I$I$$!! Rqq! )%" R7fi +/, f -,p')%)XXh@@&H$E)axx  E) -- I$I$1I$I$E)$!I$I$E)$!I$I$1`$H$$!b`X\P! %)b %5I$I$E)$!I$I$E)$!E)!jI@$!)I$I$1I$I$H%)UUI$I$H%)I$I$Q!@I$ PH I۶`H+ w iP+}. EX OҒ4 fPW*# wYN $%y P- %M%y*1.M$o3&%B$EPPP-<ɓ$EUUU4FlaE4,9DZ 544I$I$%4$DZET4)$DZP4ld$ZU4ز$I$ǹ%)hVUUI$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1@$1I E)$!I$I$1I$I$1I$I$1$1I$I$e)$I$! E)$!@$I$%)!z^WI$IE)!Օ5!B0`$E)!xVI$I$$!!* IE)! $E)!I$I$$!!I$I$!  $1I$I$e)I$I$e)I$I$e) $!&I$! @$1I$I$e)I$I$e)I$I$$!!I$I$$!!I$I$e)I$I$e)I$I$e)  $$! I$I$$! I$I$! * @$H$e)I$I$$!!h@$H$!I$I$!zI$I!5$!  A$@H!5% I$I$!`AIiXH/+ yW6%qP-/++xbEy /N. //+4-!e @DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4, DZ@4DZEy4=DZEy 44I$I$%4P%DZEPP4DZE44I$I$%44I$I$%44I$I$%4,<DZ|pp-, $1,DZ-,I /,mIǩ**??1,sٛDZ_-,/-IIǩ****1/$H$DZǩ1/I$I DZǩ1-0CDZ1,II DZտ1-!!2DZ1-$DZ1-$DZ1-DZ3/$DZǩ3-mؖ$DZ3-[XۤDZǩ1,s2's DZ___1+v DZU]3,o>ݳ DZ]Y[*1,ɖ؉mDZU1,۲lDZZ-,I$1/DZǩ1,ٳ=DZz1, 6DZ1-$ $DZ1/I$ DZǩ1/@$H$DZǩ1-$I$DZǩ1,-۲-DZ1,l DZ1- I`&DZ/-Iǩ**/-$Hǩ3/$I$DZǩ*4%X"4IDZX 4)$vDZ!?3-[`mDZ3,IDZU3)N" DZUW~-@IE/)䐄I$ǩ/UV1)RIDZU1)$ДDZ1,Im`DZU1%m˴@DZ-%$E! *-)$%/)6rǩ /)Lm0ǩW1,I `DZ4)$PM$DZWV3%4$gDZ3,ˏmDZ/3,I$mDZUU_3,'DZ/}_4X"MEP40 DZE43I$%4(%DZE@@P)IɐE%,"$Z$E`PXTI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h h#ђE%y~ c %q9p I$I$q9UUW\ 9b@ @9b I$I$91 j$9V H$I$BD! <9p @9b I Y1  9E) * 49b` 9b I$BD! `0@91I$I$g9*  91ﯿv"9ɦ1e) yI9f1%U 0\B1ZzkI$I1E) ِn11 I$`011 ۶m1E) m3,a91 I$I$91I I$)I)$1a*pRI$1( 1%)I1e) 81UUH$I$81ID8f1@`P!C!11H$H$9! 11 %`$`&11\TXXɐdI91UU h%]Ӯ919!N:@1h` II9a// R&J=1`X\p  p 9  Ip@9a׾(" $I9E)i*  9  I$I$B$! I$I$B$! 91 "iH@15UwX@- Ro%qX+-- NO%y%q  E%yI$I$hI$I$hI$I$hH$@ E%y ̀h%y9P@@ H9 B$! H$91 * `09bpI`1I$I$)(I$I$e)E)? nɖd9E)* ۶mٖ91 + I$[,91I$I$)I)Z"'#!1E)p|p@ Ć1 *I$DB 1e)I$I$1f1*@$1f1I$I$)I)II$)I)9F1$2 1f1I$I$9!X$I$1P\_I01/I$I$)I)%H$1E) I1E)2۶m11@tB2$ Q1E)~ I$v ۆ1E)UUW\[$I$E)b\W\J91 Id115I$I$9F1@ 9F1I$I$)I)m11  $I$9F1 I$dB"91 I$I$91 @ 91 I$I$B$!  @ B$!I$I$9F1 $B91ꪪ I$@ 91I$I$g9* $)I)I$9F1I$I$)I)  91ꫯ sՀ&@9e)ꠂӶj 1E)zI$` e)E)UU\@I$I$1$E)@pɐd vf15-+D 11E) > I$$91I$I$g9*I$I$g9*@11I$@11I$I$11/I$11.18I$I$)I)I$I$)I)I$I$)I)I$I$)I)I$11I$I$11$I$11 $11 I$I$g9*I$I$g9*I$I$g9*I$I$g9*11L11WI$I$11 $LB&11WW_ $11UH$@ 9!ɐI11U2#E1%)@(01E)I$I$g9*I$I$g9*I$I$)I)I$I$)I)I$I$)I)H1f1(H$11I$I$11I$I11**I$I$g9*$A$I1f1 H$A )I)I$I$)I)I$I)I)9F1I$@$)I)I$I$)I)I$I$)I)11I 11I$@11J"%H1TP@ni1 &11u]I$11U$!11 dB&`B211__XI$I'9#H1e)I$1e)I$@1E)I$I 1E)1E)i;1!Ie)!Cڀe)jI6 e)mӶke)jI IE)UI$I$$! I  E)!H$I$E)!I$IE)! I$E)!H$!$I$C"P8* is9i@+-%ysd fi-+ )1uf++/ $e)`P$I$1" 1E)H$I$9$I$9$I1E).$I$9I$I$f1e)$A$C&1E)@I$1E)@I$1E)HI$1E) 1E)I$I$1e)I$1E) $C21E)jjvIڤ1! 1E) @$@!I$1"1E)I$I$@!@$@ @! I@!H$H$Hf161`H//1S7qfi----('qf)))++H$H$E)TTTU Ie)$!  &L$e)! e)$! *`$I$e)$!0Ie)E)EI$Ie)$!(a2$ e)E)]mI e)$!* LB&e)E)VR!Ie)E)!e)E) I$I$1E)H1E)9I$I$f1e)I$I$f1e)I$I$9I$I$9I$I$@! e)! I$ 1E)I$ 1E)I1E)$f1bpe)b %f1!`1`f1 H1E)Vڪ1E)I$I$9I$I$9@le)!pH$@!$I$1"I$I1"@! @!I$I$@!ɒIe)` $@e)$I$1"I$I$1"I$I$1"$I$$e)E)`U`$I$e)$!I$I1I1!@2d$e)E) @_WH$I$e)E)TUUUI$ Ie)E)UU5I$I$e)E)I$I$e)E)I$I$1 I$I$1 I$I$1 I$I$e)E)*@,E)pI$I E)_WZ@)PE) % X4E)P`Ie)b5HdlE)T0@E)!I$I$)(I$I$)( H$1H$I$1I$I1 )(M&M&E)VXVX E) tE)b$I$1$E)!^@$I$E)!UI$I$d!d I$I$d!d @$!bT $IE)!/I)(ME)8I$I$)(I$I$)(E)!I$I$$!bTUT 0E)bklE)\0E) I$I$)(I$I$)(@$)(H$I$1ٶ0E) )( H$)(H$I$1I$I$1I$I$1$E)!@$I$E)!I$I$e)I$I$d!d ɐDI$X!UpWE`/-)`sE++,(l)I$H$%)UUTTE)!I$I$E)$!I$I$E)$!I$I$E)$!I$I$1@ E)bpI!E)% I$I$1I$I$1I$I$1H%)UUI$I$HE)I$IPHI!IPH*Il6I `H* . qP }. EX  }- fi )k E ,Yr f"1 S2%.EyZR`4HEy 41I DZ*4%DZ`3&( @DZfk@3DI䧩E1)mնjDZUWY4&`1DZc,jp$f%)XU,@$I$%)PUUU %)-I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1 %)$!H$I$e)$I"$@E)!oI$LE)aW( I$!I$I%)!UW 2D&E)!KrI$I$d!d I $!!  E)!H$I$E)!^^W_I$I$!! %%  1H$I$e)I$I$e)I$I$e)I$I$e)I e)$1H$I$e)I$I$e)I$I$e)I$I$$!! I$I$$! I$I$e)I$I$e)I %)$!H$I$$!!I$I$!!*  $I$$!!I$I$$!!$@$$!I$I$E(CI$I$ ZjI$!5 I$IH!UU%I$I$H9I PH**  ɛwqP/{{Ei+ ?9wwaE--//D(4M$E&U44I$I$%44I$I$%43%44I$I$%44I$I$%44I$I$%4% DZ@@4IDZE%44I$I$%44I$I$%4PHDZEP4 @DZE*44I$I$%44I$I$%44I$I$%4/ DZǩ3,'폶DZ__/ dE?/,mǩ/,Iж@ ǩ?1-$a&DZ1-$!DZ1-L$L2DZ/- ǩ /-Iǩ***1/I$ DZǩ11I$I$%3-k6ۺ DZ*1-I$$ DZ1-I$$ DZ1-I$DZ1-$C2DZ1-I$$ DZ3-IDZ 3$DZET3,؆mؖmDZ3/dH&d0DZǩ1/ $DZǩ/-@$Iǩ1/ADZǩ1/$I$DZǩ1/I DZǩ1-0$IDZǩ1- $ADZ1/  DZǩ/-@$@ǩ*1-!!DZ1-$ DZǩ1- DZ3-kItDZ?3-i6زmDZ1- DZ1-$IDZ)H$I$EUUU3-Ivö%DZ1-IIDZ1/$IDZǩ3-K$DZ4I")E@@4F IDZE 3)NDZU3)N$ HDZUUW/%жm /)nI$ǩ UU3)ZaDZ?U3)m$PDZ_3)I$MDZUW\ /)ܖ$I0ǩUUt3)PIDZ*?U3)` @DZ| 54&1#<DZE*`pp/H@E3%I&iDZ4%DZ'4,IXmDZ3,O$M?DZWW|4)iDZ u4P&L䧱EPXV) E @%H$I$ETUUUI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hH$ E%y 1E%qꪪc5 m%q9Xp @,&9bP@ IL 1b h@9e)hI$b 1UV 09 x=@9\p  9a%   91 I$I$)I)h4*1bX` I 9b5  I$I$B$!  T9E)4 L&91I$I$g9* Xӵn91zm6X51e) /Af1 5 >@B1V^ZjII1E)**B!11I$I$11 ) I91/ k%2`91I$I$)I)J%"I1TP@IT$1b-I$I$1f1!1f1@$H$81I$I$@! II81PTTU II$91UUH0@11T`!A$$11-~V I!11読 9!@$$11/U M&]S,91I$I$9! 9 @ 9E) * H9!@ I :1 I$I$B$! L&91I 91 @91 I$I$B$! $9E)  91 KZ-@9 5 pSqiH+/`s%yi --mnE%yhI$I$hI$I$hh# E%yzI( fy$  $I$9F1I$I$9F1  91 * J"%H91VzK%`1E)^xI$I$e)E)@$)(  |9E) )%  BD! I$X91, ,1pII1U% 1E)I 1f1  111f1*I$I)I) J$10\W1 L&1e)@1 !I!1f1*I$I$)I)1E)I$I$)I)I$I$)I)$C$1f1P 1E)ࠀkX 1ZI$I$1I$1E)5U m1E)*9F1$`11@P@  11I$)I)I$I$9F1 LB&$B91 $I99!x  9 ? 91 B$! @$B$! H2d$91 LB&!91 I$I$91I$)I)@9F1I$H )I) !I$91 X91 I&Zl9E)M5ۊm1E)WZI$I&e)E)UUUPI$I$1I$e)E) U`Sۆ1E) Aw91꯽I$@)I)I$I$g9*I$I$)I)LB2I11"iI1$!@Iij f1bU(0 I1!I$I$)I)I$I$)I)I$I$)I)I$I$)I)I$I$)I)I$1f1I$I$11 $I$1f1  11 *I$I$g9*I$I$)I)I$I$)I)1@ I1b `11\I$`11UU\ I 9! I $115UvBےM1e)!$I$11UUTI$115U $11   11I11**$11I$I$)I)I$I$)I)I$I$)I) $A1f1I$@)I)L$I$1f1 $I$1e) I$1f111  $I$g9*I$I$)I)I$I)I)II$)I)I$I$)I)I$ )I)I$I$)I)I$I$)I)11$11{6m$1ap Ć1N$1(U II1!H$I$9!I$I '9#I$I$'9#I$I$'9#I$I$'9#I1e)I$9I$1E)ꪪI$I1E)$I(e)@I$e)b 5Mf1$!WIe) I$e) iӵe) IMH$!UI$I$H@v6`@o/+WP EH%+ &1RP E/+,0 @-`$I$f1XVUULBH1E)1E)I$I$9I$I9I$I 1e)I$I$9I$I1E)ꪪdB&$ 1E)I$$ 1E)I$$ 1E)I$$ 1E)I$ 1E)I$I$1E)I$I$9I$I$9Mv6l1$!&`0e)!1!//IH 1E)I$I$9I$I$9I$I$9I$A$9I$I$QA@TqiP= 1u7qfi---/,-)++I$Le)$!I!Ae)$!* L&e)$! e)! `e)E)Xf1E)I$I$1E)I$I$1E)I$I$1E)II$1E)ꪪI$I$1E)I$I$9I$I$f1e)I$I$f1e)I$I$@!I$I$@!I$I$@!I$I1E)I$I 1E)I$$1E)I$I$1E) I$1e) $1e)I$I$9"HHf1@K$ f1b% I$A$1e)I$I$9I$I$9I$I$1E)I$I$1E)1E)I$I1"I$ 1E)I@!I$I$9I$I$9 @!@$@!H$I$e)E)A @!$I2e)E)p$L$e)E)WU`$I$e)E)XUUUI$Ie)E)UUU I&e)$!  ɒCE)` IE)U@ e)E)_}/ e)E)5 I$I$e)E)I$I$e)E) I$I$e)E)*I$I$e)E)I$I$e)E)*I$I$e)E)*I$I$e)E)I$I$e)E)/I$I$e)E)I$I$1"I$I$e)E)I$I$e)E)H$)( )(@$)(@$I$1I$I1I)(I$I$)(I$I$)(X`E) p,ز-E)b@@@I$I!bU@0d$E)z^ ! 5I$I$d!d I$IE)!UUյ$C&L&!p\PI$I E)bUW0E)bI$I$)(I$I$)( 1 $I$1I$I1[E)bI$I$1 H$)()($)($I$1 $E) ᧱VRP@O(1|Ox)†/7D)§WW\4,PDZ 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4/DZǩ/%@I/%$M$/%$I$ǩ/%КN -%I$I-%I$I1% p 7DZ1R"%@EPPp/JE 1)I$DZUU1)I$H籧UU/)I$ǩUU1)I$DZUU1)IDZUU1)M$DZUU1)I$@DZUU/)I$ǩUU1)I DZկ1I$ǩEUU1),۴$) DZwU1,c;DZ/&%R$EPPP/HE 3/!$ DZǩ1/I$DZǩ1%# DZj*1%I mDZ1)IBI籧U3ڦm$DZET/!$If/)$$LmǩWW/) I%ǩ7UZ1)ԶIDZUUU1)$Qm$DZUU1)I-DZ1- $DZ1/  DZǩ1/ DZǩﯯ1/I$DZǩ1/@$HDZǩ3-ڵ]5DZǩ3$@DǩE1- ADZ3/$H"$B DZǩ3/ I$DZǩ/1/I$ DZǩ3/ IB&DZǩ/1 J+IDZf3/DZǩ3)u"DZW3%MhDZ`/!MJ$ 3)i'DZUU3)-@&DZr3%-Ő4DZ1))6mDZuUUj4% vDZ 4%nDZ`4%$ DZT,H$I$ETTUU,1I&ɧE )H$I$ETWUUI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hh[5ۊmE%y d# %yfI` m&k%i9UWT\ Im91  91 I$I$9F1 91 + $H$)91 I$9f1 ? I$I$B$! L$`$91  H9E) * I$I$B$! H9E)4 I$I$BD! @91 I$M$91  I$91-1e) v$N$9f15UUU <` B1j &91UWT\ PJm69 j$IL1bI$I$1f1* hA1P91/ LB&`$91 I&)1E) I|9. Z$H$81I$I$@! I$ 81PTTUj$@ 1X\pPD1A I$I$9  11? 0011pp`I$I$'9#I$I$9! 9 ۶ 11  I$h%9f1 IdI$91? 91 $@$:1  $I$9F1 91 I$`091  I$91 r 09E) I &91U^VZ ``91 ) P H9  pS1iH /-`s%yi )-mnE%yhI$I$hI$I$h h @E%y~z$+* Eq1UTTP I$H$9F1I$I$9F1 I:1 I$BD! t"&H91^xb ,1!`0E)onIE).5@I61 j 0T9)%  091蠂I$I$)I)I$I$)I) 9F1L&1e)I$I$9!$1f1`01@Oɗ1 59F1`01e)I$I&1e)$I$1f1 $I 1f1I$I$)I)I$I$)I)#($I1`ITI1a5/M 11V--1@ I$E)bUmѶme) *I񖤆1E) !11 I$I$9F1 H$I$9F1I$I$9F1I$I$9F1 $B$@91ꪪ I$@91I$I$)I) $ 91 91* I$I$B$! I$I$B$! I$I$B$! L&91I$I$g9*I$)I)@9F1I$H$)I)  I$91 @`91 N: h91UWzvB: 1E)WzI$L$1E)UUU^I$I$1I$f1%))UU@R&1E) M9e) I$91 I$I$91I$I$g9*11I$$C11I$I$11I$1111I$I$)I)I$I$g9* I$g9* $)I)I$I$)I)I$1f1I$I$11$I$11 $1111I$I$g9*I11U(I$I$g9*I$I$g9* 11kۺ 1e) 2$11}z !I$91UUU `$91^UIB&H11U_I$I11UUU(#1` dI1.55I$@11 I$I$g9*I$I$g9*I$I$)I)I$I$)I)I$I$)I)K&1\pI I1 I$`B11I$I11A$I$11I$11H$11, $H$)I)I$)I)ۆm۶-11@-1e) *I$I)I)I$I$)I)I$I$)I)I$I$)I)I$I$)I)I$I$)I)I$I$)I)H 11$I1 dI1E) I9 H$9 I 9 I$I$'9#1E)11E)I$I$9!I$I$'9#H$IlۣH1ItXHս-{w7%yP/+& Rd %y- + % `PMIE)a'I2e)E)`H$@%)X\!HmE) mIe)! e)E)e)%)I$I$@!I$I$9 e)$!$e)8d$e)We)$!I$I$@!I$I$@! @!d$e)$!mmҶe)!mi۶e)!@!e)$! I$I$@! 2d$e)!$IE)! e)$!  `0He)U I$APH= .R\i@//+5 qW fq--- )2)" e)@@@@I$I$9pe)xf1 I$I$1E)Ȁ&e)`x`e) -I$I$1E)I$I$f1e)I$I9I$A 1E)II1E)**I1e) 1e) 1e)I$I 1e)I$I$9I$I$1e)I$I 1e)$͒'f1b`X ɐf1 5I1e)A$@$1e)I$I$1E)I$I$1E)I$I$1E)I$I$1e)I$I$1e)I$I 1E)I$I$f1e)I$I$9I$I$9I$I$9$@!@!I$I$@!I$I$@!&e)E)PL$e)E)TU`$I$e)E)PUUUI$I1I$$e)E)U%V$I$e)E)PUUH$I$e)E)TUUUI$IHe)E)UUIe)E) I$I$e)E)I$I$e)E)*I$I$e)E)I$I$e)E) I$I$1"(1R)E)PHE)?H$I$e)E)I$Ie)E)/I$ e)E)+I$@e)E)I$I$1"I$I$e)E)I$I$e)E)I$I$1 $1 $I$)(I$I1Ie)E)յ I$I$e)E)I$I$)(E)!I$hE)bW IE)5H$$E)!|@$I$E)!^UUI$I$d!d I$I$d!d I$IE)!WW/IE)! I$I1e)E)-I$I$e)E)I$I$)(I$I$1 I$I$)(I$I$e)E)/I$I$e)E)I$I$e)E)*I$I$e)E)I$I$1 I$I$1 @$)(H$I1I)(I$I$)(I$I$)(I$I$)(I)(&H$E)\VaٖE)$C&E)jZ!?I$A$e)I$I$$!! H$@ $!X\P  @E))% I$I$1I$I$1I$I$1 qp%) )% pS1wf$q//-,P  -,@$ E)PP@@I$I$E)!* I$I$1IEHH%)U)*I$I$HE)I$IPH*I$IXH*ز P8 {i@5/. EX {Ifa*)rT E+-kn 3)D 4-1iR$E 4/I@ DZ41 %44I$I$%44I$I$%4/&DZǩ4<DZ!p48N$DZ!pWUH$I$!TUUUIE)!I$IE)$!*  $H$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1$H$e)I$IE)!E)! @$E)!~H$I$$!!I  E)!@$I$E)!I$I$!!:I$I$1$@$E)!I$I$$!!I$H!a~0!$I$!I1I$He) $H$e)I$I$e) E)!I$I$1$ $!$$!$! / I$Ie)@$I$e)I$I$e)I$Ie) @$E)!I$I$$!!II$! *  H$e)I$I$$!!@$H$!bxI$I$bUI$I!U$! I H!U5 I$I$Q!@I!XH+ /qP/ {w/efi+ -qN@f+3+1eJ ) 4)DZ@4,DZ5O,p2:)§\zs4,/DZ?=44I$I$%44I$I$%41%%41%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4) DZ@@4 E 44I$I$%4-$aNDZ*??44I$I$%4%J XDZT01)))IHDZ1-I$$@DZ1/  DZǩ몪1-I$$ DZ1&H$EXTT3IE1)$DZU3%&I$DZU1(B2DZE@@@j3HE3-ضmۚDZ1/I$DZǩ1/I$DZǩ3-۶ m$DZ*3,m'DZ_3% ID;DZ~3% I$DZU3%&IDZ1,DZ1-DZ3-mm6DZ3-i DZǩ /m#1f``3mI$DZEUU10I閎DZE1$DZE U1lDZE3H$H2IETTT3 IǩE1/H DZǩ3-mn6DZ3,O۰ DZW**3)NB DZUW1)I&P HDZUU^/)a&dǩ]_-)$I")%1)PRIDZUU3 3%DZErR3@DZE1/ DZǩ1IDIE3-h&hmDZ1-$ADZǩ뿿1/@$H$DZǩ1/I$HDZǩ1/DZǩ3/d$ADZǩ*3/I$ IDZǩ1/IDZǩ31I$%4-HDJDZ 4)u5DZWz3)IĶ DZUUU3)%N$DZ?UU4% -U;DZ *~4)tFnDZW3%t#-DZ40j۲5EJh,IdLEՕ5%,"1Z"'E``X\I$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h@ E%y @E%y^~ k2:%q9P@ I9UUVV I$I$BD!  $ 91  J9$!*** 91 I91 I$I$BD! ,9!`II1!55 @$91*. I$I$B$! I$I$BD! I$BD! `0,@91I$I$g9*I$L@118NB ɦ1e) ?O$91%UU A91P@ mR6" 9ZjIL@N1b I$h249f1 II$9e)* -C91 R#I1`I<=$9 I$I$80IDɑ81@@P$9F1@$I$)I)I$ )I)H$11I$I$9 cd91{ɥI$ 11UWxH$I$9I$1e) 1E) B191뭽I$H$11  I$9e) * $I$91 I91** ,9p"991p\x   91 I$`91 !$A91 091" 91* @9UUUSX@/- N.w%qX +- OEy%q  E%y I$I$hI$I$hI$I$h  E%yꪪZ)%yE)P@@@ M9E) I$H$91  I$:1 I$I$B$! !I$BD! #H9xI' @1յi$ E)5@ E)P@IP)U1%)  S91 -- K%`91I$I$)I)9F1#&1XH1I$L$1f1BJ$E1E)I$H$1b\TP 1b $9F1@9F1I$H$1e) I$1f1 $I1f1 I$I$)I)I$I$)I)I $)I)I$I$9F1h11xIh1bI$M%1E)UUU^I$I$1I$1E)U0n1E) 9F1I$I$9F1I$I$9F1  I$9F1 B$! `091ꪪ I$I&91  (11@ 9 I$I$B$! I$I$B$! I$I$B$! @91 I$` 91I$I$)I) $)I)I$9F1I$I$)I)  91+ $91_蠪SZ h1%)ꪠI$f1E)UVjI$I$e)$!I$I$E)!*nI$1%) Um1E)*$X1e)*I$@)I)I$I$g9* I$g9* $I11I$11I$I$11I$1111I$I$g9*I$I$g9*I$I$)I)AI$)I)I$I$)I)I$11I$I 11I$I$11+I$11:11 I$I$g9*I$I$g9*@ 11I 11** @$I$11I$$11₠I$dB11UUZ$H$9! 91UUmv11/ Gr"@9!I$I$9 I$11+$11 %1E)1E)I$I$g9*I$I$)I)I$I$)I)I$I$)I) $I$)I)`B$A1f1I0@11I$H11, $11 II1@۶m1e)Im1e)* $A$$11H$1e)I$I$)I)I$I$)I)I$I$)I)I$I$)I)I$I$g9*@$@ 1111 11II11*** C&LB&11I 11 d11I$11L$J'1TWTޖj1  I$ 11UU ۶-(H1UI$I$HH* @$HH8(EH)) (w6e +k+X$I$%)XVUU жm۶E)H!E)!++dB& E)!I$IE)!I $E)!$@$E)!*$@$e)E)+1E)%k5e)!ae)! IĢe) U8I$RHe)U0 e)I$I$1e)I$$9@1E)I$ f1E)UW^m&m f1!ImmE)!$@H2E)! me)!*`$e)E)X-I$1!!AdB&E)!H$I2HE)۰ ېmP8 ) ɟ$q@յ+!1q%y--/-+B"/PI$I1E)*I$IB1E)I$I1E)I$1E)* A1zT1- I$I1e)I$I$9!I$I$'9#I$I$'9#1e)***I$I$'9#I$I$'9#I$I$'9#I$I$'9#I1e)1e) 1e) If1` $If1 $I$9H$I$9I$I$@!I$I$1E)I$I$1E)I$I$9$I$1e)I$I$9I$I$9I$I$9@!H$I$1"I$I1"$@&e)E)P@Ie)$I$e)$!I$I1I$ 1IH$1@$I$1I$Ie)E)UUUIe)E)U  Ie)E)%@$I$e)E) E)I$I$e)E) I$I$e)E)I$I1"I$$e)E) $I$e)E)H$I$e)E)ٶm۶E)!I$Ie)E) @!@$@!@$I$1"E)!h$I$e)bVUVlE)$I$)(I$I1Ie)E)U e)E) I$I$e)E)I$I$e)E)*I$I$e)E). H$e)E)xWU H$I2E)!`$I$E)!xWUI$I$d!d I$I$d!d H$!VIE)!'I e)E)U-Ie)E)/I$I$e)E)說I$I$)(I$I$e)E)I$I$1 I$I$)(I$I$e)E)I$I$e)E) I$I$e)E)I$I$e)E)I$I$e)E)I$I$1 $)(I$I1 )(I$I$)(I$I$)(I$I$)(I$I$)( )(H%ۺE)X!LB&$C$!I$I$!__$!I$! IE)! I$I$1&E)b`X E)b 5I$I$1E)$!@DI$YWRwE`/-)N7wE+,"2P)I$HhE)UUTIb%%)Uڪ`1I$HPHI$IXH*IضiPU+I.I %yP O4 EHW*"6Xե" hi')*/16Fj-d 6DZF/~4,M 4/MjDZ*4$P%DZEPPP4DZE41I$K$%41%4$DZ)P4=O$!pWUH$I$EY TUUU$I$$!* IE)!I$IE)$!* $H$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1$H$E)$!I$IE)! E)!** E)!I$I$$!!ࠀI  E)!U@$I$E)!ZVUUI$I$!!?/  E)! @$E)!I$I$e)Ie)I$I$1I$@1 1 @$1I$I$e)IE)!I$I$1I$I$1I$I$1I$I$e)I$Ie) H$e)$H$$!bp\p!I$!a %   E)$!H$I$$!!*I$I$!!( $1I$I$e) @$!xTI$I$!b說I$I$bI$!%I$I$8!UU H IIPH** qiP/{w.ee`-+ ,qr E+ 3(qNT + 41ِ0DZ* 44I$I$%4,X4DZppJ)|ñ)§ͽ54)qGۈ DZWTT4,DZ44I$I$%4-P Ā DZ4/ DZǩ /44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%43 %41 %44I$I$%44I$I$%44I$I$%44I$I$%4%`DZ @1 i}'E^^/$INF -1 Ehh@-IE3jI$EX 4E4$f~V4I$EUU4$EU4DZf4)nDZ4/I$ DZǩ1$ǩE*3,?DZ3!:DZz4}'E^^4I$EUU4IE1!1HDZ-!6,f)$ImEUU-x E -IE3I2ۺDZEU3I$EUU,I$SEUU--/$E͉V)I$IEUUU5,:9E)yyp/$IħEU1 I$ǩEUU3 $DZE-U3DZE3,[ `XDZ3/!IC&DZǩ3-kӶmDZǩ/3,IkDZU1S"%EPP/HE/)$$L$ǩWWW1,I$DZUU1)$DZU1,۰ ېDZ3H@$ǩfPP1 pǩE1/IIDZǩ1/@$DZǩ3/dB&ADZǩ3 IǩE1/I$DZǩ3/L$LBDZǩ41$I$%41mɐ$%4,K4ADZV1&mdDZE1) i+DZUU3)`KN$DZ+UU3P%H$DZEPPTV,1I4ɧE %H$I$ETTUUI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h  EEyꪪ hEy%q` s,9 l%q1\p A9UUUT <@9p`II1b-5%)  I91// I$I$BD! I$I$BD! I$I$BD!  91I$I$)I) 91 I$I$BD! I$I$B$! IA) L&91I$I$g9* XS`91zMҦX 1e) p91 5U j=>9f1\P@Ii1e)*ې11 I$M&9f1 ɐI$91/ [5a91H$I$81I$I$@!  81PTTWH$A )I)`$11 W@1e)9F1L$@ 11I$I$9 $C!11Mk1E)I$@$9II$1E)*۰n1e)$C2$1f1I$I$1e) )I$9f1 91* p$9a^ 9  91 $I&L&91 $I$91 / 91 I$I$BD! ʏP$@9  pSqiH /-`s%yi --mnE%yhI$I$hI$I$h hX `E%y~I$J$%y1UUTT I$91 I91 I$I$B$! I$I$B$!  .=9a`  i9E) ?59!`E) $I$1 ə9E))%U  픶91 km91I$H$)I)L&`1bVX J 1 @1e)I$L11@I1b@ٶm11$IRǦ1E) 1E)9F1IB&`01e)I$I$1f1*$I!1f1 I$I$)I)I$I$)I) I$)I)9F1@`11`$`1E)jI$k,1E)UU^h @$E)pX`rq1 * Pn79E)* ۆmݖ91  z$9^ $I1! I$I$9F1  $:1  I91ꪪ b5+@9X`IPDI1b5%  @ 91 I$I$B$! I$I$B$! I$I$B$! I$I$B$! H091 I$I&91I$)I)  C$91ꪪ I$I9F1@$9F1 C!91ફ N":91W~j 1E)ZI$`1%)UW^I$I$1 $I$E)!  I$1%)*+UNۦ1E) $S1E) I$)I)I$I$)I)I$I$)I) 1E)@Ć1.1E)I$11 11I$I$)I)I$I$)I)I$I$)I)I$I$)I)I$I$)I)H1f1I$@11I$I$9 I$11 11 @Ȧ1!`-ɛ1 ?5@11 H$11  11 $A11@**I$@11I$I 11 i$I$91UUU cI$91z U I'H91- I$L@91_^H%`1E)1$I1E)@211oadž1 I$I$g9*I$I$g9*$11I$I$)I)I$I$)I)I$I$)I)"%#ͦ1@P`DIJ1b 5% I$@11I$L11I$I$11 $I$11 $I211jAN$1E) m1e)I$I$)I)I$I$g9*I$I$g9*I$I$)I)I$I$)I)I$I$)I) 1  ϛ11e)I$I$g9*P'`41xp11 - I$I118@"$@أ@1MڶmP8ս 7qH-+ }PJf` %%P$e1`PPV[e)!I$ E)!ive)!*l ,e)!@غME)I$IE)! ! E)!(I!Ie)E)-@&M$E)^\h!e)  @!@$H$1"I$I$e)E)I$I$1 I$I$e)E)  @!I$I$1e)I$I$9 1E)dB2$ e)E)^zdB2$ E)!I E)! $Ie)E)%%+@!dB2 e)!`$I@IH8 ɝ%q@- Ofi (Bb'N$Ff1PZVV I$9!Ԙ51x`KP1--I$I$9!I$I$9!I$I$'9# 81a`1! I$I$'9#I$I$9!I$I$9!I$I$9!I$I$9! 1e)H$9 I$9$I$9I$I$90e)I$I1E)I$$1E)I@$9$I$9I$I$9I$I$9I$I$9I$I$1E)I$I$1E)I$I$@!I$I$f1e)2e)E)x d$e)!$I$e)!I$IE) *H$H&%)b\WTmE)$I$e)$!I$I1I$!Ie)E)UU)IHe)E)  I$1"I$I$1"I$ 1"$0e) `H$IE)bWUIDe)I$e)E)I$I$e)E)I$I$)(I$Ie)E) Ie)E)?I$I$@!$H$1"H$I$1"I$I1"I$I$1"I$I$e)E)h`mE)I$I1Ie)E)U)e)E) E) @ȐdIE)>חe)E)*`-E)@ȖdI$E)b 7 H$E)!~H$I$E)!^WUUI$I$d!d I$I$$!!=I$ IE)!U I$mE)bUV E)I$I$e)E) I$I$e)E)I$I$e)E)I$I$1 I$I$)(I$I$e)E)I$I$e)E)?I$I$e)E)I$I$e)E) I$I$e)E)@$M$E) ^\PE) I$I$)(I$I$e)E)I$I$1 I$I$)(I$I$)(I$I$)(I$I$)(@$E)! @$E)!I$I$$!! * I E)!@$I$E)!I$IE)!IE)! I$I$1I$I$1E)b` E)% @$I$E)!_^E)!d%) SI8p$) NyxfP %%,ɮr/fKo( ИDO%y" 3ZfqzuB; %yX_~IbiPUI. %yP }. e`+# }4 q +m4 E*1!krܶ *1!~`_4d6ߧf //4 L' DZV\4! gDZ 41@,2%4R"IDZEP4DZE4@?DZ$!|4$O$DZ!@TWU )!PUUU@$I$!I$I$!* !A$@E)! E)`MI$%)AE)!I$I$1I$I$1I$I$E)$!I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1$@$E)!H$$!b ^$@E)*   E)!*@$I$E)!^WUIIE)!@$H$E)!zzI$I $!!@$I$!A@!E)I$I$e)I e)I$I$1I$I$1I$I$1 @$1I$I$e)I E)$!I$I$1I$I$1I$I$1$@$1I$Ie)  1I$I e)$!@!A%)- @$I$E)!I$I$!!* 1H$I$e)$$!pI$I$!VUUUI$I$!AI $!5 I$I$$!!I$ H!5 I$IPH6e`H/{6EX/+(yrT%y/+ 1"qN -+ 4/i DZ** 44I$I$%44I$I$%4,`DZ`?%>ؤ蹆/J)so)§^\~{4,?DZ/44I$I$%4/@DZǩ4/IDI$DZǩ??44I$I$%43@$%43%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%46`%DZEXX4ٓ5Eqa4IDZE@յ4iME 4$I$DZEUUU4Fy3!n閧/%Z#*/NB'sEW^^1I$IǩEUUU1 Fy1)Ӳ% fm1IDZE1!Ib۶ DZU1!Ib۶ DZU1mC$ f1O'EW^z1I$IDZEUUU1I Eյ/!JIf 3!6m֧j4$O$DZEUWW1IǩE1!#IDZj3I$H$DZEUTTT3ImDZE1M$ǩEVW1əDZE/N$NEWWW)ɐ,)E%eehH$I$h%I"$r"'EUP\\I hI$I$h/$I$ǩEUUU1 I$ǩEUU3 A$ǩEU3$KǩE 3 AǩE@@@3IIE*3,ImmDZU1)I$I籧UU/,I$I4ǩ1BmڦmDZfR1ҴmǩF1,۶mDZ1/ADZǩ1/I$DZǩ3ODZE4/JIjDZǩ3/D$DBDZǩ1/ DZǩ1/IDZǩ31I$I$%1IdDZE(4-IDJDZ 3 DZE@)HDɐE%%),@%E@`PXI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h[lE%yꪪ b %yiࠀ~tK%y1VVx@ I$I$BD! (I I9E) I$M&91 $91 + I$I$BD! I$I$BD! I$I$BD! `2 91  I91 I$I$BD! I$I$B$! I$I$BD! B!A) I$`$91 I$I$91 $HA91zIڴm1e) J7\91 - >9f1^Xp@IĦ1e)** Xӭm91I$I$11 )[%10@@ZZI$I$80I\ɑ98UH$@ )I)$I$11*LBA11V"11II$)I) I$I9F1 I$h591WW^zI$I$11? P"0h91ZzmӮ`1e)I$H&1E)vI$1E) жm1e) - 91I$I$1f1 nI$91 M"'+H9A^ TII9  I91* * 91 I$L&91 !I$91 / 91  @95USX@/- 7W%qX +--  !PEy%q  E%yI$I$hI$I$hI$I$h  E%yꪪZ=%y9PP@@I$I$9F1 I$91 I$I$B$! I$I$B$! p'9X\p @I9b  ؃=@/`9`pI9yH1 IB2$ e)E)UI$I1I$1E) - @ %9e) * [91 I$ 91 9F1$@$9F1@ $)I)L$`01f1 I$1f1 **s2' m1!J$I1E)   I919F1L2 1f1e1b 1f1 *I$I$)I)I$I$)I)I$I$)I)9F19F1#1E)t2& `1^xIn݆mE)-  $I$e)E)5UUU`n1Ħ1E) M"R'A1b^ )tI$I1$!  I$ $9F1I$I$9F1I$I$9F1 91* ` 91ꪪ I$I$91 I$91 91 I$I$B$! I$I$B$! I$I$B$! 91ꪪ I$91I$I$)I) m״91 `0H91ꪪ I$$091  ۶59f1 *z  9 P H91UWzt"ڒI1%)^I$M51%)UUWxI$I$1!$I$e)$!$A $1E)*URIĦ1E)+@Ҵ111 @1It1. @11I$@11I$I$9 I$11 11I$I$)I)I$I$)I)I$I$)I)I$I$)I)I$I$)I)@1f1I$@11I$I$9!"I$I1E)N! I1!'I$I$)I)I$I$g9*I$I$g9* 11 I$I$g9*$I$11@11I$11I$I$11 )$I$91 UUU Jvh91U I9915 m6b h9E)jN$N^1a  $I1!H1e)(L$ 11 11$I$11I$1f1 $ $$1f1I$ 1E)I$I$)I) $I$)I)HI$)I)L @1f1LB& 11v,Z1E)(I$I 11I$I$9!$I$11I$11  11 $11 1f1*1E)@IH1a11I$Ig9*1E)11e1$! 'I$@1IP8Օ%qP 1FAi--J?f1TTUUI$ 9 I@1E)I$@1E)#ɒH1$!jIX 1շ ۶"M1$!@H$I$!A<dID@1!`f1X1E)I$I$9I$I$f1e)I$I$9H@!I$I$f1e)(f1`@Xe)a %I$I$1e)I$I9I$I1E)I$I$1E)I$I$9I$I 1E)$I-f1`f1$! N"&-أ@e)IĤD X8**y.%y@+ ۹a N$M$E1VVVTI$I$9!@`1%)PDI$H1! I$I$9!I$I$9!I$I$9!p$@ 1X\p 1  1e)1e)@$1E) I$1E)@$I$9I$I$9I$I$9I$I9I$9"!$I1$!j@I$I 1(m۶mf1!I$I1e)I$I$9I$H$9I$I$1e)I$I$f1e)I$I$@!I$I$9@&e)!L$e)E)TU$I$e)E)WUUI$IE)! I$ $E) IH$E)!$I$e)E)VUUI$IE)!*I$!Ie)E)UUIHe)E)+@LE)!0$A!Ie)$!@$@!I@! @!I$I$@!P%He)b`pIdI$e)b5U_$IKE) I$I$e)E)ꪪ I$Ie)E) Ie)E)I$I$@!$@!@$I$1"I$I$1"I@!$e)E)$I$e)E)I$I$)(dB$Ie)E)_ e)E)-I$I$e)E)I$I$e)E)*I$I$e)E)MmE)&$I$E)!$E)!jWI!b&I$I$d!d I$I$d!d I$IE)!Uս  $ E)! $Ie)E)/I$$e)E)+I$I$e)E)I$I$e)E) I$I$e)E)I$I$e)E)I$I$)(I$I e)E)/ I$I$e)E)I$I$1"I$I$e)E)I$I$e)E)I$I$e)E) h lE) E)!I$I$e)E)/ I$I$1 I$I$1 I$I$1 I$I$)(I$I$)( I2E)!$H$E)!I$IE)!I$E)!@$I$E)!I E)!!I$AE)!I$H$1I$I$1I$I$1$E)b`@!E) %@E)!I$I$E)$!I$ E)! cMXE)UU R6wEP%+(`NwE --+%m) hEz ~c mf$q_ o$' fqU% m%7 %y +4 E*1!irܶ *3)qR$+4-1IIDZ 4-$DZ4Z f4%l1DZ 54mǶDZf4!@ DZ 4?DZE)|4?O$DZ%)|WU ?O$I_W ! $!I$I$!* !I$@E)!+I$IE)!$B IE)!@IHE).I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$! @$E)!I$I$e)L$dE)b^!%) @$I$E)!z^I$IE)!UU$H$E)!WI$I$!! E)!LE)ި$!II$$!!%))I$I$1I$I$1$1$I0d$$!bx$I$!A -I$I$1I$I$1I$I$1 @$e)I$I$e)  1I$e)I$I$1IE)$!$H$E)!I$I$$!!**  E)!I$I$e) $!H$I$!X\zI$I$!AI !5% I$I$$!!I!H$!5 I$I$!`A !AXH+7%yP+" ys.Ufq+ /1N f+*4,M 43DZ44I$I$%44I$I$%44I$I$%4%ـ DZJ,s1[)§{ͽ4%m ;DZ**|44I$I$%44I$I$%4)DZE@@@4E 43@%43%44I$I$%43IH$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4P@DZEP13AEq1+ E1%i'I iDZ 1-LB&DZ1-@ DZ1/$DZǩ1-$ dB&DZ3-mmItDZ1-$2 2DZ1-$I$DZ1-@!$DZ1-@$DZ1/DZǩ1-$DZ1-@$DZ1/ DZǩ3-[ k6DZǩ3-mliDZ11I$I$%1/ H$DZǩ1%"! )DZjJj1$I$f1*UUU1$I$ǩ1UUU/$I$1UUU1I$1UUU1DID11+k$DZZWU1/%1PP1ɟ$ǩ1UU1I$9UU/ LI$9U- $9U#m۶$E9U#هEUUUm۶&FEUUU\hI$I$h/I$E UU1 I$E U3 ǩE3%ЦInDZ 3/IB$DZǩ*3)l# DZ 3)I& HDZU_1)I$lDZUUW^1)%I$DZUU1%06DZ~1-DZ1/H$DZǩ31I$H$%31 @$%3/IH$@DZǩ 1/H$H$DZǩ1/H$DZǩ1-H"DZ3%P$E@PPV,I IE ,H$I$ETVUUI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h@ h#ђ E%y~*( a9%qk`p I$H&%i9UUTP I$I$BD! (P9!`X` 1! 91 I$I$BD! I$I$BD! I$IBD! M&k%91  91 I$I$B$! I$I$BD! II$BD! @91 I$L'91  I$91 -,`91_~zI$I1e) h!91 m9` 69h p1 h6)10BH$I$81I$I@! p@9pP\T $CH91ꪪLB 1f1  11I91I 9F1 $@L$91  C2$91ꪫI$L&11 I*51`Cɕ1a' 2 1E)I$L&1E)~~!I$1E)7Uvmn1E) h5m91I$I$11 I91 H B$! I:1 I$I$BD!  91 I$I&91 !I$91 / 91 `.%@9  N7wiH +/ PR/r%yi - ݖnE%yI$I$hI$I$hI$I$h h рE%y~~zNHyT I$I$9F1 @$A91 * I$I$BD! I$I$BD! I$I$B$! -vM$91 1(@91ࠀs9 m1E)|I$I&1E)UUW\@$)(6I$1E) UU @I%9E)  "91$EJ$1bTU1bI$I)I)B1e)I0 1f1I$I$1e)!1e)I$I$)I)9F1  $I91jL$KE1bVUTII1I$1f1 *I$I$)I)I$I$)I)I$I$)I)I$9F1)P$1b@PT$I1u9 I1E)VxI$I$1E)UUUVI$I$1&M&1bz^z W1b %) ۶mۖa91  $I$9F1 I$A 9F1  I$9F1 B$! 91ꪪ $)091jzR$I$1bTUU  0I9b I$I$B$! I$I$B$! I$I$B$! I$I$B$! @9!`DI1 5? m۶9e)* H!91 R#%@1b@P@ɐD1b I$91* $91~* möR i9e)M& 1E)U^I$I&1%)UUU\I$I$1!I$1%)UUH$LBƆ1\W^+fn1aI$I$E)I1I$I$1f1* 11 *@11$I 1E)@1!I$11+11:I$I$)I)I$I$)I)I$I$)I)01`ɑ15$ 1f1I$11I$I&11I$I$11+I$11 11>I$I$g9*I$I$g9*I$I$g9*I$I$g9*11H$I$11I$I$9!$I@1I$I$9 1$I$91 U RI$91 $ B9BID1b$U!$I11$I$11 @I$11 I$I11/I$@$11 $I$11 I$11I$11P$I$1E)TUT$II1E)I$I$)I) $I$)I) $I$91II$)I)L2$I1f1mӶm11~I 11UէI$I$11I$I$9!I$I$9! 9!@ 11۰mk611jضmi11 @11@HHH%!WIH@-S1a`H/yww/fa-/!4)"(f1@@@ '9#@ 1e)II$1E)I$1E) 5h91b`X`ILf1a 5%H$H$1e)J$ I1$!$1E)1e)I$I$'9#I$I$'9#I$I$'9#I$I$'9#I$I$'9#I$I$'9#@ 1p@IX A1a% $1e) $1E)$$1e)I$I$9I 1e)Ђ%K&1`XVXH$I(e)b|_11`f1b % [2$[%Hf1  XH=99EyX---/(1qf---- A1 H$I$9!$1e)1E)$1e) 1e)$H$1E) I$1E)H$I$1e)I$I$9I$I9I$A1E)I$9I1e)*I1e) @ 1e) I1e)H$H$9I$I$1E)A$I$9I$I$1e)I$I$f1e)I$I$9I$I$90e)$!$1E)zU$I$e)$!`$I$e)$!I$I$E)!*I$I$E)$!*I I$E)$!"$I$E)!I$I$E)!*I$Ie)$!*Ie)E)=e)E) @!I$I1"dH$e)$! I@!I$I$@!I$I$@!$e)%)$I$e)%)I$I$e)E)J"%"e)TP@ e)$ e)E)@ e) ?H$@!A$@!@!I$H$1"I$I$e)E)$I$e)E)I$I$e)E)?I$ e)E)?I$e)E) $I$e)E)I$I$e)E)*E)`%E)`XmɖdE)?@$E)!*zW@$I$E)!xWUUI$I$E)I$I$E)I$IE)!UU I$IE)! e)E) I$I$e)E)?$I$e)E)I$I$e)E) * I$I$e)E)I$I$e)E)I$I$e)E)I$Ie)E)+I$H$e)E) I$1"I$I$1"I$I$1"I$I$e)E)I$I$e)E)I$I$)(I$I$e)E)I$I$1 I$I$e)E) E)@I$E)b,UE) $)( $$E)!@$I$E)!IIE)!?I2E)j $!b %IE)!*I I$E)!I$I1 I$1I$I$1I$I$1`0E)bX`IE)b5 I$IE)$!*I$IE)!*@$)(H$I$1 )spE) ) Rwfi ++ Nf* +-,! ` f,#+mE-ݖU*1"r$*3)]$}3, /*(43 DZ 43@%43 I%4!DZ`1v:DZf?~4 @'E)_+?O$E)~WU H$I$fI%!UU $$$!I$A! ! I$I$!!UU IE)!. I$I E)$! $I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1 @$E)!I$I$e) E)!++ I$I$E)$!$H$E)!I$I $!!$H$E)!z^WI$I$E)I$IE)!յ$E)!H$I$E)!I$IE)!&` $!Ap` I$!b 5% I$I$1$1H$I$e)dB2$H$!p $IE)%+E)!&%)bx $!a 5H$I$e)IE)$!1I1I$I$1 @$E)!I$I$e)II$E)!@$I$E)!I$I$$!!`@$H$$!I$I$E)aI$I!* I$I$$!! I$ H$!UU55H$!I PH*  ɝqP/{7ef`+ ,qR E/+ 3)qRD -) 41DZ 44I$I$%44I$I$%44I$I$%44I$I$%4, DZ@D)w[蹧%5D)M"W\\\4,DZ 44I$I$%4/@ @DZǩ4/ IDDZǩ/??44I$I$%44I$I$%44I$I$%43@$ %410 %4IIDZE44I$I$%44I$I$%41ۀml%43%44I$I$%44I$I$%4,DZ@/%M$1%۰MmDZ*1%l&DZ^^-%@J /%vI*-)$$B"@E,% $I,Z2's%EX^^P,mE) I$1U, I$1U,@$1PU, I$f1UU,`HI$1UU, %I$1PUU-$I$1UUU-$I$1UUU,$I$1UUU/Oǩ1UUU/$I$1UUU/$I$1UUU  d;91 $)H9e)_ m 91 t%@:91WZ_#I_9UU)䇡f)@"%톡9PP@@ IR+91 vb'vH91 II 91@&dB&1f1 i91 M$9f1 H]69E)`'E1UUUE1UUE1UUE9UE9%$I$EUUU1OI$E-UU1 $E U3%4ArDZ3/$ $DZǩ3,}lDZ_1)M& DZUW1)m$L&DZUWV1)JI$籧UU1)$HDZ1/DZǩ31$I$%11I$I$%3/dB$$ADZǩ*1` ǩf@I$I$h,")#%E@@`PI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h+I E( X=ؿ%yPPXV3%q9` m۶M%i9UUUT "I$I91 $I$@9! II$91** 91 I$I BD! I$I$BD! 91 I$L$91 !91 + I$I$B$! I$I$BD! I$BD! P0(91I$I$g9* !I$91믿 ͧ91^Zjh I$9f1UUU h5i9X`Ilh1b52%S$81I$I$@ I98Օ5EA1VUUU  I$:1 $@91ꪪd$L291! 91$H$)I)I$I$)I) 9F191ꪪ#I9!jI=1A5 ki9e)蠩k- 1E)xm۶m41E)UUWV&`$1E) 5U11@$1f1I$I11* !I$91 91*  I$I$BD! I$I$BD! 91耠 ۶m 99e)x P w9e) /  (@95U`Oq{`@/ ` S%yX++ ` SE%q E%yI$I$hI$I$hI$I$h$2 EEyZ%y9PP@@ P$I$9b\WV0@1 !I$91 B$! $I$9F1 I$I:1 $I$B$! d2H91 C" i9E)zꨀI$K%1E)UUVXI$I1!@$Ie)E) /&Ħ1E) ? K09bT i" 91H$9F1 A$9F1I9F1L& 1f1I$I$11*$ 11 :@$9F1@/'M2'1XVX A9J9 @1e)I$`01f1 I$11 *$I1f1 I$I$)I)I$I$)I)P(1bP@  11e)H1E)xI$r11E)UUThE)@vm[f1 / $aܧ9E)* m)91I$I$9F1 I$I$9F1 I$I$9F1 I$:1 9@ Id$9bU I$L$91 !I$91 91 I$I$B$! @$9E)T 9f1 9! {${9E)VUV1E)  !I$91  91 I$:1I$I$9F1 $I$91 d91_ dK 59`$I$%)b@\WU %)I$I$1鐤I$1%)-UU"v1@ `Jۦ1e)*X `n11 I 1f1* I$I$g9*'Ц1b`X`J1 5 I$ 1f1I$I$11 $I$11  11 +I$I$)I)`1E) 15I$I$)I)I I$)I)I$I$)I)H11I$@11L$L11U׼I$11+$Ʉ11 4h51!x`I1  - 01E)HIP1E)5*1 `1`I$I1b$I$11$z$1V$I1 $I2$ 11z 1 I$91 N@91׀ I&v91I0! 11I$I 11/I$11H 11*I$11 Z$I1E) $I 11 H$I$11I$11*$11$1111I$I$g9*I$I$)I)I$I$g9*$I$)I)@ 1 $I1!- I11dB2 11ZjI! 11յI$I$11Xh EA0IH@**.r1iH-/ 1w1qEi--- #%/f1PPP\I۶ 1E)I$L11UUVI$L1E)I$IH1E)"i@1$!`4IH1  1e)I$I$f1e)I$I$@!I$I91e)I$I$'9#I$I$9!I$I$9!I$I$9!I$I$9!I$I$'9#@$@ 1e)I$I$1e)I$I$@!I$I9I$I$1e)I$I1e)*Ri1` C$ 1E)窪I$I1E)JԪHf1 ItiXH=-/7S7uE`----(P )e9B@$IDf1 7 I9H$H$9I$I9H$1E)I$I1E)*I$1E)I$I1e)* L$I1E)!@$I1e)**H$I$'9#$1@pI1b /$'9#I$9$I$1E)I$I$1e)I$I$@!I$I$@!I$I1E)$1E)ꪪ^I&1E)ZU0L$f1E)zUU$I$e)!I$I$E)!I$ E)!I$$E)!  I$E)!ö-[-E)@p@1IE)b %%I$!e)$!Ie)$!e)%)I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!$e)%) I$e)E)@$I$e)%)I$Ie)E) I$e)$!Ie)$!I$I$9I$I$@!e)@ID E)5 H@!I$@$e)E) I$e)E)H$I$e)E)I$Ie)E) Ie)E)+@$e)E)@$I$e)E)I$Ie)%)*I e)%)*I$H$e)E)H$K&e)b\W^$I$$!bz^ !  I$I$E)I$I$E)I$IE)!UU-IE)! e)E)}+!I$Ie)E) $I$e)E)I$I$e)E)I$I$e)E)I$I$e)E)I$I$e)E)I$I e)E)* I e)E):I$I$@! @!@!@,e)!@PpI E)!%I$I$e)E)I$I$e)E) I$I$1 I$I$1 I$I$1 I$I$)(1 IdE)b, @$E)  I&L$E)!I$IE)!I$E)!@$I$E)!dB2$IE)zj IdɰE)b% I$H$1I$I 1I$I$1I$I$1I$I$1I$I$E)!I$I$E)$!I$I1 )($I$1H$I$1I$I$1II$`E)UUR9E@ +%(N/wE +--" 2E@@@3II!Ey%4/IڶDZ*41ImDZ43 DZ 43H$@ %43 %44I$I$%4& DZ@4@'E)^/'I$E)^UU  )(ض5k$E)bx^$I$%)bUI$I$ I$I$E)a!!AE)!Uյ!I$IE)!*I E)! A$H$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1  E)!I$I$e)IE)!+ I$I$E)!$H$E)!x^WI$I$!!*// A$I$$!!I$IE)!UUյIE)! E)!@$I$E)!I$IE)!E)!I$I$1 E)! %)$!H$I$E)$!I E)$!I$I$1I$@E)!E)!`0%)xI!A- I E)!I$I$1I$I$1I$I$1 @$E)!I$I$e)I$ E)! Ʉ$ $!*(I$I$$!! @$$!I$I$E)aI$I!*$! I$I1$!  IH$)I$IPH+kwv`Pյ//EX/+)qr E/+1%)gN@+ 41ɖ 0DZ* 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4%ذ DZD,c1ss4 c'DZE *\4%DZ44I$I$%4/I$h&DZǩ4/ DZǩ44I$I$%44I$I$%43%43 I$%4- DZ1bIdE(44I$I$%43@$ %43 %44I$I$%44I$I$%44I$I$%4!r XlDZ-%IH/$E)P/$1U/I$1UU/$I$1PUU/$Iǩ1UUU/H$ǩ1TUUU ؒ 91* I$ؖ91 $ @91  $191*z &9E) -91 Z['91+_ $m'9E)_ H$9E)U n$9E)U D$9E)U  @$9E)U $m9E)i1E)k1E)*n61e) HH1E)  1E)@niEE1)%Ee9@@ I$1E) `I$9e) WW @9E) Mv$9E)*W -9E)  I91 U IBd[91 m9f1_ i6m91 $$211 vi91 i91  $91ɝEy1UUUIE9UU%a۱$%9*U/`܆e1 3 I$ǩEy U3,bmDZU3/LDZǩ3)M"@DZWr1&m@$DZEPP10IkE 1)PIDZU3,۶mۖDZ-11I$I$%1$@$DZEPPT, JDIE )X$H$EXTTUI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h)i3'Es^$ EEy h%y%q P %q9X` $$ fQ9UUWT I$IBD! I$H$9f1 ! 91 ** I$A) I$I$BD! I$I$BD! [2۶m91 !A$ 91 91 I$I$B$! I$I$BD! !I$BD! p%91I$I$g9* D@$D91M1e) %VI$9f1 =U B 90@BH$I$81I$I@8 ?qko&eAA z9! I$I$9F1  I$:1 X91ꪪI$I$91$ (*1E)0WN$1!(UA1%) $@ $9191ꪪ{$r91aX\x1KI1b @1f1 h4 i1E)XpI$I$1LI$1E) %U J$1e) kÚa91I$I$g9*  91 / I$I$BD! I$I$BD! I$I$B$! @9e)pqJH9e) ! 91 + ̍`H9  N7wiH +/- PN/r%yi ) ݖnE%yI$I$hI$I$hI$I$h@ E%y*CdAF%y?s؆ma$ ޺ !-@91 I$H$91 !I$91 / I$91  :1 I$I$B$! I$I$B$!  ]691 Z(9E)z說I$M51E)UI$I$)(I$I$e)E)/ m)9E) -91/ M&[3`91I 9F1 $9F1I$)I)d0H1f1L$L&11WUW\0t1E).#m$H1x I$I1E)I9F19F1IB& 1f1I$I$1f1*$I!1f1*I$I$)I)I$I$)I) $I$)I)9F1$I$)I) vB)A91U_??>1xxxI$I$b('E) WI$1E) =U0 o1%) 9F1 II$9F1 I$I9F1  $I$9F1 B$! 91* I$91I$I$)I)  $91t2' l1$!XX !`9E)  @9 @91 91ꪪ I$91I$I$)I) I$91 H :1 I$H$9F1  $I$9F1 $I9e)` Iت9bU6 Ɔ1I$[a1E)UWzI$I$E)!I$I$E)$!퐤I$1E)UU0ImY'1z $1E)*`v11)$C 1111I$1f1 I$I$)I)IB&$I11I$H$11 $I$11 I$11+11I$I$)I)I$I$)I)I$I$)I)I$I$)I)I$I$)I)I$I$)I)I$11I$d11UVڠ@`1E)! $I1E) ۲mж11@I$I1E) 11<11 1E)@@I$IE)bWW.!p1$I$11dI$11*I&$@&11LȄI11ְI$I$11*I$11? H$11I$I$9!$I$9!I$9 m61e) $$1e) H$11IB 1f1 *LB& 11(I$IB11I$I11/ $I$11$I$11 $11 $110 H1!p`ɗT)A 1%%+I$I$)I)I$I$g9*I$I$)I)I$I$g9*H$mۣH1mdIP8*5ww/%yP/+!dbEy--J$O$1TTWUII11***I$I$)I)@ 51`DI!T1a  9 II9!I$I$9!I$I$9!I$@$9!I$I$9!$$)1E)@1! I$I$9 I$I$9 I$I$9 I$I$9 @ @$9 I$I$9!I$I$'9#I $9!I$I$9!I9 I$9 I$I$9!I$I$9!I$I$9!H$J$H11S1XH////qS1qea----%2!>ᆙE)@@@@IM1Օ& I$I1E)*I$I$9!I$I$'9#I$I$9!I$I$'9#I$I$9!$'9#$1e)H$1e)*`۶-1E)z@#ɒ$If1`e)b%+I$I$@!I$I$f1e)I$I$1e)ꪪ01E) $1$!*mMf1!ItB'E)\\ E)!I$I E)!I$$E)$!I$I$E)$!$I$E)$!I$IE)$! I$ IE)! I$1!IBe)!!Ae))I$I$@!H$H1"I@!I$I$9I$I$9I$I$9 1E)$1E)$I$1"I$I$e)E)(I$Ie)%) Ie)%)*I$I$9I$I$9I$I$@!I$I$@!I$I$@!I$I$@!$e)%) I$e)%)H$I$e)E)ꪪI$Ie)E) Ie)E)Ęe)$I$1"I$I1"I$e)E)$C&e)E)x_ II$e)E)UU$$E)!^@$I$E)!^UUI$H!bXh $!b `$I$%) I$@E)!- e)E) I$ e)E)  H$e)E)I$I$1"I$I$e)E) I$I$e)E)@$I$e)E)I$I$e)E)*I e)E)  @!II1"$@!$@$@!I$I$e)E)E)$!0E) I$I$e)E) I$I$1"@$I$E) lE) I$I$1 I$I$1  1 $I&E)!$I$E)!I$ E)! @$E)!H$I$e)IE)!IE)!*I$I$)(@$)(I$I$1I$I$1I$I1I$H$E)!I$I$E)$!IIE)!*  )( H$1I$H$1I$I$1A$I$E)$!I$I$E)$!* Rh%) %%Nwwfi+/, Of +-4,moDZ//41%44I$I$%44I$I$%44I$I$%41K$H,%41%4'p'E)\\\I$I1$@$1I2d$E)!I$@ !AxI$IA*I$!I$!** E)! ۶5k$E)xXnItE)a -I$I$1I$I$1$E)!z@I$%)*E)!I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$11 E)!* I$I$E)$!$H$E)!z^WI$IE)!UUյ  @$E)!I$I$!!( E)!-+*I$I$E)$!$H$E)!I$IE)!E)!I$I$1I$I$1I$I$1@$H$E)!I$IE)$!E)!I$I$1I$I$1 E)! $C&$!`$I!$!-I$I$1I$I$1I$I$1$E)!H$I$E)! $!E)!I$I$e) @$$!I$I$E)aI$I! $!* I$I$)$!?MtmH % I$I$PHIvmXH/+/%X+% ywT $q/ 11R + 4-!eR@ DZ43DZ44I$I$%44I$I$%44I$I$%41 %41%44I$I$%4) DZPp@@D)蹧%5D|2'E^^4)DZ 44I$I$%4/P4@DZǩ4/DDZǩ?44I$I$%44I$I$%44I$I$%4/@ DZǩ4,2 0DZ@B4)6DZ44I$I$%43%43II$%4 DZ1@4$DZ1@U4IDZ1UU4$?1UUU-HO$1TUUU I$9E)* i$91U lk'9e)W mk'9E)_ F$9E)U$v$1E)&:1E){Iɚ1! ALȄ1E)úې$1E) )D҆1E) nO9e)* tB'M:91__dB&@1E)~~I$ 1E) I$ 1%)I$1E)WWI$H1E)! 1E) d 9E) j 9E) S;[-91 OH9E)* vb'R I9E) ! X1ps%yX /-?#Ef1UUTTI۶m 1E)  e)E)H$ e)E) C0e)$! !Ae)$! $@&d$1E)WI$1E) ВI$9E)UU @$9E) U 9e) & 91 Mۀ91 m6ml91 vmۤ91 Pmڦ91 $91?Ey9UUU(I$%9*UU/ ɝ$1 U3  IA/H$H䧩ETTT3TA IE 1)IDZW-L$L$EVWVT1%PR)זDZ1H$IDETT,ɒ"1E@`I$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h%ID@E5%p$N$E\WWUI$I$hdB2 EEy k %yi Lb'%q9VX` I A$BD! $C$A91 I$L$9f1  91 ** I$I$BD! I$IBD! II BD! L&$C91 $@d$91** 91 I$I$BD! I$I$BD! $#'9`XdIX1 %X$I$f1bTUT FI@9I$r Ѧ1e)B"%J$81I$I$@! ɟA8UՕ5 M'#9a\X1 I1a I$I$9F1I$I$9F1 I:1 `&91۲mۆm1e)~'j"41zXx A1A I$I$)I) 9F1@1E)I$I$11! 11 + C:C(91_zkh%`1E)VX`I$I$E)$!SĆ1E) %U `W91UU kÚa91 @$11 t91 / I$I$BD! I$I$BD! I$I$B$! 91ꪪ !I$ 91 #"@9%`Oq{`@/  1W%yX++ ` SE%qE%yI$I$hI$I$hI$Ih-24@E%yࠠ گ=R",%y9PPP@ I$I$BD! 91 I$L91 $I91 91  I$I$BD! B$! @$:1 c$I91 [m9e)z I$s59E)UW^xI$I$)(I$I$e)E)/ݐNɔ1E)   |9! k6@;`91I$I$)I)I$)I) @$9F1"1@Ie)U ٶm1E)$I$1f1I$)I)I$)I) I$I$9F1L21e)I$I$11I$1e)H$I$)I)I$I$)I)I$I$)I)HI$)I)9F1 R"Ȓ$I1!P Im1I$v&1E)UUWXE) I$1E)%UUM閘1E) ۆm91 I$I$9F1  I $91 I$I$9F1 I$:1 B$! `91 I$L091 !I$91  $$91 M$J"1TW0 9 I$I$B$! -9%)h `@91 I$`91  $I$91 @ $91 @ B$! I$I$9F1  $I$91 L$HD1VW0 &$9C# 1E)^ꨀI$b1E)UUXI$I$E)$!L$H$%)XVXi۶1 @ $1E)*U'1pX ɐD1 5 I&@m9111$HL$11 11 IB&I11I$H 11I$I$9 I$11 11/I$I$)I)I$I$)I)I$I$)I)I$I$)I)I$I$)I)I$I$)I)H1f1I$1f1I$I$11$i"I1$!@Ie)(U4HM1!11H1E)4I$I$g9*@11I11H$@ 11I$I$9!$I$1f1HI$11, I$I$11*I$H11+I$9 I$d11UU_d$d01e)I$I$9жm61E) I$1E)M$1E)mf;1E) _0 1E)@I$11 *IB2D$11ꀠI 11+ I$H 11I$I 11몀I$I$11?$I$11I$11.$I$11 %H1I$I$H@r-U`H//yw7fa-+"6",9`@I$I$g9*I$I$g9*I$I$g9*X4 1ap`IXD@1a5- I$I$9 9 H$9 I9 @ 9 I$I$9!&#Ȇ1x`If1a-5% 9 I$I$9 I$I$9  @ 9 I$I$9!I$I$9!I$I9! 9 I$9 I$@ 9!I$I$9!I$I$9! 9 I9 H$K$H1{{`8*5 yS7ufi----%S2%B"$1PPPP 1E)@$1E)$1e) I$1E)*I$1E)$I$1E)I$I$9I$I$9I$I$9I$I9&H%e)@PTP f1 $1$! M1!M$1!X۶mE)!I$I$E)$!I$I$1IE)!@E)!Z E)!H$I E)!I$If1E)UUUI$1E)UU$ P$E)T e)E)I$I$1e)I$I$@!I$I$@!I$I$@!I$I$9I$I$9I$I$9 1E)@$1E)$I$1E)I$I$1"I$I1E)I1E) 1E)I$I$9I$I$9I$I$@!I$I$@!I$I$@!I$I$@!@$e)%)$I$e)%)I$I$1 I$Ie)%) I e)%) @$@!()$Ie) @I$IE)?$e)E)$I$e)E) @$)( I$$E)!hW$I$E)!^UUI$I$E)I$I$E)I$IE)!UU-M$m,E)^VZ@ PD E) !I$e)E)+ @$@!@$I$1"I$I1"I @!$H$e)E)I$I$e)E)$I0E)@I$E)I$I$@!I$I$@!I$I$@!H$@!I$I$e)E)I$I$e)E)I$Ie)E)  $I$e)E) I$I$1"I$I$e)E) 0E)!`I$ME)?E)  2E)! I&L$E)!I$IE)!I!H&E)!$I$E)!$!I$@E)!  )(I$I$)( H$)(I$I1I)(@$)( $I$1I$IE)$!*I$E)!*   )($I$1I$I1I$I$1I$I$E)$!I$IE)$!*  @$E)! IdI$XE)UUpSwEX//(`/s%y +-/&P N+4/) IDZ +44I$I$%44I$I$%44I$I$%41 %41ɐ K$%488DZE)pppp @$E)! E)!$@$$! !*I$I$E)aI$IE)!UIȐ$AE)!. I)(h4dE)a& L$E)a+^!E)+I$I$E)$!  E)!jꪪI„ E)վ*!I$IE)$!+ I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$E)!I$I$1I$I$E)!* I$I$E)$!$H$E)!I$I$!!*  @$E)!I$Ie) E)!I$I$1$H$E)!I$IE)$!E)!I$I$1I$I$1I$I$1$I$e)I$Ie) E)!I$I$1I$I$1I$I$1@$H$e)dB&C%)xxI A%)A/+I$I$1I$I$1 E)!@$I$E)!I$IE)!d$H$%)zXX` I$!a --$$!H$I$!I$I$E)aI$!** I$I$e)I$HH$!5% I$I$!`AI!IXH+ /qP/ {w/efi/+ -qNPf+3+1uJ@) 43 DZ 44I$I$%44I$I$%44I$I$%44I$I$%41 `%41 I%44I$I$%4$DZET4%vhDZD%S5E蹆xb4%%@DZ *44I$I$%41`%%3/IH$DZǩ41%43@$%43%41`%41ɐ%4 DZ1@4$1`U4`'ɟ$1ZUU4@$DZ1PUUU $9e)_ n$9E)WFm$1E)UD$1E)WUI$1E)~UU$I$e)E)UUU$I$e)!I$IBe)!!! 1E)UI$I1E)__ I$m1E)*iӶ۰ 1E)Ʉ1$!5 I: 9E) c?/ 9E)__ m+@9E)UU 19e) Ւ91 I$9E) kI91UU I91 dB91_ m691 Nb'691UW 1 @91  91 )nm91   $I$91 $I$9e) ڿ[ P1 pWy{iP ---DB%%q9TTPP dm91 #H91 IDr9e)W* $ 9E)_z % H9E) I$m 9E)UUcۭ H1E)m۶ 1E)$)(I$I$1$I$e)E)UUUM$Mڶe)!V r$9E)U 9E)U [w91 I$H91 M$M%91_X I$91  I$91 @@I9e)P,Of1)UUU/ 0I$9UU1 D93+HR$DZ⪯1),E@@@@,ɔ@9IE%)@%H$EPXTVI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h%1(Q"%EMAQPI$I$hI$I$hhk5ۊmE%y~ :Z %y%ah I$m6q9UVX` I$H$BD! `B2$I9f1 I$I$9F1 !91 I$I$A) $IF9$! I$IBD! M$h91 !!A91 /+ I$I$BD! I$I$BD! 9p t 9  cm9X@ I1bU$)"$81UI$I$80II@8 CdI@1`PXT &I91$C$ 11 I)I)I$I$9F1I$I$9F1 B$! k5 `91"II1E)l 11I$ )I)$1e) I$I9F1 k4 `91I$I$11  I$91/ I$-91UW|M2'#̦1E)W^xI$I$1I1E) % `W91U k&[ӭ91I$I$11* P)d91 / I$I$B$! I$I$BD! 9@ XI$1A, ,1Vh9E)`NƣH) R1wiP +-- PN&R%yi +$!EEyI$I$hI$I$hI1'fEM]dB2$CE%y* h@Ey9@IiU 09E) @91 $I2 091 !I$91+ 91 I$I$9F1 B$! I$I$B$!  A) c91xI$X1E) E)@ HE)!@L$IE)U(  I9%) h m91 $C&L&91H$I)I)IA$)I)% 1$I$`1f1 $I$11 $I!1f1 I$I$)I)$I$)I) 9F1 1e)I$L01f1 I$1f1 *I$I)I)I$I$)I)I$I$)I)I$)I)9F19F1%@1`P@ f1I$I$1 E)@@ )1 o1E) m[b91 I$I9F1 I$H$9F1  $I$9F1 I$:1 I$I$B$! L&91* I$I$91 I$91* 91 I$I$B$! Я$P)9$!XVXh 09%)   I$I$B$! H091ꪪ I$I$91  $I$91 @!91 I$:1 I$I$9F1  $I$9F1 @ $91* I%691Wzm1E)XI$X`1E)UUXI$I$E)$!I$I$E)$!E)` ֶ1 "%J&1p\ZN1 L&H1e)I! 11* @$I$11  11 dB$I11I$$C11I$I$11 $I$11I$111f1 I$I$)I)I$I$)I)I$I$)I) $I$)I)I I$)I)I$)I)LB$ 11J$I1$!I$A11I$I$9!@d$11^W!11= 11I$11*I$I$g9*H11I 11I$11I$I$11I$I$9 I$I$11?@$I$11𾯿I$11 [m؆m1E)#$1E)I$1E)I$I1%)d$d2e)E)^W^xI$I$E)!I$I$E)$!*&$I$1!I$1E)UU $1E)UU$HvĦ1E)U$ $1%) (9e)I 11. I&@ 91[%H$H1I$IPH ywyqP-- ySf%q-+"%X'1pXX\+&L$1a\\` 1 $111f1  I$1f1@11I11I11IBH11I$@$11LB$@11W / C11u*I$I1E) I$I$9 I$I$9 I$I$9 I$I$9 I$9 I$@9!Š9K$f1aXXNI1b-`Öm1E) $I$9!I$I$9!I$I$9!I$9!H$I$9!H@(WNTa85**  17fi---/#B"$J$f1PPTT@$@$9I$I9I$A 1E)I$I96l51E)z1E)U@M;f1$! I6f1$!m$f1!ֵmf1! C$IE)h*$%)$!E)$!ꪪI E)!H E)!I$I$1I$I$E)!I$IE)! I$L1!*I$1E)UU e)$!1E)I$I$1e)I$I$@!I$Pf1UV f1 I$I$1E)I$I$1e)I$I$9I$I$9I$I$f1e)$1E)$I$1"I$I$1"I$I1E)$I81p` f1 %I$I$9I$I$9I$I$9I$I$9I$I$9I$I$@!$e)%)$I2e)E)j$IDE)I$Ie)$!Ie)$! $e)%) H$)e)@e)E)I$I1"۶m%e)!pnIe)! % E)$!`$E)!pW`$I$E)!pWUUI$I$E)I$I$E)I$IE)!UU IE)! !I$Ie)E)*Ie)E)*@!@$I$1"I$I1"I @!$I$1"I$I$e)E)h$E)!TU0e)!e)!Ie)I$I$@!I$I$@!$e)%)@$I$e)E)I$I$e)E) I e)E)* I$e)E)H$I$e)E)I$I$e)E) * I$I$e)E)I$I$1 I$I$e)E)$E)!@$I$E)!I$IE)! @$E)!H$I$e)!$I2E)j I$IE)U$E)!$)()(@4E)`` IdE)b@$)(H$I$1II1)(I$I$)(@ @$)( E)!@I$I$E)$!I$I$E)$!I$I 1 H$1E) I$I$1 SIhE) %%Rwfi /-- Nf -1, o41 %44I$I$%4- DZ4DZE*41H%,%480DZE1ppp` I&L$E)!VUH$I$$!!p\UU@ !!I E)!յI$I$E)$!* )( ,ذmE)@I$Il%)a6 IB&E)b^zI$dE)b E)!I$I$E)$!IE)!* %E)pI$H$E)!I$I$1I$I$E)$! E)!E) I$I$1I$I$1I$I$1I$I$E)!I$I$1I$I$E)!* I$I$E)$! @$E)$!I$Ie)  @$E)!I$I$$!! IE)!I$I$1$H$E)!I$Ie) E)!I$I$1I$I$1I$I$1 E)$!ꪪI$Ie) E)!I$I$1I$I$1I$I$1$H$%)$!I$IE)$!E)$!I$I$1I$I$1I$I$1$H$E)!I$I$e) E)! B$I$! $!H$I$!I$I$E)aI $!* I$I$$!!I H$!U%%H$I$HAI PH*  ɝiP/ .efa/+ ejf%q^X3  %y41ِ0DZ* 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4-I; DZǩ4/DZǩ4H$HDZETTT4%` @-,DZ`DilF*4%nDŽ DZ4)DZ4,&DZ|\4/i"%@4DZǩ4/)DZǩ 43@ %4$DZ1T4$DZ1UU1$DZ1@UUU lk'9e)_ɤN1$!$N$1E)WU$I$1E)WUU@$I$E)$!I$I$E)$!I$I 1E)UUիI$6) 1E)UU*Ib&1E)U %9A9E)U m9E) Ib91U vv691U 1 91 -k&91 m11 ̰m۶m9e)& $I$91 X$I$91  91 ɐ 91* dB&d91 p 91 K$Kl91 I$I2`91 I$I,91 I$I91 !! 91 ")DJ91ࠪ ! I91  I$BD!  BD! I$%91X ,"IH9UqWxiP=T&|$y9PRBB $d91 M$ض 91 m6[ 91 II91 $@2$091 $I$91 I$91 D91z* vڶ9E) ~֜9E)W ?mI9E)UWzI$ @1E)UUuI$I61E)UUU~I$I$1$$I$1E)UUU`I$1E) UU V9E)U .9E) m 91 I$@91 II91 0m&91 91(+ $I$9UUU/I$f1UU+ $i䆡9ֶmE%y $E%yhI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h!IIEU!H'I$ETTUUI$I$hI$I$hI$I$h@ E%y @E%y~~ c1 %y%Yh I$HB&%i9UUVX A) H&9f1  I$9f1 *   I$km91 ݐ$I&91 I91 hm91^ &9E)_ Ib? i9E)U_I$1E)UU_I$I$e)E)UU\tI$1E)+UUP$1E)U d79E) m J91 I$I$91 m691 t91 I$I$B$!m%y9UUU I'Ey9UIEy1@$EEy$E%yI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h$ EEy m%y%q` N8P0q9\p H$I$eQ9UUUT  I$BD! I$H$91 ! 91 ** H$I$BD! I$I$BD! $A) h4غm91 !A$ 91 I$91 I$I$BD! I$IBD! H$I$98TTUUI$I@! {efA@U%iѴm۶$I1TUUU HA!91 / I$k91I$)I)  91 H$91X$@ 1bP\p T@ 9a %  I$I$B$! @$91 B$! IB&`091I$I$)I)9F1I$9F1I9F1I$I$9F1 M&[391W~I$I$9 ݖbɐd91 1=#9%)IB'ц1E)UV\pI$I$1Ħ1E) - ۖm11L&C1f1I$I$11* C9$M9E)`r ɐd9E)%% I$I$BD! I$I$BD! < @9.w`@ //pJS%y` +- @ E%yhI$I$h $I$fEUUUI$I$h$H2 EEy-R)%y1TPP@ D9 I$I$BD! 91 I9E) L&91 IIȐ91 $@91* @@9e)@ I $I9e)%+ I$I$B$! I$BD! XZ`91 k2# 9E)^d&K&1bjZVX E)bI$I$1E) `nI9E)*  l91 +/ L&C91@$H$)I)I$ )I) I"%1@P $AJ1 Iڴh 91$A$I2111e)I$I$9F1I$I$9F1  :1 dB 91 I$`091I$I$g9*H$ )I)#H1!P@ɑ1 =I$I$)I) $9F1I$I$9F1 {" I1!\0 $ 9E)UI$v%1E)UUWXI$I$1$A$CE)!TI1$! % 4I]9E) "IDH1%)@ " $I9e)j* I$I9E) I$I$9F1  $:1 I$I$B$! L$91* I$I$91 I91 91 I$I$BD! I$I$B$! I$I$B$! I$I$B$! 91 I$91 I$I$91 I$91 $)I) LB2$A91ꪪ I$L$91  I91 A$:1 N"2H 91W öZ I9E)I& 1E)UVI$I%1$!E) I$I$1I$I$1E)UUUI$1E)UMf;1$!$1%) $11I$ 1e)I$I 11*$ȄI$1f1($1f1H1f1I$@1f1I$I$11 $I$11I$11 J@m1E)11I$I$)I) &L&11\W\@!@11 I$I$g9*P$@ 1p\pX1i01b %bHI$e)bI$I1E)? I$$I1f1$I 11@1I$I$9!$I$11WUWmI$11eU$1111 I$I$g9*I$I$g9*I$I$g9*H$H$11I11 I$11#@1 `ɟ\$1? I$I$11$I$11 $I$11 ֶI$91WU-۲$@1$I$P@+* 11WiP----nfa o'~$E1\^^WId$11W11  I11@21111- )l&I1E)I$I$11//11 I$I$g9* 11I$I$9 I$I$9 h@&1Ax 1 I$I$9 I$I$9 I$I$9 I$I$9 I$I$9 $9 H$H$9!I$I$'9#@$ 1e)   1e)**@$$1E)($1E) $1e) ")8f1$IH8wq`@+`nsE$1 kkm$f1$!+CH1$!Ibے f1$! il1E)Im۶m1$!(0۶m1E)@$I$1E) $I$1E)He)A0I$I$9I$I$9I$I$f1e)I$I1E)H$1E)I$$9I$I$9I$I$9I$I$9۶m6,1E)j۶mِl1E)IH$1E)I$I$9I$I$1e)I$I$@!f1E)jIH1I$1E)R1!Z 1e)$1e)$I$1e)$I$1e)I$I$9I$I$9I$I$9I$I$9@$1E)$I$1E)H$I$1"I$I1E)I1E)1E)I$I$@!I$I$@!I$I$@!I$I$@!$e)%)$I$e)%) e)E)`$E)!pW$I$E)!\UU !I$I!mmE)!UUU%mvE)* E)!/I$Ie)E)*I1E)I$I$9I$I$@!I$I$@! @!H$@!"I$Ie)I$I1E)0f1$! I$I$9I$I$9I$I$9I$I$9 @! H$@!$I-'e)X$Ie) Ie)%) I$I$@! H$@!H$I$1"I$I$1"I$I$1"I$I$e)E)E)@5m۶E)`પI A%)b5L&@&$!bTPPP !bI$IE)!  $E)!/@&E)!@PT0 E)  I$I$1  E)!I$E)!?/I$I$)( H$)(I$I$1I)(1 I$I$1 I$I$)(I$I$)(`-E)@I$I$E)$!*I$ 1 @$)(H$ 1 $I$1H$ )( e)E) $e)$! $I2E)!j$I$E)!j^UUII$X!UUNw%( **(N1wE --1% r*)3/aB&$0ǩ4/DZǩ /44I$I$%44I$I$%4H$XETTP MEi!VVVT E)!*IE)!  )(H$I$E)!L$HE)a^WܰٚEE)b IE)a&5I$I$E)$!k5ۺE)axI E)5 I$1A$I$1I$I$1I$I$1I$I$1I1I$H$1I$I$1I$I$1I$I$E)!I$I$1I$IE)!* $H$1 @$E)!I$I$e)I I$$!!!4IE) / I$I$1 @$E)!I$Ie) E)!I$I$1I$I$1I$I$E)$!I$I$1I$He)IE)!I$I$E)$!I$I$E)$!I$I$E)$!H$E) @$$!$E)* pE)!I$I$1I$I$E)!*  @$E)!I$I$e)I E)!$E)$!@$H$e) @ $!I$I!I$I$E)aI$$!! %)$! @$8%)-I$I$80II@8/w1u%yH--" ywT $q+/qN f+ 4J"m EyT4#0DZ43H$@$%43%44I$I$%44I$I$%43 %43 I%44I$I$%4  DZE@@@@4DZE4/h P 4DZǩ4/P)DZǩ 4@$DZ1PU4$I$DZ1@TUUHN$1E)$I$1E)I$I$e)E) I$I1E)WI$I 1E)]߫ I&9E) Inm91U IM$91 m$91 K$m91 I$!91 I 91着 mtI91 M91׾ Hv91 @$91*  I$91 $I91 KD9%) [m91 !I91 @$9f1PP I$I$BD! II$BD! H$HBD! @$H$BD!  $BD! %9f1X $J-R9f1/- ۰m[%91 ٖl91 PH$I91P I$BD! J$$I91TT $ 2-9e) bb @ٔM9e))) I$I$BD! I$$BD! IȐ$A91 I$@BD! H$91* ۲ml91ꪠ  91 P@9 P )@`@  )X9TPPP $$%9e)P ے691 Id91? I $BD! A) @$@`91 ٖa91 I$@BD! I$aBBD! I$I$BD! I$I$BD! Ka۶m91> I$H$BD! dB&$ 91 vL$I91 N 91֠ ڶ{9E)VT I$91/ b"I1$91 Oڀ9E) ORk i9E)UI$1E)UU~ $I&e)$! I$1E) UU `w9E)+U *H喸9E) IV91  $I$91 ۺ59E) I9e)*'O$%y9UUU`mR'%y1UUMEy1mݖvE%y $E%yI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hh[lE%yꪪ c %yi蠀 ۺr i9XX` I$)9E)@ ۺa 91 I$I$91 $ 91 ** I$IBD! I$I$BD! I BD! L&@ 9f1 I$I$9F1 I$I$BD!  @$98@@PTI$I$80I @8//0H1`XXVI$L$91 I$91UU (@91 $C&L$91 I$91  @$I&91 L$@"91I$I$91 @!91I$I$9F1   9e)  91ꪪ I$`091I$I$g9*9F1I$I$9F1I$I$9F1 B$! I&X91W^zI$I$9 EӢɐd91{/ kզ1e)M&h41E)UW^xI$I$1Ħ1E) %۰ ۖm11 M&[Ӣ91I$I$9! )91/ I$I$BD! I$I$BD! I$I$BD!  H9 R/%qP+/ V%yi $@!AEEyI$I$hI$I$hI$I$hdB$C2hH@%y@IdI 1U  91 * I$I$BD! I$I$BD! I$I$BD! H$91 I$I$91  $91  9E)(, I$I$B$! I$I$B$! $I$B$! [3`91 "h9`m۠ Ȇ1E)I$I$1 I$I$)($1E)/ M91 / [691 L$d$91H%`1b\P@ 1b  $D1 5 ٰ91E)` I1E) @ 1f1 *I$I$9F1I$I$9F1 I$:1 @$I$9F1 IB&91I$I$g9*I$$11I$H$)I)1$!I$I$)I)I$)I)9F1 $B$I91ꪪ$#1E)I2'i1E)UT`I$I$e)E)UUUTI$H$E)! 6aN$1E)-UUM1E) $11 `1@ I1b 7Օ I$I$9F1  I$9F1 B$! I$I$B$! ! 91* I$I$91 I$91 91 I$I$BD! I$I$B$! I$I$B$! I$I$B$! 91 I&91~'1 ^\ PIdI9%)* @!91 ! @91 $I291II)I)  91 91Z** u: `91UWN6[ l1E)WjI$kl1E)UUVI$I$1I$I$1@$@ E)!z^Zhmۆ1!- IĆ1E) rm9e)*6ِ11I&@1e)I$ 1f1I$I$11* $1E)T1%)I11I$11I$I 11I$I$9!@L$11WU $11I$I$g9*$10111E)I 1$A"1$!@I1(U%C1@PB 1I11LB2 11Wz@J$1b0W6mH1  9 I$I$9 $I$11I$11HI$11 *11:I$I$g9*H$H$1111 @$H$11 9 I$9!(81UUUH$LBH8TVV!!HH8u%yH=+%.Mf%YjM'_Y1VTUUI$`11UW iLA91)Ndž1E)W\mV`1E)  11յ-11I$I$11I$I$9 $I$9! 9 @11I 11*M&#i1a\x 1a I$I$9!@$I$9!I$I$9! 9 $9 I$I$9! 9  @$9 @$H$1E)I$I$f1e)I$I$9  1e) H$H$1E) @ ĂHe)I P8 1S0SX@/,,- s7!EE1kkBBI$I$9I$I$9I$I$1E)I$I$9I$I1E)I$I1E)I$1E)I$1e) I1E)I'9#@$1E)ꪪI$H 1E)$B$@1E)ꪪ I$H1E)U׾H1E)IH$1E) I$I$1E)$I$1E)@ 1E)ZzI!e)E)I$I1E)I$ 1E) I1E)ꪪI1e) 1e)$1e) H$1e)@$I$1e)I$I$9I$I$9I$I$9I$I$9I$I$1E)$f1!X1!I$I$@!I$@1E)I1E) 1E)I$I$1e)I$I$1e)e)%)I$I$1e)$1E) H$e)%)@$I$e)E) H&E)!x0I$E)!_UH$I$E)!|WUUI$I$E)aI$I$E)aI$IHE)!UU5IE)! I$Ie)E)I$1E)I1E)I$I$9@$e) e)$!I$I$9 @!H$I$1"I$I1E)I1E) f1!@L$LE)ז(e)$!I$I$9I$I$9$@!@$I$1"I$I@!N"'He)VX1e) I$I$@! @!I$I$1"I$I$1"I$I$1"$E)$!L$E)!H$I„$!bTWV$E) $I$E)!LB&$C$!bTP@I0E)b% 1 I$I$1 @E)!P@0E) I$I$)(I$I$1 $)(@$I$1I$I1 1 I$I$1 I$I$)(I$I$)( )($I$1@$`0%)bPTP@ِ )E)bI$I$)(@ )()(He)E)W߿ e)E) @$e)$! Id$E)!z^@$I$$!!PVUUI$I$E)aI$I$!!UU Pyh$) %%R7fi ---` /wf+/3-ݖv ++3/I$HB0DZǩ4/PDZǩ44I$I$%43 DZ3p'p'E!XXXXI)(I$I$1 @ )(I$I$1I$I1@$H$1 E)I$I1)(I$I$)(I$I$)(I$ )(I$I$1I$I$1II$1 @$1I$I$1I$I$1I$I$E)$!I$I$1I E)!* $H$1 @$E)!I$I$e)I$I$e) $!@I$I!a,l۶mE)$@$E)!I$Ie) E)!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1E)!H$!0 E)!/H$H$$!ax^x! $$!b z%) $E)!H$I$e)IIE)! $E)!I$I$e)@$I$$!!`PTI$I$E)a@!*I$I$$!!5E)!I $H%)5  2 H8vxI$I@8ivP8/+ISwuEP%--?-qN E+ 3)qJ@ - 41DZ 44I$I$%43@ %41[ %44I$I$%44I$I$%44I$I$%41؂ml%43%44I$I$%4DZ14/ DZǩ4/m$DZǩ/*4H$H$DZe)TTTTI$I$e)E)ꪠI$I1E)?I$I1%)>n 1E) $ )1 @@  IٔM9! $I91 I$ A91 MD9e) Z%H9!ZP P`91 91 !91 $I91 I$I91 I$91* I91* 91* I$I$BD!  91  91 H$91 A$91 @%(A91XZ  91 aۖ9f1? @RLD91  91 b"q@9f1X ٶmm91 H$91  9e) * I$BD! IA) $)Id91 ivv91 $I,)9E)*@ $I 9E)  ۰ ؐ$91 ؆mؖ$91  `ۖ$91 I@;9f15 91 $I$BD! @  @9 a8 C{x9PJkk ZM$I9e)X  %@@91XP ٖm91 I$I$BD!  9E)@ ɟH9E) JDI91 -+ @ L$91 $A) $A$A) A) $)H %91 I$IA) I$I2BD! $I$BD! H I9f1 I$BD! $C91 I5m91 I$`91 I$91/ @91 #49E) Obl 9E)UI$km1E)UU_$IB&e)E)U^ `9E)+U TII$9E) c#` 9E) q" h9E) mڦ91 `91 H$Gq1 @R-%yi+ @ !Eyq $@$EEyhI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h@ hk5ۊmE%y~ 3 %yix蠀 &%i~Xp  9 dB2$H91 I$I$9F1 @!9f1 @A) @$A) IBD! M6[3491 $)98@ H$I$98TUUUI$I88/k[va EA@U%ݰvm6$I1TUUU *hO91⭵I$L&11  I$91- X,91 I$L91H$@ )I) !!A91 I$`091I$I$g9*4#1`` IP9// 91 91 I$H$91 i*-1E)@'O$f1aZVV7I1a - $B$! B$! M&@9f1I$I$9! c`S91z믿 k9e)I$k41E)UW^xI$I$1.؆1E) - Mm91 M&C9111  91 / I$I$BD! I$I$B$! @4ȣH9%%%pSw`@ //pJS%y` +- @ E%yhI$I$hI$I$hI$I$h۲؊mE%y %y1TTPP $$L$91 @91 + I$I$BD! I$I$BD! x9E)( @ 091 $C2H91Nu1!* @91 I$I$B$! I$I$B$! I$I$B$! [mv91* m 91I$1E)$ :E)`P)E) %I$1%) / PR/9E) *+ -R91 m&[91@ l1 `I 1b."iI1E) Iҭn91뫯I$ 11** I$g9*`غ%11P0 11I$I$9F1 B$! `2 91ꪪL$d1f1 8Ȇ1`pI1b %5  @$9F1I$I$)I)  91 I$ $9F1 I$I$9F11e)mՒH1E)zN$tц1E)UU^I$I$1 $A$1$PI$1E) U*o1E) MJI1& $I&L&91 $I 91 I$H :1 I$:1 B$! 91 I&91 I$I&91 I$91 91* I$I$BD! `@99h @/9 - I$I$B$! ` P9$!ؠ !)91ꪪ  &$091 &9E)*z^ 0o9E) @ :1 I :1 *9j'9xx p9T9 -- `@91 NB:91U l9E)_I&X 1E)UWI$I&e)!@$E)!^I$I$E)$!* $&L$e)E)]WUnI$1E) U0I햸1E)*@ 6ۦ1e) n11 uB'+q1!^^ )I1E)  11  11$1f1@11M% `11WPI 11(I$11jI$r f1bWV p I1B"11@OO$1b VW1  1I$I$g9*1E)A$I$)I)11NBǐ1bV 1E)H11I 11I$11I$I11I$I$11@$H9! 9!$I$11*UU@$C&11_$11*$2I11{hI9!% أ@1I$AP8+Ri@/+7uwfi-&*=>fE)pzzI$1E)UUU`v$1E)UU вI$9E) UUhmI$1E)UUMۆ1E) U 6$1E)U $$$9E)U @$$9E)UI#$1E)U" $1E)ۖ$1E)`1e)9 I$I$9 I$I$9 I$I$9 @9 I9 9 $9 $1E)$ d;1E)#$1$!W$$$1$!U$1!U$HۖĆ1$!lm$1E)U$v$1!_@"%vbb@%)I AP85* yyi@= dR_if1PPPP 1E) 1$!*&I$I$'9#I$I$'9#I$I$'9#I$I$9!I$I$'9#I$I$9!$1e)$1e)I$1E) I$1E) yr$f1b V$IJ1$!I$I$9I$I9I$I1E)I1E) ( 1E)@M$1b Ć1(1e) 1e)$I$1e)@$I$1e)I$I$9I$I$9I$I1e)I$I$1e)I$$1E)I$I$1E)I$I$1E) 8e)b`c;e)bꩥ1 & f1-) II$1E) f1!@ I$f1a(1E)I$I$f1e)ꪪ  e)E) LE)!I!Ie)E)$e)E)W$$E)!jWC&I$E)!ZUUI$I$$!!TUUUI$I$E)I$IE)!UUխI$ E)!U*!I$E)!)I$Ie)E)I1E)I$I$1e)I$I$9I$I$90`'e)`XXI$IE)bVW+e)I$I$@!I$I$f1e) 9I$I$9I$I$9I$I$9He)$!I$I$9I$I$9I$I$@!@ @!I@!I$I$@!I$I$@!@$H$1"@!I$I$@!H1e)`0 e) % $e)!$I$E)!I$ E)!/ IHd$E)!@$I$!! I!AE)!+!AE)$!I$I$1 I$I$e)E)*I$I$e)E)*I$I$)(4E) pE)  @$)( I$E)!Ie)E)UխE) I$I$1 h$E)^E) E)!@$I$1I$ 1$ E)!)(I$I$)( E) ːdE) &I$I$e)E) H$e)$! I2L$E)!^WI$I$$!!TUUUI$I$E)aI$IE)!UU $AE)!  $IXE)UUU`swy0 *%`N/w%y +/1"MR +-3/C"$ǩʊ4/I$DZǩ?43%44I$I$%3p'@0E)X\``I$I$e)E)I$I$)()(@ )(I@$1H$I$1I$I$1)(I$I$)(I$I$)( )(H$I$1I$I1I @ 1I$I$1I$I$1I$I$1I$I$E)$!I$I$1I E)!* $H$E)! $E)!ZI$Ie)I $e)I$I$e)IE)!*I$I$E)$!*&E)x $! % E)!I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$1I$I$1E)!I$I$E)$!H$L$$!axxI$I!a{ !@%)b% H$I$E)!I E)!I$I$1 2E) $!I$I$E)aI$I$E)aI$ $!!5I1II$H%)U5H$I$H$9[-6`P8h I$AH8+ {/eiH+wvEX=+1  E + 4 E44I$I$%44I$I$%44I$I$%43I$H$%40,DZE```4 DZE44I$I$%43 %4$DZ1@T4$I$DZe)PUU4II$DZe)UU4/ Ij&DZ3,K'VTT3@$B"ৱf1PPP@ &@9e) kv91U -M$9f1 ERNd 1e)* dB1f1 m%@`11PP 91 -9f1`j PIm91 C2$I91zdID1E)( !91 ! 91 I91 $91 @$91  I$:1 $I$91 H$I:1 ۶m91  91* I91  91/ 91   91 I91* I$I$BD! I$I$BD! H I&91 91 $91 $91 ۖ$91 X$K$91 M$T91  $91 T91@ Dn9e)@I$1!UUII$1!UU$1!U -$1 U$I$1!*U0I1! 2IԶ10@Iڦ X8 .pE9j 8#C9E)ppj I91 JDR91 $IJ91 ")$9E)@@ I9E) IIBD! Kmðm91 $I I&91 h91 $I$BD! @vMt91* @ $A) A) A) I$A) IJD91* @L$91( I $BD! I$A) $IR%9E)PP N,,91 @R 91% `SN$91* Z@@N9f1x* *9E) I9E)UW $I$f1E)6a۱ۆ1E)*  I$9E)+  @w91 C:-@91__x n`1UUU r`f9 )Iw%ya + ` 1PEy%q  E%yI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h@$E%y @E%y_~ %yaz蠀  di9W\\p  A) L&$C91 II$91* *59` 9a ,X$9p\ 9 % "%P$98@PPTI$I$@!  !H8/I$ H1`XXVI$I$'9# I115C$A11I$H$11 I$91?U X 91 I$I$9F1 @$91 B$! I$`091 I$)I)  09e)% I$I$B$! I$I$B$! 91ਠ $C" 91O21a^  9b5 @$@$:1 I$I$9F1 B$! I$X9f1 I$%1!   C1e)11$9F1 0I$91 `$IH91 I091  9f1+ I$I$B$! K&{m91֪ `$91 I91 IHdH91 $I &9$!X 49e)  I91* H$91 I$I$B$! H91 @&91 PB'91 X_ m691 m&91 @Ҷm;91_ mh;9E) d'1$!_ k$1!UH$1!U $1!Ui$1!UU@n10II$1!I$1!UUĶ'1 UU@I$1 UUPI$1 UU@ɟ1!UUI$ 1!UUI$@1!UUI$1!UUO$d-@1נIm 1!UU I$IH1!UUUI$I"1!UUUX$) ))pS7wEyX/---$H$Ee)UTTTi1E) I1E)/**m&1e) @L줧9E)* u91_UU ` $91  !$91 @$91+ N@I91? A) 4I%91 B 91 91  $I$BD! @dB&91 $AD9E) $C$AA) IB2A) I$@BD! @$I$BD!  $BD! #191`h  91 I91 ФM91 :&91* u4 9E) I$k9E)I$I$9I$A9 Sm9E)/ )It9f1 +@$H9 RwiH +`s%ya +-`JSE%yhI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hH$E%y рHE%qꪪt>:%qEQ` I!Ii9UW\p I$I$BD! LB&`B291`5 1bX` I@9a5  @ 9p !@ 9a I$I$80I$I@8IeA@U% 8r"'f1a`XxBT1A -- 1%) *@L$11 U dB1B91Zj$I! 11 1I$91 % k5Z`91ࠂI$I$)I)$9F1  $91I$H$91  I$91 91 $B$! I$91 @91ꪪ I$L$91  I$91 @$I$:1I$I$9F1 $A$C&91 91* j$z=1A\xTI1  BA`S91b/ dS* 9e)z뮨ز 91E)UW^xH$I$1&I$1E) 5U %@R$9E) * L&91I$I$g9* !I$91 91 p9@ȣH9 %%SqiH-IO%ya +/-E%yhI$I$hI$I$hI$I$h[5؊E%y"P Eq)P  91 R")I1bP@ I$I1b 91 `9 I$I$BD! 91 d&@ 91 II91? 91 * I$I$B$! $H9E)`P` _9E)%% !I$BD! $#@91 #2 9E)zhI$N91E)0`0E)!`X`IE)! 5 o9E)+ R r9E)P * [691 L$d091I$I$)I)I$I )I) !I$91 L$91s$rن1$!XVX 4I1!  $I91 I$I9F1 I$I$9F1  :1 `91 I$H091I$I$g9*II$)I)$@$9F1 I$)I)`@1e)@ 1E) 1%) /H.=1pzH1=IB' 1E)UWpI$I$e)E)UUUTI$I1&a$C&f1!*jZI.1!+-)DI1@I$I1U11 I$:1 KEI1bT !$I91 B$! 91ꪪ I$91I$I$)I) I$91/ 91 I$I$BD! I$I$B$! I$I$B$! I$P H9UT !P9  ` 91** I$`91 11  x91 $291 `0@91ꪪ I$ 91IĐ1E)0 0 ۶m9e)* `m91j #ڀ(91U^lL" I1E)^vb'"!1E)UW@@ ɄE)!:UI$I$E)!)(I$I$)(I$I$1E)?I$1E)U@!$1E)@I&1E)  !$11I@1f1*I$d1f1I$I$11I$I$1f1* 1f1 *II$)I) 11J"D1T$I 81`PIĆ15I$I$9 @L$11WU$11 $11 11I$I$)I)I$I$)I)I$I$g9*I$I$)I) %J&1E)`1`1E)I$I$)I)I $)I)I$I$)I)I$I$g9*I$I$)I) @1UUI$IH0*IxvX8/* ysdEP/++# L!ffa B  ҢC'I1\TWU9 m91`$C&91k0`1E)N"I1E)U*I"i$I1E)UI"ڀI1E)c'$1E)UWIē(l1E)UUmӴ1%)Ib'1!N$)A1$!WUc 1jIm 1aIb'I 1E)UUUI$I1E)UUUvb; 1!_Iu 1A׾I$ 1!UUI$ 1!UIض 1$!UIb'@1$!U_Iĉ @1!I$Ie) I$m71!v$1$!_UI$@1$!UUI$e)$!UihHE)iXH----q1Ea----#2!2!e1@@@@I$I1E)H$1e) I$IB1E)I1E)I$$I1E)I 1E)H1E),X$1XV$I@1 I$I$9!۶a-1E)X$I$f1bTUV01I$I$9!I$I$'9#I$I$'9# @$1p\`11b %1 I$I$'9#$1e)H$H$1E)$I$1e)$I$1E)I$I$@!I$I$1E)I$I1E)I$1E)I$1E) I$9$I$9I$I$9I$I$9R*I$Hf1II$1E)$ d$1E)$I$1E) e)%)$E)!&I$E)!_UH$I$E)!^UUU @$!I!?I$IHE)!UUIE)!U-!E) I$R$1UVa"!f1yd$If1 I$I$9I$I$9I$I$9I$I$1E)I$I$1E)I$I$1e)I$I1E)I$I$1E)  $1E)I$I$9I$I$9I$I$9I$I$9I$I$9I$I$1E)I$I$1e)I$I$@!$@e)@P@ e)I$I$9I$I$@!I$I$@!I$I$@!I$I$@!$e)%)$$e)!2dB&E)!I$IE)!I$E)!I$E)! d$$!m-E) E)@e)!I$I$e)E)I$I$e)E)I$I$1 I$I$1 I$I$1 I$I$1 I$I$)(e)E)? I$I$e)E)E) 1  K$E)TU`lE)I$HE)U<ٶm۰E)[6E)I$I$)(I$I$)(I$I$)(I$Ie)E) ۶m,e)!mE) I$$E)!j^@$I$E)!ZWUUI$I$E)aI$IE)!UUUI$AE)!*Ie)E)խ I e)E)/ @$I$e)E)I$I$1 I$I$XE)UUUpswq1 *)" `S%q +--1"1w -3 (E@3HHǩE4-HDZ3 q@I$1I$I$)( H$)(H$I1I)(I$I$1 E) I$I$)($)(H$I$1I$I1 )( H$)($)( )(H$I$E)!I$I$1I E)!  )($H$E)!I$I$$!! @$!РI$IE)!յ E)!I $E)!*  d$E)!%)$!I$I$1I$I$E)$!I$I$1I$I$E)$!0E)pI!A$!?/ I$I$1I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$! E)$!* @$I$E)!I$IE)!E)! $E)$!I$I$$!!`PI$I$$!!TUUUI$I$E)aI$I$!!U$A"D$$!p\m E) %I @$HE)5 IH$IP@*6i`H/7EX+vX 1xqn4@1- I$I$@!I$1E))tI91U`0$B11I$I$11 !91 /? K5:`91蠀 9F1I$H)I) B$@91몪 I$L&91  I$91 91I$I$9F1  R99`pI9a / I$d&91 I)I) $IJ91؆m,11@I$I$91 #@91z I&X91I$I$11* a%>9E)z`6`1E)I$h41E)UW^xI$I$1!I$1E) 5U  O9e) * kۺ91$H$11 I9f1 / ` $A9UUqYHeA /s%qP +/ Nw%y%q @$E%yI$I$hI$I$hI$I$hH$@ E%y #1%y9@@ I$I$BD! @91 I$H$91 $@I$91 * I$I$BD! I$I$BD! I$I$BD! I$I$BD! I91$I$)I)  91 I$I$BD! I$I$B$! I$I$BD! $I$BD! @B!A) lZ m9e)jvRP 1%)_E)  4e)b`rn1!* PR/9E) *  `n91 M&X l91 R :9x TI1 -I$I$)I)@1e)I$H$)I)I$I$g9* @ 91 H$H$:1I$I$9F1 I$:1 B$! L&91I$I$g9* *91E)pI1E) $9F1#5,m1%)P. 1E)%+hh1@ɐ 1 H )I) 3)l9E)^ꪢm;1E)U_X 0$E)`)E)!% II$1E)-UU`Iq1E)-n11  B$! B$! I$:1 I$I$9F1 I$:1 B$! 91 I$91 $ɒ'1`X 0IO1 91* I$I$BD!  9f1@ u뤧9( 91*  I$I$BD! 91p Ix$9E) d$L$91 m۶-9e)*j ϟ9( 9e)# IB&91 !C&d091I$)I) H 91 mm91* NN 9 ׾qB$ i1E)]i۶ `1E)UUjI$I$1E)UUUzI$I$)($)($H$1$I$e)E) UUI$1E)Mmgdž1E)@RĦ1E)*m11+IB1e)  1f1 I$I$g9* 4@1E)pp)IJ1E) 55 $I1E)@I" 15.H11L11WI$H 11$9   9  $I$11 I$11 $11 $11X`1E)11I$I$g9*I$I$g9*I$I$g9*I$I$)I)11@$@$H1I$IPHյqgSiH// 9u7ufi-/%<53=1`pp@ $9 I9 $@$Ʉ11 2$I11xx$C2 1E)6[6A 1E)+/  11@$H$9 9 @$I$11I$9 9 I$I$9!$I$9 I$11UUH$I$11$I$11$I$11$I$11$I$11$I$11HdB&11__$I$9  I$I21E) I1e)I$I$9!$I$1E)I$I$9I$I$@!hHHe)11SXH-//+1wS1fi----))RRf-- )(I$I$1UUUTI$I$9!@1E)1E)  9!I$I$9!I$I$9!j51Xh01 I$I$'9#l1E)`ਨvv f1*I$I$'9#I$I$'9#I$I$'9# 1e)P,$If1pJ$Ie)b H$N"e)WVf1!I$I$9I$I$1e)I$I1E)I$1E)ꪪI$1E) H$9$I$9I$I$9I$I$9I$I$9I$I$9$1E)m[۴1E)W$I$f1E)I$I&e)$! $E)!^@2I$E)!WU`$I$E)!WUUI$I$d!d I$I$!!5I$ IE)!UUmne)!U0E)I$Ie)%)I$A1E) I1E)I$I$1e)I$I$9I$I$9I$I$9I$I$9I$I$1e)I$I$@!I$I1E)۶-1E)j-1! ?I$@1e)I$I$1e)I$I$9I 1e)I$I$9I$I$9 ;e)h1$! I$I$1e)I$I$9I$I$9@!I$I$@!I$I$@! e)!$@! I&e)$!d$E)!@$IE)!I E)!  $E)!H$IE)!I$E)!/mE)Z@e)! e)!@E))I$I$e)E) I$I$e)E)* I$I$e)E)I$I$1 I$I$)(I$I$e)E)+I$I$e)E)/I$I$e)E)I$I$e)E)I$I$1 I$I$1 KE)bT@$I&E)!W$I$E)! I$I$)(I$I$)(I$I$)(I$I$e)E)꯯/I e)E)/ $I2e)E)z@&h%E)bxh I$%) I$I$E)aI$I$E)aI$IE)!Uյ!I$AE)! I$Ie)E)/  $e)E)H$I$e)E)I$I$1 I$I$e)E)*I$I$e)E)-gXE`weX ]+i 1B"PE@J 3H@E4-&IDZ /?4 `DZ@@@m'a|aɐdE)b -I$I1)(I$I$)(,E)@@I$Id%)a'& H$)(H$I$1I )()(@$@ )(I$I$1I$I$1I$I$E)$!I$I$E)$!II$E)!* $I$E)!&L$E)!x^U !! I$IE)!UUյ E)!I$I$1I$I$E)!I$HE)$!E)!I$I$E)$!I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$E)!* I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$1I$I$E)$!* $H$E)!I$I$$!!XX E)!I$I$1@$@$E)!~I$I$E)I$I$E)aI$I$!!U E)$!k6[ E)hmۆmH- I$I$Q!@DRIX8*w%yP+ {wT fi+ )I $E R%I;EyUw| hIfE4 HE43%44I$I$%4$DZf1@T4$I$DZe)@TUUI!H&1E) $ $I1E)/I1I 1E)NMH1E)/!`$11@$I011$I 11?1f1 Ruٻpe1  Rwfi +%z2ӿ1TPPP$ 1e) !II91 $@$291  d$91 $I91I$I)I)I)I) 9F1[&k11PX @91 0$91 M$91  u[$9E)HĆ1E)$I$1%)$I1%)*$IL1E)$1E)$C$I1E)*I$I21E)`1!`nN01! 3$1E)_ $99E) i۶@91 m6H9e) vv A9e) mӶm91 imm91 M۶m91_ I m91oM$1$! VV m91 i[91+ m @%91XZ I91 I91$R"m1E)PP 0隮91 lɖl9E) 691ذmۖt11% $91 @$091 B*,bH9 WIxiP--b*%1RBBJ H$91 I$I91 i91ꪪ CH91 IR9e) IĶ 91UUa$ 11I$I9!I$1e) $I1E)$A&dB1E)i۶1E)+ ж$9E) @ m9E)* "($91  ` 91  A) I$I$BD! I$ BD! $I$BD! $I$BD!  I9e) H$AA) IB&@A) $I2BD! I$A) A) l؀ 91 m6l91 m I91* hDN9f1p I$Z h9E)I$I$@! $A!H8+/// he1*VVV۹%y1UUU?E9UUUI$E1UUUE9UUU $I$E9UUUE1UUHE1@$EEyI$E%yhI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h$ EEy iEy%qh Ɛq9p a9UUW\ R9 i9E)&@1E)+   "$90@@PI$I$80II@8xq fIHU%I$I$eA1TVUU `B& 91m6k511xXpH$@ 1E)H$@! t1E) //1f1`&C91I$I$9!  91% L$ C91 I :1 I$I$B$! 91ꪪ ۶mZ59e) T1%) % I$I:1 9$!` 95+ `091ꪪ(01`@/XI1A/%/Ь9j">1p1   I91 B$! M&X91&1!xXJM1$! ]m1E)I$r91E)UW\pI$I$E)$!xI$1%)-U  1E) `0H1e)I$I$1f1 m׶91 `@#H9 %51wiH+/pNs%ya +-`JSE%yhI$I$hI$I$hh[5ۊE%yz K$X%%y9TTPP I$I$BD! 91 I$ 91  $I$9F1 $)9b@ 91 I$I$BD! I$I$BD! `91 L$L&91  91 / 91 I$I$B$! I$I$B$! I$I$B$!  A) d"1)I91 N: l9e)W~r$P(e)bX\p 0E)a I$I$1E) n19E)* D 691 / 9x KH9- C$I91ꪪI$I$)I)I$)I)I$)I)I$I$g9*I$)I) $9F1I9F1 $A$ɐ91  :1 91ꪪ >9!zxWTI1! - H$A&1f1$C@1f1 I$)I)X11p1e)  !I$91 I2d$91 IB2!91ꫫ|'P1\X P1EHE)b $E)! E)b鐤I$1E) @n1ا9e) -9f1I$I$9F1 I$:1 I$I$9F1 I$I$9F1 I$:1 91*** p8 9X` dJ9 !$ 91 @L$91* m9f1@ Nl(9׿( 91  9E)@ sO9!U  9$!- I$I$B$! @9e)j Ih9( I$I1%) @a$91 !$91@ 9F1I$9F1I$I$)I) $ 91 $A291  91ꪪ vI9e)N:m1E)_I$1E)UW| e)E)I$I$e)E)**I$I$e)E)H$)(I$I$e)E)+$I$1E)*WWmI$1E)* I$Ć1E) I$11Uېf11!)I I1E)I$$ 1f1I$ 11I11**I$I$g9*$111111I11I$@11I$H 11I$I$9 H$I$9!@!C&11y^I$11UUa$11]U$1111I$I11**+$I$@1ФMڴP8* w1%qP--- q/eNf%q-+"$x$1XTTVI$I$9! $11E)I$I$'9#I$I$'9# $I$9!$I$9!$I$9!$I$9!$I$9!H$I$9!II$9!I$9!HI$9!II$9!I$9!I$9 I$9 I$9 I$9!I$9 I$9!$1e)I$I$'9# 1e)*I$I$9!I 1E)I$1E)I1f)***H$I$HH `P%--fi----+1SJf+++H$H$1TTTP 4@ 1b`pِlIlE)b 6XI1!/5 $I$9!I$I'9#I$I$9!I$I'9#I$H$9!$1e)** $1e)H$1E)  I$1E) $I$1E)H$I$9I$I$901E)z$f1!/5b$1$!I 1E)*I$1e)I$1e)$I$1e)@$I$1e)I$I$9I$I9I$ $9I@$1E)$ d$1E)$I$1E)(1b"'E)`xmɒ$E)KIE)&I&I$E)!zUUH$I$E)!^UUUI$I$d!d I$I$$!!W I$IBE)!UUm&[,E)zP@ XIE)b %5 I1E)IB$A1E) I1E) I$1e)@$I$1e)I$I$9I$ 1e)I$'9#@$I$9I$I$9I$I$9I$ 1E)I1E)$1e) 0,f1!` 6!f1 ? 1e)H$@ 1e)I$I$9$I$1E)I$I$f1e)I$I$9t$`(1^^x1f1 I$I$9I$I$9I$I$@!I$I$9I$I$9$e)%)'J"&e)`XTPnɖn%) `B&dBE)!I$ e)! H$E)!H$I$e)!L$L&$!bhX\p E) II1"I$H$1"I$I$e)E)@$E)``IIE)b%5/I$I$1"I$$e)E)I$I$e)E)I$I$e)E)/I$I e)E)+I$A$e)E)I$I$e)E)I$I$1 I$I$e)E)***$e)E)\m[5E)`) E) m@E) V @E)!$E)! E)bI$Ie)E)/I$e)E) I$I2e)$! $I2E)!j2L$%)I$I$!! IE)!յIE)! I$ e)E)*  @$e)E)I$I$e)E)I$I$e)E)I$I$1 I$I$1  )(N$L"FEQUW 7i$1 " 7W%q --1"&RqDZ+1/ǩ3-M$hDZ4-h!dSǩ /H'\|I0E)A-/ I$I$1 I$I$1 I$I$)()(ˆamE)I$I$1I)(I$I$)(I$I$)(I$I$)(H$$1I$I$E)$!I$I$E)$!*I E)!* H$I$E)$!$H$E)!z^WI$I$E)@$@ !p`IIE)a+ E)!- I $E)!I$I$E)!I$I$1I$I$1I$I$E)$!I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$E)$!* I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$E)$!**$H$E)!I$IE)!I E)!ꪨ $!!$E)!zH$I$E)!^WUUI$I$E)I$I$$!!U5I %)!I$I$1I $HE)5I$I$Q!@I XH= %Wq@* /efi+ ,qR E/+ 3["%$EZX4I=%yI$N$fEUUWTI$I$h, IħE%4۲-'$)X42$I$e)@PUUm1E)?mn1E)*I1I 1E)* qN 91սzk11H$I11/I1161E)m1e) I11 ** @ X1R7E`+-"!R.f9@BBJ` 1f1 $I$91I$I)I)$C&@11!1$!** I$I9F1 ۶ &91H"I1E)(( m[91UUضmkڦ1E)dH&1E)@$@B21E)XZZ1E)뭫LH$@1E)׿.I$L1E)m61%)p6 1E)%1I$@1E) I$@11I1e)I@1e) $H$)I) $I91I$I)I)I$I$)I) $9F1 ")D91jj)m11 ($I1E) m1E) I$)I) !1f1 !@ 91*  @$:1 @B 091 0ۖl91 X691 $  91  91 L91 m-91ꪪ It9f1 LȄH9E) I$$I91 3:# H1Uqw`H/--7qS%E9B $I$)I)I$)I) 햴91  I$$91 $I$-9f1j @N9e) C$I91ꪪ m`۰m91 vBۀ$91U IҶ[ 9E)I$ 1e)I 1E)I$H$9I$I$9жmۤ1E) I$9f1/UU P m9E) h91 @ؔl9e)( $ABD! I $A) I$IBD! I$BD! H I9E)(  @A) L A) I$@BD! @$Ʉ91* $I$A) 9e) d&91 )-81I$I$@! !$AH8////K-P1TTTUI$1E)+ SI$9E)/ Z+iJ91 - I$H 91 0`mצ91 @$91 H 91ꪪp U%y1U m%y1۰m햴E%y $E%yI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hh[lE%yꪪ 9Z %y$q u i1p  I$ɐfI9UUUV $C$I91 R$J$98PTTUI$I$@!  $AH8/  P9px\^ I$r991I$I$g9* 3 91z I$L91UUW^M&[1E)I$I$e)E)*`1E) / ` 91 K%@91^XpI$I$9  91 / mk3491 $I$:1 B$! 5 @9E)xp?~&1Azp JIX9! -- 91 I$I$B$!  919f1j9II1!%#a I1%)`$$I9e) 9F1 I$I$9F1 B$!  91I$I$9  91믽[H1E)I$k51%)UWX`E) I$1%) UUmݖr9E)* ") 91-I$I$91۶mEA1UUqUwPE9 ) Ro%qX /- Mw%y%q @$E%yI$I$hI$I$hI$I$hH$@ E%y #1%y9@@@ I$I$B$! I$I$B$! I$I$BD! I$DB91P$P(1bPTP@ ! @ 9 %  IA) I$I$BD! I$I$BD! 91 m6k2491 !I91 / 91 I$I$B$! I$I$B$! I$I$B$! !I$BD! "H91 } 9e)~ꠀI$N91E)I$I$e)E)(I$I$e)E) XI$1E)/ @N&9e) * 0)9@1I$I$9F1I$9F1 $I$)I) dB!91 I$`91%K%1b@PTPAI1b(фI҄1!(U1E) I$:1 H:1 L091ꪪ M$k49f1 I11 I$ )I)I$I$)I)I$I$)I) 9F1@$I$)I)9F1 $B$I291ꪪkm 11h%H1bjP@ɐdɐE)bI$I$e)E) @! $I$1E)@I $1E)$11 I$I9F1 @B$! I$@:1 I$I 9F1 I"%9@P  9 % B$! L&91 $I%1ap  IJ1 @I$91 91 ** I' 9!U\ I9$!55 I$I$B$! I$I$B$! I$I$B$! `91 LB&91 I$I$91 I$)I) $I$91 91 I$:1 $I-1@ "@1E)@:I1! U @)91k &I9! ڀ 9e) I$ 9e)UI$X1E)W_pI$I$1E)UUUTH)(I$I$1 I$I$1 I$I$e)E)۰m۶-e)$!0MΖd1"ðmi$1E)U I$'1E)mm$11oU 11$ 11LB&1e) $ 11   11 I11 **H$11 11II$)I)`11mضm11zI11UI$`11UUX 2$11}I$I11UU $@1I$I$H@N X8+* yw6a EX/ " 6!ff9@$C21E)Ңmv1E)Š**I${u1A޸IӦm1$I$1e)1e) $I$I21E)$ L$1E)$1e)*1e)I$ $9!I$9!$ 1E)I$I$'9# 1e)$1e)I$I$'9#I$I$'9#I$I$9!I$I$9!I$I$'9#$1e)$1e)I$H1e) 1e)$I$1e) I$$9!I$$9!$IH21E)I$1e)**@$@$H8PPPP i8%%-- 1upfi-///+ 1r --,@$ 1PP@@$ $1E)@11$$I1E) $ 1E)$@&L$1E)  I$1E)@$I$9I$I$9I$I$1E)ꪪI$I1E)I$I1E)I$1E)*I$1E)I$1e)  $1E)*@$I1!pI$f1 5 @$I$1e)I$I$9I$I1e)I$I1e)I$$1E)II$1E)@$$1E) I$$1E)_ H$f1E)~]@$@2e)$!ۆmؚ$e)!W0I$E)!WUh6m۶E)hꪪI$I bWU8 ! I$I$!! I$ AE)!U IE)! !E)! I$ f1E)W߯$C Ie)$!$ 4If1 $I$1e)@$I$1e)I$I$1E)I$I$1E)I$1e)@$9$I$9I$I$9I$I1E)I1E)* *1e)I$I$'9#$H$1e)H$1e)I$I$1e)@ 1e)II$9$I$1E)I$I$9I$I$1e)ꪪI$I$1E) f1!@f1!I$I$9I$I$9I$I$9I$I$9De)#e)`+IE) زmmvE)hE)! @$E)!H$I$E)!I$ @E)! e)!/#e)`I$I$1"I$I$e)E)@$I$e)E)** E)b@E)bI$I$e)E)I$I$e)E)I$I$)(I$ e)E)  e)%) @$@!H$I$1"I$I$e)E) e)E)h`$E)@P E)b %[5E)bP`IE)b5 E)@I$E)b,U%`E)b@P@ e)b @$e)E) Id$e)E)^W I$$E)!jV C$I%)I$H!(aH$A%)  $IE)! IH$Ie)$!*I e)%) $I$e)E)I$I$e)E)*I$I$e)E)I$I$e)E)I$I$1 I$I$)(I$I$e)E)/I$I$e)E) TI`e)1qWfi-+`N'rE )-1(B-=1/ ǩꪪ3-mtI$?1L"'`"&E)V\XXI$I$1 I$I$1 I$I$1 I$I$1 $H$1I$I$1I )(I$I$)(I$I$)(I$I$)($)(H$I$1I$I$E)$!*IE)!  0E)!$I$E)!zI$I$d!d I$I$E)I$I%)! ۰E)!- $E)!H$I$E)!I$I$1I$IE)!* I$I$1I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$E)$!* I$I$1E)!I$I$1I$I$E)$!I$I$1I$I$1I$I$E)$!I$I$1I$I$E)$!I$I$E)$!*$H$E)!$I E) E)$! E)!$I$$!!H$I$$!!`XWUI$I$E)I$I$$!!U5 $HL$$!A v$@$$$!$I$H%)UH$I$IHVUUUI XH/ {6iH/*{sE`/, .Wnɔ%q+%%1#)WNܰ +* 41ɖ 0DZ* 4!, hDZh`!}&}?EW]WT Ee)@ HEf1@TUI$1E)*$I1E).I1I 1E)+1I ɦ1e) 0L$11`$ A11\U%!A11-I$I$g9* @$11 2 1E)V1E)I$I$)I)lP1UUU .qSw%yP/ R1$q+/1UUUTI$I)I)9F1 $%pB91Z^_ $9e)m$1E)0I$1E)C2$C21E)I$I$9@$I1E)*I$I1E)*I1%) I$)@1e) I 11?/IB$I1f1$$1f1@$I$)I)I$I )I) IL1E)HH$)I)I$I$)I)I$I$g9*$I$g9*I$I$)I)I$I)I)I$I)I)I$)I)I$$)I) IB2H91ꪪk&k 11\\ ma091NL1E)**  I$I91 $I 91 69E) m6]9E)/H1!@NN om9E)-H$I11<< I$91 @!91 @I$91 lm&91 $$91 691qwP1p7sEX+/-E9UTTTII)I) I91I 1f1** [@9e)j") 1E)C@) 1E) I$9F14@11pp !dA91  I91 t"&$ 91_^ mӵ %9E)ꪠ I$u,9e)I$$1E)$I2$21E)@dB&1E)__`1؆1!`okdž1E)U  m9E) HX91 A) @AA) I$BD! I$I$BD! I$BD! "-91@h KI9E)>/ I$BD! I$BD! I$BD! @$@$98PPPPI$I@! ItIP8//++ #i@9f1p I$9f1UWX`I!'1!*6aۢ҆1E)* I$9e)  ْI91  I&91 @&MҴ91 @391ꪪ %q1UUU0Id%y1 @ !Eyq+ ݖvE%yE%yI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hh[؊mE%y c# %yi蠀 v\; i9\p  /H9ULB&$H8W~I @8* ɝqSIHU5 !d$A9TVUU @# 91 I$M&91  I$91 `&d091 011@xpI$`01E)I$I$1E)@!1E) '  91%U M&Xӭ91 a.41` I1A7 Mۤ91 I$I$9F1 `/99!xPc{1`+/ 1dHI9   I$:1 I$I$B$! I$I$B$! 91 ** kؖn91 I$L91I$A)I) 9F1I$I$9F1 I$I$9F1 B$! M&@91W^z9  11? 0Ȧ1` IE)a./I$I$1IdI$1!/Ms9%)* `B0!91$$L&11PP(H1 51wiH+-ps%ya +-`JSE%yhI$I$hI$I$hh[5ۊE%yz I$H%%y9UTTP I$I$B$! I$I$BD! $I$BD! P$I$1b0WV @ITI1 I$9f1* A) I$@BD! $I91 $I$9b0WV &mV@9$!  I$91 $91* I$I$BD! I$I$B$! I$I$B$! $I$BD! !A) m m91蠀Mۢ 91%)pe)E) I$1" I$1E)@B1%ٖ1P@* I@ 9% L2H91 I$I$91@ 9F1I$H$)I) $!I291 "i$I9hml11 ! $I1E)<9F1I$I$9F1 I$I$9F1 I$:1 B$! I& 91I$I$g9*I$I$g9*I)I)I$I$9F1I9F1 9F1$1e)I$H )I) 9F1 km&9E)ꪂ IB'#9e)U^I$I&1E)_XI$e)E)e)E) I$I$1E)/ M9e)*  R91 B$! $C&91@ 1b@ 1b I$:1  91 H%#m9\X` I&9b%x dI1-$H$)I) I$91/ 91 91* I$I$BD! I$I$B$! I$I$B$! I$I$BD! I$I$B$! d 91 I$@91 I$I$91 $aB&91 X$k"69XVXh )P 9  M9E) R#&P9`X` 1b 5 $$I$91 I$91 mm91 C 91U_ M¶#m9e)WI$" I1E)W^M۴ `1E)e)$!E)b@IdMve)U&*dH@1E)UUڵ$I$ &e)E)\ $I$e)E)I$1E)mi1E) @J6؆1E)* R$iǦ1E) a$11 I$1f1 H11 I$@)I)Ħ1%)I$I11*I$I$g9*I$I$g9*I$I$g9*A$I$g9*11@$p$@1IH@*  qwwuiH// ywO fi-/+#2-B2%f1@`PPIB11Uɶm`1e) I$I11#q11!`Aɐd1 / $I1e)@$1e)I$I9I$I 9I$I 9 I1e)*@$H$1E)I$I$@!I$I9@$I$1e)I$I$9! 1e) ***H$I$9!I$I$9! pj$1 ^@1 H$I$1e)I$I$9 I1e)@$H$9 1E) T1! *I$I$'9#H$@ 1e) @f1UI$H8 7uS7wiH//- NWfi+++-+ --)++( ꪢ(I$H$e)UUTTA '9#I$I9I 1E) H$1e)I1E) 1e) I1e)$I$$1e)@$1e)II$1e)$I$1e)H$I$1e)I$I$9I$I1e)I$I1e)I$$9II$1E)$$$1E)$ID11$!(jDf1$I$e)E) I$I&E)$!$E)!I$E)!U$I$E)!UUI$I$E)I$I$E)I$IE)!UUUI$ IE)!UU-m۶[%E)p E)  5ۺ52`E)!II1!յ/!I$1E) I1E) $I$1e)H1E)׾I$I9I$ 1e)I$1e)@$9I$I$f1e)I$I$9I$I1E) I1E) 1e)  *I$I$9!I$I$9!I$I$9!I$I$'9#I$I$'9#$1e)@$I$9I$I$9I$I9I$$1E)I$@$9I$I$9I$I$9@'`0f1pXx f1 %- I$I$9I$I$9I$I$9(e)@I$!bU@$I$E)! I$E)!IE)!I$I$1LB&$AE)!*Im0e)!/Ie)%) I$I$@!$@!H$@!I$I$e)E) I$I$e)E)*@,E)bP@I 0E)bI$I$e)E)I$Ie)E)/Ie)E)$@!$I$1"I$I$1"I$I$1"h&e)^ !e)!òaE)b@IE)bI$I$e)E)I$I$e)E)1 I„ E)< e)E) I2e)E)x$I2E)!$H$E)!zVUI$I$E)aI$I$$!!UUU$I$A2%)!UZ!I$E)!* !I$@e)E))  $@!@$I$e)E)I$I$e)E)*I$I$e)E)I$I$e)E)  E)@ I$E)b 7e)E)/I$I$e)E)I$I$e)E)*I$I$XE)UUU `n $qE)U" /9%q /-1!n6wǩ*+3,6lٖ1-H$@DZ,`&`=E)XXXpI$I$1 I$I$1 I$I$)( $)(I$I1I)(I$I$)(I$I$)(I$I$)( @$1H$I$1I$I1 $)($I2E)!`$I$E)!^WUI$I$$!!* I$I$d!d @$I$!A ~$@!E)  &L$E)a ^Wضmn%) I$I$1I$I$E)!* ۊ%K$E)AX^@!E) I$I$1I$I$E)$! %)&I$I$E)$!* I$I$1۰mE)H$I!A,>@0E)@!E)I$I$E)!I$I$E)$!I$I$1I$I$1I$I$1I$I$E)!$&`0$!a`` I%)a %5 I$I$E)$!@$H$E)!I$I$$!!p\VUI$I$E)I$IE)!UUE)!骪I$`%)bU8I$IAUW @H(I PH* qiP/{/U Ea ) /c %qok / L %q%3- PDZ*43 %4/(DZǩ1sX$E)PT@$c?Ef1PUUU$ I1E)/I!A1E) iM1E) <<ۆ-K$11@TUH$ A11TU%I11/ 11 H$11@$ 11  1E)l$1E)p m1E)$I11 ۲-1e)XR(`1 %%pS7we`+/H?%f1TTPP $ m'91_U Hħ9E)I1E)I 9H$9I$I1E)*$C1E)Im61E)I$11I11I$I$g9*I$I$g9* 11  $11 IR51%)``0 1!  11 1E)I$I$)I)I$I$)I)I )I)I$ )I) $)I) $9F1 I$)I) ۶mۦ91`&dB11 &I$91 $$I$91 %[9E)@ZZ NDI9! ېI91 $I$91NҤh1!( m۶m9e) 6m691 dB&$A91 H2C291 I!91I)I) IB$C91*d$ 1f1$2 I11 01f1H$H1%y@++?$C%E1TPPP $$I$91*  m&91  !91 91 B$! L91 I&91 I$d91 $I )I)HȄdH11(( I$)I)@H 1E)  ("I9e)bj  9e)  I91W uB @9E)_I$[ I1!n 1$!I$e)E)жi$1E) I9E) $v91U dI91 @$@$BD! I$IBD! Rِ I9e) ܶm91 JI9E)<< @(B%) I$A) H$N$81II@8 H9@@ M$l91 ڶm369e)jh mB9$!Z + 9e)  $H1E)Š `c;1e) ? 89E) I$Xm91 I$91 2C91~z $A91 Vm&%q1UUIܔs%y1 E%y@$EEyhI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h@ hk5ۊmE%y~ 3 %yixࠀ b %qP~vB; X@_~ImP@յ/ p@P9ppTT I$I$BD! I$BD! @#91 I$L'91 I$g9* #2(91_~$C$ 1E)ꪪI$L&1E)_W^z$AI$e)E)/UU01E) %n11 "$H1E)@W17* DX91 ? I$`09f1h1$!I 1!% @ 91 $C&L&91 $I$91 91 (49p` \I1A /5/ @ 91 I$I$91 II$9F1 A B$! I$H:1  B$! I$I$B$! t 9 91WZzI$I$9  91k Om&h9$!N"'Ȇ1%)W\pI$I$1 I$f1!/@A锔1! / [ۭd91믵 #I@15U1SX@-= Row%qX /- O%y%q  E%yI$I$hI$I$hI$I$hH$@ E%y %y9P@@ 91 I$I$BD!  91 h P9  ٺa۰m91 I$L&9f1 !I$9f1 9f1 H$A) t9 $H$BD! k591 I$I91 I91** I$I$BD! I$I$BD! I$I$BD! I$I$B$! I$BD! s&X/9$!^X m9E)UI$M51E)@ I$@!I$H$e)E)TI$1E) / @ 9e)+  9f1 I$d291I)I) d2$C91I$I$)I) $!91ꫫ I$dB91I$I$g9*  I$919F1I$I$9F1  :1 B$! h59e)x$I 1E) I$I$g9*I$)I) $I$9101e) !A1f1 I$I$9F1 I$I$9F1  B$! C$I91ꪪk11Xv&R H1E)UZ$I$1E)UU^@!Ʉe)E)@$$e)E)!I$1E)+ Mq9E)* غmݖt91ꪫI$@)I) !I91 I$$:1 &-P91zz TIN9f1- (H9bh I9-  91 * I$91 I$I&91 $ &91 !91 91* I$I$BD! I$I$BD! I$I$B$! I$I$BD!  91` 9) d 91ꪪ m@9e)jI$I$g9*$I$)I)I$)I)011 LB2$A91ꪪ I$d91I$I)I) @$9F1 @I$91 L$$91 #-"9E)j@MIe)b..I:(1E)L e)!WVI!e)!**P$N$e)b\^ J1)d a$1E)I2$1E)I$ I1E)@$I1E)WWH2dB&1E)__ni61E)@JĆ1E) mmgdž1E) p$I$1b^W_dK1 $ $11> IB&$91I$@)I) I$I 91 )P$@1UH$IģH1!A$APH55-){qu%yP//! qs/ %q+ ҏ1PTTUI$I$)I) I$1f1I$I$g9*H1`Ix1A/ IHH11ծH9 9 I$@9!I 9!I$@9!A 9 I1E)I$9!$C 1E)I1e)I$I$9!I 9!I9 O$-1A^I1 H1e)IH1e)!I$@1E)$C1E),0 `1`IIE)A?/ !! 1e)I$ 9! @1IIH8*( ysiH--- 1qEq-- !c>[>FZZZ+i[F(P1۲f1P@@$Ad$1E)I$1E)A$1e)I$1e)$I1e)I$I$9I$I1e)I$I1e)I$ 1e) I$1e)I$ 1e)IH$1E)$I21E)@ $1E)$I$1E)$I$e)E) /I$I$e)E) e)E),mE)`I$I$!b5. I&I$E)!z@$I$E)!zWWI$I$$!!UUU5I$IE)!UUUI$! E)!UUIE)!U IE)!!I$Ie)E)I$Ie)E)Ւ&1jK@f1% IH$9 $I$1E)@$I$1e)$I,!f1!@I$1b(01E)$1e)$I$9I$I$9I$I9I1E)* 1e)*I$I$9!I$I$9! 1!XaN$1b(1!I$I$'9#@$1e)$I$9(f1`۶mۖ1E)I 9I$I$1e)I$I$9A I$1e)I$I$9I$I$1E)1E)je)$!I$I$f1e) 2f1E)^I2L$E)!$H$E)!I$ e)! H$E)!IE)$!I$IE)! I$Ie)!+ Ie)%) I$I$@!$@!$I$1"I$I1" @!Ѡ:E)pxD SE) -I$I$e)E)I$Ie)E)Ie)E) I$I$@! H$@!I$I$1"I$I$1"I$I$e)E)I$I$e)E)t") E)Z mle) I$I$e)E)I$I$e)E)* I$I$e)E)*I$Ie)E)Ie)%)*$e)%) d$e)$! I$$E)!^@$I$E)!zWUUI$I$E)a !$A!E)+ %K$M$E)b^^1Je)  @$@!H$I$1"I$I$1"I$I$e)E)I$I$e)E)I$I$e)E)E)!@It+E)b&I$I$e)E)I$I$e)E)I$I$e)E)I$I$e)E)* I$I$e)E)'EE)UUU)@ DE)1#PJ.w 1-H+1#11e)````I$I$e)E)I$I$1 @$H$1I 11 I$I$1 I$I$1 I$I$)( @$1I$I$1I$I11  $I2E)!@$I$E)!Z^WU@$!`I$!a/I$IE)!U׿+ME)^P`lE) L&$!a0!@E)!*I$I$E)$!*I$I$1H$%)XE) I$I$E)! E)`I$IE)Օ&I$I$E)!I$I$1I$I$1 E)0 %)`ItmE)- I$I$1I$I$1I$I$1I$I$E)$!* I$I$E)!I$I$1@E)!!E)  E)!I$I$$!!p\WI$I$E)I$I$!!U5  E)!I$I$E)$!II HE)U5 @$I$HE9 I$IPH%-k.iP/oEX+(yT %y+ -1 /+4-!IIADZ* 41aI DZ4$DZE)P4$IDZf1@TUU@ɠmۆ1E)H$I1E)  1E) @2L$1E)DI$1E)* A$I11%*$@B11PP I$11H$ 11۶K1e)(( 11H$11P"I 1%)I11 I$I$g9*I$I$g9*-"ڢmP1U 1S%y@ -C2%!E1PPBBd$I 1E)LH@1E)I$H1e) k& 1E)Im 1E)mt 1E)(.  11 I$I$g9*(1E)@I1E) I$11$I11 I$ 11 $@$1E)PP 1%)~ m1!@$ 11$I$$11$@!11 $I$)I)%Z"M1E)11I$I$g9* 1E)I$I$)I)`$11XP$C$1f1N2% 1E)>>ۆ%X-11PP@ J!I91 I$I91 9F1  $L091 H,41E)$I˦1E) 1e) D$$9e)UMۖĦ1E) @&91U Ą1E)<L$11 $11 $$$1e)1f1*@@.%@1`@+%n.%9BBBJ`&11a$1f1%P"Y1E) I$)I) I(1E) %bH1E) I$91 $$91 H$)91j &91 IB& 91 I$I91I$)I) ´%[m91__9F1  ID91 C@91ꪪ 91W u `9e)Wmkv1E)޼mI1E)U6a۶$1E)/WPn$1E)U  $9%) 91 A$A) @ A) I$IBD! $I$BD!  !98@I$I$80 H8 yWP9@@@@ IP"%9E) @ 91` Ieh @91 hi;91* }H9E) ۴է9e)! $I1E) `k;9e) -W )J9E)  $L$91 !91 $B$! vP'$q1UUUI9%q1U Mv%y%q ۰mtE%y E%yI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h@ E%y @E%y~l%yiz蠀 }" %qP~ v&a`e9* @@ ۰mٖl91 / @$A) I$IBD! I$99/ 4:91 I$I$91  I$91// `8,91^xCҒI1E)I$L&1E)UUWXII$1E)UU0h1E)$H$1f1 M&k2,91I$I$11:ꪪ It91 / I$`091 I$I 9F1I$I$9F1 @B $@91ꪪ I$I$91 !I$91 9E)@ qU9- I$I$B$! @ 91 I$I$91 $@I$91 91 I$I$B$! I$I$B$! I$I$B$! K&@91I$I$9! I$91/ #۠-91WV\N2'#̆1!I$I$1I$I$e)$!*`X1E) 5 Z`b91⋫L.`0@1 5 pSqiH+/`s%yi --mnE%yhI$I$hI$I$h hX `E%y~zI$J%%y1UTTP 91 / 8 @9E)`p ɐ1`9E)%5  I$I$BD! @$I$BD! I$dB$91  I$9f1 * @!9f1 I$I$A) @ A) $H$BD! $C$@91 I$H 91 I$91** $I91 I$I$B$! I$I$BD! I$I$B$! I$BD!  8C-91pp@[m۰1e)I$(1E)I$I$1"I$I1"жm:1! z I9! ۶ ٖd91 L&$I91 I$I 91@9F1I$H$)I) j$1E)\V$@1E) I$H$g9*  $I$91 $)I)I$I$9F1I$I$9F1 `"1(I9e)Xj  9E)= c$N$9E)VWT mٶa9e) I$I$91I$)I)9F1I$I$9F1I$I$9F1  $I$9F1 H$I$9F1$H$9F1I$)I)I$1%)I$RI1E)W~I$I$1E)UUUI$I$1 I$I$e)E) I$1E)`Ie;1E)? 4 n9e)** $&C91I$I$)I) 6ݶm919F1 I$I$9F1  A$:1 I$I9F1 91 $91ꪪ 1! L$I$91 I$91/ @91 I$I$BD! I$I$BD! $9`P@ Idɐ9%  91j EK$9! VU 9%) I$91 I$I91  9F1 $A2d$91 m$91 lؖv91 dB$@91 I$$91I$I$)I)%H$1@P\p  J9/  I$91 k Hm9e)ޠI11Ulm1!xIB" I1E)I$km1E)I$L1E)$H$ 0e)!if1!*I$1E)zH$1E)I 1E)H$@e)E) K2If1VVmN1$! **%K$1E)mi1E)+@IN$1E)0R$I2@1UUU?;@1IH8X@/+yww%yP -/В-S2Ff9jJ!`1E) $R<1!`pS1 %11H$@$11I$I$9   9 I$I$9!I$9!$9  @$9 $I$9!$I$9!I$9!I$I$9 I$I$9 I9 I9 I$I$9!II$11*&L$1b^V@1 9 IȐ 1E)(9 I$I$9 $H$9!0l۶m1E).I$I$9! $9!),I81UII80  %q@%۹Ea % DI%yUU(4I$EU!\Ey5I$I$ff1UUUTI$I1E)I1e)I1e) I$I1E) I$I9!I9 I$9 l%1E)`X 1E)$I$e)E)$A e)E)I$I$e)E).?I$I$e)E)I$I$e)E)I$I$)($H$1I$I$E)$!I$I$1dB2$ E)!I$$E)!IE)!+ E)!/I$ e)%)I0$I1E)I$ 1E) I$1E)I9$H$1e)*$I$1e)I$I$9I$I1e) I1E) $1e)@$1E)I f1,I$I$9I$I1e)*I$1E) I1E)I$I$9!I$I$9!I$I$9!I$I$9!I$I$9!I$I$9!N@1W8H$1E)$IIf1 I$I$9I$ 9Z$@ f1X\)01 @$1e) f1b@f1b'f1bX(P)e)@PCIe) =$e)A`Ie)b-M$e)!H$Ie)! %)$! H$E)!H$I$e)!I Ae)!/im۶E)!+Ie)%)I$I$@!I$I$@!I$I$@!H$H1"I@!@!$e)%) J$e)a\WdJ e)  Ie)%) 9I$I$@!@$I$1"I$I$1"I$I$e)E)I$I$e)E)I$I$)(I$ e)E) H$e)E)H$I$e)E) I$I$e)E)I$I$e)E)I$Ie)%)* e)%) I&e)E)P$I$E)! $E)$!I$I$E)aI E)!UfB2$I E)rIPe)5[ `e)!pd$I$E)bTUTe) e) @e)I$I$e)E)I$I$e)E)I$Ie)E)*I$H$e)E)I$I$1"I$I$1"I$I$e)E)I$I$e)E) I$I$e)E)I$I$e)E)*I$I$e)E) I$I$e)E)&DI$E)UU/0 Le1/ #H$IY`)O?HE)W|I$O?fE)UUW|  E)!E)!I$I$1 I$I$)(I$I$)( H$1I$I$1I 1@$)($C&E)!zH$I$E)!~_uUI$I$d!d @ !bI!@%)? IIE)$!** 0E)!ضmtE) 'I$I$E)!*I$I$E)$! I$I$1I$I$1I$I$1I$I$E)$!I$I$1I$I$E)$!* E)!I$I$1I$I$1I$I$E)!I$I$E)!I$I$E)!* I$I$1I$I$1I$I$1I$I 1A$I$E)!I$I$1I$I$E)!*I$I$E)$!I$I$E)$!$H$E)!z^WI$I$E)I$I$$!!UU  $!!I$I$E)$!*I$I$@E)UUA$H$HE1 I$IPH}/1e `H/{6gEX/+# ys %q/ /qn + 1@$EPP4 DZE3 @DZe)@PU3H$DZ1TUUU@m1E)I$I1E)I$1E) @$I1E) ɖ 1$!NJ$1E)VT 1E) I$I11/I11/ 11 H$11H$I11/ I11I$I$g9*011p`$11\Uڶmۤ1e)$@$1e) 1whe1 ))vEEAJ **H$1e) I۶m71e)*I11U% I$11I$I&11ZI$I$9! Ȓ1E)?m 1e)"I1E)@$1E) 11 I$I$)I)$11$AI$1f1$I$11 1%)$[%`1E)[m 1e)*01e)I$I$)I)I$I$)I)I$I$)I)I$I$)I)$I $11H$11(HH11R%1E)I!1E)@!$1f1P9Һ1E)p mا9%)@$$1E) D$i;9e)mf;1E),$1E)жm$1!I$I$$!!5I$I$$!!WWI$I$$!!/!E)!UUU`vb'1!+UUU`q'1 UUUЖI$1 UU I$1!UU mc;0)??dX8'%P @ $1E) I$1e) !$1f1 9F11E)$ې H1E) [[ 11@$I1E)"I1e) Mۤm9f1 @dB&91 $`$91  !@91 LB91 ! 91뫪 NDH91 $)"m9E)jj 9E) $I$91 -!'91^:^ #ڐ-I9E)~u$KV1!^VV(I$m1!mI$e)!*ز-ݖvE)! Ry9E) + $Ix91 $I$C"A)  $A)  $98@@@PI$I$@! !$AH8-// y 1X9@PPP I$BD! I$BD! A) X91  t"91/ 2if91 I'"1E)m$M&1E)1tb;1E)/ 9E)? I$[a91 I$91 0`R91j O9E)/ Vm&%q1UUM喐%q1 @ E%q@$EEyhI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hH$E%y "@E%y_~ lC I%yim%%q9PPTT  $I91 I$I BD! I$I$B$! $I$BD! I$99 -5U h4:@91 I$I$91 !I$91H$H$)I)ȀH1E)pI$M$1E)UUUT$H$%)a@P\p IS1a  $BI91꪿ I$h49f1I$I$1e) D!9f1 / I$H$BD! H$:1I$I$9F1 @B $@91ꪪ I$I$91 I91 I$I$B$! I$I$B$! I$I$B$! 91 I$d091  I$91 91  B$! @$I$:1  :1 M5 9f1I$I$11 tI$91$CA11M&P1%)VX`I$I$E)!I$I$E)$!*JIĦ1E) 5"a815wX@-- N7w%qX +- O%y%q  E%yI$I$hI$I$hI$I$h  E%yꪪb1%y1P@@I$I$g9*  91 / I$I$BD! 89!, I$I$BD! I$BD! IB&$C91 I$I$9F1 @ 91** $H&9bP\P  9 % A$A) $C$@9f1 I$91 I$I$9F1 H 91** I$@ BD! I$I$B$! I$I$BD! I$I$B$! 4@m91 * K,91 M2: l9e)WZI$I&1E)@0e) Inle)!?&I$1E) / @J&9e) :l91 m6 l91ꠀI$I)I)jI1E)X @1E) I$91 I&H91 I$I&91I$)I) $H91I$I$9F1 II$9F1 @$I9f1 B$! L091ꪪ I$L091I$I$g9*I$)I)I$I$9F1I$I$9F1I$I$9F19F1I$9F1I$I$)I)I$)I)I1$!I$I1%)I$I'1E)I 1"@$@ e)E)I$I$1E)?`Oئ1E)  D1E)? $I2$91ꪯ '1E)\  I9e)**9F1 I$I$9F1 I$:1 $"I9$!@P` 1! `$A91 I91 L$L&91 m۲9e) j $I$9b8U @I9!* I$I$B$! I$I$B$! KE9$!V B$! I$I$B$! I$I$B$! 91* d091 I$X91 imv91A$I$g9*I$)I) mפ91 I$I1@l11 I$LB91 I$I$91I$I$)I) $$I$91 `I$91 d P@ 91_ $)ħ9%) c1@9$!Zj&H1!/ƍ$1 pɐdE)bi$m51E) 1E) 1E)$d$1E)H$@1E)!I1E)/I$M 1E)-H$8e)H$@8@Il۱i P8 {7Q$qH- pf`+*&m&E1@PZZ11@I$1bU9qDh1 % $$11UI$11*H$@$11$ @11L I11WI$H$9!I$I$9!9 I$9 I$9 I$I$9!I$I$'9#$I$)1E)@1E)I$I$9! I9!I$I$9 p1X1%) @ 9 I$I$9!I$I$9!I$I$9!I$I$9!I$9!I$9 I$@ 9!1E1N @tHe)% ۾q@+؉]fa )E%yh$2 EEyH(%y1TP@@d@11^ ! &11p\ 9  9!I9!$C&$11jZ{I$I11U5 M&\9E)W^z Iĉ i9E)UյM&[1E)W^1E)I e)E)@ I$e)E).I$I$e)E)I$I$e)E)e)E)?Ie)E)I$Ie)E)Ie)%) I$I1E)LB$1E)I$1E) I1e) I$I$'9#I$I$'9#I$I$'9#I$I$'9#H$1e) I 1E)  $1E)  I$1E)@$I$1e)I$I$9I$I1e)I1E)I1E)I$I$9!I$I$9!I$I$9!`1@DId1bU1e) 1E)@$1E)$I$1E)I$I$9"%"he)b@P@ɔDɔ f1bI$I$'9#I$I$'9#1e)H$I$1e)I$I$9@(f1bP@I e)bN'e)bVX Ie)  (e)H'ce)\xI$!b% I$ $e) H$e)H$H%)$!I$ae)!ɶm0e)!I@!I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!I$I$@!$e)%)$I$e)%)I$I$e)E)*J"e)a\e)! `$e)!e)$! I$I$@!I$H$1" I$e)E)I$I$e)E)I$Ie)E)/I@$e)E)@$I$e)E) I$I$e)E)I$I$e)E) I$Ie)E)Ie)$!@$e)%) I2d$e)$! I$$e)!^@$I$E)!zWUUH$@! A%)/ $IE)! I$Ae)$!  1E)@$@!ضm۶%e)!pXe)I$I1"R$P0E)a`X` ɐE)b % I$I$1 I e)%)*@!(P$e)@PT $e)Ue) I$I$e)E)I$I$1 $I E) I$I$1"I$I$e)E) I$I$e)E)I$I$1  H$)()HI$E)UU($ImE) f%I`~?"yE)WThkvXE)UUUTI$I$)(I$I$1 $H$1I$I$1I)( 1  I$$E)!j~H$I$$!!\WUUI$I$E)I$I$$!!I AE)!շ I$IE)!   @$E)!$@$%)pppI$I$ A?  1I$I$1I$I$1I$I$1I$I$E)$!I$I$E)$!&H$%)a`X`I$E)a 5E)I$I$1I$I$E)!I$I$E)!I$I$E)!* I$I$E)$!0E)@ %)/I$I 1A$I$E)!I$I$1I$I$E)!* I$I$E)$!I$I$1$H$E)!Z^WI$I$E)I$I$$!!UU-$$!$@!%) 'I$IAE)UUU $H$HE)% I$I$Q!@6e`H/wU%qP+# ysd %q+ -qR@f*1))  -/4 $%)P3?f1BVUUk1$$I1E)I1E)+@$I1E)ꫫI1E)+*@$1E)XX$Aa1E)HB&$I1E)9  11 `X$1E) I 116 1E)1E)@$1E)"M&1E)$Iۖm1%)$ A1E) MZ[۶1e)1!`MiXe! ==R7%yX +/ȯE1TTTT@$I$11 9!9!@9 mɐ 1e)  %1E)/I$I$g9*$11I$11$I11.I$I11*I11* 1e) n1E) ɐ ɐ1E)  11 11 H$11-1E)vm1E) **ضmk&1e)I1%)**L$1E) D$1E)002 21E)@`۶1E)p ivm1E)mm1E)ضdKm1!*H&`1!  E)!I$I$E)! I$I$E)$!@$H E)!$@! C$ @91_ IҶ @9E) C$)9E) IB$ h9E)U# 1 ~S1!UI21 UI$1!UWI$ ن1!UUێm P8 R1v`H/--* ʯi!TTTT$I$1!UUnI$1!UU0I$1!/U I1$!nm611 } 1e)  LҦ1E) E[X1!(// 9F1H9F1$H$1E)TT $I)I) I$91/ HDM9E)* I$I$B$!  91ꪪ H)91kj Ɇm11hlm11X II91 I $91*  I91Vપ 3@9!~mR I1!]6m6E)!I$1!UU pSy9!/ mM91 @$@$98PPPTI$I@%(ItIP@5%-- 1fr`9PPPP (B%) h")91@@  IH9e)  (%9E)P 9E) M591 6a-:91/?x t9e)Z ?9e)W~H$I$e)E)( w$9e)+U )9e) 0r!Gn9E)* M91 @@9e)P !'/i1UUUP w%q1 Mv%y$q /mtE%y E%yI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hH$E%y $I(Ey9@ H$I$%y9TUUU LB2d091  I$9f1 * $ 91   A) I$I$B$! tI$99-U j5*`91I$I$91 I$)I)dB& 011P")(I1E)P`mj 1jqamۆ1!-0IO1E) - ɐt91ꫭ I$h591I$I$9f1 D!9f1 / I$H$BD! H B$!I$I$9F1 @B $@91ꪪ I 91 I$:1 I$I$B$! I$I$B$! I$I$B$! 91 I$`&91  I$91  91I$I$9F1I$I$9F1 B$! h,9f1ꪪI$I$11 tI$9f1/ k5Òa91~r"9 @1E)VxI$I$E)%)I$I$E)$!*H$L$!aب}H! % pO1wiH /- s%yi )-mnE%yhI$I$hI$I$h h @E%y~zO'%y1UTTPI$I$g9* ۸9E)Jꪪ IM; 9ח @91 '9b`X 9a dB0$H91 I$H$91 "i I1@ 1  91 I$I$A) $A)  A) H09f1 I$I&9f1 $I$91* I$I$BD! I$I$BD! I$I$BD! I$I$B$!  I,191jz B9! & #i9E)zI$Ȇ1E)$I$1"I$I$1" I 1E) `N9E)* D&91+ $2$I91 I$k919F1I9F1I$)I) C!91ꪫ I$ 91I$I$g9*I$)I) $@91 I(9f1`9F1 $B$! B$! L&91 I$I&91 $I$g9*9F1$1e) ݖn11 9F1 11@Ć1 $IH9f1 B91ꪪ [m$I91I H1E)M$M51E)II$e)E)   e)E)I$I$e)E) $9e)+Uh%1!*11E)  I 91  L$91 I$ :1 $I 91 !H$I91 I91* B$! H$:1 r$9^ uJRd9 * I$I$91  $I$91 @ $91 91 I$I$B$! I$I$B$! I$I$B$! I$I$B$! 49!p 9b + I$I$B$! `91 I$91 I$k 91I$I$)I)$I11** mۤ91 ]Ѧ91 L@91 I$91 I$d91 I I91H$M1b^^ o>9z `IX9 % $I1@ W I9%+ #Ҁ( 91W~ ӶH91U}qݶI1E)NB H1E)ۦђ'f1pXDN 1** - ۢ8f1I$@8UT$ILH8? SX@?- ɟ} fP) ߆i #N$H$E1VVTU[3>{&1p|XIp 1'$0 11zpI I11յ*I$I$11 9!I$I$9!9  @ 9  1e)@$I$1E)$I1E) +H2dB&1E)1e) I$I$'9# :#͆1 `XpI1 // $ $I21e)$@I$1E)*d$1E)@I$1E)@I$1E)@$1E) I$I$9!I$I$9!I$I$9!I$I$'9#$I$1e)$I$9I$I$1e)1e)* P1UUU 1S9wh$1 ) Wf$q++--#` Jf+++%r" E\%I(EU@# ?@%yUUI$E1UVVP ~b?A1U_ I@91 Sn91 - H?91^ @$91 c'91~_ V$91UU `]?~'9E)_WWmn1E)I$Ie)E)**@ f1E)zjI$If1E)I$1E)I$I1E)IB$ 1E)I$1E) I1e)*I1e) @$1e) A 1e)I$I$9I 1e)I$I$'9#I$I$9!$1e)  H$1E) I$1e)H$I$1e)I$I1e)*I$1E) I1E) 1E)I$I$9!I$I$9!I$I$9!I$I$9!I$I$9!I$I$9!I$I$9!˄I1&$I$1e)H$I$1e)I$I1e) I1E)* 1e) I$I$'9# 1E)I$I$'9#I$I$'9#$1e)H$I$1e)I$I$9I$I$9$1E)~`X$e)!I&I$e)! I2d$$!a`X$A!%)  I$E)$!I$IE)!I e)! $ (;e) xe)!I$I$9I$I$@!I$I$@!I$I$@!I$I$@!I$I$@! @!$H$e)E)I$I$e)E)*I$ e)%)*e)$!I$I$9I$I$@!`2e)!!@e)$!$e)%)@$I$e)E)I$Ie)E)+ I e)E)? e)E) 4E)b`۶me)! e)!$ e)& 1E)$I&e)E)X$I2E)!$I$E)!z_UI$I$$!!TUUUI$I$!!UUU%IE)!ե*Ie)$!*!I1E)I$I$1e)I$I$1e)@@!h$K&E)b^XKAe) I$I$e)E)H$I$e)E)!I$Ie)E)* Ie)%) I$I$@!I$I$1"r"9(e)bX`I$Xe)UVhɐ-0E)b I$Ie)%)*II$e)E)*H$M$E)a^^Pe) I$I$e)E) 1 $H$)(I$I1 e)E)- I$I$fE)UUUII$f$!U @E0Z q1jM# -hE)UVh $@E)UUUTI$I1Ie)E)% $H$e)E)\VWH2d$E)!zVI$I$$!!|I$I$d!d I$I$$!!WW_?IE)!$@@ E)! @`͖dE) 7I$I$1[5ۺ%)pI %)b5/$I$1I$I$1$IA0E)!`$I E)$!I$I$E)$!I E)!* `lE) `A0E)S`I@E)5 I$I$E)!I$I$E)!I$I$E)!* ۶!C-E)` I$E)a*E)!jIn0`E)' 4[5E)p I$!a /- $E)! H$I$E)$!I$I$1$H$E)!z^WI$I$E)I$I$$!!Uյ%I$I%)!CE)z 6lE) $H$H%)% I$I$Q!@I$AXHտ/o%yP+ rfi + T \%y+ 1))e +3!@DZe)@PT1H$DZ1TUUUh&Kr1ں$ e)/ X51E)zm1E)1e) $1e)*@$I$1E)I1E) I$I$9!@d$1E)$IH1!Kd!I1$!<!I$I&11*_ (ۼڦ1E)@$P 1E) @$1e)mv,1E)  D1$!( IN$1E)I$I1E)I$I$'9#P1UUU pO7wiP /-O%\R"%1PRRB$I$9!I$9 $,!1E)JT1! 5%$$11W$I$1101E) a1E)55I I$1111  11 $11 ضm1E) m1E)/ 1E) ,۲m1E)nm1E) @$A$9!@LH1E)$$01E)*蠠d 1E) I 1E)IҶ1e) i`1e)n۰ 1e) Km1e)m& 1E) m۶-91U Ib۶ 91U M$ H91U I&m91 I$9f1 I$9f1 I$9f1 I$k 91* {9E)+ 0C91 ؉m9e)* ID91 Xd9$! I:1 H :1 L91 c`9E)Z H9 )qW$qP+//-3?E1PPPPHy1$!~::I"01!UI$ 1!UWI$v@1!UUi$I5e)!{ۆ1! 0qۆ1$!M n1$!&(@RǦ1e)鐶11 Hl119F1H9F1I$9F1 $H )I) I$91  91  91 I091ꪪ I$H91 I$919F1  I$91  A91xꪪ uҶm)9E)_ I$1!UVxI$I&E)!TI$1!%UUH$M$81I @8qWd`@- dIDHa9PTTT 91* H ɐ91* ɤ  91%( R9E)X  H91" %91 @91` ز 91= mA191+ N"',H9E)W\i$I&1E)1E)  9e) - I$X91 I$91 I$I$B$!  91 S%q1UUMs%q1 @SE%y@$EEyhI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h $E9@PPT I A) 9e) I$H$9e)  I$91 * $@$91 I$I$BD! I$IBD! !I$99 / s%"91I$I$g9* !I$91 u$h99E)X- 1E)ZjI$I$e)$!II$1%)5UU0Io1E) % H@&91- I$k591I$I$1e) @&91 % I$H$BD! H$:1I$I$9F1 @ :1 I$I$9F1 $@L$91 91 91* t 1$!ܨ A)P9E)  I$L&91  I$91 $ 91 I:1 I$I$B$! I$I$B$! X,9f1ꪪI$I&1f1 ɐdI$9f1/ K5ݚn91^k5*a1E)\`I$I&f1$!H$I$!aܨ e1 wX@/- N.w%qX +- O%y%q  E%yI$I$hI$I$hI$I$h  E%yꪪ (%y1PP@@ P%1`P 1 % -m691/ n91 z=.9\p p9  I$I$BD! $C$A91 I$`B291  I$91* $@$91* @ A) IA) I$I$A) H9f1 I$@ 91  I$91*  $91 * I$H$BD! I$I$BD! 9E)` I39$!7 $I A) #@91 # 9e)_zI$ ۦ1E)I$1E)I$@1E)DI$1E)? @J/9E) HI$91 / IB& 91 $I$291HI$)I)9F1 I$:1 H @91ꪪ I$L091 I$I$91 @&J'9`X\\ 1 I$I$9F1 $@$I291  $:1 91 I$91 I$I$915 `1e)1K I1e) 9F11E)Nl 1(  I$I9f1!  $:1 dB&`&91I$)I) #I@J91 N:*9E)W~ I$٦1E)P$I$E)TWD@ f1 *I$He)E)>>-6m&1E) @nI9e) U $Iېn9e)* $2I91ꪪ  !H 91  I$91  :1 I$I:1 HH$:1 N$+9^ )dII1  $I$9F1 IB2@91ꪪ I$$91I$I$)I) $$I$91 @I$91 91 I$I$BD!  9!p@ -9/ I$I$B$! I$I$B$! H$H:1 B$! 91 $I,9!` #mۖ9E) L$d1f1 A$I$11"$@a$11 mm691  I91 R,I9e) * h5&I9xɕK1% I$I)I)HP&1!X II1E)$I$)I) $I$91 @ 91 z=.I1\p vJ"%9 - @$I@8PUUI$IH8UUmiSX8ͺ۷{%yH5x.WEi/m2!Ee9@@I$9!P%#ц1pppXIL1 %5 11 H$11(I$I$g9*11$ $11TD1$ $11UI 9!IB1E) I@1E)* $C1E)I$9!I$I9!$C$ 1E)!I1E)mӶ۶1e)Ik1e)(I&[ 1e)I$m 1e)I$m 1e)i۶mm1e) I$I9!I$I9!I$I9!I$I$9!LB$@1E)$C 1e)I1E)**!I$@1E)$I1E)mfm6`1URwEX /!P rE +-% mޖn*%#%!$ 訨" -hf9@@*I$ )I)I$9F1 d"ɒ$ 91_ꪪ@$11PP  AH91  :1 991zz mֶ91 -19E)R@j qK9E) $$91 91 I$I$B$! :1 I$I$B$! I$I$B$!H $)I)  @91﫪  l9E)* I 91 I$$C91 I$I91 %R1$! B2$C291 mm۶91?  $iH1UUtItXH--=/q7wE`---E9TTTT H91ֺ 91 I$91 $%P9f1ZX $ :1 I$:1 91 @$91* 2``91ꪪ Im91 d9&@@9e)ZPI$a11 %J$1E)PTTِ1E)L$11WV` vM1E)<<i$11 UÚ111f1@Ђ61E)@hɖl1E) vI91 !91*+ H91 I$91 !I$91@$B$81I$I@%(ItIP@5%-- 1`iE9 BI$i1!UVp$I$1!5UUWM1Ć1!- N@:e9E)z $IA9E) I$I$BD! #: 9%)zz  @R91 + @m91 I$@BD! H ɐ91 * I$@ BD! L091 I$91/ 5J9E)~hm'uن1E)wW^vmۦ1E)5 X)9E)) m@$91xp P)t91-  91ꪪ  $91 i9UMs%yi + @SE%q@$EEyI$I$hI$I$h @(EQ@S?oE9TWUU I$I$9F1 !I$91 * $C$A) IȐ$ A) I$I$A) @ 91 $=1` @T9 - I$BD! H$ BD! I$I$B$! I99- k+9E)h ;Ǧ1E) ^ 0 91 I$`091K%`1!I$I$E)! I$f1%)5UUPI1E) %  91/ I$X,91I$I$1f1* d1X91/? I$`09f1 I$I$9F1 B$! 91ꪪ I$L&91  I$91 91 $-:91z~ ` 1P91 / I$I$BD! ң'z>1AxX`KtJ1A   A!91 I$I$B$! @$H$:1 I$I$9F1 B$! M&X91zI$I$9! ɐ91/ X+m9e)I$Ն1E)UVx dH&H%)  N7wiH +/ PN/r%yi - ݖnE%yI$I$hI$I$hI$I$h h рE%y^~z %yE)UUTT&`SN$1E) U M&9E)* "hP9E)h I2I1 @$I91 91 I$I$BD! I$I$BD! $I$BD! $B$A9f1 I$`9f1  I$91* $A!91 * A) H$H BD! "i$I9E)` I29a& I&$I91 #>P9xx `I9%%  h8@ 9bࠀ)LI\'1 /~ W 9*+ I$I$B$! !I$BD! n9e) n@9!j I 9նmۺ1E)9@[`i1E)Ik[1E)1I$1E)+ PN79e)* ۶ ِt91/ LB2H91 ۲`91j`11I$I$)I)9F1 B$A91ꪪ I$C91 I$I$91 !I$91 91 I$I$B$! I$I$B$! I$I$B$! I$I$B$! @B$! IB&91 m&m91 iI9f1 HB $91 $I91$H$9F1I9F1I$I$9F1 $I$9F1I9F1 I$I$9F1(6j$1`XT VI)9 C9E)I$զ1E)-M۶1E)HI$1E)m6n1E)  $L1E)&I$1E)+  I$9E)* @n91 I$ 91 9F1 $I$9F1@$9F19F1I$I$9F1  I$:1  $:1 $@$91  :1 H91 I$ 91 I$d91I$I$)I) !J$I1& @a$91 $$91 M$k91WW޿ 91++ I$I$BD! I$I$B$! I$I$B$! @9 p  P9$!  5j'9E)x^V P) 9E) % (91*j 9& m l91 IB&91 $$81U$I$@8\UUHI@8Iرe X@=+sT%yP+  )eND Fi+* I$ FF+  (f$)@ 1 lېn1E)}M 1!In1!*m6m 1E)zI$I1! f1$!I$I$1e) I&L&E)!I$I$E)!($!e)E) - 1E)zaN$E)* AI$f1$!*@&I$1E)UUUP9u&1zzzXIXe)A /-/H$I$9!I1E) * $I$9!p'Ȇ1!\\x1! I$I$9! 1e)$$I$1E)0I$1E)HL$1E)@d$e)E)^W@I$e)E)UU@ e)E)  e)%)NBǢf1WI e)!$I$E)$!$!e)E)-- H$I$1E)ꪪ 1x hf1-.qwE`+/! /E %0If % ?%!C2$ z"Hf!@@e1UUUT11@$11I$11$I$11I$I$11*X$M1E)@@1E)I$I11I$ 11 I$11[-X&1e)01e) I$I$g9* 1E)XQN$1 VW1 I$I$g9*I$I$g9*H$11$C$11 $I:1!x1E)H$H$11਺@Ɔ1lۖm1E)$I 1e)I$I1e)I$1E)  1E)I$I$9!I1e)I$I$9!I$I$'9#I$I$'9#I$I$'9#I$I$'9#$H$1e)H$I$1e) Ff1  $1E)ضmۺ61E)`[$e) -:vb;E)`z $! %%-I$I$$!!I$I$$!!**I$IE)!I$!IE)!+Iv`e)!+$e)!II1E)I$I$91%)I$I$9I$I$9I$I$9I$I$9I$I$9f1`MIE)&7H$I1"I1E)1E)I$I$9I$I$9I$I$9I$I$9 9H$@!H$I$e)E)I$Ie)E)*0,e)!mte)!*%I$I$@!I$I$@! e)E)@eN$e) VUf1 @$1E)~Hd$e)$! I$I&E)!z@$I$E)!z^UUI$I$E)I$ E)!Uխ I$IE)!*I$@e)E)-IH$I1E)b$NE)ָP1$!I$I$@!I$I$9I$I$@!$e)E)@$I$1" &e)!`X۰e)!I$I$9J"'e)\x $@e) I$I$@! H$e)E)H$I$e)E)Ie)%) X`e)!p1`Ie) I$I$1"H$I$1" $I$e)E)I$I$e)E)I$Ie)E)I e)E)$$e)E)zU @$E)!xVH$I$$!!\WWWI$I$E)I$IE)!UUյI!IE)!*Ie)E)U/$e)E)p^H$I$1I$I1 )(@M$E)b VW6E)b I$eE)UU+mE%9C leiW~#m%yX_ NR'l6p$)Wz $ HE)UUV@H$)()( IE)!$C2$E)!I$L$!@&E)x0 E) $)(I$I$1I$I$1I$I$1I$I$E)$!I E)!* H$I$1I$I$1I$I1 $)(@$I$E)!I$I$1I$I$E)$!* I$I$E)$!I$I$1$H$$!!p\I$I$E)I$I$$!!Օ5 IIE)!I$I$1I$  E)! MnömH/ I$I$H@dB2 H8_h ywi8%-?ߣ+%yH"9qWa%==//!1gnT /@$H$E)PTTT I$@1!*!H2L$1E)I1E)I$I$9@$1E)ZZI$I9 '9#@$9@$I$9I1e)I$I$'9#`&1E)z_Im;f1$!I2L$E)!^UH$IE)!VU-I$E)!) I$@1E)U I$I1E)I$I$9 1!$I$9$IL1%)*>>I$I$'9# H$1E)**$Ʉ1E)I$1e)1e) 1e)IK״`E1*))^*y%)BJJJ$E)!H$I$E)$! * I$I$1in1E) 1e)*I I11U ۶mÖ 1E)M 01E).`$ 11\P11@@$1f1 @11 *I$I$g9*I$I$g9*$) 1E)I9F19F1$9F1H$)I)۶&11X $@I$91I01f1$IP1e) I$I)I)$I$ 1f1$I$1f1 m6ۆm91 H 9E)* LB&91 &Xm91 @ &91("@1%) I@9e) $I$:1$IN1 II91 `m$91_tI׶11%% ۰[91 @$91 IC291 %9e)Z $$91ꪪ m`m91 PE1 7usqEX/T%]"E9PPPP 9E)%% $I$91  91 @91 I$I$BD! @91  91** @$@91 `B&$I91 @!91 91* H$91 #9e) Cڀ@91U_im11LB$I11W?I0$@211U`I$ 11UU-vI$11=UUH"$iӦ1E) 1E)  I$9F1 mt91 IB&91 @%$ER91ZX I$I$B$! J$H$98TTTUI @8qWd`@- j"&ҡq1BBBB  I91^ꪪtB?1!XxI$k2 1!UU^XI$1!)UU %Rn9! * H9f1 I$I$BD! H$@91  I$91* 91 H A) $@L291 * I$BD! M$ۆm91 @r#)&9e) X P 9E)` I$19E)UW~hI$I$f1E)c۶mۆ1!પ m<9E) n9E) + B$! k@ 91 Prɖpq1UU`n1%qA  w%y%q @!EEyh E9@ E9UUVX `0$H91 I$I$9F1 lI9f1 * H$I$A) I$I$A) I$I$A) h=`9!p 1a-  I$91*  BD! I$BD! I$I$BD!  A) N2 l9E)W^ЀI$I1E)  9191L": 1%)VxI$I$E)$! I$1E)UUUPIT1E) % B!91ꪫI$` 1e)I$I$1f1* dX91? I$`091  I:1 $9e) C$91ꪪ I$dB091I$91 [91ꪯ I 91 I$I$BD! `9!` &m91I$H$g9*  91I$I$9F1 I$I:1 91 91 M&X`91I$I$9! $91 [*`919 `@1-5U`Oq{`@/ ` S%yX++ ` SE%q E%yI$I$hI$I$hI$I$h$2 EEyP%(%yE)PP@@H$@)(e)E) =kɖx1E) 5 &`*9e)$VĆ1!( ۰mݖm91?  91? I$I$BD! I$I$BD! (P$9@PT 9 dB2$H91 I$I$91 I$9f1* 9f1 I$I$BD! I$I$BD! II$BD! H A) L$`091 I$:1 m4* 9z 9- I$I$BD! I$I$BD! I$I$B$!  I$99 %U ђhI91 lH9e)zI$r)1E) $I$1E)H$ 1E)S'K'1!z^V\RI1! @J%9E) l 91/ m6 91 I$I91 $$A91 I$H$9F1 $@2d$91  $91誯 I$C91I$I$g9* I$91 !91 I$I$B$! I$I$B$! I$I$B$! $:1 91 I&91 I$I091 mѶm&91 ؚmI91I )I) 9F1I$9F1I$I$9F1I$I$9F1`-1P$I1 &91 C 91ꪯL"1%)I$P1E)$I$&1E)жi61E)LI$1E)I$@1E)I$I$1e)I$1E)? II$9e)U $IO9e)I$@)I)I$I$)I) $I$91 9F1 9F1I$I$9F1  $I$9F1 I$:1 $B$! $H$91 I91 I91 I$@91 I$I$91 $I$g9* 0I$91 @I$91 !91 R$9bT 91 I$I$B$! 9E)X` 09e)) *5 9`II155 I:1  98@@ H$I98TUUUI@8թ**i6e P8+ ywSIiH/  1RFi/ FE R $fEU$9!WzI$I'1!UW\ېTI$1! %%U TIm9E)? I$`2BD! I$I$BD!  $ 91* @ 91 @ 9E)  I$ 91 @ $BD! @@ 9e)P* vb' 91UU cHdS91`/&jѦ1E)\\` e)E):boyۆ1$!@ + FJD9$! -M&91 91ꪪ im91 A"$i1UU P 1՚q9 M%yq  ݖnE%yh hHEy9` I$H%%y9UUVX `B0$I91 I91 @$91 I$I$A) 4h'9Axx  9A - h5[91 I$I$91 91 *'  A) @$I$BD! I$I$BD! nI99˭ I$`91I$I$)I)  91 ۺm&891ꪪrt": 1E)VX`I$I$E)$!I$I$f1E)UUUPL1E) I$91ꪪI$ C01f1I$I$11: d191 / !I 91 j$M9^^01  I91* L&91I$I$91  )9e)$I$1aXWW nI$1A*  9$! `091I$I$91  $91  B$! $I$:1I$I$9F1 91 k5 91I$I$11 tI$91W M91νpH1  N7wiH /- PN/r%yi ) ݐnE%yI$I$hI$I$hI$I$h@ E%y 1E%y^~z ?>%yE)UUTT I1I$I$)(@I$1E) 5MI1 ( iZ91 I$I$g9* I$91 91 P(9P@  9 I$I$BD! C$I91 $I 9!@ I$9,U  M9e)) @$H$BD! I$I BD!  A) I$I$A) L&91 I$I&9f1 $I$91*  91 I$I$B$!  &L"&9!XVX p1p9! I$I$B$! mI$99૵U u5*A91 MB& 9E)I$I$1E)۲ ۶m1%)j*I$1E) I$I$1E)PI$1E) 0 [91 + @ BD! aB2$91 $I$ 291@$I$)I)I$I$)I)  $I$91 B 91ꪯ I$B91I$I$g9* !I$91  $91 $H$:1I$I$9F1 B$! I$I$B$! I$I$B$! k91ꪪ Ik `91I$I$g9*$I$)I)I)I) @ 9F1 I$)I)@$9F1$H$9F1  9F1  9F1I$I$)I) !I91h$j1%)$1E)I$JI1E)I$I$9$I$1E)+I$1E)m۲-1E)I$I$@!$I$1E) TI$9E) $)I91  $I91@$@ 9F1I$I$g9*9F1$9F1 I$I$9F1I$I$9F1  I$:1  :1 H$H9F1 $H$:1 C$I91ꊪ LB2@91ꪪ I$91 I0! 91﫪I$ZM1bUT0I$I1b еm691 E9$! !91  m91jJ$Jf1TUT 9 @$@$98PTPPI$I$@!  !IH8+IEH ܹ-Hf`1 ɟ1%yUU4I$EUU4I$@DZEUU/~$H$1^VTV  Hm9e)( Inm91* ii91W ݶ[' 9f1U* ګ#;1!x^\nR>|B1zbI eB1a5  S?m+A9E)W_I$m i1E)UUi1E)*m6[m1E)M$ml1E)UWWI$Ie)$!Ii 1E) 1e)H$H$9H$H$e)E))(I$I$E)$!II$E)! I$H$1II1I$I$1 I$I$1   )(I$I$1I$I$1I $1I$I$e)E)+  e)E)۰  1$! /@$1e)ꪪI$L1E)__~I$I1E)UUU 1E)-11 11x Idn;IEY1UU%*.%y9 + rq%+3&PJr +410 DZ *3IDE1" x蠠&I$J%1UTTPJ"E1T1f1I$I)I)I$I$)I)I$  )I)I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*$11$11I$11$I$11@$I$11I$I$9 $C$I11/$I1bI$11I11I$I$g9*$$11H$9 I$9!1E)I$I$'9#1e) H$1e)$I$1e)1e)I$$9 H$1E)m۶51$!X$1!_&I$e) H$I$E)!@$$!0I$I$$!!I$I$e)I$IE)!I$6e) IHJ$ 1$!N$J%1^W\ f1 I$I$9I$I$9Ne)b8I$I$9I$I$9I$I$9`(e)bP@Ie)bI$I$1E)I$I$1e)I$I$1E)II1E) 1e)@$@$1e)I$I$9I$I$9I$I$9$e)bpB e)b 5H$I$1"I$ 1E) 1E)I$I$1E)e)!I$I$9e)@$I 1$!*I'9#$H$1E)$1E)zU@$I$e)$!$E)! I$I2E)jI$!(U$AE) I Ie)E)Um۶ 1E)I 1E)$H$9I$I$9I$I$9I$I$9I$I$9$9$I$1"I$I1E)R,e)I$I$9I$I$9I$I$9I$I$9@!H$I$1"I @!@!I$I$@!I$I$@! @!I$I$e)E)I$I$e)E) )(Ie)$!**$I$e)E)I$C&e)!z@$I$E)!xVUUI$I$d!d I$I$d!d IE)!U IIe)$!** e)E))`$I$e)E)`\UUI$I$1Ie)E)U@,VE)bpItE)b% I$I$)(I$I$1 $)(H$I$E)$!۰E)I$I$1 $I$fE)UUU &@ $fE)UK">f`VXps2hCfP{kggm`H: Lb6 iaE)Vhm'M:%Q_VhPE) I$I$1 I$I$)( )($I$1I$I$1I 1H$I$1I$I$1۰C$E)a`X6lE)A  %)LB$IE)!*I A$E)$! I$I$E)$!I$I$E)$!$H$E)!z^WI$I$E)aI$IE)!U E)! E)!I  E)!* @ $HE)U% H$I$H@I$IPH/ }viH+s.U E`u cE`1 yܡ %yU ,EyWT/!&E1BBJZH$Ie)E) $e)!f1e)I$I$1e)I$I$9I$I$1E)I$I$f1e)ꮯ 1$! 1E) @$1E)^Wض[&E)!z $I$E)!^UUI$ E)!Uխ I&m E)!UZ I1E)սI$I$9I$I$f1e)I$I$1e)h$hf1!X^I1E)I$I$1E)@$I$9I$I$9I$I$9$@$I21E)m61E)__ضm[&E)!zH&I$E)!WUL$IE)!/I$PE)U pSywiP +/-=%qe)TTPPim۰ 1E) I$I11UmIm1e) **$I$11H$I11mtI1E)*// 11 1f1$11 I$11$I11I$11 h1e)(11 $ 1P@1 11&1e)$1E)m1$!I1E)$I$11<mvk&11*(\ ES4ò%91jZ 91ꂪ I 91 $0#:91kt11 % d&m4I9E) &m&91* $I$91UUU $I$91UUUؚi&11]]j-$I1E)m611II$)I)d$C11l11  X `1E)$!@11- @$1E)uu$1E)"Im1E) P1{EyP+& /7w%y "$I$1UUUTVئ1E)* $1E)+ mb;9E) j  x9E) $ KD9E)*> d@91 !C291ꪪ  @91 I91 @4m91  091 H 91  91 LD$I91 91 I(91 91ꪪ #91U^-I&#1%)Zhٶm1E) I$$Ð11UT!I$11-UU@$ᘦ1E).1e) "%81I$I$@! !$AH8/// yS7iP--) C"B+%q9PPPP k&X`9E) $)I) I$I$9F1 2۰m91j * d#@9$!z];`1~pWmۆ1) %Ro9! * &mO91% I$I$BD!  9E)`@  $I9E) -+ $9f1 dH9e)  A$91/* 91 L291蠀 mbI91 ? }">-h9E)^xi۶m1E)UWT tI$9E)-U (9E) @$&9E)**X `m9f1 ئ%R"9E) ٰmi1UUU NMi9  %%yi +@!E%y00E%y [%qAp  i9UUW\  091 I$I$9F1  91 * 9` !P9  I$I$BD! 9$!` [W9!/5 I$BD! I$I$BD! I$I$BD! A) I$A) NB'91II$)I)Я'M"'1A| `1 s%`1E)VX`I$I$E)$! I$1E)%UU0X1E) 5$H$$11IB&C1f1I$I$9!  I9f1 / R i&@9e)I$I$9F1 I :1 ؃&9A`xIɔ1b %I$I$g9*K=(@1a\Im1a  @91+* I$I$BD! `91 Iؤx9e) - m׶91I$I$9F1 I:1 $H$:1 I:1 h91ꪪ I$M&91UUW^ I$91 -@1%`Oq{`@/  1W%yX++ ` SE%qE%yI$I$hI$I$hI$I$h$2 EEy %y1TPP@I&X1E)U~hI$I$)(E)!0I$1E) U M斐9E) X 91 I$I&91  I$91/ 91 / I$I$BD! I$I$BD! II$BD! @$H91@ I̸ 9( ml91 $I$91* A) I$I$A) I$I$A) I$I$A) 9e) I$ 91  $I$9F1 @!91* bh$I9E)x 91 I$I$BD! I$I$B$! $I$99 UUU ز閴99h m@91 I2'Z l9E)$I&d$1E)Inedž1E) /I$1E)$$L$1E)*Jv$1E)  91 $@91 I$`91 I$I$91@I$)I)I9F1 I$I$9F1 C$A&91ꪪ IB&C91I$I$g9*$@d$1f1 I$11* $A!91 I$I$B$! $@$:1  :1 B$! kۆ-91 I$$91I$I$)I)I$I$g9*$$$1e)I$@)I)A$H$)I) 9F1I)I)I$I$9F19F1I$@)I) I)I)H$9F1 [#i091ꪷ I: @9e)UI$L1E)I$I$1e)* I$1E) I"9$9e)Uz I$h\9E)I$I&1E)$aN$1E)* PRv9E)U &I픴9e) !I91 I$L919F1 $I$91 $ d$91 $I91 I$I$91I$I$9F1 H$I$9F1  :1 @$H$:1 I$I 9F1 I91 I@$91 $ D91 N$b(P9$!WV mh9e)I$I)I)@11 $ 291 @ڪ-ݣ@1 5):P8 vr %yH%%" yrT q++11N f/+ 4-1eR@ DZ 43DZ4@ (DZ1@I$I$g9*I$I$g9*I$I$)I)I$I$g9* $I$91`"$I1$!P  I$I1E) $ $91 HI$91@H$)I) mmv91 ضu91 $19%)jHJ9e)I$$A11MҶ11WIn91UNB9E) Iv$ 9e)( I"I$9E) ImH9E)I"I9E)I"1E)IB1E)IB1E)IBI1E)I"I9E)* I  I9e) I @ I91U Ii I9e) 9,9$!zx?A 1!- Mvذu11( IH@11/ $91  II91 ۺa[691$@$91 @I$91 `OI%q9 5 Rwfi +?pwf+?,pI蹦J),Am)‡ՊC,_/hA@!I$I$1UUUTI$I$)I)l11I$I$)I)$I$)I)I$I$)I)$11$11$I$11$I$11H$I$11I$I$9!I$I11 I$I11I$11I11 11 I$I$g9*$11$11 I$11$I$11I$I$9!$9  I$9!h$Mf1!mݶm1E)I$I1e)I$@$9I I$1E)m61E)W`[$e)!W6I$e)!@$I$E)!I$I$e)I$I$e) !I$IE)bUW*m&%E)I e)!$I,(1$!`e)b&I$I$1e) 1E)I$I$9I$I$9I$I$90P%1xxf1 %%I$I$9I$I$1E)I$I$1E)I$I$@!I$I$1e)I$I1E)1e)@,)f1$!h$I$1(f1$!I$I$9I $1E)I$I$1e)ɒ e)`Se)b%  1E)I$I$f1e)I$I$@! e)E)@H$LB$!0I$ 1$!)I 9$H$1E)I&1E)_C&I$e)$!I$I$1I$I$1H$HE)!IE)!IĴ% E)b׾(m۰E)!I$ 1E) $1e)H$I$9I$I$9I$I$9I$I$9I$I$9@!I$I1"I1E)I$I$9I$I$9I$I$9I$I$9 9@!I$I$1e)I9I$I$9I$I$@!I$I$@!I$I$@! H$e)E)H$I$e)E)I$Ie)E)/I $e)E)I $E)!  Id$E)!xVH$I$$!!I$I$d!d I$IE)!UUե $IE)!  $Ie)E)%$e)E)`\@$I$e)E)\WUUI$I1 e)E)5 * 4@e)IE) // I$I$1  1  @$)(I$I1@%X6E)bp` IE)b %% I$I$1 I$I$1 $1 I$EE)UU%%) *){/fXT|BE`c EH _c `%1WhI$K24YE)UUVh$)(@$I$1I$I1I1 )(I$I$1I$I1K$lE)aX` $%)b- I$IE)!   @$E)!  E)!$E)$!$H$E)!z^_I$I$E)I$IE)!UյE)!*$H$%)aX\ lE)a @ $HE)U5 H$I$H9I$IPH"k.WaH/ {.e EX+ (y{w/U Ey/ (}͇%yWx3IIܧE%4H&P$ETXPPC%K$Ee)PPTThe)!X Ie)!5e)%)I$I$9@$1E)@!@ 4e)!plf1$!*M$e)!VC&L$E)!p^UI$IE)!UUUI$IE)!- I$@e)E)յ  e)E)I$I$9$Ie)E)<<I$I$9I$I$9H$f1$!If1E)I$I$1E)I$I$9$1E)$I21E)ضm[$E)!^I&I$E)!XUUI$IE)!WU I&E)!U1$f1$!*I1E)1SŘXe1^*y1PRBB$AL1E)mm61e)۶ ݖt1e) $11 $11H$11$I$111E)7I$11 11 $11pP11D:1E)(@Z$1E)U ܆1I'I$1E)WUU e)$! I$IL 1E)I$P1E) Iv1%)Iۀd1E)<@$1E)PPXm&1e)`B$I11I$I$)I) 11 I$I$)I)XI1E)//$@11PP$!I11H&1e)X%m11PPI$)I)931E)zzATI1E) 11 *$@$11I I11/ &11\ 11 $$ɐ11 Ħ1E)*11  P1 1aSqwiP//- p7Sfq ---"H'/1TTTPI$X1E)I$IB1E)1E) f1E)RĦ1  81E)  Io91 I$:1 ` B91 H@91  $I 91* I$91 91  91`` l)91/  $H 91  $:1 91 H:1 # H9E) S;k 91UUW 0$ 1e) IdX1!(i$I$11-UUUP$[$81I$I@%(ItIP@5%-- 1` %qX---+R+$%y1PPTT 91 H091ꪪ  L$919F1  I$91 ` *;9E)~r0$1!\` صf1`nIĆ1! % TI9E)+ I$H$BD! @ 91* @$91 $I91 d0 91  L291 * $I$91 `91 -M$91 / j169E)^h$v:1E)UW_x'1E)U ? 9E)P - im91 $91 H$H$:1 $ Ia1UUU Xv;i9 @N.%yi+ömݖvEy%y+ #9 %y$q j iAp fQ9UUWT L&91I$I$9F1  91 * @ A) I$I$BD! $C$@9f1 ͤI9E)& I$I$B$! I$BD! I$I$BD! I$BD! I$I$A) I$A) N'91PH1E)P !@@R91 L&@ 91K%@1E)VX`I$I$1I$I$e)$!*`1E) - & 91 M&X91I$I$9! ` 91 / M&@S9f1I$I$9F1 #$1`9-  L&I91 $H$)I) ʹM9e). * I$I$B$!  B$! &!*I9f1@LN*1!՗,ݖml11 !I$91 `a91I$I$9F1 II:1 @B$! @`091 ۪R09!jp`dIĆ1A .H ǣHe1 N1wiP -- P&R%yi +$!EEyI$I$hI$I$hI$I$h@ E%y@Ey1@ ~?%y1UUUTNB: 1E)r$I$e)VWTPPE)I$I$1E)uWW@$I$1!WW_ 4I9$! + I$@ 91I$I$g9* I$91? I$I$BD! I$I$BD! I$I$BD! I$I$BD! $C$I91 I$@91  I$9f1 * @!91 I$I$A) I$I$A) I$I$A) I$I$A) d091 I$L&9f1 I$91 * $I$91* I$I$BD! I$I$BD! I$I$BD! I$I$B$! I$BD! dJ91 C I9f1^ u$I$1VW\&1i1 @`I$1E)?I$@[`1E) $I$1E) MI$9E) @%9e)* ` 91 IB' @91I$I$)I)I$)I)H$I$)I)  $I$91 !91+ m6 91 I$M91 -m۶91  $91I$I$9F1 ۰m[&91 a9f1 99$!x|  99$! -- 91ꪪ I%1Pۆmؖ 1E) im&91 nI91 ۺڴ91II)I)I$I$9F19F1H$H$)I)I9F1 1!@0Ne)>= mٶm9f1* I$91 @91W IR;,I91UUzI$v٦1E)ꪠI$I$1E): DI$9e)UUc=dB:1`ZjI$I$bJf1 ɐ$I$1E) HI$1E) $9f1 U IK9e) L$91 I$L91 A$I$91 Ia$91 $I!$91 $I 91 I$I 9F1I$I$9F1  I$:1H$9F1LĴ 1E)( a91* 9 $ $91 LB2B"91$ID1 ")"Ȃ81ɜ X8%  NEH%+ 5+1RtE/++3))eJ@ - 410DZ 44I$I$&40P%1@`PX@$I$91I$I$)I)@9F1I$)I)A 91 I$$I91I$@$)I)I$)I)I$ )I)I$H$)I)I )I)H$I$)I)#'r<1Ax 1A I$I$g9*9F1@$I$)I)H$I$g9*I$I$)I) 91$H$91$I$91$I$)I)$I$)I)$I$)I)$I$)I)$I$)I) $I$)I)I$I$g9*I$I$g9* $I$)I)I$A )I)H$H$1111I$I$g9* 11@@ 11I 11** I$I$g9*I$I$g9*7w9 -& N7%y +9!.wDZ +4/P VDZ41lDZ3(Z ࠀ,c%9PP`1`?|IX1 %/@-1@@$11 *@$I$11I$I$9!I$I$9 I$I11I$11I1111I$I$)I)I$I$g9* 11H$11$I$11$I$11I$I$9!I$I$9!II$11*$ I211j$I$9!I$I$'9#I$I$'9#@I1E)$I21E)ض&1!^mK$e)!U$I$E)!H$I$$!!I$I$e)I$I$e)I$I$$!!*I$Ie) +Iie)!/I1$!*m`1E)I@$9$I$1e)"$If1`I 17I$I$9I$I$9I$I$9I$I$9I$I$9R#i If1``I$If1 @$I$1E)I$I$1e)I$I1E)I1E)$1e)$1e)@$I$1e)I$I$9If1(I$I$1E)I$I$1E)I$I$@!I$I$1E)I$I$1E)I$I$9 e)!e)I$I$9I$I9b$@1$!HZ$f1Tضmݚ&1E)]I&I$e)E)XUUI$I$1I$I$1I$I$E)$!&E)b`X$I$ E) 1E)U!I$A1E)I$1E)$I$9I$I$9I$I$9I$I$9I$I$9I$I$f1e)$@! 1E)I$I$1E)I$I$9I$I$9I$I$9I$I$9$@!@$I$1" @!I$I$f1e)I$I$9I$I$@!I$I$@!$e)%)$I$e)E)I$I$e)E)/I e)E)/ H$e)E)$I2E)$!$H$E)!xVUI$I$d!d I$I$d!d I$IE)!U5 !I$@E)!  A$@e)E) 0`$e)E)`XWH$I$1I 1I$I$e)E) I$I$1 I$I$1 E)!$e)E)Z@$H$)( @$E)@P\-Y,E)cIdIE)b55E)!I$I$1 $)(H$I$1I e)E)U%I$I$1 AI$EE)UU- mE$) *%!8@Eyz'%yP^c%P }R:[ i%)WzI$K:lXE)UUW)(H$I1)(I$ )($e)$!H$I$E)$!I$IE)$!*04E)!%) -@$I$e)I$I$$!!I$I$e)I$I$$!!% E)!I$I$1`0E)ax 6lHE/ H$I$H$9I$IPH.iH//e E`- & y{T %q , ɕ_i5=??1Z5 fxxN$p'fEUW\\4BC(aDZE`B?Ee)TUUUIl۰ e)!5  e)!ɐtMme)!??$H@!I@! 1E)@mf1!`ਪ@d$E)!T@$I$E)!x^UUI$IE)!Uյ+!I$IE)!)   e)$!  I$I$@!$@!@$I1"9 1E)LHe)!<<LB$e)$!I$I$9$1E)z$I$1E)zWU$E)!^ $I$E)!^UUI$I$$!!/Inݶ E)! I$Ie)E) @1E)I$I$'9#H1$!` R%QPpSy$9J *$1E)*1E)  $C21E) ɐtI1e) * *$9 I9 "%R" 1%)@PPVH1E)5) 51%)`Hk$1%)U(I$1E)zUU$I1E)UUI$I 1E)UUU?I$ 1E)UU J1 -@$1E)ɶ 1e)  I11 H1e)$11 Hm1E)< I&11Z$$11*$I$11$I$11$I$11X&kv1e)ِl1e) @$H11TT00C1E)tB'$1E)[1E)++I$I11 ,)"I1e)K$I1e) $@11`PP@11@$11PPkma11\ I$H11 11r"$@1E) A$11"8Ҍy1! I`P--5Rqwfi--#B2$S2!1PPP@k-m11X@m6l1111`Mm1E)N<1 I$v1E)I$I$e)E) 6mֆ1jj 9嶦1 -  IR9e) I$:1 @B$! I$:1 I$91  $91 91 @91 I$@ 91 u\{9E)߿  )9E) + I$I$B$! 91^ꪪ I$r991UUVZ$I!1e) hm۶H1IMݴ X8 `%H+ %=E9@ x'm۶%y1TUUU  $dB291 @ 91 B$! -9f1h` I1e)01E) * I9e) * m+9$!zI$P1!UVX1I$1!-UU Iw9$! ۶m591y 91  $ 91* $I 91 * 6l[$910 Id91* 91 [-ۆm91 ɐdI$91 X۶ 9E)x*c;ن1E)UU^ IĦ1E)%UU XiW9E) - I$K$911e) C91ꪪ mu`1UUU Rsɸp9  s%yi + aۖmEy%y d# %yi蠀 nj 9i9\p eQ9UUUT L&91  I)191*z 0T91 5 LB2$IA) I$ A) I$I$A) H$@BD! I$I$B$! A I$BD! I$I$BD! I$BD!  A) B A) I$`091I$I$g9*  91 / #;#91L&1E)VX`I$I$1I$I$1 x1a & ɐv91 M%@91I$I$9! O91 / M%a9f1  91 $#'1AX   9 `$91I$I$)I) !91 I$I9F1 I$I$B$! %H$I91 @ 91* I$` 91 $I$91 $A$91/ @$I$:1I$I$9F1  :1 9E)@ Gk@9@8@1%R1`@+/`JS%ya+- @ E%yhI$I$hI$I$hI$I$h[؊mE%yʍ%%y1TP Ii5h9UUR.T@1UUݶmd8)I$I$1 @E)!0XI$1E)-  s9E)* L$91 I$I$91 !I$91 91? I$I$BD! I$I$BD! I$I$BD! I$I$BD! LB291 I$I&9f1 #&9`X 9 I$I$A) I$I$A) I$I$A) $A) IG9e)I$I$9F1 I$91 $ 9f1 I$I$BD! I$I$BD! I$I$B$! $I$BD! I$99U Z`09! Z m9e)I$X1E)  1E)*** dB$$1E) I$k21E)I$I$9 I9f1%U ۖn91* @91 I$@91I$I$)I)I$I$)I)9F1 I$I$9F1 Id$91 IB&$91 m6m91 $I$1f1 HB&$11 @1e) " $ 9f1j** I91 B$! J$J%1TUTP )P9b %  h91ꪪ 4ie9!I$I11**  $I$g9*Hd$1f1 I )I)9F1H$)I)$"I1@P@I 15% @$@$)I)I$)I)I$I$)I) $I$)I)I$)I)p I1E) I$& 9e)U^* @$e)@PTIf1 $I$1E) m$1E)I$ж1E) I$q`9E) I 1E) / I$9E)/ I$9E). 91U [ ld91 I&91 I$H 91 !!I91 $A$I291I$)I)$9F1I$I$9F1 $)(A91jL$Lf1\W\0 1 "@$9@II$1b?T0H1UUUXP- -5EH55+++Nf----3-ݐ ِ 44I$I$&4% DZ@(H$J$1TTTUI$I$)I)I$Ig9*$@$)I)&L&11p\VX 11 $I$91ضM$11WU$@!91@L$1e)H$11$A!11 $2I$91"I9e)j*  I91۰mt117$9F1 IB$91 IB&$91II$)I)I$I$9F1 d@91 I@91 IB@91 IB@91 IB@91 I@291 1$! I$H$)I)I$I$)I) I$$91I$$91I$I$)I)$11$I$1f11f1 Ў=1!@PTp ?s1! %I$11 11 * @$11 I$fQ1UUpsw%e1 ++`/ E +-;(nwȱ =1 ۹蹧4/R HDZꨨ7 [$iDZ%yP(I$Z%1UTPP$I1!Z$R)1PTP@ 1 81b`I$1b5I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*$ 11H$1E)0_1%)I$@$11I A 11I$I11*I$I$9!I$I$9!@$H$9! @$1E)$ID'1$!^h$e) &I$e)!WUh$I$e)!XUUUI$I$d!d I$I$d!d I$I$e)I$I$e)I$I e) I$e) ILI$1$!ժ I$1E)IH$1E)$I$1e)I$I$9I$I$9I$ 1e)1E)I$I1e)I1e)I1e)H$ 1e)I$I$9I$I$9I$I$9I$I1E)믫 I1E)'9#$1e)$I$1e) f1!@f15I$ 9I$I$1E)I$I$1E)I$I$1E)$I$@1E)I@$1E)@$I$9I$I$9f1$'e)b`X`ɔD!e)b 5 CI$f1bU$I$9'f1`XI$I%)?ٶm۶ E)I$ 1I @$1I$I$1I$Ie)E)UUU5NB'f1bVZjIf1I$1e) H*5f1`f1I$I$9I$I$9I$I$9I$I$1E)I$I$@!I$I$1e)I$I$1E)I$I$9f1f1! I$I$9$1E)@!@! 1E)I$I$9I$I$9e)I$I$@! @$e)%)H$I$e)%) E)I$e)%)@$I$e)E)$E)!_H$I$E)!\WUUI$I$d!d I$IE)!UUUI!IE)!%Ie)E)U- e)C&I$e)E)`\UUI$I1Ie)E)UI$I$e)E)*I$I$)(I$I$1 @$E)!0mE)@H$I$E) aE1Wxmڶk YE)UU_I$I$e)E) @$e)E) XVH$I$E)$!I$IE)!*  $E)! X%۲mE)b`pI $!A'7I$I$$!!I$I$$!! I$I$$!!(I$IE)!E)!I$ $1I $HE)U% H$I$HAI PH/ mn `H 7gEX/+% ys %q/ +4%E+ ZX/Ey1%2$@DZb%l $fE1hT4&d'I$e)ZUUH$I1"@!$@!H$I1"e)E)@%Xe)!PPmڶf1! I2d$E)!XWI$I$!!TUU5IE)!խ+ I Ae)$!*  e)E) @!$Ie)E) Ie)E) @0e)`!e)*+  $e)E)I$I$9 e)$! H$1E)_U`غ6E)!^$I$E)!^UUI$IE)!UU Iݶ E)!u IBR 1! !A1E)H$H$9@$1e) $I1e)d$L1E)޿>d2 P1 SyxqP+//ȯ%yf1TTTT I$ $1E)۶ ِ1E)L 1E)$1E) IC'f1!h^ж?1!UUض1 k&mf1$!^_+I$f1E)UUI۶m1E)U $I$1E) 1e) *I$I$'9# 1e)$1e)$A!1e)*I11 9 I$9!$I11#11E)1%) I11I$I$g9*11 11%1E) P1f1 '@1E)\PI$I$)I)I$I$)I) $I$)I)I$I$g9*I$I1f12,1e)n`1e) @ 11$@2$011@$C211 II$1f1$I$I&1f1$I$1f1Mvm11(HP1/q7wE`---%) fE1@@@Jq1E) -- $I 11 I$11  $11 I$I$)I)I$I$)I)ZJd1%)IB91E)c;@1E)UWx@LE)!$I$1E)UUU` I$1!?  IR91  $:1   91ꪪ @91 @ 91 91 91 Mv91׾ I$91 91 @91 $  H1UUI$IPHX`P---yS7qfi--"/J$f1PPTTl119F1H$9F1 !IB&91  91 @ 91zj  $Jh9E)VV9F1  I$91 L8(91WX* MB$9$!VI$I&1$!HK1E)%% mtS91 % I$I$BD! H 91( LB$91** IBD! L$`91  I!I91 * 'l9 \ $$I91? ` 9e)` * I$t:9E)UU^xvI$1E)5UU &T9$! i׶h491 09f1 91ꪪ ;ɚMX1U rwiP / s%yi +IEy%y  d# %yi nWw 5i9Xp I9UUUT ̀@91X gW$91յ $ A) @ (B%) I$I$A) I$I$A) H$A) I$I$BD! A I$BD! I$I$BD! I$I$BD! I$I$BD!  A) N&91I$I$)I) I91 / :P#91W\pK%`1E)VXhۺ-[%E)a@pI$I A? IĆ1!/$$1f1L21f1@ 81`  x9 -  91  L&RI9bVX ɐ  1a  (91j I\1 5  $L&91 I$91 B$! I$I$B$! I$I$B$! 91 IB& 91I$I$)I) $I 91  $:1 $I$)9$!@ WI$1A( 9e) M& 9f1鸲 ǣH1 Ro%qP+/ V%yi $@!EEyI$I$hI$I$hI$I$h@$ E%y 1 Eyq  %yXz:c`@^~dB2$ H8_I$@8UI$IҶ8E)@$I&8E)UDI$8e)U@ PII$81UU $$98U $I$81UUU81UUUP  $91 / 91 I$I$BD! I$I$BD! I$BD! $C$A91 K"&X9\P` J$I1  @!91 * A) I$I$A) - i9e)hL$L E)ה H$I9E) I$`9f1  $I$91*  $91* I$$BD! I$I$BD! I$I$B$! I$I$B$! 2BD! 퐤99j / v(91 N6#91WjI$rѦ1E) I$1E) r"ɱ1E) ? kj- 9E)B [N$1b( 営9$! 햴91 DR91 I$l91 !! 91  &91H$$)I)II)I) I$91 K 91ꪪ m6[ 91 I11 *(  9E)** ؆mݖt91  B$! @ I91 $@$:1  I$:1H$M1bWV  9  I& 91I$d1f1 1f1@$C&1f1 I$1f1* I$I91I$I)I)H$9F1 9F1I$I$)I)@I)I)I$9F1I$I )I) !!I91b1H1X@6A 1I"11E)I$H1E)I$M51E)퐤I$1E) rq$9E) v dm;9E) mq9E)5 I$ `9E)$I1E)*(CѦM$1E) `q$91UU $6891U 91 I91 L$d91 !I$ 91  $I$9F1 LH$I91 $ `$91 B91ꪂI$Z& 1bWT01 P17q7WE`---5)E/---3+p  43DZ4`,ǹ9``I$I$9F1 91*  $91H$I$)I) m ۰m91 I$`$91 IҴ91 NL@91Uߪ!C91 I$k 91 I$m91W_ Ii 91 m6mm91I$I11*(0 11pI$I11U'1f1I$I$)I)I$I$)I)I$I$)I)I$I$g9*I$I$g9*I$I$)I)I$I$)I)I$I$)I)I$I$)I)<@1 @p d 1'?/I$I$g9*I$I$g9*I$I$g9*I$I$g9*$@ 11I$I$9 I$I11I$I11** "$A1!@I$N 1!U &$ 1e)I! 1f1* &i !1%)I\1 %q%q1 5EP/`N/wf++4,Mo 43DZ4-# /mh9@"I$I$1UUUT11I$I$g9*1%)@I1b5I$I$g9*I$I$g9*I$I$g9*1111* @$11 11 L"$1E)\I$I11I 11$11$I211 ~$I$1E)~k$1!W4N$1!WUh$I$e)!UUI$I$$!!I$I$d!d I$I$d!d I$I$d!d I$IE)!UUU I$E)!UU Ine)! 01$!*I$I$1E)I$I$1E) I*-f1`4CIĆ17I$1e)I1e)lf1E)I$I1e),0 1$!`ef1!//I$I$'9#$'9#$I$9I$I$9I$I9۶m41$!mt1! ?I$I$9!I$I$'9#@$@ 1e)I$I$9I$I$1e)#*If1`IE)b5I$I$f1e)I$I$1E)I$ 1E) H$1E)H$H$1E)1E)I$I$9 e)@I$I E)bU$1E))I1E)⠪IHe)H2L$1E)_UUHB& %)bTXhɖ E)b $e)E)x_$I$1&E)x$I 1E)a !I$A1E)*1e)  @$1e)H$I$1e)`0 1x`I!@e)- I$I$9I$I$1E)I$I$1E)I$I$f1e)I$I$1E)I$I$9I$I$9 f1!@I$I$!W(6  f1/) I$I$1e)@$@! 1E)I$I$9I$I$9I$I$9$e)ap`Ke)b 5% $I$e)E)I$I$e)E)*$) e)@I$IȐ!b7$E)$!$L$E)!p^WI$I$E)I$I$E)I$IE)!Uյ- I$Ae)!* I$Ae)E))$C&e)E)`\H$LE)bWVۖmݰE) e)E)%I$I$e)E)$H&E)p\XItE)b 5%I$I$e)E)I$@E)!֘ !I$IE)!KE)4I$I$e)E)I$I$e)E)I$I$1 I$I$1 $H$e)E)^WWض!6E) @I$I$!bז(RlE)b@ɐE)bI$I$)($I0e)E)+ @ I&L$e)E)\WUI$`E)WV ɑ=!I$E)U!@f^" 3 %y^ `fi_Rd EXW b? hE)_I$I$XE)UUUPI$IE)$!* $H$E)!$E)!E)!*$H$E)!I$I$$!!IE)!HE)!E)!*I$E)!*H $HE)U% H$I$HAIIPH*kn `H+ }.gE`յ+" ys %q+ -qgN0+1Z"%EPP1`@$E)PU1$I$ǩe)@TUU $I$e)E)I$Ie)E) @ e)E)%% H$e)E) *K۰ae)!I$I$@!H &e)E)X $I2e)!zI%)I$I$E)a E)!$A e)!* @$I$1"L$Ie)$!((H$Ie)E)(** e)%) e)$! #:-E)`ae)!  A@e)E)  C&e)E)@p^vm$e)!*~غ5M$E) xWUM$IE) UU-IE)!)I$ 1E) $@f1E)ZZ 1e)@$1e)HB&dB1E)I1e)I$I$9!H$H$1E)m: Pf1UUqxiP--]!$qf1PPP@@H1%) H:1!z$؆1`$I$E)!WUI$IE)! c۔f1!UU1%f1 *I$I$1E)I$ 1e)I$'9#H$9$I$9@$I1e)  1e)*I1E)*!I$I1E)* $I$9!  A1E) `11X$I11 I$11$I$11$I$11I$I11 I$I11$I$11jRBRd1E)P( * !I11 ۶m[511``11J1E)<> $1%)Pix1%)/$ 11 *$11V11$11I$I$g9*I$I$g9*$ $`11PXA1111I$I$g9*J,%R$P17q%yX--="E---%Iɏ$1UUUT@$)I)$C1e)IB2$ 11I$I$g9*I$I$g9*(1E)@ئ1%)I$I$)I)R"Im1E)N1E)WIb'`1E)UU|1$IB'1E)%UUW`J$1E) U@1E) J91 @B$! dH 91 I$91 91/ 91 I$91 @L91 @"$H9IHPH/**+ yWtqP/+ N!EE9 BBI 1E)  1e)  9E)/ IR&9e)Z^ &iR"%9E)I$I)I) I$91 M۔L9E)I$@)I)I$)I) I$I$9F1 # I91p j 9E)Id1E)mvI1E)*+ fA91% "% 091 (HJ91 $ I91* A) d291E 1e)** I91 I$`91 "i 9f1h * I$9E)UU^xa]ۆ1$!5 w9E) - $I %9E)X  91 91ꪪq@,$P1 1%qP + @ R%yi Ey%qm%yix蠀 -ٖi9\   `9UUW\ I$@ BD! I$I$B$!  A) I$I$A) I$I$A) I$I$A) H$BD! I$I$B$! A I$BD! I$I$BD! I$BD! I$I$BD!  A) L"& 91I$I$)I) lI$91/ N' 91W^zb#1h$ E)% I$I$E)$!S$1E)-U@&1e) j=>a9x`Ix71b5- `[m'91 ?  @91 I$I$B$! I9!` I 9Օ& 91 I$L&91 ! &91 91 I$I$BD! I$I$BD! I$I$BD! H$ 91$R-9E)zh,ə1$!55 ۲m۶a91jIt1,1e)  9e) 9(pSw`@ //pJS%y` +- @ E%yhI$I$hI$I$hI$I$h[؊mE%y c# %yi b %qP~N iiHWNR H`@WIb$ IX@UI$m lP@U_I$$ P8dB$ H8IB$ H8WI$H8UI$@8UI$H@8U $I98UUU $I$98UUU I$98UU I$98UU $81UU| $98U HB$I91 $C&d291 !I$91 * @91 @A) J 91 I$I$A) I$I$A) HĜ9E)( I$LB09f1 I$91 $I!91 * I$H BD! I$I$BD!  I$BD! I$I$B$! 鐤I$99-UU Hv$91* ֓: 91 d9E)I$m1E) )$I$1E)NF f1: I$9E) $I$1E) N$9E) M%91+ $ 91 dB:)91 I$I&91  I$91@M$9b VW0II1 !91 H$I91p$N$1b^^`J!`1 !I$91  I $91  91 I$  9F1 R$ $I9e)* I$I$B$! H$:1 B$! $ 91ꪪdB2 1f1I$H11( I$I$91 I$91 lд91 I$H :19F1 9F1$9F1I$I$9F1 II$9F1 d2$I91ꪪI$@)I)I$I$9F1I$)I) [۶m91d 1e) IR'R+9e)_ m1E)z $ H1E) ??91 UUU h ?91 UU u 9E) $1e) c;n`91UU]i6]`1e)*)I1e) @[NĦ1e)( mm'91]U  91u K91 L&H91 6i-9E)h   91 @$L$91 ?P1p1S%yX/---&)SE)---;)q 蹧%43DZ4%X%ǹ9`XXX  91* I$I$B$! @B$! LH 91 I$I9F1 `291ꪪ !@91 @$B$!@$@91  91 $B$!  I:1 `$L&91 I@91 IB$! IB$! @$B$! $I$9F19F1 IB$@91 I91 m 91 I91 I91 I91 I91 I91 1 91 I91 I0`&91 $I$)I) 9F1I$I$9F1 HI$9F1I$I$9F1 `B&L$91II)I)9F141$!IO1E) B#&1`II51a5I$I$)I)7w1 -% N7%y +6!r/ DZf ++ 4/P VDZ41`DZ3)# x,Z%i1PP@11$11I$I$g9* @$111f1H$I11(* 3'1bX$1 I 11** 11H$11$$11UH$1!Ib$1!(:I$1!ֶmӶ1!H$I$E)!VUU_I$I$d!d I$I$E)!UI$I$$!!ޘI$IE)!UUUI$ie)!UuIe)!uif1! I$A1E)I$1E)&-1! `IIf1  I$ 1e)I$1e)1!`IXHf17I 1e)1E)j`$I$E)VW`1!$1e)* I$1E)@$I$9I$I$9I$I1E)*$91$!`p 1! %5@ 1E)p@I1!? I$I$'9#I$I$'9#I$I$'9#I@$1E)$I$1E)I$I$1e)I$I1E)I$$1E) 5j$1`X\`e) I$I$9I$I$1E)ꪪI$I$1E)I$ 1E) 1e) m1E)mۺ51E)_2L$e)$!H$I$e)$!$IRSE) !A &e)E) Xضm۴E)!I$Ie)E)UUUI$e)E)U%b&`&E)bpPPPIDf1b55@$1e)@$I$1e)I$I$9I$I$9#'L'e)bX\J If1 I$I$1E)I$I$f1e)I$I1E) '9#H$H$1e)I$I$9I$I$9I$ 1e)1E)I$I$f1e)I$I$1E)I$I$9I$I$9I$I$9I$I$9I$I$9@$e)%)E)!I$Ie)%)   e)%)  $e)E)`TI$C&E)!z@$I$E)!z^WUI$I$E)I$I$$!!UUU%IE)!ս I$$Ie)E)UU I e)E) 0d$e)E)`\UI$I$1mn6lE)!I $e)E)I$I$e)E)I$I$e)E) @e)`eJ$IE)b)I$I$e)E)I$$Ie)E)UW I$H$e)E)  I$1"I$I$e)E)I$I$1 I$I$1 $I$)(I$e)E)UU+e)E) HE) I$I$1 I$Ie)E)//$A 2e)E) p`$I$e)E)XVUUI$I1 $e)E)%kZ$I$1 I$C2E)!!$I$$!UUU#$@ $e)U!Smf* "3HEy~" fi_Rd EXW S?pE)UZm۶m X%)UUU@H$I$e) e)I$I$e)I$I$e)IIE)!* I$@1I$)(H $HE)U5 H$I$H$9I$IPHIqiPUս-.U EX/ % ys %q/ +yN "1 $E)@T/@$I$E)PUUUe)E)  I$I$e)E)I$I$e)E)*  $I$1"I$I$e)E)$e)!$@!`$e)E)XV I$$E)!j^H$I$E)!^WUU I$@E)!U!I$E)!*/!I Ie)E)  I$I$e)E) I$I$e)E)*I$I$e)E)* Le)E)$H$e)E) E)!$ Ie)E) %%* 2e)E)@pH$I&E)!$$E)!p_UI$IE)!WUUMn0E)!U%!I$Ae)$! 1E)I$I$9 I$9H$I$1E)I1e) 1e) H$1E) @$I1e)$I01%)RݶmHf1UUU6aS1aP26yE1BB &I$f1!^UUI$IE)!/me)Ive)$!.1E)I1e) $9$I$9I$I 9۶mɐ1%)%I1E)+ 1E) $L1E)(ֵ$1e)I$1E)$I1E)H$I1e)*$1e) @1%)II$11 I I$11 $I11%$I$11@$H211 j 1E) 11J$ۦ1E)11+$11$11M1e)*@ 1%)P@@L$E)! 1E)ɄLf1E) 1E))tI1E) +* [1E)(( 11 1#1E)D1E) 11e1e)  P1UU 7aNSiP/+--% 7y%q/---3K%B-1TPP@I$I$g9* I$)1E)$IJ1E)($I1E)I 1E)" 1E)@IT1E) I$I$)I)@I$11*11 I$I$)I)1%)I:@1E)U\i۴91$!~xw1!/ 1%) @$91 B$! I&91 M91 91/ 91 R%H$H9 !XH/yW7%yX--/CE9PPTU  91UVzId1e)I$@$1E)@ t$1!: 6lm$9E)_U IJ1%) H 9F1  $)91  $k691$1f1 I$)I)9F1 B$A91 m+09e)b$ &`1E) 1e) J91 U i6m91 I$I$BD! $dH291 * BD! It91 $I$A91 * $CH$91( Mۦh91 @C$R9e) * O'9E)UW^xII$1E)5UU=o1E) @$MҦ1e) (!91⭥"@H1UUUwIXE1 ) ` W%y`+/ @ SEyq  @Ey%ql%yiz蠀 NYhAz蠀 X9UUVX I$BD! I$I$BD!  $A) I$I$A) I$I$A) I$I$A)  2`$91 B$! I$BD! A) H$ BD! I$I$B$! ɐd99 % M&@`91I$I$)I) I$91I$)I)j"5 H1E)\pI$I$1E)UUUVI$I$1I$1E) %U Iݔn9e) * @0$91ꪯL$L&11I11 * ݖ91 L$`091  I91 * I$I$B$!  91K$1\W 0IJ9! * @$91 I$I$B$! I$I$B$! I$I$BD! `9f1` Gom9E) !I$91? I$H9F1 I$:19e)J*Oޜ9׾( H9 R/%qP+/ V%yi $@!EEyI$I$hI$I$hI$I$h@ E%yXE%y~ v"ے@%yqCH%yi_ vB%yaW R%q`U OR# %qXU IR# I%qXU R# IiPW c# IiH_I# IaHU`HUIb" @X@UI6[ X@UI$mmP@UI$dP8IB$ H8IB$ H8UI$@8_I$@8UI$I@8U_ $I?98UUU $I$98UUU I$98UU I$98U $98U 90 N$N 9U,  9e) L&91 I$I&9f1 $I$9f1 91* I$I$BD! I$I$B$! I$I$B$! I$@91 vm۶91 !A) &m$)9E)@v81e)I$L01e) -жmۦ9 #$9E) I$h"9E)II1E)* OI$91+UU  $9f1 @`ݖt9f1 I 91 J`9\ 1%)FM$1b8U1B*1 $@&9XH1 $I2$ 11I$I$1e) bi۶91 $I!91  B$!I$I$9F1 B$! @"I9!@IĦ1b,U 0 9%) `91 &@9$!pXI1!5% I$I$91 I$919F1$IH1I$I$)I)9F1$9F19F1 I$I$9F1I9F1 $)I)I$I g9*I$I$g9*9F1 [2`۶m91Z N" J91UZ S,91UUz I$N(91UUUj$C2$C01e) 9I<9E)/ xI9E). @O$91U p91W] ~b9f1W_ '91UUivma1e)***`$I$11WUW@6Z41hP` DI$1 U d$91_W P9 7SrqX-%-) psq%y)?%dA攻豇 ?%%)X2蹆j%HH$Ǚ1TTTU !$91* $91 91 I$I$BD! I$I$B$! 91 I$I$B$! I$I$B$! @ B$! I$I$:1 I$:1 91 @$91@$@$9F1 ! 91 I$I$B$! B$! I:1 I$H$:1I$I$9F1 *5#9x Tə9 --  91 $B$! $B$! $B$! B$! $H$:1I$I$9F1@ 9F1 I$I91 91 I$I9F1 I$H$9F1$9F1I$I)I) 9F1 $I$I091P>R#1!`x9{S'1 +z 1X1b %H$I$)I)I )I) mvm$I1UU%uE9 ++M'F *A){o %+D1?1x?g[蹧\??C#Sh蹆~1ۏ姡eP$I$1!TUT0 A1!@11H$11$11L&1VX ж1 $Iu$1%)^U 9I$1%)pUU$I$1%)UUUI$I$E)!I$I$1$H$E)!E)!I$I$E)$!Nb;m 1!_/I1!/c1$!I`1!*5Z-1`X` IHf1 -5 I H$9@$I 1e) IZ$1XVIf1bZ"'f1bpX`ɐ `1-5 I$I$'9#I$I$'9#I$I$'9#I$I$'9# 1@l1E)p@$I1$!@$I$1E)I$I$9I$I1E)I1E)*1E)I$I$'9#`1!1`1! 1 I$I$'9#$1e) H$9@$I$9I$I1e)I$ 1E)I@$9$I$1e)I$I$9@ f1P1@f1 I$I1e)I$ 1E)  1E)*@$1e)m۲$1E)jV$e)E)H$I1I$)1E)UU$@1jp` E)b%% %)b@Ie)b&Uٶm01E) I1e)*J%f1TP`X`f1- I$@1e)I$@ 1e)I$I1e)I$I$9f1 `I$I$@!I$I$1E)I 1E)I$I$'9#I$I$'9#I$@$1e)II$1e)I$@$9I$I$1e)ꪯI$I$1e)I$I$9I$I$9I$I$9I$I$9I$I$9$e)$!d$e)$!e)E))Ie)$!2e)E)p &L$e)E)XVU @$E)!x_H$I$$!!xWWUI$I$E)I$IE)!UU  $Ie)!*$E 8E)`I$e)b5 $L$e)E)pVWUI$Ie)E)UUU5 I$Ae)E)5 $@!I$I$e)E) $E) PI$I$e)E)I$I$e)E)I$I$)(I$I$e)E)  e)%)@$@$1"I$I$1"-X$E)b@PT0lE)b )(Ie)E)U/I$I$e)E)I$I$1 I$I$)(I$Ie)E) $@C&e)E)p\m۶E)I$I1 $e)E)zV@$I$1$H$E)!C&$C$! e)%5M$f1!I$f%)UU#E)% )i$%yT 3xH%y~v fi_zSk i%yXW M h)VjI$LX%)UUTH$@ E)!I E)!IIE)! $)(H $HE)U5 H$I$H$9I$IPHյ?mn`H+7gEX/% y&E %q/ -4  E1@/$I$E)PUUI$E)!(IE) (*I$I$e)E) e)E)j@!AE)! +*I$I$e)E)۰eE) X$nE) k6e)!hj I$E)!jUUI$I$$!!TUUIE)!եI e)E)UI0E)!0E)!E)!$e)!0ٖle)!H$I$e)E)//I$I$e)E) I$I$e)E)$`B2e)!PX@$E)!zWH$I$E)!\UUUI$@E) U-+ A$IE)!-$A e)E)/ 1E)zj!1E)I$I$1e)I 9$Km1! 1E)H$I$1E)I$I$1E) I$1e)$I$:f1$!k$f1!^U ِX) 7yFX--IEE)UUTT1E)I$I$9I$I$9I$I$9I$I9dB&1E) '9#H1$!%$%1$!X$I$1E)-۶f1!ٖm1!I $1E) H1e)$I$1e)@L$1%)؂-`f1$!hh-Nf;1$! * Ik$1!WvN$1!UԶI$1!WU`ۉ؆1!жm&f1!__֦I$f1$!UU@&dBE)!$I$1)(@$@)(I$I)(I$IE) I$I$E)!IXJ 1$!!I$A11[#$I1%) H@1%)I-1E)// K@1e) A@11330$$I$11VUT[;4Cl1e)$$1E) 9 I$I$9! `{vj`1#i+-IMA@&I$I$1UUUT`1E)0P1E)I$ $)I)I$I$g9*@dB&11!$11 9F1d$I1f1 I 1f1 !I11**I$I$)I) 11@@11AI1E)UI$M$1%)UUVTxI$1%) UU 09E) 91 HD@91֖ I& 91 I$91 H$I$H9iv`H/1ϯlx9 JJR  $:1 I$I$B$! 91^ꪪ :b 9E)~I$Mm1!  1E)WZ 閸1E) ۶mۖ 91%PI1$!I$I )I)  91  91ꪪ I$H&91111%) (9e) mvk&1E)*m۶ݚa1e)AI$11U ۶mۖa91 I$I$BD!  H91* 91  H91 I91** I$I$BD! L$@ 91 P]691pcoNB'#1E)W^zII$1E)5UU O9E) ) 1E۰ 9f1 ۶mٖ 91 dN&"!H1 N7wiH +/ s%yi +-@!Ey%q "@Ey%ql%yiz蠀 NWi9h  `9UUVX H$A) I$I$BD!  A) I$I$A) I$I$A) @ 9e) !I91 I$I$B$! $I$BD! A) H$A) I BD! I$99 K9,`91I$I$91 !I$91 k5ۚ91j5ڊ1E)X`I$I$1E)UUUVI$I$E)$!1XI$1E) UU Io1E)- "M 91- i۶K91 ФI$91/ D!91 / !I 91 H$:1 91 J9\ ٶm@9f1I$I$g9* !91 I$I$B$! I$I$B$! I$I$BD! 91 I$@91  $I$91  !91 IB$! I$H$9F1<@9pSw`@ //pJS%y` +- @ E%yhI$I$hI$I$hI$I$hH h$C EEym`E%yꪪIBE%y_ v"E%yU IBEyi H%y%q Ibے%y%qW uB I%yi NB%yi_IBH%ya_ IҶ%yaU Ib# @%qX @%qXU Ib$ iiP I@iPUNҶ@aHWIb[ @`HUvR@`@WIb$ HX@UI$m `X@UWI$$ P8$C H8IB$ H8_IB2$ H8UI$@8WI$@@8U $98UUU $I'98UUU I$98UU II$98UU $81UUP $98U 98 I$@ BD! I$I$BD! I$ $BD! $H$BD! 'P(9$!p\X` !@ 9$!  #91j`K$K1bTUT$$ f1$I$1E) MI19E)/ ?S91UUPI$I$1E)PĦ1E) 0 91 -U :햴91 M691 Mf@1a81E)  &I1$!L$M1VUV8ɑH$I15  9F1 km۶ 91 I$L91I$I$g9* -жm&91  i91 91 I$I$9F11!4 B$! I$I$B$! $:1  9E) H91 I$H&91>1hI$I1$AL$11$1f1 H$@)I)I$I)I)$9F1$I$)I)I$I$)I) $I$)I)II$)I)I$9F1 9F1I$I)I)I$I$9F1 $I$:1 91ꪪ i h0I91Uꪫ-I01! I$J(A91UU֪I$I$11UUUP@$01E) p9f1 T9f1 }.'A1WU P9j IꐀF9 I$}91UW_HIP1 1SqwiP--- 'p1Sfq ---/!p N++)-4 "1A`` I$IB91I$I$)I)H$I11(1f1I$I$)I)I$I$)I)@$I21f1 I$91 I$91 $AI$91 I$91 $II$91 $91 @$091 $91 !I $91 91 $I$:1 91 91 I$H$:1 "  91j 1 9$! @$H$:1I$I$9F1I$I$9F1I$I$9F1 I$I9F1 B$! I$:1 I$I9F1  91 H$I$9F1 I$:1  $91$9F1$9F1 $B&L$91I$)I)$$I&1f1K%1a\pI q1b%  I$C&11I$11 11 O$%q15U+`ۧq+=pf;+.ȱD3pC-؃o 6#h$m1@"$f)UUUTIlk'1 _v$1%)_U@6m:1jzz!IE) %I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I1%)UUU m6Ȇ1ziIE)b5= 1!I@1E)-I$I$9!I$I$9!$H%1bP\XJɔJ1 % "i"1`II$f15UU$A f1- 1E)ꪪI$Zie)UTP f1bI$I$'9#I$I$'9#I$I$'9# $1PK1 $I$9P$j"5f1P\X`T 1 % I$ 1E)*I1E) !I$A1E) 1E)1!I$I$'9#I$I$'9#I$I$'9#$h1@P`ɐdIV1b%%)$I$9I$I$9I$I1E) I1E)* @$1e)$1e)I$I$9I$I$9I$I$9I$I1e) I1E)*$1E)$I21E)ضm[&1E)~W$I$e)E)@VUUI$I1E)UUUIv`1E)U`X$1E) zW@6mӶ1E)z_UUI$Ie)E)UUUI1E)U$H1$!̶I@1bI H$9!I$I$'9#I$I$'9#I$I$'9#I$I$'9#I$I$'9# H$9H$I$9I$I$9$)P5f1@P`If1%I$I$9 1e)I$1e)@ $1E)I$I$1e)I$I$9I$I$1E)A$I$9I$I$9I$I$9I$I$9$e)$! @$e)%)I$I$e)E)I$dBe)$!$@$e)apJ E)b 5 I&E)!$I$E)!~WUI$I$d!d I$IE)!UUUIE)!% I$ e)E)UU!e)E) Xe)!IE)b5I!Ae)E)U th&E) \^e)! I$I$e)E) I$I$e)E) H$H%E)bXVXE) I$I$e)E).Ie)E)/ @$@$1"I$I$1"I$I$1"I$I$1"X,`E)bP@ٶ ۰E)b e)E)- I$I$e)E)I$I$1 I$I$1 I$ e)E)*lX&e)!xE)!H$H$E)b\W\mE)a  I$I2E)$!I$E)!N$i f1$!/` 91$! pM۶f1!I$E)!I$IE)$! **Ie)E)U' O$%qE)UU#`%Y #cfz!~#%y_v# ifi_Rc EXW ~Rk h$)^m&r)Y\ It%)a %-۶ [HE)U5- !H@I$IPH彯/v`H+}6gEX+" ys %q/+ ( @$E)PT+H$I$E)TUUUI )(I$I$1  E)! e)$!( e) $AE)!I$I$e)E)+ $@$E)!$C&E)!jZ2$CE)!jVUU$!I%)!UUյI$IE)!*Ie)E)  e)$! E)!E)!E)!@E)! @E)!)( $e)E)@`\ $I&E)!zLȄE)I$I$$!!UUI$IHE)!UՕI$! e)!!e)E)M1E)I$I$9 1E)zz1E)$H$9I$I$1e)I$I$1e)I$I$95f1$!z5M$f1$!zUH$I$E)!__I e)! ntPE) /1W%qX----S2!Ee1P@I$I$fe)UUUTI$I$9I 9 '9#$'9#H$9$I9$I1$!R" I1$!X H$9$I$1e)$@$I&1E)zIc'1!jmI$f1!UUI$e)!_U $I$E)!_UUH$I$$!!I$I$!!WWI$Ie)!UUUIĶ-1!UIb1!Uݖ$1!Im1E)UI\I1E)I, 1E)רI 11U)b1E)I11I11I11b1%)0IJ1E)  I$C211$I 1f1  $ 115!I$I1f1ؐd1E)?$A11H @)I)I$I$)I)@1f1I11dB&11_^I$`11UUXpSmxf1 # ` 1s%q +-%$B"1E)TPP`!1E)m61e)1e)11 Md1E)>><I 11I$@11 $11% DJI1$!H$I)I)I$H$)I) 11 11*1f1H 1%)@1%)xNĢ 1!I$1%) UW 4I9E) $ J91 " H9UUI$IPHxqiP- ɓ i1PTTU H$91 I&91 4-9e)j 9e) lH9e)ԔvB'dц1E)ZII@e)!*>> Nħ9e)/ 11H$)I)I$)I) I$91 ۂZ91jn611I9F1 I$I$9F1 `&9e)X 1it&1e) L$!11VPi% xI$91 UU ۆmŖj91 Id9f1 LȄ 91 $@691//% I$I$BD! $ I&91 * I$BD! ۆ-`9E)I$1E)N"'r$1E)W\\PII$9E)5UU (IS9E) - a 991X H&9$!ZwPf1 No%qX + N{%y$q EEy E%y_ 3 %yiz NY iAx @$$a9UUVX H9E)@ XI9! 7Օ ۰91 dB2$I99 I$I$A) I$I$A) H$A) $C&L&91 I$91*  A) @$A) A) !I$99 / s9:I91 I$I$91  tI$91/ ՒZi91\p͒I1E)xI$M%1E)UUW\I$I$1II$1E)UU s9E)*+ mִ91ꪮ&͐9!x,ɛ1 / @&91+ L&I91  B$! B$! I$I$B$! L& 91I$I$)I) I91 91 I$I$B$! I$I$B$! I$I$BD! I& 91I$I$)I) *59` I9$! @@1UUq縎 ǣP%1 +) R/w%qP+/ `Ow%yq $@$EEyI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hHhIhI$E%yI$E%yLB E%ymmE%yIۆmE%ymmE%yU NBEy%q IB Ey$q vBے%y%q Ӷ@%yi %yiCH%yiUI%yaW %q`U  I%qXW O H%qXU  HiP_ IR HiPUI HaHUIb;k I`HUIb[ IX@UIҶX@UI$m lP@U_I$$ P8$C H8IB$ H8_I H8W $@8I$H@8U $I98UUU $I$98UUU I$98UU I$98UU $98U $98U Z*q91 (9f1 Mm9E)I$t1E) )۱m915UUU Jl$9V m۶9! c'v:9E)I$1E) Iq$91 +U $(B9e)@B 9$!Օ' I$`91 Mnm91@$I$)I)$9F1 I :1  $L$91 I$I$9F1 m6 l91 $ 11  11I$1e) ۶ )91 B$! @&9b`X  1b I$I$9F1 $I$9F1 @:1 ZH9%)z  91 M&@ 91I 11**I$I$)I)$I$1f1* &@۶-9e)j 1!% L$d91I$I$)I)I$I$)I)I $)I)I$H$)I)$I )I)I$)I)I$9F1 d&91I$H )I)'z>1b`XX`  tI1   L$91 " 91~ M 91 It9f1 uR' m91WW_!211-}bDIP1e) ** 5&H1UIIPH/X `P55%- 11qSfi-----p{f+++/'x'9`X\^ `$`091 !!I91  I2dB&91  91 IB91 $*:9x mI9e)(I„91I$)I)I$I91I$I91I$I91I$I$)I)I$I$g9*@$H$1111I$I$)I) @ 9F1I$I$g9*@$I$)I)I$C&11$I$1f1I11++$I$)I)I$I$)I)I$I$)I)$I$)I) @$C211$I$11$I$1f1$A!1f1  $I$)I)I$I$g9*$I )I)I$I$)I)$@$11II11***  11 116dB&$C11j": `1!Xp9O4@1! dB2$A11I$A11/I$ )I)dB$I117ɝ1 -% PNq 1Isf -4  $V4!@DZ-3)# x,Z"%h%)PP@H$I$%)b^^ %) E)!ji$IE)) I$I 1!*I$$1!*I 1%)Um1! IvV1e)*I$11"I1E)On$I1'!II11 9!I$I9!I$I9!#I1`01E)1e) *M: 1bVhIX`f1b5% I$I$'9#I$I$'9#I$I$'9# 1e)@$1e) $I$1E)p"'#f1axxIWP1b-) I$1E)$1E)j 1E)I$I$9!I$I$9!I$I$9!@%X41xx 1 %% I$I$'9#$'9# I$9H$I$9!I$I1E)I1E) $'9#$I$1e)H$I1e)@ 1e)$H$1e)I$I1e)I$ 1e)*I1E)*01E)l떤1E)U $1E)U $I$e)$!I$I1E)UUխI l1E)Ul[$1E)ZUX$I$1E)~WUUI$ Ie)E)UU5 I$I1E)UI$I1E) ,5Ȇ1`II1??H$I$'9#I$I$'9#I$I$'9#I$I$'9#I$I$'9#$1e)@$I$9I$I1E)*I9H ;1h21!TIf1 I1e) $1e)I$I$9I$I$9I$I1E)I$I$91E)I$I$9I$I$9 8p$e)b`XXBPe)b @$I$e)$! I$Ie)E)+I1E)$e)E)#ɒ(E)b` $IE)%H$I$E)!^UUU$@$!``iIE)=-!IE)!)IH$e)E)/$e)E)@$I$e)E)@$e)E)__/Ie)E) $@!kue) ^ e)! I$I$e)E)I$e)E) ,@E)`I$IE)a..$A$A"e)$! e)@$I$e)E)I$I$1"I$I$e)E)I$I$e)E)$C$Ie)E)? e)E) I$I$e)E)I$I$e)E) E) @@(dI$E)b&I2I$e)$!H$@E)!\^z E)! @ @$)( E)!$E)!Iĉ 1$!5 DX&1$! Xh&m6e)!I E)!I$A1I e)E)`$H$9E)UUU IrqE)5 Prw܆%q #@ .E*%6lf^(c8f_% i%y v hfi_S# EX_~ $`(VH@&$ H8_I$IPH.kwn `H+}6WEX+-UJ %f$) PB$I$fE)`TUU @$1I E)!* ,E) @@ِE) @$I1I$e)$!*@$`BE)!$@E)!$e)E)+K[I$I2E)!j@$I$E)!Z^UUI$IE)!UU  E)!kj $@E)!  )( )(1 I$I$1 I$I$)(I$I$1  )(IE)! @$E)!zUH$I$E)!VUUUI  E)!UIȄIE)!- e)E)0e)E)`e)E)I$I$1e)I$I$1E)I1E)I$I$1e)I$I$f1e)I$I$951! 5m$f1!z_`B&$IE)*Ie)! i1e)!/@$e)$!@@2Pe) p7WqP//- of%q H"%cEe)TPj*I$ $9 H$1E)$I$1E)htIe)!(&7I$I$9$I$1E) I$I21E)-'e)mI$f1!U$I$e) H$I$E)!I$IE)!+I$I:e)!UUIĤ$ 1!U Ibw$1$!U*IH1!I1$!* 11 11 @ 11$111111@$1111$I$)I)I$I$g9*@2$C211 1f1 m۲-11@@ٶm11@$H$11 @1e)$C1f1I$ )I)I( 1E)?(!I 11LȄLH11(((I$I$)I)$@11!!I11$ $118I$$)I) oi1UUtɟqmI$hWfUU-I$N"$҆1UUVPM$Ml1e)I9@$I$1E)*tI$1E) $1e) 11 I$I$)I) 11 $LB211 I$1e)$1e)$PI1e) !I$ 11I$11 1f1*I$I$)I)X`1E)xI$X@1E)UWx/1$!5" ]$H1I PH** /`e1 JBR ސm&i9e)) !091 91% m9e)j 0m9e) * @91 ؀I91zIB' Ц1E)dB$ 1E)vm61E) Tw1E) +I$@ )I)@ $)I) I$)I) $ 91 d0 C91I$)I)9F1 # 91X* m's9e)_^ Jb$D91VS NR'91%UW HC91 I$I$BD!  J91 91 * $C2$H91 -M$91 + $I91 I&@ 91 @C@9E)` * O'99E)UW^x`{m'1$!/?_ PK 9E)- l­i9!Z .$I@1UURwiH/`Jw%ya +- @ E%yI$ EEyꪪk5ۊmE%y~ d# %ya蠀 vKiAx 6 $a9UUVX N@9! I$I$BD! d99 - `099 I$I$A) I$I$A) @091 I$I$91 !I$91 * H$@$BD! I$I$BD!   A) $I$A) #5:91 I$I$91  I$91 km91ꪫZ#@9E)z⠀I$t:1E)UUVXI$I$1 I$1E)UU@X1E)- in9e)b * Go&I9$!I$I$9!  91 / k5m91 I$I9F1 91 I$I$B$! `091 I$I$91 $I$91+ 91 I$I$B$! I$I$B$! I$I$BD! `91 j'#9bxXx I1a  I$H :1p9ȣH1 -%RqiH/IO%ya ++-`JSE%yhI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hIhIE%yI$E%y$CE%yꪪIB$ EEymm`E%yIBE%y #E%yU IBEyi IB" @%y%q Ibے%y%q_ CH%yi v2%yiOi%yiU N¶%yaU OR %q`U OR# %qXU I# @qP viPW cIiH_ IndaiH`HWIb" @X@UI&k X@U_I$$ P@UI$dP8IB$ H8_IB2$ H8UI@8I$@8_ I$O98UUU $I98UUU I$98UU  lI$81UUN$$E9aVܪ im$0)| m10 NO9f1Wx vb'91UUWp)tIv1e) ** Iu$9f1&U 0w91  91* M 91IP$10\11@ 9F19F1I$I$9F1   :1 `I291IB2 1f1I$ 11* I$I$91 H"%"I1\p  I1  HB$! I$:1  B$! I$I$B$! I$I$B$! I$I$B$! Iح'1\ &9E) M91 R#99pɕa1%%  A$C&1f1I$1f1*$I $1f1 $ 1e)I$I$)I)I$I$)I) 11eK$1TU I1!$H$)I)1$!@ 9F1IH$)I)@$@$)I) A 9F1 !I91 &L$91 !291ꪫ  !91飼 H$H1 I$IPHU- qH+" yys7efq--- /qP/!M$H$9VTTW $@$:1 I$I9F1 $C91ꪪ @$I91 @$:1r'j=1bX\xK 1A  I$ 91 91  2`B&91 $ 91$I)I) C@91ꪪ IB2&91 IB!91$H$91 $ 91 I$:1 IB& 91I$91$@91 IҶ691 I۶91 I$ 91I91I9F1I9F1 I$$I91 IҶ`91_IB1e)!I 1f1 IB$91 IB291ꪪ I :1 $ 2d$91@9F1IH$91$@91꯿ Iز 91UI$I$g9*I$I$)I) @R&9e)^11I$I$)I) I$)I)I$I$)I) I$I$fQ1UUU`/$)H+MEռ"I$nㆡUU/#I$UUUk O'jfW__1. E!UTPPN@1E) - 1E)I 1E)@0gN$1b8U$@1 `a1E)% E)b(P`V`1e)I11 * I$I$11*I$@$11 I$11$I$11I$I$9!$9 H$I$9!I$I$'9#I$I$'9#I$I$'9# 1e) $1e)*  I$1E)$I$1e)I$I$9I$I1E)I$ 1E)** 1e)*I$I$9!II$9!$I$9!I$I$'9#I$I$9!I$I$9!I$I$9!1E)@$I1$!@$I$1E)$9$I!1E)/?I1e) I$I$'9# 1e)I$I1e)I$H$1e) 1e)IIH1e)*LB$1E) I$9!-Z51$!`XhH1! $$Ce)$!I$I$E)$!**I$1E)UU m 1E)- նcۦ1E)`$I$f1E)^WUWI!I1E)UUխI01E)U*IB$I1e)!I1E)  H$9!I$I$'9# 1$!I$I$'9#I$I$'9#I$I$'9#$1e)$I$1e)I$I1E)*I1E)*1E)@ 81ph$I$E)bXVW)1 I$I$'9#@$'9#H$I$9I$I$9I$I$9 $1e)I$I$9%'vf1!VUT00f1!  1E)@)$Ie)bp0E)I1E) 1E)$H$f1E)zVU &E)! $I$E)!I$I$d!d I$IE)!UU=dBE)J E) Ie)%)  H$e)E)I$I$e)E)I$Ie)E)/$@0e)E) @e)!@$@ @!I @!I$I$1"  H$e)E)I$I$)(I e)E). e)!lme)!@I2% E)׿e)E)I$A$e)E)I$I$e)E)I$I$e)E)  I$e)E) I$I$e)E)I$I$e)E)I$I1"$0e)E)`IE)7I$Ie)E)UUU5  e)E)`@$H$1I$I$E)$!H$I$E)$! yy9!,r$1!H$I$E)!E)! I$I1$e)E)) Z@$Ie)E)XWUU0lض5HE)5Prn`8 * Rq%yP* Rwfi*+#f'f멭+!ɔ 9{--,"䳭)3f&v mE_"fP~j# ma@_ }f iH nYEX*!S$E!@PTH$If%)TUUU @$E)!I$I$1I$I$)($IE)!(!@E)! $1 H$)()($)(X%[E) PPpI$I$$!!P___dB&dB$! IE)!-$@ E)!*//$)(@$I)( )($1 I)(H)( E)! E)!2d$E)Z^!!IE)/I$IE)! mӮ۶ e)!ɐe)! $@!e)E)`$@e)E) $1E)I1E)` e)!e) lX$e)!5m&e)!H$IE)!/I:e)!mۤIe)!/Ide)! 0e)$!$ e)$! #1PHe) Wva8%%5* fi+/--% I&I4q"K%fe1TX`I$I$1E)I$I$941$!`z`$e)!@I$E)! $I$e)!`B$IE)*I$I e)!Itf1!սIBR` f1!U*:1*xx 1!II$9!II$11*I I$11lɶm1e) $I11*I$I11I$I11*I$111111@1111I A$)I)II$)I)@P"%1E)II$)I)I 9F1IٔM1E) ))$I$11$AL$11 IdB&11HI$11KdMv11*$1e)$9F19F1J1$!(($I11$R1E)T(ۖm11kפM t11( .qwnp1 %_EX !B &if9@By?yE1UUUTkmۆm11xI51E)IIJ 1E)$Id&1E)퐶i1E)*I$1E) t1E)/@%1E)dB$I11 yp dž1E)DIĦ1E)>?@$DJ1E)II)I)I1f1*I$I$)I) 1f111Z, 1%)X`v HE) I$AXH+ I-Wh1VVVP I$91 9F1 @")91% 91 Z%9E) !d&91  91 $C91ꪪ u,@9e)m&k1E) I$)1$! j@-1$! -l11II$)I) I$L$91 $I!91`&`11$)I1E)$I1E) a۰m91b* ]' 91UUVz `1 91^y-nmm1e) * H 91% 091  $91 @$91 + X$9f1XP $$91 + 91 L$H$91 @3(]691pb{v۰ Ȇ1$!_$I$1E)UUU KN9E) ) ɖdI$9f1 /H9 Rw$qP+/ PN/r%yi ) ݖnE%y@ hkۊmEEy d# %yi蠀 Gi9` @[`9UUVh I$@ BD! I$I$B$!  A) @ (B%) I$I$A) I$IA) c+&891 $I51%)` $J9E) I$@BD! A) I$H$BD! ) I99 % &A91 I$M&91  I$91 $CҦ91 C#9E)zꪨI$r11E)UW^pI$I$1I$I$E)$!* q1E) =m11/ M&R`91I$I$9! &SI$91 / l91 $@$91 I:1 I$I$B$! 91 * I$L&91  I$91 $91 I$I$B$!  9E) I$I$B$! `91j I$d091 !I$91 "4IA9UUqi He9 Ro%qX+-- Nw%y%q @$E%yI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h@hIhI E%yI$E%ydB E%yIB$ EEyIlE%yIBE%y v"E%yU vBE%yU IB" E%q IH%y%qW Ob۵MFi  Ӷ$ iEiuI¶H%ya_ I֒%yaU H%qX_ @%qXU I@iP IHiPUIaHUIR[ @`HUNRH`@UIb$ IX@UI$k X@UWI$$ P8dB$ H8I۶mP8$C2$ H8pI$@8WI$H@8U A8UU?@1U mI@101e)dI$11UU Dn $91U I$@&9W\0 D9 dB291 I$I091$I$)I) I$91@$@ 9F19F1 I$:1 L@91 I$91 I$I$91I$I$g9* I$91  $91 91 @$I$:1 $I$:1O' 1W\ 1`$I9a   91 I$I$B$! B$! m91ꪪ I&`91I$!1f1I$I11** 11$I$1f1*$ $$1f1J"] I10I$I$g9*I$I$)I)I$ $)I)$I$)I)II$)I)H$I$)I) A$)I) I$)I)HI)I) dB0$C291 ۴ )H1UUU H$I$H9iviXH+yw7EX-/)1RdE/+/8 49p !I91  0`$91 ! 91  091I9F1  B$! P=ɦ1a`` Dɕ 1A 5% @$@ 919F1I$I$9F1 !I91I$I$9F1I$I$9F1 LB&$I91 !I91I$@ 91II$91 A&I$91 H2I$91I$I )I) 91  B$! I$I$B$!  B$! I$I$9F1I$I$9F1I$I$9F1 I$I:1 @$B$!I$I$9F1I$H 91I 9F1  IҪ91` $IJ9! $I"1!@@:\I1A& m۶Y91I$I$)I)@$I$)I)X41E)``1E) sP H1E)\\!`1E) H 51`I1a/1!@dI$f1a&U $@Rn$q1%U .qE$a+) i?3#C6zzW `I)†($I$n맩UUUJXml[ǹEI`I$I$f1UUUT$H$1f1"@ 1%)@I$s 1bU8$@@1  81!@@@pIIE)bU**$H$I1!I$I$9!I$I$9!I$I$11I$I$11I$I$9! 9 I$I$9!I$I$9!I$I$'9#$H$1e)$I$1e)I$I$9I$I1E) I$!1E) I1E) ! 1E) uK$1E)U$I$1E)* I$I$9!I$I$9!I$I$9!I$I$9!I$I$'9#@21E)@Df1H$I$1E)I$I9I$ 1E)*I1E)  1E)ꨪ!@1E)I$I$'9#I$I$'9#$H$1e) 1e)dB2$1E)  1E) I21E)I2I$1E)H$I$1E)1E)ꪪYۺ 1!* I`9E)U- NZ@]9E) <'I$9e)~_}H$I1"$$A1E)뫯LH1E) I$1E)  01E)$$I$9!I$I$'9#I$I$'9#I$I$'9#I$I$'9#I$I$'9#$1e)@$I$1e)I$I1E)*I1E)*1E)I$I$9!I$I$'9#1!@a15$1e)@$I$9I$I9I9H$@$1e)I$I$9I$I$9I$I$9@f1$! @$1E)H$I$1"I$I1E) 1E) @$1E)@m6e)! H$L$E)!I$I$$!!I$I$e)I$ IE)!!I$ e)!d$I$E)!8U0me)!@$I$e)E)I$Ie)E)/Ie)E)I$I$@!@&Xe)!`X`e)! 5 I$I$@!$@!@$I$e)E)I$Ie)E)*Ie)E)I$I$9I$I$@!@$H$1"I$I$1"@$I$e)E)I$I$e)E)/Ie)E)? 9H$e)XVE) I$I$e)E)I e)%) C&e)E)`\`$I$e)E)\UUUI$Ie)E)UU $I$9e) P؆m۲$E)@XE)I$IE)!?IT&01!/ C>~?9$!b~_]I$IE)!I$I$E)!$A E)! $e)E) z^H$I HE)UU5 $I$HE)5 H8@@@X EP8%%% ywqP+ yw/fi+(1uS7af---+)"\-($`-)dBR"$-# H^蠠/c-Hf_~+OHaW֠%=`&I$f!@P H$$!TUUU)aÆmE) H@ E)!$I$E)!$I1$ E)!*$)(H$I1I$I$)( @$E)!$E)!jZH$I$E)!^WUUdB&dB%)ٖm۰E) I$E) @%E)pvIE)*/ )( @$)(I 1I$I$)(@$)( I$C&E)!ZC2$CE)jjI E)W5!I$Ae)!*  e)E)%I  1"$Ie)E) I@!I$I$9 H$@!H 1"@!0e)$!5K$e)!p\_I$I$!! I!@e)!e)! e)%)@$e)%)H$Ie)E)(*Ce)$!e)$! 2He)@ `8**%%p7ei----3wqf--;S f_)L&c-e1VXX@m6e)!XmtE)IE)!IڶI1!/If1! I$I1E)m$K%1%)VVX$I1E)!0m1!I$If1p!@$1E)$P 1E)%9 I$I$9  I$11 /@&11_$11U$$11U$$11UI$11 I$11$I$11$I$1f1@dH1111 211@x| Z%1%)PPI$I$g9* i6)91R"%I1E)I$I$)I)dB2I11I$H11I11*DH1E)<< H11I$I11I11*mk&1%)II$11??$A2119F1 `1UUUpWyf9 )(r7% R%`f1PP@I$)I)JD$I1e)((I$I)I)11bI51E)I$k`1E)I$I$f1e)$A$I&1E)*0ɐ$1E)@1E)0@$11PPI$1f1$ I11  $)I)9F1H$11,1e) 1e) @ H1UU wP1cP% ZJ qe)UT11(1e) m&I91 @!91*+ @$9f1PP I&91 @!91 $B$! r"0I91^zc1$!x֮`e)! Pn%S1$! JdK a1!  I$I$g9* %`1E)PX  1E)H$9F1I$H$)I)$I$)I) m91ʪ &`1E) ˉ91_m5 mպu&9E)*ZX jv 91  k&@ 91^\  91 91  91* L H91.* @P91ꪮ $MҠ091~z #(9E)zb '}9!_^lI$1%) U Ri 9f1-B" I@1U`Oqx`@/ ` S%yX++  SEyq  E%y@ hk5ۊmE%y~ d# %ya蠀 u:Z qP~ PL`9UVX` IB&CBD! I$I$B$!  A) I$I$(B%) II$99** '|9^^?!O@1{ 9S4H9!-- I$BD! A) $A) IA) $@$C2A) @91 I$t:91  I$91 X3n91ꫯ$#@9E)ꪪIB'Ȇ1E)UVXI$I$E)$!I$I$1 $1E) -U Iݖ91 u`091I$I&1f1 I$91 (@ 91  I2$091 (59` 9! @91 I$`91I$I$91 ,9#ɦ1a`` ɐIP9b-- I$I$B$! I$I$BD! 91 I$ 91I$I$)I)hB#H1 %51wiH+/ps%ya +-`JSE%yhI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hHhIhI$hI$$Ih! @E%ymmE%yIE%ymE%yU IBEy%q IB Ey%q NBے%y%q vҶ H%yi lEi몠C@%yiU%ya_ %y`U  H%qXW OR# I$qXU ^$' qPտ c# IiH_N# IaHW`HUIbl;`@UI ``@婢I$kmP@_^ H9P@ =)P1UTp I'Z91UT O91UUUp6avlǦ1e) * ` $91 -U  91+ d2!A) M91 I$km91 I$I$9F1I$)I)$9F19F1 I$I$9F1 I$91 I@91 I$91 I$I291 11I$1f1  햶91 91I$I$9F1 II:1 @$H$:1  I:1 19%)h O9a I:1 dB I91I 9F1I$1e)I$d1f1 A$I11" I$I$g9*@$C&11 ڶi91$I.=1a`pɐD1 5I$I$)I)I$I$)I)I$I$)I) *%1E)P@ 1!  @$H1I$IPH+ ɛiP--%wii ?n鎭B"ȱ%KJ/@9~'1`p^^  691* @291 0ې91 @91ꪀ I$91 91 L$`91 9E)     :1H$I$g9* ! 91 91* I'9! ۖm11  I$:1 91 $ 91ꪢI$H$)I)I$I)I)I$I )I) !I$@91 I$I$B$! I$I$B$! I$I$B$! I$I$B$! I$I$B$! I$I$B$! I$I$B$! I$I$B$! I$I$B$! I$I$B$!  B$!I$I$9F1z'1!xxɔDI1 I$I)I)% 1A& $C&91I$I$)I)I$I$g9*"(1e)j$N'f1A^p\1 'I$I$g9*P#$I1`I41a/I$I$)I)N$h41V\xPIJ1 - /av?y1 %% N7%y+/7".yqȱ1 @HEP4@ DZE3#m@f_,d%h1PP@ H$11 I$11H$I$11A$I11* "$1$!@ a 1 % I 11*I 11 I$I11H$@11$HH211~$9 I$9 $I$9!I$I$9!I$I9!LB&$ 1E)IB1E)I9  9 $9 $I$9!I$I$9!Ku1E)V(1E)I$I$9!I$I$9!$1E)$I$1E)ضm۶t1E)e)@IM1bU&I1e) I$I$'9#I$I$'9#I$I$'9#I$I$'9#1E)I$I$'9#I$I'9#dB1E)  $9 @$C&1E)$I$1E)@$I$1E)I$I$@!I$I1E)* I ,9e)5 c;9e) zU m'9z^TIe) I1E)+ (1E)`&e)hPH41m I$1UId˶ 1E)Uշ1e) I$I$'9#I$I$'9#I$I$9!$1e)@$I$1E)I$I1E)*p$f1^1 I$I$9!I$I$9!I$I$9!I$I$'9#$1e)$I$1e)I$I1E)*I1E)*1e) 1e)H$I$1e)I$I$9I$I$9$1E)(#1f1`zj-Ie)b /%I1E)01E)I$C2e)E)jk@$$E)!H$I$E)!I$I$e)I$IE)! IE)!I!Ae)E)%   e)%)kmضmE)!0I$I$)(I$ e)E)h$e)!(I$I$@!I$I$@!@!@! @$e)%)I$I$e)E)*Ie)%)9I$I$@!I$I$@!I$I$@!l,e)!e)E) &E)!x$@$e)!@$I$1"H%E)XDI$ e)I e)%) 0d$e)E)`\WI$I$1I!Ae)E)U  e)E)vH$M$E)b^^I$I"!bV_kɟܹ1* J 9$!x '$1$!x^_W E)!/E)$!* CE)!`  E) Օ$H$I HE)UU5&dB2HE) H@ I XH/ vGiH*6g Ea+ %yrD E+ + yn+ -#R X4%&1 DZ- 4,MDZW74c@DZFX4$HF3)#H~1$I !@@)H$I$!TUUU!@IE)! I$I$E)!* ۺ[&E)XE) )( @$)(H$I 1)( @$E)!$H$E)!VVH$I$$!!x*I E)!II$E)!* &kE)ظ!$ E)+@$E)p0E)@& IE)!PPIE)!I 1lؖlE)! @$E)!z_I$I$d!d IE)!U*!I$E)!)I$I$e)E) +II$e)E)H$Ie)E)** e)%)I$e)%)(@$I$e)E) He)!<< @!`$e)! I2L$E)!H$IE)!im۰me)!/@$I$e)E)`B$Ie)E)P $Ie)E)*Ie)%)* e)%) Ce)E)@`$!Ae)E) bIH ** INi8%/** 9O%q----7T ` ȱ-+ ;1$C(@ȩj6 b#;ȱz&I$$)UT@ɟط ۆi  @$1E)ZZm,1E)jj۶m1E) $1e)`B$ 1E) I$1e) I1E)I$I$9! 1E) m1!IDJ1!$I$'9#$I1e)* $1e)$ I1E)I$1e)*I$1E)9 I11$ D1%)<$@11I$I1f1!I$11H$11 I$I11IɖL1E) `ۖ91 @ %9e)*Z m91 Y$91. k%X91 IB B 91 I91 I$@91I$@$)I)$I$C11I$I$)I)@11X$1E) 11   116$%q1U! Nww%i +-1I`ǡU +L$P"-1TTP@I1E)I$I)I)I$)I)L11<I$H)I)#II1E)I$hd1E)<m۶ ن1E)жI61E)/`$1E)1E)1E)H1%)$IB&1f1  I$$11"I$A1e)m1e) `X%1e) "X1U %\)W%yXKKMw;?%E)Zj ! I211-@$1e) 9F1@ 9F1`B& 1f1 91 h&@91^^  ]91 H :1 91zꪪ :b 9E)~!! 1E)ﯯ I$1$! 4$Q'1E)*^I )I)I$I$)I) I$91 $C$I91ꪪ$A&`$1f1%1$!P k ۔n91* I$X291UWXb ñ$91s5U $N'91UUT $H 91 I$I$B$! I(91jj 91*) @ 91 ڰD9E)/ *  9E) ِmm9E)+ R#фHJ9E)` ]'kن1!^X )s9$!+  B91zkJ %H1 N7wiH +/ PN/r%yi ) ݐnE%yI$I$h@ hk5ۊmE%y~ d# %ya蠀 uZ qQz蠀 Ila9UVX` L$DB"BD! I$I$B$!  A) I$I$(B%) B"I$I91p m۶m99- X[۶99x I$H$B$! I$I$B$! @ A) I$IBD! H$@$BD! IBD! #@91 I$s991I$I$)I) [t91 & 91W^XxN"' 1E)U^pI$I$1I$I$1[I$1E))UU @R%9E)** Xv91꪿I$L01f1 ɐtI$91/  t91 / r'̧9Axx tI1A   B$! I$I$B$! d091蠂I$I$)I)  m9E)-** 91 I$I$B$! I$I$BD! I$I$BD! d091 ۸mۈ=9$)x1%`J$Q1UUU X%i9 UU @NI$%9UU0In:E9UUۖE9U ۖ$E9UnE9$EEqUHEEqhI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI  pH$I$hI$I$hI$I$hhIhI E%yI$E%ym0`E%y:  C$ EEymm`E%yIE%ymE%yW vBEyi I߶[F%qU  M2 F%qj uB I%yi NB%yi_IB%ya_IFmFa&oX_%II`Uݪ" O޶@fiժC @E%9j-%y1UTP@ u9 |"X91V5 ?c9E)I$I1E) $I$91UU Iq$91+U S91 H*!91J I$1E) ? I$d91$I )1@PI$1bU$1e)I$I$9F1 $I$9F1 @$I$:1H $9F1IB2 1f1!I$ 11I$I$g9*I$1f1( @I$91 l 91 I$A$9F1=@1`p \t1%5  I$I$9F1I$I$9F1I$I$9F1LX$1b\  9e) `91 I& I91 m6[91 ۶Z%9`Pœɑ1bb%5ɗ'15  $I$g9*I$)I)II$)I)=P/m1``y?P 1))  ۈ P1@XH*W7S%yX--+ .2%q/++kA 8 %y*%|'𿶦y9\VTV ɟv)H91տ :c91^zII11Օ ֭91 $I$11WUU `JdJ91+  #:91~^mI91U -91 // (:91~ې91  ڡ91H$HuE)A޸ Jd9$! $91 91* @$91* L$d91 I! 91H$I9191  B$! @I$:1 B$! I$I$BD! I$I$BD! I$I$BD! I$I$B$! I$I$BD! $91 I$I$B$! @$H$:1H$H)I)$I$ 01f1 ۶m91% I! 91 $I I&91@$@$)I) I$!91 I$$ 91 I21f1Ȓ(I1`I$Ie)A׶(Hm9e)@$$11 U0ݖ&11]mZ;1E)`ۆ1E)@@Z;1$!~ mѶ$QE!?U PRqf%) )11ȩf+-F,OA%Ԗ D3r蹧J1? )§UUC#Sh6I$c%1UTXPI 11 H$I$11 11  11 $ 11(d$11^W$&11]0I11uUH$I9!@$9 I0$I11Uu I$11U/LH11?I11$ 211ꠠx$9 I$9 $I$9!I$I$9!I$I$9!I$I$9!I$I$9!$1E)H$1E)$I$1E)H$I$9I$I9$1$!@I!b>P1E) I$I$'9#I$I$'9#I$I$'9#I$I$'9# 1E) ֆ1`I1a.?I9 I$I$9 H$H$9!H$$1E)H$I$1E)I$I1E)/ I$qW9e) v$9e) W &I$1E)H$I$1E)mӶm1E)k": 1Xx R1 ($9 @&H"%1b`X\pu;I1bz I,@f1I$IE).I$I$'9#I$I$9!I$I$'9#@$1e) rR'1^^dIf1! I1E)*I$I$9!K' 1^1`1 I$I$9!I$I$9!$1e)$I$1E)I$I$9I91e)*$1e)$I$1e) I 1e)I$I$9$1E)$I$1E)I$I1"$CJ$@1$!j A@f1= d$1E)_U $E)!p$I$E)!z_UI$I$d!d I$I$! IE)!߿  !Ie)$! Ie)E)$1E)_@$I$e)E)I$Ie)E)/Ie)E)? e)$!NĶ-e)׾(e)!I$I$@!$e)%)C'e)hX$I e) Ie)$!:e)`e)E)I$I$@!I$I$@!,1e)@$I$e)bUUtIE) -5k&[;E)XX!e)! I$H$1"`%E)a`@E)b &I$e)E)`\UUI$I1 $He)E) C2d&e)E)@`\]E)$!H$I$E)!~  9$!Uյ- P1$! h$I$e)! E)!ﯫ I$IE)$!** XM$E) VWPݖnE) ضm58E)U5  H0//H@I XHյ/ 6Y%qP }&G Eiս(qrT %y 1!y% 4(m4+Y_DZy44I$I$%44I$I$%44I$I$%44I$I$%4 DZ!@4@$I$$!PTUU @E)!V E)!I$I$1kڦm E)ܞ*I$E)!?? @$1I$I$1I$I$E)!   A$E)! @$E)!~I$I$$!!TTUI $!!+$I$E)!* H$I$1I$I$1I$I$1E)!@$I$1 E)$!!E)!  $I2E)! $! I$I$e)I!IE)!*I E)! e)%)*+ ME) E)!/ @!$H$e)%)H$e)E)*VVI$I$e)E)$e)!Xm6e)!$IIE)!/dH$E)!* e)E)%I$I$e)E)@$E)!II$e)E)+ I$I$@!@$e)%) I&dBe)E)XZ*$A He)UUU$I$He)I$A$ARP8m$h$)**ZVPI$E%) UU/0 I$E)UU;DI$ȱe)UU1HDf1,# EzZ fq^z I^'xe1UZ@$IXf1UUUPI1e)**K1!><$1E)$1E)R#f1`H!1E) f1! &I$I$91E) @1E) D;1$!~$f1!U@v$f1!U`I$f1!`۶c;f1!wqw1!$I$1E)Mnݰm1E)>* !!$11--U۶ ݖ$11U k+I`;91U 91**U $ 91u -91 $I$i'1E)ئ$kv1!T I61%)@j*ٖn1%) J&iۦ1E) Hڶ$91U Dc;91] DI91@I$)I) mk91 m[9e)11$11P"%(I1E)PP $1f1 X$1E)!n%q1( &rwq -ۧf"H%1UUTPi11*)) dB@91! 1e)I$I )I)I$)I)hژ %1E)XXP&II1E)$ (1!@E)  $I$e)E)Tkۦ1E)/71E) I$I$)I)I$11!I$11 $I1f11f1 @ 11 ( ip1)% .vEi+-OB&d%1VP@uؒ I1%).!a&11+1e)9F1 IdB91 !91 @91 !`$91 91 B91ꪪ u:R-9e)~I$K1E)dBe)E)P`I1%) ?  9F1$I2$C1f1 Ŗni׶911e)cqH1$!Pٶm۶ 11  I$91? vB'C91UWXc I$91qU -l2&9E)/^Z $H 91 I$I$B$! $&`$91* 91 \: 19!77` 9f1 %%  `491ꪪ m91/ Հ6@9E)xI$L&1E)UUVX 9E)+- R*P1%%yH+۹=fa @  E%qE%yI$I$h@ hkۊmEEy 3 %yi u:R %yY^  dža9UVh Ix9E) I$I$B$!  A) I$I$(B%) H$H$A) ,9!` ɗ9 ' I$H%99UUTX I$BD! $ $A) I (B%) IA) $I$99/ 2`99` / IR'91I$I$)I) C $91⪯ MӶ 91u:R i1%)^xI$I$E)$!I$I$11I$1E)-UU0IW1E) - Zv91ꃫIB& 91I$I1f1**  q91+ R[i91  $91 I:1 I$I$B$! Ȑ#'9A`X & 1A !I$91 91 I$I$B$! I$I$B$! II$BD! r$L&9A\\KT1  !I$91 !91 >9!xxx 9$! -- I$I$B$! M91^ * 591zZ`۷?Eq1%UUUEq1UUUp{Eq1UU IOEy1UU I~bEy1UU $Eye)UEye)UIEye)$EEyUEEyI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hIIp@$H$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hIIhA$H$pI$I$hI$I$hI$I$h@hIB$AhI$E%y x$f%yLB E%y4I$IrDZEyUUU 4ɓ%yu3&IF3)NҶIU1(¶1#öH_-3`f& 3 %y~M&" EX I$I$i1UUUT !I$A1 UUUR?<B1zUO?JB1UV I$O91UUU` 1@ lI$1U IP`9E)?+ 4ېm91 k#II91 Ip9 I$I491I$I$)I)$I$)I)I$)I)H$H$)I)I$I$)I) @!I91 d $91ꨪ &m&-1@HI$1bUI$I11**$I„11(( $I$91 M91  91I$I$9F1I$I$9F1O$ 1_\ )TI$I1  $I$9F1I$I$9F1 A$:1 i$I9`   9a  I 91 IB&$@91 I$ 91I$I)I)H$H$11 81UU" X86e`H/qW7E`--) R. %ykk 1?,89p @:91_WW w91 DIu'91_W $ 91 H->91*{  m۔91 q͍NB1 91^ I$B1UU q$ @B1 }'91V^z Iĉ)91UU* 1[#9$!b`IE)a7*R"'L%e)aX\r葆1) M 91 I$I$B$!  291 6m&91~ $vb'91UUUؖ$I91UUU$I$91$@!11@$I$)I)  I!91  I$:1 Ix9( 91@$I$91 I$C&11$I$91$M$91UUUI$91UUU ,9z?x{9/ Hf'9e)&m$1E)_Hf;1! I$1$!U Il1!$v$1%)_UmNbۆ1!@Ilۆ1!$I$1%)WUU$m۶e)!m۶E)!E)!ꪪIE)$!I$I$1I$I$1  DI$%q%)%UPRwfa */7rwȱeH+P, D30D1`X<XP=mǩ1@)I$I$1UUUTI$11U C&LB&11|_W_ 9 I$I9!LB&$11W_{ $11u  11-I1111I$I$g9*I$I$g9*$H$11$I$11@$@ 9 I$I9!I$I$9!I$I$9!$1E)@$1E)$I$1E)@$I$1e)I$I$9I$I1E)$If1I1e)$I$9!I$I$'9#1!4I$I$'9#I$I$'9#I$I$'9#I$I'9#I$ 9!,8 1pI1% $I1!$@b'1E)m1E)H$I$1E)I$I1E) mW:1E)/ %Ͷ$9e) U m;mۦ1e)I$I 1E)I$61E) $ 11$! @I $11 m1E)L$Lf1$!(1e)1@1E)I$I$'9#1! 1e) H$1E)@$I$1e)I$I1E) J"1!\1%)I$I$9!I$I$9!I$I$9!I$I$9!$1e) I$1E)I$I$9I$ 1E)  1pDID155I$I$'9#H$@$1e)I1e)$1E)1E)I$I$1"I$ 1E)!A 1E)Id$1E)zWI$I2E)$!$ 2L$E)!\WH$I$E)!VWUUI$I$d!d I$ AE)! I۶kE)!$f1E)U$1E)$I$1E)~_UI$I$)(I$ e)E)/ e)$! @$@!H$I1"@!I$I$@! H$e)%)I$I$e)E)L"'#e)bVX e)b I$I$9r$p8e)bXVXe)a $e)%)$I$e)E)1 I` e) Re) (I$H$1"@$I 1" @!h$ `E)bX`IE)b5  E)@@KIE)b,U IE)! E)!I$I$e) y9$!ս  x$9$!\UI$I$e)AE)!+I e)E)U5%!IHe)E)-HE)T!I&HE)UյHI$8$1II$H8UVkw`@- 6W qP/ "nWi -0fu*3M$ f= 4/i  DZ* 43DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4@$H$DZ$!PTTU E)!ꢠ E)!I$I$E)$! I$I$E)$!I$I$1I$I$1I$I$1 $I$1I$I$E)! @$E)!I$I$$!!j$ɄL$!*E)!jE)! I$I$E)$!@$E)!*I $1  E)! E)! */I$I$E)!$E)!z@$I$E)!WI$IE)!IB$IE)!*  E)! E)!<I$I$)(He)E)`E)!Ie)E)՗I$I$e)E)*@e)E)  I2e)!H$H$$!!I!AE)!+ E) I$I$e)E)I$I$1 I$I$e)E)/ $ɄLHe)!<<II$e)E)@$I$e)E)+ II$e)E)*$I&He)UUU@$I$He)I$IPH  @$P%)@PUI$IE)!*Ie)$! 1E)I$I$9I$I$9)$I$f1UUU) iɖ$f1U Sj fi~c? %`U_ ī`f1U@$I$Xf1UUT@I$I$1e)I$I$9A$I$9@&1$! h h$f1!UI$e)!$I$E)!*_L$IE)!/m6mlE)jjI$1!UU*If1!UIRf1!If1E)U1E)II9@$@$1E)II1E)H$H$1E)H$1e)I $9$I$$1e)** $$1E)mҶۆm1E)I 1e)I$H1E)I$9I$I 9I$I$9$I$1E)*I$1E)mi1e)0$1e) K 1E)@11+JD1%)<<H 11I$11*I$H116m$i1UUUpsy%e9 )" OE +/"(1@@I$I$f1UUUT !$I$91 $I $919F1H9F1#1e)$II1e)` 1!@ yR$H9+ -1E)I$I1E)жm$1E)UUU qۦ1E) U1E) 11I$11*I$1f1*11 A11%/䀆1  0hEi(*%x%y1TTP@I$H 1f1I$I$11 D &91 I$I$9F1I$9F1   M9e)%*  9e)@ ۆ٘i9e) )n91 H$:1 ,@91W^zmڶk1E)$@$e)%) qk1E)   1e) H$I$)I)v1!( $C91ꪫڤ%Pm1E)!1e)  I$91? N"'C091W^\sFb6e1E)* {N\'9E)/ $HW915 $9f1P $A$291 @$91Z $I@91 Z5$ 91~ I91  I$91? *9E)^xm׶m6e)!*h t ID9! +% Q?]%q1UUU!Of1UU,=@䆡1U/I$"EUUB,I$I$EUUUTh@h[lE%yꪪ i%y%qx  h%yX~Mbh%)VZ ݖm&91 I$I$BD! nI$99 U (B%) " 91 O19!' (B%) I$`0BD!  91j 9A @$H$BD! A) L$IBD! :99 / N&P91I$I$)I) I$91 K&@;l91^\s"Ւ @1E)\pI$M$1E)UUUTI$I$1I$I$1E)UUUPAd1E)- ۖɐ91/ I$`9111 !I$91 h49e) IM91 @ ,9@H$I$1 ɔ  1a  I$ 91 $I$91 @!91 I$I$B$!  91 * +L9!% A$I$BD! L&91I$I$)I)  v91@ @91 I$I$B$!  @$:1 #& 91^z3'J=1axX` sIB1A I$I$9!  I$91 h,59`PI$E)=I$M&1E)Ie)%) * @ @!9IEye)UUU`Ey1UUU`[Ey9UU IEy9UU I?Ey1UU$Ey1UE9U JE9 EEy$EEyhI$I$hI$I$hI$I$h I$hI$I$hI$Ih $I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$hI$I$h @$pI$I$hI$I$hI$IhI$I$hI$I$h1`fE ,&$I`EkWU4ID0DZEU4DZE43%44I$I$%44I$I$%43IDZ43IDZ41ImDZ4,i1 3 m~ꨀ) %^b %9Zj I>$q1UUTP I$t91UUW$A$C21e) [I$A1UUBE)z I؀89b $I0Bf1UUUzI$I$'9# I$91*UU  I91 U K91 X` 91 I$91 I$I91I$I$)I)@A$9F1 I$)I)I$H)I)$C2$I11I1b  91H 9F1$C1e) I$M3l91I$I11**$I$11(@a$1f1"I$)I)9F1I$I$9F1I$I$9F1 I$I$9F1,P51@P` IT9a 5% I$:1  @$:1 H$I$9F1  $:1 @91ꪪ "ْ H1ɶ ۰ P8 w1iP-/ yS fi--+ /N f-/+1'p'9p\\\ bѐ 91^ In91 NB' 91W_* 91 tB'91__$A$21E)VXӵ91~H$I$9! Nqj91+ @?'91~_W I$A1UUURwB1 I'B1 _ LmAe)%ٖAE)zčBE)8 m $B1_ @$91W d91 @r91 Ib 91W Ib91U Ibh91 I؀91 I91$91()&I1!@I$NT1a׾($I1E)жm$1e)$I$1E)$I$1E)$H e)E)@$H$1@E)$!I$e)II$e) I$e)1H$1 %)$I$I$E)$!I$I$1I$IE)!*I$I 1%)UUU+I$I1%)UUUI$I1%)UUUI$q'1%)UUI$I1E)UUI1E)UIr&A1E)U+I1%)`Rh[%y1 %%Rq%y+/1 PNs ++4-@ RDZ41`DZ3,k=Xȩ-У-ip@@ޔO1 % $11 11 I$I$)I)I$I$)I)I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*&1bxtI 1b- 11I$@$11$9  I$9!$I$1e)I$I$9I$I1e)I$$1E)IB 1E) I$9!H$I$'9#H$Kņ1TWVJ41b I$9!I 9! 1e)Ć1($I1!I9 I$I11 $I$ 11 @6@&1E)5M$1E)H$I$1E)N$Nb1E)-Y,1!@ -!i}1 $I$9e)$C2$I1E)*Iı$1E) I1E)IB$A1f1 I$)I)`$b"1\XH4I1! I$I$9!I$I$9!I$I$9!I$I$'9#I$I$9!$1e)*$I$1E) 21E)Z^۶mݐ1E))%I$@1E)H$H$9!I$I$9!I$I$9!I$I$9!I$I$9!$1E)$I$1e)I$I9I 1E) 1e) *I$I$9!I$I$'9#1! 1e)I$I$9 $I$1E)I$I$@!I$I1E)LH$ 1E)$1E)$I$e)%)`غ6E)jXۤI$E)U!I$IE)!UU5  I E)!/!!@e)E)-  1E) H$1E)W$I$E)(I$Ie)E)/Ie)E)I$I$9I$I$@!@ @!@6m&E)`1JE) @$I$1"I$Ie)E)I1E)I$I$9I$I$9I$I$@!I$I$@!@$e)%)H$I$e)E)*I$ e)%)*ۂ%le)!@P@ɖdɖ e)!$H$1"I$I1E)  1E)dB&e)E)\_ )(I$He)E)U7 B"1)E)bp@I!%)b%  $E)!I$I1$!UUU5 I *9$! x /?O$9$!^UUI$IE)! I$IE)$! !e)E)u% I @$e)E)I$I$e)E) @&HE)%  H@H$HH8VVVMرX8V37e %@- " {si -qN0f*3)qRD + 41ɖ DZ*44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4$H$DZ!@PTUE)!*I$I$E)!I$I$E)$!E)!I$I$E)$!* I$I$E)!I$I$E)$!I$I$1I$I$E)! @$%)$!I$I$$!!@0I$!!& I$I$E)!*He)!HE)!I$I$E)$!I$I$1I$I$E)$! I$I$E)$! 0H$E)I$E)!H$I$%)!z_I$IE)!!I$AE)!*)( 1 H@E)!<I$I$e)E)+* $e)$! E)! I$I$1 C2E)! E)!$I$$!! E)!/ I$I$1 `,E) @@ 閶E)! -E)!I$I$e)E)$I$e)E)/I$I$e)E)I$I$e)E)*$He)UUHIHe)I$IPH $H$PE)@PTUI!e)E)  e)!i1!-I$I$9I$I$f1e)I$I$1E)I$I$9I$I$1E)?$I$fe)UUU?fe)Ud;E$1S;lfX I'pE1V&[mXE!_UPm'vbE)ZZI$IE)!I$e)! Ie)! ie)!/I$I$f1e)I$I$9@$1E)I$I$9I$I$9@2$C1E) A1E)II1e)I$@1E)ꪪ I1E)I$1E) 1e)I$1E)I$H1E)**I$1E)1 ېm1$! $1e)$1e)$1e)1e) I$I$9!`@$1E)XX1e)I$1e)]5؆ 1E)jjim l1E)-!211}}I11$IJD1%) $11 $dB&11VZZ Oi1U" pN/%q++,L ,c%1PP@ 11 /I$I$g9*$A$I211@L1f1(*@&1e)9F1I$)I)I$)I) )I)I9F1L $@1E)Vvb;1E)U_\1I$1E)%UU@1! 11 @11 $H 11 $1f1 1E)P t%9  [# f%yj +E1UTP`$011zpM4ۂm1E)I$1E)+11@9F1"II1E)  9e)  d291 ! A91 ,91jj #9lJ91^zI$k51E)$AI$1E)I喘1$! tKڤ1! Km$1E)$$A1f1I9F1 I 11 I$1f1  I91/ ='X491UW\zI(BJ1![$I1$! ?mA9e) !H91 $@d&91* $@91PX d&a91 @0$C91 d0B91 I$91 5 9!zxItmf1!5N.1E) IM&91!@11/I$I$1UUU/I$1UU/ f1-ɟ$I$EyUUUPH$EEy@ EEy iEy%qx # %y`_~ `nu::`9Vx I %Q9UUW\ I$I$B$! !I$BD! (B%) `9f1 X$I$9a_ `)9  R%9A`p ID 1A5  !A)  (B%) A) I I$A)  99 / s9 @91 I$I$91 !I$91? $#dA91 cۆm1E)P@I$t91E)UUWxI$I$1I$I$e)E)UUUJĆ1E) U `S91 L$H91$I 91  I$91 91/ C 91ꪠ IH9A7 I$I$B$! I$I$B$! L&91I$I$)I)  $91 8.H1A`I 1A%% I$I$BD! I$I$BD! @91 I$L091 I$91 91 @ B$! I$H$:11$!@  91 k,`91⪪)'1E)T ۖm1E) IHI15 `9e)zIb' 1E)I$1" 1E)I$L21E)SI$1E)/ 0 w9e) M5ݖv91+$Ix9E) I$I$91 "@M9e)*  9E)%  I$I$Ey9UUU $I$Ey9UUU $I$Ey9UUU  IEy9UU@löEy$E9U$E1UJE1 $EEy$ĈyI$I$hI$I$hI$I$hI$I$hI$I$hI  pH$I$hI$I$hI$I$hI$I$hA$I$h4IyEUխ4I\ZDZf:4))DZ 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4<@(DZEp`@?l nDZE 44I$I$%43@ DZ4/m6R HDZ1"hz蠀,3 E~ ~B?c EfAjl 9UVZ` C)a91 I$ 91UWI$m1e) ۱m91-UUU  I$B1U jHXB1^ I' B1UW O$N9f1UUWI&1E) n91 UU 0I91 U O&9Z I9 + m-91 I$[m91I$I$)I) $I$)I) HI$91 I2!91뫯I$I)I)I$I)I) @$I291  !91 mm91 IҦX 91 I$I291I$I$g9*$11 11/ II$91 R#i0r9e)z* TI$I1 I$I$9F1I$I$9F1I$I$9F1I$I$9F1I$I$9F1 H$I$H9IvXH+yw6%yX//)7NE---7$A)a@Ha1TTTU d$`B291  91@$H$91 !I91  A$C&91 P֢%9 zZ I1 /5 N %91W !91 #H91^ I I91U !H91 #: I91_~ I$N 91UUU 1eR91  B$!$C&d211$H$9! 11   91* $I$BD! 0&91I$C211$I$11I$9 I$9 @"a1!@pIf1a(ח$i"h1BDIDe)a 7I$1E)I$$I1E)I$1E)C1E)_Im1!Iq1 IBn$I9%)U Im9%)UI"IH1!-+!@1@I$I1aU, vi4@9e) m[ 11z I$11?!@$@1e)@11I$11!I$I21f1`$I11I11/$HL$11(A$I$)I) I$I$Ea1UUU7{q%f9*+3N6ȩf +/;- ސNȩ -?1-蹧?1~=@蹧Wp;# ȱ~)˯ᆡ1TTP@I$I$g9*L$1! VV01E) I$I$g9*I$I$g9*I$I$g9*I$I$g9* 9p'1`X\`1O1 ڶm1`Ioݶm1- $I9 A$I9!I$IH11UU/$@&1b`X#IK1 ! I11I$I$11I$I$9 I$I$9 @ 9 I9 d1E)*I$I11+I$ 11 I$I11 C1f1LN1ֺ I$1e)Ħ1E)M$1E)6I1E)؉m 1E) I$! )1E)7c;1E)?&IĦ1E)25,I1 hzI1b/ In1E) I11?I)I)$I21e)HL$1f1@$I$111E)I$I$9!I$I$'9#I$I$'9#I$I$9!$1e)$I$1e)I$I1e)I!I1E) #1E)Zhٰ1E)-I$I$9!I$I$9!I$I$9!I$I$9!$1e)$I$1e)I$I1e)I1E)* 1E)I$I$9!I$I$'9#I$I$'9#I$I$'9# 1e)d$1E)@! f1E)AN$E)bVW@f1!$I$f1E) I&E)!xm۴E) !I$ME)b*i E)!+!I$Ie)E)I1E)$1E)@$I$1E)۲۶ E)!@I$N E)bחPf1!I$I$9I$I$@!I$I$98e)`pkɐdE)  I$Ie)$! $&e)`Xf1 I$I$9I$I$9I$I$9 e)%)$I$e)E)I$Ie)E) Ie)%)*I$I$@!$@!e)E)1E)01E)~I$e)E)@$e)E)__/ He)E)5 I$C&e)E)x_I$C2E)!$I$E)! II9$!UU- P'9$!-h^$I$1$!xWUUIE)!۶m2 E)@I$E)b&$I$e)E) 9E)UUU @$HE)5I$I$HHI$ PH- Ob; i8_* k-G EH* & { %q+ /qN4 f* 3)qUJ - 41ɰDZ* 44I$I$%4 @DZf@?$dItǹE*%44I$I$%44I$I$%44I$I$&4 @$DZ!@PT!AE)!/HE)I$I$1 HE)!HE)!*IE)!HE)! E)!E)!  @$E)!~I$I$$!! )IIe)I$I$E)!*I$I$1I$I$E)!$E)!* *I$I$E)!@$E)!XZ  E) bjjE) I$!(I$I$$!!I E)  I$@E)!* )( @$)(I$ )( e)$! H$)(IE)!(*(I$I$1  @$E)I$I$E)!$I!AE)!+ IE)!* )($H)(I)(dB$AE)!* E)!I$E)!(I$I$e)E)+$e)$! IH%)UII$HE)I$IHE)@]n PE)PTUU$Ce)E)Be)E) @!$1E)^I$I$9I$I$1E)ꪪI$I$1e)I$I$f1e) e)E)@ 0e)E)e `X$e)!$I$!UUU`I$f!UUc=ژEE1b f`Wnl hq$1Z I$ae1UU@۶mۆdEQeI$I$9Hf1E)I$I$9I$9I9$L1E)*I$I$'9#$1E)!@1E)+$1e)$1e) @$1e)*I$1E)I$1e) $ 1E)I1e)*@$1e)X$1!1%)I$ 1e)$I2 1E)jj1E)$I$(f1$!f1$! `H1!I$1E)I$1E)$1E) @$1e)*A$I$9!I$I$9!I$9  L@1E)**@$I$11$@$$11 W|1 )/ pw%y , of誫+L%[11TPP@vm$1e)*@%I1E)11+H$11!dB&1f1 #1%)`T) 1%) I$)I)C2$ 11!$@11$C 1e)ѐ I1E)^`MڤaE) * I$1E) UU W1E) 511I$11 I$11 O$q1UUUTrPF9 %d% f$ApI$K%f1UUTP 11$C$11j** $L$11 L91E)$ 1E)   $LB&91 I91 491bz ni91꯽ ! 91 b"1(@91^zIR;k͆1E)I$L$E)!?` S1E) 1e)$@1E)PPI$)I)@9F1 $H&11I$I$)I) -mӶ91jj I\;#ԧ9e)ծj1E)* pW9E) /  II91  091zzj  D91+ @$91 ۰mݚ91 $k91Z^ k 491 a-91cu&c1E)VXpTg1! %5 @;91뭽!I$11 .I$9F1I$`$11>)I$I$1UUU- p1/H"MET*1I$"EyUT@1I$I$EyUUUT h%y%q i%ya^ T`9X` ) %Y9UUUT I$I$B$! !I$BD! (B%) h p9 I91 (B%) I `91 I$I$B$! I$BD! I$I$A) I$IA) I$I$A)  $99 / h&91 I$N&91  I$91/ Kݖ 91 b 9e)zꨠm֢51!~xp@!E)! -5I$I$E)$!SI$1E) 5UMo9E)* X;91 I$L&91 I$I$91 D191 ? I$BD! I$I$B$! I$I$B$! I$I$B$! `91 I$L&91 !I$91/  91 I$I$B$! I$I$BD! I$I$BD! 91 I$91 I$I$91 @ 91 I$I$B$! I$:1I$I$9F1 B$A91* }j Q9! 1i@9E)I$I$1f1 I$91? k 91誯 t2m9e)VI$M51E)I$1E)/IB$I1E)$AdB&1E)/-nc;1$!mIE)A** m&I91* m۶m91 tI$91+ 91 ? I$I$BD! I$I BD! I$I$B$! I$I$BD! $I$BD! IB&@91 i۶k l91 $$I91*6a۶m?E95UUUжnE9UUU ?E9UUU  I'E9UU II$E9UU E9U $I$E9U HE9$I$$h3I$IEUUU4IDZEU4IDZE44I$I$%4I$DZEU44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$&44I$I$&44I$I$&44I$I$&44I$I$%43 DZ4/j#$ADZꪠ3(R ͧࠀ)р:ڧf^~ f$qzz%ِ p9UX` @A) $@91 v`91U Ib;91UW~I$I$9! A1%UUUI$B1 UUB1_I'X/B1UUx m;u$BE)_TH$Mzf1\_9Nݶm1  0I$91U $L91 $@91 M91 I$[;l91 I$ 91H$I$)I)$I$)I) $I$91  $)I)I$I)I) I91 H$I$9F1@$@$)I)$C$@1f1 11 I$I$g9*I$H11 $H$11$I$11 I$11? ۶am$91$)I) ")H1UI$APHiS6a `P--n f`/ ,1Nd E-++ 1,#89pp0It1E) /H$I$)I)I )I)$H$)I) m19E) j 4Jd1b5P1`I @1%+dB& C1f1 )-91  C2 91I$I$g9* ! 91 H$H$:1 21f1 vI91 91 H$@$:1 @$I291 @I$91 I$91 91* @ B$! IB91 Im؆m91 I"$91U I$I91U $I91u +$I1 m۶m9e)j M $I1$ I$I91UI  11I1e) I۰m91 I91 91 ۰mM$91 i91$I$)I)H 9F1 K%h&m9E)ȄI$1f1(I$I$)I)  9F1 2d1f1 I11 ** I$I)I)@$1f1 11 I$I$)I)I11*I I$)I)I$I$g9*  DI$%q1%U( 7y؇i+9wȱfC)v{蹧?D3`蹧=-蹦=#39@"I$H$1UUTTp t1$! 11$11 112d$11|_WH2!11}#ɒ 1p4I1!I$$ 11UU!$11 !I@11 IH$11+ 11H$1b\p1a I$I$9!I$I$9!I$I$9!I$I$9!I$I11 I$!11 IҶۺ 91 I$ 91 $I$91 $I291$i$1E)$щĆ1E)۲m1jIE)$Uim41E)*mW[41E)/$I$1E)@!c۶m1E) I1E) %I$1e) I)I) 9F1`$1e)$I$1f1 1E)I$1E) ?I$I$9!I$I$9!I$@$9!I$I$9!@$1e)$I$1e)I$I1e)*I1e)I$@$9!I$I$9!$I$9!I$I9!I$I$9!I$I$9!$1E)$I$1e)I$I1e)I1e)  41` 1 I$I$'9#I$I$'9#I$I$'9# '9# H$1E)H$I$1E)LB&$I1E)!1E) I21E)L$IE) 0E) 0L$E)  C2$C2!@I$I$!b&UIE)!/!I$Ie)$!I1E)$1E)$I$1E)I$I$e)E)I$ 1E)1E)I$I$9I$I$9I$I$9I$I$9$9")"Ie)@II%)b7U$@1E)H% f1\x1`e) I$I$9I$I$9@$e)$!H$I$e)%)I$Ie)%) e)$!I$I$@!I$I$@!@ @! 1E) H$1E)^U$e)E)|_ !Ae)E)- $H&e)E) @X$@$e)E)\_U $E)!H$IE)! I?`9$!U &1$9$!`VUI$IE)!IE)!*Ie)E)U/I $e)E)IE)7  HE)UUU%2$HҦHE)5 I$I$PHUUI!IXHU+ ɝwiP/ /W̿%yP+ ) wr q) 1qr4 * 4,yn4 + 410DZ*44I$I$%44I$I$%44I$I$&44I$I$&44I$I$&44I$I$%4$DZ!@P4H$I$DZ$!TUUU$`BE) P\I$I$1I$I$1HE)!I$I$1I$I$1I$I$E)$!I$I$E)$! $$!!I$I$$!!XI$ $!!-/  E)!I$I$E)$!I$I$1 E)!@E) I$I$1I$I$1@$E)! $$!H$!I $!! E)!ivE) +*$H$1I)( )($I)($@ E)!@@E)!$I$E) H$Ie)I E)!* %E) P @$)(H$I1 @ E) $E)@$I)(I$I$1  )(I$I$E)! `B$AH$!UI$I$Q!@I Pe)@PPe)PTUU e)$!  @!I$I$9 $1E)Z@@1E)^$I1E)$$e)E)e)E)&e)!x@5I$e)!`WUI$I$$!!/I$I E)!-Ie) !e)$!9hI$fe)UUEe1_?c EiW_ Sc p%1jI$the1UVjI$I Xf1UUUPI$$9I$9 I$9$I$9H$I$9 1E)1E)%f1!`X$IH1! %I$I$9I 1e)I$H$91e)I1e)@$H$9 @!II$e)E)??8  1E)@2$f1E)Önn1E)"&m1!`j`Iݶm1! $@$$1E) 1E)I$1e)I$9H$f1! $I 1E)*I$1E)*$A&1E)^ݶm1E) @ 11Itۀ 1e)* mѶlB&%i1UUUrww%E9 *)-pqqSF+/-&`f`"I$J%f1UTTP$I2$ 1E)I$I&1E)*m41E)*(RI1E)@@@1E) IB&11*Mж119F1I$ )I) t115H 9F1kmۆm11|N9 @1E)WxI$I$e)E)UUT`Nvk;1$!  P1$!11 $H 11 _$Ey1UU! fE9)""I 1@I$H%1UUTPI$I$)I)۰h$1e)P,4 1! I1 $9F1I$I )I) a-91j i 91ꪪ  L&91 91@ 11Mغm1%)W!I$1E)? vئ1E)+11@$9F1$@$I1f1 H $)I) 11 1E) n91k N$j59f1UU^xI$ 1E) .`91 5U $C$91 Nh91ժ CmѶ91  91**  `$91 :X39E) I$m9f1#LѦ1e)M&X,1E)UV^zRI1E) - LYa9E)֪ 11 /A$I)I)-Km11 dI$f1UU%@N.ffA )/Mwf*3+p S  )3I$EyUP3 I'%yUUTi%ya~蠀 VhAZ &h Y9UUTP I$L&BD! I$BD! (B%) I$I$(B%) (B%) H$I$A) LB$BA) I$I$B$! I$BD! $A$A) H$I$A) H$I$A) !I$99 ? @ 91 I$u991 I$I$91? Xmɖd91? `9E)zꠀm `1!I$I$1I$I$1 I$1E)%UUmݖt1E)5 t91ꫭ I$`091I$I$g9*  I$91 ? L$A) I$I$B$! I$I$B$! I$I$B$! 91 I$`91I$I$91 @!91 I$I$BD! I$I$B$! I$I$BD! I$I$BD! %9Ap ID1b !I$91 91 H B$! I$I$9F1 I$:1 B$! X91ꪪ I$M49f1 I$I$9e)* Zɐ91/ [3i@91_렀N" @1E)d$I$1E)Xi61E)IȐ I1E)I@2d$1E)7 XI9e) U &M91+ IҶX `91I$I$11* I$91 6`ۖl91/ I$I$BD! I$I$BD! I$I$BD!  $BD! A) I$H$BD!  9 `9e) IIJ9e)- !9f1* A) I$@BD! I$IBD! I$I$A) I$I$A) d91"I$I'9UUU3$I$1UUU3$I$9UUU47I$9 UU1 `I$9UU4 $f9 *)U4 $DZ9U4 DZ943$DZ43$DZ44I$I$%44I$I$%44I$I$%43H%4-'DZ3%"$DZV4!m'_3klDZf^ 1o'm__ (l>`m%yڂ mj=f%yzxxP|y9Zh ݖIi9UUUP I$BD! @A) m$ 91 I5H91Uz I$P@91UUZI$I$11UUUT 9I$B1UUUPb;kBE)P-IBe) I'FB1UWI$B1UUWI$I$9! I$91U `I$91UU  I91* H$9\W 9 I%91 I$[2l91 I$I$91I$I$)I)I$I$g9* $)1E)@I1$! 5I$H$)I) A )I)I$I )I)I$)I) A11$1f1I@11/ I$d1f1 !I$I11@$@H1IdmPH=* NR%qP/+/& 9u7wSq- /+=#aq{豆 A#'{2'ȱ1p\\\X$ 1E)/ $H$)I)I$I$g9*I$I$)I)P#ɒ$I1`ID=1A- ( I 1f1*I$I$)I) 1f1  $)I) `$I$91I$I$)I)  I91 @$C&91 C$I91 1f1 @!91  I291I$)I)I$I$)I)II$)I) @$91 B$! $91 $ I291$9F1I$H$)I) 1E)JM$1E) U11I$I$)I)I$I$)I)I)I) I$I$9F1 I :1  I291@ I$)I)I$11I11* II$)I) !A!91lض-11@01E) / $I$g9* I$)I)I$I$g9*I$I$g9*I$I$g9*11 I$I$g9*I$I$g9*I$I$g9*$I.<1` 1a 11'r%y1 %# N7S%q /-7".vȱ4/ VDZ?1c蹧;)lMBȱ_~ 6[219P@@I$I$9 I$I$9 $C$I11/I 11UնdB211_!I11   A11'($I$11$I$11A$I$11I$I$9!9!I9 I$H$11I$I$9!I$I1f1 I$I1e) I۶ 91 I`91ꪪ  $91 $a$91 m$9E)c'1E)@ۉ$1E) H$e)E)$I$ 1$!)Iن1E)$)P$e)bp\$HHe) I$I$1"رI1E)IX1E)? %I1E)I$9F1I$)I) $1e)$I$1f1I 11I$I11 I11*I$I$11Il۶1E)? I$H$11I$I$9!@$H$9 I$I$9!I$dB 1E)J$f10TUHI1I$I$9!,1 `I$I$9!I$I$9!II$9!d$1E)@$I$1E)I$I1e)*I1E)*1E)I$I$9!h4 1X`I15 $1pI1b % H$1E)H$I$1E)I$I1E)I 1E) I21E)$IZ$f1Vضm.e)!0H$E)!|WH$I$E)!UUI$Ie) I!E)!?$I$ E)I!I1E)$I01E) H$1E)H$I$e)%)I$I1%) 1E)I$I$9I$I$@!I$I$9I$I$9 9 H$@!I$I1"I1E)f1$I$I$9I$I$9I$I$9 9$H$@!I$Ie)E)I1E)I$I$@!I$I$@!I$I$@!I$I$1e)$1E)z@$I$1E)z^UUI$I$e)E)?I e)E) I2e)E)~ $I2E)! H$E)!I$I1$!UU5 ɕ%>9$! z 'I$9$!x^UUI$IE)!/ E)@E)b @$e)E)H$I$e)E)$I$C$HE)UU% D$I$He) I$IPH*ImXH* .W qP/ ɛUfH=*)N^r4 iW 1 y-%q4-1iRD 43 DZ 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%43@$%4(DZ!@4H$I$DZ$!TTUU @$E)!IE)!I$I$1$E)!I$I$E)$!I$I$1I$I$1I$I$E)$!$H$E)!~zH$I$$!!I$I$$!! E)$!I$I$E)$!I$I$1I$I$1I$I$1I$I$1I$I$1@$E)! A$$!!I$I$$!! %)$!I$I$E)! II$1I$I$1I)($)(@$I1 )($E)! E)!誫$ @E) $$IE)!*.*(@I$1@E) PI1 )($I$E)!$ @E)! $E)!/@$E)! I&dBE)!XZI$H%)IH$PH$ IPe)@PHI$Pe)TUUUl۲-e)!۶ e)!I$I$9$@!@$Ie)E)P[%e)!PP@2e)E)@l[$e) $I$E)!I$IE)!ww Itݶ e)!?Ivke)!/*( I$e)E)$Ie)E)ɖle)! @!H$e)E)<<L@e)!<<I$fe)UU fE1 hE`_~Rb %yX_ I'`e1UPI$I$Xe)UUUP$1E)$1E)$1E)H$1E)$A$1E)Xm`e)!ER`1!/H$H1E) $e)E)(IIe)E) e)E)@1E)I$I$1e) f1E)I$$A1E)ߪI$H1E)II1E)dHdH1E)ߟ$Id1E)I$@e)E) I$@$e)E)I$I$e)E) I$I$e)E)($I$1E)@0۶mf1!!$1E)$I$1E)d@1E)^ꪪ 1e)+**n$1e) @I$11U11??y1%%U& pwh9Xf+4$9@I$I$f1UUUTLB2 I11Vzm۶m1E)/ILB1E)**@N脦1E) 11 I$11!!I11 m&11@ZZI0115 I$@)I)$I$)I)I$I$)I)r1E)xS;b 1$!~ILB&E)!?ZdIx1E) I$I$g9*l 1f1a[w;y1%U wfq *+hB:$ͱfEXz`E1UTP11@I$11@ $11I11% ,211@@ݖn`11    91 @ @91ꪪ  I$91H$9F1 1E)ڣ51!ذ%[%E)XZZ%Rq؆1! mۖm11dM1e)***11I$I$)I)I11* I$I$)I) B*H91ko$$L$1E)i6i 1E) qx9f1 5 I$I$B$! LB& 91 !91 hۤH 91 ! $91 91ꪪIȄ`$11*( kЃi9E)~ࢪI$k%1$!J1w1! +I$@ 11? I!11 ض%[11PP!1e)鐔I$%9 %U% N7%q +1PNsf ++3/@!41[-6`DZ3 i%y`/? H%qUV Y߫heAj $ `9UW^x I$H$B$! I$BD! (B%) @ (B%) I(B%) I$I$(B%) `0 A) I$I$B$! I$BD! I$A) I$A$A) (91` @$91 99@ / I$X91I$I$)I) aI$91 I 9f1s"9 I1E)^pI$I$e)E)UUUTI$I$1I$I$e)E)UUUJ1E) 5 ` 691 I&91+I$I$91 I$91 ( 91 .=x=9p\p IJ9 / I$I$B$! I$I$B$! @&9`XtAɐD1b 5 I$91 91 J$9aW 9 @9@ 9A% 9p99ax` IP1a 5 @$91 91 I$@:1 I:1 I$I$B$! @91* I% 91 I$I&9e) )dI$91  91耫 k-@9e)Zꨀvb'`Ȧ1E) 1E)LB0$Ȑ1E)⪿!I$ 01E)`ئ1E)/  x9e) Xv91 IҴh 91 @$11 I$91 ۶  91 I$ BD! I$I$B$! I$I$BD! I$I$BD! 91 I$91 I$I&9f1 !I$9f1* !91 $A) A) I$I$A) I$I$A) @ H$A) dB$A91 m(9e)@  @W9%)5 vM$91* ؆mݖn91+ I$I$BD! I$I$BD!  A$I99* * -I$I$9UUU3 d93% IX:4 m\sDZj3 9|DZz4!1% DZ-4!uDZ^+4! DZ x/!&mSf*4 tn;6 DZ 4vDZ_ 1 õm],3 E~ ~b EeAj I$M>$q9UUP@ I$I$B$! ɐ$I$99%UUU I$99U kl99~ &I91 NBI91U I$$@91UUi4m11u $I$91-UUUv$Bf1U*B1#TB1U+I$Z@B1UUz I$y91UU]M[7h1V )rm۶9E) JI91U $F69E)z 9) [m۶91 I-l91 #9$!zəX 1% @$@ 9F1$I$)I)I$)I)I )I)I$@)I) aB&` 91  91H$I$)I)$9F1H$I$H1 !XH/yyw7eEX-+(qRE-+=%GnF-q@ϟa1\WWU@$I$11 11  11 11  H1%)H$NGe)AU81I$I$)I)I(1@I$1b U$I 1I$@$)I)I$I$g9*I$I)I)I$ 91I$I$g9* I$)I)@$I$)I)I$I91I$I 91I$I$)I) 9F1 $A$I&91  II$91@$I$)I)I$I$)I)I$I$)I)11@N:W1E),11I$I$g9*I$I$)I)I$I$)I)I$)I) II$91@$$)I)I$I$g9*11 I$Ig9*I$I$g9* I -1%)@#1I1E)It 1E)*. I$A$)I)I$I$g9*I$I$g9*I I)I)I$I$g9*H$H11 11 11I$I$g9*x'N$1axX~|ɕpJ1a% $I$11 ϟfY1UU!𻹛Ee9 *-3`WqǩE+F%ZB蹆 ?1-9蹧 ?3k?蹧;%hMJȱx 7L$b11VTP` 1E)I$1 WV IdI1!$11 11 $I)1E)M1!&  I$11 11 h$1E) V۶m1E)I$I1f1* mӶ91 In`91 $IH&91 $$&91 $$$91W $1E)N$1E)Wm'I$1E)$I1E)M$m1E)IX81E)?#8C҆1`hD[E)/%%)L$I1E)/u:l+1ZjqN1 im۶ 9E)* I!91 !II291H$)I)HL$1f1@$I$11I$I11$C11jI9!H$I11(*I$I$g9*@$11 $I$11I$I$9 I$I11LB11W1E)9 LB1V ٰm۶m1E)H 9!j$s:1bx^Xh)`I1 $ 2d$1E)H$I$1e)I$I1e)I1E) I$I$9!I$I$9!I$I$'9#I$I$'9#I$I$9!$1E)$If1`e)b%+I$I1E)I1E)I21E) I2L$1E)~W I$I2e)$!I$HB&E)WVX I$! )I$IE)!UUU5I!E)!U !AE)$! I I1E)U!I1%) $d$1E)@$I$e)E)I$Ie)%)*I1%) 0f1 @`@If1 ?I$I$9I$I$1E)I$I$9I$I$f1e)@$I$1"I1E)1E)I$I$9I$I$9I$I$9I$I$9@$@!H$I$1"I@!9I$I$@!I$I$9I$I$9I$I$1e) @$1E)~WH$I$e)E)I$Ie)E)? 1e) `I$E)  E)!@$I$E)!II1$!U% )P$9$! xWh$Ie)!IE)!+I$IE)!TB9,@E)bp@IE)b% I$I$E1E)WUU$I2L$HE)U=H$I$IHTUUUI$IPH*m6E `H+ɝoW%yP { fi+ +rE* - MH䧩EyTT4$ E43DZ44I$I$%44I$I$%44I$I$%44I$I$%4-@(2DZ4%`DZ3!͉DZ-@%J$$!PPTU  E)!I $!!I$I$1I$I$1HE)!I$I$1H$HE)! E)!$I$E)!H$I$$!!*j$! I E)!I$I$1$E)$!I$I$1I$I$1IE)$!I$I$1$E)! I$!I$I$$!!pxI E)!I$I$1I $1I$I$1II$1 @$1H$I$1$LHE)! @$E)! C2$C2E)! E)!/ @$E)! I$I$E)$!I$I$1II1@$@$E)!A$IE)$!*I$)(@$I$1 @$E)!IH$!UUUI$I$H%)I$I PHIPe)@PTI$I$e)E)I$ e)E)**@!$e)%)$I$e)E) * II$1"@2e)$!k$e)!`$I$e) I$ AE)!/IHe)! I$I$e)E)$AdB&e)!@$Ie)E)*+ Ie)E)e)%) 9$@!@$I$1E)$ Ae)$! I$I$@!$@! $I$Ee)UUUi?$EE)USmEi_SiEyXW _Kp$)Vj||I$I$)(I$I$e)E) ** @!$I@!If1E)ɶm1!I$I1e)L$$ 1E)I$I1E)kv1E)V* ɶm1E)I$@1e)!I1E)$@$1e)@$ $1e)Kd۶m1E)A$'9#(1$!@@I$f1$!dB1E)I1E)ꪪI$1E)I$d1E)~I$I21E)Ue)E)H)(6m$1E)UUUI$1E)UU؂-ۖ1E)jj01E) I$I9!!IH11 /s91 ))% `N/%y +/"eꫡ-c1"@1P@@I$I$9  $R1E) A1E)* KX `1!$I$1E)+I$1E)*1e)I11!I$1f1 $1e)H$ )I) Ʉd11( I$I$)I)1E)vR@1!_I$M%1%)UWX`Nm'1! 1!`1e)PI$%y1U pBfEy ++c@f%yz蠀c %9VX I$I$q1UUUTH$11`؆%1E)) I11 %H$)1e)$I 1e) $I$91 91ꪪ $C2 91 $@91 R- (9e)ꪨ`r%#1!^PI$I$E)!=؆1! Yv1%)0 11 1E)F2I1E) j@ H1%)-M1! >>( 3 9E)*IL'1E)*@ 1e) `91UU @B$! L&dB291 @91 l 9E)@$ZI1%) [-91zk mu91 P 9E)^~ɐdI$1E)W IR9e) L$11.I$I$)I)H$@ 11 HDA9e)w9 ))N/%y*+1" R +-4/P JDZ **41XlDZ3)b#Hx/ #@qP&O'톡XUV` aPw`9W^x I$d0BD! I$I$B$! @!A) I$I$(B%) $@$(B%) I$IA) C-۶m99Rj I$L0BD! $I$BD! A) ?'r9$!x  P9E) I$I$A)  99 /? M&@ 91I$I$91 tI$91 / h91 C 9E)^I$X41E)UWzpI$I$1I$I$1&SI$1E) U m[;9 ~ ` 9E) I$I$91I$I$g9* 2im9!@* )Wn&9e)  I$I$B$! I$I$B$! 9a` IN 9a-  I$`091 $I$)I)L؃&1aTp .9 I$I$B$! I$I$B$! @9$!` 4I9) I$L091 !I$91 91 I$I$B$! $@ :1   :1 I$I$B$! `9e) I$[9f1I$I$11* I$91 `091+ 3h9e)_zI$m1E)m$1E)*IÖ1E) I$I&1E)I$1E) 0V9E) h091* I$k91 I11 ** ÖnI$91+ 91 I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$BD! I&I9f1 I$I 91 I$91 $@$91 * A) I$I$A) A) $A) P*I9!` W9. M&۶91 in6l91 dB&91* al91+ I$I$BD! I$H$BD! ͚99``&JI$=-$ f**3"0i͛ߧ 4 տ4%mv7DZ4)IbDZU4)DZ543I%43DZ4/j# @DZꪨ3&3i3cf_~" u q_ Ib'9UZj I$I$BD! I$I$B$! I$I$B$! @L$91  i91* A) d"$ 91 3@91_ NX 9f1U_ I$91UUu $I$91UUUI$B1*UU6$B1 U hB1 mAE)I$#,B1UU_`#9ڲ1`pj1%- $I$91UU 0Ii$91U $I'91] 91* $CI91 L91 IB& 91 I$ 91 L$L&91I$I$)I)  IDg9!@I$)I) ")۲%H1I$IPH/ 1iP=W7ufi--6q7ȱf--/;)$DZ9@@pP IB& 91 M l91 I$I91dB2$ 91 $ 91L$L1f1b$1%)8$@$11I$I11*"`@1$!@I$Ɇ1aUVh I1b H$I&1f1I$11*$@!1f1  $9F1I$H$)I)@$F1e) I$)I) $@91 `2C91I$I$g9* )I)H$9F1I$I91$ =1$!p9e)I$I$9F1 I B$! I$91 I$91 I B$! I$I$9F1I$H)I)I$I )I)I$I)I)I$)I)dB&d11I 11**   9F1@ $)I)У'z"&1AxX`O 1A I$@1f1*  C&1f1$11 11 / 11$I$11I$11 $@ 11I$I$9  11 j.1ؠDI 1E) $C$ 11I$11յ* ɔ%q1%U pSf%i+-P wf+6-vpȱUUT?3/蹧;/=>ȱEuw6&i1@#I$J$1UUTT}. 1 A$H$11"$I$11I$I$9!"I$1E)@I$1! Im 91 1E) M2S-9E)W0 L1b, $@a$91  mk$9e)^ m89e)u N$1%)$I$1E)H$I&1%)I$IB1E)I$1E)WiZM$1E)дI1E)H$I1E)ضm1E)*mò 1!mdME)** qm9E) I$ 91  $H291 @2L$91 X۶m&91 11 *I$I$g9*I11  11 I$I$g9*I$I$g9*H 11  H$11 @$I$11I$I$9 I$I11+I11?I$I$g9* 5h$1`XT IE)b56`1f1I$I11*LB2$ 11WI9 I$I1%)`I$H1e)I$ I1E)* 1E)*I$I$9!I$I$9!I$I$9!I$I$9!I$I$'9# 1E) H$1E)H$I$1E)I$I$1e)I1E) @$9Id$1E)ZU@$I$e)E)$E)!@V $I$E)!hVUU$C$I!IlE)/ m۶ E)! I$e)%) I$ 1E)$@$$1E) $I$1E)I$Ie)E)* I1E)I$I$9I$I$9e)I4f1? I$I$9I$I$1E)H$I$1E)I$I1E)I1E)I$1e)$I$1e)I$I$9I$I$9$1E)$I$@!I$I$1" @!I$I$9I$I$9I$I$@!I$I$9$1E)$I$1E)^WWI$I$)(I e)E)/$H$e)E)@0$IE)!p@I$!.I$IE)!? I/@9$!5 >N$9$!XWUI$IE)$! E)! IH$e)E) I$e)E)/$I$e)%)I$IIE)UUU$A"@$HE)% I$I$!`AI IPH* Iq iP+ .UJ qH*" { q+-yr4e 3&qn4 9X"I$IDZEX4#DZ44I$I$%44I$I$%4%,DZ`4%PlDZ4)۱DZTUU4)mvDZWU 4%r4DZ`4 P$$!@PTI$I$$!! H$I$E)! $@E)  E)I$I$1 @$E)!jzE)!I$I$1@$H$E)!I$I$$!!I$I$$!!j. I$AE) E)! @$1LȄLH$!<<(I$I$1I$I$1$@E) ZZ@$ %) PP$@$!$I$$! IE)!I$I$E)$!I$I$1$E)! I$1H @$1I$I$1E)!H$E)!I$I$1$E)!^I$I$E)$! @HE)PI$I$E)$!*I$I1$A$ɄE)!HE)!$I$1@$E)!I$I$E)!H$H$!UUI$I$H$!I$ PHPE)PTUI$I$e)E)  e)E)%H$0e)E)`u e)E) I$I$e)E)* E)!@I$E)!X۶m4E)!UI$IE)!__ E)!/I$I$e)E)I$I$e)E)I$I$e)E) b(R"!e)((@!$@!$I$e)E)*I$ e)E) I@!$e)E)l&e)!mm$e)!~U$I$E)!@^UUI$IE)!I$ e)! y k KfE1 LHPVI$I$fe)UUUT$ 0f1%)xpf1E) 1E)zj۰ma1E)$I1e)$H$1e)*@ '9# IP1!%%I9H`1E)$H$9I$I$'9#I$I$9!`& 1E)I1e)  1E)j I1E) 1E)  1e) 1e)1e)*H1E) L1E) Kk 1E)^ IB:$ 1E)I$Ȇ1E)`LB2$ e)E)Wk  )($A $e)E)U`m;1E) -U[1E) II$i1UURw{%E9 *),4LUf+*3(7ȩ&K%R-1TPP@L11I$@9 $I!11-[m1E)mۀ 1E)I$I$1E)*`ئ1E)/11 I$@$11*$ $1e)9F1@ 11I$1f1 @%1E)PPk$1%)XvR; 1!񐔉Ć1! /$@1%) -P Ȇ1E)%Ry%1 %!Xn/s%!8iE_v %f9Z I$L$%q1UUTP`H1%)H&L$11ZVTk&k1E)*  1e) $I21f1 d9e) * 91ꪪ I$L&91 @A9e)@1%)N'1!V^xI$I$E)!=W- n1! +0C11``Jl۶a1E)?!11. 1f1 H$11 (I$I$)I) #91\z I$1E)* H$1E)* 4@91% II:1 IL&91 09E)@ mH9e) @91`01e) Œ!)91ckvR;m1E)W^zwk1E)-)1e)R"%! 1E)PPI$I$)I)!LH1f1 ( I$I$i1UUU`Sq%f9 )),`N/E +3(Iw +410 DZ *41`DZ4,i1 #H%q`(I$iXW_E9UWx I$M6I9UUUT I$I$B$! @!A) @(B%) (B%) @$(B%) (B%) I$`0BD! I$I$B$! R3IM91` I A) I$I$A) I$I$A) I$99 ? j*91 I$M%91 IdI$91/ #єd 91++'1b`Xl)E)a -I$I$1I$I$1`$H0E)ax\xHV1a * t91/ I$@B091 11 N$91  91 I$I$B$! I$I$B$! I$I$B$! 91 IЮ=1px&A1Ax 9 $I1  91 I$I$B$! I$I$B$! I$I$BD! 91 I$`91 I(-1%)@  X9.5 91 I$I$B$!  B$! I$:1 ,9E)`$IX1 %I$d091 $I$9f1 V鐤91 &H91_N2; i9E)W~ $ 1E)I$1E) qBm1E)ii1E)+`R$9E)  91* m91ꪪ I$I&91  $I$91 @ $91/ $I$91 I$I$BD! I$I$BD! I$I$BD! I$I$BD! II$BD! L& I91  91 I$I$B$! @$@&91 A) @$A) IA) I A) $A$ 29f1  |9!, m۶m91  $ 91  IJ9$! mt91 ` 9E)` I9[f9 UU+ &EQ1  I%y 4/P VDZ*43DZ44I$I$%44I$I$&44I$I$&?4I I$蹧41[-DZ3)#Hz/i_(C %y~ OR?%9Zh ۶mۆlh9UUUX I$I$BD! H 91 91* I$I BD!  AL$91 m91 $A) I$ A) ۭ'O'9\W\ hn1`9  $I#9$)$1$!@N$N f1bU(ӶmBE)Ii9e)??3B1O&B1UWI' `B1UUր q$v91UUU$$ 11 dI$91+UU dK91- $N$91  d;91 $  9f1  )@9E)@ N$N9bU8 H9$! [%K$H1I PH* I|i8===" ySd%q/+?"wAf ;J$TT  II9$! $I$:1 !@$A91 $B$! @$I$:1 AI$:1 $@91ꪪ IB91 Mڶۆm91 m691 c@91aB$ 1f1 dB2$ 11I$I11I! 11* I$I$g9* 2 11hk$m1E)(11I$I$)I)I$I$g9*$I&-1E)I&L11_I11+++ $I$g9*h$z=1!x!`1 I$I$g9*$I$)I)I$I$)I)I$I$)I)$I$)I)H$I$g9*$H$1111 @$11 ɄdH11̘51!p 11$! - I$I$g9*H$H$11# I1@1E)11H$11I$ 11I$ I11 $C$ 11I2$I11I$11/ I$I$)I)dB$I1f11f1I$I$)I)I$I$)I)I$I$)I),5`=1Ap`ɕX1a %-sɚ%y1 -- .wqq++/3#r; *=/z蹧43@ DZC+?^|~6c1h9P@@ II9f1 M& 91 It9f1 IB91 !91 @$91 0:9e)`ĉ$1E)?? "IR۶9!JIE)bU$I$1E) $I$1"I$I1"I$1E)I$e)E)  I$1E)H$Ie)E)I$I1E)?I$1E)?m{$A1E)? Im&9E) I$91 I91 m9E)6 L$91$I$)I)I$I$g9*I$I$g9*11 11 I$I$g9*I$I$g9* 11@$11@$Ʉ11I$I$9 I$I11I11/ 11 I$I$g9*I$I$g9*I$I$g9*P(1P@ !1$11H$11@$I$11I$I11?LB&$11W_ IH I11*$9 I$I$9!I$I$9!I$I$'9#I$I$'9#$1e)$I$1E)I$I$1E)I$I1E)+$IH1 @DIf1U I$1E)_U@$I$e)E)C&E)!$I$E)!I$IE)!UUU5I!E)!յ !E)! I$ I1E)4I(f1 @HI$f1U$I$1E)I$I1"I!1E)!1E)I$I$9I$I$9I$I$9I$I$9I$I$1E)I$I$1E)I$I$1E)I 1E)'9# H$1e)H$I$1e)I$I$9I$I$1E) H$1E)H$I1"I1E)1E) 9I$I$9I$I$f1e)I$I$1E) @$1E)H$I$e)%)I$Ie)E)* I$e)E) d$e)E)^W $I&E)!$I$E)!m۶mE)* b۳'9!z^p$I$1!|WUUI$ E)!% I$IE)$! I$@e)E)U e)a,H$I$e)$! HE)UU$B&I$HE)I$IPHI!IXH+ ɟwgqP+6WE`/ &N^n4 `W* /Yn4 f+ 3)qR$+41ɖ DZ* 43@$%4,%DZP4)$DZTU4%X۶DZ4%mNDZ?%$Hȹ?)9I$ȹVU?% m蹆3$I $!@@)H$I$$!TUUUI$I$$!!*%I 1 $H$e) @$!$E)!I 1I$I$1$H$E)!I$I$$!! * !!$A$!$@$E)!kZZ!$H$!HIe) 1@Ie)I$I$1 E)$!$I$$! H$e)IE)!I$I$1I$I$1I$I$1@E)!*I$I$E)$!I$I$1 E)!ꢀ H$E)!/H$E)!I$I$E)$!@ E)!PI$I$E)$!HE) * I$I$1$@E)!PX$E)* I$I$1I$I$E)$!I$I$1@H%)UUI$I$H$!I$IHE)@Kh HE)hXTUI$I$e)E)/**e) e)E)@ )(I$E)!(`B&E)!`$I$E)!I$ AE)!/M6E) UjmmE)!% I$I$e)E) e)E)!$Ie)E) I$$e)E)$I$e)E)@$I$e)E)* e)!2e)!mۚ$e)!]I$E)!WU $I$E)!WUI$IHE)!UUIݶE)!UIme)!!I$e)E)1E) 1E)!?gfe)!жwۆEH$R"%ff1TTPPI$1e)I$9I'9#1e) 1e) Kd1E)** 1e) @$@1E)** I$I$9!01E)j`1E) I$I$9$I$9$I$9$I$9m۶m1E)j1E)骪  $1E)$1e)*1e) *1e)dH$I1E)* H$9!I$I9!9 m۶m1e)ٶ۰m1f1 *I I1E)xIB'1E)U^pI$I1E)UUUI1&I$1E) UUU.WəyE) %! PN/f%i ++3Wǩe + -4@ ȩf~%/$1UTTPI$H11IH1%)!$I11-@$@11h1E)m; Ɇ1E)-I$1E)ضmmt1E)/?@ 11DK&m1E) I$1f1 1f1s2'rt1E)\ 11*ؚ 1e) 3 h1!`NE) *@1E) an1e) !E1 %+-炷E+-O %y'! ifEAjI$d,%y1UTP@@11P!A 011-p$AL$11 I11NJ 1E) !I$91 (91jzېmٶm11H$@ )I)@#9#1E)pPPM&m5E)!Vz I$E)!%W n1! +  111[1!91x F'9$!z^@N&w1$!+- mѶi۵91 `"$I9x j@9 L: @1E)WX`I$I$e)E)UUUTI$I$E)!H$I$e)E)UUU` Ć1E) 5 m91 ka91I$I91 `m91+ H!91/ $I91 @9e)`IĦ1 >׷ {&U39^Xb J9  I$`091 !I$91+ @!91 I$I$BD! I$I$B$! I$I$BD! I$I$BD! 09p I|$A1- $I$91 $91 91 I:1 -&I9` I1a7 C91ꪪ I& `91I$I$1f1 I$91/ X `t91 lBI9e)z ؚ9E)zI$I$1E)/$I$1E)*LB&`B1E)I$I$1E)* Ivg9e)* &n91" -:HA91 m۶M591 II$91/ Pi91+ ۶mۖb91 I$A) I$I$BD! $I$BD! I$I$BD! I$I$BD! I$IBD!  I 091  $I$9f1 @ $91* A) I$I$A) "9E)@ I| 9!Օ. m`91 $@9bp`  1 7' I6 `91ꠀH$I)I) I$91 $91 a;mea9-UUU+ I閗A 4"Dn. ȱ)=/豧=41 DZ*44I$I$&44I$I$&44I$I$%44I$I$%41`DZ4 %@H%yPP1m&@%y+C E~!M'#F8~ $IBh9UUZH I$I$BD! I$I$BD! I$I$B$! H91 * I$I$B$! 91 $I$91 P. 9!  *i9@ I$I 95Օ& M09f1 91U Im91UU ؎ @91UUU9 vO91/UUp$B1UU4B1UI`B1zyDIB1] }ۀ B1UU` =91U m;991_WWX!0I&11 &`91  R91U $ -H9UUUI$A$PHiviXH/+wf`--qs/AE- ;lH=DZEyZTTX HmIT M49E)* $H$91 $ 91 $`09`TIĆ1a9F1 I$I:1 @$I$:191 $I$:1   )91*j $ 91>1 XX `O9! -- H$@$:1 $ 91ꪪ@91 L@91 IB& 91 I$IH91 $  51b` R>c9!zX\S 9-- IH91 IB&H91 [IH9e)ꪨ! 1f1I$I$)I)I$I$)I)I$ )I)I 9F1I$A$)I)I$I$)I)dB1f1 i۶91$C91IB11[#i@1%)DI I1E) I$)I)I$I)I) I$ 91I$9F1II$)I)I$91  9F10,91{9F1$9F1H$I$)I)I9F1@$@$)I)I$I$)I)A$I$)I)I$I$g9*I$I$)I)`1!@TI$I1  I$I$I1UU`S%e9 *))POwf*/;%. Kȱ  ;1m۰豧?1V|蹧0;-Z~j豧?3K$c19TTP@ mڶ9E) if;91U Am'1E)~ȶ'1E)dۉ$1E)$I$f1E)I$I$e)E)I$ e)%)I$$e)E)  I@$e)E) H$e)E)$I$e)E)II1E)￯ I$%1E).IX1E)? m&9e) I$!91  C91着 91jzz `W91 &I$91 H$I$91I$I$g9*I$I$g9*I$I$g9*I$I$g9*$1!8WI$I$g9*$11H$11$I$11I$I$9 I$I11I$I9!$11I$I$)I)I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*$11$I$11I$I$9 I$I11?I1111 11 I2$I11jI$I$9!I$I$9!I$I$9!@$1E)$I$1E)I$I$@!I$I9I1E) $1e) 2d$1E)`E)I$I$)($@$1dB&$CE)! IE)!/E)!I$ I1E)_kڨ9f1 |x n1! m۶1E)zIȐ$ E)I!A1E)!@1E)@$1e)H$I$1e)I$I$9I$I$9I$I$9I$I$1E)I$I$@!I$I1E) 1E)81$!p@$I$1e)I$I$9I$I$9I$I$1E)I$I$1e)I$I1E) 1E)I$I$9I$I$9I$I$9I$I9$@&1E) $I$1E)I$I$e)E)*I e)$! I2e)E)z$I$e)$! 2E)!z^ ɐI$E) ?g39IIE)5H$IE)!IE)! I!E)$! !Ae)E)= $If1@IK E)U$mHE)UU Xm۶HE)I$IPH*I `H+ }6W %yP+}.U f`+ )r E+ 1 yrܴ *4,ym4 +4/ %DZǩ4)#$DZ~U4%խ]DZ4%m;DZ54%v@DZ_ 4%DZ4%5DZ`4%s;q DZ}- 4%JDZ 4,$DZ)4@$H$DZ$!PTTU$H$E)!I$!!%$1`B&d$!* 1H$Ie)I$I$1 @$E)!I$I$$!!I$I$$!!?I$I$!! I$I$$!!(($1H$Ie)  1@$I$E)!~ $!!H$E)!H$I$e)I$I$$!  @$H2$!$%)!I$I$E)$!I$I$1I$I$1 E)$!પ E)!I$I$E)$!I$I$E)$!I$I$1I$I$E)$!I$I$E)$!I$I$1I$I$E)$!I$I$E)$! I$I$E)$!I$I$E)$!*  E) @E)!誩 E)!H$!UI$I$Q!@I$ "PE)@C PE)PTUUE)!$@&E)!XM6:E) VjE)! &E)!`$I$E)!L$IE)!  E)!/$)()(I)(I$I$e)E)* I$I$e)E)$I$e)E)I$I$e)E) I$I$e)E) E)mk$e)!^UI E)!ZWUUi۶mE)!UU I$E)!U-(imۀe)!+(Ie)%) $Xme)!I$I$@! 1%)ꪖ 1E)z @f1! q%ie)P oFa +2!R ff1@@B @$@$90۶%1E)^I$9 LH1E)$I$9m۶d1E)H$I$1e)I$I$9I$I$9I$I$9I$I$9$I$1!UU0m1!Mڤ1!$1E)U@21E)1E)I$I$9؆%1$!Z @1E)jj)nݶm1E)I$1e) %1!X1E)*I$9 $I$11$9 K<1$! 1E)$9!X01E)xvB'1E)UVI$I E)! &J)%%) /.quwE+/=4)3}詧ZZZ[3"&H1@If1UUUT $11I$11*d$I11$H2d$11_W$$1E)K5-1E) I$M%1E)PI$1E)/$K1%) I$@11I$11/I$I$)I)I$11*I11**H1E)kՀ 1%)ZI$M%1%)UUWXNI1E)/- $Am6ie?'EE1 )%(6Ljf + 4!f1~bǡE__c%1VZh Ii1UUUTٶl[1e) !L$11 7WW$11?I$I$g9* ö329$!jD@ 1! I$)I) 9F1Ȓ$I1E)XI$m61!WVZh I$E)!-5UPv1! +I11*I@ 11/ 1f1 11E) 1E) 1E) I'349E)I$ $1E) ) 9E) / L C91 2H11  L9e)*  91ꪪۂ-11@@d6eǦ1e) @91 -9E)~ 1E)P1e)  L$11.Kl`1E)<HI 11(*  1e)psI1 )3 p%y 3 IL䧱%yVVF1j44I$I$%43DZ4/m" HDZ1#cHz,3 E~ Cc EAzꨠ I$Ey9UU_p I$I$B$! $I$BD! {%9E)^ 0@91  I$IA) (B%) L&A) I$I$B$! !I$BD! (B%) I$I$A) P91x u:9$!^z ۭ.49`I1I$I$)I) I$91 t"DA91m1E)~I$L:1E)UUWxI$I$1I$I$E)$!$I$1* Is9! @;l-l91/ m۶X91@*B9E)*p$I„1<׾ vID9E) M8RH9$!( I$I$B$! I$I$B$! I$I$B$! L&91 I$I$91 I$91+ 91 I$I$B$! I$I$B$! I$I$B$! @$I$BD! L& 91I$I$)I) I$91 91 HB$! @$@$91  I:1 I$I$B$! `91 I$X`9f1I$I$11 $SI$91 H091+ uՒ@9e)~m 9E)I$1E)+C`S1E) m'bȆ1E)1aئ1E)+ Iqħ9E) t91 M91* I$I&91  $I$91 I$91 H$I$BD! I$I$BD! I$I$BD! I$I$BD! $A) @A) L2 H91 mkm91  (9E) 4$9 $IM91 A$I$A) @ A) I A) M$I9f1 I$I$A) ->9!x m 9E) I$I 91  $I$91* kaA1*%ɟ$f9U/  N%i 3)@  410ِlDZ*44I$I$%44I$I$%44I$I$%44I$I$%43DZ4/j# @DZꪨ3&3i-3 hf_~"  q9UZj $@ 91* I$I$BD! I$I$B$! I$I$BD! I$I$B$! $@*)9E)@ЗO1 $I91  091 $I$BD! nM$91 ذ $9f1 `$A) $ 91 =@91W NRj @91U I$d91UUB&`11BZX ױm91 uUW &|&9`Z^z'I9b -+@B1 bh@IA1z q-$91 O" I91Uר dC6[$H155IPHwqiP--qS7fi--+-)P f++1 $1@@@PI11(**k$91WW I!91 mm$91 "I$I91j J I1% $ $91  $:1$@ 9F1I$I$)I) $I!I91%x=1pXp 1 1!`!@1%) I$I$9F1I$I$9F1 9F1I$I$)I)91  I$:1p$X)1bX\pDI1A m۶m11I$)I) @$91 $B$!91ꪪI9F1I9F1I$I$9F1@ 9F1I91 d$I91I$I$9F1  B$! @$91 I&51E)p$@>1jDIP1 -9F1 9F191I$I$)I)I$I$)I)I$)I)@$I$)I)@1JtJ1! H$I$)I)I$I)I)A$I$)I)I$I$)I)I$$)I)I$I$)I)$I$I21f1$ $11@$11$11$I$11 M'Y *z^@M&Rf  )6p tsȱf /-9-({˼ȱ?3">蹧91Ndu:豧??7&`9@(O$H$WUTT$@!AE)!I$I e)E)I e)E)+IH$e)E) <H$H$e)E)8$Ie)E)+ $I1E)I$M 1E)տ*I$$ 1E)_n$ 1E) iIn 9e)( I91 IB91 I 91  $91* L$91$I$)I) C$I11I11?I$I$g9*I$I$g9*11I$I$g9*I$I$g9*@1E)Nĵ1b dI$I1E)I$I$9 *&1hxI1 -- 11I$I$)I)I$I$)I)I$I$)I)I$I$)I)$11P 11$11 I$11H$I$11I$I11/I$11 11I$I$g9*@$11 $11H$$11zW$I$9 I$I$9!@$1E)@$I$1E)I$I$f1e)ꫯI$I1E) I1e)  H$1E)kۤ1E)WUH$Ie)E) I$1E) e)%) I$I$e)E)訠@e)E)_I$Ie)E)(I$!I1E)_ I1E)@$1E)#$I1$!p I$Ie)E)I!I1E)!A1E)$1e)$I$1e)I$I1e)I$I$1e)I$I$9I$H$1E)I$I$1e)I$I1E)I1E) 1e)H$1e)p$L'1^^1f1 I$I$1E)I$I$1E)I$I$@!I$ 1E)1%)I$I$9I$I$9I$I$9I 9d$1E)H$I$e)%)I$Ie)%)  $e)%)  $C&e)E)|_ I$I2E)!$I$E)!I$I1!UU Ilێ1$I$1$!pVUUI$ E)! I$AE)!  [&E)! V$@e)E)@$I$e)%)I$Ie1E)/aò$He)5H$I$IHTUUUI$ PH mn `P+6WEX+ {. fi+ ,r E+ 1#in0 3+$I U3%40Mڧb4%bl;vGDZZ%߶IIʆUD%nBh蹆 4!0q۶`4%pvDZ\ 4%DZ4-)DZ4 DZE@@4 DZE4 @$DZ!@@PTI$A$E)!II$$!! 1 C2$I$!@`I!@$!++I$He)1$E)!I$I$$!!PI$I$$!!.I$I$$!!? IA$e)@$I$e)H$I$e)1$He) 1$1I$I$e)I$I$$!!H$I$e)$C%)!ZZE)!HE)!I$I$E)$!I$I$E)$!I$I$E)$!  E)@@ E)%I$I$E)! *I$I$E)$!I$I$E)$!I$I$1I$I$E)$!I$I$E)$!* I$I$E)$!I$I$E)$!I$I$E)$! E)!h*E)!*I$$HE)UII$PHI $PE)@PHPE)TUUU 1  H$)(dB&$E)!XX$E)!2L$E)!I$  %)!I@E)!/$)($I1I)($@)($e)E) ZI$I$e)E)$E)! 1 غ6E)!^m$E) xWUL$$IE)+I&% E) U Ime)!-I e)E) LIe)E)HH&C0e)$!(  e)$! I$I$1E)I$I$1e)H1E)`'f1X@!1E) 1$! .%iP+ 1uf%i ---I$H$e)UUTT@$1!$f1!W[$f1!UM$f1! WUhlI$1!UUI$f1!UUDI$f1!UUI$e)!UUvI$e)!*UUmI$f1!UUCI@ e)  1ie)I$f1E)UUI$1E)UU$Ce)E)b@ e)E)($@$1E)b؀-ن1$!Xqm 1E) I$l1E)I1E)dH1$!XI$$1E) $I$9$I$1E)  !$1E) 9 9 dB2@11Zj!I$ 11 1%) 1E) O@Zmi1UU!pwf` /9pWȩE+7),ȱ3d-1P@@H$9 @d&1E)%dB1%)PZI$I$9!-1$!*/ I$1E)*  1e)I$ 1E)_~I$I$1E)5UUWI1E)/=5H 11* I$11 /11 @1f1I$11**11XI1E)`I$s51E)UU^pIĆ1!Bqw{%y1UUU&TnsfeA 4"{ǩ 7 bhȱfh-Cc-ǩE_z!~R;b Ef9Zj d[$Eie!\PTA1! & %J1E) %%I$I)I)XH1E)<۰m11 @ 9F1 $I$g9*I$$)I)1E)xI$k%e)!WVXp!I$E)! %P.1E) %11I$H$11* 11 I$@ 11>11 B$A11]۲٦1E)ɰm1!* A9e)-= Iuv9E)XH1%)// @!91 LB& 91k311hZ11 -F9E)jj* ۵ ڧ9E)Itm۵1E)%)1e) 11 ? 11-It11 %% )i1UUUrq%E1 )( L R%qV +3 !)E@BJJ$ E%%D4I$@mDZUWp43DZ4/j @DZꨨ1&#ѐ@-3 iF~ꠀ" ~Bc FeQj ~R?E9UW\ 9$) vm91 * (B%) (B%) @$I$A)  (B%) `(B%) I$L&B$! I$B$! $ A) I$I$A) I$I$A) £=h>9apxp ɗ1A%%- u5 @91 I$L&91 !I$91+ kҵn91 [I9E)jI$Ȇ1E)UWxI$I$1M6`E)ުII$f1$!/ ؆1E)  k9$! t:I91sMI1E) 1I$91 (@&91/ I$`0BD! I$I$B$! I$I$B$! I$I$B$!  91 * I$d91 !I$91 $91 I$I$B$! I$I$B$! I$I$BD! I$A$BD!  91 I$`091  I$91 @!91 I$I$B$! @(9E)@ [O$1A( 9e) 91* k91ꀠ I$k91I$I$1e) ɖ$91 `H91 N m9E)m۶k1E)SI$1E)/ &w9E) I$s9E)퐴I1e) `R91U 6ݐ91 I&[a91 I$I$91  $I$91 !91+ 91 I$I$BD! H$I$BD! I$I$B$! I$I$BD! I$BD! #&I9e)@ I 1A׾ @ $A9E)  $I$91  I!91* A) I$I$A)  A) 9=9`` ɕ9a /% A) d91 MҤk l91 C&`091#pI$1 UU/ ܔEA3&I.*4/P VDZ*43DZ44I$I$%44I$I$%44I$I$%44I$I$%?1?o蹧UWC$1"-Ejb`, ژLC%y(:[ E_x}R%9Zj m:m6q9UUUP !$I$91 !91 *  91 I$I$BD! I9!, I$I$BD! I$I$B$! I$I$B$! I 91 I$I$9F1I$I$9F1 $$I$9f1 mI$9f1* 6 ݖ91* $ A) d"I91 u͐$91~ $C 9$!j i۲% H9E)mڦm11ߺ(A$IB&11 ɓ'91_ 91- H$L$H9 XH/w1u%yX-/% qwS/U %y-/+1#dN -+ ;R%H$DZ1PPTT I1e) t"% 91W޺!I$ 11I$@11 11@$@ 11 11  @$11I11 //I I$)I) $I$91 "ڴm9!` I1E) $$91H$)I)9F1 I$I$9F1 I$:1 LB& C&91 9F1$9F1 , 91*- I$$ 91 I$$ 91 I$d91 $I$)I) I$)I)9F1I$I$9F1I$I$9F1I$I$9F1I$I$9F1I$I$9F1$I$)I)$H$)I) I2ń1E)<H$I)I)#'j٦1Ax?1Azɕ!@9b5- @$@ 9F1(%1A` ɑ\1A -/I$)I)I 9F1I$H)I)$1f1#hm1E)p6ln11 $I C&1f1@I$11I 11 /$H$11H$I$11($A 11I$I$9 I$I11I$I11I$11I$11L'1A\xPwEq5?, pwq =Nwf D-L *UUD3_C+f1dkh=\-ǩP@@)IE)b %%H$Ie)E)$I$(e)m˖!1)c 1E) n&L9E) 7m91  91 I91(  91. $91 I$91 $I$91H$I$g9*I$I$g9*,1E)1E)I$I$)I)I$I$g9*I$I$)I)Ȁ1E)@pސ IL1%)+%%H$1f1$I$11 81!p$I 1! I$$A11 I11 1` `1 I$I$)I)I$I$)I)I$I$g9*I$I$)I) 11'O'1bXVXII1  9 I$I11I11+11I$I$g9*$I$11H$I$11 9!$I$9!$1E) H$1E)@$I$1E)I$I$f1e)I$ 1E) I1E)* 1e)(1$C 1%)ꪪNl5%1E)U.] 1E)$I &1E)Z$I$e)E)I$I$e)E)+I I1E)!A1E)$1E)@$I$1E)I$I$@!I$I1E)I1E)I$I$'9# 1e)I$I 1e)I$I$9 I1e)@$1E)I$I$1e)I$I1E)+I1E)  1e)H$1e)H$I$1e)I$I$9# Af1$!pI$H$1E)I$I$@!I$I 1E) I$1E)$i"If1@ȐdIdE) ?1E)I$I9$&1%) $I$1E)I$I$e)E)*I1E) H$f1E) @$e)E)z^U Id$E)!H$IE)!IXDf1$!5 &%t$1$!P^UI$Ie)I$IE)! I e)$!* !I1E)vې)Ie) Wܰ@e)!mv!He)UUU:$I$Hf)5I$I$PH۶ KP8T IvgiPս+}.W EX*% { $q +yNqf/ -(0hm4(db.Z%[*†Z)}'J§/WZ%(;)†|4%Xb۶mDZX/4%mDZ4)IDZ44I$I$%4DIDZE44I$I$%4DZE@46 ! @@4H$I$DZ!TUUUI$I$e)I$I$!!% A$H$e)$@$$!($@$e)$AL$$! $e)H$I$E)!I$I$$!!8.I$I$$!!>.+I $e)H$I$$!!I$I$e)I$Ie)$H$e)II$e)H e)@$I$e)I$I$$!!@p@II$$!! IE)$!I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1I$I$1@E)!I$I$E)$!I$I$1 E) jjE)!I$I$1I$I$E)$!I$I$E)$!I$I$E)$!I$I$E)$!I$I$HE)UUUI$I$HE)I$I$PHIAPE)PTPE)TUUU$)(HȄ$IE)!I)(@B&E)!`$I$E)!I E)!%$C2$IE)!$IE)!H$ 1 )($)($I$E) I E) $)( d$E)!xW$I$E)!UUUM$m E)!UU IE)!- e)$! $A$e)E))$I$e)E)I$ 1"I@$e)%)I$I$9$e)$!@$@!@&$Ie)E)PXIe)E)pHe) XX$e) m$e)!Wnvn X( wwwqgE`---(L-2!f!T@@@I$IE)!UUU I$I2e)!UUI$m e)!UUI$le)!UUIe)!UIҶe)!UIB I1!UIB$I1!UI21!UI"I I1!UI$I$1E)I$I$1e)@!He)!<<I$I$f1e)He)E)H91E)jٰm۶m1E)$I$1E)MMڤ1E)*ݖ1E)@011P`IڵX%1e)mҶ۶ 1e)I$$ 1E) $@1e)I$1E)*@!1E)  L脦1E)K$1E)I$I115[1e) Vqy1 %" Nwf%q +-," -6"Cd ȱ~(˿'r-fE)TXX@HHf1$!/۶-2 f1$! Ć1!Iv01E) I $1E)@LȄ1E)`&$I1%)*aB2$ 1E)[ꪪm$k51E)UUVZI$1E)UU$IJ1%) I$I$11/ 11/I$I$)I) $@$11 L$@11 @`1E)N2'Ն1%)W\pI$e)$!**p{%y1UU4w%9 *?dKFC z$KB%yTTT99`%&u:c )fe1Zh@) 1E)  ڦ$1$!T Rm&1e)a11@$@11!1f1I$ )I)$11 LH11 `0*`1$!x`I$L&E)!UW^X1Ć1!- 1E) @D1E) I$11 **@ 1E) I1E) 21e)1d 1E) m۶m61E)!AdB&1E)/pɐ\15`$dB11  I$91  B$! I$H$919F1L$ 01f1( 1M9E)xj$1E)*(儦1E) **L$`$11<1E)H$11B011Bb vai1UN7fi+/-` wf++4,Mn ?3蹧?D4[`I$DZpUD4I$ے`DZUW@41[-DZ3)# H~/ if~&  %q~I'fb %!Y) I$BD! (B%) @,9E) 0J9$!/  (B%) 99` $I@91 I$I$B$! I!A) I$I$A) B# I9!` @9$!  I$99  91 I$u914`&1A` ݖJIX9 --k `11hN: i1E)W|I$I$e)E)UUUTI$I$1I$I$1`H E)!>* I9E) X l91 I$L&91 I$I$91 d 91 / L&A) I$I$B$! I$I$B$! I$I$B$! I$I$B$! L& 91I$I$91 I$91 91 I$I$B$! I$I$B$! I$I$BD! @ (91`4Wk{1E),?I$I$91 $I$91 I9e)@ Id9b> @@91 I$I$9F1 I$I$B$! 91* M591I$L21f1!I$91 鐤91+ v"$I91 v2 I9e)Wziڶm1E)PI$9E)tє1e) I$L211UUWx!I$11-UU `S$91U n91 Ib'M91I$I$g9* !I$91+ @ $91 $I$91* H$ BD! ۶m۰%91  I$H$BD! I$BD! $R9$!p Aɐ9E) %5 I$$91 I  :1 $I$91 @!91 A) P9` ə95 س'9a`X XIĦ1. $I91  $I91 c-:`9E) eY1UUU+Ip9 %1"M*4-@J& 41 DZ*?۶%[%ǹEPPPDlٖmE?4$I$蹧?4H$I$DZ|UUU41`DZ4-# 1" hz蠀+C E~Z EEAjIb;%q9UUP@ m۶91 [$k491 !@91 `$91 91 $ $ɐ91 I$I$B$! I$I$B$! I$I$B$! @&91 I$91 * I$@91 I$I9f1 91  t$91* mo91*  m691 ݐ91 $ A) #I 91 #͒$91~ -[(H1UUI$I$PH6i`P-yw1EX--++1wSdE-++6)1R(Uȱ/H$I$1TUUU !91H$I$)I) dB2!H091 $I$)I) $I!91H$H$)I) I 91 m91 11  I$aB91$C$ 11I I11*$C2$11I$I11 11I$I$g9*$H$119 @$I$11 퐶I91 9j"59`x!TI9 -$I$91WUU 91$I$91I$I$g9*II$)I) $Id$91I$91I$)I)I$)I)I$)I)I$)I)II$)I)($I1e)NĎ 1E)>PM۶)1E)+N$1AW$iJ9  $I$11@!11 #$I1!`dIH1 I$I$9!I$I$9 11I$@ 11I$I$9 I$I11//dB2$I11I$I11I!I11/ dB2$ 1f1I$A&11*I$ )I)$11$I!1f1 @91E)@$A211 *k@K1E)!I11 * H$I$g9*w9 ))N/W%y +/-7#r/DZ +-;-%2nȹo3II E1 )@%q@@)N톙fV $I91 R")9P@ I@9  aR91յ @291 H$91 0I$91 $I$91I$I$)I)I$I$g9*I$I$g9*I$I$)I)I$I$)I)I$I$)I) ,1E)`%A&1!* @:1E)|0O1E) -$I$1f1H$I$1f1$I$ 1E) I$I1e)I$@1e)r=I1!Xp 1!% I$I$)I)I$I$)I)I$I)I)I$ )I)I$I$)I) 1f1@$11$I$11I$I$9 R"I$1!P$C11? 11I$I$)I)I$I$g9*I$I$g9* 1@I71 %e1!d$1E)$I$1E)I$I$9I$I1E) I1E).1E)1e) $H$1e),9,f1a`I$I 1b55 H$I91$1E) M'I$1E)I$Ie)E)0I1E)Uթ!I$1E)$I21E)&I$1E)I@!I$I1E)I1E)I$I$'9#I$I$'9#I$I$'9#I$I$'9#I$I$'9#I$@$9I$I$9I$If1e)ꪪI1E)+(1$!p``  1!?/@$@ 1e)I$I$9II1e)I$H$1E)I$I$1E)I$I1E)I$1E)@$I$9I$I$9I$I$9$I$f1$$A01E)0L$1%)I$I$e)E)I$ e)%)  $f1E)~@$I$e)bTUVmٶE)$I$E)!I$Ie)!iC'f1$!z^`$I$E)!I$ E)!/ !I$AE)!  I$Ae)E)  $1E)@$I$1"I$I1E)m 5Pe1U5@$I$H1 I$IPH*ImXH Ob.Wi@W k EX+ #yrD %y+* +[wUf++:W 'm)fUWO(y{)‡UZ%ٶI†D%h]蹆4%];$DZ~*4)mDZU43%44I$I$%44I$I$%44I$I$&44I$I$&44I$I$&44I$I$&4@$H$DZ$!PTTUA$H$$!!( $!$! $!:L$H$!* II$e) e)I$H$$!!I$I$$!!I$I$$!!I$I $!!I$I$e)I$I$e)I$I$e)I$A$e) $!@@$I $!@$I$$!!I$I$$!!(*I$I$$!! I E)!՗I$I$1@$@E)!ZZzE)! e) E) I$I$E)$!ɄLE)*  E)!I$I$1I$I$1I$I$1I$I$1 E)!jE)!I$I$E)$!I$I$E)$!I$I$E)$!I$IHE)UUUI$I$H%)I$IPHI @PE)@PU)( H$1I$I$1A$I$E)!H2L$E)!I$IE)!/ E)!I$I$E)! E)!*I)( )($H$1 E)!//A$E)!$A$$E)!hV$L$E) pWUUI$IE)!UU/IE)!U$e)$!I&LB&e)!ۚIe)!!I e)E))$e)E)!me) ٶme) $I$e)E)I$  e)E)&e)!`m$e)!$I$E)!@$I$E)!I$IBE)!UU I$6e)!UU  $JPE!7qyEX/-(B!R.e1@@@B@!0e)E)@@`e)E)X @! @!I$I$f1e)۶m[%1E)^Z 961$!1$!)I$$9I$I$9H$1E)^^L@1!*I$I$9 1E)$1E)I$I$1E)I$I$9I$I$f1e)I$I$f1e) 1E) IHf1$!I$9vi$1E) m햶1e) I9 s>I$I$e)I$I$e)I$I$$!!I$I$$!!I$I$$!!//I$I$e)I$I$$!!I$I$$!!I$I$e)I$I$e)$! I$! I$I$$!!8I$I$$!!`II$!! I$I$1$@E)!I$I$1I$I$1I$! E) @E)$!I$I$1 E) @`@%)  I$I$1 E)!jjE)!E)!j E)!I$I$1۶a۶dE)*@$H$!UU H%)miP@)  $H$PE)@PTU  1$I$E)$!I$I$1$E)!@$I$E)!I E)!E)$! *I$I$E)$!$E)!XI$IE)!@$1H$I1$@$I&E)!P$$E)!]$I$E)!^UUI$IE)!UU-I$E)!)I$@E)!I$I$e)E)$C$Ie)E)j*I e)E)UB $@e)$! I$e)E)$I$e)E)*I$I$e)E)  2E)!L$E)!$I$E)!I$IE)!_UUIɶE)IE)!  I$IE)! $I$e)%)I$Ie)E)$$ Pe) Wyw%qP /-!!Ee1BBBB9 @!I$I$9$H$e)%)1E)$L1E)I$@$1E)1$!*$1f1jh1 If1 $e)$!@$He)E)TT1E)I$I$f1e)I$I$@! @!  1E)I$I$1E)I$I$1E)I$I$9I$I$91E) 1$!I$I$9I$I$f1e)I$I$1e)I$1E)vi$1e)*$$1E)  `1E)I$$1E)I$I$9I$1%)  ݖt1E)* vki1UU"pwyi 4S0.ǩ%ypb*+A HDn%*;c3$9`%I$I$$!UUUT鐤I$e)! @1$!+I$9$@$ 01E) j$1E) -1E)`HH1!%%$ C21E)H$ E)!I$I$E) ?`N1$1! U$H1$! I$11 /1f1I$@11I$11?H11M9 1E)VX`@B$ E)!PKEe)-rsE+-%3)&iȩUURKA)cfo蹧_c9I$H$ȱ1UTTT $11`$H,1!TԠI$I1!t ڒ-I1E)")(I1E)ِm`1E) I1f1@011P`!11 ؂m`1E)u:h1!^zI$I$E)!UWRv1! /$LBJ1E)I1E)5?11 H$11 $11$@$11*u";#զ1E)H$ e)E) ?{9%)%/ dB2 291I$I$)I) I91 LB&`B291 )I)R@1e) ҩN9E)⪪ɖdK&1E) *`[tB'1E) *h 11@%1e) P 41!Iٰ 1! H1UUN1w%0 ++`/E +/3(IN --4 .E@@4 DZE44I$I$%?4I$I$DZUU]D@%[mEPZZCIٶEU 1" hꨀ,3 E^FE9z I$jey9UU^` I$I$B$! I$BD!  &-9e)@  X9$! 7   (B%) I$IA) L0HA) I$I$B$! !I$BD! $ A) I$I$A) I$I$A) I$I$A)  99/ 5 91 I$I&91 iۼ%9E)  H9E) '1pX$iE)a  I$1@2E)!HE) SI$1E) U Mw9E) h91 / Ik 91I$I$91  $91/ L&A) I$I&B$! I$I$B$! Ȑ&9!x `T9A - `091 I$L&91 I$91 91/ I$I$BD! I$I$B$! I$I$BD! I$IBD! [m91 I$ 91  dB&91 0691 ħ9( d:91 r9. H$:1 91 91 I$X491I$I$9! dI$91+ )A91+ #91_ I$[9E)I$I$1E) I$9E)/ v"S9E)/ I$N"9E) $I$1E) H"%Mf1b\p DN9A  5*i9$!`71?BL $I1E) m&91 / $IS91/ I$I$BD! I$I$BD! I$I$BD! $I$BD! I$I$BD! I$BD! ! @91 I$H9f1  I 49` əħ9A / $91* IBD! I$I$A) I$@BD! I$I$BD! A) @$A)# I$9 %UU- 0 nA 3(Iow*+4/P VDZ*43DZ44I$I$&44I$I$%41`%4J"DZET4(`3)#Hz6cDZf^(C %y~ O:%9Zj IIq9UUUP @$@ A) $H$C&91 @$#9p IDI 1? m5`91 $)H91  $L291 0I$91 C$E91~ 0ж91+  9 I$I$BD! $I$B$! I$I$B$! I$I$B$! 91 I$I$B$! N 9b^!I$ H$!DJ@X8***vgs.%yH/++ )ywwA%y-/ ;&qqwȹ-1H$ǩET $I91 Mm۶91 Im`91 I$۶ 91 $IP1 I$I91 I$L91R# H1`IJ1A5I$)I)$I$)I)H$I$)I) @ $91 H!91I$H$)I) !!91  $91P@1!`I$Ȇ1A 9I9 5% $B$! $@ :1@$@ 9F1@11 I )I)  A$@91 I$I$B$!  B$!)|'1 d't.9!k J9 I$I$9F1I$I$9F1I$I$9F1I$I$9F1I$I$9F1  I:1 H$@ :1H$9F1I$I$)I)I$I$g9*  9F1 9F1 $I$91 I$d&91I$Ig9*II$)I) $9F1I$H$)I)I$I$g9*$I$)I)$R/=1 `pR1 /5 R1 1E)I$I$g9*dB&$C11 ima91 mӶ91 I$91 In91* im91 IH91* I 91䀦9)) psq 4z&Tr%y\X HDE J3I H+c?Oa W_6P19P@I$ )I)I9F1IH$)I)$H$)I)$ 9F1I )I)I$9F1I$9F1 I21f1I$1f1(1#1 @paW1! %5I$IH11*21!@I\:1b7(1 @@h:1$!  1$!I$I$9F1  I1f1 A$I1f1 $I$)I)I$)I) I$I211L1$I$1f1@$I$11I$I11*I11  11 `1!`9`1 I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*$11`WI$11UUH$I$9!m&m1E)ꪪkI1! 1E) $9  d$1E) 1e) Iıi1e)*I11 $11e)ɊĦ1e)@&mҶ1e)I$I$9 1e) I 1e)Ms$1  I!1E)@ @!I$1E)!A1E)I$I$'9#I$I$'9#I$I$'9# 1!@I$IH1շ $1E)$I$1E)I$I9I1E) 1E) I$I$9!I$I$'9# 4 1`I$I17$1e)**$I$1E)I$I$9I$ 1E) @$9H$I$1e)I$I$9I$I$9I$ 1E)*&1E)*I&I$1E)I$I1"I1E)$1E)Id$e)E)^W I&E)!$dB2E)`Zj IE)b5 ЭX$e)!h$I$e) IIE)!??!IE)! IȐ$Ae)E) $1E)$I$1E)#)$ 1z*ID E9? $I$H1=I$IPHI!IXH*Iv aP+ 6YEX+cI}Ip/I7Et&I~$ʇxWUR+$I$J§\UUU4 yvm1DZf*4,O DZW41%44I$I$%44I$I$%4%@@ DZP?3蹧44I$I$&44I$I$&41 %44I$I$%44I$I$%4 DZ!@4H$I$DZ!TTUUI$I$$!!%5I$I$e)I$I$e)I$I$$!!@$! I$I$$!!I $$! I$I$$!!@$! !/I$I$$!!I$I$e)I$I$$!!*I$I$e)I$I$$!!$! $! H$!<<I$I$$!!.I$Ie)1 @$1 1$E)!I$I$1IE)!HE)!־I$I$1I$I$1dB%)!jzU$@!A$! $H$$!!PP @$E)$!$@$H2$!E)!HE$@2 H$5LH UI$I$HE)H$I PE)@nkH%I$I$E)$!I$I$E)$!I$I$E)$! *I$I$E)!@$H$$! Ie)! e)  E) E)!* [ mE) PdB&E)!I$I$E)$! H$E)!(VV@$I$E)!X^WU $!ItPE)/ E)! 0E)!$IE)! /e)E)/ I$I$e)E) @$E)!@$E)!  e)$!`$e)!$I$e)!I$IE)!/I$!E)! IB@e)!*I$I$e)E) E)$!@$E)!$I$e)E) e)%)I$I$@!@@Pe) 1SiP/--- p1Sf$q/---0$Ce)E)@` !Ie)E)  @!HH@!A@@!I$I$@!@!Ke)!<I$I$9I$e)%)$I$E)!___$I$e)!UUI$e)!UUmI$e)!UUI$f1!U m$e)!U4f1!@$e)$! I$I$@!I$I$@!I$I$f1e) Mf1$! *I$I$1E)꪿I$ 1E)@$@$1e)I$I$1E)0e)$!1E)$f1E)Z $I1E)/ $1E)$1E)IB@1E) I$d1E)$I$1E)*wq1& )%y+--34N,DZf**7&Cȱ+Z1hE)P@@N":1$!Wz`I$I$$!!PI$1! -U `n1E)jݰm۶d1$!* $1E) *@Ȇ1PTIdf1AI$1E)Xf1!x I$M%e)!!Jq1! - I$11* I$11?11 H$11I$11 / 11@k[m1E)^ I$1E)/ pO9fe1 %1Vbf 1%@ R -AK$K2$DZ1TTTP1e) t1e) *@@11P  `1E)  11 %I$I$)I) "1E)(?1f1H11( @11@Cʒ 1E)NR'چ1!W^z I$E)!%%U`[1E) -5H9 I$I$11>11I$@$11I$I$9!B$@ 1E)$t'1E) I$1E)?W 6h9e) I I$)I) I$)I)9F1IH$)I)9F1L$`$11(P0B1e)ömɖL1$!X1E) *NIJ ڦ1E)>I$I$g9*$!"#11E)ٖm1E) Ppf1 %% Nwfi +//`sf +4-` !S43DZ44I$I$&44I$I$%44I$I$%43DZC/coPWC&c蹆_/3 f_~" ~:b f%i~ NB'%9UVx I$I$B$! 1 9E)`` ɛ~ 9. $(B%) H$(B%) 091 d@A) I$L&BD! I$I$B$! H!A) I$I$A) I$I$A) I$I$A) I$99 X091 >9E)zzWTI9E)- h"5*I1ap yJ9  (1E)~x@&H$%)ax\~ InE)a - e)E)жm61E)UUAN$1 WU 4I9%) I$@B91I$I$g9* `[N$91 &AO91 / I$`2BD! h5 9bx 9-  I$I$B$! 91 I&91 I$I$91 I$91 91*  I$I$B$! I$I$BD! I$I$BD! I$I BD! `91 ۺ-H9e)jI$M 1a׼ 2$-1$! I]9a fi$I91  B$! I$I$B$! 091訠 mn91 m (91j1%) tI$91/_ & 91ફ k`91_~I$d1E)I$I$1E)* PI9f1%UU }9E)/ I$}9E)$$I1E)@ $1e)* &a-9%)k"I$1a< g9e)I$I$11* I$91 91 I$I$BD! I$I$BD! $I$BD! I$I$BD! I$I$BD! H$I$BD! #H9!` It9b/ ۶ )91z@ bѧO$9A( $II9$! I$BD! :s$9aX^ `)9 I$H$BD! I$I$BD! $I$9%UUU)Ntf9%1 9I%y*4-@J& 41 DZ*44I$I$%?4I$I$蹧??4I$蹧?4I I$蹧=1>bm蹧O4-# 1" hz蠀+C E~ ~>b EfAj M>$q9UUP@ Hh$98  !I91    9$! `19e)``X` 9e)555  9f1 k91 I& 91 ۲%@1@p B9%% H$I$91 @!91 $C&91 91 91* I$H$B$! $)"$H9UI$IPHm&-U`8* )RT eH))* ,1N` f-/+ 1   9@O2I1(  6a91 &M$91 @J!91* (t$91~_K$rf1A\^ 9  ۖn91 I$IBD! $91 IB2 I91 IҶ091 IҦl91 IB291 I6`91 I$`91 !2$ 91몪I$I)I)@$@ )I)$C$I11 @@1%)I$I$g9* ! 91 &L&91@$@11 I$91 $B$! H2L$91$I$)I)1$!|&1A`pII1a % $I$)I)$I$)I)$I$)I)H$I$g9*I$I$g9*I$91 @!91  I2$C291I$I$g9*I$I$g9* 9F1H$I$g9*II)I)H$H$)I) I$I91 I$L291I$I)I) I$aB91 I$! 91 I$L91 #%R(1pp@əI9% N^X9( 49e) 0'9pX |1a % 91  C&91  91 [691 0D:9e) z Цm9E) Im'1E)z_c'1zNtE %-dȩ%y+9"r_Uȱ#)=1蹧=1~b?o蹧_?6(4:cȱ1H2&[11TPP@ $I)9E)* @ &Mm9e)$)I)I$)I)$I$)I)H$I$g9*I$I$g9* m6m91 Il91 $m$I9e)jm[1!*  $I$9F1I$I$9F1I$I$9F1P'P(1p\pqe1b)va7u$1*jZT$I1I$I)I) 1f1H$1f1$I$1f1*5*I1`I$I1UI$1f1 1f1 I$I$)I)I$I$)I)I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*$11@Wl۲%1@PmݖN1 I$IB11UUU? I$ IH91UUim11l۶511plh&1e)ÚI1e)I$I1e) vb&1e) $I I91@$11pU'N$1e) 1e)I1E)* I$I$9!$1E) H$1E)"I$I1!hI$r$ e)U(4I1!* 1E) I$I$9!I$I$'9#I$I$'9#I$I$'9#I$I$'9#$'9#$I$1E)1E)jX$I$E)TUT  1 @$1p\`11a %I$I$'9#I$I$'9#$'9#$I$9I$I$9I$ 1E)* $1e)@$I$1e)@$I$1e)I$I$9I$I1e)*  (1@xI$f1b,Uضmۖme)!I$I1E) $1E)$I21E)$I2E)!$H$E)!I$IE)!?I$&E)!/im۶E)I$IE)!+I$$IE)!Inݶ E)!I1E) H$1E),e)@۶mِ1)%0@$P1U H$I$H%9I$IPHI۶mXH+ wqP pI}hUս+ ɟe-h&'I$^UU3(ϟq '4(mDZ4,9DZ 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$&44I$I$%44I$I$%44I$I$%44I$I$%4/-DZǩ 4$DZET44I$I$%4$@$DZ@PPT@$!$! I$I$$!!@PbI$I$$!!yI$I$$!!c $!/I$!?I$I$$!!I$I$$!!I$I$$!!UI$I$$!!՗??@$$!I$I$$!!+@$$!P$! $!$H$$!PTU $! I$I$$!! I$I$$!!  I$$! (( $1I 1I$I$1H$Ie) $!!@ @$E)! IE)!I$I$1 1H$Ie) $!! @$1I H$!UU$HO H8@@ۖlɖP8I$PHI$ XHIH$$P$)@P@$I$PE)PTUUHE)!ިI$I$E)$!I$I$1I$I$E)!I$I$1I$I$1I$I$E)$!e) ꪪ e)!jjE)!I$I$E)$!*I$I$1 @$E)!I$I$$!!I$ IE)!Uխ !IE)!+I$16,E)mE)@$E)!A$e)E)YU e)E)  IE)!vk&e) /^^@$IE)!$I$CE)I E)!)(0E)!!e)!++I$I$e)E)$C e)$!(IBe)!!@ Ie)E)@%۶mE)!A$I$e)E) @  8E)!!H8---iH/---$ 0d$e)!m֦e)!m&e)! vm$e)!(_$E)!I$e)  A!IE)!(*@$I$E)!$I$E)!@2I$E)!I e)!mme)!If1!UI$f1!U_I$e)!UWI$me)!UUI$Ime)!UUWI$I$$!!5UU`$$Nbe) *UUnI$e)! UU$e)! UHe) < l4e)!`0e)!@$ 1E)Z_$dB1E)Z_ f1%)j601E)[l1E)^I$I 1E)I$I$1E)@1E)vm61E)*`1E)?k@41E)$A6eSfa%?R)%( *)4.uwǩE+/-? L$%yVV9&v^?_ȱɐm1$!1$!|I$tц1!UW^II$e) +kate)!</It1E)I$91e)  1$!`` I1!%//#I$@f1$!I$h5e)  I$1! UI1%)$A$11/ "1E)I1E) I$11IB 11UM&X 1E)$C2$e)E)@@PJ)Fe1 ),qf +9B2$C2!ǩ1PPP@I$@$9!L 1E)>vi41e)*X 1e) H$I$1e)P 1e) 1%)/I11 * I$I$)I) @ 11 ( I$I$g9*91%)xp@I$@ E)!UUZ`tIE)! %@ 1E)  9!$`6AǦ1E) /11ɖtmu1e) II$11**#5@24Òm11P`@ 11 % 11! 11 *@11/Wye9 ))(N/w%y +/1%P r +41ِ DZ **44I$I$&44I$I$&44I$I$&?۶m<$DZEP4DZE41[-DZ;)SmEȱ\C>;jMaȱe& 3 %y^ ~b%9VX I$M&%q9UUUT I$I$B$! I!A) I (B%) &M&9aX^x ɐ9A  (B%) ۦm 09 ` XI$9A.  I9e) I$I$A) I$I$A) I$I$A) $I$99 99@? N&`91I$I$)I) I$91 `9E)h IrH9U,X 1!  )(I$I$e)E)LE)!8`KN$1E)U @N$9E) H 91 I$m91II11***  IR&1p $@9 $I&9x 9! I$I$B$! I$I$BD! @91 I$`91  $I$91  $91 $91  I$I$B$! I$I$B$! I$I$BD! I$IBD! m%l91 dH$ 91 dI91 91 I$I$B$! I$I$BD!  91 yr$9E) @&9e)p\b 1tP9E)- ȧ9a`ϔdI1A5%L$91 M&$91W_MҶm11W? $mX$1T1e)* _?91UU ̙9E) I$#9f1UU\ $I1e)*O:m1( Id'91*U j n91 m6@ 91I$I&9f1 )4I$91/  [&9$!^ 9E) I$I$BD! I$I$BD! I$I$BD! I$I$BD! IIBD!  A) N98 L$ 91 91 `I9X  I9 @$91* @ BD! $I" 9E)@ pIҤ1(](pJ99 %/  +;)-vȹ?16|۹蹧U44I$I$%44I$I$%44I$I$%44I$I$%43DZ4/j# @DZꪨ3&3iꨀ-3 hf_~"  qI& EUX @9!  @ A) 91  $I9f1 $A) $I$BD! I$BD! H$I$BD! A) k91 I$9e) M&X91 I6]l91I$I)I) [m91 @"$K$H9I PH** ywwqP// yS`q-/+1 )nT++ 1 %9@@pP h`n919F1L 1f1$I$g9*I$H$11 Iai$91H$I$1f1 t$91/ 5h$91 tId91/ 091 $I$91 ؖnI91 / ۰ۺ591 $91 IS91+ I$I$BD! $@@&91 Ф91 $ $91 91 Im`91 !I$A91 [m91 I؆m91  91 91 #$!91@^L$1a W ۶mA9$! I$91 i۶91 I$91 I$91 I$91 I$91 I$ 91 I$$91 !A91* H91 I91 Im691 I91 d91  91( 291 91  91  91 d$91 !$91  91 &L$91 )0 $I9! * @9%)$IԔ1 #ʶ1pm[1b  m;9E) _UTI$1E)UUڶۆ1E)_u$I$e)E)UUUC2!e)E)`{I$I1@ @$e)E)^s_W۲aE)` [fa5=NnE$A *+4bǩE C vIdȹ%y*?3?蹧?C/#/鹧jZZ9 4hȱ~1${%_W\p)1b - I$I91 I$I91 I$91 IB91 !$I91 01.I|1a /%I$I$9F1I$I$9F1I$I$9F1I$I$9F1I$I$9F19F1$9F1R)$I1P@ I$I1 9h=1x`IK1 - (I1E).?II1f1  A$@1e)@$@$)I)I$I$)I)I$I$)I)I$I$)I)I$I$)I)I$I$)I)I$I$)I)211hd$11^U$$I21e)۶mۖ 1E) H$dž1bTPh 01b  0m&91 m]'91_UM$1e)`$dB1e)ii11e)*I 1e)611x $̵c'91zWU m;ۦ1e)  1e)H1e)*I$I$9!$1E)$I$1E)I$I$@!I$I1E)+I1E) 1E)I$I$9!I$I$'9#I$I$'9#I$I$'9#I$I$'9#$'9#$I$9I$I9I1E) 1E)j1I$I$'9#P,f1p1  1e)$I$1E)*I$I$9I$ 9 1e)*I$I$'9#1e)I$@ 1e)I$I1e) I 1E)  $1E)$I1E)~I̘ f1b(I1E) @$1E)_`E)!@@H$I$E)8U I!$!I$ @E)!!0`$E)! I$IE)!IE)!  e)E)/!I1E)!I$C&1E)$I$1E)@&M$E)^X[-AZk &IH I$I$!`AI$IPH+ ߷kiH+JIeJXU=P y}jxW؟jfPUU1!w + 4)o04/ DZ 44I$I$%44I$I$%44I$I$&44I$I$&44I$I$&44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4H$( DZETT4 DZ!@@I!5I$I$d!d I$I$e)I$I$d!d H!<<I$I$$!!*/@$$!A$!I$I$e)I$I$$!!zXTVI$I$E)a !I$I$$!!I$I$d!d I$I$$!!I$I$$!!  !I$!ׯ$!  $!I A$e)@ $!I$I$! I$I$1@$Ie) $!!@@ $E)!jI$$!! II$e)$%)$!@&$I$!I$@$!!PPI$@$$!!$I$@ 8$!UUU۶m H! I$IPH+ImXH I. iPU I%7qP ݖ$q$)*@PH$I$`E)TUUUI$I$E)$!I$I$1 e) ꪪ E)!1 E)!$E)!E)! E)!I$I$1I$I$E)$!** E)!j$I$E)!Z_UI$IE)!UUեI$@E)!+  $)($I1I)(E)ٶmmE)@$ )($A0E)!0L$E)!$IE)$!H$@E)!!@E)!+$I)(I$E)!I E)! I$I$e)E) @$ e)E)ZZx@e)E)H)(I$I$e)E)+ e)$!ɖtE)/ I$e)$!۶mHE)m` X8*+`S%yP +I$IE)!M&m e)!Ie)!M6e)!^ine)! m@ e)!!Ie)E)IB e)$!Mme)!Ime)!I1E)I$I$f1e)I$I$f1e)I$I$@!I$I$9I$I$f1e)I$I$9I$I$9ke) Ie)!UI$ e)!UWI$Ie)!߀$I$E)!_He)Ide)!=5I@! ILe)E)$I$1E)I$1E)1e)@'9#I$@1E)I$I$9I$1E)I$1E)$I!1E)+ 'if1URqfi /, K TN%yV +/+L&ꪫI 1E)I$1e) @1E)訪N": @1!WzI$I$E)! Ć1!/ 1%) $H$1E)*LH1E)@$I9 $I$1e)@1E)I$@ f1!UVxXI$1! 5U$R21$!PZiR)ɑ1$!  61!IK1$! A$I$111%)I$H01E) O$%ye)UUU RqFE1*)72I@7I$K2$1UUTP@ 1E)II$1E)!A2$01e) HI9 &dB1%) XZvb'1%)@ 11I11 /.1f1$11 I$I$g9*P1!xI$H$E)!WV\`W؆1!/1E)h$1E)XP@1E) @011Pp0X%1E) I$11 *j5 1!hhE)!1%) $I%1E)PVmI1E)ah1U &ui++-4rAǩf * 3+@ S )43DZ44I$I$%44I$I$&DC5۴mDZEP`?ɖmضmDZE44I$I$&41lDZ4,ki7 £DZfz4h ǩ% Sc E9z I$`"%y9UW^ B$!  $A) @@9` l9e) I$A) i$I91@ IX9b. I$I$B$!  9e) I91 I$I$A) I$I$A) I$I$A) I$99 $91 I$s991I$I$91 !91 $((9E)k 41$I$ e)E)I$I$)(I$`Be)E)UVPɐI$1E)5UU $arħ9E)* Pm91 M91 M&c9^x Is'Y9-)L&1\x  W9 / I$I$B$! I$I$B$! I$I$B$! I$I$B$! H091 I$I$91 $I$)I) $@!91/ I$I$BD!  91 $91 91 91  91 $I2d091 I$91 91/ I$I$BD! ry9E) @91 I$91 * 91 A9 I$X91I$I&9f1 )I$9f1I$He)aWT XIT9 v: I91UWzI$I%1E) I$9E) #@9f1X- ??91UW` I$I&9E)1$1e) * 0 v91*U "d91 M91 M&b9$!W^)$H1$!  {9, 91 91 I$I$BD! II$BD! @$I$BD! I$I$BD! H$I$BD! II$BD! d091 I$H9e) I$I:1 I$I$B$! HI$BD! J$I$ 9E) 9(#S9 %U- 0 oI 3(Io*4 Ey43DZ44I$I$%44I$I$%44I$I$%44I$I$%41[-DZ3)#Hz/H^(C %y~_? %9Zj &m۱ q9UUUP  91 91* I$I$BD! IA) I$A) I$H$BD! A$I$BD! $I$BD! A) I$I$A) $A) II$BD! bH 91 IH1! PH / w9%yP/-/ (/E//R$@f-@'H$1P\TT 6e 91k&11XX$ 91꯭@$11 I$dB11I$I$11 ,1!` N1/$1E)$I$1E)$I$1E)`m'1E)vv$1E)* F$9e)UU$I$1E)0 %ا9E)**U $@m$9E)UIk$9e)Uذmݖ$1E) I91/U $I91 ؚ$91_mۖ$91Umۖ11 nm91 $91 I$I$B$! $B$I91 O9Aָ 4H@91 I$I$BD! I$I$BD! I91* I$I$BD! II$BD! I $BD! I $BD! $91 $91 `691 D$i'91Umۖ$11Umۖ$91U  $9E) U9E)0UI$k;9E)Uۦ1E) m9E) U 0'9E)WUĶI$1E)UUжĦ1E)UUD۶c;1E)_U$I$1E)UUUL1$CE)@ $I!b I$I$!a.& )(I$I$1$E)$!I$@ )(I$1Ie)E)I$I$E)! $!I1E)}I$M1E)UUUI$1) 1E)}u+&9E)UU .Ֆq1 5" Nwf$q +-/ I0 TN%y *4-@ &S ?3@?蹧3+"#ѐHh-h1P@  ۶m91 B$! I$I$B$! $91   B$!I$I$9F11E)@ UJ$I1 =I$I$9F1I$I$9F1$9F1$)I) I$)I)H$I$g9*H$I$11(I$A11"I$$)I)$I1$!`)01! 1E)I$I$)I)I$I$)I)11 I$I$)I)I$I$)I)I$I$)I)$11H$11$I$11@$@$9!I$I11UU% >1h`K1 --O$x1bVV II1$!k&1hZMI$1*iK1E) !A11-غ$1e)5m$1e)I1e)@ 1e)1e)I$I$'9#@$1E)@$I$1E)I$I$@!I$I1E) I1E)*I$I$9!I$I$9!I$I$'9#I$I$'9#I$I$'9#I$I$9!$1e)$I$1e)I$I1E)*I1E)1E) I$I$9!I$I$'9#I$I$'9#I$I$'9# 1e) H$9 I$I21E)$I!1E)I1e) I$I$'9# 1e)$I$1e)II1e)*I$I$9!I&1E) I&I$1E)I$I1"I1E)$1E) $$e)E)W $I&E)!$I$E)!IB$AE)ߪ*I@$E)!?`$I$E)!I IE)!!I$E)!+ !I$A1E)UI$ 1E) @$1E)H$I1"I!A1E)/ k L Ie!WE$I$He1 I$IPHIfqHUU?/I/XU 49յ)p-) k?.Oqk- 7lpi%3#9YN$ 4-!EJ DZ43DZ44I$I$%44I$I$&44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4@䧱Ey4DZf 44I$I$%44I$I$%4!@DZP4@$M$!PPVUI$I$d!d I$I$e)I$I$d!d I$I$e)I$I$e)I$I$e)I$I$$!!z^I$I$E)I$I$$!!OkZI$I$E)aI$I$d!d I$I$e)I$I$d!d @H!((I$I$d!d I$I$d!d  !H$I$!j ! *)I$I$$!!II$e)@$Ie)1$H$e) 1 1II$e)H$I e)H$I$e)I$H$e)II$e) @$1I e)H$!ɐl۶ X8Ivm`H/ɝ6e %yP+}. fi --R$E%)BPTI$I$E)$!I$I$1I$I$1$E)!$I$E)!E)!ꪪH$ E)!E)$!ꪪIE)!E)!I$I$E)$!E)!$H$E)!Z^^H$I$E)!~]]I$ E)!+E)!+ I$I$1I$ 1$IE)! $)(HȄ$IE)!$I$$E)! 0I$E)!H$ E)$!I$@E)! !HE)! @$I1I1I$I$)(I$I$1 e)E)*$@e)E)^_I$)(I$)( I$E)!$I$E)!I$I$E)$!IH$IE)! I$IE)! I$e)$!iivXH-+//1q7E`----I$1" @!I$I$@! 0e)E)@$e)E) @1E)Zꪪ @!I$I1E)$Id$1E)ZZI$I 1e)I$I$9I$I$9I$I$9I$I$9 1E) e)%)1E) 1E)zj !1E)_Uu1E) e)E)55 I$I$9e)!I5e)!WI$Xe)!$I$E)! I$e) /e)! @! $I$1E)I$1E) '9#@H$9I$I9I$I$1e)X$ f1$!ZXِnm۶1E) 'ye1))%`N/w'i +_/ 0 I%q 1E)*1E)I$@$1e) $1e)ɀH1!xI$K5E)!_|`XI$1!-U 1$!)I$@ 9 1E) *1e)$ɄH1E)H$A9I&@f1!W^p I$1!-UU1$! ۲mlf1! 1 I$I11? 11?$C 11jMҤH1E)_'%ye)UU۝N%1 6RR$ْEI@I$I$f1UUUT 1E) I$1e)1e)I$I$9 I$1$!1e)I$I$11 11 +@$110۶%1E)K$a1E)u2;ن1!^~ $I$$!!/\! X1!//9 $A$I&11?Z11 L`211WXx%1%)261E)Ir'1$!^\-іmچ1$! -hC1E) 1e)!I$1f1  C!1f1 I1f1 *(11ɰ ۠m1E)J"&P11E)mm۶1E)/ $Rb1E) 11 5@`1E) 1E)I11Wq1 %6 wqy+?!nywf=H/A)§UWj?4I$I$蹧44I$I$%44I$I$%44I$I$&44I$I$&44I$I$&43@DZ4-#HDZ1) (: H蠀-͚iE~) S i˼ye1UT I$I$I9UUUT !I$BD! (B%) @ (B%) $I$A) @$H$A) ۲۰9e) ~ 9E)WWܠ `91 BD! I$ A) I$I$A) I$I$A) !I$99+? 99`/ N2'X h91I$I$91 #(I9$!`bI 9A ñm9e){ꪠv$1E)UW|!Le)E)-W`$@f1E)Vj$I2d1E)UUWZ-WI$1E) %U @n&9E)* ,A&[91 I$91#@1!yܰM9!-+*  S91 I$@ BD! I$I$B$! I$I$B$! I$I$B$! I$I$B$! m 9%)I$I$)I) 6[91{xew1E) /?*  C&91  !91/+ `,91j r鸧9e) 91 I&91I$I$)I) I91+ $I91 I$I$BD! I$:1 I$I$9F1 I$91 @"91 @Ї9$!( I&@ 91O${f1aVV Nm9! 0$91 [mn91 I: @9E)Im1e) I$9E) ZAy9E)/ ɣ>A9E) I$N9e)퐶m61e)  91*U t91 (,9$!h@INVf1aו6*ml1E) vI$91 i91* 91+ I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$BD! @$I$BD! I$BD! I$ $BD! I$I$B$! ")$I91JJ O$M v9A޾( !tB4I9$!  II$95UU, Ix9 %1IM%y 4-@J&DZ 43DZ 44I$I$%44I$I$%44I$I$&44I$I$&41`DZ4-# 1"h蠀+C E~ b EeAj'$q9UUP@ I$I$9F1 I$91 I$9f1  $9f1  91 BD!  A) IIBD! I$I$A) H$H$BD! I$A BD! ./%H9 PHիUU6i.XH/okEH -  ȏf%q1m%fyBmY) Im91 3$91^ qۭH91 Nb' I91 ɚ:l91L$L91_ S3ɒ$@9$!zI5I1b/ v 91UIB 9E)I&ۺ 1e)vb'k @1E)I$k `1E)I$L1E)~L$Le)E)WWWI$I 1mkפE)($I$E)!$I$1$I$1$I$E)!$I$1$$I$e)E)UUU$I$e)E)UUU@&I$1E)UUUI$1E) UUU`I$1E)UUU`I$1E)UUUкN$1жۆ1!`I$1!`I$1!`I$1!`I$1!Pvbۆ1!`۱mۆ1!$I$1E)UUU$I$1E)UUU$I$1E)UUU $I$e)E)UUU$I$e)E)UUU@$I$E)$!I$I$E)$!$I$1I$I$1I$I$1$I2$C0E)!$ IE)*$I$E)!I$I$1I)($@$)(I$I$E)$! )( e)!蘒Kme) ii 1E)*Nb'$ 1E)UWt$L'E)bnd1  Ib 9E)U* ݒm9E) N4 91U+ -91  91/ L291 !A91+ IA1?>aw9*))PN䦩i *W1# r 4/P 41,mDZ3& ࠀ)J%P)9TPP@ ۶m؆-91 9b ح'O'9\W\ dA)TI9 I$I$9F1$9F1@$)I) I$)I)$I$g9*I$I$g9*I$Ig9*I$I)I)I)I)#'N'1bXVXAI1b I$I$)I)I$I$)I)I$I$)I)I$I$)I)I$I$)I)1@̐dID1U$11 I$11@$I$11I$I$9 I$I91UUU I`91U҂%H%1b@PTPI1b"r$1%)۰ 1E) *I$I'9#I1e) L2'1\xI f1* hFn1$!X6m۶1e)*I$I1e) I$I1e)1e)$1E)$I$1E)H$I$1E)I$I1E)I$ 1E) I1E)+I$I$9!I$I$9!I$I$'9#I$I$'9#I$I$'9# 1e)@$1e)@$I$1E)I$I1E)*I1E)*!II1E)I$I$9!I$I$'9#I$I$'9#I$I$'9# 1$!@If1bH$I$1e)I$I1E) $C1E)ꀠI1E) I$I$'9#I$I$'9#@ 1e)*I1E)*&1E)&I$1E)I$I1"I1E)!@$I&1E)غk۴1E) 0E)!$H$E)!I$Ie)I!$E)!/$I$E)!I$IE)!/ $@E)! I!Ie)E) I!A1E) H$1E)I$I$1E)$C$I1E)+ Hf1UUU$1H$H1UH$I$IHTUUUI$ɟiHUU-IxyPU5"0Οy` p Οw fi+){4E/ 1ir4 4,yn4 + 41ɶDZ 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4@DZE4!DZ44I$I$%?[%XmǹEXXP4DZE4K$H$!TTTTI$I$d!d  !@@!I$I$e)I$I$d!d I$I$e)I$I$E)$! I$I$$!!\TUU !* ! I$I$d!d I$I$e)I$I$d!d I$I$e)I$I$E)@$H$!I$I!j !I$I$$!!I$I$e)II$e)$H$e)$A$I&$! $!@$I$e)I$I e)$HdB&$!I$I$e)II$$!!I$A$$!!! A H$!UI$I$!`AI!AXH+ {7e%yP+ ysPfi/ " $H$f%)PTUI$I$1I$I$1I$I$1I$I$1H$@%)$!IE)!תI$I$1E)$!ꪪE)!I$I$1I$I$1I$I$1$ Ʉ$!<I$I$$!! IE)!+ I$I$1I$I$1I1E)!H$I$E)$!I$ 1 `$E)!I$I$$!!I$ AE)!/ AE)!@$I$1I1&LBE):B0$ÄE)!j-۲mE)jh!AE))$LHE)!> I2E)!I$E)!I$I$1I$IE)! IE)!*I e)$!e)$!I$I$e)E)$I!e)!!!Pe)7q1s%`--5I@!I$I$9I$I$9e)E)@1E)I$I$9I$I$f1e)I$I$f1e)I$I$9I$I$1E)@$$e)!@$e)! $A$e)E)5$I$e)E)@ 1E)I$e)%)I$1E)1E) 90 1$!Bjf1$!$@1E)1E)I1E)I$I$1E)H 1!*M1$!WꪠI$k`e)!ni۶e)! HI$e)E) O(9E)UIBڐI1E)UNR# 1E)U I&9E)UU II$I$$!!@@ $!$!I$I$e)I$I$e) $!$$!II$e)H$I$e)I$IH$!UUH$!I$IPH ɝyiP-wiw.W"E1** B"%H$f$!@PTUI$I$1I$I$1I$I$1$E) $I$E)!H E)!$E)!%)$!IE)! E)! E)$!$@$E)!Z@$I$E)!I„$I%)׾  E)! E)!I$I$E)$! I$I$1I$I$E)!HE)$! $A$C&E)!  $I$E)!~I$IE)!/ I$HE)!/ $I$E)!*I$I$E)$!*E)! <@&E)!$I$E)!L„$@E)!  $E)! LȄE)!"E)I %)%%!$@E)!$I E)!% E)!I$I$e)E) $I$e)$!(I@$e)E)Ie)%) * e)!n.Pe) %yH+++-'EE)UUUT@$e)! E)! I$I$e)E) $E)!@&E)!$E)!۰ ۖ$e)!$e) $e) I$IE)!UUU*I$IE)!UUUI$I$$!!ՠI$I$$!!__^$$I$E)!*UUUI$E)!UU@I$e)!U$A!$E)!**+E)! $I$1E)I$1E) H$1E)$H!1E)I1E)I$I$1E)ꪪI$I 1E)I$I$f1e) 1E)ꪥ 1E)_I$@e)E) e)%) I$I$f1e)I$I$f1e)ꫫ$AdB&1E)ZI!1E)$C I1E)z 1E)몪If1E)վ  tpe1%%%R.E$)BJjj)vm۶1$!-1E) I$91E) @1E)uK1E)@1E)ꪪN"'1!W^hI$I$E)!5UV@X1!-P%(1!XP)f1!  1e)* I$H$1E)H$ $9M&@f1!VX`IdI$f1!%U If1$! @ 1e)*II$9!@ 1e)1%) Ȁ(1!p`V`e)!pI$%E) %U! I6%y`%"Mff1PP@1e) I$ 1E)@$I1e)I$$9I$I$f1e) 1E)/ۆm,1E) ِm1E)11 I$11.H1$!((h5X$1$!I$H$E)!WVX`1!/1e)H$ 1e)1E) @ $@ `1E)XDJ1E) @1E)NB'r:1$!W^^x DI$f1$!/4I1$! 11k&1e) $11۰1e)(X51E) Iv1e) **p%(1E)$A!1E)> a1E) 11 $11 I11 />11 qWwp1 )%" 7sf%q --/ 7S +-4)p@@ ?,Im۶ǹ%D4[mɐ$DZD4I$$DZUUU?4I$I$蹧44I$I$%44I$I$%44I$I$&44I$I$&41lDZ4,ki1!mzꠀ)]3 hf_:@ IfY~jm%9UWz I$I$B$!  $BD!  (B%) I$(B%) I$I$A) (B%) `0A) I$I$B$! $I$B$! H!$A) I$I$A) I$I$A) I$I$A) !I$99 `99` / IR'P h91I$I$91 )I$91 dR91+ 3h9E)zꨀMېH1E)U^p$I$e)E)?WUV I$e)E) =I$H$e)E)Жm1! PI9E)* H 91 I,)I91d$I&9f1 rm69E) j }$9(U &m9E) I$I$B$! H91 I$I$B$! I$I$BD! `9E)` I@9!-  $I$)I) @ 91 91 I$I$BD! I$I$BD! O$`p1A^\ 1p9  d9f1 I$91 I$I$9F1 I$:1  $:1 H91 L91>* I$I$B$! I$I$B$! $91 91ꀀ M%91zm۶k 491WWWz $I$11 dS$91/ ۊm91+ #91W ]9E)j[$I$f1a0WV P>9kj Id1a55?ZBE) Iɏ9E)`ۧ91UUU ` $91(U d91* t" 91 I I91L$I&91!I1f1** B$I91` gO$Dn9e)5 91 I$I$BD! I$I$B$! I$I$B$! I$I$B$! I$I$BD! $I9f16 L'1 J9b  I$kl91%XI$95U- pq 3(I 4/PVDZ 43DZ41 %41`%4-DZ4,KDZ3$J$E|TTTM#s†_}?I?fUUC bè%U O6%9Zj I$I$q9UUUP @$H91 $I$BD! @$91 IB&$91 ]-91  91  I91  i"-H1UUI$I$!`A6e`H/qyw7E`--)1N` E-+3 ɕ\!%y3P&J$9PXTT  $A91 * L$ C91 I$!I91 I$I:1 I$I 91 I$I9F1 @$I$91 $I$9F1 $I$91 $I$91* @!$91 ֶ91 + m91* ؆m[691 $A) =.i9%)xx yP@I9$!--  !2$IA) $C$91 vҶ@91 v I91 !I 91 $I(49!` #99E) I$m 91 Im91* ֶۊm91 I$I$BD! H91 $91ꀀ I09!`&Bd1b5Im91UIm11U#I1e)-I1e)-I1e)I211U IBI$ 91U -91  I۶m91 I ۶m91 I91 M&[ 91 I$m 91 I$m 91 i݆m91++ L$`9a\^   9  IҶ`91 In۶a91* I $BD! $@91 $I 291* j @091 91 Ht9$! L$91 $I۸191z ho9E) $I$91 $I$91I$I$)I)I$I)I)I$I$)I)$1111 )I9e)jJ *I$M W1A׾ A6I9e)!wd%q1 5" Rq$q+/I&{ +4+ ٔΧI4-@ DZ 4,ۣ m/Z-h1P@ i۶m91 I$I91 I$@91 I I&91 $A91  B$! j5*I9X`!P 1 I$I$9F1@$H$)I)I$A$)I)I$ $)I)II)I)$9F1$11@@$I1!0I$I1!I$I$9!I$I11 I$i91UU Ivl91UO$`*Q1_\ `I9$! $$1e)@&I$1e)H$I1E) I$!1E) I1E)01E) $1E)I&I$1E)H$I1e) 1e)I$I$'9# 1E)@$1E)*@-;M$1^^`1e) I$I$1E)I$ 1E) 1e) I$I$9!I$I$'9#I$I$'9#1$!@Nd˄ 1 Օ1e)*** $I$91E)x H$1e)H$I$1e)t:)1bZTIH1  9 $H$9!91h1!I$I$9! 1E) H$1E)H$I$9I$I1E)*I1e)  1e)I$1e)I$I$'9#I$I$'9#I$I9!$1e)$I21E)@$I$1"I$ I1E) I1E)@$1E)X&k6E)!$I$E)!  $I$E)!IIe)@$E)!@$IE)!I!AE)!+!@d$E)! "^$I!f1E) I$H1E)$I$1E)I$I$@!I$I1E) $I$ H1UU5b(h۶Hf1 }aHUUՍIBmaH-l?I܇iXUnY %qP . fa+)r %y /qn4 + 3)qYJ$ 41ɖ DZ* 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4 DZf-44I$I$%4-(DZ4,DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4H$H$DZ!TTTTI$I$e)I$I$e)I$I$e)I$I$e)I$I$e)I$I$E)a$$!  !@$!I$I$d!d H$!<I$I$e)I$I$d!d I$I$d!d I$!H$I$!^WUI$I$!bI$I$$!!%I$I$$!!I$I$e)I$I$e)I$I$$!!I$I$$!!@I$I$$!! I$I$$!!*I$I$e)I$I$e)$!I$!I$I$$!!I$IH$!UUU X(I$.YHU }#yaH*/i)%y1 B B$I$f$!PTUU E)$!@$E)!E)$!H$@$E)!`B&$I%) XZ!dB$!**$E)!H$IE)$! @ E)!zj@$$%)I$I$1$E)!@$I$E)!I E)!e)!I$I$1 E)$! I$I$1I$I$E)!I$I$E)$!*  H$E)!I$I$e)IE)! I$I$E)!I$I$E)$! I$I$E)!I$1HE)!@E)! 0E)``  E)/5E)!I$IE)!*  IE)! IH$1 I$1IE)**e)E)-I$I$e)E) *He)%)e)E)lɶmE)  2E)!X5P$! ɐ 1Rq@%%-+'J$%y!TTTTIE)$I$E)!_UuI$I$$!!_I$I$$!!I$IE)!UUUI$Ie)!UUUI$IE)!UUU*I$IE)!UUUI$I E)!UUUI$Ie)E)I$Ie)$!I$I$e)E)I$I$e)E)  E)!IB$E)!W IB&E)!UI$ E)!UUI$IE)!UUU!$I$E)!+UU^I$E)! $E)!I$I$e)E) I$1E)$1E) $1E) $1e)I$H9I$I$1E) 1E)HȄ f1E)׷I$I$f1e)e)E)@ e)E)e)%) `1$!%B0f1%)bjf1E)۰ukPe) %*77pE1BJJjI$@1E)U^I$I$1@!1E)UI$I$9 1E) @1E)ۆ%@`1E)ZX 1E)5 `1zh!$ %)-V`tf1!-kf1! .>I$1E) *HȄ 1E)* I$H$1E)I$I$9M$me)!V^j)I$f1! 5U6ۖ&1E)] I$1E) *1E)l`1E)@1E) @1e)L$$ 1E) IEE)!%[ܘ%-"L2&-ff1TP@@1e)I$I$1e)@ $9$I$21E)$a؆1E)/6lm1E)I$I$9! 11/H@$1E)PPA 11?HI@1E)Tv"; ن1!_~ I$E)!) 1E)I$I$'9# H$1e)**I$I$9! H$1E) 01E)CLB1$!pŠI$I$e)!Wə܆1$! -51%)*+I1!@)1e) Km`1e)(`B$I211XzX ۚl1e) ]6mb1E)$@$e)E)()I$1E)MI1E)((  $11$A 11>11IdB&a1U7wX +/-7뻯ǩ-;)豧410mDZ D3DZUU?N$M DZEVVVO&b2&)EXZ?۶mDZE44I$I$%44I$I$%44I$I$%44I$I$&43@DZ4/m# @DZ1&#@-3 hf~ꠀ" 㳱%qZꨀ Nr?=EAW~ I$N%a9UUW\ I$BD! 6-9E)@ O9. $IA) H$I$A)  (B%) I$BD! I$I$B$! !I$BD! H$(B%) I$I$A) I$I$A) I$I$A) I$99 #$91 I$t91I$I$91 aɖ91 / --91tђI1E)^۴ چ1E)UU^x,9#1E)`` IE)a -%/I$I$1E)UW^&PI$1E)/U M9E) (aA9! m*@9e)jOҧcI1׾ PNmٶ9E) 7}'9 ^ 4I 9$! I$I$B$! I$I$B$! I$I$B$! I$I$BD! `91 I$d91 $I$91 @!91 91 I$I$B$! I$I$B$! I$I$B$! I BD! ` 91 I$@91I$I$9F1  Đ91 91 + I$I$B$!  @$:1I$I$9F1  $I$:1 B$! @91*** M91 I$k91_~I$I$11/ tI$91*UU LH&91肫 t 9A C h9E) i1% ɟ9E) V B1+U}dB1WzI$B1UU^iۉ &1e)* I$91UU @6$91+U m91 K91 I$d91$@$11i79E)  I$91* $ X29f1k $ }9!. $I 91 (9e)``IDe)!(( dI$I91 I$I$BD!  BD! H H$BD!  $9%UU, I픘9 51  営 4+5i42)E@@@ɟN%+-I$1맱UU-x-I`$n㧱UU- I$n맱UU+'I$ǩUUUC)蹆1 c h_+ lE_~ ~b EeAj I$M>$q9UUP@ I$I BD! @ 91 !Ad$91 * H29f1 IBD! H$H$BD! "%B"%H9IIPH++ w1iP-/ ySfi/+/N f++3%4((@%H$I$Ǒ9TUUU $A$C&91  91**  A$BD! H$H91*  I$BD! 91 ** $C@91 I I91 IB2H91 I$d&91 I$H91 I$ 91 I$I91* H$H$91   :1  I91* H59e)x  A91* I$91 @$291 I&I$91 @$91 `'h"9Ax 1J9A - $A) mk691  19E)  9E) !I$$A) I!$BD! P̀(I9` I|0n9A' h $99*W m $99U m 699 m $99 U m ۖ499u m `m$99U k$91  lm91 I$A) $ C&91 ۰mm$91 $91 $I291 mk691 mit91  &91 @ 91* $iڨ-91j M$9A( $ii9e)  91#&J&9ax\xJ 1A ,(`1E)@% 1 7 mvl91P91! yxy 9$!-/ $iP&1X 4  9E)* $ 91  I$91  2C91dB2$I11 Iݶa91 I!I91 d2H91ꪪ$91 $a$fQ1UUURo9 -(`7wE -1%TJr +4/) 4,Jj@DZT<3%9R էxPpp& J"%R(9TPP@  ɐ91  I$9F1hЂ%1b@P  1b 9F1I$I)I)I9F1I$I$9F1 9F1 $11$AL$11$$I$11H$I$11h81p d1+% I$-91U I 91 L$91 :r$9bXV@I!1b I1E)@$1e)I$i3 1E)II$1E)* *%1e) ضmk$1e)$I$1E)I$I$1E)I$I 1E) Iv1e)*I$H9!I$ 9!$I C&1e)H$I$1E)He)J"ْ 1^$ 1 1E) I$I9!I9  9 I$H9!I$H$9!$I$A21E)$I@$1E)$I$1e) #&J&1hZVXݖJ@1 1E)*01`PI$f1b@$I$9!I$I$9!r$X,f1XTX) I1b  I$1E)H$I$1E)I$I1E)I1e) I$I$'9#I$I$'9#1e)I$1e)I$I$'9#$1e)$H$1E)I$I$1E)I$I$1e) I$I1E)$$1E)@$I$1E)_UB2E)!$I$E)!I$IE)!/I$&E)!@$I$%)!I$IE)! !I@E)!+ I$I1E)NBǒ@1!W޺a۶m1$! I$I$1e)I$I1E)/I1E) @$H1U v$yaH_U/Ibq)* BP ?O$q$!TUUU $$!!P E)$!H1 E)$!H$I$$!!PPI $!  $$!I$I$! $$!!$H$E)!~H $!. %)!H$I$$!!IE)!0E)@`E)  E)!jbE)! *I$I$E)$!$E)!* @$I$E)!I$IE)! E)!/ I$I$E)!I$I$E)$! E)!*$!IE)!I$I$E)$!*I$I$E)$!  E)!jj$E)!$C$AE)!j ! E)! $IE)$! I)($ E)!!E)! E) $E)!$I$E)! I$$E)!$@I$E)!$I$E)!I$I$$!!  P! 1SiP/--- H$%q$!TTTTI$@E)!իIB E)!IH@E)!)( $E)!*I$Ie)E)//I$Ie)%)I$I$e)E)(I$Ie)$!۶me)! @!I@! I&dBe)E)XX IA@!I@$e)E)I$ $e)E)I$@e)E)$L@E)!(<< e)E)jLE)!I$E)!_^!$E)!I$I$)(I$I$e)E)* I$I$1E) I$1%)$I1E)$I$1e))`f1Xɖl61E)I$I$1E) e)E) @!H$1" ɰme)!A1E)@!HPe)-i`e1JJZZI$I$1E)`1E)^I$L21E)UUW^ $1E)UU1E)ꪩI$1E) 1E) I$H$1E) I$1E)ꪪd"2 @1!ZjI$I$E)!UW\mnɐdE)! 5I$I$1E)I$1E) *1e)$I`&1E)!1E)M&X e)!VXp!I$E)!%5$I$1E) I$1E) * H1E)   1e)*1e) H$ 1E) 2 C21E)^^_WN PEE) %% P/% I$P,E1UTP@1e)L$$1E)C 1E)ꥥmפK f1!6`؆1! +mkv1E)($I$11?UU11I"91E)HJ1E)@1E)zjLB&d2E)!Vvif1!/1%)@ 1e) 1E) *@ 1e)$("Ɇ1!@`6 `1!t"'91!^xxII$E)!`1  H$11$@$11?> 1f19!1e)  L11JP Ȇ1E)H$ e)E))1E) ! 115I $11ŠK1!$ (1E) pWpE1 ))3 pǩq /MI) #%W/$/`J§UVh?-k:ȹ_Wx4-`DZ?DXm۶mEXDm۶mǹfD4K2,ɐlDZD4I$K2lDZ_44I$I$%44I$I$%44I$I$&44I$I$&41[-DZ3+#ْHz/ i^)~:c E_~ #EIzꨀ I$l2Eq9UWx` 9` I5 9a. HI$91 I$H$A) II$A) (B%) H :9$!x 91 Mr91* I!A) $I-9f1@ 9f1 I$I$A) !I$99+ `n99` l;и9e) ۶m91jj!'N$e)A V Xip 9! 3 9E)vP `1!I׭ۆmE)! mצ1E)⋵m:`1E)U_$@2$e)E) okH$IE)aV޸  M9$! ) #єD 91 I$r91s$I1!\ PJV9E) *  HS91 I$H BD! I$I$B$! I$I$BD! I$I$B$! I$I$B$! L291 I$L291 !I$91 $91 91  R'9e) 91* @$I$BD! I$I$BD! 9`xIe)a/5$!I11 I$91  $91 I$I$9F1 I$A:1 91  @$B$!  B$! 91* M91ꀀ I$[91U_zI$I$11 I$91UU 0m$91 d91+ IBڒ91U_IĢ 91UUWj1a'mۦ1e) `SB1 UUZ-HBf1+OB:B1U^ '9f1UU_$!I1e)* `S$91*U  91 `91 }$|9$!W޸ &(`9e)#ɒ 1E)[+1( J1$91 u n91 M $I9e) H$I$BD! I$I$BD!   B$!  I:1 I$I$BD! I$I$i9UUU\ ۉ9%ո $mㆡU/zU8,j`D ɒE4,Pj2DZ\4,%DZ[4-DZ 4-DZ43DZ4/j# @DZꪨ3&3i-3 hf_~"  q I$9UZj I$I$BD! I91 @$@ 91  A 91 I91* H$H$H9 !XH/+yw7%yX-/&1wSd%y-+ 1%)u -+ 3,%9```XI$I$9F1 H$I$9F1 I$I$9F1 $C291 @ 91 091 91  I2d$91 $ 91* * @$I291 H$I91 !$A91 X۴91  I91* IA) $ 0`$91   91 ** 3'{=1Axx !9B9  I$ :1 !C$I91 I$91* !I$I91 "I$ 91j 091* I$I$BD! [ ,91`R9#1`p 9x1A -- $ 2 C91I$I$9F1I$I$9F1I$I$9F1 B$! I$I$B$! I$I$B$! I$I$B$! $@ :1$@9F1@$H$11 $@!91 91* H$91 L$d91 I!A91  91 dB&$91  !@91 `291 I91 ll91jO1ּ 4 9e) !@91 P#$I1`   9e)  @$@$919F1  91 L$$91  ۶m91/* L$`"9a^^ J$I1   $:1 L$$91 @$091H$)I) $H2a$91$I$)I)H$I$)I)I$I)I)(1`&1app O$Iei? pSyE%Q ++,` wE +3)P S -410DZ 4/j DZ1 z%I$J%1UUTPI$I$9F1H%@1bTP@1b01e)$1f1I$11$I$11H$I$11I$I$9 I$I11 I$091UU In 91U  I9$!j IJ9% $Ij$9E)$&I$1E)hI1E)r"91bX i۶9* K9e)l'1E) I$1%)I9L$I1e)*I$I1e)*m 1%) @ <9e)_z1E) $N$91UU$I$9!I$I$9!$C$ 1e)۸-$1jI$I1U,4R&1`XI1 5I9!I$I$9!I$I$9!I$I$9!I$I$9! H$9 H$I$1e)I$I1E)I1E)*1`$9 I$I$9!1E) I1I$I$9!$1E)$I$1E)I$I$9I$ 1e)* II1E)*I$I$9!@$1T1E)I$I$'9#I$ 9!@$1Wmۖm1!I$I$1E)I$I$1E)I$I$1E)@$1E)$I"%e)@PIE)b  &I$E)!a$Ie)!/IE)!?E)! E)!蠀IE)! I!Ie)E)U I$I1E)!@$I1E)@$I$1E)I$I1E)I!1E)/ 1P1UU%&MҶ@15  DP8*faP]U]mn `PU+ɟoW%yP }. fi+ ) E 1qr4 f*3)qR$+41I DZ* 43DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4$DZEP4,DZE@`4 DZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4H$H$DZ!TTTTI$I$e)I$I$e)$!I$I$e)I$I$E)a $$!I$ !^!I$I$d!d I$I$d!d I$I$d!d @$!I$I$d!d  @$!I$I$TI !*I$I$d!d  !$!I$I$$!!I$I$$!!I$I$e) @$$!I !*/I$I$$!!_I$I$$!!$$!I$I$$!!I$I$$!!I H$!I$I$H@ !AXH/+ T \h$) RT H$I'i$!TUUUI1@ $E)!ZA$I$!!I$$!!H$I$$!!*I e)$1H$I$$!!PP1H$H$$!!IE)!  @$E)! I$H$! I E)!I$I$1@„L@E)!ZWE)! E)!I$I$1 @$E)!H$I$e)I E)!E)!I$I$1I$I$E)$!I$I$E)$! I$I$E)!*I I$E)!*  IL$E)!I$I$E)$!I$I$E)$!**K%mE) VP$I1I)(1 I$I$1 $)($I$)( I$I&E)! I$E)!@$I$$!! *I$Ie)!I$ e)!IE)!  E)!(  IP%).R.e7iH//o HiE)TTTV e)E)I$I$e)E)  $I$e)E)** I$I$1"ɶm e)!I$@1"  @!@!I$I$@!m$m e)!UW e)!@!e)E) m[%e) $I$e)E)I$e)E)I$e)E)*I@!ɐle)!@!Ġ e)<I$e)E)I$I$e)E)I$I$)(@$E)!@$@E)$!I$I$e)E)+I$I$e)E) I$1E)@@1E)Zm[%1E)ZZ@ $1E)ꪪe)E)I$I$9I$1E)I$I$e)E)* $I$e)E)* e)%) H$HHe)Pf1PPPPI$I$9 1E)1E)zI$`01E)UUVz-nm6f1$!/$HH1%)@LȄ1E) H1E)$ H1E)֖I$9Xf1!xI$M&e)!UVXېtIE)!/=5I$I$1E)I$1E)@$H$1E)ꪪI1E)I$I$1e)ꪫI$X4e)!\p`Idf1! 5I$I$9@I1E) 1E)*$ 01E)* 1E)") 1f1!`ɟEy%)UUU 锔fE1 %"VE+!I$J$1UTTP@$94h&1$! z^^f1$!$I'r&E) *ZTXINf1! --1e) IȄ1E) *$I1E) LH1E) **I$I$9!K%@,1$! H$E)!ɐt1E) 1e)$ ɐ1E)*" 1$!@@f1$! 1e)% `1P!1! -5I$I$g9*It`1e)**11@$ 1111H$@ 112`1e)I$M$1E)X1E) /IH&11TXH$I$11H@$9 @11`I X1U`SwE`-)1wE /c%SJ†/Z1JDZX-Z)o? `J§U_4/ M DZǩ41e%?4II$蹧?D4mK$DZD4Y$ۖlDZ?4I$I 蹧44I$I$%44I$I$%44I$I$&41`DZ4-# H1"h~ꠀ,3 iE~ Of%i~ N>l %9Wz I$I&Y9UUUX 5b"'9Axx I9A -- $I !91@ $A$A) s'9$!X\ F9$! xw 9E)-- I$I$B$! &p89Axx IB9A -- I$I$A)  &9f1 $邢9E)@@ MI1&% S4I91 |>zl9(I$I$91 $91 L2H91 lm9E)^I$t91E)UW^жm۶1E)U`B!1E)꯷tH" Hf1$!鐤I$1%) 0I񔤧9E) v91 m:91@1 鐤I$91/ @191- LB2A) I$I$BD! I$I$B$! I$I$B$! I$I$B$! @99!` TI)9A % I$L291 !I$91KR'-T1E) I4I91 I$I$B$! I$I$B$! ( "ń91* 9' @91 I$ 91I$I$)I) 0I(19E) j J9!)  91 H$I$9F1 I91  @$:1 I$91 I$I$B$! kl91 I&@ 91*I$I 11@$I:1E)  I$91) `+91 e K$9b m9e)Im 1e) 91 UUUVɛ$B1+UsB1^ y'k?`B1UW mv 91UUUxжm1e) RMNj;91U 4I픸91 k2n91 IB:)91 I$t91I$I$11I$91  I91 Ȑ=9`pɕ1a %5  91  I$I$BD! I$I$B$! 19!`!pSܧE!-,@ w  3(I픷 4/ VDZ *43DZ44I$I$%44I$I$%44I$I$%44I$I$%41[-DZ3)#Hz/i^(C %y~ OR?%9Zj $I &q9UUUP 91 91   H9UI$I$PHiS6a`P-yww7E`--+,1uOd E-/+ 3, 3 X&K$9XXVV I BD! $C$A91 IҶX91 01@I$1aU `&@B91I$ )I)H$I)I) II$:1  $C291 ۰vm91 H2$91ꪫI$I$)I) @91 m۶91 `91 $91 "II9E)` A۶m91 I 91 @ >9x K1! H91 I$I:1 I$I$BD! I$I$BD! %x<9bp\p .  9a % I$I9e) I$I$B$! I$I$B$! I$I$B$! I$I$B$! I$I$B$! I$I$BD! I$I$BD! I$I$BD! I$I$B$! H$I$:1`1e)91   B$! $91 I$I$BD! I$I$BD! I$I$BD! I$H$91 I$I 9F1  hU9e)< 91 H$91 I$I:1 91  91 ۆm-91j IJ1 $:1 $ d$91 $A!91 @2d$91I$)I) 91I$I$g9* $I)I)I$H$)I) I$I91 I$L91 I91 I$91 $HЏ'1x H9! R.v9`* 1` 9  lI%q9 55" N7%q +-/IS*+4-@J& 43 DZ4,ۣ m-/-h1P@5\I1b ?L$11@$I$11I$I$9 I$I$9 I$IB11 I$91UU IvmѶ91 6l91 &91^  IZ['91^Uv$1E)@ۦI$1E)@$I$1E) I$I<9E) II9E) )ID9E) ,޶9!`ITf1?.$I1E)I$I1%)I$01E) m91U iv91 $!H;91'kB61$!p\X`K4I1$! H$I$9!I$I11UU I11U 11% 11@$111E)@h$IĆ1x^זNH1 d@11E) /I$I 11$9 $I$9 I$I9!I$$ 11UWmm1e)9 I$I$9 $H$9 I$I$9!I$I$9!I$I$'9#$1E)$I$1e)I$I1e)I1E)1E) I$I$'9#I$I$'9#I$I$9!I$h L1bWV I1 $&1E) %f1bp`I$IE)bUU)I$e) $I1$! $1E)@$I$1E)2E)!@k۶E)`I$IE)*I!@E)! !@E)! @$)(H$I$1!!Ie)E)*I1E)I$1E)$I$1E)$e)pIɐDe)b 5!@EA)?I$P1U)X$I$IHPUUUI$IPH Im XH -`@ o f`ս # { $q -r4e 1%qYN + 4-1IR$DZ 410DZ*44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4@$@DZEPP`4DZE 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4H$H$DZETTTT4H$H@ TTT,I$I(!UUU@I$I$d!d @!$! I !H$I$!!* I$I$d!d I$I$E)I$I$e)I$I$d!d I$I$E) !H$I$!z^^WI$I!I$I$E)I$I$e)I$I$d!d I$I$e)I$I$d!d I$I$$!! **$$!H !* I$I$d!d I$I$d!d I$I$e)@!@$!I$IH$!UUI$I$Q!@I PH** )S$X$)@PU$A$I2$!$!I$I$$!!PPH$Ie) $1@$I$$!!PVUI$I$$!! I $e)I$I$e)I1$H$e)IE)!$HE)!֖I$H$$!! E)!I$I$1I$I$1 E) $E)I$I$1$H$E)!I$Ie)IE)! E)$!ꪪI$I$1I$I$E)$!I$I$1$E)!IE)!*$E) X$C$IE)!j $ E)!% E)!*$I2$0E)!$E)! E)!!$IE)!$I$E)$!@$E)! $I$E)!I$I$!!I$ E)!Ie)!I$I1I$1I)(I$I$1  PE)UB*L X@JJ ^$1__J e)E)@e)E)I$I$e)E)  e)E)zzze)E)I$I$e)E)I$I$e)E)I$I$e)E)I$I$e)E)II$E)!   )(@$E)!@$@&E)!  d&E)!!E)! E)!*I$I$e)E)*$I$e)E)0Ie)!/ e)E)%%)I$I$@! @!Ie)E)I$e)E)I$I$e)%)I$I$1 I$I$e)E) .I$I$e)E) ALHE)!(*(Md1$!**$1E)$1E)I$I$1E)I$I$1e)@e)%)$C2 1!ꪨE)!HIHe)A$APe)PPPP $1E)1%)ꪪI$1E)I$@!m:`e)!ꠀIѶm۶e)!/1E)ꪭHHf1E)$ A1E)///H$1E)I$I$9@f1!xI$M&e)!UVXf1! -I$I$1e)Id1  I$H$1E)ꪪI$I$f1e)1E)jI$M&E)!UVVX)e)! % I$I1E)@[%1E)ZZ 1E)‚!$1E)-H1``!R$f1IFyE)UUU wf%9)!"I i1@I$H%f1UUTP I$ 1E)@$I$9@4 `f1!XiI$e)!? &df1$!@'9#kѤ1E) >@ $1e)1e)  1%)꯯MҶkf1!۰%[mE) ZZ0b1E)H$$C1E)~j`Gv(1!@&[f1! ?@$A1E)I$I$'9#t&01$!^Xx`II$E)!`)1! `H$1E) H1E), 1E) m1e) 11$@L11?H&X41E)Mdm&1E)?@ 4CS41E) 1E) @ $9 ! 11 `B&dB11\^^ 9Təpe1 )%! N1wfq +-, ++-?+q}ȹ-UUZ,pJʧ+Uk4sjDZ\ k/y'jDZUUT`4,DDZ4-!`DZ 44I$I$&D4 ۖ%DZJ4I%b)DZUZ44I$I$&44I$I$%44I$I$%43DZ4/j@DZꨠ3)u" I/3if~&~:b %y_ c۬ %fIzS+ `fqe 1`9  @&K"&9a`X\p  B9A  N$91WW HJ91 I$I91 LB&$HA) "II9E)@ ѰM۶m9E) !A) Z91~hh$I$f1AW DH4I9! I$A) $B!99 / ?9$!p\@! 1!  I$91 ú d91+ Cۀ @91N: m9E)W~I$M&1E)UU_x!I$1E)M61E)I$M61E)XI$1E)? )&9E)jN$LE)a< %9$! I$I&1f1 -tI$91/  91+ H$BD! I$IB$B$! I$I$B$! X(9ap I 9a5  91 L291 I$d291 !I$91+ !91  91 I$Ku91U޸ 91 * I$I$BD! I$I$BD! DB$H91 >9xx9XP1 -  $I$91 $A$@291* 91 H$I$9F1 I$A:1 A$H$:1 @I$:1 $91* @91ꪪڳ'L&1aX\p1 -1E)@IҤhՆ1A׾( 0I9%) [mn91 NْI91Wx I$91UU_dH$01E) B1+UU B1UnB1W'/`B1UU~ I$I91UUU|$I$11 UUU J$91 UU  I&$91 Kam91 IB;(I91 Im 91"iI1!@ eJ$I1  i91 !$91 ۶ ېn91+ ɐ$I9!p ɗO$ 9!- ! I$9%UU, IޔtA51% - 4-@ $DZ 4IDZE44I$I$%44I$I$%44I$I$%44I$I$%41`DZ4-# 1" hz蠀+C E~ EEAjI$t5$q1UUP@!$I$1f1@%[2;P1I PH** w7uiP-/ ywSfq-/+/ 1R` -++4% !" Ǚ@@@% H$I$Ǚ9TUUU I$I$BD! I$@$BD! I$I$BD! "ɒ$I91 I9 H$I$BD! I$BD! M2m9e) I m91 d9 91zx` X@91Օ%+ I91 M&[91 Im91 L$L91ڶmڌ91$!` 9E) XN1 mm9E) 鐴I91 r9 H1\p9J 1-  -Юk691 mv91  H$91  :1  I9!@  9e)   $91 I$91 $)691 I&I$B$! I I$BD! I$I$BD! I$I$BD! 091 91 II$B$! d$I91 I m$91  v$91  I$919F1 @$I&91 * $91 $I$91 жm691 "$I91hNB1E) @IDJ91I$I$9F1H$I$g9*I$I$)I)I9F1%h1a@p@II1b%%  I91 I$L91  $ 91 dB91 I91 I91 L91 !91 I$I$B$! I$I$B$! I$I$B$! I$I$B$! I$I$B$! N'H1A^x zJ 9a  9a9E)% I:1 I$I$B$! w9++(N7%y +/1" v+)4/P VDZ **41,`DZ3& +J醡E I$i91 I-91W I`91կ  &91 !$91 &i$9E)K$1E)II$1E)`$I&1E)I$I21E) I$.)9E) Ibr9E)* &$9E) ϓ$9E) 8I$9E)H$I1E)I$I1E) Mr$ 1E). qn 91 im91 $II'91WM$11VU $I$11UUUI$I$9!mӶm 1e)I$11U !A11- 11@$11$I$11I$I$9!I$I$9!I 11 *N 1$!((1E)$I1%)/$I9 I$IH11UU+I11U-8`'1bxx`1 %I$I$g9*  11I$I$9!9!@ 9 H$1E)$I$1e)I$I1e)*I$1E)*!A1E) H$I$9!I$I$'9#$H$1e)1e)*I 9!H&1E)&I$1E)I$I$1e)I$I$1e)f1%) $1E)zh$I$E)bVWPE)2L$E)!H$I$E)!II$e)I$I$$!!! E)! //@$H$E) I E)! inݶ1E)!I1E)$I$1E)I$I$@!I$I1E)+3@1b`o&EA P@1- I$IPHI!IXH*IqiP+.W EX+NbRD fXW+ +v E+ 7"}nQrȱש/C)}۰m蹧41I DZ* 43DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4((DZE@@@49DZE 44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4IDZE44I$I$%44I$I$%44I$I$%4/P5P5DZ-9Xfxx`` #:fixxxk"bh)XN"IP UI6P UTI$P UUikmP!UUTI$IH!UUUI$I$d!d I$I$d!d I$I$d!d $@$!PP@$I$!zzI$I$ UUU I$$!I$I$d!d !*H!((I$I$d!d I$I$e) !@$I!@$! I$I$d!d I$I$d!d I$!/!I$IH!UUH$!HH8T$H$P$!@PTUI$I$e)$!!A@$! $$$! I$e)H$$!$!** I$I$$!!PP $!$!$H$e)Ie)2%)hIE)IE)!$E)! E)!jjE)!$E)!H E)!V$I$E)!I$I$!!($@LE)**E)$!ꪮI$I$1I$I$1I$I$1 E)!ꪪA$E)!IE)!@$LȄ%)ܞI$I$E)!I$I$E)$!* I$12 2E)! !E)! E)! H$e)!@$I$E)!I$IE)!Ie)!!I$IE)$!I1 )()(I$I$)($)(I$E)!$I$HE)UUUivPE)7q1WE`----J"$2 fE)TP@@HI1$)(!kE)@$A$E)$! I$I E)!!I$e)!Ie)E) e)E)xxIE)!I$I$e)E)kHE)!TTd$@0E)!aBIE)!I$$ E)!I$H E)! $I$E)!vIE)* I$E)!U@E)!/I$I$e)E)I$e)E)@$I$e)E)*I$I$99I$e)E)?I$@$e)E)I$I$e)E)He)E)W*?I)(e)E)Mme)!661E)I$I$9I$I$1E)I$I$1e)I$1E)IIPH//++I$IbHE)ZVVTH$ e)E) I$1E)1E)@ 1E)ꪪH$@!L&e)E)TP@۰k%E)xP  f1 ) I$1E)'9#kdm1%) I$I$1e)#ђ(@1!zꪀI$I$E)!W|f1$! -1%)I$I$1E)I$I$9I$I$1e)@` `f1$!zI$LB&E)!Vz@ِe)  @1E)[1e) H$ 1e) 1e)[ۆm1E)zj $e)E)T_%yE)UUPn%EEA )?%%E)Zj*?Ef1UUUT1E)I$I$1E) :f1!^~xp& 1af1 - 1e)L RIf1!(I1E)IH$1E)**1e)X51E)^ZzI$I$16Pf1$! 1E)H$@$9I01!?L$ 1%) 1e) 1! !%1!-- C!11h 1E)11 @$@ 1111 `&011\Xp`2a1E)@$I$e)E)a) 1E) kdKm1E)I$I$'9#$AL$1e)P1! . DI$h1%7vfa/-1 tRȩ--=,m豧}4-LǩO1)DZUUUk1 I$jDZUk/jʧV`Z/|J§UUVx4-`DZǩ?4/ DZǩ44I$I$&D4ِ%DZ@QJ4I$H)DZUVT44I$I$&44I$I$%44I$I$&41[lDZ4,i1(m E@( lИ@%y ~^?c f%qW~kcy9Wx [lQ$j  DD91* tI$I$$!! I$I$$!!@ $! I e) @$$! dB2$I$!p@ %)%  @$E)!jzII$$!!E) E)$!@$@$$!!! I$IE)!I$H$E)!IE)$!I$I$1E)! E)!$@$E)!%)$!H$HE)!I$I$E)$!*   E)@$E)  E)!@@E)! C$IE)!ਪ H$E)!H$I$E)!LȄ$AE)*IE)!I$I$E)!@LB%)IE)! 5I$I$)($1$I$1H$I$1E)!*I$I$E)$!I$IE)! MDmmP$)))%1W%yX----t fE I$P(fE)UTP@I$ 1$CE)!!@E)! @$e)$!IIe)E)U+  e)$! e)$!I e)E)I$I$e)E)He) @ E)$!E)!I$I$e)E)I$I$e)E)He)!I&E)!_I$ E)!U_I$I0E)!UUWФMڶE)!UUU@I$e)! UE)!-m[%E) @!2e)$!e)E)Ie)E)//؆mX$e)!I$A e)E)@$@)(I)( $E)!$ e)$! I$1E)1E)I$I$1E)ꪪ 1E)IIPH*** I$H$XE)TTTT e)$!!$Ae)$! H 1E)1E)9$ 2 e)!C(f1z )۶mE) @$1E)I$I$1e)1E)I$@$9mk1E)k,`f1$!~jI$I$E)!=0e)! I$I$@!I$I$1E)I$I$1E)ꪪ@!X,`e)!p I$E)! 1E)H1!><1E)"I$@$1e)@$1e)`01E)VZz &dBE)! XZO%ye)U0 PeX%@Ee)P@1E)I$I$9`v1$!hI$L$E)!`IKf1$! -@ 1e) 1E) * 1E)I 1E) *1e)I$K&1E)UWV^I$I$E)!*V`1E)Kd۶ 1%)* 1E)  $1E) 9$1%)ꪪ]h f1I$I$%)!UP J1$! I$11* I$11 *>11 I11/>> $11 I$11%UH&X$1E)IdI$1E)?H$@ 1E)1E)@$ 1e)-)1!lP1UUUpSq$1 )*3 pSwq/?,E Rǡ++-C3&l蹧43@%4-MۀDZǩZ-I$)§/Wk1j$DZ5Uk-] jʆO/??§_|4)5DZ 7?/m۶ȹD4IdIdDZ??5J43,䐄)DZjb*D4I%XmDZ_p44I$I$%44I$I$%43@DZ4(Ey@@3ɖH@%y-Hf&  %y_ %Ea_ I$ %q9UVx !I$BD! (B%) H (B%) I$I A) IA) I$I$(B%) ` (B%) I$I&B$! $I$B$! $I!A) j 91^  91 *4#9`p1I9A+ P9$!. #͂TH91 I$t91I$I$91 bI$91 / I9$! 8Հ$H1E)I$tІ1E)ɐ$I$1E)'#@Ć1E)mۨ=1E) $LB&1E)?`J$1E) /  v9E) X`91 / I$#91 $H$11 {I$91? &w91/ I$BA) I$I$B$! I$I$B$! I$I$B$! I$I$BD! $C$I91 M691 I$M&91 !$I$91  91/ 91 I$I$B$! I$I$BD! I$I$BD!  $BD! I$I$BD! d91 L$ 91I$I$g9* I$91+ 91 I$I$B$! 91 I91  @$I$:1 $91 @ 91R ! 91 L&91 I$k91I$I$11 I$1f1 * I$91+  91? 91 N@ 91U_zh1b `۶m91%UUUM''I1a^FdB%) }IB1WI$-AB1UW N$ 91UW_ $I„11UU  I$91 @J $91 U &O91 - mm91 vB;") 91k$N'1\ID1  u\۫ u1E)޾ Bn۶9e) %[ɝ$15U- 0 nfi )3(I픷 4/ VDZ *43DZ4,IDZ41 %4DZE%4DZE41[-DZ3)#Hz/i^z(C %y~c f`_ _# %y`U׾(yw.U fi/+-1N` f--+ 4,M 4`&{$9XXVVI&)1E)@ @_N$1( h$jb59aX^X !DI9a   91 @$A&91 91 I$BD! I$HBD! A) $I$91 L"ǧ9e)V TI)dA9E)  I$I$BD! I$IBD! I)9! @ 9 LB2CA) I$I$BD! I$I$BD! H$IBD! I$I$BD! $I$BD! I$I$BD! H$H$BD! I$I$BD! I$I$B$! I$BD! I$A) I$A) I$A) H$I$BD! I$I$BD! I$I$BD! I$I$BD! T9!$ I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$I$BD! I$BD! I$A) @$I$BD!  I$BD! I$I$B$! I$I$B$! I$I$B$! $I$BD! NV9$!׸ 91 I$I$B$! I$I$BD! I$I$B$! I$I$B$! I$I$BD! I$I$BD! I$I$B$! I$I$BD! I$I$B$! I$I$BD! 91 I91* I$I$B$! I$I$B$!  91 @&91** @$91 L$91 $C&91 I$91$H$91I)I)H$I)I) I I91 I$$ 91 q`{vky9%5 Nwfi +/PJsf*+4,Mo 43 DZ4)(Ey@@@(Pb+dCfE)PJ I$I1UUUT$iZ$f1XTkS9 BE) $Be)U P?I$9e)$I1E)I$I1E)I1% 1E) Itۆ9E) NM9e) $ @&91 $91_  Ѷ$91WUx$|2ކ1^\ 1I$I11UUU5I$ 11UUI11U  11 I$I$)I)I$I$g9*@$I$11I$I$9!$I1!I11 11$11HEE)TPB 1E)~I1$!k&h$e)!XPɐI$f1!% I$Rf1$!+M5f1*h1E)H$@$1e)*1e)X, l1E)ZzjHE)!ɐI1E)؆m,1E)zz1E)I$J$1!>I$@$9'9#@, `1!I$H$E)!UWV^1!--5I$9  ۲1E)!`1%) H$@$11H  11H$@$1E) B"1$!RI$I$e)E)I!1E)ꫫ I1E)$H1UU%I$H1UH IPH1XP`P---7qWywfi-=sȱf)-=C,VoJ4IHV)DZ D/'{蹧\\?1vb۶mDZUUU3J$K$ETWVTk,?I$jʧ/UUk)?f k-O??ljʦW~J-??§UW|4, oDZ44I$I$%J4rI$)DZ)UUD4,DZE@D4I$K%DZU_|44I$I$%44I$I$%41[lDZ4,ki1"3 hꠀ,C E_ ~:c f%q_~ Mb7%y9Vh I$I%Eq9UUUX  $A) (B%) (B%) @$I$A) I$A)  @$(B%) I$BBD! I$I$B$! I$BD! $IA) .9$!p ItI9$!% W$I9%)7 I$A) $!99 N991 c۵91/?X01hP@IP1A5 I&:l91 v9m9e)WzI$N91%)1IĦ1E) #䘦1E) I$p1%)I$I$1E)' 9E)*+  Ӗn91* r@ 91 I$r91I$I$11* KI$91/ & w91/ I&$IA) I$I$B$! I$I$B$! I$I$BD! I$I$BD! I$BD! I$91 I 91 $A$C&91* I$91 91* I$I$B$! I$I$B$! I$I$BD! I$I$BD! I$I$BD! `91 dB& 91  ! 91 $@2d$91 @!91*+ 91 @91** H$91 I91 $B$! I$:1 I$I$B$! @91 I59f1 I$I,9f1I$I$9 )$I$91 "$۲m1@P@IJ9a%% v"$I91_ I$ 91UUj I$I991UUUxI$I$91UUUXI$B1*UU`;Ae)/ + @A! I?91u '91UUW 115 )$I$91-UUU I$91-U B,IDr9E) m 91 m%91 I6X 91 3'M&1AXVX ɟ/, |151# w 4-@J&DZ 43DZ 4 DZf@@4IDZE54IIDZE44I$I$%41`DZ4+[%P1"Jlz蠂+C iE_"OR# I%y(yw E/ 1")N -+ 4" , Ǒ@#H$O$1TTWU d#891z ON۰ 18 CSH91 I$LB91 I$ :1 H$I$9F1  I:1  I&LB&91I91 жm691 ֶI91 P"I I91X $@d$91 I$91* @$91* P09P` I)09%   A) H A) I$I$BD! H$A)  H29f1 $I91 I$IBD! A) I$IA) H$BD! I$I BD! 91 k/>9 x BI9 - I$ A) I@$A) I$IBD! $)*A9!@O$If1a6՗, I$H9e) I$I$BD! I BD! ̘9!p %x9$! 5 I$`B2BD! I$I$BD! I$I$B$! I$I$BD! I$I$B$! A$I$BD! I$I$BD! I$I$BD! I$I$B$! I$I$B$! I$ $BD! I$I$BD! I$I$B$! I$I$BD! $I$BD! 91 $91 $91* $$91 $91 &L$91 ŖI$91 H$291$I$)I) 9F1H$I$g9* !!I91믫 I$L91 !$ 91뫪 I$91 $C$I91ꪪ  II91  I$:1 91  @$:1 I$I$9F16t9 )& N/%y +1"PNw +4/P VDZ4@F@3!O-i砀+=-1TP@@p9ۺ e)X!@e) M$] 1E) I$&9E) In$9E) i;I9E) V91 H:91_ 9r'1`X\io1 $I$9!I$I9!I$aH11UUmm1e) 115I$I$g9*I$I$g9*I$I$)I)I$I$g9*I$I$g9*I$I$g9*@11=Ȧ1p`\ɗ߆1b 5%[1 -$I$11I$I$9 R# 1 `Di (1! @I1&I$I$)I) 01!``ϑI1b..I$I$g9* @ 11II11** $110L$11`WU@$I$9!I$ I11UU+I11U H$11  I$Ʉ11I$I$9!I$I$9!I$I11*I$ I11 I 211+(жm1E)`@I f1b.I$I$@!I$I1E)I$1E)d$1E)d$e)E)UH2E)!2L$E)!H$I$$!!I$I$d!d I!E)!+++A e)E)]/Ie)E) I@!$C$H1E)&@41``Xf1+%%$@$1e)$I"!1$!jBI$E)b&!@@1E1$ <%P1U5'P1-I$IPHI!IXH*IqiPU+. %yX }. fi ({ %y*/r4 f 7(1`.Irȱ D/O| UZ=?3蹧44I$I$%44I$I$&44I$I$&44I$I$&44I$I$&D4ɖI$DZ?D4I$Y DZUTQ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4 DZE@@4E44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4@$@$DZ!PPPTI$I$E) !! I$I$d!d  !I$! $I$!I$I !%I$I$ UUU%I$!UU)@I$!UZݶm(*pI[֫fU5\ЬEC)Ex_#ҶFEy_ "IR @%yU IR# If%qU b# IfiWb# @EiUR# hE`Uv" y(ZI$c-`!UUP@ !H$I$!X^W !  !I$I$d!d I$I$e)$H!I$I$!`A۶ $P@PH$IPTUUU$! I$I$e)I$I$e)I$I$$!!%I$I$e)I$$!@$I$! $!I$I$$!!I$I$$! I$I$$! I$I$$!!X( I$$! H$I$$!!I e) $!  @$!/I$I$1$H$E)!I $$! I$I$d!d I$ $!!_= I&E) ^I1@$I$$!!<<$IE)$! E)!$H$E)!z^WI$IE)!WUe) I$I$1I$I$E)$!I$I$E)$!@$E)!*^$E)!@$I$$!! I$I$$!!I1I$I$1I$I$E)$!I$I$1I$I$E)$!* @$I$E)!HE)! @$E)!bXVI$E)!I$I$E)!*I$I$E)$! I$I$E)$! $I1I$ )(I)(I1  PI$`E)U1wfi+/-%f -&"HE1@I$J%fE)UUTP $@e)E)^X>I$I$e)E)IE)!5<II$e)E) I$I$e)E)$E)!E)!jH E)!^B$IE)!@@$IE)!mm$e)!$$e)$!I$e)E)I$I$@!I$I$@!@ @!I e)E)I$@e)E)I$I$e)E)`E)!xI$E)!UW $I$E)! ^$I$E)!(+U E)!۶me)!e)%)I$I$@!Hle)!\dB$ e)E)_I$@E)!II$1$E)!B $B2He) PH Xe)TUUUI$@!I$@ e)E) e)E)o*$!Ie)E) /$AC e)E)@@@!1E)@e)$!I$H$e)E)ke)!蠀I$I$E)!?0e)! 1E)I$H$9I$I$1E)1E)ꪪmX e)! I$E)! *e)E) A e)$! I$I$9I@ @! @!L&@E)!e)! I$I$f1e)@l1!P*D%b$1!ZZPAI1! )1E)zjI$I$e)E)UUUTMde)  >> %e1%:ifEy*-L$[)Ef1TTP@I$I$9e)$!I$K&e) 鐴f1! -@3ۖmf1!!I1E) % 1E) 1e)@ '9#L$`$e)E)WT\TI$I$E)$!@!f1E)I$I$9 I9 '9# $9`&1E)k&[4e)!\xpII$E)!5P1E) $H1E)$ Ʉ1E) **I$9 $I$11UH1E)! 1E)***M۰ :He)UUU-M$He)UU@$IPe)H PHWkI$ PHI۶m XH wWiP+  o7Fi--+4yvyDZf;,1ȹD3m蹧=O$ID%)E RZk;cb % ?4I$蹧?-vm ȹ_Z4-qR" DZ?+k-wɟ$Jʧ -Uk1k2pjDZX%k-I'jʧU_^4,GDZ4/DZǩ/D4 $I$DZUUUD4ؖaIdDZ??D4K$`DZTT@?4I$I$蹧44I$I$%43@DZ4/m# @DZꪨ3(룵I/?駱f~j`# lOiꨕ oSc%fAj I$@3N%y9U^ I$I9UUUT !A) I$IA) I$A) I$I$A)  (B%) @A) I$dB BD! I$I$B$! I$BD! $I$H9e) I$I$A) I$I$A) I$I$A) I$99/ X99x/ m3 H9f1j 4II1 !I$91 91  H91N: h1E)I$L$1E)_xxI$1E)? s"`W9E)^ ? I$J9e)U $I$1E)*`J$1E)+  91 bdJ91+ I$@`91I$I$11* SI$91/ 0{91 I&A) I$I$B$! I$I$B$! I$I$B$! I$I$B$! I$I$BD!  91 I$`91 $I )I) @I$91 91*+ I$I$BD! I$I$B$! I$I$B$! I$I$B$! I$I$BD! I$@$BD! d 91 !C& 91 Ҫ:1E)  ۔m9e) 91* I$I$B$! 91  91*  91 $I$:1  :1 I$I$B$! @91z I&91 I$M9f1I$I$9! iI$9f1 @J6c;91 dI$9E)(UU j"iT91^ IR' H91UW d&ͧ9ax`\ n1A -  ɟ$91UU TIw91U 91 Iр4@91U I$ H91U] ۱ 91UU9 I$91 u @ 691/ @@I9` i+IN91 N,ђ$91)MI$9U1@N.f*1@$B" EPPP4 E44I$I$%44I$I$%44I$I$%44I$I$%4,@DZP4,zm@3( Iꨀ/%OҶW1%yr$*4,M۴ 40DZ1`` I 91 I91  A91/*  I!91* $I$ 291  &dB&91 $!91 HL$91 mm91 Im؆m91 m۶91ꪨ Il91 I$$91 I$I91 I$I:1I$I$9F1 I$I$9F1 I$I$B$! $H$91( $I$91  91 H$:1  $C291 i91  @$$91 I$91 $@$$91 $91 $$9f1 $ 91 р9h I % 9a5 `$I$BD! I$I$B$! I$I$B$! mִ91  %I$91$< $I$BD! $I$BD! I$I$B$! "i$I91` I$I9E) $I$BD! $91 I$I$B$! 0ۺ691 ۆmm91* $91* $91 @$91 $I&91* @I$91 $91 $I$:1 H2dB&91 $I$91 @$I$9F1$ 91I$I$g9* I$I9F1 L$d91 IIH91 LB&91 I91( I$91 I@91 I91 I$I$B$! @ '9$!|  I9f1 * I$@ :1 I$:1 I$H$9F1  $I$9F1 I$H$:1 II:1 I$I$9F1 I$ :1 Ii6i9UUpw%e9 ++`/E +/3(JO 410 DZ *4/j DZ1  z&I<=1UTTP@$I$e)0 P I9! d;91U r$91^U HI$91_UU@$I$11PUUUI$I9!۳$ 1pٶM1!IH11*I1f1*I$I$)I)I$I$)I)I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*$11H$11@$I$1181rp@ə1% I11*I11*I$I$g9*11@ϡ1&I$I$g9*I$I$g9* 1E)$11H$11@$I$119 I$11U/!I11 11 I$11*ۆزm1e)@$I$e)!04I$ 1%)I!A1f1 $-1E)@$m 1b`$I$11XUUUI$I$'9#I$1e) I$1E)Id$1E)_@$I$e)E) &E)!$I$E)!H$I$$!I$I$e)I$I$e)I$IE)! @E)!/ (I$I$e)E)+* I 1E)!I1E)*@ 1@I$1কUygn۶ 1- It11U%$H$1E)N$$eI * %I$H1 I$I$PH!$ IPH mIgaP- mK EqP}. f`*% }% %q* -v4f*1%yYR +4,ym$ 4@4Ey``?۶mɖ`DZED4@I$DZPUD4I$H DZUUTA44I$I$%44I$I$&?4 I$蹧43 %44I$I$&44I$I$&D4H!I$DZTAUD-mǶ-蹧44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4@ !@H$I$E!TUUUI$I$E)!<I$I$d!d I$I$d!d I$I$d!d I  !ꀀI$I$! @$!I$I$!Z$!@$!I$I$d!d (I$I$!UUU+I$!UU- I$ U-/%3$ /#)I$ET- Ez, am%y)C@E_% " %y_~Rc f`_6 iy VjIK`UUT@I$I$d!d I$I$d!d I$IH!UUU H!I$I$PH۰C6P!@PTH$I$!^VUI$I!_ZI$I$$!! I$I$$!! I$I$e)I$I$$!!%I$I$e)@$H$$!I!/I$I$d!d I$I$d!d I$I$$!!I$I$$!!I$I$e)I$I$$!!I$I$!  1H$Ie)I$I$1$I$$!!<<I$$!!@ I&L$$!$I$!**>>$H$e)dB$! 1$IE)$!  E)$!$$%)!ZVU$I E)!UE)!I$I$1I$I$1I$I$1I$I$1H$@$$!!I$I$$!!I$I$!  d$E) ^ZI$I$1e)   E)!jj E)%% I$I$1I&E)! zWI&IE) xWU$I!AE)!UՕ E)! I$I$1dB&$E)!*I)($H$)(E) <I$I$1 I$I$1 $E)!R?%) )%# ` /w%y +)!m fꪫ(Z1hE)P@I$I$f$!UUUTI$I$1I$I$1I$I$E)$! E)!d$dE)!I$I$E)!IE)! %)$!H$Ie)I $!! I2$I$!( $IE)!%@I$E)!*I$E)!H$e)$! I$I$@!e)!@&e)E)PPLe)$!(*I$H e)E)*@ E)!p@I$:e)!U] $I&E)!UXaI$e)!Ue)$! I$e)E) @!e)%)I$@ e)E)I$E)! E)!ꪠ$IH%) !XH99 @!I$@e)E)I$I$e)E).$@ Ie)E)?I$@ e)E)+ te)!.Kde)!<< A e)!h4ae)! $I$E)!/e)! I1E)I$I$9$1E)e)$!I$L$e)! I$e)$! **@ e)E) e)E)9 $I$e)E)Il؆me)!۰ ,E)! @ e) I$I$1e)01E)j$2 I1E)1E)H$@$e)$!I$I$E)!**e)E)Rqp%E1 ) ƍ&f%y,Ee)UTP`9X4e)!p` I$E)!U@@f1E)I$I$9 21E)bjېml1E)B 1E)ؤH1$!I$I$E)$! * If1%)%I$I$9I$I$1E)A$1E)I$I$1e)I$I$9#Ђ,f1$!I$I$$!!UUTT! Ć1! -1%)H$@$1e)I1E) **H@$1e)* $H1UUU$A&I$Pf1UH$HH8TTTI$APH $IPH *mʱ`J`PU/ -9A`E1*Z k ˟pf1 TU.??q1UUU&)Be1) 6 t Xȱf-7/ȱT410 DZ *?C%۲mDZEPP@J  AE%%%J?h)I^J4$3 j?4I$H 蹧4,$DZP4-& DZ+kT nm7J j=ֿ%5O)v §UU_x4,p?DZ~43%D4I$I$DZUUUD4@2l$DZPUD4I$K!DZ_|44I$I$%44I$I$%41[lDZ4"I@F@1 I$i@%y,3 iE~" ~B?c f%q_~ sb %A^j $I"ɀi9UUW` m91 * (B%) @ (B%) I$I A) H$I$A) A) L0 IA) I$I&B$! $I$BD! $I A) I$I$A) I$I$A) A) I$I$A) @I$99 rɒ$91 I'91I$I$)I) I$91 [ 91 C" 91_IB' @1E)!$21E) dI$9e) /U Ք9e)- ۴ Ѧ1e)жm61E) Ivۦ1E)/ ` 91 ? b` 91 I$91I$I$11* {I$91 &x91 I&CA) I$I$B$! I$I$B$! I$I$B$! I$I$BD! I$I$B$! @91 I$[3`91I$I$)I) I$91+ $91 I$I$BD! I$I$B$! I$I$B$! I$I$BD! I$I$BD! I$I$BD! t2'9%)^^| 1s4@9E) I$I$91 $I$91 @$91 91* @$H$91 I 91* I91* I$I$B$!  B$! $:1 B$! `91 I69f1 I$m91L(RI1E)!$I$11 `RI$91+ *Im91* i+i9e) ڒ @91U c;4 91UU$B2 11O| Il91UUU m$91 }U $91 `091ꠀ I91I۶`91U ɐ$ 11 LH11 ېI$91WU mi$91$9UU- p tn%Y)3&I.*4/P VDZ*4 DZE@4DZE44I$I$%44I$I$%44I$I$%41[lDZ4h E@4=Fy 43 DZ 4 9`&DZ9`pXX I$I$BD!  91* @$91 -91 ж91 I91  H$H$91 dB$@91* !A2d$91 91 $@$I291 ؊5[ӭ91 tIn91+/  $I$91 AL$91( $I091 I$91* I$91* LB91 IB$91* !I I&91 LB&C91 m6 `91 I$ 91 I$$091 !$I91 I$I$9F1I$I$9F1I$I91 !!@91 $C2$91 I$I:1 I$I$BD! I$I$B$! 091ꪪ$1 I$f1A 4IdI9f1I$I$9F1I$I$9F1  B$! I$I$B$!  91 I$I$9F1 91 `$`291I$I91I$I91  91 I$A$:1 dB2$I91 I$d91 !I$ 91 I$$91 dB@91 IB91 IB 91 I$I$B$! I91 * $ 2`B&91 I$:1 91 * H$I$9F1 I$:1 H$91  $I$:1  :1 $@$:1z$K1AX @1   :1 I$H$:1  I$:1 I$H$:1 I:1 $291  &91  "91W M$91U aoIdi1 % Rwfi +/PNsf*+4,Mߔn 43 DZ4,ۣ mࠀ/"-$!@@ yE)UUUTI$I$9!H$I 9!I$I11UUI$11UaH111(I$I$)I)I$I$)I)I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9* 11@$11$I$11@$I$11Ș1M$1(U$1!11I$I$)I)I$I$)I)I$I$)I)H$1\W1b I$I$g9*$11H$11$I$11I$I$9 0ᄆ1,I11" @$11@$I$11I$I$9!I$I$11*I$I$9!I$I1f1*k4IH1%)6`$11V&I$11\UU`1`Id̤1UI$H$9!1E)&L$1E)@&L$e)E)PVU$E)!H&I$E)!I$I$e)I$I$e)I$I$e)I$Ie) Il`e)! e)E)oM$Me)!8$1E) 1E) I$I$9!I$I11UUU5IL1m11,)Q1UUU5 %I$Hf1UHm&Q8Z _Ea@IM XH( wWiP/ }. EX+ " Iyw- %q+ ;oȱf*?!}n;f3+iJ 41I DZ* 43DZ4DZEyp? m۶mDZE44I$I$%D4ɐ$I$DZUUUJ4I% 0)DZUZEe4IIDZE44I$I$&44I$I$&44I$I$&44I$I$&44I$I$%D4 dI$DZ =?4I$A 蹧44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4 @$DZ!@@PPH!(*@$!H!< I$I$d!d I$!I$I$d!d  !II!H$I$!^^I!Z* I! I$I$E)I$I$d!d I$I$E) !I$I$!I$I$**-I$I$ UUU/I$f!UU1I$!U1!1)d#$~/"ђH_,3 iE~#  i$qSc f`_~ M6# y!Vjm۶`!UUmVP!I$IPH$@$H$P!PTU@$H$!`xX^I !-  !I !&& I$I$$!! *I$I$$!!I$I$$!!~ @$$!I !/  ! I$I$d!d I$I$$!!** I$I$$!!I$I$e)I$I$$!!I$I$$!!*@$$!!@$Ie)1 @$e)II$$!  C&L$$!I!A$!?/ I$H$e)I$I$!! 1@$I$$!!p  $!!@ &L$$! !@E) յE)! E)!I$I$1$E)!@$%)$!$I$e)I$I$e)I$I$e)IE)!I$I$1I$I$E)$! E)!I$I$1@$E)!zW@$IE)!zWUdBE)!U ! E)!E)!I$I$E)$!  E)! I$I$)(I$I$)($E)!IHE)!WH$LBE)! E)!ꪪE)! N`۶mi%)UUUNn%1 **(PNsE +)!6ꢊ&c1if$)P@@I$IE)!I$IE) $C2$ E)!jj ! E)!I$I$1  E)!E)!I$I$e)E)꠪@e)%)$E)!IBE)!I$$ E)!I$IE)!I$I$e)I$I$E)!ݐI$e)!`B&!E)!+dBe)E)[-I$I$@!I$I$@!He)%)$I`&e)E)*\PE)!I$e)!U\ I$E)!-UVE)!% $I$e)E) ?e)E)0@$e)E)@PP$Ie)E)@ e)E)_I$I$HE)!!XH////E2$`e)UTPP[5e)!`e)!I$I$e)E)*/H$A e)E)e)$!B $E)!ª/eJ$HE) @!e)%) $H$e)E) K%۲E)!&aE) *`e)!1E)@$e)E)H$@!@ e)E)P@I$I$E)$!! e)$! *H$@ e)E)e)$!H$e)%)I I$e)E) E) @ I$IE) I$e)E) 1E)I$I$1E)ꪪI$I$1e)1E)jꪪI$L$e)$!mde)! .> I$I$$qe)UUU pEe1[4E%1`I$K%Ee)UUTP e)E)L$d&E)!VTZX) f1! -%I$I$9 I9 1e)C$A1E)ꪪX%1E)ZZH$H$e)$!I$I$E)$!(@1E)I$I$9H1E)I$I$9I$I$1e) 1E)-۠E)!^\X\$I%)???PP1%)n Hf1UUU0[tP1UU$I$P1I$I$#Y%8I$IPH im XPmS$`E1*U6 (`e)@UUBB'CaE)PUUU01! H$1E)*@$1$!PP( I$f1U,! m䧩f6"Vrn[ȱ?6/6ȱD1?41 %?4 I$DZ5UUD4 ٖdDZ=J?MҶIWJ4dB DZZZh`?-mӶmۢǹj4DZE@ZIm۶ E%k,Xajʆ/k,O?OjʧW^4)-@d4DZp4)0!nDZ 44I$I$&D4dI$DZUD4Y, DZQ@@?4I$@$蹧44I$I$%43DZ4/j#@DZꪠ3)# I^/R fz# 3 HEy^NRc fa_} q9VX vmi9UUUX !A) I$I$(B%) I$(B%) I$IA) II$A) @(B%) I$BD! I$I$B$! I$BD! #99!x` p9! -% I$H$A) I$I$A) $I$99/ H $99 91 I$t91I$I$)I) $91 MÚt91 j"h9e)zI$H1E) $I$1E) ɝ$9e)-U N99e)^`- }69e)UUVh6a۶ۦ1E)/ m9E)* w91 rD 91 I$r91I 11**  &`N$91 $I.91 I$BD! I$L0BD! I$I$B$! I$I$B$! I$I$BD! $I$BD! @91 * d&91 I$I&91 !!C&91+ @I$91 91 I$I$BD!  9E) IO9E) - I $BD! $BD! I$H$BD!  5h99AxI9a --$H$91 !I91 I$91 * $I91 I$I$B$! $H$:1I$I$9F1I$I$9F1 I$:1  $:1 B$! `91 -:91W^ I$I91  11 * $$I$91 d[I$91?W $I91 91/ I"ـ$I91 I$X91_z vlǶ 991UUUz IX1 , 6I$91}U@ 11/ I$$1f1I$I$11 @$9 @$I21E)$$1E) $1=UU+I1=1"Mw*4"!"IE@@@4 DZE44I$I$%4$@$DZEPPP4DZE4@(DZE@@4 DZE 44I$I$%44I$I$%+p$M$1\VVV tI$91+ mI$91_ 0$91  ۖ91 Ixڰm91շ( 91 91 IIBD! L& 91 91  @$ 91  $9e) * 91 I$I9F1 dH91" $H59!`1  9 [S91 I$I$9F1 I$@91 0aŽ=9A` TA|9! - $A$91 * `$LB&91  Iv91  " I91< $ 091 H91 A)  `B&91 H$I$9F1 $H!91 H$A) IBD!  91 Ω I9 mmm91 I6l91 IB91( Iv۰ 91 &M,-91 %N<9$!(W  IN9E)*- I$BD! @$I$BD! I$91 IBD! I A) `$L&91 !!@91+  &91 @$91 L$`B291 II$:1 I$91*  I$91  91 H$I$:1 91 * I$@$91@ (9E)`[O9( ۶ml91  91 * H$:1 I:1 91 Cl91Z  $91I&91 `ۚ$91UL$91_U I$91UU$$I$119k2'1xX1 --dH$I11" I$I91UU I$m91 .w9 )&`N7%y +-1" w -4/P JDZ **41lDZ3(j xx,K%-1TP@@I11U1f111@(Id1E) **`1E)@I 1:01 I$I$g9*I$I$g9*I$I$)I)I$I$g9*(1$!@-1 \1&H$I$11I$I11I$!I1f1"1@IL J1bW Mf$H1:$I11I$I$)I) 1E)1E)I$I$)I)K1b\P$I1!$I$11I$I$9 I$I11I11/$I1!@Ič N1חDI$ 1E)@$@$11I$I$9!I$I11 I!I1f1* IH&1f1 k$11\U$I$11pUUUI$I$'9#I$ $9!$A I&1e) m$1E)"9C҆1$!`zz E)!/5k$E)xV@I$E):U I$E)I$I$e)I$IE)!/I$ e) IHE)!?Ia1E) mm1%)*&M@1E) AI1E)*-Z$1p\m1 It011U%!A11$I$A1_W$a@P1U X$vb'fIH|VUWI$IPH_dB$X8Z `-Ina@ +*paU /4ߵ+Ǚh#qr$' Ey(/RD +=)qvۖ蹧D1 `%%=D3̏طa蹧0?4I$H$DZUU\|44I$I$%44I$I$&44I$I$&44I$I$&44I$I$%44I$I$%J4DI$ DZRUUD4I$H2$DZUUTP44I$I$%44I$I$&44I$I$&44I$I$&44I$I$&44I$I$&?4I$ 蹧?4)DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4H$H$DZ TTTUI ! !I$I$d!d I$I$d!d I!$!H$I$!_W  @$!I$I!@$!I$I$E)I$I$d!d I$I$E)I$I$d!d $@$!ࠠI$I$!^^I$I!I$I$E)I$I$d!d I$I$d!d I$I$e)/ $I$!UUU/I$!UU- $U,H)3hE_!  if$q_}&# EH^Z [ ,q(@$#%H$P!@PTU H$!|\I$I$!  !I$I$e)I$I$e)I$I$d!d $!`I$I!5!I$I$d!d $! ! /I$I$d!d  ! I$I$$!!jI$I $!!I$I$$!!# $$!!& @$e)II$$!!@$&d$$!I $!/ $H$$!! $A$C2$!@!$!@$Ie)I  $!!@@@@I$I$!I!@%) % E)$!I$I$1$E)!z$E)!@$I$E)!I$I$$!! I$I$$!!I$IE)! E)! E)!jjE)! E)$!ꪪ@$E)!zVI$%)!zWUU$ AE)!Uյ E)!I$I$E)$!I$I$E)! E)!`PPI$IE)!  $E)! $I2E)!I$E)!I$I$1$E)!E) I$IE)!I$ E)! E)!/ SqE) Nwfi ++ Of +-+ #Hz蠀%K%fE)TP@ E)!E) I$I$1 $E)!$)()(0E)!E)!@$)(I$I$e)E)*I$I$e)E)I$I$e)E)⠪$E)!IB&E)!I$LE)!I$I$$!!I$I$E)!?UnI$e)! $e)! I$I$@!I$I$@!H e)%)I$H$e)E).@ E)!p@mIE)IE) E)!I$e)E)/I$ e)E)I$I$e)E) ɐ$IHE)!!XH////.Ny1J EE)UUTTe)$!9II$e)E)$2Ie)E)h` IE)!/I$I$e)E) +I$I$e)E) òme)!dJd e)   I$e)E) .L ې-E)I$e) / e)E)e)$!9I$I$@!`$@$e)$!I$I$E)$!!e)$! I$I$e)E)*(e)%) 2 e)$! e)$! I$I$e)E)ꪪIIe)E)?**I@!AI$1E)I$I$9 1$!bB X `e)!IE)!@e)E) g?%ye)UU 園E%9IuE!@**I$J$Ee)UUTT[, `e)!p@IdI$e)!5W1E)I$I$91e) 21%)%IJ1$!*) @0f1E)ZzjI$I$E)$!-Id1!/?I$I$9 &`1E)_V^I$I$9 1E)ml1E)J$#IE!WW_IȄ$HU)mHe)UI$PHUWI$IPHݖlmP1@I۶CPf1PUI Xf1PUUI$Xf1TUUUhX1E)~^^$@LȄe)E) +1E)~P01E)H$@$1E)1e)H$@$9"0rߟ&f1&AoX 7 %rwDZf +/;/oy蹧?4@I$蹧??4I$$蹧?4I$I$DZUUTD4ِdI$DZ=UJ4H$)*J?I&EIU^[D4I$IDZUUD,c §4- ؐ DZk)/Ijʧ+UZ/J¦ /Z,I'JʧUW^4-c;DZ?4,DZD4ɐ$I$DZUUUD4[ $DZUD4I$K`DZUTT44I$I$%4- DZ4,$DZP4)~ 1#hꠀ,3hE~ꠀ" Z%q_?%Y_~ ۆmٶfa9U^ I$fQ9UUUX (B%) I$I$(B%) I$@(B%)  @$(B%) $I$A) dB$@A) I$L0BD! @91j   I9E)  $ A) I$I$A) I$I$A) I$I$A)  I$E91 n99j u:*I91 I$M-91$A$11  91 L0H91 d I9e)zꨀI$#1E)Ii۴1E)/I$1E)* 9e)j + I$L19E) $I$1E)* N$9E) + $ w91* kv91 I$H91I$I$91 ݐI$91+ Av91 $ 91 I$H BD! I$I$B$! I$I$B$! I$I$B$! I$I$B$! I$I$B$! d91 I$d91 $I$)I)  91+ /-K9E)p` P09E)%) I$I$BD! I$I$B$! I$I$BD! @9E)@ )09  $C$A91 i؆m91 $I2 91I$I$)I) $I$91  I!$91 I$I9F1   B$! I$@:1 I$H$9F1P%'1  ۖ 91 I$I$B$! I$I$BD! 91 I-91j* H91WUz 2!291}H9 -I$91/_ dJ$91 U $!ڒ9E)@M$Ie)A<ח, $$@9%)L'1^\fma1! I$I$9!@ 9 dB21E)I$I21E) @!$I$fIe)5UUU)I䆡E)=/ $)B.%y@BJ3 Ey%410lDZ 4@DZEP4HDZE4%@DZ@4%DZ 44I$I$%4 (DZa@@ H%ٲQ1TU Ib'-91 I$m 91_I$I91I$I1111I$I$1f1* жm91 dM$91* $I91  m$91_ (91* N"Xm9E) 091  @91( 91 أ&P9xxI$q_ 1}} Ia9%I℆1(> d  9e)*  I$I$BD! h4*I9bx ɗOI1A%  I 91** $C 91  "9E)@x$I1a(׾ TI4I9e) I$I$9F1 BD! 91 I91 !A$@91 I$I$A) I$I$A) I$I$A) I$I$A) I$I$A) I$I$A) I$I$A) I$I$A) A) =#9 x`II\1A/  091 $I2$91I$I$9F1  91*** I$BD! dB I91  91 L$d91 !$91+ I$I$BD! @ 91 I$I91 4j$9aX\ Pq49aIĦ1a ? $91 $91 @91* N|9$!* $$91 l[$9f1 mI$9f1 5I$91zI$91]U$I$11I$I$9 I$I$9 I$I11 I$IB11 I$m91UU* I91U #@9!z T$I9!  ! $$91 $i691  Iݖ91 ҠK%i1UURv%E9 *+,`N.E +3)`J)W --410DZ 4H$EV1" z蠠&I$J%1UTTPI$I$g9*91E)` 1E)/I$I$g9*I$I$g9*I$I$g9*$I$A211$I$$11$0I$1e) $I$1141 ``@ĉ]1 Iϡ1& I1e) 9F1$9F1H$9F1@$I$)I)I$I$)I)I$I$g9*I$I$g9* :`91b`p1ɕH1b --H(11`ضmݖl1E) I$I11*I$ 11 I11+41%)`@1 M$1bU1e)I$I$g9*LB&$I11IH1e)غ$11T6I$11xUUm۶-1E) K1$I1e)  IҺ51`Tni1 $I$1E)$H$e)E)x^WW I$E)!&L$E)z^_I$I$!VUUUI$IE)UUٖm۶E)Ib&%f1$!U+!EI$ f1!)P$e)TmI1E)  , @1E)IM1%)7 @$I$9!I$I11UU- |>. 9^z tII1 $I291/H1U=$I$H1=$IPH/d XH* u;a%iPU7 EX I|. fiU " {$%q*F 7y) %W&I2J†U M)I§UUW|4,DZ ?4,DZD4$I$DZD4`DZDD4I$I,DZUUU@44I$I$%44I$I$%44I$I$&44I$I$&44I$I$%44I$I$%D4ɐdI$DZWWD4I$DZUTA44I$I$%44I$I$%44I$I$&44I$I$&44I$I$%44I$I$&D3aDZUD4I$H-DZUU\C44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4 DZ!@@I$I$E)I$I$d!d I$I$E)I$I$d!d I$I$E)I$I$d!d $!I$I!WI$I$E(CI !** ! ! !I$I$E)$!H$I$!I$I$!VWUUII$!$!I$I$d!d I$I$e)I$I$d!d H$@ ! $!jI$I$ VW!) $I$!UUU%@I$!UU iI$f!UUc$I$E!PTUUH!**H$I$!X\VWI$ !յ)$! !!I$I$d!d I$I$d!d @$I$!I!% I$I$d!d I$I$e)@ ! ! I$I$d!d I$I$$!! I$I$$!!j $I$$!! $! !%% I$I$$!!@$@$$!II!?//I$I$$!!I$I$e)I$I$e)I$I$e)  $!!@&L$$!I$!C$!!IE) E)$!I$I$1@ $E)!zI$I$$!!I$I$$!!( $! $AE) E)!I$I$1 H$E)!H$E)!z$I$E)!^WUI$IE)!UUխ AE) I$I$1I$I$1I$I$1I$I$1۶ ۶5E)!xۆ%k&E) X^U$I$E)!UUH$I$!! IE)!I$I$E)!@ E)! IE)!?@$IE)! )(`&E)!PPI$I$)(sqE) )&`N7%y +-," -, hfx蠀"K$X-fE)TTP@[%E) PZ$E)!@I$E)_I$E)$$E)E)*@$$E)!I$E)!I$e)$!*)(I$I$e)E)*I$I$e)E)*I$I$e)E)I$I$e)E)* E)!$ %)I$I$E)!UUUzI$I$E)!UUnI$E)! $e)! He)E)J§Wz D)>UW\4,)DZ 43%D4I$DZUJ$)E4-@$IDZ?4 @$DZEPP4DZE4%@ (@1mIdE+3 If^z( m%y_6 uAi_)c fQ_ I$Hr'%q9UW~ @ $A)  (B%) )J91 & *191@ t9!* (B%) H0&A) I$H 91 ! 91* @$91* I$ (B%)  A) 'N9!^W `@9E) I$A) @(B%) Nڀ@91 I$M591 !$I$91 VI91/ mV91 uB i9e)~I$k1E)I$I$1E)* ɛ$9E) |ф9e)^ I$}9E)дM$1E)/MĦ1E) r.91 / X3`91+ IB' H91I$I211!I$9f1 @1891 91+ I$@BD! I$I$B$! I$I$B$! I$I$B$! @$I$:1 91 91* &9` OI9a.7 $I$91 $91 * 91 I$I$B$! I$I$BD! I$I$B$! I$I$BD! A $BD! I$A)  91 I&:`91 I$L91 $I91 I$91*  $91*  2I91ꨊN$|ݦ1A^^ 'J9 91 * I$I$BD!  @$:1  91* I$I$B$! H91 b 91^ꪪ $ ,9E)`t1*@9 H1l۶m1E)( tI$91 U`"m1!p &Hdw91 #D 91z IBڒ(91 I$m 9f1$C$ 11zm[ 1e)I`1E)I$m `1E)%XI$e)=U- 0 Nea )3(I 4/ VDZ *4/4 DZǩ4-DZ44I$I$%44I$I$%4@4'DZ1ppp\ `R691/ lm&91 DI91 $I8:9E)z  9 vdR91* ҆3'1AX m9 Ib'$ H91 Iim91I$d91W_~ $I11 /@$@ 11 $I$11 I!11$I$11 dRN91U m&91 @91 K D9%)* $$91 "e'91W v91* * n$91  $291 $91 $91 } I9E)( i ۰m91 I I91* $I$BD! I$I$B$! I$I$BD! I$I$BD! I$I$B$! I$I$B$! I$I$BD! I$I$BD! I$I$B$! I$I$B$! I$I$B$! I$I$B$! I$I$B$! I$I$BD!  $i9%) k9( I$I$B$! LB$@91 !I I91 E9e) $91 $91 $91 $91 $9f1 0lm91 [&91 b58v9X(*a1U$I1% I&I$91I$11* ,"1E)``N$If1aח.ll1E)I$I1f1I$I1e) I$M 91_* I91U It91տ* &I :1` I9%) $91 lغ&91~ `ۖ$91} Mc['9e)_ &'9e)@JĦ1E) M'vb'1E)I!1E)Ij1E)NB' 1E) L.EI%q1 %! Rwfi +//`Nsf*+4,Iߔn 4L$DZEVV4,[ m/-h9@@ I$I$1UUUT`1E)  1E)@$11$I$11@$I$1f1I$I$9!I$I11I$!1e)I1e)!1e) 9F1@$9F1$I$)I)H$I$)I)I$I$)I)I$I$)I)I$I$g9*$11H$11i.=1pP$I$f1WUUIt1  b$R 1XTP@!@1bI$I$g9*I$I$)I)I$I$g9*'1b`X`ɒD1bM5 I$ID1bUUU I9511plK$11TUX$I$11pUUUI$I$'9#I$IH11UU۲iH1!@Ip'if1U(ֵm۶1E)B"1"IE)P@I!%)%@$CE)!IE)! ??I$I$E)!L0E)~I$(1UU*IL 1- I$ 1E)*Ii1e)Itٶ115I$Pi1bWT0!i۶m1bH$I$9! I$ql91UUU I91U 91  &I$91$P1UU%I$H95I$IPHHPH m$E `H {.I qP+{sTfa*1Tǩfy+*=mm;@F9"?*)lȱ4(K;M,I$§=WZ-^`J†/Z-I'?J§U^x4)%P۬DZW_\4,_DZ=?4I$I$蹧?JHJ@2E jJ$) E%?4I$I$蹧44I$I$%44I$I$&44I$I$&44I$I$%44I$I$%44I$I$%DҶi۰%EPD۶mhE44I$I$%?4 $I$蹧4IIDZE44I$I$&44I$I$%D4I$I$DZUUUD4I$DZUTA44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%43$%4/@ 4DZǩ3@$@$DZ!PPPT! I$I$d!d I$I$E)I$I$d!d $@!I$I$d!d I$I$!I$I$!jI$I$!!I$I$E)I$I$d!d H!I$I$E)H$@$!I$I$!zz^^I$I$!ՕI !* I!/I$I$d!d @$!I$I$d!d I$I$d!d @$H$!xX^VI !5- I$I$E)H!I$I$e) !I$I$E)H$H$!xXI$I!Օ! @!!!I$I$d!d $H$!pX^I$I!?/I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$d!d !***$!<I$I$e)I$I$e)I$I$e)I$I$$!! $$!I$I$!/ $!/ $!$!I$!I$I$$!!@C&L$%)`z^I! $H$$!!IE)$! E)! $I$$!!I$I$$!!x! I$I$$!!I e)I$I$1$E)!@$IE)!$I @B&$!$I!*I E)!UE)$!I$I$1I$I$E)$!I$I$1 E)$!** C&E)C&I$!$! I E)!ս I$I$E)!*I$I$E)$! @I@E)0I$I$E)!I$1$H$E)!I$E)!$I$E)!H$$E)!$a$!UUNɟE0 *+IX+ $%qU(  ~$%qUI$PR'E$!UTPZ@L$%) UUIB&$IE)_^*I$E)I$ E)I$$E)I$IE) UUU$I$$! I$E) *UUU $E) *UmۖvE)! HI$E)$! LE)!((I$I$e)E) I$I$e)E)Km۰E)  @E)!(I$$ e)!UI$I&E)!UUWx$@$ɄE)+I$e)! =hmne)! e)E)I$I$e)E)I$I$e)E)E)!I$H$E)!*H@@E)!0E)! HE)ItI`P1S1Ei----&1nf &[%R)E)PPP@$A!e)E)*e)E)@!I$H$e)%)*KhE) Ԕ(I$I$E)! ( E)$!(ɐlݶmE)!@&Ce)!$I&E)!ҶiE)!$I2 E)!W^^A`e)  - I$e)%) (@e)!PI$@$@! @e)$!m6mE)!jjmve)! **Xغe)! e)! @$ e)%)A$I$e)E) /@$e)E)PP$@$e)E)** @!@1$!Z*I$I$f1e) 21!me)!I$I$E)$!@!e)$!  0C e)!Lɗ%yE)U PSf%y +Z=@fE)PP@m5e)!{c I$E)!%5L$Be)$!( 1!*I$A9I$I$1e)$@ 0f)__UX @E)UUUPH@$!UU*еmHE)U@$I@e)I$IPHI$ PH ! Pe)UII$Pf1@UU : Q%!PW__ I$!**/?1E) 1e) I1e) `$1E)Z@$1E) +H$ 1E)1E)믯[5[5E)!)If1! 5$ $1!**II$1e)IH$1e)**I$I$'9#$H2$Xf1UU .qw%yP/- vq%y ?"vIf ;1۱豧?4I$ 蹧?4@I$蹧?44I$I$&?4I$ 蹧??4I$I$DZUUW|?4 $I$DZ UUJ40r )DZ*J4,F)DZh`*J4I0# DZUe43%4,DZk,I$jʧ=UUk)?jʆ/k%紏jf40 .EH4, hDZ@\4! DZ*41%4@l@DZEP4DI&mE/Ҷmf@4I4 EW)Io*§UUu/_)I|S iJ§-\&$?jp~4SlMǡ%X~ ^c fiW~ ۍq9^z $#/mtE) I$e)$!*e)E)*Ie)$!**I$I$e)E)*E)!Mڶ@ lE)dH&d2%)!UUU^vI$E) UU!e)! =I$I$1"I$e)E)$HE)!TTۖIE)(?? I$I$)(E)!!I HE)II`P%---N$%E) VU)$I$E)TUU 0E)!$I$E)!*۰mݖnE)! e)E)@ e)%)I$I$e)E)**I$@ e)!蠀E)!(!e)$!  I$e)E) +. $e) E) I0$E)!oI$I$E)!5UWضmݖme)!I$Ie)E)<.*@! I$1"`$e)$!I$I$E)$!Ie)$! I$I$e)E)/($H$1"I$I$e)E)> e)E)```@ E)!/ I$e)E)  H$1E) 01$!h`* Ie)!?<$H @!$IE)! I$e)$! ** 1"I$H$e)E)((pN?%e1 )%PNf%hFE1`I26[% U訠.X`E!UUIBPe)UU$I$Hf1U@$I$Hf1I&ۺP8UZI$M%P8UWP!IH8  I$H)JI$He)PU۶%`PE)PUUPe)TUUUH$@$@!L1E) `1!I$H$! Wf1 )-I$I$'9#H$H$1E)` 1$!ۆm1$! +1%)I$I$1e)k&m5E)! IE)!/??? Ie)@f1E)H$I$9 1e) 1E) Xhe1*)) SwSfi--=pȱfH-}I9)§-J4I$c2,)DZUVZb?4I$ $蹧44I$I$&?4A$I$蹧?4 $I$蹧?4I$蹧?44I$I$%D4dI$DZUUO4L$ EVVO4I6)DZUi?4I$ 蹧??)dN$ ǹZz4%6` DZ*jO,tSɝ$)§/U4$K>DZEpP4)PDZ-44I$I$%4,HЪ5DZx4);ֶc;DZ~UU1)l&IDZWUU4)DZ%- k-IVlJ§սk4m9jDZ `ho'JE_1",0Ey@`ze+ s%y%+)Hf_% " %yWc EX Fmqf1WZ &1Ie!jz NI\1A.. hI$I91 (191 x;917շ @(B%) @(B%) I$`BD! @$91 i91* $ A) I$I$A) $H$BD! A) I$I$A) I$99 X`091 IB' 91 I$I&91 -Цm۶91 F i'91 hJ91 u2 m91W^I$k1E)a;Mۦ1E)? ps'9e) U SAe)~ y$Ae)_WzM۶i&1E)lI$1E) @Nn9E)* &Tl$9 V l; 9E) I$u9f1I$I$11: I$91 $&91+ I$BD! I$H BD! 091 @ 91 I$I$B$! 09 ` d9/ I 91 N' 9aVؠDI@1I91 @L$91* $91 91 91 Ȑ%9a`p  ɕ9a % I$I$BD! I$I$BD! I$BD! [lm91 I&X;91 mI9e)  $I91 @$C&91* II$91 mŖn91* + @$@ 91 II91** I$H$91 B$! @#I9e)p u 9E)  I$I$B$! 91 91 k91~( I691U~ $ @91UU$I 1E)@(TIĆ1!&$@!11 Svl91+UU DRI$91 Ș>9`x  9 -5 QlۖQ1W)I?|1-51 Pn/ *4,Mw +410 DZ *4 DZa@@H?m۶Ye!TTI$1E)UU^I$IІ1E)UUUI$I$1I$I$1I$I$1I$I$1I$I$E)$!* $I$e)E)5UUUI$1E) UUU`I$1E)UUU tI$9E) UUhڶ$1E)\XUU S9E)--U %$9E)UM۔$1%) 0I9E) ٳ91 tI$91/ I$I$BD! $$91 " I$91 091 k91 +I91 M91 v,  91 I-91 Ib'91W ے&91 I$ H91 M&ۆm91 vbے$ 91 I$91U_ I؀91 I$ 91 I$m91 I$I91 m۶m 9E)@ $I$9E) I$I91 I$I 91 I$m 91 Nb;91 I$@91U I91  $91 I۶91 cH91 I$91U lI9 m91 I@91 Imm91  M 91 l۶591 $91 $I$91 * @h9e) m۶:91_ 4Iܔ9E) 91UM'1E) 0A9e)$ͭ:9e)_ I$9E)*UUֶק9e)H$I$1E) 1E)˯+Ҳ%me)@p@  %)b%E IE) 5% IԦ`9E) [9e)ULv4n1(mضm1E) 9e)C۶Mۆ1E)A$I1E)믫L$ 1E)vb;& 1E)  9e)* IL9e)Wߪ vm91U qmEa1UUpS%fA +,`N/sE +-3)`J)W +410DZ ?/o蹧U\_1" z蠀&I$1UTTPI9F1I$I$9F19F1H$9F1@$I$)I)H$I$)I)I$I$)I)I$I$)I)I$I$)I)I$I )I)$I$1f1I$1f1$I$1f1I$I11*I$ 11 I11 11I$I$g9*I$I$g9*k&1E)!11 I$I$g9*I$I$g9* I$ I91 IHH&91 "$91W6I$11xUU@$I$9!I$I9!I 11Uյ-m1$1E)*@n1 $$I;1E)j$VN$1(ضmۖ1E)}ضk$1E)_U$I$e)E)`WUUI$I$1E)!I۶m e)!*Itݶ 1E)Uկf1!jIM f1Օ&Iڶa1E)ҰyKĆ1!I1%)$I$11I$I$9 I$I91UU I91 $91 I2I$91$I %P1UU8I$P9pb;mQH\I$ IPH1e6I `H*Or7iEyXU/}- EX*! } fq+mW%E E /!ϻr$ ;)}vі豧=??/ۓm蹧UU43 DZ D4lI$DZUUOHIEO4I&P#1)DZUZ``?4I$蹧4)DZT4%#Fl)DZ Z,Jʧ/Z)C;aJʦW~4)` DZ_P4)DZ=44I$I$&J4HI$)DZUJ4IB2)DZUjb44I$I$%44I$I$%44I$I$&44I$I$&4 DZE@@@4 DZE?4I$I$DZ5U_J4L. $)DZViEU4ܐIDZE ?4II$蹧?4$I򄧱EUU?4I$H$蹧44I$I$&44I$I$&?4I$蹧D4I$H$DZUUTQ4- PDZ O$I5%.Z3IضJDZU Z/ö'jʦO-۲-DZ!@@@@$!*I$I$E)I$I$E)H$!(! I$I$d!d @$H$!I$I$ I$I$!I$!*@$@$!`!* H!I$I$E)I$@$!I$I$!jzZ^I$I$!UՕI !** I$I$d!d I$I$d!d I$I$e)H!((I$I$d!d @$H$!xX^VI !%- I$I$E)I$I$E)I$I$d!d I$I$E)!I$H$!h|WI$I!U5 !I$I$e)I$I$e)I$I$e)I$I$d!d @$H$!`XVUI !5% H!<<$@$!@``p! I$I$d!d  $!I$I$! $! I$I$$!! I$I$e)I$I$$!! $!I$I$I !// $! I$I$$!  $!$!$@$$!I $!? A @$$!!@I $$!!I$I$1$H$e)$$!(H$I!* I$I$$!!% Ie)I$I$1 @$e)$I$H0$!$I$!I $!* @E)!@E)$!I$I$1 E)!jj $I$E)!~I$%)!WUI$I$$!!VUI$I $!! d@ @%) I$I$1@$E)! @$E)!jzI$I$E)!  E)! I$$! @$I$$!!I$I$$!!TI$I$! * IE)!IE)! E)!E)!I$I$E)$!R`)*)T wEiI  %ۆyEY @HyEYW*Ei$1z m?faEAU ;'Ea$9U-ڢM;I(@$I$8(UI$I$8(*U$I$8 !00%)UI$8E)UT$8E)UUT@AE!IE) E)$E)!Z E)!jj!$$e)! ?H@E)!I$I$1 HE)!<< E)!`I$kE) UU~ I$$!* iE)!+U@!E)!*+Ie)E)  e)E)`@ )(Ie)!>>*HE) qWqiP--PMdE) I$H$1"@ e)E)|I$I$E)!!Ad$E)!+۰mnE)! I$e)E)LȄ$Ie)$!((I$I$e)E)*L E)!I$I$E)!*$e)E)U@%۶e) PX e)  H$e)E)%^H&@ E)!\Xp@ I$e)! %5U$A$C2e)$!!e)$! H$@ e)E) e)E) I$I$E)  I$E)! *I$I$e)E)$I e)!/I$I$e)E)I$I$e)E) *>H$@)( I$)( $Ie)E)%$ Ae)$! I$I$9e)E) e)$!I$I$1$A!e)!@$I$e)E)e)%)NI%e1 %6A fE+- 3 fq~c EX_ Ol miP_I$ H`PUI$m `PUתI&%`E1PInh۶Xe1TUIX@E)UUUH%)$!!e)!@!K e) <<  @!0-e)!1!k&h5E) ^\Xx1Se) %%$1E)H$@$1e)I1e) H$@$9 1E)H$H$1E), 1$!jhI$I$$!! 6`e)! 1E)I$I$9 9I$I$1e)ɐL۴mXE!5pWFX+/-/fnf++--9+w+豧J1?)DZUUUJ4d$!)DZZP J4I$I%)DZUUUX?4I$I$蹧D4 $I$DZUUU?4I$I蹧??4A$I$蹧?4I$I蹧?4HDZETJ4!n $ DZ) UO4bK*%*)§JJJDۖDIE?۶mø$ǹET4ڴ E41%41,%4,{$DZ^W/,I#1E@``3Fn DZE%Z(| )†k3In۶jDZ Z3$JDZpVOPB&dEPZZ-I$ EUU1H E4+y4DZ3+#ѐ@z1" m~ꠀ( cШ$%yV  hfi^]c %%I %ii1U^x  J90 (B%) h59 ` `ɗ9 / $I)91 49!. `@(B%) I$H BD! I$I$B$! I$BD! @ A) I$ A) I$I$A) I$I$A) I$I$A) $(B%) @9e) m; ,91`1! жm۶91 hR$91 ma91 H9e)~ꨀNb' @1E)IIB21E)wI$Be)*U /B1^ oX Ae)U_ I$I&1e)M$H$E)b PJ9!  Iۖ91 t"` 91 I$ 91I$I$11ꪪ!$I$91 ` $91  S91 I6IH91 ,9e)` #N9p* IT 9- I$H91* 91 @$91* $@91 I$`91I$I$g9*&Z#9!j \ɛx1 // "i 9!` u 9b- I$I$BD! I$I$BD! I$I$B$! I$I$BD! I$I$BD! I$I$BD! IB$I91 ml91 I$H91I 91$@$91  91+ H$ $91  91 @91 $@$:1  $:1 H$I:1 $H$:1  I$91  91 I$I$BD! 91 'Ky9! Iҵ091_ I$X 91U I$m91_W"1!`1  vm69f1/SI%$)% %_ɗP?=/Msf +3+@ >489pp 91 It91 M&X91_~z c@91UM1E)^IB҃@1E)UI$1E)UWI$-1E)UUxI$I1E)UUUH$E)a^E) I$I$1I$I$1I$I$1I$I$1I$I$1 $I$1$I$e)E)UUU$$I$e)E)UUU`۱؆1E) UUv$1E)UUжI$1E)UU `I$9E)UU D9E)U4Imk'9E)Um$1E)U 0n$9E) U $9E)U @m9E) i9E) D$$91Umۖ$91U  $91 U $91U  $9f1 $91 $91 $91 'p"'9axXX 9ɑ\9a -%% $I29e)j V9( 91 H$91 $91 mۚ$91m611 Im$9e)   $9E)U @m$9E)U $9E) lm9e)];1E) жI$9E)UU жI$9E)U F.9e)Xm&1E)жMڤ1E)*UUIt1E)+X6k1E)I$I$e)E)* 1$! *7NR'k"1%)I$I i1%)֓1E)I$$1%) "ا9e)+ NhS'9E)Wz_mĦ1E) F֭:9E)@C:Cֆ1`zzx1+I$I1E)c:$-1E)Iĉ 1E)?cҒ1E)-WN=1 p m9E)  9E)* I91 !H$91 9e) $91U  N$91UU mI$91WUU LI$%q1 %UEX /Mw+)4,Iߔn 43DZ4,[ m/-h9@@ I$I$1UUUT $I$)I)P&1b`XIɔ15I$I$)I)I$I$)I)$I$1f1 $1e)$I$1e)I$I$9!I$I11 I$$ 1f1IH$A1f1*I$I$)I)I$I$g9*I$I$g9*I$I$g9*I$I$g9*I$I$g9*K%۶ 11TP !I91 I$91  $91~U H:I$91UU`$I$11XUUUI$I9!I$ 11UUIH11/H&-1 @$ڦ1E)%m1`pX`I1%5me)!@I$`E)a׾(mlE) I$I$1I$I1Im 1E)UUInۆm1E)I&!C1E) Ii1E)*Mۭ1e)$ N1$ 0I$11J1E)T0I$I11? I091U &P&9`X  ɔD15 @$I$91$I%P9UU  %I;P9 H$PHWWI$IPH I۶i aPU+ InY %qP Iv fX }$fi 1){-mE/ F!Iߕlf A(vV蹇<=/߷ȹUC1蹧?4I$I 蹧?4H$I$蹧?4I$I DZUUWO4IDZEJ4$m! DZ O(131 E```Dۖh@E?/c۰ 蹧4,@DZZ-I$Jʧ-UUZ,'jʆ~ꋿO)v)§UW_4,p I$DZW43%D3DZUUJ41p)DZjhD4I$lDZW?)$I>:ǹZZX4%`DZ44I$I$&44I$I$%44I$I$%44I$I$&J4lI$)DZBUUD4I$X$DZUUPQ?m{'DZEy\\?۶mmDZE44I$I$&44I$I$&44I$I$&D4ɐ$I$DZUUUD4I$ DZUTAO@R$I%*J/§4/iV-DZǩ+* 4@$@$DZ!PPPTI$I$E)H!((I$I$d!d @!! $H$!I$I$!I$I$ II$!I$I$E)@$ !ਪ ! I$I$E)I$I$E)@$H$!I$I$ ~~I$I$ + !  ! * I$I$d!d I$I$d!d I$I$d!d $I$!I$I$TWו! I$I$E)I$I$d!d I$I$d!d I$I$d!d  !I$I$!A ! I$I$e) !!I$I$d!d  $!`I$I!Uյ$@!I$I$d!d @! I$I$d!d I$I$d!d H$I$!II!///I$I$d!d I$I$$!!. + I$I$$!!I$I$$!!$H$!XVII!- @$!I$I$$!! I$I$$!!$! @$$!I$I$! I$!%IIe)$2$!$I$!$$!H$I!$! $AdB&$!I$I$1$H$$!!PP$I$I2$!`$I$%) XVUUI!@$!+A$IE)!E)!I$I$1 E)!$I&E)!W$I$!I$I$!*IE)!E)!ꪪ$`&%) XXe)!I$I$11$@$1 $Ie)I$ e)I%)$!E)$!I$I$1 $(%!UH$%)(TU$I$%) WU$I$$) WUI$I$0*UI$8 U`w$$I U Pr$EQ)U  I-'eY$)U mEI$!$i$f1b$$I$$)~@$I$ bI$I$ A*zI$I$(*I$I$0 *I 0 I$I$80UI$I$@8UUUI$I$@8I$@E)U@ $@E)UUP@@%)UUUT@$E)!PZH„E)VI$I$E)! I$E)! E)!I$I$1 e)E)j*kE) ^`I$L&$!ݐvIE) +e) I$I$1"I$I$e)E)I$I$e)E)?nI$P8)UUP 7a8 /I$ e)$!I$e)E) UI$I$1 H$@ e)E)W^RjH$HE)!I$E)! $ E)!  I$I$e)E)I$A$e)E)e)E)b*I$H$E)!I$I$E)!**I@ )(e)E)  )(B2dBE)!@@ZI$I$E)!UUUZ E)! !A$Ae)$!e)E)@I@E)!? $C0Ie)!$E)! E)!  e)E)5I$A$e)E)I$I$e)E)I$I$e)E)蠪@$@$)(@B2E)! E)!e)!L e)E)(  $e)E)< P `B&E)!$@!E)! ++I$I$e)E) I$e)E) *( whe)%`7ei +-$m fE+- 3f%y~  Hf$qWݶ$%E1@P۱ie)PUUUI$I$f1e)I$I$f1e)ꪫ00e)!H$H$$! )ie)! // 0e)$!$A$e)$!@$e)!II$e)E)(@$1E)h%@4f1!Xxxp dH&$!***Zabf1! I$I$9 I$1E)  '9# 1E)H$I$1E) 1E)I$L$E)!~~| ɐ e)! H$1E)I$I$1E) 1E)z1E)I$I$Pf1UU 7qw%qP//-DNUnNa+A !B) $q A3N蹧?4I$I$蹧O%mӶ)†OIxE E5*D4I$I$DZUUUT?4I$I蹧44I$I$&?4I$$蹧??4H$ $蹧44I$I$%? ۶ȱED),v蹧pݵ4J$DZETT4R%DZEPX4hDZEy1) l&DZz^WU/)$I! ǩ%4[i$E`ZIv4A)%*Z30 68JDZ "rk,ێ$J§U3$mDZ$1"h۴M4۶M 4%DZ4DIDDZE4/&DZǩ1,زmax3 K'%yTT/CI]) iE_ Sc fi_ۤyfA^ t+qa1UWx #$IAe)zꪨ 95 9e)@ O}9 `@$I91  I$)9e)@ 6oΙ9A& m۶m91 $91* @1e91+ (B%) I$H$A) I$IA) I$@$A) $I$A) @=9A` y\ɑ9A)%- I"' @91 I$I&91 vm۶91  $91 / IB91 I9E) I$j 9E)I$d21E) &9e)%UU  Be)芫 O$h9aW޸)i% h1!ݐi۶1E) Rvi;9e)*/  &91 Xal91 $`$1A\$IB1 $I$11 Prmk91 #5۶9E)p` ɗTP 9E)5%  I$H BD! I$I$B$! I$I$B$! H$:1  B$! I$I$BD! I$91** I91{ 5J9%)' @ 91 $I$91* @ $91 91 I$I$BD! I$I$BD! I$I$B$! I$I$B$! I$BD! H$I$BD! I$I$BD! I$IBD! mm91  $ 91 d$d291$I$91 I91  $@291 $ 91 I 91 I$I9F1 I$:1 I$:1 91* $91*'1~ @I9E) * I$I$BD! 91 IB$! mm91 I91w΀vp+`1 !`-Pq9jE&I$MۧUՃUe#'x')҆1z\\^$I$11 `SN$91 UU  Im;91U 91U )I$91  91>x$1a`x\ SI 1 - I4H91 N' 9A^ ikJ 9! Ch9E)WꠠIҶ 1E)U I+h9E)UWI$ 1E)UUI$ @1E)UUI$I1E)UUUI$I1I$)(I$I$1I$I1I$I 1I$I$1I$1 0E)!`E)!I$I$1I1 I$e)E) +@$I$e)E)e)E)I$I$)( )(I$I1I$I1I$I1I$I1I$I1X&X,E)bPxIɐE)a-$C$ E)!IҤk E)()(I$I$e)E)* @!I$I9I$I$9!$C2 1E)I$I1E)WW_I$I$e)E)I$I$e)E)++ $@$1E)+  1E)I$ 1E)W_ I$ۊ1E)Uՠݰk61E)/ _ Ć1E)UN Hdw1E)U+X1E)/`۶c;1E)__b;mۦ1E)@IMf1!շd$I&1E)~__II1E)$C2!1E)I$L1E)i 1E) u:d;9E)_~ I41E)* v 9e) mMX1!4 !7  9e)  v 91  A91 `91 [ l$91{$`1bX\p O/W9 - &I$91UU@2dB&11__*-R#(1`@qdIDf1b+?I$I9!I$!I11UUIۆm11UIm6`11`R6g?%y1 %&`N7%y +/1" w +4/P VDZ41lDZ3(Z ࠀ,K%-1TP@@I$I$)I)@@1` I$I1a  $I$1f1I$I$9!I$I11 I$ 1f1I„1e)#1b@ DId1UH$I$)I)I$I$g9*I$I$g9*I$I$g9*I$I$g9* I$I91 I$91 m ض%91z @$91^U H'I$91_UUH$I$11TUUUI$I9!I$I11UUI l11Ul&11_m$1E)X׶M$1e)P$[1f1p|pH$IE)$I$e)E)H$I$e)E)I$I$)(I)(I$Ie)E)IH1E)U I$I1E)I 1E) mn01E)*In`11 $*91`"%Yd15D 1 ۱m 91UUխ I91U )91 &I$91P#$I1` ;EI @$8H1PH $ IPHMڵvXP + InI %iP+uY EX # i+)M aVV?iqVf+=(=ۓ* 豆4-1IR$DZ MC5CE`bzOHB E 44I$I$&?4I$I 蹧44I$I$&?4 $@$蹧?4I$A$蹧43 %?ۖsȱE-J4$ r)§**J4d0m)DZZ``D4I$I%DZUUUP4H=e1P4 Xe1 '%5OH%% *M%ͿPk)†4(mіi DZ*4)%DZ5?4I$I$蹧?JD&dB&EZZZDЖiAE?4I$I$DZUU_|44I$I$%44I$I$&44I$I$&44I$I$%44I$I$%44I$I$%DKm ET4  DZE@@@4 DZE44I$I$&44I$I$&44I$I$%?4I$I$蹧?D4H-I$DZ\C?/ ȹ֪4)l؀ DZTP,H$I$!TTUUH! >>I$I$E)I$I$d!d I$I$E)I$I$d!d @$@$!I$I$!WUWVI$I$!I  !! !  ! I$I$E) ! I$I$!jjzI$I$I$I!** @$!/>I$I$E) !!*I$I$d!d H$H$!hxX^II!%-I$I$E)@$!I$I$d!d I$I$E)I$I$d!d $@$!`xXII!5%I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$d!d @$I$!I!% I$I$E) !!I$I$d!d $H$!PXXI$I!- ! I$I$d!d I$I$$!! *I$I$$!! $!`pI$I!WUյ! @! $!! $!pH$I$!=$!I$I$e) 1 @$$! $!@`H$I!//$!I$IH$!UUUIH$!U$H$e)I $$!!P@$@$!I$I$!* Ie)I$I$1I$I$1$E)! I2d$E)H$I!/ I$A%)!սE)!I$I$1$E)!@E)! 11H$@$$!!I $!!I1I$I$1$$! P0H$$! TU@$I$)UI$I$(UI$I$ aI$I$AI$I$AI$I$AI$I$AI$I$A. *I$I$!a H'I$9boH$I4%)AjI$ $E)j $i&%)bʪI$I$!A(x $I$!AI$I$,I$I$ AI$ $ A*NI$(* $0  8) I$I$@9I$I@@_I$I@E)@I$I$HE)UTI$I$HE)UUUP @$E)!PX E)!$A!E)! *)(I$I$1 I$I$1 knE) I$k%)II$%) UUU@!e)! -I$I$e)E)I$I$e)E)I$۶ P8UUi)X8I$I$e)E) $ &E)!Pe)E)I$I$1  E)! @$E) XPI$E)! /?Ie)E) I$I$1"I$I$e)E)@ E)$!I$I$E)! I$E)! *$LH&e)! >e)E)I$@ E)!* @ HE)!p@mѶm&E)!5UWE)!@$e)E) I$ e)E)HHe)$!(((L e)!VII$E)$!**0E)!!@E)!H$e)$!4E) @p؆m`E) II$1I$I$e)E)  e)%) @$ @!DB&$Ie)E)PPA  e)!€@%)$!$Ie)$! I$I$e)E) I$Pe)pSq%yX+/ Sf%q +--, r+)-&@$E)@PT H$I$e)TUUU@ 1E)I$I$9I$I$9@hde)!<L$d&E)! I$E)!/?_@e)$!!IIe)$!e)%)H$@$e)%)Ie)E)  `e) H$H!\()ɖtf1! - 1E)1E)  1e)II$9@$@1E)I1E)-ڠ &e) IE)!/?=H$H$e)E)IIe)E)e)%)I$I$1e)I$I$f1e) `vhe1*)pwq`/- [NN%yZ*C,ln ?4蹧Jl$H&EZTTX?!ېmm蹆*J4bI$)DZjUJ4I$[B)DZUUZ44I$I$&?4I$I$蹧?4@$I$蹧?,E۶m:ȹz4JL E4/ DZǩ43$%4X=&mDZEXp1iF1۶MDZF**Z%۷mJf/Z3I۰ajDZ *Z/0'Jʧ"^O,''§_U/#iv`3(yDZ/*4) WDZ43$DZ4#hDZ@4o`$IDZE1 i4,4DZ 41lDZ4-# HDZ1&@( '%qTTT% Ch%q꫁j?EXX\ %ٚdp9~ @"i9UU^ A) A$I$99 I(B%) H9$!@ I8%H9a>  91 k491 Im91 I$I$B$! @ $A) (B%) I$I$A) I$I$A) ۲m6`9e) I$I9E) I$(B%) #I@91 IR; H91 I$I'91 6m۶91/ ` vh91 *iJ91 3 h91_I$1E)I$I41E) I$9E)  9Be) ~ Be)_+I$}Ae)UW~I$I 1E)+`OĦ1E)N&M1a^ )TЖ9 * lт2A9E)Ѹ-{1!>UDII1E) 4I$91 ` I$91 P91 I$BD! I$I$B$! @(9!` ذ\I$1a,U $I@9E) I$I$9F1 $!91* d$@91 I&91 I$M%91I$I$)I) @!I91" I$91 91 I$I$B$! I$I$BD! I$I$B$! I$I$BD! $I$BD! I$I$BD! 09` úmۖm91 m6l91  I91Q '9e)11 !$I$91 I$91/  $91/ 91 I$H91* `$I$91 R&9e) IH$:1  91 $H$91 I 91* I$91*o?Q1??5IiH.~UUɝ܆qX Syf$q-----")N ,p'9\VWW I$91} I$ H91UU^i6m91UUUI$I9!I$I$9 $-*I1@I$IE)a՗,1awk1$! ** XI$91?U m691 $H$91 $91 Im91 $C$I91 NR۶ 91 Inl91  k@ 91 Iĉ) 91U u2I9E) NB 9E)W IB 9E)U* IR9E)U I# 9E)UUIl1E)Uu'j1z^xyy[@1I$IH1E)UUU۱ 1E)UUUI$I1E)I$I$e)E)H$@$1 )()(I$I$e)E)* *Ie)%)I1E)I1E)I@!I$I$e)E)I$I$e)E)I$I$)(I$I$)(I$I$e)E)***I$I$e)E) **@!I$I$f1e)$ 1e) **$ 9 H$H$9@$ @!I$I$e)E)I$I$)(IIe)E)  !1$!B#)9%m 9E)U_Il۶ i9E)UUU11E)+ n6 91UU+ vbې9E)_ i9E) M091U/+ v@9E) ImH9e) i091+ &i*49`KI$1a I$9* m9e)  кm9$!@N$Ie)a>U( &I9%)$I$91UU`$I$91WUU@1!@I$e)a(UI$ 1$!I$ 11UUI$IH11/mӶ`11I11 1$!I I$)I)I$I$)I)I$I$)I)$I$)I)$I15UU`S%eA ++`/E +3&PJr -410 DZ *4/R HDZꨨ1" z蠠&I$J%1UTTPI$I11*I$ I1f1 I$1e) I I1f1 $I$)I)H$I$)I)I$I$)I)'L'1b^Xɐ11 I$I$)I)I$I)I) I$IH91 I$91 m691  $91U m;I$91WUU@$I$9!I$I11UUU5I$ɶ11UUIm11U6X&11Zm$11_Uضm$1e)$I$1E)$e)E)$H$e)E)H$I$e)E)I$I$)(I$I$)(I$Ie)E)Ie)E)? 1E)I!I1e)*Im 1E)It611U5 11 #91``Xf1 %%`5@ `1X` ItT9%  I 91 $91 I&I$91I$IeI1UUU%$ К$P9Uկ='NֆA@^WH$HPHI!IPH*m6I `H* . qP . EX  qyw% fi*1InT ȩE 9!\ ȱA&iqV蹆)??+4D E4D=JذmTJ4dBr$Ar ***4KIED4ɐ$I$DZUUUJ4[B,ɖ)DZZbJ4I$K2)DZUUVh?4I$I蹧??4II$蹧???4H$I$蹧D1DZ|OO?DId$'hE?4I$I$DZ5UUUJ4ܐ $)DZ*UJ&R#'f1`X(x$I$e)\WUUۦYE!5,m۲@f$1U"v$)†/UUR"s?.[Jf~M+I$;§U_|4)`DZ 5?/vb}ȹ_?J-`m)‡-D4HeۖDZ0D4I$ۂ-DZU\@44I$I$%44I$I$%44I$I$&44I$I$&44I$I$%44I$I$%D/`蹧pD/m۶ 44I$I$%44I$I$&44I$I$&4 IDZE(44I$I$%?4A$I$蹧?$)"(DZ!@@@I$I$E)a !* @$!I$I$d!d I$I$E) !H$I$!I$I$!^WWUI$I$!A !bB!  ! ! I$I$E)$@$!I$I$!Z^^VI$I$! ! I$I$d!d I$I$d!d  !I$! !I$I$!VWU ! I$I$E)I$I$d!d I$I$E)! * !H$I$!^VWU !-  !(!I$I$e)H$H$!> @$!`pI$I!UՕ5I!I$I$E)I$I$e)I$I$E) !H$I$!Z^ !+ I$I$d!d I$I$e)I$I$e) !H$I$!XVWUI!% I$I$d!d ! $! $! H$I$!\VUU $! I$I$e)I$I$e) I$$! @$ !@$I! @$! I$IH$!UUU H$!I$IPHL„ $P$!TTTPH$I$$!!TUUUI $$!!H$I$!!%)$!I$I$1 I2%)j$I$!WUI !I E)! E)!I$I$1 E)!@$I$E)!^WW $!  LȄ$!<< $Ie)$!! $!!$$! @T$I$$)_UI$I$ bI$I$AI$I$b!I$I$A_7I$I$A"I$I$A*I$I$ UeI$I$I$I!a*I$I'1AA$I$)b+II4f1I$!$)*?e)AjI$1?I$HB"E) UUVEII17I$I$ jL $%)OI$N1~=I$M E)uI$I$e)J*I$IB$%)I&$1 [$A%)*I!I%9 IB&@IHIҶ@ lQHI$mPE)UPI$I$HE)UUUT $E)! E)!II$E)!*** E)!)(E)!M&[E) W^x!I$%) 5UU0vE)  -I$I$e)E)I PH** yW9qP-/// $I$1dB$AE)!XI$H$11 1 E)$!訪I$H$e)  E)! /= e)E) 5I$I$e)E) e)E)pH$ E)$!E)$!IE)! E)$!I$I$1  H$)(L&@0E)!TXp`B2$AE)//E)@ @e) P@E)!e)%) $L$E)!@$E)! H$@ )(@e)E)ުE)!E)!I$I$1@$B&E)!HZ۰ ۖmE)!I$I$@!IH$e)E)*H$H$1"dH2 &E)!$@ E)! /E)!@$PE)WoiP- 7q1Wfi/---,0!S$E)@PTII$E)!WHLE)! ! e)E)I$I$9I$I$@!He)!<X5h6E)!H$$!()e)!  e)E) Ie)%) * `e)  e) @!I$H$E)!W^\\ IE)!-55I$I$1E)I$I$1e) I$9I$I$9I$I$9H$1E)Pр e)𠀀II$E)!WI$e)E) e)$!I$I$f1e)A$I$1E)I$I$1E)fm&Xe)REX//-1psqE /6(dn/sDZ --?1|÷蹧J4$I$)DZ)UUUD4Xmɖ$DZp?4I$@$DZUUPJ4ɐI$)DZ%UUJ4L!)DZVJ4II1)DZUUh?,mmȹZ4-PDZ43$%4,-DZh4)،ն$DZhxUU)% 4ec۶afj?/OO)E/ Z4m۶1jDZ jZ,>$Jʧz_U4)֖L$DZWW,)HI$4)Il@DZU/41 0%43DZ4-$#'`\3-X$I$PUUU3 MB$E PP4IEU 44I$I$%41DZ 4DZ @4!ৱ3J$EyTP/ iEy,K?HiVT%}ii騀~Rc e`_#ɒ#-q9Vh 0XH9UU^ (B%) (B%) I$@A) I$I$A)  (B%) (B%) I$ IA) I$I0BD! I$I$B$! I$BD! H$I$BD! @(B%) I$I$A) I$I$A) I$I$A) I$99 9f1 I&*I91 I$N991I$I$g9*  I$91/ Xt91 "@9f1h I&ۆm9e)zI$I41E) 8I$9E)? I$Be)-pWB1^ I$@Ae)UW I$I&9e)I$I$f1e)I$1E)/ tI9e) @91 I& 91 I$I491I$I$9! I$91 @91 P$#1apX` IX1`9a%  $$ 91 @91 I$I$B$! I$I$B$! I$I$B$! I$I$B$! k `۰m91* I$I91 $I2$ 91ꪠI$I$)I)  $I$91 I91 @&91 B$! I$I$BD! I$I$B$! `$X-1PTP@ 09  @$I$BD! I$I$BD! N&9E) $9f1 I91 I091直 I$ 91I$I91 !$I$91 @@$C291 @ $91  91 I91*  91I$)I) I$I$91*,,P9%%%I PH+* yW7uiP-// 1Sf%q--/ - 8,59` hI4A1 I$91** $91 91 I91 L$I91 Im091 MH9e)i9E)* I$m291UUI$11I$I 11$A$11// I$I$11$I$11$I$11 I$91 UU ֶI$91 dI$91 $I?9e)_ $ m;91 &hm91 91 @91蠀 Imж91 ٺmn91* I$I91 %J'1ap\X 1b h91" I91 IB$I91 $I91 M[ 91 IҶM91U C6 91U* vm91U IM9E) q9e)U Im9E)U Im9E)U Im9E)U Im9E)U Im9E)U I2$9E)U OI9e)U Iu9e) m91U I۶m 91 I!91* I91 I91 IB9f1 t,ـI91 #5 H1a` IDP9A5 hm&91 @291 I@91 $291* h;91W m491 m$91 U I$91WU жI$91} &I$91UU"&I1!@I$t Qf1aIx15 1E)$I$f1a VVDIt1I$ I11I$$ 11mnۆm11 IBH11M $I16I9F1@ @$9F1I$I$)I)$I$)I)I$I$)I)I$I$g9*I$I$g9*I$I$g9*I$I$)I)I$I$)I)I$I$)I) .`sa;%q9%5U Ryf$a +- L$%qVVV4+Mo 43 DZ 4,[ m/-h9@@ I$I$1UUUT A4f1!I$I$g9*I$I$g9*L$11VU11I$I$)I) #Ւ 1x $I9E) IH91 $91W  891WUX$I$11VUU$ 9 I$I9!Im11U+ IlRH91տ`$11V$m;1E)Hd$1E)$I$1e) 1E)z@$1E)ZU$I$f1E)^UUI$I$)(I$I$)(I$I$e)E)I$e)E)?I1E)I 1e)*I!1%)*m 1e)*I`11 $@$11 $I$11I$I$9 .I 1  ygJ 9 0`91  H$91 @$I$91$EI1UU=P$H9U @$I$HeA $IPHMҶXH mm'@aPU - qP & E` }6 fi*)6 E /r$ f 1%qYn C/gc%D1ɿa蹧?4$I$蹧?4I$I$蹧??4@$I$蹧J4I$)DZUU?4H 蹧??4I$H$DZUUT|J4I$)DZ%UUJ4I22Ē)DZUjbD4IlI%DZ44I$I$&?4@$I$蹧?4I$H蹧44I$I$%4(p$e)@XVf1%) %I$I$9H1E)׾)if1%Pv܆E/p׾اf*믷M&j)†O)o;o)§Ux4)1`vKDZ54)DZD4ِ$I$DZJ4#m$)DZ)UJ4L2&# DZVX?4I$I$DZUUW\44I$I$%44I$I$&44I$I$&44I$I$%44I$I$&D4ْ I$DZCD4I$H,DZUUTA44I$I$%44I$I$&?I6`۶mDZE44I$I$&44I$I$%4@$@$DZ!PPPPI$I$E)I$I$E)H! *'I$I$d!d  !  !I$I$!kzI$I$!UյII!*I$I$E)H$!(I$I$d!d I$I$E)I$I$E)H$I$!I$I$\VUUI$I! !!I$I$d!d  H$! !$@$!`hxXI$I!ՕH!I$I$E)I$I$d!d I$I$E)H!*$@$!`xXI$I!Օ%I$I$d!d H!(I$I$e)I$I$E)!H$I$!XVUUI !% $!PI$I$d!d I$I$d!d I$I$d!d $H$!hx^I$I$!I$I$d!d I$I$d!d $ILAIH!I$I$!`AI$IPH I$PHdBP!PImPUMmPUI%PUPIPUUI$$ P$!UUI$HP$!UUTI$IH$!UUUI$IH$!UUUd$I$H_WUTI!5I$ H!UUH$!I$IPH*Im `H/ ?!h!ZZR@II$$!! H$Ie) E)!I$e) C&%)~@$I$$!XWUUI $!5 m۶6$H$!UUUI$H$!UUU H%)UUU @H%)UUUH$IH$!UUU$C$$b@!UUU! I@!UUUII$@$!UUU$0$!UUU$$! @T$I$$)AI$I$AI$I$A>I$I$A#*I$I$AI$I$Aڨ I$I$ AI'I E)]I$I$f1A=oI$H$$!h OI<9bN$Ib8f1}I 1 UFuUI0$I2%)*njA!! mضE)ul۰mgf1ۆmۆ1I۶-e)AcضmE)ꢪ??1|M6%) Ir9 UQU] ȓ'1IĎcE) U? ȓ$I'9I I$E)!JI$I$%)AKI$%1  N%I *IB!$QEA +m%YP_ @XE)@N$[mP!UT@Ie)  E)  E)!jjj!!@E)! I$I$)(@IE)!**m6X E) VZx I$$! *avH%) PH 91qX----$C2 E)!h!!IE)!I$I$1$A&dBE)!*XX)(I 1$C2$E)!I$I$$!!?$AI$E)!_Ue)E)e)E)`)(k&XE) XPmvivE)!?I$I$E)!(1  $E)!B$@E)! $Ad&E)!UWT E)!E)!@e)!I$I$e)E)//`00E)!`mE)!/?1  e)E)I$I$1  )(H$@$E)!dB2$AE)!ZE)!@$H2e)$! $e)%)A$I$e)E)@00e)!`II$E)!?LB&E)!A$H$HE)II`P5*N$%E) JVUI$I$1 L$H&E)!VT\Xmle)!    @!@$e)E)$H$e)E)(@!Xe)!I$I$e)! e)!//?I$I$1"$A$C&e)E)(hXe)E)$ɄLe)E)*@!k&X5e)!xxp`L$I$!>>**@f1$! + 1E)1E)I$I$9I$I$9$ 1E)C0He)E)@@I$I$$!!m&E)!  Ie)%) *I$I$9I$I$1E) 1E)j` PE)U /qWyqP//-+ vy$q+/?"wy f 41ِ DZ **44I$I$&44I$I$&?4A$I$蹧44I$I$&44I$I$&OȸLْE4)!0DZ 41,%4,mP$DZW3% iN$WW)% O,߱ § O1q)DZZ)۶m=?jʧ^O)o §x_WU/)`%dBǩ\[_/)IFǩU4,y DZ=-44I$I$%4/4DZǩ4/ %M$DZǩ4/I$IDZǩ/4- EHDZ4@EP4 E 43DZ43 DZ41m۲%DZ3/$I3R& 3(D3if/!/@~ꨁ,3 iE"  i$qc E`_~ V'h9Z X9UP  $P9UUP P9UUU\ I$I$(B%) (B%) $9E)`` I1A* $ H91 I$L BD! P59!`` 5I9a . @19f1` 91 I$BD! A) I$I$A) I$(B%) (B%) L91 I$d91I$I$g9* lI$91 غmِd91 m691 uՐ@9e)ꨀI$d1E)$I$1E)* I$9e)/ (Ae)+ &{'9|| mqB9 mפM1E)I$1E) * M9e)*  91 K`91 I$X`91I$I&1f1$I$11 I$91 W 691/ `91 I$HBD! I$I$B$! I$I$B$! I$I$B$! I$I$B$!  B$! I$91 @I:1 IB&91 I 91 dB&d&91 $I$g9*  91 $$91* @91 I$I$B$! I$I$B$! $I$BD! I$I$BD! I$I$B$! I$I$BD! I$I$BD! I$I$BD! I$I$BD! `91 $091 I$H91I$@ )I) IR1 vm91 `Hd$91 $ !91 #&X2&P9%  !XH//yW7%yX--/&1Np E--- -B"$£%9PPPXH91H 41 `Jy|1 -5 !!"91 H9E) * H B$! L91   B$! $A$91 @$B$! $I$91 IB$! L91$91ꪪIH11/ IҶ691_ I$km91UW&`:1!x6b1!h&m&E)ZZxJt1 I$I$11I$I$9  11 @$I$11 $I$11 I$91UU#͒$I1A`0i&m9E)) dvb'91UU vI$91u mm;91U  I&91 @I$91 @I$91 жm;91 жI$91 m$91U  I$91UU  I$91UU  I$91UU  I$91UU  I$91UU m$91UU Ķ91U D91U Զ91 жI$91 Dm;91  Im;91W m$91U Dc;91_U dI$91WUUnit11 -5[611xֶI$11UUI2I011UuI9   11I$I$9 H$H9 !$ 11I$I$11&Z91E)xTI1E) I$$ 11I11IB11 I11 I9F1z]1A  I1E)I$I$9F1Ŧ1$!H$@ 91I$)I)H$9F1 I$)I)H$@$)I)I$I$)I)I$I$)I)I$I$)I)I$I$)I)I )I)I$I )I)I$$)I)$11$11٪#چ1!xR9%yE) %5% R7%y /1 PNs ++4/P VDZ41lDZ3(j 蠀,K%1TP@K1!TUT1! I$I91 NB$91W߿ I91 $91W Ht$91WU H'I$91WUU 2 11}I$I$9!II11IҶl11UIB I&11a[&11p_$$1E) ضM$1e)$I$1E)$e)$!H$1E)~U$I$1E)WUUI$I$)(I$I$)(I$Ie)E)+I$ e)E) Ie)E)/i۶m1E) I$! 1E) I6%1E) Il$@91 in$91_&I$11H$I$11I$I11? I$I191UU IZ91J$I$1bWUT I4I1 9F1I%81UUU$=I$81U%h$I$98UUU P8 %I$IXH+Iضi `P }.%yP*6W fa+ ( o@%yU+*-m#E3I/=(ۖȹ*4-i$+41ɶ DZ*43DZ?4I$I$DZ5UUWD4X!I$DZPAUD4I$K DZUUTA44I$I$&44I$I$&44I$I$&?4H$I$蹧44I$I$&44I$I$&OIEJ4I$  DZUeA?4I$I蹧???  I)ȱfQ@4 %H$e1PTUI$I$9 A$1$!/***I$I$9@1E) pIEyf1%5@RdU:EP *j% O`/%1w O+I$)§ UO)9l)§^x/?%vi>蹆x4)1sDZ44I$I$%J4ٖ I$)DZ)UUD4K$ؖDZ|?4I$H$蹧44I$I$%44I$I$&44I$I$&44I$I$%44I$I$&D4ɐ$I$DZUUUD4I$DZUTA44I$I$%44I$I$&4 DZE@4PDZf 4H$H$DZTTTUI$I$d!d  !I!% *I$I$E)I$I$d!d $@$!I$I$!zZ^^I$I$!I$I$! !@!* I$I$E)I$I$E) $!I$I$!jzZZI$I$ ՕUI !** ! *!I$I$d!d I$I$E)I$I$E)H$I$!^VVW !---I$I$E)I$I$E)$!!I$I$E)H$I$!^^VW !- I$I$d!d I$I$d!d I$I$e)$H!<I$@$!`pI$I$!@!PI$I$e)I$I$d!d  !@I$I$ ֿI!+%I$I$d!d $I$CH!UUH!I$IPH*I$AXH IviPU &qP ݶ$p(PHI$X!UU$?'` U$m` Umm$X!UmK@`(I$m `PU_I$$ `PUUMҶ[ lXPUUIB$ XHIB$ XHI$$ XHI$IXH*m&E `Pտ*.W%X+ }. fi+ h%yk2> EHZXbiHI$$ PHI$$ PHI$PHI$PHTB%$IP8PP $IP8I$IXH IB2$ XH$C1HP8```ɖ``P0I$@ H@^Zzx  80``I$I$0zI$I$ bx^UI$I$AI$I$AI$I$A I$I$ U?I$I$b I$I$$)IIE)!jI'1Nİmۆ1 WUTUqXmE)$m4mf1c ?Ǧ9OI! 7|1AO9I$I(B!UUUfmfE) 9 A$I9!QWU 9?9o6ۉmE)@ !0@I$I%)!U]UFlvE)Lje)Ah6lE)bI  @͒$H6E)nI&I$E)! A$d$%)A)*@NIeA* wEYE1 * $C%aEQ @EaX_ u: ma%)Z`I$L$XE)UUTP@E)!ZI$I$E)!* E)  IE) *E)!m6X E)!W^x IH!ɐP8 qS1%yX--- I$E)!$H!E)! HE)!I$I$1$@$I&E)!*ZI$I$)(@$E)!@$E)!ZzjII$E)!U I$E)! **I$I$1 @$ )(@ E)!I$H$E)!$!E)! / I$1@E)!IH$E)$! (X4:E)!Xp`鐶IE)! !IE)!I$I$e)E) I$I$e)E)؊$H$E)TTI$H E)!@$E)! H@$)($@E)!PPH$@$)( )(I$I$E)$!0 E) e)$!!I@e)$!I$I$e)E) *( E)!@I$I$E)!!HE)UI$I$PH $I$PE)@PPTI$I$1 I$I$1 `0 E)!p`@ IE)! %5 I$e)E)L@$Ae)E)*((H e)%)( @!H e)!L$H&E)!II$E)!?I$e)E)UU@E)!(@Ie)E)I$I$e)E)H$I$e)E)@3, e)!` $!*)f1! -@ 1E)zzЦkef1!*ޘI$I$9 f1E) @! @!kHE) ɖte)! %$ &e)!I$I$9I$I$@! 1$!$$e)!1e`$1 *)7qS1wfi--6/qqDZf+C-ȕU?4I$H 蹧44I$I$&44I$I$&4- DZ4,jP DZ4/ DZǩ4/P %DZǩ4%DZ,%`&`B$4l˶| En"O-I`)§յ/O4)§O")Ehj4J sDZE-%JD 4,ɟ|DZ% 4-DDZ 44I$I$%4/@P$DZǩ3/`$IDZǩ4/I- DZǩ 43%44I$I$%44I$I$%44I$I$%44I$I$%41`Xd%3/ ɐ DZ31 $31 $I$31 313 I@3(eI/If꤀(3XhE~" ~c mfq_SkE`W~ ORc %yP Ib;d iPU `'϶IH__ ֣P9U\ *IPX9UUV` :9!, H$I$99 I$I$(B%) H I9E)` kH97 #;-91ZVZj )T91 - L&$A) I$IBD! A) I$I$A) )9E)` 9$! @Ҭ=91P l 91 Ib'91I$I$g9* $I$91 6I$91? ۊm91 ՒH91_ I$i9E)I$I&1E)Xme)!p  $9e) - K91| I?H9E) '9e)UU $I$1$!nI$1E) M햤9E)* !91+ v"ڒD 91 I$91WWI$I$9  $I$11 I$91 &91+ $ 91 I$@BD! I$I$B$! I$I$B$! HB$! IB$! I$I$B$! $H$91  91 I۰m91 * i۶ۊm91 I$L2919F1 I$91 a$91( lۖ91 91 I$I$B$! I$I$B$! I$I$B$! I$I$B$! I$I$BD! I$I$BD! I$I$BD! I$ BD!  91ꪪ M$L]9bVW^0 I9 +  M&[ 91 I$d91P$J$P9 iv`H/yS7E`--)` E--++,H$K$9TTVU L $91  9$!` IN9 / *,@9$!b`If1A..lݶm91$$1e) C2$I91ꪪ I I91 0`B291I$I$)I) @H291  ɄI$91 $ID!91*UJ$1A  9$! @$ 91 # 9E)^z*F 9E)+ m @9!~  91 I 59`@ 1 I$A91 mmm91IB11 I$91 i91 mҶ91mҶ91U_I$$ 11m6m l11I$ 11 $ 51` $I1  m6mm91I$I1f1M$mm11WW~I$I11UUUI$I11UUUI$I11UUUI$I11UUUI$I11UUUI$I11UUUI! 11UIڴm11DI 9E)1 (91$C2$ 11~~I$M 11UUI$! 91u} Ibۤ$ 91UU i91dB2 11IҶ91UUim91U Imm91 IB& 91IH1e)I9F1 91H9F11E)$I1E) 91$9F1I 9F1 $I$C091H$I$)I) $I!91I$I$)I) !I$91믿{$M&1aV^ $I1 I$)I) I$)I)I$9F1I$I)I)H$$)I)$I21f1$ $1f1*L$1f1H2I$1f1$I$11H$I$11I$I11I I11/ #1E) m$IEY15UUw%eA +)P7wEy +/3%@Js -410 DZ *4/R HDZꨨ1" z蠠&I9UTPP -691 m;91U D۶$91UUh6I$11UUI$I9!I$IB11UUU I$11UU I`11 611z$i;1E)HҶ$1e)@&I$1E)`$I$1%) 1E)@$e)$!$I$e)E)-E)@ E) I$Ie)E)I$e)E)Ie)E)/I$I1E) I$!I1E)Im1e)* Im7l91U!AH&11  mO'9%)^ I$9E)I$I11* I$I91UU* I91U !91+  H$91 H$I$91PI1bh8:P1UU -?tnۣ@9 DP8SI$[`P8UUZI$I@8UI$IH8 XiR`8-mEP /" }4 $q*+4 E/ r$*=)Mv豧)??C/I蹧UD1蹧?1m6蹧?44I$I$&44I$I$&?4I$I 蹧44I$I$%D4ɐI$DZUUD4K2$ɖdDZ5?4I$I$蹧44I$I$&44I$I$&44I$I$&44I$I$&4,ȋDZJ4ɐI$)DZ%UUJ&lú9$9p4'I$DZE)pVUU)e)  I$I$9@$1E) e)$!@@e) ;ae)UU 1fiaE1 &ɔp X%%+ / p S++/-4(L;4!$@%-DZ *hOK%%*J!_#†z4)IDZ u4,DZJ4ِ$I$)DZ)UUUD4H2lDZTD4I$X%DZW\p44I$I$%44I$I$%44I$I$&44I$I$%44I$I$%44I$I$%D4H%ɒ$DZ\s?4I$I$DZUUU\44I$I$%4 DZ@@! I$I$E) ! !** I$I$E)$!H$I$!I$I$!VWWI$I$! ! ! !I$I$E)I$I$E)a@$H$!I$I$!^VWWI$I$!UI$I!* ! @$!$ !ࠀ !  $!`I$I$ ~* !  !%% I$I$d!d @$!I! >< @$!`pI$I!Օ5 !  !%I$I$e)I$I$d!d I$I$E)H$I$!X\VWI !% I$I$E)I$I$d!d I$I$d!d  !@$I$!pUUUI$I!UUյI$I$!?WV\$CH$?I$I$!`AI$IPH*m6E `H+ɟoW%yP }. fi %-@$E!@PUH$I$%!TUUU !H$I$!\VW  !- $! I$I$e) $! H$!z^$I`UUU$I$`!UUU$I$X$!UUUHI$`$!UUI$`$!UU % I$y!*UU -WN$E) U/ $$)U)H$$!U" #Z %y^zc EX Ob $qXU Ib$ $qXU Ib$ $qXU Ib$ $qXU Ib$ qXU Ib%qXU $'%qXUIA%yXUc$ %qX_ S i%iP_NR;k Y@m[5@`I$I$ VI$I$!I$I$b*I$I$ a+I$I$! I$I$ I$ ! 0IbiڢE)?u1?,۶ce12$C!$BdHE)J9mvmA!UUI$Il f"I'I"%!UUUOI$IBJ%!UUU4I'I" !U]Ubr&L EW*I$ aUI#a0UI';H)U^I$uUUz-I$I&ș!UUUX$ɐI%) 8E)&1!@8mE)j@!LM&]%) ɓI'9|ILȄ`&E)!WT\HE)!  )(I$I$1 K  E)d$0E)! I$E)!/? )( )( )( 1I$H$1 IE)! **I$I$)(A$I$e)E)I$I$e)E)I$I$e)E)H&`$E)! H$!IIPH*** IPE)TUUUI$I$1 I$I$)( E)!I$I$E)!WVe)E) +)I$I$e)E)e)%)I$H$e)E)(@$H$1"`$0e)!I$I$$!!@!E)! HE)!(I$I$e)E) *I$I$e)E)I$I$e)E) $He)E)@$I2$E)zzmviE)+))+e)$!@$@!1E)I$I$f1e)$e)E)II$e)E)* k%X5e)!XPpp IE)!%5`Ie)!e)E)H@!1$!說! e)!H ĂHE)/q/wEX/)-)SE+-3+p R )?3?蹧=D4I%dDZ54!LDZ@ 4/@T$IDZǩ,43II$%4--&DZ3)`$I$DZ|WUU/%M$mSAJ)y}§UU=O)g )†O3&)DZ@XO!P:o†z-!afŠ 1! In *4)I0DZ/43%4/(DZǩ4-%tb'DZ3-mIDZ 4/iQI$IDZǩ+43$%44I$I$%44I$I$%44I$I$%43$%41@$Id%41I %43@DZ43I$@DZ43I$I$DZ33I$I$33I$I$3-@3/$I$ਪ3-mu`*1I`/d@f)3@E_#  H%yW  Hfi_Sc mE`W# l%yX_ IR'ciP dBX9X &`P9UUX (B%) I$HA) I$I$(B%) Ւ* 91d9$!,  I91* I$BD! A) I$HA) '9A`X` ɐm9a %  j9 @9E) 9J$I9f1%  I$(B%) k9e) IB' @91 I$I$91I$I$g9*  I$91/ -&91 dC6@91z I:#q9E)I$L1E) $I$1E) I$9e)?} H9E) u"D9E) cǀ @9e)W_@I$I'9E) $I$1E)  $1E) M%9E)" 91. M591 I$k9f1I$I$11 $I$1f1 `[I$91  91 91 I$BD! I$I B$! I$I$B$! H B$!  B$! I$I$B$! @$I$:1 $A!I91 $$I91 L91* I$@91 I$L091  )I)  $I$91* I$91*  $91 I$I$B$! I$I$BD! I$I$BD! I$I$BD! I$I$B$! I$I$BD! I I$BD! H$I$BD! I$BD! $ɒ"%Q9UH$I$EIHTUUU-R`8** 5qS7fi--/, 4)A@ I$$ 91 I$L91 !$C91H$I$)I) $I$91* K1i۶m9e)&$ 0$C&1f1I 1f1** $I$$91 $91 I$I$:1 $0C91I$I)I) IH$I91 "R$M91J IZ%9aW 4I&m9%)  $a91I$I91 A$91  I291 I$I91* h&@9axxIXP1A-- $AL$91  $91 $R91`  I1a 5 L$91* $91 I$I$9F1 I$I:1 I$I$B$! H$H$:1j"'1Axx )m9A -   I$BD! I$I$B$! I$I$B$! @$H$:1I$I$9F1I$I$9F1I$I$9F19F1 I$I9F1 91 I$I$B$! Ӳa۶91@ O"!I9׾( @DJ91 I$I9F1 I$I$B$! H$@ :1 I$I 9F1 dB&91I$)I) $I$91 I$@:1 $I2d&91@$I$91 $I!91 $IC91H$I$)I) I91 $2$$91I$I )I)  I$91 )IH*91oO$1aW$HI1!I$91I$I$)I) dB!I91I$H$)I) SAm9e) I$H$)I)H$91H$I$)I)ضkۦ11 11 *@$H$11@$ 11I$I11I$$I1f1I$1f1IB1e)I91 91$9F1 9F1 9F1 6I$q1%U]EX_-  dN%q +4,no 43A DZC,c;^CdC$ fQ`!I$I$1UUUTI$ C11UUu+I11U In11 1IJ$91`&11_$m;1E)@$$1E)$I$1E)H$I$9$1E)H$1E)$I$e)$!I$I$1 I$Ie)E)*I$Ie)E).b": f1zzI1`e)b5% I$I1E)*I!1%)*m$I 1E)* m$91U I %91z M$91_U $I$11I$I$9 s% @1!\X 9N9%) 0`91 @$91 $I$91I$I$9F1 |1b\H$H1U?$I$H9=I$IPHI$PHm6I `H* Iv iP EH_ I/EHU }4%qP }s$ %y`*, %y %UU3$ Ey4/IV DZ 416DZ?4$H$蹧D4 ِDZDIdE?4H$H$蹧dCEiQ #6X5Ea%Axz9`&$9`I$I$!AkbI$I$ bjI& &$!b $ %)eI$ @$)  @!dBdHE)!j y1I'IFi-rI$I\ ))UUIf1N%1U*I U=I%aM%IoWIB$Gb.*U3vJ$Io*k.m۶N*߰}᏶mݶ.y~⼻t~ ڏ`4~4ɐ.*.h$n& JʫOdy$2NѪj#h$IꇡzO20WI$!UUz!I'Ƀ$qU_u\I$I$1!QW_E۴mvE)*1l۶Lچ1!EUEZ I۶E)bǟ9ALB%);I$ 0e1J $I$$)/`J?eI IeaEA / m6Eqfa +ђ@Eq`MB&$q%)VX@I$E)!E) *I$E)! *HHE)!<@$$HE)iviXH/9%`---I$H$EE)UTTTI$I$)(H$@ E)!I$I$E)$!I$I$E)$!I$I$E)$! A$@E)!@ E)!$C IE)!j$ILE)!UUV$A!E)!**@)(I )(I$ $E)$!I$H$E)!  E)! //I$I$1I$I$)(H$H$E)!X4:E)!Pp@)ItE)! %5HH$)(I$I$1 I$I$)(  E) I$I$$!!I$E)!?LLHE)!<I$I$)(IH$1I$H$1I$I$E)$!*)( e)E) /%I$I$e)E)I$I$e)E) HE)UUI$I$!`A  PE)@@PPH$H$11 HH)(I$I$)(L$`&E)!V\XX E) I$I$e)E) e)%) @$@$e)E)@$I$e)E)e)! !E) *I$I$e)E)**I$I$e)E)***I$I$e)E)I$I$e)E)***II$e)E)-۲ ;E) |xxx$A$E)!@e)E) @!1E)I$I$99$ 0e)E)`X-ҭe)!`@I$I$E)!UA$I e)E) e)E) @$@ @!@!,e) l`Pe) O9W%qX/,rX555+1%` N )41DZ 4 DZE@4-dI$IDZ 3/0DZǩ3)P$DZW-% )&b"%1%mYADZO%}qբ)†=O$$I)E J%@:)†p~D%]ɝ蹆-)$ID$4)DZՕ 4- @DZ44I$I$%4-#;DZ4-mۉDZ4/IT$IDZǩ/43$I$%43 $@$%43H$%44I$I$%43 %41,Id%41ɖl0%43I%44I$I$%44I$I$%44I$I$%44I$I$%41,%41ۆ%K$%4/R# DZ4/TI@DZ33I$I$31I$3-[ml1)#_1%CI_-3@W(3 E  if%y^ S# fqWCd LEa_zRd %qH_z 7qbH9` `H9UV` IQ9UUUT @9E)@ O| 9ߗ V@@91 I$dBBD! $H$91 vI$9f1* HdR91 ٰ91 $I2$C0A) I$BD! $I$A) I$I$A) I$A) [2n99Z N6*I91 ۭ91I$I$g9* 1I$91 閤91+ K591 CH9e)z M;i9e)~m۶i 1E)-I$1E) @ v9e)* @n91ꪫN"ɀ@1E)I$X`1E)m6m51E)퐤I$1E) ` $9E)  91 91ꀪ i&91 I$kl91I$I$11$I$11 I$91  $91 t91 I$BD! I$H BD! I$I$B$! HB$! I$I$B$! I$I$B$! H$I$9F1 91 91 H$:1 I$:1 I$A :1 I$I$9F1I$I$9F1 $I$91* @I$91* $91 91* I$I$BD! I$I$B$! I$I$B$! I$I$BD! ,0P9%%%I PH** _i85= ! ySf$q--/ , 2!R"$9@@PP I$I$B$! I$I$BD! I$I$BD! I91 L91 &I09E)`I1! %!I$ 1f1I$I)I)I$I$)I)I$I$g9* $@!I91  d$91 I$91 LC&91 @$91 `091ય  I91  91 I$L91@$@ 91  !H91@$I$91 !I91 &M$!9E) N$1!( 3ݖm9%)` IUK$H1% I$LH91*  91 &91 @a91 #:91z^ H191$b'1 dI1A B$! I$I$B$! I$I$B$! 91 IB@291 I$91 I!ۚ$91 I$M91ח  91 I$I$B$! I$I$B$! H$H :1I$I)I)I$I)I)  I$:1 I$I$B$!  I&91 s$9E)^W &m9e) I$I91  A$I91  I&L$91 $C!91ꪫ I$ 91 @ 9F1II)I) d91A$91 $IH"91o дN$1a $@A9E)  $I291K~$I1 6n11 H$91I 1f1*  $I$91I$I$g9*I$I$g9*I$I$g9*I$Ig9* m6ma91M$M91UU׾ i91 IB$A91  91  B$! I:1I$I$9F1 @$9F1 9F1H$I$)I)H$I$)I) $)I)I$I$)I)I$I)I)1wO9))% R7%y +A nqq蹆/D-}UUH1IDZUUUF1ݺm` =j%Iȩ1PP@&11@_ m;9e)h$1E)I2L$1E)$I$1E)I$I$9$I$$1E) I$1E)$I$1E)I$I$1"I$Ie)E)I$e)%)*I1E)1E)I$I1E) I$$ 1E)Ii11U= m 91U Im&91 M$91WU $I$91jUUUI$I$9 I$I11/ I91U+ II I91 @$91 $I$91I$I$9F1I$I$9F1$H9UUU$I$H9UI$IH%1I$IPH I$IXH*mn `PU* - qP wbO EH__ q4fP &}$%y*-v$f 1 L2) %yVB1 I觩EyUUT@ I$EEyIh4I$DZE U4DZE44I$I$%?4II$蹧????4蹧D4Kmö DZD4I$[ DZUUP@?4$I$蹧D1mǹE``@? `ɶmDZE44I$I$&?4I$I蹧?D۰mL$E*VVD4H,ɐ$DZTAUD4I$X$DZUUPP44I$I$&4س$e)xT HO$fYE)TUUUkX5E)dB&$!``ِmnE)!@! @! 1E)I$I$9H$H$@!$H$C2Xe)55psy%yX//-1tqǩ%y+/-F%I. +H1 ) 41&4%m DZ@J%y} †=J)?7[)§^rD)>§U_\4)IDZ 544I$I$&D4 $DZUD4ۂmؖaDZ@?4I$H DZUW\@44I$I$%44I$I$&44I$I$&44I$I$%4@DZEPJ!HR$I%*?R%H$ȱ!PPTTI$I$E)I$I$E) !I$I$E)I$I$d!d @$@$!hhI$I$ Z^UUI$I$!I !j*//! ! !I$I$E)  !I$I$!jzZ^I$I$!I !+/ I$I$E)I$I$E)! /I$I$d!d  !I$I$!^_WWII$! ! I$I$E)I$I$d!d I$I$E)H$H$!ܼI$I$ջ*!I$I$d!d I$I$e)I$I$e)I$I$E)@$H$!pX\^I !5% I$I$E)I$I$E)I$I$d!d I$I$d!d @$H$!`XXVI HUUH!I$IPH*ImXH+ oWqP }. f`*0!H$E @TUH$I$f!TUUUI$I$e)I$I$d!d I$@$!I$I$! I! ?> @$!I$I$e)I$I$$!!\VUH$I$!\\VUI$I !Uu$!* I$I$e)I$I$$!!@$!I$I$E)$I$$!II$$!!(>I$I$1H I$!I$I$E)aI$@!^^!@$!1 @$e)$$!I$!I$I$$!! @$!PPI$I$Q$!UUUIhIfq$)Шlm?fiEA ШcO?eQ$!~X&M6%)I$ e)_NFf1cI!*@!!mۉ;e1b %Y7I$kj)UUI$(իݒHoFc7}.Jڣ`hڶ.*ژ}m6mѵ.?p$$I jڪh$Ire JڪcӶ ٶm Jڢ*wӤLT ⪦wUvo[.ۿhYm[NJڶ.znڮF.$ ) >zM[mN>eJ$Y@ ΋/NW(IH*ڄhAm&^-Jڡ8#mIzI'#i U^7I$I?ȡ!UUUXmvf1!@׶mE)"C۶mvE)N$E)bII1>I$I$ a ReA ?P .fiE9 + fyfa -- u2&@f%ql26h%y$)X` I$I$$q%)UUUTI$I$1I $E)! I$@$HE)iviXH///+ywuSE`----H$J$f$!TTTTE)!I$I$)(I$@$1I$I$E)$!I$I$E)$!I$I$E)$! **@$@$1I$I$1H$ E)!VZj$@$I2E)!Uې E) $E)!(TH$H$1d2CE)!II$e) I0CE)!‚!IE)!@$I$E)!I$IE)$! **I$H$E)!WV\I$2E)!@!E)!  1 C$IE)$!IB&`B&E)!IIE)!տ?$I0E)!`@@E)! @$@ 1I$ 1I$I$E)! E)   0E)!E) I$I$)(@$@$HE)IIPH++ PE)TTUU$@E)!1@ )()(`$ &E)!pp`xvE)!%%%5$E)!I$I$e)E) ***I$I$e)E)I$I$e)E) :I$I$e)E)I$H$E)!IIE)!??I$I$1 I$I$)(I$I$e)E) E)!e)!-e) p$!***(e)! DLDe) >@! e)$! I$I$9 e)E)p!C$He)E)AŠI$I$$!!|\aٖe)!  Ie)E)/?  @! e)%) `۶de) <P?? DO`8 >%@OfP )/ @JS++-4+^{M$ 31%3- [-DZ*3%$DZW,!kX%f4%n& DZ[Y Jn$ E) Z3%B"5JDZJJjj4I$H&DZEUTX3iME)-% E $* (4,ITDZU7/ 41 %41,%4-L$DZ4-II DZ?4-@ DZ43I$@$%43$I%43 %44I$I$%41$%41H$Id%41I %44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%41؂$%41[%۶%41%44I$I$%44I$I$%43@DZ43I$DZ43I$I$DZ31I 3+$I,?@T1(P/&M$Z~,"$C@z*)%FzZik5D>fFy_ 6faj (@%q`_6`EPW  %yP c qH dK'X9UZ  %Y9UUU@ A$I$A) I$I$A) X09e) I$h`9f1  ! 91 ** $@$$91 6`閴91 H$A) !0DB0A) I$BD! $I$A) A) I$A) @(B%) #$91 Ib'" 91 I$I&91I$I$91 I$91+ 91 #$91 NH9E)ث i9E)I$I$1E)`[N$1E)*ɐ1E) 11p #)#'1bx f1b/I$I$1e)`۶c;1E) MI$9e)  91*  $91* M91W I$k91I$I 11I$I$11: I$91* @ $91* )H$91 I$BD! I$`2BD! I$I$B$! @91 I$I$B$! I$I$B$! H$@:1 I$I$9F1 $A$:1   :1 I$:1  Ð 91ﮪ* m۶$91x$I 1E)$@$91 $I$91  91 д91 $91** ,P"&P9%%  !XH.[%y@+=55&1NE---),B"$J$9PPTT H$91 91 I$I$B$! A$I$BD! I$I$BD! P5 @9!`` ɛ>A9* I91*  I$I$BD! H91  Tb$9!*V $@I9f1 LB&$I91I9F1H$@9F1  2!I91뫪I$I$)I)I$I$)I)I$I$)I) H2dB&91 4gM$9E) @I91 ۺ591 I91 $I$91*O 9׼( T m91 `91 $@$91* 91* `& 91 I I91 #6I91~* 1i$@91 j5 9x 9  I$I$BD! I$I$BD! I$I$BD! I$I$B$! I$I$9F1I$I$9F1I$I$9F1I$I$9F1  B$! I$I$BD! I$I$BD! I$I$BD! I$I$BD! @ 91 I 91  91 I$d91 }"9E)W* 0h91  $$91 ۶$91 ku91 !@$91+ HI$91L$91 `m91  $I$91$I$91 vi91kNN'@1ި`I 1E)1f1 11I!I1f1* I$I)I) Iڴ691I$$)I) IB@91Pػ?1! T $9e) I$:1 $B$! H B$! $I&91 B091 $I$91 @$I$:1I$I$9F1I$I$9F1H$9F1  9F1I$I)I)I$ 91$H $11$IL$11 H2I$11 m$I$$i1UUU`sy%e9 ))P/wE +//R2iEPPR4 0DZEy 41[-`DZ?&X?f)I$Z%f1UTPP  1E)I$ C1E)I$$1E)﫪  1E)H$I$e)E)I$I1"I$I1E)I@!1E)I$I1E)*P$e)\$In1 *  m$ 91UU mJ91U* ٶ$91 $M$9f1 h$I$9f1I$I$9! I$I91UU I91U IW91 I$I$BD! I$I$B$! I$I$B$! H$@$:1$%I1UUU`$P9U B:cۣH95 ɖlɶ P8I$ PH Iڶm XHIviPU .%yX - E`տ! }6 f$q*)m4E 19If+ 9&=Xȱ4,m$ 41ImDZ 43 DZ 4J(DZET@4I$K-EUUT`I$I$h,I$I$EUUU4PI$E%U4%DZ?4I$I$DZ5UUUD4,I$DZ?4 蹧J").! FJDۖ I$ǹEUU?ö lDZE?4I$I 蹧D4I$I$DZUUU4JDZET44I$I$%D $DR$I2f *jD8{$ȹ$!`\UI$I$e)E) d&`B2e)E)\XP`X3,:E)`  I!b $ E)!@e)E) ,e)!H$e)E)(I$I$@!@$$@!NM֤A* SqiP/- N1wfi /--7.vwȱe D-@Ns *D4I DZU@@?4I$I蹧 4%@ DZ@4) خ8DZ5U]PJ%Eq)†?%۠O蹆4!mDZ *41%D4ɐI$DZUUD4`DZD4I$[-DZU\p44I$I$%44I$I$%44I$I$&44I$I$%44I$I$&4H$I$DZ!TTUUI$I$d!d I$I$E)I$I$d!d I$I$E)I$I$d!d H$H$!I$I$I$I$! !$! !! I$I$E)@$@$!I$I$ V~~II$!!  ! I$I$d!d  !!>$@$!``I$I!WՕI!***I$I$E)aI$I$d!d I$I$E)I$I$E)@$@$!II!?/I$I$d!d I$I$d!d I$I$e)I$I$d!d  !I$I$! I$I$E)I$I$d!d H!**  !IHUI$I$!`AI$IPH*m6E `H+ɟoW%yP -WN"$E @PB$I$EPTUUI!I$I$d!d I$I$e)I$I$d!d @$H$!II!??/ @$!I$I$$!!/)+ I$I$$!!@pX @$!@`ZI$I!Uյ%@$!I$I$$!!I$I$$!!I$I$$!!*  $!$! $!I$I$$!!< A$$!!H$$!I$I$$!!U- $I$$! I$I$e)$@$$!!$$!H$I!*I$I!>7I$I$e)I$I8!UUUH]$Q!D?EQ _ն$EAUX۶m$%1!x_UUбmE)?H۶m4%)avl۰f1 UU! y1A.IIJ U- 8zqڮmcɞ-eUQU;.UUT]OI$I.ѹmۺ kܗI$IUUuO@uF^gضaۏ?z$Iɐ ⪪}$I- ⪪:j$I ꪪRm.*ډw6m;RZm۰mN)Ҙ*΅3NlƗɖl6P!  `PquS7qEa----H$H$f!TTTT IE)!%5I$I$)(HItE) 4UUI$I$1HE)! E)!jj!@E)! I$I$1I$I$E)$!dB& %)!UWVZ @E) k5C3E)`E)  1I$H$E)!~x E)! -%I$I$E)$!*I$I$E)! I$I$E)$!*( 0E)!XXp`!E)!魥  AE)!//*I$I$)(5hE)! E)!ÀI$I$$!!( I$E)!$@LE)! * H$1 $I$1I$I$E)!$A!IE)!**+CHE)!@E)! HE)UUUH$I$HE)$B"B$P!@@@P IE)!%5)( I1@$I$1 1L$ E)!II$E)!@$AE)! **I$I$1 I$I$e)E)He)E)(I$I$e)E)H&`&E)!I$I$$!!**@$E)!E)!e)E) E) @@mɖlE) ) HE)!I$I$d!d )ɐe)! -LHe)E) $A&L$e)$!9$I$e)E) 0e)E)pp$H!e)E) L$L$E)!VT^VnIE)! I$I$e)E)??? I1"L$Ae)E)*K`e)!< I$e)E)(vҕvX1 fP +d7Sf+/-3+`S )3) I"+6DZ ~1h$L$ETVV)i$EUJvҺ-Yf_*O!iJ$I)f) J!5)fhOImE/P"A$IEP3٤M$ F4-e  DZ?43 %4-@,DZ4-$IDZ4-IX@IDZ? 41 m۶m%43I$$%43I$I$%40(DZE@``@4 @DZE41$K$%41I$I%410%44I$I$%44I$I$%44I$I$%44I$I$%41$%41%I$%41Id0%43%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4-)DZ4)kb'p^U-(زMd,@f@,&$I>Ez)9K$ExVUI$EEy(IJEyUU ( *I%i+ h%i*# E@ S#)f%qWObd faUOZd%XU u8`9Vh a9UUV @$A) $I$A) A) M&[a91 I 91  A$C&91 V`i91* IA) !&@A) IBD!  A) $A$A) $I$A) I$A) H@A) NB:91 I$v91I$I$g9* 퐤I$91* I$91 #[91+ mB)l91_I"'9E)I$M1E)!$I$1E) J$e)a\XIĉa e)a-6,`"&1appCe)a %%I$I$1E)I$I$1e)mۆ1E)/`K$9e) m햴9E) HA$91 v"DI91* I$91I$I091I$I$9 M۴-9E)*j DNm9f1* A-g91/  91 I$BD! I$I$BD! I$I$B$! @91 @ B$! A$:1  :1 I$I$B$! >ȧ9xp IJ1 %- $@91ꪪ IB291ꂂ I0$ 91着 M۶m 91I$H$)I)P%p$P9 ivXH//++yu7EX//)` E--/+,ɟ$9TUUU $I 91 I :1 I$I$BD! ,X&91x\  t91*  91  :1 I$I$B$! I$I$B$! 91 ~.ߐ9!W0 $I9%) 91 I$H$91 I91* @ $BD! H91( I91  91 d91 uU91W !I91 [91 Im 91 I$I91 I$I91$C2$ 1f1I 11** I$I$)I) A )I) I)I) $1f1H$I11*I$I$)I)I$I$)I)I$Ig9* @!A91 $I$91 @&L$91 I$91 @$91 $I$:1 $I$:1 @$I291 $I$91 I$91 I$91 &L291I$I$)I)I$I$g9*I2dB21f1I$I$9!! 1f1 I$I$9F1@$@ )I) 11I$H$11ꨠ 11 I$I)I)I$I)I) M&m;91 Im 91 I$91 mҶ91 I91 ! 91 9E)6 IB$! I$I$B$! $B$! HB$! $@$:1X&M&1%)XVX Afm9E)N'' 1!VX0 4I$I9E) vm691 $IX91I$I$9F1H$9F1 9F1I$I)I) I$I$9F1 $I$$91H21e) 91@&L$1f1C&a11 $I11*I$I118I$ C11I!11/IH1f1*  aN$i1UpSwfi /--` wf+4+Mv )43DZ3@DE*/mHe9@"?~$ǁe!WT@1$! @ $1e)I$H$1e) 1E)I$I$9I$I9Im1E) Il۶$ 1e) Ib$91U l"I9Z @m9$!  6I$91@$I$11I$I11+ I$I 91+ I 91 1)I91  I$BD! I$I$B$! I$I$B$!  B$!  H2fA9UUU Wjۧ98(-M$P9+@$I$%IHPUUUI$IPH I$IXH*m&E`PUկ* . qP . EX }- fiտ% m%5 %y ,4 E*/ 뒤$3(qv$ *4-I$DZ*41ɶDZ 43DZ44I$I$&44I$I$&44I$I$%4-DZ4K=EVp3I$I&DZEUUUXI$I$h4I$DZE-UU4 dE43%?4 $I$DZ UUD4 ɖdDZ@5JL I)EVJI)IE44I$I$&44I$I$&44I$I$&4(DZa@4%}$`x~IvlE)a+I$I$e)E)$C2$Ce)E)bbJ$ E)$! I$I$$!!TT\$!E)! $!e)E) P8e)a`mۆme) @!`e)Р H@e)$!MtmڦXe) pSywE`--+N/SE++/-3, D3蹧?D?@ I$豠D4I$KmDZ_4)DZ@4%qKDZ`?%%ϙȹ?+q!ǹEB4QtE*4, DZ ?4I$I$蹧?D4`ۖdDZ?4H$蹧?4I$I$DZUUU\44I$I$%44I$I$&4 DZ!@@H$@!* I$I$d!d   ! ! I$I$E)I$I$E)I$@$!wI$I$!UUՕII!*I$I$E)I$I$E)I$I$d!d I$I$E)I$I$E)H$I$!I$I$$!BI$I!I$I$d!d I$I$d!d I$I$d!d I$I$E)I!>@$H$!I !/I$I$E)I$I$E)I$I$d!d $@$!j$I$!H$I$! !/ I$I$d!d I$I$d!d I$I$e)I$I$d!d $@$!`xxII!5%I$I$E) !I!<5%dB&$IH!UUUaHI$I$PHI!IXH+ IviiP+}.W EX/ 0!H$E!@TU@$H$!II!55% I$I$E)I$I$e)I$I$d!d  $!I$I!?!I$I$e)I$I$$!! j $! H$I$!^VWU !- H!I$I$$!!^ZI$I$$!!  !* I$I$$!!=I$I$e)I$I$e)II$e)I$I$$!!hXVUI$I!<I I$$!! $$!I$I$$!!$$!H$I!* ! !*  ! @$I$(a^WI$I$(AI$I$ AI$I$ *I$I *.* $I$CE)bjضE)AI$I E) d$I$! If?d@E \$yd Jڪ\m>l.)*z*p km۶e˾-JڱΕI&I4NYUeI$I.UUUXP$Â,KNjw6IT$H ⪪wm۰km I$CNJڨjpP$ ⪦@kGۦ%AN*ڣ*逶m۶د΅mۦnm۶1 djI$Nb UUWϤ} ꪀ@z≪eRI INJڠm$R$Aj.k)*vn: o{röm- k⢪jhMݶ.*ڻ*檫z!$M⩩ꊝw.i Ejt":I(ZkI$N&J!UUVxdH IE)*  I$9!EUWse)j";e)*k*I$M&%):A$N'e1 IfQ p qEA ) &gN.Ny +)"&Ez l22 if%1X`I$ɏE$!UUUT!hH`$)Ii`P=--/11qEi----H$H$f$!TTTTI$I$d!d !E)! % E)!E)!I$I$E)$!IE)!@$E)!* E)!E)! @ E)!Zj I$E)!U E)!jj* !AE)!%)H$H$E)!`2$CE)!xII$E)!UE)!I$I&E)!I$I$E)!E)!‚  I$E)/ $E)!I$E)!**h`E)!\P)(I$L$E)!~|| E)! /I$I$E)$!l۶dE) I$I$E)$!I$I$E)$!I$I$1 IE)$!  `&E)!kX5E)`  E)!-%%5 e)E)xI$I$e)E) I$I$e)E)I$I$@!dB&$ e)!6a[M:Pe)-Ey@*75&PNX /0AfF,#mۧ) IIDE(DI0%տ*J4 m۶m)DZJ%Z)†_4"IDZf`⪪,ɔL$ f%%4)IvQDZUU5/4/DZǩ 43 %4-(r$DZ4-N$IDZ?4 @$!PP3Pɓ$DZ) uU4$DZ) U4DZEQ4# 4/ $DZ41@$Id%41I %43%44I$I$%44I$I$%44I$I$%43 %41 H$%41[$ɖ %41ٖ%43%44I$I$%43@$%43%44I$I$%43 %4,?DZx3)$N$DZ\WUU-%) )-m۶F%$@@$EPU@$I$fEPUUU!I$IEUUU5%I@$IEU-!MIP`f?-#`HDB  /%cI^1#OrU+1eIf۪,hf~栠%C %y~R# mfi_Sc EX_ n#h9Z  odH9UW $I$eQ9UUUX $(B%) @$IA) m5:9f1 I$M9f1 !&L$91  I91* $A) dB&$A)  A) IBD! I$I$A) I$I$A) !$I$99 (B%) k9f1 Ib' @91 I$L291d@$I11 :5#ɦ1`` IT1a55 mm-91j q9Ib'MH9E)I$M61e)e) @1`I$Ie)a I$I$1E)I$I$9I$I$9I$I$1E)I$I$1e)!$I$1$!I$9E)* 0In$9f1U $91 DR91z ۳'z=1AXX`Lt1a I$I$11I$I$11; ݐI$9f1* DRI$91_ $$91* $ 91* I$BD! $I$ 91 ۶ml91 I$I$B$!  ,91* M9f1 91 lX91   91** ضtI91. )Q9UUJ$N%QHTTWUX`P---yS7ufi--)B!2!9@@@@!$ 1f1I$I)I)$I$)I) ! 91 @-k׶91p  ۰m91 $$91 I 091* 91 I$I$B$!  @ 91 !I9f1 * I$HBD! I$I$BD! 91 91*  @ 91 I$I$9F1 91 H$I$B$! I$I$B$! I$I$BD! I$I$B$! H$91 * I$I$BD! I$I$B$! I$I$B$! I$I$BD! I$I$BD! H$91  91  91 * @91 M 91* Imۆm91 I91 91  9e) I$91 LB& A91 I91 I$91** I$91 I$91 I$91 I$91  91 IB$! (9e) 9$!( $'IH91( m2löm91 I91 ! 91 IB$! @ 91* I$I91* 91 $B$! 91 I91*  91 M$9f1 B$! I$I$B$! '9\ (fA9$!`OO:1՗( I$I9f1(  91I$I$9F1  :1 H$H$9F1@1e)9F1  $I91I$I$9F1@11p$E&1!X9e) $1e) $$I$91  11I11 **H$H$11a2!I11I 1f1* LB&1f1I 91! $@1e)H$9F1$H$)I) I)I)I$I$)I)I$I$)I))n9))% N&%q +1"N)u+-4/P VDZ?IdmǹE3)# x,Z"h!PɿEe)UTPI$I1E)*I$$I1E)*Ib6I 1E)* m$91Uտ I91* $91W `K$91u $I$91WUUH$I$11ꫪI$I$9 I$I[91 Ib 91 Iml91 I$I$BD! H9UUUQ I$I$B$! I$I$B$! I$I$B$! &98\ MJ$H9U$M$fI8WWWI$IPHI$PHI۶`H* I. iP -G%yX - E`տ }%7 fq)6 E -b$f*;"mjIȱ3)q[R$*4/iVDZ416DZ44I$I$%44I$I$%44I$I$%?4I$I$DZ=UU?4I I$蹧??4I$H蹧?44I$I$&44I$I$%4DZE@4I$DZEUT@)I$I$EUUUTI$I$h4I$DZE%UU4DZE44I$I$%?4I$蹧D҆%X%EXXZDӖiE?4I$H 蹧?$ .=DZE!p4X$I$E)XTUU@E)! e)E)zr%XlE)PPe)E) IH$1$ 2 0E)h ɐtE)b  A$Ʉe)E)%??LDE)8,$ e)E) e)E) @@! Ie)E)@@$Pe)pSyw%yX---&SE ---1(%p 410DZ ?4 I$DZ 5UD4 ۖlDZ D4I$ DZUU@@44I$I$%4)v1DZUx@41۴mDZEJj*?IlnǹE 4!d: DZz4%P!NDZ )44I$I$%D4ِٖ$DZD4[-lDZp?۶m؆%DZEP4DZE4 $DZ!@@@PI$I$E)! I$I$d!d $H$!I! +>$@$!@`I$I$ UU_ZI$I$!I !****I$I$E)I$I$E)I$I$d!d  !  $!I$I$!I$I$ I !**** !!I$I$d!d !  !I$I$! ! $@ !@``! I$I$E) $!BB  $! I$I$!!I$I$d!d I$I$e)I$I$d!d  !H$I$!|V^_ !/ I$I$E)!!I$AH!UUH!I$IPH*ImXH+ oWqP .W$%) BT'%!PUUU $!`I$I$ !  !&!(I$I$d!d @$H$!I!/ I$I$d!d I$I$e) !@@$I$!iUVI$I!ՕI$I$E)I$I$e)I$I$d!d I$I$$!!I$I$$!!?I$I$$!!I$I$$!!@I$I$$!! $ 2dB&$!I$I$!II$$!!) I$I$e)@$! !H$I$!^W_! I$I$$!!%I$I$$!!@$I$!A~WI$I$AI$I$AsI$I$ *I$I$!@I 2$!j !$H$E)!ﭥ uE) ]ۆ1&?IIȩ!555caYr J9W6۶m )ڦe$hJwm*k⩪}h<۶m{N?k@ J @U$ 2$lN Ҫhʣڕ Nzۗhvo|EӦu2.s߷`dH$ -ꚪtVӡT׶osˢk4n2NJΫjM$I!1rѪ)m$&RNJ**΃oےl.⫪e4IJki$H2NJڢj܈vm۾oMRN ҡ-"뵅 y$I ꦩm6m-Jڪ\m[N*ڪփmӶn=A$I0 UUgU$ 24. Ҫh Z#DIEq`I$vR8)UWZvǶۆ1 *mmѴE)z*d!2E)bvle1?IMZE)II$f1?pN锒i$9 ))% `R.pea ++&J -(#@fz#c%Mf)XP@g{h$) u riX* 1u7fi--// H$H$fE)TTTTI$H$E)!W^\x$AdB&%)*^Z$IE)!I$I$1I$I$E)$!I$I$E)$!@E) *$H$E)! z^^@ E) --I$I$1$&`$%) %) /A$I$1I$I$E)!I$I$E)$! *I$H$E)!WWV^ E)!@E)!***I$I$1E)!***H& E)!V\XpinnE)! IIE)!* * )($@$I2E)! j`&`2E)!$LH%)*E)$!HE)!֊ I$I$E)!I$I$E)$!@$E)!I$I$E)! *HI$1H$I$HE) PE)@@@ H$1 I$ !E)!H$I$E)$! 1I$I$E)!A$I$1@$@ E)!XXx`mѴE) *)(e)E)//?I$I$e)E)I$I$1 E)!$$!  E)!//-%I$I$)(IH$e)$!*((I$I$1 )(I$I$e)E)+// `&E)!|\\^I$I$$!! Y e)!#6lò-e)!0e)!H$ Ie)E)TP.$e)E)I$I$e)E)X%E)PP!$I%))-[;[E)!e)E) I$I$e)E)@$A$e)E)ضmk$E)!( I$IPE) .iPKk/-EX?(I$]҆Ey3$W&y/?7?I 0ȹE J4Fn@.)DZ*jD-3>E`zz1oɖlDZE-)IDIh3)I@DZU5/ 4/) DZǩ 4/ 5DZǩ4-#'N$DZ3-I$I DZ?+4$J$ETT4<=DZ!ppppI$I$d!d I$I$d!d L$LB&$)*ި ??eY-I$3II$!U4n$)+U4W1-4+ LDZ43$DZ41%%41@$I$%31I%43%44I$I$%43I$%44I$I$%43H%44I$I$%4)9DZX4)DZx,$I$EUUU/!%bB'f,$I$$E*jV!@$I$EPWUUI$Ih%ID`EU,DF-! f+ *-)J$J" $4).0DZU 4+6II 3/$I $1-@1)@W^/%CHꪠ-m>@f_)~B iE_C fXzI iEH Vc $%qHP  9$H9U^  X9UUW\ $(B%) I$A) `=9p $I 9$! @$H$91  91 ömm91 * IH$A) H$HBD! @$A) A) I$I$A) I$A) $(B%) hmm99\ #9f1 c[ l91)II9E)"i$i1E)IIJ 1׾( 4M91 #2B91~@%N f1,h1E)I$I$1E)I$I$@!I$I$@!I$I$@!@$I$1"I$1"I$1E)$1E)$I$1E)I$1E)2 ֲ1%)@  &'91 *U ) 91 m091* I& 91I$L91WWI$I$9 I$I$11* ېI$91UU 5:9hzz  Iw9 %- n91 P&|&1X IA9$! ۺ-ۺa91NLR1E)(( 91  91.*  0P95%IIPH+++ OOi@ yS7f$q---/)S"$B$9PPPT  91* 91* d91 !I91 I„$ 91 $C2$ 91ꪪ I$I91ۺ5X11`` S1eJ91 6k&91 v91/  IC:91 mI91* $I:9E)z @91 91 I$I$B$! I91 * 99E)p 91  B$! I:1 B$!I$I$9F1 91 I$I$B$! m/'9!^ 0 9E) - I$I$BD! I$I$BD! P->9x 0-9 ) I$I$B$! I$I$BD! I$I$BD! I$I$BD! *0#9!``IIt1// $G?9!~ $I91 B$!  91* I$91 I$91 $A291 $91 I$I$B$!  91 2L$91 ͽZ 9$!׾* 91 I$I$BD! I$I$BD!  @$91 I$:1  91**J \9! I$I$B$! H$I$9F1 II:1  B$! $I91ꪪIȐ 1e) @91 @$I$91*N$`t1A~x tJ$9  91 I$I:1  $B$! I$I 9F1 0&91 l91 mk691!1e)$C21f1 1f1 $@ 11s2' l1 V\ !I1!  !I1f1 I$I)I) I$$I91 I@1e)$1%) HK9 I$)I)H$H$)I) $)I)I$I$)I)H$I$)I)$I$)I)I$I$)I) a$I91 I$I91 Ii9UUU w9 *)+R7E +;&wȱ ?1-۹蹧=41X-`DZ1#[ lz)3Z %~xc%9VZh I `6i1UUUTR$I$1bTUT mm1&ɒ#Ɇ1b`DI1b55 I$I91 I$91U+ I91+ ٶm91 I$I$B$!  H9UUU H$H9UU @$I$H9I$I$PHI$IPH۲-P8@@ɖlP8ImP8UI$PHIB$ XHIĶI `PU _ %qP }-GEX }%7 fi*%$ %y,m4E*/ 뒜$*3(v$ *4$I E %41I DZ*?3蹦?4I$A 蹧44I$I$%44I$I$%44I$I$%4$DZEP4DZf44I$I$%44I$I$%D4I%ٖDZ ?4I$H 蹧44I$I$%44I$I$%4DZEyp4I$P@DZEUUPI$I$hI$I$fEUUU4I$DZEU4%DZ?4I$I$DZUUU?4 $蹧D'`|?i}lbE)a :4E)`E) )(I$I$e)E)*I$H$E)!(d&dB2E)!xxII$E)!tE)6LHIe)$!(r,Ǡ)E)  $I$e)E) / %pE)b< $ e)E) 9?(ҤIPe)% pSywqP/-! S1wfq++--1"NS ++/?1<蹧u4%6DZ ?4I$I$DZ5UUD4۰mɖdDZ 5D4I- DZU@44I$I$&4) DZx@4)II DZU|?%$_6蹆ꊯ4P DZf@4%IdDZ%43%?4 I$蹧??Oc%A)EZZDٖmmE4@$@$DZ PPPT! ! ! I$I$d!d I$I$d!d @$H$!I$I$!^^_WI$I$! ! I$I$E)I$I$E)I$I$E)I$I$E)H$H$!I$I$!~WI$I$! ! @$@!!I$I$d!d  !  @$!I$I$! I$I$E)@$! !I !*) @$@$!I$I!/ !//*I$I$d!d I$I$e)I$I$E) $!I$I$!!$@!*$IH!UI$I$!`AI$IPH*m6E `H+ - ;h(* .j0'%y!PTU ! @!H$H$!X\^~II!5-I$I$E)H!**H!(  !I$I$!@$!I$I$e)I$I$e) @$!zI$I$=  ! !I$I$e)I$I$d!d I$I$$!!I$I$$!!I$I$$!! I$I$$!!@ $!H$I$!I$! I$I$$!!I$I$$!  !@$I$!XXI!I$I$d!d H!<<$H$!AI$I$!&I$I$A￿I$I$A#*II$!*& E)m"mbE)I mg;e18j`%)ֶmѦf1*G9 ?IDI$ȡ75U?$mޖr蹊ƃ]dž.` I.*ڢ-۶g⪪F$Y4H5.Ѫrpw׶]Jt!AI )mDmWk?t_ۻ>kIDHNJھ]EUUM۶ ǰ΅MۑI.ښa۶o=ƀ&K$-N*jڈm۲m[omv?he9C.JڪDM WE΋H۶Nt$I$KNkke?qݶNJtuڶoLȄ E)!<<I$I$1 H)(I$I$)(d E)!WVIIE)!5I$I$)(H$@$1)(IH$1 E)!H$A$E)!\I$I$$!!‚!e)! I$I$e)E)۶%e)!I$I$e)E)??I0$C2e)E)@bB  e)E)y$LE)!`TԏI$I$E)a IHE)!DB&$@E)!I$I$e)E)A e)E) I$I$e)E)XdH`H$??.vvaH+/E` ) {ϹB%q ?IdDZEy D/f9蹧 s?9DZE`)I4AE/!1eR&a +** 3)NY  DZ/ 41ٶ ۰%4--'DZ3,IDZ3-ImDZ?31H$@%3J$DZETT3`&P%DZ!XXPPI$I$d!d I$I$d!d I$I$e)I$I$e)I$I$d!d I$I$d!d I$I$E)aI$I$ bܸ9$I$-UUU1HE_"mHXZZI' fHU ' qeIZ Ia9U_p I$II9UUUT x'9aXx '09A  X`l91 m6ۺ91 I$ 91 $H$91 @!291 :ݖm91 I$IA) A) I$A) I$I$A) I$I$A) I A) $A!$99* DI91 IB;91 I$v"91I$I$g9*$@2$I91 tF۶m9E)* @91 c,)91~`@L$f1b m'H9E)I$I1E)I$I$1E)I$1E)I$@e)%)I$I$e)E)I$I$e)E).$I$e)E)+$$1E)U1E)6m۶1E)`$9E)* i$9E) $I䘒91 maݖ91 I091 I$ 91UH9E)zꪠ!DII1! $I$11 hm$I1E)x Im׶9f1 Yt$9A V $J9! $I91 I$HBD! #1'P9%%-  PH  yW1%yX--%1S %y--/+)J$H$9TTTW 91 I91* H$@:1  91 H$I$91  91 @ 91  91ꪪ !I$A91 k`91ꪪ  $A91 k 91 Iڶm 91( > 9$!z~01E) -   )I)@$I$)I)  I$91/`$Z"9E)\VZz KVr9E) I$:1 $L$91 d$91  $I291 $@91 91* {&-I9$!^X dJ$ 9%)-* 91 I$I$B$!  9x 1 9-  I$:1 I$I$B$! I$I$B$! I$I$BD! I$I$B$! $a9e) }$Lݦ1a^ '9  I$IBD!  91 I$H91 I$I:1 $C291 IĉI 91. !I$ 91 91 I$`91 !@91  91 H$I$9F1  B$!I$I$9F1 II91* 0 9!` II9A* II91 I$H$:1 $@$91 $91 $I91 $I@$91 ]&91 m91 I$91 5m$91 I91@$I$91@$I$1111H$@11 !@1f1 $C 1f1 Im 91I$ )I)$P&1axt 9d1b 591 @$9F1 !91H$I$)I) C0!B91I 9F1 X&R#9`x`ID 1A =I$I$)I)I$I$)I)I$I$)I) I$I91+ I$$91 IB91 !I@&91 ۖ$91* X&MR'9e)^WWvi9e) .{Oq1 5 pSyfi+//`N/wf++4,Mo 43DZ4-# 1 mfz&3 %y~~:c %f9Zj uڶj Eq I$$91 $@9` II9a?? $A$91 $I$BD! I$I$B$! $H9UU $H9UI$I PHUI$IPH I$IXH*m&I`PUտ* In iP I$)qXU Ib$ $qXU Ib$ qXU( In%)%qXU-9 EX -7 f` " 6 fq*)m4E /r$ f 1%r$*3+iR$*4/iJDZ416DZ4 DZE%44I$I$%44I$I$%44I$I$%44I$I$&44I$I$%44I$I$%4@DZEP4@DZf44I$I$%44I$I$%4H$H'DZETTT\?4A$I$蹧?4I$I蹧???4I$I$蹧4 .DZEh4dDZE4X@DZEX4I$K-EUUT`I$I$h4I$EUU4 pDZE44p$!`XWhmf9znE) !HE)! CaE)@E) H$)(I$I$)(@$@ e)E)RZ[{C0$CE)!II$$!!*(InaE)6!e)E) kme) I$I$e)E).(KKE)46.H$I$e)E)aa$%Ae)U uo `H* / 7wfi---p Rf )-4/ iVDZ44I$I$&44I$I$&44I$I$%?4I$蹧?D4[`mDZD4I$K$DZUUTT4-DZ4!vؘ hDZ4%PuQ;DZ.~4!q DZ4!PvDZ .4-DZ4IIDZE%D4۶ِDZ3DK$H$!TTTTI$I$d!d I$I$E) ! (I$I$E)I$I$d!d H$I$!I$I$TVWUI$I$! ! @ !! I$I$E)!H$I$!I$I$$!!I$I$!!I$I$d!d I$I$E)!<  !H$I$!II!// ! I$I$E) !@ !**!H$I$! !I$I$d!d I$I$d!d  !! ?@$H$!II!?//I$IH!UUUIH!I$I$!`AI!IXH+ IviiP+ % q! @Th!XUUU@!! !I$I$ ^ A$! !H!<<I$I$E)@$I$!I  !+* B!I$I$e)H! @$H$!zxx^II$!! !H!((I$I$d!d I$I$$!!// $! ($!I$I$$! @$H$$!II!?/I$I$$!!$$!$$!@$I$!`x^UI !% I$I$d!d I$I$d!d  @$!b@\I$I$*I$I$b2I$I$b9I I$$!/ϓɝf1b 1 ?ۆ1 J*vkn6f1*kj۰lv%)+۲uVl%) mp#׆1l <9 ssSI%) %WtY%y.*Үm; .r[o0n k⚦*Mٸan. ҩ`ٰӶmJpk;kҸc6h˶m.Jڮ}$$M.*P$j*m76mۏopۢزϋz$i N릑t$I$i0ok⪪c@N⪪|ضذk 6mmNJچ܀mѶnN*_$HdHVn*ڊ*eݶA[6NJګm`jkih[N*ک⨢}m۶aˏ?kmۖm.Jڪ*W'? [\I$N$UUwQmmŴZ.k?˵`$I0#Ir *ڪb*?c0/.~k)9!x ݔ Ix9$!* / $ "$91 lI$91U $I$91UU$I$91WUUI$I$9 $9 tB$I1E) Ib'1%91UU X91U/qwn1 )% R7%q +1!`Ns +4/P VDZ41`DZ4,볭i1"3 iꠀ,C E 3 E$9jml %y! 9e)@ MJ9&   H9UUU H$H9UU @$I$H9I$IPHI$ PH* IIHXPU .iP_*I.KFXU*- E`տ 6 fqտ"I&%U"IҶEU"I XUU%In&EU)&E,햜$f*1!r& *1$$E T4-I$DZ*41I DZ*?3蹧44I$I$%44I$I$%44I$I$&44I$I$&44I$I$&44I$I$%44I$I$%44I$I$%?4I$I$蹧?44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%?4$I$蹧Dk- IEhh?I$ ȹEUU@?ɖomDZE 4,DZ@4M& DZEVX- ?%i| z'Ey|_ ! E)! E)!  )( H1I$I$)(H$@$1@)( )( $IE)!*$I`&E)X!H!E)! )- e)E) -55X$E)pVl۶mE)!I$A$e)E)I$H$e)E) I$e)E) !IXE) %)f`--=+N,If/-/3+p J 43DZ44I$I$&4$@$DZEPPP4DZE?4 I$蹧?D46lDZD4K$X2$DZTTPP44I$I$%4% @ `DZ4%&DZ+{Z4` DZf4%кu2'DZ ^^4%DZ44I$I$&I$I$E)I$I$d!d I$I$E)H!($@!PX !I$I$!jjI$I$UII!!!(I!><I$I$E)I$I$E)I$I$!I$I$II!*I$I$d!d H@ !<<!H!<I$I$E)I$I$! $I$!/!HH!*>> ! !  @$!I$I$$!b!H! I$I$d!d !I!/H$I$! !H UU H!I$IPHI$AXH mr4!h(* B "$I$i@PUU! H$!!*I$I$d!d $@$!I$I!?I$I$E)I$I$d!d  !  !I$I$ A !bB ! I$I$e) !I$I$־I$I$!뫫 !I$I$d!d I$I$E)I$I$$!!UI$I$$!!$!@$$!`X $!I$I$!$!  $! @$!@$@$!jjxZI$I!U5%!I$I$e)$!b@pI$I$A|I$I$*I$I$b+I$I$A&(I$i %))mIe)A A? ?#EI~ـm2`F))B K$H?AE)VWT]M۴nf1 t9b:!q'I$i;pTE1 -mm۶-ҺkO$_LII.*ڶ*$ R 0΅mmN?_$ϐ$N ꦪ"zIE ***z@nFf.*I'I* @$I$1)(H@)()(d&@0E)!pp`I$I$d!d E)!  I$1 1@ E)!P!$IE)! )* HE)!H$!<< e)!//He)E) *I$I$e)E)*>I$I$1"I$I$e)E)* e)E)@@ IE)!((H$H$E)!VVV\! E)! --II1I$I$1 I$I$e)E) **?I$I$e)E)I$I$e)E)/*m P$) p7SEX//--)`J.s7E+k})۷}%y?)!I@$!f?**3)R)E DZU+3/DZǩ3,4DZp3,@?IDZp|U3,InDZU53-mضmDZ31II$%31I$I %31I%4/$ $DZǩ4X'r&!p\\XI$I$e)H!a I$I$e)I$I$d!d I$I$d!d I$I$d!d I$I$E)aI$I$ VVVV !I!& ! I!/'I$I$d!d I$I$E)I$I$E) @$!`I$I$! ɑ$I$Ei 5UUU I$! UU I$f!UUݔEy)( /w%q 5+FnFE -\2$PҧEZRP/ H E 4)I&0DZU 4- DZ41%%41$I$%41[m$%41نmɖl%41[m%4/%DZǩ4/&I$DZǩ4$I" ǩE@@4J"IDZET4DZE43I$I$%41Km۶DZ41IlDZ4/m HDZꪪ1+mz/!d#Hh,CHf_% i%y_~\ %EQzꨀ ږntp9WV` leA9UUU\ @$I$A)  ,49e)` 9! O'#1aVX`  r9a % I$9e) II91 @6k&91 ` 1S91 A) Ke9a\0 91 $I$BD! $A) A) I$I$A) I(B%) I$I$(B%) 91 I"&@91 I$km91 I$I$91I$I$g9* $I$91 :I$91 m n91+ km91^ N:H9E)I$b I1E)c۶ ڦ1E)d1E)UI$e)E)UW $ e)E)I$I$)(I$I$)(I$I$)($I$1E)UUI$1E)U$A $1E)$1E)"`۶$1e) Iv91U  I91 t91 M 091* IB;$I91 m۶ P1UUUL$LPHX`P--yW7ufi--(2!3%1@@pP $I$11 I$91 I$91* h$O$9a^^^ O9A  $91 @91ꀀ IĎ) 91* ! 91 (9e)@O 1!ח. 91* @ 91 !@91 91ꪪ* I 91/ I$I$BD! "H9e)h( 9 - 091I$I91 ۶mۖb91 091 $I91 91 I 91 *ZlI1%)P ٶ 91*/ I$91 $91 Mm91I9F1 IH91 dB2  91  I$91 dB291 I$$)@91_ Iۆm91 9F1I$9F1 I$$I91* ku9 !i91 I$$91 I$91 I$$ 91 I$$ 91&M$1a^^nj1 Ix1A. I&ݶ 91߫* I$$ I91  $ 91 I$91( I$ 91 LB91I$)I) In91* !I91 I91*  &91@I$91 $!91  91$H$91 !91  91@$I$91 $ 91 `0H91ꪪI$I91 !@$I91P#'1ax1 91ꪪ91I$I$9F1 I$I 9F1I$I$9F1 $C$91ꪪ   91 I 91 I$91* &91(~ [$91 mm$91 $I:69j#'r?1xxT 1 -- I$I$9 I$I11I$!I11 I91U&I-9e)j r9 "m;91U D$91Umm$1E)ذM$9f)*Ro%E1 ))`/wE +=&`wȹ?1}蹧43@DZ4/m#@DZꪨ3( iꠀ- hf^%}b %y_~ I'9UZ 4R`1U IX8I$IPHI$IXH*m&E`PUտ . qP . EX {% fiտ% qiW%5 %y;yb&ȱf*9 O$ȱ;&۵ ȱ1)IҶU1)IҶU1)IҖ3)ݒ$4-Il$% *4$P$EPP4J$DZETT44I$I$%44I$I$%44I$I$%44I$I$%?4I$ $蹧?4I$I$DZUUWs44I$I$%44I$I$&4 DZE@@4 DZE44I$I$%44I$I$%?4I$I$DZ5UUU44I$I$%?4I$I$DZUUU\4(DZE@4DZE44I$I$%44I$I$%44I$I$%44I$I$%?4I$I$蹧??4I$H蹧?44I$I$&44DZe1`4'I$E)`\UUXmۆmE)!X(((m&[E)zx!@E) IIE)! **dM$E)6> E)! )(XKmE) I2$IE)!)($I E)!*(L$ E)!V k$E)bIIE)$!(*I$I$e)E)(( e)E)oE) II$e)E) KE)6, XE)%%5 qw%yX/-3pqǩ%yA%wK蹆-;1۱ 豧44I$I$&44I$I$&44I$I$&4(DZE@@@? lɶmDZED4ٖlDZ ?4@$@蹧44I$I$&4%`8 DZXp4% v+DZ%4! `DZ@/4!aDZ?4 -!@@I$I$E)I$I$d!d I$I$d!d I$I$d!d I$I$d!d !I$I$!zzZZI$I$!ՕI !****$H! @$!"I$I$d!d I$I$E)H$ !I$I$!zzI$I$!_W!****I$I$d!d !!I$I$d!d   !I$I$!!I$I$E) !*!H!<<H$@$!I$I!?I$I$d!d I$I$d!d I$I$e)I$I$E)  !I HUI$I$Q!@I$IPH* m6i `H+ R'h * PT''iTUUUI$I!UU5 !I!I !* I$I$d!d H$I$!I$ !I$I$E)!(!$H$!II!?/H!@!I$I$d!d $@$!`pxII!5-I!**I$I$e)I$I$$!!p^VWI$I$$!!) I$I$$!!HH!(*(I$I$e)H$!($!I$! @$$!I$I$$!!P !jH$I$!^WU ! @$!I$I$e)@$I$!A\WI$I$bI$I$A?I$ $ aII$!* !I2`%)xII k!U- M Eq%#i꧙2J@(^9I_ĨIINUՕQzoKUӪoshmݶnJڼ&_$^ KZ.*J:֋7|nŸoٶ._۶-öu *ڪjzmWm[Nm%I3$AJڪn* *5%q`H^ϟfy%!TVWU o;&9[I O'(BO ?;ߧ9!euQmme) o I2 A%)/-tm6E) f$fI`O7q$)/ PN/fa +% -S&Eijz[3 NɔlǩEq %1+nw1H$H$$!TTTT@ E)!zꪪE)!H E)!VZZZ  ! E) %%e) I$I$1  E)$! E)$!I$I$1@@E) /E)!몪I$H$!ԸE)!I$I$1E)! E)!^zj$I$! /??I$I$1I$I$1I$I$1 E)!ꪪ IE)!@IE) .?I$I$1@$@E)! I$E)!jjI$I$E)IE)!HE)!I$I$1I$I$E)!*I$I$HE)I 0PE)@H$I$PE)TUUUضmK$E)I$I$1I$I$1L$H&$!H!E)!驭E)!$@E) RR@$E)!ZZI$I$E)$!I$I$E)$!I$I$E)$! I$I$1 )( `&E)!)(C2$C2E)!`I$I$d!d  E)! --I$I$1 I1@$I$1 I$1 1I$I$$!!*( IE)!//??I$I$1  &E)!xe)!I$I$e)E)*I$I$1 I)(H$`&E)!\\XX  E)!- %%$ &E)!XI$I$1 I$I$e)E)?I$I$e)E) E)!@@ !P$! $qH t f`+-- ,voff/3+y@DZ=- 33I$I$%3,>DZ~3,x'IDZ\_U1,I  DZյ3/!I$IDZǩ31$I%4$@%DZEPP4DZE 4-$!A-'DZ*4/H$IDZǩ1`%P%ǩ!XXPPI$I$d!d I$I$d!d I!b'@$@!I$I$d!d I$I$e)I$I$E)aI$I$|~  !! I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$E) !A$H$!I$H$!H!****$@! %aUUU ɟ$ If$)U%/H4M$) -!RP +)3(IN 410%DZ *41$I$%31I %31 $I$%31H$%4/- $5DZǩ 4-ѴDZǩ4/I$IDZǩ4/IHDZǩ? 4@DZE@4I DZE 4( DZE@@@4DZE44I$I$%4/6DZǩ4/@&I$DZǩ4-mێ DZ4/IZ ?1+kZ /!쳱H~ꠢ+3 mE" c %q_~_9zꨀ Ŷ:i9UW 3R'mfQ9UUWx i{9!. "i$I91`  91/ I$I$A) (B%) `I91 i 91 I$I$B$! $AI$91 @ 91* H $BD! I$BD! I$I BD!  A) I$A) $(B%) I$I$A) I$A) I$ $A) *i&,91` m;91)% m[ ,91X1!4I$I$)I) $/:9$!z dI9$! / [mېd91 M91 u2I91W IR'k H9E)I$L1E)ꪨdB$ 1E)ꪨI$1E)UI$H e)E)I$I$e)E)I$I$)(I$I$)(I$I$)($I$e)E)I$1E)UU$@ $1E) U+vm1E)M$1E) I6'9E)* n?H1۰-۲-H8@@@ .S?i8*%- yS7f$q--/&B=9PXTT Ibے$ 91} I$ 91mӶk 91WWs21ؠII1!$I$11I$11 жI$91*_W @I$91  $e91* $IA$$91( 91 I$$BD! I$$BD! I$BD! I$I$BD! I$IBD! &m591p&1ap `9a - 9!`p` WX1/%/ 91  A 091/ N9e))  B$! I$$ 91 !@$I91+ 91 I$I$B$! `B&`291 I 91 $91 91 I 91** 91*  @ 91@$I$91 I)I) I$I91* 91* I$I$BD! I$I$BD! I$IBD! I$I BD! I$I$BD! I$I$BD! t9X IH9e)@$H$)I)I$I$)I) !91" I$I$B$! I$I$B$! $91  $91H$@ 91 I 91 91 @$91 * $I91蠪I 91  B$! $I$91 `B2$I91ꪪ !@91I$I$9F1@91 I$ :1I$I$9F1 I$I91* I$@91 {&Rh1bXx t 9 I$$91   91*  $91 &91  @$91U m$91U ֶI$91UU$I$91wUUI$I$9 I$I$9 I$I$9 I$ 91s'j01bxXx Lp 9A- )I$i9e) IB$91  Im'91_ $mmk;91U@ۧ91UU#&C1apɐXIJf1a-%- H2$C21E)H2!1E)믫۱ 1E) I$; 9E) &fa$ /^PN/fX +-P wf++3+` R )43DZ 44I$I$%C1"蹧_?=+cې蹦13 f~( %y~c f`_~ Sd $qP I$) iP.G%yX v[f`* }6 fq*)6 E -뒜$f*1#qn$*3+m$;/m6豧=UJ(I$ F ?1`蹧WD1?DZUUUP43IDZ43IDZ*44I$I$%?Xm۶mDZEP4DZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%?4I$I$DZ5UUU44I$I$%44I$I$%4DZE@4 DZE44I$I$&44I$I$&44I$I$%44I$I$%?4 $I$DZMUU?۲1۶ DZE@@4 DZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%?$`®%DZ%)P4h$I$$!XVUU IE)b %H$@$E)!@$ E)!xzb$ E) %55I$H$E)!**K60lE)a\)n۶aE)  )( )( $I$E)! I)(H؆mE)HH$I&E)!`E)HI$E)! I$I$e)E)ꪢE)!E) I$I$e)E)#k E).(I$I$e)E)x: 1SqiP/- 1wfi /--/`S+-D-}οD۶ ",ȹE@@?lɖlDZE44I$I$&44I$I$&44I$I$&44I$I$%D4ې $DZUD4,۶mDZ?K$KmȹETTT4%`DZ`4!sDZ4%;-PDZ 4#32`$!@@`PI$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$d!d I$I$E)I$I$!^^^VI$I$! ! I$I$E)!>I$I$d!d  !$I$!I$I$!I$I! ! I$I$d!d I$I$e)I$I$d!d I$I$d!d $@$!I$I$  @$! !  I$I$d!d  ! ! H$H$!I !///I$I$d!d I$I$d!d I$I$e)I$IH!UUUd@H!I$I$!`AI IPH* mn0%`(* P.O`!@PUUI$I$E)@$H$!zZ^^I !%%-I$I$d!d I$I$d!d I$I$d!d   !I$I$(!I$I$d!d H!(I$I$E)I$I$ ꪪ !  ! ! I$I$E)H$I$! !/+I$I$d!d I$I$d!d I$I$d!d I$I$e)I$I$$!!I$I$$!!/* I$I$e) $$!H$I!+;$!+*I$I$e)I$I$$!!hXZV@$H$!jz^VI !I$I$d!d I$I$e)$@$!pI$I$bA*I$I$A*:I$I$!j*I$I$ !* v E)wII JU5"8@꧙_6mƶm *ڦwEm wJEߦo-Nb묭|"ll *$L*d[V J* ⦪t-ӶN{DK6$K 󱎵em >tmmo?[>@xt'I$)!`^WUmݦu1!? =+>9!s{-ۅo;f1jd0d$E)!hG91$dHE)aA$H$ A@0 y$f9/PN/i! *+ P wfa +(`N7w-+/&Pn)r +/I$H$$!UTTPI$I$1I$I$E)$!@ E)!ZꪪI$I$$!!UTT E)! e)!kjE)!E)!$1I$I$1 E)!@$@$E)!H$@$$!!$! I$I$1IE)!%)I$H$!E)!$C&E)%)I$I$1I$I$1E)I$I$E)$!I$I$E)$!IE)!I$I$$!!UWTT E)!I$I$1I$I$1H%)UUX%[%H8PPPtAvH$!@RRVI$I$E)$!H 0%)< $@E)!XRI$I$1`&`&E)!VV^^ !E) %%%% E)!ꪪIE)!I$I$1I$I$E)$!HHE)<<I$I$E)$! **I$I$1 I1H E)!I$I$E)! E)!I$I$$!!WWVT IE)!--I$I$1I$I$1H$H$1I$I$1 $E)!I$I$$!!$A$C2E)*j E)!/@@E)!p@E)!I$I$e)E)I$I$1 II$1`&@$E)!XPppIIE)!5555H$HE)!TTI$I$1 $)(dB&E)!)(@ HE)%kOqW`H/-- fi-)--/ p pJ--)+31 DZ3,h$DZ\W-,H$ID1,ɖamDZ1/I$I DZǩ3/@ 0DZǩ /4Z&X$EPXXT4Q%DZEQQ4A$IDZE 1-L$LHDZ3/!I$ADZǩ*3P%H$!PPTT@$!PI$I$d!d !I$I$e)$!p! !I$I$||w  !!I$I$d!d I$I$E)I$I$d!d I$I$d!d I$I$d!d $!H$H!*HH8?*Id)dP!U * I dh! E`U rEi"N/E ++PNwf 1%Pn6 1,mٖm3/$ADZ**34DZE`3DZE 3-lX$DZ1-@B&dBDZ4-S @DZ/43 $I$%33I$I$%43I$I%43I%4 DZE@@@4HDZE4/&I$DZǩ4/M$IUDZǩ/4/IUHDZǩ/43$I$%31$%3/@0$IDZ4,mӶ[7h"1(m# @ꪠ-Hf~ꪠ(3 E_b fi_~ Y?k peAz q X9Ux  &`?H9UU\ HHA9UUUT C&dB2A) !!@A) I$@ A) $(B%)  IA) L91 I$ 91 I$I$BD! $I$BD! $@I$A) $ A) I$A) $I$A) $I$BD! I$BD! $A) 91p@ I91 ,(I9$!@ I$O9, &H91 d39E)z y$ 9%)I$I$g9*  $I$91/ `[N$91? 91 ? [md91? s"m91V N̺I91UW I$ H9E)c۵ 1E)IB 1E)ꪪI$1E)UI$I1E)UUI$I$)(I$I$)(I$I$)( @$)(mۺ5E)`@I!E) C2 &HE) PH %yH/++#1N` %y-/+I$q1TUUU nN$9E) ņqb918UU 6 %91 f91 * u֭91 vB@ 91 I" I91 I$ 91W_I$I11 0$1E)ݖnI1E)//dH$ 11$I$11$I$11 @Ji91 mS91_W $91 س'}>1Axxn 1z  Ibm9-  "i9E) 1 9$!- IA) ,9P#9$!p` 7y9// I$IBD! L$$91 I$I$9F1 I 91 I$I$B$! 91 I$I$9F1I$I$9F1  I:1 @49``PI9b / $Ħ1. MҶl91  I 91 I$I$91*  A$91  I$)9f1j $I$:1 $I$:1  I,)91jj ĜO9E)(UU mٖ91  b$9!V $B9%) @91 IH91  91 I$I$B$! I$I$B$! H$I$:1I$I$9F1I$I$9F1  I:1  91 $I$ 91 $IB91 I$I91* I$IBD! I$@91 I$ 91 I BD! H$91 $@&91 6691 $91W  I$91 $c91_U @m91 UU $3>9jz%PI15$I$11H9 @$H$9!I I11I$I11 I$6 91U I$k91U׾ IҶm91U* I5Ҷ91] e6i'91W I"i;91] uا9e)Ďm1E)'U֭i$1E) I$1E)`$I$1E) I$I21E)۱1E) I$I 9e) m9BE)]IrBe)u mmB1@:B1~#$Be)W hl۶9xપOyE) % Nw߆%q +1 PNs +/4/ VDZ44I$I$&44I$I$%43@ DZ;-S[MȱS=U_7  "1DZ%y``4 Oɚ%yꅅ" ~B if%q_ In$' f%qU*%k$ %y& iT/ 뒜$3(v$ *4-i$+41I DZ*43 DZ 4-DZ4IIDZE4,4DZpD)BmD4K2,ؖlDZT@D3?DZUUT@41  %43 $%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%?4I$I蹧??4I$I$DZUUU\44I$I$%44I$I$&44I$I$&44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4`4DZEyp`40 DZE44I$I$%44I$I$%4г$E1PTHyE)TUUUKulE) (I$I$)(@$ E)!$C$HE)!ꪊ H$!**>(I$H$E)!A$I$E)!I$I$1 E)!  H)(I$I$E)$! (($I$1H$A$E)!dB2$IE)!zꪊdB0E)!₋E)!*ME)b6.uhE) ذHE) I$I$e)E)e)E)I$I$e)E)ItIצX9 7Wy{Ea--1/rwwE++/-3, Dò۰mEb*J YIE44I$I$&44I$I$&44I$I$&44I$I$&44I$I$%?4I$蹧?D?$豀D4I$H%DZUTTP4/DZǩ4!X DZ~4@B%S2%!PPPPI$I$d!d I$I$d!d I$I$e)!*@$!PP !I$I$!VWWUI$I$!!I$I$E)H!>I$I$E)I$I$E)H$I$!I$I$$!BI !I$I$E) ! I$I$e)I$I$d!d I$I$E)@$H$!|II!//! ! !I$I$E)A !I$I$  ! I$I$d!d !I$IH!UU H!I$IPHI$AXH D!B$X!@PUH$I$`!TUUUI$I$E)$!I$I$!VVWU !) @$!PT!+$@!@$@$!II$!I$I$E)$@!I$I$E) $!I$I!*I$I$d!d I$I$e) ! @$!I$I$!H!***I$I$d!d I$I$E)I$I$e)I$I$$!!>* I$I$$!!\VI$I$e)I$I$$! @$H$!I$ $!/I$I$e)I$I$$!!p $!jI$I!WUյ!*  ! !b@H$I$ AI$I$A+I$I$!**I$I$$)A+dɏ9ZI$I UU=)`0 cuۚ I k⦺*? UuErukNk7rڰgۏkh$ϰ`@ JO'm9%)^z`I$I#9E)UUE֭lE) II$1E)ՖUUö11i۶me)!)%1 -%`&I$3N*ګj*hƆmm.Jڣnmke[w.J*֋oǶmN}YpMٺ-"pʐ,.k$I I ꪪTlضmۯҡnUUUƤ N UUU%rmmۮo酦mcÏϨk@ J!m$ $INJڪFm Ir.Jڦ*Hw_ߢiy渀IdH ⢪wҶm3olrmm㵏p Mɒ-k檢r$ I k⪠p$C K kjj$)x^4p$<Ǚ%!XWuU?B3omێa[1!7dBIE)!mنM;f1!~M -e1(Of1 F$I$9!SUUi۶m&E)b σ$?9I$A$E)xTɗfA /?RyyeA+!fi + ϛ+/-@ "I$!P@@2$C$!` @%)I$I$E)$!H$@$E)!^ZZzI$I$$!!== E)!jj E)!IE)!I$I$e)$%)$!E)!H E)!ꪪ@$I$!  $! //I$I$1I$I$1 E) %*L&`&E) VV^^!!%) %%dB%)***I$I$E)$!I$I$1I$I$1H E)(HE)!I$I$1I$I$1H$H$E)!VV^^ IE)!I$I$1I$I$1 I$IH%) IPH/H$I$P$!TTUUI$I$E)$!@ E)!zJ  E)!I$I$100E) XXxp  %) 5I$I$E)$! E)!ꪪE)!I$I$E)$!@E)!I$I$E)$!I$I$1I$I$E)$!****   E)!I$I$E)$!* HE)!I$H$$!!T\||II$E)! E)!I$I$E)$!I$I$1I$I$1@E)!I$`&E)!_^XX!@A E)!A E)!E)H$HE)!9Uzx Idu1?/  D91 dB@91 I@91** c$a91 R&H$1aXT| o 1a  I$@91 I$@91 Nr$I9E)( ۺ5س9`p ɟɗ9- DI I9$!  IH$91 $I91 I$BD! I$BD! lض691 $91 m ۖ91* m l[$91 $ $91 @$91_ 9jB:9b`x )XIt9a %- nm691 DI$91WU $I$91WUU$I$916m611~Цm11$!` J1!  C2dB&11x~__I$I9!$$ 11I$IB11 I$m 91UU $C&9%)j IJH9% IҶa91W MII91 - $$91 _ lۚ691  Iv$91WU $m'91U@9e)(Mdž1E)m隶1E)ضm&1E)$I$1E) f1E)LH&d1E) [ 9E) ɟ;Be)UտnۛBe)U mN Be)*wV?B1~Hc$B1UBe)W T?I$9e)_ \?~$9bz^^`1e) I$I1E)(I$d1E)IeA)?R%y9 )N/wE++1&P S +41 DZ *44I$I$&44I$I$&43DZ4HEy@99m&I%y 3"{#mȱV說9"IbےZȱU 9%m% ȱ7+Ж$mȱ4/iJDZ416DZ44I$I$%?4I$I$DZUUWS44I$I$%44I$I$%44I$I$%4@$@DZEPPP4 DZE43%?4I$蹧?D4X ۖlDZPD1ÿmDZUUp43 %44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%?4I$DZ5UU?4I$DZUTC5?4I$I$DZUUUT44I$I$%44I$I$&44I$I$%44I$I$&44I$I$%44I$I$%?3l۶mDZE@?ɶm6lDZE41 DZ4 8r$E)`\UHҦm&E9E)TUUUI$I$)(@$@ )()(HH E)!@E)!*+d`&$!@&%)k@E) I$I$1I$I$E)$!**(I$$1I$I$E)$! A$I$E)$!*tɶvE)'( E)! !"$HE)!˂ !!HE)!  e)E)%I$I$1 @H)(I$I$1 ,`E)@@)0E) aI$PE) pw%yX----- ."rs%qKKK+C IT Ar%y5%43DZ?4 I$DZUUD4I$Ò$DZUT@U44I$I$&44I$I$&44I$I$&44I$I$&44I$I$%?4 I$DZ 5UD4òaDZ@D4I$؂-DZ4/DZǩ4R$H$!PTTTI$I$d!d  !! I!b??I$I$d!d   !I$I$(*I$I$!H!>>H$!I$I$d!d I$I$E)I$I$E)H $!I$I$  !I$I$d!d I$I$d!d I$I$e)I$I$d!d I$I$E)H$I$!j !  I$I$E)I$I$d!d I$I$E)I$I$E)  !I$I$ !I$IH!UUUIH5I$I$!`AI$IPH*$  $P P,۱X!@TUUI$I$E)I$I$d!d I$I$E)H$ !h`I$I$!UՕ$@!H$!VII!*I$I$E)H$I$!I !?  !*!I$I$E)@$@$!I !** I$I$E)I$I$e)@$!`hI$I$!]]I !I$I$E)@$@!PP!I$I$e)I$I$$!! I$I$$!!^ I$I$$!!I$I$$!!``pPH$H! $!I$I$$!!$I!TW@$I$!zZ_WI !I$I$d!d !&@$H$!Ap\I$I$A?I$I$bUUI$I$!b=oI$I%)a- (!UUUsvl1% tn"m7kJdҎINU5toضm;k_$$D-*ڪ teۏk?mJuݶ.Jڤ)"6I`}I$L*E)UV\mڶMe1 @E)  -If1檠 E) @piVJt1 -mme6Nji`BHJ6l۶$_$GpN*ڪe G$C.JڨjmdI=k*Ymmkmm{mjNJ*>eTI)J@R1A`ɐX1A -I$I$9!11H$I$11$H9 "i$1E)@qGn9$!$C2$ 91 NĶ-91UU I$91U I91 d>r>9$!|xPB'Cf1zj9`r1A -  d+In9e) imִ91 "I:91*( $i$m;9e) Dħ9E) m9e) H&891}Umdž1E)m41E)ضm&1E)ݚn1E) ILȄ1E)I2$I1E)I$I1E)/ ub;m 9E)_ I;BE)*BE)W@BE)M0B1 'B1+_hl'Be)W0$Be)]fɟBE)U Xk'c;9e)_UWH0!I1E)! I1E)mҦk 1E)I0$ 1E)t:(1z m$ 9 $I.49$!`ɗĆ1A* 6591 -D$%q155URwF%Y ++/Nqf+3+@ S -43DZ 44I$I$&44I$I$&44I$I$&41`DZ4@$ET41IlDZ?1m蹧?3蹦?4I$I 蹧44I$I$%44I$I$&?4I$I$DZUU_44I$I$%44I$I$%44I$I$%44I$I$&44I$I$%44I$I$%44I$I$%41l %D1DZUU4!h װ|?3蹧4x$DZE\T4ِqE)4,DZ44I$I$%44I$I$%4% DZ@4= DZE44I$I$%44I$I$%44I$I$%?4II$蹧??4I$A$蹧44I$I$%44I$I$&44I$I$&44I$I$%44I$I$%44I$I$%? I$-DZEY@4&O$%)@XWU H1A$A$1)( )(0`2,E)@ۺm)nE) $`$E) k5X5E)!I$E)!} E)! **I$I$E)$! E)'@$$1I$I$E)$!A$I$E)!HE)A(I$I$E)!*  E)!''$ E)!''. I1I$I$1 @ @ )(e)E) 1 0۰E)$$Id@PE)5 qWyw%qP//" p1S%y ---3#tLrDZ+#)-41DZ 44I$I$&44I$I$%J4a0ɘ DZYaD4I$I$DZUUUT44I$I$&44I$I$&?4I$H$蹧44I$I$%?4 $I$DZUU?4DZD4I$C2`DZ|?J$J$DZ!TTTTI$I$d!d H!(&I$I$e)I$I$d!d I$I$d!d @$@$!jjjjI$I$* I$I!I$I$E)H !<* * ! *I$I$E)I$I$E)I$I$!jzzI$I$!I$I$! ! /I$I$d!d I$I$e)I$I$d!d  !I$I$!! I$I$E)I$I$d!d I$I$E)I$I$d!d @$@$!I$IH UUUIH!UH!I$IPH*I$IXH* !c'P @TUH$I$XTUUU!I$I$E)I$I$d!d I$I$E)@$@$!`xxxII!??/ I$I$d!d I$I$d!d I$I$d!d  !I$I$ $! ^ !!I$I$E)H$I$! ! I$I$d!d I$I$e) !I$I$!~ ! !I$I$d!d I$I$d!d I$I$$!!*I$I$$!!I$I$$!! I$I$$!! $! !/ I$I$$!!PPI$I$$!!` $!I$I!_!** I$I$e) !b@@I$I$bA檪I$I$A(I$I!b5=I$IФ$).(  !I| ڣ5 pgHbܼmkڙꪫhܴ ۲ J**jcm.?R4l6m *"em2E.JڪjIa8.UYuX ΃FmҶcN# @$9`9I<σI$I$E)I$I$E)@ !H$!   !I$I$!I$I$! H$!I!/  @!(!I$I$d!d   !I$I$!!***I$I$E)$C2$I@?!$H!UUIH!UI$ H(I$IPHI$IPH*I$IXH $IJ$`)JP@$I$X!PTUU@$@$!II!?+I$I$E)I$I$E)I$I$d!d I$I$d!d H$H$!x !- I$I$d!d I$I$e)I$I$d!d $@$!I$I!I!W/ I$I$E)I$I$E)  !I$I!I$I$E)I$I$e)H!(( @$!`pI$I$ 55I$I$E)I$I$d!d I$I$d!d $H! $! I$I$$!!**I$I$$!! $!@I$!$! I$I$e)I$I$$!!hXZ^@$H$!Z^^II!I$I$d!d H!((@$@$!App\I$I$AvI$I$AI$I$!: A %)񻿯)I$I?vn]7H "cmâm JڪbeMlVNk7?UUWemۮe.Jڪ_*pvmѶN~?>p `k@m-"m[kO֕sN{">3E1Xx q$I$AE)UUWAE) n[)ں1 9 ?۶mE)C9I$$) %խU$IJ\غe-*ڪ먚pFܷ}ڗN׷4+I.DZUU4,Im3I%y@- @%y/IW)m>@Eyު# C H%yW R# ifi_R# hE`URc h%yXW DJa@T| PX9W  d'P9UW HI%I9UUU I$I A) I$I$A) I$A) A) HIBD! mҔD91 m&[m91 $I$ 091 &͢99E)zx N9E) H$091 $I$91 I$@$BD! I BD! @ 891X Tn1x91 I$A) @$A) A) @$I$A) $I$A) I$A) L@A) km 91 IՀ91 m `91 m۶im91 11@ H1%I PH yWqqX----"`P*feAB @91`$I$9AW $G@9  5M$9b`VU itI 1a % N$91UW^ S @9e)Imۆ 1E)W(Si1E)U~I۶Xm1E)UUM&m31E)UUU 2$ 1E)UU]I$I$1  )(H$I$1@$$)( I$1e)E)xI$I$1 e)E)e //I$XE)aVؠ mذE) I$Ie)E) / @$I$e)E)@H)(!@$Ie)E) ?@$C&1E)`۶m'1E)WUǶĦ1E)UUUؖI$1E) $1E) *nM$1E) 0Av$9E) _U жI$9E)UUlI$1E)$1E) I9!$@$$11 U `;91U  $9E) $9E) id9E)@I$j@9aU8  IԶ1 mۖ$9e)U mۖ$9e)U m9e)U mۖ$9e)U 0I۔$9e) #Զ9`1`m9 $11$1e) C&11x^k61E)ضmM$1E)@II$1E) ۦ1E)m11$ѢM;1E)$I$1E)I$1E)nI1E) +&`$1E)@$I$e)E)$ 1E)/H!H1E)H$`01E)@ e)E)@ˍ.1A' ym۵ 9$!  Be)?BE) Be)UwB1U_?$BE)w?B1zUH'Be)_W>>cB!@ZW_ ۉA! И9e)Xm1E)!@$I1E)/H$@ 1E)im1E) mX 1E)It61E)+IҤ۶ 1E) vӶ:91UU 6CNH9E)o* I$9AW( FI9! ilж91 X$91*  `?'9$!^I$uPI1aU:I$I1I$I$9!H$@ 11 $I$7(9E)B ۶m9!+% IS91/ '9A`X` ɔvm9A %  m6I$I9UUU 7W9 +)N/wE+/1% R +-41ِ DZ **?4I$ $蹧44I$I$&?4I$I蹧??44I$I$&44I$I$&44I$I$&44I$I$&44I$I$&44I$I$%44I$I$%?4II$蹧??4I$A蹧??4I$I$DZUU\44I$I$%44I$I$%43%DIdömȹE44I$I$&44I$I$&44I$I$%44I$I$%44I$I$%44I$I$%D4I$I$DZUUUD3?lDZT5D3DZUUT@44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%?4I$ $蹧4$DZET4@&E1@X)H$I$$)TUUUC0IE)!`⢂ I$!**/*A$@$E)!HA%)8(II1H$)(I$I$1@$H1I$I$E)! E)!ꪊII$E)!5@$E)!E)!I$I$E)$!Md۶aE)8E)$!Ȫ @E) I$I$E)$!$C$ E)!蠠@$E)!rHk۵e)! I2E)$!((IdE)A.7H)( )(I$I$)(I)($E9E)UU6a6S`P-wyfh-37gsǩf)/ 4-`R&S ?4II$蹧?44I$I$&44I$I$&44I$I$%?4I$蹧?D4I$X,DZ44I$I$&44I$I$&44I$I$&44I$I$&44I$I$%!I$I$d!d H!<<I$I$d!d I$I$e)I$I$E)H$H$!ZZ^^I$I!!  !@@!I$I$d!d I$I$E) @ !`hI$I$ II!!* I$I$d!d H!(I$I$d!d !!I$LH UUUI$H!UUIH!UI$I$PHI$IPH*I$IPHIڶm XH IĶI `PU In iP-)H$h!*@TUI$I$e)I$I$E)H$H$!I$I$ ^_!@$@!PP! I$I$E)I$I$ ^^W !% I$I$d!d I$I$e)I$I$d!d @$H$!II!?///I$I$E)I$I$d!d I$I$E)@$@$!II!***I$I$d!d !<I$I$d!d @$H$!I$I! !  I$I$e)$@!I$I$$!!I$I$$!!PPI$I$$!! I$I$$!!I$I$$!!ZzH$!I$I$$!!I$I$$!! !I$I$!I!+* I$I$e)@$@ !@H$I$ I$I$bA+*I$I$A+*I8I$f1? !I  %- _.ܶYێnj񏵀mѦEv *"*΋\۶ N'X4j%)VXP@6l׶؆1jmض]1!M۶h۶e)! خ};1"k =A {?OĬ( %wEW6N}5ڶm۰.Z$I *ڪ*pm;6؏k܃m#oOΈڲa.~<5 rm۶EڶNI$IUUUP,HmNъ*t%)*-Nnʀmر.hlvN*ڪ*zoռ!¶m:{X>N$j!xVUI $1$! H$M$9E)TUVUn6m1hE۶mӥf1$! 9E)iI1 )յ F,H$Q) mp#Y Jڜ`m[Wmж Jڪ.O}G H.ѮTfH eI$N$J!UUVTI$I$e)ccömf1}v#$E)AI$I$ O9TeA /eRyEI+/% TNei ++,%%p  +-,H$@ !TPP@I$I$$!!E)! H$E)!jjVVI$!@$%)! E)!H$@$E)!H$H$$!!I$I$$!! %)$!I$I$1I$I$H$!UUUQ LHHUU$@$$b@$!UU@ H$!UU IH$!UHHWm۶ H I$IPHI$ PH I$PHI$ XHIҶm XHI$ J`PUUI6)`PU Ib%) iPU -YJ$h T# ٹX$!PUUN$X$!TUUU@$E)!ZZ  E)! &%)XIIE)!I$I$1I$I$1E)!@$@E)!L$H&$!!!E)  2%) ZZ@$E) H$E)!֪I$I$E)$!I$I$E)$!I$I$E)$!H$E)!I$I$E)$! I$I$E)$!I$I$E)$! 00E)I$I$(*!%) I$I$E)$!@$E)!I$I$1@E)!  E)!I$I$d!d   E)!//%H$H$1I$I1$H$E)!@$A&E)!P@$@$E)! E)! H$H$$!H!E)!I$IE)!****I$I$1 1$I&`E)!I$E)!HHE) 11W%qP///-"Ey ---% P +/3,5DZ x3,IDZ1,I60DZՕ1/$H$DZǩ3/$!DZǩ 1/H$H$DZǩ3/$I DZǩ/3-۰Â&DZ* 3-X$I$DZ1-I@DZ1h&X%!XXPPL@$!I$H$e)HLȄ$!8mMmHI H$!UU&I$H$1 I H@A I$H8 $H8IH$IH8I$mX8*I-7i@ r&EP׫",In&E) X4`ڞ$f!U!'I$!_UU ''fQ_!I$I$$!!ÊI$I$$!! $C$H$! !b $!&@$H$$!!PPHAE)!־I$I$$!!I$I$d!d  ! I$I$e)I$I$d!d I$I$d!d I$I$$!!]5I$I$!!<I$I$$!!!@ !I$I$$!!I$I$$!!I$I$$!!ˏC$!$I$EQ!-UUU(ܐI$!UU(I$!U IEy) WE%Q%IMEU%*-m E*/%I`ڶm*1,p$IDZ^UU4,IdDZU 4,)@DZ 43 %44I$I$%43@DZ4,IgDZ4-#@DZ3)CH_1#3m_ꨠ-lHfު)fW@" ?І?fi\MBHfPVSc mE`Uv&# m%y@^Z q# Ii@ NXIU $MX9U KY9UU_ II$A9UUUz I2C$A) !0I$BD! A$A) IIBD! H9f1` )q$9e) I&m91 II:1 0`&91 @!91 ` 91x** vJ 9f15  I„$IA) I$@BD! I$I$BD!  I$BD! @291 $H|9E) I$I$A) I$I$A)  '9E)\ IJ9e) H(B%) ml 91 k'x'H9 !!XH///ys7EX-- Nc>fE I$I91Z$Iچm13*1b@Id f1a5 0I۶1A $&91 &@me91** $ 291 dmI91z m91ժ u:@91W~ I91 3;@91UW^vv1E)z*I<" 1E)U1E)Wz*IZm1E)UUm6:1E)U_zI$Il1E)UUUD%1xbIE)a +-! e)E)--A$I$e)E)I$e)E)UULH$Ae)E) $ &f1E)~^ e)E)dB&@e)E)_\I$1E)UUmvд1E) U$I1E)@$@1E)I$IB1E)WWWI$I1E)UUUI$I@1E)im1E)!I$ 1E) $H$1e)I$I$f1e)$I$e)E)I$I$e)E)$H$1$I$1$I$1$I$1$I$1$e)E)U$e)E)U$A$ɐe)E)// $e)E) I$I$1e)1e) 9 k:1e)vb'1E) ?3 9E)UUU /9E)UUU ɟ/9E) -9f1 ~b?v 9E) I$@9E)UW I$9E)UUɟBe)c`B1UU O2Զ9E)W#Ae)n m$Be)UHBE)9`I6%IE)A' ɟBE) nm?9E)_I'N$1E)ېvIt1E) /$D01E)H$I1"iib1E) M$km1E)-Sr4 1$!j im1E)It1E)+ v[+ 9e) kwI9e) I$$ 91W_ H91 NBI 91_*  I@91* $@91 $$91 жi91 $_'1Z4H'S1 - $I11 *I$I11ꪪ N2' 1!VX 9y$9$! IK91 %I91 I$A) 0(i9!p`IT 1% 91 I$I$B$! I$I$B$! I$I$B$! 0I$i955U pSqEEA )-`/E +-3+@ S -410DZ ?4I$I$DZ5UUU?4I$DZU?4I$@蹧?4I$I$蹧44I$I$&44I$I$&44I$I$&44I$I$&44I$I$&44I$I$&44I$I$%44I$I$%?,m -&蹦 ?[%XBǹEPPP4DZE44I$I$%44I$I$%44I$I$&44I$I$%?4A$I$DZsUU44I$I$%44I$I$%44I$I$%44I$I$%?3I$DZUU?4H 蹧??%O蹆z40D"$DZERP4 DZE44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4 @$%)PT H$I$fa%)TUUUI$I$E)$! $IE)! H$H$!XtIaE)%/!HE)*E)!+6dE) ۶KE)I I$1I$I$E)$!I$I$E)!I$H$%)! E)!E) I$I$E)$!I$I$E)! **E)I$I$E)$!*I$I$E)$!I$I$E)$!@ E)!rjIM&E)PE)!M aE)'[$E) IE)!(* )(H$H$1@$@)(!$AP$17qS7w%X/--17qwwE--C){?5C3蹧44I$I$&?4I$I$蹧44I$I$&44I$I$%?4 $I$DZUUD4I$DZUTA44I$I$&44I$I$&44I$I$&4  DZ!@@@@!I! I$I$e)!H$!!H$I$!^VVVI !I$I$E)I$I$E)I$I$d!d I$I$d!d I$I$E)I$I$E)I$I$ ꪪI !*I$I$E)$!I$IBH!UUUI$H!UU HI$I$PHI$IPH I$PHIB$ XH*dC[-`8zz I& i8/ I~-7 %yXU mIn$y U g'h **VU @$I$$q!PUUUI$I$e)I$I$d!d I$I$E)I$I$ I ! I$I$E)I$I$d!d I$I$E)  !I$I$! I$I$d!d I$I$e) !H$I$! ! @$!*(xx ! I$I$E)H$H$! ! I$I$d!d H!<I$I$E)I$I$! ! I$I$d!d @$!PPI$I$$!!5%%-I$I$$!!I$I$$!!I$I$$!! $!H ! $!$!H!$@$$!II$!I$I$d!d I$I$e) @$!A@ppI$I$!$I$I$A?I$I$!=7I$ %)A⪚I$Ii?I4YhI,J6-JںjրmrlN?zmh۴or$M2D-kj _f6g n ګjW!1KN )t}іmo7wʝA$NQUYYWdHR#)N Қ*wI ⢺t$ɑ1I-k⪪)38u ȱxpI$M& %)UV^X 5mۺf1`$I If1*mm۶1!? V9 gY;! -՚/m"W][ׅӶN ڢr`۶ ` Jڪ*WGX$ - ғk$] J}$i ⪫*ضm%X*HI䘻NmESmnks_m۶:kC$M JbemMkoN$aO'0xwhI$)%!xUU 9 Oۦ9!~6mm8f1$!cE) "$If1 䮪bױۆ1ʪ)_I$IJ%)UU%s 95) tڢڶ.t۶cn7ߏ>}H$p.Ѫ*tagHk⩨څo\M]W{&=k)\Xp`I$I$1!UUV$Id%). ! I$ 4f1oXIE1!..)97sfiE9++/- N7si++/, s+/- $!@@I$I$e) e)@ E)!H$H!  A%)//// E)!ꪪI$ $! I$I$$!!I$I$$!! ?? H$!UUUI$I$H$!U@I$H$!PH@ M$K2P8WWVIIPH+IB$AXH*I$m`PUտ*I6)`PU Ib%) iPU %' iP* Il-) %yX I%7%yXUmKry$)*UnKn$$$)*U-I-%$)@@U @$I$q$!PUUU`&`&%)! $! H$I$$!!0I$I$1HH$e)` %)XII$$!!-/H$E)!I$I$1 E)!I$I$1`&`&E)!!$! $2@$$!@X E)E)!I$I$1I$I$E)$!I$I$E)$!@E)!I$I$E)$!*I$I$E)$!I$I$E)$!0%)``I$I$ !!%) I$I$1I$I$1 E) $E)!^I$I$E)$!!*  E)!%%%%II$1II$E)!H$@$1@E)!X I$A$E)! I$E)! H$H$E)!VTTV!!E)!I$I$E)!****I$ $1I$I1 E)!۶atE)&!$AH$! 7q1WiP/--- S%q+/--/%j)-/,@ӶiDZ~1,go޶DZ1/$I$DZǩ1/H DZǩ1/ IDZǩ3/dB&$IDZǩ 3--Pk4DZ/-H$Iǩ*1-I@DZ1/ DZǩ/P$P8$!PPPd!I$ P$!UU%IXE$)U1a8_hh` IH8%d$IHPHUUU5 $HPHuO!dP@ZM$iP@Vկ m6`@ v%qH/۶')`W lI$E!UUIeiI$I$E!  ! I $E)!}$C&`B$!I$I$!!+- I$I$$!!I$I$$!!I$I$e)I$I$$!!* I$I$!a&@$H$E)!z~^I$ $!-/$C2 C$!` !b I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$$!! :I$I$$!!<<I$H$$!!@$$!``$!I$I$$!!I$I$$!! I$I$$!!B$!I$I$$!!ZZZXI$I$d!d I$I$d!d  @$!@퐶iE9/+I$! UU+ I$)U1$ $! 4IEQ41ېdDZ*43DZ*43 %44I$I$%4!@ $DZP4!@DZ41e%41؂-۶mDZ4/mҶDZ3-Im1)l#1 K' %qVV/3ۆKꪄ,IE& H%y R# ifq_S vE`_(Sd iEXW 'l lqXUW ``eAz DOX9Uj RP9UU $ %I9UUW ! 2`$A) A) $A) 2d$A) d A) ђ$I91 i6k l91 I 91 $@$91 $AdB&91 @I$91 ۶ 햴91* L A)  , `9e)@NN1a(  91 A) s> H9E)^^ dAF9%)  A)  eI9UUUH$N$eIHTUUU1iS6a`H//ywS7qE`---+P۰ ۆ9PTTT km 91 u9e) Ibې91 vBǠ H91 vb;$-A91 ! 11 L$L211  11!I$91 жi91* n$91  Im'91 @91 ې$91  `m91 Im 91 vړ*91_r$1! e]'9E)ꪫ C:9zzII!a557(I6Y l1E)vb 1E)z*ILH1E)UI۶ۊm1E)直u:m 1E)_~Im @1E)UUImm1E)k6[m1E)^_I$L1E)UUUI$I1E)$$ 1E)@$H$1E)~~I$I$)( #'E)X f1xI$1@ۆ1E)`vb'1E)_UU`I$1E)UUU`ۉئ1E)UUI$1E)I$1E)d۱ۦ1e)[>1hDIS1 $I$9f1 0I<59!r WI1a m$9^ @%9! `۶c;91UW `I$91UUU '91UUU $I$9E) d'I$9E)_UU$I$9E)UUU$I$1%)Ħ1E) 11غk1e) $LB21E)I$I$e)E)!I1E)m1e) M$k1E)I$L1E)Ii1E)+a2$ 11]yNb' 1E)It1E)*b$L&e)AX\&1 iJ1E) IҶ:91] Ibm+@91UU iv91 lˍP9E) . iv91 m &91 Mlؖ$91 &91  $I91 5M$91 ؖI$91`$I$1e)$I 11I$I11*I$dB91 I6)H91 t 9z )iJ9!  MI 91 IH$A) $A) I$BD! @M$9A W @9 I$I$BD! I$I$BD! I$I$B$! I$I$B$! I$I$BD! I$I$BD! ,%Q9UU5 P9UUUyp9**" N7w$q++1 `N/s +;-n wȱ44I$I$&44I$I$%44I$I$%?4$I$DZUU?4I$ $蹧?-m۶@$ȹV44I$I$&44I$I$&44I$I$&44I$I$&44I$I$&44I$I$&4!@"8$QDZPp**4mDZf?۶ ۲1DZE@`D۶m`DZE 44I$I$&44I$I$&44I$I$%44I$I$%44I$I$%44I$I$%4  DZE@@@4 DZE41 %41e`%D1DZUUD[mMEPDȒmE4% mDZ**-41%44I$I$%44I$I$%44I$I$%4 DZ@4%K$$)PTUI$I$E)$!$E)!I$I$E)$!II$E)! *`&`&E) V^^\! E)!- IE)!7.I$I$E)$!HE) I$I$1I$I 1 E)$!C0E)` !E) %) @0%)`E)a-I$I$E)$!**HE)  E)b*' I$I$E)$!I$I$E)$!$I$B2E)!tb۶hE)ت 6lŖlE)  I$E)! `E) II$E)!*(@$I$1I$I$E)!$A@E)!Plۖ PE)  1W%yX---%SE----1(p ----D3ğ=D4I$H2$DZUUTP?۶ ۲-DZE@@D&hlȱE 44I$I$&44I$I$&D4I$I$DZUUUD4H% dDZ5?4I$I$蹧44I$I$&4  DZ!@@@@@$!(I$!I$H$$! ! @!!I$I$pz I$! )I$I$E)I$I$E)I$I$d!d I$I$d!d  !   !I$IH UUU 0H UUIH!UI$I$PH IPHI$$IPHIB$ XHI$m`PU* Ib-9 iP ݶ& q(@ mm$q!@U $7I$q!UU $I$$q!UUU I$!I$I$!xI! I$I$d!d I$I$e)I$I$d!d   !@@I$I$!!I$I$E)I$I$d!d I$I$d!d $@$!I$I!??H!<<I$I$d!d I$I$d!d   !@@I$I$ !!H ! I$I$E)I@!** I$I$E)I$I$d!d I$I$d!d   !I$I$$!b! ! I$I$d!d I$I$$!!  $!! I$I$$!! I$I$$!!I$I$e)!$!I$I$E)H$I$!X  !  !%%H!((@$H$!!I$I$b!&:I$I$a.I$I!+QlE)bI %m/X۶.*ڋrm۶N`IdN ںmڶ ꪨh݆kn.jګ$)* jm%$INJڪC;o|wwH6$.z))۞m[ ꩚zml ⪬r$I, k⩪*-2-ڃ逊Q)`+?I$E)uUUT ?9!ҺmUf1ʺ*mۍ ۆ1!$"$Ie1 Jcۆmۆ1$!}D$I' $!-UU]I$!UUI$$)UU?I$k$!U}$I$j%1UUUؖ$I$)UUU]ۢ1j*,/$I8$ zI$*$)UUI$$)UFy$)U?I$J%1~UU'O'yE)T]U] I$1E)uEUU 0E) !(f1 )@E)!0 E)  m[.S1*jI䉙!Uե+ )5MEa)_۶"N*گHeݶkpkΕI$M$NUVUO$Ic.Ѫbw۵NP M$9. *5@`vb۰e)bMm%)!l0cvl;1L„HB&%)|H$I$ !@ sfY$) +-- 7wfa ---)S+/---)D  -I$H$$!UUTTII$e)I$I$1 `2$!!I$!**++I$I$1 1I$I$$!!@@$ @HH$!$H8TI$IXH_*IR$X!PT$I$P!UUUжmX%)UUU$v$X$!UUU::%I|I$I!?__?H$I$$!!I$$!!WH$H$e)@ E)!zjE)!IE)$!I$I$1I$I$1`&`$E) ^^ZZ $!/dB&d$!8$!H$H$e)  $! I$I$$!!?%7W@  E)!jj E)!I$I$1I$I$1@$@0E) ZZZZ  $!`$!A$ E)!{ $$!!E)$!I$I$E)$!I$I$E)$!$E)! E)!*E)!I$I$E)$!  E)!jjI$I$!UWVV!!%) --HE)!H$E)!I$I$1HE)!^`E)!z^VI$I$d!d  IE)!%5?I$I$1I$I$E)$!-tKE) .I$I$E)$!***@$I$E)! E) %%H$@$E)!^^XE)!) I$I$E)!**I$I$1$A E)! */C$IE)!Ml۶aE)&I$I$HE) 11SiP---- OqW%q----+J//--/,I-ǩ/ 1/ $I$DZǩ1/H$@$DZǩ1/DZǩ1/ DZǩ3!&)̭DZ`-IDIE1- DZ//I$I$%1/ $DZǩ19~ 9̓/ Ig%i Xf$qxxxx9iPxxxN6IXH_m `H*m%h XHZ I- aHս r?h1*~ R'iP_3&I$E!pZUUI$I$$!!$!a`@$I!a I$I$d!d $! I0IE)!yyyI$I$$!!PPI$I$$!! I$I$e)II$e) $I2$!I$I$$!!I$@e)@$@$E)!@$H$E)!d&`%)X!I$I$$!!I$I$$!!I$I$d!d @$!I$I$!!"H H$$!!,I$H$e) $!I$I$$!! $e)I$I$$!!  I$I$$!!@@ $!I$I$$!!PrRRH!6I$I$$!!$! ꠠI$I$d!d   !  ! $A $! M$I$%9$!WUU1OI$$)-U3 SEA-4-@J$DZ*410ېdDZ*4),DZ`4%IDZ41Il%43 %44I$I$%43H DZ41[mDZ31I$3-[m3!iɧ1&3I- 3_,IHiՕ(~iEW" R if$qRc ifiWS# hEX_ u h%y@_ qIi8 MXIw  IIX9U $I$P9UU n퐶eQ9UUU !I&`$BD) $@29f1 M9e)> $A$91 L BD! m6ۺ 91 I&$ 91 $A91 I$I$B$! P=9p I9a 5 291  A) $IҒ"91*r$I1aVW tII9! ""$H95IIPH++ qW1iP--/ 9ufi-  H$I$9TWUU A) I$I$A) I$A) I$A) $A) I@A) HI91 #91 N&91 I$$ 91 It @91 m&m`91I$I11**(  11!I$1f1*I&LB&91 -I$91h5@#Ȇ1%)X`` )TI9E) 5Օ 59!b | x9b( - i91 LH$91 un91 N"i4@91 )R91 v:m791 I91W_ IlI91U im91 l;A91~ I$v91UUW Ibv 9e) IM9e)* M"'H1a^JI1 It1,iӶ۶1E) mې1E)_ I$$1E)UIے1E)mے9E)* IH9E)I`11Us= @1xO 1-I$H 111!@Iꓛ$1 O$bL1aV\1t1 I$$ 1f1 I$691U_ I$91UU Nb;I9e)cۀ1E)I$`1E)IB 1E)Iv01E) 1iJ$ 11  Mm91 uI9e) IRۭ 9e) Iln 9E) Ivm91 k691 NRۓ$91W kh91 ! 91 vBI91  ImV91 #I I9$!z m;91 m91 &91 DI$91 (1͑9E)jII 1E)7?$I11 *@$I$11 I11 *I$I11ꪪ8I! 91 I$I91 mے91 cw$ 91 IB91 1I@R91 Id$A) !$A) $$I*91 t9( I$I$BD! I$I$BD! I$I$BD! I$I$BD! J$I1a0 0 91 I$I$B$! I$I$B$! %H9UUU $Ij?H9UU @$H9U dH9m۶-H8@ P8wqgwiP-pSqwEi---)p 7SE++-;)vyw蹧=43DZ44I$I$&44I$I$%44I$I$%44I$I$%4H$HDZETT?4I I$蹧?4I$@$蹧44I$I$&44I$I$&44I$I$&44I$I$&?4I$I$蹧44I$I$&4 DZE@@? o۶mDZE ?4H I$蹧?4I$H$蹧44I$I$&44I$I$%44I$I$%44I$I$&4/DZǩ4/ DZǩ44I$I$%44I$I$%43%4):`DZ\?/l}蹧?D-~.ۂl[蹧W?4,۰DZ*h4 &DZf Z4)DZ4,DZE1`4'N$ǩX_W`H!%) I$I$1I$I$1E)!I$I$E)!****X5X5E) XPxxtE) /kK E)(<I$I$E)$!I$I E)$! I$I$1I$I$E)$! 0E)``!E) I  E)!E)!@ E)!zI%)7(I$I$E)$!$E)!Z@$E)!I$I$E)$!I$I$E)$!I$I$1 nE)!M  @$@E) ͖tM E)b '*$H`E)!x$IɄE)!6C3,E)`m)aE) Mɶa%)a' 0 P /qSwwqP//--" p1S%y----1#` N )-41DZ ?4I$DZ5UDӢ0HE@4 pDZEy 44I$I$&?4I$I$蹧44I$I$&44I$I$%D4[ dDZ 5?4I$I$蹧4$@$DZ!@PPPI$I$e)I$I$e)I$I$$! I$I$$!!*I$I$$!!H$H !I$I$$!!I!I$I$d!d I$I$E)I$I@!UUUI$H!UUI$AH!U! H!I$IPH*I$PHI$IXH*m&I`PUտ Ib-9 iP mے$h)*T mKrHq TU $I$i!PUU @$I$q!PUUUI$I$d!d I$I$d!d I$I$d!d I$I$d!d I$@$!I$!*I$I$d!d @$!I$I$e)I$I$d!d !I$H$!I$I$E)I!*%%I$I$d!d I$I$d!d @$H$!II!//++I$I$d!d I$I$d!d I$I$d!d  $!I$I$ !H!>>$@!I$I$E)I$I$$!! !!$H$!H$I$!I$I!I$I$E) !  ! $!@$!II!?I$I$e)I$I$$!!I$I$d!d I$I$$!!jbI$I$$!! $!I$I$(!** I$I$e) !@I$I$bA(I$I$A2I$I$A(*II0$)?! 9o) Ύ?NpE۶mӶ-⢪jrY`.j⪪Έm۶mєN?ڎ6l۱morE6%9nܚloڡI;=oU}GUzCMH`" D@ꪚt@]R$J *p ⩖m9dɓ.Jڢmm-nkO{2>P3ȋ%1Xx`ۆ1 9$aI2E) @H$ɒ$1$!Iif1I$I$1!A$I&1$!vl'mۆ1!_l۰aE) m;9!= ?~9b(9!;Ķm1*I$A$)( gۆmۆ1&1!H$I$)(i$I3f1j A$I$9E)QUUUmu1(I"I$9E)UIUUPQ[1a7I)Q%)ե Jua) "m$I I>-jڪztޞmظ- kjĀuٶ ږ.ǿp ۶- k*jcڢ.JڊtaH# k♪`muQJڿ?rm]4mv.s\oHۺ.*kZO$J'J!WVT\M8m;E)`I$H$A~ }$'9?I$L0%) >o N1WfI )-- 7sfQ//&7S ----& -/H$@$$!TPPPI$I$e)1 00$!I$I$!**1I$I$H$!UUUIH$!I$I$!`A۶m2P8@9 `8v% -W*C'h$)*JPUI$I$$!!I$I$$!!1I$I$$! A  $!!@@II$!??_H$A$e)I$A$!!WPI$@$$!!E)!%)$!H$H$$!  %)$!IIe)00$! I$!/???@$A$e)I$$!!H$H$e)I$I $!!I$I$d!d  E)!E)$! E)!I$I$1 2 0$! $!////1 %)$! 1$B"$!%) $@$E)!@E)!E)!ꪪ E)! E)!  E)!I$I$!VWWW  %)%%%5I$I$1H$E)!־I$I$1I$I$1HE)!@$$!$A$E)!??I$I$1I$I$1HHE)!>> I$I$1I$I$1HE)!@$A$E)!!!E)! +I$I$1I$I$1I$I$1I$I$1I$I$1I$I$HE)1X`P---% pfi----+ f++++3$I")ǩE@@1 IE1/ IDZǩ3,-=DZ/z3,@'I$DZp^UU/,I)Pǩ 1-H$$DZ1/H$HDZǩ1/ @$DZǩ3/L$ DZǩ3/ 2`$ǩ- 5fx Zf$qxx"E`WnM%yP{% ЈX$)T$ N$a!@WUa!UUUI$I$E)I$I$e)I$I$d!d !,6@!!I$I$d!d  $! H CE)b!!I!b I$I$!!$I$ 0$!@$I$$!dB$!$$!A$I$e)H$@$E)!^^HE)!־H$H$E)!~! I$I$e)I$I$$!!I$I$$!!//@!bA$H$$!! I$H E)!@$I e)@ $!b!A$A$! H$H$e)I $! I$I$$!!I$I$$!!r I$I$$!!⠠I!b(!& @$!`` A !B!I$I$$!!u-?=!I$@$! I$H$$!!I$@$$! $I$EI$!5UUU- I$$) U1 O%9)1("E@@@4 E43DZ44I$I$%44I$I$%44I$I$%44I$I$%43 DZ3(vP{@DZ***31@$I3!$E3"&I3H E@1&1$Ey``U/ H%y-CIf_)hEW# H%yW  IfiSc faWRc m%yXmM*'aH\ ,I6P@@U $A@UUU fI98 UUmKW鐤@1UU^ HjQ9UUUX ɄA) I$I$A) @9!@ JI9,շ H$I91 # I9%)` Iwo69b- N$t91 !!@91  91 b0J$Er9$!** @$91 B"$R$H9  PH yS1$qX5--- l*R!f9@@@   BE) I$IBD! $&L$BD!  A) $ɐIBD! I$`2A) !I2$A) I$IBD!  ¬:91 MT91 / @!IA) I$A) A$(B%) L$IA) IB$AA) Nm$91 C$H91 m˖09%)` ۸m9! I۶Z I9E) j2: @1bp`I,,1a5`DCĆ1a/$$ 11H$H$11I91$I$91@&L$91 I$91 dډ91 жm$91 ЖN$9f1 In91  @&91 $ $$91 ۤ mk;91 -91 m I91 S&س9x` \I 9A5- L I91 H$91* I$91 $C$91 C`91* IҶ91 vB@91 IB@9f1 IB@91U IB@9f1 M91 IL@91 IҶ691 $I 91* I$I$B$! dB@91 IH@&91 dH$91 $) i'91 $ @m$9f1 `m$91 I$91 m$91* $91 ԶN$91 $I۲9$!j 0I1a>Օ !91 I$1f1*$I$)I)I2$C11I$I11**I$I$g9*@$@11"I I91 M&ma91 I$ I9f1 c;$ 91 I& 91* mH91 Nm I91* i3l91 *9!( $ L$A) $I$BD! I&I$A) I$I$BD! H$I$BD! I$IBD! I$I$BD! I$I$BD! "ɒ$I9!` I%1a՗, TI$I91 I$IBD! ۶möX91 I$I$I9UUU I$eI9UUU* $P9UU IO$P9U $I$H9 H$$IP@m۶m$P8^Pm۵ P8 IB$ P8 4 X8jz*Is0 `8-  iH+Vwv fa) )1uSP e++1) P-)) 43DZ44I$I$%44I$I$%44I$I$%44I$I$&44I$I$%44I$I$%44I$I$%?4@I$蹧?4I$蹧?4I$I$蹧44I$I$&44I$I$&44I$I$&44I$I$&44I$I$&44I$I$%?4I$I$DZ5UUU?4I I$蹧??4I$H 蹧44I$I$&44I$I$%44I$I$%44I$I$&44I$I$%44I$I$%44I$I$%44I$I$%41؂-%4,i)DZ J@D)E Ou?t8`ȹf4@R$>)x4X$I$$!PWUUE)!j E)!ꪪE)!I$I$1E)!I$I$1[5:E)!xxbbI E)'%/*H$H$E)!I$I$E)$!I$I$E)$! **I$I$1I$I$E)$!*I$I$E)$!@$E)! $E)( E)*@$ %)a I$I$E)$! @ E)!@E)!Z`$%)a$%) /H$ E)(I$I$E)!**kKE)(8( E)!'''.II$E)!****؀5X5E)!`HȄ@E)IE)! ɐE)!. $I$E)$! iۢ lPE)%uViP-- p7Sfi +--/ O+/--4/ DZ***+44I$I$%D4 $I$DZUUUD4I$A DZUTQE?4I I$蹧44I$I$&44I$I$&44I$I$&44I$I$%D4[ I$DZPEUD[%X$ȹ!PPPPIdB&$!I$I$e)I$H$e)I$I$e)I$A$$!!  !I$IHUUU!H UUI$H!U I$@!I$HH8ꪨ$ P8* :I$IXH knMXP+# h(*@%Mh U%7I$h! UU $I$i!UUUI$I$$!!I$I$e)I$I$$!! I$I$$!!*:H!((H$! I$I$e)I$I$d!d I$I$d!d @@$!I!****H!((I$I$e)I$I$$!!I$I$d!d I$I$d!d I$I$E)a !! I$I$d!d I$I$d!d H$H$! ! I$I$d!d I$I$e)H!<<@$@$!I$I!++!I$I$d!d H$H!H$I!VI$I$$!!I$I$d!d I$I$$!! !I$H$!II!I$I$E)I$I$e)I$I$$!!5I$I$$!!@I$I$$!!I$I$$!!**I$I$$!! ! !**+%I$I$$!!** I$I$$!!``hhI$@$!II! !  I! == $!ApI$I$I$I$A!.+ I$I$ I !#/I[O9`` \ a9A--/ A) @(B%) Z9!` Ix 9A' Mm91 #ѐ91 Iܶ91 $i҄9E) N֐&H91 I$$)91ߪ n֫%91^X m91% I$91I$I11I 91 91L$L1f1II11*** 211x$H$11++-!  91I$I$9F1I$I$9F1H$I$)I)I$I$g9*$@$11I$I$9!I$I$9!I$I$9!I$I$9! $I$11 *X$L2'e)A\!`1 11 I$I$91I$I$9F1I$I$9F1h'9^IJ1! 11*I$H11! I1f1  89e)X$C&$C91I$IB11 I$i91 c$ H91 ;`9 ܶm9e) ' I&91 IҦ91( IbےI91 M 91 Ivۆm91 I@91 IB@"A) $ 9$!8 ak9e) I2L$A) $I$BD!  I$BD! H$I$BD! ",(a9E) I$M9A׾( H@91 I$I$BD! I  BD! $I$$91 H$@ BD! II$BD! $ 91 $ 9E) I$H$BD! A $B$) 8Q9UU $ɲ$H9UMm۶H$!/\;I$PA5$IPHI$PHI$IXH I۶`H*Iv iPU* vb$7i8Zߖ& %y@*I$'EPߵ+`EXo fiU  fq")nENF5/ISf+4-1iR$e DZ 43DZ44I$I$%?4I$I$DZ5UUU?4II$蹧?44I$I$%44I$I$%44I$I$%44I$I$&44I$I$%44I$I$%?4$I$DZUU?4I$ $蹧?4I$I$蹧44I$I$&44I$I$%44I$I$&44I$I$&44I$I$&44I$I$%?4I$I$DZUUU?4H I$蹧?4I$H 蹧44I$I$&44I$I$%44I$I$%44I$I$%44I$I$%44I$I$&44I$I$%4,DZ@4,ImDZ?ۣ$DZE!p\/H$I$ȡ%)TUUUIIE)!I$I$1I$I$1 E)!I$I$E)$! E)$!I$I$E)$!  E)! L$%)b**zضmݖmE)I$I$E)$!I$I$E)!***I$I$E)$!E)!+/E)!.I$I$1LBE)*I$I$E)$!"@$E)$!I$I$1E)!ꪪI$I$1L%)b. E)!I$I$E)$!*@HE)!HHE)!>: I E)!. I$I$E)!**ökE)بI$A$1I$I$1L E)>I$ $E)$!"  L$PE)5UU hh$1**)) &eJf$i--/6v1DZf-4/ DZ44I$I$&44I$I$&D4I$I$DZUUUD4H2$ dDZTPE?4I$I$蹧?4II 蹧??44I$I$&44I$I$&44I$I$%DC%[%DZ!PPPPI$ $e)I$I$e)I$IX!UUUI$ P!UUIH$!U H PHI$[XHUI$IXH %,`8ZI$P **VmIrPb'X *PUI$I$H! PUU$I$`!@UUUI$I$$!!͍H!*>>*I$I$$!!+ I$I$$!!/  $!$! I$I$$!!I$I$$!! I$I$d!d @ @ !!H!((I$I$d!d @$!$!**I$I$e)I$I$d!d I$I$e)I$I$d!d I$I$d!d I$I$$!!U}URI$I$E)I$I$d!d I$I$d!d I$I$d!d H$I$! ! I$I$d!d I$I$e) !I$H$!II!++**I$I$E)I$I$d!d I$I$E)I$!*I$I$$!!I$I$$!!,$!0I$I$d!d H$H$! ! I$I$d!d I$I$e)I$I$$!!I$I$e)@$$!I$I$$!!I$I$$!! H$! !%***H!<<!H$H$!I !!I$I$e)@$@$!App\I$I$AI$I$b5 $Id%)b/E) Idϕ!5'%$͓yQwI$A$UVUIA ꫫw Q$8wTHI.⒎֚mn?I%Γ UYWEI$M' UUW\ΕMѶ.7h-6oNJڪj}4AaI..z!q$M.)zII-⡊`5ض J*kƭ.ߗ\ r'h&$1X\XX 9!: 9!I$H$9E)UUTU >l;s?9{1$IIf1I$I9E)UUUm۴n[f1 +m۶1檪I$I$E)! löm9 mmۆ1!? JI$9E)TUU!SH*E) @AE)0I$I1$!$ 2$HE)! A 7H$I$jRE)TUUUIJ!U% `X)܅7;mo}_ML-Jڊ`$29N**hrĶm۶ k⢪īk$II⪪ -Jڪꪪkamn J骢ضl۶m⨦wCk  mmۖM.Jڪ*\[~-**-UUUS>50p``b4vmE)F*vĶE)Z"h5m6%)~I$I$ jIE1!*.*)OfiEA---- NSq----,!++/-1 "!@@@I$I$$!! *II$! m&mbX$!UUUIm؆mHI$I$PHI PH* mn `PU+ vr0!q(*@ R$I$i$!PTUUI$A$e)I$I$$!! $!$!$@$@2$!$! I$$!!H$H$$!$!I$Ie)$!$B!H$!!I$@%)!H$H$e) E)!H1 0$!@@II$!-5/*I $e) 1 IL$$!A$!!$H$$! $!!I E)$! E)$!H$Ie)0E) zzjjII$!????I$I$$!!0$A&dB$!@$I$$!!L@$@$!< E)!jjE)! E)!E)!I$I$E)$!I$I$1I$I$1H$I$!VVV^  $!%%%%I$I$1I$I$1I$I$1@I$E)$!I$I$1 ɐH$!*L@$I$!<(*E)!*I$I$E)$!HE)!>I$I$1@E)!ZE)!)*@$I$E)$!I 1 %)$!ꪪE)!** E)!I$I$E)$!I$I$E)$!**I$I$HE)1S1SXH/---7q7SEa ---)f ---1)nViDZՕ1)$P&DZ^V-)$ID/,I ǩ/- A ǩ1-! 2DZ1- ɄIDZ1-dHDZǩ1 DZEI@1IҖ$$)U)I$$)UU#H$I$|~$! $! e)I$I$1$$!p$!((I$I$$!! I$I$$!!55 I$I$$!!PH!4I$I$$!!LH$ $!I$I$$!!I$I$d!d !d$! 2!2E)! I I&E)z$@$&$!R$IE)! $!!  1$$!PI$I$e)`&@%)xI$@E)!@$H$E)!I$I$$!!I$I$$!!H!8I$I$$!!I$I$$!!I$I$%)!ZH$H$$!!h  H$! $$e)I e)H$$E)!zI$ $!  I e)$CI$!I$I$$!!I$H$$!!ࠠI$I$$!!I$I$$!!XI$I$e)$! ! Ie)ɄIȄ$!b(6, 1$@$e)I e)I$I$$!!Լ($! "$I$%- yħ$)%1 Mf4,m햷+3/ @DZ 41I6%44I$I$%4$@$DZEPPP4 DZE 43@ DZ41۶-H-DZ31@$I$3,04/ B$DZǩ 4%iڶ:DZz1$EzU/'I$E^UULB EEyMۆmE%y, Oy%yUU/, I%qU- %y,ҶIfU#M?ۆaV|! ~ i%yW~ b$ HfiWS# iE`UObc i%yXU Ib# HqXU Ib$ HiPW  $=XfI` $vPIUL=mKP^ )T@fP9WW  \P9UUU $A9UUU j*U9$! >@1=5I$IPHW*xqiP-yw1ufi--/ ۰:y!~ VN$9a( ۶mh9f1 II91.  @$91 I91" I$I$B$! A$I$B$! $ &19E)` ж9 tJ9qS9$! -- $H$BD! II$BD! 0d$A) 9h&9Axx  9b -- "I$ 91 * O̗`9, lSm91 ! ђHI91 $Iش9e)( (B%) 99e)xp ж'9z^ 9 @2$C2A) $I$A) {$}9V^ I$I9$! I$A) X6 91p P@91  @(B%) ! I&A) d@(B%) i99 I99 v"ѐ(91 Nn M91 m I91 I9f1 IҶ91 Ib91 IB91 IB@91 N"91 IB91 IҶ 91 IRې91 Ib91 IҶI91 mm9! m91 m91 IB91 IbҀH91 Iv91 }'9AZ j9 'N$1A V\ T! 9 !(B%) '{9^\ '0H9! d$A) !A$$A)  @$(B%)  4#9!`` 9b/. @I$A) @$A) @$I$BD! I$BD! C&dB2A) I$I$BD!  91 ߪQ9$!W޸ TI$91 $BD! I$I$B$! I$@ BD! I$I$B$!  BD! @ 09` P9A / I$I$BD!  $BD! k۶k91 @D;%Q9UUU $Q9UU ,9H1  HE! :I$P9*$IQHUH$IPH*I$$IPHIB$ XHI$m`PUտ*Ibm'iPU 햜 $iPP%%yP%7E`U o%'fi! 6f$q*&o&EU)mEտ-햜$f /vm$f_1Of^/ N ȧU% mo4!mۧ 4! `'DZ%_4%DZ44I$I$%44I$I$%44I$I$%4! DZf==44I$I$&44I$I$%44I$I$%44I$I$&44I$I$&44I$I$%?4 $I$蹧?4I$I$蹧??4I$I$蹧44I$I$&44I$I$&44I$I$&44I$I$&44I$I$&44I$I$%44I$I$%?4H$I$蹧?4I$I$蹧44I$I$%44I$I$%44I$I$%44I$I$&?c2&DZEXX4 @DZE44p$DZ%)`XW M:$Ce1j$!%) I$I$$!!/,8E)$!I$I$1I$I$1I$I$E)$!HE)!I$I$1I$I$E)! HH$!z!IIE)!I$I$E)$!I$I$1I$I$1H$ E)LE)6I$I$E)$!  E)!k:ݚE)@$@%)$!I$I$1I$I$1I$I$1I$I$1E)$!I$I$1@$E)!۰uM$E)a `&E)!I$I$1I$I$E)$! I$I$1I$I$E)$! *0@$E)A``B&AE)#۰[%E)a` 1`) --pSwa //-1qwwx ǩf-/ 3,{öXN7mc۬m,k}cT,iꇑb@$H$E! O܆1 O9I:E)A(IDH$E)A1SfaE9----i----+ 1S )--1,ِ ِ --I$I$e)"I f!U -`p(H$PHIm XH+ 7 iP+vYN"$y)* @Pҏ$%y!PTUU $! I$I e)I$I$e)I$I$$!!*I$I $!!$C$$! !H@$! $!H$I$! $! I$I$$!! I$I$$!!p $I$!!H$H$E)!H$H$e)1H$He)$I$$!!@@@@I$I$!I$I$e)I$I$e)`B$I$! I$e)$$! $!!I1I$I$1I$I$1  $!!@@@@II!???I$!!I$H$e)  1IIe)$1LHE)!U@ E)!ꫫ Ie) E)!E)!I$I$1I$H$!^^^\II$!5555I$I$1H$H$$!!@@E)!I%)$!$@E) ZZH$H$E)!VVV^I$!**** E)!I$I$E)$!I$I$E)$!*I$I$E)$! E)!IE)!I$I$1I$I$1H$E)!I$I$E)$!*I$I$E)$!I$I$1He)!I$I$HE)XH/---1qEa----)f-/(%Pl-)J"%$ $/)@ǩ  /-$Iǩ**10RI$DZE*UU1-$C2 DZ1- DZ1!@-DZh1#=۳=$)ppppH 1H$H$e)IH$!,6@$E)!I$Ae) $!!II$e)H@$!(<((! $! I$Ie)I$I$e)I$I$$!!I$I$e)H$H$$! I$I$$!!I$I$$!!LB$A%)ު**!C2$C"E)!kjdB$I$!`IB&I$!aZH$HE) e) 1`B$A$!b A$@E)!@$E)!$@E)pp ! $!I$I$e)$I$$!6I$I$$!!(I$I$$!!I$I$e)`& %)xdB%)ڲ $H$e)  E)! e)@$%)``!$I$!HL$$!I$I$$!! I$I$$!!@I$I$$!!I$I$e) $@$e)I$I$$!! I$I $! I$ $!! II$e)H$@$$! 1$H$! $e)I$I$e)I$I$$!! I$I$$!! I$@e)'O$EQ$!UUU-I$$)%U3 s!-4-@J$DZ*410ېdDZ*4@DZEP4DZE43@$A%41۶,%4-C:`3 I&EX/$)I$E@UU, %qI$I$hI$IfEUUU1I$ ǩEUU%4II$ǩE4+vDZU4/I*I$?3/dB2$IDZ3+vB( _z3(I/#2HUꪠ-3@f_+~ If_(O IEW" H%yW OR ifqWc%E`P#y@EyXb$ @%yXU b# IqPUIbk HiPUI$m l`PUW P'm˶P9V m۶P9I$IXH* yyw7qP-/+ 1sf%q lClMi!IIbն шmvn91 A) mm091  I I91(* I$IBD! I$I$B$! P= @9`pIA1a   4I9e) ** I$91 I$I$B$! *59` Cx9 % !@m9!  I$A$BD! @!$A) I$ BD! , D91 N9E)U( M91 0`$A) |= 9^p )T9  $Mт-91 II$BD! C(A$I91 L$ A) I$I$BD! !A!A) @$(B%) I$I$A) H$H$BD! !!A) I$I$(B%) d$I&99 I$I$A) @ A) IIBD! I$IA) I$I$(B%) $I$99 $I$99 H&L$99 $I$A) $I$A) $I$A) $I$A) $I$A) $I$A) $I$A) $I$99* $I$99 $I$99 H$I$99 (B%) $I$A) I$I$A) h"$i9 91 A) B"$I91 H$dB&BD! 09!` I9! N9. I$I$BD! $I$I91 I BD! @ $A) I$I$B$! I!A)  091 I$I$B$! $@,-9E)` I9!. Th$9a V H9E) I$H$B$!  $BD! ۆmض691  $9e9_ @9յ/IdeIA/ 4L$H9U@I$P9ժ$I$%IHUUUH$IbP%II$ PH I$IXH*IB$ XHm$) `PUUIn iPU* I-9 iP I~-) %yXU -9 %X6.EPjeP?/"vR$`_Z &in$`)풜E-ݒf 1"ݖ6 կ1ۦ'rEy\\x3,I64-M$DZ41IlDZ 41ɶDZ 4/DZǩ4!clDZZ4%I$h`DZUWh)%I$I$,!Mжm۶f>4` uRDZf_4!DZ44I$I$%44I$I$%44I$I$%?4 $I$DZUU44I$I$%44I$I$%44I$I$%44I$I$&44I$I$%44I$I$%44I$I$%?4I$ $蹧?4I$I$蹧44I$I$&44I$I$&44I$I$&44I$I$&44I$I$&44I$I$%?4I$I$DZ=UU?4I$ $蹧?4I$I$蹧44I$I$&44I$I$%Dۿa۶-DZ%Q@4%K$E)XVUI$I$1E)!I$I$1$@!`E)!I$I$1  0%)(h`E) @HE)!I$I$1I$I$E)!H$@$!!E)! -I$I$1I$I$1 e)!jE) I$I$1I$I$1 E)!ﯫVl[&E)$@ E)!E)!I$I$1 E)!I%)a*&(I$I$1I$I$E)$!I$I$1`0 E)x][EE)I$I$1I$A$E)$!I$I$1`E)ؠE)!XI$I$E)$!**E)$!說! PE) pEX+-4`.vȩE +F-V^M)4#!DZA ?I4I$f1E)UTUQE)@ E) 0̄Zjf1hm۱lf1$! lGmǧ9am۶m1) 9$I E)$! j۶mҢf1E) 9 /׏ İm9  9 ?I$IE)$)+IϕE)ՕFaM *hJp[mq k⚪Ҁ}϶n?ֈc}N}?Β|NaIm * _ɑINJڡ*wdII2.k⪪jĀ$Y$H.⪛k!IANJک"k$E QJ ֒o'N_ڃ!6o?ߵ}K + ⶢP4K2$IN Үj*7˳$L$ȩ$!vTTT9x @'9 I$BE) m[&91 mɖd91 @$I$99 $eI9UUU  &L$eI9UUU  ۴%P9UU $P9UU m$P9UUMN$P9U 3I$H1؉mfIHWUU$IbP%IUP$IlQPPUUI$PHI$IXHIB$ XHI۶6XPUI$m `PU Ibm'iPU -9 iP Ir-) %yXU I%7%XU o%'E`U %'fiU  ofi*" o$' %yU&o$'EU)&EU,$fU-mU*/"]$1&m 3)ݖ$ 3" @Ey@@@4P Ey%% 41ImDZ43IDZ43DZ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4r `DZf܀4-$x%EW\P%IYE13@v$>I*z4 O$$!U4 $DZ%)U4$DZ$)U4O$DZ%)WU4"$DZ$)U4$U4$DZ$) U4d$DZ$!U4$DZ%!U4$DZ%)U4$DZ%)U? I$DZ%)U?$@$ȱ%)U4u$DZ$!*U4$DZ!U4$$!U4$DZ%)W4$DZ$)U4#DZ$!4$DZ$)pU1H$I$%!\WUU$@ E)!I$I$1I$I$1I$I$1`&E)LB %)޺  E)!$%)$! $e)E)! &`%) E)!A E)*%%0 2E)!!E) E)!`&E)E)!I$I$E)$!I$I$1I$I$E)$!I$I$1$ E)! .//  E)!$I$I%)!^߯I$I$1IIe)I$I$1$@$E)!I$I$1  E)! E)!C B E) {kkk E)!0C%)`IE)b7+I$I$1I$I$1I$I$E)!I$I$1I HE)%551X`P---% 7q1Sfi----=wqqDZf-D/V *)D4`DZ@D4I$X,DZUUP@?4A$I$蹧44I$I$&44I$I$&44I$I$%?4 I$DZ 5UU?4I$A 蹧?J$J$DZ$!TTTT %)$!I$I$$!!<$1 1@$I$$!!>I$I$$!!I$I$$!!I$I$e)I$I$$!!I$I$e)I$I$$!!I$I$$!!I$I$$!!$$I%)!յ $C2%)!VW_$$!VI$A$$!!@ $!!H$H$e)II$e) $I$$!!PTI$I$$!!(^^*@$!I$I$d!d I$I$e)I$I$e)H!<<II$$!! I$@$e)I$I$$!!@ $I$$!! ((I$I$e)I$I$e)I$I$$!!*I$I$$!!j  !/5I$I$e)!* !!  $!!H$!<I$I$e)I$I$$!!@I$I$E)I$I$d!d I$I$e)I$I$d!d I$I$$!! $C0@$!!I$!I$I$e)I$I$$!! ! H$!I$I$E)I$I$e)I$I$$!!> %)$!@$I$$!!I$I$e)I$I$$!!@$@$!jxI$I!/$! I$I$e)I$I$$!! I$I$$!!I$I$$!!@$!  !b@@I$I$2I$I$buI$I$!boq E)? SEi!UߕZpPJ"ڈ}nꙕTQnN".Oh%_HNJꚈz$E$ c$Hz$pn*ڊRFfd r ڂ0 퀩أmۺʗ]>լ../H$H$᪪ƃ ȑ$ .↪wmQMٴ?t:x[m.kZt!OY-kꢊօm;6lNU_O]9&$1``xX ?Akf1m[؆1*MFۦ1ٶ ۶mE)  Oa۷=9 5I& $1E)UVeUdH$Ie) * $IE)! A!?E)!Lm۶k"f1J0[mۆ1!E) dL4Hf1ڪ ?9 Ͽ 9A: s9 FyID???O&i&h. ҫ`$I 9-*ڪeK}۶.j*_I$I2.*ڢjk6 kj:ұeID!JB鋎]ݶkԯrak# N髨}$IrN⪩ƝmۦcNUU]zmk[ڦzId.⢪w 98-k⦊}&]H ⪺m@XJ0 `K'J' (T\\\aH$H!A! dB I$)H$@$ b L$ $$)j fQ!---- )fa----&--1) J----3H$hEyTTX/iHE)# HE"$%H$fPTUII!/%%5II$$!!@$I$$!!  ! !*  $! I$I$$!!I$I$$!!*** E)!I$I$$!!***I$I$$!!PPI$I$$!!H$H$! ! I$I$$!! ///I$I$$!!I$I$$!! ?@$I$$!!I $!dB&dB0$!PPP@$!I$I$$!!I$I$ $!$!I $! ! H$H$!XX\\ ! $L@$!((I$I$1II$e) I$e)II$!I$I$$!! $!,I$@$$!!@` $I$$!!$H$C2$!$!A$!$1$E)!Z E)!j$!!H$H$!x\\II$!?=I$I$e)` $!$!!II$e)H$H$$! d&`&$!II!*+++I$I$1I$I$1 E) @$@E)$!I$I$E)$!$1I$I$E)$!@$!!@H$E)$!E)!ꪪ1 E)!L$A%) .*H%)IIPH)'%%11q%yX----#E-----&KK 1,fN$DZU4M$K"EVVV1-$I2DZ/!(P$f)! If%ɰ-;F"~)2'N$E`^WU EA@@$@E) @E)$!E)! E)!E)$!몪I$I$1@$H$E)! %)!  $! $A$I2E)*j$$! &`%)XL„$A$!b(@$ $! I$I$$!! 1IIE)! E)! $!!E)$! E)!jꪪ $@%) `%)I1@$@ E)!E)!I$I$1@$@$E)!I$I$$!!@ $! mK$I!$!I$He)@$@$1$I$$!!$4A$A$e)! E)!$I$ E)*I$I$1`$`%)bHHe)I$I$1I$ E)! E)! e)IIe)I$e)I$Ie)@ $!b$IIE)!HE)$!I$I$1@&%)Z`B&%)II$$!!L$`B%)XI$A$$!!@ I$e) $e)1 IE)! E)!ꪪ !  E)!IE)!I$I$%Q%)%UUUp %q$!5U+J%i /95 F-3-MvV+3/$/3/`„L H$I$EUUU3/  DZ*43$I$DZ43I$I%43I%4/(DZǩ4/Ij$DZǩ3/@ DZǩ 41I$0%41I%44I$I$%43%44I$I$%44I$I$%44I$I$%44I$I$%43@DZ41`DZ4/m#3IEy1-LB$ *3)vb$)A 1 Z"%%yZX1 I%y1&]r 3,yn۰/ 3/$C 1#c zꨠ)3HE~#~ H%y_ OR# if%qW b$ @fiUo$ ,EaW@$E`Ub$ mEyXW OR%qXW I iPIb[ @iPWON M`8תݶ[%XHX$ $P@UI$H8 6`?II@UU $IA8UUU $I'A8UUU TI$98%UU"I$8E)UU 0II$98UU I$90UU ɐۦ9!  $$H9UUU $$H9UUU $$H9UUU IIH9UUUT kmm91  I A91 I$$BD! I$I$B$! Lm& 91 l91+ I$@BD! L$L91 91 `B& 91 !$@91*  A) I$I$BD! I$IBD! I$I$B$! I$I$B$! I$I$B$! IBD!  A) I$I$BD! I$I$BD! I$I$BD! I$I$BD!  I$BD) I$I$BD! I$I$99 I$I$99 $H$A9UUU 98 $H9UUU `'cۆAX\p!`ۆ9b  ۰Ic$H1U roH$_ 9mۣ@1~ ,I$H9%$I$H9U$IP9U$IbPAUIIBPHUI0$APHU*mBX8@J ۉa@% I/@%aHUIl& IXPUUI$m`PUU*I6)`PUIbiPU %)iP I$)qXUo$)%yXUo%) %`Uo$'E`U&eiU $'fi In&f$q%o& %y(o& E )E-ݖ&f / I qUU1%ߖ&ի1(ߒ3)ݒ$3,m4/IڶDZ*41ImDZ41ɶDZ 43IDZ*44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4$xDZET\49DZp4 $zU1$I$$!WUU`B&I0$!!!2$!CI!%)1 E)!ꪪ$@LȄ$!<I$H$%)!޾$I$E)> H&%)bظ$%)&H%)a(6I$I$1$ E)p$$I$!E)!`0%)X@E)! %) I$$!! E)!I$$!!  E)!I%).'*I$I$1I$I$1I$I$1I$I$1@E)!۶m[&E)XI$@%)!A$ 1E)! %)$! E)$!$$`E)*xC0 %)!Z[yz!!E)!%%I%)'.@E)!I$I$1I$I$E)$!I$I$1I$I$1@HE)$!  e)!???? H$E)! IE)!I$I$1 0E)@E)!@$@$E)!E)$! &H$%)Aܘ $!   E)!kkok$H%)E)!E)!@E)$!E)(6I$I$E)!I$I$E)$!I$I$HE)IIt`P571Ei----, f )-4-` & DZ J4n d)DZ%JDL$EVVJ4I$a0 DZUUYa44I$I$&?4I$I$蹧44I$I$&44I$I$&D4ɐdI$DZUUDH$K$!TTTT@$A1I $!!@@$H$E)!1I$@$$!!>I$I$$!!TI$I$$!!I$ $!! I$I$e)I$ e)I$H$$!!I$I$$!!I$I$$!!蠠 E)!I$@$E)!H$!VA$A$$! 1@$H$$!!@@I$I$!!AE)![E) I$I$e)I$I$$!!I$I$$!!I$I$$!!I$I $!!@$A$$!!I$I$!*(A$A$e) 1H$H$e)I$I$$! I$I$$!!?ZPI$I$$!! !!I !$! I$I$$!!  $I$$!!I$I$$! I$I$e)I$I$$!!I$I$$!!_RI$I$d!d I$I$e)H!<<I$I $!!I$H$$!!I$I$e)I$I$e)I$I$$!!$@$$!I!*I$I$d!d  !$! @E)!I$A$$!! I$I$e)I$I$$!!@$@$!XXX ! I$I$e)I$I$e)I$I$e) $! $!!  !A@I$I$A+ $I$!AI$I$ !)۱ [f1![UU4IDOș!zio ⩛+t-ڶ-+ڃeöco?'o_ ;oo|}ʤN uEUUwmu۶=t$$INk&eO%Io*骪ր$$SN⪩.tdKdoJ⪪*x  I$C-ꨪj*Ύmێ-Nڝ4I$nGeUUoۏ`'r'k$)XXX\m۶mĆ1$! 6m߇9 1E) ?BI$A&1!3 I$Ie1 ꪢH$H$e)E)VUTUIIE9E)U5 m% eQE) In6 fYE9U KfYE1mnif1 ɓA$!U1% _9!??m6f1 m0Lv1* -{9!/;ɑIħE!_^ٺoz.*ҫhJ8y$adTY`$Mpt&n.*ꢞp%p%H-⪦ _%Y frB/pMΎh۵mZNۓ`P`0 J΃dxdHN*Mmork he-k{Nڀ]-oO?րm7iNoƗI$q$.UT_Ux2'x'j)\X\\'f1z !vf$E)b꣢fI&IB$! fQ ---- 11yfY----&1 +))/)!)----4$ ,E`3@`# J-$I$!@PUUH$H$!xII!5555I$I$e)I$I$$!!  ! !$! I$I$$!!I$I$e) %)!I$I$$! ****I$I$e)I$I$$!!ࠠH$H$!Z !)+++I$I$$!!/???I$I$$!!H!((I$I$d!d I$I$$!!$C&$I!` !I $!I$I$$! I$I$@$@$!I$I$e)I$I$$!!I$I$d!d H$H$!TT\\ !) I$Ie)I$I$1IIe)I$I$e)I$I!I$I$$!!I$I$$!!P\@$I$e)I$I$$!!I$I$$!! I$I$e)1H1 $$!b A$$!!@$@$$!H$H$!X\\XII!+)))I$I$e)H$H$e)$$!!@@I$I$!!I$H$e)`&`&$!II!****I$I$1 E)!E)!E)$!I$I$1H$HE)!I$I$1I$I$1H$H$E)! E)!jj E)!I$I$E)$!IIE)! H%)I PH%-))qq%yX----#E-----&J 3!#)")DZjJJ/IDE/kf% $EU)$I$E.UUU!h$I$E|TUUI$I$h $C$KFEijj*L%)bظI$I$1`E)!޺0E)`$E)*** LȄE)H$H$E)!H$@$%)! A$A$!((d2 I$!`!%)  $!A!A$!0$! $@$! I$ e)II$!!(( E)!  $!! H C%)Bb %)  E)$!L E)1E)!ꪪE)!HE)!@  E)!$@dȄ$!I$I$! E)!HIe)H$H$e)`$`H$!b   E)!E)!I$I$1I$I$1I$I$1H$E)$!I$I$1  E)!IIE)! e)IIe) 1IE)$!LLȄ!,,4II$!I$I$1 E)$!ꪪLB& !Ap( %)a IHe)$ 0`0$!bpI!C2$! $!a I$!a&, 1H$I$$!  $I$e) H$!***( HE)$!IIe)I$I$1@ @$E)!#I$I$$!-UU-Iy䧡$!-/ I3,m/?3/$$ 41ۖmۖ DZ41ٶmDZ41 %4/P$DZǩ4/$I$DZǩ4/m6iDZǩ4/IIDZǩ4/$IDZǩ44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%41$%41,I$%41$I%41I$%41I%41%43@DZ43IDZ41ImlDZ41I mDZ*43I$I$DZ*41@$IDZ4-tB$ H3)ӶIW1%CH-"~W,Chf_ꪨ(##ij`&Ioi lm$%qU d lxbEiT$ $E`P $=$qXWIbiPUI HaHUIbk H`HUNb H`@U I%y@UU I'%q@UU I$ h$q@UU I$Ha8U  @i8Uݺ$ @i8vR[ H`H_Ib$ `HUvb$ H`H_IҶ[ lXHUIB$ XHIB$ XHIB$ XHIB&$ XHI$PHI$PHI$PH `;m۶P9` P9U @IA@ IP9U `IP9U `IP9U gIP9U `IP9U ԶIP9U жIP9U жIP9U жIP9U жIP9U жIP9U жIP9U жIP9U &IP9 I$IPHI$IPHI$PH$PHI$PHI$PHI$PHI$IPH/*$$JP8TTIB$ XHIB$XHIB$ XHi۶`PUUI$-HaPUUI$m `PUIbm+ iPU*ݶK`@T Ib$'iP Im; iPW Ӷ%q@*ٶ&%y@*n)%a r- EEi* Mf%i_* , IBжǑqUR II$yUU \ IjqU_II%UU#EU(&EU" & ID%q, LiVV- I%q1"ݶ& U1&] 3)ݖ$ ի3,v*4-M$DZ4$%EX4E43IDZ43IDZ*44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%44I$I$%4 DZEI@4$%)U4'I$$!^UUH$I$E1%)TUUULE)E)$!$&`0$!a`! $! H ɐE) E)!%)$!IH$E)!׮@$@$E)!zzzI!a6 E)$!I@@$!&HE)< E)!I$I$1E)!  E)!$ A%) %% IE)!LH%)6( C2 $!!$%) I$I $!!d$dB%)Z  E)!뫪E)!I$I$1I$I$1I$I$1I$I$E)$!*@ E)!X%)$! 1 E)$!I$I$1Ie)$%)$!@  E)!z IE)!I$I$1I$I$E)$!H$HE)!־ &%)E)!I$I$1H@$E)$!LLȄE)!>>>>HH$E)!IIE)!I$I$1I$I$1I$I$1@$@$E)!@B E)!kk`H %)  %)!o %) $!a .B HE)b !%) @@$E)$!LE)6(I$I$E)$!`$%)I$IHE)@ $X8 `EP+++),Sf----4-1R!R+44I$I$%JLB $EEVD4lDZD4I%2`DZUP@?4 $I$蹧44I$I$&44I$I$&43%4H$H$DZ!TTTTE)!E)!jIE)!IE)$!@$@$%)$!I$I$$!!TTI$I$$!! * I$I$e)I$I$e)$$!$! *+I$I$e)I$I$$!!PPIIE)! ɄLHE) 1I$I$1I$I$1H$H$e)@L$!<<H$H$$!!LH$$!( I$I$e)I$I$$!!(ּI$I$$!!I$I$$!!  $! I$ E)!II$e)I$@$e)1I$I$$!!/ I$I$$!!@I$I$$!! I$I$$!!I$I$$!!I$I$$!!I$I$e)I$I$$!!BI$I$$!!)% $$!(I$I$e)I$I$e)I$I$$!!@@I$I$E)$H$!X! +**I$I$$!!A$I$$!! e)0$C$! @$!I$@$$!!I$I$$!!I!**I$I$$!!/* $!!A$A$!@$$!!@@@$I$$!!I$Ie)I$  e)@$H$!XXX\ $!% I$I$e)I$I$e)I I$$!!I$I$%)!I$I$$!!I$I$e) $!b@@@`I$I$AI$I$ a**I$I$ a+) $I!%)cIdI)r ۴okFI$INѢ`۶mR0l-Jڪ},V-N**ܕl{omɟ-֡?˰sn uETUtUADIN⪋ĕ$ِ yr.ꪦڈlk4bKoqOz @P mfʵKoJ⛪ʤ'?NUUU}$0Zm۶iѶoѪ)keѶUok;Hx'H$ E)\\TT ~9A 9b)6ղmۦ1 6۶ ;1hA ~? _9!M۶븧9! qs` eQE)+ k&G fieI+  Hn1axOS4nE) AmME) -cE)!=:@wE)( MME) E)! M)E)j E)0!+ n%)*/ ;mE)! $mӴE)!*oE)! $ &E)!\eCwE)ڀ !a`wdb{cE) kɏE)U H$%'!X %$!?cE)mkE)!(3a$e)` HXE)A  [:]aE)! hkE)! CIe) ` I)E) W'E)!  E)!_ $I4!E)J 跗w%) 3w!u ͪ!' @d:!. )i!. dS$E) m]N޶E)!*U .E)! CE)! m&E)!*kE)  ߰E)!,B  "EE) \s ]SE)!U vc[E) UU Bj$!`A$H$-I$rn U`R1d )I!0ې! @$! CeE)!zUU ٰdCn$!!?T} @`kuE)!U 31E)!c= dL&E) # ,IPE)!k DI"$! An$}7!*mjm!$"I$I I$I$+I I$ $!2 dbI-?!U$I! I`;!_ ֦֡!  HPȐ! Bi2!" eJ+! #N ւ kE) C=%)[nE)!cCnи f1z*I.:ME)A` M5E)A`?O $!! OIE)- $I IE))߷$E)! `$E)!$re)!/Cchf1^ mۻ#E)`nݻyIE)׭ lH E) 4eR@:e)!!/$E)! ӆuE)! L2!HE)!Wl^e)!7p Q$E) E) pTE)a- (4aE)!* iXE)$! $Ge)! Ē$e)! hNE)! u e)!/s`E)Xih9NE) qĖ%E)! @:4iE)!* E)! aLE)! )`m6E)!// Z)I:4E)` NLE)_ !, ӈ)! FNYE)!]o mE)! ύտE)! M6mE)! ؂ E)!( 0{͖e)! > ږbE)! 0 utӲE) 4` ɶ%:E)!U_A oW п6H!> M[x!( P0I!x'+ AX!/ ʧH! +A! 0mwE) miuE)!-]'e)!UxE)!m E)! E)! ۰vm6E)!x M5ۖaE)!> $JE)!) %ne)!'XB* $B&!E)! #9)xE)! PQ!E)!p@ T{E)!! M.$E)W`  A#E)  I$E)!w.?E)!U @]$!!x߃ )A-E)!U $RE)! E)a`4Q$IA2m6 (E]Utf ĕ ظ1] j!dQ6c'  [MWm! 4c!Z x -!p*j Xw! qI$! l! 5 `$!!8π Xta$!! 1EH)1%)!Uk HJE) ۶n͆mE)!/ K! E) 6p X6E)tL01E)$!" [:E) R1lE)E)! * @$)( E)!b زmAnE)!H! ƱM:E) ڰe@$!: $$I$!! Hr! 4IHE)!u TC"E)!z?ehΟ!I  H$I$!IL$!A`CC&dS17u]I$P3qg z  |O!zץ 4!=_ i! ښ0!  ! )ad! GN!7 6 2E)!U Xa4AE)!^ pXBE)x $m E)* *@)E) ' ar!uE)! mE)! h$IE)p@ iaE)# l˶E)!6 lE)! +1$ME)`  !* e d;! IO"! W N ! 5!@bI$IꪪA$L$I$I$a8&I$I$( H$I$ : $ uM]ֶ> յЭZ { ꛔ5!׫z -'s!^ 0+I! КNM! ZM I,! !  B! &AcK!8 x8 $! R(8!(0 B$Ү!H 0c$!" @ TE) aE)%ɏE)! ]k# e)!~ #IE) O@JE)AW $E)A oɍ&! pI$I$kcI$I$bkI$I$biښI$I a8,~!% E) On YNE)A * i.)iE)+ 'U5Me)!_+/se)!>ye)$! nE)!crAe) *~ E)`+ #,PE)U g@E)h re1!^ U! ' |!  !7 nDHE)+ rE)z  N)AE) A3He)!$E)!>y"Ie)$! $H+mE) TIVE)!) %H$e)!?C Xje) x )'e) )ހ 2Rqe)!@"- O> E) p &%) m׵c!w%E)A- m4IE) Im6E)!" nۖmE)! !I$$E)! $ mE)zME)}چi?me)} @qmE) u 6 E)!  $e)!CA8Ie)!^.٘-Ie) IME)( >NE)zmyUA%) 9ٵɒE) dHE)!W  D$e)$!(* !I!I&E)!  Idne) (~ ?IE)ie) v6E)!~ ME)  E)! VE)! Z@IN516hJf1- @ct9E)! %eCE)yQ̢}E)a ۶mE)!.`7E)!wItE)! ȖȦE)! m[;AE)! E)!* "% d,E)!*_ %9AοE)* @:E)!*_ IE)  @E)!z -ߺf1 +6i616E)/p$Ar1!ꪨ `^.ɶE)!* ղ ҊIE)!.]?vqE)!mAڟE)!7>E)! $ɖl E)! m۶ME)! `E)! l}E)(.ߨ_E)!" XӶm$E)!  DE)!ր ҉ME)! 4kҬE)!. J& IE) uE)D_v!(  aB\!`. PU!X% M&$! \ OEa$!p5`?}E)! :E)!**~ ۶u.E)! E)$! $E)$!* ִ[ڥE)! `B$$E)! qZIE)! miE)!* M۵E)! : N!qE)' DIfE) rL2$ E)! IP E)!'  0B*E)xvۮmE)`m?E)!  E)! 'tE)! (dqE)! $E)! dLE)! m]mE)!"+ dOP3AE)!%p &pE)! ʗE)ش $iD!o  Lb!. !$m$5! 6N!.  H $!%(b Kj$!ྋ & !- $ D?$! ^ #)A}rsE) W+ jH HE) &AM E)!W !Ca@E)!" qL2E)!* i6۰E)!x  `"E)! ܂ I E)!- @E)!7` 2YNe) b(- VCUE)  2URE)!`  E)  4 [-fIE) I$:! j & wE)  @+@E) & mE)  'E)!* UE)! dB E)!ڀ* MtBE) .x !+Z $~! Ԕ$i!  ID$! [$!! д+u$!!7z iJCE)!_ IP%)!W $LE)!* j:ME)!B / i !E)!Z>uE)!( SHrE) @( h@?E)4E)! E"ۀmE)!@ ZtٶE)!#) s5ME) bhZD:$!(+ ]ې$$!!- U mQ;! *  ☘%)* Ӥ)E)(jԱ!I $H$I$!AL$!A`V*4h$!!@J8 wP[o:.iaa ^ yUH]!5#{ ?1%!^ M ! I)! Maܶ! $%iP'%)+ %) I$iE)!j '$BAE)b '$! & hA E) :O%iE)!鷜z @E)! 9( E)@ 6MdkE)"  E)! K4mE)! AE)` I*um! dvB! cSJ!j ?9!- Ų=X.!BpI$I@ II$I$A, I$I$(I$I$*$I$ CfIdd H ĉ8 ~}$Ѥe   uRJ!_ I^I! U $$!U+ 4$!U wOi!- s2aD! 0MK!  tD&h!  X<4w$! . ~J͠F$!  a̠}%) A D! 0 $ib5%) >z  !E), S)1ME)jj mhE)( km˶nE)! '%)\ ĕ!U -@w7:!}W @!  I$ <,I$I$A8I$I$jI$I$bzI$I$bI$I+* H$@I$ [-6ɐ6A%i y խiJĤ!_$ dl! $?Aґ!j m h:! dwPB!p +T!.> XY7|! =E! 8 Bo9!< t!, j$!/ RO!  H$! m6s! .@x%) :  D0E)!z_ l@$!Ȁ $ Î! #h_E)! #@mE)z I@E) $ E)׀ I5$! $I ( I$I$ڞI$I$ڞI$I$b*.&I$I$,'i$A$0A ` OE)]- ܦE) VTE)A~* y 6 e)*/?e)!>E)!vP۵E)! | hmE) ɐD E)_ P HE) ḯz%) SH4% !{ 5ќ!  M!* $zTI1!b :ERM$!6+ !ehE)* CnE)ڪ h E)!Wz$?E)!>E)! $AE)ҰmrE)! CIMe)!^I>iE)!%\䖖;E)! t"Ȓ0IE)b\ j2E)x$Ia¢7$I$0a븸'w%)A' %) &EE) @ y'`mE) &֮e)E)]*} $I9E)jm?e)۶e)} 0HE)! 6ie)$! |" e) ^)?6E) ^ ڭe)!p khE) E)!" q nE)! k tE)!W ! H$IE)!* v&E)!* TrE)!U ֭ؖnE)! M7lE)! 4m۶E)! ~T NE)$If1- N/1$!y[E)!*'d6~E)!tktE)$!*v$E)! N awE)! [mkE)!^ I ۶nE)!  D2E)!~ TE)!W I&e)!W I m IE) ՠ 䐐(E)! ׀ M E)! R (rE)`|?NE)` ^هE)`4}$! ( 4M$0!` Uh$!x% Ǥ$!!*A 6Ax$!7E)!冱KE)!** d0E)! m_E)$! 2JE)!ꀀ v"@qe)!U(( I IE) %dE)! m۶hvE)! * #aҤIE)pͩE)' $ABE) " Z"E)!8 &PE)!' 4 ,E)pSiE)wE)! Hڴm۵E)!*mvnBE)! (ñ3E)! $iE)!芊 k׮kdE)!" дXuE)!p" $@5E)!%x n E)!  E)ؼ A$I! 0X!. & !<  A@! 6 !X% $NҪ$! I%`E) REE)!z m0'E)! U$E) PE)  D&$IE)! k׵mE)!* dR# E)!=X H E)!  IE)!: d@ I2E)! 'p h4PqE) 鑉VE)  7,S'Me)!` 4mTE) 4 0b(@E)؀ HAE)! $M:E)!/Wd$E) U T#gE) E)!*em E)! + @E)!+ڠ* &E)!\ 肣E) p?in! (4jt ` )DID! pi!/  ! ǩ4Q!-* ) I8! =?%!X/ sO$!z/ qE) E)!*+u'E)!#E)!lE)! @E)! ò&E)!*-^ ,HE)! &L$IE)! * $R#AE) <` !2!E)!" %ƟE)! `xvE) @ 4H$CE)! t E)z q)HTE) IE)!eY?NE)! u,I $!! @?E)!  iE)!* 0a.8E)Jpn^[!aH1fh (DQ&:{]lW.Б( ؤͭ'!_`i6  (PI!ޭ $AL!/_ 8i!/ I&!^ HO! D )A$! d"Q&)A$!!ݐ I* A$!!=?zfo?E)!_ " E)! 睊  E)!* - g" E) @ i E)!oE)$!" & E) @A&E) _E)!" X6Me)!J ҂iTIE)` $@sX%) fia$! + 2`$!!w+" $]! * 5鰴E)!zW NRE)!W @ߌ!AI H$I$ d$!ASW9XWoq?ui6 Ъ9vkw ~  IT!+Z RX !z) @O!-^ ?/7m!+ ж! $i! ]d $!  ٲ&E)!U -HE)!z db)1E)` UPiE)!/_}  E) &zE)!鷜 H6IۦE)!*  }âE), mE)" ضͶnE)! IE)!  1IE)` Ҙߒ! f'$! iI;!z & !// J,!Bp!I$I$H$I$I$a<.I$I$(H$I$vI$!!0m$LF` $ͫ!~rBM XۉE! l !+U n cr!U m $!ժ /h7U!+ 4! HQ1$! !DZtb$!(  I%)7j 0 $!8`  6h%) A!H$!! 6a$MGE)!+ . ` E), 5u)E)(j mE)! [fضlE)!* v+ rE)\ m+ym$!U W! u= dIO ! h I $I$I$ajI$I$jI$I$I$I$*I$I$ !$$!AHIa$H Эt"A5 k ^U )7M! ֶ&! "W'!z_ S!- [9I9!x !. ԚB!  $BJ!.Š p ! k6<!8 S6q$!0 =! !@ " $!@ j! b %)   @@E)! +-%)b Y?!  !^ U_ 7~'! {!I bI$I$I$I$A..I$I$bI$I$zڞI$I$jڞI$I$b**.&I$I$¸,'II$ .$I !$I0 1( R$ U !U IB U_ 3A!j &ĜS! > 4!x!*. !>˺ h!8 :!${ ZC!,8  Xvl'! * OjV!, ;c$$!& $R$! 80 X d)!00@ dE)!_wvW $ I! D̍! @E)!3Iu ie)!{נ @0E)z ɿ>6E)h tE) z$IAI$I$bI$I$i{I$I$iyI$Ibis>$IȄ $ 'IE)b 0E)aZ' ;AE) y'h+e) /6T?e)!+$̀e)$!  ߨE)!l.mn e)!~ Z.rE)Z [:(He)~ $E)~ ^R1!*( pF! iT! R!J!ˋ )z E)  E)zx "A[ E)o+ Iv#@E) +U_a?e)!&ߑe)! $i&E)!+_ AIE)! Euېe)E)b# -M iAe) ׀&RaE)!5p P# E) ` ?E) ]q! $I&6yyaE)A 4h$i%)  hNie) \- ! &iE)!   C$0E)!~  h?E) mE)!n}?e)! mE)!W "E)!= #dSe)!-4hE)!`$=e) -؀ R@ AE)x X3`E)pm %)/ EiIE)5 Et E)!R &Ie)!%(** $AE)! QV;E)$ mE)He)! mE) (SE)!- L@$IE)! dݶE)! Ie) 2@e)!t<8E)! (Scf1xnϻ%) )(ܷE)!?gE)!u| BE)!" q6E)!z* $J"E)!* @$ɐE)!  RA%E)!**_ I8E) mE) E)! E)!XӶE) 7p$iԜe) tDF#He)! '˶E)!  $m;E)! 8vE)!(SE)!ꪫ6}E)!誫 [mXdE)! жmE)! D(2E)! MPE) m5E)! k ME) ^(  (@E)!  iE)! vK6E)! 8E)% $ŘE)^~%)!mYUU ! ˛!$! 9M 0$!(` $hr E)-}aJt^E)!*:E)!* C 0E)! OAE)! ?yE)$! cE)$!8  IE)!W S7mE)!- ivE)!  " &ME) !0{LE) <$ME)& H5ۊ.E)!< $ Q& GE)!  $A#LE)PiúE)!I]E)! hmۖuE)! E)! m/e)E)~]  E)!ꊫ um*E)! !0AE)! Z" M2,E)! ,E)! &hڔE)` !DHI!  hO! aD$!% P !¸ y5a$! IT!' ֜$IE)׫ mKM$!5$! &IE) s#WrE)!" @&nE)! imE)!* qN :E)!{"( E)!ި d8E)!5p nЖIe)! n: E)! @ @}W!xޯ )uJz! `͘  0Ю * X@A!A.  9iӴM!* A"@!( 0!. tn!( ؅E!" ^Vm7!2* ڸ '!V M!= wL!/ 97&@$! ֖E)! j I$ɘE)!W IE)!* I$I$E)!* :A:E)!j IE)! I{E)!, Cd$PE)!0  ! E)! vbE)! ۲[E)!` ۂ ͶE)!z  BE)!*h mYmE)! ;* h*` iE) p&`E) AAE) C!E)!( '$HE) DIfE) E)! ڢIжE)!: /E)! "(E)!  @ɋE)! KNjf1&b+'rjf1b ۺmlE)! "&aE)֬ O0E) ` ȝy$!AmˡE kYː $f(*1`)rHi1lƊϝ,O Ǵ*W֨Q  iCD  @C!^s;R [ [TbG! V9\!{ X߱Xi! nj! usZ! д!h/ ڼ&m! 9&! [曖! "  )i$)h! Kuۖ$$!( DS!` ۊ mڦ$!!_  Ic$!!I  H$! @LCq$! IDR$! IC%)!  iAE)! Z[۴E)! 4۶mE)! ۶[mE)!/ ݆ؐmE)! ( Z)(IE)@ ArE) 6p IHE)  ۲elE)!*(/tE)! J(n˶!E)!" E)!` ۶ 蠍E)&, ɐ2E)! (emٖE)!8$Mae) * jle)! ]RE)!  )5E) 8 $E)!"( +AmE)!P ]MY ! "&$! C[6$! AF! $@e$!!  JCm$! -bA5$!!z mm۶a$!!p )Ɋ B$!!@ ณME) UR* DAv:E)**x rE) - [m0#E)!*G `Ν!!𸮩Cvڶ ֵ[$!!-0D$ !L$bM4h0 M . ۬ I0 %-mWo4$1r!_ Ŭ!o  eQ5R!  !* T!IZ ؓSI!5 I! 4I1! ` !z- ?q!~ m q!" *I! mde$!"("  9$$!  I@$! ( "%@$! 2 [;KtE)!߷ M ۲m$!!Vj &I'&!HE)!_= j3E) ۦE) DIDE)!K "ђ E)!j !`BE)!7x نmdE)!( $HZ$E)!* 1 E)b  QLE)  Y!vE)!h.OE)! +mv E)!x  ME) P%>E) &8 Ӻ48E) $ru`-ݻE)!6 dž}E)!&* +5ۆmE)! $2BME)@ ŖVE)< kuuE)!* # #Z6E)\ qD! (+$$! $IBd$! " ša$! Ȱm݊$! . c! ڪTmE)!WU]YE)/ c;IE)!W 0mlE) r"DiE)^ ~?hE)BH II$I$ IM "@m۶ I$I$6mG"PlR 4dRP IHL  #;N!~WUu!!d &)Q`(  9!_ 3H!{{ u!  N!+  q H!x ?Ӷm! dy$i! g$!* \!"  hi!8 mDE)-R[E)  [u-E)!Zp "BE) 6!9QE)/x }=%)A .` M%) ZWayE)!^m_ Ie0E) ?z ]6K4E)! j&$ME)  IE)( 4 "Ij`E)!OE)!k sڸE)!(4 $E)@ CE)  $ P7IhE)!  4\kE)!B; TE)>  @E)! %؂"E) [Vl۶5E)!k AHE)!: z E)ޠ 嶍$!U a! n02!h IǠ@h$! I.>! DI! #HbD !`0`?&E)!%UUhki:e) U} nL1E)*jHڶ]bI$I$*m6m:Bư:I$I$((:*$C$Ab.-njm "L0a$!A9 "P$ 8*vkI"6֮f t `Ĉ ) Yw!b!}m 5K !z- qBɉ!7 J! D!W !X 1!`q!5 qTQ!) %I0?!:( V 4! $@uU!*; %@m!3U* 6y:$! l'! $ W!% 3'M1! eE)! _UE)/ ӜnP;ME)!x UGE)8 ,QE) $)|$! 4  $! 0" /|E) IAE) @,jE) QE)*  ٰnE)!: iDiE)"+ $LE)!Ë8 C3 E)a` 1E)a& E)!( (2IE)!\rA IIE) km۶!E)!* &E4I E)!<8 EEHIE)!˨  E)Ȋ $Q!"2U (|!~ " wq!] ՆQO! U [T$!. uEi!"  đ!U x3!&  I$! '!b|I$I$I$I$aÑB I$I$jI$I$ I$I$I$I$ `$I$, $I$ 6.j E6c$!!0A26k N:%\)V z"S" k W|!y^ `Oɒ!$pB!ֿ mM;!}^ 9iM!z k^O4j!^/ 1)H$ !) @! Si>! z ڤq7!  Ij! 丫i!*  A*i!xȀ q5 j!; N $!)Ԁ 4IT!"/ mm)l$!* E28!( RER$! *> 3$%)p( Cz&4%)b b i60$!` ̄.b! ܤuĖbE) &(LE)ˆ m͆dE)! 4(D"$! mtضE)!7 I$IE)! `&9BE)xb 5LaE)(" CE)!6 E) $ hP E)!*(lm]E)!# mh:4E)!9 UTIE)!) 4)E)!wT^Z @2!( ! $Id! $j!U >$U!. S-k! -^ $D:!+ 1!`$I$I$I$caj:ضbI$I$I$I$AhI$I$b*I$I$ I$I$I$I$I$I$bH $  "I$"$H  (( U;v(Эk.k,hBڥREvY!^[R@!. TP! $a!zW I! $i! Ii!u - $I! I4!{ uXi!U  I!U "! DA&H! "-A! :)R:l! Ȇa$! jJ$! P @! AL!. 6NF$9E)!e !pME)A qI$! " }.j!0 a`$!  4$! mc!  HJR$$!0 EIE)2 Xnk5E)!z{ ?h$!$ dB" Z$! +-(%)abȊ FlbE)A kn@E)!+ 6/E)!.r m-E)!n  E)j ?aI! `4m!U AS!u p' !_ I}!ހ 4i@! dHdX! 2 #=b'!aI$I$I$I$j-EAΣ2(I$I$I$I$AzI$I$A/"I$I$I$I$bI$I$(I$I$A*I$I$ȊI$I$b̢I$I$ II k]ӦbBӶ;bDȐ! iҶa2M(E  ƒة!!!^]URӄ !^DI!m]! Դۜ!۰e`! ʀi! j/el!꺣 ł;I!Z S? !{* (lɋ! I!- 1%m!/* !*ڊ &C`f!  [m! "a[1C:!* DI! B` !  `RL $!" ?P)!,@ ӐiVQ$!""   !!, BU! #  U)$!&  ! X2!@  U@$!0" " !` m)k$! ]Wu$!; HE)a&4 SmۆnE)! $I2$IE)!j @EE%)! %I2FE)! k-' E)\  !. (&I!ʪ I~!( '!  (Ib!⪢ Oբ!]۵bI$I${I$I$_I$I$aI$I$I$I$A8 I$I$I$I$A:I$I$I$I$ABI$I$a :(I$I$(zI$I$I$I  I&L$ I$I$ `I I$(I & R, hUo]8/{\@Ӷmn!AI E j !C4m  )$! $@!  iN!ꪷ X1gIM! qI!߮ m!"ժ 6ɽ9!  H! 3$q!X 6>! &I/$! 6m!( `;5!/+z mi!8 $`"!** Z]d!">  %! p H! ʀ1!8 l*!" TK41Y!. jGZ7$!> OG!<8 dFۮ!0 hE!8 HQ$!"  S-$!& m4@ !: 3,E)ab FL%)a "# ۺEaE)!zj_ &nHu!, (iB$! Z)>$!C ZѹI2±!B $I! k O(>m!B€ 4 Őq! b*V!ʀ( 'dK!  j%$!(8 )LJ$! ,( "EI$!!`Ò F'-$!  $! # $Ia@$!!(22 $ !a &϶! -$% E) ue E)_ ?m%) hI"! $I$A $I bziI$I$aI$I$I$I$A0, I$I$kI$I$A@0I$I$I$I$AjI$I$aI$I$A@I$I$i諭I$I$A,I$I$#*I$I$a𸤏I$I$ +lII$I I$xI$I$>HA`0 2db. ֡xp4r ޥحcnk  /E)?-He)5 e)U% He)U mm @E)ߪ ج E) e `E)w t`%)_ *jD! 1! + *!!a & CR I!몿 JJ!6 6 5!/ZZ h!긫 pc!+ c$i![i TL!!) 'Ӿ!N IL!!  ,64! pM!8 ʋ 7HE!&< @I2!* L8!! ,8 ŒY5! Wr!/6 (òH! `D1!@ bQUq$! # Sn$ANE)꫺ m7E) I6>Ae)&b)e)^ u?c e)}=tE)!!Ϗ4E)!_6:e)! 8u21!*re)!+ }`mE)^ _'& E)z uE)z]q '. $I$ںI$I$A<I$I${뺾I$I$A:,I$I$˻I$I$A I$I$a""hI$I$AI$I$AI$I$a I$I$!h8.I$I$ hI$I$A8 I$ `m. ?E) z E)I7E) !ǖ@E)re) U &ԸE)mE).H$]ae)! KE)!+ 4?uY E)!(cE)!M֔ e)!U&/)I$I$a"`I$IA # $I$&A, 'W@!bz/ OIE)b !m>E) ~ 1M E)V >HE)_+tTE)z%"-#MrE) If1$! =-f1$!/ p?e)E)NSUe)!#aذ e)E)bme)!L Tne)E)> 3 Xe)!i$1W;6Ff1z-e)aIA ц1 ܶwE)5}Fne)a xZ{r f1+$9E) ؒq9E)!C 6 E)w ^l E)%B! b5-!:*  I$! wJXnE)׭ mlkvE)!?^ H;6 E)+ ]mE)  06,vE)!( XME)! 0`VE)$!  " E)!@ I e)E)`; IM e)! ۶61!* D--f1! Z1$!˪ 5h1$! qYmE) $IE) _]E)/[mJe)!=;.6f1!*%֚te)! ' mzlz1E)[ te)E)C :& 7qAe)!,  ZI1!z+11ͭOE)!(% ĒҊE)! . #` Ae)` Cf1p$ ު%$I$H$a<I)!b/"%)A- E)!뺋 خmE)! $I2$CE)! l۶mE)!# ۶E)! 6t[֦E)! 8 kvkE)!  (E)!   vLRe)!U >mE)_  mE) s4rE)z # IE) miE) :mE) t' IE)*] qE) &v?f1!]M{f1!q;uWf1!W `we)!+r[.E*e)$!(  SZe)E)X" Pf1E)]j>hl51^Sf1 ͂՞E)!Ȁ ME)!  -$ME)|@ ϟoE)- w&E)!C*gmE)!  E)! * hlmE)!,.. $E)! d$$E)! DI`"E)!~ A@E)!$  e)!W @l$QE) > IE)U @E) Mj4mE) =n E) &ne)ժ(  E)! b$DJE)!* u[E)! % E)! dBE)!  ɐE)! `enE)!+UzQɶf1*qte)% ][A9f1E)z Rka e)! L=oe)!  s k?E)!( wmE)! Q*7E)!0 k"4e)bZ(I~E) )kE)!)E)! I$ɄE)!: htkmE)!> 8r E)!m;OjaE)!+؁SE)!o;E)! l۶E)! (IPHE)!ڎ ضlضuE)! E)!*  E)! C 놶E)! ۖm6tE)! +  $SE)! `H$E)$! i ۺE)!; AZt۶mE)! E)!( d[ae)!? ˺E)!z :,`E)!{vCE).|жaE) TrRe)!  5me)!  '1,%(e)! qE)! ?4E)!*  N[&⌒E)! [PݤzE)! ( $m6Ne)! "ђIE)!K¨ Dɒ(!E)!b~E)! 7(:E)!؉;E)! nE)!/ $$B&E)! $l$IE)!) $E)! HE)!(* $H C2E)! ekbE)!!08 ò[%E)!( u۶E)! [;ME) TN@e)_  E) &iE) ME)" @B E)! H @E)! غe)!. m+- IE)`Oe)xh&|e)! ' aG&e)! tϐPe)E)dq j〆1!$M*FE)">E)'A%߱mE)༩ QZuE)!ݽ $IEE) ۶UFE)*mmo1>E)*1A~E) ફmE)!  )E)!뺞 H)IE)!ں $I&E)!m} E)!J]ۉ E)! nHtE)!־ E)! d+(IE) u Ă$ME)W 'E)b_  E)bu t/E)  OIE) U @1)E) &uE) [ukE)! "8: HE)! ,( YmE)!# BSm8jE) p-5;ME)/| 5e)! `MJe) r+f1E)vj02&3e)!L  e)!]e)! />jhE)!2( V`̀me)!(~ E)! XmE)!൭  MةE)! m @V E)!گ I@8E)!.$GsE)!*Jy<`E)! V1E)!zj AE)! !DIE)!2_ 6$iE)(~ `; QE)u @E) He)!9+" E)!  E)!0 iE)!, },ME)ހ )t۲mE)!%EE)!4 m۶u E)! ۶m-E)! A2$E)! 3`$iE)apX3e) &ۄf1ڶkE)8p,u|E)C PHQ!  M! ]m0,$!  hT!' N! P%J!  CDK$!  %F $! $AE)*[?E)!@IlE)!-* خmE)!+# 4I@DHE)!*" [۶uE)!  [ ݆ E)! L$CE)! iu[ mE)! -kE)! fL٢%E)! ( ( )E)! $ ȐE)! A2dE)!0 IڶmE)!x  6mE)m׶a;E) ,pE)!  E)! $C$$E)! `GNlE)!"8 1 ME) 6`A·=e)&ؗ1!VPe)! "SKe)! XE) ,%)ĚE) E)!" )IE)蠀 4 ?$!~ &A%)ꏭubE)!mE)!.  MR$E)!"* E)!, ۊ kWE)!, #$)E)! ʦNE)!  ga]E)! 0  IR"!E)!E)! n۹c{E)!8R( ۶ۊeE)!o  J$IE)! $Ae)! % He)$! ( C Ae)$! ,SE)!* "#@f,2E)! Ӷf4(E)!:({  E)! NŭۮE)!+0x+E) $$!( BA!2+ $6/! A! Ӽ@@!x  @I! hJ!( &M ,!` p!/  L! $h$iE) $I& E)! 4IE) .' &IҤ0E)! l E)"8 @cE) :_# k [ӦE)!8 #Sof1$!*,e)!IE)!/NoE)! )]E)!:# ITAE)!  HE)! m.e)!u $ E)$! $Ce)$!   $"e)$! JIE)!⪠ LD[E)!*8 J[E)!   @E)!&uZe)!J9LNe)b-7)_e)! > ϋf1$!Q9t˖1$!r)%, E)P 7&E)& $AE)!  LIE) ݶlvE)! mJ$%E)!/Z rH4)0E)!8 $:E)z 4hE)/ ( dE)! vmE)!+,O.oe)!OaIbe)! OnE)!,( &IE)!ꣿ B"I$E)!r  (IE)!( %H %JE) b, IE)!W 4 E)ވ $H'E)= 6ؚBE) -E)!` !I2$HE)! GeܰE) *@ 5|tE)׷ 1QH؄I!5 "$R$Q!" iV!0 H2{x!h' qB !'  ݶ a!*" s1!-- kT!X' r@!\- LE$!!0 crF$!00 45!` $s! LE)ի N)DJ$! ۖmE)!_ `0dHE)! Ce۶mE)! IIBE)!*" ٲ-bE)!ψ ݆mK `E)! Y[E)! d!IE)! 6IE)!&Ȃ  ""E)!-H ( $HE)!  %Ғ"E)/ /IE)X H!4E) ! 0E)$! [0`E)! 4 @FIE)! DK#E)!%^ ɐ$E)! ' @E)!( C少E)pŘoE)  &b^e)$! ]ڭCae)E)r 2--Vf1jW7E) 4 &m݆hE)! % IE)@ $1%@E) }Nж$! 6HE)!% ؚ6mӶE)! H$IE)! $IE)! tHIE)!" mbKE)! kE)!( a+aE)!u R$0%IE)!:ڝE)$!( sWO*:!E)!j $ E)! * HnnE)!4 !@ ɐE)! . }*5qE)  |>E)  E) %MtE)pXֽ HI!( 4C! V5!~B#ϗ!bܷ FH !颸 5I!{ IԾ&!"z !a+ ) @A!  ؊!  ܶ !\  E`$!/ E0P!/" m&);$!! ^ , $!# 8N?!  kS!X ´y E)  iE)A IE) qmy IE)!U N,- E) &iE)!Y vŶlE)!+, iNn:E)!+nSE)!bj ޶5،NE)! ` mۺ5E)! E)! # dIE)!` $ME) DɄE) I$0E)! 6llE)! $-jE)h A {E)  mنmE)!  Zo[E)! ,)P[]E) . [Ff1! *Le)! @^6E)@ ׍.16 JE)! & C %E) ^ 400$!b "'! I>E)a V'@E)b_* ؚME) شmE) k3@E)!U LJE). $mf1$!$I.>E)!( 4UE)!": mm[E)!# ؖ mE)! ݖE)!/W  I E)!p e E) $$E)!  =KE)pV ) j 7X5!۞ A=!( j hҧy!x &gj! 6yf#!g sX / JQ!a. ( 6 ۀe!* I$$5!(x Ni!. 6D! f v!* M5!*x  }~N$!W) ړ{Ąm!- 9PҴ!/ R0mN!0 !ME)!j} ۶mKmE)!׮ ۶m,E)!*k I$IE)!vmSf1!"&mO 1!]yE)!* $QE)!0 ޖE)! : $I&$ E)$!" 5[mE)!*( lۺnE)!x  *$$E)!*h V ]e6E)!9* mmE)!* qE)  !E)a * 0tيme)!( C$IE) ` h&E)/ $IBHE)!c h$IE)!:3ae)!#8Pe)!" kvE)!_,FE)@ WPf1b(& E)!  L,b4JE)  $!‚ PeIE)!} mk#`E)  $I E)!  E)!* mu E)!0mSA1!e?me) $me)!X~be)!ɏ7E)!nm`E)!® imE)! *  0E)!h c)g۴ E) N8rE)k\joa J4H"^ UB mU-bH$)Y$b3 Syj!ڿ* (n! MP!뚶 E`W!^ {Q! iԕ! 4 ! (ڏkK!  %M! 8 vf$!! $H$-!(` $Xs!`/ $)5h! jsJ!| y<$!( HA$!+  a$!   E)!*U}>q?me) U!%'me)!#e)!3@E)!*:E)!.  @E)!( E)!, H IE)! \( E)+ $IE) [lE)!( aò&E)!`~ mE)! ۶uöE)! ۆmͶmE)!. a&E)/ $IBE) B+mE)! JƟE)!" ޾e) ( d$E)! `F$JJf1b* LhBE) E)!" $j* E) 0!  $$!W 'HR)Q$!0 $F$!   H$!!{ #DE) $#4I$! kh[׭! Cv$!00*  QRd E)! C2DE)! @$ɐE)$! !$E)! 6B%) `IܥA k  b v( "[ l(ma,*)Ah  -&s &3 ^oDj!&!ڿ 8L!{ b!.  Hh! !( >91`!x/ m!  v!* SWu ,! " T!b m! :1[ !` ֦km$!!(  M1$!!D HˤL$! DE&q! $ &E$! ؖl $!! ۺ)6,E)! L I2E)! @m E)!ꪪ &m*E)* (RDIE)!*( "$IE)@ $[#AE) < L E) [aME)!:syE)!J(E)! "( !$ E)! ҺE)&( IĖE)a QE)!8&ĝNe)!"~ۧe)! m%:E)! H^CE)$8 M$E)!(! R(Q RE)!P @I >E)\ $R!) !Q6̀! & ! I'h$! R@0$!  d8Q$!# ݶm&$! DP%)!jת v<۰E)" hE)* $h>E)(-\ $ H(%)B ܹ}!AH I"8].Eˁ-"C&I$$aÆ  )P`` z0]׶ڊ6 ~ V!m!^} ]NN! Gd,G! ( 44!ꮥ{ <Q!A^ !T0n!5* rv! $`Xx!a )!) Nb XWI!  ^;! QƂ$! K6lY-$!!y [j$! $U$! &Udg!: "EJ$!!2$  ɐZ$!; d $BE)!_= :E)~ xv"E)-_ IXE) [ ۂuE)!j I2$IE)!x DHd$E)!(^ d@ IE)!( `L iE) d$E) '  mdE)!6E)!ikpNE)!" mhfE)! 08 g#E)&8 NAE)( 2e)!,hz7E)!.* aB CE)! ݴ5E)!  Kh'uE)< @E)! # k&mE) TU!," , J$!( $TĠ&$! " &i$! 4i$!  ! cU#ٍE)!Wua=E:E)'zm*fe)!_dIME) !iE)!5 E)_H$I$ I$I$ fH62"*Țm۶ ( @Bb  ۰tȐ Щ X^?׽Zni1i!!A I!ӔBŪF   T!(˗Cz m{ k!Z*!oo `!(X'  !X%( v6J! I9!*+*X (`!+ D'0h! jN$Q!+ IA!U (  aVR! u-a{dU!# +@R/n! !G$!8 HA,IE) ~} ָE) tkRSAE)!` "ɡ E) R#&HE)p [@3E)A .` qT%)' vE)!m_ @V E) ?z IE) 2R۴mE)`( OH4E)-  E)!ʙ 2#BE) k, ;hkE)!$ Цm6E)! ?X:0E)A4` ܦmXpE)! C[AmE)!B;( MZ0iE) > B $IE)! # "%RE)` ݶm[ E)!k m7d[uE)!: $E)ְ ?AHP!U" ;! f#v!`( t 4i! ԭ# !z ܶOh! U'!0W (S! dgE) E)jA$H$I$I$(*cv: d ی8I$I$(:*II$b.H$I$" $H!Aמc';^H $8*v " $BlYX֡@l4H4E9* Yn X<&! d@!z H! !k^ H9!m!W Oga+h!鶪 ۭ!⫮ 4ME! ASJ!* W  !  %Q!U"   s͍E)' qg;E)!x R!@KDE)8 `"%QE)X Cz(4!a 8 W$!2" )5+ME)zΪ LPE) (IE)!˪ IZ'mE) I$KE)! $HiE)! ftE)! " $IE)b xCLfE)a& ۶iˆfE)! k5ŊnE)!XrC $HaE) $E)!mZDE)!88 ]6lE)!;˨ HK E)!l()  -!"u P;I!W p'a!U ܀$I! U @#?! 7lt! 옖)$!"  0@! LعA!% `?}'!x|I$I$ j61D OᒼI$I$/I$I$axI$I$b I$I$I$I$ H$I$II$!!ې-]ڬZ 6E)t((+W\bn &@1bMa!y^)p&l 3mG!* m:Li!_Z!~ @,!/ fN ?!+V $H<! u d!z $Ank;!}_ $H)Y?! " !* U , !  i!` 1! ` !". d$1$! ,ۈC!( dA!$!* > $pqE)!w CC%)b/b i%) P:" $! XWl7%)"& $E)ˆ J褬$!( D"$! LdB2E)!7 ۶m۰fE)!( C LE)xb dH!E)" k1t[5E)!>_ #`E)a , I29E)!(( hafE)!* iE)!9ή EH$IE)! ФI-E)j @! &A! I}8!u H )R! #LI! y2$J!\ `J#!+ /=!`I$I$I$I$vd6ib::fHi۶bI$I$I$I$A-I$I$*I$I$ I$I$I$I$"I$I$I I$  $"+H I4E1%(()Z ҥ$!!XbCn$!!VXӮh^4mZb!_qm1  $H&>!^ &}N!zUP ! Q!* $IкU!  !r۶!( 4jҭ!j  8n! Hmm!" -,!Ȁ &6M! Ɏn!+ ,F! K늬$! H" 9! ud!d !XRL! . !i$!0 N !A$ \7mߖ`$!"  9) 4!0 FhH! LI@G$! *": DK+$!' $E:$!0 djreE) ˰C E)! Jf=-$!$` ۦmX$! ڂ8%)jΊ* A!@E)  [0$E)!# ˒,IE)!r ۆ-ݺmE)!n "4EE)!H ܭ6$! Ih! iK! CB !]: T'I!  v t.`! ހ Id!" ҃&z' aI$I$ꪮI$I$bjY;kaI$I$I$I$AI$I$A" I$I$jI$I$aI$I$I$I$A(I$I$ȊI$I$LI$I$I!  [׶ A,@$ ݺݼf0[L R h: &N!^]gJ۰q խND&!6lI 꿯  9; !ݫ tBJ ! *!: 6Cd! \ xH!* ;P!+  ! $@I!/ Hj!  P @2j!ڊ Dm(! . mV!/ .[f!*( !!* E m! QJ!  x2!,@ i! %Bj!H $IA$! # Z*8Ri!  hAI! 3 :! REP!  "j4M$! єB54$!6 !LF$!: : JGZ*8%)a$< m&E)! $C$AE)!z C0b$!0" %%)!V z=E)\ 0!!.  M6i!ʨ TA! ޠ `Ou!/~ @!! -bL !B$ !IAI$I${I$I$AI$I$AI$I$I$I$A I$I$I$I$A:,I$I$I$I$AbI$I$a :(I$I$aI$I$驪zII  @$I$ A$I$ `I$I$ Ю]ɒI-0h$I $!A@D: `P!bid7 '* 6 '!W 䴶k! ִ j! u$I! v$H!ߪ u$$ ݪ  ! D I!" i”! - sN(!Vc* Jj:! (II!( 0S!+^ $I!  $! 0tB!#> ˰e!0 Ӡii! ;!@ a˲!""  5n!> v$uj!>  %!.<8p E-Ͳ$!!;}uv R6! 8 yn$!" )[#2!,  ! Ӣ !A@ uC$!A I)$!!@k@ Yp$!, 4)B$!  "&A$!C $4! .$!mwO$)BE) mE) SC#8E)  ɿ> ME)Az $b-E) OE)AW$I!$ +\$I$A I$I$AI$I$bI$I$aI$I$AI$I$bjI$I$A./I$I$jI$I$A<I$I$jI$I$b "I$I$ZI$I$a$ I$I$r  I2!H&I$>I H @HDȐKaݐ, ےS E)A~ E)A Iۭ&AE) OA& E) Mie E)U~ ۶-f1u f1"C- E) <E) !I1 -E)€ s"mE)b^ 8E)b׀ ^*HE) N$ٓ%) 4!꯫ s9,@!xj 5IL! )' E-!ڪ $I!.n+ 6W\H5!, -bZ7!* TK }!  !Q$I! @n֌! B![~!B8 tHc! k BӦ !B ``K! .jխ!ʀ BT!  1Yv%)) ͤHE)b> (EAE)  A$IE)z " 4)E)!u(Cn)e)!Ul f1 mcE)NE)!"8ce) Fn@E)~u-H6e)x$q;1 unעf1!9CN. E)! ~ME)ހ$=AE)ր I=e)Ax$I Aj'I$I${I$I$Ab:I$I$I$I$A`>I$I$﮻I$I$A,I$I$*I$I$aI$I$AhI$I$  $I$0 ~!~ $h%)bW 0E)a4nP:E)z6 E),1a3E) `1@nE)E).K[IE)!Mm/IE)!*C_ E)!'O¿E)!F# e) zI E)$ h:E)b" z$IDE) ukqRE)!+ H$$E)!x NDIE) [E)x  HN!  ?{X(1!z .lj!I N<{!) BɣM!n Mr!! *IZg! @+ ! ZZD!$< lݺn! ˄!E)> $M E)+ M5!E)/ ӶI?E)W  H} E)_ OA1*d?%E)'ME)4>}CvE)!h Pn;IrE)! ?E)!,Dfe)!  iӥe)E) ;Mle)E)/ Zf1$! B iKe)`  1 м f1* cKm1xIr E)  츉%E)! | E)ހ he) ؀$I , .I$I$nI$I$AI$I$a"hbI$I$AI$I$AN>I$I$+$I$ ( * 'E)a{ IMAE) mZ8E) 46uGHE)x/t41~imE)-d'[e)! Ғr9e)!@  I,AHE)!*( &ɘIHe)E)T.  d8e)! D2e)! egEe)$!  g(e)$! Xe)E)%% n[oke)E) 6u ue)!h:f1$!j#A#m1^y70r1zۖs?a1^#'E) ^gmLE)!,  m][{e)!` 좵 E)x r E) R""!ʊ IM! TՅ!,6 Ht! Ԃ IK!& òaE){* K&$E) z HE)VRf1 MXnE)Չie)! /%SE)!+@ * $e)  q e)E)` $e)!0 hDe)$!  E4f1$! \居fe)$! E) E) %5rve) *"#䧚v[e)! <+HnJNe)!2 $+6$e)E)COZKqf1!X //1E)ms.$f1^*Pe)`s 4E) h e)! #aIE)bp #e)Apmيd *$I$I$A<,I$I$n$I$&A&/ 'ya`%)A/iiB%))  E)!V kE)!W% 1A&e)!- I$H&E)!. V`!mRE)!2 ضmE)$! ( E)! ֤۰E)!( I@:E) $ E) ~( df1am?1(_1 Ua?e)_ &`'E)b 'HE) еf1!+ SSqf1$!"`1]e)$! -6{e)! 'e)!&noCz1$!`ωD1xӚN| e) ހoE) 8E)!H m1*ME)` /鏋 f1x C5;!j*|sNE)qE)!b  E)!xU - %KE) ( @-ݰmE)! $`e)$! ((* ӦHE)! [WHnE)!, @2 e)$! ֦&E)!^ ' >E)$E)a f1Hhf1U5H?e) dNB;E)!  [E)!: E)! f e)! H2$GE) MͶe)!G&e)! + t([e)E)/1 턩0e)E)0  smY`e)E)X!JRAe) @IkkE)!-`aE)!*8 2eE)! 3 Qf1X t"E) ?OC!z: (ɝ~ E) %PE)!@ܷmE)! نuhvE)!> ۺ ۶fE)! !I! E)!+mۖmE)!vl9 E)!d똘iE)! ض5ۺE)! M ضlE)  !I$IE) @:$IE)!" 䤭e)!:" $E)! e)! (۲e)! ֶIE)!+ 6lEVdE)!3 H$IE)!׬ IDRE)!* }E)! 4@,E)!  E)!* ILE)!. / $mE)!"oOlE)! o; KmE)! k?UE)!.>~|E)!/?oE)!V H;bE)!/ I$I$E)! R,S",0E)!.Jb 4) E)!  ۶lmE)! E)! $E)!u $ME)W M`E)_ ME)u ۶ДxE)! $Ed,E)!" &I e)!* %A)e)! $%PE)!" AE)! #ݰE) ![ӑe) pFI&?e)+VUVf1! $1Fe)$! L9e)$!&x6E)! fe)! 6gjE)!( غvݖeE)!2 [mV`E)!긂~E)!/FE)!!,E)!z/`]E)! ! E)! 5[ E)!(* is[BE)! ۶eE)! E)! : D!E) ( EIҠ>E)(^ 4m?E)(u $iE)a m"UME)^"" `4AE) :&IE)z ¸ E) Y+E) h)$DSE)!B &IXE)!& HB2$CE)! !@$IE)! r.E)܀TkBe)' e)b % X9$1E)]VIb$1e) `m]~E)'!:9{E) )0m( ! [6tim$!!28 "a"%) EpM:E)#}wE).෫hnmE) uEfE)! Ҫ$AE)! \KIE)!mGE)!E)!ʯO E)! LmE)!V m [Z E)!"# 2 aE)! -R!aQE)!# u e)!ˀ I kZe)!U #6E)w ɍHE) T? mE))_ j? E)x $Y19E)(  @ E)!(, $IIE)!  lmE)!   ۺmE)!@( v9 E)*`m>E).hwf1 "&3Of1!n e)!,mne) /IE) . I1E)!,o}E)  IE)+ D!D E)!m PH-E) "mvl E)! &E)!J#wL@E)!*  ,-E)!zj( ]mۊ E)!]+, ݺaimE)! 2AKE)! cddAE)!0 v@ne)!_(m۹ e)E)9]U CifE)!( dHE)! ɐIE)$!  $$IE)! C2E)! EoE)! u StE)! ۶[#`E)! (DEE)! 2 A2 IE)!`.qE)A؀kK+E)! Y\E)a.C˒%) $Z@)$!( $m! @P! |!0!  @,! PJ$I!0 $J$!  a߼! ظ4@!-56E)!? k< 4IE)!* DR&IE)! 4HEE)"8 $ R(E)! E)!8 SE)!#]E)! e)$! mO>e)! : 6[E)! bؖaE)!  $H" E)! I$H$e)$! $e)E)e)!/ "ߴkE)! mÚ E)! $)LE)!*: [mؚnE)!8%ZWmSE)! OLjE)A'(9@f1b-s 8f1! ])X5e)E)˰`b=e)!XB a|E)& ۊE)! $ E)!X E)궬 $BIE) PÒJrE)!?  mbmE)!. P$$!E)!*(J m E)!, K72lE)!(mE)! $mIE)! mIN`e)!*mE)!pmE)! v\LE)!R* ,Y XE)!k( $J%PE)! lm%E)!.p $IąE) m׵ie)$! " KӬMڡE)$! ]5-E)!` k6,nݶe)!> &I$DE)!* 5E) x P7II$!ߵ 1@0lI!"  Z$I!8 $.!j >O!x P$ !- No! / 7O. )!, `t!x' w L!x/# !4 %R$! 0( ("D1E)!_ mҶI"E)!}  E)._ aME) 7IE)v M iE)!^= &eE)!'vmE)!*@m۲E)!; L E)! voE)!+FǷE)!2"+ TAE)! "I E)!}) - E)  n4E) ۸Me)  $B"$e)$! L! e)$! R7[e)!4 !)EE)!? mݖE)!  m6d+nE)!* qE)`!Of1b '$'rjf1 [Ke)$! (J[Ge) b XO)1E)`eƢkE)! Ȇm E)! DJfDE)! ?E)!ZW $`OE) ,&:6)iE) x/ l$ME) `$E)!.q;kE)!*mۺE)! 2 ҥMbE)!Q?kE)!(8 IiE)* @`E)!8  E)$!* J2% E)! $@$2E)! 2#KE)( &mE))Z 6Au%9E)7p ڸIBe)! I E)! aŽ=E)`X{TD@!. Oa! !Y!: $`/'! XV@!| I!ˮ*y SaSU!"* 0HD!+b X'!x7 HA!  PT !0 $Q9$! p 0}z ! m!b- l#! D $Ȑ$!  $i)$! & R6$! ۶m$E)W $ Д%) aE) i#G6E)z AE)" !$E)! * BE)!  BE)!lj m6,E)! -nE)! r4HE)ހ tXIE)/ I%ĘE) d$0E)! X6`6le)$! [6lE)!| M$-E) * ۺm+nE)!кu]e)! * iE);ԩh1!ꢭ !@!De)E)3:9XfKֆ1!ͿXPJf1A&n˴pyE)! "IE)@ I@8IE) HǤ8$!!^2v $H$J$!8 c۶-8$!!*P $i>%)~ 4IE)b $pE) J";E)  ILE) 떮 E)!  E)!nE)! 8!,ےE)!j ͆m E)!+ ۖlE)! E)!& @dE)! *0 '0DmE)`" a[>! j9e! M9!  Q!* $-j! jޥ BI! Re!+ Cy$5!" M !` sSm!| !4$!) RVKs$!0 4M%5$!+` $ ؘ$!u IvME)*߹ $iHE) mؐmE)!+US-ge)! "U$?r?f1 *?$f1!#{se)!}O"E)!; $I&$E)!". dHLE)! (( mKmE) z, MHE) h AyE) + mlE)!  %IE)!` A$AE)  E)! @E)$! p$HE) ,i&E)!- @E)! (+`GcE)!(0(Jɏğe)! "IEQE)! E)!#L5f1a&8 -I E)! $$IE)!`̀ ִu\:h$!  5M$! W *@p$! Iy(HE)(ߪ ۶lfE)! $CdE)!U~Ra'E) D($! PU$! (  $QE)!mE)!hiqE)! $ E)$!* !E)! + $ )E) jϛE)A'+ֶ W,LJb;(1,/ ʨaá-[Ν8h!-j7Qi  "6D! R%>!_ سd!^[  m0!麿 *,! }! k$J!( %f!8 M5!h L ! D! I@7q!- 6! ۶[m$!!8 $,$! r ٶЦ$!! U ۖ-ۆu$!!ɠ0 mʎ$! MFe$!( CI$!9A$ْE)!*mE)! N ѶE)! m@E)! I$B&E)!(  HIE)b @z"AE)b @ ME) 6 պ:mE)!z [mE)!`*(E)!0 B MmlE)!," [lE) mE)&, A0lˆnE)! (&acE)! *!e)! :UE)! JcE)@j2ZE)b# 8  E)!" j 'QE) 0! 6n$! R(!Q$! : %Ik$!  ([A$!! 0wsT$!!$S  M$h$!! !I2$! @`R $!0* RD IL$E): ҶIwE) $I )8E)!p IƤME)!* #z%) `R$M4 @@!C 5jի il%  1m+5MЬ*C6`@*5N!X Xn^k hתbAG zZUT<2! T4x! m!* "$I89![ 9U!7 U5R!?(* Ǒ! 9!x @ !x @'/!+ ږhI! CZ% $!*( ) CJ$! 1(ː$Y%)!w $C $!!ap f()$!! 6`$!!*V  dRtRE)!W= $n7E)  I" E)!n ۶ ݆lE)! D+"# E)!? I &E)!(5X mVlE)!.( #a$IE)P 9E)A VE)!ꧨк-ݖE)!( gE)! IAE)! " ڪ! IE)x@ ΆE)a&< R!iE) =]E)!ڏx\E)!&* À$CE)! !+ E)@ VlVkE) dE)!*  l*`E)|ڠ N! V*A$! HI Y$!! 6$!  ؆HTi$! :Hi ! 6jE)+ +ّv*E) [mҮE)!*U hR@E)X  .JE)+ #6E)By!$ A II$M4i"Mm I$I$m3vE ݰ%M]!hx!W @nˠ)V6  Q  $ap! P0r!y MaA! eK! \! h7 ޤ q!a yhD !- r^M!  % :!" 4b$!x 5@Oq! m ! FrI"$!* $Q;@! $IF!8 QXAE) 9 E) *p :ūNE)! I E) f#@E)%Z mE) ' ۺMmE)! uIE)!m $HE) /  MIE)! $GIE)` RBE)*( Q:m]E)!*-E)!x hvKbE)!0(4 #($ E)X@ x`)E)  $ ˀݶmE)!&hlYE)!b :lA2lE)!q  m2AE)! HyU=)E), ۺeŶmE)! ^ $LE)(" M! ҆ !W+ l=! D/$! 4iv ! ֩! 6i6@$!:e[E)z vbE)!%UNE) M* E)+@ !aI$I$   *d :((:I$I,!br iI&Y6u]Kq  L8 8 dȐ!A"!$AI`h ߽V_e6 T Zjr!{}$I#!j |!$!p !$IM!( $I4:! a!* `{D!7 y%HDM!) fVK!: k 6!( M!* UV<!>2 +m! C! $#H$!ڴlE)?G:E)!x_i E) [% 7-E)!kz 3!@E)x( ŘSh,%) ib! @h0x$!`0 dB%E) 7 m6KE)!8 !*IE)4 8MQAE)" "ʒ E)!i: &p9IE)")  E)!8 h88QE)A` & ǘbE) AE)!9* `4L(mE)>( ! IE)!( @E)!* [m[nE)!k>8 @[PE)!  1(E) PR$X!"2 6! #/&!h DH! 6m!~  0! ÐM $!" T@O! ' kK$! "=X?!b|H$I$I$I$*v):,IHm۶I$I$*I$I$a>I$I$"HI$$L$ I* `ch$a2@tɒu۰]d)ڑ""e&9LB z P֩!- 8L>5 kyz =?E!Z O1I!V s!i]!$P!z A!(^ dN!~) - &q!U )T&I!  i "'I! #$I!~ O`Q! >!%^ ^#!+x p!   dY$!" Ц֮E)!_ KU+&$!6  1eui$! * 9* $!b& EH1\E) 5J($!N 9E) 4krdZE)! d(E)B ۶llE)! ڢmE)! ]nMmE)!? I$I$E)!** FO,E)a&b zlE)(" ŲKuE)!a6 TAE) $ )IE)!©*LE)! ݺ نE)!* 0Y%LE) NBJФIE)U -A*EI!( fZA*I! vI&A! n! T!/_ H/! -^ !d$!/ r(A*!!@pR'I$I$I$m;vhj:F ƊmbI$I$I$I$AhI$I$ *I$I$(I$I$"/I$I$(I$I$AI ɐ $"2d$ )tM6b(#1d(Y&"FdZ@ڥkY(K[m {@%!*. sj8 !^ 4K(,!j &i! ]R!* ;&A! ےN!( v;! $i! U j=! F ! ap! "h$! i x!/ - $! #¦d3$!숊 4e(I!.  H$! . á1ME)r* š!A  mm$! ' 5!8 $j$!  l*I$!(  L$! )$$F$! *⊸ $ÔaE) "QIE)c( C F!$ 4$! %)a8b mAE) ۶m5E)!# ZLE)!. $IE)!; -E)j $h! &I! "<I!(   ub!_ %M!  &CݘA! ۼJ! 8#&!`zxI$I$I$I$뺾ЮZA*Ϊ2I$I$bzI$I$A/)"I$I$I$I$AI$I$*I$I$I$I$  $I$LH$I$(  I]5 E#6M;ZM!K "Za! & ^]9Ms!_|SK! m!  @M! MRtl!꺺 ! 2vU! In !Z $9![ +–! ][ˊ-! P)!/ 5IZ*i$!"ڪ &n* ! -%[ !  m!( P8 H! dh%! 8 m!@ c !  * i! cH!b, @J$! $ #'! 6)$I! +? !(@ S[I\FxE) @ 0a!` 0lіB$! " 3RifuE)Ϊ @ E) ,<  )IE)!+ `E)!rj  C1E)!n ˰uÆtE)! .9zE)\  ! KLC!  U'!*8 _ LN !(/ M $I! ”\Pi! x'O$ bI$I$I$I$a꺠@$Ia(I$I$I$I$A`8I$I$I$I$AI$I$bI$I$aBI$I$A$ *I$I$(I$I$b.I$IȂ  2d$ `$a& I$bb( d$  $(  qıè*5mzUmtP  ۰q-9!@ՌWB!mN  YM!ۿ ƴ!  $! Ti;!# ! m! #4H!| " 1!>$I!- It+,! *jB!  #! R!դ!/+ C)!8  Mf!* \a!z" F!  B m!@ =!( 2I! H6!. 2nU!* yQ!#< &Bё!8 !,  TU$!" p$!& FI$!: `()E)ab m E)* ۰mZ$E)!zj_ i$!, p$В($!( P+"($!C  ]$!* ?!"iW /s! O @! Ě3 ! : !@m~I$I$I$I${I$I$AI$I$I$I$ajI$I$A *I$I$I$I$A8,I$I$ꪺI$I$A>.I$I$I$I$A<&I$I$zI I$ I$I$ I$I$a0$I$I$ݲM׭b, D!H&X$I$I@H4A2L8 Me[ *[ ¾'!* &I[ K4I W- 2 4`!U $B!( ( (! l 4I!j* y&>I!z |!- m!% K&0$M!r( THy!= PCR!z =! 4cp$!  ZY!<- )J!RH f@)T! R:LN!B@* :Ic!" BMM! jN! * %3! `!Cb, @J$9`¼& 9a& b%4:I$8N mv#qqb!N2 !i2 tM }*I..q!꯸?! 8@ G'! r2dB!X ]{,5! "  ! d8d! "I !j6 !! / P*Z! !긪 ^@1w!n+ [D,I! IQ! ) zR(! i0ɘ! D ,! ]G]g/!8" V!&< k!* j̆!! , H֭Au$!(" 6 ;G!/6 C<! FCH!( 72 Q! -H! pC!# AQ#)! ˏ$!x =J1l!HE)$! $ E)! َ% e)!玪 ӄmE)~( IME)aU $8E)^ }E) Z]I& X$I$  I$I$kI$I$A<I$I${I$I$A:,I$I$ϻI$I$AI$I$I$I$A<I$I$ajI$I$aI$I$Ah8I$I$ I$I$A I$I `II 0 6iD@ ~=E)A E) I&E)  -`E) IaE)!+dۛ.e)!CT1!((mO<1$!$E)! VeE)$!\ڥ=Ae)!beMm e)!{  @@rE)_* H@IE) OU/E) &@%) 8(슚!j P#6j!Z A[! . `8"m!zj (b ) T[ʵ!$ 5"3!N. qL!! ֦4h! $@!. E#!!bJ m8!ꪌ 1E=-!8 ź`)! 7# E)az MӶE) uW Ӳ @E)!j u e)  $װHe)!  AE)$!v`e)!h$nk3f1!*yf1E)UU,'e)!ꀀ Fn}E)!_$:4rE)*zXf1 AE)A-)܆1+-gb e)! )Žu e)!@: N"0mE)ހ#Ae)!h '!I$I$A(I$I$a"I$I$aHI$I$a *I$I$AbI$I$b横I$I$A>/I$I$a"`I$I$a&+*I$Iahؾm a. $$hE)a- O~&E)  M?E) ^ 6E){+0O E)$E)UIf1; iE)-mME).8}e)$! K$E)!BPE)!+E)!{6e)!zFn1Wf#af1~# Of1 xƑw1 m7M2AE)!* `qƖE) q݀$ E) k9hE)~ @q !b lj(!+ A!ꊪ t PK! #+ Q~C-1!6 l7!! iAQ!j* ǖF%) 2b$E)aj* ^%I 5E))p 9E) ?E)'hE) W Գ13HJE)y l;iE)/7`'me)$!*G$}e)$!" G*$E)!,(d& َe)$!  [%ae)E) $yĘe)!+ co e)! 5e)! SmCf1$!h~ ۀ1נ*Z1 ,)a e) %xmiSe)  &wE)/&8Je)P N5f1Ah$I A8I$I$I$I$A<I$I$AHI$I$A) $I$A"A( O$!! tm%)- hmE) %*m E)h RrE)x/ `Uf1VmIe)! dl$ E)! IݺmE)! tm&e)$!( - e)!+6E)! ӊ+4me)! Gqd de)! 0 lRM-e)! 6.e)E)%%h 9$e)$!̶Re)!,i#e)!ʀ T?%1!ꪪ3#Af1zyD1z nf1a+z$E) nM,(e)! * s"`E) ]c/ e){gFP!aV! "a!nޟ Tی #3& m6hE)׭ IE)* !DcSE) / d$E) OLbKf1 $iE)! xڶE)!* ! E)!@ &mӶe)E)` *Id'e)! +X E)!0 n[qE)$! pˁf1$! [eUe)! Ie)W 0 iE)Հ DZE)+wef1! P2e)!2 jCM’e)E) 1$!.꺺 J<e)E)C۶f1$!ʯ 𥠵f1 Қn;1  LE)!(% :OE)! N9( E) N=1xI$I$AI$I$A8 !_' O:%)A-  8E)!)sE)!V mۺ-E)!% D!E)!# $AdBE)! EmCE)!"8 d@ $A2E)$!  E)! 4)A"i'E) $E)~ ~"E)b_`?ɭme)?ORf1 ~*nI1 *߶#ne)z HE) p1ME) AMf1!U!'lf1! ӔTe)!e)! ؜e)$!  7)&1e)$!XcNm[n1x 4ǂHf1-ޠ*߭?E) l/X]IE)!Ȁ #A$IE)` ?2a1~h %_@! E)'E)!r dHE)! v˶nE)! ,. !C$IE)! XmE)!( mV`e)! tbE)!, ض6E) ^  c[gE) `E)@=@e)awf1;mf1-f1 ۶6غmE)! E)!: AE)! h6[e)! " DE) j 0۫WE)!V:e) "+z4mTE)5 " J,e)E)  %ixe)E), ٩e)!  xJe)!Ϋ&ԚE)!*( E)!  re)!C ɿ&.Af1b^ 1(!. $?:E) '=}E)!  5H$IE)!:  E)!8> $EtHE)!  T &E)!+~kyE)!`E)!+ _E)!־ -E)! IJE)! $I$e)$! E)! M6t]bE)!:" 4IIE)! ) 6,۱mE)!Ƀ IH$HE)! E)!; AE)! H$e)$! lMvE)!. HE)!n ֖eCE)!Au?1 ^$qJe)  6L%5e)E): se)$! %ZWNe)E)J`qۗE)!܃E)! fS`,!E)!0v`e)! hoE)! ú![-E)!K @BE)!* N4E)!+o~~bE)!؉JE)! #}E)!jj/ ȺMۮE)!* DIIE)! @@$Ie)$! I$ɄE)!(  A%JE)!̈ ]lkdE)!!0< [-kE)! 8( 2!IE)!( AKE) HpE) W ƑE) ԨE)! ؖmـ5E)!+  E)!" +E)! LB%E)x P3IE)`IAyE)-մv1! 1V[e)$!le)! f:?e)!S?b[2e) x">E)&)PzE) ¸xmٺE)!ݿ n6E)!k "%IE)!*m~E)! 5SE)!/rV'>mE)!xm#KE)!v  -0E)! I$IE)! $!E)!.Jz PE)! ˆmfE)! @E)!  iA"e)!u 4M,IE)W ~ E)aZ @E)u Ii'E) w $qE) U 4OE) Ht(E)! uEE)! "*  E)! ( )KE)!# n 1E)e)+~ef1* rJke)! mZe)E)@ AKf1$!殪 p@۴e)!s8,E)!8 ' VngE)! 28 mE)!긂`E)! 1E)!❭ضmE)!z+ !pDIE)! ڿ nؖmE)!. *I(E)!(*j ĐdE)! ]m[ E)!z H$E)!* (RHIE)!"_  bAE) ^  #AE)u -iE)! u4mE)!3+ uE)! &mE) O,$IE)׀ &E) BB E)!BmME)!&  E)$! H$I)( \wmE)!@ O= e) 'iO>e) 'hS(e)!$me) `uξE)¸߸o[E)𮫪 0I! ]m$!!;8 Z7 >! fK%)] TԤyE)෪ Dm$! [Vdk$!!#* Z IE)8*]}WE)!e)!뽢w E)!#wE)!* hmE)!(  @JE)!  $()E)! m]mE)!# *ce)! ХCe)! 4;ae)! H$dE)! # (IE)^ 9 AE) X*;NE)(E)!,.ڱ E)!  n۶mE)!  m6mۮe)E)%U{ #AQE)`XXAE)&`+mXe)A'*É=1!n =ϊQ)e)$!h\*׵e) m9e) . JJ4E)!( m0`0lE)! ЖnۼE) BI (E)!m $AE)"ǦP'E)!M`tE)!.֮ۦE)!* ֳ[E)!j,, $2HE)! ,( $IE)! ڨlBE)! ]YuE)! 4IE)!mE)!" ۶ 9E)!(R [u-E)!0o $E)$! !I$@E)$!  $  e)$! (  $ E)! IM.E)!* $-:hE)! :mkUE)! 2, E)!bWݺe)!@/ 9E)A =ҵE) .0XH! 2 %B"R!( ҴI$0! ` =|$!x- M!7 & v!( IE $! >!x 5y!  @E)׽ زu[mE)! !! 0E)!* Öm۶E)! Vuc$E)"8 %D:E) ^ fC0E)!8 v$E)!"-$e)!( ('E)! yE)!8 +pME)!:  E)! ukfE)! d$Ie)$! He)E)ow #A$E)!`  0NҺE)! N,1e)!ꫨ XIBE)!*8 $DHE)!  4A1 IE)! áq1XʊԘsE)X ۸mҖbe) ]nhtE)! s!usUE)!4 rH$%E)!? m %E)!%^ ɐ E)! Кm6e)$! *ZE)6X IDf1  ٍ1e)E)p Ue)E) ҉}bf1&jmkE) ڶ]E)$! $M !E)*@ )hwE) HE) N4IE)x+ I&E) ]ZlnE)! &#H$IE)! 醦CeE)!2 E׶ ,E)!  AIE)!(0 TI٦IE) ۶eۊE)!8۶aE)$!*( 2ɘ6E)! E)! D$IE)!  #AIE)x {R# E)` mE) $E E)! &0çE)`X M !.( !H! 4h= ! H4r!bܷ NjQ!' $I#!y D'T1!k D5}z!a+ Oub!7 hI1($! Ք4 ! !hT!/ ߜL!> qH4I!) tb$!( 6M;A$! m0&!P ؚ$! I E) W  E) aHE)  ƖE)j DUA `E)!Y $IaE)!*n֭E)!+vm;E)! bj ÖmÂ-E)! $0 CE)! I$IE)!©" L0IE) xKL>,E) 6n E) $Ae)E) IE)!|  %A"E)*h $!E)!  CnmE)$!" PXE)DEE) . %}Wǧf1 +(3:)e)L m֦mE) I$I$E)   )$ E) f&e) In! k$! OO6,! @ 1@dE) @$IE)! &@H E)! @E)! I$I$E)!* I$I$E)$! * I$I$E)! I$I$E)! I$IE)!* $I@E)   E IE)  $IXE)! ( I$IE)! B"E)!P" $IE) ۰ E)! TM )E)  :@$ E) IE)  II$E)$! @$IE) &I&!E)!` B JITHE)6 l$@E) A$E)!-_W  EIE)"+ $=R%IE) nE) 4H$IE)!* E)$! ؃E)m۶cb@? WJ! * xԷYy!  dJ! &! pMP!  !*l8uj[* !A* J!!, 1{ ( %@!֖ L:S! @ڣ!v:6tx/s0I + DH$I!*  @$A! ** 4ih! $iF! H@!! @ͫ;!j PH!+  HR#! ` D !"*  I!*"* $L!b  &!$ !h+5a!&( 4@ӷ!p !n @!  J%&}$!  (&I$! '@*$H%) $I$! )۴mE)j* THHE) I$I$E)!_ $I )E)j I$H$E)!W I$I$E)!* I$I E)! I$I$E)! I$I$E)!*  !" E)h - JE)C 6fBE)!Z I$NIE)! iE)!@ $IE)(4 $ IE) h6hE) 5 GfnE)8 $eHE) I$I$E)!*  HE)< I$I$E)!* R$HTIE) ӴER$@E)!X I$E)!5V  -ME) ` 0(E)` S7rE)/ ( `E)  I$I$E)$!* (B"PE)!Z "$IE) ` \P= E) p A&XE) E)!  HHE) $I.E) m]te)E)p E)!X $I"E)l $h$E)- $I@E) $I$QG]1!.Z:E)POte)! زE)!( $ Z$E) I$I$E)  C7IE) "A E)j+ !A $I$! #ME)* ItIE)* I$I$E)!_ $I0E) I$I$E)!" I$I$E)! I$IE)! I$I$E)! I$I$E)!* 49S E) $IE) X%۶l8E) GIv'1*jF$1!D$ۆ1!n?C1$!8cɏf1j (E)!@" mE)8  $8E)*p JIE)!  A"AE)b` L$I$E)! $TR&E)  E)!`  l;E) Ux4 LE) $IE)  BE) E)h۶]; ( j_ a*"HQ  BLtю!bҞ.Ք H! "3Q!} -@!kZV]]8sxp(  . h!k Un!ٶz SN  ) ]GĪPK  "Ѳ a@ێ1b*B 1$!** &\!b"ɢ vlyP!)5I$I$!* @ !$ R!AҮ! vH!xw% ~@m!w d@dȐ!* II! H$! D$i!< 80-! `  ! \  !x~ wT$I!_% MI$i!/ <ҲA!A@ RI$I$! àE $! $IM$!! KJ$L%) -! 4s$!0 dM:$!bx E)*U OE)^ H+BE)a "I$IE)@ $ $E) cS6'e)! U y Oe)!# oۆ1:O2A1@I"H?1$!jGߤ$1G$#؆1!Hc1?oI>Ԇ1$!&I$E)! voE) $I)E)(@ HdIE)!  $ "IE)@ $H$HE) $"E)@ I$I$E)!( (iB%DE)" ٖkE) $H&EE)/ $" E) HIE)!) ۰m۶fE)! * $A IE) $&IE) MQ۾IE)Cb ۆmۊ5E) I E)!+ $H2$IE)!h I I$e)$! I$IE) I$I$E)$! !F$ E) -$IOE) ** IE)" H$I$E)! I$I$E)!  =E)4w`;f1`*eHL$!14&" Bf1! $AaE)b@ I$IHe)E)3 4 E) >twf1s*5,lE)` D `KE) % m $E)p I$H$E)! R$$IE) I$I$E)! $I$ɐ$!! T  %) 6H ! $(C$! IP'$!aZ 9R'E)p ,cۆ1z,Nkf1!!f1!}'ME)* ۆmtE)! 4H$IE)+ I$I$E)! I$I$E)! R%$IE) !$IE)!@ @E)A i20E)f` x%)_WDb  X!6[Pb޺ 5BY;T @¯!k[w:tD (S~  [* -9!jS  a )Tn  *UxpJ&2ܽ eha K&M! 4-!b: Hk׶! A! $H !  (9! nV!@H * q2-!jj Q!; "I$h!K* M$I! ۶0(!*b  ! ۍu!q |j" ! @ L!  $! I$Id!d $I)!H IpD!a MI:,$!!ީB '!! M! $7!a~ uF !b~ y &i!b mڶz!b( m뺮$!!ͫn  x`$!8 يm$!!⭠ H$H$! $$I$!! $d$$!!q $0$IE)!U BpIIE) rXmE)$dbE)!U #I中E)!N"FE)!U+?mE)`*;10v>tmf1!Z ؆1!m6/`E)@ ضmۆE)!( $B$IE)! I$I$E)! I$I$E)!  E)@ ۴ie)$!  BE) 5rȩIE)>Ԉ $HTE)+ $I$I0E)! I$I$E)!* I$I$E)! I$IE) $  $E)! R $HIE) I$IE)! ( I$I$)( @ HE)  E)A@ $! e)E)Y dH&$BE)!\` P0 mE):*j $IҀEE)" $ (!E)@ IE)!  hBE)0v`;e)0SNl$p1 bf1! IHE) xE)@,  %Ae)!КkѺE) E)\p i$HE)A  $OE)  $IHE)  I$I$E)! & N!E)B I! $%)bU N !a~ 1@$M! ql! IIR$!!*/ چA %) AA$!!;1 II! $$I$!! 0`@$! $)$$!B @nҶmE)& $,0$!H` m۶I$!!( I0,$!A@ I4LE) "$IE)j $H$IE))* )$IE)!g IҤUE)*ȍE) kN2E) q ڜdE)! L,E)! @KE)  I$I$E)! $I$)E)B ۸Q!e) *B PΟ%)b_Ǐ u+!!TfT W0pmSg[ZmKAӏ!$li "5Sɐe%E)rb:(JQѲ A(**jTkU*,AB [ Zqb  7Ui!a*' $(0bH! ]&4p! .@!  ! ˓S b* zA ! T[ZO! #I`!a*  $WJ!* *2!,.@ [lK!*Z MaReZ! khI!@ Ȋ 놶! 8 !! o&!  @$!( $M! &'!8^ :IJ!` k|L!A/ 9 @h!b MHN! ܦ%a!<4 @: ! I$I$!!Ո )đ$!@ Hi$! ʈOE) $I$! m6i$!!( $!I$!! ! " IE)Jj* $S$HE) $ *!$! IH$! ۰ ۀ!$! %)a d@$I%)!_ $%LE) : $A$AE)!" šjӶE) 5iE)  oE)!/- E)  rLE)! $R$E): I$I$E)! $I$!E)!J $IHE)  I"E) h IE)z 'z3E)a x LE) / I$I$E)!* EE) h $IE), H$IE)!*( +@@E)!vnEC1 ۶mԖE)!K %H$IE)!,(" $I$E)! $8hIe)!p dB2 IE)!Tp 0[*8E) :z TVmE)& $I$E) A$I$E)! d@2$IE)! 2~`?15%`1B 01! \YE)  ᘁmE)  *MӺ"E) fe)! ,2 (R )E)!(` % e)" H$I$E)!" $I EE) 0 $)$IE)@ vIضLE) 6l! xM$I! !$!! *8m$!p $$!!( %AJ$!) $IE). $!! * "I$HE)J $I$I$! ӿ#m%)J BiE) 6rE)* )Rn%)먪 dHd'I%)! X%)* ") X$!/ a@$!  $IL@$!!+ H1JE) b $IE)!ޚ+ , z$IE)( (J$HE)! E)!ꪯ $IE)! $!C&E)!(+ hH E) E)!0Spf1 $ɒ E) H$IE) I$I$E)$! E)bx &%)- $H$E)!( " $IE)!B f $IE) R( $IE) F=6e)x 4a E) %*E) k H$H$e)$!" ,E)$ mʎHe)!Ê8  h(E)**j $I e)! U$IE)( Փ E)` mؖnE)! ŭtI%) ʶ>!x 6}$! !a $Ir! _ I!A /%)A `$!b pp$! Pɳ!a mB!! C2Q";A!P"  $I! PI$mE) H]RE) ԭ?f1!+UePZf1*m 6E)!W $I0-E)b $ E)*J R!ERE):  !" E)h :%)`Ykb(  $H$ (I$I$A& I$I$bB>I$I$@-ֶ]6-OC.!$I+ I$I$ (I$I$I$I$ k;c,~9` ֡askcC9%3:a@Nm{sb> Uߏ|!a H4o!w_wh![,D85Y b !}' ?f!! HvV!PTL!B  (1 { %!_W]O߶I!* bj b# aiXa! *(`J!B * 0!k Ts h tı!^ : 9W,! V!a n( $ %I! ( (M! mZh! m=!X $@b!A :I !h h! I m!a q@#)A!- 0"I$!oI!4* hۢ 0! iR@! @ $!b I! D: Q! 0 b!@ !@ vM$m! $IE) BE)bj?ief1!Uvf1`N 1!W DIE)!O $ LE) +ԑP}E)` hm۶E)! IE) #8 E) JO&%)A*  %)("' H$%)b W qE) AA$! U A$! ft5E) h m;MjE)!. I$I$E)!". II$E)! (  $IE)! _/%) ( IE)# "!0IE)!On `@"E)#@ CU$}E)a#8$JB\E)fH+E)( I$I$E)! ( I$I$E)$!  E%@E) `<.`E)bX pxE) /= DE)  IIE)!#ʨ H@HE)!" HE)YғE)8A 1VbE)  H$ME)!  I$I$E)! m6mvE)!0 e4cf1a E) :  @E)8  H E)!(2 FjE)  S IE)P IBжM!A yhm;M!-ei%)*j ʲc7r!nj F-!@ 4M@! " $@2! H BI!a Dǒ $! r vH$!( R$D$M!" Oh!$ ö6ؖn$!!] IB$I$!!Ww+ !b $mNB$!!V&Ƿ1!UUb3A-Uf1zPse)!{-+I 6E) ۸M)E)**/n p$!! I$I$ I$I$(HI$I$A`BI$I$vdN! ضmA( I$I$  I$I$ I$I$ A"]" !H$I !$IiѶi&$!!Hn8S9 b:i!z)m  jFA82`P`b ' i!,튭!N'!Fbܳ. 6 UK rTl]?[9s! %,!A&\!mi $? "_bOt A 9A M!- `ehgv!( !2 I! V`eF!(( 8$0! @!*x $J'I!Z OS$q! * )!m!-* Kh!/ Immb!  mIۥE)  I! 5{!2<. 2i! ($! ѰU$!** ۶M! D&!8" @@!A BH@t,I$! 髶m!@@ p! $ öÐf$!!U H$!!]w ,!A@ 0M$!!ԕ\''1!-UUU`Sf1!~ U!rE)(+ v4E)!V $IhE)** "IDIE)@  ٺm۰ E)!+ S# kE)x I8'.E)~ E) 䴑i$! (a e$! $!A@  ߮1$! /d`$! x M%) I$I$E)!( I$I$E)!.¨ I$I$E)!( ?,aE)p c BE) I$IE)) D@$ E)!ꪺ B$ E)!:+/.  !jE)!& HrQE)  AHE)  !(IE)@ ؖmۺ E)!b* s &@E)~x P'E) / $HnME)* I$I$E)!說 I$I$E)!: BE)8@  RZIE) I$H$e)! I$I$E)! C:m۶mE) $I1nЭE)Æ(0 $I`E) ۶KE)!$> @1E)b $I 1E)!*r vE) wVX 4II! Hjo!  @6!b@ I$I!@ )$I!@ q۸m!b M !@ $IHT!4 !~ XI"!A 4y>!b~ @! -7! V@! L! I! ۴JB$! $ * p$H!TE)/8[%)S؋AH8;I$I$a" I$I$bb*I$I$I$I$b P ? ?F̟I$I$BI$I$*,:I$I$I$I$ bv`Slb" Hm۶  $I$ AH !A I$AboN!AꪦBߡ  I$I<,a„ 0a((L0aBu] >!Aj* L!갮BI!%A8 *siN l2, S2Z"li`A̰j!b%@ (9!b/X zOz @ + ( ! D`(!!( 0EI!* 5!z }!"J t' !z @! J wFm!j @@!A8 "1r!j H-["! I`! [&:!bj Lu! t!b& *M! p:! k) [s-A!0* $! $!] $Z !U /! NI`!A v:!z $!_ qO!   Kx$!4 $@k! $I !F 4MR4! 6@,!֟nE)!}+̱HE)( M6k:lE)!^ *E)b j Ih%)  )۰mE)ꪪ SSE)/ j!A ` !C  ʄc$! $` $H$!! 4R$Y$!  ϡaE)7j L E) ' E)!: $I EE) ۰)ME)!jˮ  a*iE) $ cDNE)* $@4XE) II$!!2 &H4@E)) $J"IE)!l  2 E)!@A ؖlنmE)! I$I$E)!*(  H E)ψ C7!'d $IJE)- $-$E)( $IR"E)!h IdHE)!* "3!XE)K DMPE) 7 I$I$E)!( ۶mۆlE)!", $"E)@ !&Ie)Bs1o E) $1$IE) e IE) Xm۶ E) hȊ"  M!t lm^! P9!~ &! Z *Lh!mk $!_ $!W $+ !U $! mڨ !$ mMt$!!U b#!xZ I !ՠ + !b I!Aw !- 4M$! ۶m퐤$! $* !a@Ȟ2Y AI$I$뺺I$I$bI$I$*:(I$I$ -G. is^I$I$I$I$A0, I$I$I$I$~wI$I$A) I$I$ I$I$A$I$ A0 4mH۶m۶ 8I$I$H I$ "6i:d@7 !jaKB HDevBڶeց!aj#1e-4r%54b9Z!BA@!z?I!!0q! ̦, oo E 8!*" t/!ڢ ! Mx& Uz &tU!J* bIT b*  Dr! $[!* cN8!+ N>! z v+)!J q˖`! IDi!j k$$I! * !@2IB! fݶa! m0L!   $I$H!b "E*B $!  ژ! $۰! 66! qE!* mM!*  .!H O0l!W $ ! W ( N!A f! (k@!( $Iܐ! dB$$!!p  dۺm$!!. N4ME)/ ,0H4E)*z D!$! 4 E)*y H$H%) !H$I&$!!&P M= $!x tBI$! % I I$!! +I%)* " !!$!ˆ z 8Z !A @9E)bʭ IÀ %) " H$HE)a & I$I$E)! -v E) R$ E) $!!r X$I$!80  -<E)  %IE) B HE) I$I$E)$!# I$I$E)!( E)x ͹! / E)(" C$IE)( @E)h $2!e)!ck* MWE)+ $2E)@ `$IE)  IE)!8 $I"E) @ ge)8 TI@E)  $IE)  E)"% $HCE) * I(IE) @2IB! I"H!b Frq!* $ML!b  )"!@@ )$! D;$$! &I2! n@ #W!+ M@6! 6[NJ! A!A0 $Q^DH!b  DC`! j}M!0 'Ԥ ! 4&z!B C!AرaI$I$A82I$I$a0I$I$I$I$avh"A::رm I$I$ I$I$*I$I$I$I$~I$I$A I$I$+I$I$A@I$I$ NI $$I$I " I$I$A`I$I$I$I$A I$B$A 1c&}_4$AR$!!K6Y0!I4l'$_7<AXf*ˊ ر@"/ a)͝N! ɔڰ  *梗J! P$ k^U 1ѭ ) 0!{ rVF * R2X! "$ %0 A"$ +!*nۓ  RG!b ya49r! m$!  [;! 5$@! ڶ$! :! fz) I! IE*! 4I4!N m!  Dnr!@ D!& ) qLA$! HvI!2 i.!j %n !  P-[!a 㦭tA!h $[x&@$!( #m!` !/ @AO! x iM!"* $[J$$!< ۺmۖa$! * 4Β.)!@ XQ,2!"`  n!@ MJ$!  ă$! I"!$!@ 0$!p TL &!%p $MI$!  $=$!A  PH! `.,& !a@ t`9!A ؚmE)!_  B(E)(: [/AsE)h RH1)%)긪 $HB$! J$H$! #$!` dH I$!!!( I$E)!' I$I$E)! II$E)!* `$IE) j5#E)x p! / I$I$E)!k I$I$E)!} ȄT E),6* X$"E)a` 4@b9E) -? E)!( E)!" ۰n˶mE)! . 0 E) B (}E)03 I& E) , TH$HE)A  @$I$E)!ʨ $E E)  0! fa!>  I6A8!+  I:!j D$! DN!*p Ib! I<i!A m$u!*]0: 3!A 6I!՘ m! pi$!(& $KM! [ ۶m$! e! @ (!@U,a㲸I$I$뻺I$I$I$I$I$I$m;mA:A3Ų ⺬I$I$a(I$I$A I$I$I$I$AhI$I$AI$I$A) AI$I$b&I$I$AI$I b 8A$I$A I$I$aI$I$A8I$I$@ I$I$AI$I(A„ $!ALaH  @!A4A#b0PeB#hI$#0A@Kl)5 Cڶcg NaB$!RvT!@6J Q!9!__"۱m[!{WUBB#! Tg ^ SN! )) 0!߭{ /M!ʪ* Iɕg!! "8 3(! ַi! o # I!\# $$=!jZ Wj;!!k AZV'!:z t!a(z 0:I !ah 0$!(* }<Jr!Ak* Im&A!Aw I25!A" I(!!U@ It6H! I`&i!A_* I‘I!A f$<!+v j=!a I!b H%$! W ehJ!  rZ4!  $!!b% $1$I! mK$!( $7B!p H[$! . M!" *!$ &i$!  cr0$! q7!b 4hD!  ? $2 $!! pGQ$!8 @-PC$!` 1|p0! .)TE) $IPE); HDH! `",8!P@ ti9!A $ H$ $!!8 4ӻ E)* B I%) H -E) SW. ۶m[ $!0 BB$J$!!PQ$ I$!( k2$!!|zZp $2 E)!% I$IE)   -E)( ` X?JE)j ι9!` 0$! I$I$$!! (2 J I&i%)  S7E)ꊪ ߊE) ME) 'ME)4 r0iE)8 pkME)(-E) (BiE)< $HIE)"! E)! B, I%) &9E) ؠ ΓEn a  Im*I!a] I!U I)!bU I ! ( I'I!AW" C74m!  $I! M mm! {l!b $  Z6! )m!a' ۖn۶ ! 4mT<!r 0I$!Һ /!Am۱mbI$I$b+I$I$I$I$I$I$a/?ABa? I$I$I$I$I$I$I$I$AI$I$A*I$I$ʪI$I$I$I$ *I$I$`МI$I$!`I$I$I$I$aI$I$a I$I$Aq:,  I$A$I bb  H$bI2A$aI0aB& H$H$HL!& I bȐM H2 l14LZ ʶ#'(ڎ"(sP614m0 .B 0B IqhO!* 遜P! ks!!h Zm! h"@!* $AL! N:' kWOS! x I\AbK   & i!z 5@!6 H$ !  Ir!" "I$M!( IT! $h$! иmJ.!bj $mk! <) I!B $LB! k mm! à~!a"8 B?)!b @ OTl!AH! 4i&"!H 0!fM!B "E"$! [i4!b B3$@!` PcE)/ HJE)b N,H!* TL! ۼm$!  : ! J! ? &3i$! 4IRTQ%) S< K! ńX2!P@ H~!! $ɐE)! j#A$! x hJ9,M!a <6@! !a )0M%)J* $I@$! dH2$ %)!o /հ$!0 a& C$!!aD( B!$!!@( 6j1$!(( TY4$! 'b 0@E), E)!b !@E)(4 $!p ׿! /. $I A2$!!ʌ8 $I $! :-($!@ , $!@ )e)'? 4 !E) Hh $ 2$IE)!j x $IE) "$IE)AB K ԲE)a"B H$H$E)!  ),E)` @*IE) mضmE)!N $IJ$! B"I ! ڶml! `$8!* ضIR=! ` II!  %!Z ۆn<!,  qR! I"! ÎEE!  ZX!( * YIe! I$!b $I)!\ AI$I$aI$I$A I$I$a`I$I$bcvfazZ:>B ی!h/I$I$aI$I$I$I$I$I$AI$I$(I$I$A !I$I$A* I$I$I$I$*{I$I$a.kI$I$:I$I$I$I$*I$I$p6I$I$ I$I$`I$I$A I$I$A`II$(I$I$A I$I$A  &,ml{A8 6dH(:j^bf ,͘x 6-(ֲ9a`T:u⬪; &K ʪ޸  T^% $ OW! \  `V!ө [j!?IU I|ny!UROM ꯪ ̦! M 6!~ $@b  $/!f m[!꿨 $)A ! (h-!a@, (H2Y!ʠ fH!z ! ~ 2H]cK!B} y/!aB x]'!#02 ۴! L, !* KS!* ٹ! 6C$5! m !( `! I0$!* [!b S+0>! 1DI$!(" `l6!8 PF %)* Pkk!( B$! `$M!( CU$!.8 '! * U`!  44h4HE) -&IH!  O#,!%p@ @! $HJ!  !@d!d xq!a<` B-A!a }e%)" *H$I! D(!A 4 fk ! 3 I$`! # &I$!P i0! ) !A ,8 I $!A HB$! ۰1I$! r!ظ B9$! * 0wE)* $hE) ( IE)* ~4!Ah(N1! 21Ul JI$I$ " I$I$aI$I$I$I$ I$I$K;*H$I$bI$I$I$I$I$I$a j"I$I$AjI$I$!I$I$A"I$I$I$I$a I$I$ajzI$I$Aɋ(I$I$I$I$`I$I$AjI$I$A&/I$I$  I$I$a`I$I$HHA$I$ $I$I$I$I$I$I$ n l9ʦII$a@ I !I ItI @$; K]b  i:e  )*ԲmI*8}Pu *) K! R)(njNj ZKn<b[R$ A* (> A!_ MՁ$!a* Z$y!` -  $ )!j tb ( ! H$!. a$IB! R*H!b"  $!@ n!'U &A,! @V;! $I8!o I ! DA$@!A $"!*>H & I! I@2@! Xm!/ O5m!a !* M!# -! $H`!a $ '!{ j/ !_ yh Az <ζ> a P ~!/UU DI!a * !a@  Rp !a# 5=!صmAI$I$AI$I$A<I$I$I$I$I$I$g[I$I$AI$I$A骨I$I$I$I$AbI$I$0,I$I$I$I$I$I$A (I$I$ I$I$ . I$I$a* I$I$I$I$I$I$ఘ,I$I$aI$I$ I$I$I$I$A@I$I$a:<I$I$I$I$*.cG`  p1m(BGI$I$ AI(!H$IA8I$A$b I$I$mڎeź[ubpvcT(ABdnub,i B%/IZ@iڤ0]=9A@T 6.s6: ꪋ@r .Xr) X 1=}f!a>* #2  N نi! I$:!↑^ J!A ?&:!ak mbj!A +y !U >iwi! ) 䚰m!U* $0~!8 $ I!A $Fn! U !U~ s@! j,&'$!~ !) J`! $ٖ! b! Ќ&N!  X"0m!bа )b2$!b x l! & I1 !/  !( j:5$`!  _"!* 4Ai! + AB $! RUɤF!0  bqծn$!8, Qj.! J E@H!A A !q!(  K%!!$ dKE! ( $m$)! @ #8!p@ Bq! ) "҆!$ Aa!A@ €I!mG 4H! N˦N%)ʫ Q }Ҵq!0 `t-$!bh A3! Iq!<" D2! #!` 9 ! & $$I!b @$I$!b cE)Zڮ6 \p3#!iF ۆn$! 0e! M! /0B!r` !Ϛ$! I E!a $AA$! p$@$ $! 60%)Ab 6+h2$! c ص !a 27$!r A ! R1C>I$! R d ڢM$!!^| ! g!. 0$! I$I$$!!  .ɒ"I$! !m%)) vr6!" P%0H!  I )$! @ C2 $!!`L "$I$! $8! i>!8z ۶m! #IDR!qIAv' az TKm!a* ! 6VH!2 fm! ߜh!a6(AI$I$ I$I$I$I$I$I$bI$I$!I$I$AI$I$AI$I$AI$I$I$I$!`<I$I$}I$I$I$I$I$I$I$I$A6I$I$A@I$I$kI$I$bI$I$ &I$I$:I$I$ꪪI$I$I$I$ApץI$I$I$I$aI$I$jI$I$b'I$I$#(I$I$I$I$A`I$I$A< I$I$ I$I$@A$I$@( I""Xlmۮb @ $H$I@>I$Lb "k:sdk( ):4rD@.Ij !.@ 4 P% &m;e.$1j bZX ~ĩ!տ @jYn _%IN!R *5J) b(ɪ$p{ Dv'Hz*I Aƶ=!]'mI!! $]y AMB A(I`A_& a @Wm a* $@.$! AB!j i6m6! X !A( yhm!a xy!-~ ۆ^!8- HI! dmҶ!. ?I!' zDJ!<  H!( k6d !* tҢ!A*b  b!  زֵ! ` @! PM\M!!" 8 PFT!A, (Ih*! Z21!a) p!! 2 & A ! IQ! %H+t!t  ၚA! \ƈ!# &&n! 0AY!,0 HeZ! (" Qרi!!  X! `!'=  69!` nжn!b `!h8 1!   !a HdH$!! ' !@ zaAx.!( 6C۲ E) mYm$!" &hj! h?0!X`` %B!C$!A" $!!*2b L &$! ҆di$! CV$! E{!`$!  H$! $!! 2 $!!! j` $!Ax$-!a$d; A纎@A`nm!bk$I[*Q!ڪ#'i!~;:M aKj ! J! $0! I$I$I$I$bI$I${+I$I$bI$I$}I$I$aI$I$a*I$I$A+ I$I$A)I$I$a I$I$ I$I$I$I$I$I$a,I$I$AbzڞI$I$I$I$"I$I$I$I$A\I$I$ ' I$I$a I$I$I$I$ rI$I$ C,I$I$Ab*I$I$I$I$z^VI$I$ I$I$!I$I$A I$I$A>6I$I$AI$I$@I$I$b bII0A, HI$A@A $ I$I$b`&I$  Ųֵۂ P #;vhA& P,jjb Ix%oݭ*&cvm%턱6h? aɒ!*0TB&H Ra[  `JnA0LB2$IIImۮ  Em!DMX&@+"IB]h!݆UIb00$I ! Jl5lm!fI2i bi"$I z5M!A fk>t ⯘ R'!* $7!b(j ٶmX4!A  P3a(! ` yC!VjB Ė ϙ?!a / $IV(!aB 7: !d& HJ!, `F! Vm\!  h04+ !8" D3!.b  !, $I! @8 !+ 6! ( @SH@Y!.< @I)K!ʍ |BC!` Ʌa! i6m! #ӴM!`¢ 4!J " )m!( dH$! 0B4!8 iآ!l| , !A$ A!3 ` !* N!*! 4L6i!""  Aa!@ Lj!A& xʱQ$!IM Vi$I! 0i$!Ң 'E!Ψ0 dhb!  k@! i"I!@ 2$!bƒ g! .&* $$ $!!ʊ 0I! $!E) <咤! .k?X!m5%  ! $ $!!&. `$8! ` R#-$!pr@R,h6,0@tK`! I 4A }IIE) ̂ E)U`O>nE)WB 3mE)U.)e)u d6 E)b _KE)^ I%)AU$I!$$II$I 믪I$I$I$I$A*I$I$ I$I$AI$I$I$I$@0I$I$A**I$I$AI$I$aI$I$ajI$I$AI$I$AJI$I$I$I$I$I$A$I$I$I$I$a"@I$I$I$I$$I$I$;+I$I$I$I$ `I$I$A/+ I$I$I$I$I$I$AbpضI$I$a*(I$I$a。I$I$A`I$IA8& A$I$ I$I$ $I$8I$I ! I$I$a[Pa@M;eABŶ!I2D T-hapmv  N͸ Nmѭ@Jl[Sg$x4& );O !a m%) $5Ie)_.  ME)oV1UՋIz61UI2 E)`I# e)W-i$ `e)!h0E) FE)U(  HrE) vmE)U ynj*IE)] ϱhE)U2;e)@ e6HE) E)A ~E)ߠ @!(z ִh! t4 !Z ϣ 'p H! / A$I!$ "@I!A( ZU!bh:( TH$ !a p$ !. g) . CI!& @H2$ !ꊨ +ݓ"i!c FF!/ Tmj! ,&j)! |!A :  DbQ!  X !0 5 ="!J R`B!a@ $I!I! m!몮 #1De !8 &->m!` %$I! CM"|!< hΘ!5 4I4M!  "!( #(a!A` `B!A b+!  lMf! 1!b@ ;L! *2 C3ID!b4 ؄fƑ! = e!b  N'!!x IH! E)!U/ 7rӦE)  AG$IE)  Ǥ(iE)a;v1 nPae)!U FE6 f1 uIl+1 -m$hf1LDE)Uj e)U(mkn,1npf1$!-KrnIE) S#a$qE)p + WE) 6 Ie)!R+ d7$GE)! ܆͆1 Nme)!*#@6iE)a{ ImE)aUh $P+E)נ I"E)!݀$I!$# $I$I$I$AI$I$!8 I$I$ﻫI$I$I$I$A I$I$A@I$I$AI$I$ I$I$ajI$I$AbzI$I$A+*I$I$ .(I$I$bꪭkI$I$I$I$A+ I$I$I$I$I$I$A8,I$I$I$I$I$I$A(BZI$I$ . I$I$[*I$I$ABI$I$ h/I$I$ I$I$ H$I$ `I$I$I$I$ I & d$Ip $AB$IH! ٍ`$I2$ o_O$!{ 8gE); mE)b yGA(E)(  vE) Úm$E)! h" IE)x( MI"e)!( mI1! ?I+T1! m'/KA1!'n1$!_$uâ1!hN"+1!'1! -f1$!mku31jmM.hf1$!ߠ#9,E)H A E)@fLɒE) *mE)@ FA$(E)@ P$HE) Fe)! ̺AڶIE) N"Q$PE)U Q3 E)Ai E) Z DH!x! &-(!` Dp! B']I!Z* FmP!꯮ ((0!j Xp:%!a/ dId! [Ӽ!. }-ZJ0!UVs 1ٗb! "I`I!ʪ C($!bŠ( !!K i!`  . @! !** %!*  &I!O %5!b+! #$?!\ kumѶ!"* "tJ!( [&!TX i!! $I!I! mfi!* !&6 SEt!  `H0$2! Z1!4, At!3sz S#@%) IKE) fH E) Z*+4e) IE)! $E)! s6xMf1 mۉAE)! mq1! yj1!-^+1!$5IA1$!W*"nlP1!"5A1 $1$!( 1!I'Ú$1H$41Gf1ef1ߊ؆ f1laVf1*nm`f19FIf1!* If1!~ $I& 9E)!+ piE)  HB$ E)! n16ڶf1E)UUXIcI1!X+ O" rE) (j>@e)Aw I5%)`$IA I$I$a(I$I$I$I$ ((I$I$A*I$I$!@I$I$I$I$A0, I$I$ 4I$I$I$I$blI$I$A6 I$I$!`I$I$I$I$ I$I$ I$I$I$I$jI$I$ &/I$I$a"(4*I$I$꺪I$I$A`pI$I$A  I$I$ I$I$A jI$I$4 I$I$bI$I$ 88d$IA<: E۵k5  oO ! 'iE)z+ OiE)) HE)  f1!+ $Ie)!$i f1A$E)b` n->1_iE)P~e)Q[ N ?!a:9 J 1X!( 1fꫡ!" Z^8!a,b It!( Q! -4 !` fH!d !# D!!b""J B!k﮻ mG/!""J ARL! $II! ?B#!p \r'c!A ]:$_!ڊ lk! `(#0!!` ЦM%)) Җ)HE) aHE)!U-  MHE)  k۶!f1$!%[,L1!wn f1!c\7{1"h>1_Pmf1fe) &KE)( J E). %JE) $mif1!_+}I!$1b׀I2$f1aI$1UIv$1II>$f1vֆ1$!*\o̶1!۪#a~]߆1!pѶf1] Od1%Yж1! /Pf1 e)-KE)PҶӺf1j I`!u1)k`1!۰f1!h vlۉ-8E)! + %T1![ (qf1h $ce)!*s`e)a\'S f1  O5%) `$I  I$I$I$I$I$I$ I$I$A I$I$jjI$I$a I$I$AhrI$I$AI$I$bI$I$I$I$AۼvI$I$@I$I$aI$I$ hI$I$A "*I$I$aI$I$beI$I$A' +I$I$A$ I$I$hI$I$8.I$I$.$I$A0A@ ~!!/ `E)+ I6 @E) I@E) #m8Me)  vb:1!+W0je) iE)_ $y,!Ւ % E)Ume)Ó;1].;:1]Vf1*2#XE)H) `1!qoo1!*`Iچ1E)UPm1 ﷆ1E)UU`R1$!רT3m͒1JdԆ1!0+S1! wS1@ϯ1$!V-ض1d1%> 1Azf1 e) $9E)AڪЮe)wI1f1 ݯ a1!6 hNN1$!*ݶe) $*$ْ1!n iE)  Ѵ E)[>@1Z*L'Ie) vߺ e)\<4 a`ʎ @! *) r !~ `>UO!\R{ !a* 4T! Bx !J( !a& DHB! H I $ ?L$!V UZ9!Z Ay "!n 8zढ़!J(( Dij! $I$! + ] !*+ !/. sDp;E)_/ \JIE) $I$!E)J Ҷi[3hE)z m۴Xne)! ۴A)E)*j`qv?f1] &LvE)_  ω%)~ $7E)տe7e)*wj 1 :1jvk?1!.h\WE)3.Asӆ1$!# c1$! 4ߚf1$!y1 1E)UU`]1$!`ƭ[1Ҫ"Բ1!(Ate)E)7#ض1݂e)E)q} ۑe)! $Cf1E)W߾O.&e)!101a*mf1$!vN1*ڢm m1A >V1Z*' f1W rE) W30nqf1Uka혷f1+1!+ 'iMe)  4IE)!$ me)$!* e)$! |0If1bV* XAE)A]I&aI$I$AgI$I$*I$I$I$I$I$I$A<,I$I$I$I$aI$I$Ax`I$I$ .I$I$ bI$I$I$I$!>%I$I$bI$I$I$I$AxI$I$AI$I$ I$Ib8$I$$ 'IE%)' I| YrE)b ($IE)!/ kDE)> 0MJ?f1*_ Ĥ~E) &n7!ڪ}# f1Wտ IE) &e)! @M˒f1*8e) ضE)! T" & E)P  ɉ7tE)!  6(GA:e)E)8"Tb5E)@w:הe)!,cZpmse)E)^/^BmVe)E)Z(<`> f1E)u)hnNf1E)UhZ۵e)!8<:B =`1 &f1!dKe)E)cP1 Df1PPX1! Oe)E)^"79e)!%05f1bkmf1$!PIU1"jֆ1Aj6V1j? 1UU mE)+WqyYf18Wb; $e)  q$j1!/dIu e)ހ B LIE) R(@6Ee)$! @e)$! @ E)X ɤ+E)A TM*$!h "!( դ&!? ZP!!b ʉ x$fTN4!af1! z}<1!+j`f1 ;A1U [ME)/~@I'1k Af1ꀪm˺kf1! A!$E)! hbmZle)!  60e)$!( ME)` $IE)ր O=E)ax$I$I$I$AnI$I$AI$I$nkI$I$A I$I$!$I$I$ꪺI$I$jjI$I$`I$I$AbI$I$I$I$bzI$I$A. I$I  v!n& )E) 17@4IE)b-(  aE)a  P0 6nE) $:1IE) W^ "m"%)no'aE) Ife) arTe)!66HE) IH$IE)! k ME)@ Qmf1! i mڶe)E)ɛ mE)@ dLpPE)!,)J#e)=+=f1 `f1E)]+̓pe)$!"Hįm1 6Tcֶe) B*@me)o<_1$!ڒvif1 yUMf1E)ݾ&d;ve)  RfY7e)E)kt:e)!,( ”e)E)*(`RJIe)!GQe)E)8oK۪1!P׮1E)W8 ؈e)ɒf1Ң\1!i;l1 z 9A'e)! ߩ1!%>1!_ Y 1U nmE)UP:f1 kX; $f1+l 1$!- vlۉ8E)! R[e)!  6Ie)$!( j=e)$! he)A _5E)z{ ?!- ;EU!Y !j* G1!A  !* 5 !΁1H !"Q ! FwlfE)- o$pE)] \ @$IE);* H HE)( ȴi[E), $&I[E)!U}W #pE)_"+E) I e)! 0m+e)!eGE)( A$AE)$!* Bi I1r h [f1! m;be)E):CΙq1Һ* m[mlwE)!$%Ml( 1"fUXfe) %71$!~ ҥe)E)"@Ŀֆ1 Ća֕e) ȻM$]re)$uz͍1j(+M+1ɶ Kre)E) P[f1!*_1` ٔfe)E)( (8j*Be) ~U, Ze)E)1! -e7nf1+o 0Fe)! An2f1 *j)f1 1! "3JD[Qe)E)@. f1 " WCie)E).`7e*҆1 n[1 !6Ӡe)$!*МS1!/漆1!_.`+af1 sE)+F nf1+$)1@Rf1h+ 1!  9:6OE)-e)$!<*Me) X I.>Ve)!x( Ϗ&%) X$I I$I$A"I$I$AI$I$ &#I$I$b[:I$I$ZI$I$Aض>'I$I$I$I$a# I$IA0~!_% TIE)_5( !h,E)  $-(ZE) @lI:O9E)x' m`lE) P$AE) bVoe)O . te)!6$ * E)$ m۱!e)E)- 4 $IE) C eE)  Xvmve)E)V=:6 $I)&AE) m۶Ce)$! MmӶe)E)U  v.E)! @ $ne)$!" C AE)!( m;UYie)E)?2(d+e) Am{1  Q?1E)_U?M`e)!wXge)E)8U[P1 -IR1!*ƒжE) e@e)!Sf\1"ڶqI1 +9#1!Z*v'tf1!MW1. 01! "e)!@*qZm1!d%؆1! Me)E)n4e)@ jf1E)j6&#qe)@SJRHe)!K%e)$!(xs1$!zwY1!~~^;f1W~fE)+Roۧf1+-2&了1!h ` `f1 ڵ-]E)02 ^ԫԦE)!4i 4E)` LPpe)a3 l)E)ޯAxT *ҋ j6!A, $bN ( $JR  b L?sNE)z*  E)~) mIE)( eWf1+ 5E) ` L L@E)+ K e) SAIE)y)#A6f1!  B)E) $I"IE)!@  i$IE) mӤ\E)$  IR$C E)!@ $I4IE) me)E)U M[ ]Ҷe)E)U ۱m'E)! $+e)E)Ո )ABE)!  *BE)!Aۈ e)B gde)E) He)E)UWe)V/ne)!@*3۔1!if1J df1! Fe)! pm`E)ހ dS#@E)A. I`E)bՠ\E)~ 붆1'4a;E) \ ̷f1.#7rPf1( +m 1!* K$he)&$ݚ1!* PNe)!  q&'e)E)\˜1! !I1!*j- 4Ef1 B*ӱXBf1b :r1PN\1E)zUxOf1*1!UUWxdf1!U f1 m궬+f1$!ޫ{ISne) ,P tE)! +d E)! N9)Xe)a O&%)I$I$AKbrI$I$A cI$I$I$I$abI$I$AI$I mA(' |)a$! /   h7$E)* oE)J'/&1zX7mE) ` Jd@$IE) H$I$E)!>  IE) ЖmmE) I$I$E)! I$I$E)!* $R$LE) @$IE)!* aҶlE) $I$e)$!* mvme)E)U/+ ֖M `e) \f1!Z )Lle)!Pmk7E) _!l81E)zRXie)$!]z1!k+,1@k>f1x/1/bˑ7f1- EE)!  2$E)! x e) 5ʬ1!ꨥ !UQE)@; f10~[܆1-4ı1 m۶mE) * $I$E"E)! dIHE)! E)! B*$ E)  E)!  I$I$E)! $IE)6 I$Ie)$!* @e)  lҤE) I|,E)hk-f*E)຀}0E)! $IE)& mӴmE)!UW u ۶mE)* `AHE) ۶mE)& 6m׶E)!(  -me)+ $ E)` IH Ae)$! $I1   IE)! f$if1$!奪ֶc2E)@h~ee) 8 ! IE) f$ IE) 2$AE)! E)a dIe) $I$IE)! $A$ɐE)! $I2+E) F ۆmؖmE)! dB$AE)!W" $Ie)!+W ظi[IE) flE)  ߆1!U??f1!+&e)N%de)E)(me)E)JRf1  O%e)E). dk1 Snme)E)p)Ԅfӛ1E)Kv1 $B }J1 -wB1 /p $)f1%kێf1! Ra1e)! par1良 J e)r,p2E)A ?~ yn6 $! j5 $!$D,'1A*C '1ܭ)m۶mE)  I$I$E)!ྋ I$I$E)! * ӰEE)  DHJE)+ $ $)E)` A HE) I$IE) IIE)$!( j&E)#m~jf1 Me)!jՂ\Oune)!V(me)!ׯ a,#E) $H 2E)!j ]ֶm;e)$!" $B'$E) I$H$E)$!"( I$I$E)! I$I$E)!*" I$I$E)!" I$I$E)! E)! L$IE) F{lE)!( I$Ie)$!( R'uW1* P$E); qdE) لmۤmE)! $IE) $IE)!# @$IE) B@E)$ E)! E)! ڶicFE)   IE) [m۶mE)!W !I& E) ^ ILE)  $䓄^E)*f1! W[1!0e)|Zή e)E)"be)E)?@,Ě1 I2$Ie)E),YB9df1  spe)E)@@:1E)Wc>4f1! (uR1'x.[1b/k1  51$!h  )e)! Bk1!52}E)0mҶIE) E)!* I$I$E)!* S;E) IHE)!+ $ $DE) 8(HE)@ H$H$E)!* I$IE)! dHGE)]`1!Ջ#e)!z5WoE) -+ܶmE)@  R(PE)  I$IE)! ڶm e)$! $Ab E)  I$I$E)$!* I$I$E)! I$I$E)! I$I$E)!" $@$I2E)!  IE)!* C AE) DOIE)!( $I&!E)@ |4:1!~ƥ L$uE) " $KE)B @E)!8  I !E) $EIe) I$I$E)!  IHE)! $I)E)! l mHE) BR$IE)!@ I$I$E)! R $IE)  R @E)0 5mE)`8lcme) hE) ּ:E) ŐvE)+DnӮE)bj <1$!k[Kae)E)@{+Rf1!*JAy17$m1!PmB7ņ1 ]ߗf1'漭cf1$! 1:uf1!@(8,`f1؁6ps]f1 k.B1!} "@e)!0.qHE)m#Se)!h 4 %)+K1481 z* B=1 H$rE) % 0@%)  $` E)  $I" E)!*n $H$HE)(!  ! IE) * H$IE)!  " E)! J vm 5E)!\$m~ f1 &d&1Ꟃ'ioۆ1/``sݺf1 !H$E)!. $I )E)@ I$H$E)! I$I$E)!* $a"E) 5[$E)4> ִmnE)!( E)! $#HE)p IH$E)! * @$IE)  9(AE)  ͒#E) P $Ih$IE) $HDIE) I$I$E)!" %$IҠEE)  &IIE) A$I$1 E)! I$I$E)! $1JE) I$I$E)! $I$GE)!<  %I E) $IE) $I$)( نm6`E) #A$IE)p -"E)!r *-ڴm1jw[Cn1z #MئmE)ڀ 1 E) %)+$dnE) )@V1 Xv e)!deURe)E) "*r01 -X6l1!j11*bﺾ:1!z9m_1E)5Wj*fE1ؠ*+Co}:1 )o1',f1 Y۹e)! 8 % 4NE)j'ʴ1! h 40dE)! I$I$E)! * 9mE)` I$I$E)! Ӵ- E) hb I1E)j#m;OAf1&f1A&&=oۆ1 xߪX{˷E)$ I$AE)! $I E) I$I$E)!* I$I$E)!  E)!*j K$EE)'0 Ȑ$I"E)! E) ) $b E) ۰-۶mE)!ʊ( H$IE)  E!@E) $R$E)8  aE)b نm۶mE) $B$IE)! `E)a DH$E)! H$I$E)! ܐ$E) u &M$E) mE) m׶kE)!*+ ږmHE) !@$mE), P$+AE)   ), E)@ HHE) $I$E)$!  JIe)! I$I$E)! "IE)  !*E) B VH()E)@ $$I2E)! s$IE) B:E)APjEE)*жՙ1 6 7e)E)@te)E) p @91E)_1(f1$!:je<)̆1!Rò`f1E)ZPu1E)ɵW?j1' f1']7܆1 Ҩ )E)*z4m?Ib1A-G a-p1%X'H׶mE) hq$!!X% z!IIE)&"* F$IE)# I$I$E)! I$I$E)! $I$E)! $IE)! $ "E)! |)'?Aֆ1!~W%b'ہf1/"@ܶmۆ1!pU )m۶mE)! H$I$E)! N E)!6[  mE)  ۶mE)!n* H$I$E)$!( I$I$E)$! $I E)! zE)`8< imE) m۶mE)! $IE) ۶mÖbE)! E)! b$HE)!2} @('E) $ 8,E) b FZJE)* %E) _;E)  ?E)*_ l$E) $E)" I$E) $mE)A mE)! h(HE) R$hE) #b@E)`( H$I$E)$!( ReUDE)01 $IɀE)! H*HE) I$I$E)! $I IE)! @I E) IIE) $AIE) D0e) r2-$!*@` J̋=E)x sf1 e)E), wQ죀fe)E).B8 pA%1f1E)z áh1E)^-`f1KZSr@Je)$!/|㶆1E)_1>S1>`*pL9Gf1b'}Jf11! ZVe)!(9R֘b1MI1!ک I$d0E)!*m۶E)! ^5"/91!_ x"75͝f1 )1!Xտ m۶mE)! I$I$E)!+ IE)! Y$IE)09 DH$IE)! I$I$E)! I$I$E)! $IE)! * B;CE)0   a$IE) H$IE)$!* E) $IHE)!( E)! o K[E)!$,:[ A$nE) @%) H E) dE)_ >E) ?E) W l$E)! mӊlE)!  E)$ }$IE)A_ IR!ME) oU'ME)A~b= E)  YIE)A׀i'E)+W ME)+ 8E)` DHLE)! $(B-ME)` L$H$e)$! H HE)!( $I$)( ҤE$YE)0 !@$IE)4 nm۶e)E)W  E)h 4lE)O"&E)!Iy唗1+621!F&- ږe)  e)E)쀵!df1!$ǙL1*<2#Țe)H=9uOsf1~4בnE)*69&1.Ĺmۆ1` KE))b DI $!!  B$! j6lE)! $!!`  (KE)j $HIE) "~ UZJE)2VE)*ۆ1A/mE) Xֶmۭ$!! I$I$$!!< $IH%) IIE)!** 4HE)! H$I$E)!诪 %@E)6 $I E)$ $I$',E)!m$E)@~llE)"kE)~E)!z+n24E)* Vh0EE) @E)! I$ E)! m E)! $IE)! fm5e)$! ILE) S7gE)!0 lÖe)$! )E)!.@ ےE)!: +ERE)( IE)A~ I`*iE)U [;ME)b~ -E)NiE)aW &HwU?E)a/~ڴmBwE)  %i"/ E) DHTAE)  !"IE)@ H$IE) B(X$@E) I$I$e)E) 6=4E)p XIE) ضme)$! "X$Ae)!x O%$E) #K"8%)! j'f1˫Dzh1$!+A1* Elqf1!)h5C8f1 BDhX|e)k­h71!A}1:x_1pzn1  iO1 K6 e) (a$Hf1(  PiE) 6Xf1 mܶm%)!խ ڶmE)! $I$$!!/ $IIE) $"IE)*H hmE)8* II$E)!+ @ E), ۶m@E) ۶m5E)!*zOcE)`*";E)6m뼅E)E)! #6%]=E)!Pr !sE)$ d$IE)! ݲmVE)!m DB$IE)! ]׶m E)!*  I$)E)@ ִkve)E)UU lE) mAe)E)}Ub `i9e)! 3e) ; Me)! mJaE) $ 붶e)E)~W I A$)( R"A$AE)p `HجnE)  زE)! #@$IE)~  !@E)-< PLE)% ۦm E)*) ۶I5E)Jh mmE)! II$e)$! D@$IE)!0 I$I$E)! I$I$)( I$I$E)! ( N۲IE) kaze)!\ O&"%iE)Aب O=E)+4۔ne) $[@Je)!0@R#ɰE) vf1E)jg<,6E)k m?N1~7 ,V0{؆1 ط Pl$!, @m$!( @$M! CJ۶m$!0  $M$! $H$I!b DJ4%). $>%) %t! '}1!B>: UX $!a" $I"$!! &h˧\$!<, Ȅ$I$!$ $m$! HIE) I$I$!!. ۶mۆ-E)!_ ۶ ]2E)*{}M e)2&Q?f1 1IZte)++Ea'mf1A*~$IE)!؟ IHE)* @$I$1 , IE) AI$!E)! J $IHE) $IE) !۶mE) 2,IE)!BBL 0H@ E) $YWf1E)W9f?81!N2$rE)@ ROE)! m%sHe)*(, Jh E), $q[ E)0 iڄe)E);W $I$ɐ)( "$ E)@ BqE)0 vnE)! 3ۦmE)z 1'AE) X %IE)7 IJE) ۶M4E)!p IAE) H$I$1 II$E)$!( H$I$e)$! I$I$e)$! I$I$E)! -fmve)$!(* &I E) |8`E)P {%) */ڠ ݖse)b |Re)!@B$q҄E)  u[e)!$1mf1jʨ yuf1E)k@eO1E)W&WSf1!X.*[Ҿf1kOAf1-+81! CۢMve)$!   McE)( A$HE)! 6*IE)k $ )E)*jj نmܶm%)!^ I$I$!!. ۶m5E)!W $aRJEE)}[E)9'&1!(O}~f1!W+ mf1A B $IE) IIE)* $I&!E)@ #DHE) p# $I&-E)b@ IH$E)! 8l۶mE) C"T$Ie)!S  ڂ6E) @ 낶k e)E)z$ 6Ne)$!fɱ1!@XƎE)0 `crGvE)!`  I$H e)! H$I$E)$! #tE)$ [QE)!  ]E) , $K-cf1 52e)!,< H$I$e)E)~+ ˦iE) R#$AE)` kiE)! (- HE)h%Nۆ1/n4E) ( k f1!X $IhE) I$I$E)!2 $I$=E)p $Y(|E)! *) IE)@ H$I$e)$!  [ ۺmE)! m.ve)!x " '& @e)AznI'f1b ^;f2e)0JiҒe) H17傤w1 ʴ $Z7B$! Pa"I! 4l$I$!! $!!-( $!!6 !I$I$!! ( @41$! 6!z sX4 !* u6 ! 1@!   I&8$!p  $AI! $I$E$! $!!ށ I$I$$!!+* $I-!j  )h!` صZ!% "B$Ie)!Om mV㲲E)!=J •IE) XYE)!() DH$IE) I$IE)!* :hVmE)  I$I$E)! @$I$E)!" $I$E)! ҤZ$)E)(` I$H$E)! I$IE)!& Z$PR- E) $IȄe)$!( [mE)! 8iDE)!< D&I$e)E)W ڶve)! TH$IE)A @vm۶E)! !heE)2 hE2e) :(J آE)! $ɩf1& 8YE)!0 I e)E)x ,GlFE)   $ E)@ Qm6lE)! )4aE)vn߆1w&f1a*zBf1!p)$I䈘E) I$I$E)! 6m051*z $IuE) (!IE)!@ H$E) "I$IE) @ ) aE)! M.5AE)AsN:>f1A*z:!pNf1!B +"j"we)B DNf1r !@@e)@šX%e)!mYe)$!sbq1!b oh.e)cfֆ1/ R!1!K  ږme)  ]-E)! mێA8E)! $@$I2E)!` $I%! B%Y! ^@W!8)> "$IE)B*N\E) `P;ME) $ E)@ $HHE)!" $AR$E*E)!** I$ E) I$I$E)! H$I1 $B$IE)! J EE) I$I$E)! !I$E)!  mIE) ڶm6E)!* &I E)! H @E) H$I$E)$!  "AE)@*Ն1!mmRAe)$! H!E)!" $I$AE) I$I$e)$!(* y%E) pɑ1 LI$e)$! A$ $e)$! mh e)$! $I$E)  ڶme)! A$ $e)E)r_ !$IB$e)E)C-  I:)E).@ lsRe)! \ &xe)!x5G4f1o m.E)!" H$AE)  @E)!( $IE) b$$IE)!<\ڌe)4òE) !6lX3!!(We)=/bp.Ke)ܧ I!8  ˀL! [nنm$!!R $AI!@ 6M\! @&! mZC'!(~U A 1n`!a) ! @! $iB<! ["ڤm$! THжI!A `$I$!!X7 R @ !0 H9!z c!z Rį$!A` yM`!* %I$4E)+r I$H$E)!ꪪ !E)<  B$IE)` I$I$E)$!  $B$IE) II E)! IE)  $E)  I$I$E)! A$E)b " $IE)!@ȐE) %NlO17<@1!o/H/1 u<1` "nֶ1E)WUm{'Mf1z*+O$_1E)UU51 گ m E)!n[۱e)!"8 $H$ E)  @E)$! B't )E)@ h1* Xme)$!* !I$Ae)E)^ mCue)E)n@ Ei)E)@ jH#Ye)!<* H$Ae)E)A-^ !$IB2e)E) 7  ) $"E)!֠"rf1!Y 9f1!Ux㒬;1!W ti$IE) 6ihE) E)!` ( $I $E)!R B(XIE)!06E)((8JR1p* E&IE)aQ9٤E)b t X1+}_1e)$! H1Fe)E)= \-e)$!  5ŚLe)!`&X-1!6JC@1 .8%f1wk {1 ֶiE)! KIf1& m۱i8E)! kE)aڸ ))$!  E)* " I$I$E)! #E) PV$IE)b II$E)$! 4H$IE)( " $E)  ,!E)@ 4I4HE) II$E)$!* $HE) B$$IE)! ۶o1(/o19?@1jF$ц1!~n"?1Щ#ض1E)UU$7 f1 7ɟ$1! y H$e)!kJ ɒIE)&ݖE)!CO9E)* $$IE)!*  IE) E"IME)r XI$E) /U $p$E) 'j mE) Ķme)$! ! $E)!( $Ie)  I$I$e)E)x(  )e) GuE) $C$ E)!x=\OrE) `-Pdž1!z-^ 4I04E)A(b $I E)! CmݖmE)!0 I$I$E)$!  $1E) @P dh4E)}_u -P>!A & Aq!' Ф .)! @ P#4!a$ ,U"! &"1!(b $MR:<!0p &X<!Ш&Lx!Zޥ &1!!&* vaغn!/ B]O! kl[ ! ,`X!0 MM!b ݺ%! @9!z ,}!^- tx!ڥ* I!A  I@$! A$I$$!!  $%EE)(: $I@E)( A$I$E)! $ 1E)h $I I&E)! ۶I3E) #i1E) $ RE)h_ v3E)ao Ļ E)W X6 E)!* $(E)& 7 YFLE)  ;"$IE)I۴E)! *@ImE)$ /)B*@ E)B $'`E) ]\ $IE) c$JE)  @$IE)!(*  mJE) &7E) X^qE)b" ۶mE)! $L@E)  A&ME)K 6liE)+ ۶MCE) ܈MxDhE) 4`'me)$! * *h[ME)  $IdKe)!P m6m e)E)c+ 0%6NE) (*e)@ hk۵E)!AL1?`i!5f1H *E) J $IIE) $IHE)! H$I$E)$! j0I۴mE)! @$IE) Tvbe)$! RE)ah _h.$!"&A%f1A*h\01E)_{شPE)U(>Ie) `ʴuE)M~Ϸf1E)_=S1*wѦf1/`If1- HJe)!% K$`E)  6M`lE)!  E)! 4paGE)*7 $IIE) $IE)!+ 0EE)( E)! $IR$E)0 Z$ E) $oE)b vvE)_ ҖۀE)U zI E)a  aaE)B I%IE)$> V3 $IE)I" ۶E)`ILb۶E) em0E) *pE) #$IE)!T@(wRmE)  I1@E) $(KE)` H$H$E)! E), $!"yE)J m[E) IIE)!( C$IE) !E)!U* lE)a PM E) H1E)4 I$E) $I$e)E)%^ E)! Ӷn4de)! Eke)E)+ $`ME), 4ITH1骨 @$I2E)! HME): $@IE)b& @E)V 23?!Z v!b+* DCI!  $A!.*  $L$! ( 6 $D! )(M40!(b &!< &d'!ZhyQ!A qi$!? &l$m! $! J s!b( Mti!@ $!! @F9!j 5LP a- M!  !" 9A$I!  I")E)*jj %qI%) E`IE) $IBrE) z 4ZxA%)8 $,%)*h 3$E) 9E)ؗ X{ M%) q $IE) &m۶E)! I$IE)!W @E)![ $I1E)!x $ HE)! @-HE) I$I$E)!着 $B$IE)!kꊂ L$]E)$  .iE) ` $IE)! "I E) iiE) AE)$  !ҠE)  H$IE) %<$IE)r ۦ -E) (,@ ITE) I$IE)! / IE)$ I E) W g$IE)*ހ ME)+_ @SH~E)  m6iE)! !A )( thie)E)8-V !9F"E)!J H$ e)E)^ a" E)@0 Fn`f1 -֦mvE)!'X )@ЌE). E) $I$E)!  E%AE) I$I$e)$!* I$I$e)$!( k1E)!( c0f1 7& ME)azP11A .[ۖZ"f1J0Vne)! :rQ*e)!B钠І1!e,+5E)! _Һf1`;f1^x]w1- ɏE)! ( $ He)$! E)! " ^5iE), $K$AE)) 0<%)b x XE)  O'@E) SI$!x-  @$IE) ֤m۶E)! E)!W ۰m[E)!+? )%)H A2 CE)! o HIE)! I$I$E)!몪 $C$IE)! HsE)J $ ) Z&ME) @$I$E)$! dB$MRE)![ 0E) $IE) mmE)!, ۶m۰-E)!j $IHE) B&$IE)( !@$IE)!4 R'5$ E)` HIE)! I$I$E)! I$I$E)$!  aE)  R#PcE)x E)a+ E)5p $IE)- B$AyE)0 Me)E)%^ ]ۦne)E) ݆iE)! I$ $e)E)>%^ I$ $E)!  I*,E) `x m AΠ au!+ &-`7N!@(( $I!ᨢ II$!* @$ ! P $! a?'!b :! b o !y D5n!/ 3AI! ؆iˤA!a l!$ M!a&   H!4j!Z t|4 a% HNI!* q$!8 H! dC$i$! 6m$!!œ- $ @$! X !$ 0P$!b >Ij$!  Owm!- 9!H$I!% C$ &$!!~\ $I$!$ m4iE)!W $! I$I$$!! II$%)! @I@E) " A$I$E)!" E)! I$IE)!* $IjE)!* R@[8E)  )$IE)@  (&IE)` $X$E)  I$I$E)!, j I$IE) I$IE)! I$IE)! * $IBE)! "$IE)@ B$$IE)0 *) IE)@ IIE) I$I$E)! I$I$E)! &< AE)P  E)`, .0ME)b/ ^ E) = IXE) " E)@ ke)$!( 1);&e)E)h -IE)! k:&e)E)܃7z  e)$!  E) 2 E)4r/ $ E) I0(E)B ۶m6FE)!  ۶E)@ 1BdIE)  Lvbe)$!3فe) : 5E)M4{f1!5 IgE)!  &Ȑe)E) <)=me)E)4P caVf1!$+B@f1!b&uIte)?F`NE) $qc Ue) H$I)( $"AE)@ #4IE) ` OM! I$I$!  @$!!? $IC$! $&$A$!! $!  I$I$$!! "$ E)ʊ DIHE)! H$IE)!* 0E)! $I !E)!*n $IlE)! aKDE)*>(  Ă4IE) E IE)( J$@E) I$I$E)! 2@E) DI0E) ٱs IH E)!k(,E)@mE)!*n $IE)! h* E)؀ DHIE)! $@CE) B%e IE) 0 "a.E)`@ ɊmE)! %@$IE)! $I$E)! j`$E)^ Wp>AE). hE) mӶMe)E)~ m$$e)!P ۺ e)%) I 5E)@P !|z fQ !A** # !bb(* $Oj!, ! !n+ d M!)( Ƃ+! VdC!bP&gwP6 yrPA!* a!` H!J b$  ! $IH!⮊ l!( ֐l_'!! w ax+? 1A!a)  !ʀ dl!( 4!$i!@ xWn%) ؤI!, $I4!p |!\% ꓤh!bx !A  @n۶$!!^ I2IH$!!敂  I!@ $"$!b *%AR,qE)Z !I$!@ O $! %9"$! R0$! $V$!a(~ ,$%) @NE) ~ 0#E)a +`E) 4E) P>%PBE)_ 6 HE)* w,E)j NHE) KE): hE) ۶mۖ E)!㸔VE)$mE)$IކE)! B"0aE)P TI4HE)  $R$E)0 *- IE) " & e)!h+ WlަmE)  B( $IE) I$I$E)$! #A$IE)x CE)b p $@E)/ $I"E)!   I$ E)@ I!e)%)( $ e)E)7z m֦֭e)E)K%\ I$I$E)!` !Ȑ$IE)!p  E)a (b %jkcE)0^ $2 IE)!  )E)@  IE)!( Na'me)$! *s&Rӆ1J $ E)}ᧆ1!%[ى(E) k?ᆆ1E)x~pe)!#.Aũe) 4Mef1!b.[Ǭ1Wz7lUJ1/۶mm1 $I EE) 0 II$e)$!" dl E) 3 H$! R$T$!a0 $HzME) (5 I$!p Fji$!88 $Ih! & !$!$ T$!A ~ $%) hIbRE)!߫ uy"E)_ ;o hE) `E)ݪ P@HE)W & IE)_ ӛ/E)bz )IE)}{ǍE)@,(  IҠeE) "A$IE)@ (H$IE)~'E)! $oe)!*LNv۶f1,ICҖE)p K6w[+lE)!& E)! A E)4 I$I$E)$! "E)a@ I$I$E)!" I$IE)! $I$E)$!( 3&IE) gP=E)! H!0{E)  I*,E)@p!bz I|A!+*  jQB ( 9 a Dk!* bA!bC ݆iH!$ 2:!zmӶ-A*   l!.& ! "!  Q ! HEA! ݐ [ !*: T*!L z^ ϙ! - 0Z !-( !b 4 $ !  HI! [kmd!d 5!p 9Mp!A` }l!a)  ӦA!b  BFN! ¦m3!  !0$!! z $IS$!!W FJ!DL!  m`$!  :&!p ! I ! =$.@!  Iv$!bW I+&E)" yhmE)% &m۶E)!* H$I$E)! E)!* A$IE). @$I$E)! I$I$E)!  B#4E)( I$HE)!( \JnE) $H$E) LL$E)! * 4H$IE)?nE)!)蔸oe)!m^P۶1Z*& ҶE)B \H;lE)  $I!E)!  $R& E)  I$I$E)! * @* E) $HHE) I$I$E)!*( H$I E)$! HE) + E) ؀ 4@E)/ H$H E)! F\JnE)! (OZF1.: mӶe)E) c I$)E)@ RARE)؀ z6"E)nd `HE)/ 1HIE) I$I$E)! (E)@ k6k۶E)$!  SDv1h*fuf1>lGf1 >] f1:>e)p L&Ҍe)E)$@ttBe)!aLKf1 N9dE)?ذɁNe)- 4I+e)a L $I@E) $C$IE)$! $H$iE)  I@!b $'! @l! D?I!a $@!! IE)U* q & E) mݶmE)-* ִm۶E)!"* I$I$E)! C$IE)!* @I$IE)!- H$I$E)! I$I$E)!  @!EE) 0 I$I E)$! * I$I$E)! $AR#iE)!P I$H$E)! ۶m۰-E)! $I E) E) $I E)!*. I$I$E)!* $H@E) $$CE)!* $IIE) 6  E) E)! 5 $IEE)( $ $=E) $HNBE) I$HE) @E)$!* ¼ 8,E)``au]A$ y !!. .6!4 L!  K!TB  tHb! $M0 !뺯 e>!bzt\S ( ֆu!a( Cӻ!` K6[! *K! E0! Zqk>!bRR )1W!*  Knڵ!* Ŷ֭!   $i!$ @$ $!( R !  @! Mt$l!/  E$I! @$I!  `(H!, $I!$ \$$!( 4A4$! R $I>!\ ! +'iB! Ir$ $!U /El`%) I$!  E)A Š I4@E) + B*$IE)* H$I$E)!ꪪ* I$I$E)! I$I$E)!* I$I$E)! * I$I$E)!  I$I$E)! N$!E)$h  I(E)C B&X4E)! I$I$E)!  I"AE) ۆmٶmE)! I$IE)!  IhE) ' $IrRE)( $A%E) 2 I$I$E)! %@E)(< Ʉ$IE)!^* 4LSE)*  EE) E)! $I$,E)` 0E)`  p E)+ $H4HE) E)!*  6lE)!b* ̀"aE) @ $h$E) cqbE) 6,ۺmE)!B vm7E)! aLe)  I$I$E)!  E)!mp HܰE) & ۶mE) I$I$e)$! I$Ie)$!" (E)! N_E)2) ~d?f18OJ^<1!%R-ɖ 1 t:6me)E).$UUe)!( P Ĥle)!Eoᧆ1!> 0PE)/&$O1% k۶iE)! ۆm6E)! I$I$e)$!( &¦E)ؠ8 m $!U@ I$!a  Z,I!@ H/%)R I$L&E)! x $IE)* I$I$E)! I$I$1 I$I$E)!* I$I$E)! I$I$E)!+# II$E)!* dC$8E)z $IE) S$AE)!4E)ƀ DIE)!."E2?f1z6'ؐf1z2vbf1eK7 E) I@E) " $IE)` $I$HE) ! B$$IE) I$I$E)! j Z$tE)((0 ")I,!E)b@  E)!  E) & BE)b;A< M`ʘ!9Q"  QIr!Zٳ  պ%V,!{ Э߹ gb. Qiw!%6fn m)6 NWX a# ЊR  p:vbPB k* &:)!(b ,L4I n%܂H!+ $I$! !$ !* JI! 0I#! !"" !j* mѪv!+ I!I!* 6r9! ,rW! ` $!} {4H!  $$d!d !Ad!d "!@ ۆm۶$!!V -m$!( I6 ! b$M!0 &$!a0 ObJ!8 W '/ H$!z  m! - O&I!W Oӄ $!   $!!oy ILE)a  E)! UU  C@E)!UU &0iE)! UO"tmE)1ҊE)4,-?}f1G1!_?mWf1$!*;NB1!7m?f1k+pcf1ۨ oɍ:E)@ DI)E)"B " $IE)@ IIE) "$IE)h H$I$E)! % "E)0 @ k ۰me) ^* mE) * [mE): I$E)!( E)!** I$I$E)!**  H iE)  E)b ,) E)!~h( dI$IE)# I$I$E)! I$I$e)E);] $IHE) I$ E)!  C$ E)!p ۔LP%mE) DZ0E)  E)!( I$Ie)$! ( B, HE) ??f1$!9?1.E}|<1! &C І1j aI$e)$!(  @NE)( (ņ1*"_ne)  E) 7X `/9e) IE)& I$I$e)$! ( I$I$E)! dȐdBE)!_\ r 6! h `!A ;IN! $& I$!^ $M!A I^&I!a 17@a!a $e:$A%)!]] @E) $ E)!UU # DIE)!պU # 6E) jI mE)88& $C$$!!( I$!!^ im۶$!* $IIE) вBrE)!~qa9E)- h$E)!g)E)(d+hȴE)  $؜E)!/ mۉ 9E)! I$I$E)!  I$I E)!* $I$E)! $Ie)$!  [ѶmfE)$! ( "4`E)n`vM۶cA 7/g a !TE\02!:-x < Q *6Pv}!^w]Uvsc *"5n0,3ٻq!j*kI:0g _3 bk+%P)I0!I XTa  % $,8! E%!*  I2!jn hd!# $h! ("#0``MݪEIf Օ (v!+7 JC%A! (Ų! $!*Ҫ Ž~!( OM!a* $zQ!* kjKզ  ƌ`_!b> A! 2[!@> l!!& u7N!8 I$!` vٶ!(  )"I!@@ hKr!$ @91! Ҳ `h!bx $97! Y6i! I6 !b  8! 6!a ڠb n! $!!+z ! $!! $$aH$!!U $I&$!!| H4$!. E2;! ۆiY[! @ l$! m۶I;tE)!U $AQI%) U )$Q5r$!  *0*! HmАqE)( $bB! i $! $ HB$!!,x R'MD$!0 E)! @B&$ E)!  #E)!Z ۶m0E) &nE)  cˎmE)! PE)* E)!* "dE)(< I&E) "a4IE)B ! $IE)!* #E)p WX/E)a IE)( % $I$E)!*⋠ E)! II$E)!*( $IE)!61!'o*h1x I$HB&e)$!( $$AE)!  HE)  H$I$E)! [.8*E)x mfOE) + 'd IE) I$I$E)$! I$I$E)!, J׬E)6~t?1K8 g}kf1'\GE) @ $9TAe)!p "+Ie)!H(@q E),[)6LE)a` f Le) -7 HHE)  E$E) $A$E)!"# 8$ 1 @i! H$!! ^ ! $!!/z $$ ɐ$!!U d$$$!!^+_  ֺ! -;! $AD$!(( @ɖ E)* m۶mE)!U #M%)J* iFj%) 4rE) ;$E) Kn*PE)!WV9 1%6 $! ી k$! @,mE)  `$! 1$I$E)% $IE)& J0i۶mE)! $I 0E)!.b I$I$E)! dH$AE)!+ 8 E) 6 ZX4E) x$!w]v6j+ ԩk{aRdK$!!B<&]1KAĬ%G(-jXb"< a-%Y)5It$H!boH]4L-6ԫcgA@"NT b@M[S&Pu=0ECG A[ŒYM! H%N! XƫVV!y pRõ!(z&͠nj!~ DP-!{ v@!b* U!( >!aʬ U[!$M!c M$)!j $I!*) +m! I )! @ $M9!` M!' tTm!^- h$M! AAB!$  IdH!  Et$! Uim!* nm! 0!A` $! L!  %@! M$0! Цi$! :* B HE) 8$EE) ݐdÆE) m 2$!: iA$!@ m&m$!! 0$$E)Z ؐ E) ZMPcE)!^Z ) E) jU V$! zF@KE) IP'$! A0%)& E%)A B*$IE) %@ !E)! ۶mlE)! E)!ꪫ &`E)! $A)E) ` I$H$E)! HI$E)!. @$$E) I$I$E)!( I$I$E)!* #0 IE)~ ME) mKE)!* A"E)8h E)   I HE)ZoE)! B(ǕÆ1! Ӵ]mE) I$I$E)! ( I$I$E)! ( R$E)8 &9R$E) )XE)! + $ER$AE)0 I$IE)!" *  H%E) 4jE):adž1?d51/ $$Ie)$!(" $$IE) ڴmۮe)$! 1f1*c r%5 E) h u f1- $I!E)!" I&!E) @ $IE)!( H0E)` ! `u !  9@! $ID!" 0.A!H IE)8 @&mE) b+E) U uU@$T$!b*0 &mB"I$! Ġ(E)!U II$! * E)ꪊV @H%) I$I$$!!  ں T:%)* l) "IE)m :IE) u7*@E) m%) H:E)/ B#6@E)z   p HE)* t6`E)! "I E)!J* ÃE)aLI/  A h"MAB  $!!M4ib(4,ِ#!  BCBA@薭[ I 2( !Ʉ$!! ڭXA † IK!$HЮ[v(!;Xg d}#F!w fʇj!Ϩ6d4!)F$TI!5J" J hHV!h !ҭ!). ӈ!/x  qIDi! c !" $I D !  E!I! DH5@!)  }x! M;i AM!,  9"!Zk* @i! $hm! $IR$! $ ;!} t!a $1!_ OrC)!w+ 1M`!+ H $! C P!  $I! " $I!@ $HA$! &@h$!0 x$I$! A$A$!!% ДAH%) @$!![ K$H$! ڠI E)*  I%)  H$I$$!!( $ ,)$!@ d A&IE)a 9IE) v-E) %%) $@-5E)/z " fE)j HB,E)Ҩ [fضE)! $I$E)!+ $IE)C * $$IE)!Ux @$E)!%Wx E) - $I$E)! I$I E)!  I$I$E)$! ( hE) Ĥ#E) iJE)- iE)*< $I@E) I$I$E)!*MQmݶE)(p@1k mjE)! " $I$E) I$IE)$! !IE)  {&B#E)a~x Sw)tE) / *!"IE)@x BISE)p X8qyE) 0 "A ME)@0]5f1<' E) I$I$E)! !E$IE)  mۆmE)! ʎde)!‹8 6]&E)/ I$A E)!, I$IE) H$IE)!" 9iFME) T )E)jh !@ 2I$!!U R$A$I!0 "A!@ d$I$!!, @C$!b  $! )ME)* mцmE)!W L@$I$!!  H@! $!, DJ"%!$!( R`!b@ $$I"E)!w )IHE)!z I$I$E)!諿 $I E)! "TKE)@/ a; IE) N $AqE) / H 4HE)4( I$I$E)!(  $A$IE)b 0n)E) Z E)A؀ 0LE)"=7 &PE)@4 DHHE)* I$I$E)!A$IE) p3\sE)H  AZ#UjE)38  (I(!E)! THHE) B"t IE)` KE)bx 0! E) /  IE)j R$&IE) f j HE)# SI1*9Qf14as de)! ۺa[ E)0 HIE)!! $IPE)$ lզAE)ࠂ J% E) / I$I$E)!!,  ĄUE)!( 8 E)A EZl$IE) (ࠍ!$ $J!$  I%D!"ۖqIE) $I 4!p o(6! ۦmE)a m$$!U ۶m$%) m3! I yMFq!_ " L7CQ!$%; 9E) DI0he)A t e) ז+M[ E) $RDE)!]! #A$h$! ĶE)! dH$IE)!⫫ .R$]E) #$E)`J : E)B!I A$a(I$I$AI$I$A@  $I$@I &/~":pk+ D$I$b I$I$A$I$$I$I2~!^$ ˻6im1ڌe-@>#U A* ^?!u 6v֤46KdoY,1 }߿} [9J<![7R POV!ط 5 +O!Ha۰   )*Q!h* V .&!n^@? n* z " 60i$!a $I,( b 6!o $ $ b )}!^ s!^ 11Č!a+ 4H!) $ `+!O $K ! E[!" %e$H!0 T'!z 쓜!A 06IN !a $h!  u0!^ IIq!Au( I.m! /A-I$!* $IN$! /2r$!J( L m! HD!] ].m!@ 4 uI%)* bIE)  ;@je)+lZ-f1 &IE)!Ww "A&AE)J (&iE)!ګ dB$IE)![ ۼASB4E) p AMئmE) q": E)UX pv9E)* 4LSE) m6mfE)! %)jEHQhME):# " bE)* &E) y 4IE)% $I$E)! I$I$E)$!(( H$IE)!( ( X.DIE)\` B E)a ' $IIE) $ "aE) ʨ  I0`E)( 0TfME)a (%zE)<   IE)!P I$IE)!( I$I$E)!( & $eE) ϧ`4$! E)" % $I$E)!(j I$IE)!+ I$IE)!(*5JE),p/Vg4e) / 'ӊV)1k IHE)  @E)b@ Hvl;E)! 8 Be)0 E)!& I$I E)!(" Sc ܴME)!r ( n$E) &MBbE)Ap >;!b $L!~r!a~+ I2a=m!A Ӷm! #6y$! 6I$!-ϒ%)z O=Ҵm! Ct0M!A# 6R6 ! $)IP!, ]6ö$!!WW B2I$I!$1IE) XhVl۶e)+-/e)! W$:ME)bb IQE)j N$IE) B$IE)!j/ R%)`htm۶, I$I$ ( I$I$A$ I$I$b-`I$I$S;v Ƌm ֿI$I$(I$I$  I$I$ I$I$ 3 x aH!ACe/ͽ~ڴiR@8( mn }_ 7l!E)J1i X"b@6lr3a]K,V0 !!* x\!A(.4N!TL&0 zvH @-  btSv-FMvդ ߾ U, b PabH! b '!** $s a }1AA !x $_H!  "a$I!@ V!o(( h v!8 ,Z6!(!+ vC$!  &Il ! km!  ;n! @'I! Xv!* $' $I! *\$!0 8M! 0&L! rIq$!@ ۷!0  m!   Q$$!" r4I!@ $"a! $IE! i۶$! !@  I*1E) jcm۶f1`e?f1 -_mk7mf1o+#刵E)  TE) I$I$E)! * E)" !CE)!`# N=%)X  N >!A& S JE) PE)!] `2A$! %)b(jH sH !h 4@E)b"/ $I E)! I$I$E)!* I$I$E)! B#a IE)x t%E) mԀE) @E)@! ¤e$IE)"" B $IE) 0)LE)  $IE) $I@E)  I$!E)@ ITHE)b 9r9!/x !dIE)b0 $C$IE)!( %)a  H$IE) .ǵE) )DaE)  I$ E)!  I$I$E)! $B(E) e)ƌ< $E)"ˆ Z$$HE)0  IE)!"4  ADAE) @$IE)!ª* kvE) $!( #A:J!j$ m@!b@ -*J!@ P$-$!j 2.!!H 0N!a $ʂ$! $$!b ܦ 2!k ?$! ېk`$!* $MMZ$! T !b XH$!! &۶d!d lɔ$!*.heߜE)/mVE)J/۶ɛe)A*hZA#I$I$a:*I$I$AI$I$I$I$bI p ?-E I$I$ABI$I$ *.I$I$I$I$bmӶmbAC ێ0(*I$ HA!A$H$!A&aKcR 1b|!-&I8$ "b <2th׮]62 p F!a梨@GB !&.!bꪪT" !XfkU(@,E\eqт'5Tib),!"$I!JꪪN$ ˂~'ϗ ߷ UI  uf! gXBP!A  ڴ!? aV7!A j M!~ s'0C!z y7aN!-* qm!  -!* hq! I! [&! 0! r%HԔ!,  0!n $B6!b  ӗt! $$!U $!* C$$!a0 &A$!a ! o!  Ð[;$! mId!d A W! HBH$! 6ۆ$!!x 4 $E!(n}E);)@E) KE)( @%)!Vz mvm E)!5 &IIE)  "E)jB 9'?$! P!  e0$!  ۀ$!!H0 $ i,H! 0!bh0 L%%)6Z $I0E)! I$I$E)!ª/ I$I E)! Ӳi۰)E)` PB+eE)/ Y۶mE)!㮪3 H @E) I$IE)!/ A$IE)A h$m֢E)< "  H0!E) $IJE) C$AE)! *( C$HE)p 7E)- %H$IE) I$IE)!* I$IE)! "I IE)@( C,E)O ضmlE) I$I$E)!(" I$I$E)!( $I E)!Ȉ ۰!e)( B7`yf1< J@E)"  1H$E) $1(E)` )1(E) "$a:! & $! :!Aj $&!z  *! m$!U #$!@_ pE@$!b,W ID!~ Nm!W I: A!A ܐ$ ! N! W `$!b pL!A H ! (br! z8a۶m$! X$!* [M;!$IA+I$I$I$I$I$I$a! I$I$AT?1 i۱mI$I$a I$I$a2,I$I$(I$I$AB$IA I$I$I$I$ @$!A $ 0A M!bm۲ I$I$4!$L$ fL1l:@ qÁ .j lXbŊeJ㜮$"b d i1IA=v!` [Q!4dMhD0!z.y$I![[+$!a +UJ !(# b$@l!  =!Z :N!^U Ο!o¨ ю׉! B I!H(* $I$:!ꫪ J$Ic ! ג9!z :c! oۺ! :-=!Aj ݾ[$!_ Q I!j* q.4! EP($! *I$D! N"4K!!~ |X!b/ ! 4MV!! K : ӯ!A@QƈA|I$I$A(I$I$a I$I$8ʪI$I$!c;vA*U˟ [\I$I$ I$I$*I$I$I$I$I$I$aI$I$A) >I$I$ I$I$ I$I$A$I $I$I$I$ 8"I$I$A0I HcG *% @$!`2 I1!` uh!A|( @#l!` 4`I>!/ tmJ!* 4Ih$! $IE) A&$C$!!%X. )0!` !4yE)J !  E) $I $!  (n$! @!%` 4H!|$! 5 [n$!!  0,E)b  $Y$!0 DX"(!b 4p € A$! K$IE). $I$61%)` 9X+!-/ IH$! I$I$$!! 8 Zz IE)> "$ %)` tE)-? $IE)!( $@pE)!" $IE)  jCE) }FE)K, H dE) $H$HE) I$I$E)! $ R,IE)Р bx%E) I!W жI2@!A >@!az ?I! O"R!A -ԲO!A ~ ,%AC*! B4N$I!0  :I!x+ Otr!a *( $ ! W f !! i! @I$!.  I4! .,E)jd،A,*I$I$ޛI$I$I$I$I$I$GO Eرm $+ I$I$I$I$AI$I$a I$I$A@I$I$Ah I$I$A.I$I$bI$I$a I$I$8`I$I$A$ I$I$*I$I$I$I$ 8I$I$r(I I$AI$I$$A  $I0bXvЮa]$M&$I2 A@&M;6i A&Dڠb:8 m[`  @8sl !$D)"DA@,< aB6A%M!m_UUq5Aг\!^Ӧ9",p 0 * '94e!. >3b!! h MtAV!  S!f )mF!o  IPmW! 7:!$z!B '9I ] NxJ b~/+ 4 lI!/ X$I!꿀 lM!~j* YHިM! $#!q!j@ 17lN! -mv! % "!B` m!b rHn!஠ NT!Aޠ" 1A'0I!)^* Mm! mn! I$!  I-!@ Kmذ $!  ӿexbE)* BC $! $X%)> !`#E)b q! $h$H! Zܩ,$!( #4! m!   ڬ$!! AE  J4$! `"R7 ! ؀ Iŧ%)a t&hE); $ $!! R$ '$!b `L1!A, ֋l$! $ E)*jJ I$I$$!!.0 HE)!W? @$! x -vA$!" %( $!(( 8m$!b8 @9E) * $IHE) $0$IE)` IE), 5 ! p! / I$I$$!!ʨ $!!`! 72!a@ %) 1 E)' BMIE)  A$ 2E)!8Ȋb FJ4iE)( !* E)!(@TڑE) цmۦmE) ( $I )E) ` $IDE)( " ĺ1E)B @la! ")!Z* MMcI! m"Ė![ )qR!  m! #c! ۦIۆL!$ [ 6!* 2hI!  @&!A0  :4E! mvi! dM!  [vl!"* 0$!AnAI$I$+I$I$!I$I$A&AxbǚABlI$I$﫻I$I$I$I$I$I$AI$I$!0,I$I$I$I$A I$I$ꪪI$I$ **I$I$bI$I$a I$I$I$I$a *I$I$bpI$I$A I$I$AI$H$k H$Ia$I$b6AB&I$A H$I$D ( 몦V#i.aغh$!!5*!XT)5a+۶O * `ɚt`70(b`w)` b jT!b : sVo*! @!a Ԕq`!"  У`i!GI ^U'iI!{W IN !* !ޫ NZڴI! 6m!* %@D! $IIv!*+ rml[! q 2!h w6! ~ Ɩf! J2 !j #H! " !B 4I! $$$! EI! 8 (!`@ d݄! $Ð! ( i!H Um!+ `q$!+ 3 !A &@I$!r CB $! PPbE)' 6 PF$!. $OҚ!( &I@$!  :ʩ! ĀS!? @h9! eI F$!!  @+H$! C4 !A` ŐfO!A9. @ $!![ Z#AT@$!h u:w$! ( ) x&!a  @I%)*z B$!  @$! `d!A  &I@! $!! = " 1BI!@ k0I!B a!A $! H @$HE)< & -$!` ׿p!ب  @!b I%)+* 9IE)  $!@ gM?E)? "TE)H I$I E)!# $IE)( I$I$E)!.: "$QE) B ۆmݖE) E)!j C$IE)!h+ H (CE)!g ˆi LE) 4RB!^ `Kʦ!_ $$$ Z! I>ĺ! b( +U! ~y5!A# $ !~ |!Z >&! Fo+!# tk;`! . EI!  dHE) .DM!b[؊mAШ,.I$I$aI$I$aI$I$A`I$I$bkvT!A:.AI$I$bI$I$I$I$*I$I$AkyI$I$!+**I$I$! I$I$A I$I$jjI$I$AڼI$I$a ((I$I$I$I$b**I$I$a(I$I$b& I$I$HI$I$@I$ITI$I$A`8,I$H$, I$I$@I$ b!I&M  ItA:  &H0b($BI4h1A hZ{<aD`̘b(" `6! v,!A ( dƤA! 614!` kE) ،$! &e[tL!* QMI I!" %6n!p( ml$!" K5m$!( !8&$[!(( ڤ Q%) $.$!,| u)$! * ݼv$!.( )ńHJ!Ђ uiT!  $H I$! ( ;@! #6!p Ig!' a!A [- $!!o  !p f!A.8 E%):" $IH$! "a I$!  ;]n$!,3 $`4H! ڶm۶!!@  qI! ˁ30! (`  i$! C$I$!  & ()!@ #,.a!`@ 7Pnp$!> B$! ym$! < !A h"/<$! 1 E) / 3pmE)., H$I$E)!ʪ I$I$E)!ꪪ %),IE)Š PFE) ,3 Ök?&n%)" $")E) j $IIE)(( R(&E)rJ @0m!. 3@P,! l8 ۾! @D ! _<!]j ҶQҐ-!* i VI4M! IM !* Cdk!  sH!X* I' !- O9%)A+ t! ʃ) }>$!AhnAI$I$zZI$I$I$I$I$I$KAƳ]baI$I$I$I$kI$I$AjI$I$aI$I$!+I$I$A "I$I$I$I$I$I$ajI$I$A&II$I$I$I$`I$I$!I$I$ x.I$I$"I$I$8 I$I$b H $I$AI$I$ I$I$ I$I$A@6i:db ˜ &L$݆v6hi۵H 24i: ! I$b X *  ]vjs< . `s8p !aø!W]m۴"XuMMaa56 ѭkr ׽ZI!kW 461!. tGA  ضi[!ݫ TȘ! ̴J' !  BK$I!ƪ [& I! TB(!  )$! j( (I! (I! @0I!  A$!( $M! d`! IBL!** BIR!" #6i!x ɹ&M!' M! ڀ 줰6E)A I4!3` S!e5!0  ڂa;n!Ȁ$ (U&(!  4ɑ! 4 km!b  F! c `(! ( Jg'!# Brѥ$!< i !  0 @<H! ݔJ!a 6a!A & P- $! , иs!b( X4X8!b !' ()!@ "%qRrL! !&! -f L!   $I$M$! $IH!b G|!0$ ! " 6i!$ L&i!A Bw1H$!@5 ! Md! &7 B!b D $!!H! HI$$!!, ˨e!( \dC!  ! 0@! #a E) gλ<!/? mhE)! $@ȄLE)",$ I$I$E)! ۶ [E)! T(n'XE) 0RdE)!Y $@$$!!N !E)< LE)!o 4E$I!2  *)8 !@ @! `0I! $d! !C 0msK!a{ f8!A@ iW!  I@! CR$i!* 4r"i! H {L!A؀aL۰ I$I$aI$I$a<I$I$껺I$I$I$I$A*I$I$* I$I$A"I$I$I$I$jI$I$I$I$A* I$I$I$I$A(8I$I$a I$I$&.I$I$I$I$I$I$I$I$I$I$AI$I$A I$I$`I$I$A@I$I$$ (I$I$I$I$(m;m bs"@$I$I2 I!HAH$I2bfHI$ $B B- @];lbX͒$ 9 -)`*Kw H  un=(WBT!a7J (9bı , ! Lx!+^ r$! !a i!II!Z $) !* $!a( ۶IŞ!B &wa!A :!V $!@ i!Aۖ$ bv!A* X7!!ꂩ ;$! Pt!an. <1=! Lw! 0 !"&  C$! * m'm! * `"`i!ax )P2U!A. Z9Ф!A [n+4! %BR[!B* փmM!Y a`! "TIe!" $RR! -2`$! ( *GBש!< S!0a `p! $@P%!  h,<! d`)! &  @HH$! 鶴[V4$! p =.!X`@ H ! E&W!# , -vCa!( 2!e Æ! &#I$!a H @Q$!A  3b8$!옲 Ib! ٖm$!! ! E) X <!p@ 6A! : 0$! $I@$! +(Z,U! 0Tp!< " $! ۺmŖn$! 0! $! /5$!Xr` pI)C$! J$IE)* ۶m`E)!~e Dp$@E)  <,%)! b Z*E)몮 iݲA$! \I$!b InmE) 4E)zr ks!U*d;! 6 !)j&!aj X X!* u$1! ` O+ I!( mZ/!_z ?:! ɗ?!/ T`! * S!rhxH$I$A*銪I$I$參I$I$AI$I$I$I$A|hI$I$[I$I$AI$I$I$I$I$I$A⪪I$I$ I$I$I$I$I$I$I$I$AbzI$I$A-I$I$a ( I$I$꺺I$I$!I$I$ ../I$I$I$I$I$I$I$I$A<&I$I$I$I$!8I$I$b*z !Ea`H IABI$I$AI$I$ApH$I$A<I$I$ I$I$A ÔMb(@YI A/ .Z4jTkr0 ڡbs a$Iaڦ,:@49rb(aj a*x~z$4 AO Z MML!* Ҏ p bN) %A * F'' WU atw! ں 't! W F02!A:j  m!h PHҤ ( ؐ&M۶! f[1!" mv! "!H mѦM!ꪩ* !_h O`L!# +!WUz `?I!' f O<! oB!c XtM !( 6AɤBR!** C@$!`+ d3!A 6 ۆm!   ")!!+, $iI! 4.0!~p dJm!"* "@!bJ fI! 4A!( .zѻ!j, 4I$M! 5խ*!88 p$IJ!B 4lK!A (6I!@ b0IY! I/!= „J!  A!A@ äm4%! H!  lti! [ѥm! @!` 2V! * Aj!< ].[$!"  "! B 9˅!b &< @ $!!o B2$$!!@@ N"q$!a@ j$!mD TlK! $0E)*  )d :$!( >! Ϝw .. BE0I%)  H$I$! $i*)E)j $Xn!%RE)- 5!" M1P)u$!A&( I`$!! $I$!  ɒ*i$! ФI۶!* l!8 ֤m! 0S"I!Z dcmE)z v6E)z t˕E) ݀ME) %۶8E) }±LE) j E)_mq$ $I$A,I$II$I$ꪫI$I$a*I$I$!I$I$AI$I$AꊪI$I$I$I$AbI$I$A@pI$I$A*I$I$aI$I$I$I$arI$I$A&I$I$a*I$I$ BI$I$I$I$Ab{۔I$I$a(I$I$AII$I$I$I$`I$I$aI$I$I$I$I$I$JNoI$I$ I$I$  I$I$ I$I$A$I$I$HI$I$BI A$A@m6mA!Mزɐ,!Cd"bCI$`H $a I&#j:[),9A@R$B aP`O -Aڶ rX0! $s a p!0 󤧠I  Md2 !!Z ,E)Ak gڑE)*ǥff1Um@e)%me)A$Ie)U B@E)oakf1 mxqf1}8-ϼE) !i$ME) IE) $IFlE)ضK9E)$ 볍6`E)_ QE)~ &#?! X H'! m؆! A$-!. N 0M!  c! 6 $!d!*8  A!2  e#%M!} >!7^   H!  ( l6I!+ (k؉!80 Bj! ( Z8z !$ hu]# !, #(!6p@ u!2 k$i!  ?lI! 4!?d $I4!! B հ!T!"ʈ# U(!(  h! (2 I ! L! p 9!쐢P L`!"! Š+!* 0hfj! P.0 !` @@B!b $! $ !  9,"!0 ˀ qE! " D‰:! غۖ $!!f H$H! ˏ?`!X  !b I$I$$!! " $!  '+E)!W sE)~ ݊)E)62VhE)j 8ke)!~u8e@&e)IRle)Հ IE)b{Ne)we)ߧ(-7+f1 KI E)! l9BdڲE) cC6ض1 z Pme)$ 4%S)Ae)! Ie)E)7 o&E) 3A mE)z I24iE) ݀ 'ME)A^ He) zI 4! p$I!,)I$I$A+I$I$I$I$y~I$I$!$I$I$﫫I$I$I$I$A $I$I$ I$I$AI$I$"I$I$꺺I$I$a`I$I$ I$I$I$I$I$I$!pI$I$ I$I$AI$I$I$I$jz^I$I$'% I$I$a I$I$ I$I$A`6I$I$AI$I$ I$I$AI$IAj<. 0II0I b II$A I$I$/" 2D$!AMס[(M8!s)64!ø T[b!Z Y6E) |iE)  OE) ( @$HE) $A2$IE)! 1DE)@  E)!* i۶M2lE)!k=f1!ukSA1!  ~'] 1E)UU*i۵-"1$H䘳m9 1vۖC1!oI1$!#5, e)@ iLe)! ' ӲE)@.ж1 j* R]IE)@2 ": E)!"@@ $I"e)$!* p:'iE)  ImE)x BIE) `E)  -@E) r 2E)bh 0JtH!+* &[jȡ!8  ؖm! "J!!aB BK!. ֵ v!( Kum۶!, Np@(! RFI$@!! `, !b؀ != m%! &: 4 2! hb ^y!" =!|@ fI$I$! HI$I$I$I$ajI$I$(*I$I$I$I$I$I$AbZږI$I$AӢ (I$I$I$I$Al`I$I$A6- I$I$( $I$2A@ ?O%) T@E)_ i$IE)  4@E) 6 &6E) IcE) }E)߫ $ E)տMN@e)ݿ 1I$ f1 ;"۔f1$!Nݰf1  $1$! @3q IE) ` mIE)!j) J\%He)Z5+ 11jPԤĸe)!<lEe)E) WdYe)E) "-`e)E).  -e)E) .$f1 (*H8f1!Fa$If1BeWe)E)vc྆1"q1+ [q1 He)!)E)!*?f:e)jN²1$!c TfI61 j`1hn;#?1Whw$ 1U nO>E)U$f1 >U&f1  c f1! i$&E)* ifHe) 0 aDE)Pц1E)zU LMe) mSZ'LE) ]-%N!sɴ |CNp_!a + @IJ!" ,1!(" 1 J!AK< "M!ʊ $$! z Ә-4!` 'i! )&! @5ɖ!k &Ti!X" ۰ض"!* L"X!( %S7E)z "GIFE)+ E)!  H$E) # :e) mE) MHE)ߪ "$E)կME)UivĶe)!U+('[f1/1  $me)! `IE)  d# E)`I;)le)E),4ue)5e) -#e)E)o-e)E)` z8e{ʆ1E){ pOe)E)Ȍvf1&Z!I1$6re) ܐ&e)$!Ԏ Vre)! s- !ine)E) g]l:r1$!낞 1E) Z$fe)E) ZZ91!ڊ*n)ke) Kؖ1bn /Ie)!uE)(lof1$!-`>1!zzöe)_k?lf1W uE) WQdž1* I $f1! m۶`f1! &@$e)! - Hm5e)$! (e)E) T#`5ME)`$|IE) ' I$I$A84I$I$I$I$AjI$I$A I$I$a"I$I$I$I$AhھI$I$c@I$I$a:I$I$A(nI$I$ & I$I$!<" I$I$I$IA؜6/m:< $95E)+ }4IE) ER$IE)2 !E):0 6IҦE)迪 mڶ!!sfHf1 [re) U- A*tE) $e)b hm4E)! 2#L1!oF Ge)!30 ]Xve)E)`+_-  #HE)@ rd۰E)!"  "CqE)@u+f1$ Re)E)k " ΁Fve)E)VD1`hRUe)8@HXe) mKi1!Һa]lV1*1g#We)E)8"6TSFf1! PҐ8e)$! FHe)!< [ZH kse)E) *Oe}1$!ں n:Sle)E)((  'e)E)TMJ1!j*v/he)!PTޖf1 cI>a1$!탉$E)0c벆1$! bMK1%)z{vf1_m?l 1U_ ېwmE)+_Dw?f1&1!+m۳@f1$!~ 6A&e)  Xm"e)$!  ve)E)15X Nlce)!x -' e)a XUx E)X XUT! BR4>j bpb d!a( ۊl! 9! $ )d va  *: ! !J* P4q! ]7+!J. #ٗE) ]& $IE) H$@E)&  6E)  ۀIڶE) i68!rrm me)+ I ue) + $"e) Of1* HB$E)! ZљIE) [6e)! kR`ke)E)"] S9ܤme)a $mE)![YcH1**]e)!* 1ނe)E)'9e)$!x1> Te)H$1!킺鶆1!jԪe+` Dzf1&Le)E):JQe)!(4dP+/І1&u̒ z1E)Ml"Rf1( ]Gxe)! `$3e)@Tv# 1 uCe)@ n Ge)8no1 #f;te)E)Vf1$!d-1$!z*;qDZf1z ) e)aɺ1E)UOA1! 3W1_.'Ն1WNe)~%e)+: f1 z  M\ۉ 'E)! <ie) d m,Xwf1E)^m1h z _', f1A '$!AڪI$I$ArڜI$I$I$I$ʢI$I$jZI$I$ I$I$I$I$A I$I$A|Ԙ7I$I$I$I$Ix %) 0`BE)a  4E)(@ #9taE) cSPE)x/ LǦAE)- 6 Vf1 Vkɐe) &0ǐN1B nE)!/  ie)!( @ 6de)! $Ie)E)`# de)! m۶]e)E)#^ mڤe)E)/zU 'L.E)!  ;ke)E)W 84E)$!( YUE)! \(le) IK1  ǵ㓆1E)Òze)! XgAe)E)8Dв1) 䘛?f1E)UPRe)  U;e)E)8f;1m-rk1!ꨩ-B\uf1! ZHUe)! (f1  FGi1 vR1!lnV1l֔1 ͣMm[e)E)T;$0f1$! j +#af1E)o^IBe)@S&e)A 6:e)$! Pm~nΆ1$! ުf1~m?-1_ =E)  nf1 6:rf1*h+lmf1 @:R 1!^j+ NE)!\K11!z/ji[Xqe)z# zU[4E)a p4!A&8 VjW!뮮  S!! M J 趪 RK!A ln IE) E)b   DBE) " $WE)7 m E) / m븝0E) Trf1$1u1!* xkBM1Ҫ ܦME)! mqE)!! h[E)( t6E)! ۦmLE)!  mۦe)E)*W 6cme)E) z Rm:E)$! `;ue)E)U ඪE)!  */hNE)! bs`e)` zOf1E)ׯ 5ge)E)$2GXne)3"Df1!H؝f1 ~/f1!JJ(DJ1 5ƶ(e)E) TIp%) I>E) "H'E)@vf1  HjE)Φ ^ǑE)!T Ade)v&ne)*`e)䄌le) TN1$!I953e)$! LRe)E)xe1!$S 1$!*--f1 @c_5$a1b -@of1 ?`>1!x_;mb1z ee)!UXĚچ1!UU v16+mZm E)  r ɵe)b KZie) 6Be)xɿ'JY1 ޠ2 !I$I$!I$I$ `I$I$A &I$I$ bI$I$ bI$I$A%$I$ 8 1JE)- 0@E)-ڸ(E)@(m91^-b7E)' sIE)p- H$Ie)!m/ kvme)!ފ $H$HE)  I$IE)!(* I$I$e)$! $ eE)  ЖhmE) [68nE) $I$e)E)U H$Ie)E)X?= mE) FUqE)!  cImE)! %@Ile)! $IE)!WFg7E) 6$E)W I%)^ AI %) ]* ԶI%) E) d~"HE)Aޢ PI, E)* IHE) `#E)A* D Ih%)_ I>aE) m;E)E)*H!RRE)a$ 0+Hnf14 Iťe)b2le) I$Le)-Iq!e)0) ne)!00 (hIJe)$!  4re)E)?eFf1* ԔLe)! ;791E)kz#7 f1ɢ &Qp1*XA91$! ~Nۀ1*fee)s׆1!UUl*Ԗ1a*e+e) (ó ȉ1R*J V XnE)  ܦ e)!r* e"5e) ` gfE)b i*"!n Dӓ&h%)z qf E)ۺeE)*6* >1֋xE) piڶmE) @@$I"E)!3  I"@E)(@ m݆mE)!  E)! I$I$)( ۰"De) *(4 ЖmԴmE) 5AmE)$ !@$Ie)E)+U_ &"E)@ FmE) f e)!( NL &mE)! 6 Ih;E)!~$E) d&E) cE) IR%)W IE)_* @IE) IE)UdNME)bנ ж E) IIE)} vE)a*_ 鲵Me)!* 5m۶E)! $m۶E)!2( mvE)!l im۶mE)!W ,r IE) F)E) CTHE)! ] )&4E)!׀-3E)Az+pFƆ1 ˼e)! )81!& ne) z}Lچ1E)W6re)  u(01r J#i1E)^ (ޅ\e)E)&711!*f1 1 o΍>1x]ymb1-ڂ-%f1* vۊ 9e)!( F-۶mE)@[bVe)! BAvhE)a`3aE) p$I I$I$kI$I$z$I$A0Ar '!Az/I# E)uۗ%E)&:5 f1 `-14N|f1 `xl۶E) H$IE)!* $I I0E)! I$I$E)!* A$IE)B نm۶vE) )(( I$I$E)! $IEE) $I$E)!* $ie) (4 F4&HE)  $H02E)j,ْmsE)hmY;E)!^-x mE) $I!E)!__ $C IE)* =E)   $IE) $$I$E)! ԌE) @ Q)E) C IHE)  #AE)t  r%;E)! aKiE)$ 1d#e)E)uߠ['m1Ҫ Me)$!( !A$IE)!* $mE)!ˠ $L$E)! mmbE)!] $B"HE)* QeVضmE)!=~ IE)$ ZE)! _$Cre)!hL`Ee)@z -e)!"-a9F1![0MԀrf1",dCֆ1E)_ jV1!;!1 JVI1! > &e)E) ṯle)$! Mm1' 51`*=1ꛥc1z k И1/ kkE)! H"$mE)!@ UDK E)$Q`e) $Q E)7wf1{>+F 1z70&mۆ1ؽ 1H$IE)7 H$I E)! m6lE)! E)!@ * C*H$IE)R  E)!+ I$I$E)! $IE)!7 $I$E)$!  iHe) *  miE) @D6E)j$IlLhE)~?;E)!_| mE) 4mE)!UW C E)+* WB&IE) J$IE)( a;iE)! n7E)  -E)` !C AE)!  +IE)  ڴME)! hIe) lHrL3E)!# F$ME)  !&IE)@ `$&IE)r I$HE)$!  E) $H$IE) $I$ E)! L$I$e)$! E) I$H$E)!z I2$IE)!z )IE)!px  ɶiE)!WІۮE) Ibe) z11! Zhoe) P?]ٿ1E)"EUe)E)<JNf1  Ҩqe)E)}G7؆1!knDe)$!lr1!/!hS16*#j^O>1'x-wt^1 $) f1 a;1e)!< bdю@e)E)Ѕ8 (`RE)b(ne){L9e)ap~- O! GR$!, D1 91ښ E9N1 pehڶmE) H$I$E)! I$I$E)!/ $$EE)@ FlmE) $I )E)@ h AE) I$IE) I$Ie)$! * R%I$e)!Z mvE) z%m+f1!Wpbf1!U-x>,mE)!x Nں5E)!q` im؆mE)!* P$$IE) $I E) I$I$E)! I$I$E)$!* I$I$E)! I$I$E)$! * $I$E)$! ذmlE)! K$E) $IMe) ( I$I E)$! $TZ1ڢ? $Go41 qE)0  HIE) $IE)A  IE)! ` HE)  @˄AE)$ E)!@ A$I$E)$!" $I$FE) IHE)!z IB Ie)! 2rۨIE)!Bp f 6E)!Wt PrE)ޠ/ Ne) ?f1!+vrx1 N:ߨe)E)`{Wu҆1E)Lrf1* :(e)E)7`,%1!SXie)$!|ds1$! u&Dwf1A(-bN:1 +sb1/p,Lf1- ~ɍ&f1$! v`3e)E)Xa 5e)+f'mۆ12 H$HE)- I$I$e)! I$I$E)!+* *łhE)  'E)!(! $ $dE) (HHE)@ H$H$E)! * m۶E)$!" $IE)(m۶sE)!^ $>f1!zU-X E)!WX[E)*hSE)!\2 !E)! @$IE) $I E) I$I$E)! I$I$E)$! I$I$E)! I$I$E)! $@$A2E)! $ HE)!* #1 1!* 6n 'lE) &  E)@ $GCE)< Kqe) @%0 IJE)B E)! $A$I"E)! $PR(Ae)!*" I$I$E)! $A$ɐE)! m4!e)! $IHE)! "$IE)H نm۶mE) R $IE)0 $Z E) 1$Mf1b &`UE)0 t0E)> j"@E)րo۶E)X lf1 o .ڕ8e)! M.%+e)E)*{tӪ1$!.jKvV16*,1mf1* bK0ņ1*lrIf1%)^몒t}1E)˵W5 '1Ah>(K<01ԧ1b \} ;f1'eS`Kf1b* $R$e)! jE) L.E)`jm@4E)*zG'Iq1aMIS0L1ܭHm۶E)4 IiE) $Ab E)*88 ۶ E)!*n IdHE)( [ɛMe)  HIE)! ۾ iE)H $I$E)m۶E)%,1/%[ۆ1 h me) M%H$IE)  m۰!E)! J I$I$E)! $I$E)!* & *8E) @E)A6 I E)!6 ضm۶lE)! $*$E)! Z IH$E)!"* $A HE) $iR#AE)` A#IE)p 6I`FE)   E) II$E)! $IE)  #IdHE)@ Xm۶mE)! I$I$E)$! I$IE)! $CAE)!b I$I$E)$! e)$!  ɐ$I E)!" R%IIE)! II$E)! H$IE)a #4 IE) p A#AE)`0#9E)!@ hf@ļe) ?=qE)x RF?E)Z )IE) hSe) U% 1 RQ&e)$!{w1E)߿\z'Pv1 kͱ1 A$%0f1 *`m1!ꪨ|Ӷ1$! "A>fif1!(*`~ɏ>1/#m=f1 .I1!o Qm&Of1!/ $'u&Le) 4ʐE) ƦlE)!. $I! E)!  ((IE) ``. цm۶mE)! %A#AE) ` ڦm !E)h$m1)'>f1 "O'trf1A*ڪߵe)$ H$IE)!* I$IE)! I$I$E)! $I$E)!**  A GE)  E)! $A E)!:' E)! $AE) 8 ۶m E)!j 4HIE) $R$E)  $R$E) .`:HE)@  H$IE)  " $IE)!H* &HhE) BE) ȶm۶mE)!$ $ME) ( IE) &I"E)! mvIE)! * TImE)  $ME), E0KE)" $A"E)@ AE)A II$e)$!(* E) I$I$E)!. &! IE)@ DA"AE)@ $I)E) dBe) z }7$f1v 4Z7d%)! m6E) @@e)  L@e)E) e)E)<  T'm\1E)} f1€tGn1!ڨj1$!ꨪsjG1!b !9c1`9Of1 c' Щ1 q xE)&A?1 ?O17 Hh1X6$!(  TIE)&*("  I%)b: $IE)!* I$I$E)! H$I E)!辪 $I$E)!* $I 0E)#}?1!_Չ 1! #mf1د L%H$IE) h$I$E)! ðn6`E)! ًAE) $IE)@ I$I$E)!+ I$I$E)$!* A$IE)!" [3s E)`b< HE) $IE)!  IE)! I$I E)$! I$I$E)!* %F@E)!""{ H0vE) $ 0-E)Ab X%E) Z IE)b $E)a  ؐ$E)*_ $I$E)] $mE) 6rE) mЖE) m۶M E)!* 7cmE)( R$4ME) ,YE)`( $Ce)$!** 4FZe)( I$I E)!* A@E) I$I$E)$! $@$E)!   $ E) $H HE) &IiE) +5@f1޼ PN!! "@0nLIE) 9@&e)*^ Ҵh[Bf1E)j `ޖ[e)E) ( (H e)E) #h1!Z`W)#1!JiC%e)! u1$!/A\nf1' ͋ڛ1']9!f1 m1! mue)$!(Q$E) [qa71 m۶K;4E)!( $IE)!*Wm?OA1!W5ka1 "mۆ1ޯ H$IE) H$I$E)! vIE)!/* E)8 B,$IE) H$I$E)$!* I$I$E)$!*+ A2$IE)!* R$*%CE)b0( \ˀ IE)!eG8* I$I$E)$!" $IE) I$I$E)$! E)!  E)!$( IsE)  & E) Da'E)&~ 4IE)u ($E)a_ I$E) W $I$E) iE) I $IE) I mE)ՠ w[?yE)a~ 0 + %) tO~%) ~ $;;E)A mE) 6IbFE): 4 )e) j dHe)!  "E)` L$H$e)$! ЄIe)  $B$IE)! ER!E) K!r۶mE)$( c@lGE) #A E)z м;E)+'e)a}b9إ1]Jƒ1ƈRe) Vf1E)&pjf1!(q1":45$6Me)@+e×1jxGn[E).D1491a' 5'1خ $`bJ%) )b ҤI$!(  $I$$!! / I$I$! $I$A2$!!x !%)b eHE)+* :$ P$ E)  K$f1+wAsf1 +(۶mۆ1!XUU} k@$I$! I$I$$!! ۶mۆ`E)! IIE)!/*+ KHTH%) H$I$E)! Jz$LE). $I E) $ I$IE)$!* *) E)@E)8:m繍E):ĂgE)!ɲ(E)h ?QE) H E)!* !Ä$IE)!m mlE)!y " $IE)j ii5e)!* me)! ! meE)  4IE)!( $aE) ~@E) O%AE)A_ I iE)U [;E)a $*IE)׀ TuE).z  E) 4iE) EARe) <Z  ڎE)@ IIE)   aE)@ TH$IE)! $d HE) I$I$e)E))  8(Ae)!Z ZPIE) mE)!p( # E)x )0E)ޠ c&E)avY'1hNh1!*:$QȐf1 pPe) "<C8f1 $H ee)bͱ5놵1!ꪨmdž1᪚ox*1DZe) v r1!/% mԦn1I[MBE)32 yjf1!<>`چ1h|m[E) @$I$!b I$I%)! $I$E)! $a"E)(@ 5I4IE) II$E)! IIE)  ۶mҖ@E)! I$IBE)! 75E) `#oE)9E)E)! 6HCAE)X qnE) $IE)!ߪ* [n E)!} E)!_ R*A&IE) ۸M!E)!@ )0lضvE)! ( LE) d#&@E)! I$9he)!U ̄ af1. AEmE) $!E)!$ dڮe)E)bu dB$I)( ;9E)` qE) 3mE)z  iE)  E)  Bi$E)h  IHE) ) $I-E)j aL$E)!( I$I$E)!* R$@$IE) I$I$e)$!* I$I$E)! @E)!   $OE)@ ؃I E)؀ 9'-E)^m'1 9e)+$r%f1 Jɐf1  pSj[w1E)v:{f1!z^u*m~f1z/+[Ć1'pxme)ܥ @fm$!(  DB$M$!  B($I$!b H I$! dH$IE)  H@%)6 .hZ:E) 0'5e$!ֿ 6H,!A @(* g@H%)a  H$! !, l! HE)!z :$!a  I$I$$!! / @$I$E)! $ 5E)*{mۖIE) .2?Q1n%1f1)+1Ilۆ1+Įmۆ1 KI&jE)!* @$AE)$!+  "AIE)@ U$ aE) $IHE) L6rE)  !۶mE)B $(E)B HD E)ME)v Ae)! ,ME)@ @hE)@ 7 lJe)> x If1/  P&ME)  6DŽe)E) ۂ C$I)( )۰mE)!H@ 8E) % # fIE) x $iE)ME)+P iKIE)ª $IJE) $I :E)! ^ mlE) H$I$E)!(  ڶmE)` H$I$e)$!( I$I$E)! E)! -RmݖE)!@ UMQE)r O=B E)A RJO >E)a" xInf1+:w"I(e)@8f1* CJf1E)231 j\me)! !Ӷ1$! [z1!X+,1զgE)]Пf1 &{f1! mIe)E)S  MJe) 8( I $E)! ( E) $!b@ $H$I$!  I$I$$!! I$I2E)!_ &E%)ksf1+)'0f1z )S`߆1!W/x,5mf1 짪صmf1 '@4HE)!*  I !e) *J #H4HE)p 0%I$)E),B $ E)!  FnE) & Ie)!R 14E)a` M( E)@ ȮI e)E)Blqd-He)!# dԦiE) [m޶ME)` mۆqf1! I$I$e)$! $ntE)$ ]f֦E)  MYe)E)w, 6–hE) $M\E)< 2$IE)! mlE) B# AE) $IE)!  1&IE)`&N1 &De)*}}.f1!W $ICE)- I$I$e)E)ZWS ۆm0,E)$!( ۶mDE)!  -&IE)@ H$H$e)$! ( # $IE)!p ZmFNf1~* RIE)a-M9E)A-" DKe)Ȱ0؆M\1f1{_?q1{-1a  @ ! j"a!( iTI$!! I$I$$!!6( @$!! œ d$I$!!> 5$! $Z$!j@ " w6~ !b [0$!0  9!p 6CI$! ذm6$!0 $!!p- d@$I$!!> $I-$! (H!@ 6V!* *۴me)!uM,[f1 crIE) 4r9E)  I$IE) I$IE)!* $C$HE) I$I$E)! m۶mE)  `E)! &G#e)!( I$I$E)! I$IE)!( #9E)!R mbmvE)!  IE)! IGE)< m7i۶e)E)u  aE)! $HTLe) ! A$Ae)$! * MeE)a 6m6E)! hmKue)E)^9 $GtE)4 $i4E)   IE)! môfE) " E)!@ @H$HE)! $!4AE) ` mvbf1 &}'f1 Z |f1!^ $ILE) I$I$E)! I$I$e)$!  ۶mdE)  !$IE)!(@ H$IE) "i$IE)!@ pre) { *ɹ& ME)az`N'E)b ^"9(l1Bj/!Pe)@ c^f1 Zb je)!@.1$!1*'e)!(`f1`*e)ϸf1 'h\)f1!b )(IDme)!  v`9E)! " K$IE) B$IE)!h $I5! V!* ٰ ! ** &($IE)ª*D-K6f1j iu@/E)* )ڸmE)@ dHIE)! IIE)!* TIHE) ۲mۆmE)@ I$I$E)!* "He)!j* H"$E) I$I$E)!* !I$ E)! HyE)  6,M׮E)!.  iE) 6I@E) I$E)$! A"E)@*mɍц1! $IE)! ضm4E)!F m E)  A$IE)!4 E E) –C%me) I $e)$!* 6me)$! m.MmE)! mDe)! uE)! $Ie)E) j8I&le)!\ @H21/j:As71!w~ Āe)!` Z* mE)J kY E)!*# $IBE) E)!  6l۶E)!(0 Ҥ$IE)! (T˲f16 i=E)ah /!Ig=e)!.߼wֆ1  ٌ$! L4!  !$!!Sޥ $ !@ A]$!0 m5! H*>!j& [ J!b 0`! ڴAe!a ZDI$!( M! Ʉ!I$!! x PH!b 6$! A! >Ea!`z/ ONT!( IM 4E)*b I$I$E)!ꮨ !R$GE)<( 2) HE)` H$I$E)$!** "@$IE)  IIE)!*   IE) DBIE)  I$I$E)$! C4E) E)@ J$IE)mS1!.5mI1!o LI"1v_+e) &1E)Um۶1z+mC f1$!5oIf1* mbE)!  E$AGE)! : &HE) dH$ E)! j1Ӵe)!.P\#9f1"" m Ie)$! ڦ]׶e)$! I0IBE)! Dm$*E)@ ")DE)!< Ŗmve)E)}+ B"HE)!p ۰)E)!5x@hIBdf1  =ǃTe)!\% SIqE)`. H6E)# $ILE)a ۺ5mE)!@ I$I$E)! $dIE)! %ֆےe) /mCf1A` 9D`E)a-jFR)f1b*vN1*  -$iXe)$! MPe)E)& !8WSe)E) P.yBe)!` E2f1 4of1p)4;1!IuUUo c깆1 -ڶm۴E)$!=J E)a m3IVE)! E)a q[J$!* $I EE)+  I$I$E)!: 4aE) P4\IE) I$I$E)$!" I$IE) "a$E)@   E)@ IDIE)!  II$E)!* I$@E)  R$$IE) m( E) +cf1 7mI1jII1*j&o f1b & ϓ$y1E)wWm۶u @f1A 7}R f1$! ֶ۴)E)!($e) jh!ae)!pfE) &d@2E)!꺀 ҔiE)` AB$6E)!Q_ mִE)!  $I"E)( ܤm3E) vbE)! E)!( m۴hme)!( ]Ѷmfe)E))^ *^d@e) 8 6iE) @E)!^LZmE)`6Fe) ؂> Ǧm5E) z I$I$e)$! c0imE) I$I$e)$!( A$mE) ͜E)_w |a!b*  $! m4-! @  @! KlmbE)  E2!  @%! 4AP*! {!a خ N/W!A nh(r! ( qQ!( $!(c7[%FE)ʪ l$I!b !I& I0d!d @$1! 'Ⓞ!bz !+ 1ui!+  ۶a$! I$IE)! DE) H$I E)!諪 ` @$IE)! $I 9E)*p I$I$E)!  8E) r dC6,E) &E) Z Plr/E) ^m $yiHE) eBE)A  $IHE)+&\0ޗE)231#mkf1 ؚmE)! Ȕ3GqE) $ #aE)  @NE) nFL IE)" bE) mE)! ('E)   iYE)# VE) 6kmE)! , `E)* !$mE)ɂ !I!E)  $AB74E) r mɍHze)!: *cE)! aӶmE)! mۦ[e)!p ֶie)E)X $Re)!P $*FIe)@ hҶm۶E)!X0FiE)A,De)*ȑ+/E) ,H ۶mlE)! #4KE)!P H$I$e)E)_ r$$IE) `&me)  ScNj;E)! j"4@E)Z{M9E)"+XKrf1* =1E)_}^pDe) hme)`ڌV1!ӷ1E)_lbf1 ivmZE))?()e)  IBE) &IʤiE)$ c^`E) H$I$E)!`( %IE)0 6 $I$E)!  $H$ E)! $IEE) I$I$E)! $I E)  R$]hE)0 8 E) |E)(W ڹE)z *TIE)b( $I!E)If1!6m۶E)ߵiE)!*P:rE)! #E)  JE)!@% )$ E).@䐵E)  1AE)!J E) I$H$E)! 8@$E)  "E)H VmmE) II$E)!* B HE) ^ BE)( l +HE) $A:E)^ & E) &  I$IE) I$e)E)z IqE)@ Y7,9E)!! Ck׶e)E)5X ۴jŲf1* m6qE)DC$IE)C. pE)+- $I6LE) $I܊E)!@X *8%)~ äG!a* aˆm!.( hiv! $H$!(  #Gm$!j )mDi!  Ӻ jf!, $>!z ` ) yR0`!*  m$!  $H$! * ܤAˆ! "*E!B( AkY!1( $i5! $h!a r!9!U / !) CI$!  &-E)**j I) E)* $P0@$!00  ¬5%)*z $IpM%) 8( I %)(.@ *J&E)_ @{n %) HE)+ A4I%)~ m۶mE)) m۶E)! ضm۶5E)!]  HҀuE)! $IHE)! ! $A HE) I$I$E)!( "I$IE) J ǦP6QE)$ "E)K @$IE)v !۰ E)!o@* A#dCE) @CE)$ &E)  dHIE)! P!B-E) IL0E)!4 4IDE)  I$I$E)! K$@E)$ $2E)!u^ d'AE) DA)&E)z IfE)  ɸiچE) D$I$)( vD6A'e)E):+\ 8m7AE) $I$e)E)˗j ۦMц1 lƍE)-Bv$KrE)!E) ԓe) 6iKE)& I$I$E)!  $ R&E) I$I$e)$! ( I$I$e)$! 5ne)! F4e)!p  [me)Ahq1.u߮1%) ]e)E) 4z ӡRe)E)p0AX !e)E) 4q:͖e)$!(/61xjww:e)/x;Ѯf1- $I! E)! iEۢe)$!( ۲ ۶mE)!0 $r$IE) :$! ۶m4E)* r VEIE)+ E) iE) u<E)  $IE)!- ؚm۶E)! $ $E)! H)E)N ݰm E)! n( 4H$HE) I$I$E)!몪 " IE)`" `IE)@ F*Ij%]E)(0 N)h۶mE)  E)! 4H`E) (&IE)ƀ( $IE)! $I$A2E)! $IHE)! R$$IE) %I$IE)4  =*IE)p ؖmņmE)!* I$I$E)!* I$I$E)!*" Eb%E)8 l#0E) , E)a V!:E)+'z 4IE) C$L$uE)0 plɱie)E)z v[ae)E)D*r M۶mE) I$e)E) I$IE)!s  ()E).`R\ o!߭* @)! B( hI!᪨ I$I$!* 4K$I! P$M!( #A!` X9!A z ͟g!* ij$i!& 3 I!Pꪪ IK! 4Kh!, J!A(& 4f!b F!a0 a`) )DI!* G iE)* ! @$I!a $Hd$!!  V `$! $V %A$!( &!bx OS! ĝPi!! 96I!6 B$I2$!!C* ݶmÂ$! $I2 I$!! I@%)& @$!! I$I$E)!/W  $IE) I$IE)#  E)!" I$IE)! I$I$E)!* R$$E)  " E)@  Ң E)` Z$ E)  @$I$E)!  IE) 8( I$IE) " I$IE)!* $IJE)! "A$IE)@ @$IE)(  )$E)@ I$IE) I$I$E)!+ I$I$E)! $5R+ E)` mچnE)~ `)E) NmE)+ $I E)- "AiE)@ CMe)E)'V ݶےf1E)} &q%IE) M5te)E) ^ *mۆmE)!N 6n6eE)!@  gE).؃< I)E) h $IhE)!" I$Ae)$! "i IE)@ C4IE)  C@Nj;e)! (k6e)ꠀ HQ%) @  1!-e)!  IBe) OW1e)$! 괌~e) *SFSf1h*( -EwsE)/?ܰINf1) $IneE)! I$I$)( & ,!E)!@ 8:E)` t0m!x5 I@$I!  C$I$!!p* $ID0$!!P $I&$A$!!x- 4IBE) I$I$$!! $!IE)j R $IE)@ H$I$E)!* E)! I$IE)! $I$IE)! *5IDE)4 4SIE) PP$IE)  @AE) H$I$E)! @`E)b uEW4E)!Y mmvE)!6,E) @ ۶m9E)!@~ $IRE)! 5:&hE)x H$IE)! $ILE)$  e$IE) ""E)b@ Ɉ$9E) J$IE)!( B$IE)$!* )5 E)` vJE) IE)- M۶ie)E)^n I$%E)!" ml[be)E)z Ҷ :1E)` PE)v_ gY$!A* <,7!b( 4ADc!$ [. !n* 4HPI!!* $A!( `D#!b>|b`' -U !* -$A!a $h(!(& $@! 6rڦl! *& h!**  M:!z []'aX** eA!a  ) i! @ h$!< #Q꛲I$!(@ \o7r$!>+  i!, ۴4,! ,`! ` $IGA!V- kI! i&$!!ޯz I"IJ$!( ) I!@ T()!@ %A7E)  )&IE)*jvlTmE) i۶h۬$!! $RD$! |%)* $E) _ $k<%)zU ӎ%)!z %HO>A%)! Di+E)A DCE)_ 6v#E) d~ (E)@ 4 D@E) TJE)a* ۖ)-E) ۰mۖmE)!#/IE) (&$I+E) $InE)!*) S<% aE)!P* IIE) EE)  $-&IE)`( "a&IE)!h ehFmE)/ R(P$IE) $I$E)$!* |, IE)ޠ XBE) +Ђ LxE) mڶm5e)E)Z ¶I6)E)! mne)E)j( !Ie)E)c Sm6NE)! I$I$E)!P $IE) % L 2E)B.pk k$IE) $C2 E)!@( ݴ2 E)@ I$I$e)$! ( dgce)$! ($ Z"E)蠀@ QmE)*hj1! je)! eTe)E)> !VE)!^܆1$!괶1!b/٤E)%\`'XTr1 $m=hE) ۀm6E)! (" H E)$! $H6E) 6=I! A!E$!   @X$!  $4$I$!b QrQ%)8 ۶m $!!| 4 pE)*ꦶ Җs$!  $E) W E)A ~n%) h#@e)au Ԗ E) ĺHE)] P&n"E) TvE) 4 E)y "JmE)Ȁ4 6IEE)8 "! Ie)!nH*" bI$IE)clf1! Wube)!x^NfE)ڨlk_E) ` +d$ E)4 E)!* $@pE), II$E)!  E)bB I$I$E)!" $B$IE)!* ЦmE)$!* Xb iE)x h,`E) . B+IPE)/ $I(E)` e)_ II !* &`FK! $$  $@l!*( =!A 6HP!& B%*;7!0 $IA( VMAN!*& (8! Q4I! AʆM! SE!(* $I)!b( u<!^NT_ )" aӦ !5  M!+ [lٶ d!d J! C!$!!RW $M00! k!h* Xh!x @l9!  $I 6o! m#H! Id!d ۶ [$!! U @1!  `$!! P 4$!p & $!~ N!A 5<;!W ! I %) * E) !($IE)! ֤m۶E)$!*( ز ۶mE)! H$IE) E)! DB$IE)! $I$8E)` H$H$E)! S1MS8ME)  vI E) II$E)!( h $IE)AǶmf1ObE)! xCfUE)j fK.E)*@JUfGE) + E)!*- $%DE) 0 I$I$E)!+  "AE)!G HDHE) I$I$E)!* 6mE)! @ IE)`0 {3E)*` H'|E) I$I$E)$! 4AR&IE) &jj5de)8 [mڶe)E)%ZK $I (E)!B `(hE) JE).  $E) 9&A$IE) I$I$E)! (  ).E)@ a'mE)!(6,6N1j RmۀE) 8a=1/kKن1!5ѩne)! (Gce)E)`Pie)![E) ? %) (PI$f1- %I"E)0H $IHE)! I$I$E)! m iE) ݰm$! I!a P$! O!a- ' !a/ }i$!~ IB %) y$IE)! AѶm۶E)! ؖm۶E)$!"ꪈ # $IE)!` J$IE) ) @E)! @E)! E)a I$IE)! I$I$E)! %-9E)!p I$H$E)!( $I$A2E)!  %@QE)  E)   IE) < $I$E)! hE)  `B2$CE)!|x 4IWE) $E)!5w $A$E)!* $I$E)  ۶m5E) p tIlE) IHE)! I$I$E)$! * #I$E)X@c jw w!a: JhȘ!  ,T 骯 RB a  $`Đ! 14mթ! իm:!BzXvmeA( &! J=!a) pd)! Dr! 4eZ5a!۾ >! &e0* yiR0H!* s A! kn!* T$i!, & $! E! ! h@!  !&!A! $I! (L=&I!,  h!, 8R1A$!,(, [I4!  $m5! !A( ,>Il ! }!bZ IVC$! 3@$!b B$!!  ۶mlE)! B&d IE)!* H$I$E)! I$I$E)!ꪪ I$I$E)!* I$I$E)$!( I$I$E)! I$I$E)! T E)$ ۶m E)!k  d IE)* I$I$E)! - ,!E)!rB E)! I$IE)! b$IdKE)!? $IZE)8  I0dE) H$I$e)$!** qDE)! $IE)!x` 0IS&|E) 0E)! E)! % $I )E)!,`  I-E)@ hdSE) / HIE) I$I$E)$! #I$IE)p -3E) & MTE). fӦiE)  6۲mE)!` " HE)@ #' 6rE) $C$ E)!` @E)j $BDAE) I$I$E)! ( I$I$E)!( I$I$E)!  $I"E)! ۉuf1*;a1>C 1 &nf{e)!p! a6ce)E)$ZU=e)!  ^-:L܁e)E)Bh8`f1!p. @{Z E)b/;=mke) mݶnE)!  I$Ie)$! (" $C$CE)$! ߊ&@ E) N`!A* ya~!/@  0 $! @ fI&9E)Z I$L$E)! H$IE)! I$I$E)! I$I$E)!* I$I$E)$!( I$I$E)$!* I$I$E)!") II$E)! @ E) D@$ &E)! x $IE) #mf1$!۶m;E)! ƎE)Hm]aE)!Ȼ! $IIE)` %fnӦ)e) h $IHE)! I$I$E)!  HJE)  $!$E) M$IE)  @$E) I$E)!Ux RDۦE)0 R*ME)/  H$IE)!* I$I2E)! b $I$A"E)!J X缟%)A{A:# )Z؛! CuB*!kJ ! 6bD! &;q6e"!k u>!Zfl6m. ac!*J 0 R!, wP!A& _T!* ,.1!*J B_?!|1W ޷* 9UrT!" ضml! II$!* bh! b$ ! $AR!*p C!j 9QAI!5 +I!) @$I!* $GRg!** h$! 1%Ѵe! ( $P!(` BO۱!P} >M!ww' qQ`о!)@ 6SH$!  !  A$I$!b $I$! H$ 2$!! X HDIE) `l$!!"  " E)jj m۶IE)!U m۶I lE)!ﯵ $"E)@ I$I E)!  I$I$E)$!*BRl; E)h _Of1먧.mI"`1z"mIf1$!$7݆7E)!8۶vЖE)<($W' E)  $ mE)!%"j( $K$IE) ! $IBE) I$I$E)!,  HHE)( IIe)$!  jIE) Z&@$aE) L$$E)!_`  ۦmE)!c5U\ R# ME)` ݀dmE)!< I$I2E)!+ $I$E)!+ S:ME)!( mVkE)! & `LI#!E)X %`_MA`E)A >6 I$I$E)!/ @$IE) Ӻ11j $H e)$!( ۶mmE) "$IE)Nh ҥUE) > dC9$HE) $XO1nb &Lz8E)a h hlie)!,‰ R$ 4IE) I$I$E)$!( Z%A%EE)(0 II$E)! $! ۶mRA$!! m64E)!_ I4$! $E)!_ 4%T %)+ mME)!W m۶imE)! $B&dE) I$H$E)! I$IE)! ӖOf1{**%oS1A*mIh1G$1oG1$!FmW߆1!+?N1!5_;$1bz7f1$!2oINԆ1 4tE) p ۦm$E)! "iIE)@ IeIE)!9 B&M$IE) I$I$E)!* !DE), ۦm&!E)a@ 0lE). Sb>EOE)  pE)~];vm!& VP{ *HL4 J%q!6VkZ  CqP Yk DƎ rLmXa( g!*"0B !&)!+ BR a @ B  ] a?6E aj @I0)!*(b rдI!K( Aa!- ۆmm! K$4!r ƹ_! PM!]5  I! $I"A!K H$L! !I2!+ %0!.* 0h!*ܯ ul!X^/ PI!' Mi! $ d!d "!@ $ $I&$!!z ].m$!!C^- m $! J$THE) 54zQ'E)~#'E)a: I"$!A $!l$!A $m!a M&$! imm$!+ $IHE) :nke)! $Ie)!p;ie)!u&e)ҚG$f1G 1HP1$!+_>vm1E)UUU:.'1 z7Dz1+}N1ڂ ۤE)*@( 4I E)#@ " IE)!H* $HJE) E)@ I$I$E)!* (E)a0@ mڰmE)  ØbE) "ME). I$IE)! E)! @I$E)!*  JJ۴mE) AdIE)b -& E)h H$HE) I$I$E)! I$I$e)E)] I$BE)!! M۶c e)$!( [mۀmE)!X` ouE)!U AAE):? I$I$E)!( ( I$IE)$! ( $IE)%Re) (lO'1:-i[f1  (eӲj f1j( m:lڶe)$! ( *e)  Iͨme) "mAf1h k{5E) - &5(E)p ؆mضlE)$!, $I$E)! I$I$E)!ˆ(" $$CE)!Uw  !FS'$!a,z ,uw!a x+  I$!a] $M!a mE) OW@A! AaHE)!U $IIE) P'me)! X$m4e)!,6e)o|ٷ1* òm۶ $! ! $! !&$AE)!U  IIE)Dr-CE)~#ݶmE)` a?me)! o)e) E)۠SJE)! m۶i&E)! I$I$E)!*( I$I E)! A$I$E)$!2 " $IE)!@  &IE)! * -E)nj! $C|g >U!A*QTaMS( 4B[G i[uы 6 }![VwUmL M v 80HA@!%(8) J:!j&-!Aںi:lIA! 6M#$!ﻯ ,dF!   I2! h ̤Af!a&  $B! m- i8 h4I!+ :-n!B** `!b)8 $h!(& M׶mb!.: o! pn!ԭ]  ! "$m!@ lA! mWd[ڡ! ۶mXt$! * ۴2<!Ȃ0 P|E0!"@ 6!` &;a!AX |Q!A/ I @ۆM!b- TnS! kmKm$!!WW v$!!(@ $IH$!  I@$! ٺm؆m$!! $H$I$! II$!!< h E) $ *)$!b IP$!!0< !B$I$!!K imۆm$! .۰ %)!W m@%) `IlE)!/]b# mE)@--ٖE)*!{e) /UE)8BJE)!*  mۉ:E)! E)!" I$I E)!+ $B$IE)! H$I$E)!  h$Ie)!* H  E)Ԩ t% E) $ITE) m۶iE)!* II$E)! ( I$eE)" $j E)( I$H$E)!( $ XtBE)!0V ۦmVE)! H$IE)  @E)@ I$I$E)!  E)!` "iIE)k꼠 &fDE)*? &! E)@& $IE)  @$IE)  !pe)! 8=h~p1C>-׈f1 m۷K 1 2I:&e)E) 6 +AڔiE)QmݶE)!# cIie)x ϸE)A* $!$HE)" H$IE) I$I$e)$!" 8) E)AB M !A  )h۴a! Vn\!<< $ ! $!!բU 4K$4!` $ $!!( II!" aB$I$!!, I$I$! $A"A$!@ $U$I%) ()$! ӸmжhE)! (1! $Q!$!  $-vH%)bj DHP $!00 $ILB$!!  töbE)!׫w $B$I%)! FHE)* $HҤUE) 8 c2 E)B* XCE)! 4 ѡDE)! H4IE)  E)! $-HBE)@ "z qX N  l1dLk2 *!CB&H$(R @͈(pd>a յ $!5PHK ! 4XZo! DRJ! J!( Q_l ) Ĉ ˷!  H G! < ! G!A cw!p4 E*I!r* ͣ$m!C  $ 2! 4ai!@ `#w!a(, 4B,@! Ӷ $!b &Y!a0- N $ !W H"L!a EIA!( IH!  {@B!b, $@$$$!! ߂W I$!!W iu$!! ۶m$!!u L$m! &Tr6!a I$! $I! $!!(  Mvm$$! TAXvE) $)@$! i` $!  ۠>c%)" h!b $IH$!!T %E$E)!߯ I$I$E)! 6$6`E)!Z jiۺ9E)!z k 6 E)!dr!E) N mE)! !EmE)0 E)!*  !E)< H E) ,!0Ie)!Jn ! IE)! X"B'E)bX  E)- IE) DH$ E)!:, %@$IE)!* II E)!+* `$IE)!"!g?1>"=1nr IL$e)$!(" $$AE)!  *! HE) H$I$E)!@ c(8B3@E)zp `E)!0-  $IE) I$I$E)! ( I$I$E)!$q$5E)Lu1 B(iZf1/= EE) IS#IE)p 9":E)" ڸtE)b$ )1*E)`qqo1- $HHE)  $R$`E)  $B$E)$!""  4E) @Ti!b H$$$!!·U $C$! $@& ɐ$!!x $A$!!( J$!  E!a& &Id$! $IP!b/ $I$I"$!!} +)%)ʪ* !4h(n! ӲR%)`. n E) * -E) ĔH'E)  M$!  Aܤ$!  V$!( &KHE) $I E) p $IE) * ɶm۶aE)!ꪊ I$I$E)! dH$IE)!/ 4i@E)* 6 %%E)* hɟ%)vUm[d- X  $hRD$!!B4%Nr \ A <Uc< it !D h1/y`СMTca@ioA@KmWTH%BY" Bքn  %! WJ6F-!{@"}!Zm BU!zPp! 4 몯 |iI + )1"a!)* !94o!Ah  @@!X $h$! $I!+ B,H4H! lض!! $I(!*b j!x ؓĩ@!x 9!@$M!- (AʤK! `d!** -֦)&!  #@ڶI!p 0Dq!  #7m 0!` $I>!^ R!a iNI! @aH!/ u v E)* :mE)y X7-IE) D @E) [&1E) j $m"!E)j $DIE) y$$%) M E)( -q@E) @'D;E)* d[$!* J&m$!A &Iw$!/ H@E).  I EE) B,H$IE) ȄI$AE)$( I$I$E)! I$I$E)! iE)4 42(E)(j mӶmE)$!ꪨ I$IE)! * %E.IE)0 I$I$E)!* $H2$IE)!Ƞ }5 E)z J?Є%) m۶mE)!( b%E)(,H @E)!*< ( HE)\wֆ1#`|)1!i E`ThE)0 I$I$E)! I$I$E)! Z E) $R* E)꘠ PE)a)- $ Z&E)A I$I$E)!("(  AAE) Rn,e) B<4E1gGf1-(YOf1& ڶie)$!(" $B&E)!А $Ie)$!]Kr5E)b E).hBRe) $C!AE)! # 4I !E)  IHE)!( ,m&8E)p  D?!~ ! $m 'I! tSM!+" .v E) ᆗmE)8 `:$IE) .HE) vôeE) mB"$E) ئmE) 1H4H$!  IE)j Q!TH%)9 $I$$!! / #+I0E)* Bb%)K x E)z $E)~ IuE) ߿ ItE)  B#IhE)b @HE)(  E)! "i$ E)H*"E{E)AI$I>/ Ҷh۶ I"i&A @!$ $!!HȐaB5Vג-;ba !>kNO.\9b*@׮] MM6A4@`v$!!˚[6v`k<!J[1dHEK   ` 4ۖ: 6  }w!3pe a De*Ub! %Q>1!*jlHy `Ɖ  !{ qhE;!l 4I! "* fb&O! $ LN&!   ER$ !0 dH`!A) .j!H k$,!A Oqn!&( $I#A!b [hm!* 6AFn!* $I !a  ۴m.!* i ! :I\! 듸 L! h+ ɻI0b!  ! D! @!a` ! i$! l$H$! $I$! ` I$! !H$A$!! :  H$H! `B$I$!!#  ! M dE)* *@tI$! $I$$!!  $!@ m)hHE) dmJmE) q:u eE) B t]%) I0E)( "I$HE)J $=pE)ڢ ۶eXmE)!⚸ HI$E)! @E)C !$$CE)!^* @2E) E)!(* I$I E)!(. I$I$E)$!( E)!(* #`*cE)z |h ,E)a IAE) JI$E)" 0$H@E)!檠 I$I$E)!*>Vof1-Uf1b DKE)! $I$ E)! < j @$IE)! emE) M&#%)h V E)+ - $) E)@h B"H$AE)b` h$q$IE) Me) PB *0tn1t1&IjE) 1 $IE)  $IE) 6e)!`, K1E)-/  E)! 8 FHHE) A$IE)$!  B E)K y7E)h  3! @ $ I$!!] P! в- I$!`b $ $!!( E) "H$I!  A"A$!@  I$H$! LH$C$!! ֵH$!  ȻI$i$! I$)I$!( $,)!@ ɐ I2$!! `$IB2E)! I$I$E)!  4۴IE)!( ;pE)b% eڂ&IE)ـ %LE) $@.a?E)U DTIE)( + 6E)a`! IA#( 2a$aII$@H$IA* A$H$!AaL4:.1i DH$I @$*A$ $b`A 0b 0p!N$! eL"@JBM!bEJr[! "D!i"E; maH Ӡb‚Z"`LK ߧ Tj`c!!  7]8qb!( )$l! (Z`I! t ! F,! !+ P@@? zW 9a!/ 0H$!+ &M$(! $H4h! ۶mK !* L$A"!  H@'!A` $'I!A I !U- 4l9i! 6Д! M! *0!@ P$L!0 $APe$!0 $ )!j i( ! )$! mz$E)" uo$! $0$ $!!u 6$!!U+ ;vBE)!UW $В@$! B6&$! H& !" $ * ! IH$! ҶmmE)! E)! k0i۶ME)!* 8dE)a &$IE) kE)-ޠ 'E) W $JE)"+ $I$E)!(  -XIE)j H$H$E)! E)!j* 6%ےE)/ K$RE) $IE)4 II$E)!(  K$IE)  J$)E)B τ@_E)*  E)(95 9$ɒ E)@ $HTHE) I$I$E)!*Mavmf1.}}e)!L T4 h1@E)"8  )E)! j HdHE) (Ă IE) ͫ%)| E)- H!֒&IE)$n RH* E) 4@^E) ;(#v`mf1ںş2f1&I ۠2e)!( ۰[eE)!8 H$IE) $IE) $ cTǍE) - e) / IIE)!8 4HQE) !$IE)C $nE)р  KHi! , $@l! $ 6E! 0L! #'!iE)b ƖU$! $2$ $!!} $$$ $!!U m6$!!}O uA!  J%BB+!$ 2 n%)k & PiIE)+$g;E) %E) IAE) B-4 m%)![W $IE)!➪ dH$IE)!+ $邀E%)a j# E)^  = E)Ux@ H! II$b(I$I$I$I$(BI$I$a@m ֮A Sg0*Rض + DB&I$(I$I$I$I$ I$A2~90 xܹ P,&!0rV'i m$!!]Ѷݶ!W Tص!aԊsZ7oDY<k ʚ6l m L`!}'a gș!sI$L  h:w! $)жN b@ tI41!{ ڽW n* O颕4!# bI! DI$! a @ 4h! `I! R&!z $9y!hW Y! $IdI!+ H/!G *A! I! d7!A 3M! p $!a `Ov!a^+ Z'+I$!޵ $a!A  V$! j( IBNm!a] Im!U Im!a I@>!U@I {ܴ%)A*  !a T4 :!A TvVE)!UU C8E) ƥҶE)du- E) ME) "!iE)ʫ $ E)!ۺ @E)! $$8E)(` hME)z * >:E)Wp h3%)A( o $MJE) $A$E)! AAE)c%IFyE)>* [í۠E)x @JPE) TIE) I$I$E)! . $I$E)$! d@2$AE)!**  0 E)x jK [E)* $IIE)() $ &!E) BAE)2"@CYE) u1!֯ 4mE)!P $I$IE) I$I$E)! " $XE)`0 IՄh=%)! $IJE) - I$I$E)!*j I$IE)!# $I$E)! :<%E)` Nb!tf1-> 2e)k ڶmmE)! .  IE)@ 6H[td;E)! (0 f-EE)  I$ɐE) Ë @E)! # B3 IE)p $I$hE) ۨP] L!  J!a B&m!  dH$I$!! 2'H!`o*  (! @ ۶qE!0 ڭ$!!cU} "$I$!JJ*-:e)jӭu۶e)`:f1! k3HE)h PIIE) t]R%IE) II$E)! Zb/AE)8h #$IE)p ɩ&E)a '!A & % UA%) ( mE)" A,$!  $!A@ 5* !b` 4HE)b( $I! E)!. I$I$E)!(+ C$IE)! @. E)X` t`^E) ۴m`E) ,)HE)B+ $ER%IE)01emE) 0  bE)!4 $ICE) ( I$I E)! R$ E) "a$IE)p€ T}$!- eE@E)!" I$IE)!: H$IE)!!  A$IE) b+uE)A, !hBE) ( m]mE)!8 I$I$E)!" &B&dE) `$f1ꆊ< E)(2  E IE)( $A$E)!2", @$E)!b I$IE)!a* ,! )Mtm!* S#@!a`  "!@ a!@ RP! 7zM$! l I$N! L0dB$!!w $'m!* 0M ! @ c$!  Mm$! ݆mЦd!d  !  H$H$!! Xt[$!*9a'm?e)!-U_P[Au\E)߫-:NE) 4E)a J`V  "I$I$A"I$I$b"I$I$ ʄI$I$AB  ϟ"#!_kA BI$I$"(I$I$I$I$@m6m AI ŋ , I$I AI!A$ !A1: •K  شm`$Bb  )6k4 - d(A0 t.!o pe̖!A8+5jt!aʪ  a#8@ܸ餹 VĊk;!N&m(شs!do! ,(1m!jX ˀz!_/ OSN! *( u!/ w4]! $I! hE!(:: `! P$1!) I| ! $m!Gh!b) #d !j ֈm! A! $AR$]!" 6m l! "vp!a($ ӦId+! o &T9! b $Зv!0 $! '!" yP!b# $)i! 4HI$! o!$ AL! lЦ$!!5W ;!  `a!  ڴ:l$!!yWq?E)!5U]JE) w&TE)!5v E) ] H E)!^ $A$E)!ꪫ  `IE) @#E)zJ S!/ 4)|!b  e'A$! "I$I$!@ `$!A hR36!N E) m۶KE)! I$I$E)!¨ I$I$E)!( B# E)p  #QE). $I$ E)( $I@%) II$E)!+. 1j&I%) sY¶iE) 80  $AAE) " IE)!B $AE)!c ( R#5AE)xˀ Oׄ%)/- Yv*IE) I$I$E)!. I$I$E)! "$IE)`  R:L(E)"ˎ h۶ke)! I$I$E)!( $I$E)$!( mжmvE)!)E)0 B%(IE) 0 AE)( )A E)b  ۶-òE)!zb #AE) $I@! *o! 0I9!*{ &! ( H/!4o $! $! p !< II!A I !a m$!a* @!A? ɫ6!b A!5 q! %I! KimE) JH$I! cb$ $! B,K7E)AҞ۱mۣA I$I$I$I$*I$I$I$I$A "a+* رmI$I$A I$I$a*",I$I$( I$I$A &I$b I$I$ I$H$H A$!A Ib ٣!!!يMa I$I$(4M,M$A(]--@B!ߧiY9!u(İKھ&IBbJ\@a( : T\!}}4¬q1Y+0h$*akP!_Ds?|7@@  @º! KjS! h(h Wr5!* t!/zW Mد !~J "J!+ J*$M!bJ* ذ! x$Zw!<(* 5v$!<+ 6V! dli!b eN!bj* +Ym&!8 ڒI!} _M$I!o * M! O @! !) A! I" D! vm!_ OM!A I I!aՀ i'A!V k!A 4 I ! !, j4!  2hi$! G ZF %J!a0( R,H$I! [m$!!xX ĸ&E) Fh E) 15$I%)A*h @H$! II$!!8" LHE)觭 t0& $!A O&!AB hfA$! $@$ $! S$Db$!0 #(!a`  K=%) z ۶mP(E)!./} $eIE) " HE)!K A i$IE)( [4RE)? $ Z& %) $A$$!! dAРE) +۴-E)!Do  I$IE)!(( IʴCE)$ .)E)@(  ڶme) J(=Wf1kά IHE)( $C$IE)!⊨* `H$IE)! "# $C$IE)!* eH %) nbI!__ !j ) M!}(( h0m!A i  ! # ! # 4!W AHd!d $K9Q! ,   ! y-A! $ Z!A  !X I>! pt!+ڐ x! ' Dr!!* &3!A@Ű!I$I$꺨I$I$A I$I$I$I$m;vjA*3 sZI$I$A&(I$I$I$I$I$I$I$I$AI$I$A+ **I$I$ I$I$ I$I$$A$H$"H&i$ҠI$I$8(I$I$b I$ bma`3M!!jL8$B%$!BS1e$!!3ϝ&v@Pu65O֜+PR: k7-Ri&4@@Xa!ڦ  ,I !o =a * ;?! u@ *  jT!z gY!!(`" VF! ֑I:l ' b J! &!b l^vwA! $I2$m!j %`jN!+ 4IH!  @ ! d ! $%!*2 `M&I! [5ֵd!d 2 жm! $l$I! $I$!!] $ d!d &R$@!0 i$I!* HA! 0I!` RA$I!x ɏ5! w#!- @Ф!a DH!  l! )I$!!p ` $C$!!I` 4aE)Z 44~E)Ͽ T5J! tH$J$! $m $! #AI$!` Є`! X $!- u#$M$!( A2,$! R$!@ )r,4$!A.` Idh%)9 H$I%)A $I 8E)!.s (aAE)b $KE9E)㪺 I$I$$!!  I$ɀ$!!" 2$! P $IE) 94HIE)   I$I$E)!: I$IE)! &e`cE) ηp9$!h pIBE)" $I$E)!> @%)` ITE)(6 NE) $AE)`  lضmE)!(( H @$IE)!ˊ "! IE)@mpmf1jddKE) ( T E) ( O4HE)- C$IE) +$EE) M&A1!" 2d!J* Mh'i!( [[d!d $I!b@ I $! +kl$! q['! Pl$!A r!@) R,#I! ʀIq!b( UT !b, `3K!a dB$! X]!0 8! h>>!a8-I$I$a:I$I$I$I$ aϖ#Q A/a+ "I$I$A" I$I$I$I$AjI$I$AI$I$ * I$I$I$I$@I$I$ @ $I$b I I$ I$I$A` I$I$bJI$I$I$I$8mѮڦ$H!Aim&$!!HvI!A0BiJb Vth& 2afL@L$Ll b@ ێ! /ТJ!檪R b `IT {i.!޵{W PK 讻 yiZw ) h~oV ^;D  8!6 @v!a * sZ!޵z {;!} G:!"x (S@)!ᆰ 4S\A!+ $e!0 h:$!  I$2! h (@0$! ( & $!A} I!W IBj!A TlIRN!A `I! I2!b U @I>!*z p`$!A @! N)! [ m! #?b°e! p@`Z$!(8 $!* / 1!` 9!/ V !* K $r!( $I! *"A!@ -(i!@ 28A!!@ Dq!! BR4l$!( ,! I$!@ DF$! N&#a$!X` Fi!t! ' OZ&%)AⲘ PL$ !  q! )Ԙh.4$!A II! B*Y$IE)R t4%)( ڦ  E) ֖jpE) ! ,)6$!@ H$H$$!!( H$E)!W_ $I$2E)!"  IIE)  m۴ME) ( k+֪E)v` Ϸ! / $I $!!,0 I$I$$!!C $IHQE) #& E)b` /E)/ mmE)! $IE)$ m6E): 4IlE) Q#E)Ό8 (IE) DHI%) I$I$E)! \H\E)2 n2 'E) $!a* Ib!*U0I"I!A MII!AW R hI"!!( AI2!U ! @JI!: }&H!Az I'۰!A, 3!a $`yǻ!' rl!* !$$! $I0$! )CE)jrF ۈmAI$I$a"((I$I$I$I$I$I$cG W7pرA7+I$I$I$I$brI$I$I$I$AI$I$A I$I$AC I$I$a&I$I$A0 I$I$@I$I$! I$I$!I$I$ I$I$  I$I$s"I$ $H$AAI AH I aCmѮ H۵ I$H@&Mڴ A@!`R,b vN" \ `!H J&64bq1V5![WU6&60ur?ձ!{}&@1! 9~a!b @jB!kޭ jshs!b.x jzȕ!b*  ($i!* 2a4!o뺫 Y5H&! &d*! ҶaX$!h @:Ir! * 䞠5!Ax h INVO!W+* J5@! v @!k J2n!H UepѶm! &) !@ -! 5ֶ! D-!bB ֒M!@* !~ I=e!A X! Dɉ!  Dr$$! 6lI&$!(+ &I0!$!B K5ذm$!* ?u! 0#  3AE)*z E(RкJ%)۾/ r!,  &9!: #H!( rJ44v! ( &d&! . &rb$!( ð ۖ$!  #`$$!  x4+ ! }|%)a 4 AhE)* i4IE) R=N$!r )x(=!A 8 $aF@!b @  %)J R@"i$!!; XmE)!] D%E)+ !d$!! q $I$!, (T$!+   E) *+ $I@E)!  -"E)` I&IE)` 9!` )$! / I$I$$!! I$$!! t ($! @ P,5%)v pE) @x IE) J i۶E) x E)" !"IE)! @ cUE)a" $IIE)!, 4I !E) *  IPE)!"Q B2ȒiE)bʈ @j h! 2m!P Kth׶!*" #9´I! Mi! @$@2!* $I[I!Z ۪iۆt! ۆmv! l !A  !8 $v!( dHI! 0QI! SIشI!( ~$!AjbI$I$+I$I$a I$I$ꪮ !X7;mN AK|I$I$뫻I$I$I$I$I$I$I$I$A8,I$I$I$I$b*I$I$ꪪI$I$ ***I$I$b𘦯I$I$ajI$I$I$I$AI$I$b(`I$I$( I$I$`I$ $bH$I+$L&aB$L$ H$I$Aݲe $[!궾z iAð-XtTh `ڌZ5!bw ub{sn\=S60aBt(Ӄ! XOMf!h* U\! D$i b) muH! @N! R]' {U>OO!^U}X&r! %%H!* N! I@$ !/ꯪ 'm! $I! suI!8 $I !@ I$!!( ڦM!  (!A@ kݢi!A !bj D! :lt! ðfm! =0# !a@ @m!  $m2@! ۤዺJ! R $I!H+ aSI$! 5 b$!b@ #i <$!(p h!K%$! Pa'E)j e! dKi(! ( #IDB$!  JJ"! ( 3$!/ L ! 7]$! 0 $J$HE) h.,%(!a@ y|!1=4 !ɐd&$!!4{ #i&H!x "II!C ʁ!4 $ I%)*Z J$EE) $! й؍$! ڈmj! mI$!!28 3ME)>z G8!(@ T`! $!!  $IHE) H IE)4 "I $! O՜!. $IJ!  0O$! +H! .!* $!!@ E)? -mE)@ H$H$E)!+ $IE)< I$I$E)!::>"QE)aJ ؆mlE)( "$I%)` Di۶mE)p $I`E)!e ˦H`ME) ۶ml!* 4J($!*p II!* Ӱܪi!ap I/H! >G! 2 !$U^ V I!ՠ $! D8f! vL !"( 0~[TJ!0 blAI!( ).!EڈA,(I$I$aI$I$RI$I$aI$I$A$vjGd#A::I!I * I$I$aI$I$I$I$:I$I$!I$I$ **I$I$A## I$I$! I$I$a(@I$I$AI$I$a*(I$I$I$I$[2*I$I$bI$I$b4' I$I$ I$I$@I$I$ah,I$I$bp`I$I$ *,I$I$b@I$I$AЮ] P`A,) -hnb$ 4d)8 -gi#ǶS* !L8JdK`Iku9B!)Hѽ ʪeB a& Ob7 !>j i<*!b •!oo EN]!a+ iJi Uޭ  7!A" 6$! Lں! y7!r f]J! !*J CK! ,)d! );$!h `I1!j ;p!] m!!) ㊐M! c3-r!A*J =!2 I! W 1$! * nhs!+8- Ǚe*! $1 !/ C I! ۬8! i%!* i ! 0n!` ɐ$!!Q ɶòm$! ( RE)7 ۀM %). q8k! ul$! $C! ( 5MA$! WH!L!  4H ! J6b! `"0I!` p\! 6 1Km!b  `$!!Sf 0!a` !> ahE):; H$$!! r I&I$!` Nm!b^ $! I >!A` s;!!, -! $EX !A ɨ!$ Ee[-! -@P!. 4U~! 9hH! @aht! B`0p$!` [EF!0 E1$!  ( c:m!ЂS!$ 4!& DIH$! ;j$!| h 8?U!` T! ! '  0,!a@ @b! Г P0 !` , k! $H$I!b Ih$! p'!( "!  4$!!$ O`!b 1 !6 C! .7 $I%!r " H$! LI$$!!( +e!ʈ 2A!@  ! Ldi!! R"$ %)R* OG!/? m۶HE)! $I %)$ I$I$E)! ۶ [eE)!> C!ubE)3 ȆvXE)!W -fm6$!!3L 4Hh E)* "$E)!Oߛ 6}mFB! $-I!`  ITM! X׶6! $B$I!* RAOR!!C w^!az  $!az H N!+ $ ! LB$!** +!!/ O9!Aǰ I$I$AI$I$a<(I$I$I$I$I$I$A=:*I$I$ *;I$I$akI$I$I$I$a"I$I$I$I$A I$I$I$I$AI$I$ڪI$I$ఴ&I$I$I$I$I$I$z.I$I$AJbI$I$A/#I$I$ I$I$a` I$I$(BI$I$ 4"I$I$I$I$*m۶m  0Rb  I!A]mMѶ !@b H$I$bg $I <  H0a k ټ ضcoAh Њ mB /䢝#(p6; ),( e &wA ¨m40.!;Ou a. ei`  x $O!! IAR!* Ɲm!  2N!j 6MJ A( I9 b $R!P O!U J7%!j* ?! <$! $!A ;!Aꀩ zKfrr! $!j a<!bz Tm! !$I$! HB$! dL! M%n!Aހ pk!AB/ 5&T!` % c)'!* H!b@ A Հ0A! M9!/ ; !" [!  "M! JXD$!î j$a!, TbQ! &qӆe!A {%a!$!x '! $! $!Ak p!` vI!U ɭћ! =?( !A ۺ}!UU $!A  !@ P]dI!3 =܃&!`hH۶m۶A.I$I$bꥫI$I$aI$I$AI$I$ hI$I$bI$I$A*I$I$I$I$ I$I$!bI$I$0( I$I$I$I$I$I$bI$I$AbI$I$A'I$I$a( I$I$꺺I$I$a(I$I$(I$I$aI$I$I$I$I$I$A<'I$I$a<I$I$ I$I$b*Ja^A@ IaKI$I$I$I$(A$I$A8& A$I$b ( I$I$ m`łbdI!0dS V - pH8r81Mm 0m6I&5Bb@TZ }_tB$ ! zIQ !' @ͳ!- {z$!b* e JΩ & J'!_ Oz zUx !* 1Љ ! S!a ~к! j {!A* Ilݶn! $Uj$t!  @$! )!J 4L!W N ! }'TI!" @! C'! 4`'!5U N! vI!(* nѶҶ!+Š rȞm!X {.,!!' M!( mm!**+ (lFK! !j m?!+ $ *!nN $b8a! 8 B7!I !X!aˆ$ IM!!( A&CS!(0 C!& Lb!   >!@  m!@( yA !)* iL!  ")0!@ L$%! ,!  $J~!8 [ѥ۲$! 2 ê16! ;OY!,3 Vլ!,* ].! $,!@ ) ! $ d@&!C2$!!oo $I$! >%)$ "!aF 0LA! }Z$I! ˆlku$!!Z 2f`! g! &:  EH$!  $A$I$! ۶ME) oo "B %)k)* *)%M!B" +!$! 6 Id$!!> $H$! %,$!b $i! B !( " $I!ꪮ ; TB![ $0.i!` "`!` I! I$I$! 2&! Ϗ !*I?ࣚ =x p!axI$I$aI$I$ުI$I$ꪹI$I$bI$I$ I$I$I$I$AʊI$I$I$I$AbI$I$!`I$I$I$I$aI$I$I$I$zzI$I$A؜'I$I$ajI$I$bjkI$I$I$I$A`I$I$a+( I$I$AI$I$ꪪI$I$@`I$I$A#"I$I$I$I$I$I$A H I$II$I$I$I$AI$I$A`I$I$AI$I$BI I$ I$I 5@ , ! , i`$I0 vLH9]=-#G@(@ &N A-əӘ!`S8!^k8mUa! ,Ea a*~ ` a 'IUA! ! -,9N!kRfTM b" !j*  i#! `ala!(Li  + : u$!_  I! ڶ!N<!J T! $I! I$I$!ꪪ  ۺ!說 }I! Ob! y!/ H!- Krg!* 1@G$-! : 1&< !-p 惹! mE!<0 +:H!0 1=&! IMŤ!* H۵i!  0Q(h! " h0h!a ơdZ!& `@+!,, c!8 DX.0!'` `d! aA!a =9M!P 5D5!' MҀ!!*" M"2M!RH" $$h! ! ̐e! P-!  "P !@ H ڔ9$! TP!# *r!( pC! `,8!p` ! ݶmt$!!  0$H!  @4ԓ!0@ ̀8!a 0 C>h8j! ؂m$!!l K8$!  !A 0 \!b I$I$$!! *: @$!b@ Md$! j-2*$!쬸 qx<$! b `A$!b@ $2$ $!!H0 $!!* 6nj!a(h PU9d r R$!_ M~ UI֐dn aժ&$( a_ ft`!a~ v'!b*^ GX!2 $ ! 5",!>@a++I$I$I$I$I$I$I$I$I$I$I$I$AI$I$A*: I$I$ I$I$qI$I$A$I$I$I$I$I$I$a ($I$I$AcrI$I$AI$I$I$I$꺺I$I$A"I$I$ $ I$I$a I$I$I$I$bjI$I$ KI$I$A"bI$I$aI$I$z^I$I$b' I$I$(I$I$ I$I$ABI$I$A I$I$"I $AI$I$@( mZmvAI A AH$HAI$I$x> $A#  sֲ:Ah줱`)A6 :'M(4HVdWBcPA( ! * bYz `[p %Ik\?!)~l ɪFva6mb*$To0Imm}IDR+"i=&u NR 4r !IҶTA6$ a~*cd az`>!a*z Ln!j IO!ꨫ Z R(@!(, hqm!A yX#!` #O<!( W foØJ! @!ꪪ @CA!d V tH! 4p4!b  $B I!* 3! A` A!" vl! v]6!( @8!! G.R! ( X=M! !b): !}D! &* 4 $)!@ IdI!  -!젠 l,BK!J nj8!#( $$I!( I:&F!ˆ< $! I,(! LPX!A" != 08҈!` m! 4 ! lM!A& LV! d@& 0$!!xc N@%$! A;! R!  I:H! 14N! ?42!p` )vC!b - $!!2bb Y*$!aJ K.H$!!LH 9B=$!R `!b DH4@!b !$$!!1 IJ! h-!bؠv;a3q!zI,,O I"a0n !} S_!bi v޷ %)ڿ֍-H!ףlw!}Mל0!!%J!!aj ! ҚI$I$I$I$^I$I$[I$I$bI$I$AI$I$A BI$I$I$I$ I$I$ I$I$@I$I$ I$I$aI$I$I$I$AjI$I$AI$I$AJI$I$I$I$I$I$ఠ8I$I$I$I$I$I$I$I$`0,I$I$I$I$I$I$I$I$A( I$I$I$I$AI$I$I$I$A6I$I$AI$I$@ H$I$A,I0 $aI$I@$ $ BI$I$ ( I A$A @C@ ”MA\$ PP!I c[a(7a9 ~m;b   Im$B&HZݤVbm;K$$!!X׶6]$m۬i ulI *MR !@mσmE)w %) maE)ߩ [%), O$!a檫  %)}{IܶH!_&I0!ru.0 ! .$XJ a `3v!A ) f4p!a   !$!H hn !xB* 'M9!A/ 0X! ' 2km!$ ň A!$ Fa!2`!aɀ !,x (ITH! $L!raD!". ڴmԴ!  Ӷm! h-!/稰  qi!( " /k4H!a C($(B!pB a1!  &m! KFF!* 8 Q*!* $Ib! @ $ I!ꨨ B$(I! 1$Y!l(2 O&1!$ ` G!! #ń!uN dLdb!# @!#+  I!b@ h B#,!A` 1dI!b $HI! Uan! CH$!t{ j mH$!!(  uݶn$!!3 ȡ[cZ$!,,(( [AQ! ?[Ť%) * AJ! [u$!  484E)z AE)j k/E)~ %) v>BE){ qiE)! &-G Ee)E)@ "$'ME)C [ae) "r (JE) vM"%E) L E)V >PJE)A $P+ E)ݠ I@%) ډ 5! x$IڢI$I I$I$ !I$I$秺I$I$ LbI$I$A8I$I$I$I$AI$I$bZI$I$AjI$I$AI$I$@ I$I$bjI$I$bkI$I$!$ I$I$I$I$AI$I$a"cI$I$ I$I$I$I$a"(I$I$ @ I$I$a+* I$I$I$I$:.I$I$A؞' I$I${I$I$rzI$I$`I $A H$I$ $I$ЈI$I$II I$0"$I$CA 2D$pmC&CA `zضm;Av:!A 0$!X@ gE) 1>-!@E)_+ N mE) ?m )E)  ڶmE)  QܶmE)!-jGe)! ?d߆1$!{rdf1!@" J նf1$# @E) 6:ze)$!* [$e)!0 TtE)! )&XWe)E)ۼ   He)! F .jE)  !CQE) M2I]E)  E)~ Jf1 ǀ$ME)_ sMAE)w  # ME) 3QS!b ϕ!+5 $ I! ,I&-!Ϯb 1Di!:: )! ml!. T. u!i `IT!"% ۺml! " U!c. pG<!/v ʊȵ! )eA! S,!A M!  X A!  )!A!@G K4!)' ۦm!% M!( $b!A ! J!+ ֭k! $ѐ$!J< wD!% H$I! C۶m!򪨪 "a !jꪪ 9!A .  E! `0E) 2!( }A!.:3 ۦDM!4 Xu]W!(" Ӱei!  ?`>E) x HIE) ɐ$AE)!w v%dE)(0 @E)! !۴me)!j "Ge)! Цde)!*B[f1!*1F҆1!o`Ě1F&Hse)! i$e)! (m)t$f1mq$f1(n̶tf1ڪmqf1!߀* tIf1!mm1$!_ C E)  ۄ.ne) XYE)! mm׶e)$!* `ݰte)! #@&Ie)AxIme) $` e) I1$!A$IAI$I$A,I$I$aI$I$I$I$AI$I$A`<I$I$A*I$I$I$I$nI$I$AbzښI$I$I$I$I$I$Ah,I$I$☜,I$I$@I$I$I$I$bjI$I$( I$I$I$I$$I$I$ 0I$I$A"(I$I$*I$I$AJbI$I$A') I$I$ ( I$I$(I$I$`<&I$I$ OI$I I0A$AIA$&I b8b &@| ! j- E)a+ OME)U i5 E)2 6m&E)! ФN"E),@um1!( $DE)! ϝ$#?f1!nwe)!v-afe) m)kX1 y?A~e)!'vے҂11_O1ȧ'KI1!U(]I:"1" 2f1^,+ȥ&f1 {l$f1]mCۆ1jww'tj1! /H1!"m1$! $IE)B MtE) $ n6mE)!  $C$Ie)$!* $%$DE)!0 r`LE)!xM" me)A^ t7e)a dCnc iE)  FҶI! d z!* $ZE4!A (b &, I `x$%!j Mא! *+ Cۆ !ꪨ M4j!rk ƒ!AŠ*9 0HB! .OAe!﮺ !g C,8 3$ J!` 09q!* h-8!` %! IdP!ꪪ R!2k c^!X" $A$ɀ!"  B2 !* &SB!\Zr & l~!  $$!" ml! j:!& a ! $2$! !KIE)+ -<HE)bz_ 1 IE) +H$iE). $A$E)!/-Cf1Z2 ]N `f1! $@e)! n1!_e)!- e)e H G1-@swf1$!~*vݲO\"1!U_*]I1a (uϲI21!jU)ߖIO1!v; f1Hoۆ1H'Ib߆1!,_BO²1~*w qe)}oME)x}f1!^m۶dA@<I$I$I$I$ 4: I$I$AI$I$ajI$I$ "I$I$A< I$I$!(I$I$I$I$a"hI$I$  I$I$I$I$I$I$AHۺI$I$BI$I$A(8I$I$a* N$h"<!V\Z T! j($M  XN<ҡ!rb s!b( $2 !ꮪ ZO!謴& B! .? @""(!J*  Z E! A2r!J ( E)x ME) $IA-I$I$I$I$膀I$I$!I$I$I$I$a I$I$AjrڜI$I$I$I$I$I$jjI$I$ I$I$jI$I$榪I$I$ hI$I$黺I$I$a I$I$AI$I$a ) I$I$ I$I$AbI$I$.)$I$$  O E)a) lE)A q!@E)56 X4mѵe)!/ I$IE) 4>E)_  @E) #ҷ)!  E)~UIbd'@e)U*;0e)* $e)!=)S1a.z*ֆ1! ;o˖1!}Pe)!bUe)!+I~We)! IwAe)! 8a13A6%Ie)!I"u҆e)!(vA*a1 o =6e)3m[ae)!2i E)@Ô1*"rkZ1$!*n1E)U#1!p~f1!W?p1n;tf1 vo۵e)boj !@E) r?1,U)e) %YFf1!8v}#@f1$!^ $If1 @]me)$!\蚆1 +`\me) IE) P E)njD!!#6 NnVq!~ E*&V!{ wդ!+/ K! SE!< 9ʁ!A&,8 fnp! t[e! 7۰  ZВ, a \-.2! `&fTm,!{ fB @!簾! a!0!*j αdJE)a ^\n$IE)_ I@E)  ۶-: E)j #@E)h IE) WE)j 57! $E)_իy_@f1Uתۖ e)  jf1!*&puJe)! 6_1jf?f҆1z4*a1$!;~,e)$!cI$I$.I$I$AˋI$I$Ax`zI$I$a ..I$I$ bI$I$akI$I$ I$I$I$I$I$I$Ax&/I$I$a I$I$I(6 'yIE)a׽ YE)! 8 R%QE)22 I$&E) ^  AuE) &mnE) .7 E)߿ v\I$@E)U&IJ4f1* 5Ibe)! $F-e) B LUf1 6k6E) ۶M )e)!@ mfkжE)!  c 4me)E)"ݷM/e)E)25Rf1j (ė*e)! , mܩh$f1! dzVTe)E)* -)PHuf1"ow>1!$9!;1"Manzf1 m4de)  :De)E)cP1 ˜Ce)E)[ڍ4;bf1 )OMwe)E)" 04e)E) D6Vf1j*uae)$!v3ņ1jo1$! Im1*z61!_*~A1U /df1UOE)U %؆1*Uٜ61or.l1! 6iE)!( XM6e)$! P[e)!" R"I IE)P 38@E)~ u)E) 'O8! A!8rb!ꩪ \L8c abB `^ŗ!( *i!!n F- |!ƃ H!魥 HĨ A" Š&!o茶 lqg Y Hg!@E); 4aHE)/ ؐZ E)(9 ۶m&E)!/W $HjE) :ME) ߜ$E) 9i E)իme)! . Ile)!ƒ[E) #N6Nf1 TI$E) ۶ -ņ1 m[OHve)!$ q e)E)3l5i[Te)E),"4 e)E)!, ߆1E) [Ƅe)E) &aHRf1]v1 jmB1E)yaKlR1}tf1!4@ФE) h۬Isf1$! dw]e)E)h mre)!(47.f1 **Dl0e) A[fe)%)( e n1!rP$Me)  Q3a1E)yw $f1$!6]e)!ϹIf1!hv{n1 >f1!z/~RXkJ1_ i e)_zTY:e)_kA-e)  Rf1! #5m5E)b` bKe)E)t܃ R! 6E) h IqE)d ɯ& E)A؀ ɏ&E)aXI$I$AnjI$I$AI$I$aꪢI$I$I$I$`, I$I$:I$I$a"I$I$ `I$I$AbI$I$aI$I$bjzZI$Ia w!{7 hE) 00E)  Xm,E) ` d@rE) H&DE)࿪ I@E)o ~S*_e)~E@f1A* Ck'mE)!  E) ,4 c0CE)  mvڤe)E)z Z,I e)!* a۶e)$! cvb e)E)U 6A:)e)E)+ Ēd;e)E)(U Z3 HjE)`p,qf1*@rlsE)ԖYe) X11 (ZPvme)hׄDGe)E)8$II1 l&@ f1*䶑pe)\غ,aE)!DEf1" /{f1$!>ꪪ ne)E)B| HWc$!bj lhZLE)_5  DE) 0 $I9E) $rLJE)ྋ m%) $ICE)C䰒1 a֍1 iǶME)! ڠmE) mIE)A mvCve)E)+^% Y1ne)! +ڶme)$! mbMRe)E) !@ƶ!f1E)_W e$d'e)E)"Ud"G1" ĐCۤE)iiE)b@h74e)$!|+ve) . FGqe)cE)!m;i 1!L)iʉf1a&61L5Զe)!,/߆1h ^f1!d -9mf1 6dž1!*Aΰre)@8j6e)2 Af1j$mf1&(K1T9Pme)V1! ڢ j2h@9Le)E)pD4 e)` 1![e)!Kt)(f1@WSe),??1!~/~nXA1U~ %dE)+W1+Mƚf1!xe[ 1* jVae) $:k f1Ax ʥI1!b ' e)܀ >E)AI$I$꺩I$I$AKbI$I$Ai#*I$I$b{I$I$I$I$A'I$I$A I$I$imA6 ) `$!b_ !.aE) ʀ JFE)vS9E)@ MZhIE)) XoӺmE) !H IE) ( VmE) L$IE) , M۰mE)@ IIE)!( &4I@E)  $E%E)0 IA$e)E)"U $$ E) I E)! жmeE)! c;E)! @ ]צme)%)*lɶe)!,  ^VhE)! , ]IE)!$&'E)!*Jۖ$E)@rV'E)zVe)rXq@e)  $E)! [e)$!nL71 R 1E)儵Fmf1 " -A~Ɇ1E)NHf1 *7e)$!*bMf1$!+u1)mݶn f1Pcf1!_=g|f1!+5dn+ f1!Z{ زvme)! $I6-E)@TeN1⚢* /'Œ E)؀]q I$I$bI$I$a"I$I$AI$I$A$I$&ʾ 0H!a 6$!  E) .2%1귋x%=}f1 pHzl۶E) I$E)! II$E)! DA"AE) B $IIE) I$I$E)! I$I$E)! B$X$IE)00 H$I E)! \ˏ kcE)! I$Ie)E)}- mnkעE)! (%ǺE) AKӤf1!Wu I $E)!U_ @ڢ E) m %) 2XE)U" kI%)z IvDKE)W* I" E) ] IE)b؆1 3HE)_  @e)ժ Im6E) U ~" B)E) v@E)z I2&AE)_  iE)! $ME)_ RR&IE)" $$HE)* 0 E)#*PM˴E) ( m۶e) +^`$D.e)J[I e)@ -v e)$!  ke)E)FcMf1* ZnTf1E)믫- af1*"iCje)E)tDve)M-'e)$!_f1E)V t1 dt ,e)ꪨ@ܭf1! _M(椆1!-c 1!jo ke)! H#E)! @u1j5QE)A` ޓ E){驨瞕.wE)+'mv1=-T*f1z%w۶1ܭ  H$IE)' I$E)!/ ۶!me)! >@C*E)@P I$I$E)! I$I$E)! I$I$E)! H$Ie)!44 H$$E)!*"p dy)yE) I$I e)E) x 2:mE)!@_)Fe)!a`W %v$f1!W} A$E)!UW i E)(* 49WAE) T>+E)]& MR0iE)A~ INE)W* I$E) y &IE)a /TE)/ }6E)V  &HE) Im6E) U*3A`Ue)_(8 I E) @ $IT8E)s $A 2E)! $ E) dIHE)  H @$IE) " IE)j mڶmE) ) -дm۶E)! 3 kmE)z 6DGrE) X Ne)!/VHקf1+Dre)tڳ/e)E)Xh@ Ф&ne)E) 6N,f1!jb  #nby 1E)~zJ1 <%qf1E)^ÒkWe)$!c1!/͍=x1 d_̡f1A4&1c٭ 1!o% vmۉ %E)!hjbWf1! A4AE)aJAf1bx ăE)s$Ia$I$A"A08 ' !_ IgJz% $!% ,-}vE)b "*J󄡊&1j7xA&1x0hڶmE)' H$I$E)!/ $ &)E)*@ dDHE)!˭# I$I$E)$!*( $I$"E)! $IIE)b I$IE)!*(  E AE) I$IE)$! :SXGE)!$,Wv e)!E)ospݶE)j L?[E)!\ E%IE) m۶mE)! A$I$E)!* @$IE) I$I$e)E)UU H$I$E)! )۴mE)@ ,! IE)!B( dIHE) (#ME)!t< a$Ie)$!* $@B%xE)$ ІMTFE) @*E) $H E) $IE) $IE) ! $I@E) j&aE)  B,$IE) HA$E)!~ VI$IE)) aǶmE)!נ "2ImE)h'2JE)+` .ĵE) -XXf1"^Te) CM@1E) dpue)E) !^"҆1!JmQ1$!+%H1* U5e)E) .cvibe)!'|$o1!Kudž1!^+%l*1! w 1/ YDf1! M51! Fbve)! @[JE) ix[ e)! EI1.+mۆ1ܭ )I$IE) * I$I$E)! $a"E) VmцmE)!( I$IE)!*(  E)b@ ͶnmE)! I$IE)! 4H1 m۶m!E)! ،ҜE) ]Oae)!z,[3NE)jvݶE) Cn۶E)!W ¦$@E)& E)!* HI$E)! H$IE) I$I$e)$! I$I$e)$!( C<%mE)!P ) E)  ICE)  IE)! `H$Ie)$!  5ple) : ФLE) 0@E)aB $I$e)$! $I$E)! ذm۶eE)! A$I$E)!  H$IE) $PDE)!  E)! , E)b mنmE)  $@Z$ E) I$IE)!0#i1f1zdٳK;1 $Hr$iE)`vf1 " gE) ނe)!  tZ ֆ1E) cf1E)z݆f1E)mM5n16 qq41$!c큆1$!Ts1$!Ρ5Vwf1`**bb>1!.h*ns^1--)f1 e) b(Dv1590F1!.{.4$qf1a` T&$!- $ !`H/1?!=1p4lmE)' H$I E)! I$IE)! I$I$E)!**  E) vnlE) #  )$AE)@  A$HE) a$IE)!*۴ME)#mI'1/ sۆ1!W%xU&-:mE) p۶mE)!\ !I$IE)! `E)!B@* 2$IE)!j $@\E)(6 $$ IE)P H$I$E)$! I$IE)$! I$IE)!" $ICE)! $I ,E)!z l+E)! ȶ E)! ڤA$HE)a( I I$E)!* TGf1"=  Ȓ, f1j  IE) I$I$e)$! $I$E)! I$I2E)! I$I$e)$! @$IE)$ $ JE)  @E)!:8  IE) IHE) $B"HE)p H 2E)!ɓ#@.E)ɚae) $B HE)кf1*XP.i߆1' 1 :e)! Sv+̆1E)_ dnf1E){ &/e)E)"7|tmf1*( Bjf1$!mߛ@ f1E){z)%ϛ1! s*ɮz1ހ 4TCN:1p )of1*tf1-ve)!(O8Yif1# 77e)!0  k΋8e)! mK 4E)! I$I$E)!** (E) lԆmE) #( $d aE)" $HIE) M$I"E)! m۶E)a&'iԆ1/#~ke)!Wx\q]E)!\ P\$IE)!V @$IE)! R(P$IE)! $I$A2E)!" HHE)   IE) I$I$E)$!* I$I E)$! $I$A2E)!* $IHE)!" $i$E)8 I$QE)!( $A@E)@ 4IIE)  &)* E)@ Hݶm1ȧ !XB(AE) 02  $IE) $LE)!(0  !ME)!@* XVlݶnE)! I$I$E)! BIE)  J%IE)$ TIS$EE)0 ۶m۴!E) @ $I LE) I$Ie)$! Z$TIE) I$I$E)! Z$ *E) )E)!# `>4IE)܀ 6HE) }W Ҳ,!ȶmE)  e) 3㊣;1!j^Tﲆ1!نq41!#!if1*yt4f1!OcG'1'MT0{1 ܵHlE) M! E)*&* iE)* b $IE)80* "I$IE)!n $H$IE)( $I$E)!辪 I$I$E)!* * 0E) mN|b1 ׉#Pf1-):mۆ1 +xc#IE) h C'EIE)* ܶmø$E)x  )E)@H H$I$E)!* I$I$E)! , IE) [?5E)`b &I nE)( DKDHE)! B" IE)!R H$I$E)!*   H$IE)! "$ME)!p8 P+HE) j$Z E)( FmE)+ I$I E)! 4%E) ۖm E)! m۶I lE)! $I $E)!R $I$$E)! A$Me)!`)) I$I$E)! Mд@E)!8( $B$E) ",E) I$H$E)$!( $IE) I$I$)( R#ACE) $I$E)! #I IE)` ''rE)  mE)x 餭$@E) \wE)P&E)+Y-հe)!  _c~a1E)_к:1 &7W1!',0@f1`hʠ31$!zx[N!1!ꪨK@i1b" !:jw1` *!o֏16xs f1 6rsI1$!x 94N8ne)! ȔE) HFXe)E)B8- m] E)! $I$E)!/ H$IE)! ,IE)`!:A1~+~ f1 %8mf1z {<@$IE) 0IrE) $I`E)   dB&E) I$H$E)$! I$I$E)! ҈$IE) $Q!EE) 0 @aE) ψ IIE)! Z $IE) $C$IE)!( I$IE)  R$@ڠ E)0 %AE) c,aE) $I@E)!  I$IE)!  E)b kiE)! m۶IE)! $l+E) u  E) DI%)U E) I$E) ME) Ĉ-E)! S " iE)@( p,qE)  H!6E) IIE) $I E)@ $$ E)!( "hE) @,< )$IE)@ $I EE) $iJmf16 [D1AE) wgE)@E).:6Aܔe)SXM1!R/ݯ1E) ) g1$!jm՛Q1$!ڪ pٵIƆ1E)r$)$e)$!(ZauM1 ` njT=f16QƆ1E)C#71$!i R[71E)Z̩De)$!Ğ}1E)k%W)4̆1f1-&}Ԝf1 }ێ 1!?XaΨE) 7lg6Y1 9f1$!z7f7f1j  M~ۆ1!%`WUt۶%)! ڶm۶E)!/ I$I$E)! $I !E)!J QHdlE)* H$ E) " ۶m`E)( I$I$E)!* I$I$E)!** ,E)` ʤ@HE)  $IE) $I2E)!*$۴} E) 4L$ME)!  @E)!o ۰mE)!*} l&IE) %) & i%)~ Ҙ0IE) #' IE)a -$IE)*W ܐ$%)( (nE) &jfhE) $I CE)! eqE)00 $I$E)!#[+E)Az ՕPIE) 8 E) g ~hE)8*߀ &E)p+ MlE) Х B#p$IE)`* H$Ie)$!  $ $e)E)WW I$I$e)$!*  P AE)00 I$I$E)! I$I$E)!(* LI$e)E)_ Ӎne)!~p I.'R E)b}޸\'f1b*^tf1/VZ[Ae) C 'ּe)E) Jyrf1!uXJ1:$V^?1!*Z  $5E),z(Oa1'3)=͝ۆ1p֭ 10I&R$!( A!A )$!0   %)/( ,H$H%) $X$! $m$! IJ$! 1/.,!0 @尭mf1+rԤM%)! HH$!  $@$! $IH$! H@E) II$E)!* P%) I$IE)! z$H$ E) N;E)$0mybf1 4$5?1! _E)"!oe)!++me)! â" E)h@ \EE)  I$I$E)! E)A $I*E) ۦM!E)B 4WPE)#@f1#$7жE) 6-E)@ Ɖ2 E) @ $+ nE)! HvB1 !IIE)! 14E) ضmE)! k#8E)z I $JE) %$$IE) @J@E)^ `9A'E)@-^ nxE) "$IE)@* m۶ E)! &I$e)$! I$I$e)$!   ,B#E)!` H$H$E)$! I$I$1 mvmӶe)$!**#=6Җe)!@( M"=+E)vz M 1 -[ݸ@~f1! \C diE) ` jXىe)!(7e)( I$E) H%$! II$!!. IH%)* "$IE)@* I$IE) I$I E)!/  E) DE)B3mOf1! 3'f1]se)mE)! *Şme)! OIӳIE)p ҆p'mE),, IIE)! HZE)  ۦI %e)!P E)b@$7.qE)@ e)$!$ɔTE)8ǥE) 6lS E)!p Bq1 EiݴmE)!" JiE), ۖE)$! m m!e)E)v $A"$Ie)E)kU ²8e)!@t htY[tE)!  Im e)$! xISmE)` $!$IE)@  1E)a*` o?hf1z mۿf1!x E)!- I$I$E)! I$I$e)E)U I$I$E)! I$I$)( "A&,E)@ v#9E)! J"A E)܀ɩ&ME) I%'E)a Z9f1 ۦ e) `he)!p\+YE)Z~x 1 (hܷm1ض %Mb$!( 6l6$!  I!$!!- I$I$$!! $!!/ $!!  p!@F1%)6 $j|! Pin$!b*: !!>: dq۰m$! $@ $A$! ڤ$I$!(4 H$I$!! Ű-[m$! I$ ! ,!b` $i$$! V:>E){_E) ;(?6f13p}1!x )@THE)*  $I$E)$!" $C $BE) I$I$E)!(* I$IE)  !$IE)! J H€E)( A$I$)( E)!* c8UE)8 Pe)!! vme)E) [Ib{e)E) ui 4e)E)(z B E)!  tFhE)   iE)!  dHRE) 2ie)$!" I$H۬e)E) $A$I"e)E)?U <6me)! I4@E)!  I;];e)$! MiE) JImE)" I$!E)`mڔf1)&1 E)! I$I$E)! I$I$e)$! * I$I$E)! I$I$E)!  $ $!E)! @ !qvmE) SmE) M9HE) N=E)a+xH䐒e) )ڸfI(e)@Dݢe)C" 1!j+# R))e)@MPae)! |~71$!/wP߉f1?Qf1 { f1 $AZ!e)! , ҖLIE)! $HHe)E)o BIE)!~ &) I%)h $ I$!!> !b hF$!: .(E) loe),>}1 slE) @@ mFmE)!'# `IE)!"* tITIE) $!&IE)@ H$IE)!#( &)(IE)@ mhE) H$I$)( $@!I2E)!  44NE)b  K`Ze)E)$ v vRe)E)? hIbwe)E) ]mfe)E).~ Y `E)! %)E)  I$I$E)! t6mE)$ ڭE)! &IAIE)!<  FE)8Fl1 ]ڶmbe)E)_ "lmE)  I$I e)E) Y6Цe)$!-[mE)! HKmE)  Ҷme)As.hOge)!\5xJ E) m۶iE)! = [!*JE)cX  h&r! 4@! ڥHl$!!] @0d!d   @!@ ^ `! H&!Z&OO $ {@!* $iض$!-  AD! ;F9E) $IQ!b Xi&$!!p^ $0$!!~%{  p7-!j k!ڵ H!+ 9A!- H$I! $4$IE)*r H$H$E)!  G$IE)  H$IE)  I$I$E)! @$IE)! $B#iE)` I$HE)!( IPE)  $I 'E)~ $R]E) $I E) ; (!PE)  7R1! 6Il߆1$!H?I߆16 Iۆ1a 4 Ibe)!G?AIr߆1z۫4Iۆ1"mf1! !նmE)!eYE) !iBE) E)!  ) E) @ 6 :i1m !IE)! I$Ie)$! hmmڭe)!-4rE)@ 4lje)! $I DE)! m;i6e)E)r 2@=e)!HR wH!E)@ De)!7x#hf1b*!q#f1* H$IE) I$I$E)!( 49SAE)!r I$H$e)$! æR5AE)8Ci1j*TmF E)j )|E)zh1 wݿs1E)~&VUe)E) t0a!a&   ƌ!,  ( H!@  `-. ! € DA!m! "1*!(j P%*! Ѐ !Шx qY!b޷* )WJ!  I&!( VB!( Iq!@ Ph!0  !  hڶ5!{ {!} tx!Z5" 1m 4J!( $I %)** A5l$! ! $I E$! D%) B E) E)! E)b"` ڶE)! X :lE) OAE) &IE)Z Ӂ IE)~ 4H$IE)( lmE) H$ E) VV BE)* H$I$E)!  !,IE)!*@K THPE)$ +$, E)I  AE) I"E) n IIE) II E)! K !E)  dHE) ) 1$IR%E) 0R mvmE)!*( @dIE) @E)!~ 4qHE)  B91&mE)b 5MgE)< $C$E)! I$IE)$! $&IE) imѶe)E))5_ kvme)! jn);E) mve)E)~ m'jE)@  FkE)b *QE),H m&hE) HD@E)!  I I$E)!( ۶m4de)! $IE)! @E)! iuQ6e)!*{5zf1z$I'1 ;-1'V.e)E)b"MQe)`݁e)E)bne)%)Je51$!/Cf1xwe) ?eX˭1 `$IE)$ hڶe)E) $ $CE)! $ME) 6 TII%)) $I$E)!꫺%  E)b $m6E)| !E) 0  w*HE) ا IE) vB IE)_ 1$EE)!% I$IE) ‚ iE)@ ! dHE)4 I$I$E)!" -۾ E)@0 $ICE) @ $P+ E)  xiE)/ ۴ S2E)![ E) 1@E) H 4HE)b H$I$E)! R A$IE)! " 'E)AJ0 R5iE)$  I$0E)a ` &$IHE)! I$I$E)!+ @$IE) -$FE) h +iE)a(' дE)A $IE)- m۶)( 6l[mE) ذcJe)E)z 3Hve)!P  y(r1 I$I$E)! QԸmE)9 RiE) L3E)8s; $ (!* B ʆId!( II!: $IH!  P$!! 4SA! r r:!a(0 z¬&p4y v!A ( 4hRm! p  $H ! ۴mH! ʈK !a(. 0h4H! $A! Fl!A rt!$!^ m!  ٶm۰ $!!+ 4I@! *) I$!@ AF E) Y~ A$!4 C#:EA$!` %I(6%)<(j #u!A- '%IE)A߿ |&I!  mܶmE)!_ I$I$!!حx $!!- I$I$$!!"/ ۶%۰ E)!ݯ ՙnE) > H$IE)   H$IE)! I$I$E)! I$I$E)!* $ERBE)0 ,ɒ )E)p @ I )E)@ $A IE)!*  TC$IE) Ab! E)$8 $AE) I$IE)! #$IE)!b $A"E)(` $ RE) $I$)E) @  E) I$I$E)!  `$$IE)!x m+$9E)p IfAE)b HE)b+ $HZE)= m6me)E)z $A"IE)@ I$Ae)E)ꨁ7 um1j*  $1! mvM 4E)$! HE) ymE)4 $H E)& B$ E) I$I$E)!  I$I$E)!  A"AE) @v)1!+ۂqH f1z* !-E)a ~ځt1nv 8f1$!ꫩ *se)!ˆ aMf1$!ᩪ 9e)E)&zǰe)$?`_f1V|f1-e)!, AI$e)$!  I$H$E)! 0 J4i۸ E) *4%) ` 4Mw!a`+ ı$I%)A 9&I!& !$I$E)!W $!!6_ $!! $!!h Ҥ*!E)!ko .HIE) l C IE)! I$IE) I$I$E)! $A2$IE)! pgiE),$ Z$Y E)0 $IEE) $I2$E)! $IE) &IE)( mE)!, $A2$IE)$!*ʨ dI@E) I$I$E)$!* I$I$E)!* $b":E) IHE)!  I$I$E)$! $I$eE) !"E) ` ׬ψE)! %IE)!~ 5$IE)?x t |.E) QE) - m۶i)( Kme)E)bV !IIE)$!( ڶm e)E) j( $ &e)$! XE)|wP,ٍBA4 i3!b b XH! &I)!n ۴ml!* ͸,7!ƨ. ۦM! ˆdO?!zݤq bp<  -!A pF$! $ɐ!I! ȀM!( h !b ֌! ֑'!a yA A) )E !* Ih! Ӱ#)$!( Ֆm{%) $I$!< dH$A$!!7 Җ$$! `! ` 'G!^% O ! I$I! & )! ۆ$! Ӻt%A%)ꦶ $  !$!b H"tl$!! $!! I$I$!!" $I\$!6 $I$!E)*J  ɐ$)E)!檢 IIE)!* ƍ E) $E)U I&E)_ ҬIp;E)`U X$IE) $IRE)  IHE) %QE) ( II$E)!* JLE)$ I$I$E)$! I$I$E)! *  B,tE)Р IIE) I$I$E)$! (E) ` B'" E) R)%HE)(- 8I[8qE) e IE) /`E)- xE)7 mڶm5)( mSvle)E)5Z IڶE)! жmfe)E)5Z( I& $e)E){% 6e[mE) ]۶mE)< ) E)h. d) E) CI6 ۶QkI1 $A$I2E)!@ TI$)E) @ d@2 IE)!( Z( ae)! (M]te) _~!f1!%WwͿ`z͆1!ݦ cE)!bHQ1E)Z 1@[f1$!7|jf1 E) *q@(lf1( mviE)$! "a$IE) m۶ME) m5E)!UR $39$! $IL$!!. [8E)  I$4E)*z B$!! I$I$$!!- $A$"$!!J %) - ۶m6E)** iu+tE)! ۶ E)!@ 4m 7E)~ $[E)*< R7IE)_ 5I&E)_ AE)b $I)E) k %HIE)A %Ё$IE) $ "E)H $(NIE) @_'e)!jx~܀Ve)!/-ɱM.E) ")"E)!' L؀E)$(, I$I$E)! E)@ ! $IE)!/ ۶mE)  I$I$E)$! -۶mE)! H* p,` IE) [XCE)7h M\E)6 $%mE)! [bkvE)!  hE)@& *!?Z XA ! dC$I!  r`!aB 4 @!)*" +9!0 !a~ O!֥* Aä ! 4a !  OI!$. J+ !V* Hl! k2=!j 9NK ! \61@!-=/ R!  A*P$!* Ф$I! " R $!*   d!d 0!` k!X= j) ! 0`ҀA! m! !d!d LB$I$!!   I$! ") I! B<I$!( LH$!!׊ + :$!x F'!A lN!  :IBI%)b~U Ҝ$~E)U m%)z IB4I%)j -A(I%) q)&jE)  jC$IE) I2lm۶e)!U * IE)w & IE)  E)A* $I$HE) mme)!9* "'AME)*!E)E)!-m۲tE)z I! E)!  E yE)0  $I$E)! ۲ 6E)!@ $H$IE)* $IE) * I$I$e)! I$I$E)!*" @B$IE)!p ?E) 8 h/E)A 4($lE)!@ I$E)!" iE)$! tmtE)! m۶ e)E) $I! E)!P Ҙ9`E)` AKE) >j IH$E)! ,1$HE) I$I$e)$! $I )E)@n+f1!Jo,Y 11j?f1 >n1!Vf1 *Tslq2f1$!*{(~f1!4`gCf1!.@F@f1^ $E) 5)CˡE) $R6E)  $B$IE)!  &$AE) IlE) R$E I$!0 pI$!< !HIH$!! ീ !@D;$!^ P^$!A :!IE)b._ d'/AE)A S$@E)A vM%) ګ I2%)  I( E)A퀀  mE)  $IE) I Im۶e)!U d# IE)  I$IE) E)A@ E)( E)!j aE)A I$I$E)! I$I$1 I$I$E)$! I$I$E)$! E)!z I$I$E)! I$I$E)! I$I$E)!* E)! e)! ]f1!/U׶e)A* e)! mN E) E)! I$I$E)!  E)@ E) I$I$E)$! * I$I$E)! I$I$E)! @$E)b I$I$E)! I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)$!*+ I$I$1 I$I$1 E)@ I+E) u %) Wz E) I$I$E)! P&E)|_#'N$I$I?$  a ! 8pD! QH$!b I A%.$B !ok9 A `@d!JA<8 < a` !j %j!^%p$I$IIˆlm> !Ajj @$ !H  X!!I$I$E(C@H!zA !I$I$E(C@!H !a( d'$I$I$I`(b  J^! *' AIE)a I!AE) L! ` A!* !@@d!d @@d!d $I!A& `„!AE) ! IE) $d!d $A0! H$!zW$I$!zWUU I$I !Aj IJI!  I2L! IE) JH@!$ RE$I!80 $ d!d  P(!A ! I$I$d!d 0d!d L$!!*zU C2$! J !  $$!!W E!  $!!x 6! M$! $O$!UU$I$!UUUI$I$` I$9%! I$! I$I!a' i$! a$!!U I$I$E)! I$I$E)! I$I$1 I$I$E)! I$I$E)! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! H %) I$I$E)$! I$I$E)!( I$I$E)! %) & I$I$E)! XE)< E) I$I$1 I$I$E)! I$I$E)$! I$I$E)! E)! I$I$E)!* I$I$E)! E)!_ I$I$E)!?W f1!Wm?4mӶ1!`ke)/se) ~ 0E)! ^ I$I$E)! I$I$E)$!* E) * I$I$E)$! I$I$E)$! I$I$E)!  E)@@ )E)a I$I$1 I$I$1 I$I$E)$! * I$I$E)! I$I$E)! I$I$1 I$I$1 I$I$E)$! H IE) Đ@%)U^  )`{E) E)!) I$I$)( I$I$)( E)& Em۶E)!@* lɶaE) I$I$1 I$I$)( A$I$e)E)W ۶mض%E)A I$I$)( öp˱mE)b,4 `%) ` 2(h%)Acj PI"@%)p E) I$I$E)! I$I$1 I$I$E)! I$I$E)! * I$I$E)! I$I$E)!8 I$I$E)!* I$I$E)! I$I$1  $e)E)@ I$I$E)!x mE)! % I$M e)!  I$e)! / HB&$Se)E)x ! $IE) I$H$e)E)VZhX7h۶dE)  I$e)E) * H$$e)E)X` Òaɐde)E) Y-ۆme)E) ۶-۸ E) @,۲mE)bBm߶UE)- y$!!  E)  le)! ۶mۆ=E) ( p @$E)Ap E) I$I$E)!( I$I$)( I$I$)( I$I$E)! ( ,E)p !  0$!!__ "=!bh Kɟ$! $=I$!^UUГ$I$!I$I!& I$$ ! IJ!* $I! IH$!!U  E)!տ I$I$E)! I$I$E)! I$I$1 I$I$1 I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$E)!( I$I$E)! I$I$E)$! I$I$E)!* I$I$E)! I$I$E)! I$I$E)! I$I$E)!  E) I$I$E)$! I$I$E)!  I$I$1 I$I$1 I$I$1 I$I$E)!z I$I$E)! I$I$E)! I$I$E)$! I$I$E)! E)p I$I$E)$! I$I$E)$!( I$I$1 I$I$E)$! I$I$E)! I$I$1 I$I$E)! HE)!WaǶmE)! W hMڶE) $ E)!X @E)!+^ &E)! W I$I$E)! I$I$E)$! I$I$E)$!* I$I$E)$! I$I$E)!* I$I$E)!+ I$I$E)$! I$I$E)! E)A I$I$E)! I$I$E)! * I$I$E)!* I$I$E)$! I$I$E)! E)!z L E),!ac'N$I$I$?A   ! hD ޗ  I  﫪$%x" ؠ 0!I$I$E(Clض ɐ!!(!&m!!`說%H$bI$I/I$qb "B!k J ! ٶm0 $Kl!0ضm  `@!ː!! @!j9}ɖ A $c$I$I$ ID @/!)P! "I I!j $H !  $I$! * $I!*  @B#5!b`` mV ! &! $I!* I ! $I @!! 2$C E) pI$!A $I'!ɟ$I!UUխ IJ I!խ "-! @ B%!a  d„$0E) 4d! `8 IH! H$,!A`  ! @(!@  I$! $ d!d  Id!d d!d Hd!d $(!@@ ! x*IZ$!! $&I'!_UUh4M I$! IW$!U i%I$! ! ( !@@  ʑ!,' I$I$$!!* I$I$E)! I$I$1 I$I$E)!* (%)b*$( I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$1 I$I$E)$! I$I$1 @E)! I$I$1 I$I$1 I$I$E)!  E)A` E)!*! I$I$1 I$I$1 I$I$1  E) & I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)$!* I$I$E)! I$I$E)$! E)  I$I$E)! I$I$1 I$I$E)! I$I$E)!( I$I$E)!* I$I$E)!* E)!  E)!5}cE)!=_  n&E)!W-_ E)!Up  E)!/X E)! I$I$E)! I$I$E)$! I$I$E)$!* I$I$E)! I$I$E)! I$I$E)! I$I$E)!* @E)  I$I$E)$!( I$I$E)!* I$I$E)! I$I$E)$!  I$I$E)$!* I$I$E)$! `E)~ &P@%) z  XE)- I$I$E)! I$I$)( I$I$E)! E)  I$I$e)E)5U E)! I$I$1 @E) I$ $e)E) I$I$e)E) I$I$E)!@ I$I$E)! E)!5W PL E) EE) I$I$E)! / I$I$1 I$I$1 I$I$E)!  I$I$E)!* I$I$)( I$I$E)! I$I$E)! I$I$1 lI$e)E) 5 ; e)!~x.n۶f1 -J I$f1!\ I$e)!? lB4$e)E) [$I$e)E) [6`mE) H$ $e)E) I$e)E)* H$ e)E)\p ÒlI$e)E) % I $e)E) I$I$)( Ie)E)3ۀ e)蠀 v$`8! PE) ++B2m E)P I$I$E)!. E) I$I$E)! I$I$E)! ( I$I$)( I$I$E)! I$I$E)! i@`E)b$I$!WUUI$I UUUI$/!* IJ$!U $ (!a @ JP!b, %! (p ! I$I$$!!  I$I$E)! I$I$E)!  E)@ %) I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)$!* I$I$E)$! I$I$1 E)! I$I$1 I$I$1 I$I$E)! HE)< I$I$1 I$I$1 I$I$1 @E)@ E) I$I$E)! I$I$E)! I$I$E)! E)( I$I$1 I$I$1 I$I$1 E)!H @E) I$I$1 @E) I$I$E)! @E)@ E)! I$I$E)!  I$I$1 @E) I$I$E)! I$I$E)! E)!~* (E)Aj E)) @ %E) ^ `E)!+W E)! I$I$E)!+ I$I$E)!. E) I$I$E)! J @%) H E)<  E)!@ E) I$I$E)! I$I$E)$! I$I$E)$! I$I$E)$!  %E)p^ KJ$ H$I$?I4II9@ >- 0_ `9J a* H $!blKd!DI J! $ ,Xd!ɐm۶m I$! 0!zP˟2 ׵}R$I$I$I  8 @!mɒ-!$ (4 @$MI !` ꪿  ﯫ 8! ,!$I 8!mY6!%J$I$I.>c8!  !I$I$! I$I!*  @$! I$I!*  E)  E) $H$! I$$! $ E) !H0LE)  A%!h$I$ə>M ]W OK @!U+  $I! I@$E)a @$ $!  $I$! L!@!* zI$I!A H$ E) "I!A@ H$ ! "IH!A@  @! @d!d $ID!A4 ж-! $Iғ$!ZU'IB>!AZJCR/ $!+> II!U ! $$!ʀ HE!>0 I$I$$!!  $! $!@ !b (! @ P$! I$I$e) I$I$E)! I$I$E)! I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)!* I$I$E)!* I$I$E)! I$I$E)!*( I$I$E)! I$I$E)!  I$I$E)! I$I$E)!  %)!@ E) (E)` I$I$E)! I$I$E)! I$I$E)!* I$I$E)!* I$I$E)!  E)` E)! I$I$1 I$I$1 I$I$1 E) E)  E)@@ PE)  I$I$E)! (  E)& I$I$E)! * I$I$E)!*  E)A@ E) I$I$E)! I$I$E)!  E)!U *E)A X -4E)/  E)* !&E)!+V E)! I$I$E)! EE)A I$I$E)$! $E) E) I$I$E)!+ (E) I$I$E)$! I$I$E)! I$I$E)$!* I$I$1 I$I$E)$!" I$I$E)$! X%PE)  h %) ^x  E) E)8 I$I$)( I$I$)( @E)! I$Ie)E)% I$I$1 sd۶mE)< I$e)E)%^ I$H e)E) I$I$)( I$I$E)! @E)!W lE)?  E) E) / I$I$1 I$I$1 I$I$E)!( I$I$E)! I$I$1 PE)8 I$I$E)! PE)A  I$e)E) %U I$[!e)!J I$1! 5We O'ǓÆ1!^x  dI$e)! /$FHE)  I$I$e)E) I$I$)( I$I$)( I$e)E)* ۶d6`E) 4( AIe)E) % I$H$e)E) I$I$E)!  %Ie)  +$O"E)  MԶh %)A mMdE)  @-ɖe)! I$I$E)! ( I$I$)( I I$e)$!** I$I$E)!( I$I$)( I$I$E)!  E) H II$!!  I$! @! $!A $!A` $! P!A $! DH$!A8 I$I$$!! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$!* I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)! %) I$I$E)$! E) I$I$E)! I$I$E)!( I$I$E)$! I$I$E)! I$I$E)! I$I$E)! PE)b  E)@ E)  I$I$E)! E) E)Z E) $ I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)$!(* I$I$E)! I$I$E)! E)A@ E) I$I$E)!> E)z  E)!_ `%)!zWz  &$! * I0E)!_  E) I$I$E)$!ʪ E)) E) I$I$E)!* I$I$E)!+ I$I$E)! I$I$1 I$I$E)!  %)a``$I$I$I$I$Jy @ +)  0h¤!z^ɐm۰H^ !*. h $!bI pX!ɖ  I$H! %!^o$!a@$I$I$IH: }!]W׵%P0  `@#&I `/H !J$%C( 8@pItI!("a@@@A! 4(I z  !&!z_i{&%@$I$I$Ic: IHlE !*@!I$I$! I$I$! A$I$! II$!* F! @@$! $I$!!J H! I @$!* $-! x $1zP!zWLb[$A`y\'P!Uխ  @$ !+* IA$!* P$%I!  &I$! I$ $!  $I!*  E)  h!! &I! I! $I&E) $I$$IE) $IH&! I&!_ H$)OXI!4辊|PB WzU&9#!bj IH$!  $<! J !!4 ! I$I$$!! I$I$$!! P ! I$I$$!! I$I$$!! I$I$$!!+ I$I$e) I$I$e) $@$! I$I$$!! I$I$$!! $!! HE)!W $$!!` $!!7 I$I$$!!>> I$I$$!! I$I$E)!ꪊ I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)$! I$I$E)! I$I$E)! E)j  E) E) I$I$E)$!  hE)A( I$I$E)$! * I$I$E)$! I$I$E)! I$I$E)!(  E)@ E)  E)& I$I$E)! HE) E)! n $E)ap I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$)(  E)  I$I$E)!` I$I$E)! E) E)!^ L &%)!UZW `E)!+W} @ E)* I$I$E)!*+ PE)  E)!Hb E)!* I$I$E)!+ I$I$E)$!* I$I$1 I$I$E)! I$I$E)!* E)(4( I$I$1 I$I$E)$! * I$I$E)! JE)z xJ&!*8  pE)a  I$I$)( I$I$)( @E) I$I$)( I$I$)( @E) I$H$e)E)5V\ I$ $e)E)͵ I$I$)( I$I$)( E)! )@%)aBj PE+@!* E)* ȁE)A,4 I$I$1 I$I$E)! ЁE)(84 I$I$)( I$I$E)!( I$I$E)!* I$I$1 I$e)E) 5U H$ E)!e ɑ$I$1!%W_e M&`1! @R$I2E) *h X$@e)! I$I$E)$! ضm1mE)  A$I$e)E) I$I$1 I$I$)( H6s E)< I$I e)E)ᆰ I$I$E)!(kڡve)*ZmE)Р mնJ$$! * ۰mޖnE) j+/Je) I$I$E)! * I$I$1 m۶ E)a I$I$E)! ( I$I$)( I$I$E)! I$I$E)!€ I$I$E)! I$I$$!!   !A I$I$$!! I$I$$!! I$I$$!! I$I$e) I$I$e) $!A I$I$$!! I$I$$!! E)!u E)!u @%)A*6 $!! I$I$$!! I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)! I$I$E)! I$I$E)!* I$I$E)!* I$I$E)! PE) I$I$E)! E)! I$I$E)$! 0 E)b e I$Il1E)W}J I$IІ1%) I$I$f1! I$A$E)! I$I$E)! ۲mضmE)@ E) I$I$E)$! I$I$E)! @E)P I$I$E)! `E)@ pE)! I$I$E)!* @E)!8* I$I$)( E)  I$I$1 I$I$E)! I$I$E)!* I$I$E)! I$I$E)! I$I$1 E) & I$I$E)!* E)!_ !$E)!Wz I I$$!+ `B E)!+UU E)! I$I$E)! I$I$E)$!* I$I$E)$! %)a I$I$E)!  ,E)x ߤI$!H$I$\WI$Ib/ O/Q A*(I !ِـm+ +`6$@NƄK!$$$$a b ۖm۶  4hڤ (0( R@ @=!z^i1I$I$!( I$I4( UU!@! CdI$!Aj0`bb ې$Il! @*&!_r1`I!IĖ !.&˰ ۰m R$hҿ App$I$I$I$H>D`!! A@ aI$I$!I$I$!I$I$! d$I!*I$I$! $C$H!* I$I!* I!ZW`D!&!^m^Ƃ$( i" !j!I$I$! !b!  $I$! I$E) $ ")!!@ I!A I@$! @$I$E)a $$ A0E)  @ж5!* $IjD!^'<!zWZ !L jW t$ !^ .)!mj ! I$I$$!! @!p I$I$$!!  @!b @$!!J  $! I$I$e) I$I$e) $$!!` $!!s $!!x I$!! (l! $$! B!b $!!= H$!!V %)z* E)!U HE)!W HE)!Uz I$I$E)!] $E)!*.U @ $ E)ap I$I$E)!* I$I$E)! I$I$E)! I$IE)! I$e)! I$$іe)$!mܾ0Ie)  I$ 1E)UUJ I$O1E)J I$1!e I$Ia1!J I$I1%)wW. I$I:f1$!` I$I E)!  I$I$E)!* I$I$E)!"*  E)a I$I$E)! " I$I$E)$! E)!j E)! I$I$E)!( HE) (& I$I$E)! E)!@ I$I$E)! @E) I$I$)( I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$E)!* E) I$I$E)! I$I$E)! I0E)!U^ @H%)!_Wz !$! .+  $E)!+U I$I$E)!/ I$I$E)!* I$I$E)$!**  E)@ E) I$I$E)!* I$I$1 I$I$E)$! * P%)( I$I$E)! I$I$1  E)@ ME) n  XE) I$I$E)!* I$I$E)!. I$I$)( I$I$)( I$I$1 mmҶE) P I$I$1 I$I E)! ۶anE) I$I$)( I$I$)( I$I$E)! E)!W HTE)ͯ H E)b6* I$I$E)! I$I$E)$! I$I$E)!  I$I$E)! * I$I$E)! I$I$E)! I$I$E)! * I$I$E)$!$B$IE)@mE) e I$I$1!%^e1x 1`me)! / X,e)E) K$I$e)E) I$I$)( I$I$e)E)% I$I$1 I$I$)( X6f۶ E)  I$I$)( PE)a $ `2 e)$! [lE)Xࠀ _{&!! *x ۰ nE)+- H$ E)! I$I$E)! . I$I$1 I$I$E)! I$I$E)! I$I$)( E)A I$I$E)!` I$I$E)! I$I$e) I$I$e) $!!$ $!!v @$!!^  ,$! $! =! $!!U I$I$$!! $!!  @E) E)!U E)!U E)!+*W $E)!W $E)! U  %)! & I$I$E)!+ I$I$E)!* I$IE)! I$IE)! I$۰me)$! I$$e)!Ik If1b. I$%1E)ժ*J I$O1E)_J I$I1! $I$1$!*z.'1a*ze [$I$1E)WU]e ؚI$1! e I$1$!e Iɝ$1!*e I'$1$!e I$1$!_ J I$I1! I$I&f1! I$I$E)! I$I$E)!  E) E) I$I$E)! X%)8 I$I$E)!* I$I$E)! I$I$1 @ dE)И I$I$1 I$I$E)! I$I$E)!*  E)  I$I$E)!* I$I$E)!  E)@ PE) L$E) U^ `H %)!UUUz kӶE)+ E)  E)!& PE)  E)` O$!\VUUI$I$I$I$5- W" em؉   ? H * 9ra@0a $!b 4h*I-P J("E ! @&!z^pDm'h$I$8ID A* .f$cB  Hڶm( 0[I˖, ۰ !kl8 m;vb!P &L j^Wc8J$.I$I*.IN$  m!!99!A   " A@  A H a4! H$I$! *%+ !A`! 4!A`%I A*@4H!{VO!խ@!ڪI$I$!$!$ !I$I$!I$I$!  $! $I! $CI! A$I$! I$ I0! @$1! z $|!W%j!_^%I!^ի MI$!ׯ  I!* d!d Ad!d $d!d H$!!pW P"!A I$I$$!!/ * I$I$$!! I$I$$!! **  $! A! I$!!կ @"!` @!a H$!A8 !A  ! @!  I!a '! W @R$!A HI$! >IN$!b $I ! $!* I!U I6H$!գ  A%)!U_ $!!' E)! U E)!} E)! U `۶$E)!U $E)!U E)! ۰l۶mE) $I$E)!* I$I$E)! H E) $( &I$e)$! $I$f1$!oJ$f1A e I$1E)uJ oI$1!e I`I$1!J IB'$1$!e I$1E)UUe I$O 1!. I$I1$!ߠ I$I$E)!* I$I$E)!*+ I$I$E)! E)A4 I$I$E)$!*  %)A@ E)! I$I$E)! I$I$E)!+  E)` E)A I$I$1 I$I$E)! @E)A I$I$E)! I$I$E)! I$I$E)$!**  E)A& @E) _ !$E)!UU_ -6! 芨 PiѶE)+ @"LE)R E)@ E) I$I$E)! E)!j E) I$I$1 I$I$E)$!* h%)A8 I$I$E)$!* I$I$E)$!* @E) I$I$E)! @$! I$I$E)! I$I$E)!(" I$I$)( I$I$1 I$I$)( I$I$)( I$I$E)! I$I$)( I$I e)E)~ I$I$)( I$I$E)! @ E)!W_ $@%)6  E)!V  E)A.& I$I$1 I$I$E)!  I$I$E)! * I$I$E)  I$I$1 E)! *` HE)(& I$I$e)E)%UU X-ٖle) e I$I$f1!-_~e H$1!x  ɐdI$e)! / @,e)E) I$I$e)E) X%۶mE) H$ e)E) I I$e)E) @E) ` K$Y`E)!  7l۶mE)4 I$I$e)$!* X2,e)$! @E)Zh $!-5 -me)  I$A E)! XE) ( I$I$1 I$I$E)!( I$I$E)! I$I$1 I$I$E)! (( I$I$E)!耀 @$!!^ $$!!_ J !@ I$!  @#<!! ` $!  %@H!b R$!x $! }$!A iI! $I$! $IU! }$! IT !U I! E)!u $E)!W E)! $E)!W E)! U m۶$E)!U E)!U  E) @ ۶me)! @$I$E)! m۶-Ҷe) @mmE) X$!! E)p* I$I$E)! I$I$E)! I$I$E)!꪿ E) I$I$E)! I$I$E)!  I$I$E)!e1aZJ I$1! J1AJ I$܆1$!׀+.1 I$I$E)! I$I$E)!* I$I$E)! E) & I$I$E)$! I$I$E)! E) E)! I$I$)( I$I$1 I$I$E)$! I$I$E)! E)@ %)A $ I$I$1  < I$I$)( E)  I$I$E)!~   $!  ö-!  E) * aI@%)n E) I$I$E)!* I$I$E)! I$I$1 I$I$E)!* I$I$E)! I$I$e)$! * H$A$E)!`e I$I$1!%W_e'of1! P $%)!8hme)` I$I$)( I$I$e)E)[y I e)E) E)A I$H$e)E)TX I$I$E)!P I$I$E)! I$e)$! * I$X$E)!p IP %) " E)C*+ a E) I$I$E)! . I$I$1 I$I$E)! I$I$E)! I$I$1 I$I$E)!(  E)@@ I4%)ꩣ d!d D!a d!d  !a@ I!A  Cd!d !$!! I$I$$!! H !  I$I$$!! I$I$$!!* !$ 9$! I$I$$!! I$I$$!! I$I$$!! $$!!W $$!!_  !!@ P! I$I$$!! $$!!^ H $!A4, $! I$I$$!!( H$! EP !a $$!!u* $!!+ H$!!׀ R4!` $!* $!!  I$I$$!!* I$I$e)  $! %)! I$I$$!! I$I$E)! I$I$E)!  E)* I$I$E)!x I$I$E)! I$I$E)$! ,%)` I$I$e)!  ?e)!X~ şe)! mێ ;E)! x <E)` I$I$E)! I$I$E)!* I$I$E)!>? I$I$E)! @ \E) I$I$E)! (E)@p H$I$!{I$I$VI$I-- PI$ih$!!- 4$!BHDI(I$I$$!B A  M$!BH$@*$@ 0 `I   I$I 8A$I4.I$I* @  H$!B4h$!!@$I \B&@`,(b7 H$I@ $!BR$J; HҤm&ND b$(Hĉ98.  J _յ00Aa6,Hd!Im؀!  `d ˒m! !$ ! (z!zWɑσ! *HT! !Vl0 !,ؖ 6 D!H!R% AP !Ȱ!!!.$@ !`pUÄ! K$!A =ON!XսIu!A & I H$!* P*$! L„$!( H&I!* I!* ,!` B"I !Ap @@$! $I!* $\! ALE) жM-!* HR$!!&I$ ! O$I ! It @!U $$I! $IHE) dE) !$! I! $!E) "!A@ ! I$I$d!d I$I$d!d I$I$e) I$I$e) $!!*u 2$!!(U @B$!!_ D$!!] H!`  $!!} $$!! ! I$!! @$!!_* $!! I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!! ʥ !!, $!! @$! @!@ I ! @&$!!U $!!~ $!  K! $!! _ I$I$$!! I$I$e) I$I$e) E)* I$I$e) I$I$E)! I$I$E)! hE)( I$I$E)!* E)! I$I$E)$!* I$I$E)!* E)*  DI$e)!  ?e)!p v!~_ k&ɐ@!A-  X$! z JST !+ !A$I!+L!& I$!* IH! I !  $E)  E) B"$I!` $5"I!A`@ H$I!* $I&IE) J %!!4 $5O$!p$I I$$!+ I%P! $I! H !* $R"I!PP $$I! L!*  $! $AR%! A$d!d P!A $d!d d!d LHd!d &$d!d L$!!Uբ_  @! @$I$!!-U I$!!կ d!d $d!d  $! *$I!a@ p(ҲI!a B` `$I! Mڶ! hR#H!a` mi! @a$!! U I$!!U I$!!VU ! $!!/U  I$$! p$I!*  %! 4)!B I!   $!!q xDH! 8$ I$I$$!! $!! !( $!! !0$!!_ @ $!!\` $$!! $!! I$I$$!!+ I$I$e) I$I$E)! I$I$1 XE) I$I$E)! I$I$E)! E) I$I$E)!* I$I$E)!x mm۶e)!-_ hӢMe)!x~ E)!)p $E)!^ I$I$E)$!  %)b@ E)  E)4  E) I$I$E)! I$I$E)! I$I$E)!* I$I$E)!* I$I$E)! E) `E)~ I8b,$!  $E) U E)! I$I$E)! I$I$E)$!* I$I$E)! I$I$E)! I$I$1 I$I$E)$!* I$I$E)! / I$I$E)$! * I$I$E)$!(. ɑ$I$1!%J/1- ۶ecmE)a( I$I$E)!(( I$I$1 I$I$E)!* I$I$E)!  E) I$I$1 I$I$)( I$I$)( I$I$E)! Je@E)W  n$! * E)! . I$I$E)! I$I$1 I$I$E)!( I$I$E)! I$I$E)!P I$I$E)$!* E) I$e)E)5U I$A E)!peɚI$1! 5W6saE)A( I$e)! - I$[2,e)E)P ø%۶mE)!p $I$e)$! * Hm۶mE)A I$I$)( A$I$e)E) @E)ap E)  C%ɖde)! `E)蠠 k!? mme)! +/۶|7lE)b44 I$I$E)! I$I$1  E) I$I$E)! I$I$1  E)A& @E)!\  !A @2d!d  d!d  d!d d!d aB$!  $!!]r^ I$!! U $ $!!_z $d!d 0d!d  $! H$I!A: J4I!b I$! in! IJ !( i[$!* I$!!U $$!!@U I$!!UU `$!  @\$I!А I0!* L$E) UU P IE)Z dE) mE) m۴0E) lE) IE) ٦E)* f! $! * J$!T I$I$$!! @$!!^+ $!! H$!$( E)! I$I$E)! I$I$1 @%)@ P%)  pE) I$I$E)! I$I$E)!ꪫ I$I$E)! I$I$E)!* E)!5^  E)!\~ E)!+x E)! I$I$E)$! $X$%)`pI$I$sI$I$ I  "8r$ $!AI I$!!E&M$!!i$MҢ mP $!!hi$@E[I$ ې0 * 3'N$p\UIb'N(%K$à(I$MbA H I$!!-P@$!! E۶$!!I$I$$!B 4h$!! h۶$!!H $!B @$!I A$I'( Hıc'( vb`H  $!bm[ #'X m۶- ,'NK $I"!ɰm  A>!~^ }D)T,!Ws ϕJ!rTսDIR 0` M@&h)P(I,)   (j !jz Ibذm[ I !.&(6|  M &!b\ PyI!pV aB $I! I$I$!I$I$!I$I$! II$!* L$I! &(  E) @H$! @$I$! II$!* $ $!  @'! ^ &I$!^UUI$I! IP I!U 4hڶm!+ H$ ! * I@$!* $I!* I$!(  A$! * @$IE) I$ E) HEH! PH! 2I! $$$! IBE) Id!d $ d!d  I$! $d$! hۺ-! m[5!  d!( $I@! I"! I$! D%)A H$IE)a4 I$E)!UU k3`E) IIE) IHE)!UU JE)!** E)A I$I$E)!U LE)!UU E) I E) !$E)!*UW ۶mE)  E) k mE) m6E) %E)_ жK E)  Kh$! ۔-$! ! @4 !`  $! $!!h  $!!x  $@$!` IE)! I$I$E)! I$I$1 I$I$E)$!* H%)$ @E)j E)! I$I$E)! I$I$E)! I$I$E)! @E)!_r @@E)!b5^ 0E)!X  E)! X I$I$E)! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$1  E) I$I$E)!* I$I$E)$!( I$I$E)!* E)!@J -E)W{ 6m! j '%) I$I$E)! I$I$E)$! I$I$E)!*  E)B( E)A  E)@ %)b I$I$E)!* I$I$E)$!* m۶mE)-J x'I1!-J I$I$1!x I$I$E)!  I$I$E)!@ E) I$I$E)! I$I$)( I$I$E)! ( I$I$E)! I$I$1 E)! K `%)  IS#)!{j  HE)A * I$I$E)$! I$I$1 E)!* I$I$E)! I$I$1 P%) I$I$E)!(  II$e)E)-5U I$I E)!x`e I$1/eI$H$1!W\{  e)! - I$H$e)E) I$I$)( I$I$E)! I$I$)( 6lxE)$ I$I$E)! I$I$)( I$I$E)$!*(L)HJE)4( P @E)^ P&$! j ۖmE) E) ( I$I$E)!  I$I$E)!* I$I$E)! *& I$I$1 I$I$E)! I$I$E)$! H E)!WVxz  Id!d $Id!d H2d!d $ $! $L$! mkf! md!  A!. m۰u! IH&!* &)$!B JE)A $IE)A* !E)! UU kiE) imE) @"AE)k )"E)j E) E)!UW IBE)!U kE) @E)*  $! $!A I$I$E)! k E) * [ E)_ m%%) E) vM lE) ɴ-E) ! hE) &%)*  d @E)ߨ 4$! t$! I$I$$!! I$I$$!! 4$!` E) I$I$E)! I$I$E)! I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!ꪪ x %)  E)b @E)!-^a  ¢&E)! I$I$sI$I$I$I$  0 4@&$!!I$I$A $!!6MҤ$!!$!!mK`;@E&Mmm۶Id 6d@*%N$pXWUI'O`. $H$a`I$IK,%8w @$`IA!I $!! 4h$!! @&$!!mm&@"i$bI$AOA&!M$)$A J$%I$I** -@I(  @ $!b 4@$I*I$!bJ$I"E ! У!^ MH%!%kX Xy!\ mH$!([ӴKÆm< HI$!b$I, )+@A!H$I!(RP!&!~_ mҤIr$!r Q$z!!ҠϙR!!I$I$! $A$)!n!I$I$! $I! $I$Ʉ!  I$I!$! `I$I$!@$!$I$!xWUU I$I !UU IJI!խ  $I$! II$!* @d! "%! `( $I!  IE)a I$ E)a I$!* L$! $IH!* I$!  @$I! $! 2E) I $!* IR$! $I$!W@|$!I! $9 @!UM!Wի I$! i۶m!* $I! I@!* I@! K ! $!! I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!!** P$!A I$I$$!!( <$!A` $! I$I$E)! I$I$$!! HE)b E)!տ @E) IE)!U `E)* 6E) m E) 4[m%) c0E)ߠ+ 1 E) nXE)  !E) z$! $!! I$I$$!!. I$I$$!!.  $!a  I$I$E)! I$I$E)! I$I$1 I$I$E)! I$I$E)! I$I$E)!ꪪ I$I$E)! I$I$E)! @@%) @ E) E)  $IE)A* I$I$E)!+z I$I$E)! I$I$E)$! I$I$E)!* pE) I$I$1 I$I$1 I$I$E)! I$I$E)! * I$I$E)$! I$I$E)$!* E)z 'P6! Ъ pOE)+U E)! = I$I$E)! @E) @%) I$I$E)$!* E)!* @$%)! I$I$1 I$I$E)$! I$I$E)!⪨J AI$1!b??<1!p E)  I$I$E)! I$I$E)!* I$I$E)! I$I$)( I$I$E)! (  E)@ E) I$I$E)! H@E)孪 DI$ *  IE) / I$I$E)$!"  E)A I$I$E)!* I$I$E)$! XE)8< E)!  E)@ mېmE)  13ضmE)!騀Jyf1 .JI$O$1!V\  e)! I$H$e)E)}Y I$I$)( I$I$)( I$I$E)!( I$I$E)!( I$I E)! E)  [%E)a I$H E)!  %)^ 0 E) + A E)!€ I$I$E)! . I$I$1 E)&  E)A@ E) I$I$E)!*( I$I$E)$!( I%)T $Iڞ$!I$ z* D! &$!!W $@! $!!u L$!!U $! $$!!_ $I$!!UU $!! I$I$$!! $$!!U $I$!!UU  $!!x $!!  $!!(U A$$!!(][  $!!(u  I!$ $!!& I$I$$!! I$I$$!!*. I$I$$!! I$I$$!! I$I$$!! I$I$$!  E)!j E)! I$I$E)! I$I$E)!ꢫ I$I$E)! I$I$E)! E)z* mմE) J@%)_ 5T{!=x -E) W{ TE) E)! I$I$E)!ꋯ  %)A*& I$I$E)! I$I$E)! I$I$1 @DE)b I$I$E)! I$I$E)! I$I$E)!* E)!^* D„@E)!UU^j ]۶E) $ %) ` I$I$E)$!*  E)A` E) I$I$1 I$I$E)$!** &PE) I$I$E)$!* @E) E)!|* M"%@E)U^z Ґ I%)A** E)! I$I$E)! H%)A$ (%)a`` E)! I$I$E)!ꪪ I$I$E)! I$I$E)$! I$I$E)$! II$1!- I$A 1!  E)!@ @E)  E)A  I$I$E)! I$I$E)!  E)  I$I$1 I$I$1 DHE)A, L&R>! I$ *  E) / I$I$E)$!  @%)@  hE)a I$I$E)$!  E)A E) I$I$E)$!* H$I$E)!.I$I$1!W^.I$A71!V\SI -mE)! 5 I$@$e)E)p` I$I$1 I$I$1 E)!@ ضmٶmE)!  I$I$)( I$I$1 I$I$E)$!*( H$A E)! h4`E) nE)+/ I$I$E)! I$I$E)! /> I$I$E)$! E)  I$I$E)! E)b  @E)a@  E) H$!A$, EP(!00@ ! I$I$e) I$I$e) I$I$$!!ꯊ  $!   ! $!!U I! I$!!U  $$!* @$!! $H$!!WW $ $!!U $!! $$!!_ $@$!!*U_ $I$!!U* I$I$$!! `$!!W @ !! 0$!!X   (!(`  d!d  d!d l ! v!( %R!!Р  $!! $!!  I$I$$!! I$I$e) I$I$E)! I$I$E)! I$I$E)! I$I$E)!  O$! f E) I$I$E)! * I$I$E)!ꪪ Z@E)^ D E)~m />!z_ Nk^E)/_ WE) E)!% $E)x H$I$!v]I$I$I$I+I6m$ &I$I$( I$I!AA$H$A@I$I$* II b&H$I$!AI$I$!AIi[4$!!H$I$((Iɑ /R$I$!I$I(  @$!AI$I$!AI$I$ $I$!AII$H $H$I$!A$!AII$ O 4!/Hɓ$ H$ AI "- $!B@ !  I$ $HdɖmII* I$ ң&͕!__ &j۶!m9 ذ!۲m((ТE&$!!1dI%$I *  8p#[6`@xA$I$I[, (6l! I%!A% ӴJ!\`$[ ɕ$! 0`@d!K ۰ I$I$E(C !$Kl! $H A/ @$ !h!j^HY2' }@@!_խ@$ !ض, Ȳ!K!4@ `0!$!-`!I! !D2!$|$!zWH$I$!*I$II !Wկ IR$!*  !+  2I!  J$I! J@$!A$ J!  I! $d!d @!   !  @$!!x @0$!!+] $I!a  C$! KI!b &$E) $R+%! J$!b d!d d!d $ ,!a` @I!@ )!  JФ!$ $! $!U $!U $!U w! t! X! + ȠD!$  @$!!ׯ 0d!d $! d!d  d!d 0i !.  ! !B ! $$!!+U I$I$$!!( I$I$e) I$I$E)! I$I$E)! I$I$1 I$I$E)!* @d%)A Р  %)b  I$I$E)! I$I$E)! E)z* 5E)^ Z\IM !ޫ дRK!/  E) W E)**  E) (` E)!) %) I$I$E)! I$I$1 I$I$E)!ꪪ I$I$E)! I$I$E)!  E)! X`E) mڶk E) M6E) E)! I$I$E)!ꪊ I$I$E)! . I$I$E)$! ( I$I$1 I$I$E)$! I$I$E)!*  E) @  E) Z(E)^z W͋! 5\  PE) * $%) ` I$I$E)!jʪ %)! I$I$1 I$I$E)!ꪪ I$I$E)! I$I$E)$!** E)A . I$I$1!5_. I$a41!s  E)@ E)A I$I$E)$!* @E)@ PE)A I$I$E)$! I$I$E)!  I$I$1 X`E)\ I$R)!I!b P-E) /? I$I$1 I$I$E)$!* I$I$E)! E)@ `E) %)b I$I$E)! * -E)O'f1!Wx=f1!VTR 6lE)! I$H$e)E)UWTX I$I$1 E) I$I$)( I$I$1  4E)` E) I$E)! *( I$H$E)!x` M[ !.  E)! -% I$I$E)! I$I$E)$!  @E) E)(" I$I$1 E) I$I$E)! * I$I$E)!zj I!A` $I! $R/A!p !I&E) HE) H!a 9@!a $$!!_  d!d  D! P i!AР 6!  <!bi $!! $!U $!U ! .! N! &!!@ yն@! ۖ&! B3$I! ` $AH!  $!!m "@E)j E). AE)!U I$!@ $E) B$!!` $! $!!~ $!!  I$I$e) E)(*  E)!jk E)!ꪩ I$I$E)!ꪪ E)! I$I$E)! $@%) @E)* =E)^ ӮM 5$!_x Tk%)-W} h%M$$!!ظI$I$>CI$I$a* BII $I$I$ I$I$ I$A$I$I$I$I$!AA$I$a`I$H$II!A@$H$((I$I8A#$H$ cI$I(* 6m$I$I$A I$I$ (I$H$I $!AH$I$ H$I$!AI$I !AH$I$I ! A*B`$I$ I !AI$I$$!!-P-"$!!@I$!! $!B 4$!BH)P$!!۶ l*H *  JmJ!aت* JT!CP6,X@$!BP@&a@M!I$I$$!B`$K l/ذm۶l(mb*  kM !_% 0P! xR'AA!$ؖl!H $!bض !ɖmۆ   0@% ` RTI I H   %!^$6!ky&I a  q!" +` !I A PD!@!l۶m  !%!%0! 0! ! T&!A&H=O$!^UN$I I$!U* 9EI H!* I I!* @$$!  A0L$! `$I!* I! m۶m! II! IE) $I2! TH!! &I! LD !!< $P.$! $0$E) $ -! $!  j$!Aj $II$! 'I$!$I !߫ $I" !] I$ H!b I$$! I$!W I$!Aߺ Im$!A I2I!U I"I!U I"I!U I"I,$!` I6"(! @ I$! Iڶ! $& ! ol! J$@!A   E) E)! M% lE)a HE)!W  $!!  E)* $ E)!U}  !A I$!! U $!! I$I$$!!  $!@ E)! E)! I$I$E)! @E)! I$I$E)!  E)!jj E)a rE)W ]tZ@$!~ 9'T!5W} 2%)!@ * P)E)   E) I$I$E)! I$I$E)! I$I$E)! *$!  $!b "AP@!@  $! I$I$E)! M E) Un%)/ hE) E)! I$I$E)! I$I$E)!+ I$I$1 I$I$E)$!* I$I$E)! * I$I$E)$! I$I$E)$!* `E)z耀 `{!/~ "dE) HE)6< I$I$E)! I$I$E)! I$I$1 I$I$1 I$I$E)! I$I$E)!/ I$I$E)$!*$A$Ʉ%)!$ ۆm71aJ E) I$I$E)! E)(  E) I$I$1 I$I$E)!*( I$I$E)$! I$I$E)$!* `E)xI$j4! ߐwId!b* E)  I$I$1 I$I$E)!* I$I$E)$!* I$I$E)$! I$I$E)! I$I$E)$! I$I$E)! * E)!\p`u:e)A j  PHE)+* A E)!  HE) 6( eP E) I$I$E)! I$I$)( I$I$E)! ( $E)bP I$I$E)! Y- de)! @E) LPL!! E)! - I$I$E)! I$I$E)$! I$I$E)$!** E) , hE) E)( & I$I$E)$! H0 E)!W^Zj $IA$! $9!~ @$!  HO$! $I$! $I$!׿$IB _ M$I"!׿ I$I!b I$! I$!U I!a} IM$!A I"I!U" I"I!U I"I! I"i! j( IҤH! Iҿ!U  d!( * @ $E)   d!d H !!8 PEI!  @$!!֯U E)& mmE)! II$e)!* I$de)!  I$NR`1! I$I$E)!  E) * I$I$E)!U  $!!- @ $!!-W` $E)!] I$I$E)! I$I$E)! I$I$E)! I$I$E)!  $! I$I$E)!  %)` E)!z ($E)j`XI$I 'H$I$/I A$I$(I$I$I$I$I$I$( I$I$AP $I$ I$I$@ $HA$I$I$I$8 *E$ I$I$I $ I$I$! I$I$(I$I$ I$I$!AI$I$ ( I$I$! I$I$!AA$I$(Iɑ!/D'M$ brI$I im۶$!!mٖl!I $!BKd2$hҤmѶ$!!@ $!! $Ap$IJL$  %H!cX!ƍM  4h$!!I @$$!!M$!! $!B@$!!C$K?ض-˖ /aH:z ӧA!_5 z!IRȼ!-Ƕ[ bJ. !@IQ( ٶmۆm 0l۰! 8J!Id ۶e !0xD!zVLD( (L\! aj* $"E a(DA a #'`A!1 $I!I$  $@= `$iQ!D " !kj) A b'! z 'I$ _}I$I IO( !ս*!%! $I"%!bx $II! H$I! * I$A$!" $HJD!A(  %!! R$M! $I$!  0I$! $I$! I$I! d$ &! $$&!_  Hk$! $6I$!P$I! I$I.  I$$A! IN$I!* I' $I! i [v!+( H$)! (TI!@ H$I!  m! *  $$! H@E) IB! IB! ! d!d Ld!d @@$I!` Y7 m!#  $$E) 0$$! @$@2d!d  E) ,$I!@  H$!A @ I! &$@+E)Z E)!+ II$e)! I$$e)! I$v1$!w* I$I91!  XE) I$I$E)!WU HE)!U_ $!!~  $!!% E)! I$I$E)! I$I$E)! I$I$E)!ꪪ H$!  I$I$E)! I$I$E)! E)  @E)^ oۤPH%)um6}$!!j P'%) )U E)* I$I$E)! $$!!/X $!a4 $!!@  $!A  ! I$I$$!! / ! A %)! * I4h,$! 0͐%) I$I$E) * I$I$E)! I$I$E)!/ I$I$E)$! I$I$E)$!** I$I$E)!* I$I$E)$!* E)(& E)!~p MP!  E) +  %) I$I$1 I$I$E)!  E)@ %)! I$I$E)!  %)A  %)!,& I$I$E)!*ǟ1! I$I$1 I$I$1 I$I$E)!* I$I$E)! I$I$1 I$I$E)! * I$I$E)$!" E) @E)~I$I' * I$! + E) I$I$1 I$I$E)!~ꢊ E)!*+ I$I$E)$! I$I$E)! I$I$E)$! E)!  `$E)!W^X`~r<91!ZqM !E)! -5 ǰmE)!  E)@ E) I$I$)( I$I$E)! I$I$E)! I$I$1 I$I$E)!*( H$A$E)!   !A  E)!%Z I$I$E)! I$I$E)! I$I$E)$!* E)& I$I$E)$!  E) $ I$I$E)!* %) m$JM!( I$y%! I H! IRI I! &@$I! !H !   E! hD$I!( mm! $L$!( H$E)  AIB2! IB! Id!d $d!d I! H $I!A4 !@$I&E) @$$! )`! ? @!A  L! IB&E) &! $&d$!!UU $II!*  $$! @ d!d J@!!4( a۶E)!*U $I$f1!UU M2I$f1$!Un-vf1b * I$I,f1!~ I$I$E)!+ E)!_ @%)A H $!!-Wa  & !!@  E)j E) I$I$1 %)j @ $E)AP H$I$!\t_I$H$AмI$I**A$I$I$I$* I$I$!I$I$A I$I$ .&I$I$I$I$( I$I$   @$I$I$(*IH)$!?H$I$I$ * H$I$! I$I$I$I$( I$I$! I$I$ (I$I$I$ $,' I$I$``(I$I /$H$ I$I$bI$!Am۶m$!!E&M$!!I @ mZ4$!!h$i&`@Aٶ 0 * O¤}!AV* W˖!yx$ȀD $H$!!-P hҤ$!!IA&@m)b4h$!!II&I$ٶ  @,% Z m_Pi!_/  K$!!I l/Ld  $mѢE$M)( $!b$I,9 @&I i@"E $ P'"!~Vm<$N ( mH $!b,k/I( &۶mK ۰ 8r!NI!$  &!_ =&I$I$I x* I)K!!b'%!A  I$I$! .("I @H ! *h%!A H$I$! I$ !*  %II! R"A4I! $ID AI$I$!(!z @%$!*U $=I$!aw`$I I$ ! IT H! I$ $I!*  I$! $I$!  $I$! I$I! d$I! I$!! " !A@ 4 I!! I`! ( I d!d  !! !b P! $I$d!d H"I!A  AI!-7 $!! - I$I$d!d A$d!d xD! ( ҅P !  ! d!d I!  $E) $$$!  I!  0$Ʉ!( @! $$"!` %)!U $I$f1! UU I$f1! U Ƕkۆ1!( I$K1! I$I$E)! I$I$E)!/  %)A@  ! $$!!-W *$!! *%) I$I$E)! I$I$E)!ꪪ ? E)*@ %)  I$I$E)!* P@E)^ I$PhE)UU^I$I$! * P I$! *z ! H,!(@  K !b& $!!% H $!b, H$!b @$!! X $!!% $$!!/P M $! 6]$!Aj RE)ʣ / E)( I$I$E)!/ I$I$E)$!+ I$I$1 I$I$E)! I$I$E)! I$I$E)$!* I$I$E)!x* M&@E)^z P)E) +  E)(B E)! I$I$E)! I$I$E)! $%) ` I$I$E)! *%) I$I$E)$!** ؾ؆1 . ?oe) E)! I$I$E)$! I$I$E)!* I$I$E)$! I$I$E)$! I$I$E)! *  E) I$I$E)$!* hE)~I$I$*>  io%) . I$I$E)!*) %) & I$I$E)! I$I$E)!ꪪ E)  I$I$E)! h%) I$I$E)! Ovb?E)!V\lT[E)l IH E) -6> I$H$E)!( I$I$E)! E)  ) I$I$)( I$I$E)!( I$I$E)! I$I$E)$! E)b m6he)!Zx E)!z% @E)! )% E)!`` E)! I$I$E)$! ** I$I$E)! *( E)  I$I$E)$! I$I$E)!  E)!Zzj @$I$! @I$!*  $IB! I$I!* I$! J"U$H! I!  E) @$d!d  !b I$I$e)  H@!b  )"I!!@ PHQ"%! `  ! I$I$$!! @d!d  I"d!d @!@   ! d!d  !  (!` !  d!d `Bd!d L@$!  I&$! $d!d L!A&. @d!d @$$!!*[ I$I$e)! ] XI$1!+U I$$f1$!mҶm+f1^ E) @E)!W $$!! Wz $$!!5W I$I$%)! I$I$1 <@$E)`pX^I0 $.bI$I$' I$I$I$I$(* I$I$! I$I$I$I$I$I$! I$I$ 8I$I$! I$I$!AI$I$(*II /`$I$ I$I$a &.I$I$ I$I$ I$I$* I$I$! I$I$I$I$ I$I$.I$I$(I$I (90P$!yZWI$I$` $I$Ii$!!$H$!A $!!m6$!!h$I4b@mIA  $!! m$I!_W% (h!r\W6,[$I$E$(-Z4m$$!!IiҤ$!!mm[@ 4maI@$!![$I?H '( }$(!7b Pɛ!AmRK!ڪF-@0Ii* I$!B`htm/ K%I !@R$!zHAb$ bP ^ե %NX  ؊& XP`fs2& I$!b IR$ zWPD1`!lK! L$!a*6M$ zH$I-IyY ׿*D!!¨ $ ! !I$I$! !j! $I $!* I& I!! $! J$HR$!~U&I$!^UUL$II$! IJ$I!g  I$I! PJS!a($! $$$ ! $! IB $! !@2 2E) HD$I!A( E) $$HE) T !  IHE) d2 ! H! "A$I!@  I! $!  JD!A4< $d!d @$I!& @$$! $$!!] H0d!d  d!d  !& d!d PH! @  d!d !  d!d  Cd!d $!@! I0!* $ d!d $R%!a $E) d!d E)!/U I$1!UU I4I$f1!^+c۠mBe)j ɶmۆmE)* I$I$E)!+ I$E)!W^ H $!! W E)! I$I$E)$! I$I$1 %)b` E)!) I$I$E)! E)!r ji$!^ I$j!{ dI$!-UU  |$! - $!! H $!!T`* H$$!! X I$I$$!! ($! I $!!q @"$R,!ap` ! X `! K%!/VX  D%) I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)$! I$I$E)!. I$I$E)$! E)!x* O+ %)^  d$!+ X%)a: I$I$E)! $! I$I$E)! I$I$1 I$I$E)! I$I$E)!*  E)m۶-E) (h$)E) ( PE): I$I$E)! E)! I$I$E)! I$I$E)$!  E)` E) E)!b m"5Xm$!zDI$ / 0NE) / I$I$E)! I$I$1 I$I$E)! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! * E)!x`9O'e)!5W IM&E)!T\ ۶adE)  I$I$E)! I$I$E)! I$I$E)! I$I$)( II$e)$! *( (E) & E) @ ۶m E)  H&E)!7T ۺmSE)!pb I$I$E)! ) I$I$E)!  E) I$I$E)! I$I$E)! @E) P I$I$E)! I$I$E)$! H@ E)!WV^Z $)$I!H( @$I! $I&CE) $B#H!` $IHE) Ad!d R#$$!` H &E) R"H I! @2d!d @")!@j  J!A  I!@  $I! $! d!d  $!!W  0@E)  0! $ !*  I!*  JT!a4(  $! 0! d!d I$I$d!d @d!d @$! I$I$e) L@$!!U஭ !$$!!U/ I$! $$E) I$d!d  ?e)! c?f1! UE߆1!~ I$I$f1!_x p@E)P I$$!!^  (!`H$Ib>/J$I$мI$I$I$I$a+I$I$ I$I$I$I$(* I$I$ @I$I$AI$I$`I$I$I$I$I$I:.I$x$ I$I$ I$I$ I$I$(I$I$ I$I$ I$I$I$I$( I$I$I$I$$ I$I$AP I A&!I$I$ I$I$ II$!A $@$!AI  !A $!!@$H$!A H!A@I $!!IM!!**0P!{^˂ m&H$ I$H$, I A$!AiI (4h&M!A m$-ۉ@ $ɒc'@ OTQ$! * P$M!!\*  $I *1isa@"2& ؖl m6,XҤK `>/*mۉC (0J zVIH!uVI (!յPĉ;!6Ld(4xK @$I$!B-P4$cBb@}AIR$!b E6A@a$!h$I$I$ o IH 0!d! J ! (8=! & I$I$!I$I$!P!$I%!a  !'!W $5I$!zUUH$I I$9!UU Iz!+ !A$I2!+ !$I! $I' ! $@H!( $I$! H$IE)a I$ E)a IHE) $! @! I$! $(" !@ I!  $I! I$! I! ( IB!  $$! L! I A! ! @d!d I@! I@&!*  H!A  IH H!!. IB0! I$!* $ ! &L!  HR(!!` -Y׶! # !*  d!d I$I$d!d d!d $!!} @$! $!!^  0$!!U_ `$! $!$E) @ d!d E)!/U ÒdI$e)!f1!  I$I0e)! I$I$E)!jʿ T%) @$!! ^ E)!U I$I$E)! I$I$E)! I$I$E)!ꪪ P$! I$I$E)!ꨪ E)! j5$!_x I$L=!UUW\ TI$! U  !- I$I$$!! $!!5p  $!!  I$I$e) $!A@  @$! @#$!p IHE! I$j,! ɕ$! / %) (& I$I$E)!ꪪ I$I$E)!/ I$I$E)$! * I$I$E)!說 I$I$E)! I$I$1 I$I$E)!* `0@E)^z RV%V!a ( I$I$E)!/ E)! I$I$E)! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)!* H@%) 8 E) (;mE)!Mf E)A hE) I$I$E)! ** I$I$1 E)!j I$I$E)$! * E)!r* @ E) Zb K&R!I$! P E) + %) $(  %)A.&( I$I$E)! I$I$E)$! I$I$E)! I$I$1 I$I$E)! ** @ E);xE) SA5 H  E) * H$I$e)E)\zj I$I$1 I$I$E)$! ( I$I$)( I$I$E)! I$I$E)! I$I$1 I$I$E)!** I$I$E)!`}ێ{E)! ' 6nKgE)A 48 I$I$E)! E)` I$I$E)!骪 IE)a? I$I$1 I$I$E)$!* E) E)!jj $I $$! ! 6mӶ! dj&! $IB! $$ ! I$@! IB2! IBH2! $ $! IH! IHE) d@! I@! "%!` ( !A@  A!+  ɛ$! $! $I!U  BR5! ` @a!" ʡ!$$ L! I&@!* $$`E) @I0E) - U!A   d!d ! I$I$$!! I$I$$!!(  ! m`! L0E) @0! I !/1!UU I%ɐ$e)!  I$IR$e)! @%H$E)zX^ $Y$cpI$I$!`hI$I$jI$I$ I$I$ *I$I$  I$I$PI$I$I$I$I$I$A44I$I$A I$I$* "C%!I$I$.I$I$**I$I$ pI$I$I$I$  I$I$ &I$I$(* I$I$A&I$I$AtI$I$AI 9( H$I$(I$I$( I$I$ A A$!AII!A $!!$H$!AI$I!AIM E$H4)t P  i&$!! $A!A $A$!AI$!H $H!A  @!AM$-Т 0 J$A I*5!z C s 0`l I$H Ab-Kl辯۰  **c۰mغ5Kɖ l+12R&O!^!$JH mZ֥@9 ذ 6,(*,'C^ H$I'Fnt2'A0`ز$jTD $Il!$ b& _$I$I$I*I@! @#1!z !R !j! )@ `@d! !ʁD!6 @$ A`j$I' I$I j+Ia $!!)P@!$!) !j~ !! !A$I!+@!` !@! ! @$$I!bP  I2 I!* $Ʉ$!* H! IB$$!  I$!  5R"5! p $IT! $I$!*`&!z HP!I&!ə$! U  HX!  }$!WU @I$! @J$! $II$!  II$! U  I$! I$! H$! _  I$!  AL! p J! B"$!`p dE)  @! !$E) I! P%R%! $! H!8 I$I$$!!> I$I$$!! $!!r m !, `Bd!d  !d!d `!e)!%W1!xU I$`e)! I$I$E)! @E)!W~ @$!! ^ E)!U I$I$E)! I$I$1 I$I$E)! I$I$E)!/  E)b`` @$! I&(!!@$I$b * PI!* $! *+ `$!!V` _ H$$!!-X I$I$$!! H$!8 $$!!X` $!! 5 ! I$P@! ɕ$%)-%U E)! I$I$E)!ꪪ I$I$E)! I$I$E)$! I$I$E)!ꪪ I$I$E)!/ I$I$1  %)@ R i@!! IѤE)+ I$I$E)! I$I$1  H %)a( I$I$$!! I$I$e) I$I$%)!Z I$I$E)!/* I$I$1 6lvl'E)!Z I$I$E)!% I$I$1  E)`  E)( I$I$1 I$I$E)$! I$I$E)$! HE)A X4 E)I$l=!a Vɖ!* E) E)! I$I$E)! I$I$E)! I$I$E)!ꪪ I$I$E)! I$I$1 I$I$E)! L&@ E) W\x tZ E) E)! % I$I$1 I$I$E)$! I$I$E)! * I$I$1 I$I$E)!(( I$I$1 I$I$E)! I$I$E)! . H E)! @k]f1 E)! @4E)x I$I$1 I$I$E)$! * E) @E)!* @E)& I$I$E)$! h l E) IL$!* $@I$! LM! &  It1!}! $ O$!BS!{I$!*(!`ય P"+5! PO$!UU @I$!  I$! $II$! $II$! $I$! I"mH! I6$!ժ I$!W I$b!W $I"H!U I&!U DJI$! _  $!  IL! @$d!d H I!( I2@ $!  I!  &$!  !a H!( B(!` 0! !b@ I!  @!$E) @d!d 0%E) jzI /%H$I$I$I$ I$I$I$I$I$I$I$I$I$I$ I$I$(**I$I$ pI$I$I$I$ I# ?H$I$I$I$(* I$I$ I$I$! I$I$I$I$ (I$I$I$I$I$I$ &I$I$ I$I * m$I$AI$I$( I$I$!AI$I$bހH$I$!AH I!A $A$!AI$I!A  I I$T#& em{^ )& H$i$!AI$I$@I$ $Am$  $@$a  A!AI$I!AA$I$$!! 4!z`ɛ!^W6,Xd  $!B َH H %KlٶmmM.5!D  ZiDə {#Ia؂$ rD1 H^ IH$ ۰,* (۸1s`56øm/ɀؖ 2t$H$I$b*Iy!iUI  ,!$vlK!I! @   )PV! I! !`$!^U$ ^UUUc' g$I!խ,!@@"I!ZD&B `  !I$I$! J ! !@ $! $$$A!* $I")!@  @I!!  I$*!!U#& !&!_^0d((I$ !u OJ% # !ajP'! <$H!aj IR ! * ^# I!* I"I$E!U( $I! I! II! IB&I! II! * [#II! I" H!U II !U I" !W I$I!_ I$ !_ I$M!U$I! _ RI$! $ I$!  I! bۖn!   I!@ 4@ !  Ih!!( I$! %R$I!b "(!A@ 0 !  0$!A  $!!x MT!&( I0$!!U\ d!d k4!(ß?e) umۆ{e) I$I$E)! E! %hh$! X  $! @$! I$I$e) I$I$$!! 4!! 0$! $!{ I$j5! TI$! UU @ !AР  PH!A  $!!-XB @ $! I$I$$!! @ $!!`  !!  I$I$$!! J=@! )I$E)-W E) I$I$E)!ꪫ I$I$E)!/ I$I$E)$!  %)  I$I$E)! E)!j E) ( k lE) .m۶!ʪ  %)!  I$I$$!! ! I$I$$!! I$I$$!! *! I$I$E)! I$I$E)!ꪨ ` E)*  E) *( E)!@ E) I$I$E)!* I$I$E)! + I$I$E)!* I$I$E)$! I$I$E)$! XuH EE)AꨜI$L'/  i! *+ E)!뫯 I$I$1  HE)( I$I$E)$!  %) %) I$I$E)!** E)!p` -kE)/>  ȅ\%)a** 6lnE) I$I$E)$! I$I$E)$!  E) b I$I$E)! I$I$E)! ( $E)` I$I$E)!: E) `1ke) .>{e)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)!, I$I$E)$! I$I$E)$!* I$I$E)!. I$I$E)!j X6E)U\ޒ@!RgB i[ $M*A!ֺ |^&$ !W_* |I! ڪ I$J@!* j"@$!_ I*I! R#!z i۶m ! IBI! I$I! mm`! m"I$!_ I"@$I!U I2! $$! $$!  d!d  @E) E) # @!x I"I!_ I$$I!  $MH!U~ PI$!/ $$!+ D!A:  -!p k `! !$$! H&UH!!  $! I$I$$!! I$I$$!!* $!!p  $$!!^ P$Id!X\ַAB&H$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I ?A#$H$ ^I$I$I$I$I$I$I$I$I$I$ `I$I$  I$I$I$I$I$I$I$I$jrI$I$I$I$A<I$I$I$I$!AA$I$I$I$!AI @$!AI$I$!AI$A$!AIA$aIHb9 HXI%H$I$AI$I$I$I$( I$I$!A@$@$I A$I$I !A)&m$`ɕ!J4  hɓ?!!j$ȑ[a  $!B@$I$$!!$!Bðm۶-"'NHp\ٶm۶> l L!J!׵[hބ y ^øL 4()R("IAK mۆ-=ǎgb7 ٣i $0H$b<&I$aI$Ib* ɛP!زe  HP `KR*1!ajIH!   H A(؉$E  !h!^U`$'!^UUW$u!UUխYI!կ@4$!Ap$%Id!I!!I$I$E(CI$I$E)a$!,I!X !!9!R!I !I$!a)@L !W'!WL!a* a/A$!} K$@!  I$$@2! IB$! IB$$! $II$! IB&! I! H$]$ ! $I! $Id!d m !  A! @&d! IB!* @ CE) I! !$!  $0! !* d@d!d $d!d "I! "I$H! I'$I!U I$R!W $I"=! W  I$!W  %Z$!A I! *! I$$!* "i$!A@   I! I$I$$!!ʨ* I$I$$!! I$I$$!!* H$!!Wp `$!!V` d!d k! ÖnuE)/ HPE)b $!!l < )! H $!!%W{ $!! I$I$e) $! I$I$$!! I$I$$!!/ $! O&@!I$I$! 0\!- $!! * H$!! $!! XG$!!8 $!8  $!!x ,$!p P(!I$I$!/  ! <$!`  $! I$I$e) I$I$1 I$I$E)! I$I$1 I$I$E)!zꪪ LȄ`e)!UUW^ $@!ȄE)!UuU E)!  $!! @ $!!6s I$I$$!!  $! ! I$I$%)! E%)  E)!i6 E)a  E)4 I$I$E)! I$I$E)$! I$I$E)$!* I$I$E)!* I$I$E)$! E)!jꪪ m5P !訠I$ ** P$! /= I$I$E)!  %)@  H E) &( I$I$E)$! I$I$E)! I$I$E)! I$I$E)! * @ `E) \E)!* -E) / I$I$E)! E)  @P%) `8 I$I$E)$!+  E)@ E) I$I$E)$!* E) * mmE)!Z`<9f1!RaɅ @E)! )- I$I$E)! I$I$E)$! I$I$E)$!* E) E) I$I$E)!. I$I$E)$!  ,E)p I$!I! I@&! IH$!*  d$! $I!*  @I$! HIB!  J$@!! IH!** $Id!d  I$! $Id!d $IB! I! @aB&! d!d @ d!d &4!a` L! mu!* $$$ E) 0 Æ!8 JD!($ @$!  I! [m! M"iI! I$ ! L$I)! $II$!  IJ$!   I! @$4!` $dB$! !$$! I$I$$!!* (%!@`PI()$!i{I$I$*I$I$I$I$I$I$I$I$!I$I$I$I$-I$I$I$I$I$I$I$I$? AS$ /rI$I$I$I$I$I$I$I$I$I$I$I$! I$I$I$I$I$I$I$I$ I$I$aI$I$ I$I$ I$I$! I$I$ I$I$II$I$I$I$I$!AI $M $ h$I4b @$I$I$I$bI$I$( I$I$!AI$I$I$I$I$I!A)6M$!AI)P h ^WUm&h$p)P@$I$$!!I$!B $!B@i$!!PE$!!6a\2'O$A%!!zHx!( lɒ-,%vZ_I$!!I$@$!! ɒ#'*z^1$5@%%@!Ĉd$H$I$bIĉ* iY ( -K$9  'IK IQ " $I$!aꪪ$! %IK!d   , $I$ $ y$I!uWխI!խIm' ,'a -E$$ a*p I !  $ !Hr!HR a*&!1!~@b!_ ' !W-zO~П!U^&/!^zr@$!a*p !%I$! $I2! I! $I$! $I0! H$! I!* IB$I! IH$AE) $I$ &E) H@!  $@!E) Hd!d I$H$E) d!d !@  !  LHE)  d!d  d!d $0E) @d!d $d!d @@! m;!8 !& E) M(!(  R#$!` $! H!8 I$$!!UUz #IH!~ I&!j $zH!A  I$!A  Id! @" $I!A `@d!d  I! @ &$!* $!!"% I$I$$!! I$I$$!! H$!!V @$!!^ d!d kl!  J%E) E)  !@ H!!  HRI! )$! I$I$e) I$I$$!! $$!! 7X I$I$$!! R$!^ I$L%! Jɕ$!+/ $! @ $!!X` * $!! 7 h$! $!!@**  ! ! @! I$M&!/ "!` % $!! * $!! . H($!$ I$I$E)! I$I$E)$! I$I$1 I$I$E)!z* ZlE%)  `E)- E)! I$I$$!! H$!! I$I$$!! I$I$$!!( $!!. @!  E)!{ %)& H E)A4 I$I$E)$! I$I$E)!. I$I$E)$! I$I$E)!ꪪ I$I$E)! I$I$1 @$!! L&b1!iə!+  %) '/ I$I$%)$! I$I$E)! I$I$E)! I$I$E)!ꪪ ($!` I$I$E)! I$I$E)! I(E)zx Mh!, E)! - @$@E)aP I$I$E)$! I$I$E)!" I$I$E)!@( E)!*( I$I$1  E)A@ lܶmE)?f1!5^n˷E)!($ I$I$E)! E) ) I$I$E) ʨ I%) ( E) H%)$ I$I$E)! I$I$E)$!* I$ E)!UUV\ I!  IB$I! !IE) ")$ !@ HH!  Ad!d  d!d I$E) I$I$e) @!A  $!!z  I E) @d!d d!d @$d!d d!d ۲!  Ȁ!E)  0 @!a  d!d H !A(  !,, $! TI!  $d!d  $$!!/U  e! I$$!!UWp R"I @!Z I$A!  \I1! $!U @ $! *5!`  $C $!* H$I\!XԷl$O$ Z\VWI$I$ I$I$I$I$A I$I$I$I$A I$I$I$I$I$I$ pI$I$I$I$( IDI >6h$I$ X^WWI$I$I$I$ xI$I$aI$I$I$I$I$I$I$I$I$I$I$I$zI$I$a(I$I$ I$I$AI$I$I$I$I$I$ I$I$!AI$I$ ( I$I$XH !H$I$((I$I$ (I$H$! I$I$A44I$I$(* I$I$! I$I$I$ $ &I$I  @$I $!Am$I!A  @$$!! $!!EۤI$!!I A$$!!m $!B@ҤI$!!I$I?`AD/Ճ$!u_V, m[m;$M$!! PI H $!B h$!!IY%Kي5/=;N$A@I$I$A  IyUB )0`ض 0`hv6l+ $$!b$)"A$!a`IH0/$ =!z'I4 9L ( I I!UI(& ^16`o-D @I |  &!@% ! ` a!IR@!ު́$!.O Iߤ a&>9"!_ek O ! &?%!^O~ !&! $II&!* m!  Ʉ!I!@! H.I!! IHE)  $E)a @$ E) LHdE) `dBE) I!b$ $H!  2E) $C$! @$! $$!  $! $ $! $$! $! 0d!d  ! !@@d!d  d!d Id!d  H! ( HM !A d!d @! ` 8! Hd!d JU ! $$ E) @Id!d -! H$! "I! I&H!A( $jA!+ P$! W  IJ! $0d!d H! I0! *  !!@ !  I$I$$!! $!!^` H $!!Wp $!!@ !A "@u%)h˯ 0 X! `! @$!! ^ $!!% I$I$e) $!a$ @$!! X B$!!(`B "``$! I$! TI$!  $! % $!!p* H$!! % I$I$$!! D! !$! ( $!! @!p I$J%!?  ! I$I$$!! * I$I$$!! . I$I$$!  I$I$E)!ꪫ %)A I$I$1 hE) E)!} -h%! . $!!< I$I$$!! @ $$! I$I$e) @$$!!P@ I$I$$!!ƒ I$I$$!!<Ê E)!} A E)!y I$I$E)!** I$I$E)! I$I$E)! I$I$1 I$I$E)! H%)!( I$I$E)!ꪪ 0`%)~zI$h$b* i! * $!!" I$I$%)$! I$I$E)!z I$I$E)! I$I$E)!  %)A` PE)# `E)h )HOԤ!> R1EJ!:.. I$I$E)! I$I$E)$! I$I$E)!**  E)!'' I$I$E)$! I$I$E)! I$I$E)$! I$I$E)! .> E)!xhǓ31!qiť E) )- E) I$I$E)! %) I$I$E)!+ I$I$1 I$I$E)! I$I$E)$! @;E)A  LHE)  $!!@   ! $I@!( I@&!  A$! $! $$!  $! $ $! $!  $! $! !@E) ۶m !+ $-"!@ pI$I! $IB! @I$! &!a $$!* % !b, @<!`  d!d !   !! RH!A $$d!d @I0$!!-U_  $!!^ d$!!UW~ j"IH!^  A!W@ ! "5R&!`pX *AB& sZI$I$" *I$I$I$I$I$I$bI$I$I$I$I$I$I$I$I$I$AI$I$I$I/b8X$bI$I$*I$I$I$I$I$I$ &( I$I$I$I$I$I$I$I$I$I$I$I$aI$I$a I$I$I$I$ I$I$I$I$( I$I pI$I$4(I$I$@I$IA@$H$I$I$ * $H$I$I$ I$I$AI$I$ (I$I$I$I$( I$I$! I$A$I$I$I$I   A$!Ami6$!!E$I!A$!!m-6$!!hI6$!!m۶A 6d(P$AI+W$!I@,(hm6$!!h$I4!A)жI$!!)P$!B4M$!!ɒ-Y $!3; $I$I$Iʠ( ɘ$\B8 %!ӉA M m.@ $$!B$)R(5 zI )Y@ $5|!WJȁ$I@`a ID 5M MÆm>ò-I$!   B"&A``(i!_D  H$6! $1| !W= lT=!-P*ɓ A I$A! c@! J$I a4<"E! !  I$I!* $HD! &I$I$! $JJ%I!&( H$I!( I$$E)a $ 1! m$! R%+% 6Iڶ!꿪  %IH!@! ! $ $6!* ($!`jU $)$! @ 4$! $! U $!U ")$!!@ Q$Ӛ$! c $HJ! $IP! I$$A&! HD!  $IB! I$! $)! I!a BI !` $!  H! Pe$! HE! @!@ $I!A d$!!Uz $!!z-U $$!!U^+ "I@!z I*&!^ J ! !I$!* @!d!d H !h  H! $! * I$I$$!! I$I$d!d H$!Ap  H!b Pv!!p( V@! >` j% !Axp  T! 5 @ d!d  $$!! 5W $!4 I$I$e) 4!A` P$! $!!p * K&@!II$!/  H!+  $! ʨ @! PȐ!A0<(/ $!! * ! $!! @!@ I$J%!?  Y! " I$I$$!!࣏> I$I$$!! / I$I$e) X $!8 ($!`` $!!  E)!zk " $! ( ` Q$! /> I$I$$!!( @$!p $!!6 I$I$$!! ( EP@!b $!!( I$I$$!!.<  @$$! E)! I$I$E)$!* I$I$E)!ꪪ I$I$E)! I$I$E)$! H%)b< I$I$E)! @HE)ظ 6P !ꨠDI$ /> P! /= I$I$$!! I$I$$!!** I$I$$!!, I$I$$!!  E)! $!! I$I$E)! j=P!Ah蠀yѓ A)  E) - I$I$E)$! I$I$1 I$I$E)!* I$I$1 @E)( I$I$1 I$I$E)!ꪪ I$I$E)! ?e) 6ZzϏ{~U EH$!  $!U $!U @$!U jdP$! ( J! ($ ۦm-! I$o"H!Uɑ$I!$I (_ TI$!  ɟ$! W P"$!A @O!" I$ ! $IB2! HI$!*  "I!A@ P !b %@ ! d!d I$I$d!d H$!!W~ ! d!d  K! I d!d ۦi !H҄I ܖ7H$I$ \VWUI$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$jIP95 %kH$I$bI$I$I$I$! I$I$I$I$A I$I$I$I$.I$I$"I$I$I$I$A I$I$ (zI$I$ I$I$**I$I$pI$I$(( I$I$! I$I$I$I$I$I$  I$I$I$*I I$I$I$ I$I$I$I$ I$I$<H$I$a I$I$! I I$!AI$I$I$I$* *Ii&$!!H$I!A$H$!A$!! $!!@$I!Ac۶m? d)P$A I i$!ID9 4h۶i6@$I!A $!! $H$ m&M 4d8pl s/`Im; @$I$I$I1g܈- kv:4(($ɐa/ H (i۶m۰[$Kt / ܶ &$1( $I & I!_ktm/m۶I$ $!B5 !սMX !׿B$HAp MM ! 6 M !A &![J !ö,!  Ib!*DR !@$AAI$I$E)a ( j! $I I!* $$! H$I A $&$I!H $ $! W|$!Aj B"1I$!A`$I$ $I$ I$I$A*PI$I"!* I$I _ I$$A!_* I$$! I$$ ! I$! I$I!U I$I & I$$!U I$@! I$y/A!UI$I U$I5  I$   II$! "I$!* !A I$!* !$I! I$$! $$! H !   !b  ! I$I$d!d d!d  A&d!d  R E!  $!!W LBd!d I$L2! I!E) $`$!!UVb @!d!d L0@$!  L!! ! @! d!d  &!  @!$E) Z ,! IL!a* `7,!/ ! @ $!! 5^o $!! I$I$e) $!@ ! I$I$$!! j)@!zII' /z  T! $! * I E!'  $!. I$I$$!!  $!!p $!!ʫ @!` I$J%!  H! I$I$$!! ? I$I$$!!< I$I$e) I$I$$!! !A$ I$I$$!!( D!$ *  E)c/ V$! + I$I$$!!+ @$!!b $!! $!< @$$!! 7R I$I$$!!, $!!J  $!( @E)! I$I$1  $! I$I$E)! I$I$E)!ꪪ I$I$E)! %) (  @e$! M&j6!z!I!+  $! I$I$$!!* I$I$$!!< I$I$$!! $! $!a I$I$$!  `$!  Dz&! )M%)-W E)! I$I$E)$!  %)b@ PE)  E)B E)A E)( E) )( E) hࠀ?e)Ë. !E)!)- I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)! %)$( @4@E)`$I$!p$I$I$I!& I$I.A!I$O  I$H!W I$$! I$$!* I$!W I$R#H!`I$ !W)( I$!U I$I!_ 6ml!  @I!  !%! *-I! M"I I!W I"5$!_ I$ !h)$I a*I$! $ )$! $HN!* I$`!* I$$!*  !$$!( $!! I$I$$!! I$I$e) $!!{. I&E) "-R%!`p9=W' zZI$I$A>I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I?/Q'J$ A~I$I$AI$I$I$I$I$I$I$I$AI$I$I$I$I$I$"I$I$jI$I$AI$I$"I$I$!.bI$I$ `I$I$bI$I$*(I$I$! I$I$ .&I$I$b A$a I$I$A@`*I$I !I$I$ I$I$ I$I$JJI$I$ I$I$*I$I$II$A,I$I$ I$I$5II4'<H$I!A$H$!AI6i&PI $!!@$I$!A@$!!-P h&$!!I$I$ (4(I#'* H$I$!AA$I !A I$a@  @$I$A``II b4lɲ;H $( I$I( iCv+($gbN(4Xdɐ /+$$`Fn8rHpޥ` % * 60`(NH$( H1 @ m۸9pC'b`^5 ƍ IHI(**  4k/M ׽"I6 $K͓#!aJ mU !b '9EI!rW EI ! H ! 9vl! @! B@  I$I$!$! $2IHI!I < `$ *I$!P$I$!I$Ia(I$I.!*I$!I@%!*I D!ےm!@$  D )! D1@! J$! H!* I$! ۶m$!a` IV! I$$ ! ֤H!* ۶&! mפm `!* I! $I )! P R$I!a b I!^(* I"I$ !_ I$!ə$O a$I"> W @II$! $A! I$$$! IB2$! I$$!+ $! I$I$$!!* I$I$$!!* I$I$$!! L$!!U `$!!-W !$$!ʪ HD$! L2$!! UW `%)!Wj жh %) ʠ I!,( ($!!@ I! $ !@ ! @$! !H0!* ! !6g`! uJ!/c   ! / I$$!!^ $!! 5 I$I$e) I$I$$!! H@!a I$I$$!! ( P(!`I$L$ PT! H " ! @! $! $!a  $!!p d!d Mx]! IJ%!7\p  !b $!!誋 $!! > I$I$e) $!4 I$I$$!!. $!!& @$$! 6`:E)‹  $!  !$! @ $!!6Rb I$I$$!! @@$!` !$!!% I$I$$!!ˊ @$! A0$!(2 E)! I$I$1 I$I$E)! I$I$1 E%)! I$I$E)! P%) X4`$!I$H%.  i! ** I$I$$!!*# I$I$$!!** I$I$$!! .< I$I$e) @ $!!`@ I$I$$!!(( H $!b, X5$!\xpA$8  p) E) % E)A  I$I$E)$! %) & E)@ E) I$I$E)! I$I$E)! E)!{ #q%E)*(P΍tE)  @E)@6 pE) *( I$I$1  E)! I$I$1 I$I$E)!ꊪ I$I$E)! I$I$E)!* m E)K! L!I$%I!& D$)! ' !ڢ D&$! $$! m6۰ ! ۶mJ!44 Il! ۶-&!  ! ۖl!  2!* TϵI!A(& 0I! LBL$! Mж! I6n! ԮR#(!!`  TH! $$I&!꠪ }"$I!z I$j#H! j! H! $I! $I I&! I$$!* I$$! $!+ !$ $!!  Hdɗ!H$I$I$I$I$I$I$I$ .&I$I$I$I$I$I$I$I$I$I$I$I$I$I$*AC%!kzI$I$@I$I$a)I$I$"I$I$I$I$ڪI$I$I$I$ I$I$"I$I$I$I$AI$I$A./ I$I$I$I$jI$I$A@I$I$!I$I$! I$I$( I$I$I$I$! H$I$hzI$I$  I$I$I$I$I$I$I$I$ I$I$I$I$ I$I$( I$I$!I$I$( I$ H$Ib@I4I$ I$!AA$AP@$H!AI$I &,I$M$I$I$ *Ii&!AHI6!AI$I$A$II @A$IIRha)4H$aBI $!Nĉ (  0` *`&\B' ppIZ!4$ #%@[ 0b=DZܽ$ $(*b'I(d$J I/ $rD^JH5$I*I*@p9Q@!_յ' @%1!z "I !+ } !W-| IY!baB$#` $I !IdH!@$ I$I$E(CI$I$E(C,;!$I! IJ5!~@j$ 'I$ WUUI$I` I$IJ  I!)!*$i z T$!bP"IJ!I ! !I$I! $I$! $I$! @$I$! ") I @ DI I!# I$H!* $! @$$! $! H$I! A$ !  $! @$I!  %R"M!P I$!" daB&! m`ֶ! Iֶ! ֤&! @J H!A   I!I! #I I!^ I"&+A! @ '.  IR!+ IIH!* $ !+ I0$!/ !$$! @$!` I$I$$!!// I$I$$!!: A! )H! !$!!x%U HE!! L2E)!UU H0E)!WZ  I(E)~x $ !   „@$!  $ !@* !a I$I$d!d  &! @ ! * Z$!  E($]!c PF!/  d!d @ $!! 5 @$! I$I$$!! $!! $!!. H!nI$J=!  Id! +  !A ! $!! I$I$$!!   $!* !! h$I!`IM'!/ HE!  $!!p $!!  (@@$!` $!! I$I$$!! I$I$$!! (  E)!5_ e9 E)c $R!  $! H$$!! %X I$I$$!! @ $!!r*   !@ @!b ^J$!**Լ ېM%) .? $%)ap I$I$E)! I$I$E)! @%)  E) **j I$I$E)! I$I$$!!Ȩ 6P !ꨨ HI *( ``$! / I$I$$!! I$I$$!! $!! I$I$$!! $!!/4 $@F!AР $! O$j=!W\xɑI$ / E)< I$I$E)! I$I$E)$! I$I$E)$!  E)!z @E)@ p%)! I$I$E)!/> @@E)aPW¿e)ˏ. J  E)b6 I$I$E)! I$I$E)! I$I$E)!ꪪ %E)b  %) %)!(& I$I$1 @ E)!Xrb $I$! $I$!I$I$! HD$I!!( I$ $! II$!* $! @$$!  0$$! I$I! I$I$! @$H$! @$ $! $I!* $H$! I$$! I @!( I$H!(  R"=!!p $$a!* dB" &! HO! * mk`!*I ! IH2$!ꊯ $dB! &ml! IJD!A  mФ! vkۭ!*  (R%!!8D'ApI$I$?- I$I$I$I$I$I$I$I$ I$I$I$I$ꪪI$I$A€I$I$ I$I$II$!* r`$N$bI$I$I$I$"I$I$I$I$I$I$I$I$I$I$AI$I$I$I$AI$I$A>/I$I$b*I$I$I$I$I$I$I$I$I$I$I$I$I$I$ I$I$hI$I$ַI$I$I$I$arrI$I$I$I$I$I$ &I$I$ (6(I$I$@@ I$I$!I$I$x\5I$I$+I$I$!AI A$!AI$I$b4I H$!8$H$!AI$I$!AiA&I$I$/I &* HI$!A@$I$( A$I$@A @$I h"A@");AIi&! Nر  %[ld(RcZIE$b" %j*jXA P$!! A%hI6( Q$I 1 H$) j&M$!!`A$[%I$I*  $9 zM&NZ-JL$ A* )dˤ  dӷ !aj 45! }RE!% &IX ^0a I$I$$!b FH  !ꪪ@p!ı @!DP$!~U'I?!WUUIH$*I$Y!IS$!@dR!$!I !!I$I$!@ !P*  * I$I$E)aI$I$! &)$ !*! I$I$! $I$!(!z  ! m;lk$! $ $! $ $$! %R)!AЊ IJD! - H $!  I$!  @$! H  !(* I$ ! I  !** I$A!  IH!* PII!   I!** jDZ")! @ M!* ]M! LB$!* $Ʉ C! $ e! + M"- @ $Ii!- m۶@! I$$!/ $!!% PE!a ,!` @d!d !@E) d!d IB&! IH&E)!UU I$E) UVr I$!* H0! I&!* e) I$I$d!d @ ! L$! ( h0! UJj-!p J5! ! H$$!!_ $! $!   E!8 I$I$$!! H $!x< I$j5!x  ɔD! + !! @ $!!7Zj $!!+ @! Q#@! c $@ ! P($I!` DI$! 5^ 0@! @$!! $!! 7 ؀$!<< I$I$$!!< I$I$$!!(" I$I$$!!Š.  %)7  xd!!(& $!!  $!!rJ *  $!! 6 I$I$$!!* @!b (!@ @! LJ%!.x @"9H$!! I$I$$!!( I$I$E)! I$I$%)! @$! @  %) ** I$I$$!! !L&|6 W_W~ Vi!/ $! " I$I$$!!** B! I$I$$!! @ $!!c X ! I$I$$!! * P$@$! ppA$I$(  E) // I$I$E)! (%) I$I$E)!/ I$I$E)$! I$I$E)!* I$I$E)$! I$I$E)!ꪪ I$I$E)! Ѧ:E)>:#'&X8E)X I$I$E)!‚ I$I$E)! I$I$E)$! P%) I$I$E)! dE)ڪ I$I$E)! @E)! R%HE)^I$I$! $A$I2!* I$A$!  $g!** ۺ m$!* $ $$! $$&! m m$!* HI#%!!P @IJ!  I$!* dB@! JD!a $I0!` @JI!( $A I!* @$! $H$!(  $AE)a @  !  b$]@!a8  AdH&E) IE) iM!* i$[3`!+ I!a& I6ݚv!/+ XM6!. ۠!* HDI!H$I$I$I$ *I$I$I$I$"I$I$I$I$I$I$I$I$aZI$I$I$I$I$I$$11Y$`PI$I$ `I$I$I$I$"I$I$I$I$I$I$I$I$I$I$!I$I$I$I$AI$I$A I$I$( I$I$I$I$I$I$I$I$I$I$I$I$I$I$ I$I$X^I$I$I$I$I$I$I$I$I$I$I$I$I$I$*I$I$ I$I$z^I$I$&. $H$!AI$I$ I$I  I$  4  I$I$I$!AI$H$I$xI $ H$I$&I$I( I$I$I$I$!AI$I  i۶M$!!Em&AIϜ'Mi(ق%Kl,8rr^im$!!@ $!BHbٖ$MIQ! @$*HI$(  NDdH I#'z^hҤ $!! m$!!I$!B$ɒ$zWtxB, @0Y2@$QAApEӷ!{蟐 )! D1 z5MR jz׽  $I"!!jI  $ !bR!bۖ$5 z M!`$ C'*'I!UUUI%!Uկ9@bV!ۦ!߿IlI! I$!I  I$I$E(CI$I$E(C$!$!`Y !%I! $!. RR$@!  II$I! $)IB"%!ap H !{ $(?!a@ 4ITI! II$! ma6! * !W IJ! # I!h $I !* R"5!` I! ! IIH!  A$I&!(* H! @$HE)a  2aBE) D!A  @$A!) a$E) &HR$I!蠚 I& ! RI!aк d$! m3!/ M 4v!+ [M !+ mv!*+  H!! @@ !` d!d Dh!!8 `d!d H0E) d!d MѶX !. @$)E)  I`!!  B ! *  $@$! E!: I$I$d!d `H!@ vA;!* ! D I! DJ*!A !  H$!* $!A H ! $$!!>\` H $! @! I$j-!  I! + d!d  @ $!!^c $!!꫍ I$I$$!!+  @ E) H$d!d R(*I!x HI$! -7 $! HE!8 $!!O $! EPH! I$I$$!!Ȉ @@$!!`` ZI!  ) ̀D! /< I$I$$!! @$$!!Rk $!! 0$! * J!a ! P( @!!@II< a*  ! *!A I$I$$!! < I$I$e) I$I$$!!8 I$I$$!! E! j 9 !xNb  PD!A  I$I$$!! P!  !a J!$ H$!!& I$I$$!!( @$!p M'j=!W^\x ɑI$!5U E) I$I$E)$! I$I$E)! I$I$E)$!  %)@ %)  I$I$1 I$I$E)!/. E) hG/E)Ë E) )--  E)!p I$I$E)! I$I$E)!ꪫ I$I$E)! I$I$E)! PE) @E)!Z ,`E) LBI! d"I$I! m%IKD!A*&& I@!_ ]HD!a(* I@$! II$!* I5!~ R"A!Z $I! KV$I!*' a P%|!* j!`  IO!* $$!* I! LBI!* $) !@ I!a  $$I!a $@&)!j $@$! * @$E)  IH! * B IE) m5a! IH ! ("%!b!8D&bB`I$I$ I$I$!I$I$"I$I$I$I$ (<I$I$I$I$ I$I$ARI$I$"I$I$I b?' H$I$AI$I$I$I$ hI$I$aI$I$I$I$I$I$I$I$"I$I$!(I$I$AI$I$ I$I$**I$I$ I$I$I$I$ .&*I$I$I$I$I$I$aI$I$bI$I$@z^I$I$I$I$AI$I$I$I$I$I$A4I$I$ ,&I$I$I$I$**I$I$z^I$I$ I$I$!AI$I$PI$I$  I$I$I$I$!@I$I$I I$I$ I$I$a++ @I$I$I$I$.(I$I$`I$I  I$I $IH$!Am I$ 4II $H$$!!$M!Ab!l@im!4@Ҥ$!!IA4d8J$I$I$* (IH$( H$N$ (M) $!!@$ $!!hP$$!B,%JZV<3ce1$8ێm7M'$AA! j߷!aHm )жm۶$I$!B.2"!ɟ aOD5 !*5M$!H$ $I I8*$IH l H!`ضm!@$I $RH ZI  %!$!9Il!TM A.4$%]@!'!Wb! Ӷq,! JH!A& Z&!_ R# Ą!aj@  z&!   m! Ij"I!^  I+ ! * D|! $II! b)I!_ QI !ժz !^ 0ID!P'!u~WR&!}_  JI&!  '! $H!* mn!  I ! DL(! &* H$Ii!a $$!*(*! $E) $E! @a2E) k m!  MІD   C$A&!* Ц[n! Xhv! TO&h!!.& D U ! $( I$! * $!An ! d!d L&E)  &E) I&B!  mE)/ 65E) ki״!( + Zl4!  $! I$I$d!d d!d I$!* $!! K~*I! N!- $!  h!  ! I$I$$!!( H$$!(P $!! @! I$j5! PL! / @$!! $P @! $!!読 e) ! 0d!d  d!d J$"@!\wʀ JɔD! -  & !@ A!  !  I$I$$!!Ȁ I$I$$!!.< $!!h [,@$! %,jC$!rÏ 4@! ʡ !A,$ $@0$!!%R $! ࠠ @ $!!Sjʪ $!!㍥ ڠ !(, J%P)!V\X` )ϕD! %  !A I$I$$!!‚ ! , H$!( I$I$$!! < P$! ! }j !WWJd$)!  ! P !  H@!A  @ ! @ 0!  !!  I$I$$!! ** P@$!xI$I$ L%) /  E)``  E)b` E)! I$I$e) ꪪ E)! I$I$E)$! I$I$E)! I$I$E)! 4AdH:E).> 5ɔIE). E)!pz  $!  I$I$E)! I$I$E)! I$I$E)!ꪪ I$I$E)! I$I$E)! E)!Jʪ. mN!* KdO A $IL!! k@m!O!U  I+! H9 ! ,I! %%IM@!WH 9!꿵I R!ժ_z I!  OR$! & K @$I! I"I !U ?$I! I$j@!I$I5! z I$! h2MI$! @\! mҶ ! mm! H!I&! )$Hm! LH$HE) !dBE)  I$I! Rfʕ!H$I$I$I$I$I$ (I$I$"I$I$I$I$I$I$I$I$a(ʊI$I$! I$I$@I$I$A:)$l$!{Z^I$I$<I$I$I$I$"I$I$I$I$"I$I$I$I$I$I$"I$I$I$I$AI$I$AI$I$I$I$ (4(I$I$I$I$I$I$ 4,I$I$I$I$`I$I$AI$I$A(* I$I$I$I$"I$I$I$I$A I$I$I$I$I$I$AI$I$aI$I$A+ I$I$I$I$I$H$A I$I$II$ I$I$h( I$IA$I$x^I$I$ A$I$BI$I$'I$I$ I$I$I$I$(  $H$H$I $( H&ib4$H$$!!E$M@ @$bm۶mA-Z4hҤ$!!ImR$ `I$M$ 4I$I**/IE۶ H$MaIE$!!I$I$$!!-m&$!!R$I 1 @$I Hm$AM۴I$!!Nǖ$ 5=ljpܵ%N$K$ mm$K&CBA@߼!bm- @1Ld J$ $ MA R$IUA zWIY ( I$L2$$p>UB5 bTP !I$9  @v!$%!I !ɤ!! ۶1N ! rki! / !U }Wu!b >$I!_PR!^ߪ !ת $%D1! d! $I I!  IBI!  d"!bz !  I$#I!* KJ!!  $@IH! @IH! HdH! hDMD!(86. P"%$)!aPj  I!A mI I!_* I$I! I$@! I$I!~'$I$! rII$!@ $$!  $I !+ i$[;`! $@IH! * P0I!  C!E) LȄ IE) h$ @! $@%! ^ i6!  &! fI! h0! MK*,!+ #I$!j   $$!+ d!d I$I$d!d d!d  `E) ! j"H!!ؠ @)E)/ 퐶M $%) @ =!b !LH$!*( d!d  $d!d H$B! $ ! * uA! IdI$! .'  !   $!!5W_ $!! @ E! `$d!d @@$!!Z% !pI$L&!  T! +/ H$$!!O/X !`$d!d d!d $!  !( iH! L&U"(!b t H! - $@d!d  (! $! I$I$$!! $!!  I$I$$!!> YP ($!/p ˀD@L,$!>  !  @d!d  $!!% (!@ @!  d!d h! I$J&! P ! % I$I$$!!,( x! I$I$e) I$I$$!! @$$!pp I$I$$!! 5 `!xpFʂ  T! * e) !  $!! 6 I$I$$!! *(  $!  I$I$$!!( I$I$$!! O$H$! II$ /  E) *+ I$I$1 I$I$E)$! I$I$1 I$I$E)!ꪪ I$I$E)! I$I$1 I$I$E)!// E) [-ڂE)ˏ E)!멭 H H! I$I$$!!( I$I$$!!€ L@H$!! $!! I$I$%)! I$I$E)! l,E)`! AI$! $Ib"I! KO$J!a*(I!  -S"!` $I$I! @aB! @ I! $I")!jj I$ !P!^ dB$I!* !I&$I! $I&$I! HIH! @$I&! #J I! I"6$! I$jI!I$I'A JI$! $It! M6 !  JD ($ $I0%! [ $i"4!a`3AB&!AZI$I$<I$I$I$I$ I$I$"I$I$"I$I$"I$I$"I$I$I$I$I$I$I 0b? H$I$I$I$/ I$I$"I$I$I$I$bI$I$"I$I$"I$I$"I$I$A@I$I$I$I$z I$I$ - I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$A*I$I$I$I$"I$I$ꪺI$I$I$I$I$I$I$I$ I$I$I$I$(I$I$A I$I$ I$I$I$I$ I$I$!AI$I$( I$I $H$bxI$I$*  $I$I$I$I$I$* I$I$! I$I$  $I  6M$O9=! H$I(* -ZM$!!mS$M!A $$!!@$!! &H$A II!AE&M$`I$Ip @& $I(I6m$!AI$I $!!E E$$!!NDA %K$@[$M$IIZ 1ia 0pJ$N, Kg6g8sm۶ 0۶ :x='g\?c$(HD1 $*'I*IM X$Ia/ UAْ I$P I$ $!B&zB ! ت I$ W$IY N!P!~ IYJ!L &!׽_ L$Hl[I! J.!!M+!R'hB!A*@$(!и$!R I!I!I$I$!! I$I$!  I"!@ $I!  $! `B$$! I$H !* @$ ! I$ $! H$I$! "I$I!j!I! $0$ !( LB! nm6! RU$I!Р* O" ! I$H!I$I4 !z TI$! $I$!+ [+mM!+ $I$ `  ! $IJ! b!^ H$! J!A  m"-! "5#I!b `sۼi! jL!7 DM!  L2! * Ц! I$I$d!d ! L&!(  $! m@ `! M6E)⯿ RI@E)Az Z-v! +  `0! * ! $$E) HB0$H! J I!a(4 X4 @!\p%J9\! 4L! / $`B2$!!5WU $!!裍 I$I$e)  $!Ap h!b( H!hɑ$L&! T ! - B $!!{ŷ &!  I$I$d!d @ d!d $ ! ( d" &!Ix$ 7 JDI!,4 @ !@   !  I$I$$!!  $!!>z@ $!! $! @ f!> V!  ( $!! HP$! ` .!A %!  d!d !! P"5I!Xp` DI$!%U $! I$I$$!!Š, I$I$$!! . I$I$e) I$I$$!!< I$I$$!!( $! ꪪ r 9!xϥ!^ 0! P!A H@ $!!Rb I$I$$!!  $!!rBʊ $!! I$I$$!!** I `!AI$I$  ! +/ I$I$E)! I$I$1 I$I$E)! I$I$E)$! I$I$E)! I$I$1 I$I$E)!j E)!  E).>  E)  E)!_~~z @$!!  I$I$$!! ** $!! N<  $!! I$I$$!!80 I$I$$!!(  E)!!I$I$! $IR"%! I$! $A$$! H$! $I$! H$I$! I H$!  I$ɐ!*  )!***z@!A&&I$I$!@! I ! I$I!** dBI! $Ʉ$I! @LH! I$Ʉ! O ! I$H!_ $I$!+Uz  $!  - R"pI! p THD!򚜬x$M$pI$I$I$I$((I$I$"I$I$ 4I$I$"I$I$"I$I$okI$I$ I$I$(0I$I$i$I$bpXI$I$>I$I$I$I$(I$I$"I$I$aI$I$"(I$I$ I$I$I$I$AI$I$AI$I$AI$I$I$I$ I$I$I$I$I$I$I$I$I$I$"I$I$AI$I$A/ I$I$@I$I$bI$I$I$I$I$I$0I$I$I$I$!I$I$AI$I$A+I$I$(I$I$I$I$(( I$I$I$I$(I$I$!@@I A$A`I$I$a/I$A$ I$I$I$I$(* I$I$! I$I$I I$* I A$Id"( p$I ( -Z4hҤ$!!I&H$аII$!AH$H!Ai$M$(II!AI$I$aI$I/+ Im$am$I  H$!A@$IA A$IX1$յ-۶m'H$I$?II/ i6,* &LXֵ P$!BI$I$$!BLF{$!((pDAN%p$I!  `8J( I%( 3'o`\  a9%h$I$I$   0۶hl$J!Wի E(&!_I$ Ad;IDII l@!)!$!@K!$!Im!!I$I$E(CI$I$E(C!I$I$!I!!&& !પPH!ޫGx! I$I$!* HD$I!A4<I$I$! I$I ! $I$! I$I !I$I$! A$I$! I$I$! R"%H!Aа I$I$!*$! $I$! H I$! $C$A!** !I2I!* $d! H$I2!* bH I!^ I$!u~I$I4!U_@I$  @P!- J$I!!  O!a &  4 !@+ I! $0H!a`` d@$I!! IۦXa! +I$%!^ Os-!/ VRA!/x R.QK!*  I!   $$!a I$I$d!d @! !L&! H$!A -m$! > ma$! ܔm! + I$@B !* H!! IHE) ` $!  H! h ̀@!$QRe"&!`` $ J! -  dB2$! * e) @(!@  @!(  H$!!|s I@! O$! 4A ! @ !E)  j"5!A  @! D$@!a($ !! "I!xꊨ TM'! /  !! @$d!d $!!  %! H$!!'  !@ ,@$! PH,`$!ˏ $@! H@!(  `d!d P! @0d!d ʲH$!a $I$!O$H$ A  ! % !! i$!A I$I$$!! I$I$$!! I$I$$!!  I$I$$!! PȀ@!xZO!&& ! d!/? I$I$e)  ! .,! @  !A % @$!!'6 I$I$$!! $!!@ O$z&!ɑDI$!/ $! I$I$e) @%)A` E)! I$I$E)!ꪪ I$I$E)! I$I$E)! @ E)! hU%) LE)  B$!!p`  $!!%5 I$I$$!!<( @ $!!B  $! !A $!! I$I$$!! ** $GI! ! ! ")$I!Bj!!! I$I$E)a I$I$!* $I$! I$I$!I$I$! !! P"!Aؠ $H4O! $IG! A$I$! P"%$! I$I$!** @$A$! A$ E)a H$!" $$I!ꨪ $! @L!* I! I"%$!_ I$M1!h ,I&I$I$a I$I$I$I$I$I$I$I$"I$I$"I$I$I$I$"I$I$AI$I$I$I$A+) I$I$I$I$. I$I$(I$I$pI$I$"I$I$bI$I$I$I$A0I$I$I$I$AI$I$A I$I$b+* I$I$I$I$I$I$I$I$I$I$I$I$! 'I$I$zI$I$!**I$I$I$I$ꪪI$I$I$I$I$I$I$I$bڪI$I$"I$I$AzzI$I$A* I$I$ $(I$I$ I$I$( I$I$I$I$ I$I$( II$H$I$`I$I$a) I$I$I$I$I$I$**I$I$I$I$( I I$N$I A$I$ ((  A$!A  @$!AI$!AIҦi b $H$!I$I$H$zI$I$A*   @$!AI$I ( I$E&$I !A$H$IH, m;vb'H$I$IEb ` %* Xĉֵ H$!BA$!B  9* x$@ `9HD N($vĉ`* %J!аN%E$I4I$I @H$!`QG0x /AI' W>O$ ~WH$I$-:I/! *yE!NX!`ۤM$@ A>Il$I  $ z I$I$E(CI$I$E(C@!I$I$!I$I$!e!! ?!W4d!!`$!m! @&B!AZ@I"I!UP$O" ! R>!U_$!_U&!j PR%<! "!@ ATR!a  $I )!*{ $II! .!$ !@ AH! $$E)a  I$!* @ I$E)a @$I$!I !ꪪ $dB!* H!I&! J !z I$RH!I$ / B"=d!`* !%$! $%bI!bں $! I$ E)a  $I$E)a P# I!!` Mh!b+́$!V b(^! Au%! R$ $I!* ! d!d @d!d  $` ! ` ! mm! 4$!  l! I$@ !*  D!A @$@ d!d $H$I!  I$! #-*H!~zI$!a* $HB!  dB&! ( 0! d!d  `E)  $!!q j- !^x)!W H!  ($A!@ $I! $I$E) I`B$!*( HB&$!P( !ࠀ  \! - @ !  `0$!!%W^ @(@H! ` @(! @ ! @! EP !> VP6!'<  H! C" d!d !d!d I$I$d!d  `$E) Hd!d R#)I!x`II$!?  P! $!!KO L! I$I$e) I$I$$!!>< I$I$$!! @$!!^ܪ dr%!  ښ30! 0!!  ! H@ $!!S{ I$I$$!!  $!!rjj $!! $!! *j P,.$!xp`I$I$ $! -5 I$I$e) $!b I$I$E)! I$I$E)! I$I$E)! E)!~ @! X%)  E).> 0$!  @$ $!!\XPb $!! $!!J** $!!   $!!@ P) !b€ ! p $!HL!!8$!UR!_ IR! *@I"I!U /!A @$!U!U  FO$!l$!_Uy$!UzU$H!!4M$z" !I"&! ZO$!!8  I! I!  IH! H$I$! A$I$! I$I!*** H$@E) $)@! I$I!a "(R"!@ಸE'H$ AI$I$) I$I$I$I$"I$I$I$I$AI$I$"I$I$"I$I$"I$I$I$I$ I$I$kzZI$I$ I$I$ I$I$ *&*I$I$!`I$I$bI$I$I$I$"I$I$A@I$I$I$I$ *I$I$aI$I$I$I$I$I$I$I$I$I$  I$I$I$I$I$I$ I$I$AI$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$!'I$I$A*I$I$ @I$I$.&*I$I$ **I$I$I$I$(*I$I$(* I$I$`X^I$I$kI$I$bI$I$I$I$I$I$**I$I$( I$I$! N$I(%H$ I $I A$ I$I$!AI$A!A 4i$I$I$!$I$^I$I$׵-I I$AI$I JI$I$AH$ $!A$H$b4Ii&!A$I$pH$Ip5 I'd`@B'b`HI $!BI-ٶ *`P$+XWJX1,%VZR$I *h$L IH$*pĉ`A\%,K$ $!BL$La  @$zWL@V 0='P'I$ ^I$IxI A A L AIJ IXd $!bI$I$$!bI$I$$!b[۶!#X (! V! * ۀu! I@#!*p $I!! $B$AE)  L! (( DHH!A<4JP!^~ 0 ! +/ B@d!d  $!!) $!` 9@!b  ! & "`! c!C& tL! ( A E) H@B E) d!d  d!d  !E) CHE) J"&P0! #D!/ !A @H!a I$I$$!! PG!  $!! &  $! Ȩ @ @!A l!ˏ'  X! -5 I$I$d!d $!!O￿ !$!! 5 I$I$$!!** $$!! @!@ $@!bI$x& xx I\I /- $!! $!!& I$I$$!!<8 I$I$$!!( I$I$$!! @$!@ 4@! $!!  Ph$$! x  C0d%) $!!B  $!!%%  !@ !a I$I$$!! @  $!!p`@ I$I$$!! $! $@L'!WV  I!UU жIҶ!U жIҶ!U жI6!Aj ԮI!a @RIR&! *j DJI>!*HO<! N!OI!UI¶!UI$ !UUg$I AZPTI>!I($*$PD  I$!A  )$! *U I! %@"! p  I9B!   !A  $I$!H $!AzI$I$AI$I$ I$I$AI$I$@I$I$I$I$"I$I$@I$I$!*I$I$I$I$I$I$' I$I$иI$I$>/ I$I$(I$I$I$I$"I$I$bI$I$ I$I$"I$I$ I$I$AI$I$A/ I$I$A@I$I$aI$I$I$I$I$I$I$I$I$I$!ppI$I$aI$I$A>* I$I$I$I$ 6.I$I$I$I$I$I$I$I$I$I$I$I$AI$I$ I$I$I$I$I$I$I$I$I$I$I$I$I$I$ I$I$WյI$I$!@I$I$!I$I$I$I$I$I$I$I$A`A$I$* 2^$ II$AH$I$ I$I$(I$I$!AI A$I$I $H$xI$I$V׵-I A$ I$I$( I$H$I$I$!AI$I IE$<`H$AI$I\% Iضe $(P$bXVMiѶai-ж$!!I  $!! %JDXVI"m$M &*@$Ib( $$JDI %-[vb' pI$!B-&$!!$$IjV  &<'N$I$I/Ip&`b/`X$C;6mb A"H*A8@$9ApI$I I!$6!H$!_UR!WU}%@!WUO! @$!+U I!UI!a !UIR !UI  H!I !! ! A I$I$E)aI$I$!$!H!r!H!_I.!UI'!UW $@!uU_ O"!!N2I$ I$$*HIb$  @Iə$!*U S!+ @"I!B IID!-* P$A!  H$! H$ !  LH2$H! Ŗvm!+ H !z* I$H!4I$ an @K!a+  Ʉ C!! I $E)a I$I$E)a C$@! !d0!  %>"I!^r%!W^ tI!H! I$! * I$H E) I$E) kۺ!! $I! ) kl!ꨠ +($ $!b. `IX! + P!! @$I!  @E) [-ۺ ! !A! + j"%"A!AX DI$!%U @! I$! * @d!d I%!  ! ( "@ !b@ ij !A  MU{! /7 !HH&E)  L&! * H$A E) R"%$A! I$! * dB2 !ꨨ$h ! $!0! `$CE) d!d Hd!d  ! @$ d!d  x.i!܀ %G)!qI $la! *)$ !`  ! ( H d!d LdB$!((  0E) iI!`I$I$**  I! I$I$e) $!!6 I$I$$!!* H@ $!!Pp (@!@ $ ! ds%!? JP,8!r 0! Hd!d @d!d  !  @0 d!d d!d ! X=@!ࠀI$I$?~ P%_!A I$I$$!!(  !A H$!( I$I$$!! I$I$$!!  I$I$e) `$!!'  $! I$I$I$I$I$I$I$I$ZI$I$ I$I$I$I$($Iȱ%+ I$I$APAI$!AH$I$( I$I$(I$I$I$I$(* I I$(I$I$^W%I$A$ I$I$*I$I$II$&I$I$(IE& H$I$pI$I$ * imA$9r$z^UI)$!!mM۶$!!-ڤMR4($IrVI$H$*I$I$( I $m$IdȲmm۶M$!!V"%4H$!!N5 ܈9t$H$I$ I$!AZR0` Ďiַ H/-۶m@%%! e $9 @$!_U'I$ H$I$ $=U0:Ixյ$ɕ!!'OV!U% I!H$!!)% a Pml!+%BB Z  $*!!o a $ !!ꪪ H! (&I$I$E(CI$I$E(C$!#$ A`!H!!  J AI$I$!b!I"6!I$@!UU_v$I% I$I$*I$!UU PIy$! $[! I$@E)a I$I$! I$I$E)a "!$I!ʪ@! $I2! I I!x I$`  II$!   !+ $L&! IA!""* HD$@!A8 I$!* $(@! R!a(%  A$! ")$I!bz $%P*@! ۰m! $IH! I$! * m&h ! +(U&! b U V! L$D"!  ! * $H$E)a H& ! mѶi۴!*J%@ ! ` HI$!A *) @ $!  ! * @B$! `B$$B! 0!E) "($A!p`eR1 _{ TIL! 7 D2 ! (  ! * $H$E) H$A ! $HD!@! I"!*(` $T !J+  I!  I$I$e) @0d!d d!d  $!!M j%!.8p  KG!b .&(   E) `H$C"! ! B $@E)   !  $R"I!P J%R")!  D! /? d!d @ d!d $!!(*# $!!@ $!!# $!` P-( @!b ~/!cI  T! %5 @ d!d  @d!d * !6 I$I$d!d !E) )!  @(!A@I$H$h  I\! +- I$I$$!! I$I$$!!" I$I$$!!.< I$I$e) I$I$$!!<8  $!@ @@! $!! XD$! <8 A2 ! , @ $!  M ! & I$I$$!!*** $!! & I$I$$!! @$!!& I$I$$!! @4 $!$ I$I$E(C@ ap !I$I$E(CI$I$E)a!H 4!x I$I$!@!!I$I$E)a!I$I$!I$I$E)aP!~I>!ꠠI$M!I$I$ $I$ /@Sɟ$ H$I$bI$I$ I$I$ (I$I$"I$I$!I$I$"I$I$"I$I$I$I$I$I$AI$I$I$I$PXI$I$>/I$I$(I$I$I$I$I$I$aI$I$ I$I$!I$I$I$I$AI$I$A/ I$I$>. I$I$ @I$I$I$I$AI$I$aI$I$"I$I$ I$I$AI$I$A** I$I$"I$I$I$I$I$I$ pI$I$I$I$"I$I$I$I$AI$I$A I$I$I$I$AI$I$`I$I$I$I$I$I$"I$I$ zI$I$A-I$I$"I$I$꺾I$I$I$I$I$I$I$I$I$I$`H$I$(  $H!AA$I$( I$I$bI$ $$I$I$ I A$bI$I$b^^׵I$I$ &I$I$(I$I$ I$I$!AI$I$(I$ H A$PI$I$A'KI$IaB$H $!!I$I $!!ZR$h$I4!AA&I$I$I$**IA$* I$ bm,۶mI$I$!!Em&$!!v$I_W `@#'P$I$I$I Ih<:,'I ^-eA  "@bI I-+I$I!$%A(6 ~(5I$ !I$I$A I$I$ I$I+I$17I*"@!U}kH!b#$CJ `Ð aIT(IA$!bT" I!ZI $ $$! j@ H!$! `; I!W ( a@`  ! $!$!$   b@ !!j! I$I$E)a!I$I$E)aI$I$!!ꪪM WzI$@!I$I&I$I$:  I$! $ T!* I$!* I$I$!  I$E)a I$  !I$! I $! I$$@ A I$ . $%oH!A+  Ʉ`B! $H!! $I ! I$I$!* RH $! IB EӫH!{ I$! tm! /  ! I$I$E) J! I$! * k,! X8!/  P! * m[ӭ! "4I!@ª+ )LJ$U!! 8 "A! $II! I$R"0!UVXp! % I$I$!  !! $A&! LdB2!((   ! ꫤ+!a!Es!{m $HA! H$A2! !  IE)a J$! $II! A˰! .> mMt!*, `B2!!  ! I$I$d!d  `E) P!A P$A! Rx҂!qi $HA! $H!E)  L! (( ! H! K$H!A  0E) "I$I!jI$N$?  I! Hd!d $!!% I$I$$!! @$!P  ! d!d }j>!7\ K'h %$! j訠 p0@! d!d J H! 4 I$I$d!d ` d!d D!! !b y&P5!zxII$ /? P!a ! I$I$$!! I$I$$!! I$I$$!! @H!AP I$I$$!!‚ $!! ' @ ,a!Ȉ 0xi$! !$! ! $! ( I$I$$!!* $! I$I$$!! @ $!!bB $!! $!!B $i9! 6!$ !꿿UH A@$!UH!0$!l!K$j!ВlÒ!@i۶!d'!U !I$I$E)aI$I$E)aI$I$E)aI$I$!I$I$!I$I$!jH$!!I$yC! I$I$`xI$I$aI$I$I$I$ I$I$"I$I$I$I$ I$I$I$I$ $I$I$I$I$I$I$ I$I$ I$I$ I$I$(I$I$I$I$"I$I$I$I$I$I$I$I$ I$I$AI$I$AI$I$ajꪪI$I$I$I$I$I$A@I$I$!I$I$"I$I$I$I$AI$I$A+I$I$(I$I$@I$I$bI$I$ZI$I$ajI$I$AI$I$I$I$A?/ I$I$I$I$I$I$I$I$zI$I$I$I$"I$I$ `I$I$A|>/I$I$I$I$I$I$I$I$I$I$I$I$I$I$.I$I$ABI$I$A $I$I$I$ (I$I$! I$I$( I$ $I$I$bxZVII$ I$I$I$I$@I$I$aI$I$(аI $ I$I$ `I$I$غ* i$m BR$M$b`  !A$!!MڤIR$ (H$I$A$I$bjI$I$ I I$(Ii&( h$M$!!mi۶$!!@ 4m$(M)P$!!$N$pI$I$-I@/(r`^M$!!$!B$I$I6I 9 p(O$ !zH$I$I$I$/ I$I IxlU5)%IȒ  ٶe; h$ɛ! H$I$$!BI $!b$!b I$$!B$`M5Iҭl8v ,I$* N$ `I$  I$II$ I$ I$UI$$II$!*I$U $FĘ$Pe! Mʶ!%>!_S!!I$I$E)aI$I$E)aI$I$!I$I$E)aI$I$!( @I">I Aꨪ7I$O6!bI$I$ I$! $ W!*  .!!b@ II!aI$I$!!ꪪ !dB!+ H$I!zI$@!^ J ! + ")$ !h !IH  $%R.A!A РI$I$! `B0$H!⊪ H !믿` 4!z JT!'_ I$L&!* $ !  E) H$ ! " I! IH!  +H!/ ` M! + ")*H!a` @$I!a I$I$E)a!`$!ꪪI$H%!)! /  IH @5$i!` Zl۶!! $ H! $B`E) W=!X  r!-7  L&! (( $I$-!!@ $IH! "H$ !b* !$  !A @ !ꪪ 'a$!Ë -m! ** L$`2!( @ d!d @!!  E)  `E) FP4!w  ʥ!-7  ɐHE) `B$!0! I! DI$I!*7  ! *  ("A!@x$ ! \! // &,! @$E) d!d  e) d!d I$I$d!d 5!Xp` (b$!SaI T ! % H$A E) C $BE) ! d!d R$ ! $!!/?  @!``I$I$  ID!A 6> 0! I$I$$!!ʊ( I$I$$!!  $$! p I$I$$!!/? !@  TH! ! 0 $! !38k$!Ϯ   !  GHL!( I$I$e) @@!A $!! I$I$$!! * $!!& $!!z** R P(!`@"(I$ @j!I$AI$w# `I$U-I$jmOAI$!U$ I$ I$ UI$IUI$I8/U$I$UHI$W@I$ жm P iٶ! R! & I$I$E)aI$I$E)a !b*0!`I$I$x__I$I$+* I$I$ (I$I$"I$I$I$I$"I$I$I$I$I$I$"I$I$I$I$ I$I$I$I$A I$I$(I$I$@I$I$ I$I$I$I$A*jI$I$!I$I$I$I$AI$I$A// I$I$>//I$I$"I$I$I$I$I$I$I$I$"I$I$!/%I$I$AI$I$ ** I$I$I$I$"I$I$"I$I$"I$I$I$I$AjI$I$I$I$p(I$I$A*I$I$AI$I$I$I$I$I$I$I$"I$I$I$I$(I$I$ I$I$I$I$I$I$`I$I$I$I$I$I$~I$I$ I$I$AI$I$!I$I$( I$I$( $I$I$I$ I$I$bxZVI$I$b) A$I$I$I$* I$I$! I$I$ I $* I$I$AI$IAx?I$IAI$h$ I$I$ I$H$!AI$bPH$I$( H$I$I$Io/+  $H$AIA& HI!A @$$!!$H IH$'*P$I$`^WI$IW- H$0$IxW)P$!BI$I$$!BI$I $G1* `9N$H$I$AI$I$!@I$I Ip`U%h$h$I$ $I *[ ۆm0I6:A 1؉e'Am@$b-6I$$I$ H$I$(.I$Ia*jI$IA(I$bIHa I IIa IaL.bIٖAI a@I$AאI$WI$UI$rUWI$IUI$I$WI$ _ KI$@$$ RMڶ!P$Ж!ޯ@ %@. !РI$I$E)aI$I$E)a ( b`J!6." ! I7 I$O=!I$I$+I$!+ $AJ! $%)A!AI$I$!I$I$!H !ꪪ  Ʉ!z0!WzB<! $H$I!* I9!$!I$I$! C$A!* BJb1!믾m&@!Aؠ ϕ! & MѤm6!. kŚb!( I$E) I$ ! $" $! II!A' hB!s 4!I!˫ H$H A  $($I!b $QI!$ I!A . R#钔@! ɑ$I$ *j $II!  I$! ** ! 9@!b " ! * #$ !b`"=!bJ* AL!A * "I$I!b@ $AjF! I$H$E)a $ DB0! H$I$! #0[!.: lq$!  !  ! ( )$A! HdB0E) mP"!!Р ҩ$A!!E'C!ym 4AI! I$!**  IJ !ܴ &iЦe! H$A$!( !$H! JI! II$.> ")PI!B@ TP%!A @ d!d I$I$e)  `$!! ! & ! MF!5 I\J$! E) $@!E) ! ! ( H d!d h%H!a4( @$E) @$!!j㩭 O$z&!^zxx IDI!-- $!! I$I$$!!*" @$!!< @ $! I$I$$!!8 I$I$$!!  $!!p`jj H$!!cɍ 0%!.> )TJD! *(  B$!  ! I$I$$!!+// $!! '& I$I$$!! @$!!4 I$I$$!! @$!`II"dIIR,%AI2`6rImK$A`0I$ۆm!I$UXA $ $ I@xI$UI$J@U)$I$-`II$b _ɑm! '`I$! !h!@%`$ pxX\I$I$a( I$I$ I$I$  I$I$"I$I$I$I$0I$I$I$I$"I$I$I$I$I$I$a I$I$I$I$@I$I$I$I$ I$I$AI$I$ I$I$I$I$A(I$I$uI$I$AI$I$AI$I$ I$I$"I$I$I$I$I$I$`I$I$I$I$I$I$AI$I$A;I$I$"I$I$"I$I$"I$I$I$I$I$I$`I$I$AI$I$ I$I$I$I$I$I$I$I$I$I$I$I$ꪪI$I$!I$I$A/I$I$API$I$.I$I$ I$I$I$I$"I$I$I$I$bI$I$5-I$I$I$I$! I$I$! I$I$I$I* I$I$I$I$A( I$I$ I$I$* I$I$! I$I$II * I$I$I$I$XV5I$I H$@$(I$$ H$!AH$H$I$ H$I$zI$I$+  $I *I i& H$I$!A @$$!!m$I( J$ H$I$II/1r$ ^WMi[$!!$$!! $!B4$I2 $a$h$I$I$I$/I$I IId $ `#ih$I*$I$$BHa` I۲!c 4 & IZ M m$I$bhII$  A$I  IbIҢ- $!BIHA $$!B$$!BI$$!B$!BI$I$$!BR"%%A I$Iba$I$$I$ $!I$*$ p I%WI$UV$I' ^I$_h&)$ m!!!j!" I$I$!!ꪪO&! xI$I'I$I$ ? tII! $ $!+I$I$!I$I$! !@ $)%!Ab II!aA! " Q!*( H !! !I$I$! C$A!* !b1!? ϩP"(!VXc  I$!/U  `B0!/  ! $$E)a !ꪪ I!! + MD !.=_@ !i $A ! - ! !I$I$! $AD! $)I!a B h<! I$!/!  )RI!`  I!! H$@$! HH&"!( j ="!X`E!!{m @"$tA!` $IC0! I$!I$I$!!!jꪪ V!A  I!** H$H$!(  ! %P @!  A!A  H! *% FJ$! (( Tʵ!%7 I$H$! H$ ! P$@ !؂*  ! *  ! * @$E)aH&@0!^  $! j HJ! I$(!A@ !  d!d d!d !$ j=O6!\\u P.$E(!!B TAI! $ɐ`HE) $%R"@! @  d!d DB0$B"!  0)! $@ ! X=P(!ࠠI$I$%5V P! I$I$$!!(( @ $!!rb x!8 @H!AP $!! I$I$$!!ꪪ !$!!%7 R)!AJQ%!> J !A8  E!A ( I$I$e) @$!!4 I$I$$!! @!A$ I$I$$!!  $!!BJ/H'P$!I$I$$!BNHI4! II$I$$I$!I$IAH$$I HI$(NN $I$I $I  I$ $N2$p`@I$myAII$!*hI$!!!_UH$I$I$I$b**I$I$I$I$I$I$I$I$"I$I$AI$I$$I$I$bI$I$aI$I$ I$I$a( I$I$ I$I$I$I$ I$I$ I$I$"I$I$ I$I$ I$I$`rI$I$AI$I$** &I$I$?I$I$AI$I$bI$I$I$I$I$I$I$I$azI$I$AI$I$A?/I$I$I$I$"I$I$"I$I$"I$I$I$I$"I$I$ @I$I$ *I$I$A*I$I$I$I$I$I$ ,6I$I$I$I$I$I$zI$I$ I$I$ bI$I$a I$I$I$I$!* I$I$I$I$I$I$aI$I$a* I$I$I$I$ªI$I$! I$I$! I$I$*I$I$ I$I$ hI$I$a)I$I$A* I$I$( I$I$I$I@A$I$aI$I$p\VI$I$  6i$I$I$I$I$!PI$H$I$ I$I$~VI$I$+I$I(  @$ I$I!AAH$Am$I )Z4@$pI$I$bI % &M!AI$!!I$I$$!!K%Y /`8+ p"'I$I$I$I$I$b*ID1 *!II@ @$'a$!BII$**IX$%A$vMm$(&$10IAp$(B$m'II*I$ aI$!!H!(I$I$$!!H$I$$!! I$I$$!!I$$!!I$!B $!B$IH J$J,A   IaI$I$$!B A@HA"!$Ib@AdB&dB pۖmI$I*I$* $ sm@n@I$  I$I jI$bЖm U g& !j  PH I$I$!(@ !`@ ! I$P( @I$I$b)DI$  $AJ! @$ A$ `@ !A`  I$!- P$D !/ $ T! & $J"1! $I*(!b*@!A I$I$! "A I!* !PJ%!I$@"!UVZ{I!U  Jb(%!+ I$@$! H$C!  ! "HD!ࢋ DH1!!!H! `B0!!⋋ !HI !< #)$I!ꊪ!M$P4!!)-5 $A$C!* k]!I$I$E)a  I$! ** IHH!*( ` *( !KJG!  $I$!* ! !I$I$!@!! I!R'!a& ۆnX&$! $Ej( !b $ #%!`  l! I$H!a  I! "$A!~‚ G19Ҡ!Y}e $@A!  A$! ""  I! *( I$I$E)a H$A$!( P%H!Ap "I!jjII$/?? M I! & "A !a@ )  !b  I$I$d!d $ d!d H!, "&A!` `!AB * I\! +/. @ E) $B"!!  '! @$E) " !@ 0 $I! @!`I$M$ h蠠  ɐT! +- I$I$$!! I$I$e)  $!!AO' $! ! ! @ ! H@$d!d I$$!0̓$! p ! - H EH! I$I$$!!  d!d $!! $! ,  IJF! ( I$I$$!!/?> R )! $!B(I$ bcIIb@AI$I$$!B$IJ$  m*%)  IbE)U( &E)U_ mP%) mE) 6 %) c$ E) Ib'I@! kۮ!I  m9C1@N9c$A@I$I$A ##I$I$!44I$I$ ((I$I$I$I$aI$I$"I$I$I$I$I$I$I$I$ I$I$AI$I$A I$I$@I$I$!I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$ jI$I$ @I$I$aI$I$"I$I$I$I$"I$I$`I$I$AI$I$A?+I$I$(I$I$!ppI$I$I$I$"I$I$"I$I$"I$I$AI$I$A?/ I$I$I$I$I$I$I$I$I$I$I$I$I$I$!I$I$A/I$I$I$I$I$I$I$I$I$I$I$I$^I$I$a(( I$I$ I$I$I$I$I$I$I$I$I$I$I$I$AI$I$A+I$I$I$I$  I$I$ (I$I$ $I$I$I$p\WI$I$% I $I$I$( I$I$!A  $H$I$( A$I$x^I$I$յ- I$I$  I$I$  4I$I$$, $!AI$I`)&H$bI$I$~߯I)4 @$I!A $!!I$I$$!!I$Im?$R$H$I$I$I$I$I .3:A@ڱbI$I$!!E4 `H9 &M$!!Iv D!& U^&I!^UUI@$A$I$!!I !A$$!! m$M$!!II!UUU $!UUU E)UUU* ' E)UU $$ E)UUl E)mmE)UU$ e)UE)(I$ IE)U IE)U o?`E)U_ m@E)` mӶE)U+ inE) IE)U Ib3E)U  @E)UUj m0! mPE) I$m %) NbL$! m۶m (!`I*lX0@  `[--M!!* $!! !ꪪ@$ !ꪪ|0!WzI$O& U_~I$I$ ! + R"I$I!pI$I$E)a@< a`l! I%I J & B"5$U!p " $I!B a#6+H!!kh@!! I$I$! "I$I!⪪H$!ﯾ$x"4!uWV{ɑ  $ "%&!a ( I$H$!I$I$!  $C2!. )(@!l!yp!u I!A(!I$I$!He !@ BI$H$/ J !(( I$H$E)a $I$ ! $IK!a I"$A! B)@!m $IJ! P"%+A!!Р!I$I$!!!ꪪ b6 $!ˏ/ PIJ!* ` I! R"%!A B E) HMH! &  R$E! J^ 5!p JF!%' I$H$!<!* @ ! A I!* I$ $! H$A$!J$h% ^\Xx IH!  AE)  I$!** @$d!d `0E) @  d!d  ˠM!(.( Mz&!V\ Jx$!  ! " !L$E) j& $I!( I ! II!a HF$I!!8  d!d L$z%!~zII - $! I$I$e) @$!!6 I$I$$!!  @! !  d!d H!H&`$!V^^Z H!+/ @0$! @E)!}}U @!E)!uժ im[E)! I$I E)!ׯ6r͖E)a I$Ie)!WE)jmE) IE) IE)U ۆmE)U( m۾hE)( }޶E)U $H$e)E)X I$Ie)E)* I A$e)E)R IIe)E)*/ m۶mE)#,mE)A` I$X$E)! I$I$)(Kq6AE)a( HE)44 Ӣm۶E)!U I E)Ղ m%E)Az I$E)UW I$smE)UU I$IE)AI$I$ I$I$aI$I$"I$I$I$I$ꪪI$I$I$I$ I$I$*((I$I$ I$I$A@I$I$ I$I$ (.I$I$ I$I$I$I$I$I$@I$I$AI$I$A/I$I$?I$I$I$I$ I$I$"I$I$jI$I$ aI$I$"I$I$AI$I$A/*?I$I$I$I$"I$I$ I$I$`I$I$ (I$I$I$I$I$I$AI$I$A*I$I$ajI$I$!I$I$I$I$`I$I$I$I$bzI$I$(**I$I$aI$I$I$I$I$I$ I$I$I$I$I$I$РI$I$a I$I$**I$I$I$I$I$I$I$I$I$I$AI$I$A?/ I$I$I$I$I$I$I$I$I$I$I$I$!I$I$a=- I !AH$I$( I$I$!AI$I !AI$I$ 4I$I$!``I$I$%/I$I$(I$A$ I$I$(I$I$I$I( )6m$bI$I$/I&A$I  $!!-ڶmۦ$!!m b<,%J$I$I$ I$I$' IĉdA*  (rb+b^H$!!I$I $!!d vb%`-6IO<!UUUD& U^&I!^U I$OR! O$E)UU I$6E)UU IrIPE)8> I@E)U !a۶mE)  E) I$I$)( ۰۶mE) $ ö%ےde)E)`- $I$e)E) H$I$E)!,( I$e)E) H e)%) *m۶۰5E)@ I$e)E) I$e)E) I$le)E) H$e)E)  I$e)E)^W $Ie)E)- I$IE)!  I-X$e)$! H$I$e)E)k} I$ $e)E) I$I$)( [l6lE) I I$E)$!(nmE)b I$I$e)E)U ۲۶ E)!`ܶ--E)b`` m۶E)!V lm۶mE)_ `E) }'E)Aڀ ME) yE)UU_ Զt!U M !(! !!zI$` _~I$I$ /ə$! +u!a I$I$!I$I$E)aHd!` !꯿@ !k!!  D@!M *&I$I$E(C!ꪪI!!.&I$J%!UUW^BA A * AP! I$I$!I$I$! ! I!.@!^z`)Ҕ!ym@!! @,!@!!V a (Q4@ bI$ // !ꪪ !!/ "I&I!ʪ I$I!b *  $E! ʥ&%!*h yD![ IH$!* H!I$I$!@ !! Z!ER-)$!> WP$$! J$I !,$  I! **  $E) H$@$!( $I")!b@ "A!AU<(!_Y}u $HA!I$I$! ! ɐ!+I$I$!P!  $I$!@0@ ` ID!-% ! ! * @$ ! !  CE)  ! $I$H2E) #5Ғ!Xxpm Q,!YqME A !-%  ("H! @ H$I!   I2!!  $! A$ !  !A P5(!Xpp`I$I$ **z p ! I$I$$!!" @$E)!UUU* I$I$E)! ۶mۆeE) E) I$I$E)!u< I$I$E)! I$I$E)!  E)@ ۰mE)a ؖ$[,e)E)^ $I$e)E)kj II$E)!  ۆmI$e)E) I%ېme)$! dE)  I$e)E) I$e)E) Idض-e)E).* I$e)E)z $I$e)E)zWU C$I%E)! ɒdɐme)! I6,ɒ$E)! $I$e)$! I$e)$!( $I$e)E) I$H$e)E) I$$E)! , I$He)E){> [6fۆmE)  %۶aE) ` KmaE)A4 $I$e)$!  H E)< I$I$)( I$ $E)!. ۶m˷E)a$, I$I$e)E)*U I$I$E)! #3l۶mE)~ IRn۰mE)U I2'6lE)U I$E) I$I! ޠI$I$AI$I$( I$I$AI$I$BI$I$ I$I$ I$I$ I$I$I$I$((I$I$A4I$I$AI$I$ >I$I$// I$I$"I$I$I$I$"I$I$I$I$Az*I$I$I$I$AI$I$A I$I$(I$I$I$I$bI$I$!I$I$ @I$I$aI$I$AI$I$A>* I$I$I$I$a*I$I$bI$I$I$I$zjI$I$I$I$AI$I$A/ I$I$ I$I$I$I$I$I$I$I$I$I$I$I$!* I$I$I$I$I$I$I$I$I$I$"I$I$aI$I$A?/I$I$I$I$.I$I$ (I$I$I$I$ BI$I$aI$I$A?I$I I$I$(*I$I$I$I!AA$H$(I$I$aI$I$ 7/I$I$ pI$I$ I$I$! I$I$I$IAi6h$bI$I$/Ii& H$I$A$H$$!! $!!Nd[(`H$I$a(pI$I$!I$I$A IH @$M6!@$!!I$$!!?r z }$I$!a y E)UU'  E) E) I$I$E)!' I$I$)( I$I$)( E)@ ٶ[aE) I$I$e)E)j I$I$)( I$I$)( I$I$E)! II$E)! I$I$E)$! $I$E)$! I$E)! I$e)$! I I$e)$! òm۶mE) ` A$I$E)!* ۶KmE)a4, II$e)$! II$e)$! I$e)$! $I$E)! @$I$E)! IaI$E)! $I$E)! H $e)$! I I$e)E); H$$e)E)Ԫ I$I$E)! I$A$e)E)ݹ ۲-6`E)@ Öm۶ E) nۀ E)b I$H$E)$!( ضmòE)` I$I$E)! I$A$E)$! ۶m-E)A` I$I$E)!* A$I$e)E)U I$I$E)! E) vL HE) m6E) mm E) HI a M& !ZI$I$9I$  +!I$I$!I$I$E)a '!! ! DJ"%! $I%! ل !* !I$I$E(C!ꪪS!- {koI$I$ AY!! DI!H!I$I$E)a!ꪪ0 !J$&!_~z g\1 "!X !B )&  I$I$E)a !!M$`$   A+  I$&!(( I$I$!! J.R I!!( R"$ !РA"!ym tAH!xx !((0!H !((( H`   - !a͏.@P!I$I$! @  ! I$H! $HR"I!Z  L$! (( Mgj %!X !T! %7 HI!A@ !I$I$! !I$I$!I$I$!I$H$>  I!*+  $!  !A @$HE)  H&!(( $I)!@  :II! MD!5 TO!A**6  H$!  I! **  ! * IHE)a vM$! a!E)!UUu E)z IE)a E) I$I$E)! I$I$)( I$I$)( Xm۰mE) l6lE) I$I$)( I$I$)( I$I$E)! I$I$E) II$E)! I$I$E) @$I$E)! I$E)! @$I$e)$! I$I$e)$! Km۶mE)a4 m"mݶE)!@J ۖٶmE)  I I$e)$! I$e)$! @I$E)! $I$E)! II$E)$! IҦ%e)!$P !nE)a  I$-Ke)! I$`e)!* I$IBE)!  me)A& I$I E)$! H$I$E)!* I$I$E)! I$I$E)! $I$E)! $I$e)$! I$Ie)E)iz* ۶m۶ E) I$H e)E)y޴  E)@ @۶mE)! I$I$E)! I$I$E)$! I$H$e)E)U I$I$E)! I$I$)( 2`mE)j IömE)! I$۶ E) I$KE)WU~I$I$ I$I$ I$I$I$I$I$I$I$I$$I$I$AI$I$AI$I$I$I$I$I$"I$I$"I$I$ I$I$ I$I$`I$I$!*I$I$ BI$I$ I$I$ I$I$"I$I$I$I$"I$I$I$I$A𸨪I$I$AI$I$I$I$⸨I$I$I$I$ &.I$I$!I$I$ @I$I$!+)I$I$ I$I$!pI$I$I$I$I$I$I$I$I$I$AI$I$(I$I$I$I$I$I$`I$I$ I$I$I$I$AI$I$A/+I$I$ I$I$I$I$I$I$!@ I$I$pI$I$AI$I$a++  $I$I$I$ I$I$ $I$I$I$ `I$I$A/I$I$b)I$I$* I$I$! I$I$I$I( $H$I$I$IA$b H$I$( I !A@$ApI$H$I$AI$I$A/I$Ia%+I"@Ӥ@ 'I"E)* ϟ<E)UU BE) E)b* I$I$E)! I$I$E)!  E)A@   E)@ E)A I$I$E)! I$I$E)! I$I$E)! I$I E)! I$IE)!* I$IE)! I$ E)! I$e)! I$E)! I$e)! Ie)E)]  Ilme)E)  IB ٶe)E)  me)E) i[m@!@e)A0me)A` IRIe)%) Im۶@!1me)  lҖ$жe)E) IBВe)E) IҔ ɶe)E) IB6mYe)$!$P"me) P I&de)! I$Xe)! I$He)! [mE)ap I$IE)! $I$E)! I$I$E)! I$I$E)! I I$E)! I I$e)$!( I$I$1 $E)P I$Ie)E)z( I$Ie)E)U_> m۶lE) I$I$)( I$I$E)! I$$e)$!* I$I e)$! I$I$)( I I$E)!( Ӷh۶E)!W zE)W I$[mE)UW ɔI=!+!I$I$E)aP!ڊ( zj@' !! CY!OU"H! *8!!I$I$E(CP `!!PB0J!^{oII$ / !!I$I$E)aXl`!!ꪫޜj &!u^ I!P@!ؠ!I$I$E(CG (! !zꪫII$ 5^H'q!  $AP!h( @!  Ij$^!(x%@ !Xp j$!YI$I$! Xd!I$I$E)a@ ! !ꫫ j!US;-!>{ NP%d!$ A $H !. I$E)a II$!** I$H$! P#(.!xbbsY;  ڶmf-!!ꪪ!I$I$!!I$I$!`%( xx 0  jDA!a(,  H$L$!( $@$E) `B2$B2E) $H!` $ !# B z &I4! J$Ir\!" Fm%) $eE)ߺ E)` I$I$E)! I$I$E)! I$I$)( hE)A8 dE) I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$IE)! I$I2lE)! I$[ e)! Id`e)!  I$۰ e)! Id,e)!/ I e)E)W I$Ѷe)E) Imme)E)/ @@! mm6@!# Ce) $5ne)A,$ I $Ie)%)*#8$Ie)`@ lme)E) MRжe)E)\ IB6Pe)E)} I e)E) E)!_ڶ۶E) m۶>E)~@%E)fe) %I$e)! lYe)!( ؆ Y$e)! M d$e)E)(] IB`e)E) IҤ`Ke)E)U( I$le)! I$IaE)! ˶m`e)& E)(6( cmE)!@ II$E)!*4 I$I$)( I$I$)( I$I$)( ,E)p I$e)E)/] I$I$e)$!* I$ $e)$! I$I e)$! $I$e)E) W hmѶE)!` Im۶mE) I'E)U^ I$m@E)UU_I$I$PI$I$AI$I$A+* I$I$(/I$I$!I$I$!I$I$"I$I$I$I$"I$I$"I$I$AI$I$A* I$I$ (I$I$I$I$I$I$"I$I$I$I$(I$I$AI$I$A** I$I$I$I$I$I$I$I$I$I$ `I$I$AآI$I$AI$I$A/ I$I$I$I$pI$I$bI$I$ꪪI$I$I$I$@I$I$& I$I$I$I$I$I$I$I$"I$I$Az**I$I$AI$I$A?/ I$I$jI$I$I$I$I$I$I$I$I$I$AI$I$A? I$I$ I$I$(* I$I$! I$I$I$I$*zI$I$xI$I$A- I$I  ((I$I$pI$I$!AI$I( I"M$!I$I$ *Ii&I$I$( I @ IIE&H$I$A I$I!A I$)%)a+ y+E)U !E)!5 I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)! I$I$E)!* I$IE)!( Kx%!a (h!"!b * !I$I$!I$I$! J$#(! OO!U $ɐ I!@ !j  `!ꪪ0!I$I$!M$z& zx TI! L$E)!UU J E) I$I$E)! I$I$1 I$I$E)! P%E) I$I$E)! I$IE)!۶m6(E)*@۶mlE)2mmE)a` lI$E)! -I$e)!w!E)! @ mƍE) &E) E) 4`$! V`I$! Iҡ%)+ hѶI!( "5 !A` FHH%)! @% %)A H"E)!UW G%%)! OE)(* жi۶e)!+ %$I$e)!~.%$I$f1!UUf1!UU $I$f1! $I$f1!f1 ې$I$f1$!.$$I$1!UW.'1J?1bje$I$1 ӆ1E) Nm1E) IIe)E)Um+,e)A$ I6Ae)! [f1!_?`f1!UtmۦE)~:$ E) PE)* mE)* i$!! c ܄E)ߠ 40$! Ӏ!  AsH%) 5E)ajmٖE)A  me)!ڶ &E)!xhME) I$2 e)!$YHbE)  I$I$E)! I$I$E)!+ I$I$E)!* I$I$1 I$I$)( $I$e)E) ۆ xmE)a ۦ¸ E)%mE) I$I$1 I$I$)( cE)~ I$ `e)UW I$O(E)AI$I$bI$I$I$I$AI$I$ ** I$I$I$I$(I$I$ I$I$"I$I$ I$I$ I$I$aI$I$ **I$I$I$I$zI$I$ @I$I$AI$I$I$I$I$I$AI$I$A/ I$I$"I$I$I$I$& I$I$I$I$"I$I$I$I$A./ I$I$ I$I$4`I$I$I$I$ * I$I$ I$I$AI$I$A/I$I$I$I$! I$I$I$I$I$I$I$I$AI$I$A*I$I$ `I$I$ I$I$! I$I$A4I$I$AI$I$A* I$I$I$I$ I$I$! I$I$I$I$РH$I$II6. $I _WU5 I$E)UU IE)ե E)! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$  E)! 6fE)Q$IE) $I$e)! m86E)~  mE)& d'%)U $h$! Ѷ! f۱m! k$m! mN4!b M" %)ߪ* IE) -۲ E)j-% @E))Oe)!W $IbE)m6h f1!B%e)+ IR Ye)E)W IB6e)$! `e)E) M-e)E)> l$1E)W $I$$e)E)z $Вd$e)E)z @m$e)E)U ۺ m$1E)U mam$1E)U $$e)E)U ۰u$1E)U C1e)A` ۶ A'1E)}=.y1  ;lkx1E) de)$! Imv1E)W$ @ %e)Ap Iڶf1$!_ I$:`1$!O1!U*mӶm tE)z E) JE) LE)  jfE)  h%)  `@2$! 4M$! IR!/z ٶE) mLE) .`{e) $A۴-E)j(h$pE)  I$0 e)$!۶qH E)( I$IlE)! I$I$E)! I$I$E)  I$I$)( I$I$)( I$I$)( 6lòmE)!@$I%DE) .E)O E)  I$I$)( mӶmE) x 9E)~ j"%@E) jPIpJ!I$A$ " !믿c$I$I$+`%$!a! .'X$,!d!0L'( ' H@(!` ꫯ I$ ￿1G!`% xh9ɑ  -%X$`!!I$I$E(C"%P pa!a D!@ a!!H ꪾ!I!{ RR"!A`P! ***@$!I$I$!I$I$!I$I$!!jꪪi$I4" DIA! !j!@"   ! ͶlK! ۶-E) IE) U  I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$$E)![) ۖlE) I$e)! g۶m;E)!w lE)@ 6:E) Җ$! m! FNr! ۚ$I ! m$$$! m[I!, I'@%) IBE)!Uy8cE)m۶ E)!m`e)!$I6E)Kqce)   IȦe)!  I$Ie)$! I ٤e)!+ dCdK&e)E) ]81E) - -$e)E) $I$e)E) Pl$e)E)^ -$e)E)U [;`m$1E)U mmm$1E)U $$e)E)U nĆ1E)4Ide),4 f1!` m[['1$! I$e)$! I$ز-e)$! $K2e)E) U MѶm E)!& X$I-e)E)0U lI%e)$! I$e)$! I$e)!  жv$f1E)U I$$e)E) d &e)E) @e)! I&$He)! de)!Um lE) E) f%) mL h!$!HKU!A* m׶%) ۰m-E)*`LJ$ٖE)(* I$e)! K,de)E)x+$I#E)@ I$Ie)! I$I$E)! I$I$E) I$I$E)! ˰mmE)b( $I$e)E)ꪪ HI$e)E)x+ I$e)$! $I$e)$! m۲-E) @ Im%e)! Kq0E)^ I$mE)U_ I$I%$!a__I$I$ ..I$I$A8I$I$I$I$"I$I$"I$I$I$I$@I$I$ I$I$! I$I$I$I$I$I$I$I$I$I$ &.I$I$I$I$!*I$I$aI$I$I$I$I$I$I$I$I$I$I$I$AI$I$ I$I$I$I$I$I$API$I$I$I$pI$I$A?I$I$AI$I$.I$I$AI$I$I$I$ *6I$I$AI$I$A** I$I$I$I$ (4I$I$! I$I$I$I$ @I$I$ *I$I$AI$I$. I$I$! I$I$I$I$ pH$I. I$ %)խ yRE)U- E) - I$I$E)! I$I$E)!+ ۶mE) ۸- E)B  ömE) I$I$E)! I$I$E)!W 6E) @%)!(. mN$! $;N!~W$I !Uժ I$!+ Jʁ !*$ 1' E)K$I E) m۶ e)!] I$0e)!*#m Me)aj$'h)e)A mIm$e)E)$ H2e)@m$e)A  ,I$e)!@mܶmE)  ː$I,e)$! I$I$E)! I$I2`e)$! I$I$e)$! I$6 e)$!** I$He)$! I$ $e)$!IE)` Ime)! I%Ime)%) Im۶ e)$! e)!@ m۶i[E)  Im$e)!0 I$me)E)_ ۶meE)A I$[me)$! I$!Ye)$!  I$le)$!* I$ɲ e)$!  c۶ lE)!p  $Ile)$! $I,e)$!" ؤI$e)$! @2dI$e)$! " II$e)$! úvv$1E)U m;l4f1E)`ne)! I6Ae)!  e)!_ӶeaE)~~ʶ$ E) 4E)w n[!I !T A@ If۵!A+ ޔ$E)Uº-fE)a@  me)!  X`$e)$!  I$ e)! $ɒ E)*  I$I&E)!/ I$I$E) * I$I$E) [múmE) I$I$E)! @$I$e)E) I$ e)$! $He)$! $I$e)E)V ۶ oE) ذ E)` &`E)Z m׶XE)$J!AH$!I$ /' p!R0!j(MD a:1J!`7) ^u}jNq$  @!X!H$@$ @#(" b)DI I$J' ^X !ˀ!I$I$E(CX, !!H&P4 ^Zz L /.@!%z a (H$@$ p@8!@d2 ! HF!'JH   !!I$I$! !I$I$! L$j%!)! / iM! KDE)+ IE)!ի I$I$E)$!+ I$I$E)!  E)a` I$IE)! ۷e6`E) IH$E)$! I$I$E)! 0E)!U  "5E)!j  @!  ic;! d'IO!_U q'! m۶@!J }[IpE) *@E)iI$IE) m۶`e)! Id`e)! 9Dne)6 $E) --$e)E)]$A$Ie)A ٶI$e)!mE)а ض$I$e)$! $I$e)$! I$Ie)$!( K$I%e)$! I$ e)$! I$ۂae)$! I$Ie)$!  I$ې$e)$!K6N$e)$( Im`e)E)U I e)$! Im۶e)$!$)`QE) Ie)%)  Ime)E) I$ضme)$!۶m E) I$Ie)$!( X$Y`e)E)x  !e)E)$IE)G4e)a` Ie)E) - 0`I$e)E)z 9e) @ [ `e)! I²me)E)] I& ْe)! I$؆e)E)UW I$Ile)E)Uz ː$I-e)$!* I$e)!  QI$e)$! Am$e)E) l0$2e)!@ !pe)! d e)!w$ E)A -E)U m۶Z!a4 $I! I$! 0 $%) U m喷E) ж%mE)AТ l I$e)!/ I% e)! I$eC"e)! $I$E)$!* I$I$E) I$I$1 I$I$e)E)  E)@@ I I$E)! I$@e)$!* $I$e)$!  $e)%) I$HE)! I(E)_` I$@E)}UzI$I$I$I$"I$I$ I$I$I$I$ I$I$AI$I$aI$I$I$I$I$I$I$I$ꪺI$I$I$I$AI$I$A** I$I$(I$I$ I$I$"I$I$I$I$"I$I$A@I$I$+ I$I$I$I$I$I$I$I$I$I$"I$I$AI$I$A//I$I$AI$I$I$I$I$I$I$I$ @I$I$A*I$I$m髪I$I$ (I$I$6 I$I$I$I$I$I$I$I$ &I$I$ . I$I$( I$I$ I$I! yWE)U+ E)- I$I$E)! E)j  E)  I$I$E)!+ II$E)! ۶m;E)! 6E) @6%)u  I! $v! v; $!+ I! AE) ۶mE) *( I$ɂ e)!} Id6le)! I$e)$! ٶaۖ$e)E)w lI$e)$! ؖ$I$e)$!* @$I$e)$! I$I$E)! HE)A. ۖmlE) IH$e)$! I$ E)! K-le)E)  ÒmI$e)E)/ ɰ$[2$e)E)  mSIe)E) / ِdK,e)E)? ۲ae)E)  IdIe)E)?7* ېI e)E)*/ X,e)E) Ide)E)/  m&lCe)E) I$IBe)E)* mm e)E)  e)@!)He)ZmLe)  X-e)E)[ @e) a2le)E) -ɒe)E) Iiٖe)E)  ,K,e)!Fbbe))Ie)a  Ȁ [%e)E) - ae)E) m_lke)  I2`e)E)^( IҶ%e)E)U  I$le)$! I$X`e)$! A$Ie)E)"UW H$I$E)!0  ВI$e)$!* YI$e)E) U $e)E)!MsaE)  I$ e)!ߨlN&#)Ae)Aؠ O>ۆmE) m۶ j l[$e)$! %I$e)$! $I$e)$! I$I$E)!  E)@@ ö E)A I$E)! I IE)! I K%e)E)  Ie[-e)E)*  Kmٖe)E)*  I$e)E) . MB&ee)E) lI$e)E)  [$2`e)E)` ɖ,Y`e)E)  e)E) I%e)E)^ I)Ie)E)  [$Ke)E) I$I e)E) * $I@!&b( e)a ۲$Ke)E)Ie)  K%Xe)E)x0@e) %Xme)E)P H$@e)E)W $I e)E)愈Pm6IE)a `iҶe)E)   I%e)E) I$e)E)imE)``E)! )&@e)E)  ɒ-Y e)E) 4ie)E) ˂ ې-Yde)E)  Yde)E)b($Ale)%/ Imؐde)E). I-ؐae)$! I$6`e)$!*d@E)$ dI$e)E)/U\ $ؒI$e)$! K-$e)E)mm;`Ðne)  I$ Ke)!ӶmE) IE)U c' @!_%$I!UU `NI$$! ܔE)f۶e)  ٲI$e)! I%ae)$!H.@E)O ܖmۆmE) I$I$E) I$I$)( I$I$)( $I$e)E)_ I2$I$e)$! I$K!E)! ڢi۶E)! I$I e)E)* ۲mضmE)` I"%E)Uz I$O,$!I$I$I$I$AI$I$A*** I$I$(I$I$I$I$I$I$I$I$I$I$I$I$AhI$I$A I$I$(I$I$I$I$I$I$ *& I$I$"I$I$I$I$`I$I$I$I$I$I$pI$I$I$I$zI$I$ *I$I$aI$I$.I$I$I$I$I$I$I$I$AI$I$A I$I$*I$I$&I$I$ I$I$I$I$AI$I$A*/I$I$!I$I ) I$$! z TE)  H%) ( PE)a I$I$E)! I$I$E)!+ I$I$E)! m۶m;E)!W 5E) lsm! d'$! mv !/ Ğ $!/ O& E)տ I۶me)  I$e)! I -e)! I6l[$e)E)*_ K6,I$e)$! $I$e)$!* ۶% E)p I$I$E)!* @DE) I$I$)( I$I$E)! I$I$E)! I$I$1 m۶E)! I$ e)E) ْdɰ%e)E)/  ɖ $e)E)  I$e)E)> KI$e)E)m[mE)a  0$ E) $Ie)! $I$e)E) I$ e)E)U $e)E)( I$ɰ e)E)׿  I$le)E)U I6e)$! I$$e)E) I$e)E) I$e)E) I$$e)E)[u e)A  K$me)E)T I$`e)E) $ e)E) @$e)E)[ $@e)E)  %߷E)!@!Fr$mE) mIme)$! X6I$e)E)  C`I$e)E)`+ʹimE) I$$e)E)./ HIle)E)8?* IIZe)E)>.* ؖdK-e)E).@ ,e)E),  [e)A [m$e)E) Imde)E)W( I$öe)$!ۺ%&E)!p $I-E)! mI$e)$!* Hi$e)E)[ Цe) I&Ie)!le) _N¶$ E)W I$%)UW $si!U_ W]! 0$%)UD.E)  H I$e)!  Km e)E)x ) E)dmE)$ I$I$E) * I$I$E)! I$I$)( I$I$e)E)+ KaI$e)E)\ I$Ce)$! EMe)!*6 I Ie)E)5 I$ $E)$! K HE) u5{@@E)Z(!jPI@a r$'!5!蠢I$I$b**H@% !믽)H W!I!A#J!bꪪ:`I$J$><(! aB! A  Xe@2,! &! * Lx%!WV^)D!("!o II$ XH ِ%X  *H!ymEP !Q)!~ $I!! mE)* E)! >( E) b p E) I$I$E)! I$I$E)! $I$E)! 2E)!U d%) ю$!,[! 99 ! ]N$!" $E)m۶e)!  I$le)!  Ilض$e)$!   I$e)$! ـ$I$e)$! X$I$e)$! 8E)a& I$I$E)! *E)A  I$I$)( I$I$E)! 8 I$I e)E)  E) ` I$Ie)E) I$Ae)E) m&)$e)E) C ۖ$e)$! K$e)E) I I$e)E)>MͶmE)!1Ƕm{e) (( $I6e)E) ˒$I e)E)W* $e)E)  H$@e)E)  I$e)E)} I$-&E)!* I&`e)E) I$$e)E) I$e)E) I$$e)E) I$e)E)*FJ @e)  I$ذ e)E)U I$de)E) $e)E)   e)E) 2,۶me)E) 0ۆeE) 6lI-e)E) ۖle)E)  ې`e)E)  IMٲe)E)  KmXde)E)x ( I$˰ee)E)}  ɒ%ae)E) ɖ$[2le)E) m ې$I e)E) ؖaI$e)E) dSi$e)E) `$e)E) I$He)E) (,e)@ijE) HܐIe) I%e)E)z I$ۆe)! mE)  $I%e)$!  ؒI$e)$!  `K%e)E)5 I e)![ae)!_C$ E) I2'%)U_ $tl$! oI$!  ܔE)`۶E) /$le)  I%le)$! I$[`e)! I$I$E)! I$I$E)!* I$I$1 I$I$)( X$I$E)! I$@e)$! A$I$e)$! H$A$e)E)蠢 I e)%)* L1ضmE)^ I$K$e)I$I$A I$I$I$I$I$I$I$I$I$I$I$I$aI$I$A***I$I$I$I$(I$I$ @I$I$! I$I$ @I$I$ I$I$A>/I$I$a I$I$I$I$I$I$bjI$I$ I$I$pI$I$ :I$I$I$I$I$I$I$I$I$I$~I$I$a((I$I$I$I$"I$I$I$I$I$I$I$I$A I$I!a ID%)׽ oE) I$I$E)! ۶m`E)b I$I$E)!+ ϐl۶mE) E)!_ fE) M;$! Zn! M !+ Zt$! 4E) i۶m e)! I@$E)! I@$e)E))^ -I$e)$!ɒ IE),& I$I$E)! I$I$E)! ۶meE)a   E)a@ E) $I$E)  I$I2,e)E)ﯾ I$ː$e)E)^ IH$e)E)U"$[mE) ` A$I$E)! E)!  I$H$e)E)_ݸmfE)! I%[de)E) ( ImX%e)E) -2$e)E) ame)E)  KdI e)E)(* $e)E) Iie)E) $hLE) MI"e)E)( B ضae)! a`e)E)  me)  m1E)P Ie)a $B$e) $e) I$le)E)* ɐ I e)E) / M$I1"(m4E)A ٶdKde)E)(88 ۰a le)E) $ 0E) e)! ٖ,e)E) `ضde)E)( He e)E)  Xl-e)E) I$@ e)E) Ile)E)" I$۶e)E). Ö$Ime)E) ÖI-e)E)* -I$e)E)- K $e)E), K- e)E)  mI e)E)*HdE)6amte)(4 Hmð-e)E) I%ؖme)E)UcmHE) I$I2,e)$! %I$e)$! HI$e)$!* mBe)E)p I$ e)!Ӷm @E) IE)U I$@$! I2'! 0$%) U ۰mܖE) 07&e) X`le)E)`  I$6e)! I$I$E)! I$I$E) I$I$)( I$I$1  $I$e)E) I$ $E)!* I$I$e)$!  $e)$! I$e)E) m@۶E) x I$@ %)@ b`!믯N$K')Tə!h@0!zzੇYI ɒ Id!)lˀ  <`$-p`! \  )-z\I A('$@ !"!!kozR ! 0"!zzjI$q$("X!(x& !(ظ۶-X- @ 2 ,I JbD$! ڬ %)W ME)+  E) (%) ` I$I$E)!+  E)b` Em۶E)! $E)!W ؖE) &! tLr! 4!/ KME)* K$IE) I$ e)! I$E)!  H$e)$!ðٶce) j h۶i۶E)! I$I$E)! I$I$E)! E) PE)A8  E) p I$Ie)E) I$ $e)E) I$$e)E)U I I$e)E)~u d̶mE) (4& @Ӷm۶E)!` I$Ie)E)U/ I$I$e)E)W. IlÖ,E)! I  e)E)  I ɐle)E)*  ز%Kde)E)(( Æ--e)E) I e)E)*  [$Ke)E)*ܴm0e)!@mmE) m$e)! ۀm[e)E)##'me)!` Y$ɰe)!dI`e)@R, e)`c_{l=e) p m6He)%) I$He)E) 6`6e)E) (e)a@c;e) $Ile)E)o{  Ð$Ide)E). H I E)!8 lI$e)$!* I I$e)E)*W `ɖ$e)E) ] `e)!@!IADRe) @$e)E)  %[)Ie)%)$I@e) hɤlȦe)E)( 0 mȀ e)E) `Òae)E))iLe)$$ I$؂le)E) A$@e)E)b"!( $)E)  ) I$e)E)* Mڤ$e)E)8,+$1(e)@ ِ%ق%e)!  I,e)E)* @ hڦe)! I%0e)$! a۳e)! p -I$e)!۴ mf1* l e)E)` I$Ke)!ZӶm E) N1%)W~  $ch! IOڤ! / pE)l϶e)!AmE)  I%e)! E)  I$I$E)!* I$Ie)%)*+ I$I$)( I$e)E)յ I%ɖ$e)E)UP I$e)E)5W II$e)E) - [lE) RE)z I$@E)UWI$I$I$I$I$I$ꪨI$I$AI$I$AరI$I$A I$I$"I$I$I$I$!`I$I$I$I$I$I$AI$I$zI$I$I$I$I$I$I$I$aI$I$I$I$ p(*I$I$!I$I$ I$I$I$I$I$I$I$I$bI$I$a* I$I$I$I$I$I$I$I$ I$I$!A IE)a-  E)`` I$I$E)! I$I$E)! I$I$E)! I$I$E)! E) K%E) Z E) hKE) ВN$!  E)ajۖm mE) I$e)$!* I$E)! @$I$E)!* @E) @ E)!  JE). I$I$)( I$I$)( I$I$e)E) I$$e)E)V II$e)E) ^U A$I$e)E)"zU I$I$)( I$I$)( II$e)E)* I $e)E) A$I$e)E) H$I$e)E) I$Ie)E)*  K$ɲe)E), [mE)aڴ"E) ` KdA$E)! I $e)E) eKI$e)$!  mI$e)!  mI,e)E)"$ɑE)  A$IHE) $ɲ$E)!@( m۰ E) $e)E) ے$Ile)E) I$e)E)_ I$e)E)U I$e)!ʀ1I$IE)  I$Xle)E) H$Ie)E)(* H$e)%) I$I e)E)}/  $Iee)E)  $I%e)E)W XdI$E)! $I$E)!( II$e)E) 6I$e)E)? !ې$e)E)4me)$, ٲm۰de)E)( ِ Ie)E)*۶m؆e) 2,Â!e)E) ۶m,e)E) ˶ee)E) &#0e)`` I&e)E) ɖ$˂,e)E) vf{mlE)  MXI$e)E)< X$$e)E) iڄle)E)"(֐iE) lIee)E) " $e)!@@ I- e)  I$,e)$!*`۱me)! $M$Ʉe) d e)$! I&$Xe) ?e)!U }ۆmE)_ I$ @$!m<!  %) $@%E) G۴mE)   I- e)!msE)!* I$I$E)  I$I$E) * I$@$e)E) I$I$)( I I$e)E)^~ I$He)E)%UX H$I$e)E)(W mE)!@ l۶mE)  lE) j=RE)W_^xI$I$(*+Z!   ۀmdh(DC1 {{aPIDI$ (4")l X%T&!I $  M !!*&.a !﮾I$L$((9!DK0B!{6abɶe$! OE)- E)  E)* I$I$E)! I$I$E)!+ I$I$E)! 0E)!W ` %) @%)/ M7l%)  $!/ kE) ܶdcaE)A8 I$$e)! ( I@$e)E)-^ $I$E)! A$I$E)! PE)(  E)b@ 9E) I$I$)( I$Ie)E)+ I$I$e)E) I$H$e)E)嫨U I I$e)E).U $I$e)E)VU I$I$)( I$I$)( I A$e)E) IH$e)E)( HI$e)E)(*. I I$e)E) $Ie)E) Y$Y2`e)E) ɶm0E)mJme)a(4( H$e)E)W I K$e)E)*} lI$e)!  mI$e)E)U ز-I$e)!nۦ E)!  $I6E)  XmضmE) $ E)!* ۖ$K e)E) [$I e)E)* I$e)E)W I$e)E)U[mE)!p I$$e)E)` I$Ie)E)z $e)E)m I$H$e)$! I$Y`e)E)+ף&mE)` ɖa$e)$! $$e)E) ImÖde)E)+ X$I-e)E)6ۦi-E)Cm۞E)! I$  e)E) 6rHmE)A(۰m۶%E)bmۦME) XI$e)$! Ȁɖ$e)E)  ۗ?e)!P4i%e)b M۴% e)E)  A6le)E)" $@! H@$1" Kl`e)E)\ I$e)E)- Ie)E) I%e)E)* mò$e)E)' X [e)%)6oe)!&",ۤIE)@`6`IE)A  I$[me)E)W )I&e)$!  غa$1E)U le)E) I$k=lf1$!_ꪢC$ E) I9%)U ޖs! iɖ$$! $XE)  ye)!  Il e)E)Z  I$[2`e)! y[mE) I$I$E)! I$I$)( ø9۶mE)p hE)  ɖ$H2,e)E) \ I$I$)( I$e)E) mۆmE)p I$E) I$I$ I$I$I$I$!I$I$aI$I$"I$I$ &.I$I$ I$I$I$I$I$I$A>I$I$I$I$I$I$A `I$I$I$I$ I$I$AI$I$A*** I$I$I$I$kI$I$ I$I$ I$I$~I$I$a"I$I$bjI$I$I$I$ I$IQE) ItE)+ I$I$E)!/ I$I$E)! $E)! I$I$E)!~ -E) $IvE) kSw5E) @X E)/ tE) X%) ۲- e)Ab  E) mmE) @%۶mE)`  (E)!` I$I$E)!* I$I$)( I$I$)( I$I e)E)۶mp6fE)( I I$e)E)V $I$e)E)WU I$I$)( I$I$)( I$I$1 I$I$1 I$I$1 I$Ie)E)" I$ $e)E)  I$$e)E)W II$e)E)* zU K%I$e)E)(U ؖ$I$e)E)_u H$I$E)$! I$H e)E)_] I$A e)E)] I$Ie)E)+/ E) m@ۢE)!@AmE) @$e)E)/ @ $e)E) ɐ [$e)E) x8rme)  H $Ie)A4( ɀ Kme)E) ضmɖ e)E) $Ie)!n e)  $ٶIe)%) mӶI6@!tH6re) . ۶Kle)E) Iaɖle)E)  0`I,e)E) $e)E)`۶M mE)A @ $e)E) H$e)E) %[me)E)p  gE)! ۆm E) I$Ie)E)>. ۶mE)@ h۶A۶E)!#@ XmۖaE) 0 dI$e)$!( `I$e)E)? lʦ)$e)$!ve)!IBe)  Ȇe)E) ٖa`e)E) @ $@! [2`0 e)E) I$me)E) $Xe)E) @6I-e)E)  `$e)E) M`e)E)  l6- &e)! H e)E)L $mE)A6 I$e)$! ɐ$I-e)E) ^ nI$1E)W mݖ1E) I:ۺ 1$!~*le) _ tE)_  $h! M9!+ lE)6`÷}e)! X2ِ$e)!  I% e)!۴mE)@ mٶmE) I$I$)( $I$e)$! ޖa۲E) @$EIIE) H$I$e)E)V I$ $e)E) I$I$E)$! J&E)V| ITh%)J` %!^I0o6`&a۶ ِnl K'`%Ao&)K !ں lb!!aZ*I$H$ @"9, @!H&P<!II$! ** ni !a o7%)j  E)- I$I$E)! I$I$E)!+ (E)& I$I$E)!_ tE) ۸NaE) k6vE) ,6E)x X %) ܶm E) kg`E)A8 ۶ضeE) $I$E)! H%)<$ E)a4 I$I$E)! I$I$)( I$Ie)E)/ I$I$e)E)ob ۶ )nE) I$I$e)E)+U @$I$e)E)Uժ I$I$)( I$I$)( I$I$1 I$I$1 I$I$1 I$Ie)E) I$$e)E)z IdX$e)E)(U ɲ I$e)E)WU $I$e)E)U $I$e)E)U׾ I$I$E)$!(( I$I$e)E)U. I$H$e)E)U ۶mòaE)@۶MmE)  [qlE)AР [%ۖ$e)E) e)E) . H$$e)E)p  Ide)E)B*/1ڪcKe)!A&Ie)  6lI-e)E)$ &,e)A@ ce)A@ iBe)  $ٖI e)%)*#(e)b`AIE) ۲aI%e)E) I6 [-e)E)? lIme)E)* eYm$e)!`8HE)A L%$e)E) ɲmɐde)E) ? ɲ-X$e)!M4hE) ٶ$X2`e)! Ae)E) &IlE)$d A$)E)6i4fe) %[me)E) Y%K e)E)8[lڠE) p<[m0iE) ɖ$[2,e)E) X9re)44 dCI$e)E)^ )Y$$e)E) ۶`e)E) @@! Le) @! Im؆ e)E)~ Y%le)E)!r˰ mE)  eK $e)E) ^ I$e)%) %۶M&e)E) mI-e)E) K2`de)$! I$زme)!+`;e) jh I$e)! u21E)_ dOe)!_$ E) I&H! NI5! / E)  /e)!U 2de)!  I$2e)! I$I$E)!* ۶m۰-E)` $I$E)  I$I$E)! h[mE)!۶m6,E)@4mKxE) د ۶ ۶-E)!@ E) I$ E)b^`I$I$A***I$I$"I$I$ I$I$"I$I$I$I$ `I$I$AI$I$A// I$I$ b&I$I$I$I$ j I$I$I$I$"I$I$AI$I$A I$I$I$I$I$I$I$I$I$I$a I$I$a* I$I$aʊ I$u!b/ PE) I$I$E)! @E)b* I$I$E)! E)! @E) _ie)/}E)E'۶E) IE) I$I$E)! I$H$E)$! m[qE) I$I$E)! E)` I$I$E)!+ I$I$)( ۲m۶ E)` I$I$E)$! II$e)E) ZU ˰p۶mE)A$, I$I$1 I$I$E)! E)A' I$I$)( I$I$1 ˱pۆmE)b4, I$@$e)$! I I$e)E)+WU $I$e)E) ^U I$I$)( I$I$)( I$I$)( ۶m2lE)` $I$E)$! I$e)E)ˏ E)!@ $IE)! I$I e)E)*/@ H$H e)E)( Y$ۖae)E) IH$e)E)(( IH$e)E) I$e)E) ömI$e)$! 6`ْ$e)$! mI$e)! $I$e)! $HI$e)$!( ۀ-I$e)E)UU0m۶mE) ВI$e)! HI$e)! %I$e)! dI$e)$! -PI$e)$! lII$e)! ؐlI$E)! mI$e)!شme)@*mE) ImH$e)E) ImÒ-e)E)Jm E)A e)  e)E)* "!I$5e)p KaIle)!لI-E) @ ˰`ؒ%e)  H e)E)( $ɉ)0E)@m4 E) ٶm4E) @2$Íe)`` I$e)!+ M)$e)E) eK@e)E)  I$mS@!ee) @@! [``e)E) I$0e)E)%Rm&AE)a mKI$e)E)+j mʄ$e)E) (  iٶl0e)E) @e)E)  ز ɐ$e)E)  I%me)! $K-e)$!*we)!% ma؆1E) CKe)!~?e)!U_ I-@%) PbH!+ 0 t%)*a{E)! U ےe)!- I- e)! I$K,E)!* I$I$E)! ۶mlE) H$I$e)E)j @m۴E)!6 I$C e)$!* a[$E)bpжmME)  6llE) -۶ E)^` Mt!mM$ *I7$ ,$3, Id .@ 4ۂ$HH  e&I ت #(N!{{o ID%)W+ %) I$I$E)!/  E)  I$I$E)! $E)!W ,IҶcE)/~e)w%}E) @E) E) I$I$E)! I$I$E)!mmE) I$I$E)!* HE)(( I$I$1 I$I$)(  m۶aE)4 I$I$)( 2۶mE)@ E) I$I$1 (E)a` E) I$I$)( mӶmۢE)!@@ m۰mE)A II$e)$! $I$e)E)U $I$e)E)WU I$I$)( I$I$)( I$I$)( HE) ( H$I$e)E) H$I$e)E) `H$IE)0 A$Ie)E) $$e)E) I$$e)E) Idۆ%e)E). I%,e)E) II$e)E) *_ I6`$e)E)*]  I$e)$! lK$e)$! -I$e)! dYI$e)! KI$e)E)uU  ۶mE)@ !I$e)! PI$e)! II$e)! $I$e)! ؖ I$e)E) U II$e)$! % 6I$e)!  -I$E)! 9ݚ$%) $%)*U $E)] NE)  E)!*/ I$I$E)! $I$E)! I$I$E)! H$E) ِ I$e)! xMmE)a K de)! Im6$e)E)* sÆ e)! òm[me)E) X Ime)E) *0hLe)&M$(e)@$9SE)P I$۶`e)E)жmSE) dI$e)  $ )$e)E) Mm@! H $1"   1"&"ae)a@6h4Ie) dIme)!  mII$e)E)  lBe)E)lE)` e)$!f'AE)  I$Xme)E)V` I$e)$! [i$e)E) IB6e)!e)!U^ )E)z M&A!+ @0!E)!]UU6`{mE)! U I$e)!/$&Ae) `!I$ E)* I$I$E)!@* E) E)!@!I$AE) c E)!@ Imɖ$E)! I$@$e)E)ꨠ ۲a۶mE)` I$زmE)U^ I$I$ I$I$I$I$I$I$$I$I$AI$I$A+I$I$I$I$I$I$I$I$I$I$@@`I$I$!***I$I$AI$I$ I$I$a I$I$bI$I$a`ફI$I$a I$I!}  !- I$I$E)! I$I$E)!  $E) `  E)!_?Oe)!_U%.O??1 yOf1 @E)* E) I$I$E)! E)!P H$I$E)!* I$I$E)!. E)A I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$)( HE)  I$I$)( I$I$e)E) I@$E)! I$I$e)E)U A$I$e)$!* I$I$E)!  I$I$)( E)A  I$I$)( I$I$)( ۶m 7E)4, I$ e)E) I$$e)E) I $e)E) A$E)! ذ mE)$, @$I$E)! C$I$E)! A$I$E)! I$I$E)!+  )E) *~ $E)U $E)b $E) ]$E) I$%)  II$E) I$E) I$E) HI$E)_U  II$E)  II$E)UU  II$E)UU I$E)UU I$E)UU I$%)U I$E)U K}1$E)!( $%)a $E)u t%)a E) I$I$E)! $I$E)! H$I$E)! @m۶mE)apmoE)A  m4rE)!@( ae) ,. Imme)E)3{me) ` l6`e)E)  2lI2le)E) e) ؖ ۲ e)E)6llE)۶mIE)  ِ$Kle)E)fme) ' % I$e)E) ] m e)E)  mI&1" IH1" H$1"Is 1rE) I$HaE)!  I%e)E) eC%e)%)  I6dCe)E)@IME)  ,E)!@mIE) )$I&e)$!* $I$e)E) U le)E)p de)!WmE) H !+   $!* * mMe)! UU dI$e)!+ MB6%e)E)x ɶm@E)A I$I$E)!* E)$ I$I$)( ̶۶mE)  I$Cle)E)V` m̶ge)!& I$$e)E) I$I$E) j E)^` ]6jE){q"" I$J$,88lĖm}$!Aۖmۂ! 7W!? )P$!  I$I$E)!+ I$I$E)!/ 8%) ($ &E)!_U.I$If1!UU I$1!U-`W?f1 Z6E)߯ I$I$E)! I$I$E)!+ MѶm۶E)  I$I$E)!  4%)A` I$I$E)!  I$I$1 I$I$)( I$I$E)! I$I$E)! I$I$1 I$I$)( I$I$E)! mmE) I$Ie)E)+ I$I$E)$! II$e)E)zU I$I$)( H$I$e)$! I$I$1 ( E) ` E) I$I$)( I$I$E)!@ ۶mE) I$ e)E) I$e)E) IH$e)E)W  I$E)!@Iܶme) K$I$E)! H$I$E)$! H$I$E)!  E)!{ &E)*_ $$!_ $E)U }$$! K$E)a HI$$!  I$E)A I$E) I$E)WW II$E)!  II$E)!  II$E)UU  I$E)UU I$E)UU @I$E)U I$$!U I$E)U IE)U** I@@E)A I"I%)A_ I=E)U I$E) i$%)U* Z E)U M @%) @m%IE)p $E)!jZU  $!  E)!  "@E)bJmƍE) l۶mE) $QI$e)! @DE)$CB He)@ !Ѵdْe)! -ӖIe)E) [-۶de)E) ( ye)!4 I$A$E)! I$@e)E)" -$I¶e)E) $KI$e)E)@ H6E)` l˶ee)$! @! I@! K,e)E) lK-e)E)  MJI$e)E)(/ mB@e)E)M 1E)$ ۲ -e)E) I$ۖme)E)Wh ɐ$I-e)E) U^ I$e)E)5U l0$e)E)`  e)!W` nmE)!U~ d!d  $$!!^ 6`ۉme)!-  I$e)! I%e)E)V` I$I$E)$!* I$I$)( ۶d6`e)a(4( $I$e)E) I$I$E)!<( I$I$e)E)Vp  I$e)E) IIe)E)** l϶mE)b I$3`E)bI$I$I$I$ @I$I$ *+I$I$A**I$I$A|֨I$I$ I$I$ I$I$"I$I$!I$I$A/I$I$#I$I$I$I$I$I$A** I$I!u II!a'$  $!!% J E)a&& I$I$E)! &E)!WJI$I1!WU eI$1 -^.1 HE)!Uտ* I$I$E)! I$I$E)!+ I$I$E)! I$I$E)!/ I$I$E)! E)(, ,E)p E)  I$I$E)! I$I$E)!* I$I$E)! I$I$)( I$I$)( I$I$)( E) I$I$E)! I$I$E)! E)A I$I$1 I$I$)( I$I$)( I$I$)( I$I e)E)+ ˶ame)& ,ömE)a@  ۶mE) $I$E)$! H$I$E)! E)!w E) 0E)!UU i۵E)  E) IZ%)_  QRBI!* j5! I$yE)UUU I$%)uW I$$! I%)a I%) ޺ I%)A I"$!a ia۶me) E)h E)( I"IE)U -IE)U ɶE) IE)!U IE) U Im۶e) U E)_ I$!U IEE) ޸ II !b I"E)! I$E)* ɛ$E)UU $ E)U w#E)U qI%)ݮ  $IE)b H  E)b I$I$E)![ I$I$E)! E)A.&* X۶mE)  `I$e)! X<ae)  Kdːe)E)<( M$ e) dٶmBe)E) lɶ-e)E) 7o9e)!p YeKle)E)" I, lE)!  $Yle)E)  I&e)E)pke)!:&me)A  $1" H @! [`e)E)  ِ$Xle)E) `ӒI$e)E)x iKe)E)  mZle)Ap ۶mنme)E) K,ضle)E)X I$@e)E)W` $I$e)E) U^ K!e)E)- I$$Ke)!zǶ=e)!UW  E)!^ @$!!^k* m۶E)! W `{e)!+ [2lɐde)E)p - I$L$E)!* I$I$)( 6,۶ E) ` I$I$E)! @ I$E)! I$A e)E)US II$e)E)U I$I$e)E) eXmE)A ض E)x M'j%%)_~x!oɖ }"@! $! "E)jj** E)b  I$I$E)! E)!_JI$Ix01!UU%J1/xJf1  AE)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!  E)@ E)  CE)` I$I$E)! I$I$E)! I$I$E)! I$I$E)!* I$I$)( I$I$)(  E)@ E) I$I$E)! I$I$E)! E)A I$I$)( I$I$)( I$I$)( I$I$)( ۲mmE)@ نmE) fضmE)  @$I$E)! $I$E)! I$I$E)!k ,E)z $E) U hvE)* umӴE) %)( $it! iM"! 'M%)_WW O$I$! I$ $!!z I$$! ޺ It$! I%)Au I$!A I E) * !E)!U XE) HE)_ I,IE)U ImE)U IE)!U I%) U IE) U** C$IE) E)W IH$e)E)"W I$I$)( I$I$e)$! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!kꪀ I$I$E)!yk  E)h %) @E)㲸( E)!Z ( %)! $( E)!} E)! E)!  $I$E)!*msgE) 8 ɖ$e)!  ae)4 ٶ$ e)E) [m[me)E)  ۀe۶ e)E)  ۶K%e)!@"EE)` $2e)$! dI$e)E)x $ %e)E)5 dJ$@e)A  @! ۲ ۶me)E) I$e)E)h N:1E) i )$e)E) mڶ$Ke)E)  ضl˂me)E) Kmme)E)X I$[2`e)$!* mE)  -e)E)% I& Ke)!~  E)A*$ E)!﫽_  E)!z mM6E) -h?e)!- I&%e)!< I$I%E)!* I$I$E)! . I$I$)( $I$e)E) ۆq[mE)!  g۶ ;E)!(@ mۆE)! I$K%e)E) [2۶mE)x I$x $!AxI$I$A- I$I$A**I$I$I$I$ I$I$I$I$I$I$aI$I$BI$I$I$I$bjI$I - IL$I!/ $ $! 4!b` I$I$$!! $E)!Wm[vZe)JI`$1! `Veœ$I$1 ^  E)! I$I$E)!+ I$I$E)! I$I$E)! E)**< I$I$E)$! I$I$E)$! I$I$1 I$I$E)! @E)Ap I$I$E)! I$I$1 I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$1  E)!`` PE)8 I$I$e)E)ի I I$e)E)* I$I$E)! A$I$E)! E)!z &E)!W E)!_ mIڢE)!~U $E) U+x h[t$! II$! 6] %) M%){" Y"$$! ` E)* I$I$E)! 0E)- I$I$E)! I$I$E)! @%) I$I$E)! I$A$E)! II$e)E)U. I$I$e)E)UW I$I$)( ۶1E)` ۖ%E)aZm۶mE) II$e)E)* ۶-E)` I$H$E)! II$e)E) U ,I$e)E) 2`I$e)E)W ۶ mE)a4, I $e)E) I$I$e)E)_ I$I$E)! I$A$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! E)! I$I$E)! E)  0E) HE) <E)!` I$I$E)!ׂ E)!{ E)!~ a۶E)!m۲-E)A`0Iޔme)#mME)b` Y%۰le)E)! ےlle)E)  ٶ!ٶ%e)E) ö-Âme)E) 2, ,e)!1A@e) K$e)E)/X $ $e)E) h e)  h۶m&@! H$H$1" K,6e)E) $vⶆ1E) HYI$e)E)& mӶe)E) 6d`e)E) e)E)( I$۶ e)$!0fmE) XI$e)E)  Me)!lI" =e)!`  E)!z E)!_*- @E)! ^aoE)  lB-$e)!b I$XlE)!* I$I$E)!+ I$I$1 I$I$e)E)? I$CE)@ m6`E)A ڶ-ڴE) & I$ےae)E) mm۶E) @  mضmE) `E)!U H$!b$, I$I$E)! @E)!WeI$?f1 eq8O$1 -^.H$I$1!\U E)!+ I$I$E)!+ I$I$E)! I$I$E)! E)  I$I$E)$! I$I$E)$! +" I$I$E)!j I$I$E)! E)$ I$I$E)! I$I$)( I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)$! I$I$E)!* I$I$1 E)! maE) I$I$)( IA$e)E)*_ A$I$E)! I$I$E) E)! &E)!U HE)!W- m&q[E) _ 2E)!UW m @$!  0I$! @$+E) ZI%)_ K$!!4 !E)!u @HE)Z I$I$E)! I$IE)! I$I$E)!   E)A  I$I$E)! I$I$E)! I I$e)E)U I$I$)( I$I$)( ` 'E) (6AxE)$ E) II$e)E) gE) I$I$E)!( ɐI$e)E) U زmI$e)E)}-le)!@* ۖmmE)  I$I$e)E)\V I$I$E)! E)!) I$I$)( I$I$)( I$I$)( I$I$)( I$I$)( E) $ I$I$)( E) @ E)b I$I$E)!  E)!` fE)飨 I$I$E)!߫ @E)!{ h۶mڶE)! m:E)!_ U KmE)b}e)!W JD%)!*`۶E)!* ذmI$e)!+"0mE)A` Ie۰ e)E)y!M%E)$ ۀmɰde)E) ( ۲mXae)E) I$ $e)E)_ꊨ I$[me)E)-W `I&e)E)- mےe)E)/"b @e)  mm$@! X e)E) I$dCe)E)  `I$e)E)?X lö$e)E)  6lۂ e)E) lö%e)E) I$2`e)E)UX dI%e)$!  M:liĆ1$! Ke)!x q[m E)!5Wxme)!=^O?1!U^  Ϗ?E)!-xĵdBE)P$)+E)$ I$I%E)!* I$I$E)  $I$e)E)j dI$E)!=ۆmoe)!) ۖmE)A I$He)E)( I$e)E)K*N5ӶmE)W`I$J8I$I$I$I$I$I$I$I$aI$I$a***I$I$(I$I$+ I )! $IP$!*  @$!!5 $! &$!eI$Ic1!_U5eIh$1 ^J$I$1!`VU  E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$!* E)a&  E)!x I$I$E)! I$I$E)$!  I$I$E)!* I$I$1  E) @ E)! I$I$E)!* I$I$E)! @E)  E) I$I$1 I$I$)(  E)!@ l۶mE) $I$E)! I$I$E)! $E)!W @"%)z$!GE)a vbDmf1 z_e) Vl'me) ^ E)!\ %)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! @ E) I$I$)( I$I$)( I$I$1 I$I$1 I$I$E)!* * I$I$1 ( E)` I$I$E)!  E)@ @E)a I$I$1 I$I$)( I$I$E)! I$I$1 I$I$)( E)` I$I$E)! $I$e)E) H$I$e)E)z^۶m˶ E)& I$I$E) 6lؖmE) I$I$)( E)! I$I$E)! I$I$)( I$I$)( I$I$)( I$I$)( ۶a۶%E)ap A$I$e)E)U I$I$)( HE)4 I$IE)! I$I$E)!  E)A.  E)! E)!߾ E۶vӶE)!u mE)!/W ܲmmE)bj* 6n8E) R$%) ` $A$E)  lI$e)! ò-ɖ$e)!b4IE)A đ3E)` ɶaI,e)E) ) m e)E) H$I$e)E) I$e)E)_ IRe)E)- m )$e)E)(-;e) @Hie) `0`e)E) I%e)E) IB6e)E)  m !e)E)- ɒl e)E)   ae)E) K%ې e)E)\  ɐ$K-e)$! ]$1$!z* nn1E)_ꪯO?e) x -Me)!-z/f1!Vh %1!}V `϶e)!˵yB!5E) I$[,e)$!* I$I$E) ( I$I$1  I$I$e)E).=fE)!4 6flE) I A$e)E) I$H e)E) H I$E)! E)eI$`<1!U J A I$K,e)E)\C  lE) Âm`E)@ ٸز-E) I2'ShE)I$I$bI$I$!I$I$aI$I$! I$I / TI !- "@!@ $! I$I$%)!e1*eIc@$1 5^eX$I$1!`VU E)!* I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)$! (E)a`` E)& I$I$E)$!* I$I$1 I$I$1 I$I$E)$! I$I$E)!  E)!  I$I$E)$! I$I$1 I$I$1 E)4 I$I$E)! I$I$E)! I$I$E)! 0E)!^ E)!W5.I$I^1!U.ID$1!UW 1!W'1!`U $$! E)! I$I$E)!* I$I$E)!* I$I$E)! I$I$E)$! I$I$1 I$I$1 I$I$1 I$I$E)$! I$I$E)!  I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)$! * I$I$E)! I$I$E)! I$I$E)!* I$I$E)! ,E)A` I$I$E)! DE) E) I$I$E)! I$I$)( I$I$)( E)A$, E) ۶m!nE)A I$I$E)! E)!B mضmE) I$I$E)!  E)  ۶2lE) @ E) I$I$E)$! PE)b I$I$E)! m۰9E)P I$I$)( I$I$1 I$I$E)! I$I$1 I$I$)( A$I$e)E)U I$I$)( I$A$e)$! I$I E)! I$I$E)! DE)!]  E)!] -괍ӶE)!W mSi[E)!~Wm?}E)!^5 @E)!W DE)  `۶e)!+  I$e)!  dK-e)E)  M&Ke)E) MI e)$!   ۖle)E)  X,ɶme)E)`  I$òme)E)- I&e)E)  dK)e)E) $`e)  $@! [l e)E) )$l¶e)E) hKI$e)E)  MH`[e)E)( ۶l[le)E) K,ضae)E)X I$H e)E)%Wx I$e)$!  Me)E)xIٰ E) &.)I$f1!%U^JI'1Ć1 ^`-.I$I'1!Wx `e)!  M6$e)$! I$I$E)! I$I$E)! * I$I$E)! I$e)E)+ I$Ye)E)\b. aۀeE) I$e)E) Lmð E) 6m E)a I$I$E)!+( I$I$E)!  I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)!** HE)44 E)! I$I$E)$! * I$I$1 I$I$1 I$I$E)! ( @@@E) ` I$I$E)$! I$I$E)$!* I$I$1 I$I$E)! E) I$I$E)! I$I$E)! I$I$E)! E)!U?I1!U-.I$&1!_U-.It$1!U xU.I'I$1! xUhRm۶f1X LE)!U I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$)( I$I$1 I$I$1 I$I$E)$!* I$I$1 I$I$E)!(( I$I$E)!( I$I$E)!(( I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! E)($4 I$I$E)! #E) f I$I$E)! I$I$1 I$I$)(  E)@  E)a@ 4E)bq I$A$E)! I$$E)!* [mmE)Ap I$I$)( I$I$)( I$I$)( I$I$E)! I$I$)( I$I$)( I$I$)( I$I$1 E)A& I$I$E)! I$I$E)! E)!> dE) I$I$E)! \@E)A  $E)` E) ' I$I$1 I$I$)( II$e)E)*U I I$e)$! I$H$E)! ۶m e)(& aE)!U @r۸E) I0E)!X W  $E) ^ `E)!W fE) $I$e)!X IE)A  IJ6-e)E)* ÖmXe)E) ɰeٶ$e)E)  XɆ!e)E)  I$ e)E) @IR&e)E)-{ , !e)E)> mӶm @! 0ضee)E) #)#E)@ )ae)! dK e)E) . -e)E) ۖlK,e)E) I$e)$! I&e)E) V` `K $e)$!* Ie)!xe)!%WxJtI$1!`%WJI$p1!Wp6`{E) - `R 4e)E)`  I$X2`e)! I$I$E)!* I$I$)(m&fE) 6۲mE)@ E)  I$I e)E) I$I$e)E)*Z"̛mE)x I${-E)UU^I$IA~/ ID$ !/ i$!  0$!!x\  !@ HE)*eI $1! \e$I$1!^UU  E)! I$I$E)!* I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! 9%) E)A.& I$I$1 I$I$E)$! @lE)P hE)a( I$I$E)$! I$I$1 I$I$1 I$I$)( I$I$E)! HE)  mE)O1!_U-JI$'1!_U .I|$1! xU}?1!*^U E)!X !E)!+ I$I$E)!* I$I$E)!* I$I$E)! E) I$I$E)! E)! I$I$E)$!" I$I$E)$!( I$I$E)$!  HE)b(4( I$I$E)!* I$I$E)! I$I$E)!  I$I$E)!( I$I$E)! I$I$E)! ( I$I$1 I$I$1 I$I$1 I$I$1 XE)<( I$I$)( I$I$1 I$I$)( ۶mE)b I$I$E)! I$I$)( m۶-ҶE)!@ ցdE)a4 0E)A M[m۶E)!& DE)(8 I$I$)( ۶m!mE) I$H$e)E) I$I$)( I$I$)( I$I$)( I$I$E)! I$I$)( I$I$)( I$I$)( @E)bp I$I$E)! I$I$E)! E) ` I$I$E)! E) E) E) KE) I$I$1 I$I$)( I$I$)( I$I$e)E)z I$$E)! $@"De)(  e)E)@ mۀ E)!  tI$1E)W so1E)^O?e) x.I$1!-WI$sÆ1!Vp -qۤE)! % `C)$e)E)@ I$H,E)!* E)!zV @E)!\ 5$! 6M!讯JI$I1/e ɑp$1! pVJx$I$1!XWUU $!!= $!!/6`  I$!!pW% "`!@  E)** @H%)!  $!! I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)$!* I$I$E)! I$I$E)! I$I$E)! E)!W. I$I1!}W J I܆$1!U-^J 1L'I$1!pW m۶E)!X E)!+ I$I$E)! I$I$E)!+ I$I$E)!  E) z I$I$E)! $%) HE),( I$I$E)! E)!^* I$I$1 I$I$E)$! I$I$1 I$I$E)$! I$I$E)! I$I$E)! I$I$E)! Ph%) 8   E)b`@ V`E)( E) I$I$E)$!( I$I$E)$!* I$I$E)$!* I$I$1 I$I$E)$! I$I$E)$!(* I$I$E)$! I$I$E)! E)  @DE)p I$I$E)! I$I$E) I$I$E)! @E) ,6 E)A I$I$E)! I$I$E)!z I$I$E)! I$I$E)! $E)! UU E)! I$I$E)!( I$I$E)!* I$I$E)! E)( I$I$E)!( I$I$E)!( I$I$E)! I$I$1 I$I$)( I$I$)( @DE) I$I$)( I$I$1  E)  I$I$1 E)  I$I$E)! I$I$E)! ۶mۘbE) E) I$I$E)!* I$I$)( $E)P I$I$)( I$I$E) I$I$E)! I$I$E)!* I$I$E)!* E)A I$I$)( E) I$I$)( I$I$e)E)z+ I$I$E)!  E)@ -!A  Ik$!  MM$!  %E)*^ жmE) 0ɐ$e)!/ Im e)E)* [mX,e)E)  ضmÒae)E) I- e)E)  %MB6e)E)X $ !e)E)- $I$@! @! I&$C"e)!8ame)#IO0E)@ ۶mle)! I$e)! )I&e)E)Vp [3閤1E) e).I$I$1! W~.I&91!Vp5O'f1!U\ %e)!- I&de)! I$I$e)$! I$I$)( I$I$e)E).Z I% de)E)VP/ II$e)E)+-T I$I e)E)*K mۖmE) mۆmE)! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! E)!_5. I$Q1!WU-. Ip$1!xWJ ē$I$1!^U}  $!! I$I$E)! I$I$E)! I$I$E)!  I$I$E)! E) I$I$1 %)  %)b I$I$E)! E)! I$I$E)$! I$I$1 I$I$1 I$I$E)$! I$I$E)! * I$I$E)! I$I$E)! 9 P%) h%)A8 @ E) I$I$E)$! I$I$E)$! I$I$E)$!* I$I$1 I$I$E)$! * I$I$E)$!* I$I$E)$! I$I$E)! ,E)p I$I$E)!* E),&. I$I$E)!  I$I$E)! E) P$E) I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!_z @$E)!UU I$I$E)! I$I$E)! I$I$E)! I$$! 0II$E)A  I$$!! I$E)U $%)U $! E) I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! DE) I$I$1 I$I$1 E)` PE)a E)!p I$I$E)!. I$I$E)! E)& I$I$E)! I$I$)( I$I$E)! mmE)! I$I$)( I$I$)( E)@ I$I$E)!  @E)` I$I$E)! I$I$)( I$I$E)! I$ E)! mٶe) M $!  kz!؀ T! . @M$!A * ɶme)/ [ e)!  i&m@! 6lK%e)E)( ۖae)E) I$e)E)?x I$e)E)5 $Ie)E) @le)! X`e)E) ɐH,e)E)/ l !e)E)/ I$I$1" @e)E)p I$[-e)E)5WP Ün$1E) N&Xaf1$!zꨊ'E) %Vx{r1/nk 6f1pHƴE) * @!!@ M!عme) * eI>'1 e$1 $$I$!*  A$!+ $!!`\  $!!V  I$I$$!!  $! I$I$E)! @E)!ֿ I$I$E)$! I$I$E)! I$I$e) @ E)!} I$I$E)! I$I$1 I$I$E)!* m !_ $m!$IB! $I! $I$! $I$! I$%)a II$E)!(  I$E)!* I$%)U ɕ$%)U $$! WE)* E)! 몽 I$I$E)! I$I$E)! I$I$E)!* I$I$E)! E)!@* E) I$I$1 I$I$E)!  E) @ E) E) I$I$E)! @E)!P I$I$E)!* I$I$E)!* I$I$E)! E)!: I$I$)( I$I$)( I$I$)( E) I$I$E)!  E) I$I$)( I I$e)E) I$A$E)! ۶qH E) R$X%)$ S! )A&ɥ$!+ "@jv$!@¾ fcmE)A  $XI$e)!  l ,e)E) l۶lC0e)E) mۖle)E)  K, e)E) !MB6e)E)'\ $ %e)E) $Cd e)E) 0e)! I$e)E) $[I$e)E) I$M41" e)E) I$e)E)X %I$e)$!* u1E)O?1!W_G'1/$s1 Wzaϱe) b!@nE)A I$L&e)$!* I$I$E)!* I$I$)(۶ 0fE)$, I$H%e)$!( )mmE)  I$@$e)$! H$ $e)E)\b I$I$E)! E)!_Of1!_-. I)J'1!U5x.9! $I$!j $I$!A @E)!_ E) }(%)` IE)_ Ii%)U I$%)U I$%)W I$z%) $IH! TI'$! I$%)!* $%)U L%)  xE)* I$I$E)! I$I$E)!* I$I$E)! I$I$)(  E)!& ` E)@(  E) I$I$1 I$I$E)! @E)  I$I$E)!* I$I$E)!*  E)b@ E) I$I$)( I$I$E)!( I$I$E)! )E) @E)@ E) @I$e)$!( I$ɒdE)! I$I E)! h@E)~ P@! Pڼ! ɐ$$! -McE)( K)e)!/&LE)a$a6e)  08e)!` I$ؒme)E)/ I$e)E)/ $I e)%) @! MB6$Q2e)!@ M&e)! m˶d"e)E) ۶ oe)! H$e)$! ü1lE)` Ԇ1E) E)#Me)`ӶLmE)a$, @$I$E)!P ɐ$[-e)E)^` $[I$e)E) "hHe)!@FN ARE)$#e) `A$Ee)a  I$M41" e)E) ۆ9nE) P#@E)x Tj'! $m۷f1-.I&1! p.'O$f1 mP!  !$!  CP'%!A #!` I$I$$!!(* $!&  $! & I$I$$!!  h $! I$I$$!! I$I$$!! 0$! IIJ!! I$I$$!! $!!` @$$! $I$5!z  @ !  Id $E)! `?e)  H$IE) f !* $!A I$I$$!! I$I$$!! I$I$$!!* $!!( I$I$$!!/ $!A I$I$$!! I$I$E)! I$I$E)!  E)a& I$I$E)! I$I$E)! I$I$E)! I$I$E)! 9%) (%)A` I$I$E)! I$I$E)!* I$I$E)!* I$I$E)! E)!.I$I1! .f1. I$1!U/W II$1!_ $I$1!^ضme)! @E)!]  %)@ E)! E)A  I$I$E)! I$I$E)!* I$I$E)! I$I$1 I$I$E)! I$I$)( I$I$)( I$I$)( I$I$E)! I$I$)( ۶mbE)A I$I$)( I$I$E)$! ۶maE)! IIe)E)* A$ $e)E) I$H$e)E)U( 6l۶-E)@ ۶m-E)C m۰E)!!  E)@ h۶mE)!  I$I$e)$!( I$I$E)! I$I$E)! @$E) I$I$E)!( I$I$E)! E)!_ }%) IE)U I$%)_ $MH%)Az  I&%) $%) HJ%)< I$I$E)! @%)`  %)a I$I$E)! I$I$1  E)b` I$I$E)! I$I$1 I$ $e)$!* I$I$e)$!* I$I$E)! I$I$)( I$I$)( mۆdE) I$I$E)! I$I$E)! I$I$E)! I$I$)( I$I$1 I$e)E)_ I$HE)!۶m&,E)@ J5$!Vx I$O$ b  I$$!b /۰mޖtE)*‰$Ge)@4@Ae)A =`e) pp $@ e)E)Jj i۶E)  $I$e)E) X mђ$e)E) ASE) H,0`e)E)K IE)A<  m˶e)E) I$I$1" K-me)!vi˶f1) t1%)ꫭe) ^hݚf1a-e)   E)a@ *n{1!顪 I$L&e)$! I$I$E)! I$I$)(caE)!h@ٖmۆmE) H$$e)E) moE)b mmۢE)!~ !E)! I$I$$!! I$I$$!!* I$I$$!! $!!% I$I$$!!  $! & I$I$e) I$I$E)! (%) `  E)* I$I$E)! I$I$E)! I$I$1 %)h I$I$E)! H%)44 I$I$E)! I$I$E)! I$I$E)! E)!_ m۶me)!/.?_`f1~.'f1 IK$1! U ɇ&I$1!/U?1!U I$I$E)! HE)!ժ h%)>  %)@ E)  I$I$E)!* I$I$E)! I$I$E)! I$I$E)! I$I$)( I$I$)( I$I$)( I$I$E)! I$ $e)E)W ۶m1E)A` H$I$e)E)x I$I e)E)U @E)bp II$e)E)U* IIe)E) I$$e)E)^z I $e)E)-j ۶m۰eE) hm1E) m۶(6E)!@K`mmE)  I Ae)E)b/ I$I$E)$! A$I$e)E)߹ I$I$e)E)b I I$e)E)V I$I$)( I$A$e)E)[ I$I$)( {dlE)< E)  I$I$E) I$I$E)! E)!Z {%)W I>%)U_ R @%)U_  }%)"+ $!  E)6 I$I$E)!* I$I$E)!* I$I$E)! I$I$1 I$I$1 $I$e)E) UUU I$I$E)! I$Ie)$! I$I$E)!* im۶E)! I$I$)( I$I$)( I$I$E)! I$I$E)!* I$I$E)! I$I$)( I$I$e)E)% H I$E)!(` I$@E)!x %mlE) I$ $!@I$I$ !* tɕ$!/  nE) òِde)!  ɶme)E) I$Ie)E)*( @ e)E)p  dK-e)E) 7x Æme)E)/ I$I$1" @a۶me)E) M&E)! ;E) p 5! $p!.a1W+.7H1 m;NlE) I$!  $$!!xV @!$!!\ե J!A4 I$I$$!!* $!!*p !4 $!& `$! $!  I$I$$!!+  !A@ $! I$I$$!!  @&$! @#5!b` 5MT!ׯ u $!) @4N$! `* I4I! * ҖT! & 0$!+ I$I$$!!  ! I$I$$!! 4"!A` P !€ P$! I$I$e) @ $! I$I$$!! I$I$$!! I$I$$!! I$I$E)! I$I$E)! I$I$E)! I$I$E)! E)** I$I$E)! ЁD%)(  E)J.J1J I$1$1!wxJ?f1hJ7ɟ1! f1!U 4E) I$I$E)! I$I$E)! I$I$E)$!* I$I$E)$!* I$I$1 E) @ E)  E)!% I$I$E)!X I$I$)( [%۶E)! I$I$e)E)~ E) 6,ۼmE)@ I$$E)! -۲mE)@  ۶mE)  I$I$)( I$e)E) j} I$e)E)UuJM۶mE)4( ضmI$e)E)UU I$e)E) ؆y[mE) 6۶fE)( E)@ m۰mE)AC ߶mlE)b òm oE)a@$( ٶ ۰mE) I$I$e)E)j~w I$I$E)$! II$e)E)/[ II$e)E)7z I$I$)( I$I$e)E)' I$I$)( ۲-۶aE)` PE)! ( I$I$E)!  I$I$E)! I$I$E)!ꪪ R%)^ I%)U $%)U  T$!-ߴ .$! @$! I$I$E)! I$I$E)! I$I$E)!+ I$I$1 I$I$1 I$I$1 H$I$e)$! I$I$E)!* I$I$e)$!* mڢm۶E)!* I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)!* I$I$)( I$I$1 AI$E)! I$$E)! Mܶm E) W M4E) I$L$!  I$$!b/ ܰmܖpE)   I$e)!  Ilme)E)* K-K%e)E) Ie)E)  I$e)E)7\ ؖaI$e)E)% I$I$1" $I$1" I$e)E)>Dd lϳcE)!pX 4$!( m.!f1U% vWh2;f1 p]߱f1 I!  &$! @ $!   ! ! @$!!\ H$!!֭ I$I$$!!* I$I$$!! $!!`x5 $!!% I$I$$!!* I$I$$!!* $$! 5M4! &!I&I$?I) *m!_ ɖL$!! )V!  ! I$I$$!! $$!! ^ HD!A( H$!! I$I$$!!( I$I$$!! $!! H$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!! &! R"u!AР $I a  IlDI!* E)!5۸!8nE)@%IE)a* E)!~ P%)A8  %)a@ E)  I$I$E)$!"   E) & I$I$1 I$I$E)$!* I$I$E)$! @DE) I$I$E)!* I$I$E)! E) I$I$E)! I$I$1 I$I$1 I$I$)( E)@ E) I$I$)( I$I$)( mڶ-ڶE)! I$I$E)! I$I$e)$! ܖlmE)A ( I$I$e)$! I I$E)! I$I$)( I$I$)( I$I$)( I$I$)( II$e)E)U I$I$E)! I I$E)! I$I$E)! ۶mÖmE) I$I$E)! $I$E)$! I$Ie)E)+ I$ e)E)B $I$e)E) @$I$e)$! h۶mE) @ I$e)E) IA$e)E)* I$I$)( I$H$e)$! I$I$e)E)?Uz X$I$e)E)] I$I$e)E)UW I$ $e)E)骊 I$Ie)E) $I$e)E)h I$I$)( ۲۰mE)@ m۶mE) I$I$E)! I$I$E)! `%)a@`!Ie) . I$1!. IB'ē$f1$!蠫 I$I E)! I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$1 I$I$)( I$ $e)$! I$I$E)! I$I$E)!* I$I$)( I$I$)( ۶mmE)@  E)! I$I$E)! I$I$)( E)`  Y-$e)! c۶ E)! O%E)Wz I$I%!? pI$!/@$E) * ِe)! 2` &E) p m6 E)a+$ӶIE)Ap  I$e)E) z ۶mde)$!* I$I$1" l,E)a@DB!UE) K%6le)E) @I$e)E)** I$H$e)E)VX Ie)E) Xme) h  `E) > dE)-ѶqE)  `R)e)E)`) I$M&e)$! * I$I$E)! I$I$e)E) I$ e)E)VR/ II$e)E)) I$Ie)E) A$I$e)E)b I$I$E)! I$I$E)! I$I$$!!* I$I$$!! $!!.j $! HI! &!a  I! - N1lE)!W- } ۇmE)!  e)!W I$I$E)! E)A %) I$I$E)$!**  `E)A@  E) I$I$1 I$I$E)$! I$I$E)$!* * E)'' I$I$E)! I$I$E)!* `E)! I$I$E)! I$I$1 I$I$1 I$I$)( @E)b I$I$)( I$I$)( I$I$)( E)! I$I$1 :0ömE)` A$H$E)! II$E)! I$I$E)$!* I$I$)( I$I$)( I$I$)( I$I$)( I$I$e)E)U II$E)! II$E)! M$!~J$I  I{R%   6r0!/ P`!  $!!  ! @! $I$!!^  H! I$I$$!! @$!  $$!!xW H! $!!5 I$I$$!!* I$I$e) $!!z `$! $$%!P%6!Ķ!L H b 4Nɰ !*./* I$I$$!! I$I$E)!  E)!j  $%)@ %)  %)b@ E) I$I$E)$! I$I$E)!" I$I$E)! I$I$E)! I$I$E)$!* ( E)!*% I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)! $E) I$I$E)! I$I$E)!* I$I$E)! I$I$E)! I$I$E)!( HE)A4( I$I$)( I$I$)( E),4 I$I$)( @E)@ pE)a I$I$)( I$I$)( I$I$E)! I$I$E)!@ a۶mE)  I$I$E)! I$I$E)! I$I$E)! I$I$E)! . lɶmE) I$I$E)! ݰm۲mE) ` HI$e)$!* $I$ؐE). ۶mmE)` h۶iE) I$e)E)/. öo˶mE) A$I$e)E) I$I$1 I$I$E)! mۆmE)  H I$e)E)U^ I$ $e)E)U I$Ie)E) I$I$E)! I$I$)( I$H$E)! I I E)! E)   I$I$E)!mE) mge)!) I$e)! ۶m,e)` E)! I$I$E)! I$I$E)! I$I$1 E) 6llE)   E)a I$I$E)! * I$I$1 I$I$)( I$I$E)! I$I$E)! I$I$E)! I$I$1 I$e)E)-{ K-ÒdE)! ۲mlE)j I'! $I$!/  )DE)  EI$e)!/)LAE)$ [$K$e)E) I$e)E) *KIe)aJ$@RE) I$I$1" @e)E) dK%e)E) X [m e)E) $H$e)E) I$I$)( I$e)$! * m6$e)! t lE) P %)/* PnME) 7 $I$e)! ۦm&,E)@ E) I$I$1 I I$E)! I$I$e)E)+\ I$ e)E) --ڦE)! I$I$E)!ˆ  E)!xb 0L$! $Қ!"ٴ! @!~ RK !a *  $! + I$I$%)! I$I$E)! E)! %) I$I$E)$! h%) I$I$E)$!** I$I$E)$!** I$I$E)! I$I$E)! I$I$E)$!  E)* I$I$E)! I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)!* I$I$E)!( E) I$I$E)$! I$I$E)$!* I$I$E)!* I$I$E)! E) J  E)  I$I$)( möcE)!@ 0E) I$I$)( @E) I$I$)( I$I$)( I$I$)( II$e)E)5 @$E) p ۰m۲mE)@ ضmٶmE)( I$I$E)! I$I$)( I$I$E)! I$I$E)! I$A$e)E)y I$I$)( I$I$E)! I$I$E)! I$ $E)!@ ۖm݆mE))qKmE)  HI$e)E)_ I$I$e)E)U I$@ e)E) I$I$1 I$I$1 I$I$1 I$H$E)!8 I$A e)E)] $I$e)E)_ ۆe۶mE)  I$H$e)E)^x $I$e)E) I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)! H I$e)! I%de)!+ I$I$e)! I$I$E)! I$I$E)!  E) ` I$I$E)! I$I$)( I$I$1 I$I$1 I$I$E)!* E)  II$e)E){? I$I$E)! E)!BJ E)$A$CE) @IHDE)m۶R+4E) J(D!A% I -H!?/ A&!@ !!  e)/ B:Me)x M !+ !@$! @$I!* R#$&!` d!d $!!+ZW Hd!d I$I$d!d  $!  $! $A! e) I$I$$!!. &! 6r8:! l$!Ah$I$޺Ix A  4m4 ! I!/ @$!! p^ @d!d $d!d  d!d  !@@ -!  I$I$$!! $!!x $!!z- $!! )! I$I$e) &! $I$! $I:!R$ ~Up$Ip OH!U! ٶm4!* IE)!Uս I$I$1 I$I$E)! E)@ E) %)$ @D%)! I$I$E)! I$I$E)! E)( I$I$1 I$I$1 I$I$1  E) I$I$E)! %)  I$I$E)! I$I$E)! I$I$E)! @|E)AР I$I$1 I$I$1 @E) $E) p I$I$E)$! `E)@ E)A I$I$E)!* ۰m۲aE)@ ضmٶmE)A I$I$E)! ۶m6gE) C1۰mE)A` I$I$)( I$I$1 I$I$)( ۶mضgE) I$I$E)! $I$e)$!* I$I$)( m̶mE)a& I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$ $e)E)׵] I$I$)( I$I$1 I$I$E)! I$I$e)E)U. E)4,۲mE) @ 6 ٶmE) I I$e)E)U I$$e)E) I$I e)E) I$I$1 I$I$1 I$A$E)! I$Ie)E)*) $I e)E) ~ h[ m۶E)!@ ۖm E) I$I$e)E)- I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)! $I$e)!/ IB0I$e)! I$X`e)! I$I$E)!x I$I$E)! @E) E) I$I$)( H$I$e)E)\u I$I$)( I$I$E)! ۶e۶aE) I$I$)( I$I$E)! I$I$E)! (E)$, I$I$1Fn IE) I%ۖe)! $$!A I$PR@! I$!/۰moE)* [ e)!/ I&e)%) I$ $e)E)* H$A$E)! A$I$E)! ٶmae)E) I$I$1" I$e)E)p `I$e)$! * I$e)E) `$HE)  ɐ$I$E)!( `B)e)! mj E) E)b  ,E) rm[qE) " I&"e)! E) I$I$)( A I$e)E)s m60E)p XmE) m6lE)! I$I$E)! @E)^pI$! N6I$ !* I$!!  @E)! I$I$1 I$I$E)! PE)  E)@ E)   E)a I$I$E)! I$I$E)$! E)  I$I$1 I$I$1 E)A` E)! I$I$E)! E)  I$I$E)$! I$I$E)$! I$I$E)!"  E) & I$I$1 I$I$1  E) E) & I$I$1 @ DE)A I$I$E)! I$I$)( q[mE) I$I$E)! I$I$E)$! E)A  pmE)A$, I$I$1 I$I$1 I$ $e)$! E) I$Ie)$!( $I$e)E)յJ I$ $1! O$1$!_ I$I1!  O$I`1!mvE)!^m#me)!j@Z %) I$ $E)! I$I$)( I$I$)( I$I$E)! 6`dE)A( -ڶhE)! I$I$1 I$I$E)! I$I$E)!* I$I$E)! AI$e)$! I$I$e)$! I$AE)!8 $Ie)E)( mK0oE)A4( I$I$1 I$I$)( I$I$)( I I$e)E)W I$e)E)- I$I$)( I$I$)( ö}XmE) I$I$E)! I$I$E)! $I$e)! K2 I$e)!  I$Xae)! %)a` I$I$E)!/ ۶ ۶!E)B -E)$  I$I$1 I$I$E)! I$I$E)! I$I$E)! ۶mbE) I$I$)( I$I$E)! DE) I$I$1 ɒI$E)!c[‘E)x iҺ6! bC?I!_5 ,E)- z @yNE)XV iM !+  @$! H !*  !H$IE) $@@ d!d LE)  @d!d I$I$d!d $d!d ) !@ :@!  !  0$!  4M4! `&!$I$*I !L!A.6* I!/  d!d @d!d 0d!d H6!! ʱ! ,$ I$I$d!d I$I$$!!/+ $!!*x @$!!Xխ $!! I$I$e) I$I$e) T! m۶-!'!WZ6I$!O$y !I!  m%I"a!* 4I!  $! I$I$E)! h%) ( I$I$1 I$I$E)! @E)j %) E)! I$I$1 I$I$1 I$I$1 I$I$E)$!* I$I$E)! I$I$E)!* I$I$E)$!* I$I$E)$! I$I$E)!B  E)  I$I$E)$!* I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!  I$IE)! / I$Nf1$!W. I$/Aֆ1E)}}+J I$1!J I'1E)ue I$$1!_e Iؚ$1!U.X1A. IB$1!_. I$1!U. I$1!U I`v$1!Uu @жf1 Ib$1!ժJ I'$$1$!_J I$$1!W. I$1$! e)!* $I21!^ f1!} mi۶E)! H E)b<4 I$I$E)! I$I$E)! I$I$)( I$I$)( ۶ ۺ1E)` mѶEE)!5 H$I$e)E) I$I$)( I$I$E)! I$I$)( $I$e)$!* II$e)$! I$I$E)!  I$I2,E)! ذm3E)` I$A$e)$! I$I$)( I$I$)( II$e)E)+~ I$A$e)E)" I$I$e)E) I$I$)( ۰mmE)@ PE)  I$I$E)! I$I$e)!/ @I$e)! I$e)!  I$I$e)!  E)* I$I$E)!*68PE)`$ I$I$E)! I$I$E)! I$I$E)! I$I$)( E)A( I$I$)( I$I$E)!  E)@ E)A I$I$e)E)5W}"@۴mE)h ٶmE) h(E)~ꪠ I$K=! pAɐ$!/!O$IE)   hB%e)$! I,H,e)E) I$e)E) I$@ e)E)%Vp 6l de)E) 7 I$I$1" I e)E)~ I$e)E)- Kmae)E)(۲m$hE)a@ ٶ؂mE)@I@rE) mP @e)  k%)7 $`E)/$H%E) -m 5E)a $ I$I$E)! * I$I$)( m۶mE)A` I$H$E)! ( mڶ-ТE)! I$I$e)E)> mE[4e)!p lJE)A& I$! $!! I$I$E)!  %)A I$I$E)!* I$I$E)! @\%)AР E)! E)!) I$I$1 I$I$1 I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)$! I$I$E)$!" $@ E)`@ 0E)4* I$I$E)$!" I$I$E)!* I$I$E)! * I$I$E)! * I$I$E)! . I$I$E)!*(> I$I$E)!* I$I$E)!& I$f1!  I$If1$!J I$&1!J I$1!J I$1!e I$1!UJb f1Az?#f1. IB$1!W. I$1!U. I$1!U Imn$1!Uq жe)*. I$$1$!J I$$1$!~zW I$I$E)!/ E)!X E)!%  %) @ ۖmE)e)!в-ۺmE)@ P$E) @@E)!_ u E)!׀ E)! ۲aܶmE)@  E)a HE)<< $I$e)E)UU I$I$)( I$I$)( I$I$1 I$I$e)$! I$I$)( I$I$e)$!* ۖ I$E)!* I۴ڶe)! I$I e)E)  E)!@@ E)! I$I$)( $I$e)E) W I$ $E)!6mٖaE)a I$I$1 mKmE) $ I$I$E)! I$I$E)! ۰%[mE)rzIJ$ɦE)  I$@ e)! m۶ ;E)!x I$I$E)! I$I$E)! I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$)( I$I$)( [a۶mE) E)!*` I$iE) $R+!_ ޷ !Z hT$E !? @!/  $L$! IA !**  "%!@ $H! $ ` I!* $d!d $ d!d  `!* LE) @ $E) d!d `! M۾6!9I$AI$IAPz 6l  it0!/ P!  $I$E) $IX!(4 $0H!* L!  d!d  !B@@ $I! Ä!d!d d!d $Id!d Id!d @$! $I$!$$!$I$+I$XB!IE A* i۶m1!* I! I$I$$!!  I$I$$!!( I$I$E)! I$I$E)! I$I$E)!꿫 I$I$E)! I$I$1 I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)$! I$I$E)$! PE)a8 I$I$E)$! I$I$E)! I$I$E)! KE) E) ۚmE) i E)*  HE) E)!_u I$I$E)! I$I$E)! /+ l۶mE)& h6f۶mE) I$I$E)! I$I$E)! I$I$E)! 4E)A` I$I$E)! E) I$I$1 I$I$1 E)!J E) E)$, IE)b77 I$I$E)! I$I$E)! I$I$E)!  E)!* I$I$E)!x* ۰mlE)E)!* $I$e)!, :E)Aʇ 6l۶qE)(  E)! E)!* E)!*  HE)A&  E)b``* I$I$E)!) I$I$1 I$I$)( I$I$)( I$I$e)E)_b I$I$E)! I$I$E)! $I$e)$!bDE) H$He)E)- I$I$1  E) f I$I$E)! I$I$e)E)-U^ H I$e)E)胵 ۶E)8 I$I$e)E) 6l3lE)` H$I$e)E)x I$I$E)! I$I$E)!o~Nɶ-e)a -$e)) I$I$E)!\ I$I$E)!.+ I$I$E)!/ I$I$1 I$I$1 I$I$)( I$I$E)!*( I$I$E)!* I$I$)( mm۶E) @ E) xE)b< I$I$1 $I$e)E) Wu K,ٖde)! mӶh E)! I&! )DI$! * lܖlE)/ Ie)!/ I&@Ce)%)* $ e)E) * I$He)E)Vx*m[E)!X Kd,e)!  e)E) ۠m҆eE)" $INE)  I$e)E)( H$ e)E)TX I$e)E) WN۶ʍe)A y`E)` Y!&P/E)  X2, e)! I$I$E)! * I$I$E)! $I$e)E)^  E)` I$I$E) I$I$E) u6m۶E)!v` I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)! I$I$E)$! I$I$E)$!* I$I$E)! I$I$E)! I$I$E)! I$I$E)$!* I$I$E)$! I$I$1  E)  I$I$E)$!* I$I$E)! E)@ E) E) ME) 5E)a`j IE) HE)!] I$I$E)!  E)@@%$IE) E) I$I$E)! I I$E)!/ I$I$E)! HE)a,4 I$I$E)! E)! I$I$1 I$I$1 @ E) Р E)!@  E)b` E) I$I$E)!* I$I$E)!( @E)@ E)a E) E)!)( `E) pE) I$I$E)! I$I$E)! E)!{*  E)a* E)!׈ @E)!z C%) $0E)!U{U HE)!W}  IE)@ h E))* @E) H$I$e)E)U_ I$I$)( I$I$1 I$I$e)$! I$I$E)!* mE)! I$ $e)$!(* I$I$e)E) II$e)E)** II$e)E)~  E)a@  ۖmE) $Ie)E)5 I$I$e)E) I$I$)( I$I$E)! hE) I$I$E)!/ E?e)! _m+ME), ۶mE)A E)* I$I$E)! E) I$I$)( I$ $E)$! I$I$E)!* E)!b I-%) !__p A@PMG&!AR s4 !+  $0!  @$I$! IH$!*  %R"I!P XVH$I!a $ R*%!A $I!A$ I0! $I!*  IP$]! Hd!d HD!A&8 -k6!OЄR$ !&@$I$Iĉd 9U"E !/  `!  0`2E) $2$E) $AD$! hڶ-0`! ! I!  (!  6! H!   d!d d!d Id!d @ۤ! m۶1!d$$!b$I*I9A ׽+ 9 ! i۶-!  $!+ I$I$$!! $!4 I$I$$!! I$I$$!!/ I$I$$!! I$I$$!!  %) & DE) * I$I$E)! I$I$E)! I$I$E)! E)!Z j D%)! I$I$1 I$I$E)! I$I$E)$! P%) ( $E) *_ F'E)_ @V%)_ $O"! RE)ի m?5E)j E) I$I$E)!* XE)A I$I$E)$! H@E)P I$I$E)$! %)a  E) I$I$E)$! I$I$E)$! I$I$E)$!*  E)@ E)A I$I$E)$!( @E). 4E)p  E)!`  DE) I$I$E)$! I$I$E)! E)! I$I$E)! I$I$E)$! I$I$1 HE)A$, I$I$E)$!* E) I$I$E)$!* H E)A4( I$I$E)! I$I$E)! I$I$E)! T@E)A  E) z E)!   E)!WU ll$!  E)! ] m6E)!W H"I%)! @E)@  E)b I$I$)( I$I$1 I$I$)( I$I$E)!* $I$E)! I I$E)$! I$@e)E) I$I$1 @$I$e)E)ਪ I$Ie)E)h* mlE)A I$e)E) U I$I$e)E) I$I$)( I$I$)( E)a` E) $I$e)!=E)۶m#,E)! `  E) I$I$E)!/ @E)( I$I$)( I$I$)( I$I$E)!* I$I$E) I$I$)( I$I$E)! I$I$E)!* I$I$E)!* I$I$1 Ö`I$e)E) U I%ؒae)! P@E)Z I$x(! ɐ$!' )I$e)! ? `$e)E) I4M&e)E) I$e)E) * dK%e)E) 7Xr [dْle)E)( Xm$IE)  H$ e)E)p€ ؖlI$e)E)% Y$[%e)E) I e)E)ZB* I$e)E) 5W\ lB&%e)! kۊmE) 7X!< mtE) - @-ɐde)! ۶lKmE)($ I$I$E)! @E) ` I$I$E)! @ Ie)E)% I$I$)( I$I$E)!( I$I$E)!  $! @  E) E)  I$I$E)! I$I$E)!꿫 I$I$E)!  E)`.  %)A I$I$1 I$I$E)$!* I$I$E)$!ꊨ %) 5E) E) )mSI%) I$%)  t{E)_ E) ( !E)!* I$I$E)!  E)a I$I$E)! E)a*& (%) ` %) @  E) I$I$E)$!( I$I$E)$!* I$I$E)$! dE) I$I$E)$!  E)! j )E)  E)& HE)< E) ' I$I$E)$! I$I$E)$! E)!*% I$I$E)! I$I$E)! I$I$E)!" I$I$E)!( @DE)b I$I$E)!(( I$I$E)!" @<E)p E)  I$I$E)!  E)@ E)a I$I$E)! I$I$E)!  I$I$E)!* E)A,4 HE) W $$E)!uU DLE)!UUU  IP%) @I0E)!UU E)!-U I$I$E)!+ A$I$e)E)Uw I$I$E)! mضmE)  I$I$)( I$I$)( @I$e)E)+W I$I$1 ۲ `E)@ A۶m۶E)  I$I$)( $I$e)E) ^ I$ $e)E) I$I$)( $I$ E)0 E)! I$I$E)! I$I$E)! I I$e)! mle) I$I$E)!/ E)!/ I$I$E)! I$I$1 E)!` iڸ1%) d>!~__M$L$* ɘl! xR@%! !0!  Ð !讯I$I$!  H E)  B&I!* I !* [m۶ ! ʡ I!A$ H !*  $I )!@ $I! @5! vݼ5! &I$ I$I+ Ism+ M{4 !/ HI!a< `$I$E)a @$! $I! $A$! $IE) $A$! )$!@ 4$I!  A ɐE) Hd!d `@&! 1!b$$!a`$I/II2 * )K!b  I!!* JDH!A I$I$$!! I$I$$!! I$I$$!! H! (  !b, I$I$$!! $! I$I$$!! I$I$$!! @@! E)* ,%)z I$I$$!! @H%)AР I$I$1 (E) z %)! ivtE)U $q'!W K$! mE)]* E)! I$I$E)!* I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)! E)b I$I$E)!* I$I$E)! I$I$E)! I$I$E)! @E)!zغ @@%) ` I$I$E)!   E) @E)z  I$I$E)! I$I$E)!_ I$I$E)!  E)j` P @E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!  E)(@ E) I$I$E)! I$I$E)!ª @P%)!( I$I$E)! j I$I$E)$! E)& I$I$E)$! I$I$E)!( I$I$E)! 4E)` E) 2E)!W  @E)!WUW I(!@  IE) !$E) U E)! $I$e)E)W I$I$E)!( KmömE)A I$I$)( I$I$)( $I$e)E)Wz I$I$e)E) I$I e)E)* 6l۶mE) I$I$1 ꪪ I$I$e)E)%Wz H$I$e)E)^ I$H$e)E)  E)!@ d E)  I$I$E)! I$I$E)! I$I$E)!7N`e)!  I$I$e)! E)!/ I$I$E)!+ I$I$)( I$I$1 I$I$E)! E)! I$I$)( I$I$)( I$I$E)! I$I$E)! * I$I$)( I$I$E)$!жi!E)ɂ ۶m6`E) O%!~x I$!-^۰mE)bb mqf1!)- ߿E)! II$E)! I$A e)E)7Xb lɖde)E) 7 Ie)E) * H e)E)X  lI$e)E) Z ˶,Hme)E) H$ e)E)x  ɐ$K$e)E)Tx lB4!e)!dJ E) WiE$! m=GgE) +7 DI$e)E)@/ I$K$E)!* I$I$E)! I$I$1 I$A e)E)^s I$I$E)! I$I$)( I$I$E)! @E) $!  d$!b I$I$E)!  E) I$I$E)! %) I$I$E)!  %E)aZ R8E)U  5NJ%)U ڜ$$!U/ I $!/ E) I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$1 I$I$E)$! I$I$E)! I$I$E)!  E)!~ %) I$I$E)! I$I$E)! I$I$E)! I$I$E)!* @ E)!ޯ% H %)A(4( E) @  E)` HE) I$I$E)$! I$I$E)!* I$I$E)!* HE)><  %)A  I$I$E)!* ȁE)$( I$I$1 H@E)A I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)! (E) `  E)@ E) I$I$E)!(* I$I$E)$! I$I$1 I$I$E)$! I$I$E)!* I$I$E)! I$I$E)! IE)!Uz* m6 E) -[ l$!/ *%RIE)j  IE)! E)!- I$I$)( I$I$)( I$I$1 I$I$e)E)U\ $I$e)E) V I I$e)E)%U ۶mض E)$ H$I$e)E) I$I$1 mѶmӶE) ` `rܶmE)a*۶mbE)  I$I$1 I$I$)( I$I$E)! @p%)* m{me)!@ _ ]E)  E)!/W l> ^_]C'I$/ 1m  I !/ RHI!! `!I!I$I$! I $! @$I!*   !  E) $HJ! I !*** $If!a "@!A@ iɚv!!* ER&!X$I$I$/9ْl ! d@!  m6f! I$I!*   H$! H$!* IE) R"5B"(!` hDI!( $ H!a  d„E) HE) $A-! I! l$!^@$I$I$9%   UI$ !* I!!* ! I$I$$!!* H!, $!! I$I$$!!/ $@$!A` I$I$$!!  $!, $! I$I$$!! (!@ PFP!  !@ ! $$! (в'! @ HI$%)a 'Id!a mӶ$!/ I+! !$! I$I$$!!+ I$I$$!! I$I$$!!+ I$I$$!! I$I$$!! $!! $!!j I$I$E)! E)(> I$I$E)!着 `E) %)A I$I$E)$! hE)< I$I$E)$!* I$I$E)$! I$I$E)$! I$I$E)$!* I$I$E)$! I$I$E)$!* E)b  I$I$E)$! dE)A I$I$1 I$I$1 I$I$1 I$I$1 ЀE)A( I$I$1 (E)` I$I$E)$! E) @ 0E)  I$I$E)$!*( I$I$1 I$I$1 I$I$E)$! I$I$E)! " dE)  E)a %)b I$I$E)! I$I$E)! I$I$1 I$I$E)!( I$I$E)$! I$I$E)! I$I$E)! @E) _* I$E) UW mm E) nݲvE) H ME)A4% E)  I$I$1 I$I$e)E)U I$I$)( I$I$e)E)^ I$I$)( HI$e)E) W ۶m-E)` I$I$e)E) I$I$1 I$I$)( 2mE)@* E)A  I$I$e)E) I$I$)( I$I$E)! PE)8 6ضce)! _+-mE)a@* ݖm#E)b E)! I$I$E)! I$I$1 E) I$A$e)$!* I$I$E)! I$I$)( I$I$)( E)$ I$I$E)! I$I$)( I$e)E) 5W I%`e)! @E)zꪠ IJ(!/ TQT$!!+ II$e)!#&%e)p 0lۖ E) H$ e)E)\`* `I$e)E) 5$I&)e)@iIe)A K%e)E) 7\p I,Ö`e)E) $e)E) I$I$E)! (@IE)ah E) RӪ$!{ 0rE) - ɐde)   I$LB$E)!* I$I$E)! I$I$e)E)= I$A$E)!( I$I$)( I$I$E)! E)@ E)b @! I$I$$!!/ 5$!( DJ$%)a I$%)A IJ!* mV!Z* $! I$I$$!! I$I$$!! I$I$$!!* I$I$$!! * I$I$$!! I$I$$!!*  $!!} @$!!޿ I$I$E)! E) 4 E) @%)aа I$I$1 I$I$E)!ʪ E) I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$! (E) ` E)!*( I$I$E)$!( E)b  I$I$1 I$I$1 I$I$1 I$I$E)! E) I$I$1 @$E) @E)` E)!  I$I$E)!* I$I$E)$! I$I$E)! I$I$E)$! I$I$E)$!( I$I$1  E)a E)b@ E) I$I$E)$!" $!!d E) I$I$E)!* I$I$E)!" I$I$E)$! " I$I$1 I$I$E)$!*  E)@ %)b  XE) 69E)~ ԭJE) E) 5E)! K E) I$I$)( I$I$)( I$I$)(  m۶mE)& @I$e)E) W I$@e)E)- $I$e)E) I$I$1 ꪪ ۆmE)! H I$e)E)_ I$H e)E)ꨉ I$I$1 I$I$)( I$I$E)! HE)!_ hӢv&E)!`_h !`&͛$! ha$I!* Iǰ% b A! P"5!ahPP!(!I$I$!I$I$! $AR$! HI$!(** $I!  B$A! I$LE)a z&I$!A Шٴm;!&K$ M$I/IDND! ( %VB!!bB  I!A @$I$! JF$I!( $I$!*   H$! $I#$!` A$! ʳR"4!!` )I$I!  $I !A  $!  zJJ!a$$I$xI$ɕ !UխI !* mҶ-! @!@  ! I$I$$!!* I$I$$!! GH!!8 $!! I$I$$!! * I$I$$!! @ $! $!!` )&!  p!A $!!j 0$!!^ '!X ")M$!`$Ixa I$y%!+ II!Aj $! I$I$$!! d!d $!! I$I$$!! $$!!W @$!!_- $$!!_ I$I$$!!+ I$I$$!! I$I$e) I$I$e) I$I$e) %)' I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! dE)  E)! I$I$E)$!  $E) ` I$I$E)! @$E) I$I$E)$! E)* I$I$E)! I$I$E)!  E) E)  E)  I$I$E)! I$I$E)!( I$I$E)! I$I$E)!* I$I$E)$! I$I$1 @ E) I$I$1  E)a I$I$1 @E)P  %)  I$I$E)! I$I$E)! I$I$E)$! * I$I$E)$!"* I$I$E)$! I$I$E)$!* \E)A$ E)!~ KE)W vP %)!@ Vi%) Km%)A:  E) . I$I$)( I$I$)( I$I$)( E)p $I$e)E)U I$ $e)E) I$I$e)E) H$I$e)E) I$ $E)! I$e)E)%Uz I$e)E)5 I$I$e)E) I$I$1 I$I$E)! E) ~ -ڶmE)!%W ,4E)x 0YE)* I$I$E)!/ I$I$1 I$I$1 I$I$E)! I$I$E)!* I$I$E)!08 I$I$)( @@E)p E)$( I$I$1 $I$e)E) ]_ [-de)! c۶E)! I% !X $MV!a(\ ۶mE)br a+T f1  M4M&e)E) @ I$e)E)p* I$e)$! ( ɶdۖ!e)! e)E)* I$K-e)E)'X I-`e)E) <@mE)@ i۶h۶E)!! d $e)$! dCIE)p Ӻn,$!p E) -7 mE) I$H%e)$! I$I$E) I$I$)( I$I$e)E)X{ I$I$)( I$I$)( I$I e)$! I$I$E)!` P$K&E)AL$I!+ I$! I. !A !d!d I$I$$!! @$!!+/ I$I$$!! * I$I$$!!* $!!* I$!!U $!! I$I$$!! I$I$$!!/ I$I$e) I$I$e)  $!@ E) I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$E)! I$I$E)! E)*' I$I$E)! I$I$E)! (E) ($ I$I$E)! (E)  E)` I$I$E)$! I$I$E)! I$I$E)! I$I$E)$!( I$I$E)!* E)!zb I$I$E)!# I$I$E)$!( I$I$E)!JJ E) I$I$E)!( I$I$E)$! I$I$E)!* I$I$E)! I$I$E)! I$I$E)$! I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)!( I$I$E)!+ I$I$E)! I$I$E)!+ I$I$E)! E)  I$I$E)$!* I$I$E)! E)~ I%E)_ $`nj $! 0;E)+} E)- $I$e)E)U  E) I$I$e)E) I$I$)( I$e)E)%z I$$e)E) I$I$e)E) I$I$1 I$I$)( H I$e)E)W I$I$e)E) I$I$)(  E)!@p R:!z~,A"$!I$I$A* I J * IdK$M! $)#!ɐ!I$I$!I$I$!I$I$!I$I$! dH$H2!I$I$! I$I$! I$I!* @!2!'I$I$I/ C% IL @! $H$!!!I$I$! B"% !Ap I !* 0R"!!p  A()!*  IH!A $!,I!Jʪ I(R!,IR(>!<'I$bI$I/I $  IۤiW`!+ 0! I$I$d!d I$I$$!!* $!!(  ! I$I$$!!/* I$I$$!! $!! ( x @$!!p_- H$!!ֵ H$!b44 I$I$$!!* P! $-!x ij$!$I$! I$U !ڪ* IK!+ $ !  d!d I$I$e) I$I$$!! * $!! ~ @$!! ^ (!@ $H! $!!- I$I$e) H$$!A I$I$e) I$I$$!! I$I$$!! $!!~. $!! I$I$$!! I$I$$!  I$I$E)! I$I$1 ,E)p I$I$E)! I$I$E)!ꪪ I$I$E)! %)$ I$I$E)$! I$I$E)! E)A&. I$I$E)$! I$I$E)$! I$I$E)! E) 6 I$I$E)$!Ȫ( )E) I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)$! E)! I$I$E)$!* I$I$E)$!* E)4 I$I$E)! I$I$E)$! I$I$E)$!* I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$1 I$I$1 I$I$1 I$I$E)$! I$I$E)! I$I$E)!( I$I$E)! * I$I$E)!  E)@ E) I$I$E)! E)!z* ME) $gۘ@%)~ vE) PE) I$I$E)$! @E) I$H$e)E) I$I$)( I$I$e)E)-^ H$ $e)E) I$I e)E) I$I$1 I$I$)( I$e)E)5Wz I$Ae)E)% I$I$)( I$I$1 E)a,$ ` E)!W E) /dzmE)!Vp  %)bJ E) (E)` a۶m;E)!C E) I$I$E)!* I$I$E)!@@ E) I$I$E)!&> I$I$E)! I$I$)( aI$e)E)% I$X-e)! hE)ꪨ m! * a۶E)! / ]ӡ隸1$! i$l4e)!` Ie)E) * H$e)E)x` [m e)E) e)E) I$@ e)E)\`ɼME)b ØmmE) I$@$E)! I$e)$! *$C" E)@ 隯PE)  mѾ$!  * I$E)! I$X2,e)!> E)b$  I$I$)( I$I e)$!( I$I$E)!  E)a@  E) @E) P@ 0! I$I$e) I$I$$!!* I$I$$!! $$!!_ @$!!_  @!! L$!*, I$I$$!!  $!!@@ I$!A/% I$I$e) I$I$$!! I$I$$!! @$!!_ I$I$$!!+ I$I$$!!/ I$I$e) I$I$E)! I$I$1 E)(&* I$I$E)! I$I$E)$!  E) B %) I$I$E)$!*  E)@ E) I$I$E)$! I$I$E)$!* I$I$E)! E) @E)` I$I$E)! I$I$E)!**8 I$I$E)!* IE) @$E) ^_ PE)+  E) I$I$E)!* I$I$E)! HE)< I$I$E)! I$I$E)! I$I$E)!(* I$I$E)$!"* I$I$E)!  E)!j@  %)A E)! I$I$E)! * I$I$E)! I$I$E)$!* I$I$1  E)  I$I$E)$! @tHE)!Р @E)! I$I$E)$!* E)@ E)!( I$I$E)$! I$I$E)$! j`E)_ $E)Wz  -'E) UW OE) I$I$E)$! I$I$)( I$I$)( I$I$)( $I$e)E)Wz ۶E)! ' I$I$e)E) I I$e)E)j I$I$e)E)5Wz $I$I2E) 5S>%) jp$I$AЂL$IA`* #IP! H"&*!!"@ $ `! @!  *bP!I$I$!E!ꪪ A@ @!A  &!^m%h$I$I$I/ 9ٶl! eB1 I! j j"m AI$I$! H!꾯 ! I$I$! $A$I&!*  I!I!  $I$! I$I$! $ H$! ٶ9!-K$I$I}/I!0`A*  $I 1!/{  A@!/  $)&!@ ! @$d!d $$!!\ե  !A@ @G!A  H! @"$!j 00! I$I$$!! I$I$$!!  $! @&!^ %I$!M$I!/ I$! $I!-  d!d d!d @d!d $$!!+^ H$!! W% ) !@ $!* I$I$$!! $!@ $!! $!!z "I!A@ p !a  H!4 $!! I$I$$!! ( I$I$$!! I$I$$!! EH!   $!  I$I$$! 4%)!` @E)!U 1E)~ E) &E)_ &%)A$ 7E)U HE)  $$%)U ۖE)* $%)(W %) kR'%)_W I%)UU mi%) 0|E) E) J\E) E)!}u ME) ,E) I$I$E)!y I$I$E)!  E)@ I$I$E)!*# I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! ȁ%)a,4 *%)! I$I$E)! I$I$E)$! I$I$E)$! I$I$1 @E) I$I$1 E)h 0E)  I$I$E)! I$I$E)!* E) I$I$E)$! I$I$E)$!* @E)  :E)~ T %)/Ux E) U E)! - I$I$)( I$I$)( I$I$)( I$I$e)E)%U^ I I$E)!" I$H e)E) II$e)E)** I$I$e)E)x AI$e)E)-Z I$Ie)E) I$I$)( I$I$)( I$I$E)!  E)!%_ plرmE)!X @ E)!p mmE)!` ? E) E)! I$I$E)!  E)` I$I$E)! $E)` I$I$E)! I$I$E)!* I$I$1 dI$e)E)-] K%ؒme)! E)!_ @ E) E)!/  e) / { `e)! $I E)! I$@ e)E)5Z` 6, e)E)  e)! m1loE)!  Hlɖde)E)  I$ˆme)E) I$e)$! I$e)$! *Xe)!x v2'X%)__^ NzE)+ )"I$e)! mÆmE)! I$I$E) I$I$E)! I$I$e)$! I$I$E)!. I$I$)( I$I E)!( E) $$!!T I$!!x P! $!! I$I$$!! X$!< I$I$$!! $$!!_ Ex* ! l $! !A $!!  I$I$$!! I$I$$!! $!! !! $! I$I$E)!/ H%)a4 E)!U 0E) X&E) E)@ E)a &%)z  Iږ%)U $E)U h;E) &$%) U &E) I$%)UU Hq$!  i.E) ME) *)E) @@E) `  E)!]zk E)! `E)*ު I$I$E)! @E)!^ I$ $e)!۶mXE)b( I$If1! mҶnE)!P E)! I$I$E)! I$I$E)! E)< I$I$E)$! I$I$E)$!  E)A` I$I$E)!* I$I$E)! I$I$E)! I$I$E)$! @E)! I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)! * I$I$1 I$I$E)$! E)` E)h y%)! X-E)/Wz \E)- I$I$E)! I$I$)( I$H e)E) E)< $I$e)E)WZ I$e)E)5  E) @  Z6E)@$M$I$I? b !H! 0!@H p(( @!!I$I$!H A!H $I A bɞ!@4@$bH$I$IX1d? a҆!]߽ !!ꪪ,!@% `!@ $@ !aPH $( <!zZI$I$!@$ A``@$!`˒d'!zP$I$I$I$!* &IUI !* !!  ] I! b !I$! $d!d I"!@ 0p!  I$I$e) 0$!!z/Z 0L$!!\U  d!d d!d I$I$d!d 0! I$! $I$! I$Ix ! IJ@! I@H!*  !A  d!d d!d  d!d $$!!~U- $!! I$I$$!!* I$I$$!!* I$I$$!!* $@A! H$!! !$ I$!! I$I$$!! I$I$$!! H!, D! &$!!W $$!  @$!  Iғ$! $mI$! 'I$ A} $I!h$I!* I$ I!Aޞ I$! I$!aڪ RIE) z y I`E)U $E) IE)!U HE)44 E)!U I$I E)! I$I$E)! @lE) $%E)az` IQE)!& I$I$E)! L E)!U_  E)A E)!ת E)p E) I$I$E)!/ m۶aE)!mn;e)!{@nm۱c1A  e)!ʯ E)  E)!* I$I$E)!  E)` I$I$E)$!  I$I$E)$!** I$I$E)$!*  E)  I$I$E)! I$I$E)! I$I$E)! E) @ E) I$I$1 I$I$E)!* I$I$E)!* I$I$E)! I$I$E)$!  I$I$1 I$I$E)$!  E)& Md%) `' @E)U^ 0E)+U E)- I$I$)( I$ e)E)/  E)` I$I$E)!( H$I$e)E)%U I$I$e)E) I$I$1 I$I$)( @ I$e)E)W I$H$e)E) I$I$)( I$I$E)! I$I$E)! m[E) *z J%E)aX "@W! @( GE)a8 I$I$1 I$I$1 E)$ II$e)$!* I$I$)( I$I$E)! I$I$E)!* I$I$E)! ɐ$I$e)E) Uu&,òIe)`` mmE)!_}{ $!!/> I$I$e)! I$e)!=# e)a  $e)E)  I$e)E)x  ` e)E) 7 I$e)E) K%ے e)E)Xp2,ME)@@ A$I$E)! H$I$e)E)\X I$e)$! * Oe)!x I$@ E) uQ%)+ H ۰mE) s&f&lE)a H$I$E)$! I$I$1 E)b I$I$1 $I$E)!@ E) I$I$E)! I$I$e) I$I$$!!* $!!x $!  !@ ! $!!- I$I$$!! ! @! @! $! ,$5!a@` 0H$!  IK$!_ I$!A $I$!$I!b O$y[! I$$ !A* I$!U. I޷%)A I*E) / E)* i E)  E)!Ujj E)  I$I$E)! I$I$E) I$I$E)! MmE) DHE)aj<  E) E)!W  E)@ ò-ۖmE)@ E) I$I$E)! I$I$1  E)A@ E) I$I$E)!y E)! [. /$I$f1! I$1!+. I:I$1!WUc'lf1!z*Mm;Af1a  E)!x E)!  E)`* E) I$I$E)$!* I$I$E)$!* I$I$E)!* I$I$E)!+ I$I$E)! I$I$E)!  E) E)! I$I$E)$! I$I$E)! I$I$E)! I$I$E)$!** I$I$1 I$I$E)$!* h@E)Ap KE)Wz W(%)+` TE)A* I$I$E)!+ H$I$e)E)ث_ I$I$E)!  E) @ @&E)#'v$I$I?s ɰ`! ̙ '1`!I$I$E(Clؐ !@! @$ !p(!I$I$E(C !ꪪ ۾!!@$I$pmI$Ia IX%% }%!!@ J@ &Ȗ!(!z !m 0!!:$ ! -Y6! %N$I$I* I$!* M(Q$A!   H$H! $I$E) $H$0E) &IE) Id!d I$I$d!d  d!d Ld!d LHd!d d!d d!d -! $ij$! j$I$! I$IU !UU5 ɗHI!- @!!$ ض! d!d d!d & d!d Ld!d I$I$e) I$I$$!!+* I$I$$!! D!A $ $!!_ H$!!W $!!- $!! $!!* $!!z $$$! %!_  Ik$! h'I$!($I$ O$I !bI$I * I %) IRI%) I"@%) i E) I$I$E)! @E)!* I$I$E)$!* I$I$E)! I$I$E)! I$I$E)!ꪪ dE) I$I$E)$! I$I$E)$!( I$I$E)$! I$I$1 I$I$1 I$I$E)! I$I$E)$!* I$I$E)! I$I$E)! I$I$E)$!((۰mlE)b&  E)  I$I$E)! I$I$1 II$e)$!* l۰mE)!. E)! I$I$E)!-  e)!. I$1!]. IbI$1!^W I$$1!Uz Uk[ e) jf1!U E)! U I$I$E)!ʯ *E)a&* I$I$E)$!* I$I$E)$! I$I$E)$! I$I$E)! I$I$E)!/ I$I$E)! @E) I$I$E)! I$I$E)! I$I$E)!* I$I$E)!" I$I$E)!* I$I$1 I$I$E)$! * I$I$E)!h PS@%) I$E)Wz PE)! E)- A$I$e)E) I$I$E)! I$I$)( I$I$e)E)-_ llE)& ۶mۆ-E)@ $I$E) I$I$e)E)%WZ I$ɖ$e)E) I$I$e)E) I$I$)( I$I$E)!(( jHE) @@(E)b*j P 5(E)c E)* I$I$E)! HE)$ I$I$E)! I$I$E)! I$I$)( I$I$)( @DE)aа I$I$E)! I$I$e)E)5Uu Xmɖ$e)E)` ۶1lE)h E) - I$I$E)! )I$e)! / hB4e)%) ɖmɂ$e)%)  ۶maE) I$e)E) %$@fe)  H$e)E)X ۖ`I$e)E) ' I$[,e)E) I$I$e)E)^z/1!J믾!i)mE) I$@ %)UVX` `[E)+-  I$e)$!  I$H2$E)!* I$I$E)! E)! I$I$E)!* I$I$E)! I$I$)( I$I$E)!蠀 E)  $$!!W- I$!!U $!! z $!!~ I$I$$!! $$!!~W 6! H$!W $IM$!)$I$! j$I AI$I"! I$$ ! I_E) I"I%) ڪ ME)b*  E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)!* I$I$E)$!* @E)!ڪ E) ' I$I$E)$! * I$I$E)$! I$I$E)$!* I$I$1 I$I$1 I$I$E)! I$I$E)!* I$I$E)!( I$I$E)! E)@ E) I$I$E)!B PhE)! I$I$E)! I$I$1 I$I$E)$! I$I$E)! (E)p I$I$E)! I$I$E)! I$I$E)! I$I$E)!w E)!_ e)! Kme)e)!|oe)!^ $E)!*V I$I$E)!  E)A` E) I$I$E)$!* I$I$E)$! I$I$E)!* @%) I$I$E)!* I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)$! I$I$1 I$I$1 E) yE) Xj h%)-^ xE)/ I$I$E)!  X>E)x^W@&I$I$I/{ ɐ !%JX! @@I  믯'I "!ʪ9 ,X!J !(@4!`b*P0!`@l6!&L$I$I/ Ȗm m*@!!j DI$I! %K !!I$I$!I!I!I$I$E(C@!H@@˖!&Gn$@$I$I$I 1m!b@ L I! & H$IE)a I$AE) @L!  L!!* !Hd!d @@ d!d  $I!! H!@E) $IE) @$E) $ ,! $j!^U`$I$ ^UUUI$ A!/ IUI$I!+ ! &IE) $AI2E) K7l!, ZM$I! !E) R%P (! @ ! I$I$e) H&d!d 2IHd!d `"! M@!:  $!! @G! 2$!!W 5!~ %I$! $&I$!^UU`$I!^UUI$IR$! b I$!U+ II! $I!  $! E)!կ I$I$E)! I$I$E)! I$I$1 I$I$E)! I$I$1 I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)$!( I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$E)! hE)A I$I$E)$! I$I$E)! I$I$E)!*  E)& I$I$E)! H E) E) + I$I$E)! I$I$E)! I$I$E)! I$I$E)$! E) I$I$E)! I$I$E)! I$I$E)!* E)!e)! C2mKE)a@@۵mQE)ܰme)!W` m۶v6E)!p E)! I$I$E)!*+  E)a'( I$I$E)$! * I$I$E)$! I$I$E)!* E)@  E)  I$I$1 I$I$1 I$I$E)$!** I$I$E)!*( I$I$E)! I$I$1 I$I$1 I$I$E)$!* H E) %' E)Wz PE) _ E) II$e)E)% I$I$)( E)& II$e)E)i5U_ ۖl۶ E)a I$I$1 I$I$)( AI$e)E)5Uz @$E)A I$I$)( ۶mE) $ E)j @!B h"E)b  E) * I$I$E)! I$I$1 I$I$1 I$I$E)! ( I$I$E)! I$I$E)!(8 I$I$E)!( I$I$E)! ( I$I$1 I$e)E)5 I$@ e)!~x 6mE)! w I$n†1!W~ 6`e)!  hB6$e)E) I$I$e)$! I$H$e)E)^z6agE)( I$e)E) * @  e)E)p@ `I$e)E) % ٲmۆ-e)E) ۲-ضmE)A@-۶mE) B>o3e)!za@ mi %) `gE)- ɖ,e)  ۶m$E)P @(E)a E) I$I$e)$! ( I$I$E)! I$I$)( I$I$E)! *( @`E)  @!A $$! H&!`z lI$! $I$!WUUN$I I$I .$ I!U /I!U* &$! I$!!U I$I$E)! I$I$E)! I$I$1 I$I$E)$! I$I$E)$! I$I$1 I$I$E)! I$I$E)! I$I$E)$! I$I$E)!* I$I$E)$!* I$I$E)! I$I$E)$! I$I$E)!* I$I$E)! I$I$E)! I$I$E)! I$I$E)!  E)a I$I$E)$! I$I$E)! I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)!p I$I$E)$! I$I$E)$!* I$I$E)!* I$I$E)! I$I$E)! I$I$E)!* I$I$E)!* I$I$E)!~* E)!~ vbE)!5W `&E)!W%W E)!Up ! E)!/Z E)!+ I$I$E)! I$I$E)$! I$I$E)$!** I$I$E)! I$I$E)! I$I$E)$!* I$I$E)!  E)a I$I$E)$! I$I$E)! I$I$E)! I$I$1 I$I$E)!** I$I$E)!* b E)耀O!Ah$M$I$I/ Hb`@! JT ַ)P@I &h"@!0 I$I$E(Clؖ 0 H! 8!P>m>!AhA$I$bI$IA I$o!* !!mk@DH $ $(!eɐa!m۶m  ,X ! `!@ @! ! jٲ A (H$I$I&** Ip!? m[1`! " $I!k* I !   $C&!  $I!*  #i!A` 0I4 ! $! `$I!* $B!*  TI!  ڴ! hI!P$I$! $IU !UU+  U I!+ *I! @  pP"u!! L&! B(Zd!!`  ٖ I!+ .5! `  ! @(!@  @ !  d!d !d!d d!d $d!d  "!A@ 0@>!a h&M!$ɟ$!zUUUI!bh$I$I$ ɓ!b$I$༫I$I&.< d!!I$I$! I$I !* $H!* I$ ! $E) $A$I&! $I$! I$A$! @ $E)a $I E)  HҢ'!zN$1$$(I'I!Wխ  I!- $I$!* I H!* `$$!* !$I!* I!!  RA$ ! I$ E) $I!` &I! "$I!j $H! Id!d $HD!!(4 @5!~ ${!W$g$! ڪI^6I!UU }!A 4 I7I!  I$! $! ʨ h!!<( I$I$$!!  $! $! $! ,$!` $! I$I$e) I$I$E)! I$I$E)! I$I$1 I$I$E)$! I$I$1 I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$E)! I$I$E)! I$I$E)!  %) @ E)  (E)` I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$E)!  E)` E)! I$I$E)!(* I$I$1 I$I$1 E)A(4 E)  E)@@ E) I$I$E)!  E).& I$I$E)! I$I$E)! `E)A@  E) I$I$E)!* I$I$E)!* @E)!_  HE)! BL E)!x-U~ IE) H E) z E)! I$I$E)! @DE)A( I$I$E)!"* DE)a `r%)  I$I$E)! E)A& I$I$1 I$I$E)! I$I$E)$! I$I$E)$! I$I$1 I$I$E)$! P@E) )DP@%)| TE) E)  I$I$)( I$I$)( I$I$E)$!( I$ $e)E) I$I$1 HmmE)A( I$e)E)Wj I$A$e)E) I$I$)( I$I$E)! E)!_~ `E)/  E)B E) * I$I$E)! I$I$1 I$I$E)!( I$I$E)! * I$I$)( E)( I$I$E)! pE)A I$e)E) 5] K%ےae)!J ɑ$I$1!%^e M%ْ 1!X` I$I$E)! /c0e)b  I$I%e)E) I$I$)( A$I$e)$! * I$e)E) * #tضmE)<4 AI$e)E) 5 I$ò$E)! I$I$E)! !I$e) *$;≆E)  MP $! PfM{E) * X-ɐde)$! I$I$E)! * I$I$)( I$I$E)! E)! ( I$I$)( I$I$E)! E)!J IpE)A !d!d @`$!P !  $! $!! @!0 I$I$$!!+ X$!!( I$I$$!! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)$! I$I$1 I$I$E)!** I$I$E)! I$I$E)! I$I$E)! * I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)! PE)( I$I$E)$! E) I$I$E)! I$I$E)!* I$I$E)$! I$I$E)! I$I$E)$! I$I$E)!* P%)!  %)A@ E) I$I$E)! I$I$E)! $E)! E)a$, I$I$1 I$I$1 I$I$1 I$I$E)!8 I$I$E)! I$I$E)! I$I$E)! I$I$E)!  E)@ E) E)!(6 I$I$E)! LE)!Uz @E)!_ I &$!* HE)!+W E) / I$I$E)! I$I$E)$! E) I$I$E)! I$I$E)! I$I$E)$!* I$I$1 I$I$E)$!  4@%)`H$I$bI$I$bI$ J9 @ ) %jچ jZ 0 H8 ($ h $!bI  JX  H!II!@!z I$$H$I$ਪID.  _W 5 A`$I\ `&+ɛ !H$I$%)A(" @QV! @!$J zz 8 P$!^WaK$H$I$ପI A*+,Q!8!I$I$!I$I$!I$I$!  I$! * PF!  H$! $I*!!J $IC!!   H! *  $5!* z *&I!^m,H$`I P!U !H$I! I$H$!* xF I!!8 $$I!* IA$!* A$ E)a  E)  UH! $I!* II!* I$E) $I&$E) 06! $IR!zU' (!WzIf`pX% S$* !bn IJ! -  $$!ap !a, !A I$I$$!!  I$I$$!!( P! I$I$$!! I$I$$!! I$I$$!! I$I$e) I$I$e) $! I$I$$!! $!! @$!!^ @$!! @<$!A` $!!. H$!! $$!!^ I$I$E)! I$I$E)! I$I$E)! I$I$E)$! E)!* I$I$E)! I$I$E)!"** I$I$E)! I$I$E)! ۶mۆeE) I$I$E)! I$I$E)! PE)8 I$I$E)!* I$I$E)$! I$I$E)! I$I$E)! @@E)b@ E) %)! I$I$E)!* I$I$E)!(  E) ,E) I$I$E)! I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!* I$I$E)!*  E)b& E)!z I$I$E)!* E)!W $E)!Wz @ 0$!* %)!U^ fE) I$I$E)! I$I$E)!  E)@ E) I$I$E)! I$I$E)! I$I$1 I$I$1 I$I$E)$!* Ȁ E)46 I$I$E)$! * I$I$1 I$I$E)$! X`E)^ jH$!b8>l  PE) I$I$E)! I$I$)( D@E)b I$I$1 I$I$)( ۶%۶E)b I$I$e)E)Tz H$I$e)E) I$I$e)E) I$I$)( I$I$E)! - $!A@ E&!! E) * HE)A(46 I$I$1 I$I$E)! ȁ E) 4 I$I$)( I$I$1 I$I$E)! ( I$I$E)! I$I$e)E)%UU [%ٖ e)!BJf1/ M&y1! $E$ 6E) ` نe)! I$I$E)! n!mE) A$I$e)E)V I$I$e)E) I$I$1 KmmE) I$ $e)$! I$I$E)!e[-צE)ۺ mE) mH%$!*  E)+IDRE) I$I$E)$! * I$I$1 9E) I$I$E)! ( I$I$)( I$I$E)! H$I$E)$!  I$I$E)!p I$I$$!! ! I$I$$!! I$I$$!!+ I$I$e) I$I$e) I$I$e) $! $$!!Z I$I$$!! $!!* $!!o-  ȁ!A,$ $!!k $!!  E)! I$I$E)! I$I$1 I$I$E)!. E)!z E)! I$I$E)!( I$I$1 I$I$E)!* I$I$E)! ۶m E) I$I$E) ( I$I$E)! E) e I$ 1E)]e I$I`1%)վJ I$Idž1!0. I'I>f1$! I$I$E)! E) h I$I$E)! I$I$E)!* I$I$E)! @E)!X I$I$E)$!  E) @ E)! I$I$E)! @E)! I$I$1 E) I$I$1 I$I$1 E)! I$I$E)!* I$I$E)! I$Ie)E)UU~ E)A& I$I$E)! E)!z*  0E)!W Rk %) E)!U_U !E)!+U I$I$E)!+ I$I$E)$!* I$I$E)$!* %)  I$I$E)!* @=E)`ZȟI$hH$I$x^WI$i[b/ ODS !:*I! ۀm *6 3$@NI ,,` bٶm۰m $H( 0d, % @ @&!z^b&H$I$bII4(I Uյ @!زq 9ra  @$I$!b$@& z^r Y!*DI(H !(&˰ 0, B% !pਪh;H$(I$I$*IxI. 1 !! A@(!!!I$I$!I$I$! A$I$!I$I$!I$I$! $I$H2! jD!x^LE$!W{WXdqd(0W!}I$I$! I$I$!*D!a $$I!+ $IE)a I E) @")!A@ $I@!A I H$!* H$IE)a d!H&!* H=!^ $JK!Wh&!^^!%U!^ի MJ$!W* "AH!k  ! I$I$$!!*  d$! I$I$$!!*  H!  A$!!@  ! I$I$e) I$I$e) $$!` $!!] $! $!!׽ $! 4! H! $!! + $!!ܿ E)!U HE)!U H E)!U^ 9E)*~ XE) $E)!*U @ E)ap I$I$E)! + I$I$E)! I$I$E)!  I$IE)! I$e)!* I$$$e)$!uܶ@re) . I%ۆ1E)U*J I?$1E)J I$ 1!J I$$}1E)Հe I$O1%)Ue I$I-1!jJ I$I1! I$I$E)!* I$I$E)!* E) '( I$I$E)! I$I$E)! I$I$E)! E) I$I$E)! E)&( I$I$E)! I$I$E)!@* I$I$E)! DE)а I$I$)( I$I$1 I$I$E)! E)! I$I$E)! I$I$E)!(* $E)b I$I$E)$! I$I$E)! HE)!Uz @E)!W  !$$! @I@&E)! U E)!+ I$I$E)! I$I$E)$!  E)A@ E) I$I$E)! I$I$1 I$I$E)$! *( HE)( I$I$E)!* E)!* @E)@ JE)n H%)a I$I$E)!. I$I$E)! I$I$)( I$I$)( I$I$1 @ E) I$I$1 I$ $E)! ömmE)  I$I$)( I$I$)( I$I$E)! H E)!_~ 0@ $!( *  ME)6 I$I$E)! / I$I$E)! I$I$E)!  I$I$E)! * I$I$E)  I$I$1 I$I$E)!* I$I$E)$! $B$IE)6i E)A. I$I$1!5zJr%9\1!p f1!\ @`e)! I$K%e)E)ꨠ I$I$)( möaE)! I$I$1 I$I$)( `q E) I$I$)( PE) 8$  e)$! *$C$ E)` j%! *x ۰ nE) ) H%ɒlE)! I$I$E)! . I$I$1 I$I$E)! I$I$E)! I$I$)( -E)A I$I$E)! I$I$E)! I$I$e) I$I$e) !$ $!!w $! $! !A$!* $%!x $! I$I$$!! $!! E)!U E)!U $E)!U*W  'E)*W IE) $E) U  %)!&( I$I$E)! I$I$E)!* I$IE)! I$Iae)! I$-e)$!  I$e)!I۶mf1. I$`ۆ1E) J I'$1E)~. I$Ж1! H$I$E)!@rdC&E)Ap $I$f1$!e $I$1E)]]e I$1!*e }I$1!e Iɛ$1! e I$$1!J I$s1$!נJ I$I1! I$I$E)!+ I$I$E)! m۶m"E)!h@ E)! I$I$E)$! HE)b(( I$I$E)! I$I$E)! I$I$E)! @E)( I$I$E)! I$I$E)! I$I$E)!  E) I$I$E)! I$I$E)!  E)a@ E) `0E)!WZ $@E)!UU_ eӆm!  $E) /U  E)A.& I$I$E)! (E)`ȏI$ H$I$I$I$5- 1!BH  - H*X% *0m  $!b$M( i-ТJ,۶a P'!~WHi&aH$I$,ʲI$ ( &}$ WUu(! H( 6kd>ɂX ۶!2@@ =  IE۴*h6m۶0,B&M0 z^u$M$a( I$I(  $KB I!! A( !b@`**!Ac $HJ!<4 !I$I$!@$!`` DH$I!& Ah@$(!a+ %O !^յIq!@!I$I$!!  !j!I$I$! A$! @$I !* I2L$!* H$I!* I!&!* H(=!^ $IA!^ MzJP!׭x $$ !rW* I5I@!  AIE) d!d d!d $d!d $ $!!^ XU! I$I$$!! *( I$I$$!! I$I$$!! * 0$!  T! $$!!_ @B$! H! H $!  I !!  $!I!@ 6!! $! HO$! >Id$!a $I" ! $!* I!U IFP$!( $! @$!! ^ 0$!! _ E)! UU I$I$E)!} E)!*WU HE)!U_ IE)!U HE)! MѴm۶E) & @$I$E)! I$I$E)!*  HE)b,4  I$E)! I$I$E)!*`qf1A J 6$I$1$!e $I$1%). ]I$1$!e I2I$1!J I?&$1!e I$1!*e I$I1! I$I&f1$! I$I$E)! I$I$E)! HE)b<4 I$I$E)$! @E) @ E)! I$I$E)! I$I$E)! E)@ E) I$I$E)!. I$I$E)! @E) I$I$E)!* I$I$E)! I$I$E)!*  %)  E)!^ ֵE) k5 !(⊠ m۶E) $@"AE)Z E)!( I$I$E)$!+ I$I$E)!* E)! h @E)! + I$I$1 I$I$E)$! H%) I$I$E)$! I$I$1 @E) I$I$E)! \@%) E) I$I$E)!(( I$I$)( I$I$1 I$I$1 I$I$)( H$I$e)E)h I$I$)( I$A$e)E) I$I$)( I$I$E)! @E)!_~ $M$!  H$! , *E)!& I$I$1 I$I$1 I$I$E)!* I$I$E)! I$I$1 I$I$E)!*(` E)A 4& I$I$e)E)5UUU X-ٖle)!  I$I$e)!? H$ 1!x% I$I$e)! 7  e)! I$I$e)E) XmmE)aЀ I I$e)E)% I H$e)E) 6,{tE)!$ H$ $E)$! I$I$E)$!( I$I$E)!( @, e)$! ۆmE)x蠀 X!% ۰mܖmE) ) H$A e)! XE)a8 I$I$1 I$I$E)!( I$I$E)! I$I$1 I$I$E)! ( I$I$E)! HE)!_U $!!u  !H t I$!  I@(! ` m0! P%@'I!AР '$!_ $!  iI$! $IM!) $+!!߯ O$!  IW! I ! H!+ E)! E)!U E)! $E)!W E)! U IE)!UU E)! U E)!@H $I$E)! I$I$E)! E) @@ E)! PD !  @2E)!U E)!U I$I$E)! I$I$E)! E)) I$I$E)!* I$I$E)! I$I$E)!&ݶe)aڪJ I$1!Jo1!J I$7$1!. I$|r1$! I$I'f1$! I$I$E)! I$I$E)$! ȀE)A&, I$I$E)$!ꠠ* I$I$E)!+  E)* E)! + I$I$)( I$I$1 I$I$E)! I$I$E)!* E)@ E)! ,$ I$I$1  @(E)@` ܘm E)a i E) R"II!Z  5E) z 'M$E)XVWUI$I$bI$I /xɐ5,3@pK$A   * *:4kd> I$I$$!Búht/ ض  *IdI`!ң' jZVH$H$ $(N 88NDA4I  I$I* ĘIx mn IDD!& hd>` mAɘlظ! !0 M6:E$I$(I$I@(y_!u_ߵ@$A!!P bؠ@ !I$I$E)a& A H!꾮 'I$I$! !4z!zWO@!խZVx! !V!@!,!e0! !!@@! $I& ! !I$I$! $ )!* I>!_ 9N5A!~ UAx!x Ü$ !Xׯ* $I!* H! Hd!d 0d!d `d!d  E) d!d I$I$e) I$I$$!! &$!!**W  $!!U $!!xխ I$d!d d!d $$!!_ )!` $! HO$! $I! k$+ ! I! IR ! mI! $! I$!!U  0l! $$!!k]  $!!}h $$!  $$!! 0$!!_ @"%!A I$I$$!! I$!!U I$I$$!! H$!!W I$!!U I$!!կ $!!j   !   @!A  $I! @ H%) E)!U E)!] I$I$E)! E)( I$I$E)! I$I$E)! I$I$E)!* -[mE)`(J&f1A)J?1jJ1bJ I$1$!W+. I$I81!ߠ I$I$E)!+ I$I$E)! @,E)ap I$I$E)! I$I$E)! @ E) E)!4 I$I$)( I$I$1 I$I$1 I$I$E)! I$I$E)!* 4@E)bP I$I$1 I$I$E)! I$!  NL:$ E) mӶm $!ꪪ  $IE) E) I$I$E)$! I$I$E)$! I$I$E)! I$I$E)!* I$I$E)$! I$I$1 I$I$E)$! 9%)A I$I$E)$!** I$I$1 I$I$E)$!  E)A I$I$E)!. I$I$E)! I$I$)( I$I$1 I$I$1 E)a I$I$1 I$I$)( I$ $E)! I$I$)( I$I$)( E)! $!  hQl!( (E)b  I$I$E)! I$I$1 I$I$E)!* I$I$E)! I$I$1 I$I$E)! I$I$E)! I$I$e)E)UUU @ e)!  I$I$e)!?e K'91!|%lmE)  ( @ e)$! I$I$e)E) I$I$)( I$I$)( ۰۲mE)A@ XemE)! H%Ide)E)% 6lۘlE)A ۰mٖmE)a @$`e)$! ,E)xx ! I$!/ 6`e)!++- I$@$E)! $E)` I$I$E)!  I$I$E)!*( I$I$)( I$I$1 I$I$E)! ( I$I$E)!p $!!ׯ %!^ R$!  I$! $IK!* I$$!* It! I*@! @ I!!J ! $$! * $! @$!!^  $!  $!!_z $!! $!! W !A $!!~ !$!!տ $!!~ H$!!W I$!!U $!! @H$!h , !A` $$!!W I$I$$!! $!!~ $!!Y,* I$! $$!! $! LE)!  E)! 0e)!U @ E)!} E)! I$I$E)! I$I$E)! I$I$E)!/J 1$I$1$!. MI$f1!~ I$$1!^ I$Ib41!^ I$I$E)!+ I$I$E)$! I$I$E)$! I$I$E)$! * I$I$E)! I$I$E)!+ I$I$E)! I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)!* I$I$1 I$I$1 HE) R%H$!ahI$I$pI$I$ *BD63&`XM)P$!!Hn4A&$@@'!P6`D I* ,Xd `0`m  $R& jz^NX"$ND$ N 98 s \% )Z4hҤ(I$@ R'p 6`   Ȑɖm۶I$H$I$ 8I$i& M$I$( I$I$(:!M`  I   ! !* 'I$I$E)a$!` A! !ꪪD@ =!^ p !*IuA!h. iAP!) y$ !* MJF!A (( $IE) " !!@ PeP"I!A 2 Ad!d !d!d Ͱ!( I$I$d!d 0d!d `d!d $I!@ $I!  !!  d!d &!^ I{$! H$I!b O$IV !j* ID!A+ I&H!  !  d!d d!d I$d!d d!d `2! 0@! @0$!!] $$!!z] @!@ 0E!  $!!  I$I$$!!** I$I$$!! I$I$$!!(* I$I$$!!( I$I$$!! $! $!8 I$I$e) I$I$e) I$I$e) I$I$$!! I$I$$!! I$I$$!!  $!! I$! H$$!!WW &$! %)!UW DE)!] E)!U E)! E)! I$I$E)!ʪ* I$I$E)! I$I$E)!*. $I$f1$!+. I$1$!+W I&I$1!W+W I$sf1$!x  I$I$e)! I$I$E)!* I$I$E)$!* I$I$E)$!耂 I$I$E)$!* I$I$E)!* I$I$E)!. I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$1 I$I$1  E)b`` 6lE) ̅ a.$ IE) E) I$I$E)! I$I$E)$! * I$I$E)!* I$I$E)! I$I$E)$! I$I$1 I$I$E)!*  E)!*j PE)A( I$I$E)!( I$I$E)!.  6l;E)! o E) I$I$)( I$I$)( I$I$E)! I$I$)( (E)` @@E)` I$I$E)! I$I$)( I$I$)( E)!~   $! (  4A!`(  E)!  E)  I$I$E)$!(  $E) @ E)A I$I$1 PE)A8 I$I$E)! * I$I$e)E)__ @$e)!  I$I$e)!?xe Hr$11!X`  a۱mE)! -|ۿe)  ۶mۂ9E)` I$I$)( H$Ie)E)(5 I$I$E) I$Y2$e)E)VR` I$A E)! I$I$)( I$I$e)$! * K%Òae)$! `9 `E)^z m$! * -E)C ۶mlE)( E)@ E)a I$I$E)! ( I$I$)( I$I$E)! E)  P%@@E)X I$$! IJ!+ $I! dd!d @&$d!d @d!d I d!d &d!d UP$! L$!! $!!ժ $!!* PL! $! $!!- I$I$$!!  I$I$$!! I$I$$!! I$I$$!!  $!@ $! $!  I$I$e) I$I$e) I$I$$!! I$I$$!!" $!! I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!! P $!A I$I$$!!( I$I$$!! E)j*  H%) E)! I$I$E)!*__ @E)J   E)  I$I$E)! @$E)ZP E)!/z I$f1!W f1!x+ I$M"e)!x E)!- I$I$E)! I$I$E)$!* I$I$E)! I$I$E)!. I$I$E)!* I$I$E)!8 I$I$1 I$I$E)! I$I$E)!* I$I$E)!*  @$E)`XVI$I$I$I$?/I$I ƍ<:xp؉H I$!BI @$AI۰m *H98@(b;aB(\%$A @R#&!rl'H $, Hĉ$ rĉ^5 6X۰m۶-*,%rX 1`$$A`` J% dI,b dB'v 'p\pH$AN"'JD l*Iɐ/نml H ,Xd!ɐ! !`%!D*"b@@ !I$I$E(C`G!z^ LK&!ץi\ `҄TI!\׽@ !꺯0ض %!d0!!I!!&.l!)= A`B!I$I$!  H$&!*^ JO !!* OAR! p ӤI$!X׽ DJH!A 8 [y۴m!*   E) $I@$! $ A!  *$!!p d!d Hd!d  $! $I!* I$0E) $!!J  IB!  '!^  %M$!ں $ID! I$I% !+ IJH! ,a$I! )J!!  d!d  )!@ I!  d!d ˵! $, a$!!U $!! I$I$$!!  !a@ $! I$I$$!!* @<$!Ap P$!8 I$I$$!! $$!! ^ I$I$$!! $$!!_ $!!u $!! ! I$I$$!! $!!k $$!`  5$!@~ $! $!! $!! I$I$$!! / I$I$$!! ( I$I$$!!* I$I$$!!* x!  I$I$$!! I$I$$!! I$I$$!! J%) E)! I$I$E)! E)!* %) $ I$I$E)$!* E)!*nj E)*  /e)! O?e)!\-~ I$@e)!+ m۶ ;e)!x E)!*- I$I$E)$! I$I$E)$!* I$I$E)! I$I$E)!* I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!* I$I$1 I$I$1 I$I$E)! k,E) Ĵ$!  d%)a E)! I$I$E)$! I$I$E)$! I$I$E)!* I$I$E)$!" +  E)A   E)@ E) I$I$E)$!* I$I$1 E)!x EB$AE)S ضŏ1 E)A I$I$)( I$I$1 I$I$E)! I$I$)( I$I$)( I$I$E)!*( I$I$)( E) I$I$E)!  0E)!U_~ LӸ)!  E) * 4E)Ann PE)  I$I$E)! I$I$E)! I$I$1 I$I$E)! I$I$E)$! * I$I$E)$! ** H$I E)! I$I$f1!5W^ex'1!Ђ c ۶%E) " hB6$e)! I$I$)( I$I$)( H $e)E) E) I$H$e)E)5\x I$I$E)! I$I$E)! I$e)$! * I$@$e)! O `%)! V) E)+ AۢmE)! I$I$E)! . I$I$1 I$I$E)! E)! I$I$1 I$I$E)!( @E)!@  IE) I d!d Pd!  dBd!d ")!b@ !a  d!d I$I$$!!/ I$I$$!! Gh!A8 I$I$$!! I$I$$!! J $!$( )$! I$I$$!! $!! I$I$$!! $$!!U $$!!] @ ! @ ! I$I$$!! $$!!^  @!!4 X$! I$I$$!! `$!! P!A  $! $$!!Հ  ! 4R@!` @!$!+ $!!/ I$I$$!! I$I$$!!  $! E) I$I$$!! I$I$E)! I$I$E)!z  E) I$I$E)! I$I$E)! I$I$1 ,E)a` E)!5z @I$e)! _ 6e)!x mv e)! 4 E)!` I$I$E)!"+ I$I$E)!ꪢ I$I$E)!? I$I$E)! @@E) E) @$E)`XH$I$bzI$I$w}7I$I 1`( `pDI($IH$$!!$$!BHP!I$I$$!B ɒ-  $!!M&I*89pIIS4 I (. H$I6. IĉKU5lX$H$!B$H$!! H$I B"  `يC%$H$I@$!BJ$R M4E$IЙ&  M)$,\PR U3/ƀDAa%Kl!ɶm   X!ɖl  L $)!~ +M !^% xҜ!AO !յI ($!aI@!ꪪ(p!H  QP$ a P(!ض! 0!@ #$ A` l!y_5 MD!!* II!bV DID!! &  $I$! P"E !a HBd$! $ !   A@E) $! ` R @!p $H$!  $ I! $D!A4 H&LHE) $ $5!z {$!$I$* I$I%! III!U $Ҷ !+ !E) IH&E) d$! $IH!* $d!d  e! $! I$I$d!d I$I$d!d I$I$e) e) 0$!  $!!_ D$!!~] $$!!_  @@!  $!! (!  !  I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!!/ ʡ@!$ ! @$!!-  @!@ !  2$!!_W H!8 $!  $! $!!^ I$I$$!! I$I$$!!+ I$I$e) E). I$I$e) I$I$E)! I$I$E)! hE) * I$I$E)!* I$I$E)! I$I$1 I$I$E)! E)  )$I$e)!z_e)!-_ m۰ce)!x E)!- E)A I$I$E)! I$I$E)! I$I$E)! @E)@ E)( I$I$E)! I$I$E)!*  (E)` I$I$E)$! I$I$E)$! * E)!z* M5%)A4  Tm! ) PE) I$I$E)! I$I$E)$!* I$I$E)! I$I$E)! I$I$E)$!* I$I$E)$!* I$I$E)!* I$I$E)$!* E) 8 I$I$E)$! I$f1! . I$G1! I$I$E)! E)@ I$I$E)! II$e)E)5WW @E)!8 I$I$)( E)  I$I e)E) I$I$1 I$I$E)! LE)!UWIM$ /  E) ) I$I$E)!  I$I$1 E) & I$I$E)!* I$I$1 I$I$E)!*p I$I$E)! I$I$e)E)5UUۦe۶aE) eI$I$1!5W^eN'1\‹ 6`e)!? H$ےae)E)p I$I$)(   E)  I$I$e)E) ۶mۆdE)b $I$e)E)^ ۶2lE)` I$I$E)! I$e)! .> c۰ E)!x m&P!!*`  PE) ) H$ E)! I$I$E)! .* I$I$1 @E) Р E)  I$I$1 I$I$E)! ( ,@E)Ap LE)!U^ R!8 I$I$$!! I$I$d!d I$I$e) I$I$e) $$! * @&$!!U HH$!!W  $!! $!!U  !,$ `$!!W %! ` !b I$I$$!!/ I$I$$!!/ I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!! $!a@ PH$!A  $!!{{ I$$! Z%!!0 v!+  "I!@@   @!  $!!*޲ I$I$$!! `! `$!!V  $!!  I$!b $!! @$!!+ $!! I$I$e) I$I$E)! I$I$E)!ꪪ %)  E)* E) E)! I$I$E)!* I$I$E)! I$I$e)!-W @ $E)!XZ E) E)!% I$I$E)$! X %)  I$I$E)!ʪ  E)` h$I$%)}I$I$w}I$I$'   5 )B"'N @Am۶bE[-Z $!!hڴI$!!@A$!B$$!BMiQ$!!H@$!BFlÌ1 `pI$t℉ (@$I$(. m$I!A6 @$I$I$!!$H$!!)P$!BI$I$$!B$H$!!)P$!BI$I$$!B @$$!!I"A$8IA$!Mi&!Ath& HI$!B I,) ,ٱK 6 $ $Kl!ɶ!۶ ېaÆm :!A.=!z$Is ! j "%əS!PA T![`۲l ؂! @{,QA *$H$I!$  j 7 a`  H!T!@ !&!~_ d! * 5K'!Azz J$A!խ !A$I!+ $I$ !* I@$! $I!& I !*  $E)  ! B#H$I!` "1.! ` H$I! $$ A2E) J A$!4 &I$!I$I !+ I\@! $IP.U! $I!* I$!* B+%/I!AP d$ A! IH! @G! $IR%!! Id!d PLH! @&d!d dd!d 2!d!d  $!!WU~ L@d!d @$!!_ I$!! կ $d!d @d!d $! d$! i$I @ *,"I!!@ H! MM $!  ,RE)zz жm%)  E)!UU I$I$E)!UU $E)!WUU E)!UU  ikE) 0I$! @I&$! ")!@ N!! $$! HJ !<, E)! $!! P!8 $!!z* ! $!!Up* I4!b  ! "$!!w $!!= I$I$e) I$I$E)! I$I$1 E) I$I$E)! %) 6  E)! I$I$E)! I$I$E)!* @E)!z @E)!-V $E)!X `0E)!+X E)! - @E)A@  E) E)!4 E)@ E)! I$I$1 I$I$E)!* I$I$E)! I$I$E)! I$I$E)$! E)z -@%)Uwz  e%)+U E) I$I$E)! I$I$E)$!* I$I$E)! I$I$E)!. I$I$1 I$I$E)$! I$I$E)!+ I$I$E)$! I$I$E)$!  I$I$e)!/J?1 -vlǶ ۆ1 I$I$E)!( I$I$1 I$I$E)! ( I$I$E)! E) I$I$1 I$I$)( I$I$)( I$I$E)! x iE) -i۴! * E)! / I$I$E)! I$I$1 I$I$E)! I$I$E)! * I$I$E)! I$I$E)$!* E) I$I$e)E)%UU I$E)!`e II$1!%W_Jf1 6`e)! / I$C-e)E) ó1۶mE)bp I$I$E)! ( cm6lE) I$I$1 ꪪ I$I$)( 4@E)p PE)  A-ɐde)! . dC$E) !/? mnE)! -#d6hE)($ I$I$E)$! I$I$1 E) ` I$I$E)! I$I$1  E)  I$I$E)!  I!  $d!d LHd!d @&$d!d  C$!!Uբ_ !@$!!U  Hd!d $$!!_} @0d!d @0! $$!  L$!( J6 $I  ЀDz%!!( m$! IE)* DJE) ME) E)!UU  E)!UU E)!UUU `E)!UU @&Mm$!к I$! [#E) lE) I$E) ~UU &E) M@mE) д0E)* l E) iE) ۶! n! JH ! T I$I$E)! I$I$$!! A$!!ݰ Ƞ$!($ E)! I$I$E)! I$I$1 E)@ %)A XE)( I$I$E)! I$I$E)! I$I$E)! I$I$E)! E)!z  E)!%W $E)!^ E)!% I$I$E)! $H$%)`I$I$zI$I$ I)$!!"%J$ $!AIdI,?@M$!!M$MҶ mZ4$!!H$A$@E۶I$ 8`(* ``I$y$I .A$I$ .q$I/d@ mۢm$!! 4h$!! Ph۶$!!I$I$$!B$H$!!)Ph۶$!!H$!B h$I A I A$a I4Av $II $!Bm[ 4@I( $!b #'K $ILb( lض  P!~V O.%!U%IZ P uJ!Xֵ$ħ!-P4@0`@h $I" @ ! lQ!j@@$I!)ذ-K!I( !&.&O$!A IAP!5p XI!\ս !I$I$! I$ $! A$I$! II$!** LI$I! & $! $I$! H$I ! II$!* $ $)!* @ғ$!xU$I$! I$UA! II I!խ $I ! IA$!*"  H$! $I! I$! !@ E) I$IE) Id!d H I! @H!b  $ ! I&!  $E) $Id!d I2! $ $! I$! mH:! дq!  ! L@! I$! ! MD$!!&. x&I%)a( imE) &LE)!UU $IE) UU IE)!UUU J$!A4, *$!A I$I$E)!UW 2LE)!UUW $aE)!UU $IE) UU @LE)!UW M&@E) I$E)!UU -E) [lE)_ m&E) E) vM `E)* ܶ-%) f! @ !`  $! I$I$$!! H$!!W $$!` HE)! I$I$E)! I$I$E)! I$I$E)$!* H%) $ E)` E)! I$I$E)! I$I$E)! I$I$E)!* E)!Z E)!Z  E)!`-^  E)!- I$I$E)!/ I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)!<  E)  I$I$E)! * I$I$E)! * I$I$E)$!*  E)!B E)^ 6j!bj @Ig%) I$I$E)!- I$I$E)$!* I$I$E)!  E)B E)A  E)!jh pE) * I$I$E)! I$I$E)$! I$I$E)!. e$I$f1$!5. I$N&1!p I$I$E)$!  I$I$E)! E)A I$I$E)! I$I$)( I$I$E)!( I$I$E)! I$I$1  PE)! h E) 0*! zo  HE)! + I$I$E)! I$I$1 E) I$I$E)$! * I$I$1 PE)A I$I$E)$!(  I$I$e)E)%UU ؆m۶!E)@J??f1 *J?1 `e)! - I$H%e)E)` I$I$)( I$I$E)!  I$I$)( ȀE)A$, A$I$e)$! * I$I$)( I$I$E)!( KmE)4 @E)z  m&!!j  mE) 0E)(( I$I$E)$!  I$I$1 E)& I$I$1 I$I$E)! I$I$E)$! HE)!Wzj Id!d $ d!d  I$! $d$! I۶5! $I4!e!! I۰! m6!* ")!@ I%)A I%)! IHE)!UU $IE) UU $IE) UU  ! E)j )!A E)" E)!UU @&IE)!*UU $LE) UU  E)!UUj @$!@  $!A  I$I$E)!  E) j %) [0E)_ m$! t$! 0 mE)+ E) m- E) r%)* 01$! $! $!!*5 I$I$%)! @@($!` PE) I$I$E)! I$I$E)! I$I$1 E) I$I$E)!ꪪ I$I$E)! I$I$E)! I$I$E)!ꪪ hE)A  %) @ E)  (B$!GpI$I$I$I$/II$ 0 4@$ II$ $!!E&M!A$!!(m6!@hIAI$I$$!!ɐ ,//@$I$I$O!3$H$b`hI$I   $!!Hi۶$!! $@$`IAI $!!$H$!!)Zh&mm&@-6i$!Iv I"D$!IAbCI$I** ۰ 5h (  @$!bEQ 4pĉ!$I$!BJ%Q$AB h!z^ Oj‚&!5r\HD V@m6H3,,kt.Maöm.H $!b I+6 ~rD1I m۶e )=!b!W mY"$!{ S%ϛw!aҠIu !I$I$!I$I$!.!!jo! I$IE)a! $Ad!*I$I$!$ ` $! j$!`$I$  I$@A!UU%  %I$I! A$I$! ! $HL! R"% $ 0H$I!+ $IE)a IE) $! 2I!* `$ ! I $!  2IH! * `$$!* `k&!  Ij$! $IR$!I!U$I |$$ WU I^Q$!U ɶm! I$$! $ $! IH!* I@!* I$I$$!!+ I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!!* %@! I$I$$!! 4$!`` $!! I$I$$!! I$I$$!!  HE)b I$I$E)! E)!^_ E) i E) &E) -$!  [ @E) ˴-E) 1 h%) &%)*  t`%) f$! n$! I$I$$!! I$I$$!!  $!a I$I$E)! I$I$E)! I$I$E)!  %)@ E)! I$I$E)!ꪪ I$I$E)! I$I$E)!  %)A@ PE)! @%)! P d$E)a* I$I$E)!/ I$I$E)!- I$I$E)$!* I$I$E)$! HE)( I$I$E)!  I$I$1 I$I$E)$! I$I$E)! I$I$E)$! I$I$E)$! * E)!z &_A!aZ  %)+W E) I$I$E)! E) @%) I$I$E)$! E) @%) I$I$E)! I$I$E)$!* I$I$E)!b. !I$1!/JI$H>1b E) I$I$1 I$I$E)!( I$I$E)! I$I$)( I$I$E)!*  E) E) I$I$E)! &IE)bII$!*  oE) * I$I$E)$!   @E) I$I$E)$! I$I$E)$! hE)(<( %)  E)@  ٖmE)   m6lE)e91/?x&1!WTX ْmɐ$e)! m۶hE) I$I$)( I I$e)E)ŵ I$I$)( I$I$E)!( I$I E)!B E) ۰m[E)A Р K$[!e)!ࠀ h%hE)^z P E)++ A E)! I$I$e)! I$I$1 E) @E) @ E) I$I$E)!* I$I$E)$! I%E)\@|$! >IW! $ ! O\!Uջ II$ ! ٶm! mӶ`! $A\! - IB!  d!d I$I$$!! I$I$$!! I$I$$!!* I$I$$!! I$I$$!! I$I$$!! I$I$$!! *! I$I$$!! H$!<4 I$I$$!!* I$I$$!! @! $!! $!!uw $!@ $! $! I$I$$!! I$I$$!! I$I$%)! E)! E) $E)R { E)  m$! 1%s$! sc@$!  %) E) I$I$E)! I$I$E)! I$I$E)!* h$! I$I$E)! E)! %)` I$I$E)! I$I$E)! E)` ",E)jH$I$!w}I$I$>I$I iIR$ $,H$I$(II$$-&@$ p A!A$!!E$M@bm&mS@S$M$!AI'I @( O!+ IJڣ!5^ x)UJ!T1 !O A&&$!@!I$I$E)aI$I$!  IH!A/,!b* ! !@`$ ``$I$ApI$I$AI"(T! j) I$I!$!H!* $IhG!8I$I$! %A !$ I$!*  $I$! H$ ! IL$! $ IE) m 6!  IҶ:! $I$!_>I$$!bj$IR !bI$ ߿( Ii$! i۶! j& ! 0 ! H!b $!!* $!!u h $@!b C$!!]  !@ !a &$!!W I$I$$!! H$!!W  !A@ !  I$!!վ I$I$$! !a $!! I$I$$!!  $!! ! $$!!U $@$!! _ $!! H$!!4 h$! I$I$$!! I$I$$!!* I$I$$!! I$I$$! ( HE)!U  lE) vE)* 4k @%)+  @$! <!   q5%)/~ nE) E)! I$I$E)!/ I$I$E)!ꂪ $! @ E) I$I$E)! I$I$1 E) I$I$E)! I$I$E)!  E)&8 @%)`  $E)!^* @ $E)!^y^ HE)!%W} I$I$E)!- I$I$E)$!* I$I$E)!* I$I$E)!* I$I$1 I$I$1 I$I$E)!* I$I$E)! I$I$1 I$I$E)! * DE)^z K=!%WX I%) &. I$I$E)!  E)!j %)  @E)! I$I$E)$! I$I$E)!ꪪ I$I$E)! I$I$E)$!* I$I$E)$!ꪨ.?O1! *f1  E)bB E)2 I$I$E)! I$I$E)! * I$I$)( I$I$E)! I$I$E)!* I$I$)(  E)  h5hE)^ZzI$I$A Zz ioE) E) I$I$E)$!* T@%) I$I$E)$! HE) I$I$E)!* E)A & $I$e)$! ** I$I$E)!^XJ I1!c%.f1om E)! I$I$e)E)~ I$I$E)! I$I$)( I$I$E)!  )E) نm۶mE) I$I$E)! I$E)! *( I$H$E)!x` 45{--!? E) + I$I E)! I$I$E)! E) I$I$E)!( I$I$E)! I$I$E)! HE)< @@E)` II!b* I$! $A!% %!a` $!!w $$!!^ $!! W  $!%(( L$!! U P!! I$I$$!! $!!*" I$I$$!! $!!/ P&@! ؠ H$!!W $!!  $!@ $! $!! $!!z $!!<  ! I$I$$!!  $!A@  $!B 0E) I$I$%)! I$I$$!! $!!j $!!-* H$!A(4 J$!!,$ @E)Z* I$I$E)!+ I$I$E)!  @TE)bа %E)^  j @E)_ u! NP#@! x  E) W E)! I$I$E)! @E)j P$!  I$I$E)! I$I$1 I$I$E)$! I$I$E)!ꪪj P$J$!AиI$I$kI$I$/ Ii[4$!!@$I$&I$I!AA$IA$ $$!!MS4m$!A  A$!AIM$!!4h$$!!I$I$I2A$ I I$I)" @&I$ `A A$I$I$A 0@$!!@$H!A  A$!A $!!m[4m$!AI$A$((ɑA& /I4I$IH$II$I$*$زm6說m۶m  $ , *B۸mc[%0` M!V m.=߶!_R\ɖaÈ$HY   8,p-[1`@ EҦi ۰5B"&}J!!` `ٶbmӤM(( &!_ g!_- *5J!xI&T" rlٰ! !@$$ Ap!I$I$E)a   ! $I! !x A (@@$!zW`$ɓ$ ^UUUI$q!UU A !`!I !l0! ! h*I$I!aI$I$!$! $I&IH! IA$!*  $I! $I!!  II$! &@j$!W$I UI$) կ IW$ ! iI$H! I! J $!(  AhD!( $$!!hU $ ! )! @  I!   d!d !$!! I$I$$!!((, I$I$$!!( I$I$$!!( I$I$$!! I$I$$!!  !@ ! I$I$$!! I$I$$!!  I$I$e) I$I$$!! $!A I$I$$!! I$I$$!!  I$I$$!! P!a I$I$$!! I$I$$!!( $!&  $!! I$I$$! I$I$$!! I$I$$!!  $!!'ר (@$!` @$$!ap %)!} E)a * I$I$E)!* E)!^Jj mi%)! xE)z  @$9!-z 4 !+ 0v5%)/~ E) I$I$E)! I$I$E)!z J $!!$( I$I$E)! I$I$E)! I$I$E)$! I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)!*  E)!^* H$ &$!,  &E)! U I$I$E)! I$I$E)$! I$I$E)! I$I$E)!* I$I$1 I$I$E)$!* I$I$E)!* \@E)b @E) E)x I$P@E)UWZ pɐE) U E)!袋 @E) J %) @E)a I$I$E)$! I$I$E)!ꪪ I$I$E)! I$I$E)$! * I$I$E)$!. ɑ$I$1!/_. I$A 1!Ws I$I$E)$!* I$I$1 I$I$E)!B E) I$I$)( I$I$E)! I$I$E)! * I$I$1 E)!p M&XHE)~IDI$$!b  VE) /? I$I$E)!• ,E)Ak  E) * ` E)! I$I$E)$!( E) (/ I$I$E)$! A$I$e)$! * 6hE)!W\x`Jv> 1!Pa5 mѶq۴E) /5 H$e)E)` I$I$)( I$I$1 I$I$)( I$I$)( I$I$1 I$I$)( I$I$E)!  E)! @E) LKe! /> mE)! - I$H$E)! I$I$E)! I$I$E)$!** I$I$E)! *( I$I$1 I$I$E)! I$I$E)! E)!]x 4@"I!` aB$! H!X ! ! $!!U** I$I$$!! I$I$$!!  I$I$$!! I$I$$!! I$I$$!!(. I$I$$!! $ $!!Р I$I$$!!( I$I$$!!* I$I$$!! I$I$e) $!@ $! I$I$$!! I$I$$!! I$I$$!!(  $!! L$!!U $ $! @&$! $!! } I$I$$!!ʀ+ I$I$$!! I$I$$!!( I$I$$!! I$I$$!! I$I$e) @E)!_ޯ I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!*  %)A@ }E)  j@%)_ =V!?X P +%) NE) I$I$E)!-  %)a@ E)* I$I$E)! (@&%)`pI$I$ b*I$I$7/+II&@$H$(I$I$I !AH$I$a I  A$!AI$I$!AI$I!A)P4@&I$I$(IH)r$ ?rH$I$,*II"( I$H$AI $!AH$  A$ $H$!AI$I  H$I!A I$I$I$!AI%!?H$I& Im$A $I$!!I $*HI*** (`%J$IA<H * 66, @ k۷ɐB!5  %J|!P,=@ېmöl*˰aò%.  $I  8pXd `A۶I$ X d ɟ A% O 5! 6.H$ !z!UW H  ذ%! 0! I$I$E)a S!A LR& b@ !黯 &!^'I'!zWUɟ$I +IH!խ$ !%!m 0!!I$I$E(CI$I$E)a!$ !  I$I! H$I$!*  @j!!( $$!_$I$I$I IP$ ! IH! $@! 4  E) &!m! @$I!  $! E) $! R$! ` $ !@ !! I$I$d!d I$I$$!!" I$I$$!! $$!!._ D!A  $!!*_W @D$!А  $!!U I ! @A! @2@d!d d!d $$d!d $d!d $d!d $d!d d!d d!d $I$!!UU $!!_ I$!!U @$!, $!!, $!! I$I$$!!.* I$I$$!!/ I$I$$!! I$I$$!! I$I$$!  E)!z E)! I$I$E)!* I$I$E)! I$I$E)! I$I$E)! E)!z* L %)! d E)z j*$5!-x NRSI%)+  dE)* E) I$I$E)!+  E)b*& I$I$E)! I$I$E)! I$I$1 P %) I$I$E)! I$I$E)! I$I$E)! E)!j !$E)!UWZ  a$E)!UUU @, E)ap I$I$E)$!  E) @ E)* I$I$E)$! I$I$1 PE) I$I$E)! E)( I$I$E)! j4 E)_Zh I!  - E)  E)! E) @%) ` E)! I$I$E)!ꪪ I$I$E)! I$I$E)!* I$I$E)$! I$I$f1$!5 O'1!  E)@ 0 E)@  %)  I$I$E)! * I$I$E) E)A I$I$1 I$I$1 PDE)!& J%$!I$ * 0ME) // I$I$E)$!* @$!@  xE) ( I$I$E)$!  %) E) I$I$E)!* I$I$E)! QmE)!W\~.Lb'a 1!TZa -nE)! % H$@ e)E)`@ I$I$1 I$I$1 I$I$E)! E) I$I$)( I$I$1 I$I$E)!* H$ e)$! X4 E)  tE)+ I$I$E)! I$I$E)!/ I$I$E)$! E)a I$I$E)!  E)  E)@@ E) $!!$ E ,! 0@ ! I$I$e) I$I$$!! I$I$$!! !! ! I$!! U  ! A$!!~]  $! $$d!d @&$!!U d!d $d!d $$d!d @&@d!d $d!d d!d $@$!!(W^ I!A !@$d!d  ,!A`  ! $!!{/  !@ I ! @*%$! I$!! U $$!!/W ,$! I$I$e) I$I$E)! I$I$E)! I$I$1 I$I$E)!* 4%)j E)! I$I$E)! I$I$E)! E)z E)^ Z_iM5!~x n!Z E) E)!% &%) H$I$I$I$cI$I* IZ4m$I$I$ I$I!AA$H$!@I$I$ #I aH$I$!AI$I$!A $H$I$(I" ?/x$I$ I$I* $H$!AI$I$!AI$I$ ( @$I$!AI H$I$ $I$I$!A A$!AI$I$IB$!>/HI$!VUUUM4)A@i4$!BXKa  $I$ $H$!BII&* RI$ & kA!_5  r!0`m -۲m-P@$!!dI%I$I*@9`xm $H/@$I*M ( j6}!~% PA@! %E! 0`Xm!IT  &*,Xd!I !I$I$E(C$!$Im!    $  !j5L!~WN+@(O@!$I ! $9!ى!I0!$ j ! !m!! .,!@&!H6I$!^UH$I!I$!U* III@! !II! * $$ IE) $ $I! H&!!6J OC!  IHd!d @$d!d @!  !! @@$!Ap $! ضI! 0IH$!પ K$I! dB$E) $HR!Р j @!< d!d  A$! "%!A` '! $!  J$!(4 ʔ$!  $!U $!U $! $! $! w!  JD!$. L$!* 0d!d @! d!d  $!!uۢ $@T!& $)!B ! $$!!_ $!!( $! I$I$E)! I$I$E)! I$I$1 I$I$E)! d@$!! =%)a I$I$E)! I$I$E)! E)!z* M (E)z JZhE)_?P!^ PIE) -_  %) +  E)A@ E)) *%). I$I$E)! I$I$1 I$I$E)!ꪪ I$I$E)! I$I$E)!_  E)j E)b I$` E) UUVx m6E)/ E)+ I$I$E)$! I$I$E)!* I$I$E)$!(/ I$I$1 I$I$E)$! I$I$E)! E) @  E) HE)Z蠀 DJ!-V E) + $E)` E)!j 9p%) I$I$E)! I$I$1 I$I$E)! I$I$E)$!**  E)b e)!7z H&e)!p E)!"% E)!) I$I$1 @E)@ 0E)a I$I$E)!* I$I$E)! I$I$E)! `E) O&R)!ɐI$ *  E)+/ I$I$E)$! I$I$E)$!Š* I$I$E)! + I$I$E)$!j E)k 0%)A I$I$E)$! * mömE)b '1!5UW{r<1!UVXq mE)! - I$H$e)E)UV\R I$I$1 E)  I$I$)( I$I$1 @ E)`  E) I$E)! * I$H$E)!p L$D$!  E)! %5 I$I$E)! I$I$E)! !E)!%Jj 0E) I$I$E)$! E)! I$I$E)!*( I$I$E)!zꪪ I!` IB$! .%$I!p E) IH$ E) I! H@! $ d!d $! $!A( P$!A @$! p$$!!o $! $!U $!U $!U $!Aj !A *!@j +i! I! R#II!b iІm! !E)!uu E)k E). E)!U  E) E) @H%)Az* @$!!)] H$!!/W $!! I$I$$!! XE) E)!j E)! I$I$E)!ꪪ E) I$I$E)! $%)A Р I$I$E)!z jE)Wz [wj%)^ Ф]!- X&I$%)AI A$'cI$I$b+BI$ &,I$I$ I$I$! I$I$ I$I$I$I$!AA$I$@I$I$AII4$!!@$I$(I$I ?/A'L$ rI$I( )6m$I$I$A I$I$( I$I$!   $I$I$ H$I$!AI $H$I$I 4!AJbHI$ MI!AI$I$$!!-P-Z4$!!hҤI$!! $!B@$$!BM)Z$!!۶ l*H(  kVP!_' ‚͗o!r 4h h$!!P h$A@m I$I$$!B [dIÆm?k۶m/ & _ mߧMA!7 $(!`\9 !Â-ɖ-!$$9  ٱI ٶm؀   $@" ` (  $I! @@'!zV`9&!AjI A+ )* CR j!   (r! H $I  !`d!d`!0!$!Ib$ !&<'I$I$I/I ! 6I$I!  $I! H$! $I$! H$ !  $!* E) m؆m! Id!d $I$! @$I!A $ $! L$ ! ( $IR"t!Р $ $! $>! _ ҟ$!  II$!Aj 'I$!$I! }$I" !_ I$yI!} I$$@!W I ! IN!W I"II!A I! I@!U I"!U I!U I$!` I(2H!A@@ II!U I"I!U M!( nh!/  I$@! H  !( E)! J@ H%) I$I$E)!W E)!U E) E)!U  A! @$!!^ $!! I$I$$!!/  %)`j E)! E). I$I$1 HE)!ߪ I$I$E)!  E)@* E)   @E)~ ּE)WzOD=9!_ $! >$! j E) * I$I$E)! I$I$E)!z I$I$%)!  $!  $!@ ! $! I$I$E)! ,E) I&I&$!/ lE) E)  I$I$E)!ꪪ I$I$E)!/ I$I$1 I$I$E)$! I$I$E)! I$I$E)$! I$I$E)$! E)z $X,!  $%) * HE)A4( I$I$1 I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)! I$I$E)$!(* ۰m |E)b,4b B2E)(@@ E) I$I$E)! HE)(4(  E) I$I$1 I$I$E)!* I$I$E)$! I$I$E)$!* @E) I$S5!!Hɑ!+/ PE) / I$I$1 I$I$E)!ꪪ* I$I$E)! I$I$e)! I$I$E)! I$I$E)$! I$I$E)! * E)!Xp6l۶c;f1!j  H%)** A IE)! p{mE)74 &E)ި I$I$E)! I$I$)( I$I$E)! (( @$E)p I$I$E)! Y ɒde)! / lۆmE)! P!b E)! )- I$I$E)! I$I$E)$! I$I$E)$! ** E)& PE) %)$ I$I$E)$!  $E)!VZzj $ -! $!  A$!  I$!ں $I$!$IR  I$I"A!U I$$ ! I$H! I!b I2I!U I" !A I! II!U I!U I!U I!!4 IDH$ !A I"I!U  AI! * H $$! @&E) H !!( XU! `@d!d   E)& $I$E)!  K I$e)! IB& $e)! I$[1!+ I$I51! E) I$I$E)!* E)!U_ @$!!~ $E)!_ E)! I$I$E)! I$I$E)! I$I$E)!ꪪ %)  I$I$E)! (%)bb I$I$E)!⊫ Z(@%$!@pII ?H$I$I  !AI$I$(*I$I$I$I$I$I$( BI$I$! $I$(I$I$bbI$IAIA&M$(I$I* <`$ I$I$( A$ I$I$! I$I$(I$I$I$I$!AI$I$( I$I$<I$I$!AI$I$( I"!?/PI$ xIII$I$$!!mYb)@ۤI @$!Bh $$!BHm[$!!H $!!#I\$x$IM' A* ‚˛!r\K4h$!!)Z4hҤ$!!I $!!ؖlɖm 4h$!!A$[%۶mK>&m#M& Z mGPa!_  K!ȄA,Pb۱e[ H$ pX$I I$H$ $I$)  %N[!d , $R j =LT!^WI.pd O!+$ $!a$H͛ !RX1 H! ۶m I $@"V `x !$ ( !j A $ Az$I$I$I/I| !I! $IR$!A $A$! ! I$A$!" HHD!A4<  R(%! R$IH! $I`$! $I$! H$I$! I$I!* $I1! $!  I$!$I$!M$I!* I$!* I$I! I*I$I!  ҦM!/(  L„E) I$)!@ ")I! @ H$I!  IҶm!+  I! LHIBE) @I&! @I! @! $!!U L! "I$!` aH I!"  IBE) 0I!* @$I&! $0! )$I!@ 2@!A 4@H! B$ ! E)!U I$e)!  I2`I$e)!  I$e)!  I$N2`1! ۶f[mE): I$I$E)!u_ @E)!W $$!!/W @ $!! E)! I$I$E)! I$I$E)! I$I$1 P%) ( I$I$E)! I$I$E)!+ E)  E)~* OE)lO' j  M'%) U JE) I$I$E)! $!!p/ $!!(4 $!@  $!A ! E!8  ! )$! m `$! M4E) / E)!  E)!ꪪj E) * I$I$E)$! I$I$1 I$I$E)!* I$I$E)$! (E)&. E)!x* K@E) PXE) +  E)* I$I$1 I$I$E)!  E)@ E) I$I$E)! 0 E)A  %)!.' I$I$E)!*k le)( I$I$E)$!* I$I$1 I$I$E)!( I$I$E)! * I$I$1 I$I$E)!* I$I$E)$! E)A  hE)xI$I% II$!* E) I$I$1 E)!x⊪ E)!** I$I$E)$! I$I$E)! I$I$E)$! E)A @0E)!V\x`Ǔ79e)!RA5 0)E) ++n ضmnE) E) 0E) I$I$)( I$I$E)! I$I$E)! ( I$I$1 I$I$E)!* H$A E)$!  !A  @E)!^z I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)$! E)& I$I$E)!* E)A I$HHE)wW I$! IJ I!* *$I! * :n! @ E)  I&!A HF$I!( Im! !@I$! $IIHE)  AI! @I! @I$!!U* $$!!U I! %I@!  AaE) $@IB&!   !!  tA! `@d!d a! aB$$!( $! HL$!*  C&! @!* H$!A,4  E)!U I$I$f1!*UU I$1!UIжe)* I$s1!  I$I$E)! I$I$E)! P$E)A  $!*  I!a @%)` E) I$I$1 E)!_ @<%) H$I!tVߗQ'H$cI$I* I$I$I$I$ I$I$I$I$A II$&I$ $AI$I$( I$I$$@$I$I$*ɑS$ 'I$I$I$ $ I$I$! I$I$I$I$ I$I$! I$I$(I$I$I$ $6 I$I$a`II@ ?E&L$!rI$I AۤI$!Am۶i6$!!EI$!!A $!B-Z4$!BH$i6 `mP$ $(*b M^ɐB!֪* j۶!c\ ȐD$ $H$!!-Z4hҤ$!!IE&@mb 4H$!!)I I%۰a*@#'z^ }$!7 @M$!  Lmܶ A$mQ @$I)* $!b$A"' PĉmK I A$!B$AAR$ `҄t<!^Y$ !0` h45M> IPII a&۶lɐ  (!%N!$ ! ,!b$!$I$I$I !z I" !  I$I$! "($I @O@ !A j"EtI!  H$I$! I$! $ H2!( D$! $IJD A(<I$I$! $ $>!*^  II$!UU $I$!gI$I a I$$ !UU IRJ I!* $$I! !$I$! $I$!I$I$! a$IB! L$!A! I$@! " I!B $ ! $H$E) d!d  A$!!@ ! PL!b $I$E) !! JI! 5& $!!+ I$I$e)  @$d!d  H!( X!A d!d  d!d IH$!  0@d!d $`$!* CL!( $@$$! @#$$ !!` $$!  a۶E)! U I$f1!UUlmնf1b* I$@f1!+ I$I8f1! I$I$E)!  %)A@ I!a I$$!! \   E)a.&*  %) ' I$I$E)! I$I$E)! E) @ (%) E)! E)z I& HE)UWxI$I$&  I$!! z  ! @(!@ !!,& $!!  $!,4 H $!! $!!%` $!! <!P J $! =]!aj 6E) E)!* I$I$E)!/ I$I$E)$!/ I$I$1 I$I$E)$!ꀪ I$I$E)!. I$I$E)$! I$I$E)!x * J9 @E)W^j PTE)*  E)j I$I$E)! I$I$E)! I$I$E)! 4%)A` I$I$E)! %) I$I$E)!(* E)..?E) E)!" I$I$E)$! I$I$E)!* I$I$E)! I$I$1 I$I$E)! * I$I$E)! I$I$E)$! * Pm`E)^I$J$. 锴E). E)!#  %) & I$I$E)! I$I$E)!ꪪ )%)A I$I$E)! PE) I$I$E)! H& E)!W^XkEۮe)| I E) 7<* I$I$)( I$I$E)! E)  ) I$I$)( I$I$E)!( I$I$E)! I$I$E)! $%) mh۶E)!x` E)!k '  E)! - E)!` %)  I$I$E)$! * I$I$E)! * hE) I$I$E)$! I$I$E)$!  E)!zj @$I$! I$I!*  $I! * I$$@! I@! j$I!a I $E) @ E) $@$d!d $%! I$I$$!!* I@! $-"!@ $S)!p  I)!  I$I$$!! $@d!d  d!d @! 0! d!d !   (!`` $!  d!d $Id!d @ d!d I$! $ E)  II!& !* @d!d E)!/U ƜI$1!UU I4I$f1!^/1! I$I$E)! I$I$E)! $$!!^ I $!! z $!!- I$I$1 $h$%)`p\VI A%CI$I$I$I$I$I$* I$I$! I$I$(I$I$I$I$! I$I$I$I$! I$I$I$I$(I $a(* 6H$I$ I$I$A(&I$I$I$I$ I$I$(* I$I$! I$I$(I$I$ I$I$A$I$I$ I$I R$x$ I$I`A$I$b@$!!@$H$!A$!!-m6$!!h4Ib@m ڢ m }IJ!W5 %J!cXV%K$I$@$(-6M$!! $H!AmӶm[$!!$M$!! PhѶ$!!Kdɐ/ H$' M *,!'p PIt!!/I EҴ F!bAIiѶ I$!b@Klݶa[$I!$b$!zMA' aH ! #'I[ ݰmX$h)0l/ 's I$!bXd<J!d0`!O$ !H&I$I$I!* I-U  ɐ!-!( `6!H!I$I$! !@ $IH! $A$!*  Ʉ!I! ! $I$=!^z$!WU$I$ I$I~!UU+ID . # $I!e I$I!)H !6 $I I! $Ä$! !I@! II$!* &!2E) HD$I!A8  ɐ AE)  $@E) )! I E)  0 !(  $I! "m!  I!b $! JT!!(4( $$!  $$! @ $$!* @2$!!U @l! !"  !.  d!d P@! @  d!d  `! d!d $d!d ! d!d L$!  $@d!d  uR"H!  $A&! d!d $!!  I$I$1!+UU KI$1!xU I$Ò1!/f1! I$I$E)!ꪯ H E)!Uz @$!!^ $!! I$I$E)! I$I$1 %)` E)! I$I$E)! I$I$E)! H$!x I'PH!UWxI$I$!UUW 0 ɔ$!+U $! @$!!X @ $!!%` $!!- $!` A$!!Y @"$4!` ! `! m$J%! ɐ$! 5 E)! I$I$E)!ꪪ I$I$E)! I$I$1 I$I$E)$!蠪 I$I$E)! I$I$E)$! I$I$E)!b* s-E)_z  !/  H $!  I$I$E)$! )%) I$I$E)! I$I$1 I$I$E)! I$I$E)! I$I$E)$!**$A$4E)A n$ E)( hE)( I$I$E)! %) I$I$E)! I$I$E)$!  E) `` E)!* I$I$E)!ʊz ӣ-P H$!z訠II$? 0NE) I$I$E)! I$I$1 I$I$E)! I$I$E)$! I$I$E)! I$I$E)! I$I$E)$!* E)!`[?E)>xb'E)!WTP ۶adE)  I$I$e)E)UuV\ I$I$E)$! I$I$E)! I$I$)( I$I$E)! (( E) & @E)@ ۶mٰ E) h`E)* E)!Pb E)! ) I$I$E)!  E)` E)! E)- $ E)!*ZX I$I$E)! I$I$E)$!  $@ E)!W^Zz ڤI!( 9J$I! $E) $4"!` $E)  d!d R"$ I!Ap H$! R*$I!  $$!!U H"!@ )I!   $$! !L$! $! -!  $! I!  I2! I$!*  $ !* J !a(4  I2! $$! d!d I$I$d!d @d!d @! d!d ! I$$!!U^ `$! $!$E) @ d!d E)!/U ?f1!-UUe) I$Ib8f1! E)P* H E)!U]u~  A4!`II b?/H$I$I$I$I$I$ I$I$I$I$I$I$( rI$I$ @I$I$A*I$I$`I$I$I$I$*I$I 'I&H$ A訮I$I$ I$I$pI$I$( I$I$( I$I$AI$I$I$I$* I$I$I$I$& I$I$AP *G$!I$I$ (I$I$II!A $H$!A  !A $!!@I$!AII!AE-P $!!IO! * <۷!kZdȐm-$H$ I$H$(( $H$!AII4(h&M!A 4h$X v$@ IJA$!A R `$MR! ܪ* GI $H (ڴgob@!3&`m5kɐ /+( m[`) ">M!{_ץ$H\!WVI!Xvݺ-*8L 4(6H8z(H$I$!B-&#&S !h I "O1!@1q$H$I$/I$y[ ! H  !`X !J A 8  !!.&I$I$! !@ !$ !a  !@$!zU'I$!WUUI$I!UUUI!  ! $I!ؖ! $$! ! $ P' ! IJD!( H$I$! $I! I E)a  $E) $@I2!  $I! $A2I$! ")$!` IH!) I$ 2! I&!* IB $! I$$!* $L$! H! I$E) I$d!d II$d!d $H&! $H!A I I!& I!( I! L$@! $ !  -R@!!` PYm! $$! $0! d!d I$I$d!d d!d d!d  !8 L$!!Uj* $$ $!  II0E) @E) $!!* $I$f1! UU_f1 I$he)! E)!j E) $!! ~ $E)!U I$I$E)! I$I$E)! I$I$E)!ꪪ X$!( I$I$E)! I$I$E)! Z$!^ I$z!UUVx dI$!-UU  L! I$I$$!! / I$$!!X  !! I$I$e) $!  $!( <$! FH!( I$P! I$$!/ %)&* I$I$E)!ꪪ I$I$E)! I$I$E)$!* I$I$E)!પ I$I$E)! I$I$E)$! I$I$E)!* X@E)^ SҥV!AҪ ( I$I$E)!- I$I$1 I$I$E)$! I$I$E)! I$I$E)$! I$I$E)! I$I$E)!* HD%)! aǶcE)! X mm[E) O  E) XE)A I$I$E)! * I$I$E)$! I$I$E)$! I$I$E)! ** E)!r @E) {%R!Zz I$/ P E) + %)!,$ %)!& ( I$I$E)! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! * @ E)!^x` AIE) aM% L E)!5W I$I$E)! I$I$1 I$I$E)$!*( I$I$)( I$I$E)! I$I$E)! I$I$1 I$I$E)!*( I$I$E)!{ae)!7ܶxKqE)a . I$I$E)! 0E)!+/_ I$I$E)!몪 ME) ( I$I$E)$! I$I$E)$!** E) E)!jꪨ ۶mh$! $! ömn! h$!8 d$!A! I$ @! I0! I$!  $! $)! j $$! @I$d!d @I$d!d II$d!d @@#5! ` PI! @ 4 I!  II$! $@I$! I$!U $$B!A` 0IӔm!"  JJ!A$  $0E) L@!  $!  !  D!a8 d!d ) !a I$I$$!! I$I$$!!  d!d H0(!B `$!!yW  )!h A!1!-UUU'e)!-_ I$H,f1!x @%J$E)ZXVy$L$ isI$I$ @I$I$aI$I$A I$I$ I$I$ 8I$I$I$I$ I$I$a<*I$I$ (4I$I$ I$I$ 8 !A&!bI$I$I$I$**I$I$ pI$I$I$I$I$I$! &&I$I$( I$I$&I$I$ I$I$AI1% H$I$( I$I$ I$I$  A$!AII$!A I!A@$H$!AI$I!AiۤI$aN$J a 8*4!! 6m&$!! $I!AI$H$!A $ @H A$H!A $H!AMҤ-P$J IB=!cXxy!6lؖl  @( ÂdI ⼿+ ۀ **(caƍ%Kl6 l" lM+4!{P Z֥i&IK {^6 Ir*0 ö%*"#lj`Az%mضmF'L2&0hҤK l<@$  $!B(l'!@$I$I$I  IR% @!*P#!~ !I( !JH  B! A H !ؖ! J *&(z$! h`$$+I$[!~ IG$! $!X !"!j !P !j!I$I$! $I$$!* @I$I!aР  I2$I! $! $I!'  II$! $I$! $%Rw!app $ID! $ M$!*WhB(!j9 A $M"=!WW_ RI$! @!}!WWuI$ UUUВI$!UU ?I$! WUU $I<! RI$!  II$! $I$!W H$!+U  A! @ J!A  HB"!A` HAd!d  ! I2@E)  ! P(!! I! H ! I$I$$!!. I$I$$!! I$I$d!d `$!(,  I$!   A &E) !&  @E)!5WU ?f1!-Ue)!% I$I$e)! E)!_ $$!!5Wz $$!!5W I$I$E)! I$I$E)$! I$I$E)! I$I$E)!+  $!!@ ! K"5 !@@I$I$*  I$! . ! $! @ $$! ( $!! PDP$!  @$$!!P $!!% !A K%@! )I$$! / E) I$I$E)!ꪪ I$I$E)! I$I$1 I$I$1 I$I$E)! I$I$E)!  E) @  i@!a Mצ! . E)! I$I$E)! H%) I$I$$!! I$I$e) I$I$%)!^z I$I$E)!. I$I$1 -mE)!>z n۶h[4e)!S I$I$E)$!*  %)@ E): I$I$1 I$I$E)$! I$I$E)$! * hE) @ E)M$R1!^^zH !+  E) * I$I$E)$! I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$1 I$I$E)! h4 E) l2aE) 0E) / I$I$1 I$I$E)$!" I$I$E)! ( I$I$1 I$I$E)!( I$I$E)!  I$I$E)! I$I$E)! * @ E)b@@c]ᚢe) E)! % @E)x I$I$E)! I$I$E)!ʊ** PE) ( @E) 8 %) & I$I$E)$! @ E)!VZzj $&I$!  I$-!z DJt5!A&&!j} $HT!I$ AP!z{ I$! By!` /5!~I'!UUUI$ UU@I$!UU $I$! I'! TII$!*_U }"I@!_ II ! I"!W I$!U I$m#A!W '$I"!* I$!U JI$! $I$!  M!+ H I!  LB2$!  I !!  I$!!U{   I!  H !( @F!`8 ! !@ I!! @I0E) d!d )@%! `PI 97 I$I$I$I$ I$I$I$I$I$I$I$I$I$I$ I$I$(*I$I$ pI$I$I$I$I )!H$I$I$I$I$I$ I$I$I$I$I$I$!I$I$I$I$I$I$I$I$ II$+ H$I$A,I$I$( I$I$!AI$I$bުI$I$!A I$!!$H$!AI$I!AiS$IN"%v  )R!e}__ i$ H$A$!AI$I$@I I$Am  i&M $@ !AII$!![$I?p$!{ZHə!V$Hl $!BXK𶵭  ,Â$Im$I'Ld#:b($z!($!W[`ބ y ^Ĉ$G2*j ɐr I= $H" mvh5**<:Nx F ېú5I:L$I$Ib IiU!a$ !$$! 'e !!!j  !b X!0!z0L!zWUpqy$)A$!A*r  !%!%I0!bO$@!!r!I$I$E(C @@ HR!H$! d$@! $"I! @ IP! * $I<!WzJ!W@2I% P&& ]_LJM ׿MD !b'%!bk ! ICJH!o* I"  !! ٶm&A! j'ID!A IB2$ ! $I! $$ ! $$ ! $$!* IB$ ! Im[ ! j#I!~ I"I ! II!_ I$@!U I$R+ !_ I$OA!U $I?!U DI$!* $!+  IO! @$I! @ $ I! IH!A8 `! @%$I!b "I!A@   !b@  !a I$I$$!!* KH!$ `$!!W` !d!d h !E) _$I&E)? I$I$e)! FE) &P@! X  ! @$! I$I$e) I$I$$!! `JL$! & @$!! # @!x I$Z$!UW^ DI$!-UU @"L!a*  %@!A $!!5p $!!  5 I$I$$!! @$!!X   H!A  I$I$$!! Z(!X` DI$$!/?  %)( I$I$E)! I$I$E)! I$I$E)!  %)  I$I$E)! I$I$E)! I$I$E) * d2 E)!UW^z  $I$! ) %)  I$I$E)! !A I$I$$!! I$I$e)  ! I$I$E)! I$I$E)!ꨪ E)B8  E) , E)` I$I$E)! I$I$E)!* I$I$E)$! I$I$E)!* I$I$E)$! I$I$E)$!* ЊfH HE)!I$H% i! * %)! I$I$1 E)( I$I$1  E)!jj %)  I$I$E)!* E)!`  h5E)/?  HL!A($ pE) I$I$E)$! I$I$E)$! (E)A` I$I$E)! I$I$E)! (( $E)` I$I$E)! I$I$E)!e)!7^xN1!\Z I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)$! I$I$E)$!* I$I$E)!. I$I$E)!ꪪ P%)u| #Rir u]$& $!_L$! bR ! IBI !A I&I$ !ժ mӮmm!* $I!a* R#I!z !$$ ! $$ !  $$ ! dE) mm! imm!* IB! I! d$!  $!  d!d $I"d!d `E) z"IA!V( I"=!W I$!W $I"1! _ T I$! H!   A"%! @ m!  $$!* h$H! 8 $! I$I$$!!* I$I$$!! I$I$$!!* L0 $! x$Id!X֗A$K$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I /G&H$I$I$I$I$I$I$I$I$I$I$`I$I$a"I$I$I$I$I$I$I$I$aI$I$I$I$( I$I$! I$I$H$I$ I$I$!AI @$!AI$I$!AI$A$!AI[ m$ ˖"% MIR$ H4I$I$I$I$I$( I$I$!A@$H$ A$II !AE&I$p = / Hɓ7!Aj ؑ[a  $!B@$I$!!$!B$ $)*j`ĉXֵm۶M/`2' O!y^HH NlA<4"9vD $[K A۶mۂ%PD6 ؖݺ&Ib/ 6K$A4(@$I$I$Ib IV'$!%Ia! rD dI "1 a `HI!  DHW A<* R$T  (!{0L!zWHV y !UU I!@Ȗ p$ ! $I!!I$I$E(C !$!%!K!!&!_Hm !_''!WzI!! IH!~ի!UO"!U &I$ !骪 J$A! IB$! LB$$! $II$! $@I$! @&I! 0IH!* x$I !a $I!* d!d  I !@  I! $@! $!I! !CE) IB! @IB&!  I2!  $$! @!*  @d!d d!d R#I@!z I@!_ I$$! $OH!/~ KI$!+ R%$! j  )! $I! I0@$! " $!!  I! $!!Ȫ+ I$I$$!!* I$I$$!! * @$!!\ !$!!UX !$!!/U X`!  X`E) h E)? E)!^ !$! @$!! _ $!!5 I$I$e) $! I$I$$!!/ I$I$$!! $!!` K5@!I$I' p ɔ! / $! * @ $!!p  $!! % H! $!   $!!` ( $!p` @#!b I$M%!UWX   !/ 4$! `  %)A  E)! I$I$1 I$I$E)! I$I$E)! I$I$E) * I$@E)!UUVz С-! E)! $! @$!!X I$I$$!!  $! ! I$I$$!! EE) E)!sM  E)a' E)$ I$I$E)! I$I$E)! I$I$1 I$I$E)!* I$I$E)$! I$I$E)!j P !ꨠIDI$ * PV$! / I$I$E)!ꫫ E)B*  HE)a.6 I$I$E)$! I$I$E)! (E)(r I$I$E)! ** @E)ࠨ ӖT !!& E) +/ I$I$E)! E) H%) ( I$I$E)$!  E)@ E) I$I$E)$!* @E) mmE)!p`s9|f1!sI% E)!+) I$I$E)! I$I$E)! I$I$E)! * E)A E) I$I$E)! I$I$1  E)P` I$A&!* IB$!  d$! $ I0! @I0! $I! &!IE)  $I$@! $ A! $d!d  I$!! @&$!!U $L! $d! &L!   d!d $ d!d "(!` `!  H!  0$E)  I!  JD!!$, !&! !A I$d!d Z#I@!x I">!Aި I$zH! JI$!  ID!  $I! @"-!`p !$C! @ $$!* $!!*" (@%!`pXɜ c$CI$I$ I$I$I$I$I$I$I$I$ I$I$I$I$I$I$I$I$I$I$I$I$; *#% bzI$I$I$I$I$I$I$I$I$I$I$I$*I$I$I$I$I$I$I$I$zZVI$I$!I$I$ I$I$ I$I$! A$I$( I$I$!AI$I$I$I$ I$I$!A $H $H 4aH$I$b(I$I$I$I$( I$I$!AI$I$nI$I$bI$I !A$I$!AI@l9p,NX׵m&h$`P$!!@$I$!! @$!B 4$!B@Ӷi$!!ْ-K /&1c„ I&E!!zꢨI ؖ,ɒ-@$M$!! h۶$!!I$!B@Ҥ$!!N %`B&&AP82t$I$I$*I1g( 0  m ' @I( )$!b #'K `  0` I$ i$ Q!]U9A$I!$r 1 @!P"$ p I A $ A $ l!"I  !&!_MZ!ׯb&!^IH|J!Wޤ!j׫E<@H A*p $I@!* $$)! I! $I!* @$I ! I$! I!( IH$I!* $A$E) $A &E) H$@! $@ E) Hd!d I$HE) d!d @!  !  LE)  d!d d!d  0d!d @d!d d!d @ @! F! aB !  I,!a`  RR<!!` I$!* D!a I$$!!U_ "I! O"I!Az I$!Ak TI"% A+ I$!+ @*TI! $$!!zU I!* I0! $! * I$I$$!!* I$I$$!!* $!!x* $$!!Wp $d!d h! xE) * E)/  !@@ @!A  EPH!   $! I$I$e) I$I$$!! H $!!p I$I$$!!  PH$!x I$j5! TI$!/ $! $!!p H$!!% H$!( I$I$$!!*" ! ! @!` I$J%! T! / I$I$$!! I$I$$!!> d@@$! ` I$I$E)! I$I$E)$! I$I$E)! I$I$E) * HEE) ) %)/ %)!^} I$I$$!! @$!! 6 I$I$$!! I$I$$!!(  $!! %< $!!r,8  E)!Z{ @E)!sm  E)4 I$I$E)$! I$I$E)! I$I$E)$! I$I$E)!ꪪ I$I$E)! I$I$1 H E)A {&j!1pI * P %)+' I$I$E)! I$I$E)! I$I$E)! I$I$1 $!` I$I$E)! I$I$E)! E)~xx M!, E)! @$E)Ap I$I$E)$! I$I$E)!" * I$I$E)$!* I$I$E)! * I$I$1  E) @ l۶mE)?e)!7Z H@%) ($ I$I$E)! %)A I$I$E)!ꪪ J%)! E)  E)A$, I$I$E)! I$I$E)$!* I E)!UWT^ I! !I$IE) $I$E) ") !@ TIH!b Id!d A d!d IE) $d!d @ I$! Cd!d   AE) H d!d @d!d  E) d!d d!d  !E)  H!  d!d J ! \!b, 4!p H!A !$E)  B!  %!A I$$!!U^ ,! I39$!! $jH!+  I$!W  I!* @B#!` I$ !*@ HI!ܖH$I$!^VWUI$I$ I$I$I$I$AI$I$I$I$I$I$I$I$I$I$ pI$I$I$I$(* II" 6.H$I$I$I$I$I$xI$I$I$I$I$I$I$I$I$I$I$I$I$I$ZI$I$a(*I$I$ I$I$o+ I$I$  $I$ I$I$ I$I$!AI$I$(* I$I$XH $AI$I$ (I$I (A$I$!AI$I$!4(I$I$( I$I$! I$I$I$A$&I$I$@$ $MI!A $H$$!!-ڶM6$!!hۤI$!!  @$!!m 4$!!hҤI$!!I$I /s !X(A,-h۶m6$!!@&I!A)  H $!B 4H C[5goM:>zC'N$A@I$I Ix$@/ ) H(Dbڄ mnl I$$!B*)N!j!MJD ׭$A'!$I< ay&I !u_յI!խIR$ zW??K zWH%E H$I O A&<@& !`x)u! IBH aJW$!&L! _ R72!u}9BI! * *!zտ IEI !.&I$I$! $I$$! @2IH!꿪!꿪 ! $R$! AA$E)a  $E)a @$ E) `H&!E) `H&!CE) I!,$ $IH!( !$! C ! ۖ!  L$! I$!* $ $$! $$$! m6!* -! h!(  $! $@d!d Hd!d ` d!d h! d!d @@!A` 4!b ! H!A  I&E)  E! )!@ !A $C $!!UU^ {dJI! I$@! JI"&! U^  IT! @$$d!d @ P! !H! *)!@ ! I$I$$!!* $!!x* !$!!U\ .)!@ R!!  l#-%)⋿z NX:`! . P5!{ $$!!5V~ $!!  I$I$$!! $!a($ $!!/p  @$!!@% $! I&Ph! I$!  -T$!b / I$I$$!! ( @ $!! 7` $!! d! $!! ! !@ I$h4$!b P)!b / I$I$$!! * I$I$$!!> I$I$$!! I$I$E)! X%)A( I$I$E) PE) *  E)!uX th ! . $!!. I$I$$!!"  ,$! (p I$I$$!! @ $!!X` $!!Ë' I$I$$!!  E)![} I E)!Y} I$I$E)!* I$I$E)! I$I$E)!. I$I$1 I$I$E)! H%)a8( I$I$1 ,l%)zxI$R% Vy! + $! I$I$%)$! I$I$E)!{ I$I$E)! I$I$E)!ꪯ ( %)!` E) *) E)  TM'!.>z S4 W!2*+ I$I$E)! I$I$E)$! I$I$E)!* E)!' I$I$E)$! E) I$I$E)$! I$I$E)!/. E)!h1!iM7  E)!- I$I$E)! I$I$E)! E) I$I$E)!+ I$I$1 I$I$E)! I$I$1 @ E)A  dE)  ! @  I! $IPI!( 6! k6!( ۚ! I$!  !$! $ $$! d$!  $! Ф! !$! $HW! $)"J !@ I$I! $$IB! IB2!  ҧ%!  $$! 0 !. @"H!`  d!d !  !! P! I2d!d L$!! Uz $!!U d$!!UW R#I@!z I!^ JN%I!* "%R$!@`X 5A' krXI$I$**I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$ꪪI$I$I$I//C%x$!zVI$I$**I$I$AI$I$I$I$a&(* I$I$I$I$I$I$I$I$I$I$I$I$aI$I$a I$I$I$I$I$I$I$I$ I$I$!pI$I$<(I$I$!@@I$I$A$I$ I$I$ ** $H$I$I$ I$I$ تI$I$AI$I$a I$I$(I$I$!  $@$I$I$*I$I  6m$$!! $!!@$I!A$!!--6$!!hҤI6$!!-ۉ  "$H$  (Ra4  hm6$!!h$I4!AA۶I$!! $!B@&I$!!dِ- *$-M;I$I$ I$I(( i&DA@B&&8Ü؉iA  n  @ $!B$%I*& ^@mܶ ,@*&O!_UI!r  I\!$!5&I/IU) ؒ%Il!۶ a  5R& `۶P!-Ax A*(4I&!_ (>YA!_׋ I'!  I$I$$!! $!A (!` $!!  E)!zo  $! *  Hl! /< I$I$$!!, @! $!! ' I$I$$!!(( !A $!!(É I$I$$!!< @ $!  E)!_ I$I$E)$!** I$I$E)!ꪪ I$I$E)! I$I$E)$! H%)A I$I$1 @E)ؠ jP $!~II$. V! / I$I$$!! I$I$$!!** I$I$$!! .< I$I$$!!  $!@ $! I$I$E)! h5$!Ah蠀i$) A)  E) )- I$I$E)! I$I$1 I$I$E)!* I$I$1 @E)!* I$I$1 I$I$E)!ꪪ I$I$E)! uЦ6E)!ZxNor<1 Zs I$I$E)! I$I$E)!ᄐ %)A I$I$E)! I$I$E)!ꪫ I$I$E)$! I$I$E)! I$I$E)$!** lPE)A $$$ ! !%I %!* $ID6! $!U $! ,$!(( DJ$!A @[$! $ m$!W ۖ$! JE$ 0 J$ $, I$!U I$(@! I$#A!Wɕ$I I'!*_ JI$!* @($! $A!" $II!  $L!  I$$!*  "I! @  ! P%! d!d I$I$d!d  d!d  d!d $A!   d!d $I !@JI 7H$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$jI$ -sI$I$I$I$I$I$aI$I$I$I$AI$I$I$I$I$I$"I$I$ I$I$!I$I$ bI$I$ I$I$+*jI$I$ `I$I$(*I$I$! I$I$I$I$I$I$A$H$`I$I$* @$I$I$ I$I$I$I$  I$I$I$I$( I$I$bI I$!AI$I$I$IA  A$!AI$I !AA$I !A$!! $!!@I!AI$I? "$H$ (I"I(I+$A4hi&@$I!A$!!I$H  h&I (4$h$!!$ɲc'H$I$( I$ (ib[+ kn݂%( hҤɖ@ ͠Mlݶ ۰a$p%($I$9UI ضsp\%M ݶv(@$I$!BI$!b&˶IU  A( @"$ !p M$}%A!!* UAM! * Pä-$!A)EI!0%!$E!!o"IJr !BD$QI$I$E)a!z $I$@! $I$)!  $!*  H$I A -`!$%x$!!*($! $)I$ j@$I!U I$@!U &! ۔n @!* @IdI! $I! "@m!* I"I I! I&"@!@I$iS!AI6 _ @II$!  $T! I$$! $IB2! I$$!+ $! + I$I$$!! I$I$$!! $!!z Ld!d "%P&!@`$\$xI$I$A>I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$II b//d$M$!~I$I$A)I$I$"I$I$I$I$!I$I$aܨI$I$bI$I$I$I$bI$I$jzI$I$AI$I$ I$I$A%%jI$I$`I$I$AbI$I$44I$I$I$I$&I$I$ $A$ I$I$A`(*I$ $ I$I$I$I$ I$I$aʂI$I$I$I$(*I$I$BI$I$&6I$I$I$I$)I$$6(I$I!A$H$!AA$!PA $!!@$I$!A$H$!!-R4m$$!!I$I$A44+V' I$I$!AH$I !A$I$@Ii$@$I$ApIۉ AB i$ II$( Nĉe (֭Xt .&L 44K ٰ /+*@$@Fn %HX 0` %Ld I#P (Nᶑ( ÆmC&`Zc X%H$II **  A*&M ^׭I!($&!_ $Is!!jB DAѓ!* P$I!X$ !H ˶!,'$!e@! b@@ I$I$E(C,!꟤!$!"I&!A j@y$  'I$!h$I$*I$I *I$9! II!I@>!)IJ!`I! C )! $! B*(!@ IpI! DJ H! MҶm! m+@"!A` Im @! i۶! Mn m! Mڤm! m$m ! ۖ! $J"@! P*$I! `$$! z"I I!W( I"1$!_I$J !$I * I$! $! HI!  $d! I$$! $!+ I$I$$!!/ I$I$$!!( I$I$$!!  $!!W{ !d!d  $$! JO !a* !d$!!%UU^ F%)*  $@%)!UU^ H!$!(   !@ 0 H! 8!! !! $!  @ ! ( !  e@!/ :!?  L!6 H$d!d $!!% I$I$e) I$I$$!! ҀDP! $!!* !` I$z1  d!- x@"! (@  T@! $!  $! H$$!!X`  d!d Eh!A8 I$h=!  H! ! @$$!! /X I$I$e) $!! I$I$$!! , I$I$$!!( @ $! &E) 00 !  $$!  H $!!rB $!! ,$! $$!!5 $!!Ë(& @$ $! 0LL$!(ʮ E)! I$I$1 I$I$E)! I$I$E)$! PE)a I$I$E)! @E)! P, `$!N$p%< i! * $!!+ I$I$$!!** I$I$$!!/<< I$I$e) @$!!@ $!!( H$!44 4 `$!XpA;D( E) -5 hE)< I$I$1 E)a&& I$I$E)$! I$I$E)!+  E)!b E) @E)![/  $E)A(Po8e) E)a6 E) *( I$I$1  E) I$I$1 I$I$E)!ꪪ I$I$E)! I$I$E)!** چmP pE)lI! D2! $! b.D! b" !* iӶn! mm ! mWJ !a(4 ImI! mӶn! mM!( I4ۺ!  $! D$@!a&. $I0!* HL$! II$!* Iж! 5"I! @ I&H!+ $I$I2!* R#I$I!~ I$* ! j H!$ ! IIH! I$!$! IB2$!+ !$! J !!$  $! HD (!H$I$bI$I$I$I$I$I$ &.I$I$I$I$I$I$I$I$I$I$I$I$I$I$ 1G"& kbZI$I$AI$I$bI$I$"I$I$I$I$I$I$I$I$ I$I$"I$I$I$I$AI$I$A/ I$I$I$I$I$I$A@I$I$!I$I$I$I$(*I$I$! I$I$H$I$hzI$I$ I$I$I$I$I$I$I$I$I$I$I$I$ II$ ( I$I$ I$I$A. I$ $H$Ib@ $I$ I$!AIM4b@$I$!Ai$I&I$H$I$I$(**Im$!AH$I$I$ @A$IIm&@i$I q"۶`+]/o&H$I4A$ Iĉa( 6lؖ,$R$`pIA[$$I#9 @m9PıIX֭$  %*X@$+ %I( 9$9rz^5NI @$I I * pD\T' !W")1!j m !A UAҢ!p P߼yv!xU"% r`ɒ!+dɰ ! !@   !!$۱$!$I& _ O$!zUUГ$I$ I$II$9!UUI $!@bߒ!$%I `RD$!Ap$ * b '! I$I$!* $I$! H$I$!I$I$! #I I! `! I$I! I$! $@I$!* d$! L$I! A$  !  $! I$I!* %P" !P !$I„!(  a$! dBI$! mlֶ! MI! l$  I! ! I@!* O"=$I!UZə!! ېlٰm! dB! IB& $!  $H$! @I$$!+ @"$!A` I$I$$!!. I$I$$!! H]!   J! @ &$!! W HH !A $d0E)!UUW @ E)!^k%  `%)h pI!  &! $  I!@ ( !a I$I$$!!/ H0!(  $! X  ! Rs! p j!! > d!d H$!!^ @$! I$I$$!! $!!% $!!& *A!NJ I$j5! JI! +/   !A !$!!Xc $!! % I$I$$!! h !( )!AC ITH!` I$J%! J$ ! $!!p/ $!!6 $$!` $!! I$I$$!!. I$I$$!! ( E)!__ d @E)po~E)Ë. 0E)7 . I$I$E)!` I$I$E)! I$I$E)!ꪪ  %) %) H%)a&, I$I$1  E)!Rbj $I$!I$I$!I$I$! J$I$I!! I I$! II !* $AI$! @ $!  2I$! I$IB! I$@!( H$H!* @$ $! ID!  A$H$! I$A!( $H!(( IH!*(  %RH!Ap $I$! C"I&! HHD 8 i&X! ]M! dB$!* $ɐ C! &AL! VH!!(( kai&!+ !$d! "(R&!!%b$ AxI$I$/ +I$I$I$I$I$I$I$I$ I$I$I$I$ꪪI$I$bjjI$I$ I$I$II$A**ZH$I$ \VWUI$I$I$I$"I$I$I$I$I$I$I$I$I$I$bI$I$I$I$I$I$A/I$I$(I$I$I$I$I$I$I$I$I$I$I$I$I$I$ I$I$xI$I$I$I$I$I$!pI$I$I$I$I$I$ .&I$I$!&6I$I$AI$I$I$I$A.'I$I #I$I$! I A$!AI$I 4I$H$ ($H$!AI$I!AI6E$bI$I$/Ii&* HI$H$I$( A$I$A@$M$I E6-R !@;AI(Q$ IرdA$H$!B,%r[Z޽I$!!$Ir$ ɒ'*z\h)$!! $J'*rĉA(H,9z@$I$!!1$I%I$  @,%ZC'r^5 9՞H !*Ij ޗ l $!j* &}SJ!Ah)Q( @ !ä I z   I$I$$!b$H" !8!(NX!bR1 z%j$!_U`$$!~UUUI'I I$ @!IZȶ!bI!!%!I$I$!I$I$!@!Z !I$I$E)aI$I$! !ꪪ! ! $A$!$0!{  !*  $$! $$!*  $$! R%R)! Р DIH!(> $$5! z $@J! $H 1!`  I@!* I  !* I$!** I$! $)@! K $I! I0! * J")!A@ $II! mm`!* $!ꪯ  I&! $ $%!* $"- @ 4 $h! ۠mN!*/ I$$! $!* h U! $!` d!d  @&d!d H!d!d [! LB&E)!UU k 4E)/ m! @$!* H$! ! I$I$d!d $! !H0!* @! OR!x` jW! 'k ! H $!! 5 $! .$! HD! I$I$$!!/  @!, I$R)!^p  I! -  ! H$$!!Xr $!!) ! H@!bc 0! "hI!` DL&!/x  I! $!! $!   $!( I$I$$!!< I$I$$!! I$I$$!!<  X4$!> ʕ!!, $! $!!B* $!! ' I$I$$!!*   $! +! H ! tj%!h VT!  + I$I$$!!  I$I$$!! I$I$$!! $!@ %)** I$I$$!! `!|& W_W~ V)!= ! I$I$$!!* 9 A! I$I$$!! $!& @0!0 I$I$$!! * P$@$$!!ppI$I$( %) /- I$I$E)! <E)p I$I$E)!. I$I$1 I$I$E)! I$I$E)$! I$I$E)!ꪪ I$I$E)! / h@ E)>l&KE)ؠ I$I$E)!‚ + I$I$E)! I$I$E)$! @E)!޺ I$I$1 @E)!Z^ I$I$E)! @E)! R HE)^^I$I$!  I$&!* $HD!  ID!*  m$! $ $$! $2!  m$! HM"%! J$I!! $H|! d@! J$I !A $I.< A` @J@!* $LB! $@$0!  $! $! @ !  R@!  I@ E) $LE) ں@m! I6! JI!a  2!  [&m!+ [-N!/H !H$I$bI$I$ I$I$I$I$"I$I$I$I$I$I$I$I$ I$I$I$I$I$I$$,!%d$bcpI$I$`I$I$I$I$"I$I$I$I$I$I$I$I$I$I$I$I$jI$I$AI$I$A I$I$I$I$I$I$I$I$ &.I$I$I$I$I$I$I$I$ I$I$\I$I$I$I$I$I$I$I$I$I$I$I$I$I$*I$I$I$I$pX^I$I$&I$H$! I$I$ I$I$ I I4)$M$(I$I$!AI$A4I$I$I $b+ H$I$ &.I$I(( I$I$! I$I$I$I ( A۴I$!!@m& G.[$(IiѢÂ%K,>%N8)h[-۶ *Jb(rII $(p$(I I$ (IX$*  $R$ZVJD1dV@$H$!!I$!B$r^Np2,A@@%@%&iRB!y'P$ kUI9 !* D & ^¶IJ j@ $I")!j$I a $Ԥ b m !l[J&!_$>I!ME$ ($I *I*9N !bҖ!_$I!$I$!$I  I$I$E(CI$I$E(C%!ؖd!0,I!$! II!& aBI$I! $A )!z $=B!A p  D6! (!@b H4I! I E) &@۶1! $!U J! RH >!` $AI! R"I I!` $I! $I!b  I$!  A!I!(* H$! I$$!*  $E) "IڅD!  $I$I! $A& $E) e[&i! Mn! RV@!a* `H!!+ -д[m!   `e! th[! / m -֤!  IH!A  !` d!d PD!  $!!^ !`E) d!d I$`! 6-E) JT@!  퐶! m@!*8  E! I$I$e) (!@ m@! !! zf*I! OӨ!!* !  @!(  $! P$!b8 @ $!!x H$!< $! I$R)! NI! + $! $!!TRK ! I$I$e)   E)  d!d #($I!` I$  %  ! HH!b $!!K 9$!A P !! I$I$$!! (@(!` I^!A + `f! . $!! $! , $!!  ,! J !a$ I$I$$!!ˎ> (@!!@I&I$!!  !  !A I$I$$!!.< I$I$e) I$I$$!! I$I$$!! e! Հ !|Ihb MԤ! * I$I$$!! PE!a Ѐ! J !$ @$!!'4 I$I$$!!(( $!!@ M&5!W^xpII$!U E) I$I$E)! I$I$E)! I$I$E)$! %)@@ E)b I$I$1 I$I$E)!. E)!hࠠoڷE)ˏ. E) )-%  E)!pp E)! I$I$E)!ꫫ I$I$E)! I$I$E)! @E)* E)!ڪ @`E) I"I I!( $I!  MԴ!!& '!W DJw!  I$! I$! 6!~ H!U ! JI\!hW!a W&ID b誦s&J {]V L!  II$!*U A$! HK! ")$!a` I &!  $$I! $@"!B $@!A! *+  H$E) ! $E) m! M@ "(#%!@!$d$ kszZI$I$ I$I$ (I$I$"I$I$I$I$ 4(I$I$I$I$ (I$I$ZI$I$I$I$Idɜ b7' I$I$!I$I$I$I$ @I$I$aI$I$I$I$I$I$I$I$"I$I$A,I$I$AI$I$ڪ I$I$* I$I$ I$I$I$I$ (&. I$I$! I$I$I$I$`I$I$bI$I$a(I$I$I$I$!بI$I$I$I$I$I$ 4(I$I$ 4(I$I$I$I$*I$I$jz^I$I$ I$I$!AI$I$ PI$I$( I$I$ I$I$A@I$I$I &I$I$!II$A* @I$I$I$I$( I$I$ `I$ $ I$I  A$I!AAۦM$ I(I$ &4IiѢ EmQ$@E$Ma1b)dAIh,8rr^IM 4$M$I$I *I@$A8H$M<I$!!H $!!P $#'Nz^% aAIdZ $X -M& !ڪ !AK / $I$$!BEm(*"!jS!aI & A &I4!II v$0(IYAb!ض/\ mEH a* $I$!H$I %@ !_I d'!@rX!$!PL!!*6,dE!!޺'! z $m=! I!_+ Mڶ!b #HR!_ZU U ˻N!Ab* PJ"I!  m 7I!  =(!^ $I!կ* hԤ$I!8 $! >& !_ !տ #I @!^I!ꪗ Ix%!X0WC& uy_ i&! II$!UU $@o$!* ! IHI! D !!& P$I A   $!((*  IJ!* A E) P%E!( @ I2E) `$A! $iXD  [vm6!* i6ݚv!++ 2!/ DJ+@! & JDN!A,4* IB&!* $!!j ! I$I$d!d `0d!d L$E) L0! -mE)/ h%E)a I! h ! I$! * d!d d!d L&! $ ! * J&! @T!/  !   $!!V_   !A I$I$$!!( @ $$!(P $!!5 $! I$Z5!  \! $$!!5 I$@! $!!譥 I$I$$!!/   0E) Hd!d O0*!~ HI! '  "!@  AA!  $! I$I$$!! I$I$$!!< I$I$$!!(  ,! @[($!c 4@` !  J !$  @ $!!7Zs $!!p  $!!sJ* $!!≭ ʀ !, z.%P!VXp` LI! ..  ! I$I$$!!. h!  ( H$!(( I$I$$!!,8 @$! $! N2;9!W|N` $!0  ! ͠!  P@!  !$!@ 0$!  !! I$I$$!! * @$!pI$N$  T%) / @E)`  E)` E)! I$I$E)$! I$I$E)! I$I$E)$! I$I$E)! I$I$E)!  ky1E)>:  IIE) E)!rz  D! I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)! I$I$E)!J*/ ' Jt$!* JEI!  HI*I!! m&M! '@!W ے$I! !! $! $&A!W S!굯 %bI!_ !@tI!  O Jj'!!& $I$ɐ! M@ I!W #-$I!uj I$!I$I@ Z$I$!* PJI$!+ $!* )mM!+ m$k;l! @ 2!* !H!$! $I$ȐE)  2CE)  Ad$! XdO!H$I$AI$I$A*I$I$ (( I$I$"I$I$"I$I$I$I$I$I$bjjI$I$A(I$I$!``I$IAꩻ*c$H$C`P\I$I$A<I$I$I$I$"I$I$I$I$"I$I$I$I$"I$I$bI$I$I$I$!ZI$I$!I$I$I$I$A<I$I$I$I$I$I$ (4(I$I$I$I$a` (I$I$aI$I$A,* I$I$I$I$I$I$I$I$A I$I$I$I$I$I$ ((I$I$AI$I$A*+ I$I$I$I$@I$I$ I$I$!AI$I$(I$I$* I$I A$I$hZ^I$I$- A$I$I$I$a.*I$I$ I$ $bPH$I$( A$HA$I$AI'* Mi(Eh"$!!F$I`@$ m۶I $H$!!ImR$A`M6I$(pI$IA Im6M&Ib8Ih۶$!!I$I$$!!-h&$!!JĉA(  H$H 4M$MI$!!N$IA006 d(L$K$!0%2`@!m&'IH( I@P**t0*0m{j ^խ)!HI I$C $ @$DA `@ !I,'  NX!$!Id%!H A F'17A! to4&! ZN!~ o%%!!l"!_m! $I$$!*  II!!`! %R!zze! $0$I! HH!A $ I!** $Ʉ$ ! IdH! hDIH! (6 @"Q") aP I!a  I!z* M"I I! I$$! I$jA! $I& \I$!¯  I$! $IL! I6a! $L!  $!(* $I!0! L$HE) `H! $ &!\ IB&! ݚtM5!/ I&ݚt!// 8@̴9!/ tX2a!  HH! I$!* ! I$I$d!d d!d  A&E)  !!* R"I@!ؠ :-e%)/ n ,$! $$%!`  L0! * ! @$E) `B0$H! I$! * Xh$I!( I$L'!&ڨ 0L! /   E) $!! PE!0 `0d!d @@$!!\5 ! I$j5!  yT! +/ @$$!!ϖ\S  @0$!!\[ d!d d!d !H! ( )"A!`` JR%!z  T! / @$!(  !@ $! I$I$$!! $!!". I$I$$!!.> jY$!>p JYm!4 la! @d!d $!!  (!A@ H@$!( d!d ! I$J%! ! -% I$I$$!!< H$! < I$I$$!! I$I$$!! H@h! ` I$I$$!! PȀ @!x&HoK  IT! + I$I$$!! $! $!! '4 I$I$$!!*( @$!!& I$I$$!!( I$I$$!!I$H$ ɑI$!  E) + I$I$1 I$I$E)$! I$I$E)$! I$I$E)!ꪪ I$I$E)! I$I$1 I$I$E)!/> E)!xh c2!E)ˏ 0E) x H! I$I$$!! I$I$$!!€ @$!A $! I$I$E)! I$I$E)! l ,E)p!Y!$@!DL!l! $%R"!Ab`! I2$I! $$I! $)"!j I$ $!I$I$! $IH!( aB$I! !I&$I! $$ !( жmڶ! $$I! M I! I$ !I$I0!A TI$! $I$! M!+  JJD!A(4&  $%!Ap  "<!`b0F&pI$I$( I$I$ I$I$I$I$"I$I$"I$I$"I$I$"I$I$"I$I$I$I$ Ix 8b' H$I$I$I$/I$I$"I$I$I$I$bI$I$"I$I$"I$I$"I$I$A@I$I$I$I$ I$I$ I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$A*I$I$I$I$"I$I$I$I$I$I$I$I$ϫI$I$  I$I$~I$I$8I$I$b) I$I$ (I$I$ I$I$ I$I$! I$I$(* I$I! A$H$`XI$I/  $H$!AI$I$I$I$ I$I$! I$I$8 $H)&M$Nb$H$I( ڦM$aE&M!A $$!!$!!I$M$ II6!AE$I$bI$I  rb' @$I( $H$!AI$I $!! m$$!!I $  ٶm;@R$M$b.IiQ 1ir0+ 0c`XN$! H8(mҶm۰a$`T1G&&1Ld N$ B$a@(  Ah0  $ٖ ضm  I$$!B'` b ^ٶ)!!Il$9!l!_ؤ)E ׽IH!կ~$%!PHP A $!`'KJ ! @$!Ъd;!"@ @ A( !!I$I$E)a@!I$I$!  )"I!@ \!( I$! I$! I$A !* @$ $! I I$! H$I$! I$I$! $I$!Z IB$I!*  I$I!* $$$I! $@$! P. $I! H I!^* I&$! I$|H!AzI$! TIɕ$! &IK!- $P"%!A `  $)!* ! ka۶n! H !( H!A k "m! #=H!b 񰍓m!/« Z*z!- Dj%! mږi! ! I$I$d!d ! H0E) I&! * I&! j%)/ RM$@$! 4ېn!*  $@B ! !! I @ E) @B $@! JI!A4( P($H!P`JI! 0t!+ $&`B2E) d!d I$I$e) $!!p Ez$ !b  X!I$L&!  L! ++ H d!d !H$!( I$I$d!d  d!d ! ! ( !C2`$E) I$R5! JTJ!* @!  ! I$I$$!! $$!!>Z` $!! $!!K> !r$!/  U!  Hd!d (Hf!X(  !A P%! !d!d  *!b (A!A IDI$!5UU 0! I$I$$!!Š., I$I$$!!< I$I$e) I$I$$!! 8 I$I$$!! $!!j Nj5!\xJ&@B!^Z 0! @! @ $!!rJ I$I$$!! @$! $!! I$I$$!!**  @$!I$I$  ɐT! // I$I$E)! I$I$1 I$I$E)! I$I$E)$! I$I$E)! I$I$1 I$I$E)!jj E)! ( PtE).> - E)  E)!^~~ $!!  I$I$$!!** $!!f48  0@$!A  ! I$I$$!!(  E)!zk!=! I$I$!  R"! $II! I$! I!* $I$! I$@$!  $I$!  H!  $%! x HtH! A$I$! $YR$H!  $A$! AIE)a I$A$!"  I$H!! H$I&! bH I!^ I$ !_~ɑ$I=!U_  I$! @H!p+ TDHP!H$I$!AxI$I$'*I$I$ (I$I$"I$I$AI$I$"I$I$I$I$oI$I$ I$I$ I$I$z*A$M$bpI$I$>I$I$"I$I$(I$I$"I$I$AI$I$I$I$ 0I$I$I$I$AI$I$AI$I$ I$I$I$I$ I$I$I$I$I$I$I$I$I$I$I$I$AI$I$A+I$I$ I$I$bI$I$I$I$I$I$ I$I$I$I$aڪI$I$AI$I$A*I$I$ (I$I$I$I$( I$I$aI$I$(I$I$@ $A$`I$I$a-I$I$ I$I$I$I$* I$I$! I$I$ $I$   @$I 8( H$I( mS$HҴ$!!A$H II$!AH$I!A$H$ II !AI$I$I$I>/ I[M$ @$Ia&H$!AI$I[ HIH @۶m&H$I/I  m5* ='I\խ)$!BI$I$$!BLFr8,(@9IA$H$ 8(2'I*In$  ap%@I H$I*I*m۶54Mt/}$%@!b'!WHO$ ($II E!MR!W$!%I!ےd!I! !I$I$E(C!I$I$!I &!ꪪA!ЁP!b(( I$I$!* JW$I!!4(I$I$!I$I$!  $I$! I$I!*I$I$! $I$%! I )!*j R"H!!Р I$I$!* $)"A! DI$A!  I$! II$!"* LBA!"* $Ʉ ! $@$I2! I!h* I"=$! I$J!Wz`I$  $I! I !- L$!&p  J! TI$A! .4! `  $I! M! *A%!x VRi! ΄%!/ P*HW!آ  $I!A& *@*%! I$I$d!d !  H0! * $I ! +ۆm%)/ $!  m! I$!  ! * I$@d!d @"$!  H!A P(!%>e& !*j PK! % I$dB2!* d!d (!@ u`!   $!!~z ɒh@!aJ' ( TA ! - "$E) j)!Ax  @!  ʥT$!$& $!! "II!hJ&!/ 0 I! @$d!d $!!  @$!A H$$!!7X  !b@  ! Bk!' 4@ !  d!d  @0d!d `!  d!d M#I$!A H @!J$L$  ! /  !A HR!A p $!! I$I$$!! I$I$$!!. I$I$$!! H!p KI!a &*  d!/? I$I$e)  ! "(!A@ ! @$$!!'R I$I$$!! I$I$$!! M$j=!ɑI$!b $! I$I$e) ($!a@ @E)! I$I$E)!ꪪ I$I$E)! I$I$E)!  E)! `E$!A8 l E)  $!  H$!!% I$I$$!!< @ $!!B @$!@  !  ! I$I$$!! ** s{؆m$!I$I$! H$H! "i$I!Jꪪ )I$I! I$I$!I$I$! $I$! I$I$!I$I$! '!A P"I!a $I{! $D!aI$I$! P"% ! II !( $A$! @ IE) $I$!I$I$! IB$I!" $d! H$Ʉ! L !~ I$j)!x` $I$! I$I$a I$I$I$I$I$I$zI$I$I$I$"I$I$I$I$"I$I$bI$I$ɀI$I$A) I$I$I$I$/ I$I$(I$I$!I$I$bI$I$I$I$I$I$b I$I$I$I$AI$I$A/ I$I$a I$I$I$I$I$I$I$I$I$I$I$I$AI$I$azI$I$!** I$I$I$I$"I$I$I$I$I$I$I$I$I$I$"I$I$!xI$I$A*+ I$I$ *6(I$I$  I$I$( I$I$! I$I$I$I$ I$I$I$I$ApI$I$b) I$I$I$I$I$I$ **I$I$I$I$* I$I$I  p$I( @$!! $H$!A  $!AMҶi @I&I$I$I !AA$I$^I$I$!* $H$I$I( I$@$$I  !Am&MC, h&m&bH$I$!*Iٶm  `' p\pDd\A$!!I$!B A'*`\ i2<&N( I#P$(ID1$9*V'I gb85 h$I$I$A ܰ9K$ x8QO !U% j$ zP'I$ AI$I$A*I@  ȶ!$'I[!Kd# ($$I  @"%$!b (!{!I$I$E(CI$I$!I$I$!\!$!"$!W?!_U@4o!!`પOB! O!U 'm" !AZ $v"H!U_H$m !!З!U IB!U@2B&!aj@P<! " "I!@ 9 I!b  $ D=!aj II! " !@ A! $ $E)a  I ! I A$E)a @$I$!@! !I$I! @ I&!* @ I!x I$"H!)I&!+ B2Iɔ$ ` d0!. R&R H!a $! I$E)a I$I$E)a "A$I!A@ M&H!b H ! a9!zɷ~  j%!-z ۰mۖi!* !!* @d!d  d!d I$C!* C!!* Ͱ- l!/ &,f $!/ M6o! + L&!  zD! ( @$@ d!d dB"$A!  $I$! R-(!bO$I$ * $HH! %  dB2! ( ! I$I$e)  @ $!!5_ $!!Ri Z @!~pyO'!W 4@!   "h$!@  $ !! I$I$E) L$DB !( `B2$! #)$A!  D!)% !! @0E) $@#! ` `,! @@ *!  ! re,!< ^BZ!6c H!b Bd!d  d!d I$I$d!d  @0E) @$d!d "I!`II$ ?  A! !  ! I$I$e) I$I$$!!< I$I$$!! @$!!\ `%! 9C,! 0a!Ë ! @ $!!sk $!!  $!!rjʪ $!!  $!@ P`!ࠀI$I$  ! + I$I$e) ! I$I$E)! I$I$E)! I$I$E)!  %)j @!A `%)!׫ E)ϯ.> $!  @0 $!!XPpB $!! I$I$$!!ʊ*  $! $!!@ (!@ ! $!H!APIB!U+!ի I*H! $N I!Uר m!aRO!U@O!UO$!a@O$!zUUoI$!]UyM$!!6O$ AI$ APPфI$!!  I/!*U $ W!* HH!a H$I!  $I$! I I!* H$HE) (!(!@ I!A "%RF!@b$J$!Z^VVI$I$* I$I$ I$I$I$I$@I$I$!I$I$I$I$I$I$"I$I$I$I${[I$I$bjzI$I$ I$I$I$I$ I$I$!I$I$bI$I$I$I$"I$I$A@I$I$ I$I$ +*I$I$ I$I$I$I$I$I$I$I$I$I$ I$I$I$I$I$I$РI$I$A+I$I$A I$I$I$I$I$I$I$I$I$I$I$I$zI$I$('I$I$A*I$I$`I$I$$&I$I$**I$I$I$I$(*I$I$* I$I$xXVI$I$A/ BI$I$A( I$I$I$I$I$I$**I$I$(( II$!AI$I* A'J$(  A$ $A$ I$I$!AI$A!A &M$I$I  A$I$x^I$I׵+I H$I$I JI$I$ H $!AA$I 4IE&$!!I$I$xI$Iܗ% I"ٶe A P$`Mi $!BKmٰm+$(pb\I$rĉ)( 'IX( I@$ JD1 V Æ%K$ $!BH$$A 8rD^vx!`_5  $ *z$I$I$ ^? IW ) b J a۴)IJ I-P I$I$$!bI$I$$!bA$I$ I$I!@"<@$ `* " !@a!*$!!p* ۚi+! O ! I!U o+$!W H{<!WU  y!U жIҶ!U $n!WU $y.I!UUI"I$!UUI"J!A$!UU $ɟ!ARIҶ!@X I& *I$!uUU$d$ `I' !j)$zB!!&I4! jy$! $I! $@$! H!H! I$I$! H$I ! A $E)a I$@$! zD@!!($ $$ ! @ J! I$(A!aI$I& 7 $ !/ $ 2H!* $L&! $$! I$I$E)a  I$E)a `0H!* 2Im!꫾/@!z >K!*b I)J ! 0ܐm!+ I$H E) Ͱm! LB& !  ! * m6h!* F`1@$!? MM! * hH$! $I$!* $ E) @$I!A HI!! P"($I!X`ɑI$!A*X $I!  LB&! * d!d d!d !`$$! * @$d!d j(!b@ ^o!a * LA!  "@!(`  !! I$E)  H&! *( DJ$H!A((h % !^ 0I! /  d!d  $!! $!  `!  !& B $!Š KjE!I> )T! ' A E) HC !( ! d!d !! $E) J%P(! HID!ˏ/? p ! @! $!! H! $!! 6  $! ʨ( Қ)@!! bɐ!ˏ/? ID! %5 I$I$d!d $!!O￿  $!! % I$I$$!!*   d!d !@ ! O$z&!xxɑI$ /- $! I$I$$!!  I$I$$!!,< $!< I$I$$!! $! @!a !$!! % @$H$! \ C4xE) $!!B(  $!!%% @!@ 0!  I$I$$!! @ $!!P`@ $!! $!!C K!W I޶!U $.I!UUI!UU?I"!jj?IN!b $i"5! j yr! h*IҲ!aH!N!O"I!UI>!I$b _$INI$ I$$ *I? % @Iɛ$! U V! $R"I!Ap TI $A!a   I!A $I$!*HL&!!(zI$I$AI$I$AI$I$<I$I$jꪪI$I$ I$I$"I$I$ @I$I$!.I$I$I$I$I$I$7 I$I$ؼI$I$// I$I$I$I$ I$I$"I$I$I$I$I$I$"I$I$0I$I$AI$I$A/ I$I$!I$I$aI$I$I$I$I$I$I$I$I$I$ pI$I$aI$I$A>. I$I$뺾I$I$ $I$I$I$I$I$I$I$I$I$I$I$I$AI$I$  I$I$I$I$I$I$I$I$I$I$I$I$I$I$(I$I$וI$I$bjI$I$bI$I$I$I$I$I$I$I$`I$I+ %s$ I$!( H$I$ I$I$I$I$!AI$A$I$I$$H$x^I$I$ֵ%- $H$ I$I$(* I$I$!AH$I$!AI$I( I E&!(@`I"I$I$IV5 Il۶a 9px\Im۶$!!II $!!-P-P $!B'IXr\UI6H$(Ii$( HI4("'IXa^UI-h۶m&AppI$!Bm$$!!t a^% 0`M'$I$_I$I b $L Wc aAJh !@$ !I$I!۶ !'!W O!UUb$[ UկO!U~  % !*U  N!W $j!Wu!IR!U))!  !'I$ !H! !j!  I$I$!I$I$!!(!z@!!H!_I"!UI' !ꪂ$} b`pIB'I%$I$m  I$!UU  !  lI!ʫ PI !!)? H F I!!8  H$! H E)a dB$@! $$ 0! @J! I&*H!)$I&   \!a +  I&C! ! A A$E)a I$H$E)a $ E!  Ʉ`B! %5( !z/hB?!^{ tIT!% !I$!* $ 0! IE) &i&!! $I! + mX ! 3Q! : JM{! - h!A  C$I! E) C۰m! $! * Z"-* !XII$!UU $!  L$! ( Hd!d $IP$!PP I! *( " !@ ij !  ! 7  `$E)  HB&! * H$$E) R"%$ !  I$!** $C2 !ꨨh$ $ $! `0E) @@d!d Hd!d $ ! @$d!d P+@! 7!a $HA! "i I!` )kv! (( Hd!d H&DB0!(  $0! IH!`I$M$!  I! I$I$d!d H$!!' I$I$$!!  @ $!!p` (!!@ ! Lb%!? /!Pr 0! Hd!d  @d!d !A @0d!d d!d )! P5!ࠀI$I$A**x % !!" I$I$$!!((  ! H$! I$I$$!! I$I$$!! . $!!@ `$!!7] $! (C%)ώ  (R !A@ P% H!A p9P!   $!!rJ $!! TP ! $!!& !!( mP$!!!@$!!pI$I$E(CI$I$!I$I$!!!!!!P& I$I$!I$I$E)a !~I6!U~I$!UU_q$I% I$I$* 'I$!* @I $! $H! * ("4!`rAb%N$A`I$I$+* I$I$ I$I$I$I$aI$I$"I$I$"I$I$ I$I$"I$I$abI$I$I$I$bI$I$ I$I$I$I$I$I$(I$I$"I$I$I$I$(I$I$I$I$ I$I$A?I$I$b*I$I$bI$I$I$I$I$I$I$I$ahI$I$ I$I$I$I$AI$I$A+I$I$"I$I$I$I$I$I$I$I$I$I$ I$I$ I$I$!jI$I$!I$I$ `I$I$I$I$! I$I$I$I$I$I$zI$I$A/I$I$I$I$I$I$I$I$ZI$I$ I$I$I$I$$((Q$ I$I  РAI$H$I$ ( :I$I$4I$I$I$I$( I$I$I$I$V׵-I A$ I$I$* I$I$II$ .&I$I( I"E$I$I$`XI$I$a/ i۶m"%JKZVI-ж$!!Mm۶$!!NNb8 @$I"!Ai&I$*I$I$ I $I$/ h۶$!!m۶Mж$!!h6$!!,%NZW5I8 p=&I$I$I$ I$@!Z`XpD$ܗ@ %۶m@ @ $!4$!b}$!WU$I$I$I$ [q$=]U$IlW }I!J A'OZ H!տP!*I$!R"%APm۶ R"$$!Z A$!oj@ ) b* $ !!ꪪL A&,I$I$E)aI$I$E)a$!@0 !`@!H!! @ !I$I$E)a!}!WI$ !UWɓ$I!UUU~I$I$* $I$ JI$!* $ ! I$E)a I$I$!I$I$! "I$I!B TI$I! $@dB2! HI!z I$I!~I$!b+ $@I! !L0! $I$!"* HF$@!(  I$! * L&I!jF!bEz$!A I,%=![ "$H!jꨢ R.%$A!!  $IE) I2I! m״! * [&h!蠀 B[5kV!Az( Iv! - H&!  ! * $ ! $@! $ ɐ!* z"%"!!@ I$ A + @I! I! ** H$ $E) dB0$H!  !! "h$!`USV {量 tAT! - A ! ( I! *( $@ E) H$A ! $@jD!(@! $2h!(` V$I!9*  I! I$I$e) d!d @d!d  E! X%! (` Je!b &.  ɐHE) `B$B"! H! B$@E) ! ! ( $$R+!Р `"%#)! ɕD! //  d!d @ d!d $!!(" I$I$$!! $!!/ @$! ` "Ȁ@!p !A% - <!-5W ! @d!d  !A4 I$I$e) !E)   !  @(!!@I$I$!h ɕd! *-/ $! I$I$$!! " I$I$$!!.<8 I$I$e) I$I$$!!80 @$$!aP T@@!b $!! @d$!,80 A! ,  H$!  !& I$I$$!! *** $!! &4 I$I$$!! @$!!4 I$I$$!! @, $!$ I$I$E(C @ AI$I$E(CI$I$E)a!HD A4( ۶mۦ%) &jE)A I$LE) UUU R%ID! M۶m $!!@!!I$I$!!ꪪM WzI$@!I$I&$I$ I$ I$I$I$I$ I$I$(( I$I$"I$I$aI$I$"I$I$I$I$I$I$I$I$I$I$7I$I$PI$I$>/ I$I$(I$I$`I$I$I$I$AI$I$I$I$ I$I$I$I$AI$I$A/ I$I$aI$I$ `I$I$I$I$A@I$I$ I$I$"I$I$ (I$I$AI$I$A?/ I$I$"I$I$ajI$I$I$I$ApPI$I$I$I$"I$I$aI$I$AI$I$A I$I$I$I$ I$I$`I$I$I$I$I$I$"I$I$hI$I$A)I$I$"I$I$I$I$I$I$I$I$I$I$I$I$A`bH$I$(+ A$H$!AI$I$( I$I$a I$I$a$I$I$ I$I$`I$I$^WI$I$ I$I$*I$I$I$I$ I$I$*  A$I A$!I$I$ . BI$IA@A&Mb $!!$!!ТE&HI6E$I$bI$Ib*I @$ (I)ZAm۶$!!I$A$!!EѶm$$!!N$WU5 P$H$I$I$/m3' `\ĉa x5+`@-  ,I@` )++*Id0`! H&!_<&I$AI$I$ I$I$/I$I I/%!UUyS! !ʊ!B!)!@"%$C ``I$I!˶ öm V"`K d  I۲! Mɖ !b ҤmE! mm E) MI%) #7N %)( "5kE)j I%)b nI%) ۴I $!@ ۶nE)+ $IE) $)$!j IE)a ۺm !ꪪ $I! m6m !ꪠ!$!I$I$!I$I$E)a@!_ꪪI$ !UWI$I9I$I$* I$!  I! $ $! I$I$!  I$E)a I $E)aH !ꪪ $IH&!+ I$A!I$M= *@&y! * L&C!!!n $II! I$I$! H$ ! I+H! *Th!} tJI1! mۖm!/  ! I$I$E) $A! !I$! * &i$(!@ BWA ! 0Ix!*  $C! "I0I!@+ 9DH$H! *( $($A!⊊0!L&@ ! ɕ! % I$I$! $ ! * $I$!` L@&$0!(  "! Jڤ*H!Ah@$![y $HI! H&! ! ! II$E)a  (!.*` IJ!!  ˰U!.: ڮKf!8  C!!  ! * I$I$d!d  @d!d PI! "$A!` )/K!iM 4@ ! $!E)  H&! (( !H!@ K@!    &E) ۢm&m!ꨨI$M$   I!  d!d H$!!% I$I$$!! L@!A P  ! d!d G=!\ z'P.$! h  TA! d!d H H!4 I$I$e) @$ d!d XF!a8 $!!k. j%5!xI$I$//? 0t!!A !A I$I$$!! I$I$$!! I$I$$!! @$!P I$I$$!!‚  @$!! 7 (i! e!  $!  $! (( I$I$$!! $!A I$I$$!!  $!!rbB E)! E) m6kE) m]E) Fr1)E) j{ E) m6IE) [ME)( 4iZ$! mm E) ɶ؆mE) I$I$E)!* I$ $e)E)UR [m۰mE) fnضmE) ۶1²IE)A` I$I%E)! I$I$E)!* xE)a( E)4IblE) U I$E)!UU ZuPE) I' E) I$I%!~I$I$I$I$I$I$I$I$"I$I$I$I$I$I$I$I$ $I$I$I$I$AI$I$ I$I$ I$I$I$I$(I$I$I$I$"I$I$I$I$(I$I$I$I$AI$I$A?I$I$!I$I$ajI$I$I$I$I$I$jI$I$I$I$I$I$I$I$AI$I$AI$I$"I$I$@I$I$bI$I$I$I$aI$I$AI$I$`I$I$A>/ I$I$ I$I$**I$I$I$I$I$I$I$I$"I$I$ pxI$I$A?/I$I$I$I$I$I$I$I$I$I$I$I$I$I$.I$I$ABI$A$AI$I$(I$I$(I$I$! I$I$( I$ $I$I$bx^WI$I$b- H$I$(I$I$@I$I$aI$I$ I A$ I$I$!hI$I$* iI!A$M$A  $!!$!!ME$ (HI$@$I$aI$I$ $H$(IE$ H$H!Amm۶$!!h 4M (IX$9Uz@"%I$pI$I5 Ip1 <:NxWI$!!I$I$$!BA$I$i P 0<&X<'I$` $I$*I$I$ I$I+I 6mc! $I۱-%) M$)E)ڷ( M&E) IbnmE)U mmE)* IE) U  mE)!$ I2l[-e)! I2I$e)! II$E)! ,( H$e)E)(`:HnE) $IBe)E) $Ie)E) $Ie)E) ؖ$Ile)E) $e)E) $e)E)^ mm۶e)!` I$I$E)! [mmE) I$I$E)$! I$I e)E)U E)!j demE) I$ $E)$!(ۖo&`E)b I$I$E)!  E) @ $(E)` IҶmѶE) U IR'h۶E)!UW( &E)` M>KE) I$}!I$I$*)I$  _  !* H")!@!I$I$!!ꪪ $@! "H@R!+ I"&"H!x K$! "H$ !h !$IH  @$ AI$I$! C$A!* H"! @"!Zk !|X&! . $A!*  I!! I!E) @ ! "I$I!B * $H!! PZ鯔!b'  $[! / )(@!A@ @$I!a I$H$E)a b$(A! ( I!*I$h$  AT! / H$I @"H&I! ` Ŷmۺ!!  H! $`H$E) ͤ^+=!` WjV5!%{ $II! ( $I",!@ IH! "A$ !⊊* $  I!* @ !ꪪ @7A! $@! *" LH&`B0!(  ! @!  E) @E) zEГ,!a(( Tz4!%6  `H$E) DB0 0! !! DI$H!7* I! ** $)" !@`$ !  D! / #l! @0!  d!d I$I$e)  d!d I$I$d!d 4 !Xp  @$!sAM L! %5 @$I E) C $BE) @! d!d !d!d $$!!?] Ȁ@!`I$I$ I\!A.+ P$! I$I$$!!(* I$I$$!!  @$! ` I$I$%)!ժ E)jj qۖaE)" @E)!__< mmE)m I۶h۶E) E)@ ۶ e)b* ImI%e)! IlI$E)! I $E)! ɰmؖ$e)E) m& E)A $$IBe)E) $Ie)E) $Ie)E) ۖdIme)E).* $e)E) HI$e)E)zWv<ضmE)! I,I E)!  IdÒ,e)E)* II$e)E)* I$ e)E) I @$e)E)/ I$I$e)E)w I$H e)E)܃ I$I$e)E){ XE) [mE) `  d۶E)a,4 I I$e)$!  E)  I$I$1 I$IE)!. E)!$ II$e)!* JE)W I-ömE)U I$E)U] I$cmE)UU I$I)!I$I$I$I$"I$I$I$I$I$I$I$I$/I$I$(I$I$@@I$I$ I$I$ I$I$A*jjI$I$AI$I$I$I$AI$I$A// I$I$?/ I$I$"I$I$I$I$I$I$I$I$"I$I$ I$I$AI$I$ * :I$I$I$I$"I$I$"I$I$"I$I$I$I$`I$I$I$I$ pI$I$aI$I$I$I$I$I$I$I$I$I$I$I$bI$I$!*I$I$ I$I$I$I$I$I$ `I$I$뻾I$I$I$I$~_I$I$kuI$I$ I$I$"I$I$* I$I$! I$I$`I$I$I$I$b`x^VI$I$- I$I$I$I$ I$I$! I$H$ I $ I$I$ (I$I$a/ I$IbI&H$aI$I$ I$@$!AI A$I $( I$I$I$I$+*  $I( Ih$ II!A @$$!!m&I A$@$I$xVI$I5 1H$ pĉ\P-$!BI$I$I$I* $8&*X='I$I$Ia* I$I$!W} I$E)A I E)U E) E) I$I$)( ú-۶mE)@ k@ E)* I$H$e)E)j I$I$)( I$I$)( I$I$1 I$I$e)E)z* I$H$e)E)-W H I$e)E)_ II$e)E)^* I $e)$! I$ $e)$!>1۶mE)` %I$e)!mKxE)a4, $ۖ$e)$! IH$e)$! I $e)E)W IH$e)E)- W $I$e)E)  K$$e)E)\ II$e)E) @$ e)E)x I$e)E); A$I e)E)RԪ I$Ie)E)Uj/ I$I$e)E)_ݹ ض-۲mE)@ 0lٶmE)В1ME) b II$E)$! ۆm6,E)` I$I$E)! I$I$E)$! ۶m0E)A` I$I$E)!* 3l۶mE)Z IE)ר |@E)ט $mE)!UU{ I$E)a I$I$!I$I$!H !ꪪI$! #$I!_!Hj  &@0M!+ $I)!x! I$I$! C$A!* DR"(! l"%NA!!ڠ To!/'  d2!. X;ݚn! I$E) I$ ! ! I$! ɕi!!/ h*%H!R z ˆLXt!,  ! * !L! ((  $! `@$C"E) %P"H!A .`$ !A-!ym TAJ!- II$!** 'JD! ( $I$e! H$A$!  $H!H@ IH!a I$N$>> "iI!aB  HP!!Р @ d!d I$I$e)  @$!!^  !a&& "! {$!% IDH! ! $A IE)  L! (( @ d!d H$H!$4 H HE) $!!b㩥 M'z!!^zx ɕdE) I$I$E)!} I$I$E)! I$I$E)! I$I$)( I$I$)( Xe۶ E) E)  I$I$)( I$I$)( I$I$)( I$I$1 I$ $e)E)V z $I$e)E) II$e)E) U I $e)E)W} I$A$e)$! $H$e)$! dڶmE)a(4`be)!@jmmE)  $$e)$! I$e)$! I$$e)E)U} AI$e)E) $I$e)E)> I$mZe)!$I E)b  I$Kae)! I$IaE)$! I$I$E)! ۶plE)a&( I$I$E)$! H$I$E)!* $I$E)! $I$e)$! I H$e)$!  KaضmE)4 I$I$)( I$I$)(  mۆmE)4 I$I$)( I$I$e)$!( I$I$E)! I$IE)$! A$I$e)E)U $I$E)$! mҢm۶E)!\ IöaE) I$E)UV I$IE)UU_I$I$ UUU|I$I$@I$I$I$I$ I$I$"I$I$ I$I$I$I$A(I$I$aI$I$AI$I$AI$I$ I$I$"I$I$I$I$I$I$ `I$I$I$I$I$I$AI$I$!I$I$"I$I$"I$I$"I$I$I$I$I$I$AI$I$AI$I$ڪI$I$I$I$I$I$I$I$I$I$I$I$*I$I$ I$I$A+I$I$ pI$I$I$I$(I$I$I$I$"I$I$I$I$bI$I$I$I I$I$ I$I$! I$I$I$I$A I$I$ЦhI$I$!+)I$I$ I$I$** I$I$! I$I$II * H$I$`I$I$\W5I$I H$H$I$!A $I$!AI4A$II$ H$I$^I$I$+ I$I(  6m$I$I$!A$@$M$I( d9H$H$I$I)7 %J$XVUI$!!$$!BMi/ O$O#!! m6 E) O2 E)* E) I$I$E)!/  E)A@ E) I$I$)( I$I$)( I$I$E) I$I$E)! I$I$E)! $I$E)!* I$I$E) I$I E)$! I$I e)! I$IE)! I$I2`E)! I$e)! I$ɶe)!  I$$ e)! Ie)E)U IR@e)$! I6Ȇe)$!$In#8E)A` I$e)E)U IҒ$@e)$!1e)  I&mIe)$! I$$ e)!  I$M e)!( I$ e)!$I %E) P I$[le)! I$IeE)! I$I$E)$! ۶%۶aE)bp I$I$E)!  I$E)! I$I$E)! H$I$E)$! H $e)E)/ ۲ mE)` I$I$)( I$I$)( E) I$I$1 HI$e)E)[ I$I$E)! I$H$E)! I$I e)$!* I$I$E)! I$I$E)! m-ڶE)!_ I6mE)!U^ $)E)ah )Q4$!Aj` II!A ! "I"%I!B $R !A !I$I$!  I$!* DP"(!/ J &C!\r I$!5U Mh!/ !  $A$E)a  I2$I!ꪪ !A! +* L\ !> JU*!sm $I! + !ɐL&!I$I$! $AD!A( ")I A@A( b DI$!/$! $5Ң !!` I!! H$$! `$! ! P.5.i!Xx`h$䁒![ym R"hI! ` $I&C"! H$!I$I$!!!j Z !  @I$I!* I$H ! I! R %@! $A!  IK!( % jO<!A( TjV!' I$H$! A& 0! `H$A!* A $!  ! * $@ 1! x%@(!`  I$!A ko  H!7 .(!@ !  d!d d!d HJ!!$, X6I#-!\~uz P"$)! B TA ! $ dH&E) P*%&!! @R%)ڰ $@ 4E)p E)!ի I$I$E)! I$I$E)! PE)A8 I$I$E)! I$I$)( I$I$E)! I$I$E) I$I$E)! I$I$E)! A$I$E)! I$I$E) I$I$E)! I$Ie)!  I$I E)! I$ImE)! I$e)! I$)Ie)! Ide)! Ile)$! IBHe)$! I$e)E)U mKMXe)a,$ I Ie)$!]:Ce)*`@ I`e)E)U I$%Ie)! I$de)! I$le)! ?e)! _Tme) I$e)! e)! D I$e)! m[i$e)! iÖ%$e)E) Imؐee)E)" IҤ Ke)$! I$d e)! I$M e)! I$I-E)! I$I$E)! ˰l۶m%) mKmE)(6( ۲m۰mE)@ A۶mѶE)!*4 I$I$)( I$I$)( I$I$)( @$I$e)E)u I I$e)E)W/ I$H$E)! I$I e)$! I$I$e)$! II$E)!` Lm E)~ I$E)U I$j%) ߪI$I$ I$I$  I$I$(I$I$pzI$I$AI$I$**.&I$I$/I$I$@I$I$aI$I$I$I$I$I$I$I$`I$I$AI$I$A?/I$I$I$I$(I$I$"I$I$"I$I$I$I$"I$I$!@I$I$*I$I$aI$I$I$I$I$I$ 6,I$I$I$I$I$I$zI$I$A+I$I$ bI$I$a I$I$I$I$AI$I$I$I$I$I$aI$I$A 8I$I$I$I$I$I$ I$I$I$I$*I$I$A I$I$A( I$I$I$I$ޫ)+I$I$"(*I$I$I$I A@@A$I$bI$I$XVWI$I$ * 6m$I$I$  $I$API$H$I$ I$I$z^I$I$+ I$I( I$M$b&I$I!AH$`M$I $h$xI$I$~w-I)4 @$I ɟ+$!UU E)UU +E)* E) - I$I$)( I$I$)( I$I$E) I$I$E)! I$I$E)!* I$I$E)! P%)!0m E)b I$ن e)!  I$ؐdE)! Ilض-e)E)u  ɲm$e)E) IZi$e)! [$e)! lI$e)!*`۶m;e)!z Pme)! `۶m;e)!z~ lFE)A $I$E)!+ $I$E)! жuҶE) WmL8re)a`ȆmE)a XIe) UжҶe)ж߶e)fIlE) ժ $I$e)!жm[?E)DlE) %e)!* m'e)пe)! mme)! -YI$e)!  ۆ X$e)! `$e)E)] IR@e)E)  I&Xe)E)V I$e)! I$lCe)! I$K2 E)! I$I$E)! @E)P ذmmE)b I$I$E)!̶mømE) I$I$e)E)m{9 I$I$)( I$I$)( $I$e)E)U II$e)E)^ I$$E)!( I$Ie)$! I$I$e)$! HI$e)$!  S-ڢE)!^ l6lE) IE)!UUx ۶nZE) $I"(!b*@!!a $II!  I$!** DP"(!L&@O!W^z9O }  FR)!/ $ ! H"$I!ʪ HI C!! .L`!!\`H4!{ (@I!!LI!A*`!ꪪ0 !J&@(!I!+-/@ !  I!  $I$E)a  I$! * I„HH!((  h$!A ( %!7 IH$!* $JE!I$I$!@ !ꪪ! K!UR+!7 u@6,! R$ !a( $IR"%!`  m! l&h!+  E) "a$!bŠ"P!Yme TA !- II$!*"*  H$! *( I$@$E)a H$A$!( P I!!p "I!jꨨII$ = J 0I!A$ " !@   ! I$I$d!d  d!d @$d!d "$!` )@E)e E) AE)!( I$I$E)! I$I$)( I$I$)( I$I$E) I$I$E)! I$I$E)! I$I$E)! [efE)   I$Ke)! I$۶!E)! I$le)E)U  IҖ-&e)E)p Y ؒ$e)E)u I m$e)! I$e)!z ۰%I$e)!f۶'e)!W 0۶e)!9E)!` жiE)  $I$E)! `۶ce)!m$me)m 1E) 9mKE) `Ibe)жI޶e)fIbE) U жq۶e)! $I$E)! @$k;E)@-E)IRI$1II$1.n1_eI$$1eI$$1m[?`f1_ .I$IB1!U_m۶e)* `E)* m6E)(@$E)*4M$e)* I$e)  2$e)$!  I%me)E)^ I$Æ e)! I$I`e)! I$I$E)! I$I$E)! I$I$E)! 38۶mE)pp I$I$)( I$I$)( I$I$)( $I$e)E)w I$I$e)E)W[ I$@E)! I$I$e)$! ۶ ۶-E)` ۆE)! u-2Ae)_` I$8lE)U] I$I(E)UUWI$I$hI$I$ I$I$I$I$ajI$I$bI$I$"I$I$I$I$"I$I$A`I$I$AI$I$A?I$I$(I$I$`I$I$I$I$"I$I$"I$I$"I$I$AI$I$A?/ I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$A I$I$I$I$I$I$I$I$I$I$I$I$AZI$I$a(* I$I$ *I$I$I$I$I$I$I$I$I$I$I$I$AI$I$A/+I$I$I$I$ I$I$AI$I$I$I$I$I$`XVUI$I$% I A$I$I$( I$I$!AI $H$I$( H$I$hZVI$I$- I$I$A $I$<<I$I$$ I$IIa`A&M$p\ I$I!WU- ɛE) ME)U )E) I$I$1  E)b@ E) I$I$E)!* I$IE)! I$IE)! I$le)! ۖHle)  I2l$e)!ڄdmE)b(hpe)a. `e)! @۶mE)!u *HE) $E) X$%)  XE) @I$%)!UU  !A@ E)) H%)b* PE) %E)z 6nE)  `I$1$!*eI$1!UWI$1!UU ?I$1! U $I$1$!U'I$1z $I$1! I$1!U_e@b'I$1!UUJHI1e?I$1!II$1 II$1UeIɟ$1!U*UJI&$1ըeI$$1.?1.f1.I$I1!UU NE)נ ۰mdYE)D$E)DN$ٜe)  I$e)!  l i$e)$! I-de)E)j+ I$0`e)$! I$K e)! I$I E)!* I$I$E) * I$I$E)! I$E)! b۶mE)A I$I$)( I$I$)( $I$e)E)  I I$e)E)^ I$ $e)E)U\ I$Ie)$!* I$I$E)! (m[E) /c`E)!~8 IE)j, IE) I$I$!!ꪪ X,!ϣ$PB !UW^kI!U  b(% ! I$H$!I$I$!H ! #HA!)Kj!m^ !9!a!I$I$!X$`! J aBI$I$A* ! HH A8 I$H$E)a $I$!!B $IH!  M#$I!怀E!i TIK! R"%$A !а!I$I$!H!!ꪪ #0$!>P!  ɐ! $EZ"U! $C IE)  !A&&  MR$I!: e,!Xp E!%7 I$H$! H$A!' I! A I!* $I$Ȅ! I$I !H'`$ \Xx`)!  IE)  IB&!* HHE)!UU `E)!UU I$I$E)!׫ I$I$E)!+" I$I$1 EE)A I$I$E)! I$I$E)! I$I E)!  I$I E)!۶-&E)b` Im$E)! ɂ!ؒ$e)$!ܼ-E) mܖE) жm:E)!{_ ضmۺ1E)z `E) 0`$E) $%)*+ hm!(( (R# E)Aj PiD%)!  DPE)a $E)!U XE) DE)( mme)!. .I$1!_nI$1!UUBI$1!`UU 'I$1! $I$1!$I$1 I$1!*I$1!UWeMI$1,JMI$1e OI$1! Ibv1!_ I$۶1! le)!^ f1!.uҶ% e)qm le)mE) &E)~fߵe)жmmE)* HE)j i @%) 6ME)ߠ t $! 1 hE) ۰m֧E)*mF2E) ۖmE) [6ٖ$e)! I¶-4e)$! I$e)! I$I e)! ۶mܖaE)  I$I$E)! I$I$E)!+ I$I$)( I$I$)( $I$e)E)~ HI$E)$! ޶m؀gE)a $@"#E)` m[mE) I$I$)( E)x I2&۸aE)UZ I$J@E)UU^I$I$I$I$"I$I$jI$I$ {I$I$"I$I$AI$I$!**I$I$I$I$I$I$I$I$AI$I$ ( I$I$I$I$@I$I$A>I$I$AI$I$!@I$I$ I$I$I$I$`I$I$I$I$aI$I$A?/I$I$ I$I$I$I$I$I$ I$I$I$I$I$I$ ЀI$I$a I$I$*I$I$I$I$I$I$I$I$I$I$AI$I$A+I$I$I$I$I$I$I$I$I$I$I$I$AI$I$A/ I $H$I$( I$I$!AII H$I$(4I$I$ `I$I$% I$I$*I$H$ I$I$!AI I$( I$ $!UU- ?E)UU% I*E) E)!) I$I$E)! I$I$E)! I$I$E)! I$IE)! ۲mmE)j IдmE)  H$e)! mѾ?e)!˰l۶qe)b. $E)!U @$%) m;! m$!( 6Iv! f;6! K$!a vBn$! & !@ ܠ0%).) LE)!W mۆeE)mm1AB-Y!Ie)+ % e)!^LB$@e)=@e) I$e)! IbVۆ1E)U IB$Ie)E)~ IB-Ie)E)U Iжe)E)U Iж1E)U IҶֶf1E)U I@e)E)_ I [[1E)U$ 0e)` ImԆ1E)ժؒf1b. Iö1! IB&e)! I$ۆe)!6e)!*f1!]^ݶl;`E)Mm e)* (E)*z۸mE)ؒ}˔e) @E) ME) l%) 6$!  0As%) ߠ $5E)@$E)IxE)  I$e)! [lde)E)% I6e)!  I$Ke)!۶mDE)( I$I$E)! I$I$E)! I$I$E)! I$I$)( I$I$)( $I$e)E) #m6,E) (@gۆce)!D-ÒE)O mٶmE)  I$I$E)! m `E) ۲mE) DM!!&.I$x"$!UWV[G D  / J %!I$I$!I$I$! !$I2!+!zzE"!mwp!ˀ@ !X 0!I$I$E(C-I!a *A( !sII$ /7!ꪪ !!. !ꪪ! !+ I! z%%!h`gZ$ * II$!*(  ɐ`H&!I$I$!@ !! !y"!:z ȄY@6! JT$I!$(  I$! **  $E) H$@$!( A"(!@ 2I!AA1Ұ Yye 4II!!!I$I$!P !  $I$!*(  ɔDI:!-%  E)!U I$I$E)! I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I E)!cmE) ؠ I$e)E)^ نdI$E)!۶qE)@ m6E) &E) ؖ$%)  a$! Id! &II! 6@$! It$! Nm$! $@h! !E)!Um۶mE)!/۶mE)ybE)! `e)! ضme) wqBIe)AL) me) IՆ1$!* IҒْe)E) IBdKe)E)W I%ɶe)E)U IВe)E) Iֶf1E)U Ivֶf1E)U I@e)E)W Iav1E)Um+If16Cf1jm֐$e) %$IBe)$! $I-e)$! $I$e)E) UMQm۶e)A$ $I$e)E)0U ڶ$f1E)U ֵ$f1E)U $e)E) mkf1E)z I$@e)! IB6e)! YE) -~bۤae)}̲$ HE)ߪ E) o %) Z#I] I!bh b OJ! P$mU! `* nfE) l{E)!$v|He)(* [de)E)`- I$ae)!$I$ 0E)@ I$I$E)! I$I$E)  I$I$E)! I$I$E) 8L6rE)a( X,I$e)E)` I$I$e)E)Ux+ I$I e)$! I$e)$! l۶-E)@m4hE)xI$`7IE)^ I$ME)}_I$I$I$I$I$I$AI$I$A>I$I$(I$I$ I$I$bI$I$aI$I$ @I$I$I$I$AI$I$A** I$I$I$I$a.I$I$I$I$I$I$jI$I$I$I$AI$I$A I$I$a I$I$I$I$I$I$I$I$I$I$_I$I$A(* I$I$I$I$I$I$I$I$I$I$"I$I$aI$I$A//I$I$I$I$I$I$AI$I$AI$I$ BI$I$AI$I$A?I$I  H$I$( I$I$I$I!AA$I$(*I$I$axI$I$ 6' I$I$ApPI$I$  I$I!UUU% IE)UU- I$E)+ I$I$E)$!+ I$I$E)! E)  ۶۲aE)B m0lE) I$H$e)$!* I$I$E)! l۶mE)! `y̖E) (* $E)W H$!~W I!U Җ$Ib !+ !*$ Is$!* 9OE) i;E) vl۶=e)!*9e)aj IK&e)!  IҖؖe)!/ IJ$6e)! $K`$e)! )@L$e)!@`Hm!YE)prm۶f1 $I$e)$!* $I$e)$! $Ie)$! $Ime)$!** I$I$e)$! I$Ie)$!۶9E)` I$e)! I$@$e)$! I$e)$! m e)!@ E)  I$۶ae)E)Uòm&AE)A` A$Ie)$! $I%e)$! I$Ie)$!  h$IBe)$!* $I4e)$! P2$IE)Ap !I$e)$! I$f1E)U N$1E)U @J&e$e)E)  $ $4e)E) I2kg1$! IҶ֮1!tL$e) k e) _ӺmE) o>6lE)~ @g%) :iMh$! I$!A& ! ")mm!A@ ɐdlhE)+@$E) ۲mE)a@ f`e)!  I%6`e)! I$Ie)! E)*  I$I$E)!/ I$I$E) * I$I$E) ۹%6E) $I$e)%) I$I$e)E)V I$@e)$!* I$e)$! I$e)E) ۶mېE) $- E)` I$dmE) S! AP!I$I$!!ꪪ !j =!^z1/4qM" p!@ *`&!A I$I$E)a!ꪪ !J'@0$!a   *@' ! H$I$!%! J(A I! R"A$ !Z* !ye AH!H A0!H a!(  H)!p!  b;!I>P !I$I$! @ ! I$ !  9R" !zZ* LI$!(( ʧfZ%!\X  \!%%7 JI!A @ !I$I$! ۺ-4E)+ IE)!Uի E)!* I$I$E)!  E)j I$I$E)! ۶}[mE) I$$E)! I$I$E)! I$I$E)! m۲1E) j  P%)! f;$! $Iv$!_U 4ۉw! Z۶m+!!J ۷!  $! !g E) [mE)!/ m۶e)! ɘ Ie)6 I`e)! I ٲe)$! $$e)! dm$e)E)W$qdJe)к9m#IE)1Vm۶f1  X$I$e)$!( $I$e)$! H$Ie)$! @$I-e)$! $I$e)$!  I$I e)$!۶d@E)$ I$ e)E)^U I$ e)$! I$e)$!$I" E) I$ e)$! I$le)E)-˱mIE)4 I$Ie)$! X$Ide)$!( %K%e)E)x `2 e)E) l[%e)E)dqD39e)a` lIe)E) - [$e)E)`z Id`e)E)U( I%0e)! I$me)$! I$me)! [$Ime)E)UW $I$e)E)Uz $ؔI$e)$!* )I$e)!  %$e)E) I$Жe)E)z I&C"e)!@oe)!_uB$ HE)_ ]״%)A m ! $! I$!  $%) U ۰m%E) me)!m[qE)  I¶ e)$! I$Xle)! I$I2,E)! I I$E)!<* I$I$E) I$I$1 $I$e)E) -۲mE)@@ ۲mmE)` A$I$E)! I$e)$! H e)E) mۆmE)x I& E)U^ I$I$!aWI$I$ "I$I$ I$I$ ( I$I$"I$I$I$I$"I$I$I$I$A𨨪I$I$AI$I$I$I$I$I$I$I$ .&I$I$I$I$@I$I$!))I$I$I$I$pI$I$I$I$I$I$I$I$I$I$A6I$I$ *I$I$I$I$I$I$`I$I$AI$I$I$I$AI$I$A/+ I$I$ I$I$I$I$I$I$Ah* I$I$`I$I$*I$I$a-+ I$I$I$I$ I$I$ $I$I$I$xI$I$A/I$I)( I$ E)UU ITE)) I$I$E)!)  E)j E)  I$IE)!+ I$I$E)!+  ضmE) a۶m;E)!_ -E) Қ%) Nb'!d'! O۶m' ! I! N* E)կ* IҶmۢE) U I$I6`e)!LI@e) Imme)$!* 0˖$e)E)  mI$e)$! %I$e)$! @$I$e)$!*X̶me)A. ۶mٶ E) ۲mۀmE)@ ٶm`E)A I$ؒae)$! I2,ٖde)E)/ ɒ K%e)E)  I- e)E)   I$e)E)? I-e)E) ÐdIde)E)?7* ۶ Ie)E)*/ K%me)E) ɖ$I e)E) /  -X-e)E) ؖdI$e)E)* ۰ ɶme)E) *!e)@IٖmE)ئe۶Ie)  ؆%2le)E)Ze0IE)A `6 e)E) %2i4e)E) dIe)E)  ˀ˲de)E), d۲ 2e)E) &Hᘒe)a  ˂ ذ%e)E) I,ؒ`e)E)W  I6ɖe)$! I$le)$! I$m[e)$!  $I`e)$! $I%e)$!  $I$e)E)"UW h$I$e)!0" $-$e)E) l%e)%)  I2 @e)!m4E) ӶmE) .;[mE)A f%) I;N ,! $Ib'!+ MI$$!  E)жmE)be) Jm!TE) I$e)! I$I E)! II$E)!` I$I$E)! I$I$1 I$I$e)E)* $I$e)E)k ۶l˰mE) ϶m6E) II$e)$!*  Ie)E)*= I$I E)! pE) I$@E)!UUWI$I$!@ !! ˄b5 ^zP ]@(!Z !I$I$E(CHE !@@!jꫫI$N$/>x!  $JD!`( @ $IH! $Uz$I!`$ !ApʁDE$![Y!@d!I$I$E)a@ ! !ꫫ 1UӼ-!> VP$! $AL$!* $Ȑ A!. $I$E)a I$I$!* I$H$! R#(*i!pbrQ( " $I! mE)+ !E)! I$I$E)! EE)A I$I$E)!* I$I E)! 2lmE)A`  I$E)! l۶$E)!W =E)_ Hj! I$!öl[!z mۮ$! N$!" $E)m۶E)!*ce) !IR$IE)  I %e)$!  `[$e)E)W mI$e)$! $I$e)$! -۲mE)@@ ɖl8lE)A I$I E)! [m E)A I$ɰ$E)! I[%e)E)* I$e)E) Kaɐde)E) . I$@2,e)E)* X2`ɖ$e)E)  I%@,e)E)*` lɒ%e)E)  6e)E) I$X-e)E)^ l e)E)  %I$e)E) Ie)E) * A$1"@Xee)a H$e)E)H4 e)  ۶$[%e)E)x $e) lX%e)E)P $Iee)E)W  mI$e)E) %۶mE)A `I&e)E)  ɀې$e)E) I $e)E)Ј-6Ae)`ٛe)! )i4e)E) ,ْ%e)E) `ɒ-e)E) ˂ ْ%e)E) ۲%e)E)b&AlE)% I$ۆ e)$! I$ۂ e)$!* $Ime)$!*@SLHE)$ HI$e)E)/U @C-e)E)= I$Вe)E)VLȒ$e)A(ӶlE) IE)U I$ ! d;v!_ JI$!UU  E) жmE) $BI$e)!  I-de)E)}- I$[`e)! AE)O mٶmE) I$I$E) I$I$1 I$I$e)E)%z H I$e)E)x I$Ce)$! HI$E)! m[-E)! IH$E)! LۆmE)^ I$R@E)uuzI$I$I$I$bI$I$I$I$(I$I$AI$I$A** I$I$I$I$I$I$I$I$I$I$`I$I$bI$I$AI$I$A I$I$I$I$aZ*I$I$I$I$"I$I$I$I$@I$I$'I$I$I$I$I$I$I$I$I$I$azI$I$AI$I$A>/ I$I$ajI$I$I$I$I$I$I$I$I$I$AI$I$A/I$I$ I$I$* I$I$! I$I$I$I$*z I$I! z^ ILE)a E) *(  EE)a I$I$E)! I$I$E)!+ II$E)! I$I$E)! 0E)!_ 6'E)_ $mvm! f'! mm[ ! Id!* IE)կ ۶mE) տ* I$le)! Idö%e)! IdÒ$e)!. 0 I$e)$!m[E)p H$I$e)$! @E) I$I$E)! I$I$E)!* I$I$E)! I$I$1 I$I$)( @$Ie)E) [-I e)E)`/  ْlle)E)  e)E) > I$$e)E)6ڶ%E)A AڤcE) LI$e)! ,I$e)E)  $Ile)E)U  ۰-I-e)E) $I e)E)׿  $Ime)E)U $ie)E) $IҶe)E) $i۶e)E) $۶me)E) $IҶe)E)eZ'e)A  $Kle)E)T $I2`e)E) Ö,Ile)E)  %I-e)E)[ ېlI%e)E)  }_"E)!@!b$GE) I2ۖ$e)$! Xe$e)E)  6$e)E)`+,pmE) LIJe)E)(./ hȤIe)E) 8?* dIde)E)>.* mI$e)E).  Kle)E),  E)A I% e)$! I$le)E)UW Y$I2le)$!@d2E)!p I$e)! $Hm$e)E) M$e)E)x䣱 e) `yle) ] }lE)_ I$%)UW I$Ll! xI2'! U_  q%)*U mݖE) ae)!/ Hِ$e)$!  I$6e)!$IbE) KmE)$ I$I$E)! I$I$1 I$I$)( I$e)E)+ I$$e)$!* ɒ$I2$e)$! @[mѴE)! 6 I$ $e)E) ӶmۢE)!Z I$E) UW$ 47{ ,%)x$@!zA$ID  ! * b**!$! j=P ! *)`%@ xx9ɑD  -%@$`! !j! H! "I$ !ꪪ*4L aڸ9!'2 !!I$I$E(C !I! = !aɇ'|$!׫@ ! $I$)! $II! A$I$!  I@E)!UUխ O/E)u E)b E) I$I$E)! I$I$E)! vlömE)! I$I$E)! 6E) Hx%) 1![X! m5$!_ IN$! 17E)m۶ E)!u  I$me)!  I!ؐ$e)$! H$e)! %I$e)$! m oE)b& I$I$E)!  E)A  I$I$E)! I$I$E)! 8 I$I$)( I$I$)( I$I$e)E)+ I$I$e)E). M&ie)E) [2$me)E) ے $e)E) I $e)E)*>@lE)!}e) (( II$e)E) ,Ide)E)W* lIme)E)  $I%e)E) $Ie)E)} $$Ie)E)տ $$me)E) $IҶe)E) $۶me)E) $$mҶe)E) $Ime)E)le)  $I e)E)U $I,e)E) Ie)E)   e)E) 2,òme)E) $e)E) 6lÖ$e)E) [lme)E) I`ذ e)E) I єe)E)  I$؆ee)E)x  ɖ$K e)E) } ِ,Yle)E) I&e)E) m I I$e)E) Hm$e)E)()me)% I-e)E). $K$e)E) 9e)!` aؒ$e)! =`e)!  I$ae)$! I$HE)!nۦmE)  $I$e)$!  -$e)E) IYe)! ` e)!C$ E) I2:E)U $si! xIB'!  $%) UԶnE) I$e)! " @Pe) I$X2`e)! I$I$E)! I$I$E) I$I$)( I$I$1  $I$e)E)« I%I$E)! $I$e)$! I$I$e)E)룩U I$@$e)E)蠢 mE)x I2&ێmE) z I$I$ AI$I$(I$I$AI$I$A I$I$ @I$I$ I$I$I$I$I$I$I$I$aI$I$A?/I$I$I$I$I$I$I$I$I$I$"I$I$ jI$I$#*I$I$ ۪ I$I$ *.6I$I$ꪪI$I$ 8I$I$aI$I$AI$I$A/I$I$AI$I$Aj*I$I$ I$I$I$I$I$I$AI$I$A** I$I$*I$I$// I$I$! I$I$4 I$IE)b IE)Aߺ I$I$E)! E)* @E)!+  ɶmE) I$I$E)! 0E)!_ `X۴E) 5`! [Mt!+ ٦5M'! [N$! 4E)* m۶E)! I$e)! ɶے$e)E) V,ɐe). $I$e)$!* I$I$E)! E)  E)a@ mٶmE) I$I$E) I$I$)( I$I e)E) I$$e)E)6-B%E) ` I$I$E)! 1۶mE)!  $I$e)E)_ݸ [$Iae)E) I$Xee)E)  I$ۆ%e)E) I`,e)E) Ie)$! H$He)E)(* m۲-e)E) I e)E)  lÒ$e)E) Kdɖ e)E)((  ۀm-e)E) 6-e)E)h&mE)  v8 1E)$9 E)a $$j)$Ie)  I6$ e)%) ېdI,e)E)* ۖ ɐde)E) / $I1"e) He)E)(8 ۶ `e)E) H$e)E) ( $e)E) 6me)E) Ime)E) I$[le)E)  I% e)E) I$@$e)E) ˖$6e)E) IҶe)E). 2lI$e)E)@ 2lI$e)E)*ci@re) IdȰe)E), K$,e)E)( aٖde)E)* 0`de)! mÒ)$e)!4 I$6 e)$! I$Xme)E)U 7f`E) I$e)$! YI$e)$! l$e)E)`  I&Ie)!c۴E) NE)W I$ ! I"9!/  $$!+@-E)* `{e)!/ @e) I%e)! I$IE)! I$I$E)! I$I$E) I$I$)( I$I$e)E)* K!I$e)E)T I$IE)!* I$I$E)! I e)E) I$IE)! NҶE E)!Ux m&P E)W_^`DQ' "@!뫯 !IH!~a * $!ꫫI$L'7@Q aҫH!I$I$!@ ! ")"!!BJa$(! aɑGQ%a  ! Xd!0@( `UH @!ꫯ j^;5!>{ O#%!! ` " !k $ E)+  E) (E)z I$I$E)!+  E)b ` m[i۶E)!  I$I$E)! $E)!U m$!+ F! L$A !/ ۺ$!+ MME) ۶mE)!U+ I$ E)! I$E)! 0 m;e) j6۶e) H$I$e)$! I$I$E)! E) * PE)A8 I$I$E) I$I$)( I$Ie)E) I$I e)E) I$ې$e)E)~ 6KlE) (4& m4m۶E)!`` $Ie)E)U/ $Ie)E)W. K$6le)E)  I$ːae)$! Idː e)E)*  I-[de)E)( I2l,e)E) I e)E)**  ز%K$e)E) ɐ ۶-e)E) @ ۶-X$e)E) ɖ6e)E)   ض%e)E))09rE)!@ %I e)!lK e)@,e)`c IIe)E) I&le)%)* $I$e)E) 0`me)E)Xv6e) @ [% e)  ɲaI$e)E)o{ 6 I$e)E) XmmE)   ɖ$e)$!* ɖې$e)E) * ,le)E)  !e)!@"He) @$@ e)E)  6`e)E) 6lle)E) lLʆe)E)(  K!ۆ e)E) Ia6,e)E)$E)$ $I-e)E)2m&mE)@amE) iDRe) mҤMJe)E)8,m"iE)@ ۖ Y-e)! [mde)E)p* m e)! I$[e)$!  ,?e)! p I$e)E) U uv퐤f1E)~ I& e)!e) _ NE)W I$@$! pI2&!  %) *f۶E)! U !ɒ$e)!ڶaIE)  I$[le)! E)  I$I$E) * I$Ie)E)* I$I$e)E).~ H I$e)$!(* I$Xle)E)UP  I$e)E)5W I$ e)E) - KmE)X I")E)Uj I$M4$!AWI$I$I$I$I$I$@I$I$AI$I$bI$I$I$I$AI$I$A/ I$I$(I$I$I$I$ .&I$I$I$I$"I$I$AI$I$A. I$I$ I$I$pI$I$I$I$8 I$I$ I$I$AI$I$A+I$I$I$I$ I$I$I$I$I$I$I$I$AI$I$A*I$I$` I$I!/ IDE)U+ E)' I$I$E)! I$I$E)! I$I$E)!  m۶mE)b 0E)!W غTE) 5E) k6tE) -$$! R7  !a@$m E) I$I E)! IH$e)%)( I$e)! ضm۶-E) B E)!  E). I$I$)( I$I$)( I$I$)( Xm6`E)A I$ $e)E) ^ II$e)E)~"zU !H$IE)  Ò$I$e)E)U I$I$e)E)^* I$  e)E)U I$A$e)E)ݢ I$H$e)E) II$e)E)* HI e)E), e۶E)a ڤM(,e) ` XdI$e)! C$ۖ,e)E) m[$$e)E) ɐؖ$e)E) ^ I`ۖ$e)E) LHe)( 4۶mE) )0I4E)!@I۶ME)b mI,e)E) I$e)E) $IҒe)E)_ $Ie)E)U $$IBe)!ʀ&$ IE)  $I%e)E) ۰dIde)E)(* $$I6e)$! A$IrE)A HaI$e)E)8 ˶aI$e)E)WRmնE) me)! $$e)E) K6`de)E)(? ؐa e)E)Le)$, ْ-۶ e)E) Y ِe)E)"* I$M1" 6 2,e)E) زm6,e)E) Il e)E)i 1e)` I$le)E)  ؐlI,e)E) L۰mE)6(MvжE)4 ۂ%@2e)E) ٖeK e)E)"(I̶IE) l˖$e)E) I e)!@ I$le)!* $I,e)$!*ue)!  $ d$e)E) IBXe)! Oe)! }2lE)_ I2'! N!+ P"Im&!!* m喖E)* `oe)!+҆ rME)  I$2e)! m۶mE)!* I$I$E)  I$I$)( I$I$e)E) @$I$e)E)`[W I$$e)$! I$e)E) %UX II$e)E)( ۲mlE) @ IrnmE) * W E)h!@!ꫯ I$  !P4" zj I  -@,`!!I$I$E(CB%  `pa! ( d()! a! !H 꾾1!H j BrT%)z $E)/ Ȁ E) I$I$E)! I$I$E)!+ E) ` A$I$E)! 6E) h[E)/ t%) X $!// f! $HE)A8m۶ae)! I$E)! IA$e)$! @$I$E)! E)(  E)b@ E) I$I$)( I$I$)( I$I$)( ɶmۆmE) I$e)E).U mSm۶e)!P $I$e)E)zU H$I$e)E)U I$$e)E)U I$H$e)E)u( IIe)E)(*. I$ $e)E) I$e)E) A$I$e)E) l6E) 0Iۦe)A(4 $e)E)  K۰$e)E)(* m6$e)E) 2ۖ$e)E)U I-ے$e)!C)IE)!@ Ih$IE)ۦmE)  mI,e)E)Պ mI$e)E) %Ide)E)* $IBe)E)W $Ie)E)U%E)Ap $IBe)E) $I$e)E)z mIme)E)mmۦmE)b@ؖm[E)$m&0E)` Ille)$!  @e)E)ˀ I$6le)E) I%Ke)E)W6 I$˂%e)E)]p I$I$e)E)_ I$Ie)E)+ a#dE)A( $I$e)$! ,۶mE) Xe $e)$! Ȁ le)E)  )MYe)E) L!M&e)$ ȶl6e)E)  Yd6le)E)"" ۂ؀e)E) Imle)E) I$le)E)+\ IBe)E)- Xɐ$e)E) ˲lde)E)* e)  %%۰e)%) [m`e)E)p&,²ME)@`m&HE)A  ِ$I%e)E)W $I$e)$!  1E) I& e)!e) _ M E) ɔ$@! mI<'!  lE)`Ϸe)! I`[de)!  I$e)! I$I$E)!. ۶%E) I$H$e)E) I$I$)( 6mE)p E) [lI$e)E) \ I$I$1 I$H e)%)ꪨ z E) I$O E)wu_I$I$I$I$I$I$&I$I$@I$I$!*I$I$aI$I$I$I$I$I$I$I$I$I$I$I$A>I$I$ 0I$I$I$I$I$I$API$I$I$I$ I$I$A*I$I$aI$I$.I$I$I$I$I$I$ &.I$I$!I$I$A*  I$I A I\%)׵ E) I$I$E)! E) I$I$E)! I$I$E)!_ &E) ۶6uaE) [E)/ ,M7E) x PW !   E)A@ m0`E) I@$E)! 4[mE)` %IE)* I$I$E)!* I$I$E)!* I$I$E)! I$I$)(۶mgE)  I$$e)E)V I I$e)E)WU A$I$e)E)_U I$I$)( I$I$)( I$I$1 I$I$1 I$I$1 I$Ie)E)  I$Iae)E) I@$e)E)* z IdX$e)E)(U ɆmI$e)E) _u $I$e)E)U $I$e)E)_] c۶mE)!` I$Ie)$! \E) m6h E)!@ۖa$IE) Ie)E)/ A$e)E) ɰ%e)E) ##7E)  ۄd0IE)A4( ɖ ذ$e)E) mۖle)E)  le)E)H얐e)  ۖ$e)E) @!kLde) . ۶m$e)E) ۖ$le)E)  ɐ$e)E)  @ e)E) Ҷm۔@E)A Ie)E) I$ e)E) I![%e)E)p I$Y2 e)E) I$He)E)~ I$Ie)E)> ذm,E)@0۶e)! 9$IE)0  I$e)$!( ,de)E)? lʦle)E) SIHe)` 6$Xe)E) Ȃle)E) m6le)E) Kl`e)E) I%6e)E) !$MRe)E) ےI&e)E) Yd$e)E)"  Kme)!@ il e)  mزe)E) I$e)E)KdAE)A<6 I$He)$! %I$e)E) ^ ]=`$1E) Nm1$! de)!䳑ۆmE)_ ڒH$! pI1! 0 ٔ%) `ۏE)! U m6e)!  I% e)! I$[,e)!+ ض ۶-E)@ ۆmޖmE) I$I$)(  I$e)$! m-E) @HR$E) I$I$e)E) I$Ie)E) HE) LE) k]!#(*A$!aꪪ TJ!I$H& \x@!Ȁ!I$I$E(C@,`!!x &(!^ZzO| ..@$!- H  *H$@$  s%1%)_ mE)+ I$I$E)! I$I$E)!+ E)* I$I$E)! 0E)!U @ E) f`E) lE) %) $E) xE)A8 I$ $E)!+0 I$E)! ضdKmE)<$ I$I$E)! I$I$E)! I$I$)( I$I$E)!8 I$I$)( ۶mېbE) I@$e)E)+U I$I$e)E)+U H$I$e)E)Uժ I$I$)( I$I$)( I$I$1 I$I$1 I$I$1 A$Ie)E) I$K%e)E)( I,ː$e)E)W II$e)E)U I$e)E)U $Ide)E)U/ $Ie)E)U. I$I$E)!< ۶m6,E)@۶mE) ۶%E)AР IeXme)E) H e)E)  K$[me)E)>/_I$I$I$I$I$I$I$I$jI$I$ I$I$pI$I$ :I$I$I$I$I$I* IDI!a.&$  $! ( E)b6& I$I$E)!  I$I$E)! E)!_eI$Iz<1!UU%.{1/.x$I$1!XUU  E)! I$I$E)!+ I$I$E)! I$I$E)!/ I$I$E)! E)!*66 I$I$E)! )E)A  I$I$E)! I$I$E)!* I$I$E)! I$I$E)! I$I$)( I$I$)(  E) I$I$E)!( I$I$E)! A$I$e)$! I$I$1 I$I$1 I$I$)( I$I$)( I$Ie)E)+ ˶lE)A ۶m2lE)a@ ۶ mE) MQm۶E)!4 @$I$E)! I$I$E) I$I$E)!k @0E)!U E) nE) `fE)  IZ%%)z [>! 4I!huUUO$IB! I$I! I$I!A I$K$! : I$%)! I$$!Aݫ IbrmE)կ I"I %) I" $!U I$!A I$!U IJ$! I"I$!U I"I$!U IB۰mE)U IE)U I$$!U I$PE) ޸ I$!b I$ E)A $I$!* IH%)U PII"E)U  qg;E)U E) ) IE)a  E)b( I$I$E)!.[ $I$e)! mlE)!&[mE) Æ $e)$! Zq e)а ۰H e)E)<(˶ @e)$me)  ȶ,le)E)  Ie˶ae)! I$A$e)E)]" ɐ$ɒ`E)!  `I&e)E)  m )$e)E)kge)! Kle)E),  1" [me)E) ɰ%e)E)  I&e)E) I 6-$e)E)% m$Ye)E)Ҧ%E)Ap @e)E)` I$me)E)UX $I%e)E)W` II$e)E) U L$e)! Nl۳ `e)!Wz ``E)!UUW d!d $$!!^k*6`{me)!W I$e)!+ I%Ö e)$! I$I$e)E)UWx I$I$)( ۶mòmE) ` $I$E)! I$ $E)! I$I$e)E)US I$$e)E) I$H$e)E) a[E)A1˘mE)Im !!.m`! :2!! kI!A   E)jj* E)*  I$I$E)! 0E)!_.I$If1!_UU%J/?1/xJ? 1 `E)!V E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!+@ E)  @(@E)A` I$I$E)! I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$)( @E)@ E) I$I$E)! I$I$e)$!* I$I$E)! I$I$1 I$I$)( I$I$)( I$I$)( ۲-۶E)@ mlE) ۶m`mE)  I$@$E)! )m۶E)  $I$E)! A$I$E)! E)!^ &E) * X6E) Z:iE)(( lӚlE)(  i$E) >}$!_WW$IT I$I z I$I"!޺ I$I! I$ E)Au I$%)! I%)b I"IE) I"IP%)W8 I$!a I$!A* IҶ$!U I"I$!_ I"I$!U I"I%)U IBmE)U I>E)U I$A$E)! E) j I$IE)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!X E)!_ aE)!Uk IE)!Uyk I$I$E)!{  E)bb 6`@E)㲸 0E)!yZ (  H%)! $( E)!} E)! Ö$I$e)!* aI$e)!*жI$Ie)  Klېle)E)( T$Ie)(4 [mK2`e)E)p A$e)E)"  ض Xme)E)  Im[$e)E) |6ME)` IR6e)$! mI)$e)E) m6h@!@He)A  `e)E) I-۰me)E)ր $Hme)E)h[1! m@e)E) ٶe`e)E)  ۂm˶,e)E) I$le)E)UX ɐ$I%e)$!*Ie)  M2e)!돭e)!~ @ E)!V I$I$E)!﫽 E)!-z`{E) - I-e)!  I$hRe)E)U^` $I$E)!* I$I$E)  I$I$E)!( @I$e)E)p ۶mE)! I$e)E)" I$Ie)E)" dI$e)%)* I%ö E)W I$I%!I$I$I$I$AI$I$!{ I$I$I$I$I$I$I$I$ I$I$@I$I$Ax*I$I$AI$I$!(X I$0@!/  @$! $@(!b` I$I$$!! E)! $E)JI$ &1!U `eWI$1! `VU @E)!T E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! hE)<( E) ` I$I$E)! I$I$E)! I$I$E)!* I$I$1 E) @ E)! I$I$E)! I$I$E)! E) E) I$I$1 I$I$1 @E)!@ ۶mmE) [a۶mE) H$I$E)! I$I$E)! )%)j ۶m E)a m'MԆ1!z'e)!WW=ve) ^ -6NڶE)!\ $IE) M$! !E)! I$I$E)! I$I$E)! @E) I$I$E) I$I$E)! I$I$)( I$I$1 I$I$)( I$I$E)!0 E)` I$I$E)! @E)@  E)a I$I$1 E)` AE)a I$I$E)! I$I$)(  E)`` I$I$E)! I@$e)E)U I$I$e)E)z^ E)& I$I$)( I$A$e)E)x I$I$)( I$I$E)! I$I$E)! I$I$)( I$I$)( A$I$e)E) I$I$)( I$ $e)E)_U I$I$E)$! I$I$E)! ȁE)4 I$I$E)!k @E)![  %)a. E)!  @E)!߾ m]mk7E)!~u qllE)!/ -6E)A`j p@E)! ۰m66E)*~ I$E)! 6`ɖ$e)! [2,ےle)E) j)6Ie)A HJ)8E)` lde)E) ) @l6 e)E) I$@$e)E) )$I4e)E)_ d[I$e)E)- l۶`e)E)4e) @DIDIe) I-e)E) )$lBe)E) $KI$e)E)  Mڶe)E)( ېme)E)  X`e)E)` I$[ e)E)\ !I$e)$!Z2re) ` ۼaf1!_ĶE)!-Wx miѴE)!-'f1!Vh  E)!Bi\ ɒ$e)!$'E) I$I$e)$!* I$I$E) I$I$E)! ْI$E)$!؃moe)!'mcyE) I$$e)E) I$I$e)$!( I$e)! 0E)!XeI$I 1!_U JI$1! ^?f1!\U IE) խ I$I$E)!+ I$I$E)! I$I$E)! I$I$E)! I$I$1 E)  E)! I$I$E)!" I$I$E)! I$I$E)! I$I$1  @E)8 I$I$)( I$I$E)! I$I$E)!  !E) J E) I$I$1 I$I$1 hE)! I$I$)( l۶mE) I$I$E)! I$I$E)!~ @*%%)A1!_U+mme)! y$1!UUNbE) /W öܶ1E)r  E)!Wժ i E)* I$I$E)! I$I$E)!* I$I$E)!  E)' I$I$E)! I$I$)( I$I$)( I$I$e)E)/UU I$I$)( I$I$E)! H E)A4( I$I$)( @E) I$I$)( I$I$1 xE) HE)$ I$I$)( I$I$)( xE) I$ $e)E)W I H$e)E)U  E) @ E) I$Ie)E)/ I$I$E)!(  E)@ E) E)  I$I$E)!  I$I$E)! ( E) I$I$E)!" E)$ I$I$1 I$I$E)! I$I$)( A$I$e)E)U II$e)E)*W I$I$)( I$I$E) I$I$E)! I$I$E)! E)!U߾ E)! UmNnE)!/W Km۰qE)A i@E)!W) mME)!W $E)! UmۖmE)1`ge),* Kle)E)(  -6Ke)E) MI&e)$! ۖ me)E) X`۰%e)E) I$[ e)E)/^ I&e)E) l˖$e)E) Mۤm[@!$HpE) Hme)E)X $lRe)E)  lYI$e)E) mҶ$Ye)E) a۲me)E) [mِ e)$! I$He)$!  I$e)E) V me)E)p dK2mE) @mf1 .NB891!^ .I$O<1!^LA%ْE)$ * X`e)$! I$K,E)! I$I$E)! I$I$1 $I$e)E) I$ e)E)VP > $I$e)E) \ @$@ e)E) 6,lE)@v-E) I$K2,E) I$I$I$I$A I$I$I$I$"I$Ia IH$ !a "-!@ $! I$I$%)! uE) * eI9$1 W5e9%I$1!`VU @E)!\ I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! (E)a`` E)b&  I$I$E)!* I$I$E)$! I$I$1 I$I$1 I$I$E)! E) I$I$E)$! I$I$E)$!** I$I$1 I$I$E)! E) I$I$)( I$I$E)! I$I$E)! 0E)!W m۶e)!W5.I$IN41!UO'1!UW01!`U-IE)* HBE)!W E)!* I$I$E)!* I$I$E)!  E) I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)$! I$I$E)$! I$I$1 I$I$1 I$I$E)! I$I$E)$!* I$I$E)$! I$I$E)! I$I$E)$! * I$I$E)! (E)` I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$)( I$I$1 E)A$, I$I$E)! ۶mE) ˰m۶ME) & E)!B nۆmE) I$I$E)! E)   E)@ E) I$I$E)$! E) I$I$1 [۶ E)ap I$I$)( I$I$1 I$I$E)! I$I$e)E)*W I$I$)( I$I$e)E)zU I$I$E)! I$I$E)$! I$I$E)! HE)!W @$E)!] mӶE)  [a6E)!`* 1IhE)+cE)!^ !$E)!W m۶tE) BSm۶e)  2ې$e)$!  iI$ؒe)E) mҴme)E) ٶd le)$!  I$1" I%le)E)`  IR6e)E)- $e)E)  %K$e)E)$A" e)  `e)E) I% e)E)- `I&e)E) ,e)E)  Iلd e)E) ( زm˶%e)E) I$me)$!* !I$e)E)%Wx `C)e)E)5 `Ke)!z% E) &.lI$f1!%UJI$pÆ1!V` mqE)`* ɐe)!  I$`Ce)! I$I$E)! I$I$E)! I$I$)( @ I$e)E)p+ I$H$e)E)\b  e)E)% I$@e)E) d6 E) (6e1 E)!+ I$I$E)!  I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)$!** @HE)44  %) I$I$E)! I$I$E)$!* I$I$1 I$I$1 $E) ` I$I$E)! I$I$E)$!* I$I$1 I$I$1 E)J I$I$E)! I$I$E)! A$I$E)! I$I$E)! ȄE)!~UI1!_U-.I$IA'1!_U x.I}$1!U xU&۶1Xf1!xU IE)!U I$I$E)! I$I$E)! @E)` I$I$E)! I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)$!(( I$I$E)!( I$I$1 I$I$1 I$I$E)! I$I$E)$!  I$I$E)$! I$I$E)! I$I$E)! I$I$E)! E)(($ I$I$E)! I$I$E)! I$I$E)! I$I$)( I$I$1 `E)@ E)a (E)b ۲m6lE)@ m6`E) %۶aE)Ap I$I$)( E)!@ I$I$E)! I$I$E)!8 I$I$)( I$I$E)  E) I$I$E)!  E)A.& I$I$E)! I$I$E)! E)! > I$I$E)! I$I$E)! $E)A  E)` I$I$)( I$I$)( I$I$)( I$I$e)$! I$$E)! I$I$E)!~ dE)!U~ E)! U mI:E) h ^ H E) @E) ^ &E)!+W `۶e)!  HI$e)! %E)A  mde)E)* 6lن%e)E) ۖ [me)E)  I%le)E)z  )M²e)E) I I$e)! lɒ`e)%)  @! òme)E)$780E)@ `I&e)! lKe)E)  lۂme)E) @ $e)E)` I$@e)$!* I$e)E) V me)E)p me)!Wx.9I$1! W~JIB'1Ć1!V`%JI$I'1!Wp`e)  M&%e)! I$K%E)! * I$I$E)!(* I$I$)( I$e)E)C ɖlú-E)@ ڶmE)  E)b@Vm۶E)L%¸Ie)Wx I$I&$!bI$I$I$I!/ 4I !  !$!!%x I$I$$!! @E)!We I$P<1!U e9X I$e)E) mʖ$e)E) O MNE)aM$e) I& e)E). $I&e)E)  de)E)  I$le)E) @$e)E)` I$@e)$!* $I$e)E)5V kw1E)~?4* ($! ` E)! I$I$E)! I$I$E)$! I$I$E)$! E). I$I$E)! I$I$E)! I$I$E)! I$I$E)!  E)@ @E)!(8 I$I$1 I$I$1 @E) ( I$I$E)$!* E)- I$I$E)! E)!k PE)  I$I$E)! E)@ 0E)  I$I$E)! * I$I$E)$!  E)A E)!z E)b \@E)! I$I$E)!* I$I$E)! I$I$)( I$I$1 I$I$1 (E)p I$I$E)! I$I$)( I$I$E)! I$I$E)! I$I$1 I$I$E) I$I$E)! I$I$)( E)@ E)  I$I$1 I$I$)( I$I$1 @E) I$I$1  E)!@ E) E)  E)A I$I$E)! I$I$E)!*  $E)P I$I$)( I$I$)( I$I$)( I$I$E)! I$I$)( I$I$E)! I$I$E)!* I$I$E)$! @E)@ E) I$I$E)! I$I$)( I$I$1 ꪪ I$I$E)! @E)!_ D%) R;Iz$! 0rn! жE)* -жmE)!  ɖ$e)!/ ,e)E) [m`e)E) mۖ e)E) I $e)E) !MB6e)E)/ - !e)E)7I$I$@! IK$Ie)E) I%e)E)~)F #E)b  m6e)E) mde)  H e)$! e)! ) [I$1E) 3hݭf1!z訂 l6rۈmE).H8$1!\-O=1!Vp-e)!  M6$e)$! I$I$E)!* h۶m6E)!z $E)!`\ !$! hӴ!I$If1/eI'1! peE$I$1!XWU  @ $!!= $!!/6 $!!pW .)! @ E)*  T%) %)A I$I$E)! I$I$E)! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! E)!_5J I$m81!_U-J17J$I$1!^Uu `@$!( I$I$E)! I$I$E)!+ I$I$E)! I$I$E)! I$I$E)! I$I$E)! %),4 I$I$E)! @HE)Ap I$I$E)! I$I$E)$!* I$I$1 I$I$E)$! I$I$E)$! I$I$E)!. I$I$E)! PE) 88   E)b`@ `E) @QE) I$I$E)$!( I$I$E)$! I$I$E)$!* I$I$E)$!* I$I$E)$!* I$I$E)$!(* I$I$E)$! I$I$E)!  E)   4E)p I$I$E)$! I$I$E)! I$I$E)! P( E) ,6 I$I$E)! I$I$E)! I$I$E)! I$I$E)! %)! 9@E) E)!* I$I$E)!( I$I$E)!* I$I$E)! I$I$E)! I$I$)( I$I$)(  E) I$I$)( I$I$1 I$I$)( E) E) I$I$1 E)  E)& PE)  I$I$E)! I$I$E)!  E) J E) I$I$)( I$I$)( I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)!* I$I$1  E)A I$I$1 I$I$E)! I$I$)( I$IE)! E)! , E)z` J@$!x  v!- mڶ$! mѶmE) * mI$e)!+  e)E)  ۖde)E)* ɰeۆ%e)E)  Xm6,e)E) I$me)E)  hYI$e)E)X $I e)%) lB$Ie)E) X`e)E)cm`E)a l !e)E)-vۆ5e)` ۲mle)E) I$He)!> I$e)E)V u5Ún1E)lC" E)j.'1 .I$h1!Vpa{E) - `R)e)E)`  I$X,E)!* I$I$E)! * I$I$)( II$e)E){. I$[ e)E)VP I$e)E)+- I$Ie)E)* A I$e)E)r ضmE)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)$!* I$I$E)! E)!_. I$I1!WU-./1JI1 .x$I$1!xUW  E)! I$I$E)! I$I$E)!  I$I$E)! I$I$E)! I$I$1  E)!jn %)b I$I$E)! H%) & I$I$E)! I$I$1 I$I$1 I$I$E)$! I$I$E)$! * I$I$E)! I$I$E)! 9%) X%)A8 @E) E)! I$I$E)$! I$I$E)$!* I$I$E)$!* I$I$E)$! I$I$E)$! * I$I$E)$! I$I$E)$! E)p I$I$1 8E),& I$I$E)!  I$I$E)! , E) E) I$I$E)! I$I$E)! I$I$E)! @%)ap E)` $E)!U I$I$E)!  I$I$E)! I$I$E)! I$E)_ 0$E)A  $$! $E)* U  E) I$I$E)! I$I$E)! I$I$E)!  E)( I$I$E)! I$I$1 I$I$)( @E) I$I$)( I$I$1 @E)` E)a  E)!p I$I$E)!  I$I$E)! E)A& I$I$E)! I$I$)( I$I$E)! E) I$I$E)! I$I$)( E)@ E) H ۀmE) m˶`e)E) I$I$1" I$e)E)Vp )I&e)E)5WP [3閸1E)돵f1!Wz7O?1!W^O'G1/  $E) THdLE)  @%)aj 0@*! k !! eI$1 e6%)a o$%)UU m%)U  IӶ%)UU  II&%) I$! JI$E) HI$%)  I$! I$%) H $%)(U $%) * $$! \E) E)! I$I$E)! I$I$E)! @E) I$I$E)! I$I$E)!* I$I$)( E)!@ E) I$I$1 I$I$E)! )m۶-E) E) E)!* I$I$E)! @HE)P I$I$E)!* I$I$)( I$I$E)! @E)!: I$I$E)! I$I$E)! I$I$)( E) I$I$E)! E) @$I$e)E)W ۲mmE)@ ٶm6lE)b ۺmdE)ꪸ $%@!A*И R25J )! Vm|$!_  VE) jIq6E)A dCee)$!  )˖ɒe)%) ɀmۆ-e)E)  ۶me)E) I$e)E)- I$e)E)'\ m۶h@! $B2$Ie)E)@!I e)C")E)@ aKe)! I$I$1" @ e)E)p I$K-e)E)%X QI$e)E)  Ke)!x1!5W_{r1!\b%OX6f1p{ 0! Id!JI$Ie)? J?1A*`J?Ie)!׽ J !   ! $! 0H$!!XW5  $!!% I$I$$!! I$I$$!!  ! I$I$$!! I$I$e) I$I$e) I$I$E)!  4E)jz @$!b I$I$E)! @%)P I$I$E)!* $E)bp  $!(niSf1j.I$1! _. E$I$1!zUU $$!! _ `$! P$! I$I$$!! I$I$E)! I$I$%)$! I$I$E)! I$I$E)! I$I$E)! E)*& H%)a,4 I$I$E)$! I$I$E)! (E)z I$I$E)!꿪 I$I$E)!ꯊ I$I$E)! I$I$E)! I$I$1 I$I$E)$! (@@E)!` E)b  E) I$I$E)! E) I$I$E)!k  E)!} @E)!j^ E) DE),ւ $E)!U @E) _ HE)!}*W !@E)!_  E)! E) ( `E)!WW @E)! R%)az E) mE)* mE)_ ! E)!U* IE)!U E) IE)U E)W* OHE)U I%) I%)b I"E)A I%)U I$%)A I$E)UU I$k%)U y$I@!* $I"5%)*U NI$%)U_ I$%) U S$%)!_ O%)( I$I$E)!*  E)` E)! I$I$E)! E)@ E) $E)bР I$Ie)E)]? 8E)a & I$I$E)! I$I$E)!*  E) E) I$I$)( I$I$)(  E)  I$I$)( I$I$)( I$I$E)! E) I$I$)( E) HI$e)E) wKmmE)$ I$I E)! J(E)ꪠ mj@!  I锤!* {$$! *  -E)*kþߐe) &)4e)b` ۰mɐde)E) * 2ۀme)E) ɰ$@2`e)E) YI$e)E) i۶h@! @! K$e)E) IJ&e)E) > m۶`e)E) I$I 1" H$e)$! Ib'1E)U_1Ne) ݶc1ꪜ7O?1!ɵU^I'Ǔ1 ^b $@6ɘE)/ `R)e)$!* I$l2e)$!* E)!  PE)A8 A I$e)$!ۖl6hE)  ۖlE) I$I E)! H E)!ov@E):0. iL$1!-xW h$I$1!xWU $!!/ @L$!! I$I$$!! I$I$e) I$I$E)! I$I$%)$! I$I$E)! I$I$E)!  E)*  E)@ E)A I$I$E)$! I$I$E)! E)6 I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)$!  H$E)A,4 @%) I$I$E)! (E)r I$I$E)! $E)!^ E)! @E)  E)!j I@%) "E)!u LE)!U  E)!_տ LE)!U 5E) E) * IHE)!UU E)!_ O%)A IE)!U mE) IE) IE)!U IE)!U JE)W IE)U E)U I%)*( I%)U I$I e)E)_^ I$I$E)! ۲۶mE)` I$I$E)! I$I$E)! I$I$E)! I$I$E)!  %)  @E)!_ {E)W* I%)U I$%)U_ ɔ$k$!/ I%) W  I$%)A $! @E) ꈭ %)A I$I$E)!  %)!( E) I$I$1 I$I$1 @HE)!(, I$I$)( I$I$E)!* I$I$e)$!* I$I$)( I$I$)( I$I$)( I$I$)( نm۶mE)  I$I$E)!* I$I$E)! I$I$)( I$I$e)E)5_}U $I$e)E)} I$E)! E)!  E)j I$J,$!HI$ * ۰mᖄE)*me)!$/b ǑE) +1) e)b`4m˴ E)a$, H$IE)!P I&e)E)^` $Ie)E) &( e)A@hE)H+0E) `jDRe)A  I$I$1" @ e)E)p$D#E) 5$!A`  Jv! $ ضnm $!/.O?Pf1*J!L&N$1 вq$ $!+ !  9u!A @"=!` $! ( $!  $!, I$I$$!!  $!( I$I$e) I$I$$!!  $! $! @$! ` I$I$E)! $E)!W 0I$E) _UU 9$ !  I$I e)!-ae)!-mۉ؆1 k !* hv$! $!! I$I$$!! I$I$$!!(* I$I$$!!( I$I$$!!/ $$!! P I$I$$!!  I$I$E)! I$I$E)!  %)& I$I$E)! I$I$E)! I$I$E)! %)A` %)  (%)` I$I$E) * I$I$E)!* I$I$E)!* I$I$E)! I$I$E)!  %)*.e). I$ >1!U/f1 IR`I$f1!^f1! zu'e)!]  %)ah  E) I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$)( I$I$)( I$Ie)E)* I$I$e)E)*Uj ضmnE) I$I$)( I$I$E)! E)! I$$e)E) $He)E) I$Ie)E)U( I$A$e)E)W[^ I$Ie)E){" I$I$e)E)Uz I$I$E)! m۶mE) I$I$E)! I$I$E)! I$I$E)! T@%) I$I$E)!~( RE)_ I@%)_ I'%)U I$P%)U $I@! p I$%)Az $$!+  %)  x%)b< I$I$E)! 4%)`  E)a I$I$1 I$I$1 @E)@` E) I$I$E)! I$I e)$! I$I$E)! I$I$)( I$I$1 I$I$)( [6`۶mE)( I$I$E)! I$I$E)! I$I$E)! I$I$)( $I$e)E)W I $e)E)z I$@$E)! E)^ M$P@$!WVx $I$!B( ɐ$$! /M$E)*(!Hre)@Ie)Ak8E) p @ I$e)E)Jje)!  $I $e)E)  mI6@!,$9E)  I$e)E)?"D,e)A(<  I$MR41" I$I$1" I$۲!e)!*jW if1() u:n1$!z N&m E) ^`ݭIf1a-n} E)*F2$SE)a@ Gﶆ1!顪 I$I$e)$! I$I$)( I$I$)( E) & E) I$I e)E)öIۖnE) u6h۶E) ~ ME) I$I$$!! I$I$$!!* I$I$$!!  I$I$$!! I$I$$!! $!!/& I$I$E)! I$I$E)!  @E) ` E) I$I$E)! I$I$E)!꿫 I$I$E)! H(%)a I$I$E)! %)4 I$I$1 I$I$E)! I$I$E)! I$I$E)! @`E)Ъ @E)j.f1'f1z{1!U/U1!U $I$f1!^] hۤm۶E) J%)a8  E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$)( I$I$)( I$I e)E)W m60E)` I$I$e)E)x I$I$)( $E)bp I$I$e)E)U* I$$e)E) $Ie)E)^z I$I e)E)- I$Ie)E)W7 Xf۶aE) ( m۶m"E)!@ZfۖmE)  I$$e)E)b I$Ie)E)ޟ7 I$I$e)E) I$A$e)E)תb I$ $e)E) I$I$)( I$I$e)E)] I$I$E)! HE)<  %)  I$I$E)! hE) O@%) I'%)UW $E)U_ 0I.$! U TE) E)! E)6 I$I$E)!* I$I$E)!* I$I$1 I$I$1 I$I$e)E)-UU_ II$e)$! I$I$E)!* I$I$E)! $I$E)!* mضmE)  I$I$)( I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$)( I$e)E) % `m E)( mӶm E) n IR)E)aꨀ I$J(! DI$!/ H\$!/ ېmI$e)!  X2, e)E) Il`e)E) @$e)E)* I$e)E)p  `I$e)E) 7x I0lؖae)$! @ ۶me)  I$me)E) I$e)E) >6ذe) p @ E)!__ lZ6!.f1W .bC1-.'I$f1 mt-P!/   $!! x $L$!!`\ե RdH!Aм4 I$I$$!!* $!!**p I !& Ϡ $! &  $! $!  I$I$$!!+ I$I$$!! I$I$$!! $! $$! 4R3I!a`RD! R\ I!z) 4@?$! ` HJE) $mI! & m! $!!  $!A I$I$$!! @,!A` P ! ! I$I$$!! @t$!aP I$I$$!! I$I$$!! I$I$$!! I$I$E)! I$I$E)! I$I$1 I$I$E)! I$I$E)! I$I$E)! %)A`( `E)J P$E) *J I$I1!wJ/?f1hJ1 . 1'I$1! U.f1 E)!׫ I$I$E)! I$I$E)!* I$I$E)!* I$I$E)!  E)!@ E)  E)A I$I$E)!X I$I$)( D@@E) I$I$)( E) ۶mòE)@ I$IE)! ۶a۲-E)@ oٰmE)  I$I$)( !mE)A I$e)E)UڦڴmE)4( ɂmۖ$e)! I$e)E)* m%E) I$$E)!8  E)@ ,۶ E)AC ۖm6E) >,۶pE)a@$ ܖm۰ E) H$I$e)E)j~w II$e)E))z I$I$e)E)/ I$I$e)E)7 I$I$)( I$Ie)E)' I$I$E)!  E)` H%)! ( I$I$E)! E)!Z jE)W* I"5%) $ %)U JIhE)U о$!- $! ($E)z+ I$I$E)!  I$I$E)! I$I$)( I$I$1 I$I$1 A$I$e)E)UU I$I$e)$! I$I$E)!* I$I$E)! HqmE) I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)!(* I$I$)( I$I$e)E)/_2m۴mE)@ I$I,E)! HIE)b֪ I$@!b ɐ$I$!/ 0ɐ$$!b/Mme) * ِde)!  ɒd6e)E)* I$$e)E)* H $e)E)X  dK-e)E)7\ [me)E)P% $I$1" `۶me)! dK-e)E) >MHe) ۶mle)E) K%Æme)! M&e)$!* `C!e)E)%cۣ E)7x~ne)/[EE) 6a۷E)+? `B )e)$! I$K$E)! * I$I$E)! I$I$1  H%ɖ$e)E)\b I$I$e)E)\ m۶aE) -mE)  I$A$E)!ꠀ E)!~ H!b4, D! $!!% I$I$e) ͠$! & I$I$$!! I$I$$!! I$I$%)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! HPE)4 T@ HE)ت Oe)!WJ I$IL1!W-JD'f1! XJO1.?1z H$I$E)!藢 E)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)! PE)A8 @E)@ E)  E)!*& I$I$1  E)A&  E)` I$I$E)! ۶mK6E)( I$I$e)E)﷗6$[dE) `< I$ $e)$! E)a` A@$e)E) ^ ɲ!$e)!ۖmE)A @$e)E)U e)E) - ضmlE) I$@$E)! @E)A8 0۰lE)a`, mӶh"E)!K@ E) I$I$e)E)/ ض-۶mE)` II$E)!" IaI$e)E)_ I$A$e)E)V] I$ $e)E)W] I$I$)( I$I$)( @$I$e)E)[  E)` @E) m۰E)!  I$I$E)! I$I$E)! I$I$E)  %)@ %)! {I$!b   %) @ $! I$I$E)!/ I$I$E)! @HE)Ap I$I$E)!* I$I$1 I$I$1 I$I$e)E)+_UW I$I$E)!  I$I$E)!  I$I$E)!* I$I$)( I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)!  E)a@ mm۶E)! @ e)%)* ۲-ۆmE)J I($!A I$J(!bx I$! ) ۰mܖpE)*  I$e)!  MJ$e)E)( 0` E) 60E)` I$Y`e)$!  6lɐ$e)E)  ۶m,e)! vE)!PU `5! к5MT!?.ϟ1 .'H'1x^ PN4 E) I$!  @$$! H!E) I$I$$!!* I$I$$!!" @$!! ܵ @$!!  I$I$$!! I$I$$!! $!! I$I$$!!/ I$I$$!!(*  $!A@ p@$! h۴! &IҼ!DX ,!6%@!j IV! $ !  I$I$$!! I$I$$!! I$I$$!!*  (!A@ I$! $!!- $! $! 0$!!\  $!A I$I$$!!/ I$I$$!! I$I$$!! I$I$$!!* $!!z $! PE$!A8 !$ I$If1!U).O1!e I}$1!UJ 1'I$1!xU f1!xU E)n  E)% I$I$E)! I$I$E)! I$I$E)$!* I$I$1 I$I$1 I$I$1 E) I$I$1 I$I$E)!<,(  E)!j  E) I$I$E)! $I$e)E) WU A$I$e)E)UU I$I$E)! I$I$)( I$I$E)!  ۶m6,E)@ E)! I$Ie)E)U// I$I$)( I$ɰ e)E)u Ie)E)U I e)E)U I$H$e)E) I$I$E) hE) I$I$E)! ۶6,E)` nmE)b 8E),$ I$I$e)E)U{ A$I$e)E)_W E)   I I$e)E)[ I$I$e)E)z/U I$I$)( I$I$)( I$I$)( $I$e)E)y I$I$)( ۆmnE)@ E)a I$I$)( I$I$E) I$I$E) I$I$E) H%) & H%)n 0I%)) $!b& I$I$%)! I$I$E)!+ E)!o  E)  I$I$1 I$I$1 I$I$1 A$I$e)$! I$I$E)!*( I$I$E)! I$I$E)!* I$I$)( I$I$)( I$I$)( I$I$E)!* I$I$E)! I$I$)( E)  I$e)E)/ I$H E)! JE)! I$@@! $I$!  E)* I$e)! ? X2``e)!$J e) @ e)E)(mE)  Ö I$e)E)X ۶mؖae)E) I$I$1" XlE)  I$e)E)I iee)! I$I$1" I$e)E)U\@f1 BʪiIe) NI$E)/ 9rE) = $ E)+ I$e)!  I$lR0e)$! I$I$E)! * I$I$1 A I$e)E)b ۶mضdE) I$I$E)! I$I$1 I$Ie)$! I$I$E)! @$! I$I$$!! @$$!!` $! I$I$$!! I$I$$!!( I$I$$!! I$I$$!! 0$!!_  $!!*7%  $! $! . I$I1!W J&1!*J InI$1!~J $I$1!^ E)!| P%)z E)!* I$I$E)!* I$I$E)$!" I$I$E)$!. I$I$1 I$I$1  E)@ ۶mlE) I$I$E)! I$I$E)!  `DE) I$I$E)!. I$I$E)! $I$e)E)UU I$I$E)! I$I$E)! I$I$)( I$I$E)!, ۶mۆdE)A I$I$E)! I$I e)E) I$Ie)E)_* Il۶ae)E)W Ie)E)U I$ e)E)ը I$I$e)E) I$I$E)! E) I$I$)( HE)!$ I$I$E)! I$I$E)! $I$e)E) I$I$e)E)\ AI$e)E) II$e)E)+( II$e)E) * I$He)E)W* I$A$e)E)W I$Ie)E)U* @$I$e)E)] II$E)!" I$I$e)E)z/W  I IE) I$I$e)E);z H$I$e)E)뫪 I$I$e)E) I$I$)( ۶f۷aE) ( I$I$E)! E)!z E)! ۰ 7E)! ubI$1!ꊯ. I$1$!z  I$N'f1!z I$I$E)! I$I$E)!/ I$I$E)!* I$I$1 I$I$)( I$I$)( I$I$E)! I$I$e)$!* I$I$E)!* I$I$1 I$I$)( I$I$E)! @E) I$I$E)!* I$I$)( I$I$E)! f۰ E) I$[2,E)! J,E)^ I$K4! I$! mnE)  de)!/m<e)!` ۇۖ E)  <;e)!p  E)!`VWU h1!E)/kwu&e)!*p@=ۆ1 m!  !0$! $I$!  Ad!d I$I$d!d $$!! \ $!!֭ I$I$$!!* I$I$$!!  $!! `x $!!`% $!! * I$I$$!!* I$I$$!! `XӤ$! I*!.m$ ^$I )&-!@ _ HT !  A !   !  I$I$$!! I$I$$!! H$!A( $!!x $!! ( I$I$$!!* I$I$$!! $!! I$I$$!! $!! I$I$$!! I$I$$!! I$I$e) +%!! &I$! $ F!*  E)!5۶E)@$U!Ye)a  f1!_ h$!A8 I$I$E)! I$I$E)! I$I$E)$!" PE) & I$I$E)$!** I$I$E)$!* I$I$E)$! @ DE) I$I$E)! I$I$E)!  E) E)!% I$I$E)!* I$I$E)! E) E)  E) I$I$)( I$I$)( mۦmۢE)! I$I$E)! mӶmE)!p mɶaE)A I$A$E)$! I$$e)E) H$I$e)E) I$I$e)E)* $I$e)E)ծ @$I$e)E) I$$e)E) $I$e)E) I$$e)E) I$@$e)E)p Cm6lE)!` I$I$)( I I$E)!, I$I$e)E)+ H$I e)E)B I$e)E) I$I$e)E) I$I$e)E) I$$e)E) I$I$e)E)u* I$I$)( $I$e)E)U II$e)E)?Uz I%I$E)!  dHIE) I$I e)E)骊 A$I$e)E) I I$e)E) I$I$)( ۶-۾ E) @ l۶mE) I$I$E)! E)!  %)b@H &e) . Ib?/1$!^. I$tB<1$!_W I$I$E)!+ I$I$E)! I$I$E)! I$I$1 I$I$1 I$I$1 I$I$E)! I$I e)$!  I$I$E)! I$I$)( I$I$)( I$I$E)! ۶m۶!E)@ E)! I$I$)( $I$e)E)K ø-۶mE)`  I%ْae)! P@E)z I$P@! DI$! ? TE)  I$e)! Kl e)E)-# e)b 6lE)A۰B2mE)Ap `ɐ$e)E)  [m`e)E) ۲ ۶me)E)01E)a@H$Re) ɶ$[me)E) H$Ie)E)X** I$e)E) VX `!e)E) ?e) ^h nE) > @`E)+mE)  M&%e)$! I$I$e)$! * I$I$1 K ۶mE)4 I$A e)E)VR I$I$e)E)) I$H$e)E) H$I$e)E)\b I$I$E)! @E)!_ I$I$$!! I$I$$!!( I$I$$!!. 0e) T!& m۶1! $ ! - ıE)!W- ۶}XE)A  f1! W p$I$f1!xU  %)a* I$I$E)! I$I$E)!*  E)A@ E) I$I$E)$! I$I$E)$!( I$I$E)$!**  E) I$I$E)!( I$I$E)!* E)!x I$I$E)! I$I$E)! I$I$E)! @E)! E)b I$I$)( I$I$)( I$I$)( E)! I$I$)( 㰭3lE)` mZmE)! I$$e)E) $H$e)E) I$I$1 $I$e)E)  $I$e)E) H$I$e)E) I$@$e)E) A$I$e)E)*^ I$H$e)E)( I$I$)( I$H$E)$! I$I$E)!( I$I$E)!( I$I$E)! ض ۲-E)!` hmE)!  E)!PP* 6`۰pE)4 I$ $e)E)+u I$Ie)E)" ۰m۶E) I$I$)( ؆ ۺ-E)@ ۆmܖmE) I$I$)( I$I$)( m[mE)P I$I$e)E)ި_ I$I$)( I$I$e)E) I$I$1 I$I$E)!< I$IE)! I$I$E)!۶E) ` I$I$E)!.  E)a@6۔gE)= I$$e)! I$I$e)! E)* I$I$E)! I$I$)( I$I$E)!. I$I$)( ۶m۰-E)` ۶m6,E)@ E) I$I$)( I$I$E)! I$I$E)! I$I$E)!* I$I$E)!* I$I$1 $I$e)E) UU H e)$! c۳e)! O%E)_z I$I%!? pI$$!/`e)! MI&E)A6 HE) &=R!ਪI e)% '1 S۹}E)b` 4 !)  $! ` @!* d!d  !@ @!A Id!d I$I$$!! I$I$$!!* H$!!pֵ $!!5- I$I$$!! I$I$$!!( 6! m9!$!~P$ID I'U  qIڴ !/ m!  $!!)  $! ! @$!! ^ $D! I$I$$!! $$!  $!!x $! @$!!5 I$I$$!! I$I$$!! I$I$$!! &$! hڲm! жm!Nl!H a M !*./ $!!= %)!׫ I$I$E)! @E)@ 0%)   %)b@@ E) I$I$E)$! !E)!" I$I$E)$! I$I$E)! I$I$E)!* @E) I$I$E)!* I$I$1 I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$E)! I$I$E)!( E)A(4( I$I$E)! I$I$E)!  E),4 I$I$)(  E)@ E)a I$I$)( I$I$E)! I$I$E)! I$A$E)!@ nmE)  I$I$E)! I$I$E)! I$I$e)$! $I$E)! . 6lΖlE) I$I$E)!  ۶-E) ` I$H$e)$!* I$I e)E) ۶m60E)p hmE) A Ie)E)/. 6llE) I$I$e)E)W I$I$)( $I$E)! ضaٶmE)  I$ $e)E)U I$H e)E) I$I$1 I$I$E)! I$I$)( I$I$E)! I$ $E)!  %)   I$I$E)! 8E) {e)!) I$MB0e)! (E)x I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)!( $IE) E)A I$I$E)! I$I$E) I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$1 I$e)E)- I$2,e)! XE)~ꨀ I$x(! I$!/۰moE)*`2@rE)!pG"e)$ $I$e)E) I e)E)z *۴d(hE)aTJDe)" $Ie)@ i E)! ÖI$e)E) X [%`e)E) HI$e)E) I$I$e)E)WZ $I$e)E) Xe) @ `E) uP %)/$AR-ٔE) 7 `B2)e)$! I$K$e)! I$I$E)! I$I$e)E)/ I$ E)!( I$e)E) + I$I e)E) I I e)$! I$I$E)!ˆ I$I$E)!x $$! m[1!"!*)@ !o~ !A !  I$I$$!!/ E)! I$I$E)! @ %) I$I$E)$! hE) I$I$E)$!*** E) I$I$E)! I$I$E)! I$I$E)! I$I$E)!  E)' I$I$E)! I$I$1 I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)!( I$I$E)! I$I$E)! I$I$E)!* I$I$E)!* I$I$E)!  E)!j E)   I$I$E)! m6l;E)!*@ E) I$I$)( @DE) I$I$)( I$I$)( I$I$E)! I$I$E)! $@E) p ۰ ۶-E)@ ۆmۖmE) I$I$E)! I$I$)( I$I$)( I$I$)( I$I$e)E)y I$I$E)! E) I$I$E)! MѶmۢE)!&@ mmE))6AdE)  I$$e)E) I$H$e)E) I$I$e)E) $I$e)E) I$I$1 I$I$1 ꪪ I$I$e)E) @$I$e)E)] I I$e)E)_ ۶mXmE)  I$K$e)E)^x H I$e)E) I$I$)( E)@ E) I$I$E)! !$I$e)!KmmE)  I$X`e)! I$I$E)!/ I$I$E)!. I$I$E)!  RE) i E) C I$I$E)! I$I$E)! I$I$)( I$I$)(  E)  I$I$e)$! I$I$E)! E)!BJ 0E)F$I2E)@" JE) ۲mlE)ꪠ I$"! D! ?/ P$i!bpɐ`$  vxOAe)/ (Ԭf1xW ؖmT !+ i`!+ $H!*  5Bi! ` @!d!d $$!!+Z  AE) d!d I$I$$!!* $$!!zV I$ E) e) I$I$$!!. 0$! * M4! & aC'I$IĉA y $ ! it-!/ !$!  $d!d  d!d !  $ !  !  P$! $!!x I$!!z- H$!!W  ! I$I$e) I$I$$!!* @$! m۶5! ?!W@'M$! ت$$ ibW ;1! II$ !* I $!+ I$I$E)! I$I$E)!  %)@ %) I$I$E)! D@%)! I$I$E)! I$I$E)! @%) I$I$E)$! I$I$1 I$I$1 E)  I$I$E)!  H%)  I$I$E)! I$I$E)! I$I$E)$! $%)AР I$I$E)$!* I$I$1 @DE) E)! I$I$E)!  E)@ E)A I$I$E)!* ۶ ۶-E)@ ۆmۖmE)A I$I$E)! I$I$E)$!0 64 E)A` I$I$)( I$I$)( I$I$1 I$I$E)!8 I$I$E)! II$e)$!* I$I$)( llE)a& I$I$E)! I$I$E)! I$I$)( I$I$)( I$I e)E)_׵ I$I$E) I$I$)(  E). c۶mE)!p* m nE)4,۶ ۸-E)@ `ÐmE) I$$e)E) I$Ie)E) I$I$1 H$I$e)E) I$I$1 I$I$e)E)U $Ie)E) * II$e)E) ~ mҶE)!@ ضm6`E) I$e)E)- I$I$)( I$I$)( E) I$I$E)! ɐ$I$e)! 2`۶me)` we)! I$I%e)! I$I$E)! I$I$E)! hE)  E) E)  I$I$e)$! I$I$)( I$I$)( @E) I$I$)( I$I$E)! I$I$1 E)$, I$I$e)E)-])l䖐E) I$AE)! J, E)^ I$M%! I$$!/a{}E),* dB%e)! I$lB0e)%) A e)E) * I$I$E)! $I$E)! ۖmle)E) @e)E) ɐ$[-e)E) p [le)E)% I$@ e)E) $ IE)  !I$e)E)^ m&de)! I&$ E)  0E)b eE) 2۶E)@ !I E) I$I$E)! I$I$1 H$ $e)E)\s  I$e)E) e6E)b  I$I e)E)k/ E) ` $mP4E)^p $I}o) !D! Im6!  E)! I$I$E)! I$I$E)! E)( I$I$E)! I$I$E)!  %)a I$I$E)! I$I$E)$!  E)  I$I$1 I$I$1  E)A` E)!  I$I$E)! 0 E)  I$I$E)! I$I$E)! I$I$E)!" %) & I$I$E)$!* I$I$1  E) I$I$E)! I$I$1 @E)A I$I$E)! I$I$1 6`E) I$I$E)! I$Ie)E)_/ I$I$E) ۶ 7`E)A$, I$I$)( I$I$1 I$I e)E) I$I$E)! I$I$E)! I I$e)E)WյJ I$I1! I$I1!_ mmE)!- I$I$E)! E)! ^m6bE)! H@ E) I$I e)E)W I$I$)( I$I$)( I$I$E)! h۶E)! I I$E)!8 I$I$)( I$I$E)! $I$e)$! I$I$E)! I$I$e)$! I$@e)E)= I$I$E)!88 I$e)E) 6`۶E)A4 I$I$1 I$I$)( I$I$)( I$$e)E)ꪂ I$I e)E) I$I$)( I$I$)( 6lۇE) I$H$E)! I$I$e)!+ @I$e)! I$e)!  I$I%e)! (%)A` I$I$E)!/ I$I$E)$!@ HE)$ I$I$)( I$I$E)!* I$I$E)! I$I$)( E) I$I$E)! I$I$E)! I$I$E)!* I$I$E)!BӪmѶE)I8%E)a iк5! (6d!_5 P@E)- 4꛷E)XV ir4!+  @$! @$I!*  $I!   d!d Ʉd!d d!d I$I$d!d d!d ("!@ ! !  I$I$$!!? @$! ЦMӪ6!~K>M$!bN$IIRM!(4 ɶm !b  Pl!  $Hd!d Hd!d 0! !!,$ d!d I$I$$!!/+ $!! *x $I$!!Xխ H$!! I$I$$!! I$I$e) 0$! H$! жmF2!e$!$I IZ! IY * $I! I! $!! $! I$I$1 I$I$E)!  E)j %) H%)$ I$I$E)$! I$I$1 I$I$1 I$I$1 I$I$E)!* I$I$E)! I$I$E)!* I$I$E)$! I$I$E)!B  E)  I$I$E)$!* I$I$E)$! I$I$E)!ꂂ I$I$E)$!* I$I$E)! I$I$E)! I$I$E)! @E) p I$I$E)! / I$I$E)!. I$I1E)}}+J I$I1!J I$1%)e I$I21!_e I$1$!U.1!. I$$1E)*. I$1E). I$1E)W I$f1$!MZ$e) I$=1!ժJ I$B1E)UJ I$I1!W. I$IІ1$! mێ E)! I$I$E)!x E)!k m۶mE)! HE)b<4 I$Ie)E)U^/ I$I$)( I$I$)( I$I$)( ۶m۰-E)` II$E)! I$I$E)$! I$I$)( I$I$E)! $I$e)E)U I I$e)$!* I$$e)%) I$IE)! II$E)!  60E)` I$I$e)$!( I$I$e)E)7Wz I$I$)( I$I$e)E)+ I$Ie)E)" I$I$)( I$I$)( ۶ ۶!E)@ E)  I$I$E)! dI$e)!/ I$ $e)!x I$I2 e)! I$I$E)! E)* I$I$1۶mE)` I$I$E)! I$I$E)! $I$e)$! I$I$)( E)  I$I$E)! I$I$E)!. I$I$E)! I$I$E)!& dI$e)E)5W}K-ME)!ܠ ߘmۆmE)驠 I&! )DI$! ۰mߖpE) DE)  M&$[e)%) I$ɂ$e)E)ꪊ I $e)E)z  dI%e)E)%Vp ۶mÖ`e)E) I$I$1" I$ e)$!* `I$e)E)- Ydle)E)( ۶-6 E)a@mۨ-E)@ e) C" E) BAy$!> H%);/-e)! - nضE)A $ I$I$E) ( I$I$)( 30۶mE)A` $I$E)! ( ۦmE)! II$e)E)n> ۲m6lE)@ i+I$E)A I$ ! IH$! I$I$$! %)A I$I$E)!* I$I$E)! $E)A @E)@  E)  I$I$1 I$I$1 I$I$1 I$I$E)$! I$I$E)! I$I$E)! I$I$E)$! I$I$E)$!" @4%) ` E)(4* I$I$E)$! " I$I$E)$!* I$I$E)$! * I$I$E)! * I$I$E)! I$I$E)!(*( I$I$E)!* KE) & I$I E)$! I$IE)!?J I$Ib1!J I$I1!J I$1!e I$I`1!UJ'1Azm0f1a. I$1E). I$1E). I$ 1E)U I$涆1!Ie) . I$O1$!J I$IB1$!~z I$I$E)!+/ :m۶e)!^1!  $I$f1!Wmce)!Z?e)!Z-۲E)!@ E!E) E)!_ `E)!׀  E)! K-mE)a E)a xE)<< I I$e)E)UU I$I$)( I$I$)( I$I$)( I$I$E)! I$I$e)E))U_ KI$e)$!*L)I@E)4 mM E)  I$I$1 E)!@ I$I$E)! I$I$e)E)-~ II$e)E) W I$@ e)%) ۶mÖmE) I$I$1 ۶a۶tE)$ I$I$E)! I$I$E)!M[%E)rz I& $e)!~- I$I$e)! m۶mE)B E)  I$I$1 I$I$)( I$I$1 I$I$E)! !m۶mE) I$I$1 I$I$)( [mE) I$I$E)!* @HE) &m=&!"Mъ ~޷  ! MV! I !/  @$! HI$!** $ *(!@ KI! $ &I!*  @$d!d Id!d &d!d @„!@E) I d!d Id!d  4! iڴ-!$$!@$IAPz Ixa  i4g!/ M5 @!  H$d!d  I$E) $A$! $ !  @! ) ! ! I! 0Ld!d $d!d @$d!d d!d $! 0L$!8!>!^(M$!t$I`*IT a* 4I$ !* I$!! -! $!b I$I$E)! I$I$1 PE) I$I$E)! I$I$E)! E)!j E) I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$1 I$I$1 I$I$E)$!* PE)a8 I$I$E)$! I$I$E)!  E)A E)  E)!  6E) E) $E) !E)!_u I$I$E)!⭭ I$I$E)! /+$p IE)&uڶ1 $I$1E)UU $I$e)!  @$I$e)E)`]U (E) ` I$I$E)!  I$I$E)! I$I$E)! I$I$E)!W*  E)!UJ E) E)*$, IE)b77 I$I$E)! I$I$E)! $I$e)!‪e)!ժ  $I$f1$!_^ XI$f1!}e)! e)! # E)A ʇ nömE)( @E)! @E)!  E) `( E)A &  E)a` I$I$E)!) I$I$)( I$I$)( I$I$)( I$I$E)! I$I$E)!  Ò$I$e)$! ۶mE)`$)`IJE) I$I$e)E) I$I$1 E)!& I$I$)( HI$e)E)-U^ I$$e)E)胵 ۶mfE) I$I$)( ۶m6] I$I$E)!  E)@@&`ӱmf1۱mۆ1 $I$f1$!~ $ɒ$e)!/ H$I$E)$! E)* I$I$E)! I$I$E)! I$I$E)! I$I$E)!U E) E)!@ p E)b` E) I$I$E)!* I$I$E)!(  E)*@ E)A `E)@  E)  E) E) I$I$E)! E)!u  E)!{* H*E)a* HE)!z׈ H E)!z 04 E) LE)!U{ E)!W @"E)@ PE)) ضe۷mE)  I$I$e)E)U I$I$)( I$I$)( I$A$e)$! $I$e)$! mmѶE)!@ vl۰mE)!( I$I$1 II$e)E)** I$ $E)!m۶mE)a I$I$e)E)- mmE)!$ I$I$)( I$I$)( I$I$E)! PFE)  ɐ$I$e)!  Se)!x $IhɐE), FE)* I$I$E)! I$I$E)! E) I$I$E)! I$I E)$! I$I$E)!* I$I$)(  0E)!`XVUK>!_X< E)A  I$I$E)! E) $( I$I$1 $E)A @E)a I$I$E)$!( I$I$E)$! I$I$E)!  E) I$I$E)! (E)`  E)b I$I$E)! I$I$E)$!(* I$I$1 HE)A4 I$I$E)$! I$I$E)! I$I$E)! jE)ޠ  $E)!UUz m׶m%) ۲E) R"%E)j  E)  I$I$)( I$I$)( I$I$1 I$I$)( I$H$e)E)U\ I$e)E) V I$e)E)% I$I$e)E) I$I$e)E)ꨪ I$I$)( mm6E)!p f,mE)a * I$I$E)! I$I$)( I$I$E)! I$I$E)!۰mۘnE) mضE)!@ h @E)  E)   E)J HE) &!__C8t$I0C*   yD !* T"%H!! & !! I$ ! $H$! I  !*  E) $A$! HI0!** $E) ")*!!A@ @!  Ъvݺ9!%N$I$I o6  L !  !A"`$! H$I!* I$! @$I !*  H$! ( R.%R#$!` J$M!( @$ !   @ I&! $HE)  I$H0! hZt!$ &!*%O$ ^UI$I/IP$!a }&I$! $!% I$I$$!!* @ !, I$I$$!! I$I$$!!/ @4!A` $!  $!b, I$I$$!! )$!b  $!!+@ h!   $!@ ! h$! -! @ $%) H}$%) 6mI$!` I! I'$! $!! I$I$$!! I$I$$!!+ I$I$$!! I$I$$!! I$I$$!! $!!j I$I$E)! h E)(> I$I$E)! 0E) %)b I$I$E)! H%)a( I$I$E)$!* I$I$E)$! I$I$E)$! I$I$E)$!* I$I$E)! E)` I$I$E)! I$I$E)$!*  @E)A I$I$1 I$I$1 I$I$1 I$I$1  HE)A( I$I$E)$! <E)` I$I$E)$!  E) @  E) E) I$I$E)$! I$I$E)$!( HE) I$I$E)!j I$I$E)! /E)& I$I$E)! I$I$E)!( I$I$1 @E)` I$I$E)!( I$I$E)! I$I$E)! E)j HE) L$HE) UUW &i۶%)+  -E) E)A4% I$I$E)! I$I$)( I$A$e)E) I$I$)( I$A$e)E)^ ِ$I$e)E)Uz I$ $e)E) I$I e)E) I$I$1 I$I$1 I$I$)( 8,#KnE)@* E)( I$I$1 I$I$)( I$I$E)! E)* mm;e)! _#2زiE)a@ PIE)b I$I$E)! I$I$)( I$I$)(  E)! I$I$e)$! * I$I$E)! I$I$)( I$I$)( E)$ I$I$E)! E)!M l de)!  I$[,e)! M$ !^ I$!/%A&%)! /e)! IҤ`Be)%)( A$e)E)* I$@ e)E)7\` , de)E) 5 ɖlۆ$e)! I%ؒme)! ٖ`I$e)E) 7\ ٖ$2le)E) H  e)E)x I$E)! (" [LE)aukE) j 5X!z  `E) - @! e)! I$I$E)! * I$I$E)! I$e)E)= I$H$E)! ( I$I$)( I$I$E)!  E)@ E) @$! I$I$$!!/ Ȁ @$!,( H$%)A $E)W ɛt$! R&m%!Ap* N$!u $! I$I$$!! I$I$$!!* I$I$$!! I$I$$!! I$I$$!!* I$I$$!! $!!* I$I$E)! 0E) @E) $%) I$I$E)! E)!~ʪ %)  I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)! @E)4 I$I$E)$!*( E)`   E)b  I$I$1 I$I$1 I$I$1 I$I$E)! PE)  I$I$1 D@E)  E)` E) I$I$E)!* I$I$E)$! I$I$E)! I$I$E)$!( I$I$1 I$I$1  E)A  E)b@@ E) I$I$E)!" ,$!!d E) I$I$E)!* I$I$E)$!*" I$I$E)$! " I$I$E)$!* I$I$E)$!** I$I$E)!@  E)- E) fE)~ Iݪ%) $E)U )!E) E) I$I$)( I$I$)( I$I$)( ˰۶mE),& I$ $e)E) I$I$e)E) I I$E)! I$I$E)!!m6mE)  I$ $e)E)ꨋ I$I$e)E) I$I$)( E) I$I$E)!^ E)! _ 6-jE)!W` &Z.!!`&mҼ!!hA$I$A*I$q [/ % ! %!ah $JI! !I$I$! A$I$!  I$!  IE)a  I! @!H! IIE)a hg$H!A Z$!l`$ P$I$I$I! )YlQ" o DH!  $I$! RDj$A! (  H! * I$! $I <!`  $!   E) I$I$)( I$I$1 I$I$)( ,E)p A I$e)E)U I$@e)E) I$I$1 I$I$E)! KmöaE)A( H I$e)E)%U I$H e)E) I$I$)( @E) I$I$E)!  E) ?~ hҢmE)!X%W  @E)x  E)* I$I$E)!/ I$I$1 I$I$1 I$I$E)! I$I$E)!* I$I$E)!08 I$I$)( $E) p H E)$( I$I$1 lI$e)E) ] I%`e)! @E)zꪠ IW!-* @Rd%)b@%ްmE)ar ie) I$ $e)E)* I$e)E)p*B$AE)@ e)A @ e)E)p I$e)E) 'X I$le)E) 6,$E)@e) ) hB6!e)E)pdN$ E)X #4 ! mtE) -7 D2Ie)$! I$I$E)! * I$I$E)! I$I$)( I$H$e)E)X{ I$I$)( I$I$)( I$I$E)! ( I$I$E)!V` J$!aؾ $I$! I$IX ! I!Aޞ $ ! I$I$d!d $!!+ I$I$$!! * I$I$$!!* I$I$$!!* $$!!*U $!! I$I$$!! $!!}/ I$I$$!! I$I$E)! @E)j %)  @ %) I$I$E)$! I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! @%) ` E)! I$I$E)! E)$ I$I$E)! E) I$I$E)! I$I$E)$! I$I$E)! I$I$E)! I$I$E)$! E)!j*  E)!zb I$I$E)$!# I$I$E)$!( I$I$E)!J E) I$I$E)!( I$I$E)! I$I$E)!* I$I$E)! I$I$E)! I$I$1 E)` I$I$E)!! I$I$1 I$I$E)$! I$I$E)! I$I$E)! + I$I$E)! E)@ E)A I$I$E)! I$I$E)! H E)  E) [vR @%)z mE) PE)+ I$I$E)$! I I$e)E)U E) I$I$)( I$I$e)E)-U_ I I$e)E)% I$H e)E) I$I$1 I$I$1 $I$e)E)_ I$ $e)E)ꨋ I$I$)( I$I$)( E)!@ I,5!z-2!}I$I$Iy * ID$A! H"1!PC  !* $!!I$I$!I$I$! H"I$A! @$I$!I$I$!  $I!* mۺ5!  ,9,!9p$I$IA I1I/ LVD!* "@I!aB a !I$I$! $$R" !Ap IE) B"IR#%! `p $I$H !* B#IK!b $I"!J  ! , $%I2!s$H$I/I@A!U $I$ !+ I! I$I$d!d $!!* $!! (  ! I$I$$!!/* I$I$$!!( I$I$$!! ( $$!!p_  $!!ֵ !4 I$I$$!!* hE! H! &!^ $5O$!x$I ڪ* I$$!+ [IH!   @! I$I$e) I$I$$!! * I$I$$!! $$!! ^ 0,! 2DB$! H$!!W- $!!- $$!A I$I$e) I$I$e) I$I$e) $!!~ $!! I$I$$!! I$I$E)! I$I$E)!꿫 I$I$E)! E)p I$I$1 I$I$E)!ꪪ I$I$E)! I$I$1 I$I$E)$! @E)  E)A&. I$I$E)$! @E)` I$I$E)! @E)!( I$I$E)!Ȫ E) I$I$E)! I$I$E)$! I$I$E)$! I$I$E)!( E)!% E)! I$I$E)$!* I$I$E)!  E) I$I$E)! I$I$E)$!  I$I$E)$! I$I$E)! I$I$E)! I$I$1 I$I$E)$!  E) I$I$1 I$I$E)$! I$I$E)! I$I$E)!* I$I$E)! ( I$I$E)$!* * HE)A$ I$I$E)! ` I$I$E)!* E) @ Q @E) i$ E)  Mm $! `E) E)! - II$e)E)5U_ E) I$I$e)E) I$I$)( @I$e)E)-^ I$@e)E) I$I$1 I$I$1 I$I$e)E)5Wz H I$e)E)5W I$H$e)E) I$I$)( I$I$E)! E)& u E) X@E) . muE)!Vp @"@E)AJ E) I$I$E)! II$e)$! I$I$E)!( I$I$E)!* I$I$E)!@ E) I$I$E)!&> I$I$E)! I$I$e)E)%_w X e)$!  I$K%E)! K! P)$!> I$f1$!+U s51E) [%I%E)!` H e)E)x * lI$e)E)x Ie,e)E)* e)E) dK%e)E)\`iE)a 6ٖaE) I$H$E)! a0!e)! [-ۈmE)@ U u$!!  %)  * @ E)! I$K%E)! * E)a$ I$I$)( I$I$E)! ( I$I$E)! -۲mE)a@ E) hHE) $PH! d!d I$I$$!!* I$I$$!! I$I$$!! $$!!/_ $!( H$!*, I$!! $!! @ $!b% I$I$e) I$I$e) I$I$$!! $$!!_ I$I$$!!+ I$I$$!!/ I$I$E)! I$I$E)! I$I$E)! E)(&* I$I$1 I$I$E)!* I$I$E)! I$I$1 I$I$E)$!   E)&@ E) I$I$E)! %)$ I$I$E)!  %)  $E)` I$I$E)$! I$I$E)!** I$I$E)$!* IE) $E)!^ E) I$I$E)! I$I$E)!* I$I$E)!J E) I$I$E)! I$I$E)$! I$I$E)$!(* I$I$E)$!"* I$I$E)! E)!j@ %)A E)! I$I$E)! * I$I$1 I$I$1 I$I$1 E)  I$I$E)$! $@%)!Р H%) I$I$E)$!**  E)@ E)!( I$I$E)! E)z #E)} N0$!  $E) U E) - A$I$e)E)U} I$I$)( I$I$)( I$I$)( H I$e)E)W I$H$e)E) I$I$1 I$$e)E)Wj AI$e)E)5Wz I$$E)! HP3%E) j`'I$!AB$I$A`*I؁I t  ! $b"! ض!I$I$E)a$! (!*b!I$I$! !ꪪI$I$! H !a   @,9! P)%Y>!_"'N$I$I/   lR&#!!z THZ&!!I$I$!!H!I$I$! II$!** $! #$I! !ꪪ $I! $b! E$$!z$I$b}I$IA*  IuJ$ !* !$!/ I"i!@  ! $d!d  A$!!\ե  !@ t4!b ! $)$!j  ! $!!- I$I$$!! H!b4 -! HZ$! $I$! I$IX ! IJ!+  ! d!d  ! I$I$$!!+ $$!! W @"!@ 4 0$!* $!! $!@  $! I$I$e)  $!A@ H!A A$!!] $!! I$I$$!! ( I$I$$!!. I$I$$!! PD!  *$!  I$I$%)$! ,%) ` I$I$E)! I$I$E)!ꪊ  E)!*_ E)!( H%)A,$ $E)!U iE) mE) $E) U ФE) ФE) &E)_ E)U ږE) )E) I$I$E)!_ TE) E)!} E) I$I$E)! ~ I$I$E)! I$I$E)!*  E)(@ I$I$E)!* I$I$E)$! I$I$E)$!* I$I$E)$! I$I$E)! I$I$E)! H%)a,4  E)! I$I$E)! I$I$E)$! I$I$1 I$I$1 DE) I$I$E)$!*(  E)h @E)@ E) I$I$1 E) I$I$E)! E)!x*  E)  ۠`%)~ PNeE)/U  E) I$I$)( I$I$)( I$I$1 I$I$)( I$e)E)%U^ I$$e)E)U I$I$e)E) I$Ie)E)z** I$H$e)E)%x I$I$e)E)- I$I$)( E)a$ I$I$E)! I$I$E)!_6ضoE)!%_ džE)!X E)!/ ۰mE) `  E) E)A I$I$E)! @E)` E)  E) I$I$E)!  I$I$E)!* I$I$1 `I$e)E)- I$X-e)! `0%)!W_ L$E)!^ ɐ$I$e)! ? @!e)!  foe)! @ I$E)!  dI%e)E)5Z` ٶmÒ!e)E)  e)! 7۶E)!  I$le)E) I$Ie)E) I$A e)$!* @ e)$! [E) uڪ ! P.E) + e")e)! n6lE)A I$I$E) $I$E)! I$H$e)$! I$I$E)! I$I$)( I$I$E)!( E)!x` I$I$$!! $!! x IJ! @$!!_ $!! H$!A( I$I$$!! I$I$$!! P$! I!a% $!!~ $!! I$I$$!! I$I$$!! $!! )($!! $! I$I$E)!/ %)A4 I$I$E)! I$I$E)! &E)!W  E)@ IE)b 1E)* k$E) -E) 6E) E) E) $E)*U E)* m$E) E)!8 (E)z $IP $E)!` @E)!U]zk E)! fE)* I$I$E)! E)!^I$IE)۶mۆE)* I$I$E)! $@E)!P I$I$E)! I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$! (E)A` I$I$E)!* I$I$E)! I$I$E)!  I$I$1 $E)A I$I$1 I$I$E)! I$I$E)!* I$I$E)! I$I$E)$! * I$I$1 I$I$E)$!*  E)` (.E)h Y @%)A PU;E)/W E)- I$I$)( I$I$)( I$I$e)E)z  E)!' H I$e)E)W I$H e)E) I$I$1  ,X&E)CL$I$I$?ImbI $!`d!K!B$D !` 80l!@!!j@ A !P$ ")H A@ H)!h&> Z@$I$I$C? i{ !]߽ `! !ꪪ@ !4PB) `@ !@!aP HJD $( 0!zI$I$!$ p$! H",I6!bܪ8&N$I$I$IT b/ (Q!A"  S%*!!r !$A!  d!d @$!!@ $! I$I$e) @!A@ *$I!A !d!d ! ! I$I$d!d $=!x )M$!`WUh$I! I$! I% @!* H!A  Hd!d I$I$e) $d!d I$!!~U- @$!!^ $!!% I$I$$!!* I$I$$!! * L@T! $!!  J !$ $!!z I$!!U $!! H!4, $!! I$I$$!! @2d!d  $I! $=!Z AҖ$!  z$! @UI$!` &I! К$IҾ!Aޞ$! k$]!bZ m'$! z y$!} IJ%)  ImE)U( m+IHE)44 N"E)W I E)ժ uE)W I hE)U mMR(E)az` ͗%)A& i %) %IE) $E)A I $!*. (E)xp E) I$I$E)!/m۶ E)b m۶ e)!{@ E) E)! E)  I$I$E)!* I$I$E)! I$I$E)$! I$I$E)$! I$I$E)$!** I$I$E)$!*  E)  I$I$E)! I$I$E)! I$I$E)!  E)!J E)  I$I$E)! I$I$E)!* I$I$E)!* I$I$E)! I$I$1 I$I$E)$!* I$I$E)$!  E)z& ۤH%)  v%) U^ TE)+ I$I$E)$! I$I$)( I$I e)E)  E)` I$e)$! I$Ae)E)% I$I$1 I$I$1 $I$e)E) ^ I$ $e)E) I$I$e)E) I$I$)( I$I$E)! I$I$E)! ۶a۶5E) *z TP E)b*X  t%)!@* p@E)a8 I$I$1 I$I$1 I$I$E)! * [m۰mE)` I$I$)( I$I$E)! I$I$E)!* I$I$1 ٖ I$e)E) U&m2,e)`` @ t%) @$!! / I$I$e) / $[ e)!8ɐE)  e)E)  ɐ$K-e)E)x ۶m`e)E) $e)E) I$@ e)E)Xp$,ò E)@@ A$e)! I$H$e)$!*  e)$! l E)x vh۰ %) @&E) + ؆d۰ E)  ۶f`mE)a I$I$e)$! I$I$1 E)!.6( I$I$1 I$E)!@ E) HE)!V I$I$$!! I$I$$!!* I$I$$!!  J! @"A!@ PI ! @$!!_- I$!!  $! !A $!! d!d ("I!a@` P! $!W H$!  AI$! HiI$!$ $I!`$I !A* Җ' $!U. O} H!A O! o! z y;I%)U II`E)U m+ E)  IE)U  E) IE)U qmE) )J%)aj< E) HE) E)!` 6,۲mE)@ E) I$I$E)! I$I$E)!  E)A@ PE)  @E)a f1!_. OI$1!z I2?$1!U+. I$1!Wm;v2̆1Az X@E)a( E)! I$I$E)$! `E)`  E) I$I$E)$!* I$I$E)$!* I$I$E)!* I$I$E)!+ I$I$E)! I$I$1 E) I$I$1 I$I$E)! I$I$E)!" I$I$E)$! I$I$E)$!* I$I$E)$! I$I$E)$!* $E)Ap ɵ %)Wx `%'E)-W E)- $I$e)E) ˇm۶mE) I$I$E)! I$I$e)$! hE) 8rb'I$I$?I1ge  !@˜!!I$I$E(C` !H ! $@ !p!I$I$E(C !ꪪɯ!!!%I$pmH$I$aIDeX IӴ Q!u!@ ʡH .&l 0!I$I$E(CI$I$!`ؖ!!!Z@!@ ْ!bpP$p$I$*I a? I҄A * D$I!  $@$I!' I E) @`E) @Bd!d ! ! Ȅd!d Ä$E) !d!d d!d  d!d @&!x $5I$!O$I!/ I|$!- $!)& $ d!d Hd!d  `! `d!d Ȅ!d!d  d!d I$I$$!!+ I$I$$!! $!!*~ @$!!_ $ $!!W $!!w- $!! $!!* I$I$$!! $!!z @&$! 6! HFz$!( $I$!$I$!O$I * I$/! I$$! I$%) i IzIE) E) HE)!U* I$I$E)!* I$I$E)! I$I$E)! E)  @E) I$I$E)$! I$I$E)$! I$I$E)$! $I$e)E)UUU I$I$1 I$I$E)! I$I$E)$!* I$I$E)! I$I$E)! I$I$E)!(mmE)! :E)  I$I$E)! I$I$E)!( I$I$E)! l̶ E)A*.& E)!J1f۶mۆ1a  f1! u. II$1!W]. I$&$1!U^ I$O1!Uz 2ɆmE) j E)!U I$I$E)! I$I$E)! E)a&* I$I$E)$!* I$I$E)! I$I$E)$! I$I$E)! I$I$E)!/ I$I$E)! E) I$I$1 I$I$E)$! I$I$E)! I$I$E)$!" I$I$E)$! * I$I$E)!* I$I$E)$! E)!~h }5E) TM,E)-Wz TE)+ I$I$E)$! 2l۶mE)` A$I$E)! I$I$1 AI$e)E)-_ I$@ e)E) I$I$E) I$I$E)! AI$e)E)%WZ I$Ale)E) I$I$)( I$I$E)! E)!_( E)- 4E)x* 0FE)* I$I$E)! I$I$)( E) ($ I$I$E)!( I$I$E)! I$I$)( I$I$E)! $E)a I$I$1 I$e)E) 5Uu K%ٖle)!  E)h E)!ﯭ I$I$E)!-De)a  I&DCe)%)  e)E) a۶E)! I e)E) % ِa$e)!8 I$@ e)E)X Km e)E) ' I$H$e)E) I$I$E)!("1!J$&E)  uj۰ %)UVX 0`E) +- C!ɐde)$!  I$I$E)! * I$I$E)!  E)b I$I$E)!* I$I$)( I$I$)( I$I$E)! p $!! H$!!W- $$!!xU A$!! $!!~ I$I$$!! $!!~ $$!!_ -! @$!  JI$! ?I$!$I$!bO$I! I$%!* I$! IDE)bח* *E) E)  E)!ժ I$I$E)! I$I$E)!* I$I$E)! @E)  E) & I$I$E)$! * I$I$E)$! I$I$E)!* I$I$1 I$I$1 I$I$E)! I$I$E)!* I$I$E)!( I$I$E)!  E)@@ pE) I$I$E)!B E)! I$I$E)! I$I$1 I$I$E)$! I$I$E)! I$I$1 I$I$E)! I$I$E)! E)!_ I$I$E)!/wf1!U S?e)!x ۶d{0ne)e)!| E)!+\ E)!* I$I$E)!  E)A`   E) I$I$E)$!* I$I$E)!  E) $%) I$I$E)! I$I$1 I$I$E)$! I$I$E)!* I$I$E)! I$I$E)$! I$I$E)! I$I$1 `E)` I %)A %)-^ E)/ I$I$)( 9E)x^,9r$I$I$Iر!!E  !(P!IH '  p D $H!!ʪ  e!Hx A((4@ ```!4h¶!z^9`$I$I$/I؁l/ m&R!!j H$I! 0`Xd!X!I$I$E(C@!z$ !!!HD!֔hrF0!$I$I$I$ Icٖ/ J¤! &  I$!( a AE)  H!& $I!*  @E) @@d!d  ͠H!! $ E)  AIE) $d!d $I$d!d  @&!^ &I$!^UUI$I! j* IT$@!+ 0IжM! * H$E) JI$!!$ ҤE$I! 0Id!d $UP! d!d I$I$d!d e)  $!!*WU &!$! HD !8:  $!! !( I$I$$!!  $$!!W HZ$!A $Ij$!^U $&I$!^UU@$I$arI$I^! I$$ !߿ IO! $I$! IB$! E)! I$I$E)!* I$I$1 I$I$1 I$I$1 I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)$! I$I$E)$!( I$I$E)! I$I$E)! I$I$E)! I$I$E)! PE)A I$I$E)$! I$I$E)! I$I$E)!(*  E)b&& I$I$E)! E) I$I$E)!(( I$I$1 I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$E)! E)!f1! _wf1!+U, 1$ӶE)A@@m]E)m E)!W` E)! I$I$E)! I$I$E)$!*  E)a'( I$I$E)$! * I$I$E)! @E)  E)@ E)   I$I$1 I$I$E)$!" I$I$E)!* I$I$E)!* I$I$E)$!* I$I$E)$! I$I$E)! I$I$E)$!* KE)A XrE)/Wz OE) I$I$E)! I$I$e)E)% I$I$)( E)&&"C$AE)@ ĶmɶmE)A I$I$1 I$I$)( H$I$e)E)5U DE) I$I$)( ۶mK0nE) $  E)jj  h%)!C  E)b E) * I$I$E)! I$I$1 I$I$E)! I$I$E)! ( I$I$)( @E) I$I$E)! ( I$I$E)! I$I$1 @ e)$! I$I$E)!~x maE)!  I$K2$e)! !I$e)!  L&dCe)$! mضmE) I$I$e)E)^z`m6~E)8 I$e)E) * H$ e)E)p@ ` e)E) % A e)E) ۶-ۂmE)A@DhٲmE)B ۲m:E)`mI A* 0`E)- C le)$! I$I$E)! . @$E)A E) I$I$E)! ( I$I$)( I$I$)( I$I$E)! *( $E)  $!(  $!!z z $-!` I͖$!A $iO$!WU$I$!L$IA&I$ ! I$! j I^I!A Im$!  E)!U I$I$E)! I$I$E)! I$I$1 I$I$1 I$I$1 I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$!** I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! )E)A I$I$E)$! I$I$E)!  I$I$1 I$I$E)! I$I$E)!  E) I$I$E)! I$I$E)! I$I$E)! I$I$E)$! E)p I$I$E)$! I$I$E)!* I$I$1 I$I$E)$!  I$I$E)! I$I$E)!* E)!~* E)!~ ۶mE)!~ mRvE)!V5W &@E)!W% LE)! Up E)!/ I$I$E)!+ I$I$E)! I$I$E)$! I$I$E)$!* I$I$E)!* I$I$E)! I$I$E)$!* I$I$E)! E)a I$I$E)! I$I$E)! I$I$E)$!* I$I$E)$!* I$I$E)!* E) 'ƀE) dɮ$!AC'N$I$I$I@$b/ 6`!`!I H$   h&!A!I$I$E(C @$ K ! ,!%Ӷ!Ah$H$bI$I/I$IR I" !յmk H I$I ,X !ضm! e!ؖ!! ! ! $bI$I$ I$ ? )I$U! ") I!j @@$!- I A2E) $@2L!* $*<! `  H! 0! &I!* $I !* I@! $$C E) $A4! %O$!I!b$I$ପI$I*Ib!A*-Q!I$I$E)aI$I$!  $I$! II$!* * E! @$! I$!! $I!a I$! I$0!* b!^x$!zzaP!+ $A$I! HI$!* h$!!8  IH$! H$I$!* I$I!*  E)  R$! 0L!* L!!* !$I2E) $IdBE) $I0E) H$5!z Hm{T A4*P&!~_I+4I bj ITT! -  $IH! J!!4( ! I$I$$!!  I$I$$!! ( P E! I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$e) L@H$! I$I$e) I$I$$!! $$!!^ E)! 4E)z E)! $!! I$I$e) I$I$E)! I$I$E)! I$I$E)! I$I$E)! E)! I$I$E)! I$I$E)$!"** I$I$E)! %) @ E) %)` I$I$E)! h%)8 I$I$E)!* I$I$E)$! I$I$E)! I$I$E)!  %)b@ E) I$I$E)! I$I$E)!* HE)A4 I$I$E)!  <E)p I$I$E)! I$I$1 I$I$E)! I$I$E)! I$I$E)! E) E)! I$I$E)!* I$I$E)!  E)b& E)!z E)!~* HE) @E)!zWz !$$! * @I E)! U_ @ E)A* I$I$E)!* HE)A  E)@ E) I$I$E)! I$I$E)! I$I$1 I$I$E)! I$I$E)!  E)46 I$I$1 I$I$E)! ( E)!z NE)^ hMD! (*8  E) I$I$)( I$I$)( @E)b I$I$)( I$I$)( @E)b I$H$e)E)Tz I$I$e)E) I$I$)( I$I$E) E)!_ "!%)AJ  P$h!! E) * E)( I$I$1 I$I$E)! E)  I$I$)( I$I$E)$!( I$I$E)! ( I$I$1 dI$e)E)%U I$@e)!e ɐdI$1! 5_e I$E1! I$e)!/ X$X$e)! I$I$E)! ۶mbE) H$I$e)E) I$I$1 I$I$)( ضd۶E)( I$I e)$! I$I$E)!*hȑFNE) )x }Vk$!A** ۰mnE)+" JE) I$I$E)! * I$I$1 E) I$I$E)! I$I$)( I$I$E)! نm۶mE) I$I$E)! I$I$$!!  !A I$I$$!! I$I$$!!+ I$I$$!!+ I$I$e) I$I$e) $! I$I$e) I$I$$!! E)!U E)!u E) E)!} $!!  I$I$E)!￯ I$I$E)! I$I$1 I$I$E)! E)!z E)! I$I$E)!( I$I$E)$! I$I$E)!* xE) I$I$E)$! HE) * I$I$E)! )%) . I$I1E)U] I$I e)$!* m۶ E)! I$A$E)!* @E)! @E)A@ E) I$I$E)$!* I$I$E)!ꪂ @HE)AР I$I$E)$! @E) @ pE)! I$I$E)! E)!8 I$I$1 E) I$I$1 I$I$E)$! I$I$E)! I$I$E)!* I$I$1 I$I$1 I$I$E)!* I$I$E)! `E)!Wz E)!W -,!   0E)! U_ E)!+ I$I$E)! I$I$E)$! * I$I$E)$!* E)!* I$I$E)!*  E)` PI$!xVUUm$I$x^WI$Ib/ OOt !:I [ : *0`00bLdKd $,$a bۖm۶ $)R  <P@  4!z˟y2!}I$I$ $((I$I(I uUյP!P#2dIA@A IHF I$!b @$1 z-DZ!RI !(&˶ ۀ +$P !p$H$I$ஊI. )˒,Q! !H A(@!!I$I$!I$I$!I$I$E)a `$H$I!I$I$! "I$I!J 9$I$I!!  I&!*x^@P4!zW{).&IG m^ՕIr5!!z$! I$I!* H!a $I!A!+ I I$!* I$E)a  (!A@ H !A b( I!* $I$E)a $I&IE) I$!* $IR$!W&O!!^IP\!U^ $ !zW* I[)!k !  I$I$$!! @!ap I$I$$!!*  !A  $!!@ ! I$I$$!! I$I$e) ($!p I$I$$!! $!! H$!!׽ l-$! $!!p $! $!! @$!!ܿ !A` E)!U E)!U @E)!W. I$I$E)! I$I$E)!* $ %)Ap I$I$E)! + I$A$E)!* I$I$E)! I$I$E)! I$IE)! I$IBe)$!lZm+e)!. O$_1E)U*J I$C1E)UJ I$I1!. I$I1E)UՀ I$Ie)$! I$I$E)! I$I$E)! E)!b* I$I$E)!  E)! I$I$E)$! I$I$E)$! E)ʀ PE)  I$I$E)! ʁE)&( I$I$E)! I$I$E)!@* I$I$E)! @E)а I$I$)( I$I$E)! I$I$E)!* I$I$E)! I$I$1 I$I$1 I$I$1 I$I$E)! E)!^ !$E)!Uz hm!8* `E)!U E)  I$I$E)!*+ I$I$E)$! I$I$E)$!  E)!j I$I$E)! I$I$E)! I$I$1 I$I$E)$! * E)( I$I$E)$!** I$I$1  E)@ J4%)n  %) I$I$E)! . I$I$E)! I$I$)( I$I$1 I$I$1 $@$IE) I$I$1 I$I E)!( 6lnE) I$I$)( I$I$)( I$I$E)!~ $ %)!u_z  $!( H  E)A6* I$I$E)! I$I$E)$! E)4 I$I$E)! * I$I$)( I$I$E)! I$I$E)!* I$I$1-*m۶E)ٖm6AE)a ɑI$1! 5O'ד1x 1me)! ? H$e)%) I$I$e)E) I$I$)( H$ e)E)裍' I$I$1 I$I$)( fE) I$I$)( @E)8( X,e)$! PE)!ؠ &!! *x ۰ ېmE) ) K$[,E)! I$I$E)! . I$I$1 I$I$E)!( I$I$E)! I$I$)(  E)A I$I$E)!p I$I$E)! I$I$e) I$I$e) $!$ I$I$$!! $!!  $! $!*  &$! $!! I$I$$!!* $!! H!A$  E)!U  E)!U* E)!ս+ I$I$E)! I$I$E)! %)!&( I$I$E)! I$I$E)! * I$I$E)! I$IE)$!* I$Ie)$!  I$IBE)!~m e)%. I$O1E) J I$B1E)U~. I$I1!e ݐ$I$1E)__e?1*zJ x|I$f1$!0e }I$1%)_e Iɟ$1!*e I'$1!e I$X1! e I$Oa1!. I$I:f1$!ߠ I$I$E)! I$I$E)! + I$I$E)!  E)!h E) I$I$E)! E)a( I$I$E)! I$I$E)! I$I$1 $E) ( I$I$1 I$I$E)! I$I$E)$!  E)A& I$I$E)! I$I$E)!* @E)A@  E) I&E)!UWZ IH2I$$! [6mE) E) / E)A.& XE)  E) Уʛ$$!XVUI$H$I$I$5- &s"1I  H$I*C-9@ِ0` $!b @Ҥ(Im J"I!b$@ 5!~hɛ?!^WUE$I$,I$IH< #'N P ! HĶ!0`ú&NX, m!@@   h0l*@6mӶÖmٶm (4jҤ z^m[ @$a(I$I$((II$!mT- !! A  !b@`*( !Ac ID!<I$I$!I$I$!$@! `` I$I!( `4J!-OP!^J!WR! I$I$! !$H! !I$I$! I$!* $I!* " $I!h I$I! I$I!*  $)!* $IҟD!^ Ӥ!^׭x $(JJ!rW jW$!^ ٶ H!  d!d @d!d e) @$!!*^ @%P! I$I$$!! *( I$I$e) I$I$$!! *  $! A$! @$!!_ @H!`  ! ؁@!  ! H@!@ VAp!  $ ! $! $$! @I$%)_ >IN%) $ H$!U R$j!* N$! I$$!  $!* I$I$E)! U I$I$E)! I$I$E)! *W `۶$E)!U `۶$E)!U m۶E)!xmE) & $&I$e)! $I$e)!жۤ1bJ '$I$1E)}Ue $I$1E)Uwe1J oI$1!e I`I$1%). I%$1$!e I$1!J I$c1!e I$I1! I$I$E)! I$I$E)! I$I$E)! I$I$E)! E)6 I$I$E)!  %) @ E)! I$I$E)! I$I$E)!  E)@ E) I$I$E)! I$I$E)!* @dE)aа I$I$E)! * I$I$E)! I$I$E)!*   %)  L E)!U^ [n] `E) v]Ӯ$! жE) @$E)Z E)A@ E) I$I$E)!* E)! h E)!( I$I$1 I$I$E)$! %)  E)!J E) @ DE)A I$I$E)! DE)* I$I$E)! * I$I$E)!(( I$I$)( I$I$E)!* I$I$)( I$I$)( نm۶mE) I$I$)( I$I$e)E) I$I$)( I$I$E)! d$E)!_~ H$! 4 -E) E) & I$I$1 I$I$E)$!  I$I$E)!* I$I$)( I$I$E)! I$I$E)! *( HE)A 4& ɐdI$e)E) 5UU K%ےme)! ɑ$I$1$! UW I$A 1!^x I$e)! 7 X,e)%) I$I$)( ۆ%۶aE)aЀ I$ e)E)% I$ $e)E) ۰mò'E)`\ I$A E)$! KmömE)$ I$I$e)$!** X$`e)$! P E)az  շ$! % 6`E)! - I$@$e)! @E)a8 I$I$1 I$I$E)! ( I$I$)( I$I$1 I$I$E)! ( I$I$E)! $$!!W $!!u J )!$ @$! $! ` ! uPt!AР R"HI!x >!^ $! M$! I%)W $IR $! $y%! P! TI$! I%)!U E)! E)! I$I$E)! a۶m;E)! U f۶$E)!U l۶8e)!U 6`۶E)!@H lI$e)! $I$e)!?f1!jo`۱ۆ1a* H %)A( @E)bp I$I$E)! I$I$E)! I$I$E)! E)) I$I$E)!* I$I$E)!J 7$I$1$!J@e)AڪJ II$1!JI$$1!zJɓ$~b1!km۶f1b I$I$E)! @E)! I$I$E)$!  E)A& I$I$E)!ꠠ I$I$E)!+ E)* E)! I$I$)( I$I$E)! I$I$E)! I$I$E)!*  E)@ p%)! $ I$I$1 4E)@` $h%)a mk %)  %$I!Z E)! U ,IDI!& `io A㖌Ɇ 6`%M6l%N$ 8I$I (I˂-Y M @!׿!@ % b$H! !I$I$E)a J I$I!4 ('I$I$!I$I$!@@'!zWhD)$ Ah* ' a* P!! !`X !H! !@!@!! $I$! I$I !* 4Aض5!* $T!~ W!^x =YI!Xׯ OJ$!խ* I !* $ d!d Id!d d!d 2 Ad!d Id!d I$I$$!! I$I$$!! I$I$$!!** $!!U I$!!xխ C! @! @$!!_ $d!d 65! $! HM$! &I! b$I.! I$! If! * I@!. !@$!+ !  A$!!k]  $!!} $!! @$!!^ $!!_ $!A I$I$$!! I$$!!U I$I$$!! $$!!W $$!!U $!!  E)!U  $! % $!A  @$!A@   E) )$! I$I$E)! I$I$E)! hE)( I$I$E)!( I$I$E)!*. $I$f1$!*eI$1zJo1AJ IB'?$1!ߠ }J I$1$!u JO1 I$I$E)!+ E)!b+ I$I$E)! $E)bp I$I$E)! I$I$E)! E) E)!.4 I$I$)( I$I$1 I$I$E)! I$I$E)! I$I$E)!* L@$E)bP I$I$E)! I$I$E)! $$!  mۤ@E) -6m۶! ꪪ  IE) I$I$E)! / I$I$E)$! I$I$E)$! I$I$E)!+ I$I$E)!* I$I$1 I$I$1 I$I$E)! %)A I$I$1 I$I$1 I$I$E)! E)A I$I$E)! . I$I$E)! I$I$)( I$I$1 I$I$1 I$I$E) I$I$1 I$I$1 I$Ae)E) I$I$)( I$I$E)! h`E) @Q` m$!  à%)" E)a  I$I$1 I$I$1 I$I$E)! * I$I$E)! I$I$E)!` I$I$E)! I$I$E)$! I$e)E)UU I$E)! I$I$1!%_~e O$q#1!^|FnE)   H$e)E) I$I$1 I$I$)( H$I$e)E) K ۸-E)!$@ ۆ[lE)! I$Y$e)E) m۶E6E)!OMۖmE)a K$@ e)! p8`E)^xx ɐd%) I$e)!++ I$H$e)! E)!b I$I$E)! I$I$E)! *( I$I$)( I$I$E)! I$I$E)! ( I$I$E)!p Hd!d $d!d  5!z Ҟ$! I$! $IK!* }$I'! I! I(! H!) @ !@  ! $ $!!^ $$!!W $$!!_ $!! L$!!U !A @ $!!^~ $$!! $!!~ $$!!W $$!! U $!! )E)z <"$!A` I$I$$!!  $!! $ $!!U~ 0$!!Y, $!* @!$!! IE)!U  E)! E)! E)! I$I$E)!+ I$I$E)! PE) I$I$E)!+. '$I$1$!J NI$1$!. I$!$f1! I$Nr1$!^ E)& I$I$E)!*+ I$I$E)$! I$I$E)$! I$I$E)!+ I$I$E)! I$I$E)!+ I$I$1 I$I$1 I$I$E)! I$I$E)!& I$I$E)! E)` ̰m۶mE) I$I$E)! DHE) R#%X$!ahI$I$pI$I$I0`1`pDKܗa  . A$PKm> *`%ɐ6/Ii* $DA.5 jzpĉ2\׵im$I  q$I8 'Nq\%aÈ @$A  %p' aA  ö[K>h$I$N$ 05 $H& A$M4b( I$H(:$i    ﯮ$!@ @!Z!I$I$E)ah& A!! @ !0I!*I $ a*`H!@ !!  A@ !A*   I$I$!$!!꾫 !H$I!I$I$! $I$)! *)T!h. V!) 7II!* UID a* I@!** *). !!@ U%!A  d!d !d!d 0 ! I$I$d!d I$I$d!d &d!d @$!!@ $I! H!! Id!d I0d!d  '! DO$!a, $Id!j* I$I$ A+ Id! I*I!   !  $!!~U $d!d Hd!d &(! I! C$!!] A$!!z]  !@ !   @$!! $!!_* R$! I$I$$!!(* I$I$$!!( I$I$$!! I$I$$!! X!8 I$I$$!! $!!j  $!! $!!z d$!!U @$!!_  $!! $$! $H$!!WW `E)!U 0E)!UW @E)!] E)! I$I$E)! I$I$E)$! E)a@ E)a. $I$1$!+]. I$1$!+U. I>ɑ$1!+W I$h1!W+Ӷmf1z I$I$E)! I$I$E)$!* I$I$E)$!* I$I$E)!耂 I$I$E)!* I$I$E)!* I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$1 Y E) H$I$e)$!*  E)b`` ۖmE) M|!* tE) I$I$E)!/ I$I$E)$! I$I$E)$! * I$I$E)! I$I$E)$! I$I$E)$! E) I$I$E)!* I$I$E)$!(* E) I$I$E)$!( I$I$E)!. I$Y E)! I$I$E)! I$I$)( I$I$)( @ E)a I$I$)(  E)` $E)` I$I$E)! I$I$)( I$I$E) E)!~  0$! ( ") H!`( E)! E) I$I$E)$!( (E) @ E)A I$I$1 PE)A8 I$I$E)! I$e)E)_ H$@ e)!e ɑI$1$!%UWe I$G#1!X` 6`e)! = LB&$Se)E)  E)` I$I$)( IA$e)%)( I$I$E)! I$I$e)E)%VR ɶm6lE)A E) I$e)$! * I$X2,E)! K&%)W^z P MfE) * A $E)! @%)`  E)@ E)a I$I$E)! ( I$I$)( I$I$E)! E)  5P4E)XP$I I$!+ IJ@!* $$I! dBd!d !d!d d!d I d!d PE!  $!!*  $!!ժ H$!! %! $!!z{ $!!- H$!!W !a I$I$$!! I$I$$!! I$I$$!! I$I$$!!  ! I$I$$!! @$! $!! H$!!W" I$I$$!! I$I$$!! I$I$$!!* I$I$$!! I$I$$!! I$I$$!! $!! $!!j( $!!]  %)j %) E)! I$I$E)!*_  E)(J E)  I$I$E)! $E)*Z F$I$1!_ I28I$f1!WW I$pte)! I$I$E)!x I$I$E)!*- I$I$E)$! I$I$E)$!* I$I$E)! I$I$E)!. I$I$E)! I$I$1 I$I$1 I$I$E)!* I$I$E)!* I$I$E)! @$E)`XH$I$ȀI$I$?I$IBaܸP'H  $!BId1Apb[ APHD#)8@ (aBh%\B @I*5!`BǶ3B$I , A$I8 #'Iy^5aÈ HI$(*R"ZH' D@b @&tb'  8pIlj9Av$I+Q$I*Ib6aDI$I I$ `%!H 0! ',!I")b@@ !!&!z^Ä9p !^ץi &MJ!i\׽ q!@$!@ ,K !!@ɑ !&. C( A`B!*I$I$! $II2!*JD !* jD$5!^ p =MN!X׽ JJ!A 8 ۴eM!** h$I$ ! !I$$! $0I! ڶ  -! d!d @d!d L0!( H!* !@E)  A2!  !(  I!  R$! $5I$!`$I!+ I$! I~H! $I!!  d!d & !  ! "  d!d \K! $, &$!!^U LH$!!U !$!!  !a@ $! I$I$$!!* $$!Ap P$!8 I$I$$!! I$I$$!!* I$I$$!! I$I$$!! I$I$$!! I$I$$!!  ! I$I$$!! I$I$$!! @H$!`  $!@ $! I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!!* I$I$$!!* PG$!  I$I$$!! $!!  $!!5 E)*  E)!* I$I$E)! E)!* %)$ I$I$E)!*  E)!*n`۶ۆ1  bf1!Z _ I$$e)!\- I$I$E)!+ I$I$E)! I$I$E)!* I$I$E)$! I$I$E)!. I$I$E)! I$I$E)!* I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)!* I$I$1 I$I$1 E)A [6@E) XNL$!  E) + I$I$E)! I$I$E)$!* I$I$E)! I$I$E)!* I$I$E)$!" E)A   E)@ z%)a I$I$E)$!* I$I$1  E)!ox !Y$IE)S  E) E) I$I$)( I$I$1 E)` I$I$E)! I$I$)( I$I$E)!*( I$I$)( E) E)!~  ! 0@5! E)! / O(%)Ann @PE)p I$I$E)!* I$I$E)! I$I$1 I$I$E)!* I$I$E)$! $I$e)$! * I$I$E)!pe I$1! 5We}r1!Ђ 7f۰mE)A  *パ(E)` I$I$)( I$I$e)E)5Zy I$ e)E)6nζmE) I$e)E)5\ I$I$E)! I$I$E)! I$e)$! *c۳ E)!x I$h $!  2@E)A+ Fl E) I$I$E)! . I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)!*(  E)!@ ! $d!d &E!8 !@&d!d  " !b@ I!a  d!d a$!!U/ $!! xF!A8 I$I$$!! I$I$$!!* !$ )0$!  I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!!  $! @ ! I$I$$!! I$I$$!!  H !!4 $! I$I$$!! `$!! IP E!A $! @ $!!Հ H$!! @#%!`  $! + I$I$$!! / I$I$e) I$I$e) `%) j E)! I$I$$!! E)! E)!z E) @E)P I$I$E)! I$I$E)! ,E) 'e)!5~v ضae)! _ I$H e)!x E)!/ (@E)` I$I$E)!"+ I$I$E)$!*ꪢ I$I$E)!8? I$I$E)! @E) I$I$1  E)` H$I$$!I$I$w}I$I/  @- 'ND($ ha -P $!BHĎI 8<I$I$$!B۲% m)I$IС, X$8 q$I. A$I. I$I1` ضm[d @$!!@I B"$  `d XCAI%@$$!B$KB& pĎc9J$8  h$I",ɕ ]U 8I a0 Xd!Ilۆ ! e!Xla!  !P!^} '!A hTI!\յ H$!0 ؆ `'!X1 H % A PI$I$E(C`@!Ȗ! M4!!j p(R! ͙ P!׵e -!"2BI!@g *AI!@$I @1 a` RA! @!$H!1!~ ں>I!!* OAP$!A*z XtI!\խ 4 $I!+I! & I$ $! $I$! I !*  E) I$E) @"4$I!!` $-R#! ` TI$I! $A2LE) J$!A4, ij$!$I$! I$E ! IJ! !@$I! * `!I!*  R"!AP  A&I! `$ ! IH! A$!b $Id!d P%! I$I$e) @&d!d  d!d 2 $!!WU Ȅd!d  C$! !@@$!! I$!! U $!! $!!rߺ @&d!d )&I!!@ "-!!@  $I! Ԥ!* "5!`b mf!: $!! _ I$I$$!! Ld!d @!0$!!/-_ &$! I!+ $$!  )!j ! I$I$$!! PDH! <, $!!*j $!! P! 8 $!!z* $!!+Up H$!!*V $$!!-_ I$I$$!! I$I$e) I$I$e) I$I$E)! I$I$E)! hE) I$I$E)! I$I$E)!  %)b I$I$E)! @E)!^* 6lǶmE)!z @$E)!-V @E)!X E)!+ I$I$E)$!  E)A@ E) E)6,  E)@ E)! I$I$E)$! I$I$E)!* I$I$E)! I$I$E)!* HE)a4 r E) dr -$!x  `[E) + I$I$E)!- I$I$E)! I$I$E)!* I$I$E)!* I$I$E)$!. I$I$1 I$I$E)! I$I$E)!+ I$I$E)$! I$I$E)$! I$1! J I$Ǔ1!X P E)A(( I$I$E)!( I$I$1 I$I$E)! ( I$I$)(  E)  $I$e)E)͵W_ I$I$)( I$I$)( I$I$E)! K@!W  0I! * I$I$E)! / I$I$1 I$I$E)$!* I$I$E)$!* I$I$E)! I$I$E)!p I$I$E)! * I$I$E)$! dI$e)E)%U I$I E)!x`e I$1!%W E)* lɖde)  / I$K2$e)E) 6<mE)bp I$I$E)! ( H6f۶mE)b8 I$I$)( A$I$e)E)S饕 @4E)p E)(  [$ْ e)! @hE)z蠀 `1g! /? 6`e)! /  HE)($ I$I$E)$! I$I$1  E) I$I$E)! I$I$E)! E)  I$I$E)!^  !  $e) Ȅd!d dBd!d 0$$!!Uբ @2$! dd!d @ $!!_} I$!!U $!! d!d   „!( Pd I `  HW!!( ڶ-! n! JD!<< ۔!* $!! $!! Id!d &$! dv$!к !$! 5E) ZIE)! i`жE) I$E) UU tE) M E) $! -&E) $$! $!! H$!T I$I$$!! d$!! $!! ݰ  J$!($ E)! I$I$E)! I$I$1  %)@ %)a E)>( I$I$E)! I$I$E)!ꪪ I$I$E)!+ @E)!Z E)! z H E)!%W @@E)!^ @PE)+ I$I$E)$! ,@$E)`I$I$azI$I$/ II ,(R$bZVI !AI$I?$H$!!$H$ I $!B@M$@E[m$ [ `* &L`XI'M.$H .I&H AH$ $!!-P@&$!!IE$!!I$I$$!B @$!!IE$!!I$!B&HI&O $!Hɓ> vb'I )ж-ZI$ $!B$H( )P $I$ 9r!0(ː`m $ 5!~ !_U%I JP!B9QA)J$!a l( $@I $H$) $@  !jy I!) (R!|I !*&.j!_ m5!_5p %N!i\սyR  Az !H$I! I$I ! I$I$!* II$!** J$I!!,& E) @@$! $I$! I$I$!*  $I E)a $$=!(x $1O$!L$I! I$!U  $$I! $I!*" R$I!  I$! @$ ! I$ɐ!* $IE) I$IE) zD!( PJ!A I! $ ! d@E) ! Id!d $Id!d H2d!d $ $! k6! um&! жMڶ! $ I!* I$@! IB@$! D!!& H m%)a( E) `$E)!UU I$E) UU !E)!*UU JE)A  E)A I$I$E)!UW  $E)!UU I&E)!UU I$E) UU `$E)!WU VE)j*  IE)A I$E) UW %E)_ жhE)* k @$! mפE)* E) $! * @$!` )$!  $!!w $$!!=W  ,@@$!` E)! I$I$E)! I$I$1 I$I$1 %) ($  E)` E)! I$I$E)! I$I$E)! I$I$E)!* 0E)!Z HE)!XZ BE)!-`- E)!j- E)! I$I$1 I$I$E)!ꪪ I$I$E)! I$I$1 I$I$)(  E)  I$I$E)! * I$I$E)$!  I$I$E)! * E)!~B ف %)U^ m6!bj  4E) I$I$E)! I$I$E)$!* I$I$E)! @E)B PE)A  E) H E) * I$I$E)$! I$I$E)$!ʨ a۶mۆ1-. LR&If1$!5 I$I$e)! I$I$1 I$I$E)! E)! I$I$)( I$I$)( I$I$E)! ( I$I$E)! I$I$1 E)A M@ !  *-$!*z  E) * I$I$1 I$I$1 I$I$E)!* I$I$E)$! I$I$E)$! ( @EE)A I$I$1 I$e)E) %U ۰mE)!xpJ1I$1! 5JI$O'1!VX  e)!  I$K$e)E) I$I$)( A$I$e)$! ( I$I$)(  E)!$ I$I$e)E) I$I$)( I$I$E)! ( t6`E)4 P Հ @%)^z P&%)A *jH$E) E) (( I$I$1 I$I$E)!" I$I$E)! ( I$I$1 I$I$E)! I$I$E)$! H$E)!WWz IB@E) Id!d $ d!d I@&! $ $! `mۤ! жI۴! ڶI۶! 횴 ! I$!/ (!@ @I%)a m%)!* E)!U I$E) UU I$E) UU "E)j AE) i E)" E)!UU d$E)!*UU I$E) UU IE)!UU  !@ $!A IE) U kE)_ m5E) %E)+_ vk `E) Km%) K %)+ 1 E) vE)  !%)* s$! $! I$I$$!!* I$I$$!! 4$!` E) I$I$E)! I$I$E)! I$I$1 I$I$1 I$I$E)!ꪪ I$I$E)! I$I$E)! I$I$E)!ꪪ P%)A8  E)!^  E)!ޫZ @"$%)gzI$I$I$I$7I$I$ P@$$!!H$ $A A !A-Z4m$$!!Im۶$!!m-6$!!E&H$!!Am۶A@Ib `Aa$J$`PVUI$N( 6T$!z~I$I$! H,5؉ A$a`IiI$I$!! @$!!IE$!!mm6b@Тm&H$ $O)B$!H$I& AJX1d@ַII** I $!B@&M( i A $!b'N )PmLWE b* @&!z^ JT&,!V5r@$IJ!ZVlض s$p<`&h6l.H$!b,$9 ꪪ*mUB!1 @$I $" $ @+6!=&N$(r I2%P!AҠHT ! !I$I$! !j!I$I$!! $II!* @$I$! !  $I$! $I&!&I$! I$I!UUU% IPI!U $H$I!I$I$! $H$$! $%R" A``  $I!+  I$E)a I$IE)a I E)  $! &I! L$2! $$I!b &IHE) `$! !  I5!~ $Iښ$!UHI$ !'IBB WU!Ul! ٶm& ! 횴 ! I$!* Iv!* J!6 ! d!d ! $!!U I$I$$!! I$I$$!! I$I$$!! I$I$$!!* HPT! I$I$$!! ,@!`` $!! I$I$E)! $!!t E)b I%)!U @E)* `E) -E) n E) $iE) E) mlLE) %)  `%) @$!+ v$! I$I$$!! I$I$$!! I$I$$!! E)% I$I$E)!* I$I$E)! I$I$1 I$I$1 I$I$E)!ꪪ I$I$E)! I$I$E)! I$I$E)!  %)A@ E)! E)!^ @&E)b ؚ* I$I$E)!/ I$I$E)$! I$I$E)$!* I$I$E)! E)(( I$I$1 I$I$E)! I$I$E)!* I$I$E)! I$I$E)$! I$I$E)! * P@E)~蠀 `r%!A 0dE) + I$I$E)!- I$I$E)! @E) $%) E)!h E) $%) I$I$1 I$I$E)$!* I$I$E)!b. `"ɑ1!p/J I$I$1!x I$I$E)!  E) I$I$E)! ( I$I$E)! I$I$)( I$I$E)! * I$I$E)!B E) I$I$E)! h@!A I$! *   E) / I$I$1  E) I$I$E)!* I$I$E)$! E)( I$I$E)!  E)!j ېmE)@ !lE)be߆1/?1!WT [-ٖ e)!  I$I$e)E)}} I$I$1 I$ $e)E)ŵ E), I$I$E)!(( I$I$)( I$I$E)!  ۶%E)A ۰ e)!zࠀ juP !x   E)*+ i[-e)! I$I$E)! /< I$I$1 E)&  E)@ E) I$I$E)! * I$I$E)!j Hl%) $I'!W $I$! I $%!Uջ꛴! aI$! m6m;! L$!! mӶ! "!B ! `d!d I$!!* I$I$$!! I$I$$!! I$I$$!!? I$I$$!!  ! I$I$$!! H!<4 I$I$E)! I$I$E)!j $!!@ ! $!!uw  $!@ A! $! I$I$$!! I$I$$!!  `E)!W [ `E) -E) tE)~  %) K$! sX$! 017&E)_ IE)z E)! I$I$E)! I$I$E)! I$I$E)! @$!  I$I$E)$! I$I$1  E)` I$I$E)! I$I$E)! %)@  E)kH$I$!w}I$I$$I$I/ II$! $,H$I$ (I$Imۢm$ pII!AI$I$$!!mS$MҤ!@ A@ ,9V$z[WI$A$@ɑ ' a.I$I$.Id @ I $$!A@$ $` m"m$$!!IA6$!!@$I!P@ $@I $AI!R$ A)HI& JdI5 A$    YR"$`ܰmܐa0 mv*+ B"@lِ$$H$ 8 MK=!'cX h!\} ! l!L p $( Mbm. IdI !$I$ AM& @me( I M=!W5^ Bɛv!p9U! A& !$I!!o!  H!a H  ! I!I$I$!@$&! `&I$!AzI$I$ I$ !j H$I!I$I$!@! $IF! ! J\$!$( IE)  @$! $I! I$ $! IHL!* $!0E) m[&!  IҶ>!_ $I$!_&I$!J$IRA I! I:I$!ի Kf!( I@!  ! H$!!* I$I$$!! H@! @@0$!  "!@ !a `$!!W I$I$$!! $$!!W  `$!A@ H!  $!! վ I$I$$!! $!! $!! I$I$$!! $!! I$I$$!!/ $!< @$!! _ $!! ȁ$! ($ $!( I$I$$!! I$I$$!! * $!!p $! mE)* E)* 6K%)+ k@%)+ 8$!  $!+ w%)/  E) I$I$E)! I$I$E)!/ I$I$E)!  $! @ %) I$I$1 I$I$1 E) I$I$E)! I$I$E)!  E)  ( @$%) ` @E)!^ E)!-^y E) - I$I$E)$! I$I$E)$!* I$I$E)!* I$I$E)$!* I$I$1 I$I$E)$! I$I$E)! * I$I$E)$! I$I$1 E)  E)W^z  O$$! 5W :%) & I$I$E)$! I$I$E)!⊪ E)! @E)( @%) I$I$E)! I$I$E)! I$I$E)$!* I$I$E)!ꪨ.f1! *m۳=f1 I$I$E)!*C @ E)2 I$I$E)! I$I$E)! I$I$)( E) E)  I$I$)( %)  I&P(!1dI$A Zz 0-E) t(%) I$I$E)$!* @$E) I$I$E)! H%)8 E)@(  %)!  A I$e)$! * @E)!^XJ~> 1!Xc%  E)Jݖi6E)! I$I$)( I$I$E)!( I$I$)( I$I$E)! moE)  mضmE)  @ E) lIdE)! * Ӷme) ^ TK%!/? mѶmE)! / H$I$E)! I$I$E)$! E)!* E) J(( I$I$E)! I$I$E)! hE)< P(E) IPD !* y'I! H@! IB! Id!d $!!  $!!j ɕ !- $!! U eP @!! I$I$$!!  $!!*" I$I$$!! $!!/ Eh$! ؠ $$!!W $!! I$I$$!! $$!! _* $!!  $!!z $!!<  ! I$I$$!!  $!@  $! B E) I$I$%)!^ I$I$$!! $!!j $!!-* H$!A(4 H$!!,$ @$E)Z I$I$E)!+ XE) $E)a Z%)^  @!/ !+  5E)~ mE) I$I$E)!* I$I$E)!  E)j %)! I$I$E)!ꪪ I$I$1 I$I$1 I$I$E)!ꪪ %H$!AиI$I$ھkI$I$>/ Ii!AE&I$&I$II $HI&aI$!!M4E&$!!I $!AIi$!!P @&$!!I$I$ID)$!H$$ ؠI  @$m$`I$(HI$A 0@$@$!!$@$!AIi&!A$!!i۶E&$!!HI$(O 4 /Hɓ$( JdHH$I*   Æ-۶m說ܶmy  m *@ %[ H!V ҃!_R\HH!8nL$ 1 2, ٲ 6m I $!B#$b !`NmAh6M((,9  j>} !_- PR!%xH$aB% !z1`d !I$I$E(CO$@I!A&p!I$I$E)a ! @!  % ,H!A (4!z&I<!^UUI$I!UUUI!a*J!ހI$PA ) `!@! z$I!ax!8I$I$! $@d! H$I$!* IH$! $JH!! $D!&  I&!M$!U$Ix I$y%  IR$! 1m!  I!( !b8 @ $!!h )H! ("!!@  @!  d!d $$!!u $!!}(( $!!( I$I$$!!( I$I$$!! I$I$$!!  @!@  ! I$I$$!! I$I$$!!( I$I$e) I$I$$!! !A  I$I$$!! I$I$$!!  I$I$$!! P !A I$I$$!! I$I$$!! $!b $!! I$I$$!! I$I$$!! I$I$$!! $!!'ר $$!` $@"$!ap  %)!k} E)a * E)!^* t ``E) v%)A  P#v!x K!- MK E)* xE)/ E)! I$I$1 I$I$E)! $!!$( I$I$E)! I$I$E)! I$I$E)$! I$I$E)! @E)! I$I$E)! I$I$E)!* @E)!^* @E)!}^ @E)!-_U E)! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$1 I$I$E)$!* I$I$E)!* $E)b @E)И E)^蠀 ɑJ5!'   E) E)!j袋   E)  %) DE) I$I$E)$! I$I$E)!ꪪ I$I$E)! I$I$E)$! * @E)!ު. 1I$1!/_.1aj E) I$I$1 I$I$E)!*B E)  I$I$)( I$I$E)!* I$I$E)! I$I$E)!. @E) I$j5$!I$! P-E) /? I$I$E)! 0(E)a k I$I$E)! + I$I$1 I$I$E)$!( I$I$E)$!* I$I$E)$!* A$IE)!a3e)!W^xJLb' 1!\Pa`{E)! % H$@ e)E)` I$I$)( I$I$1 I$I$)( I$I$E)! I$I$)( I$I$1 I$I$E)!( @ E)! aE)z  ɴD$!/ $I$E)! I$I$E)!  E)  I$I$E)$!** I$I$E)! *( I$I$1 I$I$E)! E)!H  @E) $@$!` $&$! P$Z*!X 0 $!* $!!^U* H$!!W H$!!  I$I$$!! I$I$$!!* I$I$$!!( I$I$$!! @$!!Р I$I$$!!( I$I$$!! I$I$$!! I$I$e)  $!@@ $! I$I$$!! I$I$$!! I$I$$!!( $!!/ $!!U @ I!A@ "!A $! I$I$$!!ʀ I$I$$!! I$I$$!!( I$I$$!! I$I$$!! I$I$e) E)!_ޯ I$I$E)! I$I$E)! @E)ڀ I$I$E)! E)!^*   %)A@ WQ[E) k !-^ N3I$!^ E) E)!꫕ I$I$E)!  %)b @@ E)* I$I$E)!  $%)`pI$I$ b*I$I$7/I$IE&m$I$I$A.I$I!A@$I$I $  $!AH$I$!AI$I!AIE$H$I$(I" ?H$I$ I$I( )$I$AI$I !A@$I @$I @$!AH$I$ H$H!A $H$I$! O 0!?h$I$!I &A I$!!I$I *@$I**Ȁ@0,PDN`IA<I B* 1Fna ݺ} !5 PP!P$*@Xvi۵*X 6,.#ۉ@ `۶m %K)Pln  c;@ $!U kDIP!!6./$H xR H!$  0 !lː!  I$I$E)a H !  $e"( @PD!  !(z!zWHI(ID!!Uխ@$!H !`ؖ!)I !!I$I$E)a ! H! d$H!  $I! * $ F!* I>! _ O$!~UI$I I$ % !W IJ$ !* ݶMt!* IH !* m!  I!  LE) H$M! $@H! ` @@!@  P! I$I$e) I$I$e) I$I$$!! I$I$$!!,. $!!>* $$!!*_ d@$H!А $!!U  $!!*WW $!! $$!!U I$!!U I$!!U $!! I$!!U I$!!U !$!!  $!!z I$$!!UU 0$!!_ $$!!(U M ! &  ! I$I$$!!  I$I$$!!.* I$I$$!!/ I$I$$!!  I$I$$!! I$I$e) E)!z E)! I$I$E)!* I$I$E)!j E) ( I$I$E)! @E)_ ͤ%)A P3AM!x K! -  $5E)+ oE)* I$I$E)! I$I$E)!+ %)b*& I$I$E)! I$I$1 I$I$1 %) I$I$E)! I$I$E)! I$I$E)!* `E)!Vj `H E)!UUWZ L&E)!UU $"E)Ap I$I$E)$! `E) @ E) I$I$1 I$I$E)$!* x E) I$I$E)$! @E)( E) | I&@%)U_Zh P tE) ** I$I$E)!- I$I$E)!* H%)a( (%) ` E)! I$I$E)!ꪪ I$I$E)! I$I$E)$!* I$I$E)!ꪨ. I$1!5 I$p9f1$!  E)b@ E) E) I$I$E)! I$I$E) E)A I$I$1 I$I$1 EHE)!&I$P>!!I$! P)E) // I$I$E)$!  $!@ E) ( I$I$E)$! %) I$I$E)!) I$I$E)$! * H$I$E)!`JII$f1!%WVϏ'dr<1!WTZa 6`E)! % I$H$e)E)` I$I$)( I$I$1 I$I$E)! E) I$I$)( I$I$1 I$I$E)$! * I$@ e)!h X `%) ِE) / I$I$E)! I$I$E)! / I$I$E)$! I$I$E)! I$I$E)!  E)  E)@@ E) H !$ MP!  e) I$I$e) I$I$$!!* I$I$$!! I$I$$!! $!  $$!! U  I! $$!!~] I$!! H$!!W d$!!*U  $!!U $!! @$!!_ d$!!U I$!!U $!! H$$!!(W^ @ !A d!d  d!d d d!d  d!d @$$!!+] @`$!!W RH!! $$!! U I$I$$!! / I$I$$!! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!* J,%)j @E)! I$I$E)! E)!z (E)z Jj @%)^T!~ '=E) _ JE) I$I$E)!  E)h h$I$!I$I$cI$I+*IE&&I$I$( I$I$!A $I$!@I$I$ 8#I@ aA$I$!AI$I$!AMi6$!!h$I$(I$I ?/G'M$ rI$I* )6m$$!!I$I$!AA$I$ ( $I$!AI $!AHI $I$!A $!AII$I! >/PI$ m$IA@I( $!BىHa II$* ,XdɖmI$I* %) $ & ]&{ !_5 )TP!anܸ7 ضa۲-( 4$!BXA% I$ /*( `#۶Ap/l۶mIҤ)P(bӗ!~ I4!A%  POv!p@Q!zI% !('.ذ% X0!  @ b,Hd!=P@! $I  @P$!~W`yC& X}Zy$! $ !@$ @!X!H@0 j!$!,6`!!I$I$!-! $d$!^H$I$ I$I|/ I$ !կ 6IH! IH!* HH! J$i! 4  I !( L!* ! d!d  @! )!! $!Ap I$I$d!d I!! $! $I! @&$I$!!UUU $I$%! H!A( `$d!d d!d $I(!` * !@ I!! D!(4 L$! $ $$! $ $$! $$$!* $$!!U  $! $!!^% D!$  @$!! Cd!d Id!d  d!d $d!d $!! U} @@$!j  ! $!! I$I$$!!( I$I$e) I$I$E)! I$I$E)! I$I$E)! I$I$E)! @$$!!  %)a I$I$E)! I$I$E)!說 R@E)~ ԤE)z/!^ TrRi!^ tE) - E)! I$I$E)! I$I$E)! %)* @%)!ڪ I$I$1 I$I$E)!ꪪ I$I$E)! I$I$E)! I$I$E)! L$E)!U^b I$I&$!. 0)жE)/ I$I$E)!" I$I$E)! I$I$E)!* I$I$E)$! ( I$I$1 I$I$E)! I$I$E)!  E) @ E) E)UZ  N$! -V  E) + (E)p E)` %) I$I$E)$! I$I$E)!ꪪ I$I$E)! I$I$E)$!** E)a ?e)! 7z I$`0e)!/p E)@  E) I$I$E)!*  E)@ E)a I$I$E)! * I$I$E)!  I$I$E)!& hE)^I$j4! Pɕ!* E)+/ I$I$E)! @E)!Š* I$I$E)! + E)@  E) € E)a  I$I$E)! * ۖl6lE). I$1!5U{e)!TP $I$E)! I$I$e)E)UUV\ I$I$1  E)  I$I$)( I$I$1 4E)` E) I$E)! * I$I$E)!xp Mvk;!.( E)! %5 I$I$E)! I$I$E)$!  @E)A E)  I$I$1 I$I$E)$!* I$I$E)!* I$I$E)!zz (@!@  I! R"I!p IH$!!_U] $AE) &I!b P!  I @d!d  d!d  F! @%@!A $)!J !b I! $ $$! $ $$! $$!!U $$!!U  $!  !@ @!) $I! "5$I!A` Am! @E)!uu " E)j E).  $!!  ! !  $!`  $!!)] $$!!/W I$I$$!! I$I$E)! hE)  E)!j E)! I$I$E)! E) I$I$E)! @H%)A Р PE)~ E)Wz )1&!\  ME)/U_ h%j$E)!I$ $>'cI$I$+K I  &,H$I$ I$I$! I$I$I$I$I$I$  $H$I$I$!AII!A@$H$(I$I>)$x$ rI$I$(Ii&I$I$A I$I$(I$I$I  !AH$I$ A$I$!AI$I !A@$I$Iə !AJD$I$ I$I!AA۶m۶$!!  $!B@&M$!!)-$!B4$!BD۶mېm*A (  M&m !!ި* $,h|!rV@&ض-[$P&A@h) $!B%c6 Hx?A$I$mP!H  I}!7 pA!%`\`)Q !^0,ؒl!ۖmKl Ȑ!Imۆ   @$ `V)I!ٶam  4!z&O3!j^u>L /I1 BR  @"'!X @ 1@$I! !,!,K!ɐ!I$I$! )6!! &(|$!zWP$I$/I$II !U IxI$A!  II! $ E) I@$!* $I! I!* "I$I!J 94II! Id!d I$ E) $ H!A I! JD"!6( $ $%!  I E) $I@ E) $ %!Z $!Aj @ $!  II$! 'I$!_ $IS!}@$I A` y$I.! I$ !W I$!a I$! I$@!U I$ !U I$! I$@! I$(! o$H!U M$!A& ۴M!( Nl! / $A!  d!d  E)! M$P%) $!! $!!u J!4$ $ ! ! $$!!^ $!! I$I$E)!  E)bj E)! E) I$I$E)$! E)!ߪ I$I$E)! E)@ & E)!  O-E)~ j !_` dݓ!-_  |%)a@+ 0 E))  %) I$I$E)! I$I$E)! I$I$E)! %) $!!@ "@$!@ $!a E)!z ݊nE) m4E)+ E)( E) I$I$E)!/ I$I$E)$!/ I$I$1 I$I$E)$! I$I$E)! I$I$E)$! I$I$E)! XE)^ꨀ 1xL%! @P %)!`* E)A*4( I$I$E)!着 I$I$E)! I$I$E)$! I$I$E)!ꪪ I$I$E)!  E) I$I$E)$!(M۶te) *,)I,E) (@ E) I$I$E)$! %) 4 E)  I$I$1 I$I$E)! * I$I$E)$! I$I$E)$! * hE)~I$L"$$!b Vɖ\!*+/ E)! I$I$E)$! I$I$E)!ꪪ I$I$E)$! I$I$E)$! I$I$E)! I$I$E)$! I$I$E)! *  E)!^Xpmöm;1!j   E) ** A$ e)$! E)74 hE)ި I$I$E)! I$I$)( E)` $@E)p I$I$E)! [% ,e)! $ @! @P!b I$I$E)! ) I$I$E)! I$I$E)!j E)! * I$I$E)! . PE)A8 I$I$E)!( I$I$E)$! H@E)!WVZz $IdE) $$! $?!"W R$! HI$!W $I$! $I$!U$IR  J$I" !a I$y ! I$$!U I$!Ao I$! I$H!U I$!U I$!U I$ !Aj I$HD!A $$ !j d! * Bd!d HH!d!d DJ !!( eP%A! AE)!+U E) & II$E)!  I$ِ$e)! I$de)! I$I0e)! I$I$E)! 0E) E)!U $!! $ $!!~ E)!ﯿ I$I$E)! I$I$E)! I$I$1 I$I$E)!  %)  I$I$E)!  E)!b E)x o5$$!@pI$I$?I$I$𼶭I$ bBA$H$a I$I$ I$I$H$I$ ( I$I$API I$I$I$@I$IAIA4i$I$I$ & /I$I$.I $ H$I$I$I$ I$I$ I$I$!AI$I$( I$I$!AI$I$!AA$I$( I$I >/A%H!Ab訪I$I$!!-ٖ%!JEM$!BI $!B@MѶ$!!A$I$!!9%%IdѤA *,h!r\1``9 $)#jzIE&$!!M)PaIdK@&$!!$I%ضm۶>Iݶ6/  &} !__ $P! g0' %[ H 'K $II H$I P!K` ۆmK  $!^Wx)'!V}Wm$ q@ Aj*) IJ!$EAԼ$!b,%!a I!@$I  H@$ `g !"E jJ P@ ! @>!_6M$ ~_H$I/II U* ) !4! ` I$ $! H$I! I$I!" $HD!A4  ! $E$ ! $I$&!  L$! $I$! H$I!* I$I! $ 1!* $Қ$! B'O$! $I$!$I * I$y+A! I$H! I I! y% $I!  `B! (" !@ @$I!  $m! + $!  Ʉ$E) $$! $$! d!d $! @($I!` un!"  $E) 0$! I$d!d C IE) (I!@   I!A A %) 髪 $$@E)Z I$I$E)! I I$e)!  I$$e)!  I$Ie)! I$I$E)! X E): @E)!Wu_ $!!/ު H$!!/W $!! I$I$E)! I$I$E)! I$I$1 I$I$E)! H$!  I$I$E)! I$I$E)!+ E)! r E)W mj L%)_3&@ pdE) E)! I$I$E)!z $!! p  $! (  $!@ P $!A ! I$I$$!!. $! `)$! ֶK !  -t%)/ I$I$1 I$I$E)!ꪪ I$I$E)!/ I$I$1 I$I$E)$!* I$I$E)! * I$I$E)$! E)&. @E)z MZ!   E) + %)  I$I$E)!ꪪ I$I$E)! @@E)b@ p E) I$I$E)! E)! ȡ%), & ۲ ۶mE)B(i@۲E) ( I$I$1 I$I$E)!6 I$I$E)!*( I$I$E)! I$I$E)! I$I$E)! * I$I$E)$! E)!* P@E)~xI$I$ &  %)* E)! I$I$E)!* E)!x E)!** I$I$E)$! I$I$E)! I$I$E)$! I$I$E)! H@E)zr wf1!*U XI$f1!*U I:I$1!m [ f1  I$I&e)! I$I$E)! @E)!_  E) I$$!!^  "E) jj  %)` E)! I$I$E)! @%)bb $%)  P$M$!tV%q$cI$I*$H$I$I$* I$I$ I$I$A I$I$&I$I AI$I$(( I$I$ A$I$I$(*I 0 'H$I$%)bI$I ( H$I$! I$I$I$I$( I$I$! I$I$(I$I$I$I (6 I$H$a`I$I ?!R$h$!rI$I$ IM$ m۶m$!!R$HIZ@A I $!B@I& `E۶Aٶm۰a* O$ ! ~* y2(X!bڢ1`  I A$$!!mѢE&$!!Mi[$b@@۶m@$!!MI K$Y *6`@$9z mҧpA!_7 &z$!aIRH!J A,$m$hI* $!b$I$) %N iZI$5 z&MH!k^ 8Hx Il Xdɖm! bӄ ~I$&öm˖ I @P!r@!$I! @)6!6L$ zWH$I `j I1!)9I !*! $)"I @ H$) Aؚ R&RA  I$I$! DI$I! J$I@!4 R"H$I $ID!I$I$! I$I$!* $$!U IM$!u $I$!I$Ir!* I$$!* IrII!* $A$I!  I$! $I$! @$I$! L$I!( L$I!( ")!@B I I! IB $! IH!  $HE) d!d !b I$d!d  (!! ! 5 $!!+ d!d I$d!d D! eh*I!A  ! I0E) $ $!  E) $@ &! @0Ȅ!( Ad!d 4B@!!`۱E)! U I$f1!U N2I$f1!UmhV1ޘ* I$I4f1! I$I$E)! I$I$E)! H E)`  @$! $!! %)A.& E) I$I$1 I$I$E)!  E) %) I$I$E)! zE)Wz yj%)UUWx!I!  $! ~ ! H ,!<@ J!,& $!!  $!,4 P$!!  @ $!! %` $!! $! I@ @$! )ӵ%)A j  E) Ji- E)!驪* I$I$E)!/ I$I$E)$! I$I$1 I$I$E)! I$I$E)$!. I$I$E)$!* E)!Zx $!Vx  E)+  E)!c I$I$E)! I$I$E)! I$I$1 ,@%)A` E)! %) I$I$E)$!(Nِe)a&mcE) I$I$E)!" I$I$E)$! I$I$E)!** I$I$E)! I$I$E)$! I$I$E)! *  E)A I$I$E)$! * Z5H%)zII$ . NE) / I$I$E)$!# E) & I$I$E)! I$I$E)! )%)A I$I$E)! PE)a I$I$E)!`?e)!5W^m6k[E)n| H E) 7<* E)@ E) I$I$E)! ) I$I$)( I$I$E)!(( I$I$1 I$I$E)$! m[qE)AР 6hE)!_x` E)!zk E)! - E)!` 9pE)  I$I$E)$! * I$I$E)! * xE) I$I$E)!蠂 E) @E)!^zj $I$! I$!* II!* *  $IB! !$ ! jH!A LB@! I$! I ! $Ad!d I$I$$!!* @! H")!@  A2%!p ! $!!z @@d!d d "E) @! 4 ! d!d  !   )!` @! $!! d I! I@!* $$! HIE) T!& @d!d $E)!U )$I$f1! UU MbI$1$!zU I$@f1!^/Mm 1!ު E)* HE)!U B $! $!! I$I$E)! I$I$1 (@&%)p`p\ID $>CI$I$I$I$ I$I$* I$I$! I$I$I$I$I$I$! I$I$ I$I$! I$I$!AI$I$(I$I@ ?E$M$!I$I$A(&I$I$I$I$ I$I$(* I$I$! I$I$I$I$ I$I$! I$I$ I$I  !E'!I$A$` $A$bI$!!$@$!A $!!I$$!!E&M4b@i&I A$I$!! e'O!W5 )TR!cXV0`[$ MM&$mѢm$$!!HA$!A@  @P @ҤbIE$!!-۲e / $@$ }DP!W'  I! LBn8I!۰a[M  I$!B $Xm $I$!B$EA.&!zHҤ$!ǣ$ J!YW$bV  ۆ5&I/ &mp2' I$ $!B I+& ^ĉA!1 @% !@ 6(m$!bH$I$I$G? E ! @!J/)@I  !I$I$!@!j $IT !+ $II2!* $L! !ꯪ !I$I!H'!a0I$!zUU$I!~UUI$I$ . I< I!g  $I!b)  IJD!6! $I2LH! $$! I $!* Ia2! DJ$I!A8 $ E) $ HE) $A !  A$AE) L2! )@! " A!@  ! 0d!d zD!!(4 @$d!d I I$I!& $!! - I$I$$!! @  d!d h !  !&. H d!d UP I! @$ d!d ! $!! @@ d!d I! !$$!* Hd!d R'%! d!d  $!!  f1!+UU ۓI$1!+U I$)$1!xmӶm+f1aj  E)- @E)!W $$!!-W`  $$! E)! I$I$E)$! I$I$E)!j %)bk E)! I$I$E)! E)!X K! I${5! j TI$!)UU L$!`+ $! H$$!!X $!!% I$I$e) ( $!` $$!!Y $B!Ap I$I$$!! ` ! -VM$!  %) I$I$E)! I$I$E)!/ I$I$E)! I$I$1 I$I$E)!蠪 I$I$E)! I$I$E)$!* E)!xb* I @!/ 2p$!/ $!  I$I$E)$! %) I$I$E)! I$I$E)!ꪪ  E)* I$I$E)!*  E)7lm;E) *( e)! E)( I$I$E)! I$I$E)! * I$I$1 I$I$E)$!  E) ` E)!* E) M2=!~j I$ ? `E) E) I$I$E)!ꪪ I$I$E)! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! * E)!X`1OE) IN'E)!5WT ۶mnE)- I$I$E)! E)!) I$I$E)! I$I$)( I$I$E)! (( E) &  E)@ ۶mۖ E) @fE)**   E)!Pb I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! @E)! *ZX I$I$E)! I$I$E)$! L@$E)!UW^Z !M! ( C$I! 2dBE) $HB#,!` $CE) Id!d $%B"!Ap @ A$E) R"I! $!! $)!@ B! @ I!A@  $I!A $!! d!d Hd!d $$! $$!  I!* IH!* JD!A(< !  d!d d!d d!d @d!d @! K!, I$! @$!!U^  &! @d!d $$!! W 1$I$1!UU _'f1!ނ-U I$p1!x I$I$E)!W @@@%)P $$!!-W{ ($!` H$I!tוQ$I$𘼯I$I$! I$I$I$I$ I$I$I$I$(( I$I$ @I$I$AI$I$`I$I$I$I$I$I8I$`$ AI$I$  I$I$I$I$( I$I$(I$I$ I$I$I$I$(* I$I$I$I$,& I$I$API(r$!I$I$* I$II$I$!A @$!AI  !A $!!$H!A H!A I$!!ɛO!*)P !kZIH m"M$ I$M$((I I$!AII 4(E6m$!AIA6m۶I  @m'b@ }$$!A R ¢&KҤ!ܪ pb  I(2,M{b@ 1!n o0[&H ـ /+(l۶ $ (D!{_LL!y!(!@&I6*0̈́ 4msN(A$I$!BX` ,XB:@J )#0 @$a'!H$I$I$Iɛ) @ !  !e! J A 8I !.&I$I$!I$I$!Ԑ!@ TIH! I!4!z|$!WUГ$I$ ZUUUI$Ix! I! $A$I!$!H! $I!+ $   $I$! $IE)a I$IE)a IHE)a $E) $! $I$$!  )I!` PI$I!) $$I! H$I!(* $$$! I@!*  C$E) I@! J%@ I! IB@! IB@! IB@! HH!a T! & a$!" `$ ! $L! H0I! "%!!`  @m! d!d d!d @d!d d!d  d!d A! d$! $$$!!Uj* @I$!  E) I$d!d  f1!/UU h`I$f1! Uƞf1!ނ I$I&e)!z E)!j  @ ! H $!! ~ E)! I$I$E)! I$I$E)! I$I$E)!ꪪ H$!( I$I$E)!먪 %)!_~ M% @$!W^I$I'!UUUV  I$!-U  ! $!!` / @$!!-X !! I$I$e) @$!`  H$!( HH! PhD!( I$K%! D! %)& I$I$E)! I$I$E)! I$I$E)$!* I$I$E)!પ I$I$E)! I$I$1 I$I$E)!* K% `E)^ 1%] !A Ҫ I$I$E)!ꨢ 9%) I$I$E)$! I$I$E)! I$I$E)$!ꪪ I$I$E)! I$I$E)$!** D@ %)!l ME) ( m6h۶E) O E) PE)A I$I$E)! * I$I$1 E)` E)! * E)!zr @ E)!^zjL'R0!^ZzI!+ P%) + H%)!,$ (%)!& I$I$E)! I$I$E)$! I$I$E)! I$I$1 I$I$E)! * X `E) m4)E) PaM% J  E)!* * H$I$e)E)\Zz I$I$1 I$I$E)! *( I$I$)( I$I$E)! I$I$E)! I$I$E)$! I$I$E)! *( E)!xϿE)!É7  HE)a . I$I$E)! E)` E)!몪 PE) ( I$I$1 I$I$E)$!* E)! E)!zj  I$$E) $! 6l[&! FJ*I!8 H&I! $I!  $! !  L$@! I! LBE) " I!  I! I@! IB@! $4!`  )~! @ I!  $!  I!(U  Mm! HB"$!A`  !E) !A$ I2@! !$! L!  0!  !a  @d!d !a I$I$$!! I$I$$!! L d!d !$!  @ &E) Hd!d i!+1!-UU I$e)!- I$I$f1!Wx @$P$E)zZXV7A$ isI$I$ hI$I$aI$I$ I$I$ I$I$ 8I$I$rI$I$@ I$I$a+<*I$I$4I$I$I$I$*I$ 'I$I$,I$I$**I$I$ pI$I$I$I$ I$I$A&&I$I$( I$I$.I$I$ H$I$AI#( H$I$( I$I$( I$I$ I $!AI !A $!! $H$!AI$I!AIM$!!$HA0B' zU(i&$!! A$!AI$A$ H  A8H$H6m$!AI4i$!AM$M  J$ OT!$!!j* Aϛ SI4i$ IX 6,Hd⼿ ۰ **c2&mض-kҤIm " dɖMѴ  %z !^׵ P0`T {^a7Hi&*",9rz%I#94at$&XdP`<1 ٲmK @R6 `&O$!I$I I)U!*@ 5!~,!%I!! !X`  b $!m0! *& @'!h&I?!M$I(@ I p$!!  !!%! "K!j! ! E$I!x! H! I$I$!* @ $$I!AР  $C!  I!I! HH!' mnֶ! IBI$! IR"%!Ap` m! $IԤ!* $I&!^ $IK!M$!WW /! -HH!   I'!WW  I$!UU  I-$!U $$!U HI$! )$!  $! H$!U  AN! $0! $ @!! $$!A` I!  0!  E) @ 2! X*I!! $!! P!( I$I$$!!. I$I$$!! d!d  &$!( L0$!!UX d!d h `!?e) 5 ?f1!^- I$M e)! I$I$E)! H E)!U_ H $!!5Wz E)! I$I$E)! I$I$1 I$I$E)! I$I$E)!+ @$! @ .@ ! I$R(!@I$!+  D!a 6 $!! @$!& $!! 5 I$I$$!! H%!  @$!!%P @@$!!؀% ! I$P! I$! / I$I$E)! I$I$E)!ꪪ I$I$E)! I$I$E)$! I$I$E)!ꪪ I$I$E)! I$I$1  E) j%H! P)tE)* I$I$E) I$I$1 HE) I$I$$!  I$I$e) I$I$E)!_ I$I$E)! . I$I$e) ꪪ EۢmѦe)!c> ۶ e)! I$I$E)!* I$I$E)!* E)! I$I$1 I$I$E)!* I$I$E)$! HE)< X @E)I$K$ Nɖt! + E)! HE)*(( I$I$E)! I$I$E)! I$I$E)!ꪪ I$I$E)! I$I$1 I$I$E)! mv@E)? ؀M6 E) E)! % I$I$1 I$I$E)$! I$I$E)! I$I$1 I$I$E)! ( I$I$1 I$I$E)! I$I$E)!   E)(@be) E)! $E)x I$I$E)$! I$I$E)!ʊ* E) E) 8 PE) (& I$I$E)$! h E) I X۶!  I$!  IKD!A&& $I$)!j  IK! $I$!UO(!z{ $I$!U (W!` `I[5!~  I$!UU  I$!U  Id$!U R# O$!` II$! @$!* I'H! I$$ ! I$"!W ɟ$IH U$I6!W pRI$!(* I$!U I! aۚn! I$d!d HD !!8  $@ $!*  @! !$$!!U  !a X!( 4!!` !  !@  @!A $!!/U @d!d $hlC>E)b*zI 7 H$I$I$I$!I$I$I$I$I$I$I$I$I$I$ I$I$(*I$I$ pI$I$I$I$ II ߿/h$I$ I$I$I$I$ I$I$! I$I$I$I$! I$I$I$I$I$I$&I$I$ I$Ia" A$I$b(6I$I$( I$I$!AI$I$b ުH$I$!AH$!!I A$!AI$I$!AI6EI$@Ҧ  "%!ue}_I & hҤi&!AH$I$@H $Am&I @ i6h$AI A!AI$I!A$H$$!!O '@(!* У$I!XV` [- $!B؊X0+ H$ (6,HdɖmlN62b($B' !{WM i^1@Ir *۰ۂ%* -DZ= @J$ II$**P oތm  0$h$I$aI$*yH!$  !pb[!m  ! BP !(   a0!$!zW'ɟ' ^WUUI'O I! !@I!bP$D$ Ar0!I$I$!  @! !D! $I& I! $I*)! @ I! I$)! $I!W$$! i"A!]ؤ   I$&yR bj Lr)! 4H!jo* I$ !AC!_ I"R! (I! I!u I"$I!U I@$I!U I"I$!U* #I!U I"IH!W I6$A! I$ !W I$Z I!_ I$M!U/$I!*_ I$!U  I$!U $AM$!*  IN! @ Id!d ($I! @ H !  I!A @ &! DP"I!b (!A@ !(  !a  `$!!W* JD!!,$  &E) $!!boE) ?e) _m۶e)! I$I$E)!~  $%)!U]^  h%$! X  $! %)!^ I$I$e) I$I$$!!/ 4$!n  !b@ i-! I$M%!! KI$$! U @$P !A PD!A H $!! 5p @ !A I$I$$!! H$$!!X  !A  $!!K O%@!WX` I$$!/? E) I$I$E)! I$I$E)! I$I$E)$! 8%)  I$I$E)! E)@ %)b m l$!ꨠ  I$%) -uUU $!  I$I$$! I$I$$!! . I$I$$!! I$I$$!! ! I$I$E)! E)!zꨪ ú-6vE)B< E) , E)@ E) I$I$E)$! I$I$E)$!  I$I$E)!** I$I$E)! I$I$E)$!* Zh%) I$N$/  mV$! /? I$I$E)!뫯 I$I$1 HE)( I$I$E)$! E)!jj  %) I$I$E)! * E)!x` mE)/? P ʀDE)a** E) I$I$E)$!" I$I$E)!( I$I$E)$!" I$I$E)! I$I$E)! ( @E)` I$I$E)!* E)a@)VuѺf1..N1!\ I$I$E)! I$I$E)! I$I$E)$!* @E)! I$I$E)$! I$I$E)!* I$I$E)! E)!jꪪ .J 5%)u|0"& ju]X΄L"! I%&( ! J$I!!  D$@!ժ L"I$ ! IJJ! R#1!z "!U I$I!U II$I!U I"I$@!U "I! I"I !U !$! $$!  @d!d  @d!d $d!d "I@! OIH! I' ! I$! $I"1! W @ I$! _ $I!  H!! $)!` m ! $H$!** hFI!A8 $!!耨 I$I$$!!* I$I$$!! $!!^* !$!!UX P'K!PX֗$H$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I::r$`$ bI$I$*I$I$I$I$I$I$I$I$`I$I$AI$I$I$I$I$I$I$I$b⪨I$I$I$I$A(I$I$I$I$!AA$I$ I$I$!A $!AH$I$!AII$!AI&Il)* `섉$ H$I$H$I$I$I$ ( I$I$!A $@$I $ $I !A)Zh$p ( / @$I< bjdɀ  $!Bm۶$!!)P$!B$I$* &LXֵ$!B ,  !_yBə ZވKA<4"!c'I8 "I K$ Ah $!B Jdؖm /acA4,%N$I$Ib IouB!1 m!`- @K@)!j IH!  H A< ۉe[!a!$!zW$I& zWU]ɟ'I !UUUI !UD$ Ar 8N! @!!I$I$E(CI$I$E)a,!`X !$!I6! !&!_}r!W $0!!* s !W~/!UP$ Ъmr@!_骪 lJ$! I$$I! I$@2! IB$! dB$$! ! d$! $ !* HG$I!!8 I!* ! d!d I d!d @$! I$! @I!  2E)  $!  $! `E) $@d!d $$d!d  `E) #@!~ I"1 @!W I$!_ $II!+ HI$!/~ $!+ H UP! (  d!d @$! ' !$$! " I!@@  ! I$I$$!!Ȫ+ I$I$$!!* $!!`  $!!\ L0$!!UX $!!k/ ̀5%)? iI;E) h E) $!!Ox'  A! H$$!! _ I$I$$!! I$I$e) $!& $!!/ I$I$$!! `$! I$Ph! I$!/  L$!- I$I$$!!* $!!5p $!! % D! @$!!X $!! (!`` J4 @! ɐdI$!+ ! (%) z %)A  I$I$E)! I$I$E)!ꪪ I$I$E)! I$I$1 E)!zꪪ LH$E)!UUUV !@!E)!5UU I$I$E)!  $!A H$$!! X I$I$e) `$!   ! I$I$E)! E) E)!sM E) I$I$E)$! I$I$E)!* I$I$E)! I$I$E)$!** I$I$E)!* I$I$E)$! E)!Zj m>Z!ꨠ I$ * `$! / I$I$E)$!  E)B*  ʀE)a.6 I$I$E)$! I$I$E)! I$I$1 I$I$E)! ** X4 `E) 4mI!!&  0 E) +/ I$I$E)! I$I$E)$!** (%) I$I$E)$!  E) E)  I$I$E)$!* E)! . @ E)!Zp` ;t$A@H$I$! IG/ )a ("EJ* `۶)Y ж@TA!`҄DI ^׭$I0 z>M!^WI+PD((M\! H!WխH$5 z̳c|lY TR $I B$I p.!p$ ` gR!%I$  x%I!*&I> !&* $S!ul)! * 0OZ !zտ`T!^! $I$@2! d$! H2IH!꿪!ꯪ $QH"E!  IH!*"("  E)a @@ E) Ld2E) $d2E) I! & H! !E) !I$E) $d!d  $d!d d!d I$$d!d $d!d  d!d d!d  d!d d!d  A! d!d IHd!d  I ! hF ! d!d 4!A`` SH!bb Id!d JD!A dd!d  A2d!d  d!d I$$!!UW Z"IH!^ I'HD!b DO")!  $! U  TI!  @!  I!  $$! *  $! ! I$I$$!!*  $!!Wx* L0$!!U\  !!B  UE)/  E)j⫿ Pu!  d!d H $!! 5V~ $!! I$I$e) $!4 @ $!!/p B$!!@ PH$@$!x I$j5! KI$! $! @$!! ( $!! 7 I$I$$!! ! !b I$I$$!! P! IM&!b/ !a I$I$$!! * $!!C> I$I$e) I$I$E)!ꪫ E) I$I$1 PE%) B $! ( M! . I$I$$!!. I$I$$!!" $!! I$I$e) $$!! 0EӠ %)+ I$I$E)! I$I$E)$! I$I$E)!** E)!*' I$I$E)! I$I$E)$! I$I$E)$! I$I$E)! /.  E) x`99׆1![iM @E)!˩- %)A I$I$E)! E) I$I$E)! + I$I$1 I$I$E)! I$I$E)$! @E)a ! IE) 0)!  )!  I!( d!d $E) @2d!d $@$d!d  d!d I$$d!d @@&d!d $d!d  d!d @2d!d I$!*  I")!!@  IH! @I$!  $!  e! H$d!d ʥ !,( @$@!` d!d ;! )!! R!A  $!! UW  $$!! U ! @$!!U [! O"5I!Uz DjI!^ , T!* .)R%!@`X Q$ krI$I$*I$I$I$I$I$I$! I$I$I$I$I$I$I$I$I$I$ pI$I$I$I$/)1T' xI$I$*I$I$I$I$I$I$ &. I$I$I$I$I$I$I$I$I$I$I$I$aI$I$a* I$I$I$I$ I$I$I$I$  I$I!pI$I$<I$I$!@I$IA$H$ I$I$ * A$I$I$! I$I$ I$I$AI$I$I$I$(I$I$! I A$I$A$I$I$ Ii&$!!$!!$H!A $!!I $!!@&M$!!i۶hb `!B$IlC& Hl( H $$!!h&M!A m$!! P  4h$!!IH  I"2@$I$ I$I((fB$ $db0̉A Mnm> @$ $!bm[d( (l Im۰/ b$!_Up$B'ɓ$B a* @ID!$j ^LT W-Y$!۶ma  R#% `m !lW!@$!$ӟ!_ R )!   ɓ!A*o)ir$!9!@!H^ !(4( J!IIJ!&m! IB$I!*!a&I$I$!!  I$! * I$IE)a L$$$! &! %Z5!! MҶ! ʡn$I!$ $I@! $$H!  I@2! $Ҷ!` $I25!A@b $I!* $! &@! &)I!a@ $AN As i۶n! I$$! $$LB!  IH!A I$! I$! -! H ! @#!b H ! H! eP!0 XD!  !@ I!! @I0$!!-U_ `$!!W $d!d j"IH!^  $H!WzPy!  I۶m! $d!d I!@ 0I!  $! I$I$e) I$I$$!!¾ H$!@  I!   @@"%!ap  Z,!/ U&@RA! x   !- H$$!![ $!!% H$!a$ I$I$$!! @@! ` 0$! @$! I'Ph!  DI$!/  !-  $! ʊ @$! + @DH !4 I$I$$!! ;@!a  $!! @!b IM&!b/ D!b I$I$$!!ࢋ I$I$$!!> I$I$e) H E)A @HE)j E)!  E)!Xzo @ $! * ̀! /< I$I$$!!, h!p $!! ' I$I$$!!(( ]P H!A I$I$$!!( I$I$$!! < $!  E)! I$I$E)$!* I$I$E)! I$I$E)! I$I$E)$! h%)A( I$I$1 DE)ؠ m6P!z訠DI$ . ! ! / I$I$$!! I$I$$!!* I$I$$!! . I$I$%)!~~ I$I$E)! I$I$1 I$I$E)! z&P$!AhyA2 A*) E) ) I$I$E)$! I$I$1 I$I$E)! I$I$1 @ E)( I$I$1 I$I$E)! I$I$E)! ?f1!7W_x&1 Z I$I$E)! I$I$E)! E)A I$I$E)! I$I$E)! I$I$E)$!⊪ I$I$E)!  E) HUE)A "i&I!@ JI$ !* m$H! $ @! (I %! JQW!4 $IH!A &ID:! &I$! m $! dX$ !0 ڤD1I $, I$ 0!9$I!+$I7 *W \I$!  II$!*_ $ $!* R!!Р I$$$! !$I! I$!  $$!* @")! @  0! PH! d!d d!d I2d!d `$!!W -H!  I$d!d I0$ !HIT ܖ7x$I$PI$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I*!H$I$bI$I$I$I$A I$I$I$I$A I$I$I$I$I$I$I$I$I$I$AI$I$b bI$I$ I$I$+*I$I$! I$I$(*I$I$! I$I$I$I$(I$I$!@I I$I$I$*I $*I$I$ I$I$ I$I$ I$I$AH$I$a I$I$! I $!AI$I$I$I$* *II&H$I!A$H$!A  $!!I$I$$!!$H!AiӶm$!! B$ I$)$ Jb(A<4-۱; $I!A  $!!I$H$ -&h4I @$!!`A,;*~h$I$b( I$I(i$+  0 ( Â&Ml6    ۰aۂ&XҤmܶ 9p'I(9I $IS յm='\[ӤmlضmH$I$!B-P4 #ia l!$BB!pJФL!!4* j\!_w 5LR!xzR$!Wٶ !d!  !B HD%I$I$E)a(!z! %I$A!A& $I@&!* @DJ!A  $#I!@RG! I &!_ $A$ j@4ɓ$!!p 0I$! $I$ $I$[I$II$I$!b I$I. ! I$m@!WI$  I$m ! I$d !I$I I$m+!U I$OI!UI$I U$I _ $I$ U PII$!  Hy$! "a!@( IPI!  I$H!** IB&!* I$$! $$!  ! !@  ! I$I$d!d `d!d !$!!5U_ R! I d!d L„ !( I$H$! I!E) $L0$!!UUX $$!!bU I&H$!*  L!A& $!!- @!p d!d m@! E) 31!> ID*!b P ! '  d!d H $!!%~ $!! I$I$e) @@!@   ! $!!B ( M"=@!^` DI$!/  L! + ! IH!%  ! I$I$$!! @ $!!%X` $!!⫭ @!p IM&!   ! I$I$$!!/ I$I$$!! . I$I$e) I$I$$!! $!4 I$I$$!!( DJ!($  6E)b @M! ( I$I$$!!* H$!!b $!!  H$!< $!!'< I$I$$!!.( $!!s. @ $$! ( E)!* I$I$E)! $!  I$I$E)! I$I$E)!ꪪ I$I$E)! H%) (  `E$!M'j6!z!RI!* $! I$I$$!!**( I$I$$!!< I$I$$!!  $!@ $!a I$I$$!  `$! DL&!﮾  ϰdE)- I$I$E)! I$I$E)$!  %)A@ E)  E) A E) E)4 E) *  E)!xhǟ?e)Ë E)! )- I$I$E)! I$I$E)! I$I$E)!ꊪ I$I$E)! I$I$E)$! I$I$E)! H%) ($ P< E) ` 'I$ _$I$!$IAI$Ir  I$I%)a I$+! I$I U I$+! I$- ! I$m(!j I${ !a* I$H!UI$I U $Id"I! M鶭!* D&! |H I! I"$ !_ I$$!I$j @I6!A PII$! _ $! $ ! !$L! @I$$! $$!*+ I$I$$!!ﮂ I$I$$!! I$I$$!! $$!!uz  $ E) "(R%!@` 2QR& {zI$I$a(I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I?/AB&H$ sZ\VI$I$>-I$I$I$I$"I$I$aI$I$aܨI$I$bI$I$I$I$"I$I$ШjI$I$AI$I$ I$I$A%%I$I$`I$I$ `I$I$44I$I$! I$I$&I$I$II$AI$I$!`(I$I  I$I$I$I$ I$I$aʂI$I$I$I$(I$I$BII$&I$I$AI$I$޷)II 6(H$I!A  I$!A  $I$!!$H$!A @$!!a+c'?o{_I$I$A44Ib%( HI$A$I$b  I$ $!!$I$ApIi4 4-P@6@$I$( i$I(!gn܈) #iN$ 4XҤIv/+$@$A@  PXe  0X$H1% \ n( 0lض1`<&NX%AI%HI(** 0 `AXҤl! @!_Ȓm; ض0@ lJ=!Y %J!XəK ' H!!rbK![@! b@  I$I$! &!ꪪ_ $LP!((!*`$)'!*@|$!'I$!H$I$!(I$II$y !I$  I !a  D!DDJ!aRI!  )" !*z* I! H! m$m ! Զ$!A` ۖ6! ]m !⫪ d! ֤Mm!  @LB!  I )I!( $H$2! RRJI! II I! I' !W I$H!_$I!$ JI$! $I$! @n! I$d!* IB&$!  !$$! $!! I$I$$!!/ I$I$$!!( @$!!^ L2d!d L$!!U  $! ڥD$!A(* LH&$!!%UU H E)!U^ $L$$!  ! ) !@  I!  ! ! ` $! L$! ( @0!  Rh!/ HR!  ! @$!!%[ $!!% I$I$e) @$!!X  HU! I$I$$!!* R) @!x`I$I' )  H!- H ! (@ @! $!!  $! @ $!!X`  @d!d @XF!A8 IDM&!/  ! I$I$$!!請 $!! / I$I$e) H!!$ I$I$$!!   $! $E)!^_ i(@E) ! @ @$!  @ $!!'r I$I$$!! ($! @!@$!!5 I$I$$!!Ë( @$@! (E!%). E)! I$I$E)! I$I$E)! I$I$E)$! E) I$I$E)! X $!  $!I$H'.<  V! /= I$I$$!!+ I$I$$!!** I$I$$!! /<< I$I$e)  $!!<@ I$I$$!!( $!44 h=@!ࠀr$(  p) E) -5 E) I$I$e) ꪪ E)a&& E)@ %)A HE)< I$I$E)! @E)![uQ>E).:pne)  E)@* E) ( I$I$1 E)( I$I$E)$! I$I$E)!ꪪ I$I$E)! I$I$E)!** I"IE)Ud[!I( !&I! $b.@! $& ! m6m! &! Զz!a(4 ۔!* M6m ! n!  !  0! $IML!a&. LBI!* m3`۶! IҶv!* m$[ ! JZ,! @ $I!+ b#I I!~* I"5$@!I$L !*jJ)I! I! $ $! !$L$! @I$$!+ $! + ! $ $!! k hM!ؔH$I$I$I$a>* I$I$I$I$ &.I$I$I$I$I$I$I$I$I$I$I$I$I$I$( s$ kbI$I$@I$I$a)+I$I$"I$I$I$I$!I$I$I$I$I$I$"I$I$I$I$AI$I$A/ I$I$I$I$ajI$I$!@I$I$!I$I$! I$I$(I$I$&I$I$! I$I$hzI$I * A$H$I$I$I$I$I$I$I$I$I$I$* I$I$ (I$I$ ( I$I$׸* I$I @$I$b@ I$I !Ai$MѤ!P $H!AI$I&II$H$I$(*Ii& p$;\W}I$I$!A $H$!AI$i6@A&I I'm  b)r$ABII4 I$I( ɐaÆm/`B"%`pH4Id9 @[@<&LdI *$J I)PD (I ޸( I#'z^RD1 HZ l۶mI *  '\dIu!W@A( IdD  m_$-!_p ͛!bBi^%R"A r`!+,I !NH!$ !ꪪI$I$E(C8!@K!$ !I$  =I$!^UU`$I$A@ I$Ib*I$@!I $!@R$ `!E$![d!C !_  ) $I!* II$! $I$! $I$! "1$ !`! A$H$! $E) " I!`* I&E) H$H$! @$I !   ! $I!*  IR"%!P $I$! I &! Iж! I&m! d ! $ H !  HDI! O"$ !~ I$I!IJ ! @R R! $I I&! I$d!* I$$! $!+ $!!` I$I$$!!. I$I$$!! `!  @!  $!!^ jD!A8 @LH&E)!UU I$E)!U^k%  )!` @!  `! @"!!  !a $!!k/  ! ( ! ,!?  Ց  0d!d !$!! $$! I$I$$!! $!! % $!! & R!hI$M&  ZT! +/ )!A  @$! * $!! I$I$$!!  @ $!!Xz $!!ˍ (I!` DI$! hDp!( @ $!!Xp $!!6 @,$!` $!!, I$I$$!! I$I$$!! (  @ E)!%__ {@E) 3A!! @$! $!! %6 I$I$$!! @$!!j ; !b @! WJ$!a* E) / 4E)* I$I$E)!ꮿ I$I$E)! P%)A I$I$E)! I$I$E)!ꪪ $!!H m6Z!zꨠID ( 0`$!  I$I$$!! I$I$$!! $!! I$I$$!! $!!. @E!A $! Iڤz&!^\ IDI$!/ H0E) I$I$E)! I$I$E)$! I$I$E)$!  E)!z  E)B %)a I$I$E)!/.> @4E)APsE)Ë H  E)A6* I$I$E)!` I$I$E)! I$I$E)!ꪪ ,E) z %) %)A& I$I$1 @ ` E) I I$! $I$! $I$! HD$A!!8 I$ $!*  $I$! * $A$$E)  I!,  $E)  $I$! H$I$!( $$L$! @$H! $H!  $I$! I$A$! I A!( I$I!*( $ R"%!Ap I$! mڶ!ꀀ HD  mm!* dB!$!  I&$I!* $I 2! m6v!+ $ jd!!( mv!*+  $I!$  "%!@ 2Q"& axI$I$/ I$I$I$I$I$I$I$I$I$I$I$I$ꪪI$I$bjjI$I$ I$I$II$A***Zb$L$ Z\VWI$I$I$I$"I$I$I$I$I$I$I$I$I$I$ (I$I$I$I$jZI$I$A/I$I$aI$I$I$I$I$I$I$I$I$I$I$I$*I$I$I$I$I$I$ܗ5I$I$a'I$I$!pI$I$I$I$I$I$ .&I$I$!(&6I$I$AI$I$I$I$xX֗I$I$#I$H$!AI $!AH$I$I$I$  @$!AI$I$!AIiS$H$I$I 6** HI$!A@$I$( I$I$ @A m$I  Zh"!@"!;AI $ MI -[d6`R"ZMi!$!B# ,9a@#ۉK$  8*P$I(*"'N(`@$/$9JDzVC$[5H$I 0- $8rr^5OS$!A($  6@I!jj* )j7! hR $% !1L!~ I$I$ J$ !!ꪪ$!$lje!-Y&!_6I!~UUP$q$I$I +I!I%ض!;Il!X! !!@ !p  a&I$I$E(CI$I$! !!I$I$! I$ $! ! I$!* I$$! I$!* I$$!  UP"%! Р $IHD!A8 H$ $!  $E) I A!*( HI !(* I$I!* II !** I$I !  I)!  IH! LB ! * ӦH*)!A@ M@! $IIH&!*I !ꪯ $dB! m۶д! I.(!@ II! B" $H!`  $$! I$I$$!! ؅P!!  $!!z `d!d d0$!!U_ d!d m5X `!* RE) $I%)  $! L$H$!  $! I$I$e) I$I$d!d H0$! I$!* X ! RI!x Pv! ' @d!d  $!! 5 I$I$$!! 1$! $ $!!\X I$I$$!!* P!x I$J%!^p PT! - ! @ $!!%Xr $!!)  ! -H!ACb H ! R(&I! )TI$! / @$! @$!! $!! $! I$I$$!!.< I$I$$!! $!!B< KeE)˯  \! ( I$I$$!!ᄐ @ $!!RB* $!! ' I$I$$!!** IH!a@  !A `! HJ&!+x @h$!!p I$I$$!!* I$I$E)! I$I$E)!  $!A@ E) I$I$$!! !J'P;( Ni!/= $!!* I$I$$!!** ! I$I$$!!( @$$!!S x ! I$I$$! * P%@$!AppA$I$ p) E) /- I$I$E)! @%)p I$I$E)!. I$I$E)!z I$I$E)! I$I$E)$! I$I$E)! I$I$E)! Mѿm>e).>,&`BE)*ؠ I$I$E)!‚ I$I$E)! I$I$1 P%) I$I$E)$! HE) I$I$E)! E)!ʪ $PIE)^^I$I$! II$!* I$A$! $I$I!* $C!$! I$$! I$! I$$! J$!  IH! I&!* $I& ! JD A( I$)!j  A I!(*  A!$!( I$! @$H$E)a H I! A !  H$EpA!a( $dH&E) `BI$!* m ! 햤m! $I!b JI&I! Z+`ݰe!+ u2@!`O!H$I$ \VWUI$I$ *I$I$I$I$I$I$I$I$bI$I$I$I$I$I$I$I$I$I$$,I"YB&bicpI$I$`I$I$I$I$"I$I$I$I$I$I$I$I$I$I$bI$I$఼I$I$AI$I$A I$I$( I$I$I$I$I$I$!'I$I$! I$I$I$I$I$I$ I$I$x^I$I$I$I$"I$I$I$I$I$I$I$I$I$I$! I$I$ I$I$zZ^I$I$.& $I$!AI$I$ I$I$ I$ 4(I"I$<I$I$!AI  !AH$I$II /+ @$I!&I$I$((I$I$I$I$!AI$I(  M(&bq,$Hĉ[ 6,X>$(PbXim$!!$$!BH$"' pDX $A'Hĉ$* q$A* I,%Z$ICzV)h$!!H $!B A,'^d !A@0X9@Ha&b0cMR!{@S!!*dI(  (l!z  (I$!!j ! I$ !@P!$$(!-EA$!$I>!~UU]I6M N$*IH˶!կ$&mI!_NH!1$I!I$! I$I$E(CI$I$E(C!$!Òd!I!%! &$@! H$!ꯊ $)I#$!A p # I!{ $I")!@b &II!  @! Iֶ! "I I!o $I I! R#5$!` I! #%!` II! $IږH! IdH2! $!(*  $! IH!*  AE) )]!@( tI$A! Hd0E) [ lZe! i$h;`! P"%bI!a* I$ ! EM5! 餭 !/ hnI! /  $@!  H!a @, !` @d!d EH !  H0$!!W^ L&E) d0!  $L&E)!UUW X`)E)  IJ! @!! !`$!* ! I$I$d!d @(!@  6l! @ !` Wh!k DJ>! * ! I$!( ! H! $!!/x H !,( H!` I$J%   P t! + $!!? $`0$!!TR $!!ꪩ e) !`0E) H$d!d j"="I!x` Hɕ! % @$$!! U hD!b( H$!!K $!A P !! I$I$$!!  @$!` IZ !! ) ! . I$I$e) H $!!sK $!! I$I$$!!ʊ* ! H, ! P(@!@ i$!-  ! ! I$I$$!! .< I$I$e) I$I$$!!< I$I$$!! $! j9P !~| Ib PD!  I$I$e) @e!A $!8 !$ $!! '4 I$I$$!! ( @@$!!p O$j=!WW^x IDI!/ E) I$I$E)$! I$I$E)! I$I$E)$!  E)@ %)b I$I$1 I$I$E)!/. E)6/E)ˏ E) )- I$I$E)!p I$I$E)! I$I$E)! I$I$E)! I$I$1 PE) * @E)! 4 `E) $ !( bB! m%ID!!*& J$J I!־ &IHD! IB@! !@! Iж! R"I$I!AP !I@! ʥD!&}  pb! }^ S5o$!A` $$! $!* mn!  I2 !  )I!a` @$!b)  A I!  $@$ !B $@$! *+ H$E) 0Il! ` A! I&:! $H!  )"=! @ 2AB& kszI$I$ I$I$ (I$I$"I$I$I$I$ 4I$I$I$I$ I$I$РI$I$"I$I$IDIb7' H$I$bI$I$_I$I$@I$I$aI$I$I$I$I$I$I$I$"I$I$ЀI$I$ I$I$ڪ I$I$*I$I$  I$I$I$I$&.I$I$A'I$I$I$I$I$I$"I$I$j_I$I$I$I$!بI$I$I$I$*I$I$ (4(I$I$ 4(I$I$I$I$**I$I$jzI$I$ I$I$ I$I$ PI$I$( I$I$ I$I$b@I$I$I$I !AI$I$!$I$I$+A$I$bI$I$A&I$A$ `I$I  I$I  &M)m$$!!m$ $ Ѐ&Hĉ  $H$!!-Z4H$$!!#"IAii ɂ#'*r^Mi!A-P @$I$I$( ID d(*@$M$<H P$!!A$ $!!H $!B4hҤ$!!N6%Â$M&A@l[%D̛!O$lB !ڪ@ A `ҤIY ^a۶m$I$!B""!!j)P@i!A M A  j$!`$1$(i'I  (I$!UmR rD A!$I!$I$!$QR ZI  $'!@N!@ !A6IVP!޺)!! $IjN !_+ Jդm !b& >$%!_Z R5!Ab  U$!  m#AN!  #!^ $I!կ FM*I!8 H-I!O@!U_I* !տ>!^^P(쟄 *ꪗ'!oV K s5!u}  I6!a $A$!+U $HW! IH@! $$I! I$I!!& HEI!    H! ((* $ H!* $E)  E! ( BdE) M ! Ie!* RH Q!* kӭ!+ k-!/ D I! & DJT !A,4 I$!* ,! d!d d!d  &E) H d!d ۢm@!ꨀ ۰E)/ i@SE) h퐴!8 ZM$! @ ! * I$I$d!d d!d  $` ! $C!! TP+i! Jݚ! / !  H!b  !A I$I$$!!(  0$! ( $!!> H!` I$J%! PK! H$!!K5 -JH! $!! $!!{/ d!d   E)H$ !~  D! '   !@ A! )$! I$I$$!! I$I$$!!< !`  @!b) bA$!c  @!  !$ $`$!!7Z `$! @ $!!sJ $!!≭  !, KR5!WVXp  ɔD! 5  !A I$I$$!! $!,&8  $!(( I$I$$!!,8 P$! `!}j WW~J`I ! P !0 HH! (!@ $! !! I$I$$!! * P, @$!xpI$I$" E) //  E)`  (E)` E)! %)@ E) (( I$I$E)$! I$I$E)! I$I$E)! 4IdHe).> 6ɐ E)/ E)!prz $!! 5 I$I$E)! I$I$E)! I$I$E)!ꪪ I$I$E)! I$I$E)! E)!jJ* |! z$PN! M+H!! }HTI!W 9}"I!W @-I!  )I! bI$)I!~IMI!UW9A!굯\(& ^  J! I&! .& I*I I!ժ I$! I<H!UujI$I@!%$I$! Z pJI$!* `$! HI! ۲&! $IL!  $!* $A$I! HH$HE) $!C0E)  $ $I! ZJt!H$N$I$I$I$I$0 ((I$I$"I$I$I$I$bI$I$I$I$bjjI$I$AI$I$!``I$I$A 8F$`PI$I$<(I$I$I$I$I$I$I$I$"I$I$I$I$I$I$"I$I$I$I$AI$I$A I$I$I$I$A <I$I$I$I$I$I$ (4(I$I$I$I$`I$I$bZzI$I$A,* I$I$I$I$"I$I$I$I$a I$I$I$I$I$I$ ((I$I$~I$I$bI$I$ I$I$I$I$*I$I$I$I$<(I$I$A@I$I!A$I$hZI$I׵- I$H$A@I$I$A.I$I$ I$I I$I$ ( $A $H$I 8(* H$[ 4 $H$!!Vb$J`I$  -P @$$!!Ii&bpI$h$ 4(I$I$***I)ڶ*H$m$A8 I$!!H$I$$!!--6$!!R$I( I%HĒ$A( $!!N$1$I ݶ,Lp%$H$ 0(@ @%I!@$Ia/s$(`$8&( C'I*I 8 &I ^խI$ սdI2$$ DB$A `@$ !ۀ ض- $!$9Ib !vD!-% br ! J@!* kN5!~ }"(V!z  i+I! &$I!_J, ! .I I!U*  IDR!,!  I!  IR"%!zz  Ia!* @ C!  IH!A vi۴!* @LH! $I! JJD! 8(6 R$%)!aP dII! i" ! I$$! I$MI! $I& I$! "!ɕ$!@¯ T! * I۶ ! v h! $H!$! R ! $C$E) $Ʉ IE) H$M$I! h۰! i׶[;`!+ `B $!/ kҭ!/ 4L!/ ҶiM%! M"I$@!!j @!!* I$I$d!d I$I$d!d @d!d d0E) `! Z"%I!A h 4%)/ -vI6! * H0&! I$! * d!d $d!d I&C!* $ ! * K]I! DI$! &  ! ! $!!%W_ $!! @EP! $$!!5VZj @$!!\ P@!xɑ$M&!b PW! +  $!!kϖ\ !H$!!\ I$I$d!d  d!d  ! ( I(!`` I$U"0!z : H!  !b @ $!! 7^ $! + I$I$$!! $!!(" I$I$$!!.>  ,!

`E)x dH8&E) E)! HH! 8 I$I$$!!( I$I$$!!€ @%)b I$I$E)! I$I$E)!믧 I$I$E)!/ HIhE)!!  I&!* AdB&! $IMD!  I IR!  IR"%!Ab`  ItI! ֵmӶ! @!I! I")!bj $I$A!x !  I2$ !($! $dB!* @ I! m mۦ! IH I! I$(!I$O  I$!A $II$! HJ! m$k!  D!a(4 ! @(!` ,c$A I$I$(I$I$ I$I$ I$I$"I$I$"I$I$"I$I$I$I$I$I$I$I$ I0b?' H$I$I$I$>/I$I$"I$I$I$I$I$I$"I$I$"I$I$"I$I$bI$I$A I$I$ I$I$ I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$AI$I$A*I$I$"I$I$"I$I$I$I$I$I$I$I$  I$I$I$I$!I$I$a I$I$ (I$I$@I$I$ I$I$!AI$I$ I$I$b $A$`I$I$/ I I$ I$I$I$I$. I$I$! I$I$I A Im$ID  8p$I ( -Pm$!!-R$m$!AI !A@ 4@$ II!AER$H$A`I$I$p I-' $H(Im$!AI$I$$!!m &$!!r$@ $Ȑm@ $E$I$I &G+ @`3& `X$N" N(8H۶mA۶ 0`9Lsp-g$`$ 1 $$N ( I8*Ê&I I H խ($ I$I$!B۰qp& $I(& ^ m r@!-%&!_MR!P1!կ~M@R!a M!!P@!x" ! @$KR!ЪH#A! R A( ۖ !I!I!D!I$I$! $ ")!@ A!  $E) @$E) IH$!** @$I ! I$ $! I$I! "I$I!j $I$@!a$!! @IB!  H$I2! b I! I">$ ! I$jH!$I' A z II$!b $@\! I&[ ! I %!A ` $I۔v!* E) j"m$I!\ !L$!( &AH!A *,!/ +0#I!b 8!/  !- $]MV! I$! ! I$I$d!d d!d I$!* B ! * [mh! 2@ mE)/ R"5H!!` !!*  H$!  ! $ $E) H$B! !I!A4( z%@! pIT!/ 6!+ $@`&E) e) I$I$e)  <!P PG!b  Ri@!x M$!/ $ !- C$d!d  E) I$I$d!d @0d!d $ ! 2im!肀IDJ%!/ KA!* @ !@  ! I$I$$!! @ $!!.>Z` I$I$$!!ꨨ `! b G$!Ï/ L!  Ad!d H$!X !A@ !  d!d  d!d P<!\P` TI$!%5U $!!= I$I$$!!Š. I$I$$!! I$I$e) @! I$I$$!! $! NdJ&!\I!^Z  ! @|! @ $!!4r I$I$$!! @ $!!`J $!!( I$I$$!!** I $!I$I$b  ! %5 I$I$E)! I$I$E)!ꪪ I$I$E)! I$I$E)$! I$I$E)! I$I$1 I$I$E)!j I$I$E)!ࢂ +E).>  E)  E)!_^~~ $!! I$I$$!! ** $!! f4  $!A  I$I$$!!,8 I$I$$!!( ``E)p !!I$I$! $R.%! I2$ &E) $E) I $!  I$!  I$I$! "$I! H $!* II !** !   $I$! $I%E! HI$!( I$A!"* IH$I!" $$I! @ I! #@ I!z I"&$! I$L!_~ \I$!U_ M!. R$ !Ap C%JD!bj$L$ xI$I$-'*I$I$ (I$I$"I$I$AI$I$"I$I$"I$I$bjI$I$I$I$!I$I$pI$A$bpI$I$ I$I$I$I$(I$I$"I$I$AI$I$# I$I$AI$I$I$I$A@I$I$I$I$AI$I$I$I$ I$I$I$I$I$I$I$I$I$I$"I$I$AI$I$A* I$I$ `I$I$bI$I$I$I$I$I$!I$I$I$I$AڊI$I$AI$I$ I$I$ I$I$I$I$ ( I$I$! I$I$I$I$@I A$bI$I$X^וI$I$b I$I$I$I$* I$I$! I$I$I I$AI $!AI$I (F$I( I6E$$!!I$@$ II$!A@$I$!A A$ I$I!A$I$I$I>/ IE$@$H!A H$@$I-i$IDU,ٶm'_$H$II. ivP* s\I$!BA$I$"H A((۰xH$8R$I (I!p *K60 8Np%ĸ E$I$I$I**۶m l@$H'N  I !սO$ !hI ItI //$$)% WIZ!կX$!@-I6!Kd!ɶ!@ I$I$E(C0!I$I$! ! & !P.!*H!b(( II$!* ʥz%I!!(4(I$I$!I$I$! I$! I$I$!I$I$! A$I ! I$H!* R.%+I!!Р II$!**  I")!* $II! H $! LHA!"* !$$I!" @L! @I$! O ! I$@!9$I$!+Wz @I$!   II!- H!   D!&  "! K! $B#)! ` $H I! iۤk;! e! a9! LX2(! RtJ!  I!A& ! I$I$d!d `0! I$! * H$!! kmE)/ n: $! 6m!  $H0! ! IHE) H$ B! $IH! J ـ @!PS&!A**z $ I! !HB&!* e) @H(!!p  `0! B$!!~z j,@!a證I$!+ 4@! @B0!B!  Z&!Ax A!  \J%A!$& @B!! PI!ࠀ HI! / $@!! H$@ $!!_^z $!! d$! $!!7 $!!l X,<`! X6؁b$!  @! h ! !H!( XI! ` d!d 4$@!A I$!AI$H$  ! % !  $%!! p I$I$$!! I$I$$!! I$I$$!! I$I$$!! P- @!xpz=!b&  X! /? I$I$e) !  (!A@ ! H$!!' I$I$$!! $!  O$J&! I\I$!- $! I$I$e) (%)a` E)! I$I$E)! I$I$E)! I$I$E)!j @ E)! i A$!A  V E) $! ! $!!% I$I$$!!< @$!!8  $!@ !  I$I$$!! $!!J * 6gm! ! P @! *!&I!J B$I!  I$I$! I$I$!* @ I$! A$I$!I$I$!  ! R%$I!a $H$I! I$ $! A$I$! %R"! I$H$!*( A I$! $E) IH$!@!$! @ I&! @ I! I$!~$I& +xI$ I$I$A I$I$I$I$I$I$I$I$"I$I$"I$I$I$I$I$I$ I$I$ ɀI$I$A*) H$I$I$I$>/ I$I$(I$I$(I$I$"I$I$bI$I$I$I$ I$I$I$I$AI$I$A/ I$I$AI$I$ꪪI$I$I$I$I$I$I$I$I$I$AI$I$zI$I$ **I$I$I$I$"I$I$I$I$I$I$I$I$ I$I$"I$I$!xI$I$!** I$I$ *6I$I$( I$I$(I$I$I$I$ I$I$( II$H$I$`ਪI$I$a-+ H$I$I$I$I$I$ *I$I$I$I$* II$!AN$I* 3'L$(I $!A A$!AI!AI$ I4h$I$II$H$I$I$/  @$I$I( IH$ $I !AE6m$IX1d-;vb'@$I$/IA۶/ $8 p 'IH\)PhQ$!!$!B$ (*`:N@P$J$1%$IC* a&s$ Lx&6V5 m۶I$I$$ $ x%d$IY !UIY6 ~|$ Wp$I IyY   !ս@r!ȤMV !*NK I  $%)A I$I$E(CI$I$E(C@!I$I$!I$I$!I$I$!$!&!_4@!!`!$!"!U&!AZI&!U_$OҶ!!}?!U  I"$!*U$'!@$! " "!TQ!@ $I!a  I$I$!*  $H$! $ . !@ II! AA E)a I $!* @ E)a $$I!꠪ $! $dH! @J!* I"=$!_ I$L)! JI$!+ R"$L! ` $(! $k!a H$! I$IE)a  I$E)a R($I!A@ Ii!b b+I!/ %9X!zɷ $AV!- R" $I! ( ! $d!d @! !H0!* H0! !@۬$!/ ܆m’a$! o! + I$`B0!* G! H$H$E) $I$ !A  I$! b"@!z DO$!+* IA! !LH&! ( @ !@ ! !H$!!5_ $$!!oR }5!_x W!- LA!  )&A!@@  I!  I$E)  HB$! ( H&$C2!`<@!蠀  P! )% @ d!d $`$$!!_ P@4!!` @(!A@ !A  H! !'< %! 6  t!. C $d!d @!d!d I$I$d!d !HE) Hd!d J") I!V` IDI$!/?  0!A @!p )! I$I$e) I$I$$!!.< I$I$$!! $! OVj!5 K&ۘ39!  ! )0! @ $!!6s I$I$$!! @ $!!Rrj $!! I$I$$!! * 5$!xxI$I$+  $! - I$I$e) $! I$I$E)! I$I$E)! I$I$E)! I$I$E)! H@ $!!p P %) a E)iϧ> `$!  ` $!!XPp $!! $!!Bʊ* $!!   $!!@ `!@ P! p($!J!A $I$!U웿!I! IҤ!U!a-$!U $I$!U|$!(<!UzUy&!U]o'J!A6JO !<P ɟ$!  UM$!! $ W!* I$I$!*  AI2!(* I$I$! I I$! A$ !"* H$@!( $!@ pII A (R"!`@A"&H$ AI$I$)* I$I$ I$I$I$I$@I$I$!I$I$"I$I$"I$I$"I$I$I$I$ I$I$bjzI$I$ I$I$I$I$ I$I$!I$I$bI$I$ I$I$"I$I$A@I$I$ I$I$b +I$I$I$I$bI$I$I$I$I$I$I$I$ I$I$I$I$aI$I$ I$I$A+I$I$"I$I$I$I$I$I$I$I$ꪪI$I$I$I$I$I$AࠨI$I$A*I$I$ `I$I$&&I$I$ **I$I$! I$I$(*I$I$* I$I$xXI$I$A$I$I$I$I$I$I$I$***I$I$(( I$I$!AM$I( %s$(I $HI$!AI$I$!AI$I$!A i$@I$I &M$xI$I$^׵I$ $ H$I$JI$I$ H$ !A$I$(I)Z4$!!hI$@$Iܗ%I$@!` %pĉ $!BI$ۖ +eA'b\pĉ)\եi"'I( -s$ (I $( $IzV 1 H- ضmۖl$H"A 8@,'^Lb'y > խ^9N$M$I^? IE A*O AM!M- iI$I$$!bI$I$ R" $ !_$$ ` @@!B'! ` 雖!I !!( m?$!U N m!W SI'!UW I+ '!U m m$!U IM!WU HI!*UU $IO$!UUI$!AI!UU d I!Ad %$!aj a I!UuU<@B&!!`zԓ$yB jRI'   o$! j  I! $I$!  $$! I$!I$I$! I$I$! $  E)a dB$ ! H !($ CnI۶! j"$!I$IA* DI$!*7 $@H!/ !I ! @!Ʉ! I$E)aI$I$E)a I$! *  &C!P !~꫾z4!zz  #)!*b  IJ  0!+ I$I$E)  + ! I$d2!* @ ! Mۊ!* m$!  t! * JF$@! ( H!!* $I 0E) H H!A  !! K%"A! \ɛ$!%U @! I$! * I$I$d!d d!d  $!!iW  ! }&j !W^x .Jv!-  @E)  .(! (` $ !! B$A! !I! *( JHD!A((LP!^   ! / @d!d  $!!! @!@  0 @!  !& "`! !$!cI>  !a @ d!d @H0E) d!d  d!d I !E)  CIE) L$P%! !!ˏ/ ! @ ! I$I$$!! D! $!!  $! ʨ P+b!! Ē)! !ˏ/  T! %5 !  $!!kO @$!! % I$I$$!!* $!!  !@@ @!I$L' x ɐ\I!+/ $!! $!& I$I$$!!,< I$I$e) I$I$$!!8 $!@ @!a @E)! @$%) ( \  1D%) $!!BB !$!!%%  !@ $!   I$I$$!! @$ $!!P`@ I$I$$!! `$! *[$!W m @m!U I!UU $Iɟ<!UU $I$!bjj!b )I&! j $ Hə'! Mb$!AޘOI!UI¶!UI$!UU)$@!@$O"!APL2`I$ I$$ /O!W I$ A  ! $ !  I@"%!Ap H@!a @ !A  I!*hD$!bH$I$AI$I$!I$I$<I$I$jI$I$ I$I$"I$I$@I$I$!.I$I$I$I$I$I$7 I$I$PؼI$I$// I$I$(I$I$I$I$"I$I$"I$I$I$I$"I$I$I$I$AI$I$A// I$I$!I$I$aI$I$I$I$I$I$I$I$I$I$pI$I$z~I$I$A>. I$I$I$I$ .6*I$I$I$I$I$I$I$I$I$I$I$I$AI$I$'I$I$I$I$aI$I$I$I$I$I$I$I$I$I$(I$I$VוI$I$ABࠨI$I$ I$I$I$I$! I$I$I$I$ **I$I$ Y2' II$ (H$H$ H$I$ I$I$!AI$I$H$I  A$xI$I$^ֵ%I A$b+ H$I(* $H$I$I$I$I$(IR$<(h)$kI$IxV5 IĶm `Ȑ'/x\H$IѶ`i۶-жI$!B$8p$r\UIi$H$I&( $I((r$ (NX$W,۶m'ApI $!!(6$!BH'I^%I 9L$bH$I Ib !EA$ W2:mnAH!($@2!I$I I$ !$)!$!U@"O!b$)!U ɟP ! I% $!W  iN8!Wu l!bR$-!UM!WɓP !'+ @!տI@! !A !!!I$I$!!*I!lH!_I"!UI>!U_I$b !U$"! IB' I& $$PHH$I'!  I$! U K! I"! $@ D!!)? `$!!8  $! H$ !  I&$I! $H!I! b$! I$b  JI$! $HI!a !d0!! I$$E)a I$I$E)a `@! BJ"!꯾?_@!z&D!^{ I!% I$!* I$H$E)  $E) I$$C"!* Z`-! + Mm!?  8! P T! - 逊&!a @9$I! I ! h;4 ! @!@! * J"%"!AX )TI$! U @ !  ! ( d!d I%!P  ! * "( !a@ih!a  X! 7 L! (  I$! * I$@ E) $%R"A! 0I!** #I!H] ! $@!! `&0E) e) d!d @ ! @@ d!d Xh!\ J}C)!a La! $)& !` -! ( H d!d  `B$!(   A2E) "I!`II$!? 0! I$I$d!d $!!' P$! @ $!!6p (!!@  P!  DK(&!?? X*!P  ! d!d @d!d !A @$ d!d  d!d ! j%P!xI$I$/? P]]I!!" I$I$$!!(( *! P$!( I$I$$!! I$I$$!!  I$I$e)  H$!!%7 X @$!܀ ǵE) "(!A@ %QR!A ! @ $!!rJ $!! @! $!! H $!!( Kny$!I @!I!4!z!!B!j !!!!!!I$I$E)a!O U~I$`!I:*I$I$ !$I$* pI$!*  P!( I$ ! * $(!`A$V$`I$I$AI$I$AI$I$I$I$I$I$"I$I$"I$I$ I$I$"I$I$ajI$I$I$I$bI$I$ I$I$I$I$I$I$ (I$I$"I$I$I$I$I$I$I$I$I$I$AI$I$ I$I$I$I$I$I$I$I$I$I$ahI$I$ I$I$zI$I$AI$I$A+I$I$I$I$I$I$I$I$I$I$I$I$I$I$  I$I$!jI$I$ I$I$ `I$I$I$I$I$I$I$I$I$I$I$I$AI$I$bI$I$I$I$I$I$ZI$I$ I$I$I$I$`$(I%+ H$I$ РI$H$(A$I$ ( I$I$I$I$I$I$( I$I$I$I$^V׵I$ $- I$I$*I$I$ I$I$ .&I$I$(I)R$ h$I$A`I$I * Imb6`!R$KZVI)$!!mMѶ$!!-ڤH$ $M!AI6h$II$( M$ b* $I/I@$!!h۶m$!!mRAp@$$!!ND1 W 0c$h$I$I$IR !Z &8Nhܗɖl !ۼm@ )  K`!'!W(>I$ ^UUh$I$ '=] O!UU'I!A'O!UտIJ !տ m!着 %  I$! %BBJ!Z D"!o a @ !@!jꪪ  $I$I$E(CI$I$E(C@!$ !`!!! !j!!}!WI' !ꪠI$O!UUI I$I$I$*TI$!  A!(+ $ $!* I$H!  $I$!  $I$E)a &!$I!B II!* nm&! j"$!ɑ$J0 /~@!- L&H!  $! I$A!"* Dh$@! ( AI$! *  R)H!/0& b(JU4!G!{ DHR! $)*I!(  R"H!! a I! $IH!  ! * [5 m!: h'U&!Az j: N!a * I$`0!* ! $H$E)a H$ ! vi! *O'@ !!@ Hɕ!A + H$$!  ! * @I$A!P HH&C!(  A0! P (&A!`[Z4 4IK! - d$ !  ! * $ALB&E) I$@$! $HF!@ ! I*(! (` $aM!9  I! I$I$e) @0d!d d!d B ! /Hʁ!ͧ\  ͡D!b &. ! E) H&DB !( d!d C HE)   ! $HB"!Р J&R"1!  \! // d!d @$ d!d $!!(" $!!` $!!# 4@H!!` -, h!p ~@$!saͅ ! -5 @d!d  d!d   !A d!d  E) !  !@I$H$ h I\!! +- I$I$$!!  $! I$I$$!! .< I$I$e) I$I$$!!.80  $!@ H@!b $!!  X$!,80 A! @0$!ࠀ M!& I$I$$!! ** $!! & @$!0 @$!!&4 I$I$$!! @4$!H I$I$E(C@< !p AI$I$E(CI$I$E)aI!hH a(4(I$I$E)ah& AI$I$E)a` !@!!I$I$!I$I$!l!_ꪪI$!I$I9I$I$  I$! B#y$ ࢪH$I$bI$I$ I$I$ ((I$I$"I$I$AI$I$"I$I$"I$I$I$I$I$I$I$I$7I$I$pPI$I$>/I$I$(I$I$ `I$I$I$I$AI$I$ I$I$I$I$I$I$AI$I$A?/ I$I$:.I$I$`I$I$I$I$I$I$I$I$"I$I$ I$I$AI$I$A* I$I$I$I$"I$I$I$I$ApI$I$I$I$I$I$aI$I$AI$I$A I$I$bI$I$ I$I$A `I$I$I$I$I$I$"I$I$I$I$A)I$I$I$I$I$I$I$I$I$I$I$I$I$I$A`bH$I$(+  $I$!AI$H$(I$I$a I$I$4,I$I$  I$I$I$I$aI$I$  I$I$I$I$ I$I$!AI$I$I$ H$ $`I$I$a7I$IA@4i$bI!AI$I$$!!m[-Z4$!!$I8sVu)R$M$I$I$*I$ I$Ih۶I$I$$!!m[m6$!!$IWU5 %/ $I$I$I/I܆1b8:Nxx5I A-  "@ ` %)++I$I !m 9 $l$ a $I$  I$I$/I$I$ I$m*I7" ʂ/)A$RB2 ``Rt! )I!۶l0l RB AP0` 믺 @ )!.@a !DJ! $ ,! $! 6 !,@p X!!$!  @@ a@ @@ A!I$I$E)a!I$I$!P!~I> I$M!I$I$I$I$ * PIə$! $N! I$! I$I$! I $E)a $C$H!ꪊ $!  C!!+ I$JH I$ * $j!! !Ʉ`0! H$! I$I$!  $I$! bJDA! I  !s*L![} A$! -m۶! /  ! I$I$E) H!  ! * sm! H*! -vi! * $@0!*  4 !@+ CLD!  *( I"A! "II!ʪI$h$! I\! % I$I$!*  I! IE)  dB2! ( $d!d `L !AJ![y $mÖa!( L$a2!(  !  I!*** J$ I  &I$I!窨 a !Ë. $$!* `2$! !! I$I$d!d  `E) P%! P(*@!` ZV!iM $HA! $B!E) !L! (( IH!@ ItI!   $ I0E) "I!jꨨII$!b 0 I! d!d  $!!% I$I$$!! $!A P *! ! z!% ͣ'x! h  @! d!d J!A4, I$I$e) `@0E) )E!  @! @ y&X=!yxIdI$A ** *P@!A $!! I$I$$!!8 I$I$$!! I$I$$!! @$!ap $!!B‚ $$!! 7 @,a! x[6$!, $! /  $! ( I$I$$!!*  $! I$I$$!! @  $!!rbB I$I$$!! $!!BŠ ,! `9!"В!jFH! (d'!HK! !$ ` $(TL˖  I8!!'!W!I$I$E)aI$I$E)aI$I$E)aI$I$E)aI$I$!!ꪪ}$ AI$| !I$I$`I$I$a I$I$I$I$ I$I$"I$I$I$I$aI$I$I$I$ $I$I$I$I$ I$I$ I$I$AI$I$ I$I$(I$I$I$I$"I$I$I$I$I$I$bI$I$u}I$I$AI$I$AI$I$ajI$I$I$I$I$I$!@I$I$ I$I$"I$I$I$I$AI$I$A I$I$(I$I$@I$I$I$I$API$I$a*I$I$AI$I$ I$I$A>/I$I$bI$I$I$I$I$I$ `I$I$I$I$I$I$ pI$I$h* I$I$aI$I$I$I$I$I$I$I$I$I$I$I$I$I$*kI$I$I$I$I$I$ I$I$! I$I$(II I$I$b`x^WI$I$b- I$I$.I$I$@I$I$aI$I$I $* HI$a`H$I* I&MB4H$I!A$!!MڤIZ4 (h$I$$I$I$I$b)I A$*MI[( EۤI$$!!miѶ$!!@@$ J$AVU$R$pH$I$5I a @̣$ xWpı$I\խٰm۶m+$I$I6i m,*$|$ !zP8I$I$I$A* I$I+I0` IYI$ mK$!$I ڷ.H$I$$!BI$$!b  $!bH$!b50ؚ$`I5I࿀ f $M2ؒ$$ $ I$II$!& O$!aHI$ U HI$$I$!I$FĘ$@`II9!MŴ!&!_!I$I$E(CI$I$E)aI$I$E)aI$I$E)aI$I$E)aI$I$!@ A@I$P a7I$I'I$I$*I$!* $ J!** $I$ !@ $II!bI$I$!@ !ꪪ $LB&! $ ! ɑ$`(!x D \! ")$I!h BH!! $@ A I$I$!* d0$H!*c6 !Ӱx$!Z B !7  IB&! * $ ! $ E) H$! "!$I!@B * J*i!! jJ!c 4M! / $)!a@ @$I!a  $I$E)a $FR(! "I I!j*I$L&! DIH!  H! @$$h!` $I2E) $J! ( C ! L!  {f! %  L&! ( $I-! *(x ڦmi! "$A!`⊊ !A !!  d@&$C!: Xt!8 !I! *" Id&!*(  d!d @! @!d!d $`E) WZ=!6X  JG! %6  ȐHE) `B$0!  ! $IID!7* A ! * $H"!!@H&A0!  P! / $0&! 0d!d e) ! d!d I$I$d!d =@!\Xp BR,$!RsAM T ! % HA$E) @0B"E) d!d d!d h$@ !a $!!.? P h!p`I$I$ AID!A. 0 $!a I$I$$!!Š( I$I$$!!  $$!!` I$I$$!! /  $!@  H! "!  $ $! !$`$!   $! +)  HF!!8 I$I$e) @@! $!! I$I$$!! $!!  $!!zz* R P,!`(I$ @j$ Ao I$ `I$-I$Az @1$`I$bI$IUUI$IU$I$U$I$_r"AI$ $A1/Rm! !!P!  A&&I$I$E)aI$I$E(CH ܀8!@ !a I$I$xZ_I$I$)* I$I$ I$I$"I$I$I$I$"I$I$I$I$I$I$"I$I$I$I$ I$I$I$I$ I$I$(I$I$@I$I$AI$I$I$I$A*jjI$I$AI$I$I$I$AI$I$A?//I$I$?/I$I$"I$I$I$I$I$I$I$I$"I$I$ I$I$AI$I$A* I$I$I$I$"I$I$(I$I$"I$I$I$I$I$I$"I$I$`ࠨI$I$A I$I$ I$I$I$I$I$I$I$I$I$I$"I$I$!xI$I$ *I$I$I$I$I$I$ `I$I$I$I$I$I$~I$I$.kuI$I$!BI$I$AI$I$(* I$I$(I$I$`I$I$ I$I$b`x^I$I$b- A$I$I$I$( I$I$! I$I$ I  I$I$ (I$I$ h*I$II$m$AI$I$!$I$!AI $H$I4( I$I$I$IAʊ I H$ Ii&( H$I!A $$!!$@$IX$( @$I$xVI$IV5 IJ$  'I`\I$!!I$I$$!BI$I*I)4*s$\UP$I$AI$I$ApI$I* I& 08 @&I$ $I @ [۰m ۼ!$Љm$bm M$* 'I$h$I$(I$I$A(`I$I!*I$qII$N$8I$ IIې$KAIb )IbIb; A@I$faI$UI$NUWI$IUI$I$_$I$/UI$UI$Жm  Mٴ!R!޻$P aI$I$E)aI$I$E)a(!j( I !.( !I$ I$I'ꨀI$I$ /rɕ$! @TI!$I aI$I$!I$I$!I$! I!! M"= I!W_ J6!/ TI$ ! 0ۀe!I$I$!I$I$! `B0$H!*" !ke&P!!ڠ IV!/' $LH&! .  &D2! $E) I$@ ! d2 $! I\j! ./ jRb!R $!HI!H!A/ $("I! y"5!k@}D!!*& R")B!p II$ **j $II!  II$! * m۶m! TI$I!  D2 ! * #4$I!`E /!k* A !  "$ !@ TIf! IH$E)a $ `H0!I$I$! 4 e$!/> ݶlȄu$! 0!!  ! (  $A!  dH2E) AP%!A ɒ&A!aBޢ!ym $HA!  I$!**  z$! C2$&! I$A$!*  )"I!H@ I!A II$ ? 6)6 !bb %!! $d!d I$I$e) $`$!!  !a&& `! ͱG$!% ɔTJ!5  H$d!d $H$E) ! ! ( Hd!d HI!$4 A$$E) @$! ꢢO$x&!^^zxɑI!-- @$! I$I$$!!*" @$!!. @$!p I$I$$!!: $!!@  $!![pjj $!!bC ˴[e!.>: !L!A   $!  ! I$I$$!!+++ $!! & I$I$$!!* @$!!& I$I$$!! @!I$AjIҶPbIB@&Ib Ib'c$jI$ m/I$U_X  pI9_I$U^I$I( ^I$ ^ $DO!!' $!!H! $P' `pXXI$I$a( I$I$ I$I$ I$I$"I$I$I$I$"I$I$I$I$"I$I$I$I$I$I$a I$I$I$I$@I$I$I$I$ I$I$ I$I$ I$I$I$I$A(I$I$~uI$I$AI$I$A I$I$ I$I$"I$I$I$I$I$I$ `I$I$I$I$a I$I$AI$I$:I$I$I$I$"I$I$"I$I$I$I$I$I$ `I$I$AI$I$*ڪI$I$I$I$I$I$I$I$I$I$I$I$I$I$AI$I$A>/ I$I$ pI$I$I$I$(I$I$I$I$I$I$I$I$bI$I$յI$I$! I$I$( I$I$! I$I$I$I$* I$I$ ЦI$I$A( I$I$I$I$** I$I$! I$I$I$I$AA$I$bI$I$p\WI$I$ I$H$(I$ (II$!AMI$H$I$РA$I$^I$I$+I$I$ (Ii& H$I$!A @$$!!@$I( IK$AH$I$I$I7 1 IP$ HI[$!!A[P$!BHI$!BDI($$m'P$I$I$I$I$I/II@$0H@$I$$!B %B"8A`  @۶!b8-9 M@$i$I"JHI$  I$I**I$$a*I(I$!! IHb ضm۶-$$!B$$!B$!B$!B$@ a PA" XI$II$  '$$`I@zI$UxI$N@U)$I$/PI$ B"'v `I$! ! b@!*   I$I$!!zI&@! zI$I$9I$ +U TI! + I$A!*I$I$!I$I$! @ !4!bj IH!aA! " $R!xB H"!A !I$I$! "A I!* J%!/ I`"0!\r TJ!5 !L&! / I  !  I$E)a $ $C! Xӭv! +=! > TPU!s (@ ! +! I$I$!*  )A_! 9D)" A @H$" b9I$! /I$I$!  @#)!!` PH!! I$@ !* LA2!( zR#!Xx` FB(![y P"%VI! ` Z$I&h! @ $!!ꪪ! !zj 4@$!Å ۰Mݖm!** L$I$!( ! $PI! $A !  H!( % zFX$!A((  Jf!-' I$H$! J$H$I! PI !ظ* A$! A ! @$! J'P$ ~`  4!A k P @!  (! @ $!  d!d d!d !A$ j%j4!\~u h %B,!c 4IA! $I`HE) R"h! $ d!d DB$$B"!  A! d!d h%P,!hI$I$%57 0! I$I$$!! @  $!!rbB Ѐ$!  P$!! $!! I$I$e)  $!!% R-(!aHa%!, J !!(   ! I$I$$!!/ @$!!4 I$I$$!! @ !$ I$I$$!!* $!!BJʎj` !I$I$$!Bh a I 9(*H,I0$I$I$$Ir$J"A I$I$DI  ,$I$I$I$I$*  I2&1`@I$q,b aI$A8$A *Pm7!uH$I$ I$I$b**I$I$I$I$I$I$I$I$"I$I$a I$I$ ,$I$I$"I$I$I$I$ I$I$a ( I$I$ I$I$I$I$ I$I$8I$I$"I$I$ I$I$(I$I$pI$I$AI$I$A/7I$I$/I$I$"I$I$I$I$I$I$"I$I$I$I$I$I$AI$I$A?/I$I$I$I$"I$I$"I$I$"I$I$I$I$"I$I$!@I$I$I$I$A*I$I$I$I$I$I$4I$I$I$I$I$I$*I$I$I$I$ bI$I$a I$I$I$I$AI$I$I$I$I$I$aI$I$a* I$I$ $I$‚I$I$ I$I$! I$I$*I$I$A I$I$ `( I$I$A)+I$I$ I$I$"(I$I$! I$IA@@$I$bI$I$`XVWI$I$* *Ii&I$I$( I I$API H$I$ I$I$z^I$I$׵+I$I$ (I4A$ I$I!AA$m$I   @&bH$I$ I   4H$!AI!A I$$!!IA$!!d (/ `8&N$I$I$bI$I$*I$*1!<B@$%A$!BII$**Id$IA rAh)$6I&I*N$ )&I6 I$I$IH$!! H!I$I$$!!$I$$!! ڶm۶ I$I$$!!I$ $!!I$$!B $!B$!BH 8IH! IAI$I$$!B A@J"'I "IA@II $%R" ApI$II$I*I$ mI-۰mxI$I i$I$!ni$bRm!U& !j `'!!I$I$E(C( @ #I!袁I$j4 `I$I$A I$! $@I! $I% ! $!`B( `P @! + bD !+ $I !*6 "IQ!મ $I)! *`! I$I$! "A !** HJ%!˯I$h!UW^z K!㥕 D b$%!/ I$H$! $I$B!ʪ @IJ h4! !„H &!! ! `0!0!HI$!A* %1(I!!I$h$! !+-/ MѦm6!. H$A ! I I$!  I$! * mӶkv!(()F!m J\!7 $B$!ʪ*!I$I$!@!I$I$! R%!!( ۆnXd! $Ij*E!a(  A$%!` :`l! P $H!  I$H! #&A!bE<)!Yme $HA!  A!*"*  I! *( I$I$E)a IH$!*( %P!!p ") I!ࠀII$ ao/ I !A.$ "!@  ! d!d  d!d JAH!4 "*A!z` " ! B  ɔ\! +* @  E) B"$! $e! A$E) ") !A@ $A! Ȁ@!`I$I$h  ! +/ I$I$$!!( I$I$$!! D$!!C $! !!A@ ! H@d!d  H@!A+8 P ! )- xGH!A I$I$$!!  d!d $!! !  jd! ( I$I$$!!//? R )!h $!BI"% `R"9HA@bI$I$$!B$Ir$ m%)! $%)UU  E)UU m۶ DE) $-%)U mI! vbI `!I$жm- 0ېd*0=C% @C'$A@I$I$A##I$I$4I$I$ (I$I$"I$I$AI$I$"I$I$I$I$I$I$I$I$I$I$AI$I$A I$I$ @I$I$AI$I$I$I$APPI$I$"I$I$I$I$I$I$zI$I$hI$I$& I$I$I$I$ @I$I$AI$I$"I$I$I$I$"I$I$`I$I$AI$I$A/?I$I$(I$I$`I$I$I$I$"I$I$"I$I$"I$I$AI$I$A?/I$I$I$I$I$I$I$I$A.I$I$I$I$I$I$AI$I$A+ I$I$ajI$I$I$I$I$I$I$I$I$I$I$I$a(*I$I$ *I$I$I$I$I$I$I$I$I$I$I$I$AI$I$A/+I$I$I$I$ I$I$AI$I$ $I$I$I$`XVI$I$% I$ $ H$I$( I$I$!AI$I !AI$I$( A$I$hZI$I$׵- I$I$AI A$ <II$$ $!AA$I`)4m$pI$I$xI  - @&M!AI$!!I$I$$!!I$I /`I#'*p$I$I$I$I$I*I"(b*@@ٱI$I$!!vb%"I`H!4H$!!Hm$ $ A4 UU{A,K p$$ ($II!A $$!!$$!!$I$!AH !UUU"!UUU I*E)UUU/ I$I E)UUU m D%) mE)UU $E)UU IE) $۶ E)UU ɟ$ۆmE)UU Ā E)UU m E)@ mӿ E) i%)! $E)UU $E)UU I$ %)U@ m۶$!! N%)W mI! Ib; !I$MRnm$  +v@_vb) AKH뭾ЄL !X!I$I$E(C !ꪪ !`*I% {I$I'~x $I$ R\! R"I$I `!@$ a` @R)I!/ ɕH & #$$I!p ( "AI!A@ B>#! j I$I$! "$I!ꪪbCY!oI$I$(I$I$I$I$bI$I$AI$I$!* bI$I$I$I$AI$I$!*** I$I$I$I$AB.I$I$ I$I$I$I$A`I$I$AI$I$AI$I$A/ I$I$ 0I$I$I$I$I$I$I$I$I$I$I$I$!(* I$I$I$I$I$I$I$I$I$I$"I$I$zI$I$A/I$I$a+I$I$>.I$I$AI$I$! I$I$a bI$I$byI$I$A?I$Ia A$H$(I$I$ I$I$!A $H$(I$I$!I$I$ 6'I$I$ApPI$I$* I$I$! I$I$!AI$I )6m$I$I$/I$ H$I$A  $@$!A $!!Nl[$׿H$M$b  I!**   ! $9 ! H$@E)  H!(( $I)!@ `tI!!   HD!% PID! **6  $!  I!**  ! IH$E)a  I! * I  E)!UUUo h0E)z* IE)A ) E) I$I$E)! I$I$)( I$I$)( XumE)  E) I$I$)( I$I$1 I$I$)( I$I$)( I I$e)$!( $I$e)$! $I$e)$! II$e)%) I$I$E)! I$I$E) K0n۶mE)A4( ТmӶE) @iٶmE) H$I$E)$! II$E)! I$$E)! $I$E)!* $I$e)$! I$-Ie)!$I RE)! I$LRe)! I$6`e)! I$I$E)!˴pmE)$& I$I$E)!* H$I$E)! I$I$E)! $I$E)$! $I$e)$! I H$E)!* I$H$e)E){ ۶m E) I$I$E)!, mѶm6E)!(@ @I$E)! I$I$E)! I$$E)!* I$Ie)E)U^ I$I$E)!, I I$E)$!* |m۰mE)b~ I$E)Au I$le) I$I(!WI$I$ I$I$bI$I$I$I$I$I$I$I$$I$I$AI$I$A;I$I$I$I$I$I$"I$I$"I$I$ I$I$ I$I$@I$I$!*I$I$b I$I$ I$I$ (I$I$"I$I$I$I$bzI$I$I$I$AI$I$A I$I$I$I$a I$I$I$I$ .&I$I$jZI$I$@I$I$!)I$I$aI$I$bzI$I$I$I$I$I$I$I$I$I$AI$I$ I$I$I$I$I$I$`I$I$AI$I$"I$I$AI$I$A/+ I$I$ I$I$I$I$AI$I$Ah*I$I$B`I$I$I$I$a-+  $I$I$I$ I$I$I A$I$I$*I$I$AxI$I$b-+I$I$(* I$I$! I$I$I$I( I6M$I$I$I$ H$I$( I !A@$A`I)4$!!$I$A(I$I$!I$IA7/I4&@ 'I!* <E)UU} E) }5 E)A  E) I$I$E)!  @E)@ `E) E) I$I$E) I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$IE)! I$IE)! I$I2`E)! I$@e)! I$iKe)! I&m e)$! Id۰e)$! I-e)$! Ie)E) IB$He)E)me)8m#e)!` IRYe)E) IB$He)E)mble)  I6-e)E)Z Ie)! Idme)$! I&l[e)!$IZE) P I$ e)! I$I E)! I$Kme)!96aE)p I$IE)! $I$E)! I$I$E)! I$I$E) I I$E)! II$E)$! I$A$e)E) m۶-&E)!P I$I$E)! I$I$1 жm۴E)! I$I$e)$!( I$I$E)! I$Ie)E)Uj# I$I$E)$! I$I$)( ۶mE)!X( IҶhۢE) U M2&۶aE) I$M@E)U_)I$! !I$I$E)ah ! ( jj9 !A X 믾Ot$ A6 !I$I$E(CI$I$!`$!Ah"<‚!^[kII$!R!!I$I$E)aH`!`!ꪪŒK%MP !`$!ظ!I$I$E(CP(! $!ꪊɑDI$?x'`J!  $AH!P& !`! IRG!*H&@0!a(pHT![I$I$!H!I$I$E)a@!z@$!  11!>> JhE! $ID! $H !. A$E)a II$!** I$H$! P"5"!Xpbчa& ]] H$a&! !ꪪ!I$I$!!I$I$!h%@0 x` (! + DyA!A(* HI$!(( $H E) `B&$C2! H$H! @  $!J&`<!!( HIr%! 6M%) $IRE)  @@E)bp E)! I$I$E)! I$I$)( HE) E) I$I$E)! I$I$E) I$I$E) I$I$E)! I$I$E)! I$I E)! I$I$E)! I$IE)! I$ImE)!  I$Ke)! Im e)! I$e)$! Ile)$! Ile)$!* Ie)E) IIe)E)me) mvVe)!$ IB Ie)E)m;4SIf1` IeKe)E) I&$e)! I& e)! Imme)$! m۶5E)ضuE)'e) _۰yE)* ٲe)! _ 6I$e)!  m[m$e)! lې$e)E) IB`e)E) Id e)E)U* I$l e)! I$Me)! I$I E)! ˰m6lE)!& E)$. òm۶mE)@ mmE)!4(* I$I$)( I$I$)( I$I$)( I$I$E)!  I I$e)E)z} I$I$E)$! I$I e)$!  I$I$e)$! $I$e)$! l E)h IضmE) I$ E)_W I$I4!_I$I$@zI$I$AI$I$A+*I$I$:(I$I$ I$I$AI$I$"I$I$"I$I$I$I$"I$I$AI$I$A** I$I$ ((I$I$(I$I$ I$I$"I$I$I$I$"I$I$AI$I$A** I$I$I$I$I$I$I$I$I$I$`I$I$I$I$I$I$A- I$I$I$I$pI$I$I$I$ꪪI$I$I$I$ @I$I$('I$I$I$I$I$I$I$I$A`I$I$A`I$I$AI$I$A>/ I$I$I$I$I$I$I$I$I$I$I$I$AI$I$A+* I$I$ I$I$* I$I$! I$I$I$I$*I$I$pzI$I$A/ I$I$AI$I$bpI$I$!AI$I(*I"M$ I$I$ *I I6O I$I$AI$ b@ A$IA6pA$I$axI$I$A I$%E)A ɟJE)U E) I$I$E)! I$I$)( I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$IE)! * ۲ycmE) (!IME)a I$Àme)! ImH$E)! Imؒ$e)E)u l[$e)! e[I$e)!z -6I$e)!foe)!`۶m;e) zf۶e) m۶cE)!x l%mE)A @$I$E)!*+ I$I E)!Of1!UUNm1a.cf1A .I$I1!UUI1U.$If1UIf1!UU I$I&e)!* E)!_ԶI޶e) 6`۶m;E)!+$ֶ$E)e) *}fce) U %I$e)! dI$e)!( ٖ$e)! mJd$e)E) u MRe)E)  I&%ضe)E)V I$dKe)! I$[6e)! I$IE)! [mۆaE)P (E)` I$I$E)!*  @E) I$I$)( I$I$)( I$Ie)E). I$I$)( @I$E)!  I2,I$e)$! I$I$E)! I$I e)$!* II$e)$!  clE)!p Mm6lE) I&m[E) U_ mh E) I$I$!K% !MP!a<6 #9 1` !믿|&!A   H($I!*G@(!M'R>!9I!b@'! **I$I$!I$I$E)a H$!P0@!~zV$I$  % : b **I$I$E(C@ I!@,!J&P4 ^xx  -%Hd@`! @ $I$I!!!jꪪA*I$ ap!@6 `!!I$I$E(C !! {C!aɇIGp ( ! I$I$! A$I$! I$I$! $B$A!ʊ**I0ʏ uuV !!iI% $@ A- ! I! &  ,!I$I$!@!jꪨII 7 $ ! ** A ! !$! $C!$!  $! mE)+ IE)* E)) I$I$)( I$I$)( I$I$E) I$I$E)! I$I$E)! I$I$E)! I$Ie)!c\nɴE)  I$۰e)! Id-e)! Im$e)E)y I[$e)$! [ ْ$e)! l I$e)!*?e)!^ٶe)!f۶$e) W жme)!* $ %)` ж۶E) տ I$I$E)! e)!m۶1ۉM8e) ._ 1.'I1.$IB1UImf1e)! I$I$E)! , $@CE) HIE)eXI$1eI$1eII$1~eII$1.O^f1ըJI$$1m?`mf1۶-e)*m۷e) E)* mV2E)k@$e)  e)!* 6ɖ$e)  KlÖ$e)E) I- e)$! I$2e)! I$IeE)! I$I$E)! I$I$E)! C2l۰mE) ` I$I$)( I$I$)( I$I$)( $I$e)E)v II$e)E) { I$ e)$! I$I`e)$! ۰m۲E)` )$E) c"-6e)z@I'mE)A_ I$J@E)I$I$A[XI$I$ I$I$I$I$"I$I$ApI$I$"I$I$"I$I$`I$I$ & I$I$I$I$ (I$I$"I$I$``I$I$bI$I$(I$I$AI$I$A I$I$ @I$I$ I$I$I$I$I$I$.I$I$@I$I$A踾?I$I$ I$I$I$I$I$I$I$I$"I$I$ @I$I$#I$I$"I$I$ *.I$I$I$I$ I$I$aI$I$!I$I$AI$I$AI$I$A@I$I$ I$I$I$I$I$I$bzI$I$A**I$I$*I$I$//I$I$I$I$,I$I$I$I$AI$I$A? I$I$*I$I$I$I$! I$I$I $I$I$II6a.&@$I$(*I$I$!A I$a IyRE)+ O$E)UU) I"E)a !E)! I$I$E)!  E)a@ E)A I$I$E)! I$I E)! m۶E)  I$0,e)!/C@E)  K6`K$e)!g۶mE)8m lE)A& l۶E)!u 0E)  ЯE) ۔$$!  ۖv!( @ mvE) IE)!uUW H %)A*j  E)j+ H$!A $E) @$E)p ۶amE)+ $I$f1$!*e$I$1!U$I$1 U 9$I$1!Ue $I$1!E$I$1z $I$1! $I$1!WP$I$1 _U$I$1U@$I$1eI$1! __eI$1eII$1!zeI`I$1W.w1_ .1.I$`$1!UUmm[f1Oe) E) ml׸E)mE) e)! I$e)! ۂ$e)$!* Imle)E)[  I$ e)! I$I`E)! I$I$E)! I$I$E)! $I$E)!* amE)  I$I$)( I$I$)( I$I$)( HI$e)E)h/ I$I$e)$! I$Hee)$!* A$I$e)$! * H6ɘE)> Imɐ E)!h4@E)! OdE) s$!I A @(!I!H$ 2۰m!뫿I(!յI$H&|  !ڢ *1!I$I$E(C ! !뫯M&`5!_^~IO& ] D!`1!)H jꪪ + !)@P!jꫫI$N$/>D% a!I$I$E)a@$ !  )")!(Bx&A0!!ay!b./I$I$!Ȁ!$ `P  !  k!'> K>!\@!ꪩ*  !k!  $I$!I$I$! z$J",! DO!5 $ɐHH!H !!`!0!I$I$!M$J& x TI !- L$IE)!UUի J E) E)!U I$I$E)$!*" I$I$E)! @%E) I$I$E)!* I$IE)! m۶ E)!@ I$ e)!2-mE)` I Ò$e)! !I$E)!$C2E)b @mE) h۶m&E)!_] @ҪE)j `&E) 0@$! m$! hvI!((  ("E)Aj* IJEE)! %$E)Aڠ -E)* &%)A JE) ٱme)!. .$I$1$!_n$I$1 U$I$1!U E$I$1!e $I$1!$I$1! $I$1!$I$1!Uϑ$I$1 _$I$1e I$1! I kn1E)U I`o1E)U Ivf1$!_m˶f1& e) Vf1!U~K$ e)CmE)^  9E) ^Զa[e) $E)*{  HE)b  h%%)*_ t %) 0 R$!/~  IE) m2E)AjMne)A  0`I$e)! -e)h e)  I$mC"e)!۶mٖae) I$I$E)! I$I$E)! I$I$)( I$I$e)E) I$I$e)E)7w I$e)E)5 l`fE)8۴mmE)` [mE)A I$I$e)E)?U E) ` I16E)Wx I$mE)UU~ I$I&!bI$I$A說I$I$I$I$AI$I$ ***I$I$I$I$(I$I$ I$I$"I$I$ I$I$ I$I$@I$I$ **I$I$I$I$Ab I$I$@I$I$AI$I$I$I$I$I$AI$I$A?/ I$I$"I$I$I$I$ .&I$I$I$I$"I$I$I$I$A?. I$I$ I$I$6pI$I$I$I$88 I$I$I$I$!I$I$A// I$I$"I$I$bI$I$I$I$I$I$I$I$AI$I$A I$I$`I$I$ I$I$! I$I$$(I$I$AI$I$A+I$I$ I$I$ I$I$! I$I$I$I$ H$I$II>. @$H* I$7E)UU+ IE)U E) I$I$E)$! I$I$E)! I$I$E)! I$I$E)!+ I$IE)!+۸meE) mE)   I$E)! a۶m?E) ˰m۶E)A( 4:E)  @ۘ$! mc! 0m! ۖ$I !* $ !* MV!A* IE)  AE)bj  E))Nl۶me)!ׯdK$ E) m;dž1!j$e) I-e)!me)iƍe)! I$Жe)E)U I $e)%)* m۶m@! lKm6e)E) m %$e)E) ۖ$1E) I $e)$! e $e)%) i e)%)*& [;9e) `  4e)E)NJie)A IIe)E)U I۰1E)U Ib;1$!~mK 9e)*p`e) z?`f1!U}ҶemE)^*m @e) )PaE)L˒E) @IҶE) U x%)A -E)u $9J%)_ X $!   l%) ۰mfE)*mdE)  I$e)!* aɐ$e)!$)PE) I$6e)!۶mzE)< I$I$E)!+ I$I$E)!+ I$I$E)!* I$I e)E)z I$I$)( A$I$e)E)"_6H۲-E) @@mE)! ̸mE) E)A I$I$)( cm۶ E)^ lE)W j%R %)az` @B I$A$ #$!zD-&6I$I$+/h!!  'He@ !$!zI(N$ % 9T D@ 8!@  ۰ !ﯿ!x%@#) ZzjID  -X$ !!I$I$E)a "%R"R !`p( AA/ p!@,2 !@!z`؀ !꾾 !# !{ R"$)! `p@  "@!I$I$!I$I$!I$I$! "$I!jʪA$I " @!@ !jꪫ ! *I$I$E)a ͶlK!. m6 E) Z"E)_ E) - I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$ E)! [mnE)A IH$E)! ˆ%I$e)! m6rE)@ $iE) $E)W  #$!( Nb! &IN!/ h6! M$&! II$!b I:`E)몂 $HHE) E)!}}۶ e)! ۶mf1$ɆlCE)!8  I e)!  I&$@e)!mme) IB$Ie)$! IB2e)E) II e)%)  mӶmS4@! mKm$e)E) m $$e)E) m $e)%)  i $e)$! m$e)$! vamf1E)着$Akf1A(4 re)A@iKI$e) $[e)$! ɒ$I-e)$! !$IҲe)$! A$qE)A$ $I$e)E)U ْI$e)$! I$f1E)U എ$f1E)U Id$e)E) d6e)%) I@e)E)]  @e)b- I$kӡf1!UOb۴=le)۶$ E) Ѐ%) 2IR @$!xi $! $!* HDm[u! X(" E)%@$E)$g#mE)( $e)!+ I%me)$!$I#E)@ I$I$E)! I$I$E)! I$I$E)!+ I$I$1 0n6rE)!( $I$e)E) I$I$e)E)W I$He)$! I$e)$!*  ۺ-E)` Id,e)!p I$6E) I$cmE)UUzI$I$aI$I$ &I$I$a( I$I$I$I$I$I$bI$I$I$I$I$I$"I$I$A* I$I$I$I$I$I$I$I$I$I$(&I$I$I$I$AI$I$AI$I$I$I$I$I$I$I$I$I$I$I$AI$I$ 0I$I$I$I$a I$I$AI$I$I$I$ I$I$AI$I$A+I$I$.I$I$I$I$I$I$ &.I$I$aI$I$A* I$I$*I$I$A( 6I$I$! I$I$I$I$A bbI$I$!)I$I$A I$I$./ I$I$! I$I$I$I$AppH$I$ I$I$!շ NE)U E) I$I$E)$! I$I$E)! E)  ۶-۶E)J ۖmlE)  II$E)! I$I$E)! $E)!U X%)! A$$!  iN$!WW lIbO!U t$7! ߶ʤ!.$ I E)տ*  E)o۶e)!] I$6e)!߿dBmE) `mr #!DA$" P9p !'  !I$H$ P)0"!@@H!I$L$ \$!ꫫ !I$I$E(CXd,!!J`<!^Z L  H!﮾ H$H$ G@ 8!d@2,! /HKF!ͧ7pIK @  !!I$I$!!I$I$! L$z&!! ! / ! !. KdE) IE) U I$I$E)!- I$I$E)! (E)` I$I$E)!* ۶e7`E) I$@$e)$! I$I$E)! A$I$E)!_ )E)!j  E)a Hc;!~ I!U jۉ !/ m۶. !o@ V!* 1=a%) iq۶ E)*m۶ `e)!  I$`e)!LRMe)A6xe)  $$e)E) HFe) IM$e)$!dJe)Ъ &I$e)! 1ٶmE)! H$Ie)$!  X$I%e)$! I$I e)$! K$I-e)$! I$I$e)$!  I$ې e)$!;dE)a(4 I$`e)$! I$ e)$! I$e)$!$I`E) I$e)$! I$e)$!* mۆ e)! mle)!** I$Ie)$! $[ee)E)X  -%2e)E) 0$Y%e)$!$Gije) ` aI e)E)- em$e)E)z K,e)E)(@ IB$e)E)U I-ؖe)$! I$e)$! I$Ke)$! ۖ$I,e)E)UU dI$e)$! I$e)$!  Ai$e)$! dC$e)E)+ IR"e)! I$!e)!ߠO?le) W ̆mE) $%)}W m۶[D!< $I2'!/ `nI$! ܐ$E)UжmE)0dLE)* Mle)E)% I$6e)! I$K e)! I$I$E)! A$I$E)! I$I$1 I$I$1 -۶mE)@ fE)! I$H E)!* $I$E)$! H $e)E)( ۲m؆ E)` I%E)a I$O E)U]_I$I$ I$I$"I$I$ I$I$I$I$I$I$AI$I$aI$I$I$I$I$I$I$I$I$I$I$I$AI$I$A** I$I$"I$I$ I$I$"I$I$I$I$I$I$A@I$I$() I$I$I$I$I$I$I$I$aPI$I$"I$I$AI$I$A/I$I$AI$I$I$I$I$I$I$I$!@@I$I$A*I$I$b髪I$I$ I$I$!6I$I$I$I$I$I$I$I$ * &I$I$6 I$I$( I$I$ I$I!/ ɓ'E)UU  E) I$I$E)!  E)jJ E) I$ $E)! IH$e)$!  m۶E)  h۶m:E)!U 5E) H{! 6;I$! 'c!/ I$! In$! &E)( c۶ e)!U I$6e)!. Il-e)! Ia$e)E) mI$e)$! -I$e)$! Ö$I$e)$!* H$I$e)$! hE)& m)e)! mm E)!j٦M6hE) I$ۖle)E)  [2lɐde)E) . ɶdK2$e)E) ( Kl e)E) I$e)E). ˲ae)E)  ɐdIle)E) 5. ؐ Ie)E) /* X$ e)E) IdIe)E)/5* %&le)E) K$Ie)E)( ېe)E)  a`e)@Ƒ!Ime)aZy$e) ؂-e)E)[m @E) ɲ%S6e)E) -ɒle)E)  m e)E)  !˲$e)E) l 2e)$!Dj1YE)  Ȁ ۆ%e)E) m6 e)E)  IR$e)E)V' Ime)E)U  I$e)$! I$X`e)$!  ɖ$I`e)$! Ð$I$e)$! H$I$E)! * vI$1E)U I-$e)E) M e)E)he) $ke) _=&[ mE)Aڰ v<:E) m۶(!`$I! {I$! 01$E) U ۰mݖE) `öce)!@ojFE)A I% e)$! I$[e)! I$I$E)$!* I$I$E)  I I$e)$! I$I$e)E)* $I$e)E) j  ۶mE) I$@E)! I$e)$! I$e)E)*+ @$  e)E)P C$IE) xE)u I$M&!AD)P!`! P Ȁ @!"!I$K&)I!H %@(!öml  I!ﯿHD `"$#)!zz) D  --X(!!!ꪪ0 !"(h aA$I  $ɓ$ AH BR$!b "!,!@ !믿T@#*!_  _RD!! !I$I$E)a@! !ꪪ R"="! IE) E)! I$I$E)! PE) I$I$E)! I$ $E)! 2۶mE)` $I$E)! $E)!U '%)W  iI! f'I! L$! IĜ! I %)U K$IE)* m۶7 e)!  I$ae)! Imö%e)!/ ɆmÒ$e)E)Z mI$e)$! $I$e)$! $I$e)$!  E)a@  @E)a I$e)$!* [a۰ E) I`ɀ$e)E)U I@ e)E)+* I- e)E)  ےI$e)E)/ I% e)E)* aI$e)E)+ K%2 e)E)p ,Y%e)E) e)E) I$[2`e)E)x I Ie)E)  ض$I e)E) ٖ$Ie)E) 0`e)E)$b*E)  ۶$Kme)E)I;le)  K$[ e)E)xɰIe)! lX%e)E) $I e)E)מ $I$e)E) @u6lE)AР `ۖI6e)E) I$e)E) 6[$e)E) "#@E)@foe)  )6eBe)E) -2le)E) à ,2,e)E)  ؐmْ$e)E)Û A%e)E)@۔le)a % Imضe)E)U, I$ضe)$! I$K2`e)$!#|LE)$( жI$e)E)W II$e)E)  l$e)E) L(@e)b`e)!W}B$ E)_ I2'E)U_ k;H!~ xI2'! U_  $%)*U m%E)* e)!/ I2`ٖ$e)$!  I$`e)!F.HE) o E)  I$I$E)!* I$I$1 I$I$)( @I$e)E)`' I$e)$! I$I$E)!  $E)! I$I e)E) PE)x I$E)U_ I$I'!bI$I$(I$I$AI$I$A***I$I$(I$I$I$I$I$I$I$I$I$I$I$I$AI$I$A I$I$I$I$I$I$"I$I$! &' I$I$I$I$AI$I$A `I$I$I$I$I$I$ XI$I$I$I$@I$I$!I$I$AI$I$>/I$I$I$I$I$I$I$I$aI$I$A:z I$I$I$I$ &.I$I$ I$I$I$I$AI$I$!* I$I$A@I$I$ I$IR$! z IE)U hE)A  O%) I$I$E)! I$I$E)! I$I$E)! I$I$E)!_ 5E) @c{$! 96!H! c' 7! IWE)U* &E)* m۶e)!տ  I$-e)!  I2l۲$e)E)x Im[$e)!, -I$e)$! [mE)P I$I$E)! D@E) I$I$E)! I$I$E)! I$Ie)E). I$I$1 I$Ie)$! A$Ie)E) A Ie)E)/ ْl۰%e)E)  Id$e)E)+: K`ۖ$e)E)W&[E)а8mE) @ %I-e)! $I$e)E)h $I e)E)W $Ime)E) I$I e)E)** I$le)E)U i$$Ke)E) $$e)E) [$$e)E) ې$%e)E) ؖ$ۖ$e)E)e$ E)A  K$le)E)T ɒ$6`e)E) $ e)E) $Ime)E)[j ؖ$I%e)E) Ͷ=E)!@!vn$InE) mBI$e)E) H ٖ$e)E)(j eC6)$e)E)@EFE)  K۶e)E)* dI$e)E).. ð I-e)E).'E)  Im%e)E)_ I$ e)$! I$ۂ e)$!" %E)` I$e)! ْI$e)$! d -e)E)-#0Re)A`  e)!}C$ HE) I1E)U  @! I"5!/Uz PI!+ E)e)  H I$e)! I%e)$!$I" AE) ۶x lE) $( I$I$E) I$I$)( I$I$)( $I$e)E) I I$e)$! I$He)$! @I$E)!&< I Ie)E)/ E) IE)( T[ ,E)pI#0 j J  J !h6 ^~zzII$ **J!믭@ -*`ɖpA#=K!zzTI i髫I$N$/>(Ar! bbJP! a  H@6,! D!ͣx&  I!+"2"#!P  IH$ XG ې%X  )9Ҩ!qiE@ J!(!z $I! mҦ-E) IE)!խ ()%) `  9 E) I$I$E)! I$I$E)!+ I$I$E)! E)!w &E)_ lsln! $7:!cXN! !_+ y[IE)u I$IE)  I$0`e)! Idee)! Ia[$e)E)i ^ ɰmI$e)! ض$I$e)$! 6n˶mE)A(& I$I$E)! *E)A I$I$E)! I$I$E)!8 I$I e)E) I$I$E) I$I e)E)> I$Ae)E)> K%ٰme)E) m&%$e)E)x ؖ$e)E)  Imے$e)$! ̶lE)ǶmE) 8 lI%e)E)  $Ide)E)^* $I2le)E) ؒ$I-e)E) ْ$e)E)u I$ٰ e)E)* ۖ$le)E) ۖ$۰$e)E) K$de)E)(* $ؖ$e)E) $e)E) l @e)  I$X e)E)U  K$X,e)E) $Ime)E)  e)E)  2,۶me)E) ٖm$e)!8 6l[$e)E)  @lme)E) `ؐe)E)  IMْe)E) I6le)E)~ I$e)E)~  ɖ$me)E) i $I2le)E)j XmI$e)E)0 HI$e)E)(Z IB2%$e)$!  Il e)E) ɖ$Kme)E)  6-e)@A–ie)@ېMe)  I-me)E)U I$ۂme)$!m&iE)  -$I$e)$! HI$e)$! le)E)  I& e)!vbۛ e) _ O2ۈmE)W I$ ! I9!/  $$!+ m喷E)* lI$e)!/LE) I%2e)! I$I,E)! I$I$E) * I$I$E)! I$I$)( $I$e)E)  K2$I$e)$! I$Hle)$! I$I$e)$! H$@$e)E) mӶhE) ` I%ضmE)Wx I$O$%) I$I$A I$I$I$I$I$I$I$I$I$I$I$I$aI$I$Aj**I$I$I$I$ I$I$zI$I$ I$I$ @I$I$ I$I$A>>/I$I$ `I$I$I$I$I$I$ I$I$ I$I$ApI$I$* :I$I$I$I$I$I$I$I$"I$I$I$I$a*I$I$bI$I$I$I$I$I$I$I$I$I$AI$Ia+ I) E)W- IE)a* I$I$E)! ۶mۖ`E)A I$I$E)! E)a I$I$E)! 6E) k$! 6! $7aN!/ Ӷ!* M E) I۶mE) I$$E)!+ I@$e)$!* ٰmK$e)$!D IE)&* I$I$E)!* I$I$E)! E)A ۶-۶ E) @ l۶mE) E) I$Ie)E)믾" I$Ɇ$e)E) I$$e)E)W&0[E) `p I$I$E)! 1жm۶E)! H$I$e)E)U I$@e)E): I$@e)E) ( I-[%e)E)  l,e)E) a e)E)  @Ie)E)(*   e)E) ɖlɖe)E) $Ȑe) Kdɖae)E)(*  ذmۖme)E) 6ٖ-e)E).o۶ME)  n 1E)Hr 1e) $CHe)a  mB$e)%) I$m6e)E)  mIe)E) / $I1"H e)A He)E)*(< ۶ale)E) H$e)! ۶ۖ$e)! 6le)E)  6de)E) ( Ke@le)E)  IdK0e)E) I$@ e)$!* I$ e)E)6 $Iae)E) dI-e)E). I$e)E) M’I$e)! Ide)E),* M$mBe)E)< aɶee)E) pe)'$ɔe)4 Imöme)E)^ I$`e)$! cmE)( Ð$I$e)$!  I$e)$!  C-e)E)- IB6Ae)! de)!Wö$ E) I2'%)U_ ds H!߀ nI$!  ܔE)`۶E) ڶ $Ie)  I,e)$! I$Ie)! I$I$E)! I$I$E)! I$I$1 I$I$e)E)> X I$e)E)o I$ E)! * II$e)E)%x I $e)%) I$Ae)%)ꪢ cmmE) P E) R+!2`!믯I$H'I!+HP 0!zg78bKa[ ﯿǹ ,s%@1Pp@BT! ٶ A(.H$ . !jx"&!! @4" !Zz{kNq$ "!Rx& ! (۶m[% @  ,I j@! !׮ # E)  %)  4E) ` I$I$E)!  E)!` $IE) E)! ڤE) 5m[! o! II! [t! &E) m۶ E)!ݿ I$e)! I $e)E) ^0̶ce) `l۱me)!+ I$I$E)! I$I$E)! E) ۶faE)  E) I$Ie)E)/ I$I`e)E) I$$e)E) I@$e)E)*U ۶7nE)<& òm۶mE)` $Ie)E)U I$I$e)E)/ I$ e)E)_  Iɖ`e)E)_*  Ieɐ e)E)  [%[de)E) ( m2,e)E) I e)E)*  @$He)E)(@I0e)@ ۲%H$E)! lde)E)  m[ee)E) #0e)`` a&Ie)!lI"f1@I4Ie) ` i%I6e)E) I&$ e)%) $H$e)E) 0`ٖme)E) &-e)a@ e)  I$e)E) ÐdI$e)$! Xm۶mE)  I$e)E) I I$e)E)*U ,$e)E)-loe) @ۖI$Ie) @$e)E) )K)قe)E) ömÖ`e)$!  ؀dHe)E)((  ۲mˀ e)E) I2!e)E)$)$E)$ ɒ$؂-e)E)_߾E) @HB$9E)  K%$e)! [de)E),F2 Ie)@ ېmٲ%e)! 6lY$e)E)"$)A")E) I$؆e)$!* I$I&e)!*x $I$e)!  $I-$e)!/ IB2Ie)![?le)!_C$ E) I2'$! ސN!+  IMդ!* ۰mE)  e)!ۖaME)  I$e)! E)!* I$I$E) * I$Ie)E) I$I$)( @I$e)E)p' I$@e)E)^? I$e)E) | I e)E) % `m؆mE) I`E)] I$hE)bI$I$I$I$I$I$ꪨI$I$0I$I$A࠰I$I$A. I$I$"I$I$I$I$`I$I$I$I$I$I$!I$I$![{I$I$*I$I$I$I$I$I$I$I$I$I$pI$I$AI$I$ I$I$I$I$I$I$I$I$@pP\I$I$a* I$I$I$I$I$I$I$I$ I$I!}]]- IE)aU @E)-` E)!+ I$I$E)! I$I$E)! )ڶm۶E) 6E) mE)/ жtE) X$!// f$! $%)Abm6E)+ I  E)! I$e)$! @$I$E)! E)b@ E)!* OE) 68 I$I$)( I$I$)( I$Ie)E)[* dH$AE)8 I$H$e)E)U I$I$e)E)U $I$E)! I$I$)( I$I$e)E)U* I $e)E) $A$e)E) A$H$e)E) II$e)E)*. H$Ie)E)( [y E)a ڦm",E)b`` XdY%E)! @$$e)E) 6ۖ$e)E)U ɰK$e)E) x_ MCI$e)E)ӰɑE)8̰I6mE) -$I0E)!!`$INE) $Ile)E)  $Ime)E) ے$ɶe)E)_  Ò$e)E)U ɒ$e)!!me)  ۖ$Ile)E) $Ime)E) $I2`e)$!a۶mE)! I$e)E) $I$e)$!PӪm۶E) me)!(( II$e)E)_ 6`I$e)E)* ېa$e)E)ڶ IE)$ ٲ-۰me)E) II e)E)** -ɶl$e)!0 2 Â!e)E) m2,e)E) K e)E) #)9E)` I$ee)E)7 $I,e)E)K 6mE)A I)$e)!< ؂% e)E)  iڦLHe)E)# (Đ,He) ömɒ$e)E) h "e)!@ le)! I$K e)$! e)! i$e)  uf1E)^ I$$Ke)!C$ E) I1E)U~  $ch! @X &!  OE)`{e)! dEE)8 I$e)! mv E)! а I$I$E)!* I$I$E)! I$I$e)E) $I$e)E)_W I$$e)E)Up $I$e)$!* II$e)E)( ۂalE)b@ IE)! ɆeE) j&Z5!II$*(+BT!{)  m@ۤ(h(DB1 [{۲6@IdI$A (4)lA ȑ!۲ m 9I V ! &&("A !﮾I$N$()H!bRBO Z{{kH 뫩bɶd[ 믿 ٖn E) v6E)+ HE)( I$I$E)! I$I$E)! E)` E)! $E) M!E) [E) hK7E) ؒn$! H%)! I$I2lE)!+ I@$E)!  I$E)! A$I$E)!* PE)  @E)!@ E) I$I$)( I$I$)( I$I e)E) i۶-жE)! II$e)E) zU I$I$E)! @$I$e)E)U I$I$)( I$A$e)E)ժ IH$e)E)*( @I$e)E) *. I $e)E) I$e)E) A$I e)E)몀Fn&HE) mKDE)<< $e)E) ~ Kۖ$e)E)(*_ [`ۖ$e)E) aSI$e)E)WU K I$E)!iٶmE)A@ D$)E)P&mE)а $I2e)E)յ $Ie)E) ؖ$Ime)E) K$e)E)(U K$e)E)URe)ap ٖ$e)E)Հ ې$Ime)E) $I e)E)b۶ e)!@* $I-E)!$m>1E)` Ille)! %[le)E) Ilme)E)  I%I e)E)ڰ6 I @$E)!@ I$[$E)$! I$I e)E) mKqE)A(e)  ۆmE)  X I$e)$! Ȁ $e)E) lee)E) " Y%He)!, ˶le)E)  A, e)E)" H@! K 0le)E) I%le)E) $e)E) Ime)E) `$e)E) MҲ$e)E)  !X Ke)%)  e)E)(,Ӹ e)!`m$IE)  I$He)E)-Ux %I$e)$! [ l$1$! MBHe)$! I$de)!MB$ E)W I$! pI9! 0ٖ%) жnE)! U 6 I$e)!/ I% e)$! I$K,E)! @ DE) I$H$e)$! I$I$)(ö%۸mE)p ۆm[7gE)  ْdI%e)E)-p I$I$1 I$@e)E) PE)z I$[lE)I$I$I$I$bI$I$AI$I$AI$I$"I$I$ *&I$I$ 'I$I$I$I$I$I$A>I$I$I$I$I$I$jI$I$I$I$ (I$I$AI$I$A*** I$I$(I$I$kI$I$ I$I$I$I$I$I$bI$I$I$I$I$I$ I$I$! IE)ׯ E)! I$I$E)!+ $E)a I$I$E)! $E)!_ вE) &E) lE) E) $%) ۸-8E)!` ۖmmE)  mmE)! %mE)p P E) I$I$E)!  I$I$E)! I$I$)( I$Ie)E)/۶mgE)( IH$e)E) xU $I$e)E) xU @$I$e)E)U I$I e)E)U I$I$1 I$I$1 I$I$1 I$I$1  I$I e)E) I$$e)E) IdC$e)E)*U IeI$e)E)* ^U ɀ$I$e)E) U ؖ$I$e)E)_] H$I$e)E)U I$I e)E)_} I$Ae)E)u"/ 6lpE)& m; E)!@a$mE)! I$e)E)*. [-$e)E) ٖɐ$e)E)% `f4iE)a8dMe)<4 ɐ ؖ$e)E)  ضmٖ e)E) nC|e) ɶ e)  Ime)E)  I$@!OH$RE) ( ۶a۶$e)E) K$,e)E) 0ۖ$e)E) $e)E)`ҶMlE)A H e)E)8  Kdɰme)E). I![-e)E)p I$$e)E) I$E)! I$Ie)E)/ ۶mÂE)@`۱me)!!`H$iE)a  2lI$e)$!( ,ِ$e)E) X%le)E)  md"e)!hoe)  Ȇ e)E) m6`e)E) `ae)E) I,0e)E)j I$6e)E)) lI`e)E)  [ɰ$e)E)  ˲mde)E)H+ IlJe)E)   `˶lӦe)E) H$e)E)KlHe)A/ I$@E)!  iI&e)E)5Up a$1E)U le)E)` I$ e)!dC$ E)z I9%)U sl!/ M1g$! ۰m햶E)*fce)!  K2lle)$! I$@e)! @E)h ضmٖmE) I$I$)( I$E)$! ۖaܸ-E) @mhE) I$I$e)E)꠭ I$ e)E)+ mӶmE)!` I$۸aE)^ TI$!bLD` %!^Id`& Őmn L$`%<\'! l&*!V!aZ*II$ P9, H!H'`$! I$ A***$*J *) _&/%)!j* E) I$I$E)!/ I$I$E)! E)  I$I$E)! 6E) hk6E) kt5E) `h E)/ lE) E) ۶dE) ( m۶hE)  I$E)! X8E)(4( E) *4 I$I$E)!* I$I$)( I$I$)( I$I e)E)J ۶moE) II$e)E)^U $I$e)E)^U I$I$)( I$I$e)E)U I$I$1 I$I$1 I$I$1 I$Ie)E) I$I e)E)* I$$e)E)^ IK$e)E) U II$e)E)W $I$e)E)U $Ie)E)U> I$I$e)E)U I$I$e)E)W׾  E)@ ۆm E) [% E)b I%[le)E)*  e)E)  H$$e)E)e) @ h2e)a@ Yle)  Ie)E)*-0e)`4IaE)  $e)E) Id%e)E)* lۖde)E)+ mR$e)E)pW۶mE)  M$6e)E) Imِe)E)* ɒ,ۆ%e)%)m$Ie)A yme)  Ie)E) mٖde)$!["m4mE)A ɖ-$e)E)  ٲ-[ e)E) I-Ke)E)8(["1$E)ap( [mE)A $I2,e)E)4LHE)A4 d $e)$! ae)%) l e)E) I@!$H$Pe) @e)%) I$me)E)w i$vf1E)] $9E)A$  mK6$e)E) M6%Ke)E) 6lۆde)E)( mI$e)E)* I- e)$! I$Xae)$! жmöE)` i$e)!  I9@1$!~vb۰ `e)!U~ u¶mE) ɖ$Zi! II&$! $QfE)+ /e)!  [` e)E)`  I$[2`e)! I$I$E) I$I$e)$! I$I$)( $I$e)E)W I$ $e)E)WP  I$I%E)!(6A[$E)!  E)@ P E)x I$P E)bx@I$I$A***-I$I$(I$I$ (I$I$I$I$I$I$ `I$I$AI$I$A?//I$I$ j&*I$I$I$I$@I$I$aI$I$"I$I$AI$I$A I$I$I$I$I$I$I$I$I$I$bI$I$a* I$I$aj I$I !b I%)- I$I$E)! P%)!( I$I$E)! I$I$E)! @ $ME)Ъ$˶MYE)vRI:E) $(֎E) X $!+ !E)! I$I$E)! 6`XeE)8 I$I$E)!  E)*b` E)! I$I$)( E)` I$I$E)! IA$e)E)/W  E) $ H$I$e)E)hU I$I$E)! E) I$I$)( I$I$1 ۶d6`E)A(4 I$I$e)E)*X II$e)E)jU I$I$e)E)U $I$e)E)WU I$I$)( I$I$)(  E) @` I I$e)$! I I$e)E)Ϫ cðmE)!@ $IE)! $Ie)E) I$Ie)E). I$Iae)E). I$e)E)* I $e)E)닀 Im,e)E) [2l[$e)E) K`$e)E)U aK$e)$! ɐ$e)$! %HM$e)$! ۀmI$e)E)UAr$IE) ֶI$1! @I$e)! II$e)! mI$e)$! -Qi$e)$! $e)$! ض ɒ$e)$! ۲$e)E)}()IE)@AIE)A IeX$e)E)  I$6 e)E)J$f e)b8˴m&IE) Ie)E) * ImI$e)E)6*Z 0E)!@MmE) [lme)E)  H  e)E)ˀ6i4,E)` !m6 E)A m&E)@dCE) ` $[I$e)! Mɔ$$e)E) eI`Je)%)  I$ 1"Цe) @! Il`e)E)Z I$lےe)E)PB$E)P i )$e)E) mҤhe)E)( )ٖl 6e)E) ۶ K-e)E) Hmِde)$! I$`e)!+ $I&e)$! foiE)  uҭ1E)_ DOe)!_C$ E) I&H$!  L1!"/ oE) ae)!  `CI$e)!  I$e)! I$I$E)! I$I$E)! I$A$e)$! I$I$e)E))~ K!I$e)$!* I$K!e)$! ۶%E)!xmIe)A ۶mölE) R,E)_xtR/!mѤI$(L6$3,òbɐd /X 4[-$IH  $!bT&P!AڭB#(B! I0%)aW/ %)) I$I$E)!   E)a( I$I$E)! E)!_  @ !mqYE) I`E) imE) 6E) I$IE)!/ II$E)! lnE) I$I$E)! @hE) << I$I$E)!* I$I$)( HE)!4 I$I$e)E)/z ۶!ضmE)@ ېm۶mE)! I$I$1  E)A` E) I$I$)(  E) ܖaۆ E) I$A$e)E)W II$e)E)^U I$I$e)E)*zU H$I$e)E)U I$I$)( I$ $e)E)U폮 mضmE)! I$I$1 H$ $e)E) hm۶E)!0 H I e)E)؊ A$Ie)E) I$Ie)E) I$ e)E)  I$ۖae)E) I@$e)E)  I %e)E)/ I I$e)E)*W Il$e)E)*U lY$e)$! l[%$e)$! d i$e)E)U l۶mE)@Prm۶e) @I$e)! @I$e)! mI$e)! ض I$e)E)U Km$e)$! ,X$e)$! ۶aI$e)$! $$!  E) E) I$I$E)! I$I$E)!/ $I$E)! $I$E)! ɐ I$E)! H%@E) Ö I$e)!J8HE)  me)! ٰ$6le)E)HMHe) lYle)E) @ٶ$e)E)  l2De)! K2dK%e)!۶i6$E)p Y$۲ae)E)#@J$I1E)@ I I$e)! %Ie)E) HI1" H $1" I @!h"E)a@mFIE) I$e)! / mK!$e)E) IB6 Ye)E)m,E)` e)$!ۆe`ME)  ɖ$H-e)$! I$e)$!  `C%e)E)- e)!~b߶E)!UW $@%)~j I6h! @E)! ]Uwe)!- XaIde)! $3(@e)` mۆmE) E)!@ ٶmضmE) `E) @6lME))۲mۆmE)b@ ٶ mE) I@$E)!@ dl۰mE)z I$[2lE)UWxI$I$I$I$AI$I$I$I$ $ I$I$AI$I$A I$I$I$I$I$I$I$I$I$I$@`I$I$!**I$I$bkI$I$ * I$I$aB I$I$aI$I$a`I$I$b I$I !}/ I  !  E)!/ I$I$E)!/ $E)` E)! `E)!U.I$Ih<1 _U-f1mE) 4E)* I$I$E)!+ @E)!R I$I$E)$! I$I$E)! E)! I$I$1 I$I$1 I$I$)( I$I$E)! $I$e)$! I$I$1 I$I$)( HE)a8 I$I$)( I$IE)$! 1I@E) II$e)E)*_U $I$e)E) ^U I$I$E)!* I$I$E)! 0 E)A I$I$)( I$I$)( ۶m۶E)(4 A$Ie)E) I$e)E) I$e)E)* IA$e)E)_  mE)$  ۆ%I$E)! ò%I$e)! $I$E)! $I$E)! I$I$E)! 4E)z $E) U $E)U $E) $%)A M$$! m$E) R$E) m$E)U I$%) I$%)U I$E)U I$E)U I$E)U m$%)U $E)U cgۖ$E)A8 $E) * nE) E)* I$I$E)! ɐ$I$E)! ِ$I$E)!  H$I$E)!B۶mE)!pimE) ҰmE)@Q[HhE)( ɶ%e)E) ²m4AE) @ aI[e)! 6,ɖ%e)E)  eۆ-$e)! ز`le)E) I%Ò,E)!ۤmAE)A  $Kle)E)cm۴E)  mI-$e)E) m4M@! $I$1" H1" ۂ؀ e)E)$I SE) $H%e) ( ɐ$e)E) mRe)E) I$$4e)E)+  e)A &"iE)!@m6IE) -I$e)$! J $e)E)  MB6$Xe) e)!U~ M2E) JI!  !@ %)!UaۉE)! U `KI$e)! I&%e)$!oiE)! I$I$E)! ˶mömE)$( I$I$e)E)?^  7۰mE) I$H e)E)%X ˶mmE)! I$ e)%) M]m۶E)!v  9E)WX ]=m,$!zz&n* I$M$.<:llt/$ $$!b IV !  0$!/ I$I$E)! I$I$E)! E)$( $E)!W'If1 _U-O'?f1e) @ME)*  E)!+ I$I$E)! ˰ ۶mE) I$I$E)!*  E)! p I$I$E)$! I$I$1 I$I$1 I$I$E)! I I$e)$! $I$e)E)WU I$I$)( I$I$E)! E) I$I$)( m۰mE)p I$@$E)! I$I$)( @$I$e)$! I$I$1 `E) ` I$I$E)! I$I$)( I$I$E)!@ ۶mۖE) I$I e)E)* I$$e)E) I@$e)E) 0bE)!@ ٶme) ۰dI$e)! H$I$E)!  H$I$E)! @$I$E)! I$I$E)!+ &E)W $E)U $E)*U $E)_ R$$!A I$%)A $E) k$E)W I$%)A I$$! I$%)U I$E)U I$E)U I$E)U $%) U ۶aܖ$E)U I"I%)U I %)A I$ $!!_ I$E)W $E)U $! VIHE)U  H+i%) @HNE) p  E)!kzU E)a (* I$I$E)!  %)!@аMmE)  ۶mE)A  0 ۖ$e)$!*˶IiE)Ӳi e)@mo#qe) `I$e)E)* Yde)E)(* YdYde)E)#"( I A$E)! ɐ$[de)E) Z" I$e)E) ޸ - $e)E) U@r-6e)c l˶le)E) @! [e)%) I&$ e)%)  I%e)E) Iʶ)$e)E)* MS6`Ke)E)$@˴ E) $ [ me)E)` I$e)E)U\ $I&e)E) U` YI$e)E)  MB6ےe)!?e)!U~ $E)!Uuwx ! $E)!U`{me)!  ɖ$e)!  I$de)E)UX I$I$1 I$I$)( HE)<< I$e)E)* I$Ie)!(< I$I$e)E)X I $e)E) I$Ie)E)** @ E)! I$X$!I$I$I$I$AI$I$A?I$I$bI$I$AT8I$I$ I$I$  I$I$"I$I$!I$I$A* I$I$I$I$I$I$I$I$aI$I_/ IɁL!A/&( $A$!* E) *& I$I$E)! 0E)!_e)!W%JI9 '1!U p.1 @E)!\ !E)!տ+ I$I$E)!/ I$I$E)! I$I$E)! I$I$E)!+ E),& I$I$E)! 9E) I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$)( I$I$)( l̰mE)A I$I$E)! I$I$E)! E) I$I$1 I$I$)( I$I$)( I$I$)( I$I$e)E); ̶m E) ۶-òmE)@ V mE) I$I$E)! H$I$E)! I$I$E)! @"E)!U $E) zU CӶE) ڶE)  IE)_ MZ=$!~_ !] m I$I$E)! I$I$E)! I$I$)( I$e)E)+ ۆm[eE)b $I$e)!* @$e)E)) $I$e)E)ʪ K-mE)^ I$M$%) I$I$A-/ I$I$I$I$I$I$( I$I$I$I$I$I$aI$I$ BI$I$I$I$jI$I$+ I H! H ! *  @!A` I$I$$!! $E)!_m۶mE)+JI$1!U%Xe)$I$1!XUU HE)!W+ I$I$E)! I$I$E)! I$I$E)! E)! I$I$E)$! I$I$E)$! I$I$1  E) @E)Ap I$I$E)! I$I$E)!* I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)! I$I$E)!* I$I$E)!* E)@ @ E)a  I$I e)E)_ I$ $e)E) I$A$e)$! A$I$E)! $I$E)! I$I$E)! &%)!U HBE)!W- )E) $0E)!UW k n! mm2!* -%) R%!b i:E)+* IE) U* E)-) I$I$E)! I$I$E)!* @%)A0 I$I$E)! I$@$E)! I$I$E)! I$I$E)! I$I$E)!۶A۶%E) p۶ ۔9E)yeڶmE)( I$$e)E) I$ې$E) I$@$E)$! Idې$e)E)) IlX$e)E) I2`ٖ$e)E) 6nKmE) $ I $e)$! I$A$e)$! I$I$E)! I$H$E)! I$I$E)! I$I$E)!( I$I$E)! I$I$E)! I$I$E)! E)!շ E)!շ E)!/ @E). E) 1Cm%) ` I$I$E)! E)!} E)! K$I$E)! 0m۲-E)a`$Ame)#0Ie)b` $ e)E) ˒mɂ-e)E) ٖ-de)E)( ۲m,e)E) I2,,e)!@۶Ie)A  I%e)E)p % %e)E)5'@e)  mm6@! [ ؆me)E) I$6`e)E) IRe)E)% L $e)E)(  M۶lIe)E) lCae)E) @e)E)p I$[ e)$!*Dl8E)   $K!$e)E) I& Ie)!|۶0e)b` $!! @ E)!Wz+ mMܶE)! Wx e)!0  M6%$e)E)\k I$K,E)! I$I$E) I$I$1 I$I$e)E)/m+-E) mٖmE) %ɒ$E)! I$@ e)E) 3`۰mE)x ɵE) Ä!$!!^U%  H!A$ I$I$E)! E)!_UJ'f1% eIx$1!pWJ`$I$1!pWU  E)! I$I$E)! I$I$E)! I$I$E)! E)!* I$I$E)$!* I$I$E)$!+* E)@ I$I$E)! ȀE)$( I$I$E)!* I$I$)( I$I$)( I$I$)( I$I$E)! I$I$E)!* I$I$E)! I$I$E)! I$I$1 HE)!< ̶mE)a I$I$e)E)U I$A$e)E) I$H$E)! H$I$E)! H$I$E)! 0E)!_ E)!U IE) U $E)!Wh 5E)ꯠ mh!" ]6I%)* Ҵ$! z%)!6( E) R 4E)r I$I$E)! I$IE)!/ I$I$E)!  E)b I$ $E)! I$I$E)! I$ $E)! I$I$E)! I$I$)(&hE)6apE)a$ ۖn۰mE) I$$e)E) I$$E)!< I$H$E)!( I $e)E) u ImK$e)E)bE) @ mmE) I$I$1 I$I$E)! E)! I$I$)( I$I$)( I$I$e)E):U I$I$)( I$I$)( ۶mölE)& I$I$)( E)H  E)  I$I$E)!  E) @ @E) E)!׿ E)!}e)! I۶-E)!uxK~۸ E)  LE)!x %)!6 ِdI$e)!  ؆mI$e)!4¸ E)` Y%ٶ e)!&HE) ($ mېde)E)* Xm[-e)E) I$I$)( )$I6e)E)z ɐ$e)E)  mۖ$e)E)hME)  dC Ie)%) K-e)E) )lBe)E)? lKI$e)E) ^ m6(Ye)E) 6lòme)E) X`6,e)E)p I$[2`e)E)V` I$e)$!*L@Ne)$`e)!^ n븭E)!-^ aae)!` $1!Wz @E)!/6lSE)P$9"E)$ I$I$E)! I$I$E)! I$I$1 cömE)!@iնP[E)vnɴmE)a I$He)E)ꨨ mm۶E) B I2&aE)a I$I$!I$I$I$I$I$I$I$I$aI$I$a***I$I$(I$I$ I$I@ Az* TH$!  L$!!  I$I$$!! 0$!eI$I1 _-eIG$1 -xJ$I$1!\UU HHE)!W+ I$I$E)!+ I$I$E)! I$I$E)! I$I$E)! I$I$E)! E)8& E)!*h I$I$E)!  I$I$E)!* I$I$E)! I$I$1  E) E)  I$I$E)! I$I$E)! E)  E)  I$I$1 I$I$)(  E)b@ $YIE) I I$E)!( I$I$E)! E)!~ "I%)hm۱1 c'f1z Ie) UIE) U @$m۶E) W &$! IE)!ժ I$I$E)! I$I$E)! I$I$E)!* @E) I$I$1 I$I$)( I$I$)( H$I$e)E)UW I$I$1 I$I$1  E)A` I$I$E)! E)@ pE) I$I$1 E) ` E)a I$I$)( I$I$)( E)@ I$I$E)! I@$e)E) I$I$e)E)^۶m۶ E)  I$I$)( I$I$)( I$I$)( E)! I$I$E)! I$I$)( I$I$)( A$I$e)E)U I$I$)( m۶m&E)!P I$I$e)E)[ I$I$E)! HE)!4 I$IE)! I$I$E)!ھ *%)!( @ E)!/u @E)!ުmm;E)! mmѺE) ߀ ۲1ض E)!Jm#)lE) %%) h -жmE)  `I$e)!  2 ے$e)$! ۔kHE) M/4E)` ɰmٖ%e)E)  m2`e)E) I$I$e)E)^ન ɐ$Ime)E) W I$e)E) ۆm e)E) $-le)a@mme) `e)E) ɰ$e)E) I$e)E)h mKe)E)  ِle)E)  ae)E)  I$ۖe)E)Wx )$I&e)$! @3A@re)` IB4He)'e) ^mm;E)! 5~O?&1!WZ-Ϗe)!kp lɒ$e)!ʭ#I!h6E) I$I$E)! * I$I$E)!. I$I$)( I$e)E) > )HE)$ecmE)  I$ e)E) I$I$e)E) I$ $E)! E)!^XeI$I1!WU%eIx$1!5xWex$I$1!pW  E) * I$I$E)! I$I$E)! I$I$E)! I$I$E)!  E)!*J E)  I$I$E)!>6 I$I$E)! I$I$E)!* I$I$E)! I$I$1 E) I$I$E)! I$I$E)!* I$I$E)! "!E) J E) I$I$1 I$I$)( PE)a8 I$I$E) I$I$E)! I$I$E)! $E)!W P"%)A *'O1!UMe)a&ae) Z -6۶E)!xի  I$%)Ap ME)* E)!* I$I$E)! I$I$E)! I$I$E)!  E) I$I$1 I$I$)( $I$e)E)U I$I$1 I$I$1 I$I$)(  HE)b,4 I$I$)( @E) 0 I$I$E)!. I$I$)( @ E) E)$ I$I$)( I$I$)( KmmE)( II$e)E) * IH$e)E)  E)@ ۶mlE) I$I$)( I$I E)!(  E)b@@ PE) HE) I$I$E)! I$I$E)$!  E)A I$I$E)!* ˶mömE)$ I$I$1 I$I$E)! I$I$)( I$I$)( II$e)E)/ I$I$)( I$I$E)! I$I$E) I$I$E)! @E)!_  E)!W6۶ce)!W MnIE) I-E)!x mmSE)!\ -E) ~ mnE) KmI$e)!+ 6ٖ$e)$!  mK6Ye)E) m$l0e)! ٰmee)E)  2[6,e)E)  I$ۖ e)E) M&e)E)+X l )$e)E) Mڴm[@! He) X e)E) I$e)E). $I&e)E)? mÒe)E)  aۆ e)E) [ ɰle)E)  I$ۂme)E)\ %I$e)E)%UX lC!e)$! d32 HE)@۶]ۆ1+.prɑ$1!x-.I$xr1!Wxa۱E) $- 2le)$! I$X2`e)! I$I$E)!* I$I$E)! I$I$e)E)+V K%I$e)E)\b. I$I2$e)E)-Vp @$e)! ò`E)`aڶ-E) @I$[rE)I$I$I$I$ I$I$aI$I$A  I$I!/ IJ$ ! R#)!`  $! I$I$$!!eɟ1 eIǂ$1 xeG$I$1!XU E)!+ I$I$E)!* I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$1 @@E) ` E)a& I$I$E)$!* I$I$E)$!*( I$I$1 I$I$1 I$I$E)! )E) I$I$E)$!* I$I$1 I$I$1 I$IE)$!( I$I$E)! I$I$E)! I$I$E)! I$I$E)! E)!~?I1!WU 71!_ x.IM$1!U xU.??I1z  E)* IE)!ի I$I$E)! I$I$E)! I$I$E)! E) I$I$1 I$I$1 I$I$1 I$I$E)$!* I$I$E)$! I$I$E)$! I$I$1 I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)$! I$I$E)$! I$I$E)! ( I$I$E)! I$I$E)$! I$I$E)$!* E)A& I$I$E)! I$I$E)! I$I$E)!* I$I$E)!* @E)@ PE)A8( I$I$1 E)! @E)! I$I$E)$!( E) - I$I$E)!*  E)!j E)  I$I$E)! E) J E) I$I$E)!* I$I$E)$! 9E) E)!pꠀ  E)a $E) I$I$E)!* I$I$E)! I$I$)( I$I$1 I$I$1 $E)p  E)` I$I$E)!  I$I$E)! I$I$E)! I$I$1 E)!  E) I$I$E) E)@ I$I$E)!( I$I$)( I$I$)( I$I$1 E)A  I$I$1  E)@@ E) I$I$E)!"  E) I$I$E)! ۶m6,E)` @HE)aP I$I$E)! I$I$)( I$I$)( E)$ I$I$)( I$I$E)! I$I$E)! I$I$E)!*  E)A@ E)!  E)@ I$I$E)! I$I$)( I$HE)! I$I$E)! J%)! VP@$!\  mf!* 04m$! ۰mۖpE)*  I$e)!  mC,e)E) il[e)E) mۖe)E)* K-[%e)E)  $dRe)E)  $YI$e)E)I$H$@!A$I$@! K,e)E)x!DR#)e)  mC%e)E)4IڄDe) @ e)E)`@ I$@ e)!  I$1E)U L&Xe) t(hE).hI$1!p5Wsf16`{E)   X  e)$! I$K$E)! * 0E)!^  E)!XV 0$! m!eI$I1 eIo$1!5 Xeh$I$1!`^UU  $!! 7- $!!/7< C$!!@\ ")!a@@ t%) ) %)! $ p%)  I$I$E)! I$I$E)! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)!꾫 I$I$E)! I$I$1 I$I$E)!* I$I$E)!* I$I$E)! 0E)!_ I$If1!_U-.I$1&1!U Ji8O$1!-^U.x$I$1!xWW !E)! I$I$E)!+ I$I$E)!* I$I$E)! E)!z I$I$E)! DE)( H %)b4( I$I$E)!꿪 @E)p I$I$E)! I$I$E)$! I$I$1 I$I$E)$! I$I$1 I$I$E)! I$I$E)!+ hP%)  (  E) @ E)( E)  I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$!* I$I$E)$! I$I$E)!( I$I$E)! I$I$E)$!  E)! E)` I$I$E)!( I$I$E)! I$I$E)! E) $ E) I$I$E)! I$I$E)! I$I$E)! E) )lE) E)! I$I$E)! I$I$E)! I$I$E)!( E) I$I$E) I$I$E)!* E) I$I$)( I$I$)( I$I$)( DE) E)! I$I$1  E)& I$I$E)! ۆecmE)A8 I$I$E)! I$I$E)! E) PE)  I$I$)( I$I$)( $E)!P I$I$)( I$I$E)! I$I$E)!+ I$I$E)!* I$I$E)!  E)a I$I$)( E) I$I$)( I$ E)$! I$I$E)!  E)ꪨ@ $!A  $I!x P I$!/ 0fE)  ÖdI$e)! e)!  Iۤ$ e)E) ( Kmۆ%e)E)( زm2 e)E) I$ e)E):  @I&e)E)p $Ie)E)  $I$@! e)E)[m`E) h[ $e)! lrc;4e)` 2lle)! I$e)! !I$e)E)\ 3ޖt1E)~dC ME)z.1O?1/.O'ǟ1 mI[E)! T ِde)!  I$@2`e)! I$I$E)!* I$I$1  $I$e)E) I$ْle)E)\B I$e)E) ) I$I e)E) II$e)E)j. mm[E)! I$I$1 I$I$E)$!* I$I$E)!* I$I$E)! I$I$E)! $!!.I$I1!}U JI$1!U-^. ) 'I$1!xW E)!X E)!+ I$I$E)! I$I$E)$!+ I$I$E)! E)! I$I$1 E) PE)A I$I$E)! %)& I$I$E)$! I$I$1 I$I$1 I$I$E)$! I$I$E)$! I$I$E)! I$I$E)!  E) %)  E) I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$! ( I$I$E)$!* I$I$E)$!*(* I$I$E)$! I$I$E)$!  E) pp I$I$E)!* E)$. I$I$E)!  I$I$E)! E)p  tE) I$I$E) I$I$E)! I$I$E)! E)p E)` $E)!U I$I$E)! I$I$E)! I$I$E)! $I$%)A*_ I$%)a  I$%)A $%)U $$!a  E) I$I$E)! I$I$E)!  E)  I$I$E)! I$I$E)! I$I$)( DE) I$I$1 I$I$1 @E)` m7fE) I$I$E)!x` I$I$E)! I$I$E)! E)A& I$I$E)! I$I$)( I$I$E)!0 E)  I$I$E)! I$I$)( E)@ E) @(E)A` I$I$E)! I$I$)( X`۶mE) I$ E)! p@E)) !!  KzM %!X ϔH$!% $ !  me)a  dK)e)$! i&E@! 0lۆ$e)E) X20le)E) I$dSe)E)@ YI$e)E)  m۶h@!@l؀me)!P K,e)E) OE)!4 me)E)  I$I1" H e)$! $MR&e)E) \` C)e)E)Smf1!^1!%W~ I$I$1" ۲mۆme)E) I$@e)$!* I$e)E)5W N6Ün1$!zO'e) ^s$1 xW|rf1`۶E)ʯ Y!DJE) I$I%e)$! * I$I$E)! I$I$)(ILE)A$( $H$e)E)IuP aaE)  I$I$e)E)+ I$ e)$! I$I$E)! I$I$E)! mve)!W5.I$IA81!W . Ihx$1!-xW.O'1 !$!!%  I$I$$!! I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)! `E)! I$I$E)!  %) I$I$E)$! I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! @$D%) I$I$E)$! I$I$E)$!ꪂ E)! I$I$E)$! I$I$E)$! $E)aP I$I$E)!* I$I$E)! I$I$E)! E)! E)( E)!z !E)! +h%)( I%)!U  E)!~  IE) @"5.%)P v'$!UW m$!  @۶c'$! Pvb%)WU 'O$%) $I$!z $I$%)U I$! jj JI$E)a }%)_ %) I@4%)!` I"5 E)U I$%)U I$%)UU I$}%)U $IH! I'$!  I$%)W I$$! & E)* E)! H E)* I$I$E)! I$I$E)! I$I$E)! I$I$)( E)b& @E)b@ E) I$I$E)! I$I$E)! ۶mۆeE) I$I$E)! I$I$)( E)@  E) I$I$)( I$I$E)! I$I$E)! E)  E)A@ nm۶E)! Ҷm۶E)!@ ٶmض E) c۶ E)! M(E)Wz ה|J$!  It$!  $!  ۶E)A `C%e)! 䶑+e)a($ ۰m $e)E)  X2`۰%e)E) I$lҶe)E)  $I e)E) > m6mS@! @! I%`e)E)> dI&e)E)/ m۶he)E) ضmېme)E) I%۲me)E)WP1ۨmE)A` vφ1E) @ E)kӶ-YE)` $! iZD! .I1/ Jq?1A `.$Ie)A  !A 4$!b $ $!*  A$!! I$I$$!!  I$I$$!!  ! I$I$$!!? I$I$e) I$I$e) I$I$E)!  $$!Ap %) I$I$E)! $E)P E) @%)Ap  E)/;C1!j. Iq$1!-yW.h$I$f1!WuU !$!!X $! $!A I$I$$!! I$I$$! I$I$e) I$I$E)! I$I$E)! I$I$E)! %)!& H %) $( I$I$E)$! I$I$E)! 4E)br I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)$! 4E) `  E)b %)b I$I$E)!* E) E)!u E)!{- yf1!^U $ E)!^h HI E) `B$!( HE)!]U HE)!W $E) *^* E)!}+ E)!ՠ hE)  E)! XE) E)!ՠ* I$I$E)! I$I$E)! I$I$E)! I$I$E) I$I$E) પ I$I$E)! I$I$E)! `E) W IE) U j%)~ %) IE)W IiE)! I$%)U I$%)UW I$R%)U i$I!* $I"5%)*U  I$%)U_ I$$!z $$!  E) @E)` E)!" I$I$E)! I$I$E)!* I$I$E)! @$E) I$I$1  E)A I$I$)( I$I$E)!  E)b@ E) I$I$)( I$I$1  E)A& I$I$)( I$I$)( I$I$E)!* ЁE)( I$I$)(  E)A $I$e)E)  7l۶mE)$ I$I E)! P@E)z $P$! II$! V  J$!  m.E)!j$e))$m;4e)b` ۖmI6$e)E)+ ؖle)E)  I%le)E)>  I$e)E)? %Ie)%) @! X,e)E) !M6e)E)/ me)E) ۶mۆde)E)( H e)E)X I$M&e)$! cve)a mMj1y?f1 -^z>/f1/ P E)  I$e)!? I$`Be)$! E) . {qömE)  $I$e)E)K n6`E)A  ۰ E) & I$I$E)! @ I$E)!$I$!E) .9&I$1! VUc۶E) pW $!!/ @$! I$I$$!! I$I$$! I$I$1 I$I$$! I$I$E)! I$I$E)!  E)*@ E) 0%) I$I$E)$! I$I$E)! E)6 I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)$! I$I$E)$!* X$%)!4 @ %) I$I$E)! (E)r E)!{ E)!] m۶ME)  ?f1!_ dE) $ AE) IE)!ի  E)!u  E)! E)!U $E)!^W E)! M E) I$I$E)!} E) E)! I$I$E)! I$I$E)! I$I$E)! I$I$E) I$I$E)! I$I$E)! I$I$E)! IE) U? mE) I$I$e)$!( I$I$)( I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$E)! ۖl̶aE)a' I$I$E)!ꪪ @E) M%) I5%)U I$ %)W $M%)  I$%)A y$%)U @LE) %)   I$I$E)! HF@%)A@  E) I$I$1 I$I$1 @E)44 A$I$e)E)m I$I$E)! I$I e)$! I$I$E)! I$I$)( I$I$)( I$I$E)! E) I$I$E)! * I$I$E)!* I$I$)( I$I$)( $I$e)E)U} I $e)$! I$IE)! cۆqE)~ꪸ I$P!I$I$a<  $E) we)! je)A0ђ0Ie)`m ME) $ m$ E)!P )M&e)E)>x $I)e)E)5"e)b@XH,Re) 8#0e)``j@re)  I$I&1" òmme)E)@ ۰mXuE)P @"I%)Ap* HJ%!,l۶me)-.O/61 J'I$1~_ hӤi!+  $!  @$%!  @"I!` $!!* !& $!& I$I$$!!/ h $!8 I$I$e) I$I$$!! ! I!A @$!p I$I$e) $%) zW m۶-!  0$E)A* I$ɐ%e)!  I5N$1!-^Uh뷉e)a &M! $!( $!! I$I$$!! I$I$$!!* I$I$$!!( I$I$$!! $$! I$I$$!! I$I$E)! I$I$E)!  %) & I$I$E)! I$I$E)! I$I$E)! E)p( ) %)  4%) ` I$I$E)! I$I$E)! I$I$E)! I$I$E)! E)!_m۶ce)!/mۏbf1 I$$1!_~ I{$1!U UOf1!+U?1!W E)!x @%)!h E) E) I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$)( I$I$)( I$I$)( I$I$)( 6lcE) I$I$)( I$I e)$! E) I$$e)E)ի A$  e)E)p I$I$)( I$H$E)$! I$@$E)! I$I$)( I$I$e)$! I$I$e)$! I$I$E) I$I$E)! I$I$E)! ۶%[ E)aذ I$I$E)! E)!~ j%)_ I%)U I$%) ɔ$%)U dI%!A~  I$%)  $!  %)A(( I$I$E)!  %)!` m6nE)   I$I$1 I$I$1  E)`` E)  I$I$E)! I$Ie)$!* I$I$)( I$I$E)!* I$I$1 I$I$)( E) I$I$E)!* I$I$1 I$I$E)! I$I$)( I$I$)( II$e)E) - I$@$E)! [m6,E)z@ M&$!W\I$I$Aj I$$!b E) 2@e)@mdJe)m@lE)A p  I$e)E)BJmm[IE) I$e)E)%^ MM6@! 9e)! K$e)E)z9e)< m۶`e)E) I$I$1" I%-e)!P )IE)a  s6o1E)^}j E)DIe)A %snE)/ -mE) @ mXe) I$I$e)$! * I$I$E)! I$I$)(& E) ۖmۆmE) H$$e)E)  ۖlE)! Ӷh۶E)!Wh i1E) I$I$$!!* I$I$$!!* I$I$$!! ( I$I$$!! I$I$$!!/ $! I$I$E)! I$I$E)! (E)!`  E) I$I$E)! I$I$E)! I$I$E)! h%)T I$I$E)! %)A(4 I$I$1 I$I$E)! I$I$E)! I$I$E)! E)!zm۶be)~?A1!U- I$1!W_ I2I$1!1! zuf1!U I$I$E)!ֿ J%)A  E)* ` I$I$E)! I$I$E)! I$I$E)!*( I$I$E)! I$I$E)!( I$I$)( I$I$)( I$I$)( I$I$)( I$I$)( ۶m68E)` I$I$e)E)~ I$I$)( ۶m1E)pp I$I$e)E)U+ Ie)E)+* H$I$e)E)^ I$ $e)E) I$I$E)!8 huE)( ۶ ض-E)@`yܖIE)  I$A$e)E)b H$I$e)E)7 I$I$)( I A$e)E)b I$I$)( I$I$)( I$I$)( I$I$e)E)_ ۶d#7lE)a(4( %)  I$I$E)! I$I$E)!ꪪ PE)^ I%) ɔ$%)U OOH$!U P%)""W F$!  E)(6 I$I$E)! I$I$E)! I$I$1 I$I$1 I$I$1 A$I$e)E)bUU I$I$E)! I$I$E)! $I$e)$!* E)A I$I$)( I$I$)( I$I$E)!* I$I$E)! I$I$E)! I$I$)( $I$e)E) p$AE)< mӶh[E)!~ IۆmE) I$P $! I$! @#$! I$e)! @aېe)$! ɒl`e)E) $e)E) * I$ e)E) *  I%e)E)` ۶mÖ e)E)  H$I$1" X2 ۶me)E) !I6e)E)/@m=e) `  0$! k4!.{1_/ .ya1 $I$e) I!+ $$!!`\ $ A$!!XW RH! 4( I$I$$!!* $$!!* \ J!!$ $!!&  $! ! I$I$$!!/  !@ $! ( I$I$$!! 5$! =4!`Pj!_ rH I!% <! ` 4II%)b t$!A' i$! I$I$$!!  !a I$I$$!! (H!A`  ! $! I$I$e) @$!P I$I$$!! I$I$$!!/ I$I$$!!/ I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! $!!  E)۱mf1 JI$ 1!U/J?f1b jJ ϟ1 . $I$1!W} $ E) I$I$E)!* I$I$E)! I$I$E)! I$I$E)! I$I$E)! E)@ E)  E)b $E)!P I$I$)( @$E) I$I$)( l6E) 6,òmE)@ I$A$E)! ۶mò-E)@ nmE)  I$I$e)E)VV*W )h۶E) I$e)E)U۶mE)(4 I$e)E)U I$e)E) ؆mXE)AР ۶aذfE)< ۲mذmE)@ ضmE) C ٶmmE) 2PE)A@($ ٶmlE) $I$e)E)jw I$I$)( II$e)E)/+Y I$I$1 I$I$1 I$I$)( I$Ie)E)- 6,۾ E) ` H%)a 8 I$I$E)! I$I$E)! E) O@%)U I'%)UW E)U_  I'$! *%)} (E)z I$I$E)!+ I$I$E)! I$I$E)! I$I$1 I$I$1 $I$e)E)UUU I$I$E)!( I$I$E)! I$I$E)!* xm۶mE)b I$I$)( I$I$)( I$I$E)! I$I$E)!* I$I$E)!( I$I$)( I$I$)( 2l۶mE)@ I$AE)! KmlE)ު I& $!bI$I$! I$$!b mnE)   ɖ$e)!/ I$6e)%) I%ۆ$e)E) @I$e)E)* ɐ$[me)E) 6l de)E) 7 $I$1"  ۶me)E) I$mҶe)E)/&`$Ke)A ۶mle)E) X2$۶me)  I$K-e)$! ( [ e)E) Xe)E) > &{E) $`1ɄE) / S $e)!  I$LB0e)$!* I$I$E)!* I$I$1  [ I$e)E)P+ I$I$e)$! m m"E)! @ $A$E) I$A$E)! E)!~z J !a(4  d! $!! I$I$e) $!A& I$I$$!! I$I$$!! I$I$$!! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! %)a( d@%)*J I$I1!w J I$9'1! xJ'f1Z.1 .1z HE)!֫ I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$1 H E)( E)A` E)  E) & I$I$1 *E)! , ۸-۶E)` I$I$E)!  HE)( I$I$)( $HE)Ap( I$$e)$!* mӶ-ڶe)!z** I$e)E)V !I$e)!A۶mE) I$e)E)U I$e)E)* ۶m̰lE)  6lmE) [qmE)  E)j $ I$ E)!@ ۶mܐmE) I$H$e)E)5 E)@ I$I$E)$! II$e)E)U I I$e)E)V]_ I$ $e)E)WU I$I$)( I$I$)( I$I$e)E)[X ۶aۺ-E)` @E)A ۆm۶lE) I$I$)( I$I$E)$! I$I$E)  E)Bj %)a j @$!ހ  I %)j` $! I$IE)!7 I$I$E)!+ <@E)z* I$I$E)! I$I$)( I$I$1 I$I$1 I$I$E)!" I$I$E)!* I$I$e)$!* I$I$E)!* I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)!*  E)@ iѶm۶E)!  I$e)E)+ ۲mۆmE)h ÍۆmE)a I$P@!Aj I$! DE)  ېlI$e)!/ lJ$e)E) M˰ME) 20e)A` I$$e)$! " aI$e)E)5^ ۶m$e)!@ @uE) X&! X6I %)?ɝ.@1- .>$1`^ jN4 !+  $!+  `$! Ld!d I$I$$!! I$I$$!! H$!!p% $!!- I$I$$!! $!!@ $!!% I$I$$!! I$I$$!! ( @!@  H$! mk.!@$!pX!ؒd!2 j i!a  !* I$I$$!! I$I$$!! I$I$$!!  A"!@ $ ! $!!  I$I$$!! I$I$$!! $!!`W   P!  I$I$$!! I$I$$!! I$I$$!! I$I$$!!* 2$!!V `$! hD! H %)a6.* I$If1!W.f1*J ILI$1!-^J $I$1!_ I$I$E)!^ I$I$E)! I$I$E)! I$I$E)$!* I$I$E)$!* DE) I$I$1 I$I$1 I$I$1  E)a I$I$E)!(( E)!(4(  E)@ PE)  I$I$E)! I$I$E)! I$I$E)!* I$I$1 I$I$)(  E) p ۶ 2,E)A@ mۢmE)! I$Ie)E)W// I$I$e)E)* Ilېde)E) * Ie)E) Im-e)E) I$$e)E)ꀪ I$I e)E)﫪 @E)! I$I$e)E)U q6jE)i@vE)) h,E) /e)  I$$Se)$! I$I$E)!* I$I$1 I$e)E)K/ ۶mضdE)a4 I$Ie)E)% I$I$1 H$Ie)E)Tz? I$I$E)! I$I$E)! $!!` @@"!` @$! I$I$$!!/ I$I$$!!* I$I$$!! I$I$$!! $$!  @$!!*.5 " $!A ٖm۶ e)a  I$,1!-J1 J 9A'I$1! W. p$I$1!U I$I$E)!׫* I$I$E)! I$I$E)! I$I$E)$! I$I$1 E) I$I$1 I$I$1  E)A@ E) I$I$E)$! E)! 6۶%E) I$I$E)$!  A$I$e)$! I$I$E)! I$I$1 I$I$1 I$I$E)! m۶mE)!4 ۶mcdE)b8 I$I$)( I$A e)E) I$ $e)E)  Imme)E) Ie)E) I $e)E) I$@$e)E) I$I$e)$! E) I$I$)( Mۢ-ڶE)!4 I$I$E)! I$I$1 $I$e)E) I$H$e)E)+ $I$e)E)Z II$E)! I$e)E) * I$He)E)~(* I$H$e)E)W㨸 I$Ie)E)w* I$Ie)E)U/ $I$e)E)U I$I$e)E)Ww I$ $E)! I$Ie)E)>z+ $I e)E) I$I$1 I$I$)( @E)  I$I$E)$! I$I$E)! I$I$E)! ۰mc8fE)! I$1!*. I:'Ć1$!^ I$p$1! I$I$E)!+ I$I$E)! I$I$E)!/ I$I$)( I$I$)( I$I$)( I$I$E)! I$I$E)!* I$I$E)! I$I$)( I$I$)( I$I$E)! ۶mXeE)A I$I$E)! I$I$)( I$I$)( cmmE)( I$X-e)! P`E)zꨀ I$h!  I$!/ ۰mܖpE)* I$e)!  I,6e)E) XudE) ' =o=;e)!X 0E)!|WUU mM2!܏}e)7 vap:e) `]ۆ1 mt-P!/  $$! $I$!* !@d!d I$I$e) $$!!pV @$!!ܵ I$I$$!! * I$I$$!! $!!*p $!!5- I$I$$!!* I$I$$!!*  $!!z k$! AP>!_P_6M$ v *iӄ$H!}ׯ l$!A  i! 9! I$I$$!!* $!! x xD !A( @$!!^% I$I$$!! ( I$I$$!!* I$I$$!!( H$!!' $!!x/ $!! I$I$$!! I$I$$!!પ 0! @P%!Aи $I! $ ZdW!* @E)!W55  E)B$aIe) H$I$e)! H%)! (  E) ` I$I$E)!* I$I$E)$!* 8E)! & I$I$E)$! I$I$E)$! I$I$E)$! @ D%) I$I$E)! I$I$E)! E) I$I$E)! I$I$E)! I$I$1 I$I$E)! ކm۲E) 0E) I$I$)( I$I$)( E)!؀ I$I$E)! I$I$E)! ۖl6lE)A I$A$e)E)U I$$e)$! I$ $e)E) I$$e)E) I$I$)( I$ $e)E) I$$e)E) I$I$)( I$A$E)! I$A$e)E)xU mm۶E)!p I$H$e)E) I$I$E)! I$I$e)E)/^ H$A e)E)bB $I$e)E) H$I$e)E)} H$I$E)$! H$A$e)E)蠢 IA$e)E)w, I$I$)( I$I$e)E)U I$I$e)E)_ H I$e)E)X]z I$I$E)! I$H$e)E)﫨 I$Ie)E): I$I$1 I$I$)(  E)@ l۶mE) I$I$E)! I$I$E)!  %)b@D!e) Nm$f1$! . I$&1$!U~ I$I$E)! I$I$E)! I$I$E)! I$I$)( I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)!* I$I$)( I$I$)( I$I$)( @E)@ E)a I$I$E)! I$I$)( ò۶mE)@ m`e)! mۆmE)j I$! $I$!  E)* !I$e)! / X` e)E) B" &e)A XM6He)A $E)Ap ۖaI$e)E)5^ ۲m`e)E) I$1"۠m(-E)@$@me) I$ۂme)E)* @$I$e)E)`* I$K$e)E)%\x @[)e)E)5CۛE) nkE)/ EZE)-vnE) / lB2!e)$! I$I$e)$! * I$I$E)!a۶mE)! I$A e)E)Xb II$e)E)+ I$I$e)E) I I$e)E)ZK I$I$e)!ꪠ @E)!W I$I$$!! I$I$$!!* I$I$$!!* $! HIL!!& $I! ۴!* // E)! @%)A* e)!x E)!\ P %)! E)! I$I$E)$!*   E)a@ E) I$I$E)$! I$I$E)$! I$I$E)$!*  %)A I$I$E)!" I$I$E)! `E)! I$I$E)! I$I$E)! I$I$1 @E) @E) I$I$)( I$I$)( I$I$)( E) ' I$I$)( 60þ E)` I$I$E)! I$e)$! I$@$e)$! I$$e)E) I$$e)E) I$I$)( I$$e)E) I$@$e)E) I$I$E)! IH$E)$! I$I$E)! I$H$E)$! I$I$E)!* I$I$E)!( I$I$E)! ۰m۲E)` @۶i۶E)! E)pH$ɔE)(4 I$ $E)! I$@$e)$! ЄE)b$ I$I$E)! ذm۲mE)b@ mٶmE) I I$e)E)^ I$I$)( ۰[mE)P H$I$e)E)U I$I$)( I$I$1 I$I$e)E)+ I$I$E)!,, c۶aE)!p I$I$E)!۶1mE)A` I$I$E)!  %)a@Ҷ 'gE)+ I&%e)!+ I$IB0e)! E)* I$I$E)!/ I$I$E)! I$I$E)! . I$I$1 ض -E) j ۶mü-E)B E) I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$e)E)-U [mɐ$e)E)` I$@e)! z(E)^ꪠ I$K,! I$! mnE) \&E)( LE)A =I!pX_qAe)5 '6f1`~ NIE)x ٴ!+  `$! L!!  I$I$d!d  @!@@ H ! e) I$I$$!! $!!*z $I$!!`\խ $!!% I$I$$!! I$I$$!!  `@&! 6r=&!l$!^p$IH/I@ * 4I4 ! i!+ I$I$$!!+  ! @! H$!!xW-  PD!  I$I$$!! @$$!!ZZ 0$!!^ @! H$!!- I$I$$!! I$I$$!!* I$I$$!! $$! 5m6!`!'m!J$ !( ۴M !**?/ I$I$$!!/ E)! I$I$E)! @E)*@ E)A @%)@ E) I$I$1 I$I$E)!+" I$I$E)! I$I$E)!( I$I$E)$!* I$I$E)!* I$I$1 I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)! DE) I$I$E)!* I$I$E)! I$I$E)! I$I$E)!* I$I$E)! HE)<4 I$I$)( I$I$E)! E)4( I$I$)( @E)@  E)A I$I$)( I I$e)E)_ I$I$E)! I$A$E)!J nmE)  I$I$E)! I$I$E)! I$I$1 I$I$E)!. mFnE)A I$I$E)! ٰ ۶E)  I$I$E)$! I$ $E)! ,E)p ضmٶmE)  $Ie)E)/> m6nE)A I$I$1 I$I$e)E)U I$I$E)! mٶmE) I I$e)E)U I$H$e)E) I$I e)E) A$I$E)! I$I$)( m۰mE)! I$ $E)! 9%)A I$I$E)!+ m 4E)! e)! I$de)! ۶mۆ1e)*` E)!* I$I$E)!/ I$I$E)! I$I$1 m۶eE) ۶mlE) E)b I$I$E)!* I$I$1 I$I$)( I$I$E)!* I$I$E)!* I$I$E)! I$I$1 I$e)E) 5_ I%ؒme)! mۆmE)z I$@! DI$$!b ۰mߖpE) *C$Ee)` * <E) $ K%I%e)E)* II$e)E)j* c6`E)8I E) ۲ ۶me)! A e)E) I%e)E)/p [mÖ`e)E)  I$e)E) I$I$)( !I$e)E) 5W MB&`[e)!` mE)/ k E)/  tE) / @Ӓ e)! ۶m,E)@ E)  I$I$1 6lE)!( $I$e)E) I$Ie)E) I I$e)%)* I$I$E)!⊀  E)!p H$! [<2!@c!²@R j H!! 0!  @$!! I$I$E)! I$I$E)! D@%)A I$I$E)$! H%) I$I$E)$! I$I$E)$!" I$I$E)! I$I$E)! I$I$E)$! I$I$E)$!* I$I$E)!/ I$I$1 I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)!* I$I$E)!* E) I$I$E)$! I$I$E)!" I$I$E)!* I$I$E)! E)!jJ E)b I$I$E)! möcE)! @  E) I$I$)( @E) I$I$)( I$I$)( I$I$E)$! I$I$E)$!* @$E)!pp ۰m۲E)@ ۶amE)+ I$I$E)!( I$I$E)! I$ $e)$! I$I$)( I$I$)( I$I$)( E)@ I$I$E)! m۶cE)! @ mٶmE)  k6fE)A8 H I$e)E)/U I$@$e)E) I$H e)E) I$I$1 I$I$1 I$I$1 I$H$e)E) $I e)E) U{ HI$e)E)UZ E)0 I$H$e)E)| A$I$e)E)b I$I$)( I$I$E) I$I$E)! I$I$E)! $I$e)!  LI$e)!/ I$ e)! I$I$e)! I$I$E)!/ I$I$E)!/  E) I$I$E)! I$I$)( I$I$E)!* I$I$)( I$I$E)! $,IE) I$I$E)! I$I$E)! E)!@B @ E)  ۲-E)A@{e) o۳9e)!@ O%! ID A!/? @$!@ \ *e) 5ue)`\ M4 ! )P!  &I! $$P@!A` d!d $d!d @„!E) I$I$d!d I$I$$!!* d!d  I E) e) I$I$$!!/ 5$! m5! O' A B$I$Iɕ *  9UI$ !/ M!* @$$!!)X_ @@d!d  d!d $d!d `@!A @  !A I$I$$!!  $$!!V $ $!!W $!!  ! I$I$e) 0$! H$! жm8:!h$!Wh'I!!ڪM)[!WU[! 1m۶! I$!* I$I$E)! I$I$E)! %)@ 0%) E) %) I$I$E)$! I$I$E)! @E) I$I$1 I$I$1 I$I$1  E) I$I$E)! XE)A I$I$E)!" I$I$E)$!( I$I$E)! @$%)A I$I$1 I$I$1 @E) $E)X I$I$E)!  E)@ E) I$I$E)! ۶m۲E)@ E) I$I$)( ۶mۆeE)ø%۶ME)` $I$e)$! $Ie)E)U H$I$e)E) E) I$I$E)! I$I$)( I$I$)( ö ̶lE)& I$I$)( I$I$E)! I$I$e)$! I$I$)( I$I$)( I$I$)( I$I$)( E). I$I$E)! m mE)(4 ۰m۲-E)A@ 6mE) I$$e)E)U I$Ie)E) I$I$1 I$I$1 I$I$1 I$A$e)E)]c I$Ie)E)W+ @I$e)E)-U 86lE)!@ ۖmݶE) $I$e)E) I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)!/e) `  I&!$e)!/ I$I,e)! I$I$E)! I$I$E)!+ hE)  E)  I$I$1 I$I$E)! I$I$)( I$I$E)!* ۶eaE)0 I$I$)( I$I$e)$! I$I$E)!* E),$, I$I$16AlE) I$ے E)! Pg%)z I$z"(! I$! MnE)  @C)e)   I$`e)%) $Ae)E) * I$A$E)$! C$I$E)! ٖmle)E) e)E) I$[-e)E)'` lɐde)$!  I$[-e)E) ۆe6`E) dI$e)E) 5WZ l&%e)$! kۆmE) <`qE)' E) -2i[E)A@!I)e)! E)! - I$I$)( I I$e)E)Z* $I$E)!Zu6IE)  $e)E)/Z mӶh۶E)!B @ E)X`I$I ɛl!vl ! i۶m7!*  E)! I$I$1 I$I$E)! PE)  E)!B E) *E)A  I$I$E)!* I$I$E)$! E) I$I$1 I$I$1 E)A` E)! I$I$E)! E)A I$I$E)! I$I$E)$! I$I$E)!* E) & I$I$1 I$I$1  E) E)' I$I$1 E) I$I$E)! I$I$E)! ۶m[eE)a I$I$e)$! I$I$)( ۰mnE) x6`E)$ $I$e)E)U $I$e)E) I$I$1 ۶mnE) I$I$E)! I$I$)( I$1!ժ . O$O1!~. I$I҆1! mN E)! ضm'E)!\ m"mE)!@[ ۖmmE)  I$I$E)!( I$I$)( I$I$)( I$I$)( E)a4 I$I$1 I$I e)E){ I$I$E)! I$I$E)!* I$I$E)! II$e)$!* I$$e)%) I$IE)! I$e)E) 6`E) ($ I$I$e)E)ꪢ I$I$)( I$I$)( I$ $e)E) I$I e)E)ꪊ I$I$)( I$I$)( @ E) I$H$E)! I$I$E)! !I$e)!  I$$e)!/ I$I,e)! $! @ E)!  E)@ E)!,$ I$I$1 I$I$E)! I$I$E)!* I$I$E)! ۶mbE) I$I$E)! I$I$E)!* E) I$I$1cmE)!@ IXE)p m8;! K> !_-  0E)% %MvE)b\ !gn0!  $! `$I!* !H$I!  d!d HE)  Ad!d I$I$d!d 0d!d ,$!!@ ! !! $!!/x hҤ!$A>!_M&I$I$/ yL A*6, &I !   ! $d!d  d!d ж!! !& I$I$d!d I$I$$!!.?+ $$!! W $ $!!`V5 $!!5 I$I$$!! I$I$e) l! $I$! $ID2!HM$!d$I*I'$!U oEI.!!jJ $I!  I$! I$I$$! * P%) ( I$I$1 I$I$E)!  E)J %) H%)b6 I$I$1 I$I$1 I$I$1 I$I$E)$! I$I$E)! I$I$E)!* I$I$E)! I$I$E)$! I$I$E)!j* )E)  I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! @E)p I$IE)!/  I$If1!J I$s1E)UJ I$I1$!ժ. I$&ֆ1E)u e I$$1!e I$$1!JI1J I$1!J I$1$!UJ I$$1!Ue I$$1!eO1AJ I$$1$!. I$1$! $`[e)!W. y$R1$!j. I$I1! f1!_ II$E)! E)! ۶dmE)A 4( I$I$E)!* I$I$)( I$I$)( I$I$)( (E)` I$I$E)  I$Ie)E) I$I$)( I$I$E)!* I$I$)( I$I$E)! I$I$e)$! I$HE)! I$I$E)!  <0E)` I$I E)$! I$I$)( I$I$)( I$I$)( I$@e)E) - I$I$e)E) I$I$)( E)@ ۶mmE)  I$I$E)! ɐ$I$E)! H`I$e)! I$Xe)! I$I$E)!/  E)b I$I$E)! (@ E)`$ I$I$E)! I$I$E)! I$I$E)!* I$I$)( E)A I$I$)( I$I$E)!*  E)! h E)  ɐ$I$e)E) U{lME)\ٶm&iE) K=E)z I$I&!/  @)DE)*$C)GE)  L6$e)E) K,I%e)E)* @ I$e)E)`* $H e)E) X ۆmٖle)E) I$I$1" I$e)E)W` lI$e)E)  Kele)E)  ò-lE)@m۲E)@HpRe)!C E)x 8`E)믞  X6E)/-ڪmE) mE) , I$I$E)  ( I$I$)(C۴mE)` $H$E)! ( [maE) I$I$)( I$H$e)!ꨠ Hxt! $ I!* !$! I$I$E)! %)! I$I$1 I$I$E)! @$%)A E)h E)a I$I$1 I$I$1 I$I$1 I$I$E)$!" I$I$E)! I$I$E)! I$I$E)$! I$I$E)$!* @ E) p@  0E),6 I$I$E)$! I$I$E)$! I$I$E)!* I$I$E)!* I$I$E)! *( I$I$E)!* . I$I$E)! E)a& I$I e)$! I$I f1!J I$1$!^J I$1$!*J I$&1E)__e I$$1!e'1zzJ1J I$1$!WJ I$1$!UJ I$$1!Ue I$Ð$1!e1AJ I$ $1$! I$@߆1!~ I$I$E)!- I$I$E)!* I$I$E)! /0۶-E)@ f1!^ e)! m(,ܲmE)a@j E)* mhE)!^ I$I$E)!  E)!* +۶E)| pE)* E)a( I$I$)( I$I$)( I$I$)( I$I$1 I$I$E)! I$I$)( I$e)$!*  I2 I$e)$!( E) I$I$1  E)@ E)!= I$I$)( HI$e)E) U~ I$$E)! mۖaE) I$Ie)E). E)A,$ I$I$E)! I$I$E)!@dBE)!pmae)!p  I$H e)! E)!K^ E) I$I$1 I$I$)( I$I$1 I$I$E)! m۶mE) I$I$1 I$I$)( @ E) E)! ` HIE) $Z!b\@ ~$4!{ ЫmV!ֿ   !  0`$! II$!* $I"5!!` IH!a4. $ ! !@d!d  Id!d Ä!( H!E) I d!d $ d!d 5! M5!(5I$ aH$IpIl@`/ !M ! 4H!/ $H$d!d 6l۶!< $A $! `!!* !  @! TI! & Ad!d !@d!d Hd!d Hd!d &! $I$!@@&!>I$!bI$I!I9 m۶! I!* $!!* $!! I$I$E)! I$I$E)! I$I$E)! I$I$E)!꿫 I$I$1 I$I$1 I$I$E)! I$I$E)$!* I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)$! I$I$E)$!* %)  I$I$E)$!* I$I$E)$! *  E) E). 6E) E) IE)!U H%)A E)!U E)! I$I$E)! /$,IE)A&  Ʉ$IE)b  Ò$I$E)! I$I$E)! I$I$E)! $%)` I$I$E)!+ E) I$I$E)!* I$I$E)! I$I$E)!@ E) E)*4 I E) 7( I$I$E)!z E)!* I$I$E)! I$I$E)! :m۶e)!^*m۴f1 ؒ$I$e)!/me)!ת  E)ǧ ݖ6rE) E)! }* @E)!_ ۲ ۶mE)`*  E)b&, (E) ` Em۶E)!" I$I$1 I$I$)( I$I$1 I$I$)( I$I$E)! $I$e)$! @I$e)E)PU]ۆeڶmE) I$I$e)E) I$Ie)E)* ۶m۰lE) I$I$)( $I$e)E)W I$ $e)E) u ۶aضdE)b H$I$e)E)h ۶m30E)`` I$I$E)! I$I$E)! E)!-oYJ E)  e)!  I$I$E)!p E)$* I$I$E)! I$I$1 I$I$1 I$I$)( cm6lE) I$I$E)! I$I$)( E)@ ٶmضmE) E)A I$I$1 I$e)E)%] K%Ö e)! mۆmE)z I$@! I$!a ^lnE)  DC)e)! IҤ`e)%)( Ae)E) *" I$He)E)^*4A[%e)A ˶d,e)! e)E)  dK$e)$! kHjE) I e)E)* I$I e)E)V\j I$e)E)% ːe)A 0E)z WVA%)%$AR%E) - H$ْle)! I$I$E)$! * I$I$)( $I$e)E)K I$H$E)!( I$I$1 E) ˶öaE) I$I$E)! I$I$E)! I$I$E)! I$I$E)!꿪 I$I$E)! I$I$E)! I$I$E)! I$I$E)$!* I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$E)$!* I$I$E)$!* I$I$E)$! E)a I$I$E)$! * E)`  E)h hE) &E) ؖnE)( ,R#%)!` IE)* E)!U I$I$E)!  E)A@$IE)o۶mE)A) H$I$E)! I$I$E)! I$I$E)! %) 4 I$I$E)!* E) I$I$E)! I$I$E)! @DE) E)!@ @E)!` ۶amE)  @E)!W I$I$E)!  E)@ E)  E)!@ E)  E)@ E) I$I$E)! I$I$E)!k* E)!} H E) E)!   E)!WU $&$! BE)! _ IE)!  $ E)@ RE)A:( Xe۶mE)  I$I$e)E)U I$I$)( I$I$e)E)Z I$A$e)$! $I$e)$!* II$E)$! I$E)! I$I$e)E) II$e)E)* I$I$E)! )жmE)! @ I I$E)! I$@e)E)/ I$I$)( I$I$)( I$I$E) hE) I$I$e)!/ e)!/_ %IE) dE)a I$I$E)!+ I$I$E)! E) A$I$e)E)c]u I$I$E)!* I$I$E)! I$I$E)! l6E) (R&!~_cH{'>b\HaB$  bZ'% !+ I!/  &I$! I $!  IP"%! P Z*EtI!A  $I$%! $I!$ $I E) &L!(*  IRE! @@d!d  JD!A&$ Z!JDj& A,6$I$I$. J$I խ m@!/ @BE) `2!E) $IB&! Hm0A!*  AI! Id!d  ! K!  Ld!d d!d Hd!d &! m۶-!@'$!b'I$!I$u *IZI! ٶm0!* $!- I$I$$!! $!, I$I$$!! I$I$$!! I$I$$!!+ I$I$$!!  $! E)** I$I$1 I$I$E)! I$I$E)! I$I$E)! KE)! I$I$E)! I$I$1 I$I$E)$!* x%)( I$I$E)!*~ 5E) $E)U O%)֪ d'$!_ k>%) ` E) E)!ժ E) I$I$E)! @hE)p I$I$E)! E)A  %)  I$I$E)$! I$I$E)$! I$I$E)$!  E)@ E) I$I$E)$! PE)   E)!*p  (E)`  DE) I$I$1 I$I$E)! I$I$E)!* I$I$E)!( I$I$E)! I$I$E)! E)$ I$I$E)$!*(  E)  I$I$E)$!* E)A(4 I$I$E)! I$I$E)! E)! @%)A E)!*U @E)!zW H$ %)!j $E)!UU IE)!/U $E) +W ("%)!$Ȃ  E)@ E)b I$I$)( I$I$e)E) I$I$E)! I$I$E)! @I$e)E)-U m-жE)!j I$I e)E) I$I$1 I$I$e)E)z @E)! @m۴E)!& I$$e)E) I$I$e)E) I$I$)( I$I$)( E)A` PE)) I$e)!$ SE)` ۶mۆ1E)A ` E)* I$I$E)! @E) I$I$e)E)/_ I$I$1 I$I$e)$! I$I$E)! I$I$)( mZm۶E) I$I$E)! I$I$E)! I$I$1 ےaI$e)E)% I$@e)! j($! ؀ I$M%!/  D$! ' %I$e)!/ M9v1E) I%I%e)E)* H $e)E)X  ْI%e)E)%p ٲ$ۖ e)E)XuIE) I$A e)E)\b Klɖe)E) 7 ْ$Yee)E) I$$e)E)^r )I$e)E)T K%e) }7[mE) U6K!&ï$A/E) % X2,ɐe)! HE)$( I$I$)( @`E)` I$I$E)! @ Ae)E)% I$I$e)E)? I$A e)$!* I$I$E)! " $!!@ PE) E)! I$I$E)! I$I$E)! I$I$E)! @E)` /%)!  I$I$1 I$I$1 I$I$E)$!  %) 0E)!_ 4'E)_ @j6E)~ I$! %)U mDHE)A E)* I$I$E)! E)! I$I$E)! E)b&, (E)` " %) B E) I$I$E)!* I$I$E)$!* I$I$E)$!  DE)b E)! I$I$E)$!  E)a E)! E)a( E) I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$E)$! I$I$E)! I$I$E)!+ dE)A I$I$E)! I$I$E)$! $E)bp %) I$I$E)!  E)@ E)a I$I$E)$! I$I$E)! I$I$E)! E) $ a2E)!V @E)!wU^ !$ 0$!+  PE)a  $E)! U E)  I$I$E)! I$I$e)E)W I$I$E) E)b I$I$)( I$I$)( I$I$e)E)W I$He)E)) ۲m۰aE)@ m۶mE) I$I$)( AI$e)E)-Wz I$ $e)E)ﮋ I$I$e)E)~ I$I$)(  E) I$I$E)! E)!-jL$IE) !I IBE) I$I$E)!+ I$I$E)! I$I$)( I$I$1 I I$E)! h-E) R&!_M0d$N @A oR@!]  !+ 2 !讫I$I$! IE)  @&L! * I !** @! K$I!$ `„I!(* @ ! dH$!  -! +k-! 6I$ H$I+I/ iv4!  JG!A( $I$E)a $  E) !H&I!* IH&!* IE) $A d!d ($ !A@@  I!  $I! ( H$ E) 6! 6M6! @P$$!bP$I$!bI$I! Y * i۶0! DP! ( I$I$$!! I$I$$!!  I$I$$!! H !,  ! I$I$$!!  $!A I$I$e) I$I$$!! @ !a I$I$%)!  %)!_ I$I$E)! @$%) I$I$E)!  E)!~ E)u @E)_U 9 !~ R$! #i%)U* E)( I$I$E)! I$I$E)!* I$I$E)! I$I$E)!ꫪ I$I$1 I$I$E)! I$I$1 I$I$E)! I$I$E)! E) I$I$E)! I$I$E)! I$I$E)! I$I$E)!  E)@ ,%)A` I$I$E)!  E)a&. @@E)ap E)! @E)ڪ I$I$E)! (E)b @D@E)b I$I$E)$!ꪊ I$I$E)! I$I$E)! I$I$E)!  E)@ E)b I$I$E)$! I$I$E)!‚ A%)  I$I$E)!* I$I$E)!  E) & I$I$E)$! I$I$E)! I$I$E)! !_C'I$I$IA* I$!b O$A!/ !H0H!* $I! I @$!* H$ $!  I$! ( R"B"$! DJ$I!4< жMH!* $$E) @E) ۶m5! k!$Ib$!z'I$ zWI$I ə !* i۶0! 0! I$I$$!!*  ! , I$I$$!! I$I$$!! @H!`  $! $!b, $!! !  !@ FP$!  `$!@ ! @$!  "5$!!`  Q$E)  IE) Rm5 !x} IJ! !/ I$I$$!! I$I$$!! I$I$$!!* I$I$$!!* I$I$$!! I$I$$!! $!! I$I$E)! HE)* I$I$E)!   E)J %) I$I$E)! H%)b I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$!* I$I$E)$! I$I$E)$! E) I$I$E)$! D@E)b I$I$1 I$I$1 I$I$1 I$I$1 E)A( I$I$1 <E)` I$I$E)$! E)!BJ E)A  E)  I$I$1 I$I$E)$! PE) I$I$E)!j * I$I$E)!  E)A' E)! I$I$E)!( I$I$E)$! E)` I$I$E)!* I$I$E)!* I$I$E)! E)!x E) I$E) UU~ ۰-`!*ꫀ brE)  JE) (& I$I$E)!- I$I$)( I$I$e)E)+U I$I$)( I$I$)( ɐ$I$e)E) U^ I I$e)E)5W I$H$E)! I$I$1 I$I$1 I$I$)( -3mE)@`  E) I$I$1 I$I$)( I$I$E)! ۶mfe) lvle)!-+1 E)ah LE) I$I$E)!/ I$I$)( I$I$)(  E)A I$I$E)! I$I$E)!* I$I$)( I$I$)( E)$( I$I$E)! I$I$1 I$e)E)% I$@ e)! X(E)Zꪨ DO%! ? ۰m\E)a (ڻ e)! / I&K&e)! $@E)! I$e)E)x  ,ɖ$e)E)TIj*e) `E) I$e)E)-X Y$le)E) I$e)E)j  I$I$e)$! *(dNE) uhE)ࠀ ZV)e$! @!0SE)+ Òa e)! I$L&e)!/ I$I$E)! I$I$e)E)/ I$A e)$!* I$I$)( I$I$E)!  `E)@ 0E)a @d! I$I$$!! l!, H$$! ( @K$E)W IT! k !!X [ $!+ !$! I$I$$!!/ I$I$$!! I$I$$!! I$I$$!! I$I$$!! $!!j $!! E)!} E) HE)r $%) I$I$E)! E)!j E) I$I$E)$! I$I$E)$!* I$I$E)$! I$I$E)$! I$I$E)$! (E)b` I$I$E)!**( E)!j( :E) I$I$1 I$I$1 I$I$1 I$I$E)! E)  I$I$1 $E)b Р  E)@ E)  I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$1 I$I$1 E) @E)@ E) I$I$E)$!"* *$! H E) I$I$E)! * I$I$E)!" I$I$E)$!* I$I$1 I$I$E)$!  E) @ :E)a I E) Ux* $E) mm$!! 0 gE) )!E)A j E) I$I$)( I$I$)( I$I$)( 1n۶mE)b$( H$I$e)E)5U I$He)E) I I$e)E)Z I$I$E)! mضmE)b I$I$e)E)- I$I$e)E) I$I$)( I$I$E)! I$I$E)! uѤm۶e)!7 m]n['E)!\W P&Ҫ AИX&$ @A$IA*I$VK/!Y  ! I#%!ah !(! I $!*I$I$!  I'! I E)a 0 I!ਪ @$! I$AE)a H*]$I! -K4!0H$H$I$?IID!*(%K,U!!bJ  H!a  D$I$!H !8 $C&I!* I @$!* $I$$!`  $&!  $J"$ ` I$I!!  H ! I E) H`!HJ.&!8&I$^UI$I WU+I + mӦmQ!*  @!  ! I$I$$!! I$I$$!! IH! $!! I$I$$!!(* I$I$$!!  $! I$I$$!!   %!a ` !A !@ $! $5!x (ғ$!@h$I$ A I$IZ ! I4! j T!A  !d!d  $!!j+ $!! I$I$$!! I$I$$!! $!!* I$!! I$I$$!! H$!! I$I$$!! I$I$e) I$I$E)!  %) I$I$E)!ꪪ E)! I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$E)! DE)  E) I$I$E)! $E)` I$I$E)! $E) I$I$E)$!( I$I$E)$! I$I$E)$! I$I$E)!  E)J E)a E) I$I$E)$! I$I$E)! I$I$E)!* I$I$E)$! I$I$1 I$I$1 @E) I$I$1 E) I$I$E)$!(( @HE)(P  %)A  I$I$E)! I$I$E)! I$I$E)$!** I$I$1 I$I$E)$! I$I$E)$!* @E)b4 HE)!W #1E)~ nj (E) ` 0 mE)+ JVE)A8 E) I$I$)( I$I$)( I$I$)( @HE)p AI$e)E) U_ I$e)E)% I$I$e)E) I$I$e)E) {mmE) @I$e)E) ^ I$@e)E) I$I$1 I$I$E)!8 I$I$E)!  E)!_ E6E)! _ 2E)`   E) I$I$E)! I$I$1 I$I$1 I$I$E)! I$I$E)! ( I$I$E)!  I$I$)( @ 4E)p E) ($ I$I$1 dI$e)E)%_ K%`e)!$C$ E)j ɠP @!/  `mG!a:SmܰmE) pa[ f1 K$ɂ$e)E)( H$ $e)E)Xb b7e)!@ (m4he) @e)E)  K%e)E)\p I,Ö`e)E) 2,@e)`a۶mE)!  `R2 4e)$! CIE)p I! 0E) ' `I$e)$!  I$K%E)!* I$I$E)! I$I$)( I$I$e)E)\Zo I$I$)( I$I$)( I$I e)$!* I$I$E)!p &M$!AГ$I! I$y% !UU IF!* i;! I$I$e) @$!!޿ I$I$$!!/ I$I$$!! $$!!_ @$!!^ $!!' I$I$$!! $!! I$I$$!! I$I$e) E)(jj 0E) * @E)!ڪ I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!ꪠ %)b`  E)!( I$I$E)! E)$ I$I$E)! E) I$I$E)$! I$I$E)$!ꀠ I$I$E)!廒 I$I$E)! I$I$E)$! I$I$E)!  E)* I$I$E)$!" I$I$E)$!* E)!@ E) I$I$E)! I$I$E)$!* I$I$E)! I$I$E)!* I$I$E)!* I$I$E)$! I$I$E)$! I$I$1 I$I$1 I$I$E)$! I$I$E)!( I$I$E)! I$I$E)! E)!j E) E) I$I$E)$! PE) `E)~ tB E)_ p%) `E) E)! - I$I$)( E)! I$I$)( I$I$)( I$e)E) _ I$@e)E) I$I$1 I$I$1 I$I$e)E)%~ I$I$e)E)-U I$I$e)E) I$I$)( h۶m6E) ` iҢ9$!z~L1bI$I$-əI * IfO$A! $#!Ȗ!I$I$!!ꪪI$I$!I$I$! b(A$I! @$I$!I$I$!  $I!  1!  Ь.!%J$I$I? I   |R !׿/ @$I!B $!I$I$! B$$ !Ap I E) @P"%!Ap $ $ !* IH!  $I"I!J @ $! $R$2!9N$N$IIT @!խ qA! i!+ I$I$d!d I$I$$!!* $!!(  !b I$I$$!!/* I$I$$!! I$I$$!!* @$!!X $!! !!4 I$I$$!!* h H! &! H$! &I$!M$I! I|$! $ H!'  d!d I$I$$!! I$I$$!!/ I$I$$!! $!! (!b@ ! I$!! I$I$$!! Є$$! I$I$$!! I$I$e) I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$! I$I$E)! I$I$E)! $@E)!ZZ I$I$E)! I$I$E)! I$I$E)! E)! I$I$E)! @E) * E) & I$I$E)! E)` I$I$E)! PE)* I$I$E)! )E)! I$I$E)! I$I$E)! I$I$E)$! I$I$1 I$I$E)!* E)! I$I$E)$! I$I$E)$! E)( I$I$E)! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)$! I$I$1 I$I$E)$!* I$I$E)$! I$I$E)! I$I$E)! * I$I$E)$!* E)4  E)@ E)!! E)@ E) 1E) @ۋ %) 0;E)+} E) I$I$1 @E) I$I$)( I$I$)( I$e)E) 5Uz I$e)E)5 I$I$e)E) I$I$1 I$I$)( AI$e)E) ^ I$@ e)E) I$I$)( I$I$1 ۶m۶E) $  0E)!_~ mIQE)!X%vle)!\  "E)Jj E)  E)` I$I$E)! I$I$E)!* I$I$E)! * m۶m"E)!@ E) E)! 6 I$I$E)! I$I$e)E)5 ` e)E) 5 I$H%e)! j,! i$! / I$e)!/ kޚ1$!e)!p @Ie)E) +* K%e)E)7p Ymۖ!e)E)" e)E) I$[-e)E)%pioe)O 8lmE)A I$@$E)! a e)! $C2# E)h@ YjlE)  ^%)A* I$E)!  I$K2$E)!* E)  I$I$)( I$I e)$!* I$I$E)!  E) @ ܖmömE) @@E)X  4 !+ I$I$e) I$I$$!!/ I$I$$!! $!!*z $!!+~ H! $!.( $!!  $!!@ !% I$I$e) I$I$$!! I$I$$!! @$!! I$I$$!! I$I$$!! I$I$1 I$I$E)! I$I$E)! E) &. I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! @E)b @  E)a I$I$E)$! E)$ I$I$E)!  E) @(E)Ap I$I$E)$! I$I$E)!*: I$I$E)!*( IE) 4E) E) E)" I$I$E)! I$I$E)!* E)b( I$I$E)! I$I$E)$! I$I$E)$!* I$I$E)$! I$I$E)!  E) @ !%)B 0E) I$I$E)!( I$I$E)! I$I$1 I$I$1  E) I$I$E)$! @$%)A xE)a I$I$E)$!  E)@ E)! I$I$E)! E)!z* M,E)Wz :@%)]^ `$E)+W E) I$I$E)! I$I$)( I$I$)( I$I$)( AI$e)E)-^ I$IE)! I$I$1 I $e)E)^ʂ $I$e)E)^ m -6E)!` R&E)j`b'I$AТr$IA`* IېI P! j$R+!!@@4!I$I$E(C$! (!( `!I$I$!!ꪪ !j Hp!A  @"'!PYeO> _$I$I$I l lR%!!b $Ij" !I$I$! @!!I$I$! $A$I2!* I$!  $I$! I$I$! @x$!( Ͳ!6 `$b@$I$bI$ gb- 9EI"% !/  !  " !@  ! $d!d $ d!d  !b@ 4!a 0@$! *)$!j $! I$I$$!! I$I$$!!* @!, $5!x K$!`$I  I$$ !+ W H!  ! d!d @d!d I$I$$!! $!!/x (!@ T! I$I$$!!/* !!@ $! I$I$$!! )!A@ P! l$!, $!!5 I$I$$!! " I$I$$!! I$I$$!! HE!  $! I$I$e) <%)` E)! $E)!ꂪW 0E)! U $E)!*U Ȁ$%)!$ 6E) %)A k$E) $%)W $E)(U %)U $E)U E)U [E) vE) E)!U \E)  E)!} E) 4E) E)! I$I$E)!  (E) ` E)!  I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)!" I$I$E)!* E)A(4(  E)A I$I$E)! I$I$E)! I$I$E)! I$I$1 @ E) I$I$E)$! (  E)@ %) E)!* I$I$E)! E) I$I$E)$!* I$I$E)$! X@E)^ NH E) ` 9E) U_ xE)+ I$I$E)!+ I$I$)( I$I$1 I$I$)( $I$e)E) Wj I$I$E)! I$I$e)E) II$e)E)j** I$H$e)E)V H I$e)E)^ I$H e)E) E)!$ I$I$E) I$I$E)!۶ce)!  vl1E)!^p5 $E)!X E)b`* E)B 0E) I$I$E)! E)` I$I$E)! $E)!` I$I$E)!* I$I$E)! * I$I$1 `I$e)E) 5 I$Xme)! @E)!_ H$%) X I$I$E)! C)e)!e)! $I E)!  $@ e)E)p ۶-e)E) e)$! g۱mE)!  Hme)E)' I$K e)E)( I$A E)!(  e)$! *3ژe)蠀 ֘ $! `P[E) - !")e) nlE)  I$I E)! I$I$E)! I$I$e)$! I$I$E)! I$I$)( I$I$E)!( I$I$E)!x $$!!+\ H$!!W% Fx!8 I$!! I$I$$!! H$!a I$I$e) I$I$$!! hE! @$!/(  I$! I$I$$!! I$I$$!!/ I$I$$!! " I$I$$!!( !A͊ 0$! I$I$E)! %)!(4 I$I$E)! E)!U $E)!U @0IE)@ 0E)! &%)A z ۘE) $E) $E)U $E) U %)U $E)U E) mE) E) * $)E)k I@(E)ax`  E)!U{ @E)! H$!(( @E)!ުz I$I$E)! mǶmE)!^ ۶m$E)a( Ϗe)! @E)!PR I$I$E)!* I$I$E)! I$I$E)! I$I$E)$!*( I$I$E)$!* I$I$E)$!* @@E) ` E)! I$I$E)! I$I$E)!* I$I$1 @E)b I$I$1 I$I$E)! I$I$E)!* I$I$E)!* I$I$E)!* I$I$1 I$I$E)$!**  E)@ P E)@ y %)  q&E) U_  E)+ I$I$E)!( I$I$)( I$I$e)E)꯾ E) AI$e)E)-^ I$@ e)E) I$I$E)  M:E)-'J$I$I/ɖ  `!`Xd!ɐ!@H `((` ! !!ꪪ <H!! ' H!H!! HK! @ $P!p"%$аH$I$I /a[&m!_1 ! !ꪪ !%b" A`h!$@ PPH !a$( $!ZI$I$!$!ap$!hR$O&!z$I$I$I$A IR !* )I A U& H!Ab $A! $0d!d H" !@  !A I$I$e) @!@ @$ !  d!d @d!d d!d d!d H'!^ %I$!O$I + I\$! $H!- H !b Id!d I$I$d!d d!d $ $!!_ H$!!W- I$I$$!! I$I$$!! I$I$$!!** @@!A @$!!^ DJ!A$$ H$!!W- I$I$$!!+ I$I$$!! H !A4 !8 $d!d $$!!*{U $!a   '! Ij$!  UI$!} $I$! $ID!`$I y$m+H!uU '!ZZ &$!!z ym@%)U I+ E)a IE)U*  H%)!(4 IE) U IҶmE) U IҶmE) U [lE) =@@E)` E)A. IE)!U J@E)  9E) K%)  E) zrz E)!{ I$I$E)! 7 I$I$E)!mk."E)!`@۶mܘaE)  I$I$E)! PE)  I$I$E)! I$I$E)!* I$I$E)$! I$I$E)$!"* I$I$E)$! I$I$E)$!  E)b  I$I$E)! I$I$E)! I$I$E)!* E)!J@ E)A  I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)$! E)& IE) {%)-Wx E) E)!( I$I$)( I$Ie)E)  E)b ` $I$E)!  I$ $e)E) I$I$e)E) I$I$1 I$I$e)E)%Wz H$I$e)E)%U I$I$)( I$I$)( I$I$E)! I$I$E)!  (E) z *'@RE)P   E)b@j+  E)!" I$I$1 I$I$1 I$I$E)!*  ۶mE)p I$I$)( I$I$E)! I$I$E)! * I$I$1 dI$e)E) 5U#CE) ` @:E) I$I$$!!>( I$I$E)!? $Ie)! -$$pE)  e)E) I$@ e)E)7\` ۶a e)E) I$e)E)* I$@e)E)p`I0HRE)@ I$E)! I$I$e)E)VXz Ie)E)E) x X ,E)x dE) / p6۰mE)gmE) ( I$I$E)! I$I$1 ,IE)(( I$I$1 $I$E)! E)A @E)! I$I$$!!( I$I$$!!** I$I$$!! I!a  "$!@H  !a I$!! I$I$$!! !@  ! ! @2d!d ,*I! @ P!"^  A$! $IO$!_ ԩI$!$I$!$I!* I$I ! !U/ I!A ID$! . oI%)b_ +E)ժ mE)B $%)! IE) U IҶm E) U IҶm[E) U MmE) %)b I-%) } i%E) HE)!U I$I$E)!* I$I$E)! I$I$E)! I$I$E)! E)!B dE)ڰ I$I$E)$!( I$I$E)$! I$I$E)$! * I$I$E)! I$I$1 I$I$E)! I$I$E)$!  I$I$E)! $I$e)$! I$I$E)!*( I$I$E)! & (E)A  I$I$E)! I$I$E)! I$I$E)!* %) m۶mE)!!A$IE)  $I$f1!}. OrI$1!z ]_ I&$1!U+W I$@Ć1!W8=1 j 0E)!)^ I$I$E)! I$I$E)$! E)A*& I$I$E)$!* I$I$E)$!** I$I$E)$!* I$I$E)!* I$I$E)! I$I$E)! DE) I$I$1 I$I$E)$!  I$I$E)! I$I$E)!* I$I$E)$!* I$I$E)$! I$I$E)$!* I$I$E)!* j%)! Z`$!-^  E)/ E)! cmE)!` I$I$E)! I$I$)( $I$e)E)UZ I$E)!  E) @ E)  $I$e)E) ^z I$e)E)糖5 I$I$e)E) I$I$)( I$I$E)!( EE)5ު P HE)b  %%)*Z E)!/ I$I$1 HE)$( I$I$E)! I$I$E)!* I$I$)( I$I$)( $E) I$I$1 I$I$e)E)%UU X-ɖde)! E)*` 0E) + I$I$E)! e)! L&Se)%) $e)E) j ۰mۖaE)  e)E)@@e) H$e)E)p Hlɖde)E) I$K-e)E) I$I$)(#f1!K!$ E) P %)UW\p E) -% I$e)E)B - I$H$e)! I$I$E)   E) I$H$E)! ( I$I$)( I$I$)( I$I$E)! )%)! $I$!!^ @$!!_ $!!- $$!!^ I$I$$!! $$!!_ @$!! U 6!~ $IZ$!  $I$! $I$A$I!I$/  I $!* I$! ڪ IE)a E)  E)!ժ I$I$E)! I$I$E)! I$I$E)!* I$I$E)!" @E) E)& I$I$E)$!* I$I$E)$! I$I$E)$! I$I$1 I$I$E)! I$I$E)! I$I$E)!** I$I$E)! A$I$e)$!VTFh r?Hn1axOS4nE) AmME) -cE)!=:@wE)( MME) E)! M)E)j E)0!+ n%)*/ ;mE)! $mӴE)!*oE)! $ &E)!\eCwE)ڀ !a`wdb{cE) kɏE)U H$%'!X %$!?cE)mkE)!(3a$e)` HXE)A  [:]aE)! hkE)! CIe) ` I)E) W'E)!  E)!_ $I4!E)J 跗w%) 3w!u ͪ!' @d:!. )i!. dS$E) m]N޶E)!*U .E)! CE)! m&E)!*kE)  ߰E)!,B  "EE) \s ]SE)!U vc[E) UU Bj$!`A$H$-I$rn U`R1d )I!0ې! @$! CeE)!zUU ٰdCn$!!?T} @`kuE)!U 31E)!c= dL&E) # ,IPE)!k DI"$! An$}7!*mjm!$"I$I I$I$+I I$ $!2 dbI-?!U$I! I`;!_ ֦֡!  HPȐ! Bi2!" eJ+! #N ւ kE) C=%)[nE)!cCnи f1z*I.:ME)A` M5E)A`?O $!! OIE)- $I IE))߷$E)! `$E)!$re)!/Cchf1^ mۻ#E)`nݻyIE)׭ lH E) 4eR@:e)!!/$E)! ӆuE)! L2!HE)!Wl^e)!7p Q$E) E) pTE)a- (4aE)!* iXE)$! $Ge)! Ē$e)! hNE)! u e)!/s`E)Xih9NE) qĖ%E)! @:4iE)!* E)! aLE)! )`m6E)!// Z)I:4E)` NLE)_ !, ӈ)! FNYE)!]o mE)! ύտE)! M6mE)! ؂ E)!( 0{͖e)! > ږbE)! 0 utӲE) 4` ɶ%:E)!U_A oW п6H!> M[x!( P0I!x'+ AX!/ ʧH! +A! 0mwE) miuE)!-]'e)!UxE)!m E)! E)! ۰vm6E)!x M5ۖaE)!> $JE)!) %ne)!'XB* $B&!E)! #9)xE)! PQ!E)!p@ T{E)!! M.$E)W`  A#E)  I$E)!w.?E)!U @]$!!x߃ )A-E)!U $RE)! E)a`4Q$IA2m6 (E]Utf ĕ ظ1] j!dQ6c'  [MWm! 4c!Z x -!p*j Xw! qI$! l! 5 `$!!8π Xta$!! 1EH)1%)!Uk HJE) ۶n͆mE)!/ K! E) 6p X6E)tL01E)$!" [:E) R1lE)E)! * @$)( E)!b زmAnE)!H! ƱM:E) ڰe@$!: $$I$!! Hr! 4IHE)!u TC"E)!z?ehΟ!I  H$I$!IL$!A`CC&dS17u]I$P3qg z  |O!zץ 4!=_ i! ښ0!  ! )ad! GN!7 6 2E)!U Xa4AE)!^ pXBE)x $m E)* *@)E) ' ar!uE)! mE)! h$IE)p@ iaE)# l˶E)!6 lE)! +1$ME)`  !* e d;! IO"! W N ! 5!@bI$IꪪA$L$I$I$a8&I$I$( H$I$ : $ uM]ֶ> յЭZ { ꛔ5!׫z -'s!^ 0+I! КNM! ZM I,! !  B! &AcK!8 x8 $! R(8!(0 B$Ү!H 0c$!" @ TE) aE)%ɏE)! ]k# e)!~ #IE) O@JE)AW $E)A oɍ&! pI$I$kcI$I$bkI$I$biښI$I a8,~!% E) On YNE)A * i.)iE)+ 'U5Me)!_+/se)!>ye)$! nE)!crAe) *~ E)`+ #,PE)U g@E)h re1!^ U! ' |!  !7 nDHE)+ rE)z  N)AE) A3He)!$E)!>y"Ie)$! $H+mE) TIVE)!) %H$e)!?C Xje) x )'e) )ހ 2Rqe)!@"- O> E) p &%) m׵c!w%E)A- m4IE) Im6E)!" nۖmE)! !I$$E)! $ mE)zME)}چi?me)} @qmE) u 6 E)!  $e)!CA8Ie)!^.٘-Ie) IME)( >NE)zmyUA%) 9ٵɒE) dHE)!W  D$e)$!(* !I!I&E)!  Idne) (~ ?IE)ie) v6E)!~ ME)  E)! VE)! Z@IN516hJf1- @ct9E)! %eCE)yQ̢}E)a ۶mE)!.`7E)!wItE)! ȖȦE)! m[;AE)! E)!* "% d,E)!*_ %9AοE)* @:E)!*_ IE)  @E)!z -ߺf1 +6i616E)/p$Ar1!ꪨ `^.ɶE)!* ղ ҊIE)!.]?vqE)!mAڟE)!7>E)! $ɖl E)! m۶ME)! `E)! l}E)(.ߨ_E)!" XӶm$E)!  DE)!ր ҉ME)! 4kҬE)!. J& IE) uE)D_v!(  aB\!`. PU!X% M&$! \ OEa$!p5`?}E)! :E)!**~ ۶u.E)! E)$! $E)$!* ִ[ڥE)! `B$$E)! qZIE)! miE)!* M۵E)! : N!qE)' DIfE) rL2$ E)! IP E)!'  0B*E)xvۮmE)`m?E)!  E)! 'tE)! (dqE)! $E)! dLE)! m]mE)!"+ dOP3AE)!%p &pE)! ʗE)ش $iD!o  Lb!. !$m$5! 6N!.  H $!%(b Kj$!ྋ & !- $ D?$! ^ #)A}rsE) W+ jH HE) &AM E)!W !Ca@E)!" qL2E)!* i6۰E)!x  `"E)! ܂ I E)!- @E)!7` 2YNe) b(- VCUE)  2URE)!`  E)  4 [-fIE) I$:! j & wE)  @+@E) & mE)  'E)!* UE)! dB E)!ڀ* MtBE) .x !+Z $~! Ԕ$i!  ID$! [$!! д+u$!!7z iJCE)!_ IP%)!W $LE)!* j:ME)!B / i !E)!Z>uE)!( SHrE) @( h@?E)4E)! E"ۀmE)!@ ZtٶE)!#) s5ME) bhZD:$!(+ ]ې$$!!- U mQ;! *  ☘%)* Ӥ)E)(jԱ!I $H$I$!AL$!A`V*4h$!!@J8 wP[o:.iaa ^ yUH]!5#{ ?1%!^ M ! I)! Maܶ! $%iP'%)+ %) I$iE)!j '$BAE)b '$! & hA E) :O%iE)!鷜z @E)! 9( E)@ 6MdkE)"  E)! K4mE)! AE)` I*um! dvB! cSJ!j ?9!- Ų=X.!BpI$I@ II$I$A, I$I$(I$I$*$I$ CfIdd H ĉ8 ~}$Ѥe   uRJ!_ I^I! U $$!U+ 4$!U wOi!- s2aD! 0MK!  tD&h!  X<4w$! . ~J͠F$!  a̠}%) A D! 0 $ib5%) >z  !E), S)1ME)jj mhE)( km˶nE)! '%)\ ĕ!U -@w7:!}W @!  I$ <,I$I$A8I$I$jI$I$bzI$I$bI$I+* H$@I$ [-6ɐ6A%i y խiJĤ!_$ dl! $?Aґ!j m h:! dwPB!p +T!.> XY7|! =E! 8 Bo9!< t!, j$!/ RO!  H$! m6s! .@x%) :  D0E)!z_ l@$!Ȁ $ Î! #h_E)! #@mE)z I@E) $ E)׀ I5$! $I ( I$I$ڞI$I$ڞI$I$b*.&I$I$,'i$A$0A ` OE)]- ܦE) VTE)A~* y 6 e)*/?e)!>E)!vP۵E)! | hmE) ɐD E)_ P HE) ḯz%) SH4% !{ 5ќ!  M!* $zTI1!b :ERM$!6+ !ehE)* CnE)ڪ h E)!Wz$?E)!>E)! $AE)ҰmrE)! CIMe)!^I>iE)!%\䖖;E)! t"Ȓ0IE)b\ j2E)x$Ia¢7$I$0a븸'w%)A' %) &EE) @ y'`mE) &֮e)E)]*} $I9E)jm?e)۶e)} 0HE)! 6ie)$! |" e) ^)?6E) ^ ڭe)!p khE) E)!" q nE)! k tE)!W ! H$IE)!* v&E)!* TrE)!U ֭ؖnE)! M7lE)! 4m۶E)! ~T NE)$If1- N/1$!y[E)!*'d6~E)!tktE)$!*v$E)! N awE)! [mkE)!^ I ۶nE)!  D2E)!~ TE)!W I&e)!W I m IE) ՠ 䐐(E)! ׀ M E)! R (rE)`|?NE)` ^هE)`4}$! ( 4M$0!` Uh$!x% Ǥ$!!*A 6Ax$!7E)!冱KE)!** d0E)! m_E)$! 2JE)!ꀀ v"@qe)!U(( I IE) %dE)! m۶hvE)! * #aҤIE)pͩE)' $ABE) " Z"E)!8 &PE)!' 4 ,E)pSiE)wE)! Hڴm۵E)!*mvnBE)! (ñ3E)! $iE)!芊 k׮kdE)!" дXuE)!p" $@5E)!%x n E)!  E)ؼ A$I! 0X!. & !<  A@! 6 !X% $NҪ$! I%`E) REE)!z m0'E)! U$E) PE)  D&$IE)! k׵mE)!* dR# E)!=X H E)!  IE)!: d@ I2E)! 'p h4PqE) 鑉VE)  7,S'Me)!` 4mTE) 4 0b(@E)؀ HAE)! $M:E)!/Wd$E) U T#gE) E)!*em E)! + @E)!+ڠ* &E)!\ 肣E) p?in! (4jt ` )DID! pi!/  ! ǩ4Q!-* ) I8! =?%!X/ sO$!z/ qE) E)!*+u'E)!#E)!lE)! @E)! ò&E)!*-^ ,HE)! &L$IE)! * $R#AE) <` !2!E)!" %ƟE)! `xvE) @ 4H$CE)! t E)z q)HTE) IE)!eY?NE)! u,I $!! @?E)!  iE)!* 0a.8E)Jpn^[!aH1fh (DQ&:{]lW.Б( ؤͭ'!_`i6  (PI!ޭ $AL!/_ 8i!/ I&!^ HO! D )A$! d"Q&)A$!!ݐ I* A$!!=?zfo?E)!_ " E)! 睊  E)!* - g" E) @ i E)!oE)$!" & E) @A&E) _E)!" X6Me)!J ҂iTIE)` $@sX%) fia$! + 2`$!!w+" $]! * 5鰴E)!zW NRE)!W @ߌ!AI H$I$ d$!ASW9XWoq?ui6 Ъ9vkw ~  IT!+Z RX !z) @O!-^ ?/7m!+ ж! $i! ]d $!  ٲ&E)!U -HE)!z db)1E)` UPiE)!/_}  E) &zE)!鷜 H6IۦE)!*  }âE), mE)" ضͶnE)! IE)!  1IE)` Ҙߒ! f'$! iI;!z & !// J,!Bp!I$I$H$I$I$a<.I$I$(H$I$vI$!!0m$LF` $ͫ!~rBM XۉE! l !+U n cr!U m $!ժ /h7U!+ 4! HQ1$! !DZtb$!(  I%)7j 0 $!8`  6h%) A!H$!! 6a$MGE)!+ . ` E), 5u)E)(j mE)! [fضlE)!* v+ rE)\ m+ym$!U W! u= dIO ! h I $I$I$ajI$I$jI$I$I$I$*I$I$ !$$!AHIa$H Эt"A5 k ^U )7M! ֶ&! "W'!z_ S!- [9I9!x !. ԚB!  $BJ!.Š p ! k6<!8 S6q$!0 =! !@ " $!@ j! b %)   @@E)! +-%)b Y?!  !^ U_ 7~'! {!I bI$I$I$I$A..I$I$bI$I$zڞI$I$jڞI$I$b**.&I$I$¸,'II$ .$I !$I0 1( R$ U !U IB U_ 3A!j &ĜS! > 4!x!*. !>˺ h!8 :!${ ZC!,8  Xvl'! * OjV!, ;c$$!& $R$! 80 X d)!00@ dE)!_wvW $ I! D̍! @E)!3Iu ie)!{נ @0E)z ɿ>6E)h tE) z$IAI$I$bI$I$i{I$I$iyI$Ibis>$IȄ $ 'IE)b 0E)aZ' ;AE) y'h+e) /6T?e)!+$̀e)$!  ߨE)!l.mn e)!~ Z.rE)Z [:(He)~ $E)~ ^R1!*( pF! iT! R!J!ˋ )z E)  E)zx "A[ E)o+ Iv#@E) +U_a?e)!&ߑe)! $i&E)!+_ AIE)! Euېe)E)b# -M iAe) ׀&RaE)!5p P# E) ` ?E) ]q! $I&6yyaE)A 4h$i%)  hNie) \- ! &iE)!   C$0E)!~  h?E) mE)!n}?e)! mE)!W "E)!= #dSe)!-4hE)!`$=e) -؀ R@ AE)x X3`E)pm %)/ EiIE)5 Et E)!R &Ie)!%(** $AE)! QV;E)$ mE)He)! mE) (SE)!- L@$IE)! dݶE)! Ie) 2@e)!t<8E)! (Scf1xnϻ%) )(ܷE)!?gE)!u| BE)!" q6E)!z* $J"E)!* @$ɐE)!  RA%E)!**_ I8E) mE) E)! E)!XӶE) 7p$iԜe) tDF#He)! '˶E)!  $m;E)! 8vE)!(SE)!ꪫ6}E)!誫 [mXdE)! жmE)! D(2E)! MPE) m5E)! k ME) ^(  (@E)!  iE)! vK6E)! 8E)% $ŘE)^~%)!mYUU ! ˛!$! 9M 0$!(` $hr E)-}aJt^E)!*:E)!* C 0E)! OAE)! ?yE)$! cE)$!8  IE)!W S7mE)!- ivE)!  " &ME) !0{LE) <$ME)& H5ۊ.E)!< $ Q& GE)!  $A#LE)PiúE)!I]E)! hmۖuE)! E)! m/e)E)~]  E)!ꊫ um*E)! !0AE)! Z" M2,E)! ,E)! &hڔE)` !DHI!  hO! aD$!% P !¸ y5a$! IT!' ֜$IE)׫ mKM$!5$! &IE) s#WrE)!" @&nE)! imE)!* qN :E)!{"( E)!ި d8E)!5p nЖIe)! n: E)! @ @}W!xޯ )uJz! `͘  0Ю * X@A!A.  9iӴM!* A"@!( 0!. tn!( ؅E!" ^Vm7!2* ڸ '!V M!= wL!/ 97&@$! ֖E)! j I$ɘE)!W IE)!* I$I$E)!* :A:E)!j IE)! I{E)!, Cd$PE)!0  ! E)! vbE)! ۲[E)!` ۂ ͶE)!z  BE)!*h mYmE)! ;* h*` iE) p&`E) AAE) C!E)!( '$HE) DIfE) E)! ڢIжE)!: /E)! "(E)!  @ɋE)! KNjf1&b+'rjf1b ۺmlE)! "&aE)֬ O0E) ` ȝy$!AmˡE kYː $f(*1`)rHi1lƊϝ,O Ǵ*W֨Q  iCD  @C!^s;R [ [TbG! V9\!{ X߱Xi! nj! usZ! д!h/ ڼ&m! 9&! [曖! "  )i$)h! Kuۖ$$!( DS!` ۊ mڦ$!!_  Ic$!!I  H$! @LCq$! IDR$! IC%)!  iAE)! Z[۴E)! 4۶mE)! ۶[mE)!/ ݆ؐmE)! ( Z)(IE)@ ArE) 6p IHE)  ۲elE)!*(/tE)! J(n˶!E)!" E)!` ۶ 蠍E)&, ɐ2E)! (emٖE)!8$Mae) * jle)! ]RE)!  )5E) 8 $E)!"( +AmE)!P ]MY ! "&$! C[6$! AF! $@e$!!  JCm$! -bA5$!!z mm۶a$!!p )Ɋ B$!!@ ณME) UR* DAv:E)**x rE) - [m0#E)!*G `Ν!!𸮩Cvڶ ֵ[$!!-0D$ !L$bM4h0 M . ۬ I0 %-mWo4$1r!_ Ŭ!o  eQ5R!  !* T!IZ ؓSI!5 I! 4I1! ` !z- ?q!~ m q!" *I! mde$!"("  9$$!  I@$! ( "%@$! 2 [;KtE)!߷ M ۲m$!!Vj &I'&!HE)!_= j3E) ۦE) DIDE)!K "ђ E)!j !`BE)!7x نmdE)!( $HZ$E)!* 1 E)b  QLE)  Y!vE)!h.OE)! +mv E)!x  ME) P%>E) &8 Ӻ48E) $ru`-ݻE)!6 dž}E)!&* +5ۆmE)! $2BME)@ ŖVE)< kuuE)!* # #Z6E)\ qD! (+$$! $IBd$! " ša$! Ȱm݊$! . c! ڪTmE)!WU]YE)/ c;IE)!W 0mlE) r"DiE)^ ~?hE)BH II$I$ IM "@m۶ I$I$6mG"PlR 4dRP IHL  #;N!~WUu!!d &)Q`(  9!_ 3H!{{ u!  N!+  q H!x ?Ӷm! dy$i! g$!* \!"  hi!8 mDE)-R[E)  [u-E)!Zp "BE) 6!9QE)/x }=%)A .` M%) ZWayE)!^m_ Ie0E) ?z ]6K4E)! j&$ME)  IE)( 4 "Ij`E)!OE)!k sڸE)!(4 $E)@ CE)  $ P7IhE)!  4\kE)!B; TE)>  @E)! %؂"E) [Vl۶5E)!k AHE)!: z E)ޠ 嶍$!U a! n02!h IǠ@h$! I.>! DI! #HbD !`0`?&E)!%UUhki:e) U} nL1E)*jHڶ]bI$I$*m6m:Bư:I$I$((:*$C$Ab.-njm "L0a$!A9 "P$ 8*vkI"6֮f t `Ĉ ) Yw!b!}m 5K !z- qBɉ!7 J! D!W !X 1!`q!5 qTQ!) %I0?!:( V 4! $@uU!*; %@m!3U* 6y:$! l'! $ W!% 3'M1! eE)! _UE)/ ӜnP;ME)!x UGE)8 ,QE) $)|$! 4  $! 0" /|E) IAE) @,jE) QE)*  ٰnE)!: iDiE)"+ $LE)!Ë8 C3 E)a` 1E)a& E)!( (2IE)!\rA IIE) km۶!E)!* &E4I E)!<8 EEHIE)!˨  E)Ȋ $Q!"2U (|!~ " wq!] ՆQO! U [T$!. uEi!"  đ!U x3!&  I$! '!b|I$I$I$I$aÑB I$I$jI$I$ I$I$I$I$ `$I$, $I$ 6.j E6c$!!0A26k N:%\)V z"S" k W|!y^ `Oɒ!$pB!ֿ mM;!}^ 9iM!z k^O4j!^/ 1)H$ !) @! Si>! z ڤq7!  Ij! 丫i!*  A*i!xȀ q5 j!; N $!)Ԁ 4IT!"/ mm)l$!* E28!( RER$! *> 3$%)p( Cz&4%)b b i60$!` ̄.b! ܤuĖbE) &(LE)ˆ m͆dE)! 4(D"$! mtضE)!7 I$IE)! `&9BE)xb 5LaE)(" CE)!6 E) $ hP E)!*(lm]E)!# mh:4E)!9 UTIE)!) 4)E)!wT^Z @2!( ! $Id! $j!U >$U!. S-k! -^ $D:!+ 1!`$I$I$I$caj:ضbI$I$I$I$AhI$I$b*I$I$ I$I$I$I$I$I$bH $  "I$"$H  (( U;v(Эk.k,hBڥREvY!^[R@!. TP! $a!zW I! $i! Ii!u - $I! I4!{ uXi!U  I!U "! DA&H! "-A! :)R:l! Ȇa$! jJ$! P @! AL!. 6NF$9E)!e !pME)A qI$! " }.j!0 a`$!  4$! mc!  HJR$$!0 EIE)2 Xnk5E)!z{ ?h$!$ dB" Z$! +-(%)abȊ FlbE)A kn@E)!+ 6/E)!.r m-E)!n  E)j ?aI! `4m!U AS!u p' !_ I}!ހ 4i@! dHdX! 2 #=b'!aI$I$I$I$j-EAΣ2(I$I$I$I$AzI$I$A/"I$I$I$I$bI$I$(I$I$A*I$I$ȊI$I$b̢I$I$ II k]ӦbBӶ;bDȐ! iҶa2M(E  ƒة!!!^]URӄ !^DI!m]! Դۜ!۰e`! ʀi! j/el!꺣 ł;I!Z S? !{* (lɋ! I!- 1%m!/* !*ڊ &C`f!  [m! "a[1C:!* DI! B` !  `RL $!" ?P)!,@ ӐiVQ$!""   !!, BU! #  U)$!&  ! X2!@  U@$!0" " !` m)k$! ]Wu$!; HE)a&4 SmۆnE)! $I2$IE)!j @EE%)! %I2FE)! k-' E)\  !. (&I!ʪ I~!( '!  (Ib!⪢ Oբ!]۵bI$I${I$I$_I$I$aI$I$I$I$A8 I$I$I$I$A:I$I$I$I$ABI$I$a :(I$I$(zI$I$I$I  I&L$ I$I$ `I I$(I & R, hUo]8/{\@Ӷmn!AI E j !C4m  )$! $@!  iN!ꪷ X1gIM! qI!߮ m!"ժ 6ɽ9!  H! 3$q!X 6>! &I/$! 6m!( `;5!/+z mi!8 $`"!** Z]d!">  %! p H! ʀ1!8 l*!" TK41Y!. jGZ7$!> OG!<8 dFۮ!0 hE!8 HQ$!"  S-$!& m4@ !: 3,E)ab FL%)a "# ۺEaE)!zj_ &nHu!, (iB$! Z)>$!C ZѹI2±!B $I! k O(>m!B€ 4 Őq! b*V!ʀ( 'dK!  j%$!(8 )LJ$! ,( "EI$!!`Ò F'-$!  $! # $Ia@$!!(22 $ !a &϶! -$% E) ue E)_ ?m%) hI"! $I$A $I bziI$I$aI$I$I$I$A0, I$I$kI$I$A@0I$I$I$I$AjI$I$aI$I$A@I$I$i諭I$I$A,I$I$#*I$I$a𸤏I$I$ +lII$I I$xI$I$>HA`0 2db. ֡xp4r ޥحcnk  /E)?-He)5 e)U% He)U mm @E)ߪ ج E) e `E)w t`%)_ *jD! 1! + *!!a & CR I!몿 JJ!6 6 5!/ZZ h!긫 pc!+ c$i![i TL!!) 'Ӿ!N IL!!  ,64! pM!8 ʋ 7HE!&< @I2!* L8!! ,8 ŒY5! Wr!/6 (òH! `D1!@ bQUq$! # Sn$ANE)꫺ m7E) I6>Ae)&b)e)^ u?c e)}=tE)!!Ϗ4E)!_6:e)! 8u21!*re)!+ }`mE)^ _'& E)z uE)z]q '. $I$ںI$I$A<I$I${뺾I$I$A:,I$I$˻I$I$A I$I$a""hI$I$AI$I$AI$I$a I$I$!h8.I$I$ hI$I$A8 I$ `m. ?E) z E)I7E) !ǖ@E)re) U &ԸE)mE).H$]ae)! KE)!+ 4?uY E)!(cE)!M֔ e)!U&/)I$I$a"`I$IA # $I$&A, 'W@!bz/ OIE)b !m>E) ~ 1M E)V >HE)_+tTE)z%"-#MrE) If1$! =-f1$!/ p?e)E)NSUe)!#aذ e)E)bme)!L Tne)E)> 3 Xe)!i$1W;6Ff1z-e)aIA ц1 ܶwE)5}Fne)a xZ{r f1+$9E) ؒq9E)!C 6 E)w ^l E)%B! b5-!:*  I$! wJXnE)׭ mlkvE)!?^ H;6 E)+ ]mE)  06,vE)!( XME)! 0`VE)$!  " E)!@ I e)E)`; IM e)! ۶61!* D--f1! Z1$!˪ 5h1$! qYmE) $IE) _]E)/[mJe)!=;.6f1!*%֚te)! ' mzlz1E)[ te)E)C :& 7qAe)!,  ZI1!z+11ͭOE)!(% ĒҊE)! . #` Ae)` Cf1p$ ު%$I$H$a<I)!b/"%)A- E)!뺋 خmE)! $I2$CE)! l۶mE)!# ۶E)! 6t[֦E)! 8 kvkE)!  (E)!   vLRe)!U >mE)_  mE) s4rE)z # IE) miE) :mE) t' IE)*] qE) &v?f1!]M{f1!q;uWf1!W `we)!+r[.E*e)$!(  SZe)E)X" Pf1E)]j>hl51^Sf1 ͂՞E)!Ȁ ME)!  -$ME)|@ ϟoE)- w&E)!C*gmE)!  E)! * hlmE)!,.. $E)! d$$E)! DI`"E)!~ A@E)!$  e)!W @l$QE) > IE)U @E) Mj4mE) =n E) &ne)ժ(  E)! b$DJE)!* u[E)! % E)! dBE)!  ɐE)! `enE)!+UzQɶf1*qte)% ][A9f1E)z Rka e)! L=oe)!  s k?E)!( wmE)! Q*7E)!0 k"4e)bZ(I~E) )kE)!)E)! I$ɄE)!: htkmE)!> 8r E)!m;OjaE)!+؁SE)!o;E)! l۶E)! (IPHE)!ڎ ضlضuE)! E)!*  E)! C 놶E)! ۖm6tE)! +  $SE)! `H$E)$! i ۺE)!; AZt۶mE)! E)!( d[ae)!? ˺E)!z :,`E)!{vCE).|жaE) TrRe)!  5me)!  '1,%(e)! qE)! ?4E)!*  N[&⌒E)! [PݤzE)! ( $m6Ne)! "ђIE)!K¨ Dɒ(!E)!b~E)! 7(:E)!؉;E)! nE)!/ $$B&E)! $l$IE)!) $E)! HE)!(* $H C2E)! ekbE)!!08 ò[%E)!( u۶E)! [;ME) TN@e)_  E) &iE) ME)" @B E)! H @E)! غe)!. m+- IE)`Oe)xh&|e)! ' aG&e)! tϐPe)E)dq j〆1!$M*FE)">E)'A%߱mE)༩ QZuE)!ݽ $IEE) ۶UFE)*mmo1>E)*1A~E) ફmE)!  )E)!뺞 H)IE)!ں $I&E)!m} E)!J]ۉ E)! nHtE)!־ E)! d+(IE) u Ă$ME)W 'E)b_  E)bu t/E)  OIE) U @1)E) &uE) [ukE)! "8: HE)! ,( YmE)!# BSm8jE) p-5;ME)/| 5e)! `MJe) r+f1E)vj02&3e)!L  e)!]e)! />jhE)!2( V`̀me)!(~ E)! XmE)!൭  MةE)! m @V E)!گ I@8E)!.$GsE)!*Jy<`E)! V1E)!zj AE)! !DIE)!2_ 6$iE)(~ `; QE)u @E) He)!9+" E)!  E)!0 iE)!, },ME)ހ )t۲mE)!%EE)!4 m۶u E)! ۶m-E)! A2$E)! 3`$iE)apX3e) &ۄf1ڶkE)8p,u|E)C PHQ!  M! ]m0,$!  hT!' N! P%J!  CDK$!  %F $! $AE)*[?E)!@IlE)!-* خmE)!+# 4I@DHE)!*" [۶uE)!  [ ݆ E)! L$CE)! iu[ mE)! -kE)! fL٢%E)! ( ( )E)! $ ȐE)! A2dE)!0 IڶmE)!x  6mE)m׶a;E) ,pE)!  E)! $C$$E)! `GNlE)!"8 1 ME) 6`A·=e)&ؗ1!VPe)! "SKe)! XE) ,%)ĚE) E)!" )IE)蠀 4 ?$!~ &A%)ꏭubE)!mE)!.  MR$E)!"* E)!, ۊ kWE)!, #$)E)! ʦNE)!  ga]E)! 0  IR"!E)!E)! n۹c{E)!8R( ۶ۊeE)!o  J$IE)! $Ae)! % He)$! ( C Ae)$! ,SE)!* "#@f,2E)! Ӷf4(E)!:({  E)! NŭۮE)!+0x+E) $$!( BA!2+ $6/! A! Ӽ@@!x  @I! hJ!( &M ,!` p!/  L! $h$iE) $I& E)! 4IE) .' &IҤ0E)! l E)"8 @cE) :_# k [ӦE)!8 #Sof1$!*,e)!IE)!/NoE)! )]E)!:# ITAE)!  HE)! m.e)!u $ E)$! $Ce)$!   $"e)$! JIE)!⪠ LD[E)!*8 J[E)!   @E)!&uZe)!J9LNe)b-7)_e)! > ϋf1$!Q9t˖1$!r)%, E)P 7&E)& $AE)!  LIE) ݶlvE)! mJ$%E)!/Z rH4)0E)!8 $:E)z 4hE)/ ( dE)! vmE)!+,O.oe)!OaIbe)! OnE)!,( &IE)!ꣿ B"I$E)!r  (IE)!( %H %JE) b, IE)!W 4 E)ވ $H'E)= 6ؚBE) -E)!` !I2$HE)! GeܰE) *@ 5|tE)׷ 1QH؄I!5 "$R$Q!" iV!0 H2{x!h' qB !'  ݶ a!*" s1!-- kT!X' r@!\- LE$!!0 crF$!00 45!` $s! LE)ի N)DJ$! ۖmE)!_ `0dHE)! Ce۶mE)! IIBE)!*" ٲ-bE)!ψ ݆mK `E)! Y[E)! d!IE)! 6IE)!&Ȃ  ""E)!-H ( $HE)!  %Ғ"E)/ /IE)X H!4E) ! 0E)$! [0`E)! 4 @FIE)! DK#E)!%^ ɐ$E)! ' @E)!( C少E)pŘoE)  &b^e)$! ]ڭCae)E)r 2--Vf1jW7E) 4 &m݆hE)! % IE)@ $1%@E) }Nж$! 6HE)!% ؚ6mӶE)! H$IE)! $IE)! tHIE)!" mbKE)! kE)!( a+aE)!u R$0%IE)!:ڝE)$!( sWO*:!E)!j $ E)! * HnnE)!4 !@ ɐE)! . }*5qE)  |>E)  E) %MtE)pXֽ HI!( 4C! V5!~B#ϗ!bܷ FH !颸 5I!{ IԾ&!"z !a+ ) @A!  ؊!  ܶ !\  E`$!/ E0P!/" m&);$!! ^ , $!# 8N?!  kS!X ´y E)  iE)A IE) qmy IE)!U N,- E) &iE)!Y vŶlE)!+, iNn:E)!+nSE)!bj ޶5،NE)! ` mۺ5E)! E)! # dIE)!` $ME) DɄE) I$0E)! 6llE)! $-jE)h A {E)  mنmE)!  Zo[E)! ,)P[]E) . [Ff1! *Le)! @^6E)@ ׍.16 JE)! & C %E) ^ 400$!b "'! I>E)a V'@E)b_* ؚME) شmE) k3@E)!U LJE). $mf1$!$I.>E)!( 4UE)!": mm[E)!# ؖ mE)! ݖE)!/W  I E)!p e E) $$E)!  =KE)pV ) j 7X5!۞ A=!( j hҧy!x &gj! 6yf#!g sX / JQ!a. ( 6 ۀe!* I$$5!(x Ni!. 6D! f v!* M5!*x  }~N$!W) ړ{Ąm!- 9PҴ!/ R0mN!0 !ME)!j} ۶mKmE)!׮ ۶m,E)!*k I$IE)!vmSf1!"&mO 1!]yE)!* $QE)!0 ޖE)! : $I&$ E)$!" 5[mE)!*( lۺnE)!x  *$$E)!*h V ]e6E)!9* mmE)!* qE)  !E)a * 0tيme)!( C$IE) ` h&E)/ $IBHE)!c h$IE)!:3ae)!#8Pe)!" kvE)!_,FE)@ WPf1b(& E)!  L,b4JE)  $!‚ PeIE)!} mk#`E)  $I E)!  E)!* mu E)!0mSA1!e?me) $me)!X~be)!ɏ7E)!nm`E)!® imE)! *  0E)!h c)g۴ E) N8rE)k\joa J4H"^ UB mU-bH$)Y$b3 Syj!ڿ* (n! MP!뚶 E`W!^ {Q! iԕ! 4 ! (ڏkK!  %M! 8 vf$!! $H$-!(` $Xs!`/ $)5h! jsJ!| y<$!( HA$!+  a$!   E)!*U}>q?me) U!%'me)!#e)!3@E)!*:E)!.  @E)!( E)!, H IE)! \( E)+ $IE) [lE)!( aò&E)!`~ mE)! ۶uöE)! ۆmͶmE)!. a&E)/ $IBE) B+mE)! JƟE)!" ޾e) ( d$E)! `F$JJf1b* LhBE) E)!" $j* E) 0!  $$!W 'HR)Q$!0 $F$!   H$!!{ #DE) $#4I$! kh[׭! Cv$!00*  QRd E)! C2DE)! @$ɐE)$! !$E)! 6B%) `IܥA k  b v( "[ l(ma,*)Ah  -&s &3 ^oDj!&!ڿ 8L!{ b!.  Hh! !( >91`!x/ m!  v!* SWu ,! " T!b m! :1[ !` ֦km$!!(  M1$!!D HˤL$! DE&q! $ &E$! ؖl $!! ۺ)6,E)! L I2E)! @m E)!ꪪ &m*E)* (RDIE)!*( "$IE)@ $[#AE) < L E) [aME)!:syE)!J(E)! "( !$ E)! ҺE)&( IĖE)a QE)!8&ĝNe)!"~ۧe)! m%:E)! H^CE)$8 M$E)!(! R(Q RE)!P @I >E)\ $R!) !Q6̀! & ! I'h$! R@0$!  d8Q$!# ݶm&$! DP%)!jת v<۰E)" hE)* $h>E)(-\ $ H(%)B ܹ}!AH I"8].Eˁ-"C&I$$aÆ  )P`` z0]׶ڊ6 ~ V!m!^} ]NN! Gd,G! ( 44!ꮥ{ <Q!A^ !T0n!5* rv! $`Xx!a )!) Nb XWI!  ^;! QƂ$! K6lY-$!!y [j$! $U$! &Udg!: "EJ$!!2$  ɐZ$!; d $BE)!_= :E)~ xv"E)-_ IXE) [ ۂuE)!j I2$IE)!x DHd$E)!(^ d@ IE)!( `L iE) d$E) '  mdE)!6E)!ikpNE)!" mhfE)! 08 g#E)&8 NAE)( 2e)!,hz7E)!.* aB CE)! ݴ5E)!  Kh'uE)< @E)! # k&mE) TU!," , J$!( $TĠ&$! " &i$! 4i$!  ! cU#ٍE)!Wua=E:E)'zm*fe)!_dIME) !iE)!5 E)_H$I$ I$I$ fH62"*Țm۶ ( @Bb  ۰tȐ Щ X^?׽Zni1i!!A I!ӔBŪF   T!(˗Cz m{ k!Z*!oo `!(X'  !X%( v6J! I9!*+*X (`!+ D'0h! jN$Q!+ IA!U (  aVR! u-a{dU!# +@R/n! !G$!8 HA,IE) ~} ָE) tkRSAE)!` "ɡ E) R#&HE)p [@3E)A .` qT%)' vE)!m_ @V E) ?z IE) 2R۴mE)`( OH4E)-  E)!ʙ 2#BE) k, ;hkE)!$ Цm6E)! ?X:0E)A4` ܦmXpE)! C[AmE)!B;( MZ0iE) > B $IE)! # "%RE)` ݶm[ E)!k m7d[uE)!: $E)ְ ?AHP!U" ;! f#v!`( t 4i! ԭ# !z ܶOh! U'!0W (S! dgE) E)jA$H$I$I$(*cv: d ی8I$I$(:*II$b.H$I$" $H!Aמc';^H $8*v " $BlYX֡@l4H4E9* Yn X<&! d@!z H! !k^ H9!m!W Oga+h!鶪 ۭ!⫮ 4ME! ASJ!* W  !  %Q!U"   s͍E)' qg;E)!x R!@KDE)8 `"%QE)X Cz(4!a 8 W$!2" )5+ME)zΪ LPE) (IE)!˪ IZ'mE) I$KE)! $HiE)! ftE)! " $IE)b xCLfE)a& ۶iˆfE)! k5ŊnE)!XrC $HaE) $E)!mZDE)!88 ]6lE)!;˨ HK E)!l()  -!"u P;I!W p'a!U ܀$I! U @#?! 7lt! 옖)$!"  0@! LعA!% `?}'!x|I$I$ j61D OᒼI$I$/I$I$axI$I$b I$I$I$I$ H$I$II$!!ې-]ڬZ 6E)t((+W\bn &@1bMa!y^)p&l 3mG!* m:Li!_Z!~ @,!/ fN ?!+V $H<! u d!z $Ank;!}_ $H)Y?! " !* U , !  i!` 1! ` !". d$1$! ,ۈC!( dA!$!* > $pqE)!w CC%)b/b i%) P:" $! XWl7%)"& $E)ˆ J褬$!( D"$! LdB2E)!7 ۶m۰fE)!( C LE)xb dH!E)" k1t[5E)!>_ #`E)a , I29E)!(( hafE)!* iE)!9ή EH$IE)! ФI-E)j @! &A! I}8!u H )R! #LI! y2$J!\ `J#!+ /=!`I$I$I$I$vd6ib::fHi۶bI$I$I$I$A-I$I$*I$I$ I$I$I$I$"I$I$I I$  $"+H I4E1%(()Z ҥ$!!XbCn$!!VXӮh^4mZb!_qm1  $H&>!^ &}N!zUP ! Q!* $IкU!  !r۶!( 4jҭ!j  8n! Hmm!" -,!Ȁ &6M! Ɏn!+ ,F! K늬$! H" 9! ud!d !XRL! . !i$!0 N !A$ \7mߖ`$!"  9) 4!0 FhH! LI@G$! *": DK+$!' $E:$!0 djreE) ˰C E)! Jf=-$!$` ۦmX$! ڂ8%)jΊ* A!@E)  [0$E)!# ˒,IE)!r ۆ-ݺmE)!n "4EE)!H ܭ6$! Ih! iK! CB !]: T'I!  v t.`! ހ Id!" ҃&z' aI$I$ꪮI$I$bjY;kaI$I$I$I$AI$I$A" I$I$jI$I$aI$I$I$I$A(I$I$ȊI$I$LI$I$I!  [׶ A,@$ ݺݼf0[L R h: &N!^]gJ۰q խND&!6lI 꿯  9; !ݫ tBJ ! *!: 6Cd! \ xH!* ;P!+  ! $@I!/ Hj!  P @2j!ڊ Dm(! . mV!/ .[f!*( !!* E m! QJ!  x2!,@ i! %Bj!H $IA$! # Z*8Ri!  hAI! 3 :! REP!  "j4M$! єB54$!6 !LF$!: : JGZ*8%)a$< m&E)! $C$AE)!z C0b$!0" %%)!V z=E)\ 0!!.  M6i!ʨ TA! ޠ `Ou!/~ @!! -bL !B$ !IAI$I${I$I$AI$I$AI$I$I$I$A I$I$I$I$A:,I$I$I$I$AbI$I$a :(I$I$aI$I$驪zII  @$I$ A$I$ `I$I$ Ю]ɒI-0h$I $!A@D: `P!bid7 '* 6 '!W 䴶k! ִ j! u$I! v$H!ߪ u$$ ݪ  ! D I!" i”! - sN(!Vc* Jj:! (II!( 0S!+^ $I!  $! 0tB!#> ˰e!0 Ӡii! ;!@ a˲!""  5n!> v$uj!>  %!.<8p E-Ͳ$!!;}uv R6! 8 yn$!" )[#2!,  ! Ӣ !A@ uC$!A I)$!!@k@ Yp$!, 4)B$!  "&A$!C $4! .$!mwO$)BE) mE) SC#8E)  ɿ> ME)Az $b-E) OE)AW$I!$ +\$I$A I$I$AI$I$bI$I$aI$I$AI$I$bjI$I$A./I$I$jI$I$A<I$I$jI$I$b "I$I$ZI$I$a$ I$I$r  I2!H&I$>I H @HDȐKaݐ, ےS E)A~ E)A Iۭ&AE) OA& E) Mie E)U~ ۶-f1u f1"C- E) <E) !I1 -E)€ s"mE)b^ 8E)b׀ ^*HE) N$ٓ%) 4!꯫ s9,@!xj 5IL! )' E-!ڪ $I!.n+ 6W\H5!, -bZ7!* TK }!  !Q$I! @n֌! B![~!B8 tHc! k BӦ !B ``K! .jխ!ʀ BT!  1Yv%)) ͤHE)b> (EAE)  A$IE)z " 4)E)!u(Cn)e)!Ul f1 mcE)NE)!"8ce) Fn@E)~u-H6e)x$q;1 unעf1!9CN. E)! ~ME)ހ$=AE)ր I=e)Ax$I Aj'I$I${I$I$Ab:I$I$I$I$A`>I$I$﮻I$I$A,I$I$*I$I$aI$I$AhI$I$  $I$0 ~!~ $h%)bW 0E)a4nP:E)z6 E),1a3E) `1@nE)E).K[IE)!Mm/IE)!*C_ E)!'O¿E)!F# e) zI E)$ h:E)b" z$IDE) ukqRE)!+ H$$E)!x NDIE) [E)x  HN!  ?{X(1!z .lj!I N<{!) BɣM!n Mr!! *IZg! @+ ! ZZD!$< lݺn! ˄!E)> $M E)+ M5!E)/ ӶI?E)W  H} E)_ OA1*d?%E)'ME)4>}CvE)!h Pn;IrE)! ?E)!,Dfe)!  iӥe)E) ;Mle)E)/ Zf1$! B iKe)`  1 м f1* cKm1xIr E)  츉%E)! | E)ހ he) ؀$I , .I$I$nI$I$AI$I$a"hbI$I$AI$I$AN>I$I$+$I$ ( * 'E)a{ IMAE) mZ8E) 46uGHE)x/t41~imE)-d'[e)! Ғr9e)!@  I,AHE)!*( &ɘIHe)E)T.  d8e)! D2e)! egEe)$!  g(e)$! Xe)E)%% n[oke)E) 6u ue)!h:f1$!j#A#m1^y70r1zۖs?a1^#'E) ^gmLE)!,  m][{e)!` 좵 E)x r E) R""!ʊ IM! TՅ!,6 Ht! Ԃ IK!& òaE){* K&$E) z HE)VRf1 MXnE)Չie)! /%SE)!+@ * $e)  q e)E)` $e)!0 hDe)$!  E4f1$! \居fe)$! E) E) %5rve) *"#䧚v[e)! <+HnJNe)!2 $+6$e)E)COZKqf1!X //1E)ms.$f1^*Pe)`s 4E) h e)! #aIE)bp #e)Apmيd *$I$I$A<,I$I$n$I$&A&/ 'ya`%)A/iiB%))  E)!V kE)!W% 1A&e)!- I$H&E)!. V`!mRE)!2 ضmE)$! ( E)! ֤۰E)!( I@:E) $ E) ~( df1am?1(_1 Ua?e)_ &`'E)b 'HE) еf1!+ SSqf1$!"`1]e)$! -6{e)! 'e)!&noCz1$!`ωD1xӚN| e) ހoE) 8E)!H m1*ME)` /鏋 f1x C5;!j*|sNE)qE)!b  E)!xU - %KE) ( @-ݰmE)! $`e)$! ((* ӦHE)! [WHnE)!, @2 e)$! ֦&E)!^ ' >E)$E)a f1Hhf1U5H?e) dNB;E)!  [E)!: E)! f e)! H2$GE) MͶe)!G&e)! + t([e)E)/1 턩0e)E)0  smY`e)E)X!JRAe) @IkkE)!-`aE)!*8 2eE)! 3 Qf1X t"E) ?OC!z: (ɝ~ E) %PE)!@ܷmE)! نuhvE)!> ۺ ۶fE)! !I! E)!+mۖmE)!vl9 E)!d똘iE)! ض5ۺE)! M ضlE)  !I$IE) @:$IE)!" 䤭e)!:" $E)! e)! (۲e)! ֶIE)!+ 6lEVdE)!3 H$IE)!׬ IDRE)!* }E)! 4@,E)!  E)!* ILE)!. / $mE)!"oOlE)! o; KmE)! k?UE)!.>~|E)!/?oE)!V H;bE)!/ I$I$E)! R,S",0E)!.Jb 4) E)!  ۶lmE)! E)! $E)!u $ME)W M`E)_ ME)u ۶ДxE)! $Ed,E)!" &I e)!* %A)e)! $%PE)!" AE)! #ݰE) ![ӑe) pFI&?e)+VUVf1! $1Fe)$! L9e)$!&x6E)! fe)! 6gjE)!( غvݖeE)!2 [mV`E)!긂~E)!/FE)!!,E)!z/`]E)! ! E)! 5[ E)!(* is[BE)! ۶eE)! E)! : D!E) ( EIҠ>E)(^ 4m?E)(u $iE)a m"UME)^"" `4AE) :&IE)z ¸ E) Y+E) h)$DSE)!B &IXE)!& HB2$CE)! !@$IE)! r.E)܀TkBe)' e)b % X9$1E)]VIb$1e) `m]~E)'!:9{E) )0m( ! [6tim$!!28 "a"%) EpM:E)#}wE).෫hnmE) uEfE)! Ҫ$AE)! \KIE)!mGE)!E)!ʯO E)! LmE)!V m [Z E)!"# 2 aE)! -R!aQE)!# u e)!ˀ I kZe)!U #6E)w ɍHE) T? mE))_ j? E)x $Y19E)(  @ E)!(, $IIE)!  lmE)!   ۺmE)!@( v9 E)*`m>E).hwf1 "&3Of1!n e)!,mne) /IE) . I1E)!,o}E)  IE)+ D!D E)!m PH-E) "mvl E)! &E)!J#wL@E)!*  ,-E)!zj( ]mۊ E)!]+, ݺaimE)! 2AKE)! cddAE)!0 v@ne)!_(m۹ e)E)9]U CifE)!( dHE)! ɐIE)$!  $$IE)! C2E)! EoE)! u StE)! ۶[#`E)! (DEE)! 2 A2 IE)!`.qE)A؀kK+E)! Y\E)a.C˒%) $Z@)$!( $m! @P! |!0!  @,! PJ$I!0 $J$!  a߼! ظ4@!-56E)!? k< 4IE)!* DR&IE)! 4HEE)"8 $ R(E)! E)!8 SE)!#]E)! e)$! mO>e)! : 6[E)! bؖaE)!  $H" E)! I$H$e)$! $e)E)e)!/ "ߴkE)! mÚ E)! $)LE)!*: [mؚnE)!8%ZWmSE)! OLjE)A'(9@f1b-s 8f1! ])X5e)E)˰`b=e)!XB a|E)& ۊE)! $ E)!X E)궬 $BIE) PÒJrE)!?  mbmE)!. P$$!E)!*(J m E)!, K72lE)!(mE)! $mIE)! mIN`e)!*mE)!pmE)! v\LE)!R* ,Y XE)!k( $J%PE)! lm%E)!.p $IąE) m׵ie)$! " KӬMڡE)$! ]5-E)!` k6,nݶe)!> &I$DE)!* 5E) x P7II$!ߵ 1@0lI!"  Z$I!8 $.!j >O!x P$ !- No! / 7O. )!, `t!x' w L!x/# !4 %R$! 0( ("D1E)!_ mҶI"E)!}  E)._ aME) 7IE)v M iE)!^= &eE)!'vmE)!*@m۲E)!; L E)! voE)!+FǷE)!2"+ TAE)! "I E)!}) - E)  n4E) ۸Me)  $B"$e)$! L! e)$! R7[e)!4 !)EE)!? mݖE)!  m6d+nE)!* qE)`!Of1b '$'rjf1 [Ke)$! (J[Ge) b XO)1E)`eƢkE)! Ȇm E)! DJfDE)! ?E)!ZW $`OE) ,&:6)iE) x/ l$ME) `$E)!.q;kE)!*mۺE)! 2 ҥMbE)!Q?kE)!(8 IiE)* @`E)!8  E)$!* J2% E)! $@$2E)! 2#KE)( &mE))Z 6Au%9E)7p ڸIBe)! I E)! aŽ=E)`X{TD@!. Oa! !Y!: $`/'! XV@!| I!ˮ*y SaSU!"* 0HD!+b X'!x7 HA!  PT !0 $Q9$! p 0}z ! m!b- l#! D $Ȑ$!  $i)$! & R6$! ۶m$E)W $ Д%) aE) i#G6E)z AE)" !$E)! * BE)!  BE)!lj m6,E)! -nE)! r4HE)ހ tXIE)/ I%ĘE) d$0E)! X6`6le)$! [6lE)!| M$-E) * ۺm+nE)!кu]e)! * iE);ԩh1!ꢭ !@!De)E)3:9XfKֆ1!ͿXPJf1A&n˴pyE)! "IE)@ I@8IE) HǤ8$!!^2v $H$J$!8 c۶-8$!!*P $i>%)~ 4IE)b $pE) J";E)  ILE) 떮 E)!  E)!nE)! 8!,ےE)!j ͆m E)!+ ۖlE)! E)!& @dE)! *0 '0DmE)`" a[>! j9e! M9!  Q!* $-j! jޥ BI! Re!+ Cy$5!" M !` sSm!| !4$!) RVKs$!0 4M%5$!+` $ ؘ$!u IvME)*߹ $iHE) mؐmE)!+US-ge)! "U$?r?f1 *?$f1!#{se)!}O"E)!; $I&$E)!". dHLE)! (( mKmE) z, MHE) h AyE) + mlE)!  %IE)!` A$AE)  E)! @E)$! p$HE) ,i&E)!- @E)! (+`GcE)!(0(Jɏğe)! "IEQE)! E)!#L5f1a&8 -I E)! $$IE)!`̀ ִu\:h$!  5M$! W *@p$! Iy(HE)(ߪ ۶lfE)! $CdE)!U~Ra'E) D($! PU$! (  $QE)!mE)!hiqE)! $ E)$!* !E)! + $ )E) jϛE)A'+ֶ W,LJb;(1,/ ʨaá-[Ν8h!-j7Qi  "6D! R%>!_ سd!^[  m0!麿 *,! }! k$J!( %f!8 M5!h L ! D! I@7q!- 6! ۶[m$!!8 $,$! r ٶЦ$!! U ۖ-ۆu$!!ɠ0 mʎ$! MFe$!( CI$!9A$ْE)!*mE)! N ѶE)! m@E)! I$B&E)!(  HIE)b @z"AE)b @ ME) 6 պ:mE)!z [mE)!`*(E)!0 B MmlE)!," [lE) mE)&, A0lˆnE)! (&acE)! *!e)! :UE)! JcE)@j2ZE)b# 8  E)!" j 'QE) 0! 6n$! R(!Q$! : %Ik$!  ([A$!! 0wsT$!!$S  M$h$!! !I2$! @`R $!0* RD IL$E): ҶIwE) $I )8E)!p IƤME)!* #z%) `R$M4 @@!C 5jի il%  1m+5MЬ*C6`@*5N!X Xn^k hתbAG zZUT<2! T4x! m!* "$I89![ 9U!7 U5R!?(* Ǒ! 9!x @ !x @'/!+ ږhI! CZ% $!*( ) CJ$! 1(ː$Y%)!w $C $!!ap f()$!! 6`$!!*V  dRtRE)!W= $n7E)  I" E)!n ۶ ݆lE)! D+"# E)!? I &E)!(5X mVlE)!.( #a$IE)P 9E)A VE)!ꧨк-ݖE)!( gE)! IAE)! " ڪ! IE)x@ ΆE)a&< R!iE) =]E)!ڏx\E)!&* À$CE)! !+ E)@ VlVkE) dE)!*  l*`E)|ڠ N! V*A$! HI Y$!! 6$!  ؆HTi$! :Hi ! 6jE)+ +ّv*E) [mҮE)!*U hR@E)X  .JE)+ #6E)By!$ A II$M4i"Mm I$I$m3vE ݰ%M]!hx!W @nˠ)V6  Q  $ap! P0r!y MaA! eK! \! h7 ޤ q!a yhD !- r^M!  % :!" 4b$!x 5@Oq! m ! FrI"$!* $Q;@! $IF!8 QXAE) 9 E) *p :ūNE)! I E) f#@E)%Z mE) ' ۺMmE)! uIE)!m $HE) /  MIE)! $GIE)` RBE)*( Q:m]E)!*-E)!x hvKbE)!0(4 #($ E)X@ x`)E)  $ ˀݶmE)!&hlYE)!b :lA2lE)!q  m2AE)! HyU=)E), ۺeŶmE)! ^ $LE)(" M! ҆ !W+ l=! D/$! 4iv ! ֩! 6i6@$!:e[E)z vbE)!%UNE) M* E)+@ !aI$I$   *d :((:I$I,!br iI&Y6u]Kq  L8 8 dȐ!A"!$AI`h ߽V_e6 T Zjr!{}$I#!j |!$!p !$IM!( $I4:! a!* `{D!7 y%HDM!) fVK!: k 6!( M!* UV<!>2 +m! C! $#H$!ڴlE)?G:E)!x_i E) [% 7-E)!kz 3!@E)x( ŘSh,%) ib! @h0x$!`0 dB%E) 7 m6KE)!8 !*IE)4 8MQAE)" "ʒ E)!i: &p9IE)")  E)!8 h88QE)A` & ǘbE) AE)!9* `4L(mE)>( ! IE)!( @E)!* [m[nE)!k>8 @[PE)!  1(E) PR$X!"2 6! #/&!h DH! 6m!~  0! ÐM $!" T@O! ' kK$! "=X?!b|H$I$I$I$*v):,IHm۶I$I$*I$I$a>I$I$"HI$$L$ I* `ch$a2@tɒu۰]d)ڑ""e&9LB z P֩!- 8L>5 kyz =?E!Z O1I!V s!i]!$P!z A!(^ dN!~) - &q!U )T&I!  i "'I! #$I!~ O`Q! >!%^ ^#!+x p!   dY$!" Ц֮E)!_ KU+&$!6  1eui$! * 9* $!b& EH1\E) 5J($!N 9E) 4krdZE)! d(E)B ۶llE)! ڢmE)! ]nMmE)!? I$I$E)!** FO,E)a&b zlE)(" ŲKuE)!a6 TAE) $ )IE)!©*LE)! ݺ نE)!* 0Y%LE) NBJФIE)U -A*EI!( fZA*I! vI&A! n! T!/_ H/! -^ !d$!/ r(A*!!@pR'I$I$I$m;vhj:F ƊmbI$I$I$I$AhI$I$ *I$I$(I$I$"/I$I$(I$I$AI ɐ $"2d$ )tM6b(#1d(Y&"FdZ@ڥkY(K[m {@%!*. sj8 !^ 4K(,!j &i! ]R!* ;&A! ےN!( v;! $i! U j=! F ! ap! "h$! i x!/ - $! #¦d3$!숊 4e(I!.  H$! . á1ME)r* š!A  mm$! ' 5!8 $j$!  l*I$!(  L$! )$$F$! *⊸ $ÔaE) "QIE)c( C F!$ 4$! %)a8b mAE) ۶m5E)!# ZLE)!. $IE)!; -E)j $h! &I! "<I!(   ub!_ %M!  &CݘA! ۼJ! 8#&!`zxI$I$I$I$뺾ЮZA*Ϊ2I$I$bzI$I$A/)"I$I$I$I$AI$I$*I$I$I$I$  $I$LH$I$(  I]5 E#6M;ZM!K "Za! & ^]9Ms!_|SK! m!  @M! MRtl!꺺 ! 2vU! In !Z $9![ +–! ][ˊ-! P)!/ 5IZ*i$!"ڪ &n* ! -%[ !  m!( P8 H! dh%! 8 m!@ c !  * i! cH!b, @J$! $ #'! 6)$I! +? !(@ S[I\FxE) @ 0a!` 0lіB$! " 3RifuE)Ϊ @ E) ,<  )IE)!+ `E)!rj  C1E)!n ˰uÆtE)! .9zE)\  ! KLC!  U'!*8 _ LN !(/ M $I! ”\Pi! x'O$ bI$I$I$I$a꺠@$Ia(I$I$I$I$A`8I$I$I$I$AI$I$bI$I$aBI$I$A$ *I$I$(I$I$b.I$IȂ  2d$ `$a& I$bb( d$  $(  qıè*5mzUmtP  ۰q-9!@ՌWB!mN  YM!ۿ ƴ!  $! Ti;!# ! m! #4H!| " 1!>$I!- It+,! *jB!  #! R!դ!/+ C)!8  Mf!* \a!z" F!  B m!@ =!( 2I! H6!. 2nU!* yQ!#< &Bё!8 !,  TU$!" p$!& FI$!: `()E)ab m E)* ۰mZ$E)!zj_ i$!, p$В($!( P+"($!C  ]$!* ?!"iW /s! O @! Ě3 ! : !@m~I$I$I$I${I$I$AI$I$I$I$ajI$I$A *I$I$I$I$A8,I$I$ꪺI$I$A>.I$I$I$I$A<&I$I$zI I$ I$I$ I$I$a0$I$I$ݲM׭b, D!H&X$I$I@H4A2L8 Me[ *[ ¾'!* &I[ K4I W- 2 4`!U $B!( ( (! l 4I!j* y&>I!z |!- m!% K&0$M!r( THy!= PCR!z =! 4cp$!  ZY!<- )J!RH f@)T! R:LN!B@* :Ic!" BMM! jN! * %3! `!Cb, @J$9`¼& 9a& b%4:I$8N mv#qqb!N2 !i2 tM }*I..q!꯸?! 8@ G'! r2dB!X ]{,5! "  ! d8d! "I !j6 !! / P*Z! !긪 ^@1w!n+ [D,I! IQ! ) zR(! i0ɘ! D ,! ]G]g/!8" V!&< k!* j̆!! , H֭Au$!(" 6 ;G!/6 C<! FCH!( 72 Q! -H! pC!# AQ#)! ˏ$!x =J1l!HE)$! $ E)! َ% e)!玪 ӄmE)~( IME)aU $8E)^ }E) Z]I& X$I$  I$I$kI$I$A<I$I${I$I$A:,I$I$ϻI$I$AI$I$I$I$A<I$I$ajI$I$aI$I$Ah8I$I$ I$I$A I$I `II 0 6iD@ ~=E)A E) I&E)  -`E) IaE)!+dۛ.e)!CT1!((mO<1$!$E)! VeE)$!\ڥ=Ae)!beMm e)!{  @@rE)_* H@IE) OU/E) &@%) 8(슚!j P#6j!Z A[! . `8"m!zj (b ) T[ʵ!$ 5"3!N. qL!! ֦4h! $@!. E#!!bJ m8!ꪌ 1E=-!8 ź`)! 7# E)az MӶE) uW Ӳ @E)!j u e)  $װHe)!  AE)$!v`e)!h$nk3f1!*yf1E)UU,'e)!ꀀ Fn}E)!_$:4rE)*zXf1 AE)A-)܆1+-gb e)! )Žu e)!@: N"0mE)ހ#Ae)!h '!I$I$A(I$I$a"I$I$aHI$I$a *I$I$AbI$I$b横I$I$A>/I$I$a"`I$I$a&+*I$Iahؾm a. $$hE)a- O~&E)  M?E) ^ 6E){+0O E)$E)UIf1; iE)-mME).8}e)$! K$E)!BPE)!+E)!{6e)!zFn1Wf#af1~# Of1 xƑw1 m7M2AE)!* `qƖE) q݀$ E) k9hE)~ @q !b lj(!+ A!ꊪ t PK! #+ Q~C-1!6 l7!! iAQ!j* ǖF%) 2b$E)aj* ^%I 5E))p 9E) ?E)'hE) W Գ13HJE)y l;iE)/7`'me)$!*G$}e)$!" G*$E)!,(d& َe)$!  [%ae)E) $yĘe)!+ co e)! 5e)! SmCf1$!h~ ۀ1נ*Z1 ,)a e) %xmiSe)  &wE)/&8Je)P N5f1Ah$I A8I$I$I$I$A<I$I$AHI$I$A) $I$A"A( O$!! tm%)- hmE) %*m E)h RrE)x/ `Uf1VmIe)! dl$ E)! IݺmE)! tm&e)$!( - e)!+6E)! ӊ+4me)! Gqd de)! 0 lRM-e)! 6.e)E)%%h 9$e)$!̶Re)!,i#e)!ʀ T?%1!ꪪ3#Af1zyD1z nf1a+z$E) nM,(e)! * s"`E) ]c/ e){gFP!aV! "a!nޟ Tی #3& m6hE)׭ IE)* !DcSE) / d$E) OLbKf1 $iE)! xڶE)!* ! E)!@ &mӶe)E)` *Id'e)! +X E)!0 n[qE)$! pˁf1$! [eUe)! Ie)W 0 iE)Հ DZE)+wef1! P2e)!2 jCM’e)E) 1$!.꺺 J<e)E)C۶f1$!ʯ 𥠵f1 Қn;1  LE)!(% :OE)! N9( E) N=1xI$I$AI$I$A8 !_' O:%)A-  8E)!)sE)!V mۺ-E)!% D!E)!# $AdBE)! EmCE)!"8 d@ $A2E)$!  E)! 4)A"i'E) $E)~ ~"E)b_`?ɭme)?ORf1 ~*nI1 *߶#ne)z HE) p1ME) AMf1!U!'lf1! ӔTe)!e)! ؜e)$!  7)&1e)$!XcNm[n1x 4ǂHf1-ޠ*߭?E) l/X]IE)!Ȁ #A$IE)` ?2a1~h %_@! E)'E)!r dHE)! v˶nE)! ,. !C$IE)! XmE)!( mV`e)! tbE)!, ض6E) ^  c[gE) `E)@=@e)awf1;mf1-f1 ۶6غmE)! E)!: AE)! h6[e)! " DE) j 0۫WE)!V:e) "+z4mTE)5 " J,e)E)  %ixe)E), ٩e)!  xJe)!Ϋ&ԚE)!*( E)!  re)!C ɿ&.Af1b^ 1(!. $?:E) '=}E)!  5H$IE)!:  E)!8> $EtHE)!  T &E)!+~kyE)!`E)!+ _E)!־ -E)! IJE)! $I$e)$! E)! M6t]bE)!:" 4IIE)! ) 6,۱mE)!Ƀ IH$HE)! E)!; AE)! H$e)$! lMvE)!. HE)!n ֖eCE)!Au?1 ^$qJe)  6L%5e)E): se)$! %ZWNe)E)J`qۗE)!܃E)! fS`,!E)!0v`e)! hoE)! ú![-E)!K @BE)!* N4E)!+o~~bE)!؉JE)! #}E)!jj/ ȺMۮE)!* DIIE)! @@$Ie)$! I$ɄE)!(  A%JE)!̈ ]lkdE)!!0< [-kE)! 8( 2!IE)!( AKE) HpE) W ƑE) ԨE)! ؖmـ5E)!+  E)!" +E)! LB%E)x P3IE)`IAyE)-մv1! 1V[e)$!le)! f:?e)!S?b[2e) x">E)&)PzE) ¸xmٺE)!ݿ n6E)!k "%IE)!*m~E)! 5SE)!/rV'>mE)!xm#KE)!v  -0E)! I$IE)! $!E)!.Jz PE)! ˆmfE)! @E)!  iA"e)!u 4M,IE)W ~ E)aZ @E)u Ii'E) w $qE) U 4OE) Ht(E)! uEE)! "*  E)! ( )KE)!# n 1E)e)+~ef1* rJke)! mZe)E)@ AKf1$!殪 p@۴e)!s8,E)!8 ' VngE)! 28 mE)!긂`E)! 1E)!❭ضmE)!z+ !pDIE)! ڿ nؖmE)!. *I(E)!(*j ĐdE)! ]m[ E)!z H$E)!* (RHIE)!"_  bAE) ^  #AE)u -iE)! u4mE)!3+ uE)! &mE) O,$IE)׀ &E) BB E)!BmME)!&  E)$! H$I)( \wmE)!@ O= e) 'iO>e) 'hS(e)!$me) `uξE)¸߸o[E)𮫪 0I! ]m$!!;8 Z7 >! fK%)] TԤyE)෪ Dm$! [Vdk$!!#* Z IE)8*]}WE)!e)!뽢w E)!#wE)!* hmE)!(  @JE)!  $()E)! m]mE)!# *ce)! ХCe)! 4;ae)! H$dE)! # (IE)^ 9 AE) X*;NE)(E)!,.ڱ E)!  n۶mE)!  m6mۮe)E)%U{ #AQE)`XXAE)&`+mXe)A'*É=1!n =ϊQ)e)$!h\*׵e) m9e) . JJ4E)!( m0`0lE)! ЖnۼE) BI (E)!m $AE)"ǦP'E)!M`tE)!.֮ۦE)!* ֳ[E)!j,, $2HE)! ,( $IE)! ڨlBE)! ]YuE)! 4IE)!mE)!" ۶ 9E)!(R [u-E)!0o $E)$! !I$@E)$!  $  e)$! (  $ E)! IM.E)!* $-:hE)! :mkUE)! 2, E)!bWݺe)!@/ 9E)A =ҵE) .0XH! 2 %B"R!( ҴI$0! ` =|$!x- M!7 & v!( IE $! >!x 5y!  @E)׽ زu[mE)! !! 0E)!* Öm۶E)! Vuc$E)"8 %D:E) ^ fC0E)!8 v$E)!"-$e)!( ('E)! yE)!8 +pME)!:  E)! ukfE)! d$Ie)$! He)E)ow #A$E)!`  0NҺE)! N,1e)!ꫨ XIBE)!*8 $DHE)!  4A1 IE)! áq1XʊԘsE)X ۸mҖbe) ]nhtE)! s!usUE)!4 rH$%E)!? m %E)!%^ ɐ E)! Кm6e)$! *ZE)6X IDf1  ٍ1e)E)p Ue)E) ҉}bf1&jmkE) ڶ]E)$! $M !E)*@ )hwE) HE) N4IE)x+ I&E) ]ZlnE)! &#H$IE)! 醦CeE)!2 E׶ ,E)!  AIE)!(0 TI٦IE) ۶eۊE)!8۶aE)$!*( 2ɘ6E)! E)! D$IE)!  #AIE)x {R# E)` mE) $E E)! &0çE)`X M !.( !H! 4h= ! H4r!bܷ NjQ!' $I#!y D'T1!k D5}z!a+ Oub!7 hI1($! Ք4 ! !hT!/ ߜL!> qH4I!) tb$!( 6M;A$! m0&!P ؚ$! I E) W  E) aHE)  ƖE)j DUA `E)!Y $IaE)!*n֭E)!+vm;E)! bj ÖmÂ-E)! $0 CE)! I$IE)!©" L0IE) xKL>,E) 6n E) $Ae)E) IE)!|  %A"E)*h $!E)!  CnmE)$!" PXE)DEE) . %}Wǧf1 +(3:)e)L m֦mE) I$I$E)   )$ E) f&e) In! k$! OO6,! @ 1@dE) @$IE)! &@H E)! @E)! I$I$E)!* I$I$E)$! * I$I$E)! I$I$E)! I$IE)!* $I@E)   E IE)  $IXE)! ( I$IE)! B"E)!P" $IE) ۰ E)! TM )E)  :@$ E) IE)  II$E)$! @$IE) &I&!E)!` B JITHE)6 l$@E) A$E)!-_W  EIE)"+ $=R%IE) nE) 4H$IE)!* E)$! ؃E)m۶cb@? WJ! * xԷYy!  dJ! &! pMP!  !*l8uj[* !A* J!!, 1{ ( %@!֖ L:S! @ڣ!v:6tx/s0I + DH$I!*  @$A! ** 4ih! $iF! H@!! @ͫ;!j PH!+  HR#! ` D !"*  I!*"* $L!b  &!$ !h+5a!&( 4@ӷ!p !n @!  J%&}$!  (&I$! '@*$H%) $I$! )۴mE)j* THHE) I$I$E)!_ $I )E)j I$H$E)!W I$I$E)!* I$I E)! I$I$E)! I$I$E)!*  !" E)h - JE)C 6fBE)!Z I$NIE)! iE)!@ $IE)(4 $ IE) h6hE) 5 GfnE)8 $eHE) I$I$E)!*  HE)< I$I$E)!* R$HTIE) ӴER$@E)!X I$E)!5V  -ME) ` 0(E)` S7rE)/ ( `E)  I$I$E)$!* (B"PE)!Z "$IE) ` \P= E) p A&XE) E)!  HHE) $I.E) m]te)E)p E)!X $I"E)l $h$E)- $I@E) $I$QG]1!.Z:E)POte)! زE)!( $ Z$E) I$I$E)  C7IE) "A E)j+ !A $I$! #ME)* ItIE)* I$I$E)!_ $I0E) I$I$E)!" I$I$E)! I$IE)! I$I$E)! I$I$E)!* 49S E) $IE) X%۶l8E) GIv'1*jF$1!D$ۆ1!n?C1$!8cɏf1j (E)!@" mE)8  $8E)*p JIE)!  A"AE)b` L$I$E)! $TR&E)  E)!`  l;E) Ux4 LE) $IE)  BE) E)h۶]; ( j_ a*"HQ  BLtю!bҞ.Ք H! "3Q!} -@!kZV]]8sxp(  . h!k Un!ٶz SN  ) ]GĪPK  "Ѳ a@ێ1b*B 1$!** &\!b"ɢ vlyP!)5I$I$!* @ !$ R!AҮ! vH!xw% ~@m!w d@dȐ!* II! H$! D$i!< 80-! `  ! \  !x~ wT$I!_% MI$i!/ <ҲA!A@ RI$I$! àE $! $IM$!! KJ$L%) -! 4s$!0 dM:$!bx E)*U OE)^ H+BE)a "I$IE)@ $ $E) cS6'e)! U y Oe)!# oۆ1:O2A1@I"H?1$!jGߤ$1G$#؆1!Hc1?oI>Ԇ1$!&I$E)! voE) $I)E)(@ HdIE)!  $ "IE)@ $H$HE) $"E)@ I$I$E)!( (iB%DE)" ٖkE) $H&EE)/ $" E) HIE)!) ۰m۶fE)! * $A IE) $&IE) MQ۾IE)Cb ۆmۊ5E) I E)!+ $H2$IE)!h I I$e)$! I$IE) I$I$E)$! !F$ E) -$IOE) ** IE)" H$I$E)! I$I$E)!  =E)4w`;f1`*eHL$!14&" Bf1! $AaE)b@ I$IHe)E)3 4 E) >twf1s*5,lE)` D `KE) % m $E)p I$H$E)! R$$IE) I$I$E)! $I$ɐ$!! T  %) 6H ! $(C$! IP'$!aZ 9R'E)p ,cۆ1z,Nkf1!!f1!}'ME)* ۆmtE)! 4H$IE)+ I$I$E)! I$I$E)! R%$IE) !$IE)!@ @E)A i20E)f` x%)_WDb  X!6[Pb޺ 5BY;T @¯!k[w:tD (S~  [* -9!jS  a )Tn  *UxpJ&2ܽ eha K&M! 4-!b: Hk׶! A! $H !  (9! nV!@H * q2-!jj Q!; "I$h!K* M$I! ۶0(!*b  ! ۍu!q |j" ! @ L!  $! I$Id!d $I)!H IpD!a MI:,$!!ީB '!! M! $7!a~ uF !b~ y &i!b mڶz!b( m뺮$!!ͫn  x`$!8 يm$!!⭠ H$H$! $$I$!! $d$$!!q $0$IE)!U BpIIE) rXmE)$dbE)!U #I中E)!N"FE)!U+?mE)`*;10v>tmf1!Z ؆1!m6/`E)@ ضmۆE)!( $B$IE)! I$I$E)! I$I$E)!  E)@ ۴ie)$!  BE) 5rȩIE)>Ԉ $HTE)+ $I$I0E)! I$I$E)!* I$I$E)! I$IE) $  $E)! R $HIE) I$IE)! ( I$I$)( @ HE)  E)A@ $! e)E)Y dH&$BE)!\` P0 mE):*j $IҀEE)" $ (!E)@ IE)!  hBE)0v`;e)0SNl$p1 bf1! IHE) xE)@,  %Ae)!КkѺE) E)\p i$HE)A  $OE)  $IHE)  I$I$E)! & N!E)B I! $%)bU N !a~ 1@$M! ql! IIR$!!*/ چA %) AA$!!;1 II! $$I$!! 0`@$! $)$$!B @nҶmE)& $,0$!H` m۶I$!!( I0,$!A@ I4LE) "$IE)j $H$IE))* )$IE)!g IҤUE)*ȍE) kN2E) q ڜdE)! L,E)! @KE)  I$I$E)! $I$)E)B ۸Q!e) *B PΟ%)b_Ǐ u+!!TfT W0pmSg[ZmKAӏ!$li "5Sɐe%E)rb:(JQѲ A(**jTkU*,AB [ Zqb  7Ui!a*' $(0bH! ]&4p! .@!  ! ˓S b* zA ! T[ZO! #I`!a*  $WJ!* *2!,.@ [lK!*Z MaReZ! khI!@ Ȋ 놶! 8 !! o&!  @$!( $M! &'!8^ :IJ!` k|L!A/ 9 @h!b MHN! ܦ%a!<4 @: ! I$I$!!Ո )đ$!@ Hi$! ʈOE) $I$! m6i$!!( $!I$!! ! " IE)Jj* $S$HE) $ *!$! IH$! ۰ ۀ!$! %)a d@$I%)!_ $%LE) : $A$AE)!" šjӶE) 5iE)  oE)!/- E)  rLE)! $R$E): I$I$E)! $I$!E)!J $IHE)  I"E) h IE)z 'z3E)a x LE) / I$I$E)!* EE) h $IE), H$IE)!*( +@@E)!vnEC1 ۶mԖE)!K %H$IE)!,(" $I$E)! $8hIe)!p dB2 IE)!Tp 0[*8E) :z TVmE)& $I$E) A$I$E)! d@2$IE)! 2~`?15%`1B 01! \YE)  ᘁmE)  *MӺ"E) fe)! ,2 (R )E)!(` % e)" H$I$E)!" $I EE) 0 $)$IE)@ vIضLE) 6l! xM$I! !$!! *8m$!p $$!!( %AJ$!) $IE). $!! * "I$HE)J $I$I$! ӿ#m%)J BiE) 6rE)* )Rn%)먪 dHd'I%)! X%)* ") X$!/ a@$!  $IL@$!!+ H1JE) b $IE)!ޚ+ , z$IE)( (J$HE)! E)!ꪯ $IE)! $!C&E)!(+ hH E) E)!0Spf1 $ɒ E) H$IE) I$I$E)$! E)bx &%)- $H$E)!( " $IE)!B f $IE) R( $IE) F=6e)x 4a E) %*E) k H$H$e)$!" ,E)$ mʎHe)!Ê8  h(E)**j $I e)! U$IE)( Փ E)` mؖnE)! ŭtI%) ʶ>!x 6}$! !a $Ir! _ I!A /%)A `$!b pp$! Pɳ!a mB!! C2Q";A!P"  $I! PI$mE) H]RE) ԭ?f1!+UePZf1*m 6E)!W $I0-E)b $ E)*J R!ERE):  !" E)h :%)`Ykb(  $H$ (I$I$A& I$I$bB>I$I$@-ֶ]6-OC.!$I+ I$I$ (I$I$I$I$ k;c,~9` ֡askcC9%3:a@Nm{sb> Uߏ|!a H4o!w_wh![,D85Y b !}' ?f!! HvV!PTL!B  (1 { %!_W]O߶I!* bj b# aiXa! *(`J!B * 0!k Ts h tı!^ : 9W,! V!a n( $ %I! ( (M! mZh! m=!X $@b!A :I !h h! I m!a q@#)A!- 0"I$!oI!4* hۢ 0! iR@! @ $!b I! D: Q! 0 b!@ !@ vM$m! $IE) BE)bj?ief1!Uvf1`N 1!W DIE)!O $ LE) +ԑP}E)` hm۶E)! IE) #8 E) JO&%)A*  %)("' H$%)b W qE) AA$! U A$! ft5E) h m;MjE)!. I$I$E)!". II$E)! (  $IE)! _/%) ( IE)# "!0IE)!On `@"E)#@ CU$}E)a#8$JB\E)fH+E)( I$I$E)! ( I$I$E)$!  E%@E) `<.`E)bX pxE) /= DE)  IIE)!#ʨ H@HE)!" HE)YғE)8A 1VbE)  H$ME)!  I$I$E)! m6mvE)!0 e4cf1a E) :  @E)8  H E)!(2 FjE)  S IE)P IBжM!A yhm;M!-ei%)*j ʲc7r!nj F-!@ 4M@! " $@2! H BI!a Dǒ $! r vH$!( R$D$M!" Oh!$ ö6ؖn$!!] IB$I$!!Ww+ !b $mNB$!!V&Ƿ1!UUb3A-Uf1zPse)!{-+I 6E) ۸M)E)**/n p$!! I$I$ I$I$(HI$I$A`BI$I$vdN! ضmA( I$I$  I$I$ I$I$ A"]" !H$I !$IiѶi&$!!Hn8S9 b:i!z)m  jFA82`P`b ' i!,튭!N'!Fbܳ. 6 UK rTl]?[9s! %,!A&\!mi $? "_bOt A 9A M!- `ehgv!( !2 I! V`eF!(( 8$0! @!*x $J'I!Z OS$q! * )!m!-* Kh!/ Immb!  mIۥE)  I! 5{!2<. 2i! ($! ѰU$!** ۶M! D&!8" @@!A BH@t,I$! 髶m!@@ p! $ öÐf$!!U H$!!]w ,!A@ 0M$!!ԕ\''1!-UUU`Sf1!~ U!rE)(+ v4E)!V $IhE)** "IDIE)@  ٺm۰ E)!+ S# kE)x I8'.E)~ E) 䴑i$! (a e$! $!A@  ߮1$! /d`$! x M%) I$I$E)!( I$I$E)!.¨ I$I$E)!( ?,aE)p c BE) I$IE)) D@$ E)!ꪺ B$ E)!:+/.  !jE)!& HrQE)  AHE)  !(IE)@ ؖmۺ E)!b* s &@E)~x P'E) / $HnME)* I$I$E)!說 I$I$E)!: BE)8@  RZIE) I$H$e)! I$I$E)! C:m۶mE) $I1nЭE)Æ(0 $I`E) ۶KE)!$> @1E)b $I 1E)!*r vE) wVX 4II! Hjo!  @6!b@ I$I!@ )$I!@ q۸m!b M !@ $IHT!4 !~ XI"!A 4y>!b~ @! -7! V@! L! I! ۴JB$! $ * p$H!TE)/8[%)S؋AH8;I$I$a" I$I$bb*I$I$I$I$b P ? ?F̟I$I$BI$I$*,:I$I$I$I$ bv`Slb" Hm۶  $I$ AH !A I$AboN!AꪦBߡ  I$I<,a„ 0a((L0aBu] >!Aj* L!갮BI!%A8 *siN l2, S2Z"li`A̰j!b%@ (9!b/X zOz @ + ( ! D`(!!( 0EI!* 5!z }!"J t' !z @! J wFm!j @@!A8 "1r!j H-["! I`! [&:!bj Lu! t!b& *M! p:! k) [s-A!0* $! $!] $Z !U /! NI`!A v:!z $!_ qO!   Kx$!4 $@k! $I !F 4MR4! 6@,!֟nE)!}+̱HE)( M6k:lE)!^ *E)b j Ih%)  )۰mE)ꪪ SSE)/ j!A ` !C  ʄc$! $` $H$!! 4R$Y$!  ϡaE)7j L E) ' E)!: $I EE) ۰)ME)!jˮ  a*iE) $ cDNE)* $@4XE) II$!!2 &H4@E)) $J"IE)!l  2 E)!@A ؖlنmE)! I$I$E)!*(  H E)ψ C7!'d $IJE)- $-$E)( $IR"E)!h IdHE)!* "3!XE)K DMPE) 7 I$I$E)!( ۶mۆlE)!", $"E)@ !&Ie)Bs1o E) $1$IE) e IE) Xm۶ E) hȊ"  M!t lm^! P9!~ &! Z *Lh!mk $!_ $!W $+ !U $! mڨ !$ mMt$!!U b#!xZ I !ՠ + !b I!Aw !- 4M$! ۶m퐤$! $* !a@Ȟ2Y AI$I$뺺I$I$bI$I$*:(I$I$ -G. is^I$I$I$I$A0, I$I$I$I$~wI$I$A) I$I$ I$I$A$I$ A0 4mH۶m۶ 8I$I$H I$ "6i:d@7 !jaKB HDevBڶeց!aj#1e-4r%54b9Z!BA@!z?I!!0q! ̦, oo E 8!*" t/!ڢ ! Mx& Uz &tU!J* bIT b*  Dr! $[!* cN8!+ N>! z v+)!J q˖`! IDi!j k$$I! * !@2IB! fݶa! m0L!   $I$H!b "E*B $!  ژ! $۰! 66! qE!* mM!*  .!H O0l!W $ ! W ( N!A f! (k@!( $Iܐ! dB$$!!p  dۺm$!!. N4ME)/ ,0H4E)*z D!$! 4 E)*y H$H%) !H$I&$!!&P M= $!x tBI$! % I I$!! +I%)* " !!$!ˆ z 8Z !A @9E)bʭ IÀ %) " H$HE)a & I$I$E)! -v E) R$ E) $!!r X$I$!80  -<E)  %IE) B HE) I$I$E)$!# I$I$E)!( E)x ͹! / E)(" C$IE)( @E)h $2!e)!ck* MWE)+ $2E)@ `$IE)  IE)!8 $I"E) @ ge)8 TI@E)  $IE)  E)"% $HCE) * I(IE) @2IB! I"H!b Frq!* $ML!b  )"!@@ )$! D;$$! &I2! n@ #W!+ M@6! 6[NJ! A!A0 $Q^DH!b  DC`! j}M!0 'Ԥ ! 4&z!B C!AرaI$I$A82I$I$a0I$I$I$I$avh"A::رm I$I$ I$I$*I$I$I$I$~I$I$A I$I$+I$I$A@I$I$ NI $$I$I " I$I$A`I$I$I$I$A I$B$A 1c&}_4$AR$!!K6Y0!I4l'$_7<AXf*ˊ ر@"/ a)͝N! ɔڰ  *梗J! P$ k^U 1ѭ ) 0!{ rVF * R2X! "$ %0 A"$ +!*nۓ  RG!b ya49r! m$!  [;! 5$@! ڶ$! :! fz) I! IE*! 4I4!N m!  Dnr!@ D!& ) qLA$! HvI!2 i.!j %n !  P-[!a 㦭tA!h $[x&@$!( #m!` !/ @AO! x iM!"* $[J$$!< ۺmۖa$! * 4Β.)!@ XQ,2!"`  n!@ MJ$!  ă$! I"!$!@ 0$!p TL &!%p $MI$!  $=$!A  PH! `.,& !a@ t`9!A ؚmE)!_  B(E)(: [/AsE)h RH1)%)긪 $HB$! J$H$! #$!` dH I$!!!( I$E)!' I$I$E)! II$E)!* `$IE) j5#E)x p! / I$I$E)!k I$I$E)!} ȄT E),6* X$"E)a` 4@b9E) -? E)!( E)!" ۰n˶mE)! . 0 E) B (}E)03 I& E) , TH$HE)A  @$I$E)!ʨ $E E)  0! fa!>  I6A8!+  I:!j D$! DN!*p Ib! I<i!A m$u!*]0: 3!A 6I!՘ m! pi$!(& $KM! [ ۶m$! e! @ (!@U,a㲸I$I$뻺I$I$I$I$I$I$m;mA:A3Ų ⺬I$I$a(I$I$A I$I$I$I$AhI$I$AI$I$A) AI$I$b&I$I$AI$I b 8A$I$A I$I$aI$I$A8I$I$@ I$I$AI$I(A„ $!ALaH  @!A4A#b0PeB#hI$#0A@Kl)5 Cڶcg NaB$!RvT!@6J Q!9!__"۱m[!{WUBB#! Tg ^ SN! )) 0!߭{ /M!ʪ* Iɕg!! "8 3(! ַi! o # I!\# $$=!jZ Wj;!!k AZV'!:z t!a(z 0:I !ah 0$!(* }<Jr!Ak* Im&A!Aw I25!A" I(!!U@ It6H! I`&i!A_* I‘I!A f$<!+v j=!a I!b H%$! W ehJ!  rZ4!  $!!b% $1$I! mK$!( $7B!p H[$! . M!" *!$ &i$!  cr0$! q7!b 4hD!  ? $2 $!! pGQ$!8 @-PC$!` 1|p0! .)TE) $IPE); HDH! `",8!P@ ti9!A $ H$ $!!8 4ӻ E)* B I%) H -E) SW. ۶m[ $!0 BB$J$!!PQ$ I$!( k2$!!|zZp $2 E)!% I$IE)   -E)( ` X?JE)j ι9!` 0$! I$I$$!! (2 J I&i%)  S7E)ꊪ ߊE) ME) 'ME)4 r0iE)8 pkME)(-E) (BiE)< $HIE)"! E)! B, I%) &9E) ؠ ΓEn a  Im*I!a] I!U I)!bU I ! ( I'I!AW" C74m!  $I! M mm! {l!b $  Z6! )m!a' ۖn۶ ! 4mT<!r 0I$!Һ /!Am۱mbI$I$b+I$I$I$I$I$I$a/?ABa? I$I$I$I$I$I$I$I$AI$I$A*I$I$ʪI$I$I$I$ *I$I$`МI$I$!`I$I$I$I$aI$I$a I$I$Aq:,  I$A$I bb  H$bI2A$aI0aB& H$H$HL!& I bȐM H2 l14LZ ʶ#'(ڎ"(sP614m0 .B 0B IqhO!* 遜P! ks!!h Zm! h"@!* $AL! N:' kWOS! x I\AbK   & i!z 5@!6 H$ !  Ir!" "I$M!( IT! $h$! иmJ.!bj $mk! <) I!B $LB! k mm! à~!a"8 B?)!b @ OTl!AH! 4i&"!H 0!fM!B "E"$! [i4!b B3$@!` PcE)/ HJE)b N,H!* TL! ۼm$!  : ! J! ? &3i$! 4IRTQ%) S< K! ńX2!P@ H~!! $ɐE)! j#A$! x hJ9,M!a <6@! !a )0M%)J* $I@$! dH2$ %)!o /հ$!0 a& C$!!aD( B!$!!@( 6j1$!(( TY4$! 'b 0@E), E)!b !@E)(4 $!p ׿! /. $I A2$!!ʌ8 $I $! :-($!@ , $!@ )e)'? 4 !E) Hh $ 2$IE)!j x $IE) "$IE)AB K ԲE)a"B H$H$E)!  ),E)` @*IE) mضmE)!N $IJ$! B"I ! ڶml! `$8!* ضIR=! ` II!  %!Z ۆn<!,  qR! I"! ÎEE!  ZX!( * YIe! I$!b $I)!\ AI$I$aI$I$A I$I$a`I$I$bcvfazZ:>B ی!h/I$I$aI$I$I$I$I$I$AI$I$(I$I$A !I$I$A* I$I$I$I$*{I$I$a.kI$I$:I$I$I$I$*I$I$p6I$I$ I$I$`I$I$A I$I$A`II$(I$I$A I$I$A  &,ml{A8 6dH(:j^bf ,͘x 6-(ֲ9a`T:u⬪; &K ʪ޸  T^% $ OW! \  `V!ө [j!?IU I|ny!UROM ꯪ ̦! M 6!~ $@b  $/!f m[!꿨 $)A ! (h-!a@, (H2Y!ʠ fH!z ! ~ 2H]cK!B} y/!aB x]'!#02 ۴! L, !* KS!* ٹ! 6C$5! m !( `! I0$!* [!b S+0>! 1DI$!(" `l6!8 PF %)* Pkk!( B$! `$M!( CU$!.8 '! * U`!  44h4HE) -&IH!  O#,!%p@ @! $HJ!  !@d!d xq!a<` B-A!a }e%)" *H$I! D(!A 4 fk ! 3 I$`! # &I$!P i0! ) !A ,8 I $!A HB$! ۰1I$! r!ظ B9$! * 0wE)* $hE) ( IE)* ~4!Ah(N1! 21Ul JI$I$ " I$I$aI$I$I$I$ I$I$K;*H$I$bI$I$I$I$I$I$a j"I$I$AjI$I$!I$I$A"I$I$I$I$a I$I$ajzI$I$Aɋ(I$I$I$I$`I$I$AjI$I$A&/I$I$  I$I$a`I$I$HHA$I$ $I$I$I$I$I$I$ n l9ʦII$a@ I !I ItI @$; K]b  i:e  )*ԲmI*8}Pu *) K! R)(njNj ZKn<b[R$ A* (> A!_ MՁ$!a* Z$y!` -  $ )!j tb ( ! H$!. a$IB! R*H!b"  $!@ n!'U &A,! @V;! $I8!o I ! DA$@!A $"!*>H & I! I@2@! Xm!/ O5m!a !* M!# -! $H`!a $ '!{ j/ !_ yh Az <ζ> a P ~!/UU DI!a * !a@  Rp !a# 5=!صmAI$I$AI$I$A<I$I$I$I$I$I$g[I$I$AI$I$A骨I$I$I$I$AbI$I$0,I$I$I$I$I$I$A (I$I$ I$I$ . I$I$a* I$I$I$I$I$I$ఘ,I$I$aI$I$ I$I$I$I$A@I$I$a:<I$I$I$I$*.cG`  p1m(BGI$I$ AI(!H$IA8I$A$b I$I$mڎeź[ubpvcT(ABdnub,i B%/IZ@iڤ0]=9A@T 6.s6: ꪋ@r .Xr) X 1=}f!a>* #2  N نi! I$:!↑^ J!A ?&:!ak mbj!A +y !U >iwi! ) 䚰m!U* $0~!8 $ I!A $Fn! U !U~ s@! j,&'$!~ !) J`! $ٖ! b! Ќ&N!  X"0m!bа )b2$!b x l! & I1 !/  !( j:5$`!  _"!* 4Ai! + AB $! RUɤF!0  bqծn$!8, Qj.! J E@H!A A !q!(  K%!!$ dKE! ( $m$)! @ #8!p@ Bq! ) "҆!$ Aa!A@ €I!mG 4H! N˦N%)ʫ Q }Ҵq!0 `t-$!bh A3! Iq!<" D2! #!` 9 ! & $$I!b @$I$!b cE)Zڮ6 \p3#!iF ۆn$! 0e! M! /0B!r` !Ϛ$! I E!a $AA$! p$@$ $! 60%)Ab 6+h2$! c ص !a 27$!r A ! R1C>I$! R d ڢM$!!^| ! g!. 0$! I$I$$!!  .ɒ"I$! !m%)) vr6!" P%0H!  I )$! @ C2 $!!`L "$I$! $8! i>!8z ۶m! #IDR!qIAv' az TKm!a* ! 6VH!2 fm! ߜh!a6(AI$I$ I$I$I$I$I$I$bI$I$!I$I$AI$I$AI$I$AI$I$I$I$!`<I$I$}I$I$I$I$I$I$I$I$A6I$I$A@I$I$kI$I$bI$I$ &I$I$:I$I$ꪪI$I$I$I$ApץI$I$I$I$aI$I$jI$I$b'I$I$#(I$I$I$I$A`I$I$A< I$I$ I$I$@A$I$@( I""Xlmۮb @ $H$I@>I$Lb "k:sdk( ):4rD@.Ij !.@ 4 P% &m;e.$1j bZX ~ĩ!տ @jYn _%IN!R *5J) b(ɪ$p{ Dv'Hz*I Aƶ=!]'mI!! $]y AMB A(I`A_& a @Wm a* $@.$! AB!j i6m6! X !A( yhm!a xy!-~ ۆ^!8- HI! dmҶ!. ?I!' zDJ!<  H!( k6d !* tҢ!A*b  b!  زֵ! ` @! PM\M!!" 8 PFT!A, (Ih*! Z21!a) p!! 2 & A ! IQ! %H+t!t  ၚA! \ƈ!# &&n! 0AY!,0 HeZ! (" Qרi!!  X! `!'=  69!` nжn!b `!h8 1!   !a HdH$!! ' !@ zaAx.!( 6C۲ E) mYm$!" &hj! h?0!X`` %B!C$!A" $!!*2b L &$! ҆di$! CV$! E{!`$!  H$! $!! 2 $!!! j` $!Ax$-!a$d; A纎@A`nm!bk$I[*Q!ڪ#'i!~;:M aKj ! J! $0! I$I$I$I$bI$I${+I$I$bI$I$}I$I$aI$I$a*I$I$A+ I$I$A)I$I$a I$I$ I$I$I$I$I$I$a,I$I$AbzڞI$I$I$I$"I$I$I$I$A\I$I$ ' I$I$a I$I$I$I$ rI$I$ C,I$I$Ab*I$I$I$I$z^VI$I$ I$I$!I$I$A I$I$A>6I$I$AI$I$@I$I$b bII0A, HI$A@A $ I$I$b`&I$  Ųֵۂ P #;vhA& P,jjb Ix%oݭ*&cvm%턱6h? aɒ!*0TB&H Ra[  `JnA0LB2$IIImۮ  Em!DMX&@+"IB]h!݆UIb00$I ! Jl5lm!fI2i bi"$I z5M!A fk>t ⯘ R'!* $7!b(j ٶmX4!A  P3a(! ` yC!VjB Ė ϙ?!a / $IV(!aB 7: !d& HJ!, `F! Vm\!  h04+ !8" D3!.b  !, $I! @8 !+ 6! ( @SH@Y!.< @I)K!ʍ |BC!` Ʌa! i6m! #ӴM!`¢ 4!J " )m!( dH$! 0B4!8 iآ!l| , !A$ A!3 ` !* N!*! 4L6i!""  Aa!@ Lj!A& xʱQ$!IM Vi$I! 0i$!Ң 'E!Ψ0 dhb!  k@! i"I!@ 2$!bƒ g! .&* $$ $!!ʊ 0I! $!E) <咤! .k?X!m5%  ! $ $!!&. `$8! ` R#-$!pr@R,h6,0@tK`! I 4A }IIE) ̂ E)U`O>nE)WB 3mE)U.)e)u d6 E)b _KE)^ I%)AU$I!$$II$I 믪I$I$I$I$A*I$I$ I$I$AI$I$I$I$@0I$I$A**I$I$AI$I$aI$I$ajI$I$AI$I$AJI$I$I$I$I$I$A$I$I$I$I$a"@I$I$I$I$$I$I$;+I$I$I$I$ `I$I$A/+ I$I$I$I$I$I$AbpضI$I$a*(I$I$a。I$I$A`I$IA8& A$I$ I$I$ $I$8I$I ! I$I$a[Pa@M;eABŶ!I2D T-hapmv  N͸ Nmѭ@Jl[Sg$x4& );O !a m%) $5Ie)_.  ME)oV1UՋIz61UI2 E)`I# e)W-i$ `e)!h0E) FE)U(  HrE) vmE)U ynj*IE)] ϱhE)U2;e)@ e6HE) E)A ~E)ߠ @!(z ִh! t4 !Z ϣ 'p H! / A$I!$ "@I!A( ZU!bh:( TH$ !a p$ !. g) . CI!& @H2$ !ꊨ +ݓ"i!c FF!/ Tmj! ,&j)! |!A :  DbQ!  X !0 5 ="!J R`B!a@ $I!I! m!몮 #1De !8 &->m!` %$I! CM"|!< hΘ!5 4I4M!  "!( #(a!A` `B!A b+!  lMf! 1!b@ ;L! *2 C3ID!b4 ؄fƑ! = e!b  N'!!x IH! E)!U/ 7rӦE)  AG$IE)  Ǥ(iE)a;v1 nPae)!U FE6 f1 uIl+1 -m$hf1LDE)Uj e)U(mkn,1npf1$!-KrnIE) S#a$qE)p + WE) 6 Ie)!R+ d7$GE)! ܆͆1 Nme)!*#@6iE)a{ ImE)aUh $P+E)נ I"E)!݀$I!$# $I$I$I$AI$I$!8 I$I$ﻫI$I$I$I$A I$I$A@I$I$AI$I$ I$I$ajI$I$AbzI$I$A+*I$I$ .(I$I$bꪭkI$I$I$I$A+ I$I$I$I$I$I$A8,I$I$I$I$I$I$A(BZI$I$ . I$I$[*I$I$ABI$I$ h/I$I$ I$I$ H$I$ `I$I$I$I$ I & d$Ip $AB$IH! ٍ`$I2$ o_O$!{ 8gE); mE)b yGA(E)(  vE) Úm$E)! h" IE)x( MI"e)!( mI1! ?I+T1! m'/KA1!'n1$!_$uâ1!hN"+1!'1! -f1$!mku31jmM.hf1$!ߠ#9,E)H A E)@fLɒE) *mE)@ FA$(E)@ P$HE) Fe)! ̺AڶIE) N"Q$PE)U Q3 E)Ai E) Z DH!x! &-(!` Dp! B']I!Z* FmP!꯮ ((0!j Xp:%!a/ dId! [Ӽ!. }-ZJ0!UVs 1ٗb! "I`I!ʪ C($!bŠ( !!K i!`  . @! !** %!*  &I!O %5!b+! #$?!\ kumѶ!"* "tJ!( [&!TX i!! $I!I! mfi!* !&6 SEt!  `H0$2! Z1!4, At!3sz S#@%) IKE) fH E) Z*+4e) IE)! $E)! s6xMf1 mۉAE)! mq1! yj1!-^+1!$5IA1$!W*"nlP1!"5A1 $1$!( 1!I'Ú$1H$41Gf1ef1ߊ؆ f1laVf1*nm`f19FIf1!* If1!~ $I& 9E)!+ piE)  HB$ E)! n16ڶf1E)UUXIcI1!X+ O" rE) (j>@e)Aw I5%)`$IA I$I$a(I$I$I$I$ ((I$I$A*I$I$!@I$I$I$I$A0, I$I$ 4I$I$I$I$blI$I$A6 I$I$!`I$I$I$I$ I$I$ I$I$I$I$jI$I$ &/I$I$a"(4*I$I$꺪I$I$A`pI$I$A  I$I$ I$I$A jI$I$4 I$I$bI$I$ 88d$IA<: E۵k5  oO ! 'iE)z+ OiE)) HE)  f1!+ $Ie)!$i f1A$E)b` n->1_iE)P~e)Q[ N ?!a:9 J 1X!( 1fꫡ!" Z^8!a,b It!( Q! -4 !` fH!d !# D!!b""J B!k﮻ mG/!""J ARL! $II! ?B#!p \r'c!A ]:$_!ڊ lk! `(#0!!` ЦM%)) Җ)HE) aHE)!U-  MHE)  k۶!f1$!%[,L1!wn f1!c\7{1"h>1_Pmf1fe) &KE)( J E). %JE) $mif1!_+}I!$1b׀I2$f1aI$1UIv$1II>$f1vֆ1$!*\o̶1!۪#a~]߆1!pѶf1] Od1%Yж1! /Pf1 e)-KE)PҶӺf1j I`!u1)k`1!۰f1!h vlۉ-8E)! + %T1![ (qf1h $ce)!*s`e)a\'S f1  O5%) `$I  I$I$I$I$I$I$ I$I$A I$I$jjI$I$a I$I$AhrI$I$AI$I$bI$I$I$I$AۼvI$I$@I$I$aI$I$ hI$I$A "*I$I$aI$I$beI$I$A' +I$I$A$ I$I$hI$I$8.I$I$.$I$A0A@ ~!!/ `E)+ I6 @E) I@E) #m8Me)  vb:1!+W0je) iE)_ $y,!Ւ % E)Ume)Ó;1].;:1]Vf1*2#XE)H) `1!qoo1!*`Iچ1E)UPm1 ﷆ1E)UU`R1$!רT3m͒1JdԆ1!0+S1! wS1@ϯ1$!V-ض1d1%> 1Azf1 e) $9E)AڪЮe)wI1f1 ݯ a1!6 hNN1$!*ݶe) $*$ْ1!n iE)  Ѵ E)[>@1Z*L'Ie) vߺ e)\<4 a`ʎ @! *) r !~ `>UO!\R{ !a* 4T! Bx !J( !a& DHB! H I $ ?L$!V UZ9!Z Ay "!n 8zढ़!J(( Dij! $I$! + ] !*+ !/. sDp;E)_/ \JIE) $I$!E)J Ҷi[3hE)z m۴Xne)! ۴A)E)*j`qv?f1] &LvE)_  ω%)~ $7E)տe7e)*wj 1 :1jvk?1!.h\WE)3.Asӆ1$!# c1$! 4ߚf1$!y1 1E)UU`]1$!`ƭ[1Ҫ"Բ1!(Ate)E)7#ض1݂e)E)q} ۑe)! $Cf1E)W߾O.&e)!101a*mf1$!vN1*ڢm m1A >V1Z*' f1W rE) W30nqf1Uka혷f1+1!+ 'iMe)  4IE)!$ me)$!* e)$! |0If1bV* XAE)A]I&aI$I$AgI$I$*I$I$I$I$I$I$A<,I$I$I$I$aI$I$Ax`I$I$ .I$I$ bI$I$I$I$!>%I$I$bI$I$I$I$AxI$I$AI$I$ I$Ib8$I$$ 'IE%)' I| YrE)b ($IE)!/ kDE)> 0MJ?f1*_ Ĥ~E) &n7!ڪ}# f1Wտ IE) &e)! @M˒f1*8e) ضE)! T" & E)P  ɉ7tE)!  6(GA:e)E)8"Tb5E)@w:הe)!,cZpmse)E)^/^BmVe)E)Z(<`> f1E)u)hnNf1E)UhZ۵e)!8<:B =`1 &f1!dKe)E)cP1 Df1PPX1! Oe)E)^"79e)!%05f1bkmf1$!PIU1"jֆ1Aj6V1j? 1UU mE)+WqyYf18Wb; $e)  q$j1!/dIu e)ހ B LIE) R(@6Ee)$! @e)$! @ E)X ɤ+E)A TM*$!h "!( դ&!? ZP!!b ʉ x$fTN4!af1! z}<1!+j`f1 ;A1U [ME)/~@I'1k Af1ꀪm˺kf1! A!$E)! hbmZle)!  60e)$!( ME)` $IE)ր O=E)ax$I$I$I$AnI$I$AI$I$nkI$I$A I$I$!$I$I$ꪺI$I$jjI$I$`I$I$AbI$I$I$I$bzI$I$A. I$I  v!n& )E) 17@4IE)b-(  aE)a  P0 6nE) $:1IE) W^ "m"%)no'aE) Ife) arTe)!66HE) IH$IE)! k ME)@ Qmf1! i mڶe)E)ɛ mE)@ dLpPE)!,)J#e)=+=f1 `f1E)]+̓pe)$!"Hįm1 6Tcֶe) B*@me)o<_1$!ڒvif1 yUMf1E)ݾ&d;ve)  RfY7e)E)kt:e)!,( ”e)E)*(`RJIe)!GQe)E)8oK۪1!P׮1E)W8 ؈e)ɒf1Ң\1!i;l1 z 9A'e)! ߩ1!%>1!_ Y 1U nmE)UP:f1 kX; $f1+l 1$!- vlۉ8E)! R[e)!  6Ie)$!( j=e)$! he)A _5E)z{ ?!- ;EU!Y !j* G1!A  !* 5 !΁1H !"Q ! FwlfE)- o$pE)] \ @$IE);* H HE)( ȴi[E), $&I[E)!U}W #pE)_"+E) I e)! 0m+e)!eGE)( A$AE)$!* Bi I1r h [f1! m;be)E):CΙq1Һ* m[mlwE)!$%Ml( 1"fUXfe) %71$!~ ҥe)E)"@Ŀֆ1 Ća֕e) ȻM$]re)$uz͍1j(+M+1ɶ Kre)E) P[f1!*_1` ٔfe)E)( (8j*Be) ~U, Ze)E)1! -e7nf1+o 0Fe)! An2f1 *j)f1 1! "3JD[Qe)E)@. f1 " WCie)E).`7e*҆1 n[1 !6Ӡe)$!*МS1!/漆1!_.`+af1 sE)+F nf1+$)1@Rf1h+ 1!  9:6OE)-e)$!<*Me) X I.>Ve)!x( Ϗ&%) X$I I$I$A"I$I$AI$I$ &#I$I$b[:I$I$ZI$I$Aض>'I$I$I$I$a# I$IA0~!_% TIE)_5( !h,E)  $-(ZE) @lI:O9E)x' m`lE) P$AE) bVoe)O . te)!6$ * E)$ m۱!e)E)- 4 $IE) C eE)  Xvmve)E)V=:6 $I)&AE) m۶Ce)$! MmӶe)E)U  v.E)! @ $ne)$!" C AE)!( m;UYie)E)?2(d+e) Am{1  Q?1E)_U?M`e)!wXge)E)8U[P1 -IR1!*ƒжE) e@e)!Sf\1"ڶqI1 +9#1!Z*v'tf1!MW1. 01! "e)!@*qZm1!d%؆1! Me)E)n4e)@ jf1E)j6&#qe)@SJRHe)!K%e)$!(xs1$!zwY1!~~^;f1W~fE)+Roۧf1+-2&了1!h ` `f1 ڵ-]E)02 ^ԫԦE)!4i 4E)` LPpe)a3 l)E)ޯAxT *ҋ j6!A, $bN ( $JR  b L?sNE)z*  E)~) mIE)( eWf1+ 5E) ` L L@E)+ K e) SAIE)y)#A6f1!  B)E) $I"IE)!@  i$IE) mӤ\E)$  IR$C E)!@ $I4IE) me)E)U M[ ]Ҷe)E)U ۱m'E)! $+e)E)Ո )ABE)!  *BE)!Aۈ e)B gde)E) He)E)UWe)V/ne)!@*3۔1!if1J df1! Fe)! pm`E)ހ dS#@E)A. I`E)bՠ\E)~ 붆1'4a;E) \ ̷f1.#7rPf1( +m 1!* K$he)&$ݚ1!* PNe)!  q&'e)E)\˜1! !I1!*j- 4Ef1 B*ӱXBf1b :r1PN\1E)zUxOf1*1!UUWxdf1!U f1 m궬+f1$!ޫ{ISne) ,P tE)! +d E)! N9)Xe)a O&%)I$I$AKbrI$I$A cI$I$I$I$abI$I$AI$I mA(' |)a$! /   h7$E)* oE)J'/&1zX7mE) ` Jd@$IE) H$I$E)!>  IE) ЖmmE) I$I$E)! I$I$E)!* $R$LE) @$IE)!* aҶlE) $I$e)$!* mvme)E)U/+ ֖M `e) \f1!Z )Lle)!Pmk7E) _!l81E)zRXie)$!]z1!k+,1@k>f1x/1/bˑ7f1- EE)!  2$E)! x e) 5ʬ1!ꨥ !UQE)@; f10~[܆1-4ı1 m۶mE) * $I$E"E)! dIHE)! E)! B*$ E)  E)!  I$I$E)! $IE)6 I$Ie)$!* @e)  lҤE) I|,E)hk-f*E)຀}0E)! $IE)& mӴmE)!UW u ۶mE)* `AHE) ۶mE)& 6m׶E)!(  -me)+ $ E)` IH Ae)$! $I1   IE)! f$if1$!奪ֶc2E)@h~ee) 8 ! IE) f$ IE) 2$AE)! E)a dIe) $I$IE)! $A$ɐE)! $I2+E) F ۆmؖmE)! dB$AE)!W" $Ie)!+W ظi[IE) flE)  ߆1!U??f1!+&e)N%de)E)(me)E)JRf1  O%e)E). dk1 Snme)E)p)Ԅfӛ1E)Kv1 $B }J1 -wB1 /p $)f1%kێf1! Ra1e)! par1良 J e)r,p2E)A ?~ yn6 $! j5 $!$D,'1A*C '1ܭ)m۶mE)  I$I$E)!ྋ I$I$E)! * ӰEE)  DHJE)+ $ $)E)` A HE) I$IE) IIE)$!( j&E)#m~jf1 Me)!jՂ\Oune)!V(me)!ׯ a,#E) $H 2E)!j ]ֶm;e)$!" $B'$E) I$H$E)$!"( I$I$E)! I$I$E)!*" I$I$E)!" I$I$E)! E)! L$IE) F{lE)!( I$Ie)$!( R'uW1* P$E); qdE) لmۤmE)! $IE) $IE)!# @$IE) B@E)$ E)! E)! ڶicFE)   IE) [m۶mE)!W !I& E) ^ ILE)  $䓄^E)*f1! W[1!0e)|Zή e)E)"be)E)?@,Ě1 I2$Ie)E),YB9df1  spe)E)@@:1E)Wc>4f1! (uR1'x.[1b/k1  51$!h  )e)! Bk1!52}E)0mҶIE) E)!* I$I$E)!* S;E) IHE)!+ $ $DE) 8(HE)@ H$H$E)!* I$IE)! dHGE)]`1!Ջ#e)!z5WoE) -+ܶmE)@  R(PE)  I$IE)! ڶm e)$! $Ab E)  I$I$E)$!* I$I$E)! I$I$E)! I$I$E)!" $@$I2E)!  IE)!* C AE) DOIE)!( $I&!E)@ |4:1!~ƥ L$uE) " $KE)B @E)!8  I !E) $EIe) I$I$E)!  IHE)! $I)E)! l mHE) BR$IE)!@ I$I$E)! R $IE)  R @E)0 5mE)`8lcme) hE) ּ:E) ŐvE)+DnӮE)bj <1$!k[Kae)E)@{+Rf1!*JAy17$m1!PmB7ņ1 ]ߗf1'漭cf1$! 1:uf1!@(8,`f1؁6ps]f1 k.B1!} "@e)!0.qHE)m#Se)!h 4 %)+K1481 z* B=1 H$rE) % 0@%)  $` E)  $I" E)!*n $H$HE)(!  ! IE) * H$IE)!  " E)! J vm 5E)!\$m~ f1 &d&1Ꟃ'ioۆ1/``sݺf1 !H$E)!. $I )E)@ I$H$E)! I$I$E)!* $a"E) 5[$E)4> ִmnE)!( E)! $#HE)p IH$E)! * @$IE)  9(AE)  ͒#E) P $Ih$IE) $HDIE) I$I$E)!" %$IҠEE)  &IIE) A$I$1 E)! I$I$E)! $1JE) I$I$E)! $I$GE)!<  %I E) $IE) $I$)( نm6`E) #A$IE)p -"E)!r *-ڴm1jw[Cn1z #MئmE)ڀ 1 E) %)+$dnE) )@V1 Xv e)!deURe)E) "*r01 -X6l1!j11*bﺾ:1!z9m_1E)5Wj*fE1ؠ*+Co}:1 )o1',f1 Y۹e)! 8 % 4NE)j'ʴ1! h 40dE)! I$I$E)! * 9mE)` I$I$E)! Ӵ- E) hb I1E)j#m;OAf1&f1A&&=oۆ1 xߪX{˷E)$ I$AE)! $I E) I$I$E)!* I$I$E)!  E)!*j K$EE)'0 Ȑ$I"E)! E) ) $b E) ۰-۶mE)!ʊ( H$IE)  E!@E) $R$E)8  aE)b نm۶mE) $B$IE)! `E)a DH$E)! H$I$E)! ܐ$E) u &M$E) mE) m׶kE)!*+ ږmHE) !@$mE), P$+AE)   ), E)@ HHE) $I$E)$!  JIe)! I$I$E)! "IE)  !*E) B VH()E)@ $$I2E)! s$IE) B:E)APjEE)*жՙ1 6 7e)E)@te)E) p @91E)_1(f1$!:je<)̆1!Rò`f1E)ZPu1E)ɵW?j1' f1']7܆1 Ҩ )E)*z4m?Ib1A-G a-p1%X'H׶mE) hq$!!X% z!IIE)&"* F$IE)# I$I$E)! I$I$E)! $I$E)! $IE)! $ "E)! |)'?Aֆ1!~W%b'ہf1/"@ܶmۆ1!pU )m۶mE)! H$I$E)! N E)!6[  mE)  ۶mE)!n* H$I$E)$!( I$I$E)$! $I E)! zE)`8< imE) m۶mE)! $IE) ۶mÖbE)! E)! b$HE)!2} @('E) $ 8,E) b FZJE)* %E) _;E)  ?E)*_ l$E) $E)" I$E) $mE)A mE)! h(HE) R$hE) #b@E)`( H$I$E)$!( ReUDE)01 $IɀE)! H*HE) I$I$E)! $I IE)! @I E) IIE) $AIE) D0e) r2-$!*@` J̋=E)x sf1 e)E), wQ죀fe)E).B8 pA%1f1E)z áh1E)^-`f1KZSr@Je)$!/|㶆1E)_1>S1>`*pL9Gf1b'}Jf11! ZVe)!(9R֘b1MI1!ک I$d0E)!*m۶E)! ^5"/91!_ x"75͝f1 )1!Xտ m۶mE)! I$I$E)!+ IE)! Y$IE)09 DH$IE)! I$I$E)! I$I$E)! $IE)! * B;CE)0   a$IE) H$IE)$!* E) $IHE)!( E)! o K[E)!$,:[ A$nE) @%) H E) dE)_ >E) ?E) W l$E)! mӊlE)!  E)$ }$IE)A_ IR!ME) oU'ME)A~b= E)  YIE)A׀i'E)+W ME)+ 8E)` DHLE)! $(B-ME)` L$H$e)$! H HE)!( $I$)( ҤE$YE)0 !@$IE)4 nm۶e)E)W  E)h 4lE)O"&E)!Iy唗1+621!F&- ږe)  e)E)쀵!df1!$ǙL1*<2#Țe)H=9uOsf1~4בnE)*69&1.Ĺmۆ1` KE))b DI $!!  B$! j6lE)! $!!`  (KE)j $HIE) "~ UZJE)2VE)*ۆ1A/mE) Xֶmۭ$!! I$I$$!!< $IH%) IIE)!** 4HE)! H$I$E)!诪 %@E)6 $I E)$ $I$',E)!m$E)@~llE)"kE)~E)!z+n24E)* Vh0EE) @E)! I$ E)! m E)! $IE)! fm5e)$! ILE) S7gE)!0 lÖe)$! )E)!.@ ےE)!: +ERE)( IE)A~ I`*iE)U [;ME)b~ -E)NiE)aW &HwU?E)a/~ڴmBwE)  %i"/ E) DHTAE)  !"IE)@ H$IE) B(X$@E) I$I$e)E) 6=4E)p XIE) ضme)$! "X$Ae)!x O%$E) #K"8%)! j'f1˫Dzh1$!+A1* Elqf1!)h5C8f1 BDhX|e)k­h71!A}1:x_1pzn1  iO1 K6 e) (a$Hf1(  PiE) 6Xf1 mܶm%)!խ ڶmE)! $I$$!!/ $IIE) $"IE)*H hmE)8* II$E)!+ @ E), ۶m@E) ۶m5E)!*zOcE)`*";E)6m뼅E)E)! #6%]=E)!Pr !sE)$ d$IE)! ݲmVE)!m DB$IE)! ]׶m E)!*  I$)E)@ ִkve)E)UU lE) mAe)E)}Ub `i9e)! 3e) ; Me)! mJaE) $ 붶e)E)~W I A$)( R"A$AE)p `HجnE)  زE)! #@$IE)~  !@E)-< PLE)% ۦm E)*) ۶I5E)Jh mmE)! II$e)$! D@$IE)!0 I$I$E)! I$I$)( I$I$E)! ( N۲IE) kaze)!\ O&"%iE)Aب O=E)+4۔ne) $[@Je)!0@R#ɰE) vf1E)jg<,6E)k m?N1~7 ,V0{؆1 ط Pl$!, @m$!( @$M! CJ۶m$!0  $M$! $H$I!b DJ4%). $>%) %t! '}1!B>: UX $!a" $I"$!! &h˧\$!<, Ȅ$I$!$ $m$! HIE) I$I$!!. ۶mۆ-E)!_ ۶ ]2E)*{}M e)2&Q?f1 1IZte)++Ea'mf1A*~$IE)!؟ IHE)* @$I$1 , IE) AI$!E)! J $IHE) $IE) !۶mE) 2,IE)!BBL 0H@ E) $YWf1E)W9f?81!N2$rE)@ ROE)! m%sHe)*(, Jh E), $q[ E)0 iڄe)E);W $I$ɐ)( "$ E)@ BqE)0 vnE)! 3ۦmE)z 1'AE) X %IE)7 IJE) ۶M4E)!p IAE) H$I$1 II$E)$!( H$I$e)$! I$I$e)$! I$I$E)! -fmve)$!(* &I E) |8`E)P {%) */ڠ ݖse)b |Re)!@B$q҄E)  u[e)!$1mf1jʨ yuf1E)k@eO1E)W&WSf1!X.*[Ҿf1kOAf1-+81! CۢMve)$!   McE)( A$HE)! 6*IE)k $ )E)*jj نmܶm%)!^ I$I$!!. ۶m5E)!W $aRJEE)}[E)9'&1!(O}~f1!W+ mf1A B $IE) IIE)* $I&!E)@ #DHE) p# $I&-E)b@ IH$E)! 8l۶mE) C"T$Ie)!S  ڂ6E) @ 낶k e)E)z$ 6Ne)$!fɱ1!@XƎE)0 `crGvE)!`  I$H e)! H$I$E)$! #tE)$ [QE)!  ]E) , $K-cf1 52e)!,< H$I$e)E)~+ ˦iE) R#$AE)` kiE)! (- HE)h%Nۆ1/n4E) ( k f1!X $IhE) I$I$E)!2 $I$=E)p $Y(|E)! *) IE)@ H$I$e)$!  [ ۺmE)! m.ve)!x " '& @e)AznI'f1b ^;f2e)0JiҒe) H17傤w1 ʴ $Z7B$! Pa"I! 4l$I$!! $!!-( $!!6 !I$I$!! ( @41$! 6!z sX4 !* u6 ! 1@!   I&8$!p  $AI! $I$E$! $!!ށ I$I$$!!+* $I-!j  )h!` صZ!% "B$Ie)!Om mV㲲E)!=J •IE) XYE)!() DH$IE) I$IE)!* :hVmE)  I$I$E)! @$I$E)!" $I$E)! ҤZ$)E)(` I$H$E)! I$IE)!& Z$PR- E) $IȄe)$!( [mE)! 8iDE)!< D&I$e)E)W ڶve)! TH$IE)A @vm۶E)! !heE)2 hE2e) :(J آE)! $ɩf1& 8YE)!0 I e)E)x ,GlFE)   $ E)@ Qm6lE)! )4aE)vn߆1w&f1a*zBf1!p)$I䈘E) I$I$E)! 6m051*z $IuE) (!IE)!@ H$E) "I$IE) @ ) aE)! M.5AE)AsN:>f1A*z:!pNf1!B +"j"we)B DNf1r !@@e)@šX%e)!mYe)$!sbq1!b oh.e)cfֆ1/ R!1!K  ږme)  ]-E)! mێA8E)! $@$I2E)!` $I%! B%Y! ^@W!8)> "$IE)B*N\E) `P;ME) $ E)@ $HHE)!" $AR$E*E)!** I$ E) I$I$E)! H$I1 $B$IE)! J EE) I$I$E)! !I$E)!  mIE) ڶm6E)!* &I E)! H @E) H$I$E)$!  "AE)@*Ն1!mmRAe)$! H!E)!" $I$AE) I$I$e)$!(* y%E) pɑ1 LI$e)$! A$ $e)$! mh e)$! $I$E)  ڶme)! A$ $e)E)r_ !$IB$e)E)C-  I:)E).@ lsRe)! \ &xe)!x5G4f1o m.E)!" H$AE)  @E)!( $IE) b$$IE)!<\ڌe)4òE) !6lX3!!(We)=/bp.Ke)ܧ I!8  ˀL! [nنm$!!R $AI!@ 6M\! @&! mZC'!(~U A 1n`!a) ! @! $iB<! ["ڤm$! THжI!A `$I$!!X7 R @ !0 H9!z c!z Rį$!A` yM`!* %I$4E)+r I$H$E)!ꪪ !E)<  B$IE)` I$I$E)$!  $B$IE) II E)! IE)  $E)  I$I$E)! A$E)b " $IE)!@ȐE) %NlO17<@1!o/H/1 u<1` "nֶ1E)WUm{'Mf1z*+O$_1E)UU51 گ m E)!n[۱e)!"8 $H$ E)  @E)$! B't )E)@ h1* Xme)$!* !I$Ae)E)^ mCue)E)n@ Ei)E)@ jH#Ye)!<* H$Ae)E)A-^ !$IB2e)E) 7  ) $"E)!֠"rf1!Y 9f1!Ux㒬;1!W ti$IE) 6ihE) E)!` ( $I $E)!R B(XIE)!06E)((8JR1p* E&IE)aQ9٤E)b t X1+}_1e)$! H1Fe)E)= \-e)$!  5ŚLe)!`&X-1!6JC@1 .8%f1wk {1 ֶiE)! KIf1& m۱i8E)! kE)aڸ ))$!  E)* " I$I$E)! #E) PV$IE)b II$E)$! 4H$IE)( " $E)  ,!E)@ 4I4HE) II$E)$!* $HE) B$$IE)! ۶o1(/o19?@1jF$ц1!~n"?1Щ#ض1E)UU$7 f1 7ɟ$1! y H$e)!kJ ɒIE)&ݖE)!CO9E)* $$IE)!*  IE) E"IME)r XI$E) /U $p$E) 'j mE) Ķme)$! ! $E)!( $Ie)  I$I$e)E)x(  )e) GuE) $C$ E)!x=\OrE) `-Pdž1!z-^ 4I04E)A(b $I E)! CmݖmE)!0 I$I$E)$!  $1E) @P dh4E)}_u -P>!A & Aq!' Ф .)! @ P#4!a$ ,U"! &"1!(b $MR:<!0p &X<!Ш&Lx!Zޥ &1!!&* vaغn!/ B]O! kl[ ! ,`X!0 MM!b ݺ%! @9!z ,}!^- tx!ڥ* I!A  I@$! A$I$$!!  $%EE)(: $I@E)( A$I$E)! $ 1E)h $I I&E)! ۶I3E) #i1E) $ RE)h_ v3E)ao Ļ E)W X6 E)!* $(E)& 7 YFLE)  ;"$IE)I۴E)! *@ImE)$ /)B*@ E)B $'`E) ]\ $IE) c$JE)  @$IE)!(*  mJE) &7E) X^qE)b" ۶mE)! $L@E)  A&ME)K 6liE)+ ۶MCE) ܈MxDhE) 4`'me)$! * *h[ME)  $IdKe)!P m6m e)E)c+ 0%6NE) (*e)@ hk۵E)!AL1?`i!5f1H *E) J $IIE) $IHE)! H$I$E)$! j0I۴mE)! @$IE) Tvbe)$! RE)ah _h.$!"&A%f1A*h\01E)_{شPE)U(>Ie) `ʴuE)M~Ϸf1E)_=S1*wѦf1/`If1- HJe)!% K$`E)  6M`lE)!  E)! 4paGE)*7 $IIE) $IE)!+ 0EE)( E)! $IR$E)0 Z$ E) $oE)b vvE)_ ҖۀE)U zI E)a  aaE)B I%IE)$> V3 $IE)I" ۶E)`ILb۶E) em0E) *pE) #$IE)!T@(wRmE)  I1@E) $(KE)` H$H$E)! E), $!"yE)J m[E) IIE)!( C$IE) !E)!U* lE)a PM E) H1E)4 I$E) $I$e)E)%^ E)! Ӷn4de)! Eke)E)+ $`ME), 4ITH1骨 @$I2E)! HME): $@IE)b& @E)V 23?!Z v!b+* DCI!  $A!.*  $L$! ( 6 $D! )(M40!(b &!< &d'!ZhyQ!A qi$!? &l$m! $! J s!b( Mti!@ $!! @F9!j 5LP a- M!  !" 9A$I!  I")E)*jj %qI%) E`IE) $IBrE) z 4ZxA%)8 $,%)*h 3$E) 9E)ؗ X{ M%) q $IE) &m۶E)! I$IE)!W @E)![ $I1E)!x $ HE)! @-HE) I$I$E)!着 $B$IE)!kꊂ L$]E)$  .iE) ` $IE)! "I E) iiE) AE)$  !ҠE)  H$IE) %<$IE)r ۦ -E) (,@ ITE) I$IE)! / IE)$ I E) W g$IE)*ހ ME)+_ @SH~E)  m6iE)! !A )( thie)E)8-V !9F"E)!J H$ e)E)^ a" E)@0 Fn`f1 -֦mvE)!'X )@ЌE). E) $I$E)!  E%AE) I$I$e)$!* I$I$e)$!( k1E)!( c0f1 7& ME)azP11A .[ۖZ"f1J0Vne)! :rQ*e)!B钠І1!e,+5E)! _Һf1`;f1^x]w1- ɏE)! ( $ He)$! E)! " ^5iE), $K$AE)) 0<%)b x XE)  O'@E) SI$!x-  @$IE) ֤m۶E)! E)!W ۰m[E)!+? )%)H A2 CE)! o HIE)! I$I$E)!몪 $C$IE)! HsE)J $ ) Z&ME) @$I$E)$! dB$MRE)![ 0E) $IE) mmE)!, ۶m۰-E)!j $IHE) B&$IE)( !@$IE)!4 R'5$ E)` HIE)! I$I$E)! I$I$E)$!  aE)  R#PcE)x E)a+ E)5p $IE)- B$AyE)0 Me)E)%^ ]ۦne)E) ݆iE)! I$ $e)E)>%^ I$ $E)!  I*,E) `x m AΠ au!+ &-`7N!@(( $I!ᨢ II$!* @$ ! P $! a?'!b :! b o !y D5n!/ 3AI! ؆iˤA!a l!$ M!a&   H!4j!Z t|4 a% HNI!* q$!8 H! dC$i$! 6m$!!œ- $ @$! X !$ 0P$!b >Ij$!  Owm!- 9!H$I!% C$ &$!!~\ $I$!$ m4iE)!W $! I$I$$!! II$%)! @I@E) " A$I$E)!" E)! I$IE)!* $IjE)!* R@[8E)  )$IE)@  (&IE)` $X$E)  I$I$E)!, j I$IE) I$IE)! I$IE)! * $IBE)! "$IE)@ B$$IE)0 *) IE)@ IIE) I$I$E)! I$I$E)! &< AE)P  E)`, .0ME)b/ ^ E) = IXE) " E)@ ke)$!( 1);&e)E)h -IE)! k:&e)E)܃7z  e)$!  E) 2 E)4r/ $ E) I0(E)B ۶m6FE)!  ۶E)@ 1BdIE)  Lvbe)$!3فe) : 5E)M4{f1!5 IgE)!  &Ȑe)E) <)=me)E)4P caVf1!$+B@f1!b&uIte)?F`NE) $qc Ue) H$I)( $"AE)@ #4IE) ` OM! I$I$!  @$!!? $IC$! $&$A$!! $!  I$I$$!! "$ E)ʊ DIHE)! H$IE)!* 0E)! $I !E)!*n $IlE)! aKDE)*>(  Ă4IE) E IE)( J$@E) I$I$E)! 2@E) DI0E) ٱs IH E)!k(,E)@mE)!*n $IE)! h* E)؀ DHIE)! $@CE) B%e IE) 0 "a.E)`@ ɊmE)! %@$IE)! $I$E)! j`$E)^ Wp>AE). hE) mӶMe)E)~ m$$e)!P ۺ e)%) I 5E)@P !|z fQ !A** # !bb(* $Oj!, ! !n+ d M!)( Ƃ+! VdC!bP&gwP6 yrPA!* a!` H!J b$  ! $IH!⮊ l!( ֐l_'!! w ax+? 1A!a)  !ʀ dl!( 4!$i!@ xWn%) ؤI!, $I4!p |!\% ꓤh!bx !A  @n۶$!!^ I2IH$!!敂  I!@ $"$!b *%AR,qE)Z !I$!@ O $! %9"$! R0$! $V$!a(~ ,$%) @NE) ~ 0#E)a +`E) 4E) P>%PBE)_ 6 HE)* w,E)j NHE) KE): hE) ۶mۖ E)!㸔VE)$mE)$IކE)! B"0aE)P TI4HE)  $R$E)0 *- IE) " & e)!h+ WlަmE)  B( $IE) I$I$E)$! #A$IE)x CE)b p $@E)/ $I"E)!   I$ E)@ I!e)%)( $ e)E)7z m֦֭e)E)K%\ I$I$E)!` !Ȑ$IE)!p  E)a (b %jkcE)0^ $2 IE)!  )E)@  IE)!( Na'me)$! *s&Rӆ1J $ E)}ᧆ1!%[ى(E) k?ᆆ1E)x~pe)!#.Aũe) 4Mef1!b.[Ǭ1Wz7lUJ1/۶mm1 $I EE) 0 II$e)$!" dl E) 3 H$! R$T$!a0 $HzME) (5 I$!p Fji$!88 $Ih! & !$!$ T$!A ~ $%) hIbRE)!߫ uy"E)_ ;o hE) `E)ݪ P@HE)W & IE)_ ӛ/E)bz )IE)}{ǍE)@,(  IҠeE) "A$IE)@ (H$IE)~'E)! $oe)!*LNv۶f1,ICҖE)p K6w[+lE)!& E)! A E)4 I$I$E)$! "E)a@ I$I$E)!" I$IE)! $I$E)$!( 3&IE) gP=E)! H!0{E)  I*,E)@p!bz I|A!+*  jQB ( 9 a Dk!* bA!bC ݆iH!$ 2:!zmӶ-A*   l!.& ! "!  Q ! HEA! ݐ [ !*: T*!L z^ ϙ! - 0Z !-( !b 4 $ !  HI! [kmd!d 5!p 9Mp!A` }l!a)  ӦA!b  BFN! ¦m3!  !0$!! z $IS$!!W FJ!DL!  m`$!  :&!p ! I ! =$.@!  Iv$!bW I+&E)" yhmE)% &m۶E)!* H$I$E)! E)!* A$IE). @$I$E)! I$I$E)!  B#4E)( I$HE)!( \JnE) $H$E) LL$E)! * 4H$IE)?nE)!)蔸oe)!m^P۶1Z*& ҶE)B \H;lE)  $I!E)!  $R& E)  I$I$E)! * @* E) $HHE) I$I$E)!*( H$I E)$! HE) + E) ؀ 4@E)/ H$H E)! F\JnE)! (OZF1.: mӶe)E) c I$)E)@ RARE)؀ z6"E)nd `HE)/ 1HIE) I$I$E)! (E)@ k6k۶E)$!  SDv1h*fuf1>lGf1 >] f1:>e)p L&Ҍe)E)$@ttBe)!aLKf1 N9dE)?ذɁNe)- 4I+e)a L $I@E) $C$IE)$! $H$iE)  I@!b $'! @l! D?I!a $@!! IE)U* q & E) mݶmE)-* ִm۶E)!"* I$I$E)! C$IE)!* @I$IE)!- H$I$E)! I$I$E)!  @!EE) 0 I$I E)$! * I$I$E)! $AR#iE)!P I$H$E)! ۶m۰-E)! $I E) E) $I E)!*. I$I$E)!* $H@E) $$CE)!* $IIE) 6  E) E)! 5 $IEE)( $ $=E) $HNBE) I$HE) @E)$!* ¼ 8,E)``au]A$ y !!. .6!4 L!  K!TB  tHb! $M0 !뺯 e>!bzt\S ( ֆu!a( Cӻ!` K6[! *K! E0! Zqk>!bRR )1W!*  Knڵ!* Ŷ֭!   $i!$ @$ $!( R !  @! Mt$l!/  E$I! @$I!  `(H!, $I!$ \$$!( 4A4$! R $I>!\ ! +'iB! Ir$ $!U /El`%) I$!  E)A Š I4@E) + B*$IE)* H$I$E)!ꪪ* I$I$E)! I$I$E)!* I$I$E)! * I$I$E)!  I$I$E)! N$!E)$h  I(E)C B&X4E)! I$I$E)!  I"AE) ۆmٶmE)! I$IE)!  IhE) ' $IrRE)( $A%E) 2 I$I$E)! %@E)(< Ʉ$IE)!^* 4LSE)*  EE) E)! $I$,E)` 0E)`  p E)+ $H4HE) E)!*  6lE)!b* ̀"aE) @ $h$E) cqbE) 6,ۺmE)!B vm7E)! aLe)  I$I$E)!  E)!mp HܰE) & ۶mE) I$I$e)$! I$Ie)$!" (E)! N_E)2) ~d?f18OJ^<1!%R-ɖ 1 t:6me)E).$UUe)!( P Ĥle)!Eoᧆ1!> 0PE)/&$O1% k۶iE)! ۆm6E)! I$I$e)$!( &¦E)ؠ8 m $!U@ I$!a  Z,I!@ H/%)R I$L&E)! x $IE)* I$I$E)! I$I$1 I$I$E)!* I$I$E)! I$I$E)!+# II$E)!* dC$8E)z $IE) S$AE)!4E)ƀ DIE)!."E2?f1z6'ؐf1z2vbf1eK7 E) I@E) " $IE)` $I$HE) ! B$$IE) I$I$E)! j Z$tE)((0 ")I,!E)b@  E)!  E) & BE)b;A< M`ʘ!9Q"  QIr!Zٳ  պ%V,!{ Э߹ gb. Qiw!%6fn m)6 NWX a# ЊR  p:vbPB k* &:)!(b ,L4I n%܂H!+ $I$! !$ !* JI! 0I#! !"" !j* mѪv!+ I!I!* 6r9! ,rW! ` $!} {4H!  $$d!d !Ad!d "!@ ۆm۶$!!V -m$!( I6 ! b$M!0 &$!a0 ObJ!8 W '/ H$!z  m! - O&I!W Oӄ $!   $!!oy ILE)a  E)! UU  C@E)!UU &0iE)! UO"tmE)1ҊE)4,-?}f1G1!_?mWf1$!*;NB1!7m?f1k+pcf1ۨ oɍ:E)@ DI)E)"B " $IE)@ IIE) "$IE)h H$I$E)! % "E)0 @ k ۰me) ^* mE) * [mE): I$E)!( E)!** I$I$E)!**  H iE)  E)b ,) E)!~h( dI$IE)# I$I$E)! I$I$e)E);] $IHE) I$ E)!  C$ E)!p ۔LP%mE) DZ0E)  E)!( I$Ie)$! ( B, HE) ??f1$!9?1.E}|<1! &C І1j aI$e)$!(  @NE)( (ņ1*"_ne)  E) 7X `/9e) IE)& I$I$e)$! ( I$I$E)! dȐdBE)!_\ r 6! h `!A ;IN! $& I$!^ $M!A I^&I!a 17@a!a $e:$A%)!]] @E) $ E)!UU # DIE)!պU # 6E) jI mE)88& $C$$!!( I$!!^ im۶$!* $IIE) вBrE)!~qa9E)- h$E)!g)E)(d+hȴE)  $؜E)!/ mۉ 9E)! I$I$E)!  I$I E)!* $I$E)! $Ie)$!  [ѶmfE)$! ( "4`E)n`vM۶cA 7/g a !TE\02!:-x < Q *6Pv}!^w]Uvsc *"5n0,3ٻq!j*kI:0g _3 bk+%P)I0!I XTa  % $,8! E%!*  I2!jn hd!# $h! ("#0``MݪEIf Օ (v!+7 JC%A! (Ų! $!*Ҫ Ž~!( OM!a* $zQ!* kjKզ  ƌ`_!b> A! 2[!@> l!!& u7N!8 I$!` vٶ!(  )"I!@@ hKr!$ @91! Ҳ `h!bx $97! Y6i! I6 !b  8! 6!a ڠb n! $!!+z ! $!! $$aH$!!U $I&$!!| H4$!. E2;! ۆiY[! @ l$! m۶I;tE)!U $AQI%) U )$Q5r$!  *0*! HmАqE)( $bB! i $! $ HB$!!,x R'MD$!0 E)! @B&$ E)!  #E)!Z ۶m0E) &nE)  cˎmE)! PE)* E)!* "dE)(< I&E) "a4IE)B ! $IE)!* #E)p WX/E)a IE)( % $I$E)!*⋠ E)! II$E)!*( $IE)!61!'o*h1x I$HB&e)$!( $$AE)!  HE)  H$I$E)! [.8*E)x mfOE) + 'd IE) I$I$E)$! I$I$E)!, J׬E)6~t?1K8 g}kf1'\GE) @ $9TAe)!p "+Ie)!H(@q E),[)6LE)a` f Le) -7 HHE)  E$E) $A$E)!"# 8$ 1 @i! H$!! ^ ! $!!/z $$ ɐ$!!U d$$$!!^+_  ֺ! -;! $AD$!(( @ɖ E)* m۶mE)!U #M%)J* iFj%) 4rE) ;$E) Kn*PE)!WV9 1%6 $! ી k$! @,mE)  `$! 1$I$E)% $IE)& J0i۶mE)! $I 0E)!.b I$I$E)! dH$AE)!+ 8 E) 6 ZX4E) x$!w]v6j+ ԩk{aRdK$!!B<&]1KAĬ%G(-jXb"< a-%Y)5It$H!boH]4L-6ԫcgA@"NT b@M[S&Pu=0ECG A[ŒYM! H%N! XƫVV!y pRõ!(z&͠nj!~ DP-!{ v@!b* U!( >!aʬ U[!$M!c M$)!j $I!*) +m! I )! @ $M9!` M!' tTm!^- h$M! AAB!$  IdH!  Et$! Uim!* nm! 0!A` $! L!  %@! M$0! Цi$! :* B HE) 8$EE) ݐdÆE) m 2$!: iA$!@ m&m$!! 0$$E)Z ؐ E) ZMPcE)!^Z ) E) jU V$! zF@KE) IP'$! A0%)& E%)A B*$IE) %@ !E)! ۶mlE)! E)!ꪫ &`E)! $A)E) ` I$H$E)! HI$E)!. @$$E) I$I$E)!( I$I$E)!* #0 IE)~ ME) mKE)!* A"E)8h E)   I HE)ZoE)! B(ǕÆ1! Ӵ]mE) I$I$E)! ( I$I$E)! ( R$E)8 &9R$E) )XE)! + $ER$AE)0 I$IE)!" *  H%E) 4jE):adž1?d51/ $$Ie)$!(" $$IE) ڴmۮe)$! 1f1*c r%5 E) h u f1- $I!E)!" I&!E) @ $IE)!( H0E)` ! `u !  9@! $ID!" 0.A!H IE)8 @&mE) b+E) U uU@$T$!b*0 &mB"I$! Ġ(E)!U II$! * E)ꪊV @H%) I$I$$!!  ں T:%)* l) "IE)m :IE) u7*@E) m%) H:E)/ B#6@E)z   p HE)* t6`E)! "I E)!J* ÃE)aLI/  A h"MAB  $!!M4ib(4,ِ#!  BCBA@薭[ I 2( !Ʉ$!! ڭXA † IK!$HЮ[v(!;Xg d}#F!w fʇj!Ϩ6d4!)F$TI!5J" J hHV!h !ҭ!). ӈ!/x  qIDi! c !" $I D !  E!I! DH5@!)  }x! M;i AM!,  9"!Zk* @i! $hm! $IR$! $ ;!} t!a $1!_ OrC)!w+ 1M`!+ H $! C P!  $I! " $I!@ $HA$! &@h$!0 x$I$! A$A$!!% ДAH%) @$!![ K$H$! ڠI E)*  I%)  H$I$$!!( $ ,)$!@ d A&IE)a 9IE) v-E) %%) $@-5E)/z " fE)j HB,E)Ҩ [fضE)! $I$E)!+ $IE)C * $$IE)!Ux @$E)!%Wx E) - $I$E)! I$I E)!  I$I$E)$! ( hE) Ĥ#E) iJE)- iE)*< $I@E) I$I$E)!*MQmݶE)(p@1k mjE)! " $I$E) I$IE)$! !IE)  {&B#E)a~x Sw)tE) / *!"IE)@x BISE)p X8qyE) 0 "A ME)@0]5f1<' E) I$I$E)! !E$IE)  mۆmE)! ʎde)!‹8 6]&E)/ I$A E)!, I$IE) H$IE)!" 9iFME) T )E)jh !@ 2I$!!U R$A$I!0 "A!@ d$I$!!, @C$!b  $! )ME)* mцmE)!W L@$I$!!  H@! $!, DJ"%!$!( R`!b@ $$I"E)!w )IHE)!z I$I$E)!諿 $I E)! "TKE)@/ a; IE) N $AqE) / H 4HE)4( I$I$E)!(  $A$IE)b 0n)E) Z E)A؀ 0LE)"=7 &PE)@4 DHHE)* I$I$E)!A$IE) p3\sE)H  AZ#UjE)38  (I(!E)! THHE) B"t IE)` KE)bx 0! E) /  IE)j R$&IE) f j HE)# SI1*9Qf14as de)! ۺa[ E)0 HIE)!! $IPE)$ lզAE)ࠂ J% E) / I$I$E)!!,  ĄUE)!( 8 E)A EZl$IE) (ࠍ!$ $J!$  I%D!"ۖqIE) $I 4!p o(6! ۦmE)a m$$!U ۶m$%) m3! I yMFq!_ " L7CQ!$%; 9E) DI0he)A t e) ז+M[ E) $RDE)!]! #A$h$! ĶE)! dH$IE)!⫫ .R$]E) #$E)`J : E)B!I A$a(I$I$AI$I$A@  $I$@I &/~":pk+ D$I$b I$I$A$I$$I$I2~!^$ ˻6im1ڌe-@>#U A* ^?!u 6v֤46KdoY,1 }߿} [9J<![7R POV!ط 5 +O!Ha۰   )*Q!h* V .&!n^@? n* z " 60i$!a $I,( b 6!o $ $ b )}!^ s!^ 11Č!a+ 4H!) $ `+!O $K ! E[!" %e$H!0 T'!z 쓜!A 06IN !a $h!  u0!^ IIq!Au( I.m! /A-I$!* $IN$! /2r$!J( L m! HD!] ].m!@ 4 uI%)* bIE)  ;@je)+lZ-f1 &IE)!Ww "A&AE)J (&iE)!ګ dB$IE)![ ۼASB4E) p AMئmE) q": E)UX pv9E)* 4LSE) m6mfE)! %)jEHQhME):# " bE)* &E) y 4IE)% $I$E)! I$I$E)$!(( H$IE)!( ( X.DIE)\` B E)a ' $IIE) $ "aE) ʨ  I0`E)( 0TfME)a (%zE)<   IE)!P I$IE)!( I$I$E)!( & $eE) ϧ`4$! E)" % $I$E)!(j I$IE)!+ I$IE)!(*5JE),p/Vg4e) / 'ӊV)1k IHE)  @E)b@ Hvl;E)! 8 Be)0 E)!& I$I E)!(" Sc ܴME)!r ( n$E) &MBbE)Ap >;!b $L!~r!a~+ I2a=m!A Ӷm! #6y$! 6I$!-ϒ%)z O=Ҵm! Ct0M!A# 6R6 ! $)IP!, ]6ö$!!WW B2I$I!$1IE) XhVl۶e)+-/e)! W$:ME)bb IQE)j N$IE) B$IE)!j/ R%)`htm۶, I$I$ ( I$I$A$ I$I$b-`I$I$S;v Ƌm ֿI$I$(I$I$  I$I$ I$I$ 3 x aH!ACe/ͽ~ڴiR@8( mn }_ 7l!E)J1i X"b@6lr3a]K,V0 !!* x\!A(.4N!TL&0 zvH @-  btSv-FMvդ ߾ U, b PabH! b '!** $s a }1AA !x $_H!  "a$I!@ V!o(( h v!8 ,Z6!(!+ vC$!  &Il ! km!  ;n! @'I! Xv!* $' $I! *\$!0 8M! 0&L! rIq$!@ ۷!0  m!   Q$$!" r4I!@ $"a! $IE! i۶$! !@  I*1E) jcm۶f1`e?f1 -_mk7mf1o+#刵E)  TE) I$I$E)! * E)" !CE)!`# N=%)X  N >!A& S JE) PE)!] `2A$! %)b(jH sH !h 4@E)b"/ $I E)! I$I$E)!* I$I$E)! B#a IE)x t%E) mԀE) @E)@! ¤e$IE)"" B $IE) 0)LE)  $IE) $I@E)  I$!E)@ ITHE)b 9r9!/x !dIE)b0 $C$IE)!( %)a  H$IE) .ǵE) )DaE)  I$ E)!  I$I$E)! $B(E) e)ƌ< $E)"ˆ Z$$HE)0  IE)!"4  ADAE) @$IE)!ª* kvE) $!( #A:J!j$ m@!b@ -*J!@ P$-$!j 2.!!H 0N!a $ʂ$! $$!b ܦ 2!k ?$! ېk`$!* $MMZ$! T !b XH$!! &۶d!d lɔ$!*.heߜE)/mVE)J/۶ɛe)A*hZA#I$I$a:*I$I$AI$I$I$I$bI p ?-E I$I$ABI$I$ *.I$I$I$I$bmӶmbAC ێ0(*I$ HA!A$H$!A&aKcR 1b|!-&I8$ "b <2th׮]62 p F!a梨@GB !&.!bꪪT" !XfkU(@,E\eqт'5Tib),!"$I!JꪪN$ ˂~'ϗ ߷ UI  uf! gXBP!A  ڴ!? aV7!A j M!~ s'0C!z y7aN!-* qm!  -!* hq! I! [&! 0! r%HԔ!,  0!n $B6!b  ӗt! $$!U $!* C$$!a0 &A$!a ! o!  Ð[;$! mId!d A W! HBH$! 6ۆ$!!x 4 $E!(n}E);)@E) KE)( @%)!Vz mvm E)!5 &IIE)  "E)jB 9'?$! P!  e0$!  ۀ$!!H0 $ i,H! 0!bh0 L%%)6Z $I0E)! I$I$E)!ª/ I$I E)! Ӳi۰)E)` PB+eE)/ Y۶mE)!㮪3 H @E) I$IE)!/ A$IE)A h$m֢E)< "  H0!E) $IJE) C$AE)! *( C$HE)p 7E)- %H$IE) I$IE)!* I$IE)! "I IE)@( C,E)O ضmlE) I$I$E)!(" I$I$E)!( $I E)!Ȉ ۰!e)( B7`yf1< J@E)"  1H$E) $1(E)` )1(E) "$a:! & $! :!Aj $&!z  *! m$!U #$!@_ pE@$!b,W ID!~ Nm!W I: A!A ܐ$ ! N! W `$!b pL!A H ! (br! z8a۶m$! X$!* [M;!$IA+I$I$I$I$I$I$a! I$I$AT?1 i۱mI$I$a I$I$a2,I$I$(I$I$AB$IA I$I$I$I$ @$!A $ 0A M!bm۲ I$I$4!$L$ fL1l:@ qÁ .j lXbŊeJ㜮$"b d i1IA=v!` [Q!4dMhD0!z.y$I![[+$!a +UJ !(# b$@l!  =!Z :N!^U Ο!o¨ ю׉! B I!H(* $I$:!ꫪ J$Ic ! ג9!z :c! oۺ! :-=!Aj ݾ[$!_ Q I!j* q.4! EP($! *I$D! N"4K!!~ |X!b/ ! 4MV!! K : ӯ!A@QƈA|I$I$A(I$I$a I$I$8ʪI$I$!c;vA*U˟ [\I$I$ I$I$*I$I$I$I$I$I$aI$I$A) >I$I$ I$I$ I$I$A$I $I$I$I$ 8"I$I$A0I HcG *% @$!`2 I1!` uh!A|( @#l!` 4`I>!/ tmJ!* 4Ih$! $IE) A&$C$!!%X. )0!` !4yE)J !  E) $I $!  (n$! @!%` 4H!|$! 5 [n$!!  0,E)b  $Y$!0 DX"(!b 4p € A$! K$IE). $I$61%)` 9X+!-/ IH$! I$I$$!! 8 Zz IE)> "$ %)` tE)-? $IE)!( $@pE)!" $IE)  jCE) }FE)K, H dE) $H$HE) I$I$E)! $ R,IE)Р bx%E) I!W жI2@!A >@!az ?I! O"R!A -ԲO!A ~ ,%AC*! B4N$I!0  :I!x+ Otr!a *( $ ! W f !! i! @I$!.  I4! .,E)jd،A,*I$I$ޛI$I$I$I$I$I$GO Eرm $+ I$I$I$I$AI$I$a I$I$A@I$I$Ah I$I$A.I$I$bI$I$a I$I$8`I$I$A$ I$I$*I$I$I$I$ 8I$I$r(I I$AI$I$$A  $I0bXvЮa]$M&$I2 A@&M;6i A&Dڠb:8 m[`  @8sl !$D)"DA@,< aB6A%M!m_UUq5Aг\!^Ӧ9",p 0 * '94e!. >3b!! h MtAV!  S!f )mF!o  IPmW! 7:!$z!B '9I ] NxJ b~/+ 4 lI!/ X$I!꿀 lM!~j* YHިM! $#!q!j@ 17lN! -mv! % "!B` m!b rHn!஠ NT!Aޠ" 1A'0I!)^* Mm! mn! I$!  I-!@ Kmذ $!  ӿexbE)* BC $! $X%)> !`#E)b q! $h$H! Zܩ,$!( #4! m!   ڬ$!! AE  J4$! `"R7 ! ؀ Iŧ%)a t&hE); $ $!! R$ '$!b `L1!A, ֋l$! $ E)*jJ I$I$$!!.0 HE)!W? @$! x -vA$!" %( $!(( 8m$!b8 @9E) * $IHE) $0$IE)` IE), 5 ! p! / I$I$$!!ʨ $!!`! 72!a@ %) 1 E)' BMIE)  A$ 2E)!8Ȋb FJ4iE)( !* E)!(@TڑE) цmۦmE) ( $I )E) ` $IDE)( " ĺ1E)B @la! ")!Z* MMcI! m"Ė![ )qR!  m! #c! ۦIۆL!$ [ 6!* 2hI!  @&!A0  :4E! mvi! dM!  [vl!"* 0$!AnAI$I$+I$I$!I$I$A&AxbǚABlI$I$﫻I$I$I$I$I$I$AI$I$!0,I$I$I$I$A I$I$ꪪI$I$ **I$I$bI$I$a I$I$I$I$a *I$I$bpI$I$A I$I$AI$H$k H$Ia$I$b6AB&I$A H$I$D ( 몦V#i.aغh$!!5*!XT)5a+۶O * `ɚt`70(b`w)` b jT!b : sVo*! @!a Ԕq`!"  У`i!GI ^U'iI!{W IN !* !ޫ NZڴI! 6m!* %@D! $IIv!*+ rml[! q 2!h w6! ~ Ɩf! J2 !j #H! " !B 4I! $$$! EI! 8 (!`@ d݄! $Ð! ( i!H Um!+ `q$!+ 3 !A &@I$!r CB $! PPbE)' 6 PF$!. $OҚ!( &I@$!  :ʩ! ĀS!? @h9! eI F$!!  @+H$! C4 !A` ŐfO!A9. @ $!![ Z#AT@$!h u:w$! ( ) x&!a  @I%)*z B$!  @$! `d!A  &I@! $!! = " 1BI!@ k0I!B a!A $! H @$HE)< & -$!` ׿p!ب  @!b I%)+* 9IE)  $!@ gM?E)? "TE)H I$I E)!# $IE)( I$I$E)!.: "$QE) B ۆmݖE) E)!j C$IE)!h+ H (CE)!g ˆi LE) 4RB!^ `Kʦ!_ $$$ Z! I>ĺ! b( +U! ~y5!A# $ !~ |!Z >&! Fo+!# tk;`! . EI!  dHE) .DM!b[؊mAШ,.I$I$aI$I$aI$I$A`I$I$bkvT!A:.AI$I$bI$I$I$I$*I$I$AkyI$I$!+**I$I$! I$I$A I$I$jjI$I$AڼI$I$a ((I$I$I$I$b**I$I$a(I$I$b& I$I$HI$I$@I$ITI$I$A`8,I$H$, I$I$@I$ b!I&M  ItA:  &H0b($BI4h1A hZ{<aD`̘b(" `6! v,!A ( dƤA! 614!` kE) ،$! &e[tL!* QMI I!" %6n!p( ml$!" K5m$!( !8&$[!(( ڤ Q%) $.$!,| u)$! * ݼv$!.( )ńHJ!Ђ uiT!  $H I$! ( ;@! #6!p Ig!' a!A [- $!!o  !p f!A.8 E%):" $IH$! "a I$!  ;]n$!,3 $`4H! ڶm۶!!@  qI! ˁ30! (`  i$! C$I$!  & ()!@ #,.a!`@ 7Pnp$!> B$! ym$! < !A h"/<$! 1 E) / 3pmE)., H$I$E)!ʪ I$I$E)!ꪪ %),IE)Š PFE) ,3 Ök?&n%)" $")E) j $IIE)(( R(&E)rJ @0m!. 3@P,! l8 ۾! @D ! _<!]j ҶQҐ-!* i VI4M! IM !* Cdk!  sH!X* I' !- O9%)A+ t! ʃ) }>$!AhnAI$I$zZI$I$I$I$I$I$KAƳ]baI$I$I$I$kI$I$AjI$I$aI$I$!+I$I$A "I$I$I$I$I$I$ajI$I$A&II$I$I$I$`I$I$!I$I$ x.I$I$"I$I$8 I$I$b H $I$AI$I$ I$I$ I$I$A@6i:db ˜ &L$݆v6hi۵H 24i: ! I$b X *  ]vjs< . `s8p !aø!W]m۴"XuMMaa56 ѭkr ׽ZI!kW 461!. tGA  ضi[!ݫ TȘ! ̴J' !  BK$I!ƪ [& I! TB(!  )$! j( (I! (I! @0I!  A$!( $M! d`! IBL!** BIR!" #6i!x ɹ&M!' M! ڀ 줰6E)A I4!3` S!e5!0  ڂa;n!Ȁ$ (U&(!  4ɑ! 4 km!b  F! c `(! ( Jg'!# Brѥ$!< i !  0 @<H! ݔJ!a 6a!A & P- $! , иs!b( X4X8!b !' ()!@ "%qRrL! !&! -f L!   $I$M$! $IH!b G|!0$ ! " 6i!$ L&i!A Bw1H$!@5 ! Md! &7 B!b D $!!H! HI$$!!, ˨e!( \dC!  ! 0@! #a E) gλ<!/? mhE)! $@ȄLE)",$ I$I$E)! ۶ [E)! T(n'XE) 0RdE)!Y $@$$!!N !E)< LE)!o 4E$I!2  *)8 !@ @! `0I! $d! !C 0msK!a{ f8!A@ iW!  I@! CR$i!* 4r"i! H {L!A؀aL۰ I$I$aI$I$a<I$I$껺I$I$I$I$A*I$I$* I$I$A"I$I$I$I$jI$I$I$I$A* I$I$I$I$A(8I$I$a I$I$&.I$I$I$I$I$I$I$I$I$I$AI$I$A I$I$`I$I$A@I$I$$ (I$I$I$I$(m;m bs"@$I$I2 I!HAH$I2bfHI$ $B B- @];lbX͒$ 9 -)`*Kw H  un=(WBT!a7J (9bı , ! Lx!+^ r$! !a i!II!Z $) !* $!a( ۶IŞ!B &wa!A :!V $!@ i!Aۖ$ bv!A* X7!!ꂩ ;$! Pt!an. <1=! Lw! 0 !"&  C$! * m'm! * `"`i!ax )P2U!A. Z9Ф!A [n+4! %BR[!B* փmM!Y a`! "TIe!" $RR! -2`$! ( *GBש!< S!0a `p! $@P%!  h,<! d`)! &  @HH$! 鶴[V4$! p =.!X`@ H ! E&W!# , -vCa!( 2!e Æ! &#I$!a H @Q$!A  3b8$!옲 Ib! ٖm$!! ! E) X <!p@ 6A! : 0$! $I@$! +(Z,U! 0Tp!< " $! ۺmŖn$! 0! $! /5$!Xr` pI)C$! J$IE)* ۶m`E)!~e Dp$@E)  <,%)! b Z*E)몮 iݲA$! \I$!b InmE) 4E)zr ks!U*d;! 6 !)j&!aj X X!* u$1! ` O+ I!( mZ/!_z ?:! ɗ?!/ T`! * S!rhxH$I$A*銪I$I$參I$I$AI$I$I$I$A|hI$I$[I$I$AI$I$I$I$I$I$A⪪I$I$ I$I$I$I$I$I$I$I$AbzI$I$A-I$I$a ( I$I$꺺I$I$!I$I$ ../I$I$I$I$I$I$I$I$A<&I$I$I$I$!8I$I$b*z !Ea`H IABI$I$AI$I$ApH$I$A<I$I$ I$I$A ÔMb(@YI A/ .Z4jTkr0 ڡbs a$Iaڦ,:@49rb(aj a*x~z$4 AO Z MML!* Ҏ p bN) %A * F'' WU atw! ں 't! W F02!A:j  m!h PHҤ ( ؐ&M۶! f[1!" mv! "!H mѦM!ꪩ* !_h O`L!# +!WUz `?I!' f O<! oB!c XtM !( 6AɤBR!** C@$!`+ d3!A 6 ۆm!   ")!!+, $iI! 4.0!~p dJm!"* "@!bJ fI! 4A!( .zѻ!j, 4I$M! 5խ*!88 p$IJ!B 4lK!A (6I!@ b0IY! I/!= „J!  A!A@ äm4%! H!  lti! [ѥm! @!` 2V! * Aj!< ].[$!"  "! B 9˅!b &< @ $!!o B2$$!!@@ N"q$!a@ j$!mD TlK! $0E)*  )d :$!( >! Ϝw .. BE0I%)  H$I$! $i*)E)j $Xn!%RE)- 5!" M1P)u$!A&( I`$!! $I$!  ɒ*i$! ФI۶!* l!8 ֤m! 0S"I!Z dcmE)z v6E)z t˕E) ݀ME) %۶8E) }±LE) j E)_mq$ $I$A,I$II$I$ꪫI$I$a*I$I$!I$I$AI$I$AꊪI$I$I$I$AbI$I$A@pI$I$A*I$I$aI$I$I$I$arI$I$A&I$I$a*I$I$ BI$I$I$I$Ab{۔I$I$a(I$I$AII$I$I$I$`I$I$aI$I$I$I$I$I$JNoI$I$ I$I$  I$I$ I$I$A$I$I$HI$I$BI A$A@m6mA!Mزɐ,!Cd"bCI$`H $a I&#j:[),9A@R$B aP`O -Aڶ rX0! $s a p!0 󤧠I  Md2 !!Z ,E)Ak gڑE)*ǥff1Um@e)%me)A$Ie)U B@E)oakf1 mxqf1}8-ϼE) !i$ME) IE) $IFlE)ضK9E)$ 볍6`E)_ QE)~ &#?! X H'! m؆! A$-!. N 0M!  c! 6 $!d!*8  A!2  e#%M!} >!7^   H!  ( l6I!+ (k؉!80 Bj! ( Z8z !$ hu]# !, #(!6p@ u!2 k$i!  ?lI! 4!?d $I4!! B հ!T!"ʈ# U(!(  h! (2 I ! L! p 9!쐢P L`!"! Š+!* 0hfj! P.0 !` @@B!b $! $ !  9,"!0 ˀ qE! " D‰:! غۖ $!!f H$H! ˏ?`!X  !b I$I$$!! " $!  '+E)!W sE)~ ݊)E)62VhE)j 8ke)!~u8e@&e)IRle)Հ IE)b{Ne)we)ߧ(-7+f1 KI E)! l9BdڲE) cC6ض1 z Pme)$ 4%S)Ae)! Ie)E)7 o&E) 3A mE)z I24iE) ݀ 'ME)A^ He) zI 4! p$I!,)I$I$A+I$I$I$I$y~I$I$!$I$I$﫫I$I$I$I$A $I$I$ I$I$AI$I$"I$I$꺺I$I$a`I$I$ I$I$I$I$I$I$!pI$I$ I$I$AI$I$I$I$jz^I$I$'% I$I$a I$I$ I$I$A`6I$I$AI$I$ I$I$AI$IAj<. 0II0I b II$A I$I$/" 2D$!AMס[(M8!s)64!ø T[b!Z Y6E) |iE)  OE) ( @$HE) $A2$IE)! 1DE)@  E)!* i۶M2lE)!k=f1!ukSA1!  ~'] 1E)UU*i۵-"1$H䘳m9 1vۖC1!oI1$!#5, e)@ iLe)! ' ӲE)@.ж1 j* R]IE)@2 ": E)!"@@ $I"e)$!* p:'iE)  ImE)x BIE) `E)  -@E) r 2E)bh 0JtH!+* &[jȡ!8  ؖm! "J!!aB BK!. ֵ v!( Kum۶!, Np@(! RFI$@!! `, !b؀ != m%! &: 4 2! hb ^y!" =!|@ fI$I$! HI$I$I$I$ajI$I$(*I$I$I$I$I$I$AbZږI$I$AӢ (I$I$I$I$Al`I$I$A6- I$I$( $I$2A@ ?O%) T@E)_ i$IE)  4@E) 6 &6E) IcE) }E)߫ $ E)տMN@e)ݿ 1I$ f1 ;"۔f1$!Nݰf1  $1$! @3q IE) ` mIE)!j) J\%He)Z5+ 11jPԤĸe)!<lEe)E) WdYe)E) "-`e)E).  -e)E) .$f1 (*H8f1!Fa$If1BeWe)E)vc྆1"q1+ [q1 He)!)E)!*?f:e)jN²1$!c TfI61 j`1hn;#?1Whw$ 1U nO>E)U$f1 >U&f1  c f1! i$&E)* ifHe) 0 aDE)Pц1E)zU LMe) mSZ'LE) ]-%N!sɴ |CNp_!a + @IJ!" ,1!(" 1 J!AK< "M!ʊ $$! z Ә-4!` 'i! )&! @5ɖ!k &Ti!X" ۰ض"!* L"X!( %S7E)z "GIFE)+ E)!  H$E) # :e) mE) MHE)ߪ "$E)կME)UivĶe)!U+('[f1/1  $me)! `IE)  d# E)`I;)le)E),4ue)5e) -#e)E)o-e)E)` z8e{ʆ1E){ pOe)E)Ȍvf1&Z!I1$6re) ܐ&e)$!Ԏ Vre)! s- !ine)E) g]l:r1$!낞 1E) Z$fe)E) ZZ91!ڊ*n)ke) Kؖ1bn /Ie)!uE)(lof1$!-`>1!zzöe)_k?lf1W uE) WQdž1* I $f1! m۶`f1! &@$e)! - Hm5e)$! (e)E) T#`5ME)`$|IE) ' I$I$A84I$I$I$I$AjI$I$A I$I$a"I$I$I$I$AhھI$I$c@I$I$a:I$I$A(nI$I$ & I$I$!<" I$I$I$IA؜6/m:< $95E)+ }4IE) ER$IE)2 !E):0 6IҦE)迪 mڶ!!sfHf1 [re) U- A*tE) $e)b hm4E)! 2#L1!oF Ge)!30 ]Xve)E)`+_-  #HE)@ rd۰E)!"  "CqE)@u+f1$ Re)E)k " ΁Fve)E)VD1`hRUe)8@HXe) mKi1!Һa]lV1*1g#We)E)8"6TSFf1! PҐ8e)$! FHe)!< [ZH kse)E) *Oe}1$!ں n:Sle)E)((  'e)E)TMJ1!j*v/he)!PTޖf1 cI>a1$!탉$E)0c벆1$! bMK1%)z{vf1_m?l 1U_ ېwmE)+_Dw?f1&1!+m۳@f1$!~ 6A&e)  Xm"e)$!  ve)E)15X Nlce)!x -' e)a XUx E)X XUT! BR4>j bpb d!a( ۊl! 9! $ )d va  *: ! !J* P4q! ]7+!J. #ٗE) ]& $IE) H$@E)&  6E)  ۀIڶE) i68!rrm me)+ I ue) + $"e) Of1* HB$E)! ZљIE) [6e)! kR`ke)E)"] S9ܤme)a $mE)![YcH1**]e)!* 1ނe)E)'9e)$!x1> Te)H$1!킺鶆1!jԪe+` Dzf1&Le)E):JQe)!(4dP+/І1&u̒ z1E)Ml"Rf1( ]Gxe)! `$3e)@Tv# 1 uCe)@ n Ge)8no1 #f;te)E)Vf1$!d-1$!z*;qDZf1z ) e)aɺ1E)UOA1! 3W1_.'Ն1WNe)~%e)+: f1 z  M\ۉ 'E)! <ie) d m,Xwf1E)^m1h z _', f1A '$!AڪI$I$ArڜI$I$I$I$ʢI$I$jZI$I$ I$I$I$I$A I$I$A|Ԙ7I$I$I$I$Ix %) 0`BE)a  4E)(@ #9taE) cSPE)x/ LǦAE)- 6 Vf1 Vkɐe) &0ǐN1B nE)!/  ie)!( @ 6de)! $Ie)E)`# de)! m۶]e)E)#^ mڤe)E)/zU 'L.E)!  ;ke)E)W 84E)$!( YUE)! \(le) IK1  ǵ㓆1E)Òze)! XgAe)E)8Dв1) 䘛?f1E)UPRe)  U;e)E)8f;1m-rk1!ꨩ-B\uf1! ZHUe)! (f1  FGi1 vR1!lnV1l֔1 ͣMm[e)E)T;$0f1$! j +#af1E)o^IBe)@S&e)A 6:e)$! Pm~nΆ1$! ުf1~m?-1_ =E)  nf1 6:rf1*h+lmf1 @:R 1!^j+ NE)!\K11!z/ji[Xqe)z# zU[4E)a p4!A&8 VjW!뮮  S!! M J 趪 RK!A ln IE) E)b   DBE) " $WE)7 m E) / m븝0E) Trf1$1u1!* xkBM1Ҫ ܦME)! mqE)!! h[E)( t6E)! ۦmLE)!  mۦe)E)*W 6cme)E) z Rm:E)$! `;ue)E)U ඪE)!  */hNE)! bs`e)` zOf1E)ׯ 5ge)E)$2GXne)3"Df1!H؝f1 ~/f1!JJ(DJ1 5ƶ(e)E) TIp%) I>E) "H'E)@vf1  HjE)Φ ^ǑE)!T Ade)v&ne)*`e)䄌le) TN1$!I953e)$! LRe)E)xe1!$S 1$!*--f1 @c_5$a1b -@of1 ?`>1!x_;mb1z ee)!UXĚچ1!UU v16+mZm E)  r ɵe)b KZie) 6Be)xɿ'JY1 ޠ2 !I$I$!I$I$ `I$I$A &I$I$ bI$I$ bI$I$A%$I$ 8 1JE)- 0@E)-ڸ(E)@(m91^-b7E)' sIE)p- H$Ie)!m/ kvme)!ފ $H$HE)  I$IE)!(* I$I$e)$! $ eE)  ЖhmE) [68nE) $I$e)E)U H$Ie)E)X?= mE) FUqE)!  cImE)! %@Ile)! $IE)!WFg7E) 6$E)W I%)^ AI %) ]* ԶI%) E) d~"HE)Aޢ PI, E)* IHE) `#E)A* D Ih%)_ I>aE) m;E)E)*H!RRE)a$ 0+Hnf14 Iťe)b2le) I$Le)-Iq!e)0) ne)!00 (hIJe)$!  4re)E)?eFf1* ԔLe)! ;791E)kz#7 f1ɢ &Qp1*XA91$! ~Nۀ1*fee)s׆1!UUl*Ԗ1a*e+e) (ó ȉ1R*J V XnE)  ܦ e)!r* e"5e) ` gfE)b i*"!n Dӓ&h%)z qf E)ۺeE)*6* >1֋xE) piڶmE) @@$I"E)!3  I"@E)(@ m݆mE)!  E)! I$I$)( ۰"De) *(4 ЖmԴmE) 5AmE)$ !@$Ie)E)+U_ &"E)@ FmE) f e)!( NL &mE)! 6 Ih;E)!~$E) d&E) cE) IR%)W IE)_* @IE) IE)UdNME)bנ ж E) IIE)} vE)a*_ 鲵Me)!* 5m۶E)! $m۶E)!2( mvE)!l im۶mE)!W ,r IE) F)E) CTHE)! ] )&4E)!׀-3E)Az+pFƆ1 ˼e)! )81!& ne) z}Lچ1E)W6re)  u(01r J#i1E)^ (ޅ\e)E)&711!*f1 1 o΍>1x]ymb1-ڂ-%f1* vۊ 9e)!( F-۶mE)@[bVe)! BAvhE)a`3aE) p$I I$I$kI$I$z$I$A0Ar '!Az/I# E)uۗ%E)&:5 f1 `-14N|f1 `xl۶E) H$IE)!* $I I0E)! I$I$E)!* A$IE)B نm۶vE) )(( I$I$E)! $IEE) $I$E)!* $ie) (4 F4&HE)  $H02E)j,ْmsE)hmY;E)!^-x mE) $I!E)!__ $C IE)* =E)   $IE) $$I$E)! ԌE) @ Q)E) C IHE)  #AE)t  r%;E)! aKiE)$ 1d#e)E)uߠ['m1Ҫ Me)$!( !A$IE)!* $mE)!ˠ $L$E)! mmbE)!] $B"HE)* QeVضmE)!=~ IE)$ ZE)! _$Cre)!hL`Ee)@z -e)!"-a9F1![0MԀrf1",dCֆ1E)_ jV1!;!1 JVI1! > &e)E) ṯle)$! Mm1' 51`*=1ꛥc1z k И1/ kkE)! H"$mE)!@ UDK E)$Q`e) $Q E)7wf1{>+F 1z70&mۆ1ؽ 1H$IE)7 H$I E)! m6lE)! E)!@ * C*H$IE)R  E)!+ I$I$E)! $IE)!7 $I$E)$!  iHe) *  miE) @D6E)j$IlLhE)~?;E)!_| mE) 4mE)!UW C E)+* WB&IE) J$IE)( a;iE)! n7E)  -E)` !C AE)!  +IE)  ڴME)! hIe) lHrL3E)!# F$ME)  !&IE)@ `$&IE)r I$HE)$!  E) $H$IE) $I$ E)! L$I$e)$! E) I$H$E)!z I2$IE)!z )IE)!px  ɶiE)!WІۮE) Ibe) z11! Zhoe) P?]ٿ1E)"EUe)E)<JNf1  Ҩqe)E)}G7؆1!knDe)$!lr1!/!hS16*#j^O>1'x-wt^1 $) f1 a;1e)!< bdю@e)E)Ѕ8 (`RE)b(ne){L9e)ap~- O! GR$!, D1 91ښ E9N1 pehڶmE) H$I$E)! I$I$E)!/ $$EE)@ FlmE) $I )E)@ h AE) I$IE) I$Ie)$! * R%I$e)!Z mvE) z%m+f1!Wpbf1!U-x>,mE)!x Nں5E)!q` im؆mE)!* P$$IE) $I E) I$I$E)! I$I$E)$!* I$I$E)! I$I$E)$! * $I$E)$! ذmlE)! K$E) $IMe) ( I$I E)$! $TZ1ڢ? $Go41 qE)0  HIE) $IE)A  IE)! ` HE)  @˄AE)$ E)!@ A$I$E)$!" $I$FE) IHE)!z IB Ie)! 2rۨIE)!Bp f 6E)!Wt PrE)ޠ/ Ne) ?f1!+vrx1 N:ߨe)E)`{Wu҆1E)Lrf1* :(e)E)7`,%1!SXie)$!|ds1$! u&Dwf1A(-bN:1 +sb1/p,Lf1- ~ɍ&f1$! v`3e)E)Xa 5e)+f'mۆ12 H$HE)- I$I$e)! I$I$E)!+* *łhE)  'E)!(! $ $dE) (HHE)@ H$H$E)! * m۶E)$!" $IE)(m۶sE)!^ $>f1!zU-X E)!WX[E)*hSE)!\2 !E)! @$IE) $I E) I$I$E)! I$I$E)$! I$I$E)! I$I$E)! $@$A2E)! $ HE)!* #1 1!* 6n 'lE) &  E)@ $GCE)< Kqe) @%0 IJE)B E)! $A$I"E)! $PR(Ae)!*" I$I$E)! $A$ɐE)! m4!e)! $IHE)! "$IE)H نm۶mE) R $IE)0 $Z E) 1$Mf1b &`UE)0 t0E)> j"@E)րo۶E)X lf1 o .ڕ8e)! M.%+e)E)*{tӪ1$!.jKvV16*,1mf1* bK0ņ1*lrIf1%)^몒t}1E)˵W5 '1Ah>(K<01ԧ1b \} ;f1'eS`Kf1b* $R$e)! jE) L.E)`jm@4E)*zG'Iq1aMIS0L1ܭHm۶E)4 IiE) $Ab E)*88 ۶ E)!*n IdHE)( [ɛMe)  HIE)! ۾ iE)H $I$E)m۶E)%,1/%[ۆ1 h me) M%H$IE)  m۰!E)! J I$I$E)! $I$E)!* & *8E) @E)A6 I E)!6 ضm۶lE)! $*$E)! Z IH$E)!"* $A HE) $iR#AE)` A#IE)p 6I`FE)   E) II$E)! $IE)  #IdHE)@ Xm۶mE)! I$I$E)$! I$IE)! $CAE)!b I$I$E)$! e)$!  ɐ$I E)!" R%IIE)! II$E)! H$IE)a #4 IE) p A#AE)`0#9E)!@ hf@ļe) ?=qE)x RF?E)Z )IE) hSe) U% 1 RQ&e)$!{w1E)߿\z'Pv1 kͱ1 A$%0f1 *`m1!ꪨ|Ӷ1$! "A>fif1!(*`~ɏ>1/#m=f1 .I1!o Qm&Of1!/ $'u&Le) 4ʐE) ƦlE)!. $I! E)!  ((IE) ``. цm۶mE)! %A#AE) ` ڦm !E)h$m1)'>f1 "O'trf1A*ڪߵe)$ H$IE)!* I$IE)! I$I$E)! $I$E)!**  A GE)  E)! $A E)!:' E)! $AE) 8 ۶m E)!j 4HIE) $R$E)  $R$E) .`:HE)@  H$IE)  " $IE)!H* &HhE) BE) ȶm۶mE)!$ $ME) ( IE) &I"E)! mvIE)! * TImE)  $ME), E0KE)" $A"E)@ AE)A II$e)$!(* E) I$I$E)!. &! IE)@ DA"AE)@ $I)E) dBe) z }7$f1v 4Z7d%)! m6E) @@e)  L@e)E) e)E)<  T'm\1E)} f1€tGn1!ڨj1$!ꨪsjG1!b !9c1`9Of1 c' Щ1 q xE)&A?1 ?O17 Hh1X6$!(  TIE)&*("  I%)b: $IE)!* I$I$E)! H$I E)!辪 $I$E)!* $I 0E)#}?1!_Չ 1! #mf1د L%H$IE) h$I$E)! ðn6`E)! ًAE) $IE)@ I$I$E)!+ I$I$E)$!* A$IE)!" [3s E)`b< HE) $IE)!  IE)! I$I E)$! I$I$E)!* %F@E)!""{ H0vE) $ 0-E)Ab X%E) Z IE)b $E)a  ؐ$E)*_ $I$E)] $mE) 6rE) mЖE) m۶M E)!* 7cmE)( R$4ME) ,YE)`( $Ce)$!** 4FZe)( I$I E)!* A@E) I$I$E)$! $@$E)!   $ E) $H HE) &IiE) +5@f1޼ PN!! "@0nLIE) 9@&e)*^ Ҵh[Bf1E)j `ޖ[e)E) ( (H e)E) #h1!Z`W)#1!JiC%e)! u1$!/A\nf1' ͋ڛ1']9!f1 m1! mue)$!(Q$E) [qa71 m۶K;4E)!( $IE)!*Wm?OA1!W5ka1 "mۆ1ޯ H$IE) H$I$E)! vIE)!/* E)8 B,$IE) H$I$E)$!* I$I$E)$!*+ A2$IE)!* R$*%CE)b0( \ˀ IE)!eG8* I$I$E)$!" $IE) I$I$E)$! E)!  E)!$( IsE)  & E) Da'E)&~ 4IE)u ($E)a_ I$E) W $I$E) iE) I $IE) I mE)ՠ w[?yE)a~ 0 + %) tO~%) ~ $;;E)A mE) 6IbFE): 4 )e) j dHe)!  "E)` L$H$e)$! ЄIe)  $B$IE)! ER!E) K!r۶mE)$( c@lGE) #A E)z м;E)+'e)a}b9إ1]Jƒ1ƈRe) Vf1E)&pjf1!(q1":45$6Me)@+e×1jxGn[E).D1491a' 5'1خ $`bJ%) )b ҤI$!(  $I$$!! / I$I$! $I$A2$!!x !%)b eHE)+* :$ P$ E)  K$f1+wAsf1 +(۶mۆ1!XUU} k@$I$! I$I$$!! ۶mۆ`E)! IIE)!/*+ KHTH%) H$I$E)! Jz$LE). $I E) $ I$IE)$!* *) E)@E)8:m繍E):ĂgE)!ɲ(E)h ?QE) H E)!* !Ä$IE)!m mlE)!y " $IE)j ii5e)!* me)! ! meE)  4IE)!( $aE) ~@E) O%AE)A_ I iE)U [;E)a $*IE)׀ TuE).z  E) 4iE) EARe) <Z  ڎE)@ IIE)   aE)@ TH$IE)! $d HE) I$I$e)E))  8(Ae)!Z ZPIE) mE)!p( # E)x )0E)ޠ c&E)avY'1hNh1!*:$QȐf1 pPe) "<C8f1 $H ee)bͱ5놵1!ꪨmdž1᪚ox*1DZe) v r1!/% mԦn1I[MBE)32 yjf1!<>`چ1h|m[E) @$I$!b I$I%)! $I$E)! $a"E)(@ 5I4IE) II$E)! IIE)  ۶mҖ@E)! I$IBE)! 75E) `#oE)9E)E)! 6HCAE)X qnE) $IE)!ߪ* [n E)!} E)!_ R*A&IE) ۸M!E)!@ )0lضvE)! ( LE) d#&@E)! I$9he)!U ̄ af1. AEmE) $!E)!$ dڮe)E)bu dB$I)( ;9E)` qE) 3mE)z  iE)  E)  Bi$E)h  IHE) ) $I-E)j aL$E)!( I$I$E)!* R$@$IE) I$I$e)$!* I$I$E)! @E)!   $OE)@ ؃I E)؀ 9'-E)^m'1 9e)+$r%f1 Jɐf1  pSj[w1E)v:{f1!z^u*m~f1z/+[Ć1'pxme)ܥ @fm$!(  DB$M$!  B($I$!b H I$! dH$IE)  H@%)6 .hZ:E) 0'5e$!ֿ 6H,!A @(* g@H%)a  H$! !, l! HE)!z :$!a  I$I$$!! / @$I$E)! $ 5E)*{mۖIE) .2?Q1n%1f1)+1Ilۆ1+Įmۆ1 KI&jE)!* @$AE)$!+  "AIE)@ U$ aE) $IHE) L6rE)  !۶mE)B $(E)B HD E)ME)v Ae)! ,ME)@ @hE)@ 7 lJe)> x If1/  P&ME)  6DŽe)E) ۂ C$I)( )۰mE)!H@ 8E) % # fIE) x $iE)ME)+P iKIE)ª $IJE) $I :E)! ^ mlE) H$I$E)!(  ڶmE)` H$I$e)$!( I$I$E)! E)! -RmݖE)!@ UMQE)r O=B E)A RJO >E)a" xInf1+:w"I(e)@8f1* CJf1E)231 j\me)! !Ӷ1$! [z1!X+,1զgE)]Пf1 &{f1! mIe)E)S  MJe) 8( I $E)! ( E) $!b@ $H$I$!  I$I$$!! I$I2E)!_ &E%)ksf1+)'0f1z )S`߆1!W/x,5mf1 짪صmf1 '@4HE)!*  I !e) *J #H4HE)p 0%I$)E),B $ E)!  FnE) & Ie)!R 14E)a` M( E)@ ȮI e)E)Blqd-He)!# dԦiE) [m޶ME)` mۆqf1! I$I$e)$! $ntE)$ ]f֦E)  MYe)E)w, 6–hE) $M\E)< 2$IE)! mlE) B# AE) $IE)!  1&IE)`&N1 &De)*}}.f1!W $ICE)- I$I$e)E)ZWS ۆm0,E)$!( ۶mDE)!  -&IE)@ H$H$e)$! ( # $IE)!p ZmFNf1~* RIE)a-M9E)A-" DKe)Ȱ0؆M\1f1{_?q1{-1a  @ ! j"a!( iTI$!! I$I$$!!6( @$!! œ d$I$!!> 5$! $Z$!j@ " w6~ !b [0$!0  9!p 6CI$! ذm6$!0 $!!p- d@$I$!!> $I-$! (H!@ 6V!* *۴me)!uM,[f1 crIE) 4r9E)  I$IE) I$IE)!* $C$HE) I$I$E)! m۶mE)  `E)! &G#e)!( I$I$E)! I$IE)!( #9E)!R mbmvE)!  IE)! IGE)< m7i۶e)E)u  aE)! $HTLe) ! A$Ae)$! * MeE)a 6m6E)! hmKue)E)^9 $GtE)4 $i4E)   IE)! môfE) " E)!@ @H$HE)! $!4AE) ` mvbf1 &}'f1 Z |f1!^ $ILE) I$I$E)! I$I$e)$!  ۶mdE)  !$IE)!(@ H$IE) "i$IE)!@ pre) { *ɹ& ME)az`N'E)b ^"9(l1Bj/!Pe)@ c^f1 Zb je)!@.1$!1*'e)!(`f1`*e)ϸf1 'h\)f1!b )(IDme)!  v`9E)! " K$IE) B$IE)!h $I5! V!* ٰ ! ** &($IE)ª*D-K6f1j iu@/E)* )ڸmE)@ dHIE)! IIE)!* TIHE) ۲mۆmE)@ I$I$E)!* "He)!j* H"$E) I$I$E)!* !I$ E)! HyE)  6,M׮E)!.  iE) 6I@E) I$E)$! A"E)@*mɍц1! $IE)! ضm4E)!F m E)  A$IE)!4 E E) –C%me) I $e)$!* 6me)$! m.MmE)! mDe)! uE)! $Ie)E) j8I&le)!\ @H21/j:As71!w~ Āe)!` Z* mE)J kY E)!*# $IBE) E)!  6l۶E)!(0 Ҥ$IE)! (T˲f16 i=E)ah /!Ig=e)!.߼wֆ1  ٌ$! L4!  !$!!Sޥ $ !@ A]$!0 m5! H*>!j& [ J!b 0`! ڴAe!a ZDI$!( M! Ʉ!I$!! x PH!b 6$! A! >Ea!`z/ ONT!( IM 4E)*b I$I$E)!ꮨ !R$GE)<( 2) HE)` H$I$E)$!** "@$IE)  IIE)!*   IE) DBIE)  I$I$E)$! C4E) E)@ J$IE)mS1!.5mI1!o LI"1v_+e) &1E)Um۶1z+mC f1$!5oIf1* mbE)!  E$AGE)! : &HE) dH$ E)! j1Ӵe)!.P\#9f1"" m Ie)$! ڦ]׶e)$! I0IBE)! Dm$*E)@ ")DE)!< Ŗmve)E)}+ B"HE)!p ۰)E)!5x@hIBdf1  =ǃTe)!\% SIqE)`. H6E)# $ILE)a ۺ5mE)!@ I$I$E)! $dIE)! %ֆےe) /mCf1A` 9D`E)a-jFR)f1b*vN1*  -$iXe)$! MPe)E)& !8WSe)E) P.yBe)!` E2f1 4of1p)4;1!IuUUo c깆1 -ڶm۴E)$!=J E)a m3IVE)! E)a q[J$!* $I EE)+  I$I$E)!: 4aE) P4\IE) I$I$E)$!" I$IE) "a$E)@   E)@ IDIE)!  II$E)!* I$@E)  R$$IE) m( E) +cf1 7mI1jII1*j&o f1b & ϓ$y1E)wWm۶u @f1A 7}R f1$! ֶ۴)E)!($e) jh!ae)!pfE) &d@2E)!꺀 ҔiE)` AB$6E)!Q_ mִE)!  $I"E)( ܤm3E) vbE)! E)!( m۴hme)!( ]Ѷmfe)E))^ *^d@e) 8 6iE) @E)!^LZmE)`6Fe) ؂> Ǧm5E) z I$I$e)$! c0imE) I$I$e)$!( A$mE) ͜E)_w |a!b*  $! m4-! @  @! KlmbE)  E2!  @%! 4AP*! {!a خ N/W!A nh(r! ( qQ!( $!(c7[%FE)ʪ l$I!b !I& I0d!d @$1! 'Ⓞ!bz !+ 1ui!+  ۶a$! I$IE)! DE) H$I E)!諪 ` @$IE)! $I 9E)*p I$I$E)!  8E) r dC6,E) &E) Z Plr/E) ^m $yiHE) eBE)A  $IHE)+&\0ޗE)231#mkf1 ؚmE)! Ȕ3GqE) $ #aE)  @NE) nFL IE)" bE) mE)! ('E)   iYE)# VE) 6kmE)! , `E)* !$mE)ɂ !I!E)  $AB74E) r mɍHze)!: *cE)! aӶmE)! mۦ[e)!p ֶie)E)X $Re)!P $*FIe)@ hҶm۶E)!X0FiE)A,De)*ȑ+/E) ,H ۶mlE)! #4KE)!P H$I$e)E)_ r$$IE) `&me)  ScNj;E)! j"4@E)Z{M9E)"+XKrf1* =1E)_}^pDe) hme)`ڌV1!ӷ1E)_lbf1 ivmZE))?()e)  IBE) &IʤiE)$ c^`E) H$I$E)!`( %IE)0 6 $I$E)!  $H$ E)! $IEE) I$I$E)! $I E)  R$]hE)0 8 E) |E)(W ڹE)z *TIE)b( $I!E)If1!6m۶E)ߵiE)!*P:rE)! #E)  JE)!@% )$ E).@䐵E)  1AE)!J E) I$H$E)! 8@$E)  "E)H VmmE) II$E)!* B HE) ^ BE)( l +HE) $A:E)^ & E) &  I$IE) I$e)E)z IqE)@ Y7,9E)!! Ck׶e)E)5X ۴jŲf1* m6qE)DC$IE)C. pE)+- $I6LE) $I܊E)!@X *8%)~ äG!a* aˆm!.( hiv! $H$!(  #Gm$!j )mDi!  Ӻ jf!, $>!z ` ) yR0`!*  m$!  $H$! * ܤAˆ! "*E!B( AkY!1( $i5! $h!a r!9!U / !) CI$!  &-E)**j I) E)* $P0@$!00  ¬5%)*z $IpM%) 8( I %)(.@ *J&E)_ @{n %) HE)+ A4I%)~ m۶mE)) m۶E)! ضm۶5E)!]  HҀuE)! $IHE)! ! $A HE) I$I$E)!( "I$IE) J ǦP6QE)$ "E)K @$IE)v !۰ E)!o@* A#dCE) @CE)$ &E)  dHIE)! P!B-E) IL0E)!4 4IDE)  I$I$E)! K$@E)$ $2E)!u^ d'AE) DA)&E)z IfE)  ɸiچE) D$I$)( vD6A'e)E):+\ 8m7AE) $I$e)E)˗j ۦMц1 lƍE)-Bv$KrE)!E) ԓe) 6iKE)& I$I$E)!  $ R&E) I$I$e)$! ( I$I$e)$! 5ne)! F4e)!p  [me)Ahq1.u߮1%) ]e)E) 4z ӡRe)E)p0AX !e)E) 4q:͖e)$!(/61xjww:e)/x;Ѯf1- $I! E)! iEۢe)$!( ۲ ۶mE)!0 $r$IE) :$! ۶m4E)* r VEIE)+ E) iE) u<E)  $IE)!- ؚm۶E)! $ $E)! H)E)N ݰm E)! n( 4H$HE) I$I$E)!몪 " IE)`" `IE)@ F*Ij%]E)(0 N)h۶mE)  E)! 4H`E) (&IE)ƀ( $IE)! $I$A2E)! $IHE)! R$$IE) %I$IE)4  =*IE)p ؖmņmE)!* I$I$E)!* I$I$E)!*" Eb%E)8 l#0E) , E)a V!:E)+'z 4IE) C$L$uE)0 plɱie)E)z v[ae)E)D*r M۶mE) I$e)E) I$IE)!s  ()E).`R\ o!߭* @)! B( hI!᪨ I$I$!* 4K$I! P$M!( #A!` X9!A z ͟g!* ij$i!& 3 I!Pꪪ IK! 4Kh!, J!A(& 4f!b F!a0 a`) )DI!* G iE)* ! @$I!a $Hd$!!  V `$! $V %A$!( &!bx OS! ĝPi!! 96I!6 B$I2$!!C* ݶmÂ$! $I2 I$!! I@%)& @$!! I$I$E)!/W  $IE) I$IE)#  E)!" I$IE)! I$I$E)!* R$$E)  " E)@  Ң E)` Z$ E)  @$I$E)!  IE) 8( I$IE) " I$IE)!* $IJE)! "A$IE)@ @$IE)(  )$E)@ I$IE) I$I$E)!+ I$I$E)! $5R+ E)` mچnE)~ `)E) NmE)+ $I E)- "AiE)@ CMe)E)'V ݶےf1E)} &q%IE) M5te)E) ^ *mۆmE)!N 6n6eE)!@  gE).؃< I)E) h $IhE)!" I$Ae)$! "i IE)@ C4IE)  C@Nj;e)! (k6e)ꠀ HQ%) @  1!-e)!  IBe) OW1e)$! 괌~e) *SFSf1h*( -EwsE)/?ܰINf1) $IneE)! I$I$)( & ,!E)!@ 8:E)` t0m!x5 I@$I!  C$I$!!p* $ID0$!!P $I&$A$!!x- 4IBE) I$I$$!! $!IE)j R $IE)@ H$I$E)!* E)! I$IE)! $I$IE)! *5IDE)4 4SIE) PP$IE)  @AE) H$I$E)! @`E)b uEW4E)!Y mmvE)!6,E) @ ۶m9E)!@~ $IRE)! 5:&hE)x H$IE)! $ILE)$  e$IE) ""E)b@ Ɉ$9E) J$IE)!( B$IE)$!* )5 E)` vJE) IE)- M۶ie)E)^n I$%E)!" ml[be)E)z Ҷ :1E)` PE)v_ gY$!A* <,7!b( 4ADc!$ [. !n* 4HPI!!* $A!( `D#!b>|b`' -U !* -$A!a $h(!(& $@! 6rڦl! *& h!**  M:!z []'aX** eA!a  ) i! @ h$!< #Q꛲I$!(@ \o7r$!>+  i!, ۴4,! ,`! ` $IGA!V- kI! i&$!!ޯz I"IJ$!( ) I!@ T()!@ %A7E)  )&IE)*jvlTmE) i۶h۬$!! $RD$! |%)* $E) _ $k<%)zU ӎ%)!z %HO>A%)! Di+E)A DCE)_ 6v#E) d~ (E)@ 4 D@E) TJE)a* ۖ)-E) ۰mۖmE)!#/IE) (&$I+E) $InE)!*) S<% aE)!P* IIE) EE)  $-&IE)`( "a&IE)!h ehFmE)/ R(P$IE) $I$E)$!* |, IE)ޠ XBE) +Ђ LxE) mڶm5e)E)Z ¶I6)E)! mne)E)j( !Ie)E)c Sm6NE)! I$I$E)!P $IE) % L 2E)B.pk k$IE) $C2 E)!@( ݴ2 E)@ I$I$e)$! ( dgce)$! ($ Z"E)蠀@ QmE)*hj1! je)! eTe)E)> !VE)!^܆1$!괶1!b/٤E)%\`'XTr1 $m=hE) ۀm6E)! (" H E)$! $H6E) 6=I! A!E$!   @X$!  $4$I$!b QrQ%)8 ۶m $!!| 4 pE)*ꦶ Җs$!  $E) W E)A ~n%) h#@e)au Ԗ E) ĺHE)] P&n"E) TvE) 4 E)y "JmE)Ȁ4 6IEE)8 "! Ie)!nH*" bI$IE)clf1! Wube)!x^NfE)ڨlk_E) ` +d$ E)4 E)!* $@pE), II$E)!  E)bB I$I$E)!" $B$IE)!* ЦmE)$!* Xb iE)x h,`E) . B+IPE)/ $I(E)` e)_ II !* &`FK! $$  $@l!*( =!A 6HP!& B%*;7!0 $IA( VMAN!*& (8! Q4I! AʆM! SE!(* $I)!b( u<!^NT_ )" aӦ !5  M!+ [lٶ d!d J! C!$!!RW $M00! k!h* Xh!x @l9!  $I 6o! m#H! Id!d ۶ [$!! U @1!  `$!! P 4$!p & $!~ N!A 5<;!W ! I %) * E) !($IE)! ֤m۶E)$!*( ز ۶mE)! H$IE) E)! DB$IE)! $I$8E)` H$H$E)! S1MS8ME)  vI E) II$E)!( h $IE)AǶmf1ObE)! xCfUE)j fK.E)*@JUfGE) + E)!*- $%DE) 0 I$I$E)!+  "AE)!G HDHE) I$I$E)!* 6mE)! @ IE)`0 {3E)*` H'|E) I$I$E)$! 4AR&IE) &jj5de)8 [mڶe)E)%ZK $I (E)!B `(hE) JE).  $E) 9&A$IE) I$I$E)! (  ).E)@ a'mE)!(6,6N1j RmۀE) 8a=1/kKن1!5ѩne)! (Gce)E)`Pie)![E) ? %) (PI$f1- %I"E)0H $IHE)! I$I$E)! m iE) ݰm$! I!a P$! O!a- ' !a/ }i$!~ IB %) y$IE)! AѶm۶E)! ؖm۶E)$!"ꪈ # $IE)!` J$IE) ) @E)! @E)! E)a I$IE)! I$I$E)! %-9E)!p I$H$E)!( $I$A2E)!  %@QE)  E)   IE) < $I$E)! hE)  `B2$CE)!|x 4IWE) $E)!5w $A$E)!* $I$E)  ۶m5E) p tIlE) IHE)! I$I$E)$! * #I$E)X@c jw w!a: JhȘ!  ,T 骯 RB a  $`Đ! 14mթ! իm:!BzXvmeA( &! J=!a) pd)! Dr! 4eZ5a!۾ >! &e0* yiR0H!* s A! kn!* T$i!, & $! E! ! h@!  !&!A! $I! (L=&I!,  h!, 8R1A$!,(, [I4!  $m5! !A( ,>Il ! }!bZ IVC$! 3@$!b B$!!  ۶mlE)! B&d IE)!* H$I$E)! I$I$E)!ꪪ I$I$E)!* I$I$E)$!( I$I$E)! I$I$E)! T E)$ ۶m E)!k  d IE)* I$I$E)! - ,!E)!rB E)! I$IE)! b$IdKE)!? $IZE)8  I0dE) H$I$e)$!** qDE)! $IE)!x` 0IS&|E) 0E)! E)! % $I )E)!,`  I-E)@ hdSE) / HIE) I$I$E)$! #I$IE)p -3E) & MTE). fӦiE)  6۲mE)!` " HE)@ #' 6rE) $C$ E)!` @E)j $BDAE) I$I$E)! ( I$I$E)!( I$I$E)!  $I"E)! ۉuf1*;a1>C 1 &nf{e)!p! a6ce)E)$ZU=e)!  ^-:L܁e)E)Bh8`f1!p. @{Z E)b/;=mke) mݶnE)!  I$Ie)$! (" $C$CE)$! ߊ&@ E) N`!A* ya~!/@  0 $! @ fI&9E)Z I$L$E)! H$IE)! I$I$E)! I$I$E)!* I$I$E)$!( I$I$E)$!* I$I$E)!") II$E)! @ E) D@$ &E)! x $IE) #mf1$!۶m;E)! ƎE)Hm]aE)!Ȼ! $IIE)` %fnӦ)e) h $IHE)! I$I$E)!  HJE)  $!$E) M$IE)  @$E) I$E)!Ux RDۦE)0 R*ME)/  H$IE)!* I$I2E)! b $I$A"E)!J X缟%)A{A:# )Z؛! CuB*!kJ ! 6bD! &;q6e"!k u>!Zfl6m. ac!*J 0 R!, wP!A& _T!* ,.1!*J B_?!|1W ޷* 9UrT!" ضml! II$!* bh! b$ ! $AR!*p C!j 9QAI!5 +I!) @$I!* $GRg!** h$! 1%Ѵe! ( $P!(` BO۱!P} >M!ww' qQ`о!)@ 6SH$!  !  A$I$!b $I$! H$ 2$!! X HDIE) `l$!!"  " E)jj m۶IE)!U m۶I lE)!ﯵ $"E)@ I$I E)!  I$I$E)$!*BRl; E)h _Of1먧.mI"`1z"mIf1$!$7݆7E)!8۶vЖE)<($W' E)  $ mE)!%"j( $K$IE) ! $IBE) I$I$E)!,  HHE)( IIe)$!  jIE) Z&@$aE) L$$E)!_`  ۦmE)!c5U\ R# ME)` ݀dmE)!< I$I2E)!+ $I$E)!+ S:ME)!( mVkE)! & `LI#!E)X %`_MA`E)A >6 I$I$E)!/ @$IE) Ӻ11j $H e)$!( ۶mmE) "$IE)Nh ҥUE) > dC9$HE) $XO1nb &Lz8E)a h hlie)!,‰ R$ 4IE) I$I$E)$!( Z%A%EE)(0 II$E)! $! ۶mRA$!! m64E)!_ I4$! $E)!_ 4%T %)+ mME)!W m۶imE)! $B&dE) I$H$E)! I$IE)! ӖOf1{**%oS1A*mIh1G$1oG1$!FmW߆1!+?N1!5_;$1bz7f1$!2oINԆ1 4tE) p ۦm$E)! "iIE)@ IeIE)!9 B&M$IE) I$I$E)!* !DE), ۦm&!E)a@ 0lE). Sb>EOE)  pE)~];vm!& VP{ *HL4 J%q!6VkZ  CqP Yk DƎ rLmXa( g!*"0B !&)!+ BR a @ B  ] a?6E aj @I0)!*(b rдI!K( Aa!- ۆmm! K$4!r ƹ_! PM!]5  I! $I"A!K H$L! !I2!+ %0!.* 0h!*ܯ ul!X^/ PI!' Mi! $ d!d "!@ $ $I&$!!z ].m$!!C^- m $! J$THE) 54zQ'E)~#'E)a: I"$!A $!l$!A $m!a M&$! imm$!+ $IHE) :nke)! $Ie)!p;ie)!u&e)ҚG$f1G 1HP1$!+_>vm1E)UUU:.'1 z7Dz1+}N1ڂ ۤE)*@( 4I E)#@ " IE)!H* $HJE) E)@ I$I$E)!* (E)a0@ mڰmE)  ØbE) "ME). I$IE)! E)! @I$E)!*  JJ۴mE) AdIE)b -& E)h H$HE) I$I$E)! I$I$e)E)] I$BE)!! M۶c e)$!( [mۀmE)!X` ouE)!U AAE):? I$I$E)!( ( I$IE)$! ( $IE)%Re) (lO'1:-i[f1  (eӲj f1j( m:lڶe)$! ( *e)  Iͨme) "mAf1h k{5E) - &5(E)p ؆mضlE)$!, $I$E)! I$I$E)!ˆ(" $$CE)!Uw  !FS'$!a,z ,uw!a x+  I$!a] $M!a mE) OW@A! AaHE)!U $IIE) P'me)! X$m4e)!,6e)o|ٷ1* òm۶ $! ! $! !&$AE)!U  IIE)Dr-CE)~#ݶmE)` a?me)! o)e) E)۠SJE)! m۶i&E)! I$I$E)!*( I$I E)! A$I$E)$!2 " $IE)!@  &IE)! * -E)nj! $C|g >U!A*QTaMS( 4B[G i[uы 6 }![VwUmL M v 80HA@!%(8) J:!j&-!Aںi:lIA! 6M#$!ﻯ ,dF!   I2! h ̤Af!a&  $B! m- i8 h4I!+ :-n!B** `!b)8 $h!(& M׶mb!.: o! pn!ԭ]  ! "$m!@ lA! mWd[ڡ! ۶mXt$! * ۴2<!Ȃ0 P|E0!"@ 6!` &;a!AX |Q!A/ I @ۆM!b- TnS! kmKm$!!WW v$!!(@ $IH$!  I@$! ٺm؆m$!! $H$I$! II$!!< h E) $ *)$!b IP$!!0< !B$I$!!K imۆm$! .۰ %)!W m@%) `IlE)!/]b# mE)@--ٖE)*!{e) /UE)8BJE)!*  mۉ:E)! E)!" I$I E)!+ $B$IE)! H$I$E)!  h$Ie)!* H  E)Ԩ t% E) $ITE) m۶iE)!* II$E)! ( I$eE)" $j E)( I$H$E)!( $ XtBE)!0V ۦmVE)! H$IE)  @E)@ I$I$E)!  E)!` "iIE)k꼠 &fDE)*? &! E)@& $IE)  @$IE)  !pe)! 8=h~p1C>-׈f1 m۷K 1 2I:&e)E) 6 +AڔiE)QmݶE)!# cIie)x ϸE)A* $!$HE)" H$IE) I$I$e)$!" 8) E)AB M !A  )h۴a! Vn\!<< $ ! $!!բU 4K$4!` $ $!!( II!" aB$I$!!, I$I$! $A"A$!@ $U$I%) ()$! ӸmжhE)! (1! $Q!$!  $-vH%)bj DHP $!00 $ILB$!!  töbE)!׫w $B$I%)! FHE)* $HҤUE) 8 c2 E)B* XCE)! 4 ѡDE)! H4IE)  E)! $-HBE)@ "z qX N  l1dLk2 *!CB&H$(R @͈(pd>a յ $!5PHK ! 4XZo! DRJ! J!( Q_l ) Ĉ ˷!  H G! < ! G!A cw!p4 E*I!r* ͣ$m!C  $ 2! 4ai!@ `#w!a(, 4B,@! Ӷ $!b &Y!a0- N $ !W H"L!a EIA!( IH!  {@B!b, $@$$$!! ߂W I$!!W iu$!! ۶m$!!u L$m! &Tr6!a I$! $I! $!!(  Mvm$$! TAXvE) $)@$! i` $!  ۠>c%)" h!b $IH$!!T %E$E)!߯ I$I$E)! 6$6`E)!Z jiۺ9E)!z k 6 E)!dr!E) N mE)! !EmE)0 E)!*  !E)< H E) ,!0Ie)!Jn ! IE)! X"B'E)bX  E)- IE) DH$ E)!:, %@$IE)!* II E)!+* `$IE)!"!g?1>"=1nr IL$e)$!(" $$AE)!  *! HE) H$I$E)!@ c(8B3@E)zp `E)!0-  $IE) I$I$E)! ( I$I$E)!$q$5E)Lu1 B(iZf1/= EE) IS#IE)p 9":E)" ڸtE)b$ )1*E)`qqo1- $HHE)  $R$`E)  $B$E)$!""  4E) @Ti!b H$$$!!·U $C$! $@& ɐ$!!x $A$!!( J$!  E!a& &Id$! $IP!b/ $I$I"$!!} +)%)ʪ* !4h(n! ӲR%)`. n E) * -E) ĔH'E)  M$!  Aܤ$!  V$!( &KHE) $I E) p $IE) * ɶm۶aE)!ꪊ I$I$E)! dH$IE)!/ 4i@E)* 6 %%E)* hɟ%)vUm[d- X  $hRD$!!B4%Nr \ A <Uc< it !D h1/y`СMTca@ioA@KmWTH%BY" Bքn  %! WJ6F-!{@"}!Zm BU!zPp! 4 몯 |iI + )1"a!)* !94o!Ah  @@!X $h$! $I!+ B,H4H! lض!! $I(!*b j!x ؓĩ@!x 9!@$M!- (AʤK! `d!** -֦)&!  #@ڶI!p 0Dq!  #7m 0!` $I>!^ R!a iNI! @aH!/ u v E)* :mE)y X7-IE) D @E) [&1E) j $m"!E)j $DIE) y$$%) M E)( -q@E) @'D;E)* d[$!* J&m$!A &Iw$!/ H@E).  I EE) B,H$IE) ȄI$AE)$( I$I$E)! I$I$E)! iE)4 42(E)(j mӶmE)$!ꪨ I$IE)! * %E.IE)0 I$I$E)!* $H2$IE)!Ƞ }5 E)z J?Є%) m۶mE)!( b%E)(,H @E)!*< ( HE)\wֆ1#`|)1!i E`ThE)0 I$I$E)! I$I$E)! Z E) $R* E)꘠ PE)a)- $ Z&E)A I$I$E)!("(  AAE) Rn,e) B<4E1gGf1-(YOf1& ڶie)$!(" $B&E)!А $Ie)$!]Kr5E)b E).hBRe) $C!AE)! # 4I !E)  IHE)!( ,m&8E)p  D?!~ ! $m 'I! tSM!+" .v E) ᆗmE)8 `:$IE) .HE) vôeE) mB"$E) ئmE) 1H4H$!  IE)j Q!TH%)9 $I$$!! / #+I0E)* Bb%)K x E)z $E)~ IuE) ߿ ItE)  B#IhE)b @HE)(  E)! "i$ E)H*"E{E)AI$I>/ Ҷh۶ I"i&A @!$ $!!HȐaB5Vג-;ba !>kNO.\9b*@׮] MM6A4@`v$!!˚[6v`k<!J[1dHEK   ` 4ۖ: 6  }w!3pe a De*Ub! %Q>1!*jlHy `Ɖ  !{ qhE;!l 4I! "* fb&O! $ LN&!   ER$ !0 dH`!A) .j!H k$,!A Oqn!&( $I#A!b [hm!* 6AFn!* $I !a  ۴m.!* i ! :I\! 듸 L! h+ ɻI0b!  ! D! @!a` ! i$! l$H$! $I$! ` I$! !H$A$!! :  H$H! `B$I$!!#  ! M dE)* *@tI$! $I$$!!  $!@ m)hHE) dmJmE) q:u eE) B t]%) I0E)( "I$HE)J $=pE)ڢ ۶eXmE)!⚸ HI$E)! @E)C !$$CE)!^* @2E) E)!(* I$I E)!(. I$I$E)$!( E)!(* #`*cE)z |h ,E)a IAE) JI$E)" 0$H@E)!檠 I$I$E)!*>Vof1-Uf1b DKE)! $I$ E)! < j @$IE)! emE) M&#%)h V E)+ - $) E)@h B"H$AE)b` h$q$IE) Me) PB *0tn1t1&IjE) 1 $IE)  $IE) 6e)!`, K1E)-/  E)! 8 FHHE) A$IE)$!  B E)K y7E)h  3! @ $ I$!!] P! в- I$!`b $ $!!( E) "H$I!  A"A$!@  I$H$! LH$C$!! ֵH$!  ȻI$i$! I$)I$!( $,)!@ ɐ I2$!! `$IB2E)! I$I$E)!  4۴IE)!( ;pE)b% eڂ&IE)ـ %LE) $@.a?E)U DTIE)( + 6E)a`! IA#( 2a$aII$@H$IA* A$H$!AaL4:.1i DH$I @$*A$ $b`A 0b 0p!N$! eL"@JBM!bEJr[! "D!i"E; maH Ӡb‚Z"`LK ߧ Tj`c!!  7]8qb!( )$l! (Z`I! t ! F,! !+ P@@? zW 9a!/ 0H$!+ &M$(! $H4h! ۶mK !* L$A"!  H@'!A` $'I!A I !U- 4l9i! 6Д! M! *0!@ P$L!0 $APe$!0 $ )!j i( ! )$! mz$E)" uo$! $0$ $!!u 6$!!U+ ;vBE)!UW $В@$! B6&$! H& !" $ * ! IH$! ҶmmE)! E)! k0i۶ME)!* 8dE)a &$IE) kE)-ޠ 'E) W $JE)"+ $I$E)!(  -XIE)j H$H$E)! E)!j* 6%ےE)/ K$RE) $IE)4 II$E)!(  K$IE)  J$)E)B τ@_E)*  E)(95 9$ɒ E)@ $HTHE) I$I$E)!*Mavmf1.}}e)!L T4 h1@E)"8  )E)! j HdHE) (Ă IE) ͫ%)| E)- H!֒&IE)$n RH* E) 4@^E) ;(#v`mf1ںş2f1&I ۠2e)!( ۰[eE)!8 H$IE) $IE) $ cTǍE) - e) / IIE)!8 4HQE) !$IE)C $nE)р  KHi! , $@l! $ 6E! 0L! #'!iE)b ƖU$! $2$ $!!} $$$ $!!U m6$!!}O uA!  J%BB+!$ 2 n%)k & PiIE)+$g;E) %E) IAE) B-4 m%)![W $IE)!➪ dH$IE)!+ $邀E%)a j# E)^  = E)Ux@ H! II$b(I$I$I$I$(BI$I$a@m ֮A Sg0*Rض + DB&I$(I$I$I$I$ I$A2~90 xܹ P,&!0rV'i m$!!]Ѷݶ!W Tص!aԊsZ7oDY<k ʚ6l m L`!}'a gș!sI$L  h:w! $)жN b@ tI41!{ ڽW n* O颕4!# bI! DI$! a @ 4h! `I! R&!z $9y!hW Y! $IdI!+ H/!G *A! I! d7!A 3M! p $!a `Ov!a^+ Z'+I$!޵ $a!A  V$! j( IBNm!a] Im!U Im!a I@>!U@I {ܴ%)A*  !a T4 :!A TvVE)!UU C8E) ƥҶE)du- E) ME) "!iE)ʫ $ E)!ۺ @E)! $$8E)(` hME)z * >:E)Wp h3%)A( o $MJE) $A$E)! AAE)c%IFyE)>* [í۠E)x @JPE) TIE) I$I$E)! . $I$E)$! d@2$AE)!**  0 E)x jK [E)* $IIE)() $ &!E) BAE)2"@CYE) u1!֯ 4mE)!P $I$IE) I$I$E)! " $XE)`0 IՄh=%)! $IJE) - I$I$E)!*j I$IE)!# $I$E)! :<%E)` Nb!tf1-> 2e)k ڶmmE)! .  IE)@ 6H[td;E)! (0 f-EE)  I$ɐE) Ë @E)! # B3 IE)p $I$hE) ۨP] L!  J!a B&m!  dH$I$!! 2'H!`o*  (! @ ۶qE!0 ڭ$!!cU} "$I$!JJ*-:e)jӭu۶e)`:f1! k3HE)h PIIE) t]R%IE) II$E)! Zb/AE)8h #$IE)p ɩ&E)a '!A & % UA%) ( mE)" A,$!  $!A@ 5* !b` 4HE)b( $I! E)!. I$I$E)!(+ C$IE)! @. E)X` t`^E) ۴m`E) ,)HE)B+ $ER%IE)01emE) 0  bE)!4 $ICE) ( I$I E)! R$ E) "a$IE)p€ T}$!- eE@E)!" I$IE)!: H$IE)!!  A$IE) b+uE)A, !hBE) ( m]mE)!8 I$I$E)!" &B&dE) `$f1ꆊ< E)(2  E IE)( $A$E)!2", @$E)!b I$IE)!a* ,! )Mtm!* S#@!a`  "!@ a!@ RP! 7zM$! l I$N! L0dB$!!w $'m!* 0M ! @ c$!  Mm$! ݆mЦd!d  !  H$H$!! Xt[$!*9a'm?e)!-U_P[Au\E)߫-:NE) 4E)a J`V  "I$I$A"I$I$b"I$I$ ʄI$I$AB  ϟ"#!_kA BI$I$"(I$I$I$I$@m6m AI ŋ , I$I AI!A$ !A1: •K  شm`$Bb  )6k4 - d(A0 t.!o pe̖!A8+5jt!aʪ  a#8@ܸ餹 VĊk;!N&m(شs!do! ,(1m!jX ˀz!_/ OSN! *( u!/ w4]! $I! hE!(:: `! P$1!) I| ! $m!Gh!b) #d !j ֈm! A! $AR$]!" 6m l! "vp!a($ ӦId+! o &T9! b $Зv!0 $! '!" yP!b# $)i! 4HI$! o!$ AL! lЦ$!!5W ;!  `a!  ڴ:l$!!yWq?E)!5U]JE) w&TE)!5v E) ] H E)!^ $A$E)!ꪫ  `IE) @#E)zJ S!/ 4)|!b  e'A$! "I$I$!@ `$!A hR36!N E) m۶KE)! I$I$E)!¨ I$I$E)!( B# E)p  #QE). $I$ E)( $I@%) II$E)!+. 1j&I%) sY¶iE) 80  $AAE) " IE)!B $AE)!c ( R#5AE)xˀ Oׄ%)/- Yv*IE) I$I$E)!. I$I$E)! "$IE)`  R:L(E)"ˎ h۶ke)! I$I$E)!( $I$E)$!( mжmvE)!)E)0 B%(IE) 0 AE)( )A E)b  ۶-òE)!zb #AE) $I@! *o! 0I9!*{ &! ( H/!4o $! $! p !< II!A I !a m$!a* @!A? ɫ6!b A!5 q! %I! KimE) JH$I! cb$ $! B,K7E)AҞ۱mۣA I$I$I$I$*I$I$I$I$A "a+* رmI$I$A I$I$a*",I$I$( I$I$A &I$b I$I$ I$H$H A$!A Ib ٣!!!يMa I$I$(4M,M$A(]--@B!ߧiY9!u(İKھ&IBbJ\@a( : T\!}}4¬q1Y+0h$*akP!_Ds?|7@@  @º! KjS! h(h Wr5!* t!/zW Mد !~J "J!+ J*$M!bJ* ذ! x$Zw!<(* 5v$!<+ 6V! dli!b eN!bj* +Ym&!8 ڒI!} _M$I!o * M! O @! !) A! I" D! vm!_ OM!A I I!aՀ i'A!V k!A 4 I ! !, j4!  2hi$! G ZF %J!a0( R,H$I! [m$!!xX ĸ&E) Fh E) 15$I%)A*h @H$! II$!!8" LHE)觭 t0& $!A O&!AB hfA$! $@$ $! S$Db$!0 #(!a`  K=%) z ۶mP(E)!./} $eIE) " HE)!K A i$IE)( [4RE)? $ Z& %) $A$$!! dAРE) +۴-E)!Do  I$IE)!(( IʴCE)$ .)E)@(  ڶme) J(=Wf1kά IHE)( $C$IE)!⊨* `H$IE)! "# $C$IE)!* eH %) nbI!__ !j ) M!}(( h0m!A i  ! # ! # 4!W AHd!d $K9Q! ,   ! y-A! $ Z!A  !X I>! pt!+ڐ x! ' Dr!!* &3!A@Ű!I$I$꺨I$I$A I$I$I$I$m;vjA*3 sZI$I$A&(I$I$I$I$I$I$I$I$AI$I$A+ **I$I$ I$I$ I$I$$A$H$"H&i$ҠI$I$8(I$I$b I$ bma`3M!!jL8$B%$!BS1e$!!3ϝ&v@Pu65O֜+PR: k7-Ri&4@@Xa!ڦ  ,I !o =a * ;?! u@ *  jT!z gY!!(`" VF! ֑I:l ' b J! &!b l^vwA! $I2$m!j %`jN!+ 4IH!  @ ! d ! $%!*2 `M&I! [5ֵd!d 2 жm! $l$I! $I$!!] $ d!d &R$@!0 i$I!* HA! 0I!` RA$I!x ɏ5! w#!- @Ф!a DH!  l! )I$!!p ` $C$!!I` 4aE)Z 44~E)Ͽ T5J! tH$J$! $m $! #AI$!` Є`! X $!- u#$M$!( A2,$! R$!@ )r,4$!A.` Idh%)9 H$I%)A $I 8E)!.s (aAE)b $KE9E)㪺 I$I$$!!  I$ɀ$!!" 2$! P $IE) 94HIE)   I$I$E)!: I$IE)! &e`cE) ηp9$!h pIBE)" $I$E)!> @%)` ITE)(6 NE) $AE)`  lضmE)!(( H @$IE)!ˊ "! IE)@mpmf1jddKE) ( T E) ( O4HE)- C$IE) +$EE) M&A1!" 2d!J* Mh'i!( [[d!d $I!b@ I $! +kl$! q['! Pl$!A r!@) R,#I! ʀIq!b( UT !b, `3K!a dB$! X]!0 8! h>>!a8-I$I$a:I$I$I$I$ aϖ#Q A/a+ "I$I$A" I$I$I$I$AjI$I$AI$I$ * I$I$I$I$@I$I$ @ $I$b I I$ I$I$A` I$I$bJI$I$I$I$8mѮڦ$H!Aim&$!!HvI!A0BiJb Vth& 2afL@L$Ll b@ ێ! /ТJ!檪R b `IT {i.!޵{W PK 讻 yiZw ) h~oV ^;D  8!6 @v!a * sZ!޵z {;!} G:!"x (S@)!ᆰ 4S\A!+ $e!0 h:$!  I$2! h (@0$! ( & $!A} I!W IBj!A TlIRN!A `I! I2!b U @I>!*z p`$!A @! N)! [ m! #?b°e! p@`Z$!(8 $!* / 1!` 9!/ V !* K $r!( $I! *"A!@ -(i!@ 28A!!@ Dq!! BR4l$!( ,! I$!@ DF$! N&#a$!X` Fi!t! ' OZ&%)AⲘ PL$ !  q! )Ԙh.4$!A II! B*Y$IE)R t4%)( ڦ  E) ֖jpE) ! ,)6$!@ H$H$$!!( H$E)!W_ $I$2E)!"  IIE)  m۴ME) ( k+֪E)v` Ϸ! / $I $!!,0 I$I$$!!C $IHQE) #& E)b` /E)/ mmE)! $IE)$ m6E): 4IlE) Q#E)Ό8 (IE) DHI%) I$I$E)! \H\E)2 n2 'E) $!a* Ib!*U0I"I!A MII!AW R hI"!!( AI2!U ! @JI!: }&H!Az I'۰!A, 3!a $`yǻ!' rl!* !$$! $I0$! )CE)jrF ۈmAI$I$a"((I$I$I$I$I$I$cG W7pرA7+I$I$I$I$brI$I$I$I$AI$I$A I$I$AC I$I$a&I$I$A0 I$I$@I$I$! I$I$!I$I$ I$I$  I$I$s"I$ $H$AAI AH I aCmѮ H۵ I$H@&Mڴ A@!`R,b vN" \ `!H J&64bq1V5![WU6&60ur?ձ!{}&@1! 9~a!b @jB!kޭ jshs!b.x jzȕ!b*  ($i!* 2a4!o뺫 Y5H&! &d*! ҶaX$!h @:Ir! * 䞠5!Ax h INVO!W+* J5@! v @!k J2n!H UepѶm! &) !@ -! 5ֶ! D-!bB ֒M!@* !~ I=e!A X! Dɉ!  Dr$$! 6lI&$!(+ &I0!$!B K5ذm$!* ?u! 0#  3AE)*z E(RкJ%)۾/ r!,  &9!: #H!( rJ44v! ( &d&! . &rb$!( ð ۖ$!  #`$$!  x4+ ! }|%)a 4 AhE)* i4IE) R=N$!r )x(=!A 8 $aF@!b @  %)J R@"i$!!; XmE)!] D%E)+ !d$!! q $I$!, (T$!+   E) *+ $I@E)!  -"E)` I&IE)` 9!` )$! / I$I$$!! I$$!! t ($! @ P,5%)v pE) @x IE) J i۶E) x E)" !"IE)! @ cUE)a" $IIE)!, 4I !E) *  IPE)!"Q B2ȒiE)bʈ @j h! 2m!P Kth׶!*" #9´I! Mi! @$@2!* $I[I!Z ۪iۆt! ۆmv! l !A  !8 $v!( dHI! 0QI! SIشI!( ~$!AjbI$I$+I$I$a I$I$ꪮ !X7;mN AK|I$I$뫻I$I$I$I$I$I$I$I$A8,I$I$I$I$b*I$I$ꪪI$I$ ***I$I$b𘦯I$I$ajI$I$I$I$AI$I$b(`I$I$( I$I$`I$ $bH$I+$L&aB$L$ H$I$Aݲe $[!궾z iAð-XtTh `ڌZ5!bw ub{sn\=S60aBt(Ӄ! XOMf!h* U\! D$i b) muH! @N! R]' {U>OO!^U}X&r! %%H!* N! I@$ !/ꯪ 'm! $I! suI!8 $I !@ I$!!( ڦM!  (!A@ kݢi!A !bj D! :lt! ðfm! =0# !a@ @m!  $m2@! ۤዺJ! R $I!H+ aSI$! 5 b$!b@ #i <$!(p h!K%$! Pa'E)j e! dKi(! ( #IDB$!  JJ"! ( 3$!/ L ! 7]$! 0 $J$HE) h.,%(!a@ y|!1=4 !ɐd&$!!4{ #i&H!x "II!C ʁ!4 $ I%)*Z J$EE) $! й؍$! ڈmj! mI$!!28 3ME)>z G8!(@ T`! $!!  $IHE) H IE)4 "I $! O՜!. $IJ!  0O$! +H! .!* $!!@ E)? -mE)@ H$H$E)!+ $IE)< I$I$E)!::>"QE)aJ ؆mlE)( "$I%)` Di۶mE)p $I`E)!e ˦H`ME) ۶ml!* 4J($!*p II!* Ӱܪi!ap I/H! >G! 2 !$U^ V I!ՠ $! D8f! vL !"( 0~[TJ!0 blAI!( ).!EڈA,(I$I$aI$I$RI$I$aI$I$A$vjGd#A::I!I * I$I$aI$I$I$I$:I$I$!I$I$ **I$I$A## I$I$! I$I$a(@I$I$AI$I$a*(I$I$I$I$[2*I$I$bI$I$b4' I$I$ I$I$@I$I$ah,I$I$bp`I$I$ *,I$I$b@I$I$AЮ] P`A,) -hnb$ 4d)8 -gi#ǶS* !L8JdK`Iku9B!)Hѽ ʪeB a& Ob7 !>j i<*!b •!oo EN]!a+ iJi Uޭ  7!A" 6$! Lں! y7!r f]J! !*J CK! ,)d! );$!h `I1!j ;p!] m!!) ㊐M! c3-r!A*J =!2 I! W 1$! * nhs!+8- Ǚe*! $1 !/ C I! ۬8! i%!* i ! 0n!` ɐ$!!Q ɶòm$! ( RE)7 ۀM %). q8k! ul$! $C! ( 5MA$! WH!L!  4H ! J6b! `"0I!` p\! 6 1Km!b  `$!!Sf 0!a` !> ahE):; H$$!! r I&I$!` Nm!b^ $! I >!A` s;!!, -! $EX !A ɨ!$ Ee[-! -@P!. 4U~! 9hH! @aht! B`0p$!` [EF!0 E1$!  ( c:m!ЂS!$ 4!& DIH$! ;j$!| h 8?U!` T! ! '  0,!a@ @b! Г P0 !` , k! $H$I!b Ih$! p'!( "!  4$!!$ O`!b 1 !6 C! .7 $I%!r " H$! LI$$!!( +e!ʈ 2A!@  ! Ldi!! R"$ %)R* OG!/? m۶HE)! $I %)$ I$I$E)! ۶ [eE)!> C!ubE)3 ȆvXE)!W -fm6$!!3L 4Hh E)* "$E)!Oߛ 6}mFB! $-I!`  ITM! X׶6! $B$I!* RAOR!!C w^!az  $!az H N!+ $ ! LB$!** +!!/ O9!Aǰ I$I$AI$I$a<(I$I$I$I$I$I$A=:*I$I$ *;I$I$akI$I$I$I$a"I$I$I$I$A I$I$I$I$AI$I$ڪI$I$ఴ&I$I$I$I$I$I$z.I$I$AJbI$I$A/#I$I$ I$I$a` I$I$(BI$I$ 4"I$I$I$I$*m۶m  0Rb  I!A]mMѶ !@b H$I$bg $I <  H0a k ټ ضcoAh Њ mB /䢝#(p6; ),( e &wA ¨m40.!;Ou a. ei`  x $O!! IAR!* Ɲm!  2N!j 6MJ A( I9 b $R!P O!U J7%!j* ?! <$! $!A ;!Aꀩ zKfrr! $!j a<!bz Tm! !$I$! HB$! dL! M%n!Aހ pk!AB/ 5&T!` % c)'!* H!b@ A Հ0A! M9!/ ; !" [!  "M! JXD$!î j$a!, TbQ! &qӆe!A {%a!$!x '! $! $!Ak p!` vI!U ɭћ! =?( !A ۺ}!UU $!A  !@ P]dI!3 =܃&!`hH۶m۶A.I$I$bꥫI$I$aI$I$AI$I$ hI$I$bI$I$A*I$I$I$I$ I$I$!bI$I$0( I$I$I$I$I$I$bI$I$AbI$I$A'I$I$a( I$I$꺺I$I$a(I$I$(I$I$aI$I$I$I$I$I$A<'I$I$a<I$I$ I$I$b*Ja^A@ IaKI$I$I$I$(A$I$A8& A$I$b ( I$I$ m`łbdI!0dS V - pH8r81Mm 0m6I&5Bb@TZ }_tB$ ! zIQ !' @ͳ!- {z$!b* e JΩ & J'!_ Oz zUx !* 1Љ ! S!a ~к! j {!A* Ilݶn! $Uj$t!  @$! )!J 4L!W N ! }'TI!" @! C'! 4`'!5U N! vI!(* nѶҶ!+Š rȞm!X {.,!!' M!( mm!**+ (lFK! !j m?!+ $ *!nN $b8a! 8 B7!I !X!aˆ$ IM!!( A&CS!(0 C!& Lb!   >!@  m!@( yA !)* iL!  ")0!@ L$%! ,!  $J~!8 [ѥ۲$! 2 ê16! ;OY!,3 Vլ!,* ].! $,!@ ) ! $ d@&!C2$!!oo $I$! >%)$ "!aF 0LA! }Z$I! ˆlku$!!Z 2f`! g! &:  EH$!  $A$I$! ۶ME) oo "B %)k)* *)%M!B" +!$! 6 Id$!!> $H$! %,$!b $i! B !( " $I!ꪮ ; TB![ $0.i!` "`!` I! I$I$! 2&! Ϗ !*I?ࣚ =x p!axI$I$aI$I$ުI$I$ꪹI$I$bI$I$ I$I$I$I$AʊI$I$I$I$AbI$I$!`I$I$I$I$aI$I$I$I$zzI$I$A؜'I$I$ajI$I$bjkI$I$I$I$A`I$I$a+( I$I$AI$I$ꪪI$I$@`I$I$A#"I$I$I$I$I$I$A H I$II$I$I$I$AI$I$A`I$I$AI$I$BI I$ I$I 5@ , ! , i`$I0 vLH9]=-#G@(@ &N A-əӘ!`S8!^k8mUa! ,Ea a*~ ` a 'IUA! ! -,9N!kRfTM b" !j*  i#! `ala!(Li  + : u$!_  I! ڶ!N<!J T! $I! I$I$!ꪪ  ۺ!說 }I! Ob! y!/ H!- Krg!* 1@G$-! : 1&< !-p 惹! mE!<0 +:H!0 1=&! IMŤ!* H۵i!  0Q(h! " h0h!a ơdZ!& `@+!,, c!8 DX.0!'` `d! aA!a =9M!P 5D5!' MҀ!!*" M"2M!RH" $$h! ! ̐e! P-!  "P !@ H ڔ9$! TP!# *r!( pC! `,8!p` ! ݶmt$!!  0$H!  @4ԓ!0@ ̀8!a 0 C>h8j! ؂m$!!l K8$!  !A 0 \!b I$I$$!! *: @$!b@ Md$! j-2*$!쬸 qx<$! b `A$!b@ $2$ $!!H0 $!!* 6nj!a(h PU9d r R$!_ M~ UI֐dn aժ&$( a_ ft`!a~ v'!b*^ GX!2 $ ! 5",!>@a++I$I$I$I$I$I$I$I$I$I$I$I$AI$I$A*: I$I$ I$I$qI$I$A$I$I$I$I$I$I$a ($I$I$AcrI$I$AI$I$I$I$꺺I$I$A"I$I$ $ I$I$a I$I$I$I$bjI$I$ KI$I$A"bI$I$aI$I$z^I$I$b' I$I$(I$I$ I$I$ABI$I$A I$I$"I $AI$I$@( mZmvAI A AH$HAI$I$x> $A#  sֲ:Ah줱`)A6 :'M(4HVdWBcPA( ! * bYz `[p %Ik\?!)~l ɪFva6mb*$To0Imm}IDR+"i=&u NR 4r !IҶTA6$ a~*cd az`>!a*z Ln!j IO!ꨫ Z R(@!(, hqm!A yX#!` #O<!( W foØJ! @!ꪪ @CA!d V tH! 4p4!b  $B I!* 3! A` A!" vl! v]6!( @8!! G.R! ( X=M! !b): !}D! &* 4 $)!@ IdI!  -!젠 l,BK!J nj8!#( $$I!( I:&F!ˆ< $! I,(! LPX!A" != 08҈!` m! 4 ! lM!A& LV! d@& 0$!!xc N@%$! A;! R!  I:H! 14N! ?42!p` )vC!b - $!!2bb Y*$!aJ K.H$!!LH 9B=$!R `!b DH4@!b !$$!!1 IJ! h-!bؠv;a3q!zI,,O I"a0n !} S_!bi v޷ %)ڿ֍-H!ףlw!}Mל0!!%J!!aj ! ҚI$I$I$I$^I$I$[I$I$bI$I$AI$I$A BI$I$I$I$ I$I$ I$I$@I$I$ I$I$aI$I$I$I$AjI$I$AI$I$AJI$I$I$I$I$I$ఠ8I$I$I$I$I$I$I$I$`0,I$I$I$I$I$I$I$I$A( I$I$I$I$AI$I$I$I$A6I$I$AI$I$@ H$I$A,I0 $aI$I@$ $ BI$I$ ( I A$A @C@ ”MA\$ PP!I c[a(7a9 ~m;b   Im$B&HZݤVbm;K$$!!X׶6]$m۬i ulI *MR !@mσmE)w %) maE)ߩ [%), O$!a檫  %)}{IܶH!_&I0!ru.0 ! .$XJ a `3v!A ) f4p!a   !$!H hn !xB* 'M9!A/ 0X! ' 2km!$ ň A!$ Fa!2`!aɀ !,x (ITH! $L!raD!". ڴmԴ!  Ӷm! h-!/稰  qi!( " /k4H!a C($(B!pB a1!  &m! KFF!* 8 Q*!* $Ib! @ $ I!ꨨ B$(I! 1$Y!l(2 O&1!$ ` G!! #ń!uN dLdb!# @!#+  I!b@ h B#,!A` 1dI!b $HI! Uan! CH$!t{ j mH$!!(  uݶn$!!3 ȡ[cZ$!,,(( [AQ! ?[Ť%) * AJ! [u$!  484E)z AE)j k/E)~ %) v>BE){ qiE)! &-G Ee)E)@ "$'ME)C [ae) "r (JE) vM"%E) L E)V >PJE)A $P+ E)ݠ I@%) ډ 5! x$IڢI$I I$I$ !I$I$秺I$I$ LbI$I$A8I$I$I$I$AI$I$bZI$I$AjI$I$AI$I$@ I$I$bjI$I$bkI$I$!$ I$I$I$I$AI$I$a"cI$I$ I$I$I$I$a"(I$I$ @ I$I$a+* I$I$I$I$:.I$I$A؞' I$I${I$I$rzI$I$`I $A H$I$ $I$ЈI$I$II I$0"$I$CA 2D$pmC&CA `zضm;Av:!A 0$!X@ gE) 1>-!@E)_+ N mE) ?m )E)  ڶmE)  QܶmE)!-jGe)! ?d߆1$!{rdf1!@" J նf1$# @E) 6:ze)$!* [$e)!0 TtE)! )&XWe)E)ۼ   He)! F .jE)  !CQE) M2I]E)  E)~ Jf1 ǀ$ME)_ sMAE)w  # ME) 3QS!b ϕ!+5 $ I! ,I&-!Ϯb 1Di!:: )! ml!. T. u!i `IT!"% ۺml! " U!c. pG<!/v ʊȵ! )eA! S,!A M!  X A!  )!A!@G K4!)' ۦm!% M!( $b!A ! J!+ ֭k! $ѐ$!J< wD!% H$I! C۶m!򪨪 "a !jꪪ 9!A .  E! `0E) 2!( }A!.:3 ۦDM!4 Xu]W!(" Ӱei!  ?`>E) x HIE) ɐ$AE)!w v%dE)(0 @E)! !۴me)!j "Ge)! Цde)!*B[f1!*1F҆1!o`Ě1F&Hse)! i$e)! (m)t$f1mq$f1(n̶tf1ڪmqf1!߀* tIf1!mm1$!_ C E)  ۄ.ne) XYE)! mm׶e)$!* `ݰte)! #@&Ie)AxIme) $` e) I1$!A$IAI$I$A,I$I$aI$I$I$I$AI$I$A`<I$I$A*I$I$I$I$nI$I$AbzښI$I$I$I$I$I$Ah,I$I$☜,I$I$@I$I$I$I$bjI$I$( I$I$I$I$$I$I$ 0I$I$A"(I$I$*I$I$AJbI$I$A') I$I$ ( I$I$(I$I$`<&I$I$ OI$I I0A$AIA$&I b8b &@| ! j- E)a+ OME)U i5 E)2 6m&E)! ФN"E),@um1!( $DE)! ϝ$#?f1!nwe)!v-afe) m)kX1 y?A~e)!'vے҂11_O1ȧ'KI1!U(]I:"1" 2f1^,+ȥ&f1 {l$f1]mCۆ1jww'tj1! /H1!"m1$! $IE)B MtE) $ n6mE)!  $C$Ie)$!* $%$DE)!0 r`LE)!xM" me)A^ t7e)a dCnc iE)  FҶI! d z!* $ZE4!A (b &, I `x$%!j Mא! *+ Cۆ !ꪨ M4j!rk ƒ!AŠ*9 0HB! .OAe!﮺ !g C,8 3$ J!` 09q!* h-8!` %! IdP!ꪪ R!2k c^!X" $A$ɀ!"  B2 !* &SB!\Zr & l~!  $$!" ml! j:!& a ! $2$! !KIE)+ -<HE)bz_ 1 IE) +H$iE). $A$E)!/-Cf1Z2 ]N `f1! $@e)! n1!_e)!- e)e H G1-@swf1$!~*vݲO\"1!U_*]I1a (uϲI21!jU)ߖIO1!v; f1Hoۆ1H'Ib߆1!,_BO²1~*w qe)}oME)x}f1!^m۶dA@<I$I$I$I$ 4: I$I$AI$I$ajI$I$ "I$I$A< I$I$!(I$I$I$I$a"hI$I$  I$I$I$I$I$I$AHۺI$I$BI$I$A(8I$I$a* N$h"<!V\Z T! j($M  XN<ҡ!rb s!b( $2 !ꮪ ZO!謴& B! .? @""(!J*  Z E! A2r!J ( E)x ME) $IA-I$I$I$I$膀I$I$!I$I$I$I$a I$I$AjrڜI$I$I$I$I$I$jjI$I$ I$I$jI$I$榪I$I$ hI$I$黺I$I$a I$I$AI$I$a ) I$I$ I$I$AbI$I$.)$I$$  O E)a) lE)A q!@E)56 X4mѵe)!/ I$IE) 4>E)_  @E) #ҷ)!  E)~UIbd'@e)U*;0e)* $e)!=)S1a.z*ֆ1! ;o˖1!}Pe)!bUe)!+I~We)! IwAe)! 8a13A6%Ie)!I"u҆e)!(vA*a1 o =6e)3m[ae)!2i E)@Ô1*"rkZ1$!*n1E)U#1!p~f1!W?p1n;tf1 vo۵e)boj !@E) r?1,U)e) %YFf1!8v}#@f1$!^ $If1 @]me)$!\蚆1 +`\me) IE) P E)njD!!#6 NnVq!~ E*&V!{ wդ!+/ K! SE!< 9ʁ!A&,8 fnp! t[e! 7۰  ZВ, a \-.2! `&fTm,!{ fB @!簾! a!0!*j αdJE)a ^\n$IE)_ I@E)  ۶-: E)j #@E)h IE) WE)j 57! $E)_իy_@f1Uתۖ e)  jf1!*&puJe)! 6_1jf?f҆1z4*a1$!;~,e)$!cI$I$.I$I$AˋI$I$Ax`zI$I$a ..I$I$ bI$I$akI$I$ I$I$I$I$I$I$Ax&/I$I$a I$I$I(6 'yIE)a׽ YE)! 8 R%QE)22 I$&E) ^  AuE) &mnE) .7 E)߿ v\I$@E)U&IJ4f1* 5Ibe)! $F-e) B LUf1 6k6E) ۶M )e)!@ mfkжE)!  c 4me)E)"ݷM/e)E)25Rf1j (ė*e)! , mܩh$f1! dzVTe)E)* -)PHuf1"ow>1!$9!;1"Manzf1 m4de)  :De)E)cP1 ˜Ce)E)[ڍ4;bf1 )OMwe)E)" 04e)E) D6Vf1j*uae)$!v3ņ1jo1$! Im1*z61!_*~A1U /df1UOE)U %؆1*Uٜ61or.l1! 6iE)!( XM6e)$! P[e)!" R"I IE)P 38@E)~ u)E) 'O8! A!8rb!ꩪ \L8c abB `^ŗ!( *i!!n F- |!ƃ H!魥 HĨ A" Š&!o茶 lqg Y Hg!@E); 4aHE)/ ؐZ E)(9 ۶m&E)!/W $HjE) :ME) ߜ$E) 9i E)իme)! . Ile)!ƒ[E) #N6Nf1 TI$E) ۶ -ņ1 m[OHve)!$ q e)E)3l5i[Te)E),"4 e)E)!, ߆1E) [Ƅe)E) &aHRf1]v1 jmB1E)yaKlR1}tf1!4@ФE) h۬Isf1$! dw]e)E)h mre)!(47.f1 **Dl0e) A[fe)%)( e n1!rP$Me)  Q3a1E)yw $f1$!6]e)!ϹIf1!hv{n1 >f1!z/~RXkJ1_ i e)_zTY:e)_kA-e)  Rf1! #5m5E)b` bKe)E)t܃ R! 6E) h IqE)d ɯ& E)A؀ ɏ&E)aXI$I$AnjI$I$AI$I$aꪢI$I$I$I$`, I$I$:I$I$a"I$I$ `I$I$AbI$I$aI$I$bjzZI$Ia w!{7 hE) 00E)  Xm,E) ` d@rE) H&DE)࿪ I@E)o ~S*_e)~E@f1A* Ck'mE)!  E) ,4 c0CE)  mvڤe)E)z Z,I e)!* a۶e)$! cvb e)E)U 6A:)e)E)+ Ēd;e)E)(U Z3 HjE)`p,qf1*@rlsE)ԖYe) X11 (ZPvme)hׄDGe)E)8$II1 l&@ f1*䶑pe)\غ,aE)!DEf1" /{f1$!>ꪪ ne)E)B| HWc$!bj lhZLE)_5  DE) 0 $I9E) $rLJE)ྋ m%) $ICE)C䰒1 a֍1 iǶME)! ڠmE) mIE)A mvCve)E)+^% Y1ne)! +ڶme)$! mbMRe)E) !@ƶ!f1E)_W e$d'e)E)"Ud"G1" ĐCۤE)iiE)b@h74e)$!|+ve) . FGqe)cE)!m;i 1!L)iʉf1a&61L5Զe)!,/߆1h ^f1!d -9mf1 6dž1!*Aΰre)@8j6e)2 Af1j$mf1&(K1T9Pme)V1! ڢ j2h@9Le)E)pD4 e)` 1![e)!Kt)(f1@WSe),??1!~/~nXA1U~ %dE)+W1+Mƚf1!xe[ 1* jVae) $:k f1Ax ʥI1!b ' e)܀ >E)AI$I$꺩I$I$AKbI$I$Ai#*I$I$b{I$I$I$I$A'I$I$A I$I$imA6 ) `$!b_ !.aE) ʀ JFE)vS9E)@ MZhIE)) XoӺmE) !H IE) ( VmE) L$IE) , M۰mE)@ IIE)!( &4I@E)  $E%E)0 IA$e)E)"U $$ E) I E)! жmeE)! c;E)! @ ]צme)%)*lɶe)!,  ^VhE)! , ]IE)!$&'E)!*Jۖ$E)@rV'E)zVe)rXq@e)  $E)! [e)$!nL71 R 1E)儵Fmf1 " -A~Ɇ1E)NHf1 *7e)$!*bMf1$!+u1)mݶn f1Pcf1!_=g|f1!+5dn+ f1!Z{ زvme)! $I6-E)@TeN1⚢* /'Œ E)؀]q I$I$bI$I$a"I$I$AI$I$A$I$&ʾ 0H!a 6$!  E) .2%1귋x%=}f1 pHzl۶E) I$E)! II$E)! DA"AE) B $IIE) I$I$E)! I$I$E)! B$X$IE)00 H$I E)! \ˏ kcE)! I$Ie)E)}- mnkעE)! (%ǺE) AKӤf1!Wu I $E)!U_ @ڢ E) m %) 2XE)U" kI%)z IvDKE)W* I" E) ] IE)b؆1 3HE)_  @e)ժ Im6E) U ~" B)E) v@E)z I2&AE)_  iE)! $ME)_ RR&IE)" $$HE)* 0 E)#*PM˴E) ( m۶e) +^`$D.e)J[I e)@ -v e)$!  ke)E)FcMf1* ZnTf1E)믫- af1*"iCje)E)tDve)M-'e)$!_f1E)V t1 dt ,e)ꪨ@ܭf1! _M(椆1!-c 1!jo ke)! H#E)! @u1j5QE)A` ޓ E){驨瞕.wE)+'mv1=-T*f1z%w۶1ܭ  H$IE)' I$E)!/ ۶!me)! >@C*E)@P I$I$E)! I$I$E)! I$I$E)! H$Ie)!44 H$$E)!*"p dy)yE) I$I e)E) x 2:mE)!@_)Fe)!a`W %v$f1!W} A$E)!UW i E)(* 49WAE) T>+E)]& MR0iE)A~ INE)W* I$E) y &IE)a /TE)/ }6E)V  &HE) Im6E) U*3A`Ue)_(8 I E) @ $IT8E)s $A 2E)! $ E) dIHE)  H @$IE) " IE)j mڶmE) ) -дm۶E)! 3 kmE)z 6DGrE) X Ne)!/VHקf1+Dre)tڳ/e)E)Xh@ Ф&ne)E) 6N,f1!jb  #nby 1E)~zJ1 <%qf1E)^ÒkWe)$!c1!/͍=x1 d_̡f1A4&1c٭ 1!o% vmۉ %E)!hjbWf1! A4AE)aJAf1bx ăE)s$Ia$I$A"A08 ' !_ IgJz% $!% ,-}vE)b "*J󄡊&1j7xA&1x0hڶmE)' H$I$E)!/ $ &)E)*@ dDHE)!˭# I$I$E)$!*( $I$"E)! $IIE)b I$IE)!*(  E AE) I$IE)$! :SXGE)!$,Wv e)!E)ospݶE)j L?[E)!\ E%IE) m۶mE)! A$I$E)!* @$IE) I$I$e)E)UU H$I$E)! )۴mE)@ ,! IE)!B( dIHE) (#ME)!t< a$Ie)$!* $@B%xE)$ ІMTFE) @*E) $H E) $IE) $IE) ! $I@E) j&aE)  B,$IE) HA$E)!~ VI$IE)) aǶmE)!נ "2ImE)h'2JE)+` .ĵE) -XXf1"^Te) CM@1E) dpue)E) !^"҆1!JmQ1$!+%H1* U5e)E) .cvibe)!'|$o1!Kudž1!^+%l*1! w 1/ YDf1! M51! Fbve)! @[JE) ix[ e)! EI1.+mۆ1ܭ )I$IE) * I$I$E)! $a"E) VmцmE)!( I$IE)!*(  E)b@ ͶnmE)! I$IE)! 4H1 m۶m!E)! ،ҜE) ]Oae)!z,[3NE)jvݶE) Cn۶E)!W ¦$@E)& E)!* HI$E)! H$IE) I$I$e)$! I$I$e)$!( C<%mE)!P ) E)  ICE)  IE)! `H$Ie)$!  5ple) : ФLE) 0@E)aB $I$e)$! $I$E)! ذm۶eE)! A$I$E)!  H$IE) $PDE)!  E)! , E)b mنmE)  $@Z$ E) I$IE)!0#i1f1zdٳK;1 $Hr$iE)`vf1 " gE) ނe)!  tZ ֆ1E) cf1E)z݆f1E)mM5n16 qq41$!c큆1$!Ts1$!Ρ5Vwf1`**bb>1!.h*ns^1--)f1 e) b(Dv1590F1!.{.4$qf1a` T&$!- $ !`H/1?!=1p4lmE)' H$I E)! I$IE)! I$I$E)!**  E) vnlE) #  )$AE)@  A$HE) a$IE)!*۴ME)#mI'1/ sۆ1!W%xU&-:mE) p۶mE)!\ !I$IE)! `E)!B@* 2$IE)!j $@\E)(6 $$ IE)P H$I$E)$! I$IE)$! I$IE)!" $ICE)! $I ,E)!z l+E)! ȶ E)! ڤA$HE)a( I I$E)!* TGf1"=  Ȓ, f1j  IE) I$I$e)$! $I$E)! I$I2E)! I$I$e)$! @$IE)$ $ JE)  @E)!:8  IE) IHE) $B"HE)p H 2E)!ɓ#@.E)ɚae) $B HE)кf1*XP.i߆1' 1 :e)! Sv+̆1E)_ dnf1E){ &/e)E)"7|tmf1*( Bjf1$!mߛ@ f1E){z)%ϛ1! s*ɮz1ހ 4TCN:1p )of1*tf1-ve)!(O8Yif1# 77e)!0  k΋8e)! mK 4E)! I$I$E)!** (E) lԆmE) #( $d aE)" $HIE) M$I"E)! m۶E)a&'iԆ1/#~ke)!Wx\q]E)!\ P\$IE)!V @$IE)! R(P$IE)! $I$A2E)!" HHE)   IE) I$I$E)$!* I$I E)$! $I$A2E)!* $IHE)!" $i$E)8 I$QE)!( $A@E)@ 4IIE)  &)* E)@ Hݶm1ȧ !XB(AE) 02  $IE) $LE)!(0  !ME)!@* XVlݶnE)! I$I$E)! BIE)  J%IE)$ TIS$EE)0 ۶m۴!E) @ $I LE) I$Ie)$! Z$TIE) I$I$E)! Z$ *E) )E)!# `>4IE)܀ 6HE) }W Ҳ,!ȶmE)  e) 3㊣;1!j^Tﲆ1!نq41!#!if1*yt4f1!OcG'1'MT0{1 ܵHlE) M! E)*&* iE)* b $IE)80* "I$IE)!n $H$IE)( $I$E)!辪 I$I$E)!* * 0E) mN|b1 ׉#Pf1-):mۆ1 +xc#IE) h C'EIE)* ܶmø$E)x  )E)@H H$I$E)!* I$I$E)! , IE) [?5E)`b &I nE)( DKDHE)! B" IE)!R H$I$E)!*   H$IE)! "$ME)!p8 P+HE) j$Z E)( FmE)+ I$I E)! 4%E) ۖm E)! m۶I lE)! $I $E)!R $I$$E)! A$Me)!`)) I$I$E)! Mд@E)!8( $B$E) ",E) I$H$E)$!( $IE) I$I$)( R#ACE) $I$E)! #I IE)` ''rE)  mE)x 餭$@E) \wE)P&E)+Y-հe)!  _c~a1E)_к:1 &7W1!',0@f1`hʠ31$!zx[N!1!ꪨK@i1b" !:jw1` *!o֏16xs f1 6rsI1$!x 94N8ne)! ȔE) HFXe)E)B8- m] E)! $I$E)!/ H$IE)! ,IE)`!:A1~+~ f1 %8mf1z {<@$IE) 0IrE) $I`E)   dB&E) I$H$E)$! I$I$E)! ҈$IE) $Q!EE) 0 @aE) ψ IIE)! Z $IE) $C$IE)!( I$IE)  R$@ڠ E)0 %AE) c,aE) $I@E)!  I$IE)!  E)b kiE)! m۶IE)! $l+E) u  E) DI%)U E) I$E) ME) Ĉ-E)! S " iE)@( p,qE)  H!6E) IIE) $I E)@ $$ E)!( "hE) @,< )$IE)@ $I EE) $iJmf16 [D1AE) wgE)@E).:6Aܔe)SXM1!R/ݯ1E) ) g1$!jm՛Q1$!ڪ pٵIƆ1E)r$)$e)$!(ZauM1 ` njT=f16QƆ1E)C#71$!i R[71E)Z̩De)$!Ğ}1E)k%W)4̆1f1-&}Ԝf1 }ێ 1!?XaΨE) 7lg6Y1 9f1$!z7f7f1j  M~ۆ1!%`WUt۶%)! ڶm۶E)!/ I$I$E)! $I !E)!J QHdlE)* H$ E) " ۶m`E)( I$I$E)!* I$I$E)!** ,E)` ʤ@HE)  $IE) $I2E)!*$۴} E) 4L$ME)!  @E)!o ۰mE)!*} l&IE) %) & i%)~ Ҙ0IE) #' IE)a -$IE)*W ܐ$%)( (nE) &jfhE) $I CE)! eqE)00 $I$E)!#[+E)Az ՕPIE) 8 E) g ~hE)8*߀ &E)p+ MlE) Х B#p$IE)`* H$Ie)$!  $ $e)E)WW I$I$e)$!*  P AE)00 I$I$E)! I$I$E)!(* LI$e)E)_ Ӎne)!~p I.'R E)b}޸\'f1b*^tf1/VZ[Ae) C 'ּe)E) Jyrf1!uXJ1:$V^?1!*Z  $5E),z(Oa1'3)=͝ۆ1p֭ 10I&R$!( A!A )$!0   %)/( ,H$H%) $X$! $m$! IJ$! 1/.,!0 @尭mf1+rԤM%)! HH$!  $@$! $IH$! H@E) II$E)!* P%) I$IE)! z$H$ E) N;E)$0mybf1 4$5?1! _E)"!oe)!++me)! â" E)h@ \EE)  I$I$E)! E)A $I*E) ۦM!E)B 4WPE)#@f1#$7жE) 6-E)@ Ɖ2 E) @ $+ nE)! HvB1 !IIE)! 14E) ضmE)! k#8E)z I $JE) %$$IE) @J@E)^ `9A'E)@-^ nxE) "$IE)@* m۶ E)! &I$e)$! I$I$e)$!   ,B#E)!` H$H$E)$! I$I$1 mvmӶe)$!**#=6Җe)!@( M"=+E)vz M 1 -[ݸ@~f1! \C diE) ` jXىe)!(7e)( I$E) H%$! II$!!. IH%)* "$IE)@* I$IE) I$I E)!/  E) DE)B3mOf1! 3'f1]se)mE)! *Şme)! OIӳIE)p ҆p'mE),, IIE)! HZE)  ۦI %e)!P E)b@$7.qE)@ e)$!$ɔTE)8ǥE) 6lS E)!p Bq1 EiݴmE)!" JiE), ۖE)$! m m!e)E)v $A"$Ie)E)kU ²8e)!@t htY[tE)!  Im e)$! xISmE)` $!$IE)@  1E)a*` o?hf1z mۿf1!x E)!- I$I$E)! I$I$e)E)U I$I$E)! I$I$)( "A&,E)@ v#9E)! J"A E)܀ɩ&ME) I%'E)a Z9f1 ۦ e) `he)!p\+YE)Z~x 1 (hܷm1ض %Mb$!( 6l6$!  I!$!!- I$I$$!! $!!/ $!!  p!@F1%)6 $j|! Pin$!b*: !!>: dq۰m$! $@ $A$! ڤ$I$!(4 H$I$!! Ű-[m$! I$ ! ,!b` $i$$! V:>E){_E) ;(?6f13p}1!x )@THE)*  $I$E)$!" $C $BE) I$I$E)!(* I$IE)  !$IE)! J H€E)( A$I$)( E)!* c8UE)8 Pe)!! vme)E) [Ib{e)E) ui 4e)E)(z B E)!  tFhE)   iE)!  dHRE) 2ie)$!" I$H۬e)E) $A$I"e)E)?U <6me)! I4@E)!  I;];e)$! MiE) JImE)" I$!E)`mڔf1)&1 E)! I$I$E)! I$I$e)$! * I$I$E)! I$I$E)!  $ $!E)! @ !qvmE) SmE) M9HE) N=E)a+xH䐒e) )ڸfI(e)@Dݢe)C" 1!j+# R))e)@MPae)! |~71$!/wP߉f1?Qf1 { f1 $AZ!e)! , ҖLIE)! $HHe)E)o BIE)!~ &) I%)h $ I$!!> !b hF$!: .(E) loe),>}1 slE) @@ mFmE)!'# `IE)!"* tITIE) $!&IE)@ H$IE)!#( &)(IE)@ mhE) H$I$)( $@!I2E)!  44NE)b  K`Ze)E)$ v vRe)E)? hIbwe)E) ]mfe)E).~ Y `E)! %)E)  I$I$E)! t6mE)$ ڭE)! &IAIE)!<  FE)8Fl1 ]ڶmbe)E)_ "lmE)  I$I e)E) Y6Цe)$!-[mE)! HKmE)  Ҷme)As.hOge)!\5xJ E) m۶iE)! = [!*JE)cX  h&r! 4@! ڥHl$!!] @0d!d   @!@ ^ `! H&!Z&OO $ {@!* $iض$!-  AD! ;F9E) $IQ!b Xi&$!!p^ $0$!!~%{  p7-!j k!ڵ H!+ 9A!- H$I! $4$IE)*r H$H$E)!  G$IE)  H$IE)  I$I$E)! @$IE)! $B#iE)` I$HE)!( IPE)  $I 'E)~ $R]E) $I E) ; (!PE)  7R1! 6Il߆1$!H?I߆16 Iۆ1a 4 Ibe)!G?AIr߆1z۫4Iۆ1"mf1! !նmE)!eYE) !iBE) E)!  ) E) @ 6 :i1m !IE)! I$Ie)$! hmmڭe)!-4rE)@ 4lje)! $I DE)! m;i6e)E)r 2@=e)!HR wH!E)@ De)!7x#hf1b*!q#f1* H$IE) I$I$E)!( 49SAE)!r I$H$e)$! æR5AE)8Ci1j*TmF E)j )|E)zh1 wݿs1E)~&VUe)E) t0a!a&   ƌ!,  ( H!@  `-. ! € DA!m! "1*!(j P%*! Ѐ !Шx qY!b޷* )WJ!  I&!( VB!( Iq!@ Ph!0  !  hڶ5!{ {!} tx!Z5" 1m 4J!( $I %)** A5l$! ! $I E$! D%) B E) E)! E)b"` ڶE)! X :lE) OAE) &IE)Z Ӂ IE)~ 4H$IE)( lmE) H$ E) VV BE)* H$I$E)!  !,IE)!*@K THPE)$ +$, E)I  AE) I"E) n IIE) II E)! K !E)  dHE) ) 1$IR%E) 0R mvmE)!*( @dIE) @E)!~ 4qHE)  B91&mE)b 5MgE)< $C$E)! I$IE)$! $&IE) imѶe)E))5_ kvme)! jn);E) mve)E)~ m'jE)@  FkE)b *QE),H m&hE) HD@E)!  I I$E)!( ۶m4de)! $IE)! @E)! iuQ6e)!*{5zf1z$I'1 ;-1'V.e)E)b"MQe)`݁e)E)bne)%)Je51$!/Cf1xwe) ?eX˭1 `$IE)$ hڶe)E) $ $CE)! $ME) 6 TII%)) $I$E)!꫺%  E)b $m6E)| !E) 0  w*HE) ا IE) vB IE)_ 1$EE)!% I$IE) ‚ iE)@ ! dHE)4 I$I$E)!" -۾ E)@0 $ICE) @ $P+ E)  xiE)/ ۴ S2E)![ E) 1@E) H 4HE)b H$I$E)! R A$IE)! " 'E)AJ0 R5iE)$  I$0E)a ` &$IHE)! I$I$E)!+ @$IE) -$FE) h +iE)a(' дE)A $IE)- m۶)( 6l[mE) ذcJe)E)z 3Hve)!P  y(r1 I$I$E)! QԸmE)9 RiE) L3E)8s; $ (!* B ʆId!( II!: $IH!  P$!! 4SA! r r:!a(0 z¬&p4y v!A ( 4hRm! p  $H ! ۴mH! ʈK !a(. 0h4H! $A! Fl!A rt!$!^ m!  ٶm۰ $!!+ 4I@! *) I$!@ AF E) Y~ A$!4 C#:EA$!` %I(6%)<(j #u!A- '%IE)A߿ |&I!  mܶmE)!_ I$I$!!حx $!!- I$I$$!!"/ ۶%۰ E)!ݯ ՙnE) > H$IE)   H$IE)! I$I$E)! I$I$E)!* $ERBE)0 ,ɒ )E)p @ I )E)@ $A IE)!*  TC$IE) Ab! E)$8 $AE) I$IE)! #$IE)!b $A"E)(` $ RE) $I$)E) @  E) I$I$E)!  `$$IE)!x m+$9E)p IfAE)b HE)b+ $HZE)= m6me)E)z $A"IE)@ I$Ae)E)ꨁ7 um1j*  $1! mvM 4E)$! HE) ymE)4 $H E)& B$ E) I$I$E)!  I$I$E)!  A"AE) @v)1!+ۂqH f1z* !-E)a ~ځt1nv 8f1$!ꫩ *se)!ˆ aMf1$!ᩪ 9e)E)&zǰe)$?`_f1V|f1-e)!, AI$e)$!  I$H$E)! 0 J4i۸ E) *4%) ` 4Mw!a`+ ı$I%)A 9&I!& !$I$E)!W $!!6_ $!! $!!h Ҥ*!E)!ko .HIE) l C IE)! I$IE) I$I$E)! $A2$IE)! pgiE),$ Z$Y E)0 $IEE) $I2$E)! $IE) &IE)( mE)!, $A2$IE)$!*ʨ dI@E) I$I$E)$!* I$I$E)!* $b":E) IHE)!  I$I$E)$! $I$eE) !"E) ` ׬ψE)! %IE)!~ 5$IE)?x t |.E) QE) - m۶i)( Kme)E)bV !IIE)$!( ڶm e)E) j( $ &e)$! XE)|wP,ٍBA4 i3!b b XH! &I)!n ۴ml!* ͸,7!ƨ. ۦM! ˆdO?!zݤq bp<  -!A pF$! $ɐ!I! ȀM!( h !b ֌! ֑'!a yA A) )E !* Ih! Ӱ#)$!( Ֆm{%) $I$!< dH$A$!!7 Җ$$! `! ` 'G!^% O ! I$I! & )! ۆ$! Ӻt%A%)ꦶ $  !$!b H"tl$!! $!! I$I$!!" $I\$!6 $I$!E)*J  ɐ$)E)!檢 IIE)!* ƍ E) $E)U I&E)_ ҬIp;E)`U X$IE) $IRE)  IHE) %QE) ( II$E)!* JLE)$ I$I$E)$! I$I$E)! *  B,tE)Р IIE) I$I$E)$! (E) ` B'" E) R)%HE)(- 8I[8qE) e IE) /`E)- xE)7 mڶm5)( mSvle)E)5Z IڶE)! жmfe)E)5Z( I& $e)E){% 6e[mE) ]۶mE)< ) E)h. d) E) CI6 ۶QkI1 $A$I2E)!@ TI$)E) @ d@2 IE)!( Z( ae)! (M]te) _~!f1!%WwͿ`z͆1!ݦ cE)!bHQ1E)Z 1@[f1$!7|jf1 E) *q@(lf1( mviE)$! "a$IE) m۶ME) m5E)!UR $39$! $IL$!!. [8E)  I$4E)*z B$!! I$I$$!!- $A$"$!!J %) - ۶m6E)** iu+tE)! ۶ E)!@ 4m 7E)~ $[E)*< R7IE)_ 5I&E)_ AE)b $I)E) k %HIE)A %Ё$IE) $ "E)H $(NIE) @_'e)!jx~܀Ve)!/-ɱM.E) ")"E)!' L؀E)$(, I$I$E)! E)@ ! $IE)!/ ۶mE)  I$I$E)$! -۶mE)! H* p,` IE) [XCE)7h M\E)6 $%mE)! [bkvE)!  hE)@& *!?Z XA ! dC$I!  r`!aB 4 @!)*" +9!0 !a~ O!֥* Aä ! 4a !  OI!$. J+ !V* Hl! k2=!j 9NK ! \61@!-=/ R!  A*P$!* Ф$I! " R $!*   d!d 0!` k!X= j) ! 0`ҀA! m! !d!d LB$I$!!   I$! ") I! B<I$!( LH$!!׊ + :$!x F'!A lN!  :IBI%)b~U Ҝ$~E)U m%)z IB4I%)j -A(I%) q)&jE)  jC$IE) I2lm۶e)!U * IE)w & IE)  E)A* $I$HE) mme)!9* "'AME)*!E)E)!-m۲tE)z I! E)!  E yE)0  $I$E)! ۲ 6E)!@ $H$IE)* $IE) * I$I$e)! I$I$E)!*" @B$IE)!p ?E) 8 h/E)A 4($lE)!@ I$E)!" iE)$! tmtE)! m۶ e)E) $I! E)!P Ҙ9`E)` AKE) >j IH$E)! ,1$HE) I$I$e)$! $I )E)@n+f1!Jo,Y 11j?f1 >n1!Vf1 *Tslq2f1$!*{(~f1!4`gCf1!.@F@f1^ $E) 5)CˡE) $R6E)  $B$IE)!  &$AE) IlE) R$E I$!0 pI$!< !HIH$!! ീ !@D;$!^ P^$!A :!IE)b._ d'/AE)A S$@E)A vM%) ګ I2%)  I( E)A퀀  mE)  $IE) I Im۶e)!U d# IE)  I$IE) E)A@ E)( E)!j aE)A I$I$E)! I$I$1 I$I$E)$! I$I$E)$! E)!z I$I$E)! I$I$E)! I$I$E)!* E)! e)! ]f1!/U׶e)A* e)! mN E) E)! I$I$E)!  E)@ E) I$I$E)$! * I$I$E)! I$I$E)! @$E)b I$I$E)! I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)$!*+ I$I$1 I$I$1 E)@ I+E) u %) Wz E) I$I$E)! P&E)|_#'N$I$I?$  a ! 8pD! QH$!b I A%.$B !ok9 A `@d!JA<8 < a` !j %j!^%p$I$IIˆlm> !Ajj @$ !H  X!!I$I$E(C@H!zA !I$I$E(C@!H !a( d'$I$I$I`(b  J^! *' AIE)a I!AE) L! ` A!* !@@d!d @@d!d $I!A& `„!AE) ! IE) $d!d $A0! H$!zW$I$!zWUU I$I !Aj IJI!  I2L! IE) JH@!$ RE$I!80 $ d!d  P(!A ! I$I$d!d 0d!d L$!!*zU C2$! J !  $$!!W E!  $!!x 6! M$! $O$!UU$I$!UUUI$I$` I$9%! I$! I$I!a' i$! a$!!U I$I$E)! I$I$E)! I$I$1 I$I$E)! I$I$E)! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! H %) I$I$E)$! I$I$E)!( I$I$E)! %) & I$I$E)! XE)< E) I$I$1 I$I$E)! I$I$E)$! I$I$E)! E)! I$I$E)!* I$I$E)! E)!_ I$I$E)!?W f1!Wm?4mӶ1!`ke)/se) ~ 0E)! ^ I$I$E)! I$I$E)$!* E) * I$I$E)$! I$I$E)$! I$I$E)!  E)@@ )E)a I$I$1 I$I$1 I$I$E)$! * I$I$E)! I$I$E)! I$I$1 I$I$1 I$I$E)$! H IE) Đ@%)U^  )`{E) E)!) I$I$)( I$I$)( E)& Em۶E)!@* lɶaE) I$I$1 I$I$)( A$I$e)E)W ۶mض%E)A I$I$)( öp˱mE)b,4 `%) ` 2(h%)Acj PI"@%)p E) I$I$E)! I$I$1 I$I$E)! I$I$E)! * I$I$E)! I$I$E)!8 I$I$E)!* I$I$E)! I$I$1  $e)E)@ I$I$E)!x mE)! % I$M e)!  I$e)! / HB&$Se)E)x ! $IE) I$H$e)E)VZhX7h۶dE)  I$e)E) * H$$e)E)X` Òaɐde)E) Y-ۆme)E) ۶-۸ E) @,۲mE)bBm߶UE)- y$!!  E)  le)! ۶mۆ=E) ( p @$E)Ap E) I$I$E)!( I$I$)( I$I$)( I$I$E)! ( ,E)p !  0$!!__ "=!bh Kɟ$! $=I$!^UUГ$I$!I$I!& I$$ ! IJ!* $I! IH$!!U  E)!տ I$I$E)! I$I$E)! I$I$1 I$I$1 I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$E)!( I$I$E)! I$I$E)$! I$I$E)!* I$I$E)! I$I$E)! I$I$E)! I$I$E)!  E) I$I$E)$! I$I$E)!  I$I$1 I$I$1 I$I$1 I$I$E)!z I$I$E)! I$I$E)! I$I$E)$! I$I$E)! E)p I$I$E)$! I$I$E)$!( I$I$1 I$I$E)$! I$I$E)! I$I$1 I$I$E)! HE)!WaǶmE)! W hMڶE) $ E)!X @E)!+^ &E)! W I$I$E)! I$I$E)$! I$I$E)$!* I$I$E)$! I$I$E)!* I$I$E)!+ I$I$E)$! I$I$E)! E)A I$I$E)! I$I$E)! * I$I$E)!* I$I$E)$! I$I$E)! E)!z L E),!ac'N$I$I$?A   ! hD ޗ  I  﫪$%x" ؠ 0!I$I$E(Clض ɐ!!(!&m!!`說%H$bI$I/I$qb "B!k J ! ٶm0 $Kl!0ضm  `@!ː!! @!j9}ɖ A $c$I$I$ ID @/!)P! "I I!j $H !  $I$! * $I!*  @B#5!b`` mV ! &! $I!* I ! $I @!! 2$C E) pI$!A $I'!ɟ$I!UUխ IJ I!խ "-! @ B%!a  d„$0E) 4d! `8 IH! H$,!A`  ! @(!@  I$! $ d!d  Id!d d!d Hd!d $(!@@ ! x*IZ$!! $&I'!_UUh4M I$! IW$!U i%I$! ! ( !@@  ʑ!,' I$I$$!!* I$I$E)! I$I$1 I$I$E)!* (%)b*$( I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$1 I$I$E)$! I$I$1 @E)! I$I$1 I$I$1 I$I$E)!  E)A` E)!*! I$I$1 I$I$1 I$I$1  E) & I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)$!* I$I$E)! I$I$E)$! E)  I$I$E)! I$I$1 I$I$E)! I$I$E)!( I$I$E)!* I$I$E)!* E)!  E)!5}cE)!=_  n&E)!W-_ E)!Up  E)!/X E)! I$I$E)! I$I$E)$! I$I$E)$!* I$I$E)! I$I$E)! I$I$E)! I$I$E)!* @E)  I$I$E)$!( I$I$E)!* I$I$E)! I$I$E)$!  I$I$E)$!* I$I$E)$! `E)~ &P@%) z  XE)- I$I$E)! I$I$)( I$I$E)! E)  I$I$e)E)5U E)! I$I$1 @E) I$ $e)E) I$I$e)E) I$I$E)!@ I$I$E)! E)!5W PL E) EE) I$I$E)! / I$I$1 I$I$1 I$I$E)!  I$I$E)!* I$I$)( I$I$E)! I$I$E)! I$I$1 lI$e)E) 5 ; e)!~x.n۶f1 -J I$f1!\ I$e)!? lB4$e)E) [$I$e)E) [6`mE) H$ $e)E) I$e)E)* H$ e)E)\p ÒlI$e)E) % I $e)E) I$I$)( Ie)E)3ۀ e)蠀 v$`8! PE) ++B2m E)P I$I$E)!. E) I$I$E)! I$I$E)! ( I$I$)( I$I$E)! I$I$E)! i@`E)b$I$!WUUI$I UUUI$/!* IJ$!U $ (!a @ JP!b, %! (p ! I$I$$!!  I$I$E)! I$I$E)!  E)@ %) I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)$!* I$I$E)$! I$I$1 E)! I$I$1 I$I$1 I$I$E)! HE)< I$I$1 I$I$1 I$I$1 @E)@ E) I$I$E)! I$I$E)! I$I$E)! E)( I$I$1 I$I$1 I$I$1 E)!H @E) I$I$1 @E) I$I$E)! @E)@ E)! I$I$E)!  I$I$1 @E) I$I$E)! I$I$E)! E)!~* (E)Aj E)) @ %E) ^ `E)!+W E)! I$I$E)!+ I$I$E)!. E) I$I$E)! J @%) H E)<  E)!@ E) I$I$E)! I$I$E)$! I$I$E)$! I$I$E)$!  %E)p^ KJ$ H$I$?I4II9@ >- 0_ `9J a* H $!blKd!DI J! $ ,Xd!ɐm۶m I$! 0!zP˟2 ׵}R$I$I$I  8 @!mɒ-!$ (4 @$MI !` ꪿  ﯫ 8! ,!$I 8!mY6!%J$I$I.>c8!  !I$I$! I$I!*  @$! I$I!*  E)  E) $H$! I$$! $ E) !H0LE)  A%!h$I$ə>M ]W OK @!U+  $I! I@$E)a @$ $!  $I$! L!@!* zI$I!A H$ E) "I!A@ H$ ! "IH!A@  @! @d!d $ID!A4 ж-! $Iғ$!ZU'IB>!AZJCR/ $!+> II!U ! $$!ʀ HE!>0 I$I$$!!  $! $!@ !b (! @ P$! I$I$e) I$I$E)! I$I$E)! I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)!* I$I$E)!* I$I$E)! I$I$E)!*( I$I$E)! I$I$E)!  I$I$E)! I$I$E)!  %)!@ E) (E)` I$I$E)! I$I$E)! I$I$E)!* I$I$E)!* I$I$E)!  E)` E)! I$I$1 I$I$1 I$I$1 E) E)  E)@@ PE)  I$I$E)! (  E)& I$I$E)! * I$I$E)!*  E)A@ E) I$I$E)! I$I$E)!  E)!U *E)A X -4E)/  E)* !&E)!+V E)! I$I$E)! EE)A I$I$E)$! $E) E) I$I$E)!+ (E) I$I$E)$! I$I$E)! I$I$E)$!* I$I$1 I$I$E)$!" I$I$E)$! X%PE)  h %) ^x  E) E)8 I$I$)( I$I$)( @E)! I$Ie)E)% I$I$1 sd۶mE)< I$e)E)%^ I$H e)E) I$I$)( I$I$E)! @E)!W lE)?  E) E) / I$I$1 I$I$1 I$I$E)!( I$I$E)! I$I$1 PE)8 I$I$E)! PE)A  I$e)E) %U I$[!e)!J I$1! 5We O'ǓÆ1!^x  dI$e)! /$FHE)  I$I$e)E) I$I$)( I$I$)( I$e)E)* ۶d6`E) 4( AIe)E) % I$H$e)E) I$I$E)!  %Ie)  +$O"E)  MԶh %)A mMdE)  @-ɖe)! I$I$E)! ( I$I$)( I I$e)$!** I$I$E)!( I$I$)( I$I$E)!  E) H II$!!  I$! @! $!A $!A` $! P!A $! DH$!A8 I$I$$!! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$!* I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)! %) I$I$E)$! E) I$I$E)! I$I$E)!( I$I$E)$! I$I$E)! I$I$E)! I$I$E)! PE)b  E)@ E)  I$I$E)! E) E)Z E) $ I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)$!(* I$I$E)! I$I$E)! E)A@ E) I$I$E)!> E)z  E)!_ `%)!zWz  &$! * I0E)!_  E) I$I$E)$!ʪ E)) E) I$I$E)!* I$I$E)!+ I$I$E)! I$I$1 I$I$E)!  %)a``$I$I$I$I$Jy @ +)  0h¤!z^ɐm۰H^ !*. h $!bI pX!ɖ  I$H! %!^o$!a@$I$I$IH: }!]W׵%P0  `@#&I `/H !J$%C( 8@pItI!("a@@@A! 4(I z  !&!z_i{&%@$I$I$Ic: IHlE !*@!I$I$! I$I$! A$I$! II$!* F! @@$! $I$!!J H! I @$!* $-! x $1zP!zWLb[$A`y\'P!Uխ  @$ !+* IA$!* P$%I!  &I$! I$ $!  $I!*  E)  h!! &I! I! $I&E) $I$$IE) $IH&! I&!_ H$)OXI!4辊|PB WzU&9#!bj IH$!  $<! J !!4 ! I$I$$!! I$I$$!! P ! I$I$$!! I$I$$!! I$I$$!!+ I$I$e) I$I$e) $@$! I$I$$!! I$I$$!! $!! HE)!W $$!!` $!!7 I$I$$!!>> I$I$$!! I$I$E)!ꪊ I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)$! I$I$E)! I$I$E)! E)j  E) E) I$I$E)$!  hE)A( I$I$E)$! * I$I$E)$! I$I$E)! I$I$E)!(  E)@ E)  E)& I$I$E)! HE) E)! n $E)ap I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$)(  E)  I$I$E)!` I$I$E)! E) E)!^ L &%)!UZW `E)!+W} @ E)* I$I$E)!*+ PE)  E)!Hb E)!* I$I$E)!+ I$I$E)$!* I$I$1 I$I$E)! I$I$E)!* E)(4( I$I$1 I$I$E)$! * I$I$E)! JE)z xJ&!*8  pE)a  I$I$)( I$I$)( @E) I$I$)( I$I$)( @E) I$H$e)E)5V\ I$ $e)E)͵ I$I$)( I$I$)( E)! )@%)aBj PE+@!* E)* ȁE)A,4 I$I$1 I$I$E)! ЁE)(84 I$I$)( I$I$E)!( I$I$E)!* I$I$1 I$e)E) 5U H$ E)!e ɑ$I$1!%W_e M&`1! @R$I2E) *h X$@e)! I$I$E)$! ضm1mE)  A$I$e)E) I$I$1 I$I$)( H6s E)< I$I e)E)ᆰ I$I$E)!(kڡve)*ZmE)Р mնJ$$! * ۰mޖnE) j+/Je) I$I$E)! * I$I$1 m۶ E)a I$I$E)! ( I$I$)( I$I$E)! I$I$E)!€ I$I$E)! I$I$$!!   !A I$I$$!! I$I$$!! I$I$$!! I$I$e) I$I$e) $!A I$I$$!! I$I$$!! E)!u E)!u @%)A*6 $!! I$I$$!! I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)! I$I$E)! I$I$E)!* I$I$E)!* I$I$E)! PE) I$I$E)! E)! I$I$E)$! 0 E)b e I$Il1E)W}J I$IІ1%) I$I$f1! I$A$E)! I$I$E)! ۲mضmE)@ E) I$I$E)$! I$I$E)! @E)P I$I$E)! `E)@ pE)! I$I$E)!* @E)!8* I$I$)( E)  I$I$1 I$I$E)! I$I$E)!* I$I$E)! I$I$E)! I$I$1 E) & I$I$E)!* E)!_ !$E)!Wz I I$$!+ `B E)!+UU E)! I$I$E)! I$I$E)$!* I$I$E)$! %)a I$I$E)!  ,E)x ߤI$!H$I$\WI$Ib/ O/Q A*(I !ِـm+ +`6$@NƄK!$$$$a b ۖm۶  4hڤ (0( R@ @=!z^i1I$I$!( I$I4( UU!@! CdI$!Aj0`bb ې$Il! @*&!_r1`I!IĖ !.&˰ ۰m R$hҿ App$I$I$I$H>D`!! A@ aI$I$!I$I$!I$I$! d$I!*I$I$! $C$H!* I$I!* I!ZW`D!&!^m^Ƃ$( i" !j!I$I$! !b!  $I$! I$E) $ ")!!@ I!A I@$! @$I$E)a $$ A0E)  @ж5!* $IjD!^'<!zWZ !L jW t$ !^ .)!mj ! I$I$$!! @!p I$I$$!!  @!b @$!!J  $! I$I$e) I$I$e) $$!!` $!!s $!!x I$!! (l! $$! B!b $!!= H$!!V %)z* E)!U HE)!W HE)!Uz I$I$E)!] $E)!*.U @ $ E)ap I$I$E)!* I$I$E)! I$I$E)! I$IE)! I$e)! I$$іe)$!mܾ0Ie)  I$ 1E)UUJ I$O1E)J I$1!e I$Ia1!J I$I1%)wW. I$I:f1$!` I$I E)!  I$I$E)!* I$I$E)!"*  E)a I$I$E)! " I$I$E)$! E)!j E)! I$I$E)!( HE) (& I$I$E)! E)!@ I$I$E)! @E) I$I$)( I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$E)!* E) I$I$E)! I$I$E)! I0E)!U^ @H%)!_Wz !$! .+  $E)!+U I$I$E)!/ I$I$E)!* I$I$E)$!**  E)@ E) I$I$E)!* I$I$1 I$I$E)$! * P%)( I$I$E)! I$I$1  E)@ ME) n  XE) I$I$E)!* I$I$E)!. I$I$)( I$I$)( I$I$1 mmҶE) P I$I$1 I$I E)! ۶anE) I$I$)( I$I$)( I$I$E)! E)!W HTE)ͯ H E)b6* I$I$E)! I$I$E)$! I$I$E)!  I$I$E)! * I$I$E)! I$I$E)! I$I$E)! * I$I$E)$!$B$IE)@mE) e I$I$1!%^e1x 1`me)! / X,e)E) K$I$e)E) I$I$)( I$I$e)E)% I$I$1 I$I$)( X6f۶ E)  I$I$)( PE)a $ `2 e)$! [lE)Xࠀ _{&!! *x ۰ nE)+- H$ E)! I$I$E)! . I$I$1 I$I$E)! I$I$E)! I$I$)( E)A I$I$E)!` I$I$E)! I$I$e) I$I$e) $!!$ $!!v @$!!^  ,$! $! =! $!!U I$I$$!! $!!  @E) E)!U E)!U E)!+*W $E)!W $E)! U  %)! & I$I$E)!+ I$I$E)!* I$IE)! I$IE)! I$۰me)$! I$$e)!Ik If1b. I$%1E)ժ*J I$O1E)_J I$I1! $I$1$!*z.'1a*ze [$I$1E)WU]e ؚI$1! e I$1$!e Iɝ$1!*e I'$1$!e I$1$!_ J I$I1! I$I&f1! I$I$E)! I$I$E)!  E) E) I$I$E)! X%)8 I$I$E)!* I$I$E)! I$I$1 @ dE)И I$I$1 I$I$E)! I$I$E)!*  E)  I$I$E)!* I$I$E)!  E)@ PE) L$E) U^ `H %)!UUUz kӶE)+ E)  E)!& PE)  E)` O$!\VUUI$I$I$I$5- W" em؉   ? H * 9ra@0a $!b 4h*I-P J("E ! @&!z^pDm'h$I$8ID A* .f$cB  Hڶm( 0[I˖, ۰ !kl8 m;vb!P &L j^Wc8J$.I$I*.IN$  m!!99!A   " A@  A H a4! H$I$! *%+ !A`! 4!A`%I A*@4H!{VO!խ@!ڪI$I$!$!$ !I$I$!I$I$!  $! $I! $CI! A$I$! I$ I0! @$1! z $|!W%j!_^%I!^ի MI$!ׯ  I!* d!d Ad!d $d!d H$!!pW P"!A I$I$$!!/ * I$I$$!! I$I$$!! **  $! A! I$!!կ @"!` @!a H$!A8 !A  ! @!  I!a '! W @R$!A HI$! >IN$!b $I ! $!* I!U I6H$!գ  A%)!U_ $!!' E)! U E)!} E)! U `۶$E)!U $E)!U E)! ۰l۶mE) $I$E)!* I$I$E)! H E) $( &I$e)$! $I$f1$!oJ$f1A e I$1E)uJ oI$1!e I`I$1!J IB'$1$!e I$1E)UUe I$O 1!. I$I1$!ߠ I$I$E)!* I$I$E)!*+ I$I$E)! E)A4 I$I$E)$!*  %)A@ E)! I$I$E)! I$I$E)!+  E)` E)A I$I$1 I$I$E)! @E)A I$I$E)! I$I$E)! I$I$E)$!**  E)A& @E) _ !$E)!UU_ -6! 芨 PiѶE)+ @"LE)R E)@ E) I$I$E)! E)!j E) I$I$1 I$I$E)$!* h%)A8 I$I$E)$!* I$I$E)$!* @E) I$I$E)! @$! I$I$E)! I$I$E)!(" I$I$)( I$I$1 I$I$)( I$I$)( I$I$E)! I$I$)( I$I e)E)~ I$I$)( I$I$E)! @ E)!W_ $@%)6  E)!V  E)A.& I$I$1 I$I$E)!  I$I$E)! * I$I$E)  I$I$1 E)! *` HE)(& I$I$e)E)%UU X-ٖle) e I$I$f1!-_~e H$1!x  ɐdI$e)! / @,e)E) I$I$e)E) X%۶mE) H$ e)E) I I$e)E) @E) ` K$Y`E)!  7l۶mE)4 I$I$e)$!* X2,e)$! @E)Zh $!-5 -me)  I$A E)! XE) ( I$I$1 I$I$E)!( I$I$E)! I$I$1 I$I$E)! (( I$I$E)!耀 @$!!^ $$!!_ J !@ I$!  @#<!! ` $!  %@H!b R$!x $! }$!A iI! $I$! $IU! }$! IT !U I! E)!u $E)!W E)! $E)!W E)! U m۶$E)!U E)!U  E) @ ۶me)! @$I$E)! m۶-Ҷe) @mmE) X$!! E)p* I$I$E)! I$I$E)! I$I$E)!꪿ E) I$I$E)! I$I$E)!  I$I$E)!e1aZJ I$1! J1AJ I$܆1$!׀+.1 I$I$E)! I$I$E)!* I$I$E)! E) & I$I$E)$! I$I$E)! E) E)! I$I$)( I$I$1 I$I$E)$! I$I$E)! E)@ %)A $ I$I$1  < I$I$)( E)  I$I$E)!~   $!  ö-!  E) * aI@%)n E) I$I$E)!* I$I$E)! I$I$1 I$I$E)!* I$I$E)! I$I$e)$! * H$A$E)!`e I$I$1!%W_e'of1! P $%)!8hme)` I$I$)( I$I$e)E)[y I e)E) E)A I$H$e)E)TX I$I$E)!P I$I$E)! I$e)$! * I$X$E)!p IP %) " E)C*+ a E) I$I$E)! . I$I$1 I$I$E)! I$I$E)! I$I$1 I$I$E)!(  E)@@ I4%)ꩣ d!d D!a d!d  !a@ I!A  Cd!d !$!! I$I$$!! H !  I$I$$!! I$I$$!!* !$ 9$! I$I$$!! I$I$$!! I$I$$!! $$!!W $$!!_  !!@ P! I$I$$!! $$!!^ H $!A4, $! I$I$$!!( H$! EP !a $$!!u* $!!+ H$!!׀ R4!` $!* $!!  I$I$$!!* I$I$e)  $! %)! I$I$$!! I$I$E)! I$I$E)!  E)* I$I$E)!x I$I$E)! I$I$E)$! ,%)` I$I$e)!  ?e)!X~ şe)! mێ ;E)! x <E)` I$I$E)! I$I$E)!* I$I$E)!>? I$I$E)! @ \E) I$I$E)! (E)@p H$I$!{I$I$VI$I-- PI$ih$!!- 4$!BHDI(I$I$$!B A  M$!BH$@*$@ 0 `I   I$I 8A$I4.I$I* @  H$!B4h$!!@$I \B&@`,(b7 H$I@ $!BR$J; HҤm&ND b$(Hĉ98.  J _յ00Aa6,Hd!Im؀!  `d ˒m! !$ ! (z!zWɑσ! *HT! !Vl0 !,ؖ 6 D!H!R% AP !Ȱ!!!.$@ !`pUÄ! K$!A =ON!XսIu!A & I H$!* P*$! L„$!( H&I!* I!* ,!` B"I !Ap @@$! $I!* $\! ALE) жM-!* HR$!!&I$ ! O$I ! It @!U $$I! $IHE) dE) !$! I! $!E) "!A@ ! I$I$d!d I$I$d!d I$I$e) I$I$e) $!!*u 2$!!(U @B$!!_ D$!!] H!`  $!!} $$!! ! I$!! @$!!_* $!! I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!! ʥ !!, $!! @$! @!@ I ! @&$!!U $!!~ $!  K! $!! _ I$I$$!! I$I$e) I$I$e) E)* I$I$e) I$I$E)! I$I$E)! hE)( I$I$E)!* E)! I$I$E)$!* I$I$E)!* E)*  DI$e)!  ?e)!p v!~_ k&ɐ@!A-  X$! z JST !+ !A$I!+L!& I$!* IH! I !  $E)  E) B"$I!` $5"I!A`@ H$I!* $I&IE) J %!!4 $5O$!p$I I$$!+ I%P! $I! H !* $R"I!PP $$I! L!*  $! $AR%! A$d!d P!A $d!d d!d LHd!d &$d!d L$!!Uբ_  @! @$I$!!-U I$!!կ d!d $d!d  $! *$I!a@ p(ҲI!a B` `$I! Mڶ! hR#H!a` mi! @a$!! U I$!!U I$!!VU ! $!!/U  I$$! p$I!*  %! 4)!B I!   $!!q xDH! 8$ I$I$$!! $!! !( $!! !0$!!_ @ $!!\` $$!! $!! I$I$$!!+ I$I$e) I$I$E)! I$I$1 XE) I$I$E)! I$I$E)! E) I$I$E)!* I$I$E)!x mm۶e)!-_ hӢMe)!x~ E)!)p $E)!^ I$I$E)$!  %)b@ E)  E)4  E) I$I$E)! I$I$E)! I$I$E)!* I$I$E)!* I$I$E)! E) `E)~ I8b,$!  $E) U E)! I$I$E)! I$I$E)$!* I$I$E)! I$I$E)! I$I$1 I$I$E)$!* I$I$E)! / I$I$E)$! * I$I$E)$!(. ɑ$I$1!%J/1- ۶ecmE)a( I$I$E)!(( I$I$1 I$I$E)!* I$I$E)!  E) I$I$1 I$I$)( I$I$)( I$I$E)! Je@E)W  n$! * E)! . I$I$E)! I$I$1 I$I$E)!( I$I$E)! I$I$E)!P I$I$E)$!* E) I$e)E)5U I$A E)!peɚI$1! 5W6saE)A( I$e)! - I$[2,e)E)P ø%۶mE)!p $I$e)$! * Hm۶mE)A I$I$)( A$I$e)E) @E)ap E)  C%ɖde)! `E)蠠 k!? mme)! +/۶|7lE)b44 I$I$E)! I$I$1  E) I$I$E)! I$I$1  E)A& @E)!\  !A @2d!d  d!d  d!d d!d aB$!  $!!]r^ I$!! U $ $!!_z $d!d 0d!d  $! H$I!A: J4I!b I$! in! IJ !( i[$!* I$!!U $$!!@U I$!!UU `$!  @\$I!А I0!* L$E) UU P IE)Z dE) mE) m۴0E) lE) IE) ٦E)* f! $! * J$!T I$I$$!! @$!!^+ $!! H$!$( E)! I$I$E)! I$I$1 @%)@ P%)  pE) I$I$E)! I$I$E)!ꪫ I$I$E)! I$I$E)!* E)!5^  E)!\~ E)!+x E)! I$I$E)$! $X$%)`pI$I$sI$I$ I  "8r$ $!AI I$!!E&M$!!i$MҢ mP $!!hi$@E[I$ ې0 * 3'N$p\UIb'N(%K$à(I$MbA H I$!!-P@$!! E۶$!!I$I$$!B 4h$!! h۶$!!H $!B @$!I A$I'( Hıc'( vb`H  $!bm[ #'X m۶- ,'NK $I"!ɰm  A>!~^ }D)T,!Ws ϕJ!rTսDIR 0` M@&h)P(I,)   (j !jz Ibذm[ I !.&(6|  M &!b\ PyI!pV aB $I! I$I$!I$I$!I$I$! II$!* L$I! &(  E) @H$! @$I$! II$!* $ $!  @'! ^ &I$!^UUI$I! IP I!U 4hڶm!+ H$ ! * I@$!* $I!* I$!(  A$! * @$IE) I$ E) HEH! PH! 2I! $$$! IBE) Id!d $ d!d  I$! $d$! hۺ-! m[5!  d!( $I@! I"! I$! D%)A H$IE)a4 I$E)!UU k3`E) IIE) IHE)!UU JE)!** E)A I$I$E)!U LE)!UU E) I E) !$E)!*UW ۶mE)  E) k mE) m6E) %E)_ жK E)  Kh$! ۔-$! ! @4 !`  $! $!!h  $!!x  $@$!` IE)! I$I$E)! I$I$1 I$I$E)$!* H%)$ @E)j E)! I$I$E)! I$I$E)! I$I$E)! @E)!_r @@E)!b5^ 0E)!X  E)! X I$I$E)! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$1  E) I$I$E)!* I$I$E)$!( I$I$E)!* E)!@J -E)W{ 6m! j '%) I$I$E)! I$I$E)$! I$I$E)!*  E)B( E)A  E)@ %)b I$I$E)!* I$I$E)$!* m۶mE)-J x'I1!-J I$I$1!x I$I$E)!  I$I$E)!@ E) I$I$E)! I$I$)( I$I$E)! ( I$I$E)! I$I$1 E)! K `%)  IS#)!{j  HE)A * I$I$E)$! I$I$1 E)!* I$I$E)! I$I$1 P%) I$I$E)!(  II$e)E)-5U I$I E)!x`e I$1/eI$H$1!W\{  e)! - I$H$e)E) I$I$)( I$I$E)! I$I$)( 6lxE)$ I$I$E)! I$I$)( I$I$E)$!*(L)HJE)4( P @E)^ P&$! j ۖmE) E) ( I$I$E)!  I$I$E)!* I$I$E)! *& I$I$1 I$I$E)! I$I$E)$! H E)!WVxz  Id!d $Id!d H2d!d $ $! $L$! mkf! md!  A!. m۰u! IH&!* &)$!B JE)A $IE)A* !E)! UU kiE) imE) @"AE)k )"E)j E) E)!UW IBE)!U kE) @E)*  $! $!A I$I$E)! k E) * [ E)_ m%%) E) vM lE) ɴ-E) ! hE) &%)*  d @E)ߨ 4$! t$! I$I$$!! I$I$$!! 4$!` E) I$I$E)! I$I$E)! I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!ꪪ x %)  E)b @E)!-^a  ¢&E)! I$I$sI$I$I$I$  0 4@&$!!I$I$A $!!6MҤ$!!$!!mK`;@E&Mmm۶Id 6d@*%N$pXWUI'O`. $H$a`I$IK,%8w @$`IA!I $!! 4h$!! @&$!!mm&@"i$bI$AOA&!M$)$A J$%I$I** -@I(  @ $!b 4@$I*I$!bJ$I"E ! У!^ MH%!%kX Xy!\ mH$!([ӴKÆm< HI$!b$I, )+@A!H$I!(RP!&!~_ mҤIr$!r Q$z!!ҠϙR!!I$I$! $A$)!n!I$I$! $I! $I$Ʉ!  I$I!$! `I$I$!@$!$I$!xWUU I$I !UU IJI!խ  $I$! II$!* @d! "%! `( $I!  IE)a I$ E)a I$!* L$! $IH!* I$!  @$I! $! 2E) I $!* IR$! $I$!W@|$!I! $9 @!UM!Wի I$! i۶m!* $I! I@!* I@! K ! $!! I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!!** P$!A I$I$$!!( <$!A` $! I$I$E)! I$I$$!! HE)b E)!տ @E) IE)!U `E)* 6E) m E) 4[m%) c0E)ߠ+ 1 E) nXE)  !E) z$! $!! I$I$$!!. I$I$$!!.  $!a  I$I$E)! I$I$E)! I$I$1 I$I$E)! I$I$E)! I$I$E)!ꪪ I$I$E)! I$I$E)! @@%) @ E) E)  $IE)A* I$I$E)!+z I$I$E)! I$I$E)$! I$I$E)!* pE) I$I$1 I$I$1 I$I$E)! I$I$E)! * I$I$E)$! I$I$E)$!* E)z 'P6! Ъ pOE)+U E)! = I$I$E)! @E) @%) I$I$E)$!* E)!* @$%)! I$I$1 I$I$E)$! I$I$E)!⪨J AI$1!b??<1!p E)  I$I$E)! I$I$E)!* I$I$E)! I$I$)( I$I$E)! (  E)@ E) I$I$E)! H@E)孪 DI$ *  IE) / I$I$E)$!"  E)A I$I$E)!* I$I$E)$! XE)8< E)!  E)@ mېmE)  13ضmE)!騀Jyf1 .JI$O$1!V\  e)! I$H$e)E)}Y I$I$)( I$I$)( I$I$E)!( I$I$E)!( I$I E)! E)  [%E)a I$H E)!  %)^ 0 E) + A E)!€ I$I$E)! . I$I$1 E)&  E)A@ E) I$I$E)!*( I$I$E)$!( I%)T $Iڞ$!I$ z* D! &$!!W $@! $!!u L$!!U $! $$!!_ $I$!!UU $!! I$I$$!! $$!!U $I$!!UU  $!!x $!!  $!!(U A$$!!(][  $!!(u  I!$ $!!& I$I$$!! I$I$$!!*. I$I$$!! I$I$$!! I$I$$!! I$I$$!  E)!j E)! I$I$E)! I$I$E)!ꢫ I$I$E)! I$I$E)! E)z* mմE) J@%)_ 5T{!=x -E) W{ TE) E)! I$I$E)!ꋯ  %)A*& I$I$E)! I$I$E)! I$I$1 @DE)b I$I$E)! I$I$E)! I$I$E)!* E)!^* D„@E)!UU^j ]۶E) $ %) ` I$I$E)$!*  E)A` E) I$I$1 I$I$E)$!** &PE) I$I$E)$!* @E) E)!|* M"%@E)U^z Ґ I%)A** E)! I$I$E)! H%)A$ (%)a`` E)! I$I$E)!ꪪ I$I$E)! I$I$E)$! I$I$E)$! II$1!- I$A 1!  E)!@ @E)  E)A  I$I$E)! I$I$E)!  E)  I$I$1 I$I$1 DHE)A, L&R>! I$ *  E) / I$I$E)$!  @%)@  hE)a I$I$E)$!  E)A E) I$I$E)$!* H$I$E)!.I$I$1!W^.I$A71!V\SI -mE)! 5 I$@$e)E)p` I$I$1 I$I$1 E)!@ ضmٶmE)!  I$I$)( I$I$1 I$I$E)$!*( H$A E)! h4`E) nE)+/ I$I$E)! I$I$E)! /> I$I$E)$! E)  I$I$E)! E)b  @E)a@  E) H$!A$, EP(!00@ ! I$I$e) I$I$e) I$I$$!!ꯊ  $!   ! $!!U I! I$!!U  $$!* @$!! $H$!!WW $ $!!U $!! $$!!_ $@$!!*U_ $I$!!U* I$I$$!! `$!!W @ !! 0$!!X   (!(`  d!d  d!d l ! v!( %R!!Р  $!! $!!  I$I$$!! I$I$e) I$I$E)! I$I$E)! I$I$E)! I$I$E)!  O$! f E) I$I$E)! * I$I$E)!ꪪ Z@E)^ D E)~m />!z_ Nk^E)/_ WE) E)!% $E)x H$I$!v]I$I$I$I+I6m$ &I$I$( I$I!AA$H$A@I$I$* II b&H$I$!AI$I$!AIi[4$!!H$I$((Iɑ /R$I$!I$I(  @$!AI$I$!AI$I$ $I$!AII$H $H$I$!A$!AII$ O 4!/Hɓ$ H$ AI "- $!B@ !  I$ $HdɖmII* I$ ң&͕!__ &j۶!m9 ذ!۲m((ТE&$!!1dI%$I *  8p#[6`@xA$I$I[, (6l! I%!A% ӴJ!\`$[ ɕ$! 0`@d!K ۰ I$I$E(C !$Kl! $H A/ @$ !h!j^HY2' }@@!_խ@$ !ض, Ȳ!K!4@ `0!$!-`!I! !D2!$|$!zWH$I$!*I$II !Wկ IR$!*  !+  2I!  J$I! J@$!A$ J!  I! $d!d @!   !  @$!!x @0$!!+] $I!a  C$! KI!b &$E) $R+%! J$!b d!d d!d $ ,!a` @I!@ )!  JФ!$ $! $!U $!U $!U w! t! X! + ȠD!$  @$!!ׯ 0d!d $! d!d  d!d 0i !.  ! !B ! $$!!+U I$I$$!!( I$I$e) I$I$E)! I$I$E)! I$I$1 I$I$E)!* @d%)A Р  %)b  I$I$E)! I$I$E)! E)z* 5E)^ Z\IM !ޫ дRK!/  E) W E)**  E) (` E)!) %) I$I$E)! I$I$1 I$I$E)!ꪪ I$I$E)! I$I$E)!  E)! X`E) mڶk E) M6E) E)! I$I$E)!ꪊ I$I$E)! . I$I$E)$! ( I$I$1 I$I$E)$! I$I$E)!*  E) @  E) Z(E)^z W͋! 5\  PE) * $%) ` I$I$E)!jʪ %)! I$I$1 I$I$E)!ꪪ I$I$E)! I$I$E)$!** E)A . I$I$1!5_. I$a41!s  E)@ E)A I$I$E)$!* @E)@ PE)A I$I$E)$! I$I$E)!  I$I$1 X`E)\ I$R)!I!b P-E) /? I$I$1 I$I$E)$!* I$I$E)! E)@ `E) %)b I$I$E)! * -E)O'f1!Wx=f1!VTR 6lE)! I$H$e)E)UWTX I$I$1 E) I$I$)( I$I$1  4E)` E) I$E)! *( I$H$E)!x` M[ !.  E)! -% I$I$E)! I$I$E)$!  @E) E)(" I$I$1 E) I$I$E)! * I$I$E)!zj I!A` $I! $R/A!p !I&E) HE) H!a 9@!a $$!!_  d!d  D! P i!AР 6!  <!bi $!! $!U $!U ! .! N! &!!@ yն@! ۖ&! B3$I! ` $AH!  $!!m "@E)j E). AE)!U I$!@ $E) B$!!` $! $!!~ $!!  I$I$e) E)(*  E)!jk E)!ꪩ I$I$E)!ꪪ E)! I$I$E)! $@%) @E)* =E)^ ӮM 5$!_x Tk%)-W} h%M$$!!ظI$I$>CI$I$a* BII $I$I$ I$I$ I$A$I$I$I$I$!AA$I$a`I$H$II!A@$H$((I$I8A#$H$ cI$I(* 6m$I$I$A I$I$ (I$H$I $!AH$I$ H$I$!AI$I !AH$I$I ! A*B`$I$ I !AI$I$$!!-P-"$!!@I$!! $!B 4$!BH)P$!!۶ l*H *  JmJ!aت* JT!CP6,X@$!BP@&a@M!I$I$$!B`$K l/ذm۶l(mb*  kM !_% 0P! xR'AA!$ؖl!H $!bض !ɖmۆ   0@% ` RTI I H   %!^$6!ky&I a  q!" +` !I A PD!@!l۶m  !%!%0! 0! ! T&!A&H=O$!^UN$I I$!U* 9EI H!* I I!* @$$!  A0L$! `$I!* I! m۶m! II! IE) $I2! TH!! &I! LD !!< $P.$! $0$E) $ -! $!  j$!Aj $II$! 'I$!$I !߫ $I" !] I$ H!b I$$! I$!W I$!Aߺ Im$!A I2I!U I"I!U I"I!U I"I,$!` I6"(! @ I$! Iڶ! $& ! ol! J$@!A   E) E)! M% lE)a HE)!W  $!!  E)* $ E)!U}  !A I$!! U $!! I$I$$!!  $!@ E)! E)! I$I$E)! @E)! I$I$E)!  E)!jj E)a rE)W ]tZ@$!~ 9'T!5W} 2%)!@ * P)E)   E) I$I$E)! I$I$E)! I$I$E)! *$!  $!b "AP@!@  $! I$I$E)! M E) Un%)/ hE) E)! I$I$E)! I$I$E)!+ I$I$1 I$I$E)$!* I$I$E)! * I$I$E)$! I$I$E)$!* `E)z耀 `{!/~ "dE) HE)6< I$I$E)! I$I$E)! I$I$1 I$I$1 I$I$E)! I$I$E)!/ I$I$E)$!*$A$Ʉ%)!$ ۆm71aJ E) I$I$E)! E)(  E) I$I$1 I$I$E)!*( I$I$E)$! I$I$E)$!* `E)xI$j4! ߐwId!b* E)  I$I$1 I$I$E)!* I$I$E)$!* I$I$E)$! I$I$E)! I$I$E)$! I$I$E)! * E)!\p`u:e)A j  PHE)+* A E)!  HE) 6( eP E) I$I$E)! I$I$)( I$I$E)! ( $E)bP I$I$E)! Y- de)! @E) LPL!! E)! - I$I$E)! I$I$E)$! I$I$E)$!** E) , hE) E)( & I$I$E)$! H0 E)!W^Zj $IA$! $9!~ @$!  HO$! $I$! $I$!׿$IB _ M$I"!׿ I$I!b I$! I$!U I!a} IM$!A I"I!U" I"I!U I"I! I"i! j( IҤH! Iҿ!U  d!( * @ $E)   d!d H !!8 PEI!  @$!!֯U E)& mmE)! II$e)!* I$de)!  I$NR`1! I$I$E)!  E) * I$I$E)!U  $!!- @ $!!-W` $E)!] I$I$E)! I$I$E)! I$I$E)! I$I$E)!  $! I$I$E)!  %)` E)!z ($E)j`XI$I 'H$I$/I A$I$(I$I$I$I$I$I$( I$I$AP $I$ I$I$@ $HA$I$I$I$8 *E$ I$I$I $ I$I$! I$I$(I$I$ I$I$!AI$I$ ( I$I$! I$I$!AA$I$(Iɑ!/D'M$ brI$I im۶$!!mٖl!I $!BKd2$hҤmѶ$!!@ $!! $Ap$IJL$  %H!cX!ƍM  4h$!!I @$$!!M$!! $!B@$!!C$K?ض-˖ /aH:z ӧA!_5 z!IRȼ!-Ƕ[ bJ. !@IQ( ٶmۆm 0l۰! 8J!Id ۶e !0xD!zVLD( (L\! aj* $"E a(DA a #'`A!1 $I!I$  $@= `$iQ!D " !kj) A b'! z 'I$ _}I$I IO( !ս*!%! $I"%!bx $II! H$I! * I$A$!" $HJD!A(  %!! R$M! $I$!  0I$! $I$! I$I! d$ &! $$&!_  Hk$! $6I$!P$I! I$I.  I$$A! IN$I!* I' $I! i [v!+( H$)! (TI!@ H$I!  m! *  $$! H@E) IB! IB! ! d!d Ld!d @@$I!` Y7 m!#  $$E) 0$$! @$@2d!d  E) ,$I!@  H$!A @ I! &$@+E)Z E)!+ II$e)! I$$e)! I$v1$!w* I$I91!  XE) I$I$E)!WU HE)!U_ $!!~  $!!% E)! I$I$E)! I$I$E)! I$I$E)!ꪪ H$!  I$I$E)! I$I$E)! E)  @E)^ oۤPH%)um6}$!!j P'%) )U E)* I$I$E)! $$!!/X $!a4 $!!@  $!A  ! I$I$$!! / ! A %)! * I4h,$! 0͐%) I$I$E) * I$I$E)! I$I$E)!/ I$I$E)$! I$I$E)$!** I$I$E)!* I$I$E)$!* E)(& E)!~p MP!  E) +  %) I$I$1 I$I$E)!  E)@ %)! I$I$E)!  %)A  %)!,& I$I$E)!*ǟ1! I$I$1 I$I$1 I$I$E)!* I$I$E)! I$I$1 I$I$E)! * I$I$E)$!" E) @E)~I$I' * I$! + E) I$I$1 I$I$E)!~ꢊ E)!*+ I$I$E)$! I$I$E)! I$I$E)$! E)!  `$E)!W^X`~r<91!ZqM !E)! -5 ǰmE)!  E)@ E) I$I$)( I$I$E)! I$I$E)! I$I$1 I$I$E)!*( H$A$E)!   !A  E)!%Z I$I$E)! I$I$E)! I$I$E)$!* E)& I$I$E)$!  E) $ I$I$E)!* %) m$JM!( I$y%! I H! IRI I! &@$I! !H !   E! hD$I!( mm! $L$!( H$E)  AIB2! IB! Id!d $d!d I! H $I!A4 !@$I&E) @$$! )`! ? @!A  L! IB&E) &! $&d$!!UU $II!*  $$! @ d!d J@!!4( a۶E)!*U $I$f1!UU M2I$f1$!Un-vf1b * I$I,f1!~ I$I$E)!+ E)!_ @%)A H $!!-Wa  & !!@  E)j E) I$I$1 %)j @ $E)AP H$I$!\t_I$H$AмI$I**A$I$I$I$* I$I$!I$I$A I$I$ .&I$I$I$I$( I$I$   @$I$I$(*IH)$!?H$I$I$ * H$I$! I$I$I$I$( I$I$! I$I$ (I$I$I$ $,' I$I$``(I$I /$H$ I$I$bI$!Am۶m$!!E&M$!!I @ mZ4$!!h$i&`@Aٶ 0 * O¤}!AV* W˖!yx$ȀD $H$!!-P hҤ$!!IA&@m)b4h$!!II&I$ٶ  @,% Z m_Pi!_/  K$!!I l/Ld  $mѢE$M)( $!b$I,9 @&I i@"E $ P'"!~Vm<$N ( mH $!b,k/I( &۶mK ۰ 8r!NI!$  &!_ =&I$I$I x* I)K!!b'%!A  I$I$! .("I @H ! *h%!A H$I$! I$ !*  %II! R"A4I! $ID AI$I$!(!z @%$!*U $=I$!aw`$I I$ ! IT H! I$ $I!*  I$! $I$!  $I$! I$I! d$I! I$!! " !A@ 4 I!! I`! ( I d!d  !! !b P! $I$d!d H"I!A  AI!-7 $!! - I$I$d!d A$d!d xD! ( ҅P !  ! d!d I!  $E) $$$!  I!  0$Ʉ!( @! $$"!` %)!U $I$f1! UU I$f1! U Ƕkۆ1!( I$K1! I$I$E)! I$I$E)!/  %)A@  ! $$!!-W *$!! *%) I$I$E)! I$I$E)!ꪪ ? E)*@ %)  I$I$E)!* P@E)^ I$PhE)UU^I$I$! * P I$! *z ! H,!(@  K !b& $!!% H $!b, H$!b @$!! X $!!% $$!!/P M $! 6]$!Aj RE)ʣ / E)( I$I$E)!/ I$I$E)$!+ I$I$1 I$I$E)! I$I$E)! I$I$E)$!* I$I$E)!x* M&@E)^z P)E) +  E)(B E)! I$I$E)! I$I$E)! $%) ` I$I$E)! *%) I$I$E)$!** ؾ؆1 . ?oe) E)! I$I$E)$! I$I$E)!* I$I$E)$! I$I$E)$! I$I$E)! *  E) I$I$E)$!* hE)~I$I$*>  io%) . I$I$E)!*) %) & I$I$E)! I$I$E)!ꪪ E)  I$I$E)! h%) I$I$E)! Ovb?E)!V\lT[E)l IH E) -6> I$H$E)!( I$I$E)! E)  ) I$I$)( I$I$E)!( I$I$E)! I$I$E)$! E)b m6he)!Zx E)!z% @E)! )% E)!`` E)! I$I$E)$! ** I$I$E)! *( E)  I$I$E)$! I$I$E)!  E)!Zzj @$I$! @I$!*  $IB! I$I!* I$! J"U$H! I!  E) @$d!d  !b I$I$e)  H@!b  )"I!!@ PHQ"%! `  ! I$I$$!! @d!d  I"d!d @!@   ! d!d  !  (!` !  d!d `Bd!d L@$!  I&$! $d!d L!A&. @d!d @$$!!*[ I$I$e)! ] XI$1!+U I$$f1$!mҶm+f1^ E) @E)!W $$!! Wz $$!!5W I$I$%)! I$I$1 <@$E)`pX^I0 $.bI$I$' I$I$I$I$(* I$I$! I$I$I$I$I$I$! I$I$ 8I$I$! I$I$!AI$I$(*II /`$I$ I$I$a &.I$I$ I$I$ I$I$* I$I$! I$I$I$I$ I$I$.I$I$(I$I (90P$!yZWI$I$` $I$Ii$!!$H$!A $!!m6$!!h$I4b@mIA  $!! m$I!_W% (h!r\W6,[$I$E$(-Z4m$$!!IiҤ$!!mm[@ 4maI@$!![$I?H '( }$(!7b Pɛ!AmRK!ڪF-@0Ii* I$!B`htm/ K%I !@R$!zHAb$ bP ^ե %NX  ؊& XP`fs2& I$!b IR$ zWPD1`!lK! L$!a*6M$ zH$I-IyY ׿*D!!¨ $ ! !I$I$! !j! $I $!* I& I!! $! J$HR$!~U&I$!^UUL$II$! IJ$I!g  I$I! PJS!a($! $$$ ! $! IB $! !@2 2E) HD$I!A( E) $$HE) T !  IHE) d2 ! H! "A$I!@  I! $!  JD!A4< $d!d @$I!& @$$! $$!!] H0d!d  d!d  !& d!d PH! @  d!d !  d!d  Cd!d $!@! I0!* $ d!d $R%!a $E) d!d E)!/U I$1!UU I4I$f1!^+c۠mBe)j ɶmۆmE)* I$I$E)!+ I$E)!W^ H $!! W E)! I$I$E)$! I$I$1 %)b` E)!) I$I$E)! E)!r ji$!^ I$j!{ dI$!-UU  |$! - $!! H $!!T`* H$$!! X I$I$$!! ($! I $!!q @"$R,!ap` ! X `! K%!/VX  D%) I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)$! I$I$E)!. I$I$E)$! E)!x* O+ %)^  d$!+ X%)a: I$I$E)! $! I$I$E)! I$I$1 I$I$E)! I$I$E)!*  E)m۶-E) (h$)E) ( PE): I$I$E)! E)! I$I$E)! I$I$E)$!  E)` E) E)!b m"5Xm$!zDI$ / 0NE) / I$I$E)! I$I$1 I$I$E)! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! * E)!x`9O'e)!5W IM&E)!T\ ۶adE)  I$I$E)! I$I$E)! I$I$E)! I$I$)( II$e)$! *( (E) & E) @ ۶m E)  H&E)!7T ۺmSE)!pb I$I$E)! ) I$I$E)!  E) I$I$E)! I$I$E)! @E) P I$I$E)! I$I$E)$! H@ E)!WV^Z $)$I!H( @$I! $I&CE) $B#H!` $IHE) Ad!d R#$$!` H &E) R"H I! @2d!d @")!@j  J!A  I!@  $I! $! d!d  $!!W  0@E)  0! $ !*  I!*  JT!a4(  $! 0! d!d I$I$d!d @d!d @$! I$I$e) L@$!!U஭ !$$!!U/ I$! $$E) I$d!d  ?e)! c?f1! UE߆1!~ I$I$f1!_x p@E)P I$$!!^  (!`H$Ib>/J$I$мI$I$I$I$a+I$I$ I$I$I$I$(* I$I$ @I$I$AI$I$`I$I$I$I$I$I:.I$x$ I$I$ I$I$ I$I$(I$I$ I$I$ I$I$I$I$( I$I$I$I$$ I$I$AP I A&!I$I$ I$I$ II$!A $@$!AI  !A $!!@$H$!A H!A@I $!!IM!!**0P!{^˂ m&H$ I$H$, I A$!AiI (4h&M!A m$-ۉ@ $ɒc'@ OTQ$! * P$M!!\*  $I *1isa@"2& ؖl m6,XҤK `>/*mۉC (0J zVIH!uVI (!յPĉ;!6Ld(4xK @$I$!B-P4$cBb@}AIR$!b E6A@a$!h$I$I$ o IH 0!d! J ! (8=! & I$I$!I$I$!P!$I%!a  !'!W $5I$!zUUH$I I$9!UU Iz!+ !A$I2!+ !$I! $I' ! $@H!( $I$! H$IE)a I$ E)a IHE) $! @! I$! $(" !@ I!  $I! I$! I! ( IB!  $$! L! I A! ! @d!d I@! I@&!*  H!A  IH H!!. IB0! I$!* $ ! &L!  HR(!!` -Y׶! # !*  d!d I$I$d!d d!d $!!} @$! $!!^  0$!!U_ `$! $!$E) @ d!d E)!/U ÒdI$e)!f1!  I$I0e)! I$I$E)!jʿ T%) @$!! ^ E)!U I$I$E)! I$I$E)! I$I$E)!ꪪ P$! I$I$E)!ꨪ E)! j5$!_x I$L=!UUW\ TI$! U  !- I$I$$!! $!!5p  $!!  I$I$e) $!A@  @$! @#$!p IHE! I$j,! ɕ$! / %) (& I$I$E)!ꪪ I$I$E)!/ I$I$E)$! * I$I$E)!說 I$I$E)! I$I$1 I$I$E)!* `0@E)^z RV%V!a ( I$I$E)!/ E)! I$I$E)! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)!* H@%) 8 E) (;mE)!Mf E)A hE) I$I$E)! ** I$I$1 E)!j I$I$E)$! * E)!r* @ E) Zb K&R!I$! P E) + %) $(  %)A.&( I$I$E)! I$I$E)$! I$I$E)! I$I$1 I$I$E)! ** @ E);xE) SA5 H  E) * H$I$e)E)\zj I$I$1 I$I$E)$! ( I$I$)( I$I$E)! I$I$E)! I$I$1 I$I$E)!** I$I$E)!`}ێ{E)! ' 6nKgE)A 48 I$I$E)! E)` I$I$E)!骪 IE)a? I$I$1 I$I$E)$!* E) E)!jj $I $$! ! 6mӶ! dj&! $IB! $$ ! I$@! IB2! IBH2! $ $! IH! IHE) d@! I@! "%!` ( !A@  A!+  ɛ$! $! $I!U  BR5! ` @a!" ʡ!$$ L! I&@!* $$`E) @I0E) - U!A   d!d ! I$I$$!! I$I$$!!(  ! m`! L0E) @0! I !/1!UU I%ɐ$e)!  I$IR$e)! @%H$E)zX^ $Y$cpI$I$!`hI$I$jI$I$ I$I$ *I$I$  I$I$PI$I$I$I$I$I$A44I$I$A I$I$* "C%!I$I$.I$I$**I$I$ pI$I$I$I$  I$I$ &I$I$(* I$I$A&I$I$AtI$I$AI 9( H$I$(I$I$( I$I$ A A$!AII!A $!!$H$!AI$I!AIM E$H4)t P  i&$!! $A!A $A$!AI$!H $H!A  @!AM$-Т 0 J$A I*5!z C s 0`l I$H Ab-Kl辯۰  **c۰mغ5Kɖ l+12R&O!^!$JH mZ֥@9 ذ 6,(*,'C^ H$I'Fnt2'A0`ز$jTD $Il!$ b& _$I$I$I*I@! @#1!z !R !j! )@ `@d! !ʁD!6 @$ A`j$I' I$I j+Ia $!!)P@!$!) !j~ !! !A$I!+@!` !@! ! @$$I!bP  I2 I!* $Ʉ$!* H! IB$$!  I$!  5R"5! p $IT! $I$!*`&!z HP!I&!ə$! U  HX!  }$!WU @I$! @J$! $II$!  II$! U  I$! I$! H$! _  I$!  AL! p J! B"$!`p dE)  @! !$E) I! P%R%! $! H!8 I$I$$!!> I$I$$!! $!!r m !, `Bd!d  !d!d `!e)!%W1!xU I$`e)! I$I$E)! @E)!W~ @$!! ^ E)!U I$I$E)! I$I$1 I$I$E)! I$I$E)!/  E)b`` @$! I&(!!@$I$b * PI!* $! *+ `$!!V` _ H$$!!-X I$I$$!! H$!8 $$!!X` $!! 5 ! I$P@! ɕ$%)-%U E)! I$I$E)!ꪪ I$I$E)! I$I$E)$! I$I$E)!ꪪ I$I$E)!/ I$I$1  %)@ R i@!! IѤE)+ I$I$E)! I$I$1  H %)a( I$I$$!! I$I$e) I$I$%)!Z I$I$E)!/* I$I$1 6lvl'E)!Z I$I$E)!% I$I$1  E)`  E)( I$I$1 I$I$E)$! I$I$E)$! HE)A X4 E)I$l=!a Vɖ!* E) E)! I$I$E)! I$I$E)! I$I$E)!ꪪ I$I$E)! I$I$1 I$I$E)! L&@ E) W\x tZ E) E)! % I$I$1 I$I$E)$! I$I$E)! * I$I$1 I$I$E)!(( I$I$1 I$I$E)! I$I$E)! . H E)! @k]f1 E)! @4E)x I$I$1 I$I$E)$! * E) @E)!* @E)& I$I$E)$! h l E) IL$!* $@I$! LM! &  It1!}! $ O$!BS!{I$!*(!`ય P"+5! PO$!UU @I$!  I$! $II$! $II$! $I$! I"mH! I6$!ժ I$!W I$b!W $I"H!U I&!U DJI$! _  $!  IL! @$d!d H I!( I2@ $!  I!  &$!  !a H!( B(!` 0! !b@ I!  @!$E) @d!d 0%E) jzI /%H$I$I$I$ I$I$I$I$I$I$I$I$I$I$ I$I$(**I$I$ pI$I$I$I$ I# ?H$I$I$I$(* I$I$ I$I$! I$I$I$I$ (I$I$I$I$I$I$ &I$I$ I$I * m$I$AI$I$( I$I$!AI$I$bހH$I$!AH I!A $A$!AI$I!A  I I$T#& em{^ )& H$i$!AI$I$@I$ $Am$  $@$a  A!AI$I!AA$I$$!! 4!z`ɛ!^W6,Xd  $!B َH H %KlٶmmM.5!D  ZiDə {#Ia؂$ rD1 H^ IH$ ۰,* (۸1s`56øm/ɀؖ 2t$H$I$b*Iy!iUI  ,!$vlK!I! @   )PV! I! !`$!^U$ ^UUUc' g$I!խ,!@@"I!ZD&B `  !I$I$! J ! !@ $! $$$A!* $I")!@  @I!!  I$*!!U#& !&!_^0d((I$ !u OJ% # !ajP'! <$H!aj IR ! * ^# I!* I"I$E!U( $I! I! II! IB&I! II! * [#II! I" H!U II !U I" !W I$I!_ I$ !_ I$M!U$I! _ RI$! $ I$!  I! bۖn!   I!@ 4@ !  Ih!!( I$! %R$I!b "(!A@ 0 !  0$!A  $!!x MT!&( I0$!!U\ d!d k4!(ß?e) umۆ{e) I$I$E)! E! %hh$! X  $! @$! I$I$e) I$I$$!! 4!! 0$! $!{ I$j5! TI$! UU @ !AР  PH!A  $!!-XB @ $! I$I$$!! @ $!!`  !!  I$I$$!! J=@! )I$E)-W E) I$I$E)!ꪫ I$I$E)!/ I$I$E)$!  %)  I$I$E)! E)!j E) ( k lE) .m۶!ʪ  %)!  I$I$$!! ! I$I$$!! I$I$$!! *! I$I$E)! I$I$E)!ꪨ ` E)*  E) *( E)!@ E) I$I$E)!* I$I$E)! + I$I$E)!* I$I$E)$! I$I$E)$! XuH EE)AꨜI$L'/  i! *+ E)!뫯 I$I$1  HE)( I$I$E)$!  %) %) I$I$E)!** E)!p` -kE)/>  ȅ\%)a** 6lnE) I$I$E)$! I$I$E)$!  E) b I$I$E)! I$I$E)! ( $E)` I$I$E)!: E) `1ke) .>{e)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)!, I$I$E)$! I$I$E)$!* I$I$E)!. I$I$E)!j X6E)U\ޒ@!RgB i[ $M*A!ֺ |^&$ !W_* |I! ڪ I$J@!* j"@$!_ I*I! R#!z i۶m ! IBI! I$I! mm`! m"I$!_ I"@$I!U I2! $$! $$!  d!d  @E) E) # @!x I"I!_ I$$I!  $MH!U~ PI$!/ $$!+ D!A:  -!p k `! !$$! H&UH!!  $! I$I$$!! I$I$$!!* $!!p  $$!!^ P$Id!X\ַAB&H$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I ?A#$H$ ^I$I$I$I$I$I$I$I$I$I$ `I$I$  I$I$I$I$I$I$I$I$jrI$I$I$I$A<I$I$I$I$!AA$I$I$I$!AI @$!AI$I$!AI$A$!AIA$aIHb9 HXI%H$I$AI$I$I$I$( I$I$!A@$@$I A$I$I !A)&m$`ɕ!J4  hɓ?!!j$ȑ[a  $!B@$I$$!!$!Bðm۶-"'NHp\ٶm۶> l L!J!׵[hބ y ^øL 4()R("IAK mۆ-=ǎgb7 ٣i $0H$b<&I$aI$Ib* ɛP!زe  HP `KR*1!ajIH!   H A(؉$E  !h!^U`$'!^UUW$u!UUխYI!կ@4$!Ap$%Id!I!!I$I$E(CI$I$E)a$!,I!X !!9!R!I !I$!a)@L !W'!WL!a* a/A$!} K$@!  I$$@2! IB$! IB$$! $II$! IB&! I! H$]$ ! $I! $Id!d m !  A! @&d! IB!* @ CE) I! !$!  $0! !* d@d!d $d!d "I! "I$H! I'$I!U I$R!W $I"=! W  I$!W  %Z$!A I! *! I$$!* "i$!A@   I! I$I$$!!ʨ* I$I$$!! I$I$$!!* H$!!Wp `$!!V` d!d k! ÖnuE)/ HPE)b $!!l < )! H $!!%W{ $!! I$I$e) $! I$I$$!! I$I$$!!/ $! O&@!I$I$! 0\!- $!! * H$!! $!! XG$!!8 $!8  $!!x ,$!p P(!I$I$!/  ! <$!`  $! I$I$e) I$I$1 I$I$E)! I$I$1 I$I$E)!zꪪ LȄ`e)!UUW^ $@!ȄE)!UuU E)!  $!! @ $!!6s I$I$$!!  $! ! I$I$%)! E%)  E)!i6 E)a  E)4 I$I$E)! I$I$E)$! I$I$E)$!* I$I$E)!* I$I$E)$! E)!jꪪ m5P !訠I$ ** P$! /= I$I$E)!  %)@  H E) &( I$I$E)$! I$I$E)! I$I$E)! I$I$E)! * @ `E) \E)!* -E) / I$I$E)! E)  @P%) `8 I$I$E)$!+  E)@ E) I$I$E)$!* E) * mmE)!Z`<9f1!RaɅ @E)! )- I$I$E)! I$I$E)$! I$I$E)$!* E) E) I$I$E)!. I$I$E)$!  ,E)p I$!I! I@&! IH$!*  d$! $I!*  @I$! HIB!  J$@!! IH!** $Id!d  I$! $Id!d $IB! I! @aB&! d!d @ d!d &4!a` L! mu!* $$$ E) 0 Æ!8 JD!($ @$!  I! [m! M"iI! I$ ! L$I)! $II$!  IJ$!   I! @$4!` $dB$! !$$! I$I$$!!* (%!@`PI()$!i{I$I$*I$I$I$I$I$I$I$I$!I$I$I$I$-I$I$I$I$I$I$I$I$? AS$ /rI$I$I$I$I$I$I$I$I$I$I$I$! I$I$I$I$I$I$I$I$ I$I$aI$I$ I$I$ I$I$! I$I$ I$I$II$I$I$I$I$!AI $M $ h$I4b @$I$I$I$bI$I$( I$I$!AI$I$I$I$I$I!A)6M$!AI)P h ^WUm&h$p)P@$I$$!!I$!B $!B@i$!!PE$!!6a\2'O$A%!!zHx!( lɒ-,%vZ_I$!!I$@$!! ɒ#'*z^1$5@%%@!Ĉd$H$I$bIĉ* iY ( -K$9  'IK IQ " $I$!aꪪ$! %IK!d   , $I$ $ y$I!uWխI!խIm' ,'a -E$$ a*p I !  $ !Hr!HR a*&!1!~@b!_ ' !W-zO~П!U^&/!^zr@$!a*p !%I$! $I2! I! $I$! $I0! H$! I!* IB$I! IH$AE) $I$ &E) H@!  $@!E) Hd!d I$H$E) d!d !@  !  LHE)  d!d  d!d $0E) @d!d $d!d @@! m;!8 !& E) M(!(  R#$!` $! H!8 I$$!!UUz #IH!~ I&!j $zH!A  I$!A  Id! @" $I!A `@d!d  I! @ &$!* $!!"% I$I$$!! I$I$$!! H$!!V @$!!^ d!d kl!  J%E) E)  !@ H!!  HRI! )$! I$I$e) I$I$$!! $$!! 7X I$I$$!! R$!^ I$L%! Jɕ$!+/ $! @ $!!X` * $!! 7 h$! $!!@**  ! ! @! I$M&!/ "!` % $!! * $!! . H($!$ I$I$E)! I$I$E)$! I$I$1 I$I$E)!z* ZlE%)  `E)- E)! I$I$$!! H$!! I$I$$!! I$I$$!!( $!!. @!  E)!{ %)& H E)A4 I$I$E)$! I$I$E)!. I$I$E)$! I$I$E)!ꪪ I$I$E)! I$I$1 @$!! L&b1!iə!+  %) '/ I$I$%)$! I$I$E)! I$I$E)! I$I$E)!ꪪ ($!` I$I$E)! I$I$E)! I(E)zx Mh!, E)! - @$@E)aP I$I$E)$! I$I$E)!" I$I$E)!@( E)!*( I$I$1  E)A@ lܶmE)?f1!5^n˷E)!($ I$I$E)! E) ) I$I$E) ʨ I%) ( E) H%)$ I$I$E)! I$I$E)$!* I$ E)!UUV\ I!  IB$I! !IE) ")$ !@ HH!  Ad!d  d!d I$E) I$I$e) @!A  $!!z  I E) @d!d d!d @$d!d d!d ۲!  Ȁ!E)  0 @!a  d!d H !A(  !,, $! TI!  $d!d  $$!!/U  e! I$$!!UWp R"I @!Z I$A!  \I1! $!U @ $! *5!`  $C $!* H$I\!XԷl$O$ Z\VWI$I$ I$I$I$I$A I$I$I$I$A I$I$I$I$I$I$ pI$I$I$I$( IDI >6h$I$ X^WWI$I$I$I$ xI$I$aI$I$I$I$I$I$I$I$I$I$I$I$zI$I$a(I$I$ I$I$AI$I$I$I$I$I$ I$I$!AI$I$ ( I$I$XH !H$I$((I$I$ (I$H$! I$I$A44I$I$(* I$I$! I$I$I$ $ &I$I  @$I $!Am$I!A  @$$!! $!!EۤI$!!I A$$!!m $!B@ҤI$!!I$I?`AD/Ճ$!u_V, m[m;$M$!! PI H $!B h$!!IY%Kي5/=;N$A@I$I$A  IyUB )0`ض 0`hv6l+ $$!b$)"A$!a`IH0/$ =!z'I4 9L ( I I!UI(& ^16`o-D @I |  &!@% ! ` a!IR@!ު́$!.O Iߤ a&>9"!_ek O ! &?%!^O~ !&! $II&!* m!  Ʉ!I!@! H.I!! IHE)  $E)a @$ E) LHdE) `dBE) I!b$ $H!  2E) $C$! @$! $$!  $! $ $! $$! $! 0d!d  ! !@@d!d  d!d Id!d  H! ( HM !A d!d @! ` 8! Hd!d JU ! $$ E) @Id!d -! H$! "I! I&H!A( $jA!+ P$! W  IJ! $0d!d H! I0! *  !!@ !  I$I$$!! $!!^` H $!!Wp $!!@ !A "@u%)h˯ 0 X! `! @$!! ^ $!!% I$I$e) $!a$ @$!! X B$!!(`B "``$! I$! TI$!  $! % $!!p* H$!! % I$I$$!! D! !$! ( $!! @!p I$J%!?  ! I$I$$!! * I$I$$!! . I$I$$!  I$I$E)!ꪫ %)A I$I$1 hE) E)!} -h%! . $!!< I$I$$!! @ $$! I$I$e) @$$!!P@ I$I$$!!ƒ I$I$$!!<Ê E)!} A E)!y I$I$E)!** I$I$E)! I$I$E)! I$I$1 I$I$E)! H%)!( I$I$E)!ꪪ 0`%)~zI$h$b* i! * $!!" I$I$%)$! I$I$E)!z I$I$E)! I$I$E)!  %)A` PE)# `E)h )HOԤ!> R1EJ!:.. I$I$E)! I$I$E)$! I$I$E)!**  E)!'' I$I$E)$! I$I$E)! I$I$E)$! I$I$E)! .> E)!xhǓ31!qiť E) )- E) I$I$E)! %) I$I$E)!+ I$I$1 I$I$E)! I$I$E)$! @;E)A  LHE)  $!!@   ! $I@!( I@&!  A$! $! $$!  $! $ $! $!  $! $! !@E) ۶m !+ $-"!@ pI$I! $IB! @I$! &!a $$!* % !b, @<!`  d!d !   !! RH!A $$d!d @I0$!!-U_  $!!^ d$!!UW~ j"IH!^  A!W@ ! "5R&!`pX *AB& sZI$I$" *I$I$I$I$I$I$bI$I$I$I$I$I$I$I$I$I$AI$I$I$I/b8X$bI$I$*I$I$I$I$I$I$ &( I$I$I$I$I$I$I$I$I$I$I$I$aI$I$a I$I$I$I$ I$I$I$I$( I$I pI$I$4(I$I$@I$IA@$H$I$I$ * $H$I$I$ I$I$AI$I$ (I$I$I$I$( I$I$! I$A$I$I$I$I   A$!Ami6$!!E$I!A$!!m-6$!!hI6$!!m۶A 6d(P$AI+W$!I@,(hm6$!!h$I4!A)жI$!!)P$!B4M$!!ɒ-Y $!3; $I$I$Iʠ( ɘ$\B8 %!ӉA M m.@ $$!B$)R(5 zI )Y@ $5|!WJȁ$I@`a ID 5M MÆm>ò-I$!   B"&A``(i!_D  H$6! $1| !W= lT=!-P*ɓ A I$A! c@! J$I a4<"E! !  I$I!* $HD! &I$I$! $JJ%I!&( H$I!( I$$E)a $ 1! m$! R%+% 6Iڶ!꿪  %IH!@! ! $ $6!* ($!`jU $)$! @ 4$! $! U $!U ")$!!@ Q$Ӛ$! c $HJ! $IP! I$$A&! HD!  $IB! I$! $)! I!a BI !` $!  H! Pe$! HE! @!@ $I!A d$!!Uz $!!z-U $$!!U^+ "I@!z I*&!^ J ! !I$!* @!d!d H !h  H! $! * I$I$$!! I$I$d!d H$!Ap  H!b Pv!!p( V@! >` j% !Axp  T! 5 @ d!d  $$!! 5W $!4 I$I$e) 4!A` P$! $!!p * K&@!II$!/  H!+  $! ʨ @! PȐ!A0<(/ $!! * ! $!! @!@ I$J%!?  Y! " I$I$$!!࣏> I$I$$!! / I$I$e) X $!8 ($!`` $!!  E)!zk " $! ( ` Q$! /> I$I$$!!( @$!p $!!6 I$I$$!! ( EP@!b $!!( I$I$$!!.<  @$$! E)! I$I$E)$!* I$I$E)!ꪪ I$I$E)! I$I$E)$! H%)b< I$I$E)! @HE)ظ 6P !ꨠDI$ /> P! /= I$I$$!! I$I$$!!** I$I$$!!, I$I$$!!  E)! $!! I$I$E)! j=P!Ah蠀yѓ A)  E) - I$I$E)$! I$I$1 I$I$E)!* I$I$1 @E)( I$I$1 I$I$E)!ꪪ I$I$E)! ?e) 6ZzϏ{~U EH$!  $!U $!U @$!U jdP$! ( J! ($ ۦm-! I$o"H!Uɑ$I!$I (_ TI$!  ɟ$! W P"$!A @O!" I$ ! $IB2! HI$!*  "I!A@ P !b %@ ! d!d I$I$d!d H$!!W~ ! d!d  K! I d!d ۦi !H҄I ܖ7H$I$ \VWUI$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$jIP95 %kH$I$bI$I$I$I$! I$I$I$I$A I$I$I$I$.I$I$"I$I$I$I$A I$I$ (zI$I$ I$I$**I$I$pI$I$(( I$I$! I$I$I$I$I$I$  I$I$I$*I I$I$I$ I$I$I$I$ I$I$<H$I$a I$I$! I I$!AI$I$I$I$* *Ii&$!!H$I!A$H$!A$!! $!!@$I!Ac۶m? d)P$A I i$!ID9 4h۶i6@$I!A $!! $H$ m&M 4d8pl s/`Im; @$I$I$I1g܈- kv:4(($ɐa/ H (i۶m۰[$Kt / ܶ &$1( $I & I!_ktm/m۶I$ $!B5 !սMX !׿B$HAp MM ! 6 M !A &![J !ö,!  Ib!*DR !@$AAI$I$E)a ( j! $I I!* $$! H$I A $&$I!H $ $! W|$!Aj B"1I$!A`$I$ $I$ I$I$A*PI$I"!* I$I _ I$$A!_* I$$! I$$ ! I$! I$I!U I$I & I$$!U I$@! I$y/A!UI$I U$I5  I$   II$! "I$!* !A I$!* !$I! I$$! $$! H !   !b  ! I$I$d!d d!d  A&d!d  R E!  $!!W LBd!d I$L2! I!E) $`$!!UVb @!d!d L0@$!  L!! ! @! d!d  &!  @!$E) Z ,! IL!a* `7,!/ ! @ $!! 5^o $!! I$I$e) $!@ ! I$I$$!! j)@!zII' /z  T! $! * I E!'  $!. I$I$$!!  $!!p $!!ʫ @!` I$J%!  H! I$I$$!! ? I$I$$!!< I$I$e) I$I$$!! !A$ I$I$$!!( D!$ *  E)c/ V$! + I$I$$!!+ @$!!b $!! $!< @$$!! 7R I$I$$!!, $!!J  $!( @E)! I$I$1  $! I$I$E)! I$I$E)!ꪪ I$I$E)! %) (  @e$! M&j6!z!I!+  $! I$I$$!!* I$I$$!!< I$I$$!! $! $!a I$I$$!  `$!  Dz&! )M%)-W E)! I$I$E)$!  %)b@ PE)  E)B E)A E)( E) )( E) hࠀ?e)Ë. !E)!)- I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)! %)$( @4@E)`$I$!p$I$I$I!& I$I.A!I$O  I$H!W I$$! I$$!* I$!W I$R#H!`I$ !W)( I$!U I$I!_ 6ml!  @I!  !%! *-I! M"I I!W I"5$!_ I$ !h)$I a*I$! $ )$! $HN!* I$`!* I$$!*  !$$!( $!! I$I$$!! I$I$e) $!!{. I&E) "-R%!`p9=W' zZI$I$A>I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I?/Q'J$ A~I$I$AI$I$I$I$I$I$I$I$AI$I$I$I$I$I$"I$I$jI$I$AI$I$"I$I$!.bI$I$ `I$I$bI$I$*(I$I$! I$I$ .&I$I$b A$a I$I$A@`*I$I !I$I$ I$I$ I$I$JJI$I$ I$I$*I$I$II$A,I$I$ I$I$5II4'<H$I!A$H$!AI6i&PI $!!@$I$!A@$!!-P h&$!!I$I$ (4(I#'* H$I$!AA$I !A I$a@  @$I$A``II b4lɲ;H $( I$I( iCv+($gbN(4Xdɐ /+$$`Fn8rHpޥ` % * 60`(NH$( H1 @ m۸9pC'b`^5 ƍ IHI(**  4k/M ׽"I6 $K͓#!aJ mU !b '9EI!rW EI ! H ! 9vl! @! B@  I$I$!$! $2IHI!I < `$ *I$!P$I$!I$Ia(I$I.!*I$!I@%!*I D!ےm!@$  D )! D1@! J$! H!* I$! ۶m$!a` IV! I$$ ! ֤H!* ۶&! mפm `!* I! $I )! P R$I!a b I!^(* I"I$ !_ I$!ə$O a$I"> W @II$! $A! I$$$! IB2$! I$$!+ $! I$I$$!!* I$I$$!!* I$I$$!! L$!!U `$!!-W !$$!ʪ HD$! L2$!! UW `%)!Wj жh %) ʠ I!,( ($!!@ I! $ !@ ! @$! !H0!* ! !6g`! uJ!/c   ! / I$$!!^ $!! 5 I$I$e) I$I$$!! H@!a I$I$$!! ( P(!`I$L$ PT! H " ! @! $! $!a  $!!p d!d Mx]! IJ%!7\p  !b $!!誋 $!! > I$I$e) $!4 I$I$$!!. $!!& @$$! 6`:E)‹  $!  !$! @ $!!6Rb I$I$$!! @@$!` !$!!% I$I$$!!ˊ @$! A0$!(2 E)! I$I$1 I$I$E)! I$I$1 E%)! I$I$E)! P%) X4`$!I$H%.  i! ** I$I$$!!*# I$I$$!!** I$I$$!! .< I$I$e) @ $!!`@ I$I$$!!(( H $!b, X5$!\xpA$8  p) E) % E)A  I$I$E)$! %) & E)@ E) I$I$E)! I$I$E)! E)!{ #q%E)*(P΍tE)  @E)@6 pE) *( I$I$1  E)! I$I$1 I$I$E)!ꊪ I$I$E)! I$I$E)!* m E)K! L!I$%I!& D$)! ' !ڢ D&$! $$! m6۰ ! ۶mJ!44 Il! ۶-&!  ! ۖl!  2!* TϵI!A(& 0I! LBL$! Mж! I6n! ԮR#(!!`  TH! $$I&!꠪ }"$I!z I$j#H! j! H! $I! $I I&! I$$!* I$$! $!+ !$ $!!  Hdɗ!H$I$I$I$I$I$I$I$ .&I$I$I$I$I$I$I$I$I$I$I$I$I$I$*AC%!kzI$I$@I$I$a)I$I$"I$I$I$I$ڪI$I$I$I$ I$I$"I$I$I$I$AI$I$A./ I$I$I$I$jI$I$A@I$I$!I$I$! I$I$( I$I$I$I$! H$I$hzI$I$  I$I$I$I$I$I$I$I$ I$I$I$I$ I$I$( I$I$!I$I$( I$ H$Ib@I4I$ I$!AA$AP@$H!AI$I &,I$M$I$I$ *Ii&!AHI6!AI$I$A$II @A$IIRha)4H$aBI $!Nĉ (  0` *`&\B' ppIZ!4$ #%@[ 0b=DZܽ$ $(*b'I(d$J I/ $rD^JH5$I*I*@p9Q@!_յ' @%1!z "I !+ } !W-| IY!baB$#` $I !IdH!@$ I$I$E(CI$I$E(C,;!$I! IJ5!~@j$ 'I$ WUUI$I` I$IJ  I!)!*$i z T$!bP"IJ!I ! !I$I! $I$! $I$! @$I$! ") I @ DI I!# I$H!* $! @$$! $! H$I! A$ !  $! @$I!  %R"M!P I$!" daB&! m`ֶ! Iֶ! ֤&! @J H!A   I!I! #I I!^ I"&+A! @ '.  IR!+ IIH!* $ !+ I0$!/ !$$! @$!` I$I$$!!// I$I$$!!: A! )H! !$!!x%U HE!! L2E)!UU H0E)!WZ  I(E)~x $ !   „@$!  $ !@* !a I$I$d!d  &! @ ! * Z$!  E($]!c PF!/  d!d @ $!! 5 @$! I$I$$!! $!! $!!. H!nI$J=!  Id! +  !A ! $!! I$I$$!!   $!* !! h$I!`IM'!/ HE!  $!!p $!!  (@@$!` $!! I$I$$!! I$I$$!! (  E)!5_ e9 E)c $R!  $! H$$!! %X I$I$$!! @ $!!r*   !@ @!b ^J$!**Լ ېM%) .? $%)ap I$I$E)! I$I$E)! @%)  E) **j I$I$E)! I$I$$!!Ȩ 6P !ꨨ HI *( ``$! / I$I$$!! I$I$$!! $!! I$I$$!! $!!/4 $@F!AР $! O$j=!W\xɑI$ / E)< I$I$E)! I$I$E)$! I$I$E)$!  E)!z @E)@ p%)! I$I$E)!/> @@E)aPW¿e)ˏ. J  E)b6 I$I$E)! I$I$E)! I$I$E)!ꪪ %E)b  %) %)!(& I$I$1 @ E)!Xrb $I$! $I$!I$I$! HD$I!!( I$ $! II$!* $! @$$!  0$$! I$I! I$I$! @$H$! @$ $! $I!* $H$! I$$! I @!( I$H!(  R"=!!p $$a!* dB" &! HO! * mk`!*I ! IH2$!ꊯ $dB! &ml! IJD!A  mФ! vkۭ!*  (R%!!8D'ApI$I$?- I$I$I$I$I$I$I$I$ I$I$I$I$ꪪI$I$A€I$I$ I$I$II$!* r`$N$bI$I$I$I$"I$I$I$I$I$I$I$I$I$I$AI$I$I$I$AI$I$A>/I$I$b*I$I$I$I$I$I$I$I$I$I$I$I$I$I$ I$I$hI$I$ַI$I$I$I$arrI$I$I$I$I$I$ &I$I$ (6(I$I$@@ I$I$!I$I$x\5I$I$+I$I$!AI A$!AI$I$b4I H$!8$H$!AI$I$!AiA&I$I$/I &* HI$!A@$I$( A$I$@A @$I h"A@");AIi&! Nر  %[ld(RcZIE$b" %j*jXA P$!! A%hI6( Q$I 1 H$) j&M$!!`A$[%I$I*  $9 zM&NZ-JL$ A* )dˤ  dӷ !aj 45! }RE!% &IX ^0a I$I$$!b FH  !ꪪ@p!ı @!DP$!~U'I?!WUUIH$*I$Y!IS$!@dR!$!I !!I$I$!@ !P*  * I$I$E)aI$I$! &)$ !*! I$I$! $I$!(!z  ! m;lk$! $ $! $ $$! %R)!AЊ IJD! - H $!  I$!  @$! H  !(* I$ ! I  !** I$A!  IH!* PII!   I!** jDZ")! @ M!* ]M! LB$!* $Ʉ C! $ e! + M"- @ $Ii!- m۶@! I$$!/ $!!% PE!a ,!` @d!d !@E) d!d IB&! IH&E)!UU I$E) UVr I$!* H0! I&!* e) I$I$d!d @ ! L$! ( h0! UJj-!p J5! ! H$$!!_ $! $!   E!8 I$I$$!! H $!x< I$j5!x  ɔD! + !! @ $!!7Zj $!!+ @! Q#@! c $@ ! P($I!` DI$! 5^ 0@! @$!! $!! 7 ؀$!<< I$I$$!!< I$I$$!!(" I$I$$!!Š.  %)7  xd!!(& $!!  $!!rJ *  $!! 6 I$I$$!!* @!b (!@ @! LJ%!.x @"9H$!! I$I$$!!( I$I$E)! I$I$%)! @$! @  %) ** I$I$$!! !L&|6 W_W~ Vi!/ $! " I$I$$!!** B! I$I$$!! @ $!!c X ! I$I$$!! * P$@$! ppA$I$(  E) // I$I$E)! (%) I$I$E)!/ I$I$E)$! I$I$E)!* I$I$E)$! I$I$E)!ꪪ I$I$E)! Ѧ:E)>:#'&X8E)X I$I$E)!‚ I$I$E)! I$I$E)$! P%) I$I$E)! dE)ڪ I$I$E)! @E)! R%HE)^I$I$! $A$I2!* I$A$!  $g!** ۺ m$!* $ $$! $$&! m m$!* HI#%!!P @IJ!  I$!* dB@! JD!a $I0!` @JI!( $A I!* @$! $H$!(  $AE)a @  !  b$]@!a8  AdH&E) IE) iM!* i$[3`!+ I!a& I6ݚv!/+ XM6!. ۠!* HDI!H$I$I$I$ *I$I$I$I$"I$I$I$I$I$I$I$I$aZI$I$I$I$I$I$$11Y$`PI$I$ `I$I$I$I$"I$I$I$I$I$I$I$I$I$I$!I$I$I$I$AI$I$A I$I$( I$I$I$I$I$I$I$I$I$I$I$I$I$I$ I$I$X^I$I$I$I$I$I$I$I$I$I$I$I$I$I$*I$I$ I$I$z^I$I$&. $H$!AI$I$ I$I  I$  4  I$I$I$!AI$H$I$xI $ H$I$&I$I( I$I$I$I$!AI$I  i۶M$!!Em&AIϜ'Mi(ق%Kl,8rr^im$!!@ $!BHbٖ$MIQ! @$*HI$(  NDdH I#'z^hҤ $!! m$!!I$!B$ɒ$zWtxB, @0Y2@$QAApEӷ!{蟐 )! D1 z5MR jz׽  $I"!!jI  $ !bR!bۖ$5 z M!`$ C'*'I!UUUI%!Uկ9@bV!ۦ!߿IlI! I$!I  I$I$E(CI$I$E(C$!$!`Y !%I! $!. RR$@!  II$I! $)IB"%!ap H !{ $(?!a@ 4ITI! II$! ma6! * !W IJ! # I!h $I !* R"5!` I! ! IIH!  A$I&!(* H! @$HE)a  2aBE) D!A  @$A!) a$E) &HR$I!蠚 I& ! RI!aк d$! m3!/ M 4v!+ [M !+ mv!*+  H!! @@ !` d!d Dh!!8 `d!d H0E) d!d MѶX !. @$)E)  I`!!  B ! *  $@$! E!: I$I$d!d `H!@ vA;!* ! D I! DJ*!A !  H$!* $!A H ! $$!!>\` H $! @! I$j-!  I! + d!d  @ $!!^c $!!꫍ I$I$$!!+  @ E) H$d!d R(*I!x HI$! -7 $! HE!8 $!!O $! EPH! I$I$$!!Ȉ @@$!!`` ZI!  ) ̀D! /< I$I$$!! @$$!!Rk $!! 0$! * J!a ! P( @!!@II< a*  ! *!A I$I$$!! < I$I$e) I$I$$!!8 I$I$$!! E! j 9 !xNb  PD!A  I$I$$!! P!  !a J!$ H$!!& I$I$$!!( @$!p M'j=!W^\x ɑI$!5U E) I$I$E)$! I$I$E)! I$I$E)$!  %)@ %)  I$I$1 I$I$E)!/. E) hG/E)Ë E) )--  E)!p I$I$E)! I$I$E)!ꪫ I$I$E)! I$I$E)! PE) @E)!Z ,`E) LBI! d"I$I! m%IKD!A*&& I@!_ ]HD!a(* I@$! II$!* I5!~ R"A!Z $I! KV$I!*' a P%|!* j!`  IO!* $$!* I! LBI!* $) !@ I!a  $$I!a $@&)!j $@$! * @$E)  IH! * B IE) m5a! IH ! ("%!b!8D&bB`I$I$ I$I$!I$I$"I$I$I$I$ (<I$I$I$I$ I$I$ARI$I$"I$I$I b?' H$I$AI$I$I$I$ hI$I$aI$I$I$I$I$I$I$I$"I$I$!(I$I$AI$I$ I$I$**I$I$ I$I$I$I$ .&*I$I$I$I$I$I$aI$I$bI$I$@z^I$I$I$I$AI$I$I$I$I$I$A4I$I$ ,&I$I$I$I$**I$I$z^I$I$ I$I$!AI$I$PI$I$  I$I$I$I$!@I$I$I I$I$ I$I$a++ @I$I$I$I$.(I$I$`I$I  I$I $IH$!Am I$ 4II $H$$!!$M!Ab!l@im!4@Ҥ$!!IA4d8J$I$I$* (IH$( H$N$ (M) $!!@$ $!!hP$$!B,%JZV<3ce1$8ێm7M'$AA! j߷!aHm )жm۶$I$!B.2"!ɟ aOD5 !*5M$!H$ $I I8*$IH l H!`ضm!@$I $RH ZI  %!$!9Il!TM A.4$%]@!'!Wb! Ӷq,! JH!A& Z&!_ R# Ą!aj@  z&!   m! Ij"I!^  I+ ! * D|! $II! b)I!_ QI !ժz !^ 0ID!P'!u~WR&!}_  JI&!  '! $H!* mn!  I ! DL(! &* H$Ii!a $$!*(*! $E) $E! @a2E) k m!  MІD   C$A&!* Ц[n! Xhv! TO&h!!.& D U ! $( I$! * $!An ! d!d L&E)  &E) I&B!  mE)/ 65E) ki״!( + Zl4!  $! I$I$d!d d!d I$!* $!! K~*I! N!- $!  h!  ! I$I$$!!( H$$!(P $!! @! I$j5! PL! / @$!! $P @! $!!読 e) ! 0d!d  d!d J$"@!\wʀ JɔD! -  & !@ A!  !  I$I$$!!Ȁ I$I$$!!.< $!!h [,@$! %,jC$!rÏ 4@! ʡ !A,$ $@0$!!%R $! ࠠ @ $!!Sjʪ $!!㍥ ڠ !(, J%P)!V\X` )ϕD! %  !A I$I$$!!‚ ! , H$!( I$I$$!! < P$! ! }j !WWJd$)!  ! P !  H@!A  @ ! @ 0!  !!  I$I$$!! ** P@$!xI$I$ L%) /  E)``  E)b` E)! I$I$e) ꪪ E)! I$I$E)$! I$I$E)! I$I$E)! 4AdH:E).> 5ɔIE). E)!pz  $!  I$I$E)! I$I$E)! I$I$E)!ꪪ I$I$E)! I$I$E)! E)!Jʪ. mN!* KdO A $IL!! k@m!O!U  I+! H9 ! ,I! %%IM@!WH 9!꿵I R!ժ_z I!  OR$! & K @$I! I"I !U ?$I! I$j@!I$I5! z I$! h2MI$! @\! mҶ ! mm! H!I&! )$Hm! LH$HE) !dBE)  I$I! Rfʕ!H$I$I$I$I$I$ (I$I$"I$I$I$I$I$I$I$I$a(ʊI$I$! I$I$@I$I$A:)$l$!{Z^I$I$<I$I$I$I$"I$I$I$I$"I$I$I$I$I$I$"I$I$I$I$AI$I$AI$I$I$I$ (4(I$I$I$I$I$I$ 4,I$I$I$I$`I$I$AI$I$A(* I$I$I$I$"I$I$I$I$A I$I$I$I$I$I$AI$I$aI$I$A+ I$I$I$I$I$H$A I$I$II$ I$I$h( I$IA$I$x^I$I$ A$I$BI$I$'I$I$ I$I$I$I$(  $H$H$I $( H&ib4$H$$!!E$M@ @$bm۶mA-Z4hҤ$!!ImR$ `I$M$ 4I$I**/IE۶ H$MaIE$!!I$I$$!!-m&$!!R$I 1 @$I Hm$AM۴I$!!Nǖ$ 5=ljpܵ%N$K$ mm$K&CBA@߼!bm- @1Ld J$ $ MA R$IUA zWIY ( I$L2$$p>UB5 bTP !I$9  @v!$%!I !ɤ!! ۶1N ! rki! / !U }Wu!b >$I!_PR!^ߪ !ת $%D1! d! $I I!  IBI!  d"!bz !  I$#I!* KJ!!  $@IH! @IH! HdH! hDMD!(86. P"%$)!aPj  I!A mI I!_* I$I! I$@! I$I!~'$I$! rII$!@ $$!  $I !+ i$[;`! $@IH! * P0I!  C!E) LȄ IE) h$ @! $@%! ^ i6!  &! fI! h0! MK*,!+ #I$!j   $$!+ d!d I$I$d!d d!d  `E) ! j"H!!ؠ @)E)/ 퐶M $%) @ =!b !LH$!*( d!d  $d!d H$B! $ ! * uA! IdI$! .'  !   $!!5W_ $!! @ E! `$d!d @@$!!Z% !pI$L&!  T! +/ H$$!!O/X !`$d!d d!d $!  !( iH! L&U"(!b t H! - $@d!d  (! $! I$I$$!! $!!  I$I$$!!> YP ($!/p ˀD@L,$!>  !  @d!d  $!!% (!@ @!  d!d h! I$J&! P ! % I$I$$!!,( x! I$I$e) I$I$$!! @$$!pp I$I$$!! 5 `!xpFʂ  T! * e) !  $!! 6 I$I$$!! *(  $!  I$I$$!!( I$I$$!! O$H$! II$ /  E) *+ I$I$1 I$I$E)$! I$I$1 I$I$E)!ꪪ I$I$E)! I$I$1 I$I$E)!// E) [-ڂE)ˏ E)!멭 H H! I$I$$!!( I$I$$!!€ L@H$!! $!! I$I$%)! I$I$E)! l,E)`! AI$! $Ib"I! KO$J!a*(I!  -S"!` $I$I! @aB! @ I! $I")!jj I$ !P!^ dB$I!* !I&$I! $I&$I! HIH! @$I&! #J I! I"6$! I$jI!I$I'A JI$! $It! M6 !  JD ($ $I0%! [ $i"4!a`3AB&!AZI$I$<I$I$I$I$ I$I$"I$I$"I$I$"I$I$"I$I$I$I$I$I$I 0b? H$I$I$I$/ I$I$"I$I$I$I$bI$I$"I$I$"I$I$"I$I$A@I$I$I$I$z I$I$ - I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$A*I$I$I$I$"I$I$ꪺI$I$I$I$I$I$I$I$ I$I$I$I$(I$I$A I$I$ I$I$I$I$ I$I$!AI$I$( I$I $H$bxI$I$*  $I$I$I$I$I$* I$I$! I$I$  $I  6M$O9=! H$I(* -ZM$!!mS$M!A $$!!@$!! &H$A II!AE&M$`I$Ip @& $I(I6m$!AI$I $!!E E$$!!NDA %K$@[$M$IIZ 1ia 0pJ$N, Kg6g8sm۶ 0۶ :x='g\?c$(HD1 $*'I*IM X$Ia/ UAْ I$P I$ $!B&zB ! ت I$ W$IY N!P!~ IYJ!L &!׽_ L$Hl[I! J.!!M+!R'hB!A*@$(!и$!R I!I!I$I$!! I$I$!  I"!@ $I!  $! `B$$! I$H !* @$ ! I$ $! H$I$! "I$I!j!I! $0$ !( LB! nm6! RU$I!Р* O" ! I$H!I$I4 !z TI$! $I$!+ [+mM!+ $I$ `  ! $IJ! b!^ H$! J!A  m"-! "5#I!b `sۼi! jL!7 DM!  L2! * Ц! I$I$d!d ! L&!(  $! m@ `! M6E)⯿ RI@E)Az Z-v! +  `0! * ! $$E) HB0$H! J I!a(4 X4 @!\p%J9\! 4L! / $`B2$!!5WU $!!裍 I$I$e)  $!Ap h!b( H!hɑ$L&! T ! - B $!!{ŷ &!  I$I$d!d @ d!d $ ! ( d" &!Ix$ 7 JDI!,4 @ !@   !  I$I$$!!  $!!>z@ $!! $! @ f!> V!  ( $!! HP$! ` .!A %!  d!d !! P"5I!Xp` DI$!%U $! I$I$$!!Š, I$I$$!! . I$I$e) I$I$$!!< I$I$$!!( $! ꪪ r 9!xϥ!^ 0! P!A H@ $!!Rb I$I$$!!  $!!rBʊ $!! I$I$$!!** I `!AI$I$  ! +/ I$I$E)! I$I$1 I$I$E)! I$I$E)$! I$I$E)! I$I$1 I$I$E)!j E)!  E).>  E)  E)!_~~z @$!!  I$I$$!! ** $!! N<  $!! I$I$$!!80 I$I$$!!(  E)!!I$I$! $IR"%! I$! $A$$! H$! $I$! H$I$! I H$!  I$ɐ!*  )!***z@!A&&I$I$!@! I ! I$I!** dBI! $Ʉ$I! @LH! I$Ʉ! O ! I$H!_ $I$!+Uz  $!  - R"pI! p THD!򚜬x$M$pI$I$I$I$((I$I$"I$I$ 4I$I$"I$I$"I$I$okI$I$ I$I$(0I$I$i$I$bpXI$I$>I$I$I$I$(I$I$"I$I$aI$I$"(I$I$ I$I$I$I$AI$I$AI$I$AI$I$I$I$ I$I$I$I$I$I$I$I$I$I$"I$I$AI$I$A/ I$I$@I$I$bI$I$I$I$I$I$0I$I$I$I$!I$I$AI$I$A+I$I$(I$I$I$I$(( I$I$I$I$(I$I$!@@I A$A`I$I$a/I$A$ I$I$I$I$(* I$I$! I$I$I I$* I A$Id"( p$I ( -Z4hҤ$!!I&H$аII$!AH$H!Ai$M$(II!AI$I$aI$I/+ Im$am$I  H$!A@$IA A$IX1$յ-۶m'H$I$?II/ i6,* &LXֵ P$!BI$I$$!BLF{$!((pDAN%p$I!  `8J( I%( 3'o`\  a9%h$I$I$   0۶hl$J!Wի E(&!_I$ Ad;IDII l@!)!$!@K!$!Im!!I$I$E(CI$I$E(C!I$I$!I!!&& !પPH!ޫGx! I$I$!* HD$I!A4<I$I$! I$I ! $I$! I$I !I$I$! A$I$! I$I$! R"%H!Aа I$I$!*$! $I$! H I$! $C$A!** !I2I!* $d! H$I2!* bH I!^ I$!u~I$I4!U_@I$  @P!- J$I!!  O!a &  4 !@+ I! $0H!a`` d@$I!! IۦXa! +I$%!^ Os-!/ VRA!/x R.QK!*  I!   $$!a I$I$d!d @! !L&! H$!A -m$! > ma$! ܔm! + I$@B !* H!! IHE) ` $!  H! h ̀@!$QRe"&!`` $ J! -  dB2$! * e) @(!@  @!(  H$!!|s I@! O$! 4A ! @ !E)  j"5!A  @! D$@!a($ !! "I!xꊨ TM'! /  !! @$d!d $!!  %! H$!!'  !@ ,@$! PH,`$!ˏ $@! H@!(  `d!d P! @0d!d ʲH$!a $I$!O$H$ A  ! % !! i$!A I$I$$!! I$I$$!! I$I$$!!  I$I$$!! PȀ@!xZO!&& ! d!/? I$I$e)  ! .,! @  !A % @$!!'6 I$I$$!! $!!@ O$z&!ɑDI$!/ $! I$I$e) @%)A` E)! I$I$E)!ꪪ I$I$E)! I$I$E)! @ E)! hU%) LE)  B$!!p`  $!!%5 I$I$$!!<( @ $!!B  $! !A $!! I$I$$!! ** $GI! ! ! ")$I!Bj!!! I$I$E)a I$I$!* $I$! I$I$!I$I$! !! P"!Aؠ $H4O! $IG! A$I$! P"%$! I$I$!** @$A$! A$ E)a H$!" $$I!ꨪ $! @L!* I! I"%$!_ I$M1!h ,I&I$I$a I$I$I$I$I$I$I$I$"I$I$"I$I$I$I$"I$I$AI$I$I$I$A+) I$I$I$I$. I$I$(I$I$pI$I$"I$I$bI$I$I$I$A0I$I$I$I$AI$I$A I$I$b+* I$I$I$I$I$I$I$I$I$I$I$I$! 'I$I$zI$I$!**I$I$I$I$ꪪI$I$I$I$I$I$I$I$bڪI$I$"I$I$AzzI$I$A* I$I$ $(I$I$ I$I$( I$I$I$I$ I$I$( II$H$I$`I$I$a) I$I$I$I$I$I$**I$I$I$I$( I I$N$I A$I$ ((  A$!A  @$!AI$!AIҦi b $H$!I$I$H$zI$I$A*   @$!AI$I ( I$E&$I !A$H$IH, m;vb'H$I$IEb ` %* Xĉֵ H$!BA$!B  9* x$@ `9HD N($vĉ`* %J!аN%E$I4I$I @H$!`QG0x /AI' W>O$ ~WH$I$-:I/! *yE!NX!`ۤM$@ A>Il$I  $ z I$I$E(CI$I$E(C@!I$I$!I$I$!e!! ?!W4d!!`$!m! @&B!AZ@I"I!UP$O" ! R>!U_$!_U&!j PR%<! "!@ ATR!a  $I )!*{ $II! .!$ !@ AH! $$E)a  I$!* @ I$E)a @$I$!I !ꪪ $dB!* H!I&! J !z I$RH!I$ / B"=d!`* !%$! $%bI!bں $! I$ E)a  $I$E)a P# I!!` Mh!b+́$!V b(^! Au%! R$ $I!* ! d!d @d!d  $` ! ` ! mm! 4$!  l! I$@ !*  D!A @$@ d!d $H$I!  I$! #-*H!~zI$!a* $HB!  dB&! ( 0! d!d  `E)  $!!q j- !^x)!W H!  ($A!@ $I! $I$E) I`B$!*( HB&$!P( !ࠀ  \! - @ !  `0$!!%W^ @(@H! ` @(! @ ! @! EP !> VP6!'<  H! C" d!d !d!d I$I$d!d  `$E) Hd!d R#)I!x`II$!?  P! $!!KO L! I$I$e) I$I$$!!>< I$I$$!! @$!!^ܪ dr%!  ښ30! 0!!  ! H@ $!!S{ I$I$$!!  $!!rjj $!! $!! *j P,.$!xp`I$I$ $! -5 I$I$e) $!b I$I$E)! I$I$E)! I$I$E)! E)!~ @! X%)  E).> 0$!  @$ $!!\XPb $!! $!!J** $!!   $!!@ P) !b€ ! p $!HL!!8$!UR!_ IR! *@I"I!U /!A @$!U!U  FO$!l$!_Uy$!UzU$H!!4M$z" !I"&! ZO$!!8  I! I!  IH! H$I$! A$I$! I$I!*** H$@E) $)@! I$I!a "(R"!@ಸE'H$ AI$I$) I$I$I$I$"I$I$I$I$AI$I$"I$I$"I$I$"I$I$I$I$ I$I$kzZI$I$ I$I$ I$I$ *&*I$I$!`I$I$bI$I$I$I$"I$I$A@I$I$I$I$ *I$I$aI$I$I$I$I$I$I$I$I$I$  I$I$I$I$I$I$ I$I$AI$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$!'I$I$A*I$I$ @I$I$.&*I$I$ **I$I$I$I$(*I$I$(* I$I$`X^I$I$kI$I$bI$I$I$I$I$I$**I$I$( I$I$! N$I(%H$ I $I A$ I$I$!AI$A!A 4i$I$I$!$I$^I$I$׵-I I$AI$I JI$I$AH$ $!A$H$b4Ii&!A$I$pH$Ip5 I'd`@B'b`HI $!BI-ٶ *`P$+XWJX1,%VZR$I *h$L IH$*pĉ`A\%,K$ $!BL$La  @$zWL@V 0='P'I$ ^I$IxI A A L AIJ IXd $!bI$I$$!bI$I$$!b[۶!#X (! V! * ۀu! I@#!*p $I!! $B$AE)  L! (( DHH!A<4JP!^~ 0 ! +/ B@d!d  $!!) $!` 9@!b  ! & "`! c!C& tL! ( A E) H@B E) d!d  d!d  !E) CHE) J"&P0! #D!/ !A @H!a I$I$$!! PG!  $!! &  $! Ȩ @ @!A l!ˏ'  X! -5 I$I$d!d $!!O￿ !$!! 5 I$I$$!!** $$!! @!@ $@!bI$x& xx I\I /- $!! $!!& I$I$$!!<8 I$I$$!!( I$I$$!! @$!@ 4@! $!!  Ph$$! x  C0d%) $!!B  $!!%%  !@ !a I$I$$!! @  $!!p`@ I$I$$!! $! $@L'!WV  I!UU жIҶ!U жIҶ!U жI6!Aj ԮI!a @RIR&! *j DJI>!*HO<! N!OI!UI¶!UI$ !UUg$I AZPTI>!I($*$PD  I$!A  )$! *U I! %@"! p  I9B!   !A  $I$!H $!AzI$I$AI$I$ I$I$AI$I$@I$I$I$I$"I$I$@I$I$!*I$I$I$I$I$I$' I$I$иI$I$>/ I$I$(I$I$I$I$"I$I$bI$I$ I$I$"I$I$ I$I$AI$I$A/ I$I$A@I$I$aI$I$I$I$I$I$I$I$I$I$!ppI$I$aI$I$A>* I$I$I$I$ 6.I$I$I$I$I$I$I$I$I$I$I$I$AI$I$ I$I$I$I$I$I$I$I$I$I$I$I$I$I$ I$I$WյI$I$!@I$I$!I$I$I$I$I$I$I$I$A`A$I$* 2^$ II$AH$I$ I$I$(I$I$!AI A$I$I $H$xI$I$V׵-I A$ I$I$( I$H$I$I$!AI$I IE$<`H$AI$I\% Iضe $(P$bXVMiѶai-ж$!!I  $!! %JDXVI"m$M &*@$Ib( $$JDI %-[vb' pI$!B-&$!!$$IjV  &<'N$I$I/Ip&`b/`X$C;6mb A"H*A8@$9ApI$I I!$6!H$!_UR!WU}%@!WUO! @$!+U I!UI!a !UIR !UI  H!I !! ! A I$I$E)aI$I$!$!H!r!H!_I.!UI'!UW $@!uU_ O"!!N2I$ I$$*HIb$  @Iə$!*U S!+ @"I!B IID!-* P$A!  H$! H$ !  LH2$H! Ŗvm!+ H !z* I$H!4I$ an @K!a+  Ʉ C!! I $E)a I$I$E)a C$@! !d0!  %>"I!^r%!W^ tI!H! I$! * I$H E) I$E) kۺ!! $I! ) kl!ꨠ +($ $!b. `IX! + P!! @$I!  @E) [-ۺ ! !A! + j"%"A!AX DI$!%U @! I$! * @d!d I%!  ! ( "@ !b@ ij !A  MU{! /7 !HH&E)  L&! * H$A E) R"%$A! I$! * dB2 !ꨨ$h ! $!0! `$CE) d!d Hd!d  ! @$ d!d  x.i!܀ %G)!qI $la! *)$ !`  ! ( H d!d LdB$!((  0E) iI!`I$I$**  I! I$I$e) $!!6 I$I$$!!* H@ $!!Pp (@!@ $ ! ds%!? JP,8!r 0! Hd!d @d!d  !  @0 d!d d!d ! X=@!ࠀI$I$?~ P%_!A I$I$$!!(  !A H$!( I$I$$!! I$I$$!!  I$I$e) `$!!'  $! I$I$I$I$I$I$I$I$ZI$I$ I$I$I$I$($Iȱ%+ I$I$APAI$!AH$I$( I$I$(I$I$I$I$(* I I$(I$I$^W%I$A$ I$I$*I$I$II$&I$I$(IE& H$I$pI$I$ * imA$9r$z^UI)$!!mM۶$!!-ڤMR4($IrVI$H$*I$I$( I $m$IdȲmm۶M$!!V"%4H$!!N5 ܈9t$H$I$ I$!AZR0` Ďiַ H/-۶m@%%! e $9 @$!_U'I$ H$I$ $=U0:Ixյ$ɕ!!'OV!U% I!H$!!)% a Pml!+%BB Z  $*!!o a $ !!ꪪ H! (&I$I$E(CI$I$E(C$!#$ A`!H!!  J AI$I$!b!I"6!I$@!UU_v$I% I$I$*I$!UU PIy$! $[! I$@E)a I$I$! I$I$E)a "!$I!ʪ@! $I2! I I!x I$`  II$!   !+ $L&! IA!""* HD$@!A8 I$!* $(@! R!a(%  A$! ")$I!bz $%P*@! ۰m! $IH! I$! * m&h ! +(U&! b U V! L$D"!  ! * $H$E)a H& ! mѶi۴!*J%@ ! ` HI$!A *) @ $!  ! * @B$! `B$$B! 0!E) "($A!p`eR1 _{ TIL! 7 D2 ! (  ! * $H$E) H$A ! $HD!@! I"!*(` $T !J+  I!  I$I$e) @0d!d d!d  $!!M j%!.8p  KG!b .&(   E) `H$C"! ! B $@E)   !  $R"I!P J%R")!  D! /? d!d @ d!d $!!(*# $!!@ $!!# $!` P-( @!b ~/!cI  T! %5 @ d!d  @d!d * !6 I$I$d!d !E) )!  @(!A@I$H$h  I\! +- I$I$$!! I$I$$!!" I$I$$!!.< I$I$e) I$I$$!!<8  $!@ @@! $!! XD$! <8 A2 ! , @ $!  M ! & I$I$$!!*** $!! & I$I$$!! @$!!& I$I$$!! @4 $!$ I$I$E(C@ ap !I$I$E(CI$I$E)a!H 4!x I$I$!@!!I$I$E)a!I$I$!I$I$E)aP!~I>!ꠠI$M!I$I$ $I$ /@Sɟ$ H$I$bI$I$ I$I$ (I$I$"I$I$!I$I$"I$I$"I$I$I$I$I$I$AI$I$I$I$PXI$I$>/I$I$(I$I$I$I$I$I$aI$I$ I$I$!I$I$I$I$AI$I$A/ I$I$>. I$I$ @I$I$I$I$AI$I$aI$I$"I$I$ I$I$AI$I$A** I$I$"I$I$I$I$I$I$ pI$I$I$I$"I$I$I$I$AI$I$A I$I$I$I$AI$I$`I$I$I$I$I$I$"I$I$ zI$I$A-I$I$"I$I$꺾I$I$I$I$I$I$I$I$I$I$`H$I$(  $H!AA$I$( I$I$bI$ $$I$I$ I A$bI$I$b^^׵I$I$ &I$I$(I$I$ I$I$!AI$I$(I$ H A$PI$I$A'KI$IaB$H $!!I$I $!!ZR$h$I4!AA&I$I$I$**IA$* I$ bm,۶mI$I$!!Em&$!!v$I_W `@#'P$I$I$I Ih<:,'I ^-eA  "@bI I-+I$I!$%A(6 ~(5I$ !I$I$A I$I$ I$I+I$17I*"@!U}kH!b#$CJ `Ð aIT(IA$!bT" I!ZI $ $$! j@ H!$! `; I!W ( a@`  ! $!$!$   b@ !!j! I$I$E)a!I$I$E)aI$I$!!ꪪM WzI$@!I$I&I$I$:  I$! $ T!* I$!* I$I$!  I$E)a I$  !I$! I $! I$$@ A I$ . $%oH!A+  Ʉ`B! $H!! $I ! I$I$!* RH $! IB EӫH!{ I$! tm! /  ! I$I$E) J! I$! * k,! X8!/  P! * m[ӭ! "4I!@ª+ )LJ$U!! 8 "A! $II! I$R"0!UVXp! % I$I$!  !! $A&! LdB2!((   ! ꫤ+!a!Es!{m $HA! H$A2! !  IE)a J$! $II! A˰! .> mMt!*, `B2!!  ! I$I$d!d  `E) P!A P$A! Rx҂!qi $HA! $H!E)  L! (( ! H! K$H!A  0E) "I$I!jI$N$?  I! Hd!d $!!% I$I$$!! @$!P  ! d!d }j>!7\ K'h %$! j訠 p0@! d!d J H! 4 I$I$d!d ` d!d D!! !b y&P5!zxII$ /? P!a ! I$I$$!! I$I$$!! I$I$$!! @H!AP I$I$$!!‚ $!! ' @ ,a!Ȉ 0xi$! !$! ! $! ( I$I$$!!* $! I$I$$!! @ $!!bB $!! $!!B $i9! 6!$ !꿿UH A@$!UH!0$!l!K$j!ВlÒ!@i۶!d'!U !I$I$E)aI$I$E)aI$I$E)aI$I$!I$I$!I$I$!jH$!!I$yC! I$I$`xI$I$aI$I$I$I$ I$I$"I$I$I$I$ I$I$I$I$ $I$I$I$I$I$I$ I$I$ I$I$ I$I$(I$I$I$I$"I$I$I$I$I$I$I$I$ I$I$AI$I$AI$I$ajꪪI$I$I$I$I$I$A@I$I$!I$I$"I$I$I$I$AI$I$A+I$I$(I$I$@I$I$bI$I$ZI$I$ajI$I$AI$I$I$I$A?/ I$I$I$I$I$I$I$I$zI$I$I$I$"I$I$ `I$I$A|>/I$I$I$I$I$I$I$I$I$I$I$I$I$I$.I$I$ABI$I$A $I$I$I$ (I$I$! I$I$( I$ $I$I$bxZVII$ I$I$I$I$@I$I$aI$I$(аI $ I$I$ `I$I$غ* i$m BR$M$b`  !A$!!MڤIR$ (H$I$A$I$bjI$I$ I I$(Ii&( h$M$!!mi۶$!!@ 4m$(M)P$!!$N$pI$I$-I@/(r`^M$!!$!B$I$I6I 9 p(O$ !zH$I$I$I$/ I$I IxlU5)%IȒ  ٶe; h$ɛ! H$I$$!BI $!b$!b I$$!B$`M5Iҭl8v ,I$* N$ `I$  I$II$ I$ I$UI$$II$!*I$U $FĘ$Pe! Mʶ!%>!_S!!I$I$E)aI$I$E)aI$I$!I$I$E)aI$I$!( @I">I Aꨪ7I$O6!bI$I$ I$! $ W!*  .!!b@ II!aI$I$!!ꪪ !dB!+ H$I!zI$@!^ J ! + ")$ !h !IH  $%R.A!A РI$I$! `B0$H!⊪ H !믿` 4!z JT!'_ I$L&!* $ !  E) H$ ! " I! IH!  +H!/ ` M! + ")*H!a` @$I!a I$I$E)a!`$!ꪪI$H%!)! /  IH @5$i!` Zl۶!! $ H! $B`E) W=!X  r!-7  L&! (( $I$-!!@ $IH! "H$ !b* !$  !A @ !ꪪ 'a$!Ë -m! ** L$`2!( @ d!d @!!  E)  `E) FP4!w  ʥ!-7  ɐHE) `B$!0! I! DI$I!*7  ! *  ("A!@x$ ! \! // &,! @$E) d!d  e) d!d I$I$d!d 5!Xp` (b$!SaI T ! % H$A E) C $BE) ! d!d R$ ! $!!/?  @!``I$I$  ID!A 6> 0! I$I$$!!ʊ( I$I$$!!  $$! p I$I$$!!/? !@  TH! ! 0 $! !38k$!Ϯ   !  GHL!( I$I$e) @@!A $!! I$I$$!! * $!!& $!!z** R P(!`@"(I$ @j!I$AI$w# `I$U-I$jmOAI$!U$ I$ I$ UI$IUI$I8/U$I$UHI$W@I$ жm P iٶ! R! & I$I$E)aI$I$E)a !b*0!`I$I$x__I$I$+* I$I$ (I$I$"I$I$I$I$"I$I$I$I$I$I$"I$I$I$I$ I$I$I$I$A I$I$(I$I$@I$I$ I$I$I$I$A*jI$I$!I$I$I$I$AI$I$A// I$I$>//I$I$"I$I$I$I$I$I$I$I$"I$I$!/%I$I$AI$I$ ** I$I$I$I$"I$I$"I$I$"I$I$I$I$AjI$I$I$I$p(I$I$A*I$I$AI$I$I$I$I$I$I$I$"I$I$I$I$(I$I$ I$I$I$I$I$I$`I$I$I$I$I$I$~I$I$ I$I$AI$I$!I$I$( I$I$( $I$I$I$ I$I$bxZVI$I$b) A$I$I$I$* I$I$! I$I$ I $* I$I$AI$IAx?I$IAI$h$ I$I$ I$H$!AI$bPH$I$( H$I$I$Io/+  $H$AIA& HI!A @$$!!$H IH$'*P$I$`^WI$IW- H$0$IxW)P$!BI$I$$!BI$I $G1* `9N$H$I$AI$I$!@I$I Ip`U%h$h$I$ $I *[ ۆm0I6:A 1؉e'Am@$b-6I$$I$ H$I$(.I$Ia*jI$IA(I$bIHa I IIa IaL.bIٖAI a@I$AאI$WI$UI$rUWI$IUI$I$WI$ _ KI$@$$ RMڶ!P$Ж!ޯ@ %@. !РI$I$E)aI$I$E)a ( b`J!6." ! I7 I$O=!I$I$+I$!+ $AJ! $%)A!AI$I$!I$I$!H !ꪪ  Ʉ!z0!WzB<! $H$I!* I9!$!I$I$! C$A!* BJb1!믾m&@!Aؠ ϕ! & MѤm6!. kŚb!( I$E) I$ ! $" $! II!A' hB!s 4!I!˫ H$H A  $($I!b $QI!$ I!A . R#钔@! ɑ$I$ *j $II!  I$! ** ! 9@!b " ! * #$ !b`"=!bJ* AL!A * "I$I!b@ $AjF! I$H$E)a $ DB0! H$I$! #0[!.: lq$!  !  ! ( )$A! HdB0E) mP"!!Р ҩ$A!!E'C!ym 4AI! I$!**  IJ !ܴ &iЦe! H$A$!( !$H! JI! II$.> ")PI!B@ TP%!A @ d!d I$I$e)  `$!! ! & ! MF!5 I\J$! E) $@!E) ! ! ( H d!d h%H!a4( @$E) @$!!j㩭 O$z&!^zxx IDI!-- $!! I$I$$!!*" @$!!< @ $! I$I$$!!8 I$I$$!!  $!!p`jj H$!!cɍ 0%!.> )TJD! *(  B$!  ! I$I$$!!+// $!! '& I$I$$!! @$!!4 I$I$$!! @$!`II"dIIR,%AI2`6rImK$A`0I$ۆm!I$UXA $ $ I@xI$UI$J@U)$I$-`II$b _ɑm! '`I$! !h!@%`$ pxX\I$I$a( I$I$ I$I$  I$I$"I$I$I$I$0I$I$I$I$"I$I$I$I$I$I$a I$I$I$I$@I$I$I$I$ I$I$AI$I$ I$I$I$I$A(I$I$uI$I$AI$I$AI$I$ I$I$"I$I$I$I$I$I$`I$I$I$I$I$I$AI$I$A;I$I$"I$I$"I$I$"I$I$I$I$I$I$`I$I$AI$I$ I$I$I$I$I$I$I$I$I$I$I$I$ꪪI$I$!I$I$A/I$I$API$I$.I$I$ I$I$I$I$"I$I$I$I$bI$I$5-I$I$I$I$! I$I$! I$I$I$I* I$I$I$I$A( I$I$ I$I$* I$I$! I$I$II * I$I$I$I$XV5I$I H$@$(I$$ H$!AH$H$I$ H$I$zI$I$+  $I *I i& H$I$!A @$$!!m$I( J$ H$I$II/1r$ ^WMi[$!!$$!! $!B4$I2 $a$h$I$I$I$/I$I IId $ `#ih$I*$I$$BHa` I۲!c 4 & IZ M m$I$bhII$  A$I  IbIҢ- $!BIHA $$!B$$!BI$$!B$!BI$I$$!BR"%%A I$Iba$I$$I$ $!I$*$ p I%WI$UV$I' ^I$_h&)$ m!!!j!" I$I$!!ꪪO&! xI$I'I$I$ ? tII! $ $!+I$I$!I$I$! !@ $)%!Ab II!aA! " Q!*( H !! !I$I$! C$A!* !b1!? ϩP"(!VXc  I$!/U  `B0!/  ! $$E)a !ꪪ I!! + MD !.=_@ !i $A ! - ! !I$I$! $AD! $)I!a B h<! I$!/!  )RI!`  I!! H$@$! HH&"!( j ="!X`E!!{m @"$tA!` $IC0! I$!I$I$!!!jꪪ V!A  I!** H$H$!(  ! %P @!  A!A  H! *% FJ$! (( Tʵ!%7 I$H$! H$ ! P$@ !؂*  ! *  ! * @$E)aH&@0!^  $! j HJ! I$(!A@ !  d!d d!d !$ j=O6!\\u P.$E(!!B TAI! $ɐ`HE) $%R"@! @  d!d DB0$B"!  0)! $@ ! X=P(!ࠠI$I$%5V P! I$I$$!!(( @ $!!rb x!8 @H!AP $!! I$I$$!!ꪪ !$!!%7 R)!AJQ%!> J !A8  E!A ( I$I$e) @$!!4 I$I$$!! @!A$ I$I$$!!  $!!BJ/H'P$!I$I$$!BNHI4! II$I$$I$!I$IAH$$I HI$(NN $I$I $I  I$ $N2$p`@I$myAII$!*hI$!!!_UH$I$I$I$b**I$I$I$I$I$I$I$I$"I$I$AI$I$$I$I$bI$I$aI$I$ I$I$a( I$I$ I$I$I$I$ I$I$ I$I$"I$I$ I$I$ I$I$`rI$I$AI$I$** &I$I$?I$I$AI$I$bI$I$I$I$I$I$I$I$azI$I$AI$I$A?/I$I$I$I$"I$I$"I$I$"I$I$I$I$"I$I$ @I$I$ *I$I$A*I$I$I$I$I$I$ ,6I$I$I$I$I$I$zI$I$ I$I$ bI$I$a I$I$I$I$!* I$I$I$I$I$I$aI$I$a* I$I$I$I$ªI$I$! I$I$! I$I$*I$I$ I$I$ hI$I$a)I$I$A* I$I$( I$I$I$I@A$I$aI$I$p\VI$I$  6i$I$I$I$I$!PI$H$I$ I$I$~VI$I$+I$I(  @$ I$I!AAH$Am$I )Z4@$pI$I$bI % &M!AI$!!I$I$$!!K%Y /`8+ p"'I$I$I$I$I$b*ID1 *!II@ @$'a$!BII$**IX$%A$vMm$(&$10IAp$(B$m'II*I$ aI$!!H!(I$I$$!!H$I$$!! I$I$$!!I$$!!I$!B $!B$IH J$J,A   IaI$I$$!B A@HA"!$Ib@AdB&dB pۖmI$I*I$* $ sm@n@I$  I$I jI$bЖm U g& !j  PH I$I$!(@ !`@ ! I$P( @I$I$b)DI$  $AJ! @$ A$ `@ !A`  I$!- P$D !/ $ T! & $J"1! $I*(!b*@!A I$I$! "A I!* !PJ%!I$@"!UVZ{I!U  Jb(%!+ I$@$! H$C!  ! "HD!ࢋ DH1!!!H! `B0!!⋋ !HI !< #)$I!ꊪ!M$P4!!)-5 $A$C!* k]!I$I$E)a  I$! ** IHH!*( ` *( !KJG!  $I$!* ! !I$I$!@!! I!R'!a& ۆnX&$! $Ej( !b $ #%!`  l! I$H!a  I! "$A!~‚ G19Ҡ!Y}e $@A!  A$! ""  I! *( I$I$E)a H$A$!( P%H!Ap "I!jjII$/?? M I! & "A !a@ )  !b  I$I$d!d $ d!d H!, "&A!` `!AB * I\! +/. @ E) $B"!!  '! @$E) " !@ 0 $I! @!`I$M$ h蠠  ɐT! +- I$I$$!! I$I$e)  $!!AO' $! ! ! @ ! H@$d!d I$$!0̓$! p ! - H EH! I$I$$!!  d!d $!! $! ,  IJF! ( I$I$$!!/?> R )! $!B(I$ bcIIb@AI$I$$!B$IJ$  m*%)  IbE)U( &E)U_ mP%) mE) 6 %) c$ E) Ib'I@! kۮ!I  m9C1@N9c$A@I$I$A ##I$I$!44I$I$ ((I$I$I$I$aI$I$"I$I$I$I$I$I$I$I$ I$I$AI$I$A I$I$@I$I$!I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$ jI$I$ @I$I$aI$I$"I$I$I$I$"I$I$`I$I$AI$I$A?+I$I$(I$I$!ppI$I$I$I$"I$I$"I$I$"I$I$AI$I$A?/ I$I$I$I$I$I$I$I$I$I$I$I$I$I$!I$I$A/I$I$I$I$I$I$I$I$I$I$I$I$^I$I$a(( I$I$ I$I$I$I$I$I$I$I$I$I$I$I$AI$I$A+I$I$I$I$  I$I$ (I$I$ $I$I$I$p\WI$I$% I $I$I$( I$I$!A  $H$I$( A$I$x^I$I$յ- I$I$  I$I$  4I$I$$, $!AI$I`)&H$bI$I$~߯I)4 @$I!A $!!I$I$$!!I$Im?$R$H$I$I$I$I$I .3:A@ڱbI$I$!!E4 `H9 &M$!!Iv D!& U^&I!^UUI@$A$I$!!I !A$$!! m$M$!!II!UUU $!UUU E)UUU* ' E)UU $$ E)UUl E)mmE)UU$ e)UE)(I$ IE)U IE)U o?`E)U_ m@E)` mӶE)U+ inE) IE)U Ib3E)U  @E)UUj m0! mPE) I$m %) NbL$! m۶m (!`I*lX0@  `[--M!!* $!! !ꪪ@$ !ꪪ|0!WzI$O& U_~I$I$ ! + R"I$I!pI$I$E)a@< a`l! I%I J & B"5$U!p " $I!B a#6+H!!kh@!! I$I$! "I$I!⪪H$!ﯾ$x"4!uWV{ɑ  $ "%&!a ( I$H$!I$I$!  $C2!. )(@!l!yp!u I!A(!I$I$!He !@ BI$H$/ J !(( I$H$E)a $I$ ! $IK!a I"$A! B)@!m $IJ! P"%+A!!Р!I$I$!!!ꪪ b6 $!ˏ/ PIJ!* ` I! R"%!A B E) HMH! &  R$E! J^ 5!p JF!%' I$H$!<!* @ ! A I!* I$ $! H$A$!J$h% ^\Xx IH!  AE)  I$!** @$d!d `0E) @  d!d  ˠM!(.( Mz&!V\ Jx$!  ! " !L$E) j& $I!( I ! II!a HF$I!!8  d!d L$z%!~zII - $! I$I$e) @$!!6 I$I$$!!  @! !  d!d H!H&`$!V^^Z H!+/ @0$! @E)!}}U @!E)!uժ im[E)! I$I E)!ׯ6r͖E)a I$Ie)!WE)jmE) IE) IE)U ۆmE)U( m۾hE)( }޶E)U $H$e)E)X I$Ie)E)* I A$e)E)R IIe)E)*/ m۶mE)#,mE)A` I$X$E)! I$I$)(Kq6AE)a( HE)44 Ӣm۶E)!U I E)Ղ m%E)Az I$E)UW I$smE)UU I$IE)AI$I$ I$I$aI$I$"I$I$I$I$ꪪI$I$I$I$ I$I$*((I$I$ I$I$A@I$I$ I$I$ (.I$I$ I$I$I$I$I$I$@I$I$AI$I$A/I$I$?I$I$I$I$ I$I$"I$I$jI$I$ aI$I$"I$I$AI$I$A/*?I$I$I$I$"I$I$ I$I$`I$I$ (I$I$I$I$I$I$AI$I$A*I$I$ajI$I$!I$I$I$I$`I$I$I$I$bzI$I$(**I$I$aI$I$I$I$I$I$ I$I$I$I$I$I$РI$I$a I$I$**I$I$I$I$I$I$I$I$I$I$AI$I$A?/ I$I$I$I$I$I$I$I$I$I$I$I$!I$I$a=- I !AH$I$( I$I$!AI$I !AI$I$ 4I$I$!``I$I$%/I$I$(I$A$ I$I$(I$I$I$I( )6m$bI$I$/I&A$I  $!!-ڶmۦ$!!m b<,%J$I$I$ I$I$' IĉdA*  (rb+b^H$!!I$I $!!d vb%`-6IO<!UUUD& U^&I!^U I$OR! O$E)UU I$6E)UU IrIPE)8> I@E)U !a۶mE)  E) I$I$)( ۰۶mE) $ ö%ےde)E)`- $I$e)E) H$I$E)!,( I$e)E) H e)%) *m۶۰5E)@ I$e)E) I$e)E) I$le)E) H$e)E)  I$e)E)^W $Ie)E)- I$IE)!  I-X$e)$! H$I$e)E)k} I$ $e)E) I$I$)( [l6lE) I I$E)$!(nmE)b I$I$e)E)U ۲۶ E)!`ܶ--E)b`` m۶E)!V lm۶mE)_ `E) }'E)Aڀ ME) yE)UU_ Զt!U M !(! !!zI$` _~I$I$ /ə$! +u!a I$I$!I$I$E)aHd!` !꯿@ !k!!  D@!M *&I$I$E(C!ꪪI!!.&I$J%!UUW^BA A * AP! I$I$!I$I$! ! I!.@!^z`)Ҕ!ym@!! @,!@!!V a (Q4@ bI$ // !ꪪ !!/ "I&I!ʪ I$I!b *  $E! ʥ&%!*h yD![ IH$!* H!I$I$!@ !! Z!ER-)$!> WP$$! J$I !,$  I! **  $E) H$@$!( $I")!b@ "A!AU<(!_Y}u $HA!I$I$! ! ɐ!+I$I$!P!  $I$!@0@ ` ID!-% ! ! * @$ ! !  CE)  ! $I$H2E) #5Ғ!Xxpm Q,!YqME A !-%  ("H! @ H$I!   I2!!  $! A$ !  !A P5(!Xpp`I$I$ **z p ! I$I$$!!" @$E)!UUU* I$I$E)! ۶mۆeE) E) I$I$E)!u< I$I$E)! I$I$E)!  E)@ ۰mE)a ؖ$[,e)E)^ $I$e)E)kj II$E)!  ۆmI$e)E) I%ېme)$! dE)  I$e)E) I$e)E) Idض-e)E).* I$e)E)z $I$e)E)zWU C$I%E)! ɒdɐme)! I6,ɒ$E)! $I$e)$! I$e)$!( $I$e)E) I$H$e)E) I$$E)! , I$He)E){> [6fۆmE)  %۶aE) ` KmaE)A4 $I$e)$!  H E)< I$I$)( I$ $E)!. ۶m˷E)a$, I$I$e)E)*U I$I$E)! #3l۶mE)~ IRn۰mE)U I2'6lE)U I$E) I$I! ޠI$I$AI$I$( I$I$AI$I$BI$I$ I$I$ I$I$ I$I$I$I$((I$I$A4I$I$AI$I$ >I$I$// I$I$"I$I$I$I$"I$I$I$I$Az*I$I$I$I$AI$I$A I$I$(I$I$I$I$bI$I$!I$I$ @I$I$aI$I$AI$I$A>* I$I$I$I$a*I$I$bI$I$I$I$zjI$I$I$I$AI$I$A/ I$I$ I$I$I$I$I$I$I$I$I$I$I$I$!* I$I$I$I$I$I$I$I$I$I$"I$I$aI$I$A?/I$I$I$I$.I$I$ (I$I$I$I$ BI$I$aI$I$A?I$I I$I$(*I$I$I$I!AA$H$(I$I$aI$I$ 7/I$I$ pI$I$ I$I$! I$I$I$IAi6h$bI$I$/Ii& H$I$A$H$$!! $!!Nd[(`H$I$a(pI$I$!I$I$A IH @$M6!@$!!I$$!!?r z }$I$!a y E)UU'  E) E) I$I$E)!' I$I$)( I$I$)( E)@ ٶ[aE) I$I$e)E)j I$I$)( I$I$)( I$I$E)! II$E)! I$I$E)$! $I$E)$! I$E)! I$e)$! I I$e)$! òm۶mE) ` A$I$E)!* ۶KmE)a4, II$e)$! II$e)$! I$e)$! $I$E)! @$I$E)! IaI$E)! $I$E)! H $e)$! I I$e)E); H$$e)E)Ԫ I$I$E)! I$A$e)E)ݹ ۲-6`E)@ Öm۶ E) nۀ E)b I$H$E)$!( ضmòE)` I$I$E)! I$A$E)$! ۶m-E)A` I$I$E)!* A$I$e)E)U I$I$E)! E) vL HE) m6E) mm E) HI a M& !ZI$I$9I$  +!I$I$!I$I$E)a '!! ! DJ"%! $I%! ل !* !I$I$E(C!ꪪS!- {koI$I$ AY!! DI!H!I$I$E)a!ꪪ0 !J$&!_~z g\1 "!X !B )&  I$I$E)a !!M$`$   A+  I$&!(( I$I$!! J.R I!!( R"$ !РA"!ym tAH!xx !((0!H !((( H`   - !a͏.@P!I$I$! @  ! I$H! $HR"I!Z  L$! (( Mgj %!X !T! %7 HI!A@ !I$I$! !I$I$!I$I$!I$H$>  I!*+  $!  !A @$HE)  H&!(( $I)!@  :II! MD!5 TO!A**6  H$!  I! **  ! * IHE)a vM$! a!E)!UUu E)z IE)a E) I$I$E)! I$I$)( I$I$)( Xm۰mE) l6lE) I$I$)( I$I$)( I$I$E)! I$I$E) II$E)! I$I$E) @$I$E)! I$E)! @$I$e)$! I$I$e)$! Km۶mE)a4 m"mݶE)!@J ۖٶmE)  I I$e)$! I$e)$! @I$E)! $I$E)! II$E)$! IҦ%e)!$P !nE)a  I$-Ke)! I$`e)!* I$IBE)!  me)A& I$I E)$! H$I$E)!* I$I$E)! I$I$E)! $I$E)! $I$e)$! I$Ie)E)iz* ۶m۶ E) I$H e)E)y޴  E)@ @۶mE)! I$I$E)! I$I$E)$! I$H$e)E)U I$I$E)! I$I$)( 2`mE)j IömE)! I$۶ E) I$KE)WU~I$I$ I$I$ I$I$I$I$I$I$I$I$$I$I$AI$I$AI$I$I$I$I$I$"I$I$"I$I$ I$I$ I$I$`I$I$!*I$I$ BI$I$ I$I$ I$I$"I$I$I$I$"I$I$I$I$A𸨪I$I$AI$I$I$I$⸨I$I$I$I$ &.I$I$!I$I$ @I$I$!+)I$I$ I$I$!pI$I$I$I$I$I$I$I$I$I$AI$I$(I$I$I$I$I$I$`I$I$ I$I$I$I$AI$I$A/+I$I$ I$I$I$I$I$I$!@ I$I$pI$I$AI$I$a++  $I$I$I$ I$I$ $I$I$I$ `I$I$A/I$I$b)I$I$* I$I$! I$I$I$I( $H$I$I$IA$b H$I$( I !A@$ApI$H$I$AI$I$A/I$Ia%+I"@Ӥ@ 'I"E)* ϟ<E)UU BE) E)b* I$I$E)! I$I$E)!  E)A@   E)@ E)A I$I$E)! I$I$E)! I$I$E)! I$I E)! I$IE)!* I$IE)! I$ E)! I$e)! I$E)! I$e)! Ie)E)]  Ilme)E)  IB ٶe)E)  me)E) i[m@!@e)A0me)A` IRIe)%) Im۶@!1me)  lҖ$жe)E) IBВe)E) IҔ ɶe)E) IB6mYe)$!$P"me) P I&de)! I$Xe)! I$He)! [mE)ap I$IE)! $I$E)! I$I$E)! I$I$E)! I I$E)! I I$e)$!( I$I$1 $E)P I$Ie)E)z( I$Ie)E)U_> m۶lE) I$I$)( I$I$E)! I$$e)$!* I$I e)$! I$I$)( I I$E)!( Ӷh۶E)!W zE)W I$[mE)UW ɔI=!+!I$I$E)aP!ڊ( zj@' !! CY!OU"H! *8!!I$I$E(CP `!!PB0J!^{oII$ / !!I$I$E)aXl`!!ꪫޜj &!u^ I!P@!ؠ!I$I$E(CG (! !zꪫII$ 5^H'q!  $AP!h( @!  Ij$^!(x%@ !Xp j$!YI$I$! Xd!I$I$E)a@ ! !ꫫ j!US;-!>{ NP%d!$ A $H !. I$E)a II$!** I$H$! P#(.!xbbsY;  ڶmf-!!ꪪ!I$I$!!I$I$!`%( xx 0  jDA!a(,  H$L$!( $@$E) `B2$B2E) $H!` $ !# B z &I4! J$Ir\!" Fm%) $eE)ߺ E)` I$I$E)! I$I$E)! I$I$)( hE)A8 dE) I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$IE)! I$I2lE)! I$[ e)! Id`e)!  I$۰ e)! Id,e)!/ I e)E)W I$Ѷe)E) Imme)E)/ @@! mm6@!# Ce) $5ne)A,$ I $Ie)%)*#8$Ie)`@ lme)E) MRжe)E)\ IB6Pe)E)} I e)E) E)!_ڶ۶E) m۶>E)~@%E)fe) %I$e)! lYe)!( ؆ Y$e)! M d$e)E)(] IB`e)E) IҤ`Ke)E)U( I$le)! I$IaE)! ˶m`e)& E)(6( cmE)!@ II$E)!*4 I$I$)( I$I$)( I$I$)( ,E)p I$e)E)/] I$I$e)$!* I$ $e)$! I$I e)$! $I$e)E) W hmѶE)!` Im۶mE) I'E)U^ I$m@E)UU_I$I$PI$I$AI$I$A+* I$I$(/I$I$!I$I$!I$I$"I$I$I$I$"I$I$"I$I$AI$I$A* I$I$ (I$I$I$I$I$I$"I$I$I$I$(I$I$AI$I$A** I$I$I$I$I$I$I$I$I$I$ `I$I$AآI$I$AI$I$A/ I$I$I$I$pI$I$bI$I$ꪪI$I$I$I$@I$I$& I$I$I$I$I$I$I$I$"I$I$Az**I$I$AI$I$A?/ I$I$jI$I$I$I$I$I$I$I$I$I$AI$I$A? I$I$ I$I$(* I$I$! I$I$I$I$*zI$I$xI$I$A- I$I  ((I$I$pI$I$!AI$I( I"M$!I$I$ *Ii&I$I$( I @ IIE&H$I$A I$I!A I$)%)a+ y+E)U !E)!5 I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)! I$I$E)!* I$IE)!( Kx%!a (h!"!b * !I$I$!I$I$! J$#(! OO!U $ɐ I!@ !j  `!ꪪ0!I$I$!M$z& zx TI! L$E)!UU J E) I$I$E)! I$I$1 I$I$E)! P%E) I$I$E)! I$IE)!۶m6(E)*@۶mlE)2mmE)a` lI$E)! -I$e)!w!E)! @ mƍE) &E) E) 4`$! V`I$! Iҡ%)+ hѶI!( "5 !A` FHH%)! @% %)A H"E)!UW G%%)! OE)(* жi۶e)!+ %$I$e)!~.%$I$f1!UUf1!UU $I$f1! $I$f1!f1 ې$I$f1$!.$$I$1!UW.'1J?1bje$I$1 ӆ1E) Nm1E) IIe)E)Um+,e)A$ I6Ae)! [f1!_?`f1!UtmۦE)~:$ E) PE)* mE)* i$!! c ܄E)ߠ 40$! Ӏ!  AsH%) 5E)ajmٖE)A  me)!ڶ &E)!xhME) I$2 e)!$YHbE)  I$I$E)! I$I$E)!+ I$I$E)!* I$I$1 I$I$)( $I$e)E) ۆ xmE)a ۦ¸ E)%mE) I$I$1 I$I$)( cE)~ I$ `e)UW I$O(E)AI$I$bI$I$I$I$AI$I$ ** I$I$I$I$(I$I$ I$I$"I$I$ I$I$ I$I$aI$I$ **I$I$I$I$zI$I$ @I$I$AI$I$I$I$I$I$AI$I$A/ I$I$"I$I$I$I$& I$I$I$I$"I$I$I$I$A./ I$I$ I$I$4`I$I$I$I$ * I$I$ I$I$AI$I$A/I$I$I$I$! I$I$I$I$I$I$I$I$AI$I$A*I$I$ `I$I$ I$I$! I$I$A4I$I$AI$I$A* I$I$I$I$ I$I$! I$I$I$I$РH$I$II6. $I _WU5 I$E)UU IE)ե E)! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$  E)! 6fE)Q$IE) $I$e)! m86E)~  mE)& d'%)U $h$! Ѷ! f۱m! k$m! mN4!b M" %)ߪ* IE) -۲ E)j-% @E))Oe)!W $IbE)m6h f1!B%e)+ IR Ye)E)W IB6e)$! `e)E) M-e)E)> l$1E)W $I$$e)E)z $Вd$e)E)z @m$e)E)U ۺ m$1E)U mam$1E)U $$e)E)U ۰u$1E)U C1e)A` ۶ A'1E)}=.y1  ;lkx1E) de)$! Imv1E)W$ @ %e)Ap Iڶf1$!_ I$:`1$!O1!U*mӶm tE)z E) JE) LE)  jfE)  h%)  `@2$! 4M$! IR!/z ٶE) mLE) .`{e) $A۴-E)j(h$pE)  I$0 e)$!۶qH E)( I$IlE)! I$I$E)! I$I$E)  I$I$)( I$I$)( I$I$)( 6lòmE)!@$I%DE) .E)O E)  I$I$)( mӶmE) x 9E)~ j"%@E) jPIpJ!I$A$ " !믿c$I$I$+`%$!a! .'X$,!d!0L'( ' H@(!` ꫯ I$ ￿1G!`% xh9ɑ  -%X$`!!I$I$E(C"%P pa!a D!@ a!!H ꪾ!I!{ RR"!A`P! ***@$!I$I$!I$I$!I$I$!!jꪪi$I4" DIA! !j!@"   ! ͶlK! ۶-E) IE) U  I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$$E)![) ۖlE) I$e)! g۶m;E)!w lE)@ 6:E) Җ$! m! FNr! ۚ$I ! m$$$! m[I!, I'@%) IBE)!Uy8cE)m۶ E)!m`e)!$I6E)Kqce)   IȦe)!  I$Ie)$! I ٤e)!+ dCdK&e)E) ]81E) - -$e)E) $I$e)E) Pl$e)E)^ -$e)E)U [;`m$1E)U mmm$1E)U $$e)E)U nĆ1E)4Ide),4 f1!` m[['1$! I$e)$! I$ز-e)$! $K2e)E) U MѶm E)!& X$I-e)E)0U lI%e)$! I$e)$! I$e)!  жv$f1E)U I$$e)E) d &e)E) @e)! I&$He)! de)!Um lE) E) f%) mL h!$!HKU!A* m׶%) ۰m-E)*`LJ$ٖE)(* I$e)! K,de)E)x+$I#E)@ I$Ie)! I$I$E)! I$I$E) I$I$E)! ˰mmE)b( $I$e)E)ꪪ HI$e)E)x+ I$e)$! $I$e)$! m۲-E) @ Im%e)! Kq0E)^ I$mE)U_ I$I%$!a__I$I$ ..I$I$A8I$I$I$I$"I$I$"I$I$I$I$@I$I$ I$I$! I$I$I$I$I$I$I$I$I$I$ &.I$I$I$I$!*I$I$aI$I$I$I$I$I$I$I$I$I$I$I$AI$I$ I$I$I$I$I$I$API$I$I$I$pI$I$A?I$I$AI$I$.I$I$AI$I$I$I$ *6I$I$AI$I$A** I$I$I$I$ (4I$I$! I$I$I$I$ @I$I$ *I$I$AI$I$. I$I$! I$I$I$I$ pH$I. I$ %)խ yRE)U- E) - I$I$E)! I$I$E)!+ ۶mE) ۸- E)B  ömE) I$I$E)! I$I$E)!W 6E) @%)!(. mN$! $;N!~W$I !Uժ I$!+ Jʁ !*$ 1' E)K$I E) m۶ e)!] I$0e)!*#m Me)aj$'h)e)A mIm$e)E)$ H2e)@m$e)A  ,I$e)!@mܶmE)  ː$I,e)$! I$I$E)! I$I2`e)$! I$I$e)$! I$6 e)$!** I$He)$! I$ $e)$!IE)` Ime)! I%Ime)%) Im۶ e)$! e)!@ m۶i[E)  Im$e)!0 I$me)E)_ ۶meE)A I$[me)$! I$!Ye)$!  I$le)$!* I$ɲ e)$!  c۶ lE)!p  $Ile)$! $I,e)$!" ؤI$e)$! @2dI$e)$! " II$e)$! úvv$1E)U m;l4f1E)`ne)! I6Ae)!  e)!_ӶeaE)~~ʶ$ E) 4E)w n[!I !T A@ If۵!A+ ޔ$E)Uº-fE)a@  me)!  X`$e)$!  I$ e)! $ɒ E)*  I$I&E)!/ I$I$E) * I$I$E) [múmE) I$I$E)! @$I$e)E) I$ e)$! $He)$! $I$e)E)V ۶ oE) ذ E)` &`E)Z m׶XE)$J!AH$!I$ /' p!R0!j(MD a:1J!`7) ^u}jNq$  @!X!H$@$ @#(" b)DI I$J' ^X !ˀ!I$I$E(CX, !!H&P4 ^Zz L /.@!%z a (H$@$ p@8!@d2 ! HF!'JH   !!I$I$! !I$I$! L$j%!)! / iM! KDE)+ IE)!ի I$I$E)$!+ I$I$E)!  E)a` I$IE)! ۷e6`E) IH$E)$! I$I$E)! 0E)!U  "5E)!j  @!  ic;! d'IO!_U q'! m۶@!J }[IpE) *@E)iI$IE) m۶`e)! Id`e)! 9Dne)6 $E) --$e)E)]$A$Ie)A ٶI$e)!mE)а ض$I$e)$! $I$e)$! I$Ie)$!( K$I%e)$! I$ e)$! I$ۂae)$! I$Ie)$!  I$ې$e)$!K6N$e)$( Im`e)E)U I e)$! Im۶e)$!$)`QE) Ie)%)  Ime)E) I$ضme)$!۶m E) I$Ie)$!( X$Y`e)E)x  !e)E)$IE)G4e)a` Ie)E) - 0`I$e)E)z 9e) @ [ `e)! I²me)E)] I& ْe)! I$؆e)E)UW I$Ile)E)Uz ː$I-e)$!* I$e)!  QI$e)$! Am$e)E) l0$2e)!@ !pe)! d e)!w$ E)A -E)U m۶Z!a4 $I! I$! 0 $%) U m喷E) ж%mE)AТ l I$e)!/ I% e)! I$eC"e)! $I$E)$!* I$I$E) I$I$1 I$I$e)E)  E)@@ I I$E)! I$@e)$!* $I$e)$!  $e)%) I$HE)! I(E)_` I$@E)}UzI$I$I$I$"I$I$ I$I$I$I$ I$I$AI$I$aI$I$I$I$I$I$I$I$ꪺI$I$I$I$AI$I$A** I$I$(I$I$ I$I$"I$I$I$I$"I$I$A@I$I$+ I$I$I$I$I$I$I$I$I$I$"I$I$AI$I$A//I$I$AI$I$I$I$I$I$I$I$ @I$I$A*I$I$m髪I$I$ (I$I$6 I$I$I$I$I$I$I$I$ &I$I$ . I$I$( I$I$ I$I! yWE)U+ E)- I$I$E)! E)j  E)  I$I$E)!+ II$E)! ۶m;E)! 6E) @6%)u  I! $v! v; $!+ I! AE) ۶mE) *( I$ɂ e)!} Id6le)! I$e)$! ٶaۖ$e)E)w lI$e)$! ؖ$I$e)$!* @$I$e)$! I$I$E)! HE)A. ۖmlE) IH$e)$! I$ E)! K-le)E)  ÒmI$e)E)/ ɰ$[2$e)E)  mSIe)E) / ِdK,e)E)? ۲ae)E)  IdIe)E)?7* ېI e)E)*/ X,e)E) Ide)E)/  m&lCe)E) I$IBe)E)* mm e)E)  e)@!)He)ZmLe)  X-e)E)[ @e) a2le)E) -ɒe)E) Iiٖe)E)  ,K,e)!Fbbe))Ie)a  Ȁ [%e)E) - ae)E) m_lke)  I2`e)E)^( IҶ%e)E)U  I$le)$! I$X`e)$! A$Ie)E)"UW H$I$E)!0  ВI$e)$!* YI$e)E) U $e)E)!MsaE)  I$ e)!ߨlN&#)Ae)Aؠ O>ۆmE) m۶ j l[$e)$! %I$e)$! $I$e)$! I$I$E)!  E)@@ ö E)A I$E)! I IE)! I K%e)E)  Ie[-e)E)*  Kmٖe)E)*  I$e)E) . MB&ee)E) lI$e)E)  [$2`e)E)` ɖ,Y`e)E)  e)E) I%e)E)^ I)Ie)E)  [$Ke)E) I$I e)E) * $I@!&b( e)a ۲$Ke)E)Ie)  K%Xe)E)x0@e) %Xme)E)P H$@e)E)W $I e)E)愈Pm6IE)a `iҶe)E)   I%e)E) I$e)E)imE)``E)! )&@e)E)  ɒ-Y e)E) 4ie)E) ˂ ې-Yde)E)  Yde)E)b($Ale)%/ Imؐde)E). I-ؐae)$! I$6`e)$!*d@E)$ dI$e)E)/U\ $ؒI$e)$! K-$e)E)mm;`Ðne)  I$ Ke)!ӶmE) IE)U c' @!_%$I!UU `NI$$! ܔE)f۶e)  ٲI$e)! I%ae)$!H.@E)O ܖmۆmE) I$I$E) I$I$)( I$I$)( $I$e)E)_ I2$I$e)$! I$K!E)! ڢi۶E)! I$I e)E)* ۲mضmE)` I"%E)Uz I$O,$!I$I$I$I$AI$I$A*** I$I$(I$I$I$I$I$I$I$I$I$I$I$I$AhI$I$A I$I$(I$I$I$I$I$I$ *& I$I$"I$I$I$I$`I$I$I$I$I$I$pI$I$I$I$zI$I$ *I$I$aI$I$.I$I$I$I$I$I$I$I$AI$I$A I$I$*I$I$&I$I$ I$I$I$I$AI$I$A*/I$I$!I$I ) I$$! z TE)  H%) ( PE)a I$I$E)! I$I$E)!+ I$I$E)! m۶m;E)!W 5E) lsm! d'$! mv !/ Ğ $!/ O& E)տ I۶me)  I$e)! I -e)! I6l[$e)E)*_ K6,I$e)$! $I$e)$!* ۶% E)p I$I$E)!* @DE) I$I$)( I$I$E)! I$I$E)! I$I$1 m۶E)! I$ e)E) ْdɰ%e)E)/  ɖ $e)E)  I$e)E)> KI$e)E)m[mE)a  0$ E) $Ie)! $I$e)E) I$ e)E)U $e)E)( I$ɰ e)E)׿  I$le)E)U I6e)$! I$$e)E) I$e)E) I$e)E) I$$e)E)[u e)A  K$me)E)T I$`e)E) $ e)E) @$e)E)[ $@e)E)  %߷E)!@!Fr$mE) mIme)$! X6I$e)E)  C`I$e)E)`+ʹimE) I$$e)E)./ HIle)E)8?* IIZe)E)>.* ؖdK-e)E).@ ,e)E),  [e)A [m$e)E) Imde)E)W( I$öe)$!ۺ%&E)!p $I-E)! mI$e)$!* Hi$e)E)[ Цe) I&Ie)!le) _N¶$ E)W I$%)UW $si!U_ W]! 0$%)UD.E)  H I$e)!  Km e)E)x ) E)dmE)$ I$I$E) * I$I$E)! I$I$)( I$I$e)E)+ KaI$e)E)\ I$Ce)$! EMe)!*6 I Ie)E)5 I$ $E)$! K HE) u5{@@E)Z(!jPI@a r$'!5!蠢I$I$b**H@% !믽)H W!I!A#J!bꪪ:`I$J$><(! aB! A  Xe@2,! &! * Lx%!WV^)D!("!o II$ XH ِ%X  *H!ymEP !Q)!~ $I!! mE)* E)! >( E) b p E) I$I$E)! I$I$E)! $I$E)! 2E)!U d%) ю$!,[! 99 ! ]N$!" $E)m۶e)!  I$le)!  Ilض$e)$!   I$e)$! ـ$I$e)$! X$I$e)$! 8E)a& I$I$E)! *E)A  I$I$)( I$I$E)! 8 I$I e)E)  E) ` I$Ie)E) I$Ae)E) m&)$e)E) C ۖ$e)$! K$e)E) I I$e)E)>MͶmE)!1Ƕm{e) (( $I6e)E) ˒$I e)E)W* $e)E)  H$@e)E)  I$e)E)} I$-&E)!* I&`e)E) I$$e)E) I$e)E) I$$e)E) I$e)E)*FJ @e)  I$ذ e)E)U I$de)E) $e)E)   e)E) 2,۶me)E) 0ۆeE) 6lI-e)E) ۖle)E)  ې`e)E)  IMٲe)E)  KmXde)E)x ( I$˰ee)E)}  ɒ%ae)E) ɖ$[2le)E) m ې$I e)E) ؖaI$e)E) dSi$e)E) `$e)E) I$He)E) (,e)@ijE) HܐIe) I%e)E)z I$ۆe)! mE)  $I%e)$!  ؒI$e)$!  `K%e)E)5 I e)![ae)!_C$ E) I2'%)U_ $tl$! oI$!  ܔE)`۶E) /$le)  I%le)$! I$[`e)! I$I$E)! I$I$E)!* I$I$1 I$I$)( X$I$E)! I$@e)$! A$I$e)$! H$A$e)E)蠢 I e)%)* L1ضmE)^ I$K$e)I$I$A I$I$I$I$I$I$I$I$I$I$I$I$aI$I$A***I$I$I$I$(I$I$ @I$I$! I$I$ @I$I$ I$I$A>/I$I$a I$I$I$I$I$I$bjI$I$ I$I$pI$I$ :I$I$I$I$I$I$I$I$I$I$~I$I$a((I$I$I$I$"I$I$I$I$I$I$I$I$A I$I!a ID%)׽ oE) I$I$E)! ۶m`E)b I$I$E)!+ ϐl۶mE) E)!_ fE) M;$! Zn! M !+ Zt$! 4E) i۶m e)! I@$E)! I@$e)E))^ -I$e)$!ɒ IE),& I$I$E)! I$I$E)! ۶meE)a   E)a@ E) $I$E)  I$I2,e)E)ﯾ I$ː$e)E)^ IH$e)E)U"$[mE) ` A$I$E)! E)!  I$H$e)E)_ݸmfE)! I%[de)E) ( ImX%e)E) -2$e)E) ame)E)  KdI e)E)(* $e)E) Iie)E) $hLE) MI"e)E)( B ضae)! a`e)E)  me)  m1E)P Ie)a $B$e) $e) I$le)E)* ɐ I e)E) / M$I1"(m4E)A ٶdKde)E)(88 ۰a le)E) $ 0E) e)! ٖ,e)E) `ضde)E)( He e)E)  Xl-e)E) I$@ e)E) Ile)E)" I$۶e)E). Ö$Ime)E) ÖI-e)E)* -I$e)E)- K $e)E), K- e)E)  mI e)E)*HdE)6amte)(4 Hmð-e)E) I%ؖme)E)UcmHE) I$I2,e)$! %I$e)$! HI$e)$!* mBe)E)p I$ e)!Ӷm @E) IE)U I$@$! I2'! 0$%) U ۰mܖE) 07&e) X`le)E)`  I$6e)! I$I$E)! I$I$E) I$I$)( I$I$1  $I$e)E) I$ $E)!* I$I$e)$!  $e)$! I$e)E) m@۶E) x I$@ %)@ b`!믯N$K')Tə!h@0!zzੇYI ɒ Id!)lˀ  <`$-p`! \  )-z\I A('$@ !"!!kozR ! 0"!zzjI$q$("X!(x& !(ظ۶-X- @ 2 ,I JbD$! ڬ %)W ME)+  E) (%) ` I$I$E)!+  E)b` Em۶E)! $E)!W ؖE) &! tLr! 4!/ KME)* K$IE) I$ e)! I$E)!  H$e)$!ðٶce) j h۶i۶E)! I$I$E)! I$I$E)! E) PE)A8  E) p I$Ie)E) I$ $e)E) I$$e)E)U I I$e)E)~u d̶mE) (4& @Ӷm۶E)!` I$Ie)E)U/ I$I$e)E)W. IlÖ,E)! I  e)E)  I ɐle)E)*  ز%Kde)E)(( Æ--e)E) I e)E)*  [$Ke)E)*ܴm0e)!@mmE) m$e)! ۀm[e)E)##'me)!` Y$ɰe)!dI`e)@R, e)`c_{l=e) p m6He)%) I$He)E) 6`6e)E) (e)a@c;e) $Ile)E)o{  Ð$Ide)E). H I E)!8 lI$e)$!* I I$e)E)*W `ɖ$e)E) ] `e)!@!IADRe) @$e)E)  %[)Ie)%)$I@e) hɤlȦe)E)( 0 mȀ e)E) `Òae)E))iLe)$$ I$؂le)E) A$@e)E)b"!( $)E)  ) I$e)E)* Mڤ$e)E)8,+$1(e)@ ِ%ق%e)!  I,e)E)* @ hڦe)! I%0e)$! a۳e)! p -I$e)!۴ mf1* l e)E)` I$Ke)!ZӶm E) N1%)W~  $ch! IOڤ! / pE)l϶e)!AmE)  I%e)! E)  I$I$E)!* I$Ie)%)*+ I$I$)( I$e)E)յ I%ɖ$e)E)UP I$e)E)5W II$e)E) - [lE) RE)z I$@E)UWI$I$I$I$I$I$ꪨI$I$AI$I$AరI$I$A I$I$"I$I$I$I$!`I$I$I$I$I$I$AI$I$zI$I$I$I$I$I$I$I$aI$I$I$I$ p(*I$I$!I$I$ I$I$I$I$I$I$I$I$bI$I$a* I$I$I$I$I$I$I$I$ I$I$!A IE)a-  E)`` I$I$E)! I$I$E)! I$I$E)! I$I$E)! E) K%E) Z E) hKE) ВN$!  E)ajۖm mE) I$e)$!* I$E)! @$I$E)!* @E) @ E)!  JE). I$I$)( I$I$)( I$I$e)E) I$$e)E)V II$e)E) ^U A$I$e)E)"zU I$I$)( I$I$)( II$e)E)* I $e)E) A$I$e)E) H$I$e)E) I$Ie)E)*  K$ɲe)E), [mE)aڴ"E) ` KdA$E)! I $e)E) eKI$e)$!  mI$e)!  mI,e)E)"$ɑE)  A$IHE) $ɲ$E)!@( m۰ E) $e)E) ے$Ile)E) I$e)E)_ I$e)E)U I$e)!ʀ1I$IE)  I$Xle)E) H$Ie)E)(* H$e)%) I$I e)E)}/  $Iee)E)  $I%e)E)W XdI$E)! $I$E)!( II$e)E) 6I$e)E)? !ې$e)E)4me)$, ٲm۰de)E)( ِ Ie)E)*۶m؆e) 2,Â!e)E) ۶m,e)E) ˶ee)E) &#0e)`` I&e)E) ɖ$˂,e)E) vf{mlE)  MXI$e)E)< X$$e)E) iڄle)E)"(֐iE) lIee)E) " $e)!@@ I- e)  I$,e)$!*`۱me)! $M$Ʉe) d e)$! I&$Xe) ?e)!U }ۆmE)_ I$ @$!m<!  %) $@%E) G۴mE)   I- e)!msE)!* I$I$E)  I$I$E) * I$@$e)E) I$I$)( I I$e)E)^~ I$He)E)%UX H$I$e)E)(W mE)!@ l۶mE)  lE) j=RE)W_^xI$I$(*+Z!   ۀmdh(DC1 {{aPIDI$ (4")l X%T&!I $  M !!*&.a !﮾I$L$((9!DK0B!{6abɶe$! OE)- E)  E)* I$I$E)! I$I$E)!+ I$I$E)! 0E)!W ` %) @%)/ M7l%)  $!/ kE) ܶdcaE)A8 I$$e)! ( I@$e)E)-^ $I$E)! A$I$E)! PE)(  E)b@ 9E) I$I$)( I$Ie)E)+ I$I$e)E) I$H$e)E)嫨U I I$e)E).U $I$e)E)VU I$I$)( I$I$)( I A$e)E) IH$e)E)( HI$e)E)(*. I I$e)E) $Ie)E) Y$Y2`e)E) ɶm0E)mJme)a(4( H$e)E)W I K$e)E)*} lI$e)!  mI$e)E)U ز-I$e)!nۦ E)!  $I6E)  XmضmE) $ E)!* ۖ$K e)E) [$I e)E)* I$e)E)W I$e)E)U[mE)!p I$$e)E)` I$Ie)E)z $e)E)m I$H$e)$! I$Y`e)E)+ף&mE)` ɖa$e)$! $$e)E) ImÖde)E)+ X$I-e)E)6ۦi-E)Cm۞E)! I$  e)E) 6rHmE)A(۰m۶%E)bmۦME) XI$e)$! Ȁɖ$e)E)  ۗ?e)!P4i%e)b M۴% e)E)  A6le)E)" $@! H@$1" Kl`e)E)\ I$e)E)- Ie)E) I%e)E)* mò$e)E)' X [e)%)6oe)!&",ۤIE)@`6`IE)A  I$[me)E)W )I&e)$!  غa$1E)U le)E) I$k=lf1$!_ꪢC$ E) I9%)U ޖs! iɖ$$! $XE)  ye)!  Il e)E)Z  I$[2`e)! y[mE) I$I$E)! I$I$)( ø9۶mE)p hE)  ɖ$H2,e)E) \ I$I$)( I$e)E) mۆmE)p I$E) I$I$ I$I$I$I$!I$I$aI$I$"I$I$ &.I$I$ I$I$I$I$I$I$A>I$I$I$I$I$I$A `I$I$I$I$ I$I$AI$I$A*** I$I$I$I$kI$I$ I$I$ I$I$~I$I$a"I$I$bjI$I$I$I$ I$IQE) ItE)+ I$I$E)!/ I$I$E)! $E)! I$I$E)!~ -E) $IvE) kSw5E) @X E)/ tE) X%) ۲- e)Ab  E) mmE) @%۶mE)`  (E)!` I$I$E)!* I$I$)( I$I$)( I$I e)E)۶mp6fE)( I I$e)E)V $I$e)E)WU I$I$)( I$I$)( I$I$1 I$I$1 I$I$1 I$Ie)E)" I$ $e)E)  I$$e)E)W II$e)E)* zU K%I$e)E)(U ؖ$I$e)E)_u H$I$E)$! I$H e)E)_] I$A e)E)] I$Ie)E)+/ E) m@ۢE)!@AmE) @$e)E)/ @ $e)E) ɐ [$e)E) x8rme)  H $Ie)A4( ɀ Kme)E) ضmɖ e)E) $Ie)!n e)  $ٶIe)%) mӶI6@!tH6re) . ۶Kle)E) Iaɖle)E)  0`I,e)E) $e)E)`۶M mE)A @ $e)E) H$e)E) %[me)E)p  gE)! ۆm E) I$Ie)E)>. ۶mE)@ h۶A۶E)!#@ XmۖaE) 0 dI$e)$!( `I$e)E)? lʦ)$e)$!ve)!IBe)  Ȇe)E) ٖa`e)E) @ $@! [2`0 e)E) I$me)E) $Xe)E) @6I-e)E)  `$e)E) M`e)E)  l6- &e)! H e)E)L $mE)A6 I$e)$! ɐ$I-e)E) ^ nI$1E)W mݖ1E) I:ۺ 1$!~*le) _ tE)_  $h! M9!+ lE)6`÷}e)! X2ِ$e)!  I% e)!۴mE)@ mٶmE) I$I$)( $I$e)$! ޖa۲E) @$EIIE) H$I$e)E)V I$ $e)E) I$I$E)$! J&E)V| ITh%)J` %!^I0o6`&a۶ ِnl K'`%Ao&)K !ں lb!!aZ*I$H$ @"9, @!H&P<!II$! ** ni !a o7%)j  E)- I$I$E)! I$I$E)!+ (E)& I$I$E)!_ tE) ۸NaE) k6vE) ,6E)x X %) ܶm E) kg`E)A8 ۶ضeE) $I$E)! H%)<$ E)a4 I$I$E)! I$I$)( I$Ie)E)/ I$I$e)E)ob ۶ )nE) I$I$e)E)+U @$I$e)E)Uժ I$I$)( I$I$)( I$I$1 I$I$1 I$I$1 I$Ie)E) I$$e)E)z IdX$e)E)(U ɲ I$e)E)WU $I$e)E)U $I$e)E)U׾ I$I$E)$!(( I$I$e)E)U. I$H$e)E)U ۶mòaE)@۶MmE)  [qlE)AР [%ۖ$e)E) e)E) . H$$e)E)p  Ide)E)B*/1ڪcKe)!A&Ie)  6lI-e)E)$ &,e)A@ ce)A@ iBe)  $ٖI e)%)*#(e)b`AIE) ۲aI%e)E) I6 [-e)E)? lIme)E)* eYm$e)!`8HE)A L%$e)E) ɲmɐde)E) ? ɲ-X$e)!M4hE) ٶ$X2`e)! Ae)E) &IlE)$d A$)E)6i4fe) %[me)E) Y%K e)E)8[lڠE) p<[m0iE) ɖ$[2,e)E) X9re)44 dCI$e)E)^ )Y$$e)E) ۶`e)E) @@! Le) @! Im؆ e)E)~ Y%le)E)!r˰ mE)  eK $e)E) ^ I$e)%) %۶M&e)E) mI-e)E) K2`de)$! I$زme)!+`;e) jh I$e)! u21E)_ dOe)!_$ E) I&H! NI5! / E)  /e)!U 2de)!  I$2e)! I$I$E)!* ۶m۰-E)` $I$E)  I$I$E)! h[mE)!۶m6,E)@4mKxE) د ۶ ۶-E)!@ E) I$ E)b^`I$I$A***I$I$"I$I$ I$I$"I$I$I$I$ `I$I$AI$I$A// I$I$ b&I$I$I$I$ j I$I$I$I$"I$I$AI$I$A I$I$I$I$I$I$I$I$I$I$a I$I$a* I$I$aʊ I$u!b/ PE) I$I$E)! @E)b* I$I$E)! E)! @E) _ie)/}E)E'۶E) IE) I$I$E)! I$H$E)$! m[qE) I$I$E)! E)` I$I$E)!+ I$I$)( ۲m۶ E)` I$I$E)$! II$e)E) ZU ˰p۶mE)A$, I$I$1 I$I$E)! E)A' I$I$)( I$I$1 ˱pۆmE)b4, I$@$e)$! I I$e)E)+WU $I$e)E) ^U I$I$)( I$I$)( I$I$)( ۶m2lE)` $I$E)$! I$e)E)ˏ E)!@ $IE)! I$I e)E)*/@ H$H e)E)( Y$ۖae)E) IH$e)E)(( IH$e)E) I$e)E) ömI$e)$! 6`ْ$e)$! mI$e)! $I$e)! $HI$e)$!( ۀ-I$e)E)UU0m۶mE) ВI$e)! HI$e)! %I$e)! dI$e)$! -PI$e)$! lII$e)! ؐlI$E)! mI$e)!شme)@*mE) ImH$e)E) ImÒ-e)E)Jm E)A e)  e)E)* "!I$5e)p KaIle)!لI-E) @ ˰`ؒ%e)  H e)E)( $ɉ)0E)@m4 E) ٶm4E) @2$Íe)`` I$e)!+ M)$e)E) eK@e)E)  I$mS@!ee) @@! [``e)E) I$0e)E)%Rm&AE)a mKI$e)E)+j mʄ$e)E) (  iٶl0e)E) @e)E)  ز ɐ$e)E)  I%me)! $K-e)$!*we)!% ma؆1E) CKe)!~?e)!U_ I-@%) PbH!+ 0 t%)*a{E)! U ےe)!- I- e)! I$K,E)!* I$I$E)! ۶mlE) H$I$e)E)j @m۴E)!6 I$C e)$!* a[$E)bpжmME)  6llE) -۶ E)^` Mt!mM$ *I7$ ,$3, Id .@ 4ۂ$HH  e&I ت #(N!{{o ID%)W+ %) I$I$E)!/  E)  I$I$E)! $E)!W ,IҶcE)/~e)w%}E) @E) E) I$I$E)! I$I$E)!mmE) I$I$E)!* HE)(( I$I$1 I$I$)(  m۶aE)4 I$I$)( 2۶mE)@ E) I$I$1 (E)a` E) I$I$)( mӶmۢE)!@@ m۰mE)A II$e)$! $I$e)E)U $I$e)E)WU I$I$)( I$I$)( I$I$)( HE) ( H$I$e)E) H$I$e)E) `H$IE)0 A$Ie)E) $$e)E) I$$e)E) Idۆ%e)E). I%,e)E) II$e)E) *_ I6`$e)E)*]  I$e)$! lK$e)$! -I$e)! dYI$e)! KI$e)E)uU  ۶mE)@ !I$e)! PI$e)! II$e)! $I$e)! ؖ I$e)E) U II$e)$! % 6I$e)!  -I$E)! 9ݚ$%) $%)*U $E)] NE)  E)!*/ I$I$E)! $I$E)! I$I$E)! H$E) ِ I$e)! xMmE)a K de)! Im6$e)E)* sÆ e)! òm[me)E) X Ime)E) *0hLe)&M$(e)@$9SE)P I$۶`e)E)жmSE) dI$e)  $ )$e)E) Mm@! H $1"   1"&"ae)a@6h4Ie) dIme)!  mII$e)E)  lBe)E)lE)` e)$!f'AE)  I$Xme)E)V` I$e)$! [i$e)E) IB6e)!e)!U^ )E)z M&A!+ @0!E)!]UU6`{mE)! U I$e)!/$&Ae) `!I$ E)* I$I$E)!@* E) E)!@!I$AE) c E)!@ Imɖ$E)! I$@$e)E)ꨠ ۲a۶mE)` I$زmE)U^ I$I$ I$I$I$I$I$I$$I$I$AI$I$A+I$I$I$I$I$I$I$I$I$I$@@`I$I$!***I$I$AI$I$ I$I$a I$I$bI$I$a`ફI$I$a I$I!}  !- I$I$E)! I$I$E)!  $E) `  E)!_?Oe)!_U%.O??1 yOf1 @E)* E) I$I$E)! E)!P H$I$E)!* I$I$E)!. E)A I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$)( HE)  I$I$)( I$I$e)E) I@$E)! I$I$e)E)U A$I$e)$!* I$I$E)!  I$I$)( E)A  I$I$)( I$I$)( ۶m 7E)4, I$ e)E) I$$e)E) I $e)E) A$E)! ذ mE)$, @$I$E)! C$I$E)! A$I$E)! I$I$E)!+  )E) *~ $E)U $E)b $E) ]$E) I$%)  II$E) I$E) I$E) HI$E)_U  II$E)  II$E)UU  II$E)UU I$E)UU I$E)UU I$%)U I$E)U K}1$E)!( $%)a $E)u t%)a E) I$I$E)! $I$E)! H$I$E)! @m۶mE)apmoE)A  m4rE)!@( ae) ,. Imme)E)3{me) ` l6`e)E)  2lI2le)E) e) ؖ ۲ e)E)6llE)۶mIE)  ِ$Kle)E)fme) ' % I$e)E) ] m e)E)  mI&1" IH1" H$1"Is 1rE) I$HaE)!  I%e)E) eC%e)%)  I6dCe)E)@IME)  ,E)!@mIE) )$I&e)$!* $I$e)E) U le)E)p de)!WmE) H !+   $!* * mMe)! UU dI$e)!+ MB6%e)E)x ɶm@E)A I$I$E)!* E)$ I$I$)( ̶۶mE)  I$Cle)E)V` m̶ge)!& I$$e)E) I$I$E) j E)^` ]6jE){q"" I$J$,88lĖm}$!Aۖmۂ! 7W!? )P$!  I$I$E)!+ I$I$E)!/ 8%) ($ &E)!_U.I$If1!UU I$1!U-`W?f1 Z6E)߯ I$I$E)! I$I$E)!+ MѶm۶E)  I$I$E)!  4%)A` I$I$E)!  I$I$1 I$I$)( I$I$E)! I$I$E)! I$I$1 I$I$)( I$I$E)! mmE) I$Ie)E)+ I$I$E)$! II$e)E)zU I$I$)( H$I$e)$! I$I$1 ( E) ` E) I$I$)( I$I$E)!@ ۶mE) I$ e)E) I$e)E) IH$e)E)W  I$E)!@Iܶme) K$I$E)! H$I$E)$! H$I$E)!  E)!{ &E)*_ $$!_ $E)U }$$! K$E)a HI$$!  I$E)A I$E) I$E)WW II$E)!  II$E)!  II$E)UU  I$E)UU I$E)UU @I$E)U I$$!U I$E)U IE)U** I@@E)A I"I%)A_ I=E)U I$E) i$%)U* Z E)U M @%) @m%IE)p $E)!jZU  $!  E)!  "@E)bJmƍE) l۶mE) $QI$e)! @DE)$CB He)@ !Ѵdْe)! -ӖIe)E) [-۶de)E) ( ye)!4 I$A$E)! I$@e)E)" -$I¶e)E) $KI$e)E)@ H6E)` l˶ee)$! @! I@! K,e)E) lK-e)E)  MJI$e)E)(/ mB@e)E)M 1E)$ ۲ -e)E) I$ۖme)E)Wh ɐ$I-e)E) U^ I$e)E)5U l0$e)E)`  e)!W` nmE)!U~ d!d  $$!!^ 6`ۉme)!-  I$e)! I%e)E)V` I$I$E)$!* I$I$)( ۶d6`e)a(4( $I$e)E) I$I$E)!<( I$I$e)E)Vp  I$e)E) IIe)E)** l϶mE)b I$3`E)bI$I$I$I$ @I$I$ *+I$I$A**I$I$A|֨I$I$ I$I$ I$I$"I$I$!I$I$A/I$I$#I$I$I$I$I$I$A** I$I!u II!a'$  $!!% J E)a&& I$I$E)! &E)!WJI$I1!WU eI$1 -^.1 HE)!Uտ* I$I$E)! I$I$E)!+ I$I$E)! I$I$E)!/ I$I$E)! E)(, ,E)p E)  I$I$E)! I$I$E)!* I$I$E)! I$I$)( I$I$)( I$I$)( E) I$I$E)! I$I$E)! E)A I$I$1 I$I$)( I$I$)( I$I$)( I$I e)E)+ ˶ame)& ,ömE)a@  ۶mE) $I$E)$! H$I$E)! E)!w E) 0E)!UU i۵E)  E) IZ%)_  QRBI!* j5! I$yE)UUU I$%)uW I$$! I%)a I%) ޺ I%)A I"$!a ia۶me) E)h E)( I"IE)U -IE)U ɶE) IE)!U IE) U Im۶e) U E)_ I$!U IEE) ޸ II !b I"E)! I$E)* ɛ$E)UU $ E)U w#E)U qI%)ݮ  $IE)b H  E)b I$I$E)![ I$I$E)! E)A.&* X۶mE)  `I$e)! X<ae)  Kdːe)E)<( M$ e) dٶmBe)E) lɶ-e)E) 7o9e)!p YeKle)E)" I, lE)!  $Yle)E)  I&e)E)pke)!:&me)A  $1" H @! [`e)E)  ِ$Xle)E) `ӒI$e)E)x iKe)E)  mZle)Ap ۶mنme)E) K,ضle)E)X I$@e)E)W` $I$e)E) U^ K!e)E)- I$$Ke)!zǶ=e)!UW  E)!^ @$!!^k* m۶E)! W `{e)!+ [2lɐde)E)p - I$L$E)!* I$I$)( 6,۶ E) ` I$I$E)! @ I$E)! I$A e)E)US II$e)E)U I$I$e)E) eXmE)A ض E)x M'j%%)_~x!oɖ }"@! $! "E)jj** E)b  I$I$E)! E)!_JI$Ix01!UU%J1/xJf1  AE)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!  E)@ E)  CE)` I$I$E)! I$I$E)! I$I$E)! I$I$E)!* I$I$)( I$I$)(  E)@ E) I$I$E)! I$I$E)! E)A I$I$)( I$I$)( I$I$)( I$I$)( ۲mmE)@ نmE) fضmE)  @$I$E)! $I$E)! I$I$E)!k ,E)z $E) U hvE)* umӴE) %)( $it! iM"! 'M%)_WW O$I$! I$ $!!z I$$! ޺ It$! I%)Au I$!A I E) * !E)!U XE) HE)_ I,IE)U ImE)U IE)!U I%) U IE) U** C$IE) E)W IH$e)E)"W I$I$)( I$I$e)$! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!kꪀ I$I$E)!yk  E)h %) @E)㲸( E)!Z ( %)! $( E)!} E)! E)!  $I$E)!*msgE) 8 ɖ$e)!  ae)4 ٶ$ e)E) [m[me)E)  ۀe۶ e)E)  ۶K%e)!@"EE)` $2e)$! dI$e)E)x $ %e)E)5 dJ$@e)A  @! ۲ ۶me)E) I$e)E)h N:1E) i )$e)E) mڶ$Ke)E)  ضl˂me)E) Kmme)E)X I$[2`e)$!* mE)  -e)E)% I& Ke)!~  E)A*$ E)!﫽_  E)!z mM6E) -h?e)!- I&%e)!< I$I%E)!* I$I$E)! . I$I$)( $I$e)E) ۆq[mE)!  g۶ ;E)!(@ mۆE)! I$K%e)E) [2۶mE)x I$x $!AxI$I$A- I$I$A**I$I$I$I$ I$I$I$I$I$I$aI$I$BI$I$I$I$bjI$I - IL$I!/ $ $! 4!b` I$I$$!! $E)!Wm[vZe)JI`$1! `Veœ$I$1 ^  E)! I$I$E)!+ I$I$E)! I$I$E)! E)**< I$I$E)$! I$I$E)$! I$I$1 I$I$E)! @E)Ap I$I$E)! I$I$1 I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$1  E)!`` PE)8 I$I$e)E)ի I I$e)E)* I$I$E)! A$I$E)! E)!z &E)!W E)!_ mIڢE)!~U $E) U+x h[t$! II$! 6] %) M%){" Y"$$! ` E)* I$I$E)! 0E)- I$I$E)! I$I$E)! @%) I$I$E)! I$A$E)! II$e)E)U. I$I$e)E)UW I$I$)( ۶1E)` ۖ%E)aZm۶mE) II$e)E)* ۶-E)` I$H$E)! II$e)E) U ,I$e)E) 2`I$e)E)W ۶ mE)a4, I $e)E) I$I$e)E)_ I$I$E)! I$A$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! E)! I$I$E)! E)  0E) HE) <E)!` I$I$E)!ׂ E)!{ E)!~ a۶E)!m۲-E)A`0Iޔme)#mME)b` Y%۰le)E)! ےlle)E)  ٶ!ٶ%e)E) ö-Âme)E) 2, ,e)!1A@e) K$e)E)/X $ $e)E) h e)  h۶m&@! H$H$1" K,6e)E) $vⶆ1E) HYI$e)E)& mӶe)E) 6d`e)E) e)E)( I$۶ e)$!0fmE) XI$e)E)  Me)!lI" =e)!`  E)!z E)!_*- @E)! ^aoE)  lB-$e)!b I$XlE)!* I$I$E)!+ I$I$1 I$I$e)E)? I$CE)@ m6`E)A ڶ-ڴE) & I$ےae)E) mm۶E) @  mضmE) `E)!U H$!b$, I$I$E)! @E)!WeI$?f1 eq8O$1 -^.H$I$1!\U E)!+ I$I$E)!+ I$I$E)! I$I$E)! E)  I$I$E)$! I$I$E)$! +" I$I$E)!j I$I$E)! E)$ I$I$E)! I$I$)( I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)$! I$I$E)!* I$I$1 E)! maE) I$I$)( IA$e)E)*_ A$I$E)! I$I$E) E)! &E)!U HE)!W- m&q[E) _ 2E)!UW m @$!  0I$! @$+E) ZI%)_ K$!!4 !E)!u @HE)Z I$I$E)! I$IE)! I$I$E)!   E)A  I$I$E)! I$I$E)! I I$e)E)U I$I$)( I$I$)( ` 'E) (6AxE)$ E) II$e)E) gE) I$I$E)!( ɐI$e)E) U زmI$e)E)}-le)!@* ۖmmE)  I$I$e)E)\V I$I$E)! E)!) I$I$)( I$I$)( I$I$)( I$I$)( I$I$)( E) $ I$I$)( E) @ E)b I$I$E)!  E)!` fE)飨 I$I$E)!߫ @E)!{ h۶mڶE)! m:E)!_ U KmE)b}e)!W JD%)!*`۶E)!* ذmI$e)!+"0mE)A` Ie۰ e)E)y!M%E)$ ۀmɰde)E) ( ۲mXae)E) I$ $e)E)_ꊨ I$[me)E)-W `I&e)E)- mےe)E)/"b @e)  mm$@! X e)E) I$dCe)E)  `I$e)E)?X lö$e)E)  6lۂ e)E) lö%e)E) I$2`e)E)UX dI%e)$!  M:liĆ1$! Ke)!x q[m E)!5Wxme)!=^O?1!U^  Ϗ?E)!-xĵdBE)P$)+E)$ I$I%E)!* I$I$E)  $I$e)E)j dI$E)!=ۆmoe)!) ۖmE)A I$He)E)( I$e)E)K*N5ӶmE)W`I$J8I$I$I$I$I$I$I$I$aI$I$a***I$I$(I$I$+ I )! $IP$!*  @$!!5 $! &$!eI$Ic1!_U5eIh$1 ^J$I$1!`VU  E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$!* E)a&  E)!x I$I$E)! I$I$E)$!  I$I$E)!* I$I$1  E) @ E)! I$I$E)!* I$I$E)! @E)  E) I$I$1 I$I$)(  E)!@ l۶mE) $I$E)! I$I$E)! $E)!W @"%)z$!GE)a vbDmf1 z_e) Vl'me) ^ E)!\ %)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! @ E) I$I$)( I$I$)( I$I$1 I$I$1 I$I$E)!* * I$I$1 ( E)` I$I$E)!  E)@ @E)a I$I$1 I$I$)( I$I$E)! I$I$1 I$I$)( E)` I$I$E)! $I$e)E) H$I$e)E)z^۶m˶ E)& I$I$E) 6lؖmE) I$I$)( E)! I$I$E)! I$I$)( I$I$)( I$I$)( I$I$)( ۶a۶%E)ap A$I$e)E)U I$I$)( HE)4 I$IE)! I$I$E)!  E)A.  E)! E)!߾ E۶vӶE)!u mE)!/W ܲmmE)bj* 6n8E) R$%) ` $A$E)  lI$e)! ò-ɖ$e)!b4IE)A đ3E)` ɶaI,e)E) ) m e)E) H$I$e)E) I$e)E)_ IRe)E)- m )$e)E)(-;e) @Hie) `0`e)E) I%e)E) IB6e)E)  m !e)E)- ɒl e)E)   ae)E) K%ې e)E)\  ɐ$K-e)$! ]$1$!z* nn1E)_ꪯO?e) x -Me)!-z/f1!Vh %1!}V `϶e)!˵yB!5E) I$[,e)$!* I$I$E) ( I$I$1  I$I$e)E).=fE)!4 6flE) I A$e)E) I$H e)E) H I$E)! E)eI$`<1!U J A I$K,e)E)\C  lE) Âm`E)@ ٸز-E) I2'ShE)I$I$bI$I$!I$I$aI$I$! I$I / TI !- "@!@ $! I$I$%)!e1*eIc@$1 5^eX$I$1!`VU E)!* I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)$! (E)a`` E)& I$I$E)$!* I$I$1 I$I$1 I$I$E)$! I$I$E)!  E)!  I$I$E)$! I$I$1 I$I$1 E)4 I$I$E)! I$I$E)! I$I$E)! 0E)!^ E)!W5.I$I^1!U.ID$1!UW 1!W'1!`U $$! E)! I$I$E)!* I$I$E)!* I$I$E)! I$I$E)$! I$I$1 I$I$1 I$I$1 I$I$E)$! I$I$E)!  I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)$! * I$I$E)! I$I$E)! I$I$E)!* I$I$E)! ,E)A` I$I$E)! DE) E) I$I$E)! I$I$)( I$I$)( E)A$, E) ۶m!nE)A I$I$E)! E)!B mضmE) I$I$E)!  E)  ۶2lE) @ E) I$I$E)$! PE)b I$I$E)! m۰9E)P I$I$)( I$I$1 I$I$E)! I$I$1 I$I$)( A$I$e)E)U I$I$)( I$A$e)$! I$I E)! I$I$E)! DE)!]  E)!] -괍ӶE)!W mSi[E)!~Wm?}E)!^5 @E)!W DE)  `۶e)!+  I$e)!  dK-e)E)  M&Ke)E) MI e)$!   ۖle)E)  X,ɶme)E)`  I$òme)E)- I&e)E)  dK)e)E) $`e)  $@! [l e)E) )$l¶e)E) hKI$e)E)  MH`[e)E)( ۶l[le)E) K,ضae)E)X I$H e)E)%Wx I$e)$!  Me)E)xIٰ E) &.)I$f1!%U^JI'1Ć1 ^`-.I$I'1!Wx `e)!  M6$e)$! I$I$E)! I$I$E)! * I$I$E)! I$e)E)+ I$Ye)E)\b. aۀeE) I$e)E) Lmð E) 6m E)a I$I$E)!+( I$I$E)!  I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)!** HE)44 E)! I$I$E)$! * I$I$1 I$I$1 I$I$E)! ( @@@E) ` I$I$E)$! I$I$E)$!* I$I$1 I$I$E)! E) I$I$E)! I$I$E)! I$I$E)! E)!U?I1!U-.I$&1!_U-.It$1!U xU.I'I$1! xUhRm۶f1X LE)!U I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$)( I$I$1 I$I$1 I$I$E)$!* I$I$1 I$I$E)!(( I$I$E)!( I$I$E)!(( I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! E)($4 I$I$E)! #E) f I$I$E)! I$I$1 I$I$)(  E)@  E)a@ 4E)bq I$A$E)! I$$E)!* [mmE)Ap I$I$)( I$I$)( I$I$)( I$I$E)! I$I$)( I$I$)( I$I$)( I$I$1 E)A& I$I$E)! I$I$E)! E)!> dE) I$I$E)! \@E)A  $E)` E) ' I$I$1 I$I$)( II$e)E)*U I I$e)$! I$H$E)! ۶m e)(& aE)!U @r۸E) I0E)!X W  $E) ^ `E)!W fE) $I$e)!X IE)A  IJ6-e)E)* ÖmXe)E) ɰeٶ$e)E)  XɆ!e)E)  I$ e)E) @IR&e)E)-{ , !e)E)> mӶm @! 0ضee)E) #)#E)@ )ae)! dK e)E) . -e)E) ۖlK,e)E) I$e)$! I&e)E) V` `K $e)$!* Ie)!xe)!%WxJtI$1!`%WJI$p1!Wp6`{E) - `R 4e)E)`  I$X2`e)! I$I$E)!* I$I$)(m&fE) 6۲mE)@ E)  I$I e)E) I$I$e)E)*Z"̛mE)x I${-E)UU^I$IA~/ ID$ !/ i$!  0$!!x\  !@ HE)*eI $1! \e$I$1!^UU  E)! I$I$E)!* I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! 9%) E)A.& I$I$1 I$I$E)$! @lE)P hE)a( I$I$E)$! I$I$1 I$I$1 I$I$)( I$I$E)! HE)  mE)O1!_U-JI$'1!_U .I|$1! xU}?1!*^U E)!X !E)!+ I$I$E)!* I$I$E)!* I$I$E)! E) I$I$E)! E)! I$I$E)$!" I$I$E)$!( I$I$E)$!  HE)b(4( I$I$E)!* I$I$E)! I$I$E)!  I$I$E)!( I$I$E)! I$I$E)! ( I$I$1 I$I$1 I$I$1 I$I$1 XE)<( I$I$)( I$I$1 I$I$)( ۶mE)b I$I$E)! I$I$)( m۶-ҶE)!@ ցdE)a4 0E)A M[m۶E)!& DE)(8 I$I$)( ۶m!mE) I$H$e)E) I$I$)( I$I$)( I$I$)( I$I$E)! I$I$)( I$I$)( I$I$)( @E)bp I$I$E)! I$I$E)! E) ` I$I$E)! E) E) E) KE) I$I$1 I$I$)( I$I$)( I$I$e)E)z I$$E)! $@"De)(  e)E)@ mۀ E)!  tI$1E)W so1E)^O?e) x.I$1!-WI$sÆ1!Vp -qۤE)! % `C)$e)E)@ I$H,E)!* E)!zV @E)!\ 5$! 6M!讯JI$I1/e ɑp$1! pVJx$I$1!XWUU $!!= $!!/6`  I$!!pW% "`!@  E)** @H%)!  $!! I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)$!* I$I$E)! I$I$E)! I$I$E)! E)!W. I$I1!}W J I܆$1!U-^J 1L'I$1!pW m۶E)!X E)!+ I$I$E)! I$I$E)!+ I$I$E)!  E) z I$I$E)! $%) HE),( I$I$E)! E)!^* I$I$1 I$I$E)$! I$I$1 I$I$E)$! I$I$E)! I$I$E)! I$I$E)! Ph%) 8   E)b`@ V`E)( E) I$I$E)$!( I$I$E)$!* I$I$E)$!* I$I$1 I$I$E)$! I$I$E)$!(* I$I$E)$! I$I$E)! E)  @DE)p I$I$E)! I$I$E) I$I$E)! @E) ,6 E)A I$I$E)! I$I$E)!z I$I$E)! I$I$E)! $E)! UU E)! I$I$E)!( I$I$E)!* I$I$E)! E)( I$I$E)!( I$I$E)!( I$I$E)! I$I$1 I$I$)( I$I$)( @DE) I$I$)( I$I$1  E)  I$I$1 E)  I$I$E)! I$I$E)! ۶mۘbE) E) I$I$E)!* I$I$)( $E)P I$I$)( I$I$E) I$I$E)! I$I$E)!* I$I$E)!* E)A I$I$)( E) I$I$)( I$I$e)E)z+ I$I$E)!  E)@ -!A  Ik$!  MM$!  %E)*^ жmE) 0ɐ$e)!/ Im e)E)* [mX,e)E)  ضmÒae)E) I- e)E)  %MB6e)E)X $ !e)E)- $I$@! @! I&$C"e)!8ame)#IO0E)@ ۶mle)! I$e)! )I&e)E)Vp [3閤1E) e).I$I$1! W~.I&91!Vp5O'f1!U\ %e)!- I&de)! I$I$e)$! I$I$)( I$I$e)E).Z I% de)E)VP/ II$e)E)+-T I$I e)E)*K mۖmE) mۆmE)! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! E)!_5. I$Q1!WU-. Ip$1!xWJ ē$I$1!^U}  $!! I$I$E)! I$I$E)! I$I$E)!  I$I$E)! E) I$I$1 %)  %)b I$I$E)! E)! I$I$E)$! I$I$1 I$I$1 I$I$E)$! I$I$E)! * I$I$E)! I$I$E)! 9 P%) h%)A8 @ E) I$I$E)$! I$I$E)$! I$I$E)$!* I$I$1 I$I$E)$! * I$I$E)$!* I$I$E)$! I$I$E)! ,E)p I$I$E)!* E),&. I$I$E)!  I$I$E)! E) P$E) I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!_z @$E)!UU I$I$E)! I$I$E)! I$I$E)! I$$! 0II$E)A  I$$!! I$E)U $%)U $! E) I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! DE) I$I$1 I$I$1 E)` PE)a E)!p I$I$E)!. I$I$E)! E)& I$I$E)! I$I$)( I$I$E)! mmE)! I$I$)( I$I$)( E)@ I$I$E)!  @E)` I$I$E)! I$I$)( I$I$E)! I$ E)! mٶe) M $!  kz!؀ T! . @M$!A * ɶme)/ [ e)!  i&m@! 6lK%e)E)( ۖae)E) I$e)E)?x I$e)E)5 $Ie)E) @le)! X`e)E) ɐH,e)E)/ l !e)E)/ I$I$1" @e)E)p I$[-e)E)5WP Ün$1E) N&Xaf1$!zꨊ'E) %Vx{r1/nk 6f1pHƴE) * @!!@ M!عme) * eI>'1 e$1 $$I$!*  A$!+ $!!`\  $!!V  I$I$$!!  $! I$I$E)! @E)!ֿ I$I$E)$! I$I$E)! I$I$e) @ E)!} I$I$E)! I$I$1 I$I$E)!* m !_ $m!$IB! $I! $I$! $I$! I$%)a II$E)!(  I$E)!* I$%)U ɕ$%)U $$! WE)* E)! 몽 I$I$E)! I$I$E)! I$I$E)!* I$I$E)! E)!@* E) I$I$1 I$I$E)!  E) @ E) E) I$I$E)! @E)!P I$I$E)!* I$I$E)!* I$I$E)! E)!: I$I$)( I$I$)( I$I$)( E) I$I$E)!  E) I$I$)( I I$e)E) I$A$E)! ۶qH E) R$X%)$ S! )A&ɥ$!+ "@jv$!@¾ fcmE)A  $XI$e)!  l ,e)E) l۶lC0e)E) mۖle)E)  K, e)E) !MB6e)E)'\ $ %e)E) $Cd e)E) 0e)! I$e)E) $[I$e)E) I$M41" e)E) I$e)E)X %I$e)$!* u1E)O?1!W_G'1/$s1 Wzaϱe) b!@nE)A I$L&e)$!* I$I$E)!* I$I$)(۶ 0fE)$, I$H%e)$!( )mmE)  I$@$e)$! H$ $e)E)\b I$I$E)! E)!_Of1!_-. I)J'1!U5x.9! $I$!j $I$!A @E)!_ E) }(%)` IE)_ Ii%)U I$%)U I$%)W I$z%) $IH! TI'$! I$%)!* $%)U L%)  xE)* I$I$E)! I$I$E)!* I$I$E)! I$I$)(  E)!& ` E)@(  E) I$I$1 I$I$E)! @E)  I$I$E)!* I$I$E)!*  E)b@ E) I$I$)( I$I$E)!( I$I$E)! )E) @E)@ E) @I$e)$!( I$ɒdE)! I$I E)! h@E)~ P@! Pڼ! ɐ$$! -McE)( K)e)!/&LE)a$a6e)  08e)!` I$ؒme)E)/ I$e)E)/ $I e)%) @! MB6$Q2e)!@ M&e)! m˶d"e)E) ۶ oe)! H$e)$! ü1lE)` Ԇ1E) E)#Me)`ӶLmE)a$, @$I$E)!P ɐ$[-e)E)^` $[I$e)E) "hHe)!@FN ARE)$#e) `A$Ee)a  I$M41" e)E) ۆ9nE) P#@E)x Tj'! $m۷f1-.I&1! p.'O$f1 mP!  !$!  CP'%!A #!` I$I$$!!(* $!&  $! & I$I$$!!  h $! I$I$$!! I$I$$!! 0$! IIJ!! I$I$$!! $!!` @$$! $I$5!z  @ !  Id $E)! `?e)  H$IE) f !* $!A I$I$$!! I$I$$!! I$I$$!!* $!!( I$I$$!!/ $!A I$I$$!! I$I$E)! I$I$E)!  E)a& I$I$E)! I$I$E)! I$I$E)! I$I$E)! 9%) (%)A` I$I$E)! I$I$E)!* I$I$E)!* I$I$E)! E)!.I$I1! .f1. I$1!U/W II$1!_ $I$1!^ضme)! @E)!]  %)@ E)! E)A  I$I$E)! I$I$E)!* I$I$E)! I$I$1 I$I$E)! I$I$)( I$I$)( I$I$)( I$I$E)! I$I$)( ۶mbE)A I$I$)( I$I$E)$! ۶maE)! IIe)E)* A$ $e)E) I$H$e)E)U( 6l۶-E)@ ۶m-E)C m۰E)!!  E)@ h۶mE)!  I$I$e)$!( I$I$E)! I$I$E)! @$E) I$I$E)!( I$I$E)! E)!_ }%) IE)U I$%)_ $MH%)Az  I&%) $%) HJ%)< I$I$E)! @%)`  %)a I$I$E)! I$I$1  E)b` I$I$E)! I$I$1 I$ $e)$!* I$I$e)$!* I$I$E)! I$I$)( I$I$)( mۆdE) I$I$E)! I$I$E)! I$I$E)! I$I$)( I$I$1 I$e)E)_ I$HE)!۶m&,E)@ J5$!Vx I$O$ b  I$$!b /۰mޖtE)*‰$Ge)@4@Ae)A =`e) pp $@ e)E)Jj i۶E)  $I$e)E) X mђ$e)E) ASE) H,0`e)E)K IE)A<  m˶e)E) I$I$1" K-me)!vi˶f1) t1%)ꫭe) ^hݚf1a-e)   E)a@ *n{1!顪 I$L&e)$! I$I$E)! I$I$)(caE)!h@ٖmۆmE) H$$e)E) moE)b mmۢE)!~ !E)! I$I$$!! I$I$$!!* I$I$$!! $!!% I$I$$!!  $! & I$I$e) I$I$E)! (%) `  E)* I$I$E)! I$I$E)! I$I$1 %)h I$I$E)! H%)44 I$I$E)! I$I$E)! I$I$E)! E)!_ m۶me)!/.?_`f1~.'f1 IK$1! U ɇ&I$1!/U?1!U I$I$E)! HE)!ժ h%)>  %)@ E)  I$I$E)!* I$I$E)! I$I$E)! I$I$E)! I$I$)( I$I$)( I$I$)( I$I$E)! I$ $e)E)W ۶m1E)A` H$I$e)E)x I$I e)E)U @E)bp II$e)E)U* IIe)E) I$$e)E)^z I $e)E)-j ۶m۰eE) hm1E) m۶(6E)!@K`mmE)  I Ae)E)b/ I$I$E)$! A$I$e)E)߹ I$I$e)E)b I I$e)E)V I$I$)( I$A$e)E)[ I$I$)( {dlE)< E)  I$I$E) I$I$E)! E)!Z {%)W I>%)U_ R @%)U_  }%)"+ $!  E)6 I$I$E)!* I$I$E)!* I$I$E)! I$I$1 I$I$1 $I$e)E) UUU I$I$E)! I$Ie)$! I$I$E)!* im۶E)! I$I$)( I$I$)( I$I$E)! I$I$E)!* I$I$E)! I$I$)( I$I$e)E)% H I$E)!(` I$@E)!x %mlE) I$ $!@I$I$ !* tɕ$!/  nE) òِde)!  ɶme)E) I$Ie)E)*( @ e)E)p  dK-e)E) 7x Æme)E)/ I$I$1" @a۶me)E) M&E)! ;E) p 5! $p!.a1W+.7H1 m;NlE) I$!  $$!!xV @!$!!\ե J!A4 I$I$$!!* $!!*p !4 $!& `$! $!  I$I$$!!+  !A@ $! I$I$$!!  @&$! @#5!b` 5MT!ׯ u $!) @4N$! `* I4I! * ҖT! & 0$!+ I$I$$!!  ! I$I$$!! 4"!A` P !€ P$! I$I$e) @ $! I$I$$!! I$I$$!! I$I$$!! I$I$E)! I$I$E)! I$I$E)! I$I$E)! E)** I$I$E)! ЁD%)(  E)J.J1J I$1$1!wxJ?f1hJ7ɟ1! f1!U 4E) I$I$E)! I$I$E)! I$I$E)$!* I$I$E)$!* I$I$1 E) @ E)  E)!% I$I$E)!X I$I$)( [%۶E)! I$I$e)E)~ E) 6,ۼmE)@ I$$E)! -۲mE)@  ۶mE)  I$I$)( I$e)E) j} I$e)E)UuJM۶mE)4( ضmI$e)E)UU I$e)E) ؆y[mE) 6۶fE)( E)@ m۰mE)AC ߶mlE)b òm oE)a@$( ٶ ۰mE) I$I$e)E)j~w I$I$E)$! II$e)E)/[ II$e)E)7z I$I$)( I$I$e)E)' I$I$)( ۲-۶aE)` PE)! ( I$I$E)!  I$I$E)! I$I$E)!ꪪ R%)^ I%)U $%)U  T$!-ߴ .$! @$! I$I$E)! I$I$E)! I$I$E)!+ I$I$1 I$I$1 I$I$1 H$I$e)$! I$I$E)!* I$I$e)$!* mڢm۶E)!* I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)!* I$I$)( I$I$1 AI$E)! I$$E)! Mܶm E) W M4E) I$L$!  I$$!b/ ܰmܖpE)   I$e)!  Ilme)E)* K-K%e)E) Ie)E)  I$e)E)7\ ؖaI$e)E)% I$I$1" $I$1" I$e)E)>Dd lϳcE)!pX 4$!( m.!f1U% vWh2;f1 p]߱f1 I!  &$! @ $!   ! ! @$!!\ H$!!֭ I$I$$!!* I$I$$!! $!!`x5 $!!% I$I$$!!* I$I$$!!* $$! 5M4! &!I&I$?I) *m!_ ɖL$!! )V!  ! I$I$$!! $$!! ^ HD!A( H$!! I$I$$!!( I$I$$!! $!! H$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!! &! R"u!AР $I a  IlDI!* E)!5۸!8nE)@%IE)a* E)!~ P%)A8  %)a@ E)  I$I$E)$!"   E) & I$I$1 I$I$E)$!* I$I$E)$! @DE) I$I$E)!* I$I$E)! E) I$I$E)! I$I$1 I$I$1 I$I$)( E)@ E) I$I$)( I$I$)( mڶ-ڶE)! I$I$E)! I$I$e)$! ܖlmE)A ( I$I$e)$! I I$E)! I$I$)( I$I$)( I$I$)( I$I$)( II$e)E)U I$I$E)! I I$E)! I$I$E)! ۶mÖmE) I$I$E)! $I$E)$! I$Ie)E)+ I$ e)E)B $I$e)E) @$I$e)$! h۶mE) @ I$e)E) IA$e)E)* I$I$)( I$H$e)$! I$I$e)E)?Uz X$I$e)E)] I$I$e)E)UW I$ $e)E)骊 I$Ie)E) $I$e)E)h I$I$)( ۲۰mE)@ m۶mE) I$I$E)! I$I$E)! `%)a@`!Ie) . I$1!. IB'ē$f1$!蠫 I$I E)! I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$1 I$I$)( I$ $e)$! I$I$E)! I$I$E)!* I$I$)( I$I$)( ۶mmE)@  E)! I$I$E)! I$I$)( E)`  Y-$e)! c۶ E)! O%E)Wz I$I%!? pI$!/@$E) * ِe)! 2` &E) p m6 E)a+$ӶIE)Ap  I$e)E) z ۶mde)$!* I$I$1" l,E)a@DB!UE) K%6le)E) @I$e)E)** I$H$e)E)VX Ie)E) Xme) h  `E) > dE)-ѶqE)  `R)e)E)`) I$M&e)$! * I$I$E)! I$I$e)E) I$ e)E)VR/ II$e)E)) I$Ie)E) A$I$e)E)b I$I$E)! I$I$E)! I$I$$!!* I$I$$!! $!!.j $! HI! &!a  I! - N1lE)!W- } ۇmE)!  e)!W I$I$E)! E)A %) I$I$E)$!**  `E)A@  E) I$I$1 I$I$E)$! I$I$E)$!* * E)'' I$I$E)! I$I$E)!* `E)! I$I$E)! I$I$1 I$I$1 I$I$)( @E)b I$I$)( I$I$)( I$I$)( E)! I$I$1 :0ömE)` A$H$E)! II$E)! I$I$E)$!* I$I$)( I$I$)( I$I$)( I$I$)( I$I$e)E)U II$E)! II$E)! M$!~J$I  I{R%   6r0!/ P`!  $!!  ! @! $I$!!^  H! I$I$$!! @$!  $$!!xW H! $!!5 I$I$$!!* I$I$e) $!!z `$! $$%!P%6!Ķ!L H b 4Nɰ !*./* I$I$$!! I$I$E)!  E)!j  $%)@ %)  %)b@ E) I$I$E)$! I$I$E)!" I$I$E)! I$I$E)! I$I$E)$!* ( E)!*% I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)! $E) I$I$E)! I$I$E)!* I$I$E)! I$I$E)! I$I$E)!( HE)A4( I$I$)( I$I$)( E),4 I$I$)( @E)@ pE)a I$I$)( I$I$)( I$I$E)! I$I$E)!@ a۶mE)  I$I$E)! I$I$E)! I$I$E)! I$I$E)! . lɶmE) I$I$E)! ݰm۲mE) ` HI$e)$!* $I$ؐE). ۶mmE)` h۶iE) I$e)E)/. öo˶mE) A$I$e)E) I$I$1 I$I$E)! mۆmE)  H I$e)E)U^ I$ $e)E)U I$Ie)E) I$I$E)! I$I$)( I$H$E)! I I E)! E)   I$I$E)!mE) mge)!) I$e)! ۶m,e)` E)! I$I$E)! I$I$E)! I$I$1 E) 6llE)   E)a I$I$E)! * I$I$1 I$I$)( I$I$E)! I$I$E)! I$I$E)! I$I$1 I$e)E)-{ K-ÒdE)! ۲mlE)j I'! $I$!/  )DE)  EI$e)!/)LAE)$ [$K$e)E) I$e)E) *KIe)aJ$@RE) I$I$1" @e)E) dK%e)E) X [m e)E) $H$e)E) I$I$)( I$e)$! * m6$e)! t lE) P %)/* PnME) 7 $I$e)! ۦm&,E)@ E) I$I$1 I I$E)! I$I$e)E)+\ I$ e)E) --ڦE)! I$I$E)!ˆ  E)!xb 0L$! $Қ!"ٴ! @!~ RK !a *  $! + I$I$%)! I$I$E)! E)! %) I$I$E)$! h%) I$I$E)$!** I$I$E)$!** I$I$E)! I$I$E)! I$I$E)$!  E)* I$I$E)! I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)!* I$I$E)!( E) I$I$E)$! I$I$E)$!* I$I$E)!* I$I$E)! E) J  E)  I$I$)( möcE)!@ 0E) I$I$)( @E) I$I$)( I$I$)( I$I$)( II$e)E)5 @$E) p ۰m۲mE)@ ضmٶmE)( I$I$E)! I$I$)( I$I$E)! I$I$E)! I$A$e)E)y I$I$)( I$I$E)! I$I$E)! I$ $E)!@ ۖm݆mE))qKmE)  HI$e)E)_ I$I$e)E)U I$@ e)E) I$I$1 I$I$1 I$I$1 I$H$E)!8 I$A e)E)] $I$e)E)_ ۆe۶mE)  I$H$e)E)^x $I$e)E) I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)! H I$e)! I%de)!+ I$I$e)! I$I$E)! I$I$E)!  E) ` I$I$E)! I$I$)( I$I$1 I$I$1 I$I$E)!* E)  II$e)E){? I$I$E)! E)!BJ E)$A$CE) @IHDE)m۶R+4E) J(D!A% I -H!?/ A&!@ !!  e)/ B:Me)x M !+ !@$! @$I!* R#$&!` d!d $!!+ZW Hd!d I$I$d!d  $!  $! $A! e) I$I$$!!. &! 6r8:! l$!Ah$I$޺Ix A  4m4 ! I!/ @$!! p^ @d!d $d!d  d!d  !@@ -!  I$I$$!! $!!x $!!z- $!! )! I$I$e) &! $I$! $I:!R$ ~Up$Ip OH!U! ٶm4!* IE)!Uս I$I$1 I$I$E)! E)@ E) %)$ @D%)! I$I$E)! I$I$E)! E)( I$I$1 I$I$1 I$I$1  E) I$I$E)! %)  I$I$E)! I$I$E)! I$I$E)! @|E)AР I$I$1 I$I$1 @E) $E) p I$I$E)$! `E)@ E)A I$I$E)!* ۰m۲aE)@ ضmٶmE)A I$I$E)! ۶m6gE) C1۰mE)A` I$I$)( I$I$1 I$I$)( ۶mضgE) I$I$E)! $I$e)$!* I$I$)( m̶mE)a& I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$ $e)E)׵] I$I$)( I$I$1 I$I$E)! I$I$e)E)U. E)4,۲mE) @ 6 ٶmE) I I$e)E)U I$$e)E) I$I e)E) I$I$1 I$I$1 I$A$E)! I$Ie)E)*) $I e)E) ~ h[ m۶E)!@ ۖm E) I$I$e)E)- I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)! $I$e)!/ IB0I$e)! I$X`e)! I$I$E)!x I$I$E)! @E) E) I$I$)( H$I$e)E)\u I$I$)( I$I$E)! ۶e۶aE) I$I$)( I$I$E)! I$I$E)! (E)$, I$I$1Fn IE) I%ۖe)! $$!A I$PR@! I$!/۰moE)* [ e)!/ I&e)%) I$ $e)E)* H$A$E)! A$I$E)! ٶmae)E) I$I$1" I$e)E)p `I$e)$! * I$e)E) `$HE)  ɐ$I$E)!( `B)e)! mj E) E)b  ,E) rm[qE) " I&"e)! E) I$I$)( A I$e)E)s m60E)p XmE) m6lE)! I$I$E)! @E)^pI$! N6I$ !* I$!!  @E)! I$I$1 I$I$E)! PE)  E)@ E)   E)a I$I$E)! I$I$E)$! E)  I$I$1 I$I$1 E)A` E)! I$I$E)! E)  I$I$E)$! I$I$E)$! I$I$E)!"  E) & I$I$1 I$I$1  E) E) & I$I$1 @ DE)A I$I$E)! I$I$)( q[mE) I$I$E)! I$I$E)$! E)A  pmE)A$, I$I$1 I$I$1 I$ $e)$! E) I$Ie)$!( $I$e)E)յJ I$ $1! O$1$!_ I$I1!  O$I`1!mvE)!^m#me)!j@Z %) I$ $E)! I$I$)( I$I$)( I$I$E)! 6`dE)A( -ڶhE)! I$I$1 I$I$E)! I$I$E)!* I$I$E)! AI$e)$! I$I$e)$! I$AE)!8 $Ie)E)( mK0oE)A4( I$I$1 I$I$)( I$I$)( I I$e)E)W I$e)E)- I$I$)( I$I$)( ö}XmE) I$I$E)! I$I$E)! $I$e)! K2 I$e)!  I$Xae)! %)a` I$I$E)!/ ۶ ۶!E)B -E)$  I$I$1 I$I$E)! I$I$E)! I$I$E)! ۶mbE) I$I$)( I$I$E)! DE) I$I$1 ɒI$E)!c[‘E)x iҺ6! bC?I!_5 ,E)- z @yNE)XV iM !+  @$! H !*  !H$IE) $@@ d!d LE)  @d!d I$I$d!d $d!d ) !@ :@!  !  0$!  4M4! `&!$I$*I !L!A.6* I!/  d!d @d!d 0d!d H6!! ʱ! ,$ I$I$d!d I$I$$!!/+ $!!*x @$!!Xխ $!! I$I$e) I$I$e) T! m۶-!'!WZ6I$!O$y !I!  m%I"a!* 4I!  $! I$I$E)! h%) ( I$I$1 I$I$E)! @E)j %) E)! I$I$1 I$I$1 I$I$1 I$I$E)$!* I$I$E)! I$I$E)!* I$I$E)$!* I$I$E)$! I$I$E)!B  E)  I$I$E)$!* I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!  I$IE)! / I$Nf1$!W. I$/Aֆ1E)}}+J I$1!J I'1E)ue I$$1!_e Iؚ$1!U.X1A. IB$1!_. I$1!U. I$1!U I`v$1!Uu @жf1 Ib$1!ժJ I'$$1$!_J I$$1!W. I$1$! e)!* $I21!^ f1!} mi۶E)! H E)b<4 I$I$E)! I$I$E)! I$I$)( I$I$)( ۶ ۺ1E)` mѶEE)!5 H$I$e)E) I$I$)( I$I$E)! I$I$)( $I$e)$!* II$e)$! I$I$E)!  I$I2,E)! ذm3E)` I$A$e)$! I$I$)( I$I$)( II$e)E)+~ I$A$e)E)" I$I$e)E) I$I$)( ۰mmE)@ PE)  I$I$E)! I$I$e)!/ @I$e)! I$e)!  I$I$e)!  E)* I$I$E)!*68PE)`$ I$I$E)! I$I$E)! I$I$E)! I$I$)( E)A( I$I$)( I$I$E)!  E)@ E)A I$I$e)E)5W}"@۴mE)h ٶmE) h(E)~ꪠ I$K=! pAɐ$!/!O$IE)   hB%e)$! I,H,e)E) I$e)E) I$@ e)E)%Vp 6l de)E) 7 I$I$1" I e)E)~ I$e)E)- Kmae)E)(۲m$hE)a@ ٶ؂mE)@I@rE) mP @e)  k%)7 $`E)/$H%E) -m 5E)a $ I$I$E)! * I$I$)( m۶mE)A` I$H$E)! ( mڶ-ТE)! I$I$e)E)> mE[4e)!p lJE)A& I$! $!! I$I$E)!  %)A I$I$E)!* I$I$E)! @\%)AР E)! E)!) I$I$1 I$I$1 I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)$! I$I$E)$!" $@ E)`@ 0E)4* I$I$E)$!" I$I$E)!* I$I$E)! * I$I$E)! * I$I$E)! . I$I$E)!*(> I$I$E)!* I$I$E)!& I$f1!  I$If1$!J I$&1!J I$1!J I$1!e I$1!UJb f1Az?#f1. IB$1!W. I$1!U. I$1!U Imn$1!Uq жe)*. I$$1$!J I$$1$!~zW I$I$E)!/ E)!X E)!%  %) @ ۖmE)e)!в-ۺmE)@ P$E) @@E)!_ u E)!׀ E)! ۲aܶmE)@  E)a HE)<< $I$e)E)UU I$I$)( I$I$)( I$I$1 I$I$e)$! I$I$)( I$I$e)$!* ۖ I$E)!* I۴ڶe)! I$I e)E)  E)!@@ E)! I$I$)( $I$e)E) W I$ $E)!6mٖaE)a I$I$1 mKmE) $ I$I$E)! I$I$E)! ۰%[mE)rzIJ$ɦE)  I$@ e)! m۶ ;E)!x I$I$E)! I$I$E)! I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$)( I$I$)( [a۶mE) E)!*` I$iE) $R+!_ ޷ !Z hT$E !? @!/  $L$! IA !**  "%!@ $H! $ ` I!* $d!d $ d!d  `!* LE) @ $E) d!d `! M۾6!9I$AI$IAPz 6l  it0!/ P!  $I$E) $IX!(4 $0H!* L!  d!d  !B@@ $I! Ä!d!d d!d $Id!d Id!d @$! $I$!$$!$I$+I$XB!IE A* i۶m1!* I! I$I$$!!  I$I$$!!( I$I$E)! I$I$E)! I$I$E)!꿫 I$I$E)! I$I$1 I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)$! I$I$E)$! PE)a8 I$I$E)$! I$I$E)! I$I$E)! KE) E) ۚmE) i E)*  HE) E)!_u I$I$E)! I$I$E)! /+ l۶mE)& h6f۶mE) I$I$E)! I$I$E)! I$I$E)! 4E)A` I$I$E)! E) I$I$1 I$I$1 E)!J E) E)$, IE)b77 I$I$E)! I$I$E)! I$I$E)!  E)!* I$I$E)!x* ۰mlE)E)!* $I$e)!, :E)Aʇ 6l۶qE)(  E)! E)!* E)!*  HE)A&  E)b``* I$I$E)!) I$I$1 I$I$)( I$I$)( I$I$e)E)_b I$I$E)! I$I$E)! $I$e)$!bDE) H$He)E)- I$I$1  E) f I$I$E)! I$I$e)E)-U^ H I$e)E)胵 ۶E)8 I$I$e)E) 6l3lE)` H$I$e)E)x I$I$E)! I$I$E)!o~Nɶ-e)a -$e)) I$I$E)!\ I$I$E)!.+ I$I$E)!/ I$I$1 I$I$1 I$I$)( I$I$E)!*( I$I$E)!* I$I$)( mm۶E) @ E) xE)b< I$I$1 $I$e)E) Wu K,ٖde)! mӶh E)! I&! )DI$! * lܖlE)/ Ie)!/ I&@Ce)%)* $ e)E) * I$He)E)Vx*m[E)!X Kd,e)!  e)E) ۠m҆eE)" $INE)  I$e)E)( H$ e)E)TX I$e)E) WN۶ʍe)A y`E)` Y!&P/E)  X2, e)! I$I$E)! * I$I$E)! $I$e)E)^  E)` I$I$E) I$I$E) u6m۶E)!v` I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)! I$I$E)$! I$I$E)$!* I$I$E)! I$I$E)! I$I$E)! I$I$E)$!* I$I$E)$! I$I$1  E)  I$I$E)$!* I$I$E)! E)@ E) E) ME) 5E)a`j IE) HE)!] I$I$E)!  E)@@%$IE) E) I$I$E)! I I$E)!/ I$I$E)! HE)a,4 I$I$E)! E)! I$I$1 I$I$1 @ E) Р E)!@  E)b` E) I$I$E)!* I$I$E)!( @E)@ E)a E) E)!)( `E) pE) I$I$E)! I$I$E)! E)!{*  E)a* E)!׈ @E)!z C%) $0E)!U{U HE)!W}  IE)@ h E))* @E) H$I$e)E)U_ I$I$)( I$I$1 I$I$e)$! I$I$E)!* mE)! I$ $e)$!(* I$I$e)E) II$e)E)** II$e)E)~  E)a@  ۖmE) $Ie)E)5 I$I$e)E) I$I$)( I$I$E)! hE) I$I$E)!/ E?e)! _m+ME), ۶mE)A E)* I$I$E)! E) I$I$)( I$ $E)$! I$I$E)!* E)!b I-%) !__p A@PMG&!AR s4 !+  $0!  @$I$! IH$!*  %R"I!P XVH$I!a $ R*%!A $I!A$ I0! $I!*  IP$]! Hd!d HD!A&8 -k6!OЄR$ !&@$I$Iĉd 9U"E !/  `!  0`2E) $2$E) $AD$! hڶ-0`! ! I!  (!  6! H!   d!d d!d Id!d @ۤ! m۶1!d$$!b$I*I9A ׽+ 9 ! i۶-!  $!+ I$I$$!! $!4 I$I$$!! I$I$$!!/ I$I$$!! I$I$$!!  %) & DE) * I$I$E)! I$I$E)! I$I$E)! E)!Z j D%)! I$I$1 I$I$E)! I$I$E)$! P%) ( $E) *_ F'E)_ @V%)_ $O"! RE)ի m?5E)j E) I$I$E)!* XE)A I$I$E)$! H@E)P I$I$E)$! %)a  E) I$I$E)$! I$I$E)$! I$I$E)$!*  E)@ E)A I$I$E)$!( @E). 4E)p  E)!`  DE) I$I$E)$! I$I$E)! E)! I$I$E)! I$I$E)$! I$I$1 HE)A$, I$I$E)$!* E) I$I$E)$!* H E)A4( I$I$E)! I$I$E)! I$I$E)! T@E)A  E) z E)!   E)!WU ll$!  E)! ] m6E)!W H"I%)! @E)@  E)b I$I$)( I$I$1 I$I$)( I$I$E)!* $I$E)! I I$E)$! I$@e)E) I$I$1 @$I$e)E)ਪ I$Ie)E)h* mlE)A I$e)E) U I$I$e)E) I$I$)( I$I$)( E)a` E) $I$e)!=E)۶m#,E)! `  E) I$I$E)!/ @E)( I$I$)( I$I$)( I$I$E)!* I$I$E) I$I$)( I$I$E)! I$I$E)!* I$I$E)!* I$I$1 Ö`I$e)E) U I%ؒae)! P@E)Z I$x(! ɐ$!' )I$e)! ? `$e)E) I4M&e)E) I$e)E) * dK%e)E) 7Xr [dْle)E)( Xm$IE)  H$ e)E)p€ ؖlI$e)E)% Y$[%e)E) I e)E)ZB* I$e)E) 5W\ lB&%e)! kۊmE) 7X!< mtE) - @-ɐde)! ۶lKmE)($ I$I$E)! @E) ` I$I$E)! @ Ie)E)% I$I$)( I$I$E)!( I$I$E)!  $! @  E) E)  I$I$E)! I$I$E)!꿫 I$I$E)!  E)`.  %)A I$I$1 I$I$E)$!* I$I$E)$!ꊨ %) 5E) E) )mSI%) I$%)  t{E)_ E) ( !E)!* I$I$E)!  E)a I$I$E)! E)a*& (%) ` %) @  E) I$I$E)$!( I$I$E)$!* I$I$E)$! dE) I$I$E)$!  E)! j )E)  E)& HE)< E) ' I$I$E)$! I$I$E)$! E)!*% I$I$E)! I$I$E)! I$I$E)!" I$I$E)!( @DE)b I$I$E)!(( I$I$E)!" @<E)p E)  I$I$E)!  E)@ E)a I$I$E)! I$I$E)!  I$I$E)!* E)A,4 HE) W $$E)!uU DLE)!UUU  IP%) @I0E)!UU E)!-U I$I$E)!+ A$I$e)E)Uw I$I$E)! mضmE)  I$I$)( I$I$)( @I$e)E)+W I$I$1 ۲ `E)@ A۶m۶E)  I$I$)( $I$e)E) ^ I$ $e)E) I$I$)( $I$ E)0 E)! I$I$E)! I$I$E)! I I$e)! mle) I$I$E)!/ E)!/ I$I$E)! I$I$1 E)!` iڸ1%) d>!~__M$L$* ɘl! xR@%! !0!  Ð !讯I$I$!  H E)  B&I!* I !* [m۶ ! ʡ I!A$ H !*  $I )!@ $I! @5! vݼ5! &I$ I$I+ Ism+ M{4 !/ HI!a< `$I$E)a @$! $I! $A$! $IE) $A$! )$!@ 4$I!  A ɐE) Hd!d `@&! 1!b$$!a`$I/II2 * )K!b  I!!* JDH!A I$I$$!! I$I$$!! I$I$$!! H! (  !b, I$I$$!! $! I$I$$!! I$I$$!! @@! E)* ,%)z I$I$$!! @H%)AР I$I$1 (E) z %)! ivtE)U $q'!W K$! mE)]* E)! I$I$E)!* I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)! E)b I$I$E)!* I$I$E)! I$I$E)! I$I$E)! @E)!zغ @@%) ` I$I$E)!   E) @E)z  I$I$E)! I$I$E)!_ I$I$E)!  E)j` P @E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!  E)(@ E) I$I$E)! I$I$E)!ª @P%)!( I$I$E)! j I$I$E)$! E)& I$I$E)$! I$I$E)!( I$I$E)! 4E)` E) 2E)!W  @E)!WUW I(!@  IE) !$E) U E)! $I$e)E)W I$I$E)!( KmömE)A I$I$)( I$I$)( $I$e)E)Wz I$I$e)E) I$I e)E)* 6l۶mE) I$I$1 ꪪ I$I$e)E)%Wz H$I$e)E)^ I$H$e)E)  E)!@ d E)  I$I$E)! I$I$E)! I$I$E)!7N`e)!  I$I$e)! E)!/ I$I$E)!+ I$I$)( I$I$1 I$I$E)! E)! I$I$)( I$I$)( I$I$E)! I$I$E)! * I$I$)( I$I$E)$!жi!E)ɂ ۶m6`E) O%!~x I$!-^۰mE)bb mqf1!)- ߿E)! II$E)! I$A e)E)7Xb lɖde)E) 7 Ie)E) * H e)E)X  lI$e)E) Z ˶,Hme)E) H$ e)E)x  ɐ$K$e)E)Tx lB4!e)!dJ E) WiE$! m=GgE) +7 DI$e)E)@/ I$K$E)!* I$I$E)! I$I$1 I$A e)E)^s I$I$E)! I$I$)( I$I$E)! @E) $!  d$!b I$I$E)!  E) I$I$E)! %) I$I$E)!  %E)aZ R8E)U  5NJ%)U ڜ$$!U/ I $!/ E) I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$1 I$I$E)$! I$I$E)! I$I$E)!  E)!~ %) I$I$E)! I$I$E)! I$I$E)! I$I$E)!* @ E)!ޯ% H %)A(4( E) @  E)` HE) I$I$E)$! I$I$E)!* I$I$E)!* HE)><  %)A  I$I$E)!* ȁE)$( I$I$1 H@E)A I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)! (E) `  E)@ E) I$I$E)!(* I$I$E)$! I$I$1 I$I$E)$! I$I$E)!* I$I$E)! I$I$E)! IE)!Uz* m6 E) -[ l$!/ *%RIE)j  IE)! E)!- I$I$)( I$I$)( I$I$1 I$I$e)E)U\ $I$e)E) V I I$e)E)%U ۶mض E)$ H$I$e)E) I$I$1 mѶmӶE) ` `rܶmE)a*۶mbE)  I$I$1 I$I$)( I$I$E)! @p%)* m{me)!@ _ ]E)  E)!/W l> ^_]C'I$/ 1m  I !/ RHI!! `!I!I$I$! I $! @$I!*   !  E) $HJ! I !*** $If!a "@!A@ iɚv!!* ER&!X$I$I$/9ْl ! d@!  m6f! I$I!*   H$! H$!* IE) R"5B"(!` hDI!( $ H!a  d„E) HE) $A-! I! l$!^@$I$I$9%   UI$ !* I!!* ! I$I$$!!* H!, $!! I$I$$!!/ $@$!A` I$I$$!!  $!, $! I$I$$!! (!@ PFP!  !@ ! $$! (в'! @ HI$%)a 'Id!a mӶ$!/ I+! !$! I$I$$!!+ I$I$$!! I$I$$!!+ I$I$$!! I$I$$!! $!! $!!j I$I$E)! E)(> I$I$E)!着 `E) %)A I$I$E)$! hE)< I$I$E)$!* I$I$E)$! I$I$E)$! I$I$E)$!* I$I$E)$! I$I$E)$!* E)b  I$I$E)$! dE)A I$I$1 I$I$1 I$I$1 I$I$1 ЀE)A( I$I$1 (E)` I$I$E)$! E) @ 0E)  I$I$E)$!*( I$I$1 I$I$1 I$I$E)$! I$I$E)! " dE)  E)a %)b I$I$E)! I$I$E)! I$I$1 I$I$E)!( I$I$E)$! I$I$E)! I$I$E)! @E) _* I$E) UW mm E) nݲvE) H ME)A4% E)  I$I$1 I$I$e)E)U I$I$)( I$I$e)E)^ I$I$)( HI$e)E) W ۶m-E)` I$I$e)E) I$I$1 I$I$)( 2mE)@* E)A  I$I$e)E) I$I$)( I$I$E)! PE)8 6ضce)! _+-mE)a@* ݖm#E)b E)! I$I$E)! I$I$1 E) I$A$e)$!* I$I$E)! I$I$)( I$I$)( E)$ I$I$E)! I$I$)( I$e)E) 5W I%`e)! @E)zꪠ IJ(!/ TQT$!!+ II$e)!#&%e)p 0lۖ E) H$ e)E)\`* `I$e)E) 5$I&)e)@iIe)A K%e)E) 7\p I,Ö`e)E) $e)E) I$I$E)! (@IE)ah E) RӪ$!{ 0rE) - ɐde)   I$LB$E)!* I$I$E)! I$I$e)E)= I$A$E)!( I$I$)( I$I$E)! E)@ E)b @! I$I$$!!/ 5$!( DJ$%)a I$%)A IJ!* mV!Z* $! I$I$$!! I$I$$!! I$I$$!!* I$I$$!! * I$I$$!! I$I$$!!*  $!!} @$!!޿ I$I$E)! E) 4 E) @%)aа I$I$1 I$I$E)!ʪ E) I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$! (E) ` E)!*( I$I$E)$!( E)b  I$I$1 I$I$1 I$I$1 I$I$E)! E) I$I$1 @$E) @E)` E)!  I$I$E)!* I$I$E)$! I$I$E)! I$I$E)$! I$I$E)$!( I$I$1  E)a E)b@ E) I$I$E)$!" $!!d E) I$I$E)!* I$I$E)!" I$I$E)$! " I$I$1 I$I$E)$!*  E)@ %)b  XE) 69E)~ ԭJE) E) 5E)! K E) I$I$)( I$I$)( I$I$)(  m۶mE)& @I$e)E) W I$@e)E)- $I$e)E) I$I$1 ꪪ ۆmE)! H I$e)E)_ I$H e)E)ꨉ I$I$1 I$I$)( I$I$E)! HE)!_ hӢv&E)!`_h !`&͛$! ha$I!* Iǰ% b A! P"5!ahPP!(!I$I$!I$I$! $AR$! HI$!(** $I!  B$A! I$LE)a z&I$!A Шٴm;!&K$ M$I/IDND! ( %VB!!bB  I!A @$I$! JF$I!( $I$!*   H$! $I#$!` A$! ʳR"4!!` )I$I!  $I !A  $!  zJJ!a$$I$xI$ɕ !UխI !* mҶ-! @!@  ! I$I$$!!* I$I$$!! GH!!8 $!! I$I$$!! * I$I$$!! @ $! $!!` )&!  p!A $!!j 0$!!^ '!X ")M$!`$Ixa I$y%!+ II!Aj $! I$I$$!! d!d $!! I$I$$!! $$!!W @$!!_- $$!!_ I$I$$!!+ I$I$$!! I$I$e) I$I$e) I$I$e) %)' I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! dE)  E)! I$I$E)$!  $E) ` I$I$E)! @$E) I$I$E)$! E)* I$I$E)! I$I$E)!  E) E)  E)  I$I$E)! I$I$E)!( I$I$E)! I$I$E)!* I$I$E)$! I$I$1 @ E) I$I$1  E)a I$I$1 @E)P  %)  I$I$E)! I$I$E)! I$I$E)$! * I$I$E)$!"* I$I$E)$! I$I$E)$!* \E)A$ E)!~ KE)W vP %)!@ Vi%) Km%)A:  E) . I$I$)( I$I$)( I$I$)( E)p $I$e)E)U I$ $e)E) I$I$e)E) H$I$e)E) I$ $E)! I$e)E)%Uz I$e)E)5 I$I$e)E) I$I$1 I$I$E)! E) ~ -ڶmE)!%W ,4E)x 0YE)* I$I$E)!/ I$I$1 I$I$1 I$I$E)! I$I$E)!* I$I$E)!08 I$I$)( @@E)p E)$( I$I$1 $I$e)E) ]_ [-de)! c۶E)! I% !X $MV!a(\ ۶mE)br a+T f1  M4M&e)E) @ I$e)E)p* I$e)$! ( ɶdۖ!e)! e)E)* I$K-e)E)'X I-`e)E) <@mE)@ i۶h۶E)!! d $e)$! dCIE)p Ӻn,$!p E) -7 mE) I$H%e)$! I$I$E) I$I$)( I$I$e)E)X{ I$I$)( I$I$)( I$I e)$! I$I$E)!` P$K&E)AL$I!+ I$! I. !A !d!d I$I$$!! @$!!+/ I$I$$!! * I$I$$!!* $!!* I$!!U $!! I$I$$!! I$I$$!!/ I$I$e) I$I$e)  $!@ E) I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$E)! I$I$E)! E)*' I$I$E)! I$I$E)! (E) ($ I$I$E)! (E)  E)` I$I$E)$! I$I$E)! I$I$E)! I$I$E)$!( I$I$E)!* E)!zb I$I$E)!# I$I$E)$!( I$I$E)!JJ E) I$I$E)!( I$I$E)$! I$I$E)!* I$I$E)! I$I$E)! I$I$E)$! I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)!( I$I$E)!+ I$I$E)! I$I$E)!+ I$I$E)! E)  I$I$E)$!* I$I$E)! E)~ I%E)_ $`nj $! 0;E)+} E)- $I$e)E)U  E) I$I$e)E) I$I$)( I$e)E)%z I$$e)E) I$I$e)E) I$I$1 I$I$)( H I$e)E)W I$I$e)E) I$I$)(  E)!@p R:!z~,A"$!I$I$A* I J * IdK$M! $)#!ɐ!I$I$!I$I$!I$I$!I$I$! dH$H2!I$I$! I$I$! I$I!* @!2!'I$I$I/ C% IL @! $H$!!!I$I$! B"% !Ap I !* 0R"!!p  A()!*  IH!A $!,I!Jʪ I(R!,IR(>!<'I$bI$I/I $  IۤiW`!+ 0! I$I$d!d I$I$$!!* $!!(  ! I$I$$!!/* I$I$$!! $!! ( x @$!!p_- H$!!ֵ H$!b44 I$I$$!!* P! $-!x ij$!$I$! I$U !ڪ* IK!+ $ !  d!d I$I$e) I$I$$!! * $!! ~ @$!! ^ (!@ $H! $!!- I$I$e) H$$!A I$I$e) I$I$$!! I$I$$!! $!!~. $!! I$I$$!! I$I$$!  I$I$E)! I$I$1 ,E)p I$I$E)! I$I$E)!ꪪ I$I$E)! %)$ I$I$E)$! I$I$E)! E)A&. I$I$E)$! I$I$E)$! I$I$E)! E) 6 I$I$E)$!Ȫ( )E) I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)$! E)! I$I$E)$!* I$I$E)$!* E)4 I$I$E)! I$I$E)$! I$I$E)$!* I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$1 I$I$1 I$I$1 I$I$E)$! I$I$E)! I$I$E)!( I$I$E)! * I$I$E)!  E)@ E) I$I$E)! E)!z* ME) $gۘ@%)~ vE) PE) I$I$E)$! @E) I$H$e)E) I$I$)( I$I$e)E)-^ H$ $e)E) I$I e)E) I$I$1 I$I$)( I$e)E)5Wz I$Ae)E)% I$I$)( I$I$1 E)a,$ ` E)!W E) /dzmE)!Vp  %)bJ E) (E)` a۶m;E)!C E) I$I$E)!* I$I$E)!@@ E) I$I$E)!&> I$I$E)! I$I$)( aI$e)E)% I$X-e)! hE)ꪨ m! * a۶E)! / ]ӡ隸1$! i$l4e)!` Ie)E) * H$e)E)x` [m e)E) e)E) I$@ e)E)\`ɼME)b ØmmE) I$@$E)! I$e)$! *$C" E)@ 隯PE)  mѾ$!  * I$E)! I$X2,e)!> E)b$  I$I$)( I$I e)$!( I$I$E)!  E)a@  E) @E) P@ 0! I$I$e) I$I$$!!* I$I$$!! $$!!_ @$!!_  @!! L$!*, I$I$$!!  $!!@@ I$!A/% I$I$e) I$I$$!! I$I$$!! @$!!_ I$I$$!!+ I$I$$!!/ I$I$e) I$I$E)! I$I$1 E)(&* I$I$E)! I$I$E)$!  E) B %) I$I$E)$!*  E)@ E) I$I$E)$! I$I$E)$!* I$I$E)! E) @E)` I$I$E)! I$I$E)!**8 I$I$E)!* IE) @$E) ^_ PE)+  E) I$I$E)!* I$I$E)! HE)< I$I$E)! I$I$E)! I$I$E)!(* I$I$E)$!"* I$I$E)!  E)!j@  %)A E)! I$I$E)! * I$I$E)! I$I$E)$!* I$I$1  E)  I$I$E)$! @tHE)!Р @E)! I$I$E)$!* E)@ E)!( I$I$E)$! I$I$E)$! j`E)_ $E)Wz  -'E) UW OE) I$I$E)$! I$I$)( I$I$)( I$I$)( $I$e)E)Wz ۶E)! ' I$I$e)E) I I$e)E)j I$I$e)E)5Wz $I$I2E) 5S>%) jp$I$AЂL$IA`* #IP! H"&*!!"@ $ `! @!  *bP!I$I$!E!ꪪ A@ @!A  &!^m%h$I$I$I/ 9ٶl! eB1 I! j j"m AI$I$! H!꾯 ! I$I$! $A$I&!*  I!I!  $I$! I$I$! $ H$! ٶ9!-K$I$I}/I!0`A*  $I 1!/{  A@!/  $)&!@ ! @$d!d $$!!\ե  !A@ @G!A  H! @"$!j 00! I$I$$!! I$I$$!!  $! @&!^ %I$!M$I!/ I$! $I!-  d!d d!d @d!d $$!!+^ H$!! W% ) !@ $!* I$I$$!! $!@ $!! $!!z "I!A@ p !a  H!4 $!! I$I$$!! ( I$I$$!! I$I$$!! EH!   $!  I$I$$! 4%)!` @E)!U 1E)~ E) &E)_ &%)A$ 7E)U HE)  $$%)U ۖE)* $%)(W %) kR'%)_W I%)UU mi%) 0|E) E) J\E) E)!}u ME) ,E) I$I$E)!y I$I$E)!  E)@ I$I$E)!*# I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! ȁ%)a,4 *%)! I$I$E)! I$I$E)$! I$I$E)$! I$I$1 @E) I$I$1 E)h 0E)  I$I$E)! I$I$E)!* E) I$I$E)$! I$I$E)$!* @E)  :E)~ T %)/Ux E) U E)! - I$I$)( I$I$)( I$I$)( I$I$e)E)%U^ I I$E)!" I$H e)E) II$e)E)** I$I$e)E)x AI$e)E)-Z I$Ie)E) I$I$)( I$I$)( I$I$E)!  E)!%_ plرmE)!X @ E)!p mmE)!` ? E) E)! I$I$E)!  E)` I$I$E)! $E)` I$I$E)! I$I$E)!* I$I$1 dI$e)E)-] K%ؒme)! E)!_ @ E) E)!/  e) / { `e)! $I E)! I$@ e)E)5Z` 6, e)E)  e)! m1loE)!  Hlɖde)E)  I$ˆme)E) I$e)$! I$e)$! *Xe)!x v2'X%)__^ NzE)+ )"I$e)! mÆmE)! I$I$E) I$I$E)! I$I$e)$! I$I$E)!. I$I$)( I$I E)!( E) $$!!T I$!!x P! $!! I$I$$!! X$!< I$I$$!! $$!!_ Ex* ! l $! !A $!!  I$I$$!! I$I$$!! $!! !! $! I$I$E)!/ H%)a4 E)!U 0E) X&E) E)@ E)a &%)z  Iږ%)U $E)U h;E) &$%) U &E) I$%)UU Hq$!  i.E) ME) *)E) @@E) `  E)!]zk E)! `E)*ު I$I$E)! @E)!^ I$ $e)!۶mXE)b( I$If1! mҶnE)!P E)! I$I$E)! I$I$E)! E)< I$I$E)$! I$I$E)$!  E)A` I$I$E)!* I$I$E)! I$I$E)! I$I$E)$! @E)! I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)! * I$I$1 I$I$E)$! E)` E)h y%)! X-E)/Wz \E)- I$I$E)! I$I$)( I$H e)E) E)< $I$e)E)WZ I$e)E)5  E) @  Z6E)@$M$I$I? b !H! 0!@H p(( @!!I$I$!H A!H $I A bɞ!@4@$bH$I$IX1d? a҆!]߽ !!ꪪ,!@% `!@ $@ !aPH $( <!zZI$I$!@$ A``@$!`˒d'!zP$I$I$I$!* &IUI !* !!  ] I! b !I$! $d!d I"!@ 0p!  I$I$e) 0$!!z/Z 0L$!!\U  d!d d!d I$I$d!d 0! I$! $I$! I$Ix ! IJ@! I@H!*  !A  d!d d!d  d!d $$!!~U- $!! I$I$$!!* I$I$$!!* I$I$$!!* $@A! H$!! !$ I$!! I$I$$!! I$I$$!! H!, D! &$!!W $$!  @$!  Iғ$! $mI$! 'I$ A} $I!h$I!* I$ I!Aޞ I$! I$!aڪ RIE) z y I`E)U $E) IE)!U HE)44 E)!U I$I E)! I$I$E)! @lE) $%E)az` IQE)!& I$I$E)! L E)!U_  E)A E)!ת E)p E) I$I$E)!/ m۶aE)!mn;e)!{@nm۱c1A  e)!ʯ E)  E)!* I$I$E)!  E)` I$I$E)$!  I$I$E)$!** I$I$E)$!*  E)  I$I$E)! I$I$E)! I$I$E)! E) @ E) I$I$1 I$I$E)!* I$I$E)!* I$I$E)! I$I$E)$!  I$I$1 I$I$E)$!  E)& Md%) `' @E)U^ 0E)+U E)- I$I$)( I$ e)E)/  E)` I$I$E)!( H$I$e)E)%U I$I$e)E) I$I$1 I$I$)( @ I$e)E)W I$H$e)E) I$I$)( I$I$E)! I$I$E)! m[E) *z J%E)aX "@W! @( GE)a8 I$I$1 I$I$1 E)$ II$e)$!* I$I$)( I$I$E)! I$I$E)!* I$I$E)! ɐ$I$e)E) Uu&,òIe)`` mmE)!_}{ $!!/> I$I$e)! I$e)!=# e)a  $e)E)  I$e)E)x  ` e)E) 7 I$e)E) K%ے e)E)Xp2,ME)@@ A$I$E)! H$I$e)E)\X I$e)$! * Oe)!x I$@ E) uQ%)+ H ۰mE) s&f&lE)a H$I$E)$! I$I$1 E)b I$I$1 $I$E)!@ E) I$I$E)! I$I$e) I$I$$!!* $!!x $!  !@ ! $!!- I$I$$!! ! @! @! $! ,$5!a@` 0H$!  IK$!_ I$!A $I$!$I!b O$y[! I$$ !A* I$!U. I޷%)A I*E) / E)* i E)  E)!Ujj E)  I$I$E)! I$I$E) I$I$E)! MmE) DHE)aj<  E) E)!W  E)@ ò-ۖmE)@ E) I$I$E)! I$I$1  E)A@ E) I$I$E)!y E)! [. /$I$f1! I$1!+. I:I$1!WUc'lf1!z*Mm;Af1a  E)!x E)!  E)`* E) I$I$E)$!* I$I$E)$!* I$I$E)!* I$I$E)!+ I$I$E)! I$I$E)!  E) E)! I$I$E)$! I$I$E)! I$I$E)! I$I$E)$!** I$I$1 I$I$E)$!* h@E)Ap KE)Wz W(%)+` TE)A* I$I$E)!+ H$I$e)E)ث_ I$I$E)!  E) @ @&E)#'v$I$I?s ɰ`! ̙ '1`!I$I$E(Clؐ !@! @$ !p(!I$I$E(C !ꪪ ۾!!@$I$pmI$Ia IX%% }%!!@ J@ &Ȗ!(!z !m 0!!:$ ! -Y6! %N$I$I* I$!* M(Q$A!   H$H! $I$E) $H$0E) &IE) Id!d I$I$d!d  d!d Ld!d LHd!d d!d d!d -! $ij$! j$I$! I$IU !UU5 ɗHI!- @!!$ ض! d!d d!d & d!d Ld!d I$I$e) I$I$$!!+* I$I$$!! D!A $ $!!_ H$!!W $!!- $!! $!!* $!!z $$$! %!_  Ik$! h'I$!($I$ O$I !bI$I * I %) IRI%) I"@%) i E) I$I$E)! @E)!* I$I$E)$!* I$I$E)! I$I$E)! I$I$E)!ꪪ dE) I$I$E)$! I$I$E)$!( I$I$E)$! I$I$1 I$I$1 I$I$E)! I$I$E)$!* I$I$E)! I$I$E)! I$I$E)$!((۰mlE)b&  E)  I$I$E)! I$I$1 II$e)$!* l۰mE)!. E)! I$I$E)!-  e)!. I$1!]. IbI$1!^W I$$1!Uz Uk[ e) jf1!U E)! U I$I$E)!ʯ *E)a&* I$I$E)$!* I$I$E)$! I$I$E)$! I$I$E)! I$I$E)!/ I$I$E)! @E) I$I$E)! I$I$E)! I$I$E)!* I$I$E)!" I$I$E)!* I$I$1 I$I$E)$! * I$I$E)!h PS@%) I$E)Wz PE)! E)- A$I$e)E) I$I$E)! I$I$)( I$I$e)E)-_ llE)& ۶mۆ-E)@ $I$E) I$I$e)E)%WZ I$ɖ$e)E) I$I$e)E) I$I$)( I$I$E)!(( jHE) @@(E)b*j P 5(E)c E)* I$I$E)! HE)$ I$I$E)! I$I$E)! I$I$)( I$I$)( @DE)aа I$I$E)! I$I$e)E)5Uu Xmɖ$e)E)` ۶1lE)h E) - I$I$E)! )I$e)! / hB4e)%) ɖmɂ$e)%)  ۶maE) I$e)E) %$@fe)  H$e)E)X ۖ`I$e)E) ' I$[,e)E) I$I$e)E)^z/1!J믾!i)mE) I$@ %)UVX` `[E)+-  I$e)$!  I$H2$E)!* I$I$E)! E)! I$I$E)!* I$I$E)! I$I$)( I$I$E)!蠀 E)  $$!!W- I$!!U $!! z $!!~ I$I$$!! $$!!~W 6! H$!W $IM$!)$I$! j$I AI$I"! I$$ ! I_E) I"I%) ڪ ME)b*  E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)!* I$I$E)$!* @E)!ڪ E) ' I$I$E)$! * I$I$E)$! I$I$E)$!* I$I$1 I$I$1 I$I$E)! I$I$E)!* I$I$E)!( I$I$E)! E)@ E) I$I$E)!B PhE)! I$I$E)! I$I$1 I$I$E)$! I$I$E)! (E)p I$I$E)! I$I$E)! I$I$E)! I$I$E)!w E)!_ e)! Kme)e)!|oe)!^ $E)!*V I$I$E)!  E)A` E) I$I$E)$!* I$I$E)$! I$I$E)!* @%) I$I$E)!* I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)$! I$I$1 I$I$1 E) yE) Xj h%)-^ xE)/ I$I$E)!  X>E)x^W@&I$I$I/{ ɐ !%JX! @@I  믯'I "!ʪ9 ,X!J !(@4!`b*P0!`@l6!&L$I$I/ Ȗm m*@!!j DI$I! %K !!I$I$!I!I!I$I$E(C@!H@@˖!&Gn$@$I$I$I 1m!b@ L I! & H$IE)a I$AE) @L!  L!!* !Hd!d @@ d!d  $I!! H!@E) $IE) @$E) $ ,! $j!^U`$I$ ^UUUI$ A!/ IUI$I!+ ! &IE) $AI2E) K7l!, ZM$I! !E) R%P (! @ ! I$I$e) H&d!d 2IHd!d `"! M@!:  $!! @G! 2$!!W 5!~ %I$! $&I$!^UU`$I!^UUI$IR$! b I$!U+ II! $I!  $! E)!կ I$I$E)! I$I$E)! I$I$1 I$I$E)! I$I$1 I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)$!( I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$E)! hE)A I$I$E)$! I$I$E)! I$I$E)!*  E)& I$I$E)! H E) E) + I$I$E)! I$I$E)! I$I$E)! I$I$E)$! E) I$I$E)! I$I$E)! I$I$E)!* E)!e)! C2mKE)a@@۵mQE)ܰme)!W` m۶v6E)!p E)! I$I$E)!*+  E)a'( I$I$E)$! * I$I$E)$! I$I$E)!* E)@  E)  I$I$1 I$I$1 I$I$E)$!** I$I$E)!*( I$I$E)! I$I$1 I$I$1 I$I$E)$!* H E) %' E)Wz PE) _ E) II$e)E)% I$I$)( E)& II$e)E)i5U_ ۖl۶ E)a I$I$1 I$I$)( AI$e)E)5Uz @$E)A I$I$)( ۶mE) $ E)j @!B h"E)b  E) * I$I$E)! I$I$1 I$I$1 I$I$E)! ( I$I$E)! I$I$E)!(8 I$I$E)!( I$I$E)! ( I$I$1 I$e)E)5 I$@ e)!~x 6mE)! w I$n†1!W~ 6`e)!  hB6$e)E) I$I$e)$! I$H$e)E)^z6agE)( I$e)E) * @  e)E)p@ `I$e)E) % ٲmۆ-e)E) ۲-ضmE)A@-۶mE) B>o3e)!za@ mi %) `gE)- ɖ,e)  ۶m$E)P @(E)a E) I$I$e)$! ( I$I$E)! I$I$)( I$I$E)! *( @`E)  @!A $$! H&!`z lI$! $I$!WUUN$I I$I .$ I!U /I!U* &$! I$!!U I$I$E)! I$I$E)! I$I$1 I$I$E)$! I$I$E)$! I$I$1 I$I$E)! I$I$E)! I$I$E)$! I$I$E)!* I$I$E)$!* I$I$E)! I$I$E)$! I$I$E)!* I$I$E)! I$I$E)! I$I$E)! I$I$E)!  E)a I$I$E)$! I$I$E)! I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)!p I$I$E)$! I$I$E)$!* I$I$E)!* I$I$E)! I$I$E)! I$I$E)!* I$I$E)!* I$I$E)!~* E)!~ vbE)!5W `&E)!W%W E)!Up ! E)!/Z E)!+ I$I$E)! I$I$E)$! I$I$E)$!** I$I$E)! I$I$E)! I$I$E)$!* I$I$E)!  E)a I$I$E)$! I$I$E)! I$I$E)! I$I$1 I$I$E)!** I$I$E)!* b E)耀O!Ah$M$I$I/ Hb`@! JT ַ)P@I &h"@!0 I$I$E(Clؖ 0 H! 8!P>m>!AhA$I$bI$IA I$o!* !!mk@DH $ $(!eɐa!m۶m  ,X ! `!@ @! ! jٲ A (H$I$I&** Ip!? m[1`! " $I!k* I !   $C&!  $I!*  #i!A` 0I4 ! $! `$I!* $B!*  TI!  ڴ! hI!P$I$! $IU !UU+  U I!+ *I! @  pP"u!! L&! B(Zd!!`  ٖ I!+ .5! `  ! @(!@  @ !  d!d !d!d d!d $d!d  "!A@ 0@>!a h&M!$ɟ$!zUUUI!bh$I$I$ ɓ!b$I$༫I$I&.< d!!I$I$! I$I !* $H!* I$ ! $E) $A$I&! $I$! I$A$! @ $E)a $I E)  HҢ'!zN$1$$(I'I!Wխ  I!- $I$!* I H!* `$$!* !$I!* I!!  RA$ ! I$ E) $I!` &I! "$I!j $H! Id!d $HD!!(4 @5!~ ${!W$g$! ڪI^6I!UU }!A 4 I7I!  I$! $! ʨ h!!<( I$I$$!!  $! $! $! ,$!` $! I$I$e) I$I$E)! I$I$E)! I$I$1 I$I$E)$! I$I$1 I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$E)! I$I$E)! I$I$E)!  %) @ E)  (E)` I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$E)!  E)` E)! I$I$E)!(* I$I$1 I$I$1 E)A(4 E)  E)@@ E) I$I$E)!  E).& I$I$E)! I$I$E)! `E)A@  E) I$I$E)!* I$I$E)!* @E)!_  HE)! BL E)!x-U~ IE) H E) z E)! I$I$E)! @DE)A( I$I$E)!"* DE)a `r%)  I$I$E)! E)A& I$I$1 I$I$E)! I$I$E)$! I$I$E)$! I$I$1 I$I$E)$! P@E) )DP@%)| TE) E)  I$I$)( I$I$)( I$I$E)$!( I$ $e)E) I$I$1 HmmE)A( I$e)E)Wj I$A$e)E) I$I$)( I$I$E)! E)!_~ `E)/  E)B E) * I$I$E)! I$I$1 I$I$E)!( I$I$E)! * I$I$)( E)( I$I$E)! pE)A I$e)E) 5] K%ےae)!J ɑ$I$1!%^e M%ْ 1!X` I$I$E)! /c0e)b  I$I%e)E) I$I$)( A$I$e)$! * I$e)E) * #tضmE)<4 AI$e)E) 5 I$ò$E)! I$I$E)! !I$e) *$;≆E)  MP $! PfM{E) * X-ɐde)$! I$I$E)! * I$I$)( I$I$E)! E)! ( I$I$)( I$I$E)! E)!J IpE)A !d!d @`$!P !  $! $!! @!0 I$I$$!!+ X$!!( I$I$$!! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)$! I$I$1 I$I$E)!** I$I$E)! I$I$E)! I$I$E)! * I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)! PE)( I$I$E)$! E) I$I$E)! I$I$E)!* I$I$E)$! I$I$E)! I$I$E)$! I$I$E)!* P%)!  %)A@ E) I$I$E)! I$I$E)! $E)! E)a$, I$I$1 I$I$1 I$I$1 I$I$E)!8 I$I$E)! I$I$E)! I$I$E)! I$I$E)!  E)@ E) E)!(6 I$I$E)! LE)!Uz @E)!_ I &$!* HE)!+W E) / I$I$E)! I$I$E)$! E) I$I$E)! I$I$E)! I$I$E)$!* I$I$1 I$I$E)$!  4@%)`H$I$bI$I$bI$ J9 @ ) %jچ jZ 0 H8 ($ h $!bI  JX  H!II!@!z I$$H$I$ਪID.  _W 5 A`$I\ `&+ɛ !H$I$%)A(" @QV! @!$J zz 8 P$!^WaK$H$I$ପI A*+,Q!8!I$I$!I$I$!I$I$!  I$! * PF!  H$! $I*!!J $IC!!   H! *  $5!* z *&I!^m,H$`I P!U !H$I! I$H$!* xF I!!8 $$I!* IA$!* A$ E)a  E)  UH! $I!* II!* I$E) $I&$E) 06! $IR!zU' (!WzIf`pX% S$* !bn IJ! -  $$!ap !a, !A I$I$$!!  I$I$$!!( P! I$I$$!! I$I$$!! I$I$$!! I$I$e) I$I$e) $! I$I$$!! $!! @$!!^ @$!! @<$!A` $!!. H$!! $$!!^ I$I$E)! I$I$E)! I$I$E)! I$I$E)$! E)!* I$I$E)! I$I$E)!"** I$I$E)! I$I$E)! ۶mۆeE) I$I$E)! I$I$E)! PE)8 I$I$E)!* I$I$E)$! I$I$E)! I$I$E)! @@E)b@ E) %)! I$I$E)!* I$I$E)!(  E) ,E) I$I$E)! I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!* I$I$E)!*  E)b& E)!z I$I$E)!* E)!W $E)!Wz @ 0$!* %)!U^ fE) I$I$E)! I$I$E)!  E)@ E) I$I$E)! I$I$E)! I$I$1 I$I$1 I$I$E)$!* Ȁ E)46 I$I$E)$! * I$I$1 I$I$E)$! X`E)^ jH$!b8>l  PE) I$I$E)! I$I$)( D@E)b I$I$1 I$I$)( ۶%۶E)b I$I$e)E)Tz H$I$e)E) I$I$e)E) I$I$)( I$I$E)! - $!A@ E&!! E) * HE)A(46 I$I$1 I$I$E)! ȁ E) 4 I$I$)( I$I$1 I$I$E)! ( I$I$E)! I$I$e)E)%UU [%ٖ e)!BJf1/ M&y1! $E$ 6E) ` نe)! I$I$E)! n!mE) A$I$e)E)V I$I$e)E) I$I$1 KmmE) I$ $e)$! I$I$E)!e[-צE)ۺ mE) mH%$!*  E)+IDRE) I$I$E)$! * I$I$1 9E) I$I$E)! ( I$I$)( I$I$E)! H$I$E)$!  I$I$E)!p I$I$$!! ! I$I$$!! I$I$$!!+ I$I$e) I$I$e) I$I$e) $! $$!!Z I$I$$!! $!!* $!!o-  ȁ!A,$ $!!k $!!  E)! I$I$E)! I$I$1 I$I$E)!. E)!z E)! I$I$E)!( I$I$1 I$I$E)!* I$I$E)! ۶m E) I$I$E) ( I$I$E)! E) e I$ 1E)]e I$I`1%)վJ I$Idž1!0. I'I>f1$! I$I$E)! E) h I$I$E)! I$I$E)!* I$I$E)! @E)!X I$I$E)$!  E) @ E)! I$I$E)! @E)! I$I$1 E) I$I$1 I$I$1 E)! I$I$E)!* I$I$E)! I$Ie)E)UU~ E)A& I$I$E)! E)!z*  0E)!W Rk %) E)!U_U !E)!+U I$I$E)!+ I$I$E)$!* I$I$E)$!* %)  I$I$E)!* @=E)`ZȟI$hH$I$x^WI$i[b/ ODS !:*I! ۀm *6 3$@NI ,,` bٶm۰m $H( 0d, % @ @&!z^b&H$I$bII4(I Uյ @!زq 9ra  @$I$!b$@& z^r Y!*DI(H !(&˰ 0, B% !pਪh;H$(I$I$*IxI. 1 !! A@(!!!I$I$!I$I$! A$I$!I$I$!I$I$! $I$H2! jD!x^LE$!W{WXdqd(0W!}I$I$! I$I$!*D!a $$I!+ $IE)a I E) @")!A@ $I@!A I H$!* H$IE)a d!H&!* H=!^ $JK!Wh&!^^!%U!^ի MJ$!W* "AH!k  ! I$I$$!!*  d$! I$I$$!!*  H!  A$!!@  ! I$I$e) I$I$e) $$!` $!!] $! $!!׽ $! 4! H! $!! + $!!ܿ E)!U HE)!U H E)!U^ 9E)*~ XE) $E)!*U @ E)ap I$I$E)! + I$I$E)! I$I$E)!  I$IE)! I$e)!* I$$$e)$!uܶ@re) . I%ۆ1E)U*J I?$1E)J I$ 1!J I$$}1E)Հe I$O1%)Ue I$I-1!jJ I$I1! I$I$E)!* I$I$E)!* E) '( I$I$E)! I$I$E)! I$I$E)! E) I$I$E)! E)&( I$I$E)! I$I$E)!@* I$I$E)! DE)а I$I$)( I$I$1 I$I$E)! E)! I$I$E)! I$I$E)!(* $E)b I$I$E)$! I$I$E)! HE)!Uz @E)!W  !$$! @I@&E)! U E)!+ I$I$E)! I$I$E)$!  E)A@ E) I$I$E)! I$I$1 I$I$E)$! *( HE)( I$I$E)!* E)!* @E)@ JE)n H%)a I$I$E)!. I$I$E)! I$I$)( I$I$)( I$I$1 @ E) I$I$1 I$ $E)! ömmE)  I$I$)( I$I$)( I$I$E)! H E)!_~ 0@ $!( *  ME)6 I$I$E)! / I$I$E)! I$I$E)!  I$I$E)! * I$I$E)  I$I$1 I$I$E)!* I$I$E)$! $B$IE)6i E)A. I$I$1!5zJr%9\1!p f1!\ @`e)! I$K%e)E)ꨠ I$I$)( möaE)! I$I$1 I$I$)( `q E) I$I$)( PE) 8$  e)$! *$C$ E)` j%! *x ۰ nE) ) H%ɒlE)! I$I$E)! . I$I$1 I$I$E)! I$I$E)! I$I$)( -E)A I$I$E)! I$I$E)! I$I$e) I$I$e) !$ $!!w $! $! !A$!* $%!x $! I$I$$!! $!! E)!U E)!U $E)!U*W  'E)*W IE) $E) U  %)!&( I$I$E)! I$I$E)!* I$IE)! I$Iae)! I$-e)$!  I$e)!I۶mf1. I$`ۆ1E) J I'$1E)~. I$Ж1! H$I$E)!@rdC&E)Ap $I$f1$!e $I$1E)]]e I$1!*e }I$1!e Iɛ$1! e I$$1!J I$s1$!נJ I$I1! I$I$E)!+ I$I$E)! m۶m"E)!h@ E)! I$I$E)$! HE)b(( I$I$E)! I$I$E)! I$I$E)! @E)( I$I$E)! I$I$E)! I$I$E)!  E) I$I$E)! I$I$E)!  E)a@ E) `0E)!WZ $@E)!UU_ eӆm!  $E) /U  E)A.& I$I$E)! (E)`ȏI$ H$I$I$I$5- 1!BH  - H*X% *0m  $!b$M( i-ТJ,۶a P'!~WHi&aH$I$,ʲI$ ( &}$ WUu(! H( 6kd>ɂX ۶!2@@ =  IE۴*h6m۶0,B&M0 z^u$M$a( I$I(  $KB I!! A( !b@`**!Ac $HJ!<4 !I$I$!@$!`` DH$I!& Ah@$(!a+ %O !^յIq!@!I$I$!!  !j!I$I$! A$! @$I !* I2L$!* H$I!* I!&!* H(=!^ $IA!^ MzJP!׭x $$ !rW* I5I@!  AIE) d!d d!d $d!d $ $!!^ XU! I$I$$!! *( I$I$$!! I$I$$!! * 0$!  T! $$!!_ @B$! H! H $!  I !!  $!I!@ 6!! $! HO$! >Id$!a $I" ! $!* I!U IFP$!( $! @$!! ^ 0$!! _ E)! UU I$I$E)!} E)!*WU HE)!U_ IE)!U HE)! MѴm۶E) & @$I$E)! I$I$E)!*  HE)b,4  I$E)! I$I$E)!*`qf1A J 6$I$1$!e $I$1%). ]I$1$!e I2I$1!J I?&$1!e I$1!*e I$I1! I$I&f1$! I$I$E)! I$I$E)! HE)b<4 I$I$E)$! @E) @ E)! I$I$E)! I$I$E)! E)@ E) I$I$E)!. I$I$E)! @E) I$I$E)!* I$I$E)! I$I$E)!*  %)  E)!^ ֵE) k5 !(⊠ m۶E) $@"AE)Z E)!( I$I$E)$!+ I$I$E)!* E)! h @E)! + I$I$1 I$I$E)$! H%) I$I$E)$! I$I$1 @E) I$I$E)! \@%) E) I$I$E)!(( I$I$)( I$I$1 I$I$1 I$I$)( H$I$e)E)h I$I$)( I$A$e)E) I$I$)( I$I$E)! @E)!_~ $M$!  H$! , *E)!& I$I$1 I$I$1 I$I$E)!* I$I$E)! I$I$1 I$I$E)!*(` E)A 4& I$I$e)E)5UUU X-ٖle)!  I$I$e)!? H$ 1!x% I$I$e)! 7  e)! I$I$e)E) XmmE)aЀ I I$e)E)% I H$e)E) 6,{tE)!$ H$ $E)$! I$I$E)$!( I$I$E)!( @, e)$! ۆmE)x蠀 X!% ۰mܖmE) ) H$A e)! XE)a8 I$I$1 I$I$E)!( I$I$E)! I$I$1 I$I$E)! ( I$I$E)! HE)!_U $!!u  !H t I$!  I@(! ` m0! P%@'I!AР '$!_ $!  iI$! $IM!) $+!!߯ O$!  IW! I ! H!+ E)! E)!U E)! $E)!W E)! U IE)!UU E)! U E)!@H $I$E)! I$I$E)! E) @@ E)! PD !  @2E)!U E)!U I$I$E)! I$I$E)! E)) I$I$E)!* I$I$E)! I$I$E)!&ݶe)aڪJ I$1!Jo1!J I$7$1!. I$|r1$! I$I'f1$! I$I$E)! I$I$E)$! ȀE)A&, I$I$E)$!ꠠ* I$I$E)!+  E)* E)! + I$I$)( I$I$1 I$I$E)! I$I$E)!* E)@ E)! ,$ I$I$1  @(E)@` ܘm E)a i E) R"II!Z  5E) z 'M$E)XVWUI$I$bI$I /xɐ5,3@pK$A   * *:4kd> I$I$$!Búht/ ض  *IdI`!ң' jZVH$H$ $(N 88NDA4I  I$I* ĘIx mn IDD!& hd>` mAɘlظ! !0 M6:E$I$(I$I@(y_!u_ߵ@$A!!P bؠ@ !I$I$E)a& A H!꾮 'I$I$! !4z!zWO@!խZVx! !V!@!,!e0! !!@@! $I& ! !I$I$! $ )!* I>!_ 9N5A!~ UAx!x Ü$ !Xׯ* $I!* H! Hd!d 0d!d `d!d  E) d!d I$I$e) I$I$$!! &$!!**W  $!!U $!!xխ I$d!d d!d $$!!_ )!` $! HO$! $I! k$+ ! I! IR ! mI! $! I$!!U  0l! $$!!k]  $!!}h $$!  $$!! 0$!!_ @"%!A I$I$$!! I$!!U I$I$$!! H$!!W I$!!U I$!!կ $!!j   !   @!A  $I! @ H%) E)!U E)!] I$I$E)! E)( I$I$E)! I$I$E)! I$I$E)!* -[mE)`(J&f1A)J?1jJ1bJ I$1$!W+. I$I81!ߠ I$I$E)!+ I$I$E)! @,E)ap I$I$E)! I$I$E)! @ E) E)!4 I$I$)( I$I$1 I$I$1 I$I$E)! I$I$E)!* 4@E)bP I$I$1 I$I$E)! I$!  NL:$ E) mӶm $!ꪪ  $IE) E) I$I$E)$! I$I$E)$! I$I$E)! I$I$E)!* I$I$E)$! I$I$1 I$I$E)$! 9%)A I$I$E)$!** I$I$1 I$I$E)$!  E)A I$I$E)!. I$I$E)! I$I$)( I$I$1 I$I$1 E)a I$I$1 I$I$)( I$ $E)! I$I$)( I$I$)( E)! $!  hQl!( (E)b  I$I$E)! I$I$1 I$I$E)!* I$I$E)! I$I$1 I$I$E)! I$I$E)! I$I$e)E)UUU @ e)!  I$I$e)!?e K'91!|%lmE)  ( @ e)$! I$I$e)E) I$I$)( I$I$)( ۰۲mE)A@ XemE)! H%Ide)E)% 6lۘlE)A ۰mٖmE)a @$`e)$! ,E)xx ! I$!/ 6`e)!++- I$@$E)! $E)` I$I$E)!  I$I$E)!*( I$I$)( I$I$1 I$I$E)! ( I$I$E)!p $!!ׯ %!^ R$!  I$! $IK!* I$$!* It! I*@! @ I!!J ! $$! * $! @$!!^  $!  $!!_z $!! $!! W !A $!!~ !$!!տ $!!~ H$!!W I$!!U $!! @H$!h , !A` $$!!W I$I$$!! $!!~ $!!Y,* I$! $$!! $! LE)!  E)! 0e)!U @ E)!} E)! I$I$E)! I$I$E)! I$I$E)!/J 1$I$1$!. MI$f1!~ I$$1!^ I$Ib41!^ I$I$E)!+ I$I$E)$! I$I$E)$! I$I$E)$! * I$I$E)! I$I$E)!+ I$I$E)! I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)!* I$I$1 I$I$1 HE) R%H$!ahI$I$pI$I$ *BD63&`XM)P$!!Hn4A&$@@'!P6`D I* ,Xd `0`m  $R& jz^NX"$ND$ N 98 s \% )Z4hҤ(I$@ R'p 6`   Ȑɖm۶I$H$I$ 8I$i& M$I$( I$I$(:!M`  I   ! !* 'I$I$E)a$!` A! !ꪪD@ =!^ p !*IuA!h. iAP!) y$ !* MJF!A (( $IE) " !!@ PeP"I!A 2 Ad!d !d!d Ͱ!( I$I$d!d 0d!d `d!d $I!@ $I!  !!  d!d &!^ I{$! H$I!b O$IV !j* ID!A+ I&H!  !  d!d d!d I$d!d d!d `2! 0@! @0$!!] $$!!z] @!@ 0E!  $!!  I$I$$!!** I$I$$!! I$I$$!!(* I$I$$!!( I$I$$!! $! $!8 I$I$e) I$I$e) I$I$e) I$I$$!! I$I$$!! I$I$$!!  $!! I$! H$$!!WW &$! %)!UW DE)!] E)!U E)! E)! I$I$E)!ʪ* I$I$E)! I$I$E)!*. $I$f1$!+. I$1$!+W I&I$1!W+W I$sf1$!x  I$I$e)! I$I$E)!* I$I$E)$!* I$I$E)$!耂 I$I$E)$!* I$I$E)!* I$I$E)!. I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$1 I$I$1  E)b`` 6lE) ̅ a.$ IE) E) I$I$E)! I$I$E)$! * I$I$E)!* I$I$E)! I$I$E)$! I$I$1 I$I$E)!*  E)!*j PE)A( I$I$E)!( I$I$E)!.  6l;E)! o E) I$I$)( I$I$)( I$I$E)! I$I$)( (E)` @@E)` I$I$E)! I$I$)( I$I$)( E)!~   $! (  4A!`(  E)!  E)  I$I$E)$!(  $E) @ E)A I$I$1 PE)A8 I$I$E)! * I$I$e)E)__ @$e)!  I$I$e)!?xe Hr$11!X`  a۱mE)! -|ۿe)  ۶mۂ9E)` I$I$)( H$Ie)E)(5 I$I$E) I$Y2$e)E)VR` I$A E)! I$I$)( I$I$e)$! * K%Òae)$! `9 `E)^z m$! * -E)C ۶mlE)( E)@ E)a I$I$E)! ( I$I$)( I$I$E)! E)  P%@@E)X I$$! IJ!+ $I! dd!d @&$d!d @d!d I d!d &d!d UP$! L$!! $!!ժ $!!* PL! $! $!!- I$I$$!!  I$I$$!! I$I$$!! I$I$$!!  $!@ $! $!  I$I$e) I$I$e) I$I$$!! I$I$$!!" $!! I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!! P $!A I$I$$!!( I$I$$!! E)j*  H%) E)! I$I$E)!*__ @E)J   E)  I$I$E)! @$E)ZP E)!/z I$f1!W f1!x+ I$M"e)!x E)!- I$I$E)! I$I$E)$!* I$I$E)! I$I$E)!. I$I$E)!* I$I$E)!8 I$I$1 I$I$E)! I$I$E)!* I$I$E)!*  @$E)`XVI$I$I$I$?/I$I ƍ<:xp؉H I$!BI @$AI۰m *H98@(b;aB(\%$A @R#&!rl'H $, Hĉ$ rĉ^5 6X۰m۶-*,%rX 1`$$A`` J% dI,b dB'v 'p\pH$AN"'JD l*Iɐ/نml H ,Xd!ɐ! !`%!D*"b@@ !I$I$E(C`G!z^ LK&!ץi\ `҄TI!\׽@ !꺯0ض %!d0!!I!!&.l!)= A`B!I$I$!  H$&!*^ JO !!* OAR! p ӤI$!X׽ DJH!A 8 [y۴m!*   E) $I@$! $ A!  *$!!p d!d Hd!d  $! $I!* I$0E) $!!J  IB!  '!^  %M$!ں $ID! I$I% !+ IJH! ,a$I! )J!!  d!d  )!@ I!  d!d ˵! $, a$!!U $!! I$I$$!!  !a@ $! I$I$$!!* @<$!Ap P$!8 I$I$$!! $$!! ^ I$I$$!! $$!!_ $!!u $!! ! I$I$$!! $!!k $$!`  5$!@~ $! $!! $!! I$I$$!! / I$I$$!! ( I$I$$!!* I$I$$!!* x!  I$I$$!! I$I$$!! I$I$$!! J%) E)! I$I$E)! E)!* %) $ I$I$E)$!* E)!*nj E)*  /e)! O?e)!\-~ I$@e)!+ m۶ ;e)!x E)!*- I$I$E)$! I$I$E)$!* I$I$E)! I$I$E)!* I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!* I$I$1 I$I$1 I$I$E)! k,E) Ĵ$!  d%)a E)! I$I$E)$! I$I$E)$! I$I$E)!* I$I$E)$!" +  E)A   E)@ E) I$I$E)$!* I$I$1 E)!x EB$AE)S ضŏ1 E)A I$I$)( I$I$1 I$I$E)! I$I$)( I$I$)( I$I$E)!*( I$I$)( E) I$I$E)!  0E)!U_~ LӸ)!  E) * 4E)Ann PE)  I$I$E)! I$I$E)! I$I$1 I$I$E)! I$I$E)$! * I$I$E)$! ** H$I E)! I$I$f1!5W^ex'1!Ђ c ۶%E) " hB6$e)! I$I$)( I$I$)( H $e)E) E) I$H$e)E)5\x I$I$E)! I$I$E)! I$e)$! * I$@$e)! O `%)! V) E)+ AۢmE)! I$I$E)! . I$I$1 I$I$E)! E)! I$I$1 I$I$E)!( @E)!@  IE) I d!d Pd!  dBd!d ")!b@ !a  d!d I$I$$!!/ I$I$$!! Gh!A8 I$I$$!! I$I$$!! J $!$( )$! I$I$$!! $!! I$I$$!! $$!!U $$!!] @ ! @ ! I$I$$!! $$!!^  @!!4 X$! I$I$$!! `$!! P!A  $! $$!!Հ  ! 4R@!` @!$!+ $!!/ I$I$$!! I$I$$!!  $! E) I$I$$!! I$I$E)! I$I$E)!z  E) I$I$E)! I$I$E)! I$I$1 ,E)a` E)!5z @I$e)! _ 6e)!x mv e)! 4 E)!` I$I$E)!"+ I$I$E)!ꪢ I$I$E)!? I$I$E)! @@E) E) @$E)`XH$I$bzI$I$w}7I$I 1`( `pDI($IH$$!!$$!BHP!I$I$$!B ɒ-  $!!M&I*89pIIS4 I (. H$I6. IĉKU5lX$H$!B$H$!! H$I B"  `يC%$H$I@$!BJ$R M4E$IЙ&  M)$,\PR U3/ƀDAa%Kl!ɶm   X!ɖl  L $)!~ +M !^% xҜ!AO !յI ($!aI@!ꪪ(p!H  QP$ a P(!ض! 0!@ #$ A` l!y_5 MD!!* II!bV DID!! &  $I$! P"E !a HBd$! $ !   A@E) $! ` R @!p $H$!  $ I! $D!A4 H&LHE) $ $5!z {$!$I$* I$I%! III!U $Ҷ !+ !E) IH&E) d$! $IH!* $d!d  e! $! I$I$d!d I$I$d!d I$I$e) e) 0$!  $!!_ D$!!~] $$!!_  @@!  $!! (!  !  I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!!/ ʡ@!$ ! @$!!-  @!@ !  2$!!_W H!8 $!  $! $!!^ I$I$$!! I$I$$!!+ I$I$e) E). I$I$e) I$I$E)! I$I$E)! hE) * I$I$E)!* I$I$E)! I$I$1 I$I$E)! E)  )$I$e)!z_e)!-_ m۰ce)!x E)!- E)A I$I$E)! I$I$E)! I$I$E)! @E)@ E)( I$I$E)! I$I$E)!*  (E)` I$I$E)$! I$I$E)$! * E)!z* M5%)A4  Tm! ) PE) I$I$E)! I$I$E)$!* I$I$E)! I$I$E)! I$I$E)$!* I$I$E)$!* I$I$E)!* I$I$E)$!* E) 8 I$I$E)$! I$f1! . I$G1! I$I$E)! E)@ I$I$E)! II$e)E)5WW @E)!8 I$I$)( E)  I$I e)E) I$I$1 I$I$E)! LE)!UWIM$ /  E) ) I$I$E)!  I$I$1 E) & I$I$E)!* I$I$1 I$I$E)!*p I$I$E)! I$I$e)E)5UUۦe۶aE) eI$I$1!5W^eN'1\‹ 6`e)!? H$ےae)E)p I$I$)(   E)  I$I$e)E) ۶mۆdE)b $I$e)E)^ ۶2lE)` I$I$E)! I$e)! .> c۰ E)!x m&P!!*`  PE) ) H$ E)! I$I$E)! .* I$I$1 @E) Р E)  I$I$1 I$I$E)! ( ,@E)Ap LE)!U^ R!8 I$I$$!! I$I$d!d I$I$e) I$I$e) $$! * @&$!!U HH$!!W  $!! $!!U  !,$ `$!!W %! ` !b I$I$$!!/ I$I$$!!/ I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!! $!a@ PH$!A  $!!{{ I$$! Z%!!0 v!+  "I!@@   @!  $!!*޲ I$I$$!! `! `$!!V  $!!  I$!b $!! @$!!+ $!! I$I$e) I$I$E)! I$I$E)!ꪪ %)  E)* E) E)! I$I$E)!* I$I$E)! I$I$e)!-W @ $E)!XZ E) E)!% I$I$E)$! X %)  I$I$E)!ʪ  E)` h$I$%)}I$I$w}I$I$'   5 )B"'N @Am۶bE[-Z $!!hڴI$!!@A$!B$$!BMiQ$!!H@$!BFlÌ1 `pI$t℉ (@$I$(. m$I!A6 @$I$I$!!$H$!!)P$!BI$I$$!B$H$!!)P$!BI$I$$!B @$$!!I"A$8IA$!Mi&!Ath& HI$!B I,) ,ٱK 6 $ $Kl!ɶ!۶ ېaÆm :!A.=!z$Is ! j "%əS!PA T![`۲l ؂! @{,QA *$H$I!$  j 7 a`  H!T!@ !&!~_ d! * 5K'!Azz J$A!խ !A$I!+ $I$ !* I@$! $I!& I !*  $E)  ! B#H$I!` "1.! ` H$I! $$ A2E) J A$!4 &I$!I$I !+ I\@! $IP.U! $I!* I$!* B+%/I!AP d$ A! IH! @G! $IR%!! Id!d PLH! @&d!d dd!d 2!d!d  $!!WU~ L@d!d @$!!_ I$!! կ $d!d @d!d $! d$! i$I @ *,"I!!@ H! MM $!  ,RE)zz жm%)  E)!UU I$I$E)!UU $E)!WUU E)!UU  ikE) 0I$! @I&$! ")!@ N!! $$! HJ !<, E)! $!! P!8 $!!z* ! $!!Up* I4!b  ! "$!!w $!!= I$I$e) I$I$E)! I$I$1 E) I$I$E)! %) 6  E)! I$I$E)! I$I$E)!* @E)!z @E)!-V $E)!X `0E)!+X E)! - @E)A@  E) E)!4 E)@ E)! I$I$1 I$I$E)!* I$I$E)! I$I$E)! I$I$E)$! E)z -@%)Uwz  e%)+U E) I$I$E)! I$I$E)$!* I$I$E)! I$I$E)!. I$I$1 I$I$E)$! I$I$E)!+ I$I$E)$! I$I$E)$!  I$I$e)!/J?1 -vlǶ ۆ1 I$I$E)!( I$I$1 I$I$E)! ( I$I$E)! E) I$I$1 I$I$)( I$I$)( I$I$E)! x iE) -i۴! * E)! / I$I$E)! I$I$1 I$I$E)! I$I$E)! * I$I$E)! I$I$E)$!* E) I$I$e)E)%UU I$E)!`e II$1!%W_Jf1 6`e)! / I$C-e)E) ó1۶mE)bp I$I$E)! ( cm6lE) I$I$1 ꪪ I$I$)( 4@E)p PE)  A-ɐde)! . dC$E) !/? mnE)! -#d6hE)($ I$I$E)$! I$I$1 E) ` I$I$E)! I$I$1  E)  I$I$E)!  I!  $d!d LHd!d @&$d!d  C$!!Uբ_ !@$!!U  Hd!d $$!!_} @0d!d @0! $$!  L$!( J6 $I  ЀDz%!!( m$! IE)* DJE) ME) E)!UU  E)!UU E)!UUU `E)!UU @&Mm$!к I$! [#E) lE) I$E) ~UU &E) M@mE) д0E)* l E) iE) ۶! n! JH ! T I$I$E)! I$I$$!! A$!!ݰ Ƞ$!($ E)! I$I$E)! I$I$1 E)@ %)A XE)( I$I$E)! I$I$E)! I$I$E)! I$I$E)! E)!z  E)!%W $E)!^ E)!% I$I$E)! $H$%)`I$I$zI$I$ I)$!!"%J$ $!AIdI,?@M$!!M$MҶ mZ4$!!H$A$@E۶I$ 8`(* ``I$y$I .A$I$ .q$I/d@ mۢm$!! 4h$!! Ph۶$!!I$I$$!B$H$!!)Ph۶$!!H$!B h$I A I A$a I4Av $II $!Bm[ 4@I( $!b #'K $ILb( lض  P!~V O.%!U%IZ P uJ!Xֵ$ħ!-P4@0`@h $I" @ ! lQ!j@@$I!)ذ-K!I( !&.&O$!A IAP!5p XI!\ս !I$I$! I$ $! A$I$! II$!** LI$I! & $! $I$! H$I ! II$!* $ $)!* @ғ$!xU$I$! I$UA! II I!խ $I ! IA$!*"  H$! $I! I$! !@ E) I$IE) Id!d H I! @H!b  $ ! I&!  $E) $Id!d I2! $ $! I$! mH:! дq!  ! L@! I$! ! MD$!!&. x&I%)a( imE) &LE)!UU $IE) UU IE)!UUU J$!A4, *$!A I$I$E)!UW 2LE)!UUW $aE)!UU $IE) UU @LE)!UW M&@E) I$E)!UU -E) [lE)_ m&E) E) vM `E)* ܶ-%) f! @ !`  $! I$I$$!! H$!!W $$!` HE)! I$I$E)! I$I$E)! I$I$E)$!* H%) $ E)` E)! I$I$E)! I$I$E)! I$I$E)!* E)!Z E)!Z  E)!`-^  E)!- I$I$E)!/ I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)!<  E)  I$I$E)! * I$I$E)! * I$I$E)$!*  E)!B E)^ 6j!bj @Ig%) I$I$E)!- I$I$E)$!* I$I$E)!  E)B E)A  E)!jh pE) * I$I$E)! I$I$E)$! I$I$E)!. e$I$f1$!5. I$N&1!p I$I$E)$!  I$I$E)! E)A I$I$E)! I$I$)( I$I$E)!( I$I$E)! I$I$1  PE)! h E) 0*! zo  HE)! + I$I$E)! I$I$1 E) I$I$E)$! * I$I$1 PE)A I$I$E)$!(  I$I$e)E)%UU ؆m۶!E)@J??f1 *J?1 `e)! - I$H%e)E)` I$I$)( I$I$E)!  I$I$)( ȀE)A$, A$I$e)$! * I$I$)( I$I$E)!( KmE)4 @E)z  m&!!j  mE) 0E)(( I$I$E)$!  I$I$1 E)& I$I$1 I$I$E)! I$I$E)$! HE)!Wzj Id!d $ d!d  I$! $d$! I۶5! $I4!e!! I۰! m6!* ")!@ I%)A I%)! IHE)!UU $IE) UU $IE) UU  ! E)j )!A E)" E)!UU @&IE)!*UU $LE) UU  E)!UUj @$!@  $!A  I$I$E)!  E) j %) [0E)_ m$! t$! 0 mE)+ E) m- E) r%)* 01$! $! $!!*5 I$I$%)! @@($!` PE) I$I$E)! I$I$E)! I$I$1 E) I$I$E)!ꪪ I$I$E)! I$I$E)! I$I$E)!ꪪ hE)A  %) @ E)  (B$!GpI$I$I$I$/II$ 0 4@$ II$ $!!E&M!A$!!(m6!@hIAI$I$$!!ɐ ,//@$I$I$O!3$H$b`hI$I   $!!Hi۶$!! $@$`IAI $!!$H$!!)Zh&mm&@-6i$!Iv I"D$!IAbCI$I** ۰ 5h (  @$!bEQ 4pĉ!$I$!BJ%Q$AB h!z^ Oj‚&!5r\HD V@m6H3,,kt.Maöm.H $!b I+6 ~rD1I m۶e )=!b!W mY"$!{ S%ϛw!aҠIu !I$I$!I$I$!.!!jo! I$IE)a! $Ad!*I$I$!$ ` $! j$!`$I$  I$@A!UU%  %I$I! A$I$! ! $HL! R"% $ 0H$I!+ $IE)a IE) $! 2I!* `$ ! I $!  2IH! * `$$!* `k&!  Ij$! $IR$!I!U$I |$$ WU I^Q$!U ɶm! I$$! $ $! IH!* I@!* I$I$$!!+ I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!!* %@! I$I$$!! 4$!`` $!! I$I$$!! I$I$$!!  HE)b I$I$E)! E)!^_ E) i E) &E) -$!  [ @E) ˴-E) 1 h%) &%)*  t`%) f$! n$! I$I$$!! I$I$$!!  $!a I$I$E)! I$I$E)! I$I$E)!  %)@ E)! I$I$E)!ꪪ I$I$E)! I$I$E)!  %)A@ PE)! @%)! P d$E)a* I$I$E)!/ I$I$E)!- I$I$E)$!* I$I$E)$! HE)( I$I$E)!  I$I$1 I$I$E)$! I$I$E)! I$I$E)$! I$I$E)$! * E)!z &_A!aZ  %)+W E) I$I$E)! E) @%) I$I$E)$! E) @%) I$I$E)! I$I$E)$!* I$I$E)!b. !I$1!/JI$H>1b E) I$I$1 I$I$E)!( I$I$E)! I$I$)( I$I$E)!*  E) E) I$I$E)! &IE)bII$!*  oE) * I$I$E)$!   @E) I$I$E)$! I$I$E)$! hE)(<( %)  E)@  ٖmE)   m6lE)e91/?x&1!WTX ْmɐ$e)! m۶hE) I$I$)( I I$e)E)ŵ I$I$)( I$I$E)!( I$I E)!B E) ۰m[E)A Р K$[!e)!ࠀ h%hE)^z P E)++ A E)! I$I$e)! I$I$1 E) @E) @ E) I$I$E)!* I$I$E)$! I%E)\@|$! >IW! $ ! O\!Uջ II$ ! ٶm! mӶ`! $A\! - IB!  d!d I$I$$!! I$I$$!! I$I$$!!* I$I$$!! I$I$$!! I$I$$!! I$I$$!! *! I$I$$!! H$!<4 I$I$$!!* I$I$$!! @! $!! $!!uw $!@ $! $! I$I$$!! I$I$$!! I$I$%)! E)! E) $E)R { E)  m$! 1%s$! sc@$!  %) E) I$I$E)! I$I$E)! I$I$E)!* h$! I$I$E)! E)! %)` I$I$E)! I$I$E)! E)` ",E)jH$I$!w}I$I$>I$I iIR$ $,H$I$(II$$-&@$ p A!A$!!E$M@bm&mS@S$M$!AI'I @( O!+ IJڣ!5^ x)UJ!T1 !O A&&$!@!I$I$E)aI$I$!  IH!A/,!b* ! !@`$ ``$I$ApI$I$AI"(T! j) I$I!$!H!* $IhG!8I$I$! %A !$ I$!*  $I$! H$ ! IL$! $ IE) m 6!  IҶ:! $I$!_>I$$!bj$IR !bI$ ߿( Ii$! i۶! j& ! 0 ! H!b $!!* $!!u h $@!b C$!!]  !@ !a &$!!W I$I$$!! H$!!W  !A@ !  I$!!վ I$I$$! !a $!! I$I$$!!  $!! ! $$!!U $@$!! _ $!! H$!!4 h$! I$I$$!! I$I$$!!* I$I$$!! I$I$$! ( HE)!U  lE) vE)* 4k @%)+  @$! <!   q5%)/~ nE) E)! I$I$E)!/ I$I$E)!ꂪ $! @ E) I$I$E)! I$I$1 E) I$I$E)! I$I$E)!  E)&8 @%)`  $E)!^* @ $E)!^y^ HE)!%W} I$I$E)!- I$I$E)$!* I$I$E)!* I$I$E)!* I$I$1 I$I$1 I$I$E)!* I$I$E)! I$I$1 I$I$E)! * DE)^z K=!%WX I%) &. I$I$E)!  E)!j %)  @E)! I$I$E)$! I$I$E)!ꪪ I$I$E)! I$I$E)$!* I$I$E)$!ꪨ.?O1! *f1  E)bB E)2 I$I$E)! I$I$E)! * I$I$)( I$I$E)! I$I$E)!* I$I$)(  E)  h5hE)^ZzI$I$A Zz ioE) E) I$I$E)$!* T@%) I$I$E)$! HE) I$I$E)!* E)A & $I$e)$! ** I$I$E)!^XJ I1!c%.f1om E)! I$I$e)E)~ I$I$E)! I$I$)( I$I$E)!  )E) نm۶mE) I$I$E)! I$E)! *( I$H$E)!x` 45{--!? E) + I$I E)! I$I$E)! E) I$I$E)!( I$I$E)! I$I$E)! HE)< @@E)` II!b* I$! $A!% %!a` $!!w $$!!^ $!! W  $!%(( L$!! U P!! I$I$$!! $!!*" I$I$$!! $!!/ P&@! ؠ H$!!W $!!  $!@ $! $!! $!!z $!!<  ! I$I$$!!  $!A@  $!B 0E) I$I$%)! I$I$$!! $!!j $!!-* H$!A(4 J$!!,$ @E)Z* I$I$E)!+ I$I$E)!  @TE)bа %E)^  j @E)_ u! NP#@! x  E) W E)! I$I$E)! @E)j P$!  I$I$E)! I$I$1 I$I$E)$! I$I$E)!ꪪj P$J$!AиI$I$kI$I$/ Ii[4$!!@$I$&I$I!AA$IA$ $$!!MS4m$!A  A$!AIM$!!4h$$!!I$I$I2A$ I I$I)" @&I$ `A A$I$I$A 0@$!!@$H!A  A$!A $!!m[4m$!AI$A$((ɑA& /I4I$IH$II$I$*$زm6說m۶m  $ , *B۸mc[%0` M!V m.=߶!_R\ɖaÈ$HY   8,p-[1`@ EҦi ۰5B"&}J!!` `ٶbmӤM(( &!_ g!_- *5J!xI&T" rlٰ! !@$$ Ap!I$I$E)a   ! $I! !x A (@@$!zW`$ɓ$ ^UUUI$q!UU A !`!I !l0! ! h*I$I!aI$I$!$! $I&IH! IA$!*  $I! $I!!  II$! &@j$!W$I UI$) կ IW$ ! iI$H! I! J $!(  AhD!( $$!!hU $ ! )! @  I!   d!d !$!! I$I$$!!((, I$I$$!!( I$I$$!!( I$I$$!! I$I$$!!  !@ ! I$I$$!! I$I$$!!  I$I$e) I$I$$!! $!A I$I$$!! I$I$$!!  I$I$$!! P!a I$I$$!! I$I$$!!( $!&  $!! I$I$$! I$I$$!! I$I$$!!  $!!'ר (@$!` @$$!ap %)!} E)a * I$I$E)!* E)!^Jj mi%)! xE)z  @$9!-z 4 !+ 0v5%)/~ E) I$I$E)! I$I$E)!z J $!!$( I$I$E)! I$I$E)! I$I$E)$! I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)!*  E)!^* H$ &$!,  &E)! U I$I$E)! I$I$E)$! I$I$E)! I$I$E)!* I$I$1 I$I$E)$!* I$I$E)!* \@E)b @E) E)x I$P@E)UWZ pɐE) U E)!袋 @E) J %) @E)a I$I$E)$! I$I$E)!ꪪ I$I$E)! I$I$E)$! * I$I$E)$!. ɑ$I$1!/_. I$A 1!Ws I$I$E)$!* I$I$1 I$I$E)!B E) I$I$)( I$I$E)! I$I$E)! * I$I$1 E)!p M&XHE)~IDI$$!b  VE) /? I$I$E)!• ,E)Ak  E) * ` E)! I$I$E)$!( E) (/ I$I$E)$! A$I$e)$! * 6hE)!W\x`Jv> 1!Pa5 mѶq۴E) /5 H$e)E)` I$I$)( I$I$1 I$I$)( I$I$)( I$I$1 I$I$)( I$I$E)!  E)! @E) LKe! /> mE)! - I$H$E)! I$I$E)! I$I$E)$!** I$I$E)! *( I$I$1 I$I$E)! I$I$E)! E)!]x 4@"I!` aB$! H!X ! ! $!!U** I$I$$!! I$I$$!!  I$I$$!! I$I$$!! I$I$$!!(. I$I$$!! $ $!!Р I$I$$!!( I$I$$!!* I$I$$!! I$I$e) $!@ $! I$I$$!! I$I$$!! I$I$$!!(  $!! L$!!U $ $! @&$! $!! } I$I$$!!ʀ+ I$I$$!! I$I$$!!( I$I$$!! I$I$$!! I$I$e) @E)!_ޯ I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!*  %)A@ }E)  j@%)_ =V!?X P +%) NE) I$I$E)!-  %)a@ E)* I$I$E)! (@&%)`pI$I$ b*I$I$7/+II&@$H$(I$I$I !AH$I$a I  A$!AI$I$!AI$I!A)P4@&I$I$(IH)r$ ?rH$I$,*II"( I$H$AI $!AH$  A$ $H$!AI$I  H$I!A I$I$I$!AI%!?H$I& Im$A $I$!!I $*HI*** (`%J$IA<H * 66, @ k۷ɐB!5  %J|!P,=@ېmöl*˰aò%.  $I  8pXd `A۶I$ X d ɟ A% O 5! 6.H$ !z!UW H  ذ%! 0! I$I$E)a S!A LR& b@ !黯 &!^'I'!zWUɟ$I +IH!խ$ !%!m 0!!I$I$E(CI$I$E)a!$ !  I$I! H$I$!*  @j!!( $$!_$I$I$I IP$ ! IH! $@! 4  E) &!m! @$I!  $! E) $! R$! ` $ !@ !! I$I$d!d I$I$$!!" I$I$$!! $$!!._ D!A  $!!*_W @D$!А  $!!U I ! @A! @2@d!d d!d $$d!d $d!d $d!d $d!d d!d d!d $I$!!UU $!!_ I$!!U @$!, $!!, $!! I$I$$!!.* I$I$$!!/ I$I$$!! I$I$$!! I$I$$!  E)!z E)! I$I$E)!* I$I$E)! I$I$E)! I$I$E)! E)!z* L %)! d E)z j*$5!-x NRSI%)+  dE)* E) I$I$E)!+  E)b*& I$I$E)! I$I$E)! I$I$1 P %) I$I$E)! I$I$E)! I$I$E)! E)!j !$E)!UWZ  a$E)!UUU @, E)ap I$I$E)$!  E) @ E)* I$I$E)$! I$I$1 PE) I$I$E)! E)( I$I$E)! j4 E)_Zh I!  - E)  E)! E) @%) ` E)! I$I$E)!ꪪ I$I$E)! I$I$E)!* I$I$E)$! I$I$f1$!5 O'1!  E)@ 0 E)@  %)  I$I$E)! * I$I$E) E)A I$I$1 I$I$1 PDE)!& J%$!I$ * 0ME) // I$I$E)$!* @$!@  xE) ( I$I$E)$!  %) E) I$I$E)!* I$I$E)! QmE)!W\~.Lb'a 1!TZa -nE)! % H$@ e)E)`@ I$I$1 I$I$1 I$I$E)! E) I$I$)( I$I$1 I$I$E)!* H$ e)$! X4 E)  tE)+ I$I$E)! I$I$E)!/ I$I$E)$! E)a I$I$E)!  E)  E)@@ E) $!!$ E ,! 0@ ! I$I$e) I$I$$!! I$I$$!! !! ! I$!! U  ! A$!!~]  $! $$d!d @&$!!U d!d $d!d $$d!d @&@d!d $d!d d!d $@$!!(W^ I!A !@$d!d  ,!A`  ! $!!{/  !@ I ! @*%$! I$!! U $$!!/W ,$! I$I$e) I$I$E)! I$I$E)! I$I$1 I$I$E)!* 4%)j E)! I$I$E)! I$I$E)! E)z E)^ Z_iM5!~x n!Z E) E)!% &%) H$I$I$I$cI$I* IZ4m$I$I$ I$I!AA$H$!@I$I$ #I aH$I$!AI$I$!A $H$I$(I" ?/x$I$ I$I* $H$!AI$I$!AI$I$ ( @$I$!AI H$I$ $I$I$!A A$!AI$I$IB$!>/HI$!VUUUM4)A@i4$!BXKa  $I$ $H$!BII&* RI$ & kA!_5  r!0`m -۲m-P@$!!dI%I$I*@9`xm $H/@$I*M ( j6}!~% PA@! %E! 0`Xm!IT  &*,Xd!I !I$I$E(C$!$Im!    $  !j5L!~WN+@(O@!$I ! $9!ى!I0!$ j ! !m!! .,!@&!H6I$!^UH$I!I$!U* III@! !II! * $$ IE) $ $I! H&!!6J OC!  IHd!d @$d!d @!  !! @@$!Ap $! ضI! 0IH$!પ K$I! dB$E) $HR!Р j @!< d!d  A$! "%!A` '! $!  J$!(4 ʔ$!  $!U $!U $! $! $! w!  JD!$. L$!* 0d!d @! d!d  $!!uۢ $@T!& $)!B ! $$!!_ $!!( $! I$I$E)! I$I$E)! I$I$1 I$I$E)! d@$!! =%)a I$I$E)! I$I$E)! E)!z* M (E)z JZhE)_?P!^ PIE) -_  %) +  E)A@ E)) *%). I$I$E)! I$I$1 I$I$E)!ꪪ I$I$E)! I$I$E)!_  E)j E)b I$` E) UUVx m6E)/ E)+ I$I$E)$! I$I$E)!* I$I$E)$!(/ I$I$1 I$I$E)$! I$I$E)! E) @  E) HE)Z蠀 DJ!-V E) + $E)` E)!j 9p%) I$I$E)! I$I$1 I$I$E)! I$I$E)$!**  E)b e)!7z H&e)!p E)!"% E)!) I$I$1 @E)@ 0E)a I$I$E)!* I$I$E)! I$I$E)! `E) O&R)!ɐI$ *  E)+/ I$I$E)$! I$I$E)$!Š* I$I$E)! + I$I$E)$!j E)k 0%)A I$I$E)$! * mömE)b '1!5UW{r<1!UVXq mE)! - I$H$e)E)UV\R I$I$1 E)  I$I$)( I$I$1 @ E)`  E) I$E)! * I$H$E)!p L$D$!  E)! %5 I$I$E)! I$I$E)! !E)!%Jj 0E) I$I$E)$! E)! I$I$E)!*( I$I$E)!zꪪ I!` IB$! .%$I!p E) IH$ E) I! H@! $ d!d $! $!A( P$!A @$! p$$!!o $! $!U $!U $!U $!Aj !A *!@j +i! I! R#II!b iІm! !E)!uu E)k E). E)!U  E) E) @H%)Az* @$!!)] H$!!/W $!! I$I$$!! XE) E)!j E)! I$I$E)!ꪪ E) I$I$E)! $%)A Р I$I$E)!z jE)Wz [wj%)^ Ф]!- X&I$%)AI A$'cI$I$b+BI$ &,I$I$ I$I$! I$I$ I$I$I$I$!AA$I$@I$I$AII4$!!@$I$(I$I ?/A'L$ rI$I( )6m$I$I$A I$I$( I$I$!   $I$I$ H$I$!AI $H$I$I 4!AJbHI$ MI!AI$I$$!!-P-Z4$!!hҤI$!! $!B@$$!BM)Z$!!۶ l*H(  kVP!_' ‚͗o!r 4h h$!!P h$A@m I$I$$!B [dIÆm?k۶m/ & _ mߧMA!7 $(!`\9 !Â-ɖ-!$$9  ٱI ٶm؀   $@" ` (  $I! @@'!zV`9&!AjI A+ )* CR j!   (r! H $I  !`d!d`!0!$!Ib$ !&<'I$I$I/I ! 6I$I!  $I! H$! $I$! H$ !  $!* E) m؆m! Id!d $I$! @$I!A $ $! L$ ! ( $IR"t!Р $ $! $>! _ ҟ$!  II$!Aj 'I$!$I! }$I" !_ I$yI!} I$$@!W I ! IN!W I"II!A I! I@!U I"!U I!U I$!` I(2H!A@@ II!U I"I!U M!( nh!/  I$@! H  !( E)! J@ H%) I$I$E)!W E)!U E) E)!U  A! @$!!^ $!! I$I$$!!/  %)`j E)! E). I$I$1 HE)!ߪ I$I$E)!  E)@* E)   @E)~ ּE)WzOD=9!_ $! >$! j E) * I$I$E)! I$I$E)!z I$I$%)!  $!  $!@ ! $! I$I$E)! ,E) I&I&$!/ lE) E)  I$I$E)!ꪪ I$I$E)!/ I$I$1 I$I$E)$! I$I$E)! I$I$E)$! I$I$E)$! E)z $X,!  $%) * HE)A4( I$I$1 I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)! I$I$E)$!(* ۰m |E)b,4b B2E)(@@ E) I$I$E)! HE)(4(  E) I$I$1 I$I$E)!* I$I$E)$! I$I$E)$!* @E) I$S5!!Hɑ!+/ PE) / I$I$1 I$I$E)!ꪪ* I$I$E)! I$I$e)! I$I$E)! I$I$E)$! I$I$E)! * E)!Xp6l۶c;f1!j  H%)** A IE)! p{mE)74 &E)ި I$I$E)! I$I$)( I$I$E)! (( @$E)p I$I$E)! Y ɒde)! / lۆmE)! P!b E)! )- I$I$E)! I$I$E)$! I$I$E)$! ** E)& PE) %)$ I$I$E)$!  $E)!VZzj $ -! $!  A$!  I$!ں $I$!$IR  I$I"A!U I$$ ! I$H! I!b I2I!U I" !A I! II!U I!U I!U I!!4 IDH$ !A I"I!U  AI! * H $$! @&E) H !!( XU! `@d!d   E)& $I$E)!  K I$e)! IB& $e)! I$[1!+ I$I51! E) I$I$E)!* E)!U_ @$!!~ $E)!_ E)! I$I$E)! I$I$E)! I$I$E)!ꪪ %)  I$I$E)! (%)bb I$I$E)!⊫ Z(@%$!@pII ?H$I$I  !AI$I$(*I$I$I$I$I$I$( BI$I$! $I$(I$I$bbI$IAIA&M$(I$I* <`$ I$I$( A$ I$I$! I$I$(I$I$I$I$!AI$I$( I$I$<I$I$!AI$I$( I"!?/PI$ xIII$I$$!!mYb)@ۤI @$!Bh $$!BHm[$!!H $!!#I\$x$IM' A* ‚˛!r\K4h$!!)Z4hҤ$!!I $!!ؖlɖm 4h$!!A$[%۶mK>&m#M& Z mGPa!_  K!ȄA,Pb۱e[ H$ pX$I I$H$ $I$)  %N[!d , $R j =LT!^WI.pd O!+$ $!a$H͛ !RX1 H! ۶m I $@"V `x !$ ( !j A $ Az$I$I$I/I| !I! $IR$!A $A$! ! I$A$!" HHD!A4<  R(%! R$IH! $I`$! $I$! H$I$! I$I!* $I1! $!  I$!$I$!M$I!* I$!* I$I! I*I$I!  ҦM!/(  L„E) I$)!@ ")I! @ H$I!  IҶm!+  I! LHIBE) @I&! @I! @! $!!U L! "I$!` aH I!"  IBE) 0I!* @$I&! $0! )$I!@ 2@!A 4@H! B$ ! E)!U I$e)!  I2`I$e)!  I$e)!  I$N2`1! ۶f[mE): I$I$E)!u_ @E)!W $$!!/W @ $!! E)! I$I$E)! I$I$E)! I$I$1 P%) ( I$I$E)! I$I$E)!+ E)  E)~* OE)lO' j  M'%) U JE) I$I$E)! $!!p/ $!!(4 $!@  $!A ! E!8  ! )$! m `$! M4E) / E)!  E)!ꪪj E) * I$I$E)$! I$I$1 I$I$E)!* I$I$E)$! (E)&. E)!x* K@E) PXE) +  E)* I$I$1 I$I$E)!  E)@ E) I$I$E)! 0 E)A  %)!.' I$I$E)!*k le)( I$I$E)$!* I$I$1 I$I$E)!( I$I$E)! * I$I$1 I$I$E)!* I$I$E)$! E)A  hE)xI$I% II$!* E) I$I$1 E)!x⊪ E)!** I$I$E)$! I$I$E)! I$I$E)$! E)A @0E)!V\x`Ǔ79e)!RA5 0)E) ++n ضmnE) E) 0E) I$I$)( I$I$E)! I$I$E)! ( I$I$1 I$I$E)!* H$A E)$!  !A  @E)!^z I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)$! E)& I$I$E)!* E)A I$HHE)wW I$! IJ I!* *$I! * :n! @ E)  I&!A HF$I!( Im! !@I$! $IIHE)  AI! @I! @I$!!U* $$!!U I! %I@!  AaE) $@IB&!   !!  tA! `@d!d a! aB$$!( $! HL$!*  C&! @!* H$!A,4  E)!U I$I$f1!*UU I$1!UIжe)* I$s1!  I$I$E)! I$I$E)! P$E)A  $!*  I!a @%)` E) I$I$1 E)!_ @<%) H$I!tVߗQ'H$cI$I* I$I$I$I$ I$I$I$I$A II$&I$ $AI$I$( I$I$$@$I$I$*ɑS$ 'I$I$I$ $ I$I$! I$I$I$I$ I$I$! I$I$(I$I$I$ $6 I$I$a`II@ ?E&L$!rI$I AۤI$!Am۶i6$!!EI$!!A $!B-Z4$!BH$i6 `mP$ $(*b M^ɐB!֪* j۶!c\ ȐD$ $H$!!-Z4hҤ$!!IE&@mb 4H$!!)I I%۰a*@#'z^ }$!7 @M$!  Lmܶ A$mQ @$I)* $!b$A"' PĉmK I A$!B$AAR$ `҄t<!^Y$ !0` h45M> IPII a&۶lɐ  (!%N!$ ! ,!b$!$I$I$I !z I" !  I$I$! "($I @O@ !A j"EtI!  H$I$! I$! $ H2!( D$! $IJD A(<I$I$! $ $>!*^  II$!UU $I$!gI$I a I$$ !UU IRJ I!* $$I! !$I$! $I$!I$I$! a$IB! L$!A! I$@! " I!B $ ! $H$E) d!d  A$!!@ ! PL!b $I$E) !! JI! 5& $!!+ I$I$e)  @$d!d  H!( X!A d!d  d!d IH$!  0@d!d $`$!* CL!( $@$$! @#$$ !!` $$!  a۶E)! U I$f1!UUlmնf1b* I$@f1!+ I$I8f1! I$I$E)!  %)A@ I!a I$$!! \   E)a.&*  %) ' I$I$E)! I$I$E)! E) @ (%) E)! E)z I& HE)UWxI$I$&  I$!! z  ! @(!@ !!,& $!!  $!,4 H $!! $!!%` $!! <!P J $! =]!aj 6E) E)!* I$I$E)!/ I$I$E)$!/ I$I$1 I$I$E)$!ꀪ I$I$E)!. I$I$E)$! I$I$E)!x * J9 @E)W^j PTE)*  E)j I$I$E)! I$I$E)! I$I$E)! 4%)A` I$I$E)! %) I$I$E)!(* E)..?E) E)!" I$I$E)$! I$I$E)!* I$I$E)! I$I$1 I$I$E)! * I$I$E)! I$I$E)$! * Pm`E)^I$J$. 锴E). E)!#  %) & I$I$E)! I$I$E)!ꪪ )%)A I$I$E)! PE) I$I$E)! H& E)!W^XkEۮe)| I E) 7<* I$I$)( I$I$E)! E)  ) I$I$)( I$I$E)!( I$I$E)! I$I$E)! $%) mh۶E)!x` E)!k '  E)! - E)!` %)  I$I$E)$! * I$I$E)! * hE) I$I$E)$! I$I$E)$!  E)!zj @$I$! I$I!*  $I! * I$$@! I@! j$I!a I $E) @ E) $@$d!d $%! I$I$$!!* I@! $-"!@ $S)!p  I)!  I$I$$!! $@d!d  d!d @! 0! d!d !   (!`` $!  d!d $Id!d @ d!d I$! $ E)  II!& !* @d!d E)!/U ƜI$1!UU I4I$f1!^/1! I$I$E)! I$I$E)! $$!!^ I $!! z $!!- I$I$1 $h$%)`p\VI A%CI$I$I$I$I$I$* I$I$! I$I$(I$I$I$I$! I$I$I$I$! I$I$I$I$(I $a(* 6H$I$ I$I$A(&I$I$I$I$ I$I$(* I$I$! I$I$(I$I$ I$I$A$I$I$ I$I R$x$ I$I`A$I$b@$!!@$H$!A$!!-m6$!!h4Ib@m ڢ m }IJ!W5 %J!cXV%K$I$@$(-6M$!! $H!AmӶm[$!!$M$!! PhѶ$!!Kdɐ/ H$' M *,!'p PIt!!/I EҴ F!bAIiѶ I$!b@Klݶa[$I!$b$!zMA' aH ! #'I[ ݰmX$h)0l/ 's I$!bXd<J!d0`!O$ !H&I$I$I!* I-U  ɐ!-!( `6!H!I$I$! !@ $IH! $A$!*  Ʉ!I! ! $I$=!^z$!WU$I$ I$I~!UU+ID . # $I!e I$I!)H !6 $I I! $Ä$! !I@! II$!* &!2E) HD$I!A8  ɐ AE)  $@E) )! I E)  0 !(  $I! "m!  I!b $! JT!!(4( $$!  $$! @ $$!* @2$!!U @l! !"  !.  d!d P@! @  d!d  `! d!d $d!d ! d!d L$!  $@d!d  uR"H!  $A&! d!d $!!  I$I$1!+UU KI$1!xU I$Ò1!/f1! I$I$E)!ꪯ H E)!Uz @$!!^ $!! I$I$E)! I$I$1 %)` E)! I$I$E)! I$I$E)! H$!x I'PH!UWxI$I$!UUW 0 ɔ$!+U $! @$!!X @ $!!%` $!!- $!` A$!!Y @"$4!` ! `! m$J%! ɐ$! 5 E)! I$I$E)!ꪪ I$I$E)! I$I$1 I$I$E)$!蠪 I$I$E)! I$I$E)$! I$I$E)!b* s-E)_z  !/  H $!  I$I$E)$! )%) I$I$E)! I$I$1 I$I$E)! I$I$E)! I$I$E)$!**$A$4E)A n$ E)( hE)( I$I$E)! %) I$I$E)! I$I$E)$!  E) `` E)!* I$I$E)!ʊz ӣ-P H$!z訠II$? 0NE) I$I$E)! I$I$1 I$I$E)! I$I$E)$! I$I$E)! I$I$E)! I$I$E)$!* E)!`[?E)>xb'E)!WTP ۶adE)  I$I$e)E)UuV\ I$I$E)$! I$I$E)! I$I$)( I$I$E)! (( E) & @E)@ ۶mٰ E) h`E)* E)!Pb E)! ) I$I$E)!  E)` E)! E)- $ E)!*ZX I$I$E)! I$I$E)$!  $@ E)!W^Zz ڤI!( 9J$I! $E) $4"!` $E)  d!d R"$ I!Ap H$! R*$I!  $$!!U H"!@ )I!   $$! !L$! $! -!  $! I!  I2! I$!*  $ !* J !a(4  I2! $$! d!d I$I$d!d @d!d @! d!d ! I$$!!U^ `$! $!$E) @ d!d E)!/U ?f1!-UUe) I$Ib8f1! E)P* H E)!U]u~  A4!`II b?/H$I$I$I$I$I$ I$I$I$I$I$I$( rI$I$ @I$I$A*I$I$`I$I$I$I$*I$I 'I&H$ A訮I$I$ I$I$pI$I$( I$I$( I$I$AI$I$I$I$* I$I$I$I$& I$I$AP *G$!I$I$ (I$I$II!A $H$!A  !A $!!@I$!AII!AE-P $!!IO! * <۷!kZdȐm-$H$ I$H$(( $H$!AII4(h&M!A 4h$X v$@ IJA$!A R `$MR! ܪ* GI $H (ڴgob@!3&`m5kɐ /+( m[`) ">M!{_ץ$H\!WVI!Xvݺ-*8L 4(6H8z(H$I$!B-&#&S !h I "O1!@1q$H$I$/I$y[ ! H  !`X !J A 8  !!.&I$I$! !@ !$ !a  !@$!zU'I$!WUUI$I!UUUI!  ! $I!ؖ! $$! ! $ P' ! IJD!( H$I$! $I! I E)a  $E) $@I2!  $I! $A2I$! ")$!` IH!) I$ 2! I&!* IB $! I$$!* $L$! H! I$E) I$d!d II$d!d $H&! $H!A I I!& I!( I! L$@! $ !  -R@!!` PYm! $$! $0! d!d I$I$d!d d!d d!d  !8 L$!!Uj* $$ $!  II0E) @E) $!!* $I$f1! UU_f1 I$he)! E)!j E) $!! ~ $E)!U I$I$E)! I$I$E)! I$I$E)!ꪪ X$!( I$I$E)! I$I$E)! Z$!^ I$z!UUVx dI$!-UU  L! I$I$$!! / I$$!!X  !! I$I$e) $!  $!( <$! FH!( I$P! I$$!/ %)&* I$I$E)!ꪪ I$I$E)! I$I$E)$!* I$I$E)!પ I$I$E)! I$I$E)$! I$I$E)!* X@E)^ SҥV!AҪ ( I$I$E)!- I$I$1 I$I$E)$! I$I$E)! I$I$E)$! I$I$E)! I$I$E)!* HD%)! aǶcE)! X mm[E) O  E) XE)A I$I$E)! * I$I$E)$! I$I$E)$! I$I$E)! ** E)!r @E) {%R!Zz I$/ P E) + %)!,$ %)!& ( I$I$E)! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! * @ E)!^x` AIE) aM% L E)!5W I$I$E)! I$I$1 I$I$E)$!*( I$I$)( I$I$E)! I$I$E)! I$I$1 I$I$E)!*( I$I$E)!{ae)!7ܶxKqE)a . I$I$E)! 0E)!+/_ I$I$E)!몪 ME) ( I$I$E)$! I$I$E)$!** E) E)!jꪨ ۶mh$! $! ömn! h$!8 d$!A! I$ @! I0! I$!  $! $)! j $$! @I$d!d @I$d!d II$d!d @@#5! ` PI! @ 4 I!  II$! $@I$! I$!U $$B!A` 0IӔm!"  JJ!A$  $0E) L@!  $!  !  D!a8 d!d ) !a I$I$$!! I$I$$!!  d!d H0(!B `$!!yW  )!h A!1!-UUU'e)!-_ I$H,f1!x @%J$E)ZXVy$L$ isI$I$ @I$I$aI$I$A I$I$ I$I$ 8I$I$I$I$ I$I$a<*I$I$ (4I$I$ I$I$ 8 !A&!bI$I$I$I$**I$I$ pI$I$I$I$I$I$! &&I$I$( I$I$&I$I$ I$I$AI1% H$I$( I$I$ I$I$  A$!AII$!A I!A@$H$!AI$I!AiۤI$aN$J a 8*4!! 6m&$!! $I!AI$H$!A $ @H A$H!A $H!AMҤ-P$J IB=!cXxy!6lؖl  @( ÂdI ⼿+ ۀ **(caƍ%Kl6 l" lM+4!{P Z֥i&IK {^6 Ir*0 ö%*"#lj`Az%mضmF'L2&0hҤK l<@$  $!B(l'!@$I$I$I  IR% @!*P#!~ !I( !JH  B! A H !ؖ! J *&(z$! h`$$+I$[!~ IG$! $!X !"!j !P !j!I$I$! $I$$!* @I$I!aР  I2$I! $! $I!'  II$! $I$! $%Rw!app $ID! $ M$!*WhB(!j9 A $M"=!WW_ RI$! @!}!WWuI$ UUUВI$!UU ?I$! WUU $I<! RI$!  II$! $I$!W H$!+U  A! @ J!A  HB"!A` HAd!d  ! I2@E)  ! P(!! I! H ! I$I$$!!. I$I$$!! I$I$d!d `$!(,  I$!   A &E) !&  @E)!5WU ?f1!-Ue)!% I$I$e)! E)!_ $$!!5Wz $$!!5W I$I$E)! I$I$E)$! I$I$E)! I$I$E)!+  $!!@ ! K"5 !@@I$I$*  I$! . ! $! @ $$! ( $!! PDP$!  @$$!!P $!!% !A K%@! )I$$! / E) I$I$E)!ꪪ I$I$E)! I$I$1 I$I$1 I$I$E)! I$I$E)!  E) @  i@!a Mצ! . E)! I$I$E)! H%) I$I$$!! I$I$e) I$I$%)!^z I$I$E)!. I$I$1 -mE)!>z n۶h[4e)!S I$I$E)$!*  %)@ E): I$I$1 I$I$E)$! I$I$E)$! * hE) @ E)M$R1!^^zH !+  E) * I$I$E)$! I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$1 I$I$E)! h4 E) l2aE) 0E) / I$I$1 I$I$E)$!" I$I$E)! ( I$I$1 I$I$E)!( I$I$E)!  I$I$E)! I$I$E)! * @ E)b@@c]ᚢe) E)! % @E)x I$I$E)! I$I$E)!ʊ** PE) ( @E) 8 %) & I$I$E)$! @ E)!VZzj $&I$!  I$-!z DJt5!A&&!j} $HT!I$ AP!z{ I$! By!` /5!~I'!UUUI$ UU@I$!UU $I$! I'! TII$!*_U }"I@!_ II ! I"!W I$!U I$m#A!W '$I"!* I$!U JI$! $I$!  M!+ H I!  LB2$!  I !!  I$!!U{   I!  H !( @F!`8 ! !@ I!! @I0E) d!d )@%! `PI 97 I$I$I$I$ I$I$I$I$I$I$I$I$I$I$ I$I$(*I$I$ pI$I$I$I$I )!H$I$I$I$I$I$ I$I$I$I$I$I$!I$I$I$I$I$I$I$I$ II$+ H$I$A,I$I$( I$I$!AI$I$bުI$I$!A I$!!$H$!AI$I!AiS$IN"%v  )R!e}__ i$ H$A$!AI$I$@I I$Am  i&M $@ !AII$!![$I?p$!{ZHə!V$Hl $!BXK𶵭  ,Â$Im$I'Ld#:b($z!($!W[`ބ y ^Ĉ$G2*j ɐr I= $H" mvh5**<:Nx F ېú5I:L$I$Ib IiU!a$ !$$! 'e !!!j  !b X!0!z0L!zWUpqy$)A$!A*r  !%!%I0!bO$@!!r!I$I$E(C @@ HR!H$! d$@! $"I! @ IP! * $I<!WzJ!W@2I% P&& ]_LJM ׿MD !b'%!bk ! ICJH!o* I"  !! ٶm&A! j'ID!A IB2$ ! $I! $$ ! $$ ! $$!* IB$ ! Im[ ! j#I!~ I"I ! II!_ I$@!U I$R+ !_ I$OA!U $I?!U DI$!* $!+  IO! @$I! @ $ I! IH!A8 `! @%$I!b "I!A@   !b@  !a I$I$$!!* KH!$ `$!!W` !d!d h !E) _$I&E)? I$I$e)! FE) &P@! X  ! @$! I$I$e) I$I$$!! `JL$! & @$!! # @!x I$Z$!UW^ DI$!-UU @"L!a*  %@!A $!!5p $!!  5 I$I$$!! @$!!X   H!A  I$I$$!! Z(!X` DI$$!/?  %)( I$I$E)! I$I$E)! I$I$E)!  %)  I$I$E)! I$I$E)! I$I$E) * d2 E)!UW^z  $I$! ) %)  I$I$E)! !A I$I$$!! I$I$e)  ! I$I$E)! I$I$E)!ꨪ E)B8  E) , E)` I$I$E)! I$I$E)!* I$I$E)$! I$I$E)!* I$I$E)$! I$I$E)$!* ЊfH HE)!I$H% i! * %)! I$I$1 E)( I$I$1  E)!jj %)  I$I$E)!* E)!`  h5E)/?  HL!A($ pE) I$I$E)$! I$I$E)$! (E)A` I$I$E)! I$I$E)! (( $E)` I$I$E)! I$I$E)!e)!7^xN1!\Z I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)$! I$I$E)$!* I$I$E)!. I$I$E)!ꪪ P%)u| #Rir u]$& $!_L$! bR ! IBI !A I&I$ !ժ mӮmm!* $I!a* R#I!z !$$ ! $$ !  $$ ! dE) mm! imm!* IB! I! d$!  $!  d!d $I"d!d `E) z"IA!V( I"=!W I$!W $I"1! _ T I$! H!   A"%! @ m!  $$!* h$H! 8 $! I$I$$!!* I$I$$!! I$I$$!!* L0 $! x$Id!X֗A$K$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I /G&H$I$I$I$I$I$I$I$I$I$I$`I$I$a"I$I$I$I$I$I$I$I$aI$I$I$I$( I$I$! I$I$H$I$ I$I$!AI @$!AI$I$!AI$A$!AI[ m$ ˖"% MIR$ H4I$I$I$I$I$( I$I$!A@$H$ A$II !AE&I$p = / Hɓ7!Aj ؑ[a  $!B@$I$!!$!B$ $)*j`ĉXֵm۶M/`2' O!y^HH NlA<4"9vD $[K A۶mۂ%PD6 ؖݺ&Ib/ 6K$A4(@$I$I$Ib IV'$!%Ia! rD dI "1 a `HI!  DHW A<* R$T  (!{0L!zWHV y !UU I!@Ȗ p$ ! $I!!I$I$E(C !$!%!K!!&!_Hm !_''!WzI!! IH!~ի!UO"!U &I$ !骪 J$A! IB$! LB$$! $II$! $@I$! @&I! 0IH!* x$I !a $I!* d!d  I !@  I! $@! $!I! !CE) IB! @IB&!  I2!  $$! @!*  @d!d d!d R#I@!z I@!_ I$$! $OH!/~ KI$!+ R%$! j  )! $I! I0@$! " $!!  I! $!!Ȫ+ I$I$$!!* I$I$$!! * @$!!\ !$!!UX !$!!/U X`!  X`E) h E)? E)!^ !$! @$!! _ $!!5 I$I$e) $! I$I$$!!/ I$I$$!! $!!` K5@!I$I' p ɔ! / $! * @ $!!p  $!! % H! $!   $!!` ( $!p` @#!b I$M%!UWX   !/ 4$! `  %)A  E)! I$I$1 I$I$E)! I$I$E)! I$I$E) * I$@E)!UUVz С-! E)! $! @$!!X I$I$$!!  $! ! I$I$$!! EE) E)!sM  E)a' E)$ I$I$E)! I$I$E)! I$I$1 I$I$E)!* I$I$E)$! I$I$E)!j P !ꨠIDI$ * PV$! / I$I$E)!ꫫ E)B*  HE)a.6 I$I$E)$! I$I$E)! (E)(r I$I$E)! ** @E)ࠨ ӖT !!& E) +/ I$I$E)! E) H%) ( I$I$E)$!  E)@ E) I$I$E)$!* @E) mmE)!p`s9|f1!sI% E)!+) I$I$E)! I$I$E)! I$I$E)! * E)A E) I$I$E)! I$I$1  E)P` I$A&!* IB$!  d$! $ I0! @I0! $I! &!IE)  $I$@! $ A! $d!d  I$!! @&$!!U $L! $d! &L!   d!d $ d!d "(!` `!  H!  0$E)  I!  JD!!$, !&! !A I$d!d Z#I@!x I">!Aި I$zH! JI$!  ID!  $I! @"-!`p !$C! @ $$!* $!!*" (@%!`pXɜ c$CI$I$ I$I$I$I$I$I$I$I$ I$I$I$I$I$I$I$I$I$I$I$I$; *#% bzI$I$I$I$I$I$I$I$I$I$I$I$*I$I$I$I$I$I$I$I$zZVI$I$!I$I$ I$I$ I$I$! A$I$( I$I$!AI$I$I$I$ I$I$!A $H $H 4aH$I$b(I$I$I$I$( I$I$!AI$I$nI$I$bI$I !A$I$!AI@l9p,NX׵m&h$`P$!!@$I$!! @$!B 4$!B@Ӷi$!!ْ-K /&1c„ I&E!!zꢨI ؖ,ɒ-@$M$!! h۶$!!I$!B@Ҥ$!!N %`B&&AP82t$I$I$*I1g( 0  m ' @I( )$!b #'K `  0` I$ i$ Q!]U9A$I!$r 1 @!P"$ p I A $ A $ l!"I  !&!_MZ!ׯb&!^IH|J!Wޤ!j׫E<@H A*p $I@!* $$)! I! $I!* @$I ! I$! I!( IH$I!* $A$E) $A &E) H$@! $@ E) Hd!d I$HE) d!d @!  !  LE)  d!d d!d  0d!d @d!d d!d @ @! F! aB !  I,!a`  RR<!!` I$!* D!a I$$!!U_ "I! O"I!Az I$!Ak TI"% A+ I$!+ @*TI! $$!!zU I!* I0! $! * I$I$$!!* I$I$$!!* $!!x* $$!!Wp $d!d h! xE) * E)/  !@@ @!A  EPH!   $! I$I$e) I$I$$!! H $!!p I$I$$!!  PH$!x I$j5! TI$!/ $! $!!p H$!!% H$!( I$I$$!!*" ! ! @!` I$J%! T! / I$I$$!! I$I$$!!> d@@$! ` I$I$E)! I$I$E)$! I$I$E)! I$I$E) * HEE) ) %)/ %)!^} I$I$$!! @$!! 6 I$I$$!! I$I$$!!(  $!! %< $!!r,8  E)!Z{ @E)!sm  E)4 I$I$E)$! I$I$E)! I$I$E)$! I$I$E)!ꪪ I$I$E)! I$I$1 H E)A {&j!1pI * P %)+' I$I$E)! I$I$E)! I$I$E)! I$I$1 $!` I$I$E)! I$I$E)! E)~xx M!, E)! @$E)Ap I$I$E)$! I$I$E)!" * I$I$E)$!* I$I$E)! * I$I$1  E) @ l۶mE)?e)!7Z H@%) ($ I$I$E)! %)A I$I$E)!ꪪ J%)! E)  E)A$, I$I$E)! I$I$E)$!* I E)!UWT^ I! !I$IE) $I$E) ") !@ TIH!b Id!d A d!d IE) $d!d @ I$! Cd!d   AE) H d!d @d!d  E) d!d d!d  !E)  H!  d!d J ! \!b, 4!p H!A !$E)  B!  %!A I$$!!U^ ,! I39$!! $jH!+  I$!W  I!* @B#!` I$ !*@ HI!ܖH$I$!^VWUI$I$ I$I$I$I$AI$I$I$I$I$I$I$I$I$I$ pI$I$I$I$(* II" 6.H$I$I$I$I$I$xI$I$I$I$I$I$I$I$I$I$I$I$I$I$ZI$I$a(*I$I$ I$I$o+ I$I$  $I$ I$I$ I$I$!AI$I$(* I$I$XH $AI$I$ (I$I (A$I$!AI$I$!4(I$I$( I$I$! I$I$I$A$&I$I$@$ $MI!A $H$$!!-ڶM6$!!hۤI$!!  @$!!m 4$!!hҤI$!!I$I /s !X(A,-h۶m6$!!@&I!A)  H $!B 4H C[5goM:>zC'N$A@I$I Ix$@/ ) H(Dbڄ mnl I$$!B*)N!j!MJD ׭$A'!$I< ay&I !u_յI!խIR$ zW??K zWH%E H$I O A&<@& !`x)u! IBH aJW$!&L! _ R72!u}9BI! * *!zտ IEI !.&I$I$! $I$$! @2IH!꿪!꿪 ! $R$! AA$E)a  $E)a @$ E) `H&!E) `H&!CE) I!,$ $IH!( !$! C ! ۖ!  L$! I$!* $ $$! $$$! m6!* -! h!(  $! $@d!d Hd!d ` d!d h! d!d @@!A` 4!b ! H!A  I&E)  E! )!@ !A $C $!!UU^ {dJI! I$@! JI"&! U^  IT! @$$d!d @ P! !H! *)!@ ! I$I$$!!* $!!x* !$!!U\ .)!@ R!!  l#-%)⋿z NX:`! . P5!{ $$!!5V~ $!!  I$I$$!! $!a($ $!!/p  @$!!@% $! I&Ph! I$!  -T$!b / I$I$$!! ( @ $!! 7` $!! d! $!! ! !@ I$h4$!b P)!b / I$I$$!! * I$I$$!!> I$I$$!! I$I$E)! X%)A( I$I$E) PE) *  E)!uX th ! . $!!. I$I$$!!"  ,$! (p I$I$$!! @ $!!X` $!!Ë' I$I$$!!  E)![} I E)!Y} I$I$E)!* I$I$E)! I$I$E)!. I$I$1 I$I$E)! H%)a8( I$I$1 ,l%)zxI$R% Vy! + $! I$I$%)$! I$I$E)!{ I$I$E)! I$I$E)!ꪯ ( %)!` E) *) E)  TM'!.>z S4 W!2*+ I$I$E)! I$I$E)$! I$I$E)!* E)!' I$I$E)$! E) I$I$E)$! I$I$E)!/. E)!h1!iM7  E)!- I$I$E)! I$I$E)! E) I$I$E)!+ I$I$1 I$I$E)! I$I$1 @ E)A  dE)  ! @  I! $IPI!( 6! k6!( ۚ! I$!  !$! $ $$! d$!  $! Ф! !$! $HW! $)"J !@ I$I! $$IB! IB2!  ҧ%!  $$! 0 !. @"H!`  d!d !  !! P! I2d!d L$!! Uz $!!U d$!!UW R#I@!z I!^ JN%I!* "%R$!@`X 5A' krXI$I$**I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$ꪪI$I$I$I//C%x$!zVI$I$**I$I$AI$I$I$I$a&(* I$I$I$I$I$I$I$I$I$I$I$I$aI$I$a I$I$I$I$I$I$I$I$ I$I$!pI$I$<(I$I$!@@I$I$A$I$ I$I$ ** $H$I$I$ I$I$ تI$I$AI$I$a I$I$(I$I$!  $@$I$I$*I$I  6m$$!! $!!@$I!A$!!--6$!!hҤI6$!!-ۉ  "$H$  (Ra4  hm6$!!h$I4!AA۶I$!! $!B@&I$!!dِ- *$-M;I$I$ I$I(( i&DA@B&&8Ü؉iA  n  @ $!B$%I*& ^@mܶ ,@*&O!_UI!r  I\!$!5&I/IU) ؒ%Il!۶ a  5R& `۶P!-Ax A*(4I&!_ (>YA!_׋ I'!  I$I$$!! $!A (!` $!!  E)!zo  $! *  Hl! /< I$I$$!!, @! $!! ' I$I$$!!(( !A $!!(É I$I$$!!< @ $!  E)!_ I$I$E)$!** I$I$E)!ꪪ I$I$E)! I$I$E)$! H%)A I$I$1 @E)ؠ jP $!~II$. V! / I$I$$!! I$I$$!!** I$I$$!! .< I$I$$!!  $!@ $! I$I$E)! h5$!Ah蠀i$) A)  E) )- I$I$E)! I$I$1 I$I$E)!* I$I$1 @E)!* I$I$1 I$I$E)!ꪪ I$I$E)! uЦ6E)!ZxNor<1 Zs I$I$E)! I$I$E)!ᄐ %)A I$I$E)! I$I$E)!ꪫ I$I$E)$! I$I$E)! I$I$E)$!** lPE)A $$$ ! !%I %!* $ID6! $!U $! ,$!(( DJ$!A @[$! $ m$!W ۖ$! JE$ 0 J$ $, I$!U I$(@! I$#A!Wɕ$I I'!*_ JI$!* @($! $A!" $II!  $L!  I$$!*  "I! @  ! P%! d!d I$I$d!d  d!d  d!d $A!   d!d $I !@JI 7H$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$jI$ -sI$I$I$I$I$I$aI$I$I$I$AI$I$I$I$I$I$"I$I$ I$I$!I$I$ bI$I$ I$I$+*jI$I$ `I$I$(*I$I$! I$I$I$I$I$I$A$H$`I$I$* @$I$I$ I$I$I$I$  I$I$I$I$( I$I$bI I$!AI$I$I$IA  A$!AI$I !AA$I !A$!! $!!@I!AI$I? "$H$ (I"I(I+$A4hi&@$I!A$!!I$H  h&I (4$h$!!$ɲc'H$I$( I$ (ib[+ kn݂%( hҤɖ@ ͠Mlݶ ۰a$p%($I$9UI ضsp\%M ݶv(@$I$!BI$!b&˶IU  A( @"$ !p M$}%A!!* UAM! * Pä-$!A)EI!0%!$E!!o"IJr !BD$QI$I$E)a!z $I$@! $I$)!  $!*  H$I A -`!$%x$!!*($! $)I$ j@$I!U I$@!U &! ۔n @!* @IdI! $I! "@m!* I"I I! I&"@!@I$iS!AI6 _ @II$!  $T! I$$! $IB2! I$$!+ $! + I$I$$!! I$I$$!! $!!z Ld!d "%P&!@`$\$xI$I$A>I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$II b//d$M$!~I$I$A)I$I$"I$I$I$I$!I$I$aܨI$I$bI$I$I$I$bI$I$jzI$I$AI$I$ I$I$A%%jI$I$`I$I$AbI$I$44I$I$I$I$&I$I$ $A$ I$I$A`(*I$ $ I$I$I$I$ I$I$aʂI$I$I$I$(*I$I$BI$I$&6I$I$I$I$)I$$6(I$I!A$H$!AA$!PA $!!@$I$!A$H$!!-R4m$$!!I$I$A44+V' I$I$!AH$I !A$I$@Ii$@$I$ApIۉ AB i$ II$( Nĉe (֭Xt .&L 44K ٰ /+*@$@Fn %HX 0` %Ld I#P (Nᶑ( ÆmC&`Zc X%H$II **  A*&M ^׭I!($&!_ $Is!!jB DAѓ!* P$I!X$ !H ˶!,'$!e@! b@@ I$I$E(C,!꟤!$!"I&!A j@y$  'I$!h$I$*I$I *I$9! II!I@>!)IJ!`I! C )! $! B*(!@ IpI! DJ H! MҶm! m+@"!A` Im @! i۶! Mn m! Mڤm! m$m ! ۖ! $J"@! P*$I! `$$! z"I I!W( I"1$!_I$J !$I * I$! $! HI!  $d! I$$! $!+ I$I$$!!/ I$I$$!!( I$I$$!!  $!!W{ !d!d  $$! JO !a* !d$!!%UU^ F%)*  $@%)!UU^ H!$!(   !@ 0 H! 8!! !! $!  @ ! ( !  e@!/ :!?  L!6 H$d!d $!!% I$I$e) I$I$$!! ҀDP! $!!* !` I$z1  d!- x@"! (@  T@! $!  $! H$$!!X`  d!d Eh!A8 I$h=!  H! ! @$$!! /X I$I$e) $!! I$I$$!! , I$I$$!!( @ $! &E) 00 !  $$!  H $!!rB $!! ,$! $$!!5 $!!Ë(& @$ $! 0LL$!(ʮ E)! I$I$1 I$I$E)! I$I$E)$! PE)a I$I$E)! @E)! P, `$!N$p%< i! * $!!+ I$I$$!!** I$I$$!!/<< I$I$e) @$!!@ $!!( H$!44 4 `$!XpA;D( E) -5 hE)< I$I$1 E)a&& I$I$E)$! I$I$E)!+  E)!b E) @E)![/  $E)A(Po8e) E)a6 E) *( I$I$1  E) I$I$1 I$I$E)!ꪪ I$I$E)! I$I$E)!** چmP pE)lI! D2! $! b.D! b" !* iӶn! mm ! mWJ !a(4 ImI! mӶn! mM!( I4ۺ!  $! D$@!a&. $I0!* HL$! II$!* Iж! 5"I! @ I&H!+ $I$I2!* R#I$I!~ I$* ! j H!$ ! IIH! I$!$! IB2$!+ !$! J !!$  $! HD (!H$I$bI$I$I$I$I$I$ &.I$I$I$I$I$I$I$I$I$I$I$I$I$I$ 1G"& kbZI$I$AI$I$bI$I$"I$I$I$I$I$I$I$I$ I$I$"I$I$I$I$AI$I$A/ I$I$I$I$I$I$A@I$I$!I$I$I$I$(*I$I$! I$I$H$I$hzI$I$ I$I$I$I$I$I$I$I$I$I$I$I$ II$ ( I$I$ I$I$A. I$ $H$Ib@ $I$ I$!AIM4b@$I$!Ai$I&I$H$I$I$(**Im$!AH$I$I$ @A$IIm&@i$I q"۶`+]/o&H$I4A$ Iĉa( 6lؖ,$R$`pIA[$$I#9 @m9PıIX֭$  %*X@$+ %I( 9$9rz^5NI @$I I * pD\T' !W")1!j m !A UAҢ!p P߼yv!xU"% r`ɒ!+dɰ ! !@   !!$۱$!$I& _ O$!zUUГ$I$ I$II$9!UUI $!@bߒ!$%I `RD$!Ap$ * b '! I$I$!* $I$! H$I$!I$I$! #I I! `! I$I! I$! $@I$!* d$! L$I! A$  !  $! I$I!* %P" !P !$I„!(  a$! dBI$! mlֶ! MI! l$  I! ! I@!* O"=$I!UZə!! ېlٰm! dB! IB& $!  $H$! @I$$!+ @"$!A` I$I$$!!. I$I$$!! H]!   J! @ &$!! W HH !A $d0E)!UUW @ E)!^k%  `%)h pI!  &! $  I!@ ( !a I$I$$!!/ H0!(  $! X  ! Rs! p j!! > d!d H$!!^ @$! I$I$$!! $!!% $!!& *A!NJ I$j5! JI! +/   !A !$!!Xc $!! % I$I$$!! h !( )!AC ITH!` I$J%! J$ ! $!!p/ $!!6 $$!` $!! I$I$$!!. I$I$$!! ( E)!__ d @E)po~E)Ë. 0E)7 . I$I$E)!` I$I$E)! I$I$E)!ꪪ  %) %) H%)a&, I$I$1  E)!Rbj $I$!I$I$!I$I$! J$I$I!! I I$! II !* $AI$! @ $!  2I$! I$IB! I$@!( H$H!* @$ $! ID!  A$H$! I$A!( $H!(( IH!*(  %RH!Ap $I$! C"I&! HHD 8 i&X! ]M! dB$!* $ɐ C! &AL! VH!!(( kai&!+ !$d! "(R&!!%b$ AxI$I$/ +I$I$I$I$I$I$I$I$ I$I$I$I$ꪪI$I$bjjI$I$ I$I$II$A**ZH$I$ \VWUI$I$I$I$"I$I$I$I$I$I$I$I$I$I$bI$I$I$I$I$I$A/I$I$(I$I$I$I$I$I$I$I$I$I$I$I$I$I$ I$I$xI$I$I$I$I$I$!pI$I$I$I$I$I$ .&I$I$!&6I$I$AI$I$I$I$A.'I$I #I$I$! I A$!AI$I 4I$H$ ($H$!AI$I!AI6E$bI$I$/Ii&* HI$H$I$( A$I$A@$M$I E6-R !@;AI(Q$ IرdA$H$!B,%r[Z޽I$!!$Ir$ ɒ'*z\h)$!! $J'*rĉA(H,9z@$I$!!1$I%I$  @,%ZC'r^5 9՞H !*Ij ޗ l $!j* &}SJ!Ah)Q( @ !ä I z   I$I$$!b$H" !8!(NX!bR1 z%j$!_U`$$!~UUUI'I I$ @!IZȶ!bI!!%!I$I$!I$I$!@!Z !I$I$E)aI$I$! !ꪪ! ! $A$!$0!{  !*  $$! $$!*  $$! R%R)! Р DIH!(> $$5! z $@J! $H 1!`  I@!* I  !* I$!** I$! $)@! K $I! I0! * J")!A@ $II! mm`!* $!ꪯ  I&! $ $%!* $"- @ 4 $h! ۠mN!*/ I$$! $!* h U! $!` d!d  @&d!d H!d!d [! LB&E)!UU k 4E)/ m! @$!* H$! ! I$I$d!d $! !H0!* @! OR!x` jW! 'k ! H $!! 5 $! .$! HD! I$I$$!!/  @!, I$R)!^p  I! -  ! H$$!!Xr $!!) ! H@!bc 0! "hI!` DL&!/x  I! $!! $!   $!( I$I$$!!< I$I$$!! I$I$$!!<  X4$!> ʕ!!, $! $!!B* $!! ' I$I$$!!*   $! +! H ! tj%!h VT!  + I$I$$!!  I$I$$!! I$I$$!! $!@ %)** I$I$$!! `!|& W_W~ V)!= ! I$I$$!!* 9 A! I$I$$!! $!& @0!0 I$I$$!! * P$@$$!!ppI$I$( %) /- I$I$E)! <E)p I$I$E)!. I$I$1 I$I$E)! I$I$E)$! I$I$E)!ꪪ I$I$E)! / h@ E)>l&KE)ؠ I$I$E)!‚ + I$I$E)! I$I$E)$! @E)!޺ I$I$1 @E)!Z^ I$I$E)! @E)! R HE)^^I$I$!  I$&!* $HD!  ID!*  m$! $ $$! $2!  m$! HM"%! J$I!! $H|! d@! J$I !A $I.< A` @J@!* $LB! $@$0!  $! $! @ !  R@!  I@ E) $LE) ں@m! I6! JI!a  2!  [&m!+ [-N!/H !H$I$bI$I$ I$I$I$I$"I$I$I$I$I$I$I$I$ I$I$I$I$I$I$$,!%d$bcpI$I$`I$I$I$I$"I$I$I$I$I$I$I$I$I$I$I$I$jI$I$AI$I$A I$I$I$I$I$I$I$I$ &.I$I$I$I$I$I$I$I$ I$I$\I$I$I$I$I$I$I$I$I$I$I$I$I$I$*I$I$I$I$pX^I$I$&I$H$! I$I$ I$I$ I I4)$M$(I$I$!AI$A4I$I$I $b+ H$I$ &.I$I(( I$I$! I$I$I$I ( A۴I$!!@m& G.[$(IiѢÂ%K,>%N8)h[-۶ *Jb(rII $(p$(I I$ (IX$*  $R$ZVJD1dV@$H$!!I$!B$r^Np2,A@@%@%&iRB!y'P$ kUI9 !* D & ^¶IJ j@ $I")!j$I a $Ԥ b m !l[J&!_$>I!ME$ ($I *I*9N !bҖ!_$I!$I$!$I  I$I$E(CI$I$E(C%!ؖd!0,I!$! II!& aBI$I! $A )!z $=B!A p  D6! (!@b H4I! I E) &@۶1! $!U J! RH >!` $AI! R"I I!` $I! $I!b  I$!  A!I!(* H$! I$$!*  $E) "IڅD!  $I$I! $A& $E) e[&i! Mn! RV@!a* `H!!+ -д[m!   `e! th[! / m -֤!  IH!A  !` d!d PD!  $!!^ !`E) d!d I$`! 6-E) JT@!  퐶! m@!*8  E! I$I$e) (!@ m@! !! zf*I! OӨ!!* !  @!(  $! P$!b8 @ $!!x H$!< $! I$R)! NI! + $! $!!TRK ! I$I$e)   E)  d!d #($I!` I$  %  ! HH!b $!!K 9$!A P !! I$I$$!! (@(!` I^!A + `f! . $!! $! , $!!  ,! J !a$ I$I$$!!ˎ> (@!!@I&I$!!  !  !A I$I$$!!.< I$I$e) I$I$$!! I$I$$!! e! Հ !|Ihb MԤ! * I$I$$!! PE!a Ѐ! J !$ @$!!'4 I$I$$!!(( $!!@ M&5!W^xpII$!U E) I$I$E)! I$I$E)! I$I$E)$! %)@@ E)b I$I$1 I$I$E)!. E)!hࠠoڷE)ˏ. E) )-%  E)!pp E)! I$I$E)!ꫫ I$I$E)! I$I$E)! @E)* E)!ڪ @`E) I"I I!( $I!  MԴ!!& '!W DJw!  I$! I$! 6!~ H!U ! JI\!hW!a W&ID b誦s&J {]V L!  II$!*U A$! HK! ")$!a` I &!  $$I! $@"!B $@!A! *+  H$E) ! $E) m! M@ "(#%!@!$d$ kszZI$I$ I$I$ (I$I$"I$I$I$I$ 4(I$I$I$I$ (I$I$ZI$I$I$I$Idɜ b7' I$I$!I$I$I$I$ @I$I$aI$I$I$I$I$I$I$I$"I$I$A,I$I$AI$I$ڪ I$I$* I$I$ I$I$I$I$ (&. I$I$! I$I$I$I$`I$I$bI$I$a(I$I$I$I$!بI$I$I$I$I$I$ 4(I$I$ 4(I$I$I$I$*I$I$jz^I$I$ I$I$!AI$I$ PI$I$( I$I$ I$I$A@I$I$I &I$I$!II$A* @I$I$I$I$( I$I$ `I$ $ I$I  A$I!AAۦM$ I(I$ &4IiѢ EmQ$@E$Ma1b)dAIh,8rr^IM 4$M$I$I *I@$A8H$M<I$!!H $!!P $#'Nz^% aAIdZ $X -M& !ڪ !AK / $I$$!BEm(*"!jS!aI & A &I4!II v$0(IYAb!ض/\ mEH a* $I$!H$I %@ !_I d'!@rX!$!PL!!*6,dE!!޺'! z $m=! I!_+ Mڶ!b #HR!_ZU U ˻N!Ab* PJ"I!  m 7I!  =(!^ $I!կ* hԤ$I!8 $! >& !_ !տ #I @!^I!ꪗ Ix%!X0WC& uy_ i&! II$!UU $@o$!* ! IHI! D !!& P$I A   $!((*  IJ!* A E) P%E!( @ I2E) `$A! $iXD  [vm6!* i6ݚv!++ 2!/ DJ+@! & JDN!A,4* IB&!* $!!j ! I$I$d!d `0d!d L$E) L0! -mE)/ h%E)a I! h ! I$! * d!d d!d L&! $ ! * J&! @T!/  !   $!!V_   !A I$I$$!!( @ $$!(P $!!5 $! I$Z5!  \! $$!!5 I$@! $!!譥 I$I$$!!/   0E) Hd!d O0*!~ HI! '  "!@  AA!  $! I$I$$!! I$I$$!!< I$I$$!!(  ,! @[($!c 4@` !  J !$  @ $!!7Zs $!!p  $!!sJ* $!!≭ ʀ !, z.%P!VXp` LI! ..  ! I$I$$!!. h!  ( H$!(( I$I$$!!,8 @$! $! N2;9!W|N` $!0  ! ͠!  P@!  !$!@ 0$!  !! I$I$$!! * @$!pI$N$  T%) / @E)`  E)` E)! I$I$E)$! I$I$E)! I$I$E)$! I$I$E)! I$I$E)!  ky1E)>:  IIE) E)!rz  D! I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)! I$I$E)!J*/ ' Jt$!* JEI!  HI*I!! m&M! '@!W ے$I! !! $! $&A!W S!굯 %bI!_ !@tI!  O Jj'!!& $I$ɐ! M@ I!W #-$I!uj I$!I$I@ Z$I$!* PJI$!+ $!* )mM!+ m$k;l! @ 2!* !H!$! $I$ȐE)  2CE)  Ad$! XdO!H$I$AI$I$A*I$I$ (( I$I$"I$I$"I$I$I$I$I$I$bjjI$I$A(I$I$!``I$IAꩻ*c$H$C`P\I$I$A<I$I$I$I$"I$I$I$I$"I$I$I$I$"I$I$bI$I$I$I$!ZI$I$!I$I$I$I$A<I$I$I$I$I$I$ (4(I$I$I$I$a` (I$I$aI$I$A,* I$I$I$I$I$I$I$I$A I$I$I$I$I$I$ ((I$I$AI$I$A*+ I$I$I$I$@I$I$ I$I$!AI$I$(I$I$* I$I A$I$hZ^I$I$- A$I$I$I$a.*I$I$ I$ $bPH$I$( A$HA$I$AI'* Mi(Eh"$!!F$I`@$ m۶I $H$!!ImR$A`M6I$(pI$IA Im6M&Ib8Ih۶$!!I$I$$!!-h&$!!JĉA(  H$H 4M$MI$!!N$IA006 d(L$K$!0%2`@!m&'IH( I@P**t0*0m{j ^խ)!HI I$C $ @$DA `@ !I,'  NX!$!Id%!H A F'17A! to4&! ZN!~ o%%!!l"!_m! $I$$!*  II!!`! %R!zze! $0$I! HH!A $ I!** $Ʉ$ ! IdH! hDIH! (6 @"Q") aP I!a  I!z* M"I I! I$$! I$jA! $I& \I$!¯  I$! $IL! I6a! $L!  $!(* $I!0! L$HE) `H! $ &!\ IB&! ݚtM5!/ I&ݚt!// 8@̴9!/ tX2a!  HH! I$!* ! I$I$d!d d!d  A&E)  !!* R"I@!ؠ :-e%)/ n ,$! $$%!`  L0! * ! @$E) `B0$H! I$! * Xh$I!( I$L'!&ڨ 0L! /   E) $!! PE!0 `0d!d @@$!!\5 ! I$j5!  yT! +/ @$$!!ϖ\S  @0$!!\[ d!d d!d !H! ( )"A!`` JR%!z  T! / @$!(  !@ $! I$I$$!! $!!". I$I$$!!.> jY$!>p JYm!4 la! @d!d $!!  (!A@ H@$!( d!d ! I$J%! ! -% I$I$$!!< H$! < I$I$$!! I$I$$!! H@h! ` I$I$$!! PȀ @!x&HoK  IT! + I$I$$!! $! $!! '4 I$I$$!!*( @$!!& I$I$$!!( I$I$$!!I$H$ ɑI$!  E) + I$I$1 I$I$E)$! I$I$E)$! I$I$E)!ꪪ I$I$E)! I$I$1 I$I$E)!/> E)!xh c2!E)ˏ 0E) x H! I$I$$!! I$I$$!!€ @$!A $! I$I$E)! I$I$E)! l ,E)p!Y!$@!DL!l! $%R"!Ab`! I2$I! $$I! $)"!j I$ $!I$I$! $IH!( aB$I! !I&$I! $$ !( жmڶ! $$I! M I! I$ !I$I0!A TI$! $I$! M!+  JJD!A(4&  $%!Ap  "<!`b0F&pI$I$( I$I$ I$I$I$I$"I$I$"I$I$"I$I$"I$I$"I$I$I$I$ Ix 8b' H$I$I$I$/I$I$"I$I$I$I$bI$I$"I$I$"I$I$"I$I$A@I$I$I$I$ I$I$ I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$A*I$I$I$I$"I$I$I$I$I$I$I$I$ϫI$I$  I$I$~I$I$8I$I$b) I$I$ (I$I$ I$I$ I$I$! I$I$(* I$I! A$H$`XI$I/  $H$!AI$I$I$I$ I$I$! I$I$8 $H)&M$Nb$H$I( ڦM$aE&M!A $$!!$!!I$M$ II6!AE$I$bI$I  rb' @$I( $H$!AI$I $!! m$$!!I $  ٶm;@R$M$b.IiQ 1ir0+ 0c`XN$! H8(mҶm۰a$`T1G&&1Ld N$ B$a@(  Ah0  $ٖ ضm  I$$!B'` b ^ٶ)!!Il$9!l!_ؤ)E ׽IH!կ~$%!PHP A $!`'KJ ! @$!Ъd;!"@ @ A( !!I$I$E)a@!I$I$!  )"I!@ \!( I$! I$! I$A !* @$ $! I I$! H$I$! I$I$! $I$!Z IB$I!*  I$I!* $$$I! $@$! P. $I! H I!^* I&$! I$|H!AzI$! TIɕ$! &IK!- $P"%!A `  $)!* ! ka۶n! H !( H!A k "m! #=H!b 񰍓m!/« Z*z!- Dj%! mږi! ! I$I$d!d ! H0E) I&! * I&! j%)/ RM$@$! 4ېn!*  $@B ! !! I @ E) @B $@! JI!A4( P($H!P`JI! 0t!+ $&`B2E) d!d I$I$e) $!!p Ez$ !b  X!I$L&!  L! ++ H d!d !H$!( I$I$d!d  d!d ! ! ( !C2`$E) I$R5! JTJ!* @!  ! I$I$$!! $$!!>Z` $!! $!!K> !r$!/  U!  Hd!d (Hf!X(  !A P%! !d!d  *!b (A!A IDI$!5UU 0! I$I$$!!Š., I$I$$!!< I$I$e) I$I$$!! 8 I$I$$!! $!!j Nj5!\xJ&@B!^Z 0! @! @ $!!rJ I$I$$!! @$! $!! I$I$$!!**  @$!I$I$  ɐT! // I$I$E)! I$I$1 I$I$E)! I$I$E)$! I$I$E)! I$I$1 I$I$E)!jj E)! ( PtE).> - E)  E)!^~~ $!!  I$I$$!!** $!!f48  0@$!A  ! I$I$$!!(  E)!zk!=! I$I$!  R"! $II! I$! I!* $I$! I$@$!  $I$!  H!  $%! x HtH! A$I$! $YR$H!  $A$! AIE)a I$A$!"  I$H!! H$I&! bH I!^ I$ !_~ɑ$I=!U_  I$! @H!p+ TDHP!H$I$!AxI$I$'*I$I$ (I$I$"I$I$AI$I$"I$I$I$I$oI$I$ I$I$ I$I$z*A$M$bpI$I$>I$I$"I$I$(I$I$"I$I$AI$I$I$I$ 0I$I$I$I$AI$I$AI$I$ I$I$I$I$ I$I$I$I$I$I$I$I$I$I$I$I$AI$I$A+I$I$ I$I$bI$I$I$I$I$I$ I$I$I$I$aڪI$I$AI$I$A*I$I$ (I$I$I$I$( I$I$aI$I$(I$I$@ $A$`I$I$a-I$I$ I$I$I$I$* I$I$! I$I$ $I$   @$I 8( H$I( mS$HҴ$!!A$H II$!AH$I!A$H$ II !AI$I$I$I>/ I[M$ @$Ia&H$!AI$I[ HIH @۶m&H$I/I  m5* ='I\խ)$!BI$I$$!BLFr8,(@9IA$H$ 8(2'I*In$  ap%@I H$I*I*m۶54Mt/}$%@!b'!WHO$ ($II E!MR!W$!%I!ےd!I! !I$I$E(C!I$I$!I &!ꪪA!ЁP!b(( I$I$!* JW$I!!4(I$I$!I$I$!  $I$! I$I!*I$I$! $I$%! I )!*j R"H!!Р I$I$!* $)"A! DI$A!  I$! II$!"* LBA!"* $Ʉ ! $@$I2! I!h* I"=$! I$J!Wz`I$  $I! I !- L$!&p  J! TI$A! .4! `  $I! M! *A%!x VRi! ΄%!/ P*HW!آ  $I!A& *@*%! I$I$d!d !  H0! * $I ! +ۆm%)/ $!  m! I$!  ! * I$@d!d @"$!  H!A P(!%>e& !*j PK! % I$dB2!* d!d (!@ u`!   $!!~z ɒh@!aJ' ( TA ! - "$E) j)!Ax  @!  ʥT$!$& $!! "II!hJ&!/ 0 I! @$d!d $!!  @$!A H$$!!7X  !b@  ! Bk!' 4@ !  d!d  @0d!d `!  d!d M#I$!A H @!J$L$  ! /  !A HR!A p $!! I$I$$!! I$I$$!!. I$I$$!! H!p KI!a &*  d!/? I$I$e)  ! "(!A@ ! @$$!!'R I$I$$!! I$I$$!! M$j=!ɑI$!b $! I$I$e) ($!a@ @E)! I$I$E)!ꪪ I$I$E)! I$I$E)!  E)! `E$!A8 l E)  $!  H$!!% I$I$$!!< @ $!!B @$!@  !  ! I$I$$!! ** s{؆m$!I$I$! H$H! "i$I!Jꪪ )I$I! I$I$!I$I$! $I$! I$I$!I$I$! '!A P"I!a $I{! $D!aI$I$! P"% ! II !( $A$! @ IE) $I$!I$I$! IB$I!" $d! H$Ʉ! L !~ I$j)!x` $I$! I$I$a I$I$I$I$I$I$zI$I$I$I$"I$I$I$I$"I$I$bI$I$ɀI$I$A) I$I$I$I$/ I$I$(I$I$!I$I$bI$I$I$I$I$I$b I$I$I$I$AI$I$A/ I$I$a I$I$I$I$I$I$I$I$I$I$I$I$AI$I$azI$I$!** I$I$I$I$"I$I$I$I$I$I$I$I$I$I$"I$I$!xI$I$A*+ I$I$ *6(I$I$  I$I$( I$I$! I$I$I$I$ I$I$I$I$ApI$I$b) I$I$I$I$I$I$ **I$I$I$I$* I$I$I  p$I( @$!! $H$!A  $!AMҶi @I&I$I$I !AA$I$^I$I$!* $H$I$I( I$@$$I  !Am&MC, h&m&bH$I$!*Iٶm  `' p\pDd\A$!!I$!B A'*`\ i2<&N( I#P$(ID1$9*V'I gb85 h$I$I$A ܰ9K$ x8QO !U% j$ zP'I$ AI$I$A*I@  ȶ!$'I[!Kd# ($$I  @"%$!b (!{!I$I$E(CI$I$!I$I$!\!$!"$!W?!_U@4o!!`પOB! O!U 'm" !AZ $v"H!U_H$m !!З!U IB!U@2B&!aj@P<! " "I!@ 9 I!b  $ D=!aj II! " !@ A! $ $E)a  I ! I A$E)a @$I$!@! !I$I! @ I&!* @ I!x I$"H!)I&!+ B2Iɔ$ ` d0!. R&R H!a $! I$E)a I$I$E)a "A$I!A@ M&H!b H ! a9!zɷ~  j%!-z ۰mۖi!* !!* @d!d  d!d I$C!* C!!* Ͱ- l!/ &,f $!/ M6o! + L&!  zD! ( @$@ d!d dB"$A!  $I$! R-(!bO$I$ * $HH! %  dB2! ( ! I$I$e)  @ $!!5_ $!!Ri Z @!~pyO'!W 4@!   "h$!@  $ !! I$I$E) L$DB !( `B2$! #)$A!  D!)% !! @0E) $@#! ` `,! @@ *!  ! re,!< ^BZ!6c H!b Bd!d  d!d I$I$d!d  @0E) @$d!d "I!`II$ ?  A! !  ! I$I$e) I$I$$!!< I$I$$!! @$!!\ `%! 9C,! 0a!Ë ! @ $!!sk $!!  $!!rjʪ $!!  $!@ P`!ࠀI$I$  ! + I$I$e) ! I$I$E)! I$I$E)! I$I$E)!  %)j @!A `%)!׫ E)ϯ.> $!  @0 $!!XPpB $!! I$I$$!!ʊ*  $! $!!@ (!@ ! $!H!APIB!U+!ի I*H! $N I!Uר m!aRO!U@O!UO$!a@O$!zUUoI$!]UyM$!!6O$ AI$ APPфI$!!  I/!*U $ W!* HH!a H$I!  $I$! I I!* H$HE) (!(!@ I!A "%RF!@b$J$!Z^VVI$I$* I$I$ I$I$I$I$@I$I$!I$I$I$I$I$I$"I$I$I$I${[I$I$bjzI$I$ I$I$I$I$ I$I$!I$I$bI$I$I$I$"I$I$A@I$I$ I$I$ +*I$I$ I$I$I$I$I$I$I$I$I$I$ I$I$I$I$I$I$РI$I$A+I$I$A I$I$I$I$I$I$I$I$I$I$I$I$zI$I$('I$I$A*I$I$`I$I$$&I$I$**I$I$I$I$(*I$I$* I$I$xXVI$I$A/ BI$I$A( I$I$I$I$I$I$**I$I$(( II$!AI$I* A'J$(  A$ $A$ I$I$!AI$A!A &M$I$I  A$I$x^I$I׵+I H$I$I JI$I$ H $!AA$I 4IE&$!!I$I$xI$Iܗ% I"ٶe A P$`Mi $!BKmٰm+$(pb\I$rĉ)( 'IX( I@$ JD1 V Æ%K$ $!BH$$A 8rD^vx!`_5  $ *z$I$I$ ^? IW ) b J a۴)IJ I-P I$I$$!bI$I$$!bA$I$ I$I!@"<@$ `* " !@a!*$!!p* ۚi+! O ! I!U o+$!W H{<!WU  y!U жIҶ!U $n!WU $y.I!UUI"I$!UUI"J!A$!UU $ɟ!ARIҶ!@X I& *I$!uUU$d$ `I' !j)$zB!!&I4! jy$! $I! $@$! H!H! I$I$! H$I ! A $E)a I$@$! zD@!!($ $$ ! @ J! I$(A!aI$I& 7 $ !/ $ 2H!* $L&! $$! I$I$E)a  I$E)a `0H!* 2Im!꫾/@!z >K!*b I)J ! 0ܐm!+ I$H E) Ͱm! LB& !  ! * m6h!* F`1@$!? MM! * hH$! $I$!* $ E) @$I!A HI!! P"($I!X`ɑI$!A*X $I!  LB&! * d!d d!d !`$$! * @$d!d j(!b@ ^o!a * LA!  "@!(`  !! I$E)  H&! *( DJ$H!A((h % !^ 0I! /  d!d  $!! $!  `!  !& B $!Š KjE!I> )T! ' A E) HC !( ! d!d !! $E) J%P(! HID!ˏ/? p ! @! $!! H! $!! 6  $! ʨ( Қ)@!! bɐ!ˏ/? ID! %5 I$I$d!d $!!O￿  $!! % I$I$$!!*   d!d !@ ! O$z&!xxɑI$ /- $! I$I$$!!  I$I$$!!,< $!< I$I$$!! $! @!a !$!! % @$H$! \ C4xE) $!!B(  $!!%% @!@ 0!  I$I$$!! @ $!!P`@ $!! $!!C K!W I޶!U $.I!UUI!UU?I"!jj?IN!b $i"5! j yr! h*IҲ!aH!N!O"I!UI>!I$b _$INI$ I$$ *I? % @Iɛ$! U V! $R"I!Ap TI $A!a   I!A $I$!*HL&!!(zI$I$AI$I$AI$I$<I$I$jꪪI$I$ I$I$"I$I$ @I$I$!.I$I$I$I$I$I$7 I$I$ؼI$I$// I$I$I$I$ I$I$"I$I$I$I$I$I$"I$I$0I$I$AI$I$A/ I$I$!I$I$aI$I$I$I$I$I$I$I$I$I$ pI$I$aI$I$A>. I$I$뺾I$I$ $I$I$I$I$I$I$I$I$I$I$I$I$AI$I$  I$I$I$I$I$I$I$I$I$I$I$I$I$I$(I$I$וI$I$bjI$I$bI$I$I$I$I$I$I$I$`I$I+ %s$ I$!( H$I$ I$I$I$I$!AI$A$I$I$$H$x^I$I$ֵ%- $H$ I$I$(* I$I$!AH$I$!AI$I( I E&!(@`I"I$I$IV5 Il۶a 9px\Im۶$!!II $!!-P-P $!B'IXr\UI6H$(Ii$( HI4("'IXa^UI-h۶m&AppI$!Bm$$!!t a^% 0`M'$I$_I$I b $L Wc aAJh !@$ !I$I!۶ !'!W O!UUb$[ UկO!U~  % !*U  N!W $j!Wu!IR!U))!  !'I$ !H! !j!  I$I$!I$I$!!(!z@!!H!_I"!UI' !ꪂ$} b`pIB'I%$I$m  I$!UU  !  lI!ʫ PI !!)? H F I!!8  H$! H E)a dB$@! $$ 0! @J! I&*H!)$I&   \!a +  I&C! ! A A$E)a I$H$E)a $ E!  Ʉ`B! %5( !z/hB?!^{ tIT!% !I$!* $ 0! IE) &i&!! $I! + mX ! 3Q! : JM{! - h!A  C$I! E) C۰m! $! * Z"-* !XII$!UU $!  L$! ( Hd!d $IP$!PP I! *( " !@ ij !  ! 7  `$E)  HB&! * H$$E) R"%$ !  I$!** $C2 !ꨨh$ $ $! `0E) @@d!d Hd!d $ ! @$d!d P+@! 7!a $HA! "i I!` )kv! (( Hd!d H&DB0!(  $0! IH!`I$M$!  I! I$I$d!d H$!!' I$I$$!!  @ $!!p` (!!@ ! Lb%!? /!Pr 0! Hd!d  @d!d !A @0d!d d!d )! P5!ࠀI$I$A**x % !!" I$I$$!!((  ! H$! I$I$$!! I$I$$!! . $!!@ `$!!7] $! (C%)ώ  (R !A@ P% H!A p9P!   $!!rJ $!! TP ! $!!& !!( mP$!!!@$!!pI$I$E(CI$I$!I$I$!!!!!!P& I$I$!I$I$E)a !~I6!U~I$!UU_q$I% I$I$* 'I$!* @I $! $H! * ("4!`rAb%N$A`I$I$+* I$I$ I$I$I$I$aI$I$"I$I$"I$I$ I$I$"I$I$abI$I$I$I$bI$I$ I$I$I$I$I$I$(I$I$"I$I$I$I$(I$I$I$I$ I$I$A?I$I$b*I$I$bI$I$I$I$I$I$I$I$ahI$I$ I$I$I$I$AI$I$A+I$I$"I$I$I$I$I$I$I$I$I$I$ I$I$ I$I$!jI$I$!I$I$ `I$I$I$I$! I$I$I$I$I$I$zI$I$A/I$I$I$I$I$I$I$I$ZI$I$ I$I$I$I$$((Q$ I$I  РAI$H$I$ ( :I$I$4I$I$I$I$( I$I$I$I$V׵-I A$ I$I$* I$I$II$ .&I$I( I"E$I$I$`XI$I$a/ i۶m"%JKZVI-ж$!!Mm۶$!!NNb8 @$I"!Ai&I$*I$I$ I $I$/ h۶$!!m۶Mж$!!h6$!!,%NZW5I8 p=&I$I$I$ I$@!Z`XpD$ܗ@ %۶m@ @ $!4$!b}$!WU$I$I$I$ [q$=]U$IlW }I!J A'OZ H!տP!*I$!R"%APm۶ R"$$!Z A$!oj@ ) b* $ !!ꪪL A&,I$I$E)aI$I$E)a$!@0 !`@!H!! @ !I$I$E)a!}!WI$ !UWɓ$I!UUU~I$I$* $I$ JI$!* $ ! I$E)a I$I$!I$I$! "I$I!B TI$I! $@dB2! HI!z I$I!~I$!b+ $@I! !L0! $I$!"* HF$@!(  I$! * L&I!jF!bEz$!A I,%=![ "$H!jꨢ R.%$A!!  $IE) I2I! m״! * [&h!蠀 B[5kV!Az( Iv! - H&!  ! * $ ! $@! $ ɐ!* z"%"!!@ I$ A + @I! I! ** H$ $E) dB0$H!  !! "h$!`USV {量 tAT! - A ! ( I! *( $@ E) H$A ! $@jD!(@! $2h!(` V$I!9*  I! I$I$e) d!d @d!d  E! X%! (` Je!b &.  ɐHE) `B$B"! H! B$@E) ! ! ( $$R+!Р `"%#)! ɕD! //  d!d @ d!d $!!(" I$I$$!! $!!/ @$! ` "Ȁ@!p !A% - <!-5W ! @d!d  !A4 I$I$e) !E)   !  @(!!@I$I$!h ɕd! *-/ $! I$I$$!! " I$I$$!!.<8 I$I$e) I$I$$!!80 @$$!aP T@@!b $!! @d$!,80 A! ,  H$!  !& I$I$$!! *** $!! &4 I$I$$!! @$!!4 I$I$$!! @, $!$ I$I$E(C @ AI$I$E(CI$I$E)a!HD A4( ۶mۦ%) &jE)A I$LE) UUU R%ID! M۶m $!!@!!I$I$!!ꪪM WzI$@!I$I&$I$ I$ I$I$I$I$ I$I$(( I$I$"I$I$aI$I$"I$I$I$I$I$I$I$I$I$I$7I$I$PI$I$>/ I$I$(I$I$`I$I$I$I$AI$I$I$I$ I$I$I$I$AI$I$A/ I$I$aI$I$ `I$I$I$I$A@I$I$ I$I$"I$I$ (I$I$AI$I$A?/ I$I$"I$I$ajI$I$I$I$ApPI$I$I$I$"I$I$aI$I$AI$I$A I$I$I$I$ I$I$`I$I$I$I$I$I$"I$I$hI$I$A)I$I$"I$I$I$I$I$I$I$I$I$I$I$I$A`bH$I$(+ A$H$!AI$I$( I$I$a I$I$a$I$I$ I$I$`I$I$^WI$I$ I$I$*I$I$I$I$ I$I$*  A$I A$!I$I$ . BI$IA@A&Mb $!!$!!ТE&HI6E$I$bI$Ib*I @$ (I)ZAm۶$!!I$A$!!EѶm$$!!N$WU5 P$H$I$I$/m3' `\ĉa x5+`@-  ,I@` )++*Id0`! H&!_<&I$AI$I$ I$I$/I$I I/%!UUyS! !ʊ!B!)!@"%$C ``I$I!˶ öm V"`K d  I۲! Mɖ !b ҤmE! mm E) MI%) #7N %)( "5kE)j I%)b nI%) ۴I $!@ ۶nE)+ $IE) $)$!j IE)a ۺm !ꪪ $I! m6m !ꪠ!$!I$I$!I$I$E)a@!_ꪪI$ !UWI$I9I$I$* I$!  I! $ $! I$I$!  I$E)a I $E)aH !ꪪ $IH&!+ I$A!I$M= *@&y! * L&C!!!n $II! I$I$! H$ ! I+H! *Th!} tJI1! mۖm!/  ! I$I$E) $A! !I$! * &i$(!@ BWA ! 0Ix!*  $C! "I0I!@+ 9DH$H! *( $($A!⊊0!L&@ ! ɕ! % I$I$! $ ! * $I$!` L@&$0!(  "! Jڤ*H!Ah@$![y $HI! H&! ! ! II$E)a  (!.*` IJ!!  ˰U!.: ڮKf!8  C!!  ! * I$I$d!d  @d!d PI! "$A!` )/K!iM 4@ ! $!E)  H&! (( !H!@ K@!    &E) ۢm&m!ꨨI$M$   I!  d!d H$!!% I$I$$!! L@!A P  ! d!d G=!\ z'P.$! h  TA! d!d H H!4 I$I$e) @$ d!d XF!a8 $!!k. j%5!xI$I$//? 0t!!A !A I$I$$!! I$I$$!! I$I$$!! @$!P I$I$$!!‚  @$!! 7 (i! e!  $!  $! (( I$I$$!! $!A I$I$$!!  $!!rbB E)! E) m6kE) m]E) Fr1)E) j{ E) m6IE) [ME)( 4iZ$! mm E) ɶ؆mE) I$I$E)!* I$ $e)E)UR [m۰mE) fnضmE) ۶1²IE)A` I$I%E)! I$I$E)!* xE)a( E)4IblE) U I$E)!UU ZuPE) I' E) I$I%!~I$I$I$I$I$I$I$I$"I$I$I$I$I$I$I$I$ $I$I$I$I$AI$I$ I$I$ I$I$I$I$(I$I$I$I$"I$I$I$I$(I$I$I$I$AI$I$A?I$I$!I$I$ajI$I$I$I$I$I$jI$I$I$I$I$I$I$I$AI$I$AI$I$"I$I$@I$I$bI$I$I$I$aI$I$AI$I$`I$I$A>/ I$I$ I$I$**I$I$I$I$I$I$I$I$"I$I$ pxI$I$A?/I$I$I$I$I$I$I$I$I$I$I$I$I$I$.I$I$ABI$A$AI$I$(I$I$(I$I$! I$I$( I$ $I$I$bx^WI$I$b- H$I$(I$I$@I$I$aI$I$ I A$ I$I$!hI$I$* iI!A$M$A  $!!$!!ME$ (HI$@$I$aI$I$ $H$(IE$ H$H!Amm۶$!!h 4M (IX$9Uz@"%I$pI$I5 Ip1 <:NxWI$!!I$I$$!BA$I$i P 0<&X<'I$` $I$*I$I$ I$I+I 6mc! $I۱-%) M$)E)ڷ( M&E) IbnmE)U mmE)* IE) U  mE)!$ I2l[-e)! I2I$e)! II$E)! ,( H$e)E)(`:HnE) $IBe)E) $Ie)E) $Ie)E) ؖ$Ile)E) $e)E) $e)E)^ mm۶e)!` I$I$E)! [mmE) I$I$E)$! I$I e)E)U E)!j demE) I$ $E)$!(ۖo&`E)b I$I$E)!  E) @ $(E)` IҶmѶE) U IR'h۶E)!UW( &E)` M>KE) I$}!I$I$*)I$  _  !* H")!@!I$I$!!ꪪ $@! "H@R!+ I"&"H!x K$! "H$ !h !$IH  @$ AI$I$! C$A!* H"! @"!Zk !|X&! . $A!*  I!! I!E) @ ! "I$I!B * $H!! PZ鯔!b'  $[! / )(@!A@ @$I!a I$H$E)a b$(A! ( I!*I$h$  AT! / H$I @"H&I! ` Ŷmۺ!!  H! $`H$E) ͤ^+=!` WjV5!%{ $II! ( $I",!@ IH! "A$ !⊊* $  I!* @ !ꪪ @7A! $@! *" LH&`B0!(  ! @!  E) @E) zEГ,!a(( Tz4!%6  `H$E) DB0 0! !! DI$H!7* I! ** $)" !@`$ !  D! / #l! @0!  d!d I$I$e)  d!d I$I$d!d 4 !Xp  @$!sAM L! %5 @$I E) C $BE) @! d!d !d!d $$!!?] Ȁ@!`I$I$ I\!A.+ P$! I$I$$!!(* I$I$$!!  @$! ` I$I$%)!ժ E)jj qۖaE)" @E)!__< mmE)m I۶h۶E) E)@ ۶ e)b* ImI%e)! IlI$E)! I $E)! ɰmؖ$e)E) m& E)A $$IBe)E) $Ie)E) $Ie)E) ۖdIme)E).* $e)E) HI$e)E)zWv<ضmE)! I,I E)!  IdÒ,e)E)* II$e)E)* I$ e)E) I @$e)E)/ I$I$e)E)w I$H e)E)܃ I$I$e)E){ XE) [mE) `  d۶E)a,4 I I$e)$!  E)  I$I$1 I$IE)!. E)!$ II$e)!* JE)W I-ömE)U I$E)U] I$cmE)UU I$I)!I$I$I$I$"I$I$I$I$I$I$I$I$/I$I$(I$I$@@I$I$ I$I$ I$I$A*jjI$I$AI$I$I$I$AI$I$A// I$I$?/ I$I$"I$I$I$I$I$I$I$I$"I$I$ I$I$AI$I$ * :I$I$I$I$"I$I$"I$I$"I$I$I$I$`I$I$I$I$ pI$I$aI$I$I$I$I$I$I$I$I$I$I$I$bI$I$!*I$I$ I$I$I$I$I$I$ `I$I$뻾I$I$I$I$~_I$I$kuI$I$ I$I$"I$I$* I$I$! I$I$`I$I$I$I$b`x^VI$I$- I$I$I$I$ I$I$! I$H$ I $ I$I$ (I$I$a/ I$IbI&H$aI$I$ I$@$!AI A$I $( I$I$I$I$+*  $I( Ih$ II!A @$$!!m&I A$@$I$xVI$I5 1H$ pĉ\P-$!BI$I$I$I* $8&*X='I$I$Ia* I$I$!W} I$E)A I E)U E) E) I$I$)( ú-۶mE)@ k@ E)* I$H$e)E)j I$I$)( I$I$)( I$I$1 I$I$e)E)z* I$H$e)E)-W H I$e)E)_ II$e)E)^* I $e)$! I$ $e)$!>1۶mE)` %I$e)!mKxE)a4, $ۖ$e)$! IH$e)$! I $e)E)W IH$e)E)- W $I$e)E)  K$$e)E)\ II$e)E) @$ e)E)x I$e)E); A$I e)E)RԪ I$Ie)E)Uj/ I$I$e)E)_ݹ ض-۲mE)@ 0lٶmE)В1ME) b II$E)$! ۆm6,E)` I$I$E)! I$I$E)$! ۶m0E)A` I$I$E)!* 3l۶mE)Z IE)ר |@E)ט $mE)!UU{ I$E)a I$I$!I$I$!H !ꪪI$! #$I!_!Hj  &@0M!+ $I)!x! I$I$! C$A!* DR"(! l"%NA!!ڠ To!/'  d2!. X;ݚn! I$E) I$ ! ! I$! ɕi!!/ h*%H!R z ˆLXt!,  ! * !L! ((  $! `@$C"E) %P"H!A .`$ !A-!ym TAJ!- II$!** 'JD! ( $I$e! H$A$!  $H!H@ IH!a I$N$>> "iI!aB  HP!!Р @ d!d I$I$e)  @$!!^  !a&& "! {$!% IDH! ! $A IE)  L! (( @ d!d H$H!$4 H HE) $!!b㩥 M'z!!^zx ɕdE) I$I$E)!} I$I$E)! I$I$E)! I$I$)( I$I$)( Xe۶ E) E)  I$I$)( I$I$)( I$I$)( I$I$1 I$ $e)E)V z $I$e)E) II$e)E) U I $e)E)W} I$A$e)$! $H$e)$! dڶmE)a(4`be)!@jmmE)  $$e)$! I$e)$! I$$e)E)U} AI$e)E) $I$e)E)> I$mZe)!$I E)b  I$Kae)! I$IaE)$! I$I$E)! ۶plE)a&( I$I$E)$! H$I$E)!* $I$E)! $I$e)$! I H$e)$!  KaضmE)4 I$I$)( I$I$)(  mۆmE)4 I$I$)( I$I$e)$!( I$I$E)! I$IE)$! A$I$e)E)U $I$E)$! mҢm۶E)!\ IöaE) I$E)UV I$IE)UU_I$I$ UUU|I$I$@I$I$I$I$ I$I$"I$I$ I$I$I$I$A(I$I$aI$I$AI$I$AI$I$ I$I$"I$I$I$I$I$I$ `I$I$I$I$I$I$AI$I$!I$I$"I$I$"I$I$"I$I$I$I$I$I$AI$I$AI$I$ڪI$I$I$I$I$I$I$I$I$I$I$I$*I$I$ I$I$A+I$I$ pI$I$I$I$(I$I$I$I$"I$I$I$I$bI$I$I$I I$I$ I$I$! I$I$I$I$A I$I$ЦhI$I$!+)I$I$ I$I$** I$I$! I$I$II * H$I$`I$I$\W5I$I H$H$I$!A $I$!AI4A$II$ H$I$^I$I$+ I$I(  6m$I$I$!A$@$M$I( d9H$H$I$I)7 %J$XVUI$!!$$!BMi/ O$O#!! m6 E) O2 E)* E) I$I$E)!/  E)A@ E) I$I$)( I$I$)( I$I$E) I$I$E)! I$I$E)! $I$E)!* I$I$E) I$I E)$! I$I e)! I$IE)! I$I2`E)! I$e)! I$ɶe)!  I$$ e)! Ie)E)U IR@e)$! I6Ȇe)$!$In#8E)A` I$e)E)U IҒ$@e)$!1e)  I&mIe)$! I$$ e)!  I$M e)!( I$ e)!$I %E) P I$[le)! I$IeE)! I$I$E)$! ۶%۶aE)bp I$I$E)!  I$E)! I$I$E)! H$I$E)$! H $e)E)/ ۲ mE)` I$I$)( I$I$)( E) I$I$1 HI$e)E)[ I$I$E)! I$H$E)! I$I e)$!* I$I$E)! I$I$E)! m-ڶE)!_ I6mE)!U^ $)E)ah )Q4$!Aj` II!A ! "I"%I!B $R !A !I$I$!  I$!* DP"(!/ J &C!\r I$!5U Mh!/ !  $A$E)a  I2$I!ꪪ !A! +* L\ !> JU*!sm $I! + !ɐL&!I$I$! $AD!A( ")I A@A( b DI$!/$! $5Ң !!` I!! H$$! `$! ! P.5.i!Xx`h$䁒![ym R"hI! ` $I&C"! H$!I$I$!!!j Z !  @I$I!* I$H ! I! R %@! $A!  IK!( % jO<!A( TjV!' I$H$! A& 0! `H$A!* A $!  ! * $@ 1! x%@(!`  I$!A ko  H!7 .(!@ !  d!d d!d HJ!!$, X6I#-!\~uz P"$)! B TA ! $ dH&E) P*%&!! @R%)ڰ $@ 4E)p E)!ի I$I$E)! I$I$E)! PE)A8 I$I$E)! I$I$)( I$I$E)! I$I$E) I$I$E)! I$I$E)! A$I$E)! I$I$E) I$I$E)! I$Ie)!  I$I E)! I$ImE)! I$e)! I$)Ie)! Ide)! Ile)$! IBHe)$! I$e)E)U mKMXe)a,$ I Ie)$!]:Ce)*`@ I`e)E)U I$%Ie)! I$de)! I$le)! ?e)! _Tme) I$e)! e)! D I$e)! m[i$e)! iÖ%$e)E) Imؐee)E)" IҤ Ke)$! I$d e)! I$M e)! I$I-E)! I$I$E)! ˰l۶m%) mKmE)(6( ۲m۰mE)@ A۶mѶE)!*4 I$I$)( I$I$)( I$I$)( @$I$e)E)u I I$e)E)W/ I$H$E)! I$I e)$! I$I$e)$! II$E)!` Lm E)~ I$E)U I$j%) ߪI$I$ I$I$  I$I$(I$I$pzI$I$AI$I$**.&I$I$/I$I$@I$I$aI$I$I$I$I$I$I$I$`I$I$AI$I$A?/I$I$I$I$(I$I$"I$I$"I$I$I$I$"I$I$!@I$I$*I$I$aI$I$I$I$I$I$ 6,I$I$I$I$I$I$zI$I$A+I$I$ bI$I$a I$I$I$I$AI$I$I$I$I$I$aI$I$A 8I$I$I$I$I$I$ I$I$I$I$*I$I$A I$I$A( I$I$I$I$ޫ)+I$I$"(*I$I$I$I A@@A$I$bI$I$XVWI$I$ * 6m$I$I$  $I$API$H$I$ I$I$z^I$I$+ I$I( I$M$b&I$I!AH$`M$I $h$xI$I$~w-I)4 @$I ɟ+$!UU E)UU +E)* E) - I$I$)( I$I$)( I$I$E) I$I$E)! I$I$E)!* I$I$E)! P%)!0m E)b I$ن e)!  I$ؐdE)! Ilض-e)E)u  ɲm$e)E) IZi$e)! [$e)! lI$e)!*`۶m;e)!z Pme)! `۶m;e)!z~ lFE)A $I$E)!+ $I$E)! жuҶE) WmL8re)a`ȆmE)a XIe) UжҶe)ж߶e)fIlE) ժ $I$e)!жm[?E)DlE) %e)!* m'e)пe)! mme)! -YI$e)!  ۆ X$e)! `$e)E)] IR@e)E)  I&Xe)E)V I$e)! I$lCe)! I$K2 E)! I$I$E)! @E)P ذmmE)b I$I$E)!̶mømE) I$I$e)E)m{9 I$I$)( I$I$)( $I$e)E)U II$e)E)^ I$$E)!( I$Ie)$! I$I$e)$! HI$e)$!  S-ڢE)!^ l6lE) IE)!UUx ۶nZE) $I"(!b*@!!a $II!  I$!** DP"(!L&@O!W^z9O }  FR)!/ $ ! H"$I!ʪ HI C!! .L`!!\`H4!{ (@I!!LI!A*`!ꪪ0 !J&@(!I!+-/@ !  I!  $I$E)a  I$! * I„HH!((  h$!A ( %!7 IH$!* $JE!I$I$!@ !ꪪ! K!UR+!7 u@6,! R$ !a( $IR"%!`  m! l&h!+  E) "a$!bŠ"P!Yme TA !- II$!*"*  H$! *( I$@$E)a H$A$!( P I!!p "I!jꨨII$ = J 0I!A$ " !@   ! I$I$d!d  d!d @$d!d "$!` )@E)e E) AE)!( I$I$E)! I$I$)( I$I$)( I$I$E) I$I$E)! I$I$E)! I$I$E)! [efE)   I$Ke)! I$۶!E)! I$le)E)U  IҖ-&e)E)p Y ؒ$e)E)u I m$e)! I$e)!z ۰%I$e)!f۶'e)!W 0۶e)!9E)!` жiE)  $I$E)! `۶ce)!m$me)m 1E) 9mKE) `Ibe)жI޶e)fIbE) U жq۶e)! $I$E)! @$k;E)@-E)IRI$1II$1.n1_eI$$1eI$$1m[?`f1_ .I$IB1!U_m۶e)* `E)* m6E)(@$E)*4M$e)* I$e)  2$e)$!  I%me)E)^ I$Æ e)! I$I`e)! I$I$E)! I$I$E)! I$I$E)! 38۶mE)pp I$I$)( I$I$)( I$I$)( $I$e)E)w I$I$e)E)W[ I$@E)! I$I$e)$! ۶ ۶-E)` ۆE)! u-2Ae)_` I$8lE)U] I$I(E)UUWI$I$hI$I$ I$I$I$I$ajI$I$bI$I$"I$I$I$I$"I$I$A`I$I$AI$I$A?I$I$(I$I$`I$I$I$I$"I$I$"I$I$"I$I$AI$I$A?/ I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$A I$I$I$I$I$I$I$I$I$I$I$I$AZI$I$a(* I$I$ *I$I$I$I$I$I$I$I$I$I$I$I$AI$I$A/+I$I$I$I$ I$I$AI$I$I$I$I$I$`XVUI$I$% I A$I$I$( I$I$!AI $H$I$( H$I$hZVI$I$- I$I$A $I$<<I$I$$ I$IIa`A&M$p\ I$I!WU- ɛE) ME)U )E) I$I$1  E)b@ E) I$I$E)!* I$IE)! I$IE)! I$le)! ۖHle)  I2l$e)!ڄdmE)b(hpe)a. `e)! @۶mE)!u *HE) $E) X$%)  XE) @I$%)!UU  !A@ E)) H%)b* PE) %E)z 6nE)  `I$1$!*eI$1!UWI$1!UU ?I$1! U $I$1$!U'I$1z $I$1! I$1!U_e@b'I$1!UUJHI1e?I$1!II$1 II$1UeIɟ$1!U*UJI&$1ըeI$$1.?1.f1.I$I1!UU NE)נ ۰mdYE)D$E)DN$ٜe)  I$e)!  l i$e)$! I-de)E)j+ I$0`e)$! I$K e)! I$I E)!* I$I$E) * I$I$E)! I$E)! b۶mE)A I$I$)( I$I$)( $I$e)E)  I I$e)E)^ I$ $e)E)U\ I$Ie)$!* I$I$E)! (m[E) /c`E)!~8 IE)j, IE) I$I$!!ꪪ X,!ϣ$PB !UW^kI!U  b(% ! I$H$!I$I$!H ! #HA!)Kj!m^ !9!a!I$I$!X$`! J aBI$I$A* ! HH A8 I$H$E)a $I$!!B $IH!  M#$I!怀E!i TIK! R"%$A !а!I$I$!H!!ꪪ #0$!>P!  ɐ! $EZ"U! $C IE)  !A&&  MR$I!: e,!Xp E!%7 I$H$! H$A!' I! A I!* $I$Ȅ! I$I !H'`$ \Xx`)!  IE)  IB&!* HHE)!UU `E)!UU I$I$E)!׫ I$I$E)!+" I$I$1 EE)A I$I$E)! I$I$E)! I$I E)!  I$I E)!۶-&E)b` Im$E)! ɂ!ؒ$e)$!ܼ-E) mܖE) жm:E)!{_ ضmۺ1E)z `E) 0`$E) $%)*+ hm!(( (R# E)Aj PiD%)!  DPE)a $E)!U XE) DE)( mme)!. .I$1!_nI$1!UUBI$1!`UU 'I$1! $I$1!$I$1 I$1!*I$1!UWeMI$1,JMI$1e OI$1! Ibv1!_ I$۶1! le)!^ f1!.uҶ% e)qm le)mE) &E)~fߵe)жmmE)* HE)j i @%) 6ME)ߠ t $! 1 hE) ۰m֧E)*mF2E) ۖmE) [6ٖ$e)! I¶-4e)$! I$e)! I$I e)! ۶mܖaE)  I$I$E)! I$I$E)!+ I$I$)( I$I$)( $I$e)E)~ HI$E)$! ޶m؀gE)a $@"#E)` m[mE) I$I$)( E)x I2&۸aE)UZ I$J@E)UU^I$I$I$I$"I$I$jI$I$ {I$I$"I$I$AI$I$!**I$I$I$I$I$I$I$I$AI$I$ ( I$I$I$I$@I$I$A>I$I$AI$I$!@I$I$ I$I$I$I$`I$I$I$I$aI$I$A?/I$I$ I$I$I$I$I$I$ I$I$I$I$I$I$ ЀI$I$a I$I$*I$I$I$I$I$I$I$I$I$I$AI$I$A+I$I$I$I$I$I$I$I$I$I$I$I$AI$I$A/ I $H$I$( I$I$!AII H$I$(4I$I$ `I$I$% I$I$*I$H$ I$I$!AI I$( I$ $!UU- ?E)UU% I*E) E)!) I$I$E)! I$I$E)! I$I$E)! I$IE)! ۲mmE)j IдmE)  H$e)! mѾ?e)!˰l۶qe)b. $E)!U @$%) m;! m$!( 6Iv! f;6! K$!a vBn$! & !@ ܠ0%).) LE)!W mۆeE)mm1AB-Y!Ie)+ % e)!^LB$@e)=@e) I$e)! IbVۆ1E)U IB$Ie)E)~ IB-Ie)E)U Iжe)E)U Iж1E)U IҶֶf1E)U I@e)E)_ I [[1E)U$ 0e)` ImԆ1E)ժؒf1b. Iö1! IB&e)! I$ۆe)!6e)!*f1!]^ݶl;`E)Mm e)* (E)*z۸mE)ؒ}˔e) @E) ME) l%) 6$!  0As%) ߠ $5E)@$E)IxE)  I$e)! [lde)E)% I6e)!  I$Ke)!۶mDE)( I$I$E)! I$I$E)! I$I$E)! I$I$)( I$I$)( $I$e)E) #m6,E) (@gۆce)!D-ÒE)O mٶmE)  I$I$E)! m `E) ۲mE) DM!!&.I$x"$!UWV[G D  / J %!I$I$!I$I$! !$I2!+!zzE"!mwp!ˀ@ !X 0!I$I$E(C-I!a *A( !sII$ /7!ꪪ !!. !ꪪ! !+ I! z%%!h`gZ$ * II$!*(  ɐ`H&!I$I$!@ !! !y"!:z ȄY@6! JT$I!$(  I$! **  $E) H$@$!( A"(!@ 2I!AA1Ұ Yye 4II!!!I$I$!P !  $I$!*(  ɔDI:!-%  E)!U I$I$E)! I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I E)!cmE) ؠ I$e)E)^ نdI$E)!۶qE)@ m6E) &E) ؖ$%)  a$! Id! &II! 6@$! It$! Nm$! $@h! !E)!Um۶mE)!/۶mE)ybE)! `e)! ضme) wqBIe)AL) me) IՆ1$!* IҒْe)E) IBdKe)E)W I%ɶe)E)U IВe)E) Iֶf1E)U Ivֶf1E)U I@e)E)W Iav1E)Um+If16Cf1jm֐$e) %$IBe)$! $I-e)$! $I$e)E) UMQm۶e)A$ $I$e)E)0U ڶ$f1E)U ֵ$f1E)U $e)E) mkf1E)z I$@e)! IB6e)! YE) -~bۤae)}̲$ HE)ߪ E) o %) Z#I] I!bh b OJ! P$mU! `* nfE) l{E)!$v|He)(* [de)E)`- I$ae)!$I$ 0E)@ I$I$E)! I$I$E)  I$I$E)! I$I$E) 8L6rE)a( X,I$e)E)` I$I$e)E)Ux+ I$I e)$! I$e)$! l۶-E)@m4hE)xI$`7IE)^ I$ME)}_I$I$I$I$I$I$AI$I$A>I$I$(I$I$ I$I$bI$I$aI$I$ @I$I$I$I$AI$I$A** I$I$I$I$a.I$I$I$I$I$I$jI$I$I$I$AI$I$A I$I$a I$I$I$I$I$I$I$I$I$I$_I$I$A(* I$I$I$I$I$I$I$I$I$I$"I$I$aI$I$A//I$I$I$I$I$I$AI$I$AI$I$ BI$I$AI$I$A?I$I  H$I$( I$I$I$I!AA$I$(*I$I$axI$I$ 6' I$I$ApPI$I$  I$I!UUU% IE)UU- I$E)+ I$I$E)$!+ I$I$E)! E)  ۶۲aE)B m0lE) I$H$e)$!* I$I$E)! l۶mE)! `y̖E) (* $E)W H$!~W I!U Җ$Ib !+ !*$ Is$!* 9OE) i;E) vl۶=e)!*9e)aj IK&e)!  IҖؖe)!/ IJ$6e)! $K`$e)! )@L$e)!@`Hm!YE)prm۶f1 $I$e)$!* $I$e)$! $Ie)$! $Ime)$!** I$I$e)$! I$Ie)$!۶9E)` I$e)! I$@$e)$! I$e)$! m e)!@ E)  I$۶ae)E)Uòm&AE)A` A$Ie)$! $I%e)$! I$Ie)$!  h$IBe)$!* $I4e)$! P2$IE)Ap !I$e)$! I$f1E)U N$1E)U @J&e$e)E)  $ $4e)E) I2kg1$! IҶ֮1!tL$e) k e) _ӺmE) o>6lE)~ @g%) :iMh$! I$!A& ! ")mm!A@ ɐdlhE)+@$E) ۲mE)a@ f`e)!  I%6`e)! I$Ie)! E)*  I$I$E)!/ I$I$E) * I$I$E) ۹%6E) $I$e)%) I$I$e)E)V I$@e)$!* I$e)$! I$e)E) ۶mېE) $- E)` I$dmE) S! AP!I$I$!!ꪪ !j =!^z1/4qM" p!@ *`&!A I$I$E)a!ꪪ !J'@0$!a   *@' ! H$I$!%! J(A I! R"A$ !Z* !ye AH!H A0!H a!(  H)!p!  b;!I>P !I$I$! @ ! I$ !  9R" !zZ* LI$!(( ʧfZ%!\X  \!%%7 JI!A @ !I$I$! ۺ-4E)+ IE)!Uի E)!* I$I$E)!  E)j I$I$E)! ۶}[mE) I$$E)! I$I$E)! I$I$E)! m۲1E) j  P%)! f;$! $Iv$!_U 4ۉw! Z۶m+!!J ۷!  $! !g E) [mE)!/ m۶e)! ɘ Ie)6 I`e)! I ٲe)$! $$e)! dm$e)E)W$qdJe)к9m#IE)1Vm۶f1  X$I$e)$!( $I$e)$! H$Ie)$! @$I-e)$! $I$e)$!  I$I e)$!۶d@E)$ I$ e)E)^U I$ e)$! I$e)$!$I" E) I$ e)$! I$le)E)-˱mIE)4 I$Ie)$! X$Ide)$!( %K%e)E)x `2 e)E) l[%e)E)dqD39e)a` lIe)E) - [$e)E)`z Id`e)E)U( I%0e)! I$me)$! I$me)! [$Ime)E)UW $I$e)E)Uz $ؔI$e)$!* )I$e)!  %$e)E) I$Жe)E)z I&C"e)!@oe)!_uB$ HE)_ ]״%)A m ! $! I$!  $%) U ۰m%E) me)!m[qE)  I¶ e)$! I$Xle)! I$I2,E)! I I$E)!<* I$I$E) I$I$1 $I$e)E) -۲mE)@@ ۲mmE)` A$I$E)! I$e)$! H e)E) mۆmE)x I& E)U^ I$I$!aWI$I$ "I$I$ I$I$ ( I$I$"I$I$I$I$"I$I$I$I$A𨨪I$I$AI$I$I$I$I$I$I$I$ .&I$I$I$I$@I$I$!))I$I$I$I$pI$I$I$I$I$I$I$I$I$I$A6I$I$ *I$I$I$I$I$I$`I$I$AI$I$I$I$AI$I$A/+ I$I$ I$I$I$I$I$I$Ah* I$I$`I$I$*I$I$a-+ I$I$I$I$ I$I$ $I$I$I$xI$I$A/I$I)( I$ E)UU ITE)) I$I$E)!)  E)j E)  I$IE)!+ I$I$E)!+  ضmE) a۶m;E)!_ -E) Қ%) Nb'!d'! O۶m' ! I! N* E)կ* IҶmۢE) U I$I6`e)!LI@e) Imme)$!* 0˖$e)E)  mI$e)$! %I$e)$! @$I$e)$!*X̶me)A. ۶mٶ E) ۲mۀmE)@ ٶm`E)A I$ؒae)$! I2,ٖde)E)/ ɒ K%e)E)  I- e)E)   I$e)E)? I-e)E) ÐdIde)E)?7* ۶ Ie)E)*/ K%me)E) ɖ$I e)E) /  -X-e)E) ؖdI$e)E)* ۰ ɶme)E) *!e)@IٖmE)ئe۶Ie)  ؆%2le)E)Ze0IE)A `6 e)E) %2i4e)E) dIe)E)  ˀ˲de)E), d۲ 2e)E) &Hᘒe)a  ˂ ذ%e)E) I,ؒ`e)E)W  I6ɖe)$! I$le)$! I$m[e)$!  $I`e)$! $I%e)$!  $I$e)E)"UW h$I$e)!0" $-$e)E) l%e)%)  I2 @e)!m4E) ӶmE) .;[mE)A f%) I;N ,! $Ib'!+ MI$$!  E)жmE)be) Jm!TE) I$e)! I$I E)! II$E)!` I$I$E)! I$I$1 I$I$e)E)* $I$e)E)k ۶l˰mE) ϶m6E) II$e)$!*  Ie)E)*= I$I E)! pE) I$@E)!UUWI$I$!@ !! ˄b5 ^zP ]@(!Z !I$I$E(CHE !@@!jꫫI$N$/>x!  $JD!`( @ $IH! $Uz$I!`$ !ApʁDE$![Y!@d!I$I$E)a@ ! !ꫫ 1UӼ-!> VP$! $AL$!* $Ȑ A!. $I$E)a I$I$!* I$H$! R#(*i!pbrQ( " $I! mE)+ !E)! I$I$E)! EE)A I$I$E)!* I$I E)! 2lmE)A`  I$E)! l۶$E)!W =E)_ Hj! I$!öl[!z mۮ$! N$!" $E)m۶E)!*ce) !IR$IE)  I %e)$!  `[$e)E)W mI$e)$! $I$e)$! -۲mE)@@ ɖl8lE)A I$I E)! [m E)A I$ɰ$E)! I[%e)E)* I$e)E) Kaɐde)E) . I$@2,e)E)* X2`ɖ$e)E)  I%@,e)E)*` lɒ%e)E)  6e)E) I$X-e)E)^ l e)E)  %I$e)E) Ie)E) * A$1"@Xee)a H$e)E)H4 e)  ۶$[%e)E)x $e) lX%e)E)P $Iee)E)W  mI$e)E) %۶mE)A `I&e)E)  ɀې$e)E) I $e)E)Ј-6Ae)`ٛe)! )i4e)E) ,ْ%e)E) `ɒ-e)E) ˂ ْ%e)E) ۲%e)E)b&AlE)% I$ۆ e)$! I$ۂ e)$!* $Ime)$!*@SLHE)$ HI$e)E)/U @C-e)E)= I$Вe)E)VLȒ$e)A(ӶlE) IE)U I$ ! d;v!_ JI$!UU  E) жmE) $BI$e)!  I-de)E)}- I$[`e)! AE)O mٶmE) I$I$E) I$I$1 I$I$e)E)%z H I$e)E)x I$Ce)$! HI$E)! m[-E)! IH$E)! LۆmE)^ I$R@E)uuzI$I$I$I$bI$I$I$I$(I$I$AI$I$A** I$I$I$I$I$I$I$I$I$I$`I$I$bI$I$AI$I$A I$I$I$I$aZ*I$I$I$I$"I$I$I$I$@I$I$'I$I$I$I$I$I$I$I$I$I$azI$I$AI$I$A>/ I$I$ajI$I$I$I$I$I$I$I$I$I$AI$I$A/I$I$ I$I$* I$I$! I$I$I$I$*z I$I! z^ ILE)a E) *(  EE)a I$I$E)! I$I$E)!+ II$E)! I$I$E)! 0E)!_ 6'E)_ $mvm! f'! mm[ ! Id!* IE)կ ۶mE) տ* I$le)! Idö%e)! IdÒ$e)!. 0 I$e)$!m[E)p H$I$e)$! @E) I$I$E)! I$I$E)!* I$I$E)! I$I$1 I$I$)( @$Ie)E) [-I e)E)`/  ْlle)E)  e)E) > I$$e)E)6ڶ%E)A AڤcE) LI$e)! ,I$e)E)  $Ile)E)U  ۰-I-e)E) $I e)E)׿  $Ime)E)U $ie)E) $IҶe)E) $i۶e)E) $۶me)E) $IҶe)E)eZ'e)A  $Kle)E)T $I2`e)E) Ö,Ile)E)  %I-e)E)[ ېlI%e)E)  }_"E)!@!b$GE) I2ۖ$e)$! Xe$e)E)  6$e)E)`+,pmE) LIJe)E)(./ hȤIe)E) 8?* dIde)E)>.* mI$e)E).  Kle)E),  E)A I% e)$! I$le)E)UW Y$I2le)$!@d2E)!p I$e)! $Hm$e)E) M$e)E)x䣱 e) `yle) ] }lE)_ I$%)UW I$Ll! xI2'! U_  q%)*U mݖE) ae)!/ Hِ$e)$!  I$6e)!$IbE) KmE)$ I$I$E)! I$I$1 I$I$)( I$e)E)+ I$$e)$!* ɒ$I2$e)$! @[mѴE)! 6 I$ $e)E) ӶmۢE)!Z I$E) UW$ 47{ ,%)x$@!zA$ID  ! * b**!$! j=P ! *)`%@ xx9ɑD  -%@$`! !j! H! "I$ !ꪪ*4L aڸ9!'2 !!I$I$E(C !I! = !aɇ'|$!׫@ ! $I$)! $II! A$I$!  I@E)!UUխ O/E)u E)b E) I$I$E)! I$I$E)! vlömE)! I$I$E)! 6E) Hx%) 1![X! m5$!_ IN$! 17E)m۶ E)!u  I$me)!  I!ؐ$e)$! H$e)! %I$e)$! m oE)b& I$I$E)!  E)A  I$I$E)! I$I$E)! 8 I$I$)( I$I$)( I$I$e)E)+ I$I$e)E). M&ie)E) [2$me)E) ے $e)E) I $e)E)*>@lE)!}e) (( II$e)E) ,Ide)E)W* lIme)E)  $I%e)E) $Ie)E)} $$Ie)E)տ $$me)E) $IҶe)E) $۶me)E) $$mҶe)E) $Ime)E)le)  $I e)E)U $I,e)E) Ie)E)   e)E) 2,òme)E) $e)E) 6lÖ$e)E) [lme)E) I`ذ e)E) I єe)E)  I$؆ee)E)x  ɖ$K e)E) } ِ,Yle)E) I&e)E) m I I$e)E) Hm$e)E)()me)% I-e)E). $K$e)E) 9e)!` aؒ$e)! =`e)!  I$ae)$! I$HE)!nۦmE)  $I$e)$!  -$e)E) IYe)! ` e)!C$ E) I2:E)U $si! xIB'!  $%) UԶnE) I$e)! " @Pe) I$X2`e)! I$I$E)! I$I$E) I$I$)( I$I$1  $I$e)E)« I%I$E)! $I$e)$! I$I$e)E)룩U I$@$e)E)蠢 mE)x I2&ێmE) z I$I$ AI$I$(I$I$AI$I$A I$I$ @I$I$ I$I$I$I$I$I$I$I$aI$I$A?/I$I$I$I$I$I$I$I$I$I$"I$I$ jI$I$#*I$I$ ۪ I$I$ *.6I$I$ꪪI$I$ 8I$I$aI$I$AI$I$A/I$I$AI$I$Aj*I$I$ I$I$I$I$I$I$AI$I$A** I$I$*I$I$// I$I$! I$I$4 I$IE)b IE)Aߺ I$I$E)! E)* @E)!+  ɶmE) I$I$E)! 0E)!_ `X۴E) 5`! [Mt!+ ٦5M'! [N$! 4E)* m۶E)! I$e)! ɶے$e)E) V,ɐe). $I$e)$!* I$I$E)! E)  E)a@ mٶmE) I$I$E) I$I$)( I$I e)E) I$$e)E)6-B%E) ` I$I$E)! 1۶mE)!  $I$e)E)_ݸ [$Iae)E) I$Xee)E)  I$ۆ%e)E) I`,e)E) Ie)$! H$He)E)(* m۲-e)E) I e)E)  lÒ$e)E) Kdɖ e)E)((  ۀm-e)E) 6-e)E)h&mE)  v8 1E)$9 E)a $$j)$Ie)  I6$ e)%) ېdI,e)E)* ۖ ɐde)E) / $I1"e) He)E)(8 ۶ `e)E) H$e)E) ( $e)E) 6me)E) Ime)E) I$[le)E)  I% e)E) I$@$e)E) ˖$6e)E) IҶe)E). 2lI$e)E)@ 2lI$e)E)*ci@re) IdȰe)E), K$,e)E)( aٖde)E)* 0`de)! mÒ)$e)!4 I$6 e)$! I$Xme)E)U 7f`E) I$e)$! YI$e)$! l$e)E)`  I&Ie)!c۴E) NE)W I$ ! I"9!/  $$!+@-E)* `{e)!/ @e) I%e)! I$IE)! I$I$E)! I$I$E) I$I$)( I$I$e)E)* K!I$e)E)T I$IE)!* I$I$E)! I e)E) I$IE)! NҶE E)!Ux m&P E)W_^`DQ' "@!뫯 !IH!~a * $!ꫫI$L'7@Q aҫH!I$I$!@ ! ")"!!BJa$(! aɑGQ%a  ! Xd!0@( `UH @!ꫯ j^;5!>{ O#%!! ` " !k $ E)+  E) (E)z I$I$E)!+  E)b ` m[i۶E)!  I$I$E)! $E)!U m$!+ F! L$A !/ ۺ$!+ MME) ۶mE)!U+ I$ E)! I$E)! 0 m;e) j6۶e) H$I$e)$! I$I$E)! E) * PE)A8 I$I$E) I$I$)( I$Ie)E) I$I e)E) I$ې$e)E)~ 6KlE) (4& m4m۶E)!`` $Ie)E)U/ $Ie)E)W. K$6le)E)  I$ːae)$! Idː e)E)*  I-[de)E)( I2l,e)E) I e)E)**  ز%K$e)E) ɐ ۶-e)E) @ ۶-X$e)E) ɖ6e)E)   ض%e)E))09rE)!@ %I e)!lK e)@,e)`c IIe)E) I&le)%)* $I$e)E) 0`me)E)Xv6e) @ [% e)  ɲaI$e)E)o{ 6 I$e)E) XmmE)   ɖ$e)$!* ɖې$e)E) * ,le)E)  !e)!@"He) @$@ e)E)  6`e)E) 6lle)E) lLʆe)E)(  K!ۆ e)E) Ia6,e)E)$E)$ $I-e)E)2m&mE)@amE) iDRe) mҤMJe)E)8,m"iE)@ ۖ Y-e)! [mde)E)p* m e)! I$[e)$!  ,?e)! p I$e)E) U uv퐤f1E)~ I& e)!e) _ NE)W I$@$! pI2&!  %) *f۶E)! U !ɒ$e)!ڶaIE)  I$[le)! E)  I$I$E) * I$Ie)E)* I$I$e)E).~ H I$e)$!(* I$Xle)E)UP  I$e)E)5W I$ e)E) - KmE)X I")E)Uj I$M4$!AWI$I$I$I$I$I$@I$I$AI$I$bI$I$I$I$AI$I$A/ I$I$(I$I$I$I$ .&I$I$I$I$"I$I$AI$I$A. I$I$ I$I$pI$I$I$I$8 I$I$ I$I$AI$I$A+I$I$I$I$ I$I$I$I$I$I$I$I$AI$I$A*I$I$` I$I!/ IDE)U+ E)' I$I$E)! I$I$E)! I$I$E)!  m۶mE)b 0E)!W غTE) 5E) k6tE) -$$! R7  !a@$m E) I$I E)! IH$e)%)( I$e)! ضm۶-E) B E)!  E). I$I$)( I$I$)( I$I$)( Xm6`E)A I$ $e)E) ^ II$e)E)~"zU !H$IE)  Ò$I$e)E)U I$I$e)E)^* I$  e)E)U I$A$e)E)ݢ I$H$e)E) II$e)E)* HI e)E), e۶E)a ڤM(,e) ` XdI$e)! C$ۖ,e)E) m[$$e)E) ɐؖ$e)E) ^ I`ۖ$e)E) LHe)( 4۶mE) )0I4E)!@I۶ME)b mI,e)E) I$e)E) $IҒe)E)_ $Ie)E)U $$IBe)!ʀ&$ IE)  $I%e)E) ۰dIde)E)(* $$I6e)$! A$IrE)A HaI$e)E)8 ˶aI$e)E)WRmնE) me)! $$e)E) K6`de)E)(? ؐa e)E)Le)$, ْ-۶ e)E) Y ِe)E)"* I$M1" 6 2,e)E) زm6,e)E) Il e)E)i 1e)` I$le)E)  ؐlI,e)E) L۰mE)6(MvжE)4 ۂ%@2e)E) ٖeK e)E)"(I̶IE) l˖$e)E) I e)!@ I$le)!* $I,e)$!*ue)!  $ d$e)E) IBXe)! Oe)! }2lE)_ I2'! N!+ P"Im&!!* m喖E)* `oe)!+҆ rME)  I$2e)! m۶mE)!* I$I$E)  I$I$)( I$I$e)E) @$I$e)E)`[W I$$e)$! I$e)E) %UX II$e)E)( ۲mlE) @ IrnmE) * W E)h!@!ꫯ I$  !P4" zj I  -@,`!!I$I$E(CB%  `pa! ( d()! a! !H 꾾1!H j BrT%)z $E)/ Ȁ E) I$I$E)! I$I$E)!+ E) ` A$I$E)! 6E) h[E)/ t%) X $!// f! $HE)A8m۶ae)! I$E)! IA$e)$! @$I$E)! E)(  E)b@ E) I$I$)( I$I$)( I$I$)( ɶmۆmE) I$e)E).U mSm۶e)!P $I$e)E)zU H$I$e)E)U I$$e)E)U I$H$e)E)u( IIe)E)(*. I$ $e)E) I$e)E) A$I$e)E) l6E) 0Iۦe)A(4 $e)E)  K۰$e)E)(* m6$e)E) 2ۖ$e)E)U I-ے$e)!C)IE)!@ Ih$IE)ۦmE)  mI,e)E)Պ mI$e)E) %Ide)E)* $IBe)E)W $Ie)E)U%E)Ap $IBe)E) $I$e)E)z mIme)E)mmۦmE)b@ؖm[E)$m&0E)` Ille)$!  @e)E)ˀ I$6le)E) I%Ke)E)W6 I$˂%e)E)]p I$I$e)E)_ I$Ie)E)+ a#dE)A( $I$e)$! ,۶mE) Xe $e)$! Ȁ le)E)  )MYe)E) L!M&e)$ ȶl6e)E)  Yd6le)E)"" ۂ؀e)E) Imle)E) I$le)E)+\ IBe)E)- Xɐ$e)E) ˲lde)E)* e)  %%۰e)%) [m`e)E)p&,²ME)@`m&HE)A  ِ$I%e)E)W $I$e)$!  1E) I& e)!e) _ M E) ɔ$@! mI<'!  lE)`Ϸe)! I`[de)!  I$e)! I$I$E)!. ۶%E) I$H$e)E) I$I$)( 6mE)p E) [lI$e)E) \ I$I$1 I$H e)%)ꪨ z E) I$O E)wu_I$I$I$I$I$I$&I$I$@I$I$!*I$I$aI$I$I$I$I$I$I$I$I$I$I$I$A>I$I$ 0I$I$I$I$I$I$API$I$I$I$ I$I$A*I$I$aI$I$.I$I$I$I$I$I$ &.I$I$!I$I$A*  I$I A I\%)׵ E) I$I$E)! E) I$I$E)! I$I$E)!_ &E) ۶6uaE) [E)/ ,M7E) x PW !   E)A@ m0`E) I@$E)! 4[mE)` %IE)* I$I$E)!* I$I$E)!* I$I$E)! I$I$)(۶mgE)  I$$e)E)V I I$e)E)WU A$I$e)E)_U I$I$)( I$I$)( I$I$1 I$I$1 I$I$1 I$Ie)E)  I$Iae)E) I@$e)E)* z IdX$e)E)(U ɆmI$e)E) _u $I$e)E)U $I$e)E)_] c۶mE)!` I$Ie)$! \E) m6h E)!@ۖa$IE) Ie)E)/ A$e)E) ɰ%e)E) ##7E)  ۄd0IE)A4( ɖ ذ$e)E) mۖle)E)  le)E)H얐e)  ۖ$e)E) @!kLde) . ۶m$e)E) ۖ$le)E)  ɐ$e)E)  @ e)E) Ҷm۔@E)A Ie)E) I$ e)E) I![%e)E)p I$Y2 e)E) I$He)E)~ I$Ie)E)> ذm,E)@0۶e)! 9$IE)0  I$e)$!( ,de)E)? lʦle)E) SIHe)` 6$Xe)E) Ȃle)E) m6le)E) Kl`e)E) I%6e)E) !$MRe)E) ےI&e)E) Yd$e)E)"  Kme)!@ il e)  mزe)E) I$e)E)KdAE)A<6 I$He)$! %I$e)E) ^ ]=`$1E) Nm1$! de)!䳑ۆmE)_ ڒH$! pI1! 0 ٔ%) `ۏE)! U m6e)!  I% e)! I$[,e)!+ ض ۶-E)@ ۆmޖmE) I$I$)(  I$e)$! m-E) @HR$E) I$I$e)E) I$Ie)E) HE) LE) k]!#(*A$!aꪪ TJ!I$H& \x@!Ȁ!I$I$E(C@,`!!x &(!^ZzO| ..@$!- H  *H$@$  s%1%)_ mE)+ I$I$E)! I$I$E)!+ E)* I$I$E)! 0E)!U @ E) f`E) lE) %) $E) xE)A8 I$ $E)!+0 I$E)! ضdKmE)<$ I$I$E)! I$I$E)! I$I$)( I$I$E)!8 I$I$)( ۶mېbE) I@$e)E)+U I$I$e)E)+U H$I$e)E)Uժ I$I$)( I$I$)( I$I$1 I$I$1 I$I$1 A$Ie)E) I$K%e)E)( I,ː$e)E)W II$e)E)U I$e)E)U $Ide)E)U/ $Ie)E)U. I$I$E)!< ۶m6,E)@۶mE) ۶%E)AР IeXme)E) H e)E)  K$[me)E)>/_I$I$I$I$I$I$I$I$jI$I$ I$I$pI$I$ :I$I$I$I$I$I* IDI!a.&$  $! ( E)b6& I$I$E)!  I$I$E)! E)!_eI$Iz<1!UU%.{1/.x$I$1!XUU  E)! I$I$E)!+ I$I$E)! I$I$E)!/ I$I$E)! E)!*66 I$I$E)! )E)A  I$I$E)! I$I$E)!* I$I$E)! I$I$E)! I$I$)( I$I$)(  E) I$I$E)!( I$I$E)! A$I$e)$! I$I$1 I$I$1 I$I$)( I$I$)( I$Ie)E)+ ˶lE)A ۶m2lE)a@ ۶ mE) MQm۶E)!4 @$I$E)! I$I$E) I$I$E)!k @0E)!U E) nE) `fE)  IZ%%)z [>! 4I!huUUO$IB! I$I! I$I!A I$K$! : I$%)! I$$!Aݫ IbrmE)կ I"I %) I" $!U I$!A I$!U IJ$! I"I$!U I"I$!U IB۰mE)U IE)U I$$!U I$PE) ޸ I$!b I$ E)A $I$!* IH%)U PII"E)U  qg;E)U E) ) IE)a  E)b( I$I$E)!.[ $I$e)! mlE)!&[mE) Æ $e)$! Zq e)а ۰H e)E)<(˶ @e)$me)  ȶ,le)E)  Ie˶ae)! I$A$e)E)]" ɐ$ɒ`E)!  `I&e)E)  m )$e)E)kge)! Kle)E),  1" [me)E) ɰ%e)E)  I&e)E) I 6-$e)E)% m$Ye)E)Ҧ%E)Ap @e)E)` I$me)E)UX $I%e)E)W` II$e)E) U L$e)! Nl۳ `e)!Wz ``E)!UUW d!d $$!!^k*6`{me)!W I$e)!+ I%Ö e)$! I$I$e)E)UWx I$I$)( ۶mòmE) ` $I$E)! I$ $E)! I$I$e)E)US I$$e)E) I$H$e)E) a[E)A1˘mE)Im !!.m`! :2!! kI!A   E)jj* E)*  I$I$E)! 0E)!_.I$If1!_UU%J/?1/xJ? 1 `E)!V E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!+@ E)  @(@E)A` I$I$E)! I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$)( @E)@ E) I$I$E)! I$I$e)$!* I$I$E)! I$I$1 I$I$)( I$I$)( I$I$)( ۲-۶E)@ mlE) ۶m`mE)  I$@$E)! )m۶E)  $I$E)! A$I$E)! E)!^ &E) * X6E) Z:iE)(( lӚlE)(  i$E) >}$!_WW$IT I$I z I$I"!޺ I$I! I$ E)Au I$%)! I%)b I"IE) I"IP%)W8 I$!a I$!A* IҶ$!U I"I$!_ I"I$!U I"I%)U IBmE)U I>E)U I$A$E)! E) j I$IE)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!X E)!_ aE)!Uk IE)!Uyk I$I$E)!{  E)bb 6`@E)㲸 0E)!yZ (  H%)! $( E)!} E)! Ö$I$e)!* aI$e)!*жI$Ie)  Klېle)E)( T$Ie)(4 [mK2`e)E)p A$e)E)"  ض Xme)E)  Im[$e)E) |6ME)` IR6e)$! mI)$e)E) m6h@!@He)A  `e)E) I-۰me)E)ր $Hme)E)h[1! m@e)E) ٶe`e)E)  ۂm˶,e)E) I$le)E)UX ɐ$I%e)$!*Ie)  M2e)!돭e)!~ @ E)!V I$I$E)!﫽 E)!-z`{E) - I-e)!  I$hRe)E)U^` $I$E)!* I$I$E)  I$I$E)!( @I$e)E)p ۶mE)! I$e)E)" I$Ie)E)" dI$e)%)* I%ö E)W I$I%!I$I$I$I$AI$I$!{ I$I$I$I$I$I$I$I$ I$I$@I$I$Ax*I$I$AI$I$!(X I$0@!/  @$! $@(!b` I$I$$!! E)! $E)JI$ &1!U `eWI$1! `VU @E)!T E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! hE)<( E) ` I$I$E)! I$I$E)! I$I$E)!* I$I$1 E) @ E)! I$I$E)! I$I$E)! E) E) I$I$1 I$I$1 @E)!@ ۶mmE) [a۶mE) H$I$E)! I$I$E)! )%)j ۶m E)a m'MԆ1!z'e)!WW=ve) ^ -6NڶE)!\ $IE) M$! !E)! I$I$E)! I$I$E)! @E) I$I$E) I$I$E)! I$I$)( I$I$1 I$I$)( I$I$E)!0 E)` I$I$E)! @E)@  E)a I$I$1 E)` AE)a I$I$E)! I$I$)(  E)`` I$I$E)! I@$e)E)U I$I$e)E)z^ E)& I$I$)( I$A$e)E)x I$I$)( I$I$E)! I$I$E)! I$I$)( I$I$)( A$I$e)E) I$I$)( I$ $e)E)_U I$I$E)$! I$I$E)! ȁE)4 I$I$E)!k @E)![  %)a. E)!  @E)!߾ m]mk7E)!~u qllE)!/ -6E)A`j p@E)! ۰m66E)*~ I$E)! 6`ɖ$e)! [2,ےle)E) j)6Ie)A HJ)8E)` lde)E) ) @l6 e)E) I$@$e)E) )$I4e)E)_ d[I$e)E)- l۶`e)E)4e) @DIDIe) I-e)E) )$lBe)E) $KI$e)E)  Mڶe)E)( ېme)E)  X`e)E)` I$[ e)E)\ !I$e)$!Z2re) ` ۼaf1!_ĶE)!-Wx miѴE)!-'f1!Vh  E)!Bi\ ɒ$e)!$'E) I$I$e)$!* I$I$E) I$I$E)! ْI$E)$!؃moe)!'mcyE) I$$e)E) I$I$e)$!( I$e)! 0E)!XeI$I 1!_U JI$1! ^?f1!\U IE) խ I$I$E)!+ I$I$E)! I$I$E)! I$I$E)! I$I$1 E)  E)! I$I$E)!" I$I$E)! I$I$E)! I$I$1  @E)8 I$I$)( I$I$E)! I$I$E)!  !E) J E) I$I$1 I$I$1 hE)! I$I$)( l۶mE) I$I$E)! I$I$E)!~ @*%%)A1!_U+mme)! y$1!UUNbE) /W öܶ1E)r  E)!Wժ i E)* I$I$E)! I$I$E)!* I$I$E)!  E)' I$I$E)! I$I$)( I$I$)( I$I$e)E)/UU I$I$)( I$I$E)! H E)A4( I$I$)( @E) I$I$)( I$I$1 xE) HE)$ I$I$)( I$I$)( xE) I$ $e)E)W I H$e)E)U  E) @ E) I$Ie)E)/ I$I$E)!(  E)@ E) E)  I$I$E)!  I$I$E)! ( E) I$I$E)!" E)$ I$I$1 I$I$E)! I$I$)( A$I$e)E)U II$e)E)*W I$I$)( I$I$E) I$I$E)! I$I$E)! E)!U߾ E)! UmNnE)!/W Km۰qE)A i@E)!W) mME)!W $E)! UmۖmE)1`ge),* Kle)E)(  -6Ke)E) MI&e)$! ۖ me)E) X`۰%e)E) I$[ e)E)/^ I&e)E) l˖$e)E) Mۤm[@!$HpE) Hme)E)X $lRe)E)  lYI$e)E) mҶ$Ye)E) a۲me)E) [mِ e)$! I$He)$!  I$e)E) V me)E)p dK2mE) @mf1 .NB891!^ .I$O<1!^LA%ْE)$ * X`e)$! I$K,E)! I$I$E)! I$I$1 $I$e)E) I$ e)E)VP > $I$e)E) \ @$@ e)E) 6,lE)@v-E) I$K2,E) I$I$I$I$A I$I$I$I$"I$Ia IH$ !a "-!@ $! I$I$%)! uE) * eI9$1 W5e9%I$1!`VU @E)!\ I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! (E)a`` E)b&  I$I$E)!* I$I$E)$! I$I$1 I$I$1 I$I$E)! E) I$I$E)$! I$I$E)$!** I$I$1 I$I$E)! E) I$I$)( I$I$E)! I$I$E)! 0E)!W m۶e)!W5.I$IN41!UO'1!UW01!`U-IE)* HBE)!W E)!* I$I$E)!* I$I$E)!  E) I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)$! I$I$E)$! I$I$1 I$I$1 I$I$E)! I$I$E)$!* I$I$E)$! I$I$E)! I$I$E)$! * I$I$E)! (E)` I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$)( I$I$1 E)A$, I$I$E)! ۶mE) ˰m۶ME) & E)!B nۆmE) I$I$E)! E)   E)@ E) I$I$E)$! E) I$I$1 [۶ E)ap I$I$)( I$I$1 I$I$E)! I$I$e)E)*W I$I$)( I$I$e)E)zU I$I$E)! I$I$E)$! I$I$E)! HE)!W @$E)!] mӶE)  [a6E)!`* 1IhE)+cE)!^ !$E)!W m۶tE) BSm۶e)  2ې$e)$!  iI$ؒe)E) mҴme)E) ٶd le)$!  I$1" I%le)E)`  IR6e)E)- $e)E)  %K$e)E)$A" e)  `e)E) I% e)E)- `I&e)E) ,e)E)  Iلd e)E) ( زm˶%e)E) I$me)$!* !I$e)E)%Wx `C)e)E)5 `Ke)!z% E) &.lI$f1!%UJI$pÆ1!V` mqE)`* ɐe)!  I$`Ce)! I$I$E)! I$I$E)! I$I$)( @ I$e)E)p+ I$H$e)E)\b  e)E)% I$@e)E) d6 E) (6e1 E)!+ I$I$E)!  I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)$!** @HE)44  %) I$I$E)! I$I$E)$!* I$I$1 I$I$1 $E) ` I$I$E)! I$I$E)$!* I$I$1 I$I$1 E)J I$I$E)! I$I$E)! A$I$E)! I$I$E)! ȄE)!~UI1!_U-.I$IA'1!_U x.I}$1!U xU&۶1Xf1!xU IE)!U I$I$E)! I$I$E)! @E)` I$I$E)! I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)$!(( I$I$E)!( I$I$1 I$I$1 I$I$E)! I$I$E)$!  I$I$E)$! I$I$E)! I$I$E)! I$I$E)! E)(($ I$I$E)! I$I$E)! I$I$E)! I$I$)( I$I$1 `E)@ E)a (E)b ۲m6lE)@ m6`E) %۶aE)Ap I$I$)( E)!@ I$I$E)! I$I$E)!8 I$I$)( I$I$E)  E) I$I$E)!  E)A.& I$I$E)! I$I$E)! E)! > I$I$E)! I$I$E)! $E)A  E)` I$I$)( I$I$)( I$I$)( I$I$e)$! I$$E)! I$I$E)!~ dE)!U~ E)! U mI:E) h ^ H E) @E) ^ &E)!+W `۶e)!  HI$e)! %E)A  mde)E)* 6lن%e)E) ۖ [me)E)  I%le)E)z  )M²e)E) I I$e)! lɒ`e)%)  @! òme)E)$780E)@ `I&e)! lKe)E)  lۂme)E) @ $e)E)` I$@e)$!* I$e)E) V me)E)p me)!Wx.9I$1! W~JIB'1Ć1!V`%JI$I'1!Wp`e)  M&%e)! I$K%E)! * I$I$E)!(* I$I$)( I$e)E)C ɖlú-E)@ ڶmE)  E)b@Vm۶E)L%¸Ie)Wx I$I&$!bI$I$I$I!/ 4I !  !$!!%x I$I$$!! @E)!We I$P<1!U e9X I$e)E) mʖ$e)E) O MNE)aM$e) I& e)E). $I&e)E)  de)E)  I$le)E) @$e)E)` I$@e)$!* $I$e)E)5V kw1E)~?4* ($! ` E)! I$I$E)! I$I$E)$! I$I$E)$! E). I$I$E)! I$I$E)! I$I$E)! I$I$E)!  E)@ @E)!(8 I$I$1 I$I$1 @E) ( I$I$E)$!* E)- I$I$E)! E)!k PE)  I$I$E)! E)@ 0E)  I$I$E)! * I$I$E)$!  E)A E)!z E)b \@E)! I$I$E)!* I$I$E)! I$I$)( I$I$1 I$I$1 (E)p I$I$E)! I$I$)( I$I$E)! I$I$E)! I$I$1 I$I$E) I$I$E)! I$I$)( E)@ E)  I$I$1 I$I$)( I$I$1 @E) I$I$1  E)!@ E) E)  E)A I$I$E)! I$I$E)!*  $E)P I$I$)( I$I$)( I$I$)( I$I$E)! I$I$)( I$I$E)! I$I$E)!* I$I$E)$! @E)@ E) I$I$E)! I$I$)( I$I$1 ꪪ I$I$E)! @E)!_ D%) R;Iz$! 0rn! жE)* -жmE)!  ɖ$e)!/ ,e)E) [m`e)E) mۖ e)E) I $e)E) !MB6e)E)/ - !e)E)7I$I$@! IK$Ie)E) I%e)E)~)F #E)b  m6e)E) mde)  H e)$! e)! ) [I$1E) 3hݭf1!z訂 l6rۈmE).H8$1!\-O=1!Vp-e)!  M6$e)$! I$I$E)!* h۶m6E)!z $E)!`\ !$! hӴ!I$If1/eI'1! peE$I$1!XWU  @ $!!= $!!/6 $!!pW .)! @ E)*  T%) %)A I$I$E)! I$I$E)! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! E)!_5J I$m81!_U-J17J$I$1!^Uu `@$!( I$I$E)! I$I$E)!+ I$I$E)! I$I$E)! I$I$E)! I$I$E)! %),4 I$I$E)! @HE)Ap I$I$E)! I$I$E)$!* I$I$1 I$I$E)$! I$I$E)$! I$I$E)!. I$I$E)! PE) 88   E)b`@ `E) @QE) I$I$E)$!( I$I$E)$! I$I$E)$!* I$I$E)$!* I$I$E)$!* I$I$E)$!(* I$I$E)$! I$I$E)!  E)   4E)p I$I$E)$! I$I$E)! I$I$E)! P( E) ,6 I$I$E)! I$I$E)! I$I$E)! I$I$E)! %)! 9@E) E)!* I$I$E)!( I$I$E)!* I$I$E)! I$I$E)! I$I$)( I$I$)(  E) I$I$)( I$I$1 I$I$)( E) E) I$I$1 E)  E)& PE)  I$I$E)! I$I$E)!  E) J E) I$I$)( I$I$)( I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)!* I$I$1  E)A I$I$1 I$I$E)! I$I$)( I$IE)! E)! , E)z` J@$!x  v!- mڶ$! mѶmE) * mI$e)!+  e)E)  ۖde)E)* ɰeۆ%e)E)  Xm6,e)E) I$me)E)  hYI$e)E)X $I e)%) lB$Ie)E) X`e)E)cm`E)a l !e)E)-vۆ5e)` ۲mle)E) I$He)!> I$e)E)V u5Ún1E)lC" E)j.'1 .I$h1!Vpa{E) - `R)e)E)`  I$X,E)!* I$I$E)! * I$I$)( II$e)E){. I$[ e)E)VP I$e)E)+- I$Ie)E)* A I$e)E)r ضmE)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)$!* I$I$E)! E)!_. I$I1!WU-./1JI1 .x$I$1!xUW  E)! I$I$E)! I$I$E)!  I$I$E)! I$I$E)! I$I$1  E)!jn %)b I$I$E)! H%) & I$I$E)! I$I$1 I$I$1 I$I$E)$! I$I$E)$! * I$I$E)! I$I$E)! 9%) X%)A8 @E) E)! I$I$E)$! I$I$E)$!* I$I$E)$!* I$I$E)$! I$I$E)$! * I$I$E)$! I$I$E)$! E)p I$I$1 8E),& I$I$E)!  I$I$E)! , E) E) I$I$E)! I$I$E)! I$I$E)! @%)ap E)` $E)!U I$I$E)!  I$I$E)! I$I$E)! I$E)_ 0$E)A  $$! $E)* U  E) I$I$E)! I$I$E)! I$I$E)!  E)( I$I$E)! I$I$1 I$I$)( @E) I$I$)( I$I$1 @E)` E)a  E)!p I$I$E)!  I$I$E)! E)A& I$I$E)! I$I$)( I$I$E)! E) I$I$E)! I$I$)( E)@ E) H ۀmE) m˶`e)E) I$I$1" I$e)E)Vp )I&e)E)5WP [3閸1E)돵f1!Wz7O?1!W^O'G1/  $E) THdLE)  @%)aj 0@*! k !! eI$1 e6%)a o$%)UU m%)U  IӶ%)UU  II&%) I$! JI$E) HI$%)  I$! I$%) H $%)(U $%) * $$! \E) E)! I$I$E)! I$I$E)! @E) I$I$E)! I$I$E)!* I$I$)( E)!@ E) I$I$1 I$I$E)! )m۶-E) E) E)!* I$I$E)! @HE)P I$I$E)!* I$I$)( I$I$E)! @E)!: I$I$E)! I$I$E)! I$I$)( E) I$I$E)! E) @$I$e)E)W ۲mmE)@ ٶm6lE)b ۺmdE)ꪸ $%@!A*И R25J )! Vm|$!_  VE) jIq6E)A dCee)$!  )˖ɒe)%) ɀmۆ-e)E)  ۶me)E) I$e)E)- I$e)E)'\ m۶h@! $B2$Ie)E)@!I e)C")E)@ aKe)! I$I$1" @ e)E)p I$K-e)E)%X QI$e)E)  Ke)!x1!5W_{r1!\b%OX6f1p{ 0! Id!JI$Ie)? J?1A*`J?Ie)!׽ J !   ! $! 0H$!!XW5  $!!% I$I$$!! I$I$$!!  ! I$I$$!! I$I$e) I$I$e) I$I$E)!  4E)jz @$!b I$I$E)! @%)P I$I$E)!* $E)bp  $!(niSf1j.I$1! _. E$I$1!zUU $$!! _ `$! P$! I$I$$!! I$I$E)! I$I$%)$! I$I$E)! I$I$E)! I$I$E)! E)*& H%)a,4 I$I$E)$! I$I$E)! (E)z I$I$E)!꿪 I$I$E)!ꯊ I$I$E)! I$I$E)! I$I$1 I$I$E)$! (@@E)!` E)b  E) I$I$E)! E) I$I$E)!k  E)!} @E)!j^ E) DE),ւ $E)!U @E) _ HE)!}*W !@E)!_  E)! E) ( `E)!WW @E)! R%)az E) mE)* mE)_ ! E)!U* IE)!U E) IE)U E)W* OHE)U I%) I%)b I"E)A I%)U I$%)A I$E)UU I$k%)U y$I@!* $I"5%)*U NI$%)U_ I$%) U S$%)!_ O%)( I$I$E)!*  E)` E)! I$I$E)! E)@ E) $E)bР I$Ie)E)]? 8E)a & I$I$E)! I$I$E)!*  E) E) I$I$)( I$I$)(  E)  I$I$)( I$I$)( I$I$E)! E) I$I$)( E) HI$e)E) wKmmE)$ I$I E)! J(E)ꪠ mj@!  I锤!* {$$! *  -E)*kþߐe) &)4e)b` ۰mɐde)E) * 2ۀme)E) ɰ$@2`e)E) YI$e)E) i۶h@! @! K$e)E) IJ&e)E) > m۶`e)E) I$I 1" H$e)$! Ib'1E)U_1Ne) ݶc1ꪜ7O?1!ɵU^I'Ǔ1 ^b $@6ɘE)/ `R)e)$!* I$l2e)$!* E)!  PE)A8 A I$e)$!ۖl6hE)  ۖlE) I$I E)! H E)!ov@E):0. iL$1!-xW h$I$1!xWU $!!/ @L$!! I$I$$!! I$I$e) I$I$E)! I$I$%)$! I$I$E)! I$I$E)!  E)*  E)@ E)A I$I$E)$! I$I$E)! E)6 I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)$!  H$E)A,4 @%) I$I$E)! (E)r I$I$E)! $E)!^ E)! @E)  E)!j I@%) "E)!u LE)!U  E)!_տ LE)!U 5E) E) * IHE)!UU E)!_ O%)A IE)!U mE) IE) IE)!U IE)!U JE)W IE)U E)U I%)*( I%)U I$I e)E)_^ I$I$E)! ۲۶mE)` I$I$E)! I$I$E)! I$I$E)! I$I$E)!  %)  @E)!_ {E)W* I%)U I$%)U_ ɔ$k$!/ I%) W  I$%)A $! @E) ꈭ %)A I$I$E)!  %)!( E) I$I$1 I$I$1 @HE)!(, I$I$)( I$I$E)!* I$I$e)$!* I$I$)( I$I$)( I$I$)( I$I$)( نm۶mE)  I$I$E)!* I$I$E)! I$I$)( I$I$e)E)5_}U $I$e)E)} I$E)! E)!  E)j I$J,$!HI$ * ۰mᖄE)*me)!$/b ǑE) +1) e)b`4m˴ E)a$, H$IE)!P I&e)E)^` $Ie)E) &( e)A@hE)H+0E) `jDRe)A  I$I$1" @ e)E)p$D#E) 5$!A`  Jv! $ ضnm $!/.O?Pf1*J!L&N$1 вq$ $!+ !  9u!A @"=!` $! ( $!  $!, I$I$$!!  $!( I$I$e) I$I$$!!  $! $! @$! ` I$I$E)! $E)!W 0I$E) _UU 9$ !  I$I e)!-ae)!-mۉ؆1 k !* hv$! $!! I$I$$!! I$I$$!!(* I$I$$!!( I$I$$!!/ $$!! P I$I$$!!  I$I$E)! I$I$E)!  %)& I$I$E)! I$I$E)! I$I$E)! %)A` %)  (%)` I$I$E) * I$I$E)!* I$I$E)!* I$I$E)! I$I$E)!  %)*.e). I$ >1!U/f1 IR`I$f1!^f1! zu'e)!]  %)ah  E) I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$)( I$I$)( I$Ie)E)* I$I$e)E)*Uj ضmnE) I$I$)( I$I$E)! E)! I$$e)E) $He)E) I$Ie)E)U( I$A$e)E)W[^ I$Ie)E){" I$I$e)E)Uz I$I$E)! m۶mE) I$I$E)! I$I$E)! I$I$E)! T@%) I$I$E)!~( RE)_ I@%)_ I'%)U I$P%)U $I@! p I$%)Az $$!+  %)  x%)b< I$I$E)! 4%)`  E)a I$I$1 I$I$1 @E)@` E) I$I$E)! I$I e)$! I$I$E)! I$I$)( I$I$1 I$I$)( [6`۶mE)( I$I$E)! I$I$E)! I$I$E)! I$I$)( $I$e)E)W I $e)E)z I$@$E)! E)^ M$P@$!WVx $I$!B( ɐ$$! /M$E)*(!Hre)@Ie)Ak8E) p @ I$e)E)Jje)!  $I $e)E)  mI6@!,$9E)  I$e)E)?"D,e)A(<  I$MR41" I$I$1" I$۲!e)!*jW if1() u:n1$!z N&m E) ^`ݭIf1a-n} E)*F2$SE)a@ Gﶆ1!顪 I$I$e)$! I$I$)( I$I$)( E) & E) I$I e)E)öIۖnE) u6h۶E) ~ ME) I$I$$!! I$I$$!!* I$I$$!!  I$I$$!! I$I$$!! $!!/& I$I$E)! I$I$E)!  @E) ` E) I$I$E)! I$I$E)!꿫 I$I$E)! H(%)a I$I$E)! %)4 I$I$1 I$I$E)! I$I$E)! I$I$E)! @`E)Ъ @E)j.f1'f1z{1!U/U1!U $I$f1!^] hۤm۶E) J%)a8  E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$)( I$I$)( I$I e)E)W m60E)` I$I$e)E)x I$I$)( $E)bp I$I$e)E)U* I$$e)E) $Ie)E)^z I$I e)E)- I$Ie)E)W7 Xf۶aE) ( m۶m"E)!@ZfۖmE)  I$$e)E)b I$Ie)E)ޟ7 I$I$e)E) I$A$e)E)תb I$ $e)E) I$I$)( I$I$e)E)] I$I$E)! HE)<  %)  I$I$E)! hE) O@%) I'%)UW $E)U_ 0I.$! U TE) E)! E)6 I$I$E)!* I$I$E)!* I$I$1 I$I$1 I$I$e)E)-UU_ II$e)$! I$I$E)!* I$I$E)! $I$E)!* mضmE)  I$I$)( I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$)( I$e)E) % `m E)( mӶm E) n IR)E)aꨀ I$J(! DI$!/ H\$!/ ېmI$e)!  X2, e)E) Il`e)E) @$e)E)* I$e)E)p  `I$e)E) 7x I0lؖae)$! @ ۶me)  I$me)E) I$e)E) >6ذe) p @ E)!__ lZ6!.f1W .bC1-.'I$f1 mt-P!/   $!! x $L$!!`\ե RdH!Aм4 I$I$$!!* $!!**p I !& Ϡ $! &  $! $!  I$I$$!!+ I$I$$!! I$I$$!! $! $$! 4R3I!a`RD! R\ I!z) 4@?$! ` HJE) $mI! & m! $!!  $!A I$I$$!! @,!A` P ! ! I$I$$!! @t$!aP I$I$$!! I$I$$!! I$I$$!! I$I$E)! I$I$E)! I$I$1 I$I$E)! I$I$E)! I$I$E)! %)A`( `E)J P$E) *J I$I1!wJ/?f1hJ1 . 1'I$1! U.f1 E)!׫ I$I$E)! I$I$E)!* I$I$E)!* I$I$E)!  E)!@ E)  E)A I$I$E)!X I$I$)( D@@E) I$I$)( E) ۶mòE)@ I$IE)! ۶a۲-E)@ oٰmE)  I$I$)( !mE)A I$e)E)UڦڴmE)4( ɂmۖ$e)! I$e)E)* m%E) I$$E)!8  E)@ ,۶ E)AC ۖm6E) >,۶pE)a@$ ܖm۰ E) H$I$e)E)j~w II$e)E))z I$I$e)E)/ I$I$e)E)7 I$I$)( I$Ie)E)' I$I$E)!  E)` H%)! ( I$I$E)! E)!Z jE)W* I"5%) $ %)U JIhE)U о$!- $! ($E)z+ I$I$E)!  I$I$E)! I$I$)( I$I$1 I$I$1 A$I$e)E)UU I$I$e)$! I$I$E)!* I$I$E)! HqmE) I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)!(* I$I$)( I$I$e)E)/_2m۴mE)@ I$I,E)! HIE)b֪ I$@!b ɐ$I$!/ 0ɐ$$!b/Mme) * ِde)!  ɒd6e)E)* I$$e)E)* H $e)E)X  dK-e)E)7\ [me)E)P% $I$1" `۶me)! dK-e)E) >MHe) ۶mle)E) K%Æme)! M&e)$!* `C!e)E)%cۣ E)7x~ne)/[EE) 6a۷E)+? `B )e)$! I$K$E)! * I$I$E)! I$I$1  H%ɖ$e)E)\b I$I$e)E)\ m۶aE) -mE)  I$A$E)!ꠀ E)!~ H!b4, D! $!!% I$I$e) ͠$! & I$I$$!! I$I$$!! I$I$%)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! HPE)4 T@ HE)ت Oe)!WJ I$IL1!W-JD'f1! XJO1.?1z H$I$E)!藢 E)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)! PE)A8 @E)@ E)  E)!*& I$I$1  E)A&  E)` I$I$E)! ۶mK6E)( I$I$e)E)﷗6$[dE) `< I$ $e)$! E)a` A@$e)E) ^ ɲ!$e)!ۖmE)A @$e)E)U e)E) - ضmlE) I$@$E)! @E)A8 0۰lE)a`, mӶh"E)!K@ E) I$I$e)E)/ ض-۶mE)` II$E)!" IaI$e)E)_ I$A$e)E)V] I$ $e)E)W] I$I$)( I$I$)( @$I$e)E)[  E)` @E) m۰E)!  I$I$E)! I$I$E)! I$I$E)  %)@ %)! {I$!b   %) @ $! I$I$E)!/ I$I$E)! @HE)Ap I$I$E)!* I$I$1 I$I$1 I$I$e)E)+_UW I$I$E)!  I$I$E)!  I$I$E)!* I$I$)( I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)!  E)a@ mm۶E)! @ e)%)* ۲-ۆmE)J I($!A I$J(!bx I$! ) ۰mܖpE)*  I$e)!  MJ$e)E)( 0` E) 60E)` I$Y`e)$!  6lɐ$e)E)  ۶m,e)! vE)!PU `5! к5MT!?.ϟ1 .'H'1x^ PN4 E) I$!  @$$! H!E) I$I$$!!* I$I$$!!" @$!! ܵ @$!!  I$I$$!! I$I$$!! $!! I$I$$!!/ I$I$$!!(*  $!A@ p@$! h۴! &IҼ!DX ,!6%@!j IV! $ !  I$I$$!! I$I$$!! I$I$$!!*  (!A@ I$! $!!- $! $! 0$!!\  $!A I$I$$!!/ I$I$$!! I$I$$!! I$I$$!!* $!!z $! PE$!A8 !$ I$If1!U).O1!e I}$1!UJ 1'I$1!xU f1!xU E)n  E)% I$I$E)! I$I$E)! I$I$E)$!* I$I$1 I$I$1 I$I$1 E) I$I$1 I$I$E)!<,(  E)!j  E) I$I$E)! $I$e)E) WU A$I$e)E)UU I$I$E)! I$I$)( I$I$E)!  ۶m6,E)@ E)! I$Ie)E)U// I$I$)( I$ɰ e)E)u Ie)E)U I e)E)U I$H$e)E) I$I$E) hE) I$I$E)! ۶6,E)` nmE)b 8E),$ I$I$e)E)U{ A$I$e)E)_W E)   I I$e)E)[ I$I$e)E)z/U I$I$)( I$I$)( I$I$)( $I$e)E)y I$I$)( ۆmnE)@ E)a I$I$)( I$I$E) I$I$E) I$I$E) H%) & H%)n 0I%)) $!b& I$I$%)! I$I$E)!+ E)!o  E)  I$I$1 I$I$1 I$I$1 A$I$e)$! I$I$E)!*( I$I$E)! I$I$E)!* I$I$)( I$I$)( I$I$)( I$I$E)!* I$I$E)! I$I$)( E)  I$e)E)/ I$H E)! JE)! I$@@! $I$!  E)* I$e)! ? X2``e)!$J e) @ e)E)(mE)  Ö I$e)E)X ۶mؖae)E) I$I$1" XlE)  I$e)E)I iee)! I$I$1" I$e)E)U\@f1 BʪiIe) NI$E)/ 9rE) = $ E)+ I$e)!  I$lR0e)$! I$I$E)! * I$I$1 A I$e)E)b ۶mضdE) I$I$E)! I$I$1 I$Ie)$! I$I$E)! @$! I$I$$!! @$$!!` $! I$I$$!! I$I$$!!( I$I$$!! I$I$$!! 0$!!_  $!!*7%  $! $! . I$I1!W J&1!*J InI$1!~J $I$1!^ E)!| P%)z E)!* I$I$E)!* I$I$E)$!" I$I$E)$!. I$I$1 I$I$1  E)@ ۶mlE) I$I$E)! I$I$E)!  `DE) I$I$E)!. I$I$E)! $I$e)E)UU I$I$E)! I$I$E)! I$I$)( I$I$E)!, ۶mۆdE)A I$I$E)! I$I e)E) I$Ie)E)_* Il۶ae)E)W Ie)E)U I$ e)E)ը I$I$e)E) I$I$E)! E) I$I$)( HE)!$ I$I$E)! I$I$E)! $I$e)E) I$I$e)E)\ AI$e)E) II$e)E)+( II$e)E) * I$He)E)W* I$A$e)E)W I$Ie)E)U* @$I$e)E)] II$E)!" I$I$e)E)z/W  I IE) I$I$e)E);z H$I$e)E)뫪 I$I$e)E) I$I$)( ۶f۷aE) ( I$I$E)! E)!z E)! ۰ 7E)! ubI$1!ꊯ. I$1$!z  I$N'f1!z I$I$E)! I$I$E)!/ I$I$E)!* I$I$1 I$I$)( I$I$)( I$I$E)! I$I$e)$!* I$I$E)!* I$I$1 I$I$)( I$I$E)! @E) I$I$E)!* I$I$)( I$I$E)! f۰ E) I$[2,E)! J,E)^ I$K4! I$! mnE)  de)!/m<e)!` ۇۖ E)  <;e)!p  E)!`VWU h1!E)/kwu&e)!*p@=ۆ1 m!  !0$! $I$!  Ad!d I$I$d!d $$!! \ $!!֭ I$I$$!!* I$I$$!!  $!! `x $!!`% $!! * I$I$$!!* I$I$$!! `XӤ$! I*!.m$ ^$I )&-!@ _ HT !  A !   !  I$I$$!! I$I$$!! H$!A( $!!x $!! ( I$I$$!!* I$I$$!! $!! I$I$$!! $!! I$I$$!! I$I$$!! I$I$e) +%!! &I$! $ F!*  E)!5۶E)@$U!Ye)a  f1!_ h$!A8 I$I$E)! I$I$E)! I$I$E)$!" PE) & I$I$E)$!** I$I$E)$!* I$I$E)$! @ DE) I$I$E)! I$I$E)!  E) E)!% I$I$E)!* I$I$E)! E) E)  E) I$I$)( I$I$)( mۦmۢE)! I$I$E)! mӶmE)!p mɶaE)A I$A$E)$! I$$e)E) H$I$e)E) I$I$e)E)* $I$e)E)ծ @$I$e)E) I$$e)E) $I$e)E) I$$e)E) I$@$e)E)p Cm6lE)!` I$I$)( I I$E)!, I$I$e)E)+ H$I e)E)B I$e)E) I$I$e)E) I$I$e)E) I$$e)E) I$I$e)E)u* I$I$)( $I$e)E)U II$e)E)?Uz I%I$E)!  dHIE) I$I e)E)骊 A$I$e)E) I I$e)E) I$I$)( ۶-۾ E) @ l۶mE) I$I$E)! E)!  %)b@H &e) . Ib?/1$!^. I$tB<1$!_W I$I$E)!+ I$I$E)! I$I$E)! I$I$1 I$I$1 I$I$1 I$I$E)! I$I e)$!  I$I$E)! I$I$)( I$I$)( I$I$E)! ۶m۶!E)@ E)! I$I$)( $I$e)E)K ø-۶mE)`  I%ْae)! P@E)z I$P@! DI$! ? TE)  I$e)! Kl e)E)-# e)b 6lE)A۰B2mE)Ap `ɐ$e)E)  [m`e)E) ۲ ۶me)E)01E)a@H$Re) ɶ$[me)E) H$Ie)E)X** I$e)E) VX `!e)E) ?e) ^h nE) > @`E)+mE)  M&%e)$! I$I$e)$! * I$I$1 K ۶mE)4 I$A e)E)VR I$I$e)E)) I$H$e)E) H$I$e)E)\b I$I$E)! @E)!_ I$I$$!! I$I$$!!( I$I$$!!. 0e) T!& m۶1! $ ! - ıE)!W- ۶}XE)A  f1! W p$I$f1!xU  %)a* I$I$E)! I$I$E)!*  E)A@ E) I$I$E)$! I$I$E)$!( I$I$E)$!**  E) I$I$E)!( I$I$E)!* E)!x I$I$E)! I$I$E)! I$I$E)! @E)! E)b I$I$)( I$I$)( I$I$)( E)! I$I$)( 㰭3lE)` mZmE)! I$$e)E) $H$e)E) I$I$1 $I$e)E)  $I$e)E) H$I$e)E) I$@$e)E) A$I$e)E)*^ I$H$e)E)( I$I$)( I$H$E)$! I$I$E)!( I$I$E)!( I$I$E)! ض ۲-E)!` hmE)!  E)!PP* 6`۰pE)4 I$ $e)E)+u I$Ie)E)" ۰m۶E) I$I$)( ؆ ۺ-E)@ ۆmܖmE) I$I$)( I$I$)( m[mE)P I$I$e)E)ި_ I$I$)( I$I$e)E) I$I$1 I$I$E)!< I$IE)! I$I$E)!۶E) ` I$I$E)!.  E)a@6۔gE)= I$$e)! I$I$e)! E)* I$I$E)! I$I$)( I$I$E)!. I$I$)( ۶m۰-E)` ۶m6,E)@ E) I$I$)( I$I$E)! I$I$E)! I$I$E)!* I$I$E)!* I$I$1 $I$e)E) UU H e)$! c۳e)! O%E)_z I$I%!? pI$$!/`e)! MI&E)A6 HE) &=R!ਪI e)% '1 S۹}E)b` 4 !)  $! ` @!* d!d  !@ @!A Id!d I$I$$!! I$I$$!!* H$!!pֵ $!!5- I$I$$!! I$I$$!!( 6! m9!$!~P$ID I'U  qIڴ !/ m!  $!!)  $! ! @$!! ^ $D! I$I$$!! $$!  $!!x $! @$!!5 I$I$$!! I$I$$!! I$I$$!! &$! hڲm! жm!Nl!H a M !*./ $!!= %)!׫ I$I$E)! @E)@ 0%)   %)b@@ E) I$I$E)$! !E)!" I$I$E)$! I$I$E)! I$I$E)!* @E) I$I$E)!* I$I$1 I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$E)! I$I$E)!( E)A(4( I$I$E)! I$I$E)!  E),4 I$I$)(  E)@ E)a I$I$)( I$I$E)! I$I$E)! I$A$E)!@ nmE)  I$I$E)! I$I$E)! I$I$e)$! $I$E)! . 6lΖlE) I$I$E)!  ۶-E) ` I$H$e)$!* I$I e)E) ۶m60E)p hmE) A Ie)E)/. 6llE) I$I$e)E)W I$I$)( $I$E)! ضaٶmE)  I$ $e)E)U I$H e)E) I$I$1 I$I$E)! I$I$)( I$I$E)! I$ $E)!  %)   I$I$E)! 8E) {e)!) I$MB0e)! (E)x I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)!( $IE) E)A I$I$E)! I$I$E) I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$1 I$e)E)- I$2,e)! XE)~ꨀ I$x(! I$!/۰moE)*`2@rE)!pG"e)$ $I$e)E) I e)E)z *۴d(hE)aTJDe)" $Ie)@ i E)! ÖI$e)E) X [%`e)E) HI$e)E) I$I$e)E)WZ $I$e)E) Xe) @ `E) uP %)/$AR-ٔE) 7 `B2)e)$! I$K$e)! I$I$E)! I$I$e)E)/ I$ E)!( I$e)E) + I$I e)E) I I e)$! I$I$E)!ˆ I$I$E)!x $$! m[1!"!*)@ !o~ !A !  I$I$$!!/ E)! I$I$E)! @ %) I$I$E)$! hE) I$I$E)$!*** E) I$I$E)! I$I$E)! I$I$E)! I$I$E)!  E)' I$I$E)! I$I$1 I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)!( I$I$E)! I$I$E)! I$I$E)!* I$I$E)!* I$I$E)!  E)!j E)   I$I$E)! m6l;E)!*@ E) I$I$)( @DE) I$I$)( I$I$)( I$I$E)! I$I$E)! $@E) p ۰ ۶-E)@ ۆmۖmE) I$I$E)! I$I$)( I$I$)( I$I$)( I$I$e)E)y I$I$E)! E) I$I$E)! MѶmۢE)!&@ mmE))6AdE)  I$$e)E) I$H$e)E) I$I$e)E) $I$e)E) I$I$1 I$I$1 ꪪ I$I$e)E) @$I$e)E)] I I$e)E)_ ۶mXmE)  I$K$e)E)^x H I$e)E) I$I$)( E)@ E) I$I$E)! !$I$e)!KmmE)  I$X`e)! I$I$E)!/ I$I$E)!. I$I$E)!  RE) i E) C I$I$E)! I$I$E)! I$I$)( I$I$)(  E)  I$I$e)$! I$I$E)! E)!BJ 0E)F$I2E)@" JE) ۲mlE)ꪠ I$"! D! ?/ P$i!bpɐ`$  vxOAe)/ (Ԭf1xW ؖmT !+ i`!+ $H!*  5Bi! ` @!d!d $$!!+Z  AE) d!d I$I$$!!* $$!!zV I$ E) e) I$I$$!!. 0$! * M4! & aC'I$IĉA y $ ! it-!/ !$!  $d!d  d!d !  $ !  !  P$! $!!x I$!!z- H$!!W  ! I$I$e) I$I$$!!* @$! m۶5! ?!W@'M$! ت$$ ibW ;1! II$ !* I $!+ I$I$E)! I$I$E)!  %)@ %) I$I$E)! D@%)! I$I$E)! I$I$E)! @%) I$I$E)$! I$I$1 I$I$1 E)  I$I$E)!  H%)  I$I$E)! I$I$E)! I$I$E)$! $%)AР I$I$E)$!* I$I$1 @DE) E)! I$I$E)!  E)@ E)A I$I$E)!* ۶ ۶-E)@ ۆmۖmE)A I$I$E)! I$I$E)$!0 64 E)A` I$I$)( I$I$)( I$I$1 I$I$E)!8 I$I$E)! II$e)$!* I$I$)( llE)a& I$I$E)! I$I$E)! I$I$)( I$I$)( I$I e)E)_׵ I$I$E) I$I$)(  E). c۶mE)!p* m nE)4,۶ ۸-E)@ `ÐmE) I$$e)E) I$Ie)E) I$I$1 H$I$e)E) I$I$1 I$I$e)E)U $Ie)E) * II$e)E) ~ mҶE)!@ ضm6`E) I$e)E)- I$I$)( I$I$)( E) I$I$E)! ɐ$I$e)! 2`۶me)` we)! I$I%e)! I$I$E)! I$I$E)! hE)  E) E)  I$I$e)$! I$I$)( I$I$)( @E) I$I$)( I$I$E)! I$I$1 E)$, I$I$e)E)-])l䖐E) I$AE)! J, E)^ I$M%! I$$!/a{}E),* dB%e)! I$lB0e)%) A e)E) * I$I$E)! $I$E)! ۖmle)E) @e)E) ɐ$[-e)E) p [le)E)% I$@ e)E) $ IE)  !I$e)E)^ m&de)! I&$ E)  0E)b eE) 2۶E)@ !I E) I$I$E)! I$I$1 H$ $e)E)\s  I$e)E) e6E)b  I$I e)E)k/ E) ` $mP4E)^p $I}o) !D! Im6!  E)! I$I$E)! I$I$E)! E)( I$I$E)! I$I$E)!  %)a I$I$E)! I$I$E)$!  E)  I$I$1 I$I$1  E)A` E)!  I$I$E)! 0 E)  I$I$E)! I$I$E)! I$I$E)!" %) & I$I$E)$!* I$I$1  E) I$I$E)! I$I$1 @E)A I$I$E)! I$I$1 6`E) I$I$E)! I$Ie)E)_/ I$I$E) ۶ 7`E)A$, I$I$)( I$I$1 I$I e)E) I$I$E)! I$I$E)! I I$e)E)WյJ I$I1! I$I1!_ mmE)!- I$I$E)! E)! ^m6bE)! H@ E) I$I e)E)W I$I$)( I$I$)( I$I$E)! h۶E)! I I$E)!8 I$I$)( I$I$E)! $I$e)$! I$I$E)! I$I$e)$! I$@e)E)= I$I$E)!88 I$e)E) 6`۶E)A4 I$I$1 I$I$)( I$I$)( I$$e)E)ꪂ I$I e)E) I$I$)( I$I$)( 6lۇE) I$H$E)! I$I$e)!+ @I$e)! I$e)!  I$I%e)! (%)A` I$I$E)!/ I$I$E)$!@ HE)$ I$I$)( I$I$E)!* I$I$E)! I$I$)( E) I$I$E)! I$I$E)! I$I$E)!* I$I$E)!BӪmѶE)I8%E)a iк5! (6d!_5 P@E)- 4꛷E)XV ir4!+  @$! @$I!*  $I!   d!d Ʉd!d d!d I$I$d!d d!d ("!@ ! !  I$I$$!!? @$! ЦMӪ6!~K>M$!bN$IIRM!(4 ɶm !b  Pl!  $Hd!d Hd!d 0! !!,$ d!d I$I$$!!/+ $!! *x $I$!!Xխ H$!! I$I$$!! I$I$e) 0$! H$! жmF2!e$!$I IZ! IY * $I! I! $!! $! I$I$1 I$I$E)!  E)j %) H%)$ I$I$E)$! I$I$1 I$I$1 I$I$1 I$I$E)!* I$I$E)! I$I$E)!* I$I$E)$! I$I$E)!B  E)  I$I$E)$!* I$I$E)$! I$I$E)!ꂂ I$I$E)$!* I$I$E)! I$I$E)! I$I$E)! @E) p I$I$E)! / I$I$E)!. I$I1E)}}+J I$I1!J I$1%)e I$I21!_e I$1$!U.1!. I$$1E)*. I$1E). I$1E)W I$f1$!MZ$e) I$=1!ժJ I$B1E)UJ I$I1!W. I$IІ1$! mێ E)! I$I$E)!x E)!k m۶mE)! HE)b<4 I$Ie)E)U^/ I$I$)( I$I$)( I$I$)( ۶m۰-E)` II$E)! I$I$E)$! I$I$)( I$I$E)! $I$e)E)U I I$e)$!* I$$e)%) I$IE)! II$E)!  60E)` I$I$e)$!( I$I$e)E)7Wz I$I$)( I$I$e)E)+ I$Ie)E)" I$I$)( I$I$)( ۶ ۶!E)@ E)  I$I$E)! dI$e)!/ I$ $e)!x I$I2 e)! I$I$E)! E)* I$I$1۶mE)` I$I$E)! I$I$E)! $I$e)$! I$I$)( E)  I$I$E)! I$I$E)!. I$I$E)! I$I$E)!& dI$e)E)5W}K-ME)!ܠ ߘmۆmE)驠 I&! )DI$! ۰mߖpE) DE)  M&$[e)%) I$ɂ$e)E)ꪊ I $e)E)z  dI%e)E)%Vp ۶mÖ`e)E) I$I$1" I$ e)$!* `I$e)E)- Ydle)E)( ۶-6 E)a@mۨ-E)@ e) C" E) BAy$!> H%);/-e)! - nضE)A $ I$I$E) ( I$I$)( 30۶mE)A` $I$E)! ( ۦmE)! II$e)E)n> ۲m6lE)@ i+I$E)A I$ ! IH$! I$I$$! %)A I$I$E)!* I$I$E)! $E)A @E)@  E)  I$I$1 I$I$1 I$I$1 I$I$E)$! I$I$E)! I$I$E)! I$I$E)$! I$I$E)$!" @4%) ` E)(4* I$I$E)$! " I$I$E)$!* I$I$E)$! * I$I$E)! * I$I$E)! I$I$E)!(*( I$I$E)!* KE) & I$I E)$! I$IE)!?J I$Ib1!J I$I1!J I$1!e I$I`1!UJ'1Azm0f1a. I$1E). I$1E). I$ 1E)U I$涆1!Ie) . I$O1$!J I$IB1$!~z I$I$E)!+/ :m۶e)!^1!  $I$f1!Wmce)!Z?e)!Z-۲E)!@ E!E) E)!_ `E)!׀  E)! K-mE)a E)a xE)<< I I$e)E)UU I$I$)( I$I$)( I$I$)( I$I$E)! I$I$e)E))U_ KI$e)$!*L)I@E)4 mM E)  I$I$1 E)!@ I$I$E)! I$I$e)E)-~ II$e)E) W I$@ e)%) ۶mÖmE) I$I$1 ۶a۶tE)$ I$I$E)! I$I$E)!M[%E)rz I& $e)!~- I$I$e)! m۶mE)B E)  I$I$1 I$I$)( I$I$1 I$I$E)! !m۶mE) I$I$1 I$I$)( [mE) I$I$E)!* @HE) &m=&!"Mъ ~޷  ! MV! I !/  @$! HI$!** $ *(!@ KI! $ &I!*  @$d!d Id!d &d!d @„!@E) I d!d Id!d  4! iڴ-!$$!@$IAPz Ixa  i4g!/ M5 @!  H$d!d  I$E) $A$! $ !  @! ) ! ! I! 0Ld!d $d!d @$d!d d!d $! 0L$!8!>!^(M$!t$I`*IT a* 4I$ !* I$!! -! $!b I$I$E)! I$I$1 PE) I$I$E)! I$I$E)! E)!j E) I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$1 I$I$1 I$I$E)$!* PE)a8 I$I$E)$! I$I$E)!  E)A E)  E)!  6E) E) $E) !E)!_u I$I$E)!⭭ I$I$E)! /+$p IE)&uڶ1 $I$1E)UU $I$e)!  @$I$e)E)`]U (E) ` I$I$E)!  I$I$E)! I$I$E)! I$I$E)!W*  E)!UJ E) E)*$, IE)b77 I$I$E)! I$I$E)! $I$e)!‪e)!ժ  $I$f1$!_^ XI$f1!}e)! e)! # E)A ʇ nömE)( @E)! @E)!  E) `( E)A &  E)a` I$I$E)!) I$I$)( I$I$)( I$I$)( I$I$E)! I$I$E)!  Ò$I$e)$! ۶mE)`$)`IJE) I$I$e)E) I$I$1 E)!& I$I$)( HI$e)E)-U^ I$$e)E)胵 ۶mfE) I$I$)( ۶m6] I$I$E)!  E)@@&`ӱmf1۱mۆ1 $I$f1$!~ $ɒ$e)!/ H$I$E)$! E)* I$I$E)! I$I$E)! I$I$E)! I$I$E)!U E) E)!@ p E)b` E) I$I$E)!* I$I$E)!(  E)*@ E)A `E)@  E)  E) E) I$I$E)! E)!u  E)!{* H*E)a* HE)!z׈ H E)!z 04 E) LE)!U{ E)!W @"E)@ PE)) ضe۷mE)  I$I$e)E)U I$I$)( I$I$)( I$A$e)$! $I$e)$! mmѶE)!@ vl۰mE)!( I$I$1 II$e)E)** I$ $E)!m۶mE)a I$I$e)E)- mmE)!$ I$I$)( I$I$)( I$I$E)! PFE)  ɐ$I$e)!  Se)!x $IhɐE), FE)* I$I$E)! I$I$E)! E) I$I$E)! I$I E)$! I$I$E)!* I$I$)(  0E)!`XVUK>!_X< E)A  I$I$E)! E) $( I$I$1 $E)A @E)a I$I$E)$!( I$I$E)$! I$I$E)!  E) I$I$E)! (E)`  E)b I$I$E)! I$I$E)$!(* I$I$1 HE)A4 I$I$E)$! I$I$E)! I$I$E)! jE)ޠ  $E)!UUz m׶m%) ۲E) R"%E)j  E)  I$I$)( I$I$)( I$I$1 I$I$)( I$H$e)E)U\ I$e)E) V I$e)E)% I$I$e)E) I$I$e)E)ꨪ I$I$)( mm6E)!p f,mE)a * I$I$E)! I$I$)( I$I$E)! I$I$E)!۰mۘnE) mضE)!@ h @E)  E)   E)J HE) &!__C8t$I0C*   yD !* T"%H!! & !! I$ ! $H$! I  !*  E) $A$! HI0!** $E) ")*!!A@ @!  Ъvݺ9!%N$I$I o6  L !  !A"`$! H$I!* I$! @$I !*  H$! ( R.%R#$!` J$M!( @$ !   @ I&! $HE)  I$H0! hZt!$ &!*%O$ ^UI$I/IP$!a }&I$! $!% I$I$$!!* @ !, I$I$$!! I$I$$!!/ @4!A` $!  $!b, I$I$$!! )$!b  $!!+@ h!   $!@ ! h$! -! @ $%) H}$%) 6mI$!` I! I'$! $!! I$I$$!! I$I$$!!+ I$I$$!! I$I$$!! I$I$$!! $!!j I$I$E)! h E)(> I$I$E)! 0E) %)b I$I$E)! H%)a( I$I$E)$!* I$I$E)$! I$I$E)$! I$I$E)$!* I$I$E)! E)` I$I$E)! I$I$E)$!*  @E)A I$I$1 I$I$1 I$I$1 I$I$1  HE)A( I$I$E)$! <E)` I$I$E)$!  E) @  E) E) I$I$E)$! I$I$E)$!( HE) I$I$E)!j I$I$E)! /E)& I$I$E)! I$I$E)!( I$I$1 @E)` I$I$E)!( I$I$E)! I$I$E)! E)j HE) L$HE) UUW &i۶%)+  -E) E)A4% I$I$E)! I$I$)( I$A$e)E) I$I$)( I$A$e)E)^ ِ$I$e)E)Uz I$ $e)E) I$I e)E) I$I$1 I$I$1 I$I$)( 8,#KnE)@* E)( I$I$1 I$I$)( I$I$E)! E)* mm;e)! _#2زiE)a@ PIE)b I$I$E)! I$I$)( I$I$)(  E)! I$I$e)$! * I$I$E)! I$I$)( I$I$)( E)$ I$I$E)! E)!M l de)!  I$[,e)! M$ !^ I$!/%A&%)! /e)! IҤ`Be)%)( A$e)E)* I$@ e)E)7\` , de)E) 5 ɖlۆ$e)! I%ؒme)! ٖ`I$e)E) 7\ ٖ$2le)E) H  e)E)x I$E)! (" [LE)aukE) j 5X!z  `E) - @! e)! I$I$E)! * I$I$E)! I$e)E)= I$H$E)! ( I$I$)( I$I$E)!  E)@ E) @$! I$I$$!!/ Ȁ @$!,( H$%)A $E)W ɛt$! R&m%!Ap* N$!u $! I$I$$!! I$I$$!!* I$I$$!! I$I$$!! I$I$$!!* I$I$$!! $!!* I$I$E)! 0E) @E) $%) I$I$E)! E)!~ʪ %)  I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)! @E)4 I$I$E)$!*( E)`   E)b  I$I$1 I$I$1 I$I$1 I$I$E)! PE)  I$I$1 D@E)  E)` E) I$I$E)!* I$I$E)$! I$I$E)! I$I$E)$!( I$I$1 I$I$1  E)A  E)b@@ E) I$I$E)!" ,$!!d E) I$I$E)!* I$I$E)$!*" I$I$E)$! " I$I$E)$!* I$I$E)$!** I$I$E)!@  E)- E) fE)~ Iݪ%) $E)U )!E) E) I$I$)( I$I$)( I$I$)( ˰۶mE),& I$ $e)E) I$I$e)E) I I$E)! I$I$E)!!m6mE)  I$ $e)E)ꨋ I$I$e)E) I$I$)( E) I$I$E)!^ E)! _ 6-jE)!W` &Z.!!`&mҼ!!hA$I$A*I$q [/ % ! %!ah $JI! !I$I$! A$I$!  I$!  IE)a  I! @!H! IIE)a hg$H!A Z$!l`$ P$I$I$I! )YlQ" o DH!  $I$! RDj$A! (  H! * I$! $I <!`  $!   E) I$I$)( I$I$1 I$I$)( ,E)p A I$e)E)U I$@e)E) I$I$1 I$I$E)! KmöaE)A( H I$e)E)%U I$H e)E) I$I$)( @E) I$I$E)!  E) ?~ hҢmE)!X%W  @E)x  E)* I$I$E)!/ I$I$1 I$I$1 I$I$E)! I$I$E)!* I$I$E)!08 I$I$)( $E) p H E)$( I$I$1 lI$e)E) ] I%`e)! @E)zꪠ IW!-* @Rd%)b@%ްmE)ar ie) I$ $e)E)* I$e)E)p*B$AE)@ e)A @ e)E)p I$e)E) 'X I$le)E) 6,$E)@e) ) hB6!e)E)pdN$ E)X #4 ! mtE) -7 D2Ie)$! I$I$E)! * I$I$E)! I$I$)( I$H$e)E)X{ I$I$)( I$I$)( I$I$E)! ( I$I$E)!V` J$!aؾ $I$! I$IX ! I!Aޞ $ ! I$I$d!d $!!+ I$I$$!! * I$I$$!!* I$I$$!!* $$!!*U $!! I$I$$!! $!!}/ I$I$$!! I$I$E)! @E)j %)  @ %) I$I$E)$! I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! @%) ` E)! I$I$E)! E)$ I$I$E)! E) I$I$E)! I$I$E)$! I$I$E)! I$I$E)! I$I$E)$! E)!j*  E)!zb I$I$E)$!# I$I$E)$!( I$I$E)!J E) I$I$E)!( I$I$E)! I$I$E)!* I$I$E)! I$I$E)! I$I$1 E)` I$I$E)!! I$I$1 I$I$E)$! I$I$E)! I$I$E)! + I$I$E)! E)@ E)A I$I$E)! I$I$E)! H E)  E) [vR @%)z mE) PE)+ I$I$E)$! I I$e)E)U E) I$I$)( I$I$e)E)-U_ I I$e)E)% I$H e)E) I$I$1 I$I$1 $I$e)E)_ I$ $e)E)ꨋ I$I$)( I$I$)( E)!@ I,5!z-2!}I$I$Iy * ID$A! H"1!PC  !* $!!I$I$!I$I$! H"I$A! @$I$!I$I$!  $I!* mۺ5!  ,9,!9p$I$IA I1I/ LVD!* "@I!aB a !I$I$! $$R" !Ap IE) B"IR#%! `p $I$H !* B#IK!b $I"!J  ! , $%I2!s$H$I/I@A!U $I$ !+ I! I$I$d!d $!!* $!! (  ! I$I$$!!/* I$I$$!!( I$I$$!! ( $$!!p_  $!!ֵ !4 I$I$$!!* hE! H! &!^ $5O$!x$I ڪ* I$$!+ [IH!   @! I$I$e) I$I$$!! * I$I$$!! $$!! ^ 0,! 2DB$! H$!!W- $!!- $$!A I$I$e) I$I$e) I$I$e) $!!~ $!! I$I$$!! I$I$E)! I$I$E)!꿫 I$I$E)! E)p I$I$1 I$I$E)!ꪪ I$I$E)! I$I$1 I$I$E)$! @E)  E)A&. I$I$E)$! @E)` I$I$E)! @E)!( I$I$E)!Ȫ E) I$I$E)! I$I$E)$! I$I$E)$! I$I$E)!( E)!% E)! I$I$E)$!* I$I$E)!  E) I$I$E)! I$I$E)$!  I$I$E)$! I$I$E)! I$I$E)! I$I$1 I$I$E)$!  E) I$I$1 I$I$E)$! I$I$E)! I$I$E)!* I$I$E)! ( I$I$E)$!* * HE)A$ I$I$E)! ` I$I$E)!* E) @ Q @E) i$ E)  Mm $! `E) E)! - II$e)E)5U_ E) I$I$e)E) I$I$)( @I$e)E)-^ I$@e)E) I$I$1 I$I$1 I$I$e)E)5Wz H I$e)E)5W I$H$e)E) I$I$)( I$I$E)! E)& u E) X@E) . muE)!Vp @"@E)AJ E) I$I$E)! II$e)$! I$I$E)!( I$I$E)!* I$I$E)!@ E) I$I$E)!&> I$I$E)! I$I$e)E)%_w X e)$!  I$K%E)! K! P)$!> I$f1$!+U s51E) [%I%E)!` H e)E)x * lI$e)E)x Ie,e)E)* e)E) dK%e)E)\`iE)a 6ٖaE) I$H$E)! a0!e)! [-ۈmE)@ U u$!!  %)  * @ E)! I$K%E)! * E)a$ I$I$)( I$I$E)! ( I$I$E)! -۲mE)a@ E) hHE) $PH! d!d I$I$$!!* I$I$$!! I$I$$!! $$!!/_ $!( H$!*, I$!! $!! @ $!b% I$I$e) I$I$e) I$I$$!! $$!!_ I$I$$!!+ I$I$$!!/ I$I$E)! I$I$E)! I$I$E)! E)(&* I$I$1 I$I$E)!* I$I$E)! I$I$1 I$I$E)$!   E)&@ E) I$I$E)! %)$ I$I$E)!  %)  $E)` I$I$E)$! I$I$E)!** I$I$E)$!* IE) $E)!^ E) I$I$E)! I$I$E)!* I$I$E)!J E) I$I$E)! I$I$E)$! I$I$E)$!(* I$I$E)$!"* I$I$E)! E)!j@ %)A E)! I$I$E)! * I$I$1 I$I$1 I$I$1 E)  I$I$E)$! $@%)!Р H%) I$I$E)$!**  E)@ E)!( I$I$E)! E)z #E)} N0$!  $E) U E) - A$I$e)E)U} I$I$)( I$I$)( I$I$)( H I$e)E)W I$H$e)E) I$I$1 I$$e)E)Wj AI$e)E)5Wz I$$E)! HP3%E) j`'I$!AB$I$A`*I؁I t  ! $b"! ض!I$I$E)a$! (!*b!I$I$! !ꪪI$I$! H !a   @,9! P)%Y>!_"'N$I$I/   lR&#!!z THZ&!!I$I$!!H!I$I$! II$!** $! #$I! !ꪪ $I! $b! E$$!z$I$b}I$IA*  IuJ$ !* !$!/ I"i!@  ! $d!d  A$!!\ե  !@ t4!b ! $)$!j  ! $!!- I$I$$!! H!b4 -! HZ$! $I$! I$IX ! IJ!+  ! d!d  ! I$I$$!!+ $$!! W @"!@ 4 0$!* $!! $!@  $! I$I$e)  $!A@ H!A A$!!] $!! I$I$$!! ( I$I$$!!. I$I$$!! PD!  *$!  I$I$%)$! ,%) ` I$I$E)! I$I$E)!ꪊ  E)!*_ E)!( H%)A,$ $E)!U iE) mE) $E) U ФE) ФE) &E)_ E)U ږE) )E) I$I$E)!_ TE) E)!} E) I$I$E)! ~ I$I$E)! I$I$E)!*  E)(@ I$I$E)!* I$I$E)$! I$I$E)$!* I$I$E)$! I$I$E)! I$I$E)! H%)a,4  E)! I$I$E)! I$I$E)$! I$I$1 I$I$1 DE) I$I$E)$!*(  E)h @E)@ E) I$I$1 E) I$I$E)! E)!x*  E)  ۠`%)~ PNeE)/U  E) I$I$)( I$I$)( I$I$1 I$I$)( I$e)E)%U^ I$$e)E)U I$I$e)E) I$Ie)E)z** I$H$e)E)%x I$I$e)E)- I$I$)( E)a$ I$I$E)! I$I$E)!_6ضoE)!%_ džE)!X E)!/ ۰mE) `  E) E)A I$I$E)! @E)` E)  E) I$I$E)!  I$I$E)!* I$I$1 `I$e)E)- I$X-e)! `0%)!W_ L$E)!^ ɐ$I$e)! ? @!e)!  foe)! @ I$E)!  dI%e)E)5Z` ٶmÒ!e)E)  e)! 7۶E)!  I$le)E) I$Ie)E) I$A e)$!* @ e)$! [E) uڪ ! P.E) + e")e)! n6lE)A I$I$E) $I$E)! I$H$e)$! I$I$E)! I$I$)( I$I$E)!( E)!x` I$I$$!! $!! x IJ! @$!!_ $!! H$!A( I$I$$!! I$I$$!! P$! I!a% $!!~ $!! I$I$$!! I$I$$!! $!! )($!! $! I$I$E)!/ %)A4 I$I$E)! I$I$E)! &E)!W  E)@ IE)b 1E)* k$E) -E) 6E) E) E) $E)*U E)* m$E) E)!8 (E)z $IP $E)!` @E)!U]zk E)! fE)* I$I$E)! E)!^I$IE)۶mۆE)* I$I$E)! $@E)!P I$I$E)! I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$! (E)A` I$I$E)!* I$I$E)! I$I$E)!  I$I$1 $E)A I$I$1 I$I$E)! I$I$E)!* I$I$E)! I$I$E)$! * I$I$1 I$I$E)$!*  E)` (.E)h Y @%)A PU;E)/W E)- I$I$)( I$I$)( I$I$e)E)z  E)!' H I$e)E)W I$H e)E) I$I$1  ,X&E)CL$I$I$?ImbI $!`d!K!B$D !` 80l!@!!j@ A !P$ ")H A@ H)!h&> Z@$I$I$C? i{ !]߽ `! !ꪪ@ !4PB) `@ !@!aP HJD $( 0!zI$I$!$ p$! H",I6!bܪ8&N$I$I$IT b/ (Q!A"  S%*!!r !$A!  d!d @$!!@ $! I$I$e) @!A@ *$I!A !d!d ! ! I$I$d!d $=!x )M$!`WUh$I! I$! I% @!* H!A  Hd!d I$I$e) $d!d I$!!~U- @$!!^ $!!% I$I$$!!* I$I$$!! * L@T! $!!  J !$ $!!z I$!!U $!! H!4, $!! I$I$$!! @2d!d  $I! $=!Z AҖ$!  z$! @UI$!` &I! К$IҾ!Aޞ$! k$]!bZ m'$! z y$!} IJ%)  ImE)U( m+IHE)44 N"E)W I E)ժ uE)W I hE)U mMR(E)az` ͗%)A& i %) %IE) $E)A I $!*. (E)xp E) I$I$E)!/m۶ E)b m۶ e)!{@ E) E)! E)  I$I$E)!* I$I$E)! I$I$E)$! I$I$E)$! I$I$E)$!** I$I$E)$!*  E)  I$I$E)! I$I$E)! I$I$E)!  E)!J E)  I$I$E)! I$I$E)!* I$I$E)!* I$I$E)! I$I$1 I$I$E)$!* I$I$E)$!  E)z& ۤH%)  v%) U^ TE)+ I$I$E)$! I$I$)( I$I e)E)  E)` I$e)$! I$Ae)E)% I$I$1 I$I$1 $I$e)E) ^ I$ $e)E) I$I$e)E) I$I$)( I$I$E)! I$I$E)! ۶a۶5E) *z TP E)b*X  t%)!@* p@E)a8 I$I$1 I$I$1 I$I$E)! * [m۰mE)` I$I$)( I$I$E)! I$I$E)!* I$I$1 ٖ I$e)E) U&m2,e)`` @ t%) @$!! / I$I$e) / $[ e)!8ɐE)  e)E)  ɐ$K-e)E)x ۶m`e)E) $e)E) I$@ e)E)Xp$,ò E)@@ A$e)! I$H$e)$!*  e)$! l E)x vh۰ %) @&E) + ؆d۰ E)  ۶f`mE)a I$I$e)$! I$I$1 E)!.6( I$I$1 I$E)!@ E) HE)!V I$I$$!! I$I$$!!* I$I$$!!  J! @"A!@ PI ! @$!!_- I$!!  $! !A $!! d!d ("I!a@` P! $!W H$!  AI$! HiI$!$ $I!`$I !A* Җ' $!U. O} H!A O! o! z y;I%)U II`E)U m+ E)  IE)U  E) IE)U qmE) )J%)aj< E) HE) E)!` 6,۲mE)@ E) I$I$E)! I$I$E)!  E)A@ PE)  @E)a f1!_. OI$1!z I2?$1!U+. I$1!Wm;v2̆1Az X@E)a( E)! I$I$E)$! `E)`  E) I$I$E)$!* I$I$E)$!* I$I$E)!* I$I$E)!+ I$I$E)! I$I$1 E) I$I$1 I$I$E)! I$I$E)!" I$I$E)$! I$I$E)$!* I$I$E)$! I$I$E)$!* $E)Ap ɵ %)Wx `%'E)-W E)- $I$e)E) ˇm۶mE) I$I$E)! I$I$e)$! hE) 8rb'I$I$?I1ge  !@˜!!I$I$E(C` !H ! $@ !p!I$I$E(C !ꪪɯ!!!%I$pmH$I$aIDeX IӴ Q!u!@ ʡH .&l 0!I$I$E(CI$I$!`ؖ!!!Z@!@ ْ!bpP$p$I$*I a? I҄A * D$I!  $@$I!' I E) @`E) @Bd!d ! ! Ȅd!d Ä$E) !d!d d!d  d!d @&!x $5I$!O$I!/ I|$!- $!)& $ d!d Hd!d  `! `d!d Ȅ!d!d  d!d I$I$$!!+ I$I$$!! $!!*~ @$!!_ $ $!!W $!!w- $!! $!!* I$I$$!! $!!z @&$! 6! HFz$!( $I$!$I$!O$I * I$/! I$$! I$%) i IzIE) E) HE)!U* I$I$E)!* I$I$E)! I$I$E)! E)  @E) I$I$E)$! I$I$E)$! I$I$E)$! $I$e)E)UUU I$I$1 I$I$E)! I$I$E)$!* I$I$E)! I$I$E)! I$I$E)!(mmE)! :E)  I$I$E)! I$I$E)!( I$I$E)! l̶ E)A*.& E)!J1f۶mۆ1a  f1! u. II$1!W]. I$&$1!U^ I$O1!Uz 2ɆmE) j E)!U I$I$E)! I$I$E)! E)a&* I$I$E)$!* I$I$E)! I$I$E)$! I$I$E)! I$I$E)!/ I$I$E)! E) I$I$1 I$I$E)$! I$I$E)! I$I$E)$!" I$I$E)$! * I$I$E)!* I$I$E)$! E)!~h }5E) TM,E)-Wz TE)+ I$I$E)$! 2l۶mE)` A$I$E)! I$I$1 AI$e)E)-_ I$@ e)E) I$I$E) I$I$E)! AI$e)E)%WZ I$Ale)E) I$I$)( I$I$E)! E)!_( E)- 4E)x* 0FE)* I$I$E)! I$I$)( E) ($ I$I$E)!( I$I$E)! I$I$)( I$I$E)! $E)a I$I$1 I$e)E) 5Uu K%ٖle)!  E)h E)!ﯭ I$I$E)!-De)a  I&DCe)%)  e)E) a۶E)! I e)E) % ِa$e)!8 I$@ e)E)X Km e)E) ' I$H$e)E) I$I$E)!("1!J$&E)  uj۰ %)UVX 0`E) +- C!ɐde)$!  I$I$E)! * I$I$E)!  E)b I$I$E)!* I$I$)( I$I$)( I$I$E)! p $!! H$!!W- $$!!xU A$!! $!!~ I$I$$!! $!!~ $$!!_ -! @$!  JI$! ?I$!$I$!bO$I! I$%!* I$! IDE)bח* *E) E)  E)!ժ I$I$E)! I$I$E)!* I$I$E)! @E)  E) & I$I$E)$! * I$I$E)$! I$I$E)!* I$I$1 I$I$1 I$I$E)! I$I$E)!* I$I$E)!( I$I$E)!  E)@@ pE) I$I$E)!B E)! I$I$E)! I$I$1 I$I$E)$! I$I$E)! I$I$1 I$I$E)! I$I$E)! E)!_ I$I$E)!/wf1!U S?e)!x ۶d{0ne)e)!| E)!+\ E)!* I$I$E)!  E)A`   E) I$I$E)$!* I$I$E)!  E) $%) I$I$E)! I$I$1 I$I$E)$! I$I$E)!* I$I$E)! I$I$E)$! I$I$E)! I$I$1 `E)` I %)A %)-^ E)/ I$I$)( 9E)x^,9r$I$I$Iر!!E  !(P!IH '  p D $H!!ʪ  e!Hx A((4@ ```!4h¶!z^9`$I$I$/I؁l/ m&R!!j H$I! 0`Xd!X!I$I$E(C@!z$ !!!HD!֔hrF0!$I$I$I$ Icٖ/ J¤! &  I$!( a AE)  H!& $I!*  @E) @@d!d  ͠H!! $ E)  AIE) $d!d $I$d!d  @&!^ &I$!^UUI$I! j* IT$@!+ 0IжM! * H$E) JI$!!$ ҤE$I! 0Id!d $UP! d!d I$I$d!d e)  $!!*WU &!$! HD !8:  $!! !( I$I$$!!  $$!!W HZ$!A $Ij$!^U $&I$!^UU@$I$arI$I^! I$$ !߿ IO! $I$! IB$! E)! I$I$E)!* I$I$1 I$I$1 I$I$1 I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)$! I$I$E)$!( I$I$E)! I$I$E)! I$I$E)! I$I$E)! PE)A I$I$E)$! I$I$E)! I$I$E)!(*  E)b&& I$I$E)! E) I$I$E)!(( I$I$1 I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$E)! E)!f1! _wf1!+U, 1$ӶE)A@@m]E)m E)!W` E)! I$I$E)! I$I$E)$!*  E)a'( I$I$E)$! * I$I$E)! @E)  E)@ E)   I$I$1 I$I$E)$!" I$I$E)!* I$I$E)!* I$I$E)$!* I$I$E)$! I$I$E)! I$I$E)$!* KE)A XrE)/Wz OE) I$I$E)! I$I$e)E)% I$I$)( E)&&"C$AE)@ ĶmɶmE)A I$I$1 I$I$)( H$I$e)E)5U DE) I$I$)( ۶mK0nE) $  E)jj  h%)!C  E)b E) * I$I$E)! I$I$1 I$I$E)! I$I$E)! ( I$I$)( @E) I$I$E)! ( I$I$E)! I$I$1 @ e)$! I$I$E)!~x maE)!  I$K2$e)! !I$e)!  L&dCe)$! mضmE) I$I$e)E)^z`m6~E)8 I$e)E) * H$ e)E)p@ ` e)E) % A e)E) ۶-ۂmE)A@DhٲmE)B ۲m:E)`mI A* 0`E)- C le)$! I$I$E)! . @$E)A E) I$I$E)! ( I$I$)( I$I$)( I$I$E)! *( $E)  $!(  $!!z z $-!` I͖$!A $iO$!WU$I$!L$IA&I$ ! I$! j I^I!A Im$!  E)!U I$I$E)! I$I$E)! I$I$1 I$I$1 I$I$1 I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$!** I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! )E)A I$I$E)$! I$I$E)!  I$I$1 I$I$E)! I$I$E)!  E) I$I$E)! I$I$E)! I$I$E)! I$I$E)$! E)p I$I$E)$! I$I$E)!* I$I$1 I$I$E)$!  I$I$E)! I$I$E)!* E)!~* E)!~ ۶mE)!~ mRvE)!V5W &@E)!W% LE)! Up E)!/ I$I$E)!+ I$I$E)! I$I$E)$! I$I$E)$!* I$I$E)!* I$I$E)! I$I$E)$!* I$I$E)! E)a I$I$E)! I$I$E)! I$I$E)$!* I$I$E)$!* I$I$E)!* E) 'ƀE) dɮ$!AC'N$I$I$I@$b/ 6`!`!I H$   h&!A!I$I$E(C @$ K ! ,!%Ӷ!Ah$H$bI$I/I$IR I" !յmk H I$I ,X !ضm! e!ؖ!! ! ! $bI$I$ I$ ? )I$U! ") I!j @@$!- I A2E) $@2L!* $*<! `  H! 0! &I!* $I !* I@! $$C E) $A4! %O$!I!b$I$ପI$I*Ib!A*-Q!I$I$E)aI$I$!  $I$! II$!* * E! @$! I$!! $I!a I$! I$0!* b!^x$!zzaP!+ $A$I! HI$!* h$!!8  IH$! H$I$!* I$I!*  E)  R$! 0L!* L!!* !$I2E) $IdBE) $I0E) H$5!z Hm{T A4*P&!~_I+4I bj ITT! -  $IH! J!!4( ! I$I$$!!  I$I$$!! ( P E! I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$e) L@H$! I$I$e) I$I$$!! $$!!^ E)! 4E)z E)! $!! I$I$e) I$I$E)! I$I$E)! I$I$E)! I$I$E)! E)! I$I$E)! I$I$E)$!"** I$I$E)! %) @ E) %)` I$I$E)! h%)8 I$I$E)!* I$I$E)$! I$I$E)! I$I$E)!  %)b@ E) I$I$E)! I$I$E)!* HE)A4 I$I$E)!  <E)p I$I$E)! I$I$1 I$I$E)! I$I$E)! I$I$E)! E) E)! I$I$E)!* I$I$E)!  E)b& E)!z E)!~* HE) @E)!zWz !$$! * @I E)! U_ @ E)A* I$I$E)!* HE)A  E)@ E) I$I$E)! I$I$E)! I$I$1 I$I$E)! I$I$E)!  E)46 I$I$1 I$I$E)! ( E)!z NE)^ hMD! (*8  E) I$I$)( I$I$)( @E)b I$I$)( I$I$)( @E)b I$H$e)E)Tz I$I$e)E) I$I$)( I$I$E) E)!_ "!%)AJ  P$h!! E) * E)( I$I$1 I$I$E)! E)  I$I$)( I$I$E)$!( I$I$E)! ( I$I$1 dI$e)E)%U I$@e)!e ɐdI$1! 5_e I$E1! I$e)!/ X$X$e)! I$I$E)! ۶mbE) H$I$e)E) I$I$1 I$I$)( ضd۶E)( I$I e)$! I$I$E)!*hȑFNE) )x }Vk$!A** ۰mnE)+" JE) I$I$E)! * I$I$1 E) I$I$E)! I$I$)( I$I$E)! نm۶mE) I$I$E)! I$I$$!!  !A I$I$$!! I$I$$!!+ I$I$$!!+ I$I$e) I$I$e) $! I$I$e) I$I$$!! E)!U E)!u E) E)!} $!!  I$I$E)!￯ I$I$E)! I$I$1 I$I$E)! E)!z E)! I$I$E)!( I$I$E)$! I$I$E)!* xE) I$I$E)$! HE) * I$I$E)! )%) . I$I1E)U] I$I e)$!* m۶ E)! I$A$E)!* @E)! @E)A@ E) I$I$E)$!* I$I$E)!ꪂ @HE)AР I$I$E)$! @E) @ pE)! I$I$E)! E)!8 I$I$1 E) I$I$1 I$I$E)$! I$I$E)! I$I$E)!* I$I$1 I$I$1 I$I$E)!* I$I$E)! `E)!Wz E)!W -,!   0E)! U_ E)!+ I$I$E)! I$I$E)$! * I$I$E)$!* E)!* I$I$E)!*  E)` PI$!xVUUm$I$x^WI$Ib/ OOt !:I [ : *0`00bLdKd $,$a bۖm۶ $)R  <P@  4!z˟y2!}I$I$ $((I$I(I uUյP!P#2dIA@A IHF I$!b @$1 z-DZ!RI !(&˶ ۀ +$P !p$H$I$ஊI. )˒,Q! !H A(@!!I$I$!I$I$!I$I$E)a `$H$I!I$I$! "I$I!J 9$I$I!!  I&!*x^@P4!zW{).&IG m^ՕIr5!!z$! I$I!* H!a $I!A!+ I I$!* I$E)a  (!A@ H !A b( I!* $I$E)a $I&IE) I$!* $IR$!W&O!!^IP\!U^ $ !zW* I[)!k !  I$I$$!! @!ap I$I$$!!*  !A  $!!@ ! I$I$$!! I$I$e) ($!p I$I$$!! $!! H$!!׽ l-$! $!!p $! $!! @$!!ܿ !A` E)!U E)!U @E)!W. I$I$E)! I$I$E)!* $ %)Ap I$I$E)! + I$A$E)!* I$I$E)! I$I$E)! I$IE)! I$IBe)$!lZm+e)!. O$_1E)U*J I$C1E)UJ I$I1!. I$I1E)UՀ I$Ie)$! I$I$E)! I$I$E)! E)!b* I$I$E)!  E)! I$I$E)$! I$I$E)$! E)ʀ PE)  I$I$E)! ʁE)&( I$I$E)! I$I$E)!@* I$I$E)! @E)а I$I$)( I$I$E)! I$I$E)!* I$I$E)! I$I$1 I$I$1 I$I$1 I$I$E)! E)!^ !$E)!Uz hm!8* `E)!U E)  I$I$E)!*+ I$I$E)$! I$I$E)$!  E)!j I$I$E)! I$I$E)! I$I$1 I$I$E)$! * E)( I$I$E)$!** I$I$1  E)@ J4%)n  %) I$I$E)! . I$I$E)! I$I$)( I$I$1 I$I$1 $@$IE) I$I$1 I$I E)!( 6lnE) I$I$)( I$I$)( I$I$E)!~ $ %)!u_z  $!( H  E)A6* I$I$E)! I$I$E)$! E)4 I$I$E)! * I$I$)( I$I$E)! I$I$E)!* I$I$1-*m۶E)ٖm6AE)a ɑI$1! 5O'ד1x 1me)! ? H$e)%) I$I$e)E) I$I$)( H$ e)E)裍' I$I$1 I$I$)( fE) I$I$)( @E)8( X,e)$! PE)!ؠ &!! *x ۰ ېmE) ) K$[,E)! I$I$E)! . I$I$1 I$I$E)!( I$I$E)! I$I$)(  E)A I$I$E)!p I$I$E)! I$I$e) I$I$e) $!$ I$I$$!! $!!  $! $!*  &$! $!! I$I$$!!* $!! H!A$  E)!U  E)!U* E)!ս+ I$I$E)! I$I$E)! %)!&( I$I$E)! I$I$E)! * I$I$E)! I$IE)$!* I$Ie)$!  I$IBE)!~m e)%. I$O1E) J I$B1E)U~. I$I1!e ݐ$I$1E)__e?1*zJ x|I$f1$!0e }I$1%)_e Iɟ$1!*e I'$1!e I$X1! e I$Oa1!. I$I:f1$!ߠ I$I$E)! I$I$E)! + I$I$E)!  E)!h E) I$I$E)! E)a( I$I$E)! I$I$E)! I$I$1 $E) ( I$I$1 I$I$E)! I$I$E)$!  E)A& I$I$E)! I$I$E)!* @E)A@  E) I&E)!UWZ IH2I$$! [6mE) E) / E)A.& XE)  E) Уʛ$$!XVUI$H$I$I$5- &s"1I  H$I*C-9@ِ0` $!b @Ҥ(Im J"I!b$@ 5!~hɛ?!^WUE$I$,I$IH< #'N P ! HĶ!0`ú&NX, m!@@   h0l*@6mӶÖmٶm (4jҤ z^m[ @$a(I$I$((II$!mT- !! A  !b@`*( !Ac ID!<I$I$!I$I$!$@! `` I$I!( `4J!-OP!^J!WR! I$I$! !$H! !I$I$! I$!* $I!* " $I!h I$I! I$I!*  $)!* $IҟD!^ Ӥ!^׭x $(JJ!rW jW$!^ ٶ H!  d!d @d!d e) @$!!*^ @%P! I$I$$!! *( I$I$e) I$I$$!! *  $! A$! @$!!_ @H!`  ! ؁@!  ! H@!@ VAp!  $ ! $! $$! @I$%)_ >IN%) $ H$!U R$j!* N$! I$$!  $!* I$I$E)! U I$I$E)! I$I$E)! *W `۶$E)!U `۶$E)!U m۶E)!xmE) & $&I$e)! $I$e)!жۤ1bJ '$I$1E)}Ue $I$1E)Uwe1J oI$1!e I`I$1%). I%$1$!e I$1!J I$c1!e I$I1! I$I$E)! I$I$E)! I$I$E)! I$I$E)! E)6 I$I$E)!  %) @ E)! I$I$E)! I$I$E)!  E)@ E) I$I$E)! I$I$E)!* @dE)aа I$I$E)! * I$I$E)! I$I$E)!*   %)  L E)!U^ [n] `E) v]Ӯ$! жE) @$E)Z E)A@ E) I$I$E)!* E)! h E)!( I$I$1 I$I$E)$! %)  E)!J E) @ DE)A I$I$E)! DE)* I$I$E)! * I$I$E)!(( I$I$)( I$I$E)!* I$I$)( I$I$)( نm۶mE) I$I$)( I$I$e)E) I$I$)( I$I$E)! d$E)!_~ H$! 4 -E) E) & I$I$1 I$I$E)$!  I$I$E)!* I$I$)( I$I$E)! I$I$E)! *( HE)A 4& ɐdI$e)E) 5UU K%ےme)! ɑ$I$1$! UW I$A 1!^x I$e)! 7 X,e)%) I$I$)( ۆ%۶aE)aЀ I$ e)E)% I$ $e)E) ۰mò'E)`\ I$A E)$! KmömE)$ I$I$e)$!** X$`e)$! P E)az  շ$! % 6`E)! - I$@$e)! @E)a8 I$I$1 I$I$E)! ( I$I$)( I$I$1 I$I$E)! ( I$I$E)! $$!!W $!!u J )!$ @$! $! ` ! uPt!AР R"HI!x >!^ $! M$! I%)W $IR $! $y%! P! TI$! I%)!U E)! E)! I$I$E)! a۶m;E)! U f۶$E)!U l۶8e)!U 6`۶E)!@H lI$e)! $I$e)!?f1!jo`۱ۆ1a* H %)A( @E)bp I$I$E)! I$I$E)! I$I$E)! E)) I$I$E)!* I$I$E)!J 7$I$1$!J@e)AڪJ II$1!JI$$1!zJɓ$~b1!km۶f1b I$I$E)! @E)! I$I$E)$!  E)A& I$I$E)!ꠠ I$I$E)!+ E)* E)! I$I$)( I$I$E)! I$I$E)! I$I$E)!*  E)@ p%)! $ I$I$1 4E)@` $h%)a mk %)  %$I!Z E)! U ,IDI!& `io A㖌Ɇ 6`%M6l%N$ 8I$I (I˂-Y M @!׿!@ % b$H! !I$I$E)a J I$I!4 ('I$I$!I$I$!@@'!zWhD)$ Ah* ' a* P!! !`X !H! !@!@!! $I$! I$I !* 4Aض5!* $T!~ W!^x =YI!Xׯ OJ$!խ* I !* $ d!d Id!d d!d 2 Ad!d Id!d I$I$$!! I$I$$!! I$I$$!!** $!!U I$!!xխ C! @! @$!!_ $d!d 65! $! HM$! &I! b$I.! I$! If! * I@!. !@$!+ !  A$!!k]  $!!} $!! @$!!^ $!!_ $!A I$I$$!! I$$!!U I$I$$!! $$!!W $$!!U $!!  E)!U  $! % $!A  @$!A@   E) )$! I$I$E)! I$I$E)! hE)( I$I$E)!( I$I$E)!*. $I$f1$!*eI$1zJo1AJ IB'?$1!ߠ }J I$1$!u JO1 I$I$E)!+ E)!b+ I$I$E)! $E)bp I$I$E)! I$I$E)! E) E)!.4 I$I$)( I$I$1 I$I$E)! I$I$E)! I$I$E)!* L@$E)bP I$I$E)! I$I$E)! $$!  mۤ@E) -6m۶! ꪪ  IE) I$I$E)! / I$I$E)$! I$I$E)$! I$I$E)!+ I$I$E)!* I$I$1 I$I$1 I$I$E)! %)A I$I$1 I$I$1 I$I$E)! E)A I$I$E)! . I$I$E)! I$I$)( I$I$1 I$I$1 I$I$E) I$I$1 I$I$1 I$Ae)E) I$I$)( I$I$E)! h`E) @Q` m$!  à%)" E)a  I$I$1 I$I$1 I$I$E)! * I$I$E)! I$I$E)!` I$I$E)! I$I$E)$! I$e)E)UU I$E)! I$I$1!%_~e O$q#1!^|FnE)   H$e)E) I$I$1 I$I$)( H$I$e)E) K ۸-E)!$@ ۆ[lE)! I$Y$e)E) m۶E6E)!OMۖmE)a K$@ e)! p8`E)^xx ɐd%) I$e)!++ I$H$e)! E)!b I$I$E)! I$I$E)! *( I$I$)( I$I$E)! I$I$E)! ( I$I$E)!p Hd!d $d!d  5!z Ҟ$! I$! $IK!* }$I'! I! I(! H!) @ !@  ! $ $!!^ $$!!W $$!!_ $!! L$!!U !A @ $!!^~ $$!! $!!~ $$!!W $$!! U $!! )E)z <"$!A` I$I$$!!  $!! $ $!!U~ 0$!!Y, $!* @!$!! IE)!U  E)! E)! E)! I$I$E)!+ I$I$E)! PE) I$I$E)!+. '$I$1$!J NI$1$!. I$!$f1! I$Nr1$!^ E)& I$I$E)!*+ I$I$E)$! I$I$E)$! I$I$E)!+ I$I$E)! I$I$E)!+ I$I$1 I$I$1 I$I$E)! I$I$E)!& I$I$E)! E)` ̰m۶mE) I$I$E)! DHE) R#%X$!ahI$I$pI$I$I0`1`pDKܗa  . A$PKm> *`%ɐ6/Ii* $DA.5 jzpĉ2\׵im$I  q$I8 'Nq\%aÈ @$A  %p' aA  ö[K>h$I$N$ 05 $H& A$M4b( I$H(:$i    ﯮ$!@ @!Z!I$I$E)ah& A!! @ !0I!*I $ a*`H!@ !!  A@ !A*   I$I$!$!!꾫 !H$I!I$I$! $I$)! *)T!h. V!) 7II!* UID a* I@!** *). !!@ U%!A  d!d !d!d 0 ! I$I$d!d I$I$d!d &d!d @$!!@ $I! H!! Id!d I0d!d  '! DO$!a, $Id!j* I$I$ A+ Id! I*I!   !  $!!~U $d!d Hd!d &(! I! C$!!] A$!!z]  !@ !   @$!! $!!_* R$! I$I$$!!(* I$I$$!!( I$I$$!! I$I$$!! X!8 I$I$$!! $!!j  $!! $!!z d$!!U @$!!_  $!! $$! $H$!!WW `E)!U 0E)!UW @E)!] E)! I$I$E)! I$I$E)$! E)a@ E)a. $I$1$!+]. I$1$!+U. I>ɑ$1!+W I$h1!W+Ӷmf1z I$I$E)! I$I$E)$!* I$I$E)$!* I$I$E)!耂 I$I$E)!* I$I$E)!* I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$1 Y E) H$I$e)$!*  E)b`` ۖmE) M|!* tE) I$I$E)!/ I$I$E)$! I$I$E)$! * I$I$E)! I$I$E)$! I$I$E)$! E) I$I$E)!* I$I$E)$!(* E) I$I$E)$!( I$I$E)!. I$Y E)! I$I$E)! I$I$)( I$I$)( @ E)a I$I$)(  E)` $E)` I$I$E)! I$I$)( I$I$E) E)!~  0$! ( ") H!`( E)! E) I$I$E)$!( (E) @ E)A I$I$1 PE)A8 I$I$E)! I$e)E)_ H$@ e)!e ɑI$1$!%UWe I$G#1!X` 6`e)! = LB&$Se)E)  E)` I$I$)( IA$e)%)( I$I$E)! I$I$e)E)%VR ɶm6lE)A E) I$e)$! * I$X2,E)! K&%)W^z P MfE) * A $E)! @%)`  E)@ E)a I$I$E)! ( I$I$)( I$I$E)! E)  5P4E)XP$I I$!+ IJ@!* $$I! dBd!d !d!d d!d I d!d PE!  $!!*  $!!ժ H$!! %! $!!z{ $!!- H$!!W !a I$I$$!! I$I$$!! I$I$$!! I$I$$!!  ! I$I$$!! @$! $!! H$!!W" I$I$$!! I$I$$!! I$I$$!!* I$I$$!! I$I$$!! I$I$$!! $!! $!!j( $!!]  %)j %) E)! I$I$E)!*_  E)(J E)  I$I$E)! $E)*Z F$I$1!_ I28I$f1!WW I$pte)! I$I$E)!x I$I$E)!*- I$I$E)$! I$I$E)$!* I$I$E)! I$I$E)!. I$I$E)! I$I$1 I$I$1 I$I$E)!* I$I$E)!* I$I$E)! @$E)`XH$I$ȀI$I$?I$IBaܸP'H  $!BId1Apb[ APHD#)8@ (aBh%\B @I*5!`BǶ3B$I , A$I8 #'Iy^5aÈ HI$(*R"ZH' D@b @&tb'  8pIlj9Av$I+Q$I*Ib6aDI$I I$ `%!H 0! ',!I")b@@ !!&!z^Ä9p !^ץi &MJ!i\׽ q!@$!@ ,K !!@ɑ !&. C( A`B!*I$I$! $II2!*JD !* jD$5!^ p =MN!X׽ JJ!A 8 ۴eM!** h$I$ ! !I$$! $0I! ڶ  -! d!d @d!d L0!( H!* !@E)  A2!  !(  I!  R$! $5I$!`$I!+ I$! I~H! $I!!  d!d & !  ! "  d!d \K! $, &$!!^U LH$!!U !$!!  !a@ $! I$I$$!!* $$!Ap P$!8 I$I$$!! I$I$$!!* I$I$$!! I$I$$!! I$I$$!! I$I$$!!  ! I$I$$!! I$I$$!! @H$!`  $!@ $! I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!!* I$I$$!!* PG$!  I$I$$!! $!!  $!!5 E)*  E)!* I$I$E)! E)!* %)$ I$I$E)!*  E)!*n`۶ۆ1  bf1!Z _ I$$e)!\- I$I$E)!+ I$I$E)! I$I$E)!* I$I$E)$! I$I$E)!. I$I$E)! I$I$E)!* I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)!* I$I$1 I$I$1 E)A [6@E) XNL$!  E) + I$I$E)! I$I$E)$!* I$I$E)! I$I$E)!* I$I$E)$!" E)A   E)@ z%)a I$I$E)$!* I$I$1  E)!ox !Y$IE)S  E) E) I$I$)( I$I$1 E)` I$I$E)! I$I$)( I$I$E)!*( I$I$)( E) E)!~  ! 0@5! E)! / O(%)Ann @PE)p I$I$E)!* I$I$E)! I$I$1 I$I$E)!* I$I$E)$! $I$e)$! * I$I$E)!pe I$1! 5We}r1!Ђ 7f۰mE)A  *パ(E)` I$I$)( I$I$e)E)5Zy I$ e)E)6nζmE) I$e)E)5\ I$I$E)! I$I$E)! I$e)$! *c۳ E)!x I$h $!  2@E)A+ Fl E) I$I$E)! . I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)!*(  E)!@ ! $d!d &E!8 !@&d!d  " !b@ I!a  d!d a$!!U/ $!! xF!A8 I$I$$!! I$I$$!!* !$ )0$!  I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$!!  $! @ ! I$I$$!! I$I$$!!  H !!4 $! I$I$$!! `$!! IP E!A $! @ $!!Հ H$!! @#%!`  $! + I$I$$!! / I$I$e) I$I$e) `%) j E)! I$I$$!! E)! E)!z E) @E)P I$I$E)! I$I$E)! ,E) 'e)!5~v ضae)! _ I$H e)!x E)!/ (@E)` I$I$E)!"+ I$I$E)$!*ꪢ I$I$E)!8? I$I$E)! @E) I$I$1  E)` H$I$$!I$I$w}I$I/  @- 'ND($ ha -P $!BHĎI 8<I$I$$!B۲% m)I$IС, X$8 q$I. A$I. I$I1` ضm[d @$!!@I B"$  `d XCAI%@$$!B$KB& pĎc9J$8  h$I",ɕ ]U 8I a0 Xd!Ilۆ ! e!Xla!  !P!^} '!A hTI!\յ H$!0 ؆ `'!X1 H % A PI$I$E(C`@!Ȗ! M4!!j p(R! ͙ P!׵e -!"2BI!@g *AI!@$I @1 a` RA! @!$H!1!~ ں>I!!* OAP$!A*z XtI!\խ 4 $I!+I! & I$ $! $I$! I !*  E) I$E) @"4$I!!` $-R#! ` TI$I! $A2LE) J$!A4, ij$!$I$! I$E ! IJ! !@$I! * `!I!*  R"!AP  A&I! `$ ! IH! A$!b $Id!d P%! I$I$e) @&d!d  d!d 2 $!!WU Ȅd!d  C$! !@@$!! I$!! U $!! $!!rߺ @&d!d )&I!!@ "-!!@  $I! Ԥ!* "5!`b mf!: $!! _ I$I$$!! Ld!d @!0$!!/-_ &$! I!+ $$!  )!j ! I$I$$!! PDH! <, $!!*j $!! P! 8 $!!z* $!!+Up H$!!*V $$!!-_ I$I$$!! I$I$e) I$I$e) I$I$E)! I$I$E)! hE) I$I$E)! I$I$E)!  %)b I$I$E)! @E)!^* 6lǶmE)!z @$E)!-V @E)!X E)!+ I$I$E)$!  E)A@ E) E)6,  E)@ E)! I$I$E)$! I$I$E)!* I$I$E)! I$I$E)!* HE)a4 r E) dr -$!x  `[E) + I$I$E)!- I$I$E)! I$I$E)!* I$I$E)!* I$I$E)$!. I$I$1 I$I$E)! I$I$E)!+ I$I$E)$! I$I$E)$! I$1! J I$Ǔ1!X P E)A(( I$I$E)!( I$I$1 I$I$E)! ( I$I$)(  E)  $I$e)E)͵W_ I$I$)( I$I$)( I$I$E)! K@!W  0I! * I$I$E)! / I$I$1 I$I$E)$!* I$I$E)$!* I$I$E)! I$I$E)!p I$I$E)! * I$I$E)$! dI$e)E)%U I$I E)!x`e I$1!%W E)* lɖde)  / I$K2$e)E) 6<mE)bp I$I$E)! ( H6f۶mE)b8 I$I$)( A$I$e)E)S饕 @4E)p E)(  [$ْ e)! @hE)z蠀 `1g! /? 6`e)! /  HE)($ I$I$E)$! I$I$1  E) I$I$E)! I$I$E)! E)  I$I$E)!^  !  $e) Ȅd!d dBd!d 0$$!!Uբ @2$! dd!d @ $!!_} I$!!U $!! d!d   „!( Pd I `  HW!!( ڶ-! n! JD!<< ۔!* $!! $!! Id!d &$! dv$!к !$! 5E) ZIE)! i`жE) I$E) UU tE) M E) $! -&E) $$! $!! H$!T I$I$$!! d$!! $!! ݰ  J$!($ E)! I$I$E)! I$I$1  %)@ %)a E)>( I$I$E)! I$I$E)!ꪪ I$I$E)!+ @E)!Z E)! z H E)!%W @@E)!^ @PE)+ I$I$E)$! ,@$E)`I$I$azI$I$/ II ,(R$bZVI !AI$I?$H$!!$H$ I $!B@M$@E[m$ [ `* &L`XI'M.$H .I&H AH$ $!!-P@&$!!IE$!!I$I$$!B @$!!IE$!!I$!B&HI&O $!Hɓ> vb'I )ж-ZI$ $!B$H( )P $I$ 9r!0(ː`m $ 5!~ !_U%I JP!B9QA)J$!a l( $@I $H$) $@  !jy I!) (R!|I !*&.j!_ m5!_5p %N!i\սyR  Az !H$I! I$I ! I$I$!* II$!** J$I!!,& E) @@$! $I$! I$I$!*  $I E)a $$=!(x $1O$!L$I! I$!U  $$I! $I!*" R$I!  I$! @$ ! I$ɐ!* $IE) I$IE) zD!( PJ!A I! $ ! d@E) ! Id!d $Id!d H2d!d $ $! k6! um&! жMڶ! $ I!* I$@! IB@$! D!!& H m%)a( E) `$E)!UU I$E) UU !E)!*UU JE)A  E)A I$I$E)!UW  $E)!UU I&E)!UU I$E) UU `$E)!WU VE)j*  IE)A I$E) UW %E)_ жhE)* k @$! mפE)* E) $! * @$!` )$!  $!!w $$!!=W  ,@@$!` E)! I$I$E)! I$I$1 I$I$1 %) ($  E)` E)! I$I$E)! I$I$E)! I$I$E)!* 0E)!Z HE)!XZ BE)!-`- E)!j- E)! I$I$1 I$I$E)!ꪪ I$I$E)! I$I$1 I$I$)(  E)  I$I$E)! * I$I$E)$!  I$I$E)! * E)!~B ف %)U^ m6!bj  4E) I$I$E)! I$I$E)$!* I$I$E)! @E)B PE)A  E) H E) * I$I$E)$! I$I$E)$!ʨ a۶mۆ1-. LR&If1$!5 I$I$e)! I$I$1 I$I$E)! E)! I$I$)( I$I$)( I$I$E)! ( I$I$E)! I$I$1 E)A M@ !  *-$!*z  E) * I$I$1 I$I$1 I$I$E)!* I$I$E)$! I$I$E)$! ( @EE)A I$I$1 I$e)E) %U ۰mE)!xpJ1I$1! 5JI$O'1!VX  e)!  I$K$e)E) I$I$)( A$I$e)$! ( I$I$)(  E)!$ I$I$e)E) I$I$)( I$I$E)! ( t6`E)4 P Հ @%)^z P&%)A *jH$E) E) (( I$I$1 I$I$E)!" I$I$E)! ( I$I$1 I$I$E)! I$I$E)$! H$E)!WWz IB@E) Id!d $ d!d I@&! $ $! `mۤ! жI۴! ڶI۶! 횴 ! I$!/ (!@ @I%)a m%)!* E)!U I$E) UU I$E) UU "E)j AE) i E)" E)!UU d$E)!*UU I$E) UU IE)!UU  !@ $!A IE) U kE)_ m5E) %E)+_ vk `E) Km%) K %)+ 1 E) vE)  !%)* s$! $! I$I$$!!* I$I$$!! 4$!` E) I$I$E)! I$I$E)! I$I$1 I$I$1 I$I$E)!ꪪ I$I$E)! I$I$E)! I$I$E)!ꪪ P%)A8  E)!^  E)!ޫZ @"$%)gzI$I$I$I$7I$I$ P@$$!!H$ $A A !A-Z4m$$!!Im۶$!!m-6$!!E&H$!!Am۶A@Ib `Aa$J$`PVUI$N( 6T$!z~I$I$! H,5؉ A$a`IiI$I$!! @$!!IE$!!mm6b@Тm&H$ $O)B$!H$I& AJX1d@ַII** I $!B@&M( i A $!b'N )PmLWE b* @&!z^ JT&,!V5r@$IJ!ZVlض s$p<`&h6l.H$!b,$9 ꪪ*mUB!1 @$I $" $ @+6!=&N$(r I2%P!AҠHT ! !I$I$! !j!I$I$!! $II!* @$I$! !  $I$! $I&!&I$! I$I!UUU% IPI!U $H$I!I$I$! $H$$! $%R" A``  $I!+  I$E)a I$IE)a I E)  $! &I! L$2! $$I!b &IHE) `$! !  I5!~ $Iښ$!UHI$ !'IBB WU!Ul! ٶm& ! 횴 ! I$!* Iv!* J!6 ! d!d ! $!!U I$I$$!! I$I$$!! I$I$$!! I$I$$!!* HPT! I$I$$!! ,@!`` $!! I$I$E)! $!!t E)b I%)!U @E)* `E) -E) n E) $iE) E) mlLE) %)  `%) @$!+ v$! I$I$$!! I$I$$!! I$I$$!! E)% I$I$E)!* I$I$E)! I$I$1 I$I$1 I$I$E)!ꪪ I$I$E)! I$I$E)! I$I$E)!  %)A@ E)! E)!^ @&E)b ؚ* I$I$E)!/ I$I$E)$! I$I$E)$!* I$I$E)! E)(( I$I$1 I$I$E)! I$I$E)!* I$I$E)! I$I$E)$! I$I$E)! * P@E)~蠀 `r%!A 0dE) + I$I$E)!- I$I$E)! @E) $%) E)!h E) $%) I$I$1 I$I$E)$!* I$I$E)!b. `"ɑ1!p/J I$I$1!x I$I$E)!  E) I$I$E)! ( I$I$E)! I$I$)( I$I$E)! * I$I$E)!B E) I$I$E)! h@!A I$! *   E) / I$I$1  E) I$I$E)!* I$I$E)$! E)( I$I$E)!  E)!j ېmE)@ !lE)be߆1/?1!WT [-ٖ e)!  I$I$e)E)}} I$I$1 I$ $e)E)ŵ E), I$I$E)!(( I$I$)( I$I$E)!  ۶%E)A ۰ e)!zࠀ juP !x   E)*+ i[-e)! I$I$E)! /< I$I$1 E)&  E)@ E) I$I$E)! * I$I$E)!j Hl%) $I'!W $I$! I $%!Uջ꛴! aI$! m6m;! L$!! mӶ! "!B ! `d!d I$!!* I$I$$!! I$I$$!! I$I$$!!? I$I$$!!  ! I$I$$!! H!<4 I$I$E)! I$I$E)!j $!!@ ! $!!uw  $!@ A! $! I$I$$!! I$I$$!!  `E)!W [ `E) -E) tE)~  %) K$! sX$! 017&E)_ IE)z E)! I$I$E)! I$I$E)! I$I$E)! @$!  I$I$E)$! I$I$1  E)` I$I$E)! I$I$E)! %)@  E)kH$I$!w}I$I$$I$I/ II$! $,H$I$ (I$Imۢm$ pII!AI$I$$!!mS$MҤ!@ A@ ,9V$z[WI$A$@ɑ ' a.I$I$.Id @ I $$!A@$ $` m"m$$!!IA6$!!@$I!P@ $@I $AI!R$ A)HI& JdI5 A$    YR"$`ܰmܐa0 mv*+ B"@lِ$$H$ 8 MK=!'cX h!\} ! l!L p $( Mbm. IdI !$I$ AM& @me( I M=!W5^ Bɛv!p9U! A& !$I!!o!  H!a H  ! I!I$I$!@$&! `&I$!AzI$I$ I$ !j H$I!I$I$!@! $IF! ! J\$!$( IE)  @$! $I! I$ $! IHL!* $!0E) m[&!  IҶ>!_ $I$!_&I$!J$IRA I! I:I$!ի Kf!( I@!  ! H$!!* I$I$$!! H@! @@0$!  "!@ !a `$!!W I$I$$!! $$!!W  `$!A@ H!  $!! վ I$I$$!! $!! $!! I$I$$!! $!! I$I$$!!/ $!< @$!! _ $!! ȁ$! ($ $!( I$I$$!! I$I$$!! * $!!p $! mE)* E)* 6K%)+ k@%)+ 8$!  $!+ w%)/  E) I$I$E)! I$I$E)!/ I$I$E)!  $! @ %) I$I$1 I$I$1 E) I$I$E)! I$I$E)!  E)  ( @$%) ` @E)!^ E)!-^y E) - I$I$E)$! I$I$E)$!* I$I$E)!* I$I$E)$!* I$I$1 I$I$E)$! I$I$E)! * I$I$E)$! I$I$1 E)  E)W^z  O$$! 5W :%) & I$I$E)$! I$I$E)!⊪ E)! @E)( @%) I$I$E)! I$I$E)! I$I$E)$!* I$I$E)!ꪨ.f1! *m۳=f1 I$I$E)!*C @ E)2 I$I$E)! I$I$E)! I$I$)( E) E)  I$I$)( %)  I&P(!1dI$A Zz 0-E) t(%) I$I$E)$!* @$E) I$I$E)! H%)8 E)@(  %)!  A I$e)$! * @E)!^XJ~> 1!Xc%  E)Jݖi6E)! I$I$)( I$I$E)!( I$I$)( I$I$E)! moE)  mضmE)  @ E) lIdE)! * Ӷme) ^ TK%!/? mѶmE)! / H$I$E)! I$I$E)$! E)!* E) J(( I$I$E)! I$I$E)! hE)< P(E) IPD !* y'I! H@! IB! Id!d $!!  $!!j ɕ !- $!! U eP @!! I$I$$!!  $!!*" I$I$$!! $!!/ Eh$! ؠ $$!!W $!! I$I$$!! $$!! _* $!!  $!!z $!!<  ! I$I$$!!  $!@  $! B E) I$I$%)!^ I$I$$!! $!!j $!!-* H$!A(4 H$!!,$ @$E)Z I$I$E)!+ XE) $E)a Z%)^  @!/ !+  5E)~ mE) I$I$E)!* I$I$E)!  E)j %)! I$I$E)!ꪪ I$I$1 I$I$1 I$I$E)!ꪪ %H$!AиI$I$ھkI$I$>/ Ii!AE&I$&I$II $HI&aI$!!M4E&$!!I $!AIi$!!P @&$!!I$I$ID)$!H$$ ؠI  @$m$`I$(HI$A 0@$@$!!$@$!AIi&!A$!!i۶E&$!!HI$(O 4 /Hɓ$( JdHH$I*   Æ-۶m說ܶmy  m *@ %[ H!V ҃!_R\HH!8nL$ 1 2, ٲ 6m I $!B#$b !`NmAh6M((,9  j>} !_- PR!%xH$aB% !z1`d !I$I$E(CO$@I!A&p!I$I$E)a ! @!  % ,H!A (4!z&I<!^UUI$I!UUUI!a*J!ހI$PA ) `!@! z$I!ax!8I$I$! $@d! H$I$!* IH$! $JH!! $D!&  I&!M$!U$Ix I$y%  IR$! 1m!  I!( !b8 @ $!!h )H! ("!!@  @!  d!d $$!!u $!!}(( $!!( I$I$$!!( I$I$$!! I$I$$!!  @!@  ! I$I$$!! I$I$$!!( I$I$e) I$I$$!! !A  I$I$$!! I$I$$!!  I$I$$!! P !A I$I$$!! I$I$$!! $!b $!! I$I$$!! I$I$$!! I$I$$!! $!!'ר $$!` $@"$!ap  %)!k} E)a * E)!^* t ``E) v%)A  P#v!x K!- MK E)* xE)/ E)! I$I$1 I$I$E)! $!!$( I$I$E)! I$I$E)! I$I$E)$! I$I$E)! @E)! I$I$E)! I$I$E)!* @E)!^* @E)!}^ @E)!-_U E)! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$1 I$I$E)$!* I$I$E)!* $E)b @E)И E)^蠀 ɑJ5!'   E) E)!j袋   E)  %) DE) I$I$E)$! I$I$E)!ꪪ I$I$E)! I$I$E)$! * @E)!ު. 1I$1!/_.1aj E) I$I$1 I$I$E)!*B E)  I$I$)( I$I$E)!* I$I$E)! I$I$E)!. @E) I$j5$!I$! P-E) /? I$I$E)! 0(E)a k I$I$E)! + I$I$1 I$I$E)$!( I$I$E)$!* I$I$E)$!* A$IE)!a3e)!W^xJLb' 1!\Pa`{E)! % H$@ e)E)` I$I$)( I$I$1 I$I$)( I$I$E)! I$I$)( I$I$1 I$I$E)!( @ E)! aE)z  ɴD$!/ $I$E)! I$I$E)!  E)  I$I$E)$!** I$I$E)! *( I$I$1 I$I$E)! E)!H  @E) $@$!` $&$! P$Z*!X 0 $!* $!!^U* H$!!W H$!!  I$I$$!! I$I$$!!* I$I$$!!( I$I$$!! @$!!Р I$I$$!!( I$I$$!! I$I$$!! I$I$e)  $!@@ $! I$I$$!! I$I$$!! I$I$$!!( $!!/ $!!U @ I!A@ "!A $! I$I$$!!ʀ I$I$$!! I$I$$!!( I$I$$!! I$I$$!! I$I$e) E)!_ޯ I$I$E)! I$I$E)! @E)ڀ I$I$E)! E)!^*   %)A@ WQ[E) k !-^ N3I$!^ E) E)!꫕ I$I$E)!  %)b @@ E)* I$I$E)!  $%)`pI$I$ b*I$I$7/I$IE&m$I$I$A.I$I!A@$I$I $  $!AH$I$!AI$I!AIE$H$I$(I" ?H$I$ I$I( )$I$AI$I !A@$I @$I @$!AH$I$ H$H!A $H$I$! O 0!?h$I$!I &A I$!!I$I *@$I**Ȁ@0,PDN`IA<I B* 1Fna ݺ} !5 PP!P$*@Xvi۵*X 6,.#ۉ@ `۶m %K)Pln  c;@ $!U kDIP!!6./$H xR H!$  0 !lː!  I$I$E)a H !  $e"( @PD!  !(z!zWHI(ID!!Uխ@$!H !`ؖ!)I !!I$I$E)a ! H! d$H!  $I! * $ F!* I>! _ O$!~UI$I I$ % !W IJ$ !* ݶMt!* IH !* m!  I!  LE) H$M! $@H! ` @@!@  P! I$I$e) I$I$e) I$I$$!! I$I$$!!,. $!!>* $$!!*_ d@$H!А $!!U  $!!*WW $!! $$!!U I$!!U I$!!U $!! I$!!U I$!!U !$!!  $!!z I$$!!UU 0$!!_ $$!!(U M ! &  ! I$I$$!!  I$I$$!!.* I$I$$!!/ I$I$$!!  I$I$$!! I$I$e) E)!z E)! I$I$E)!* I$I$E)!j E) ( I$I$E)! @E)_ ͤ%)A P3AM!x K! -  $5E)+ oE)* I$I$E)! I$I$E)!+ %)b*& I$I$E)! I$I$1 I$I$1 %) I$I$E)! I$I$E)! I$I$E)!* `E)!Vj `H E)!UUWZ L&E)!UU $"E)Ap I$I$E)$! `E) @ E) I$I$1 I$I$E)$!* x E) I$I$E)$! @E)( E) | I&@%)U_Zh P tE) ** I$I$E)!- I$I$E)!* H%)a( (%) ` E)! I$I$E)!ꪪ I$I$E)! I$I$E)$!* I$I$E)!ꪨ. I$1!5 I$p9f1$!  E)b@ E) E) I$I$E)! I$I$E) E)A I$I$1 I$I$1 EHE)!&I$P>!!I$! P)E) // I$I$E)$!  $!@ E) ( I$I$E)$! %) I$I$E)!) I$I$E)$! * H$I$E)!`JII$f1!%WVϏ'dr<1!WTZa 6`E)! % I$H$e)E)` I$I$)( I$I$1 I$I$E)! E) I$I$)( I$I$1 I$I$E)$! * I$@ e)!h X `%) ِE) / I$I$E)! I$I$E)! / I$I$E)$! I$I$E)! I$I$E)!  E)  E)@@ E) H !$ MP!  e) I$I$e) I$I$$!!* I$I$$!! I$I$$!! $!  $$!! U  I! $$!!~] I$!! H$!!W d$!!*U  $!!U $!! @$!!_ d$!!U I$!!U $!! H$$!!(W^ @ !A d!d  d!d d d!d  d!d @$$!!+] @`$!!W RH!! $$!! U I$I$$!! / I$I$$!! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!* J,%)j @E)! I$I$E)! E)!z (E)z Jj @%)^T!~ '=E) _ JE) I$I$E)!  E)h h$I$!I$I$cI$I+*IE&&I$I$( I$I$!A $I$!@I$I$ 8#I@ aA$I$!AI$I$!AMi6$!!h$I$(I$I ?/G'M$ rI$I* )6m$$!!I$I$!AA$I$ ( $I$!AI $!AHI $I$!A $!AII$I! >/PI$ m$IA@I( $!BىHa II$* ,XdɖmI$I* %) $ & ]&{ !_5 )TP!anܸ7 ضa۲-( 4$!BXA% I$ /*( `#۶Ap/l۶mIҤ)P(bӗ!~ I4!A%  POv!p@Q!zI% !('.ذ% X0!  @ b,Hd!=P@! $I  @P$!~W`yC& X}Zy$! $ !@$ @!X!H@0 j!$!,6`!!I$I$!-! $d$!^H$I$ I$I|/ I$ !կ 6IH! IH!* HH! J$i! 4  I !( L!* ! d!d  @! )!! $!Ap I$I$d!d I!! $! $I! @&$I$!!UUU $I$%! H!A( `$d!d d!d $I(!` * !@ I!! D!(4 L$! $ $$! $ $$! $$$!* $$!!U  $! $!!^% D!$  @$!! Cd!d Id!d  d!d $d!d $!! U} @@$!j  ! $!! I$I$$!!( I$I$e) I$I$E)! I$I$E)! I$I$E)! I$I$E)! @$$!!  %)a I$I$E)! I$I$E)!說 R@E)~ ԤE)z/!^ TrRi!^ tE) - E)! I$I$E)! I$I$E)! %)* @%)!ڪ I$I$1 I$I$E)!ꪪ I$I$E)! I$I$E)! I$I$E)! L$E)!U^b I$I&$!. 0)жE)/ I$I$E)!" I$I$E)! I$I$E)!* I$I$E)$! ( I$I$1 I$I$E)! I$I$E)!  E) @ E) E)UZ  N$! -V  E) + (E)p E)` %) I$I$E)$! I$I$E)!ꪪ I$I$E)! I$I$E)$!** E)a ?e)! 7z I$`0e)!/p E)@  E) I$I$E)!*  E)@ E)a I$I$E)! * I$I$E)!  I$I$E)!& hE)^I$j4! Pɕ!* E)+/ I$I$E)! @E)!Š* I$I$E)! + E)@  E) € E)a  I$I$E)! * ۖl6lE). I$1!5U{e)!TP $I$E)! I$I$e)E)UUV\ I$I$1  E)  I$I$)( I$I$1 4E)` E) I$E)! * I$I$E)!xp Mvk;!.( E)! %5 I$I$E)! I$I$E)$!  @E)A E)  I$I$1 I$I$E)$!* I$I$E)!* I$I$E)!zz (@!@  I! R"I!p IH$!!_U] $AE) &I!b P!  I @d!d  d!d  F! @%@!A $)!J !b I! $ $$! $ $$! $$!!U $$!!U  $!  !@ @!) $I! "5$I!A` Am! @E)!uu " E)j E).  $!!  ! !  $!`  $!!)] $$!!/W I$I$$!! I$I$E)! hE)  E)!j E)! I$I$E)! E) I$I$E)! @H%)A Р PE)~ E)Wz )1&!\  ME)/U_ h%j$E)!I$ $>'cI$I$+K I  &,H$I$ I$I$! I$I$I$I$I$I$  $H$I$I$!AII!A@$H$(I$I>)$x$ rI$I$(Ii&I$I$A I$I$(I$I$I  !AH$I$ A$I$!AI$I !A@$I$Iə !AJD$I$ I$I!AA۶m۶$!!  $!B@&M$!!)-$!B4$!BD۶mېm*A (  M&m !!ި* $,h|!rV@&ض-[$P&A@h) $!B%c6 Hx?A$I$mP!H  I}!7 pA!%`\`)Q !^0,ؒl!ۖmKl Ȑ!Imۆ   @$ `V)I!ٶam  4!z&O3!j^u>L /I1 BR  @"'!X @ 1@$I! !,!,K!ɐ!I$I$! )6!! &(|$!zWP$I$/I$II !U IxI$A!  II! $ E) I@$!* $I! I!* "I$I!J 94II! Id!d I$ E) $ H!A I! JD"!6( $ $%!  I E) $I@ E) $ %!Z $!Aj @ $!  II$! 'I$!_ $IS!}@$I A` y$I.! I$ !W I$!a I$! I$@!U I$ !U I$! I$@! I$(! o$H!U M$!A& ۴M!( Nl! / $A!  d!d  E)! M$P%) $!! $!!u J!4$ $ ! ! $$!!^ $!! I$I$E)!  E)bj E)! E) I$I$E)$! E)!ߪ I$I$E)! E)@ & E)!  O-E)~ j !_` dݓ!-_  |%)a@+ 0 E))  %) I$I$E)! I$I$E)! I$I$E)! %) $!!@ "@$!@ $!a E)!z ݊nE) m4E)+ E)( E) I$I$E)!/ I$I$E)$!/ I$I$1 I$I$E)$! I$I$E)! I$I$E)$! I$I$E)! XE)^ꨀ 1xL%! @P %)!`* E)A*4( I$I$E)!着 I$I$E)! I$I$E)$! I$I$E)!ꪪ I$I$E)!  E) I$I$E)$!(M۶te) *,)I,E) (@ E) I$I$E)$! %) 4 E)  I$I$1 I$I$E)! * I$I$E)$! I$I$E)$! * hE)~I$L"$$!b Vɖ\!*+/ E)! I$I$E)$! I$I$E)!ꪪ I$I$E)$! I$I$E)$! I$I$E)! I$I$E)$! I$I$E)! *  E)!^Xpmöm;1!j   E) ** A$ e)$! E)74 hE)ި I$I$E)! I$I$)( E)` $@E)p I$I$E)! [% ,e)! $ @! @P!b I$I$E)! ) I$I$E)! I$I$E)!j E)! * I$I$E)! . PE)A8 I$I$E)!( I$I$E)$! H@E)!WVZz $IdE) $$! $?!"W R$! HI$!W $I$! $I$!U$IR  J$I" !a I$y ! I$$!U I$!Ao I$! I$H!U I$!U I$!U I$ !Aj I$HD!A $$ !j d! * Bd!d HH!d!d DJ !!( eP%A! AE)!+U E) & II$E)!  I$ِ$e)! I$de)! I$I0e)! I$I$E)! 0E) E)!U $!! $ $!!~ E)!ﯿ I$I$E)! I$I$E)! I$I$1 I$I$E)!  %)  I$I$E)!  E)!b E)x o5$$!@pI$I$?I$I$𼶭I$ bBA$H$a I$I$ I$I$H$I$ ( I$I$API I$I$I$@I$IAIA4i$I$I$ & /I$I$.I $ H$I$I$I$ I$I$ I$I$!AI$I$( I$I$!AI$I$!AA$I$( I$I >/A%H!Ab訪I$I$!!-ٖ%!JEM$!BI $!B@MѶ$!!A$I$!!9%%IdѤA *,h!r\1``9 $)#jzIE&$!!M)PaIdK@&$!!$I%ضm۶>Iݶ6/  &} !__ $P! g0' %[ H 'K $II H$I P!K` ۆmK  $!^Wx)'!V}Wm$ q@ Aj*) IJ!$EAԼ$!b,%!a I!@$I  H@$ `g !"E jJ P@ ! @>!_6M$ ~_H$I/II U* ) !4! ` I$ $! H$I! I$I!" $HD!A4  ! $E$ ! $I$&!  L$! $I$! H$I!* I$I! $ 1!* $Қ$! B'O$! $I$!$I * I$y+A! I$H! I I! y% $I!  `B! (" !@ @$I!  $m! + $!  Ʉ$E) $$! $$! d!d $! @($I!` un!"  $E) 0$! I$d!d C IE) (I!@   I!A A %) 髪 $$@E)Z I$I$E)! I I$e)!  I$$e)!  I$Ie)! I$I$E)! X E): @E)!Wu_ $!!/ު H$!!/W $!! I$I$E)! I$I$E)! I$I$1 I$I$E)! H$!  I$I$E)! I$I$E)!+ E)! r E)W mj L%)_3&@ pdE) E)! I$I$E)!z $!! p  $! (  $!@ P $!A ! I$I$$!!. $! `)$! ֶK !  -t%)/ I$I$1 I$I$E)!ꪪ I$I$E)!/ I$I$1 I$I$E)$!* I$I$E)! * I$I$E)$! E)&. @E)z MZ!   E) + %)  I$I$E)!ꪪ I$I$E)! @@E)b@ p E) I$I$E)! E)! ȡ%), & ۲ ۶mE)B(i@۲E) ( I$I$1 I$I$E)!6 I$I$E)!*( I$I$E)! I$I$E)! I$I$E)! * I$I$E)$! E)!* P@E)~xI$I$ &  %)* E)! I$I$E)!* E)!x E)!** I$I$E)$! I$I$E)! I$I$E)$! I$I$E)! H@E)zr wf1!*U XI$f1!*U I:I$1!m [ f1  I$I&e)! I$I$E)! @E)!_  E) I$$!!^  "E) jj  %)` E)! I$I$E)! @%)bb $%)  P$M$!tV%q$cI$I*$H$I$I$* I$I$ I$I$A I$I$&I$I AI$I$(( I$I$ A$I$I$(*I 0 'H$I$%)bI$I ( H$I$! I$I$I$I$( I$I$! I$I$(I$I$I$I (6 I$H$a`I$I ?!R$h$!rI$I$ IM$ m۶m$!!R$HIZ@A I $!B@I& `E۶Aٶm۰a* O$ ! ~* y2(X!bڢ1`  I A$$!!mѢE&$!!Mi[$b@@۶m@$!!MI K$Y *6`@$9z mҧpA!_7 &z$!aIRH!J A,$m$hI* $!b$I$) %N iZI$5 z&MH!k^ 8Hx Il Xdɖm! bӄ ~I$&öm˖ I @P!r@!$I! @)6!6L$ zWH$I `j I1!)9I !*! $)"I @ H$) Aؚ R&RA  I$I$! DI$I! J$I@!4 R"H$I $ID!I$I$! I$I$!* $$!U IM$!u $I$!I$Ir!* I$$!* IrII!* $A$I!  I$! $I$! @$I$! L$I!( L$I!( ")!@B I I! IB $! IH!  $HE) d!d !b I$d!d  (!! ! 5 $!!+ d!d I$d!d D! eh*I!A  ! I0E) $ $!  E) $@ &! @0Ȅ!( Ad!d 4B@!!`۱E)! U I$f1!U N2I$f1!UmhV1ޘ* I$I4f1! I$I$E)! I$I$E)! H E)`  @$! $!! %)A.& E) I$I$1 I$I$E)!  E) %) I$I$E)! zE)Wz yj%)UUWx!I!  $! ~ ! H ,!<@ J!,& $!!  $!,4 P$!!  @ $!! %` $!! $! I@ @$! )ӵ%)A j  E) Ji- E)!驪* I$I$E)!/ I$I$E)$! I$I$1 I$I$E)! I$I$E)$!. I$I$E)$!* E)!Zx $!Vx  E)+  E)!c I$I$E)! I$I$E)! I$I$1 ,@%)A` E)! %) I$I$E)$!(Nِe)a&mcE) I$I$E)!" I$I$E)$! I$I$E)!** I$I$E)! I$I$E)$! I$I$E)! *  E)A I$I$E)$! * Z5H%)zII$ . NE) / I$I$E)$!# E) & I$I$E)! I$I$E)! )%)A I$I$E)! PE)a I$I$E)!`?e)!5W^m6k[E)n| H E) 7<* E)@ E) I$I$E)! ) I$I$)( I$I$E)!(( I$I$1 I$I$E)$! m[qE)AР 6hE)!_x` E)!zk E)! - E)!` 9pE)  I$I$E)$! * I$I$E)! * xE) I$I$E)!蠂 E) @E)!^zj $I$! I$!* II!* *  $IB! !$ ! jH!A LB@! I$! I ! $Ad!d I$I$$!!* @! H")!@  A2%!p ! $!!z @@d!d d "E) @! 4 ! d!d  !   )!` @! $!! d I! I@!* $$! HIE) T!& @d!d $E)!U )$I$f1! UU MbI$1$!zU I$@f1!^/Mm 1!ު E)* HE)!U B $! $!! I$I$E)! I$I$1 (@&%)p`p\ID $>CI$I$I$I$ I$I$* I$I$! I$I$I$I$I$I$! I$I$ I$I$! I$I$!AI$I$(I$I@ ?E$M$!I$I$A(&I$I$I$I$ I$I$(* I$I$! I$I$I$I$ I$I$! I$I$ I$I  !E'!I$A$` $A$bI$!!$@$!A $!!I$$!!E&M4b@i&I A$I$!! e'O!W5 )TR!cXV0`[$ MM&$mѢm$$!!HA$!A@  @P @ҤbIE$!!-۲e / $@$ }DP!W'  I! LBn8I!۰a[M  I$!B $Xm $I$!B$EA.&!zHҤ$!ǣ$ J!YW$bV  ۆ5&I/ &mp2' I$ $!B I+& ^ĉA!1 @% !@ 6(m$!bH$I$I$G? E ! @!J/)@I  !I$I$!@!j $IT !+ $II2!* $L! !ꯪ !I$I!H'!a0I$!zUU$I!~UUI$I$ . I< I!g  $I!b)  IJD!6! $I2LH! $$! I $!* Ia2! DJ$I!A8 $ E) $ HE) $A !  A$AE) L2! )@! " A!@  ! 0d!d zD!!(4 @$d!d I I$I!& $!! - I$I$$!! @  d!d h !  !&. H d!d UP I! @$ d!d ! $!! @@ d!d I! !$$!* Hd!d R'%! d!d  $!!  f1!+UU ۓI$1!+U I$)$1!xmӶm+f1aj  E)- @E)!W $$!!-W`  $$! E)! I$I$E)$! I$I$E)!j %)bk E)! I$I$E)! E)!X K! I${5! j TI$!)UU L$!`+ $! H$$!!X $!!% I$I$e) ( $!` $$!!Y $B!Ap I$I$$!! ` ! -VM$!  %) I$I$E)! I$I$E)!/ I$I$E)! I$I$1 I$I$E)!蠪 I$I$E)! I$I$E)$!* E)!xb* I @!/ 2p$!/ $!  I$I$E)$! %) I$I$E)! I$I$E)!ꪪ  E)* I$I$E)!*  E)7lm;E) *( e)! E)( I$I$E)! I$I$E)! * I$I$1 I$I$E)$!  E) ` E)!* E) M2=!~j I$ ? `E) E) I$I$E)!ꪪ I$I$E)! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! * E)!X`1OE) IN'E)!5WT ۶mnE)- I$I$E)! E)!) I$I$E)! I$I$)( I$I$E)! (( E) &  E)@ ۶mۖ E) @fE)**   E)!Pb I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! @E)! *ZX I$I$E)! I$I$E)$! L@$E)!UW^Z !M! ( C$I! 2dBE) $HB#,!` $CE) Id!d $%B"!Ap @ A$E) R"I! $!! $)!@ B! @ I!A@  $I!A $!! d!d Hd!d $$! $$!  I!* IH!* JD!A(< !  d!d d!d d!d @d!d @! K!, I$! @$!!U^  &! @d!d $$!! W 1$I$1!UU _'f1!ނ-U I$p1!x I$I$E)!W @@@%)P $$!!-W{ ($!` H$I!tוQ$I$𘼯I$I$! I$I$I$I$ I$I$I$I$(( I$I$ @I$I$AI$I$`I$I$I$I$I$I8I$`$ AI$I$  I$I$I$I$( I$I$(I$I$ I$I$I$I$(* I$I$I$I$,& I$I$API(r$!I$I$* I$II$I$!A @$!AI  !A $!!$H!A H!A I$!!ɛO!*)P !kZIH m"M$ I$M$((I I$!AII 4(E6m$!AIA6m۶I  @m'b@ }$$!A R ¢&KҤ!ܪ pb  I(2,M{b@ 1!n o0[&H ـ /+(l۶ $ (D!{_LL!y!(!@&I6*0̈́ 4msN(A$I$!BX` ,XB:@J )#0 @$a'!H$I$I$Iɛ) @ !  !e! J A 8I !.&I$I$!I$I$!Ԑ!@ TIH! I!4!z|$!WUГ$I$ ZUUUI$Ix! I! $A$I!$!H! $I!+ $   $I$! $IE)a I$IE)a IHE)a $E) $! $I$$!  )I!` PI$I!) $$I! H$I!(* $$$! I@!*  C$E) I@! J%@ I! IB@! IB@! IB@! HH!a T! & a$!" `$ ! $L! H0I! "%!!`  @m! d!d d!d @d!d d!d  d!d A! d$! $$$!!Uj* @I$!  E) I$d!d  f1!/UU h`I$f1! Uƞf1!ނ I$I&e)!z E)!j  @ ! H $!! ~ E)! I$I$E)! I$I$E)! I$I$E)!ꪪ H$!( I$I$E)!먪 %)!_~ M% @$!W^I$I'!UUUV  I$!-U  ! $!!` / @$!!-X !! I$I$e) @$!`  H$!( HH! PhD!( I$K%! D! %)& I$I$E)! I$I$E)! I$I$E)$!* I$I$E)!પ I$I$E)! I$I$1 I$I$E)!* K% `E)^ 1%] !A Ҫ I$I$E)!ꨢ 9%) I$I$E)$! I$I$E)! I$I$E)$!ꪪ I$I$E)! I$I$E)$!** D@ %)!l ME) ( m6h۶E) O E) PE)A I$I$E)! * I$I$1 E)` E)! * E)!zr @ E)!^zjL'R0!^ZzI!+ P%) + H%)!,$ (%)!& I$I$E)! I$I$E)$! I$I$E)! I$I$1 I$I$E)! * X `E) m4)E) PaM% J  E)!* * H$I$e)E)\Zz I$I$1 I$I$E)! *( I$I$)( I$I$E)! I$I$E)! I$I$E)$! I$I$E)! *( E)!xϿE)!É7  HE)a . I$I$E)! E)` E)!몪 PE) ( I$I$1 I$I$E)$!* E)! E)!zj  I$$E) $! 6l[&! FJ*I!8 H&I! $I!  $! !  L$@! I! LBE) " I!  I! I@! IB@! $4!`  )~! @ I!  $!  I!(U  Mm! HB"$!A`  !E) !A$ I2@! !$! L!  0!  !a  @d!d !a I$I$$!! I$I$$!! L d!d !$!  @ &E) Hd!d i!+1!-UU I$e)!- I$I$f1!Wx @$P$E)zZXV7A$ isI$I$ hI$I$aI$I$ I$I$ I$I$ 8I$I$rI$I$@ I$I$a+<*I$I$4I$I$I$I$*I$ 'I$I$,I$I$**I$I$ pI$I$I$I$ I$I$A&&I$I$( I$I$.I$I$ H$I$AI#( H$I$( I$I$( I$I$ I $!AI !A $!! $H$!AI$I!AIM$!!$HA0B' zU(i&$!! A$!AI$A$ H  A8H$H6m$!AI4i$!AM$M  J$ OT!$!!j* Aϛ SI4i$ IX 6,Hd⼿ ۰ **c2&mض-kҤIm " dɖMѴ  %z !^׵ P0`T {^a7Hi&*",9rz%I#94at$&XdP`<1 ٲmK @R6 `&O$!I$I I)U!*@ 5!~,!%I!! !X`  b $!m0! *& @'!h&I?!M$I(@ I p$!!  !!%! "K!j! ! E$I!x! H! I$I$!* @ $$I!AР  $C!  I!I! HH!' mnֶ! IBI$! IR"%!Ap` m! $IԤ!* $I&!^ $IK!M$!WW /! -HH!   I'!WW  I$!UU  I-$!U $$!U HI$! )$!  $! H$!U  AN! $0! $ @!! $$!A` I!  0!  E) @ 2! X*I!! $!! P!( I$I$$!!. I$I$$!! d!d  &$!( L0$!!UX d!d h `!?e) 5 ?f1!^- I$M e)! I$I$E)! H E)!U_ H $!!5Wz E)! I$I$E)! I$I$1 I$I$E)! I$I$E)!+ @$! @ .@ ! I$R(!@I$!+  D!a 6 $!! @$!& $!! 5 I$I$$!! H%!  @$!!%P @@$!!؀% ! I$P! I$! / I$I$E)! I$I$E)!ꪪ I$I$E)! I$I$E)$! I$I$E)!ꪪ I$I$E)! I$I$1  E) j%H! P)tE)* I$I$E) I$I$1 HE) I$I$$!  I$I$e) I$I$E)!_ I$I$E)! . I$I$e) ꪪ EۢmѦe)!c> ۶ e)! I$I$E)!* I$I$E)!* E)! I$I$1 I$I$E)!* I$I$E)$! HE)< X @E)I$K$ Nɖt! + E)! HE)*(( I$I$E)! I$I$E)! I$I$E)!ꪪ I$I$E)! I$I$1 I$I$E)! mv@E)? ؀M6 E) E)! % I$I$1 I$I$E)$! I$I$E)! I$I$1 I$I$E)! ( I$I$1 I$I$E)! I$I$E)!   E)(@be) E)! $E)x I$I$E)$! I$I$E)!ʊ* E) E) 8 PE) (& I$I$E)$! h E) I X۶!  I$!  IKD!A&& $I$)!j  IK! $I$!UO(!z{ $I$!U (W!` `I[5!~  I$!UU  I$!U  Id$!U R# O$!` II$! @$!* I'H! I$$ ! I$"!W ɟ$IH U$I6!W pRI$!(* I$!U I! aۚn! I$d!d HD !!8  $@ $!*  @! !$$!!U  !a X!( 4!!` !  !@  @!A $!!/U @d!d $hlC>E)b*zI 7 H$I$I$I$!I$I$I$I$I$I$I$I$I$I$ I$I$(*I$I$ pI$I$I$I$ II ߿/h$I$ I$I$I$I$ I$I$! I$I$I$I$! I$I$I$I$I$I$&I$I$ I$Ia" A$I$b(6I$I$( I$I$!AI$I$b ުH$I$!AH$!!I A$!AI$I$!AI6EI$@Ҧ  "%!ue}_I & hҤi&!AH$I$@H $Am&I @ i6h$AI A!AI$I!A$H$$!!O '@(!* У$I!XV` [- $!B؊X0+ H$ (6,HdɖmlN62b($B' !{WM i^1@Ir *۰ۂ%* -DZ= @J$ II$**P oތm  0$h$I$aI$*yH!$  !pb[!m  ! BP !(   a0!$!zW'ɟ' ^WUUI'O I! !@I!bP$D$ Ar0!I$I$!  @! !D! $I& I! $I*)! @ I! I$)! $I!W$$! i"A!]ؤ   I$&yR bj Lr)! 4H!jo* I$ !AC!_ I"R! (I! I!u I"$I!U I@$I!U I"I$!U* #I!U I"IH!W I6$A! I$ !W I$Z I!_ I$M!U/$I!*_ I$!U  I$!U $AM$!*  IN! @ Id!d ($I! @ H !  I!A @ &! DP"I!b (!A@ !(  !a  `$!!W* JD!!,$  &E) $!!boE) ?e) _m۶e)! I$I$E)!~  $%)!U]^  h%$! X  $! %)!^ I$I$e) I$I$$!!/ 4$!n  !b@ i-! I$M%!! KI$$! U @$P !A PD!A H $!! 5p @ !A I$I$$!! H$$!!X  !A  $!!K O%@!WX` I$$!/? E) I$I$E)! I$I$E)! I$I$E)$! 8%)  I$I$E)! E)@ %)b m l$!ꨠ  I$%) -uUU $!  I$I$$! I$I$$!! . I$I$$!! I$I$$!! ! I$I$E)! E)!zꨪ ú-6vE)B< E) , E)@ E) I$I$E)$! I$I$E)$!  I$I$E)!** I$I$E)! I$I$E)$!* Zh%) I$N$/  mV$! /? I$I$E)!뫯 I$I$1 HE)( I$I$E)$! E)!jj  %) I$I$E)! * E)!x` mE)/? P ʀDE)a** E) I$I$E)$!" I$I$E)!( I$I$E)$!" I$I$E)! I$I$E)! ( @E)` I$I$E)!* E)a@)VuѺf1..N1!\ I$I$E)! I$I$E)! I$I$E)$!* @E)! I$I$E)$! I$I$E)!* I$I$E)! E)!jꪪ .J 5%)u|0"& ju]X΄L"! I%&( ! J$I!!  D$@!ժ L"I$ ! IJJ! R#1!z "!U I$I!U II$I!U I"I$@!U "I! I"I !U !$! $$!  @d!d  @d!d $d!d "I@! OIH! I' ! I$! $I"1! W @ I$! _ $I!  H!! $)!` m ! $H$!** hFI!A8 $!!耨 I$I$$!!* I$I$$!! $!!^* !$!!UX P'K!PX֗$H$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I::r$`$ bI$I$*I$I$I$I$I$I$I$I$`I$I$AI$I$I$I$I$I$I$I$b⪨I$I$I$I$A(I$I$I$I$!AA$I$ I$I$!A $!AH$I$!AII$!AI&Il)* `섉$ H$I$H$I$I$I$ ( I$I$!A $@$I $ $I !A)Zh$p ( / @$I< bjdɀ  $!Bm۶$!!)P$!B$I$* &LXֵ$!B ,  !_yBə ZވKA<4"!c'I8 "I K$ Ah $!B Jdؖm /acA4,%N$I$Ib IouB!1 m!`- @K@)!j IH!  H A< ۉe[!a!$!zW$I& zWU]ɟ'I !UUUI !UD$ Ar 8N! @!!I$I$E(CI$I$E)a,!`X !$!I6! !&!_}r!W $0!!* s !W~/!UP$ Ъmr@!_骪 lJ$! I$$I! I$@2! IB$! dB$$! ! d$! $ !* HG$I!!8 I!* ! d!d I d!d @$! I$! @I!  2E)  $!  $! `E) $@d!d $$d!d  `E) #@!~ I"1 @!W I$!_ $II!+ HI$!/~ $!+ H UP! (  d!d @$! ' !$$! " I!@@  ! I$I$$!!Ȫ+ I$I$$!!* $!!`  $!!\ L0$!!UX $!!k/ ̀5%)? iI;E) h E) $!!Ox'  A! H$$!! _ I$I$$!! I$I$e) $!& $!!/ I$I$$!! `$! I$Ph! I$!/  L$!- I$I$$!!* $!!5p $!! % D! @$!!X $!! (!`` J4 @! ɐdI$!+ ! (%) z %)A  I$I$E)! I$I$E)!ꪪ I$I$E)! I$I$1 E)!zꪪ LH$E)!UUUV !@!E)!5UU I$I$E)!  $!A H$$!! X I$I$e) `$!   ! I$I$E)! E) E)!sM E) I$I$E)$! I$I$E)!* I$I$E)! I$I$E)$!** I$I$E)!* I$I$E)$! E)!Zj m>Z!ꨠ I$ * `$! / I$I$E)$!  E)B*  ʀE)a.6 I$I$E)$! I$I$E)! I$I$1 I$I$E)! ** X4 `E) 4mI!!&  0 E) +/ I$I$E)! I$I$E)$!** (%) I$I$E)$!  E) E)  I$I$E)$!* E)! . @ E)!Zp` ;t$A@H$I$! IG/ )a ("EJ* `۶)Y ж@TA!`҄DI ^׭$I0 z>M!^WI+PD((M\! H!WխH$5 z̳c|lY TR $I B$I p.!p$ ` gR!%I$  x%I!*&I> !&* $S!ul)! * 0OZ !zտ`T!^! $I$@2! d$! H2IH!꿪!ꯪ $QH"E!  IH!*"("  E)a @@ E) Ld2E) $d2E) I! & H! !E) !I$E) $d!d  $d!d d!d I$$d!d $d!d  d!d d!d  d!d d!d  A! d!d IHd!d  I ! hF ! d!d 4!A`` SH!bb Id!d JD!A dd!d  A2d!d  d!d I$$!!UW Z"IH!^ I'HD!b DO")!  $! U  TI!  @!  I!  $$! *  $! ! I$I$$!!*  $!!Wx* L0$!!U\  !!B  UE)/  E)j⫿ Pu!  d!d H $!! 5V~ $!! I$I$e) $!4 @ $!!/p B$!!@ PH$@$!x I$j5! KI$! $! @$!! ( $!! 7 I$I$$!! ! !b I$I$$!! P! IM&!b/ !a I$I$$!! * $!!C> I$I$e) I$I$E)!ꪫ E) I$I$1 PE%) B $! ( M! . I$I$$!!. I$I$$!!" $!! I$I$e) $$!! 0EӠ %)+ I$I$E)! I$I$E)$! I$I$E)!** E)!*' I$I$E)! I$I$E)$! I$I$E)$! I$I$E)! /.  E) x`99׆1![iM @E)!˩- %)A I$I$E)! E) I$I$E)! + I$I$1 I$I$E)! I$I$E)$! @E)a ! IE) 0)!  )!  I!( d!d $E) @2d!d $@$d!d  d!d I$$d!d @@&d!d $d!d  d!d @2d!d I$!*  I")!!@  IH! @I$!  $!  e! H$d!d ʥ !,( @$@!` d!d ;! )!! R!A  $!! UW  $$!! U ! @$!!U [! O"5I!Uz DjI!^ , T!* .)R%!@`X Q$ krI$I$*I$I$I$I$I$I$! I$I$I$I$I$I$I$I$I$I$ pI$I$I$I$/)1T' xI$I$*I$I$I$I$I$I$ &. I$I$I$I$I$I$I$I$I$I$I$I$aI$I$a* I$I$I$I$ I$I$I$I$  I$I!pI$I$<I$I$!@I$IA$H$ I$I$ * A$I$I$! I$I$ I$I$AI$I$I$I$(I$I$! I A$I$A$I$I$ Ii&$!!$!!$H!A $!!I $!!@&M$!!i۶hb `!B$IlC& Hl( H $$!!h&M!A m$!! P  4h$!!IH  I"2@$I$ I$I((fB$ $db0̉A Mnm> @$ $!bm[d( (l Im۰/ b$!_Up$B'ɓ$B a* @ID!$j ^LT W-Y$!۶ma  R#% `m !lW!@$!$ӟ!_ R )!   ɓ!A*o)ir$!9!@!H^ !(4( J!IIJ!&m! IB$I!*!a&I$I$!!  I$! * I$IE)a L$$$! &! %Z5!! MҶ! ʡn$I!$ $I@! $$H!  I@2! $Ҷ!` $I25!A@b $I!* $! &@! &)I!a@ $AN As i۶n! I$$! $$LB!  IH!A I$! I$! -! H ! @#!b H ! H! eP!0 XD!  !@ I!! @I0$!!-U_ `$!!W $d!d j"IH!^  $H!WzPy!  I۶m! $d!d I!@ 0I!  $! I$I$e) I$I$$!!¾ H$!@  I!   @@"%!ap  Z,!/ U&@RA! x   !- H$$!![ $!!% H$!a$ I$I$$!! @@! ` 0$! @$! I'Ph!  DI$!/  !-  $! ʊ @$! + @DH !4 I$I$$!! ;@!a  $!! @!b IM&!b/ D!b I$I$$!!ࢋ I$I$$!!> I$I$e) H E)A @HE)j E)!  E)!Xzo @ $! * ̀! /< I$I$$!!, h!p $!! ' I$I$$!!(( ]P H!A I$I$$!!( I$I$$!! < $!  E)! I$I$E)$!* I$I$E)! I$I$E)! I$I$E)$! h%)A( I$I$1 DE)ؠ m6P!z訠DI$ . ! ! / I$I$$!! I$I$$!!* I$I$$!! . I$I$%)!~~ I$I$E)! I$I$1 I$I$E)! z&P$!AhyA2 A*) E) ) I$I$E)$! I$I$1 I$I$E)! I$I$1 @ E)( I$I$1 I$I$E)! I$I$E)! ?f1!7W_x&1 Z I$I$E)! I$I$E)! E)A I$I$E)! I$I$E)! I$I$E)$!⊪ I$I$E)!  E) HUE)A "i&I!@ JI$ !* m$H! $ @! (I %! JQW!4 $IH!A &ID:! &I$! m $! dX$ !0 ڤD1I $, I$ 0!9$I!+$I7 *W \I$!  II$!*_ $ $!* R!!Р I$$$! !$I! I$!  $$!* @")! @  0! PH! d!d d!d I2d!d `$!!W -H!  I$d!d I0$ !HIT ܖ7x$I$PI$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I*!H$I$bI$I$I$I$A I$I$I$I$A I$I$I$I$I$I$I$I$I$I$AI$I$b bI$I$ I$I$+*I$I$! I$I$(*I$I$! I$I$I$I$(I$I$!@I I$I$I$*I $*I$I$ I$I$ I$I$ I$I$AH$I$a I$I$! I $!AI$I$I$I$* *II&H$I!A$H$!A  $!!I$I$$!!$H!AiӶm$!! B$ I$)$ Jb(A<4-۱; $I!A  $!!I$H$ -&h4I @$!!`A,;*~h$I$b( I$I(i$+  0 ( Â&Ml6    ۰aۂ&XҤmܶ 9p'I(9I $IS յm='\[ӤmlضmH$I$!B-P4 #ia l!$BB!pJФL!!4* j\!_w 5LR!xzR$!Wٶ !d!  !B HD%I$I$E)a(!z! %I$A!A& $I@&!* @DJ!A  $#I!@RG! I &!_ $A$ j@4ɓ$!!p 0I$! $I$ $I$[I$II$I$!b I$I. ! I$m@!WI$  I$m ! I$d !I$I I$m+!U I$OI!UI$I U$I _ $I$ U PII$!  Hy$! "a!@( IPI!  I$H!** IB&!* I$$! $$!  ! !@  ! I$I$d!d `d!d !$!!5U_ R! I d!d L„ !( I$H$! I!E) $L0$!!UUX $$!!bU I&H$!*  L!A& $!!- @!p d!d m@! E) 31!> ID*!b P ! '  d!d H $!!%~ $!! I$I$e) @@!@   ! $!!B ( M"=@!^` DI$!/  L! + ! IH!%  ! I$I$$!! @ $!!%X` $!!⫭ @!p IM&!   ! I$I$$!!/ I$I$$!! . I$I$e) I$I$$!! $!4 I$I$$!!( DJ!($  6E)b @M! ( I$I$$!!* H$!!b $!!  H$!< $!!'< I$I$$!!.( $!!s. @ $$! ( E)!* I$I$E)! $!  I$I$E)! I$I$E)!ꪪ I$I$E)! H%) (  `E$!M'j6!z!RI!* $! I$I$$!!**( I$I$$!!< I$I$$!!  $!@ $!a I$I$$!  `$! DL&!﮾  ϰdE)- I$I$E)! I$I$E)$!  %)A@ E)  E) A E) E)4 E) *  E)!xhǟ?e)Ë E)! )- I$I$E)! I$I$E)! I$I$E)!ꊪ I$I$E)! I$I$E)$! I$I$E)! H%) ($ P< E) ` 'I$ _$I$!$IAI$Ir  I$I%)a I$+! I$I U I$+! I$- ! I$m(!j I${ !a* I$H!UI$I U $Id"I! M鶭!* D&! |H I! I"$ !_ I$$!I$j @I6!A PII$! _ $! $ ! !$L! @I$$! $$!*+ I$I$$!!ﮂ I$I$$!! I$I$$!! $$!!uz  $ E) "(R%!@` 2QR& {zI$I$a(I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I?/AB&H$ sZ\VI$I$>-I$I$I$I$"I$I$aI$I$aܨI$I$bI$I$I$I$"I$I$ШjI$I$AI$I$ I$I$A%%I$I$`I$I$ `I$I$44I$I$! I$I$&I$I$II$AI$I$!`(I$I  I$I$I$I$ I$I$aʂI$I$I$I$(I$I$BII$&I$I$AI$I$޷)II 6(H$I!A  I$!A  $I$!!$H$!A @$!!a+c'?o{_I$I$A44Ib%( HI$A$I$b  I$ $!!$I$ApIi4 4-P@6@$I$( i$I(!gn܈) #iN$ 4XҤIv/+$@$A@  PXe  0X$H1% \ n( 0lض1`<&NX%AI%HI(** 0 `AXҤl! @!_Ȓm; ض0@ lJ=!Y %J!XəK ' H!!rbK![@! b@  I$I$! &!ꪪ_ $LP!((!*`$)'!*@|$!'I$!H$I$!(I$II$y !I$  I !a  D!DDJ!aRI!  )" !*z* I! H! m$m ! Զ$!A` ۖ6! ]m !⫪ d! ֤Mm!  @LB!  I )I!( $H$2! RRJI! II I! I' !W I$H!_$I!$ JI$! $I$! @n! I$d!* IB&$!  !$$! $!! I$I$$!!/ I$I$$!!( @$!!^ L2d!d L$!!U  $! ڥD$!A(* LH&$!!%UU H E)!U^ $L$$!  ! ) !@  I!  ! ! ` $! L$! ( @0!  Rh!/ HR!  ! @$!!%[ $!!% I$I$e) @$!!X  HU! I$I$$!!* R) @!x`I$I' )  H!- H ! (@ @! $!!  $! @ $!!X`  @d!d @XF!A8 IDM&!/  ! I$I$$!!請 $!! / I$I$e) H!!$ I$I$$!!   $! $E)!^_ i(@E) ! @ @$!  @ $!!'r I$I$$!! ($! @!@$!!5 I$I$$!!Ë( @$@! (E!%). E)! I$I$E)! I$I$E)! I$I$E)$! E) I$I$E)! X $!  $!I$H'.<  V! /= I$I$$!!+ I$I$$!!** I$I$$!! /<< I$I$e)  $!!<@ I$I$$!!( $!44 h=@!ࠀr$(  p) E) -5 E) I$I$e) ꪪ E)a&& E)@ %)A HE)< I$I$E)! @E)![uQ>E).:pne)  E)@* E) ( I$I$1 E)( I$I$E)$! I$I$E)!ꪪ I$I$E)! I$I$E)!** I"IE)Ud[!I( !&I! $b.@! $& ! m6m! &! Զz!a(4 ۔!* M6m ! n!  !  0! $IML!a&. LBI!* m3`۶! IҶv!* m$[ ! JZ,! @ $I!+ b#I I!~* I"5$@!I$L !*jJ)I! I! $ $! !$L$! @I$$!+ $! + ! $ $!! k hM!ؔH$I$I$I$a>* I$I$I$I$ &.I$I$I$I$I$I$I$I$I$I$I$I$I$I$( s$ kbI$I$@I$I$a)+I$I$"I$I$I$I$!I$I$I$I$I$I$"I$I$I$I$AI$I$A/ I$I$I$I$ajI$I$!@I$I$!I$I$! I$I$(I$I$&I$I$! I$I$hzI$I * A$H$I$I$I$I$I$I$I$I$I$I$* I$I$ (I$I$ ( I$I$׸* I$I @$I$b@ I$I !Ai$MѤ!P $H!AI$I&II$H$I$(*Ii& p$;\W}I$I$!A $H$!AI$i6@A&I I'm  b)r$ABII4 I$I( ɐaÆm/`B"%`pH4Id9 @[@<&LdI *$J I)PD (I ޸( I#'z^RD1 HZ l۶mI *  '\dIu!W@A( IdD  m_$-!_p ͛!bBi^%R"A r`!+,I !NH!$ !ꪪI$I$E(C8!@K!$ !I$  =I$!^UU`$I$A@ I$Ib*I$@!I $!@R$ `!E$![d!C !_  ) $I!* II$! $I$! $I$! "1$ !`! A$H$! $E) " I!`* I&E) H$H$! @$I !   ! $I!*  IR"%!P $I$! I &! Iж! I&m! d ! $ H !  HDI! O"$ !~ I$I!IJ ! @R R! $I I&! I$d!* I$$! $!+ $!!` I$I$$!!. I$I$$!! `!  @!  $!!^ jD!A8 @LH&E)!UU I$E)!U^k%  )!` @!  `! @"!!  !a $!!k/  ! ( ! ,!?  Ց  0d!d !$!! $$! I$I$$!! $!! % $!! & R!hI$M&  ZT! +/ )!A  @$! * $!! I$I$$!!  @ $!!Xz $!!ˍ (I!` DI$! hDp!( @ $!!Xp $!!6 @,$!` $!!, I$I$$!! I$I$$!! (  @ E)!%__ {@E) 3A!! @$! $!! %6 I$I$$!! @$!!j ; !b @! WJ$!a* E) / 4E)* I$I$E)!ꮿ I$I$E)! P%)A I$I$E)! I$I$E)!ꪪ $!!H m6Z!zꨠID ( 0`$!  I$I$$!! I$I$$!! $!! I$I$$!! $!!. @E!A $! Iڤz&!^\ IDI$!/ H0E) I$I$E)! I$I$E)$! I$I$E)$!  E)!z  E)B %)a I$I$E)!/.> @4E)APsE)Ë H  E)A6* I$I$E)!` I$I$E)! I$I$E)!ꪪ ,E) z %) %)A& I$I$1 @ ` E) I I$! $I$! $I$! HD$A!!8 I$ $!*  $I$! * $A$$E)  I!,  $E)  $I$! H$I$!( $$L$! @$H! $H!  $I$! I$A$! I A!( I$I!*( $ R"%!Ap I$! mڶ!ꀀ HD  mm!* dB!$!  I&$I!* $I 2! m6v!+ $ jd!!( mv!*+  $I!$  "%!@ 2Q"& axI$I$/ I$I$I$I$I$I$I$I$I$I$I$I$ꪪI$I$bjjI$I$ I$I$II$A***Zb$L$ Z\VWI$I$I$I$"I$I$I$I$I$I$I$I$I$I$ (I$I$I$I$jZI$I$A/I$I$aI$I$I$I$I$I$I$I$I$I$I$I$*I$I$I$I$I$I$ܗ5I$I$a'I$I$!pI$I$I$I$I$I$ .&I$I$!(&6I$I$AI$I$I$I$xX֗I$I$#I$H$!AI $!AH$I$I$I$  @$!AI$I$!AIiS$H$I$I 6** HI$!A@$I$( I$I$ @A m$I  Zh"!@"!;AI $ MI -[d6`R"ZMi!$!B# ,9a@#ۉK$  8*P$I(*"'N(`@$/$9JDzVC$[5H$I 0- $8rr^5OS$!A($  6@I!jj* )j7! hR $% !1L!~ I$I$ J$ !!ꪪ$!$lje!-Y&!_6I!~UUP$q$I$I +I!I%ض!;Il!X! !!@ !p  a&I$I$E(CI$I$! !!I$I$! I$ $! ! I$!* I$$! I$!* I$$!  UP"%! Р $IHD!A8 H$ $!  $E) I A!*( HI !(* I$I!* II !** I$I !  I)!  IH! LB ! * ӦH*)!A@ M@! $IIH&!*I !ꪯ $dB! m۶д! I.(!@ II! B" $H!`  $$! I$I$$!! ؅P!!  $!!z `d!d d0$!!U_ d!d m5X `!* RE) $I%)  $! L$H$!  $! I$I$e) I$I$d!d H0$! I$!* X ! RI!x Pv! ' @d!d  $!! 5 I$I$$!! 1$! $ $!!\X I$I$$!!* P!x I$J%!^p PT! - ! @ $!!%Xr $!!)  ! -H!ACb H ! R(&I! )TI$! / @$! @$!! $!! $! I$I$$!!.< I$I$$!! $!!B< KeE)˯  \! ( I$I$$!!ᄐ @ $!!RB* $!! ' I$I$$!!** IH!a@  !A `! HJ&!+x @h$!!p I$I$$!!* I$I$E)! I$I$E)!  $!A@ E) I$I$$!! !J'P;( Ni!/= $!!* I$I$$!!** ! I$I$$!!( @$$!!S x ! I$I$$! * P%@$!AppA$I$ p) E) /- I$I$E)! @%)p I$I$E)!. I$I$E)!z I$I$E)! I$I$E)$! I$I$E)! I$I$E)! Mѿm>e).>,&`BE)*ؠ I$I$E)!‚ I$I$E)! I$I$1 P%) I$I$E)$! HE) I$I$E)! E)!ʪ $PIE)^^I$I$! II$!* I$A$! $I$I!* $C!$! I$$! I$! I$$! J$!  IH! I&!* $I& ! JD A( I$)!j  A I!(*  A!$!( I$! @$H$E)a H I! A !  H$EpA!a( $dH&E) `BI$!* m ! 햤m! $I!b JI&I! Z+`ݰe!+ u2@!`O!H$I$ \VWUI$I$ *I$I$I$I$I$I$I$I$bI$I$I$I$I$I$I$I$I$I$$,I"YB&bicpI$I$`I$I$I$I$"I$I$I$I$I$I$I$I$I$I$bI$I$఼I$I$AI$I$A I$I$( I$I$I$I$I$I$!'I$I$! I$I$I$I$I$I$ I$I$x^I$I$I$I$"I$I$I$I$I$I$I$I$I$I$! I$I$ I$I$zZ^I$I$.& $I$!AI$I$ I$I$ I$ 4(I"I$<I$I$!AI  !AH$I$II /+ @$I!&I$I$((I$I$I$I$!AI$I(  M(&bq,$Hĉ[ 6,X>$(PbXim$!!$$!BH$"' pDX $A'Hĉ$* q$A* I,%Z$ICzV)h$!!H $!B A,'^d !A@0X9@Ha&b0cMR!{@S!!*dI(  (l!z  (I$!!j ! I$ !@P!$$(!-EA$!$I>!~UU]I6M N$*IH˶!կ$&mI!_NH!1$I!I$! I$I$E(CI$I$E(C!$!Òd!I!%! &$@! H$!ꯊ $)I#$!A p # I!{ $I")!@b &II!  @! Iֶ! "I I!o $I I! R#5$!` I! #%!` II! $IږH! IdH2! $!(*  $! IH!*  AE) )]!@( tI$A! Hd0E) [ lZe! i$h;`! P"%bI!a* I$ ! EM5! 餭 !/ hnI! /  $@!  H!a @, !` @d!d EH !  H0$!!W^ L&E) d0!  $L&E)!UUW X`)E)  IJ! @!! !`$!* ! I$I$d!d @(!@  6l! @ !` Wh!k DJ>! * ! I$!( ! H! $!!/x H !,( H!` I$J%   P t! + $!!? $`0$!!TR $!!ꪩ e) !`0E) H$d!d j"="I!x` Hɕ! % @$$!! U hD!b( H$!!K $!A P !! I$I$$!!  @$!` IZ !! ) ! . I$I$e) H $!!sK $!! I$I$$!!ʊ* ! H, ! P(@!@ i$!-  ! ! I$I$$!! .< I$I$e) I$I$$!!< I$I$$!! $! j9P !~| Ib PD!  I$I$e) @e!A $!8 !$ $!! '4 I$I$$!! ( @@$!!p O$j=!WW^x IDI!/ E) I$I$E)$! I$I$E)! I$I$E)$!  E)@ %)b I$I$1 I$I$E)!/. E)6/E)ˏ E) )- I$I$E)!p I$I$E)! I$I$E)! I$I$E)! I$I$1 PE) * @E)! 4 `E) $ !( bB! m%ID!!*& J$J I!־ &IHD! IB@! !@! Iж! R"I$I!AP !I@! ʥD!&}  pb! }^ S5o$!A` $$! $!* mn!  I2 !  )I!a` @$!b)  A I!  $@$ !B $@$! *+ H$E) 0Il! ` A! I&:! $H!  )"=! @ 2AB& kszI$I$ I$I$ (I$I$"I$I$I$I$ 4I$I$I$I$ I$I$РI$I$"I$I$IDIb7' H$I$bI$I$_I$I$@I$I$aI$I$I$I$I$I$I$I$"I$I$ЀI$I$ I$I$ڪ I$I$*I$I$  I$I$I$I$&.I$I$A'I$I$I$I$I$I$"I$I$j_I$I$I$I$!بI$I$I$I$*I$I$ (4(I$I$ 4(I$I$I$I$**I$I$jzI$I$ I$I$ I$I$ PI$I$( I$I$ I$I$b@I$I$I$I !AI$I$!$I$I$+A$I$bI$I$A&I$A$ `I$I  I$I  &M)m$$!!m$ $ Ѐ&Hĉ  $H$!!-Z4H$$!!#"IAii ɂ#'*r^Mi!A-P @$I$I$( ID d(*@$M$<H P$!!A$ $!!H $!B4hҤ$!!N6%Â$M&A@l[%D̛!O$lB !ڪ@ A `ҤIY ^a۶m$I$!B""!!j)P@i!A M A  j$!`$1$(i'I  (I$!UmR rD A!$I!$I$!$QR ZI  $'!@N!@ !A6IVP!޺)!! $IjN !_+ Jդm !b& >$%!_Z R5!Ab  U$!  m#AN!  #!^ $I!կ FM*I!8 H-I!O@!U_I* !տ>!^^P(쟄 *ꪗ'!oV K s5!u}  I6!a $A$!+U $HW! IH@! $$I! I$I!!& HEI!    H! ((* $ H!* $E)  E! ( BdE) M ! Ie!* RH Q!* kӭ!+ k-!/ D I! & DJT !A,4 I$!* ,! d!d d!d  &E) H d!d ۢm@!ꨀ ۰E)/ i@SE) h퐴!8 ZM$! @ ! * I$I$d!d d!d  $` ! $C!! TP+i! Jݚ! / !  H!b  !A I$I$$!!(  0$! ( $!!> H!` I$J%! PK! H$!!K5 -JH! $!! $!!{/ d!d   E)H$ !~  D! '   !@ A! )$! I$I$$!! I$I$$!!< !`  @!b) bA$!c  @!  !$ $`$!!7Z `$! @ $!!sJ $!!≭  !, KR5!WVXp  ɔD! 5  !A I$I$$!! $!,&8  $!(( I$I$$!!,8 P$! `!}j WW~J`I ! P !0 HH! (!@ $! !! I$I$$!! * P, @$!xpI$I$" E) //  E)`  (E)` E)! %)@ E) (( I$I$E)$! I$I$E)! I$I$E)! 4IdHe).> 6ɐ E)/ E)!prz $!! 5 I$I$E)! I$I$E)! I$I$E)!ꪪ I$I$E)! I$I$E)! E)!jJ* |! z$PN! M+H!! }HTI!W 9}"I!W @-I!  )I! bI$)I!~IMI!UW9A!굯\(& ^  J! I&! .& I*I I!ժ I$! I<H!UujI$I@!%$I$! Z pJI$!* `$! HI! ۲&! $IL!  $!* $A$I! HH$HE) $!C0E)  $ $I! ZJt!H$N$I$I$I$I$0 ((I$I$"I$I$I$I$bI$I$I$I$bjjI$I$AI$I$!``I$I$A 8F$`PI$I$<(I$I$I$I$I$I$I$I$"I$I$I$I$I$I$"I$I$I$I$AI$I$A I$I$I$I$A <I$I$I$I$I$I$ (4(I$I$I$I$`I$I$bZzI$I$A,* I$I$I$I$"I$I$I$I$a I$I$I$I$I$I$ ((I$I$~I$I$bI$I$ I$I$I$I$*I$I$I$I$<(I$I$A@I$I!A$I$hZI$I׵- I$H$A@I$I$A.I$I$ I$I I$I$ ( $A $H$I 8(* H$[ 4 $H$!!Vb$J`I$  -P @$$!!Ii&bpI$h$ 4(I$I$***I)ڶ*H$m$A8 I$!!H$I$$!!--6$!!R$I( I%HĒ$A( $!!N$1$I ݶ,Lp%$H$ 0(@ @%I!@$Ia/s$(`$8&( C'I*I 8 &I ^խI$ սdI2$$ DB$A `@$ !ۀ ض- $!$9Ib !vD!-% br ! J@!* kN5!~ }"(V!z  i+I! &$I!_J, ! .I I!U*  IDR!,!  I!  IR"%!zz  Ia!* @ C!  IH!A vi۴!* @LH! $I! JJD! 8(6 R$%)!aP dII! i" ! I$$! I$MI! $I& I$! "!ɕ$!@¯ T! * I۶ ! v h! $H!$! R ! $C$E) $Ʉ IE) H$M$I! h۰! i׶[;`!+ `B $!/ kҭ!/ 4L!/ ҶiM%! M"I$@!!j @!!* I$I$d!d I$I$d!d @d!d d0E) `! Z"%I!A h 4%)/ -vI6! * H0&! I$! * d!d $d!d I&C!* $ ! * K]I! DI$! &  ! ! $!!%W_ $!! @EP! $$!!5VZj @$!!\ P@!xɑ$M&!b PW! +  $!!kϖ\ !H$!!\ I$I$d!d  d!d  ! ( I(!`` I$U"0!z : H!  !b @ $!! 7^ $! + I$I$$!! $!!(" I$I$$!!.>  ,!

`E)x dH8&E) E)! HH! 8 I$I$$!!( I$I$$!!€ @%)b I$I$E)! I$I$E)!믧 I$I$E)!/ HIhE)!!  I&!* AdB&! $IMD!  I IR!  IR"%!Ab`  ItI! ֵmӶ! @!I! I")!bj $I$A!x !  I2$ !($! $dB!* @ I! m mۦ! IH I! I$(!I$O  I$!A $II$! HJ! m$k!  D!a(4 ! @(!` ,c$A I$I$(I$I$ I$I$ I$I$"I$I$"I$I$"I$I$I$I$I$I$I$I$ I0b?' H$I$I$I$>/I$I$"I$I$I$I$I$I$"I$I$"I$I$"I$I$bI$I$A I$I$ I$I$ I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$AI$I$A*I$I$"I$I$"I$I$I$I$I$I$I$I$  I$I$I$I$!I$I$a I$I$ (I$I$@I$I$ I$I$!AI$I$ I$I$b $A$`I$I$/ I I$ I$I$I$I$. I$I$! I$I$I A Im$ID  8p$I ( -Pm$!!-R$m$!AI !A@ 4@$ II!AER$H$A`I$I$p I-' $H(Im$!AI$I$$!!m &$!!r$@ $Ȑm@ $E$I$I &G+ @`3& `X$N" N(8H۶mA۶ 0`9Lsp-g$`$ 1 $$N ( I8*Ê&I I H խ($ I$I$!B۰qp& $I(& ^ m r@!-%&!_MR!P1!կ~M@R!a M!!P@!x" ! @$KR!ЪH#A! R A( ۖ !I!I!D!I$I$! $ ")!@ A!  $E) @$E) IH$!** @$I ! I$ $! I$I! "I$I!j $I$@!a$!! @IB!  H$I2! b I! I">$ ! I$jH!$I' A z II$!b $@\! I&[ ! I %!A ` $I۔v!* E) j"m$I!\ !L$!( &AH!A *,!/ +0#I!b 8!/  !- $]MV! I$! ! I$I$d!d d!d I$!* B ! * [mh! 2@ mE)/ R"5H!!` !!*  H$!  ! $ $E) H$B! !I!A4( z%@! pIT!/ 6!+ $@`&E) e) I$I$e)  <!P PG!b  Ri@!x M$!/ $ !- C$d!d  E) I$I$d!d @0d!d $ ! 2im!肀IDJ%!/ KA!* @ !@  ! I$I$$!! @ $!!.>Z` I$I$$!!ꨨ `! b G$!Ï/ L!  Ad!d H$!X !A@ !  d!d  d!d P<!\P` TI$!%5U $!!= I$I$$!!Š. I$I$$!! I$I$e) @! I$I$$!! $! NdJ&!\I!^Z  ! @|! @ $!!4r I$I$$!! @ $!!`J $!!( I$I$$!!** I $!I$I$b  ! %5 I$I$E)! I$I$E)!ꪪ I$I$E)! I$I$E)$! I$I$E)! I$I$1 I$I$E)!j I$I$E)!ࢂ +E).>  E)  E)!_^~~ $!! I$I$$!! ** $!! f4  $!A  I$I$$!!,8 I$I$$!!( ``E)p !!I$I$! $R.%! I2$ &E) $E) I $!  I$!  I$I$! "$I! H $!* II !** !   $I$! $I%E! HI$!( I$A!"* IH$I!" $$I! @ I! #@ I!z I"&$! I$L!_~ \I$!U_ M!. R$ !Ap C%JD!bj$L$ xI$I$-'*I$I$ (I$I$"I$I$AI$I$"I$I$"I$I$bjI$I$I$I$!I$I$pI$A$bpI$I$ I$I$I$I$(I$I$"I$I$AI$I$# I$I$AI$I$I$I$A@I$I$I$I$AI$I$I$I$ I$I$I$I$I$I$I$I$I$I$"I$I$AI$I$A* I$I$ `I$I$bI$I$I$I$I$I$!I$I$I$I$AڊI$I$AI$I$ I$I$ I$I$I$I$ ( I$I$! I$I$I$I$@I A$bI$I$X^וI$I$b I$I$I$I$* I$I$! I$I$I I$AI $!AI$I (F$I( I6E$$!!I$@$ II$!A@$I$!A A$ I$I!A$I$I$I>/ IE$@$H!A H$@$I-i$IDU,ٶm'_$H$II. ivP* s\I$!BA$I$"H A((۰xH$8R$I (I!p *K60 8Np%ĸ E$I$I$I**۶m l@$H'N  I !սO$ !hI ItI //$$)% WIZ!կX$!@-I6!Kd!ɶ!@ I$I$E(C0!I$I$! ! & !P.!*H!b(( II$!* ʥz%I!!(4(I$I$!I$I$! I$! I$I$!I$I$! A$I ! I$H!* R.%+I!!Р II$!**  I")!* $II! H $! LHA!"* !$$I!" @L! @I$! O ! I$@!9$I$!+Wz @I$!   II!- H!   D!&  "! K! $B#)! ` $H I! iۤk;! e! a9! LX2(! RtJ!  I!A& ! I$I$d!d `0! I$! * H$!! kmE)/ n: $! 6m!  $H0! ! IHE) H$ B! $IH! J ـ @!PS&!A**z $ I! !HB&!* e) @H(!!p  `0! B$!!~z j,@!a證I$!+ 4@! @B0!B!  Z&!Ax A!  \J%A!$& @B!! PI!ࠀ HI! / $@!! H$@ $!!_^z $!! d$! $!!7 $!!l X,<`! X6؁b$!  @! h ! !H!( XI! ` d!d 4$@!A I$!AI$H$  ! % !  $%!! p I$I$$!! I$I$$!! I$I$$!! I$I$$!! P- @!xpz=!b&  X! /? I$I$e) !  (!A@ ! H$!!' I$I$$!! $!  O$J&! I\I$!- $! I$I$e) (%)a` E)! I$I$E)! I$I$E)! I$I$E)!j @ E)! i A$!A  V E) $! ! $!!% I$I$$!!< @$!!8  $!@ !  I$I$$!! $!!J * 6gm! ! P @! *!&I!J B$I!  I$I$! I$I$!* @ I$! A$I$!I$I$!  ! R%$I!a $H$I! I$ $! A$I$! %R"! I$H$!*( A I$! $E) IH$!@!$! @ I&! @ I! I$!~$I& +xI$ I$I$A I$I$I$I$I$I$I$I$"I$I$"I$I$I$I$I$I$ I$I$ ɀI$I$A*) H$I$I$I$>/ I$I$(I$I$(I$I$"I$I$bI$I$I$I$ I$I$I$I$AI$I$A/ I$I$AI$I$ꪪI$I$I$I$I$I$I$I$I$I$AI$I$zI$I$ **I$I$I$I$"I$I$I$I$I$I$I$I$ I$I$"I$I$!xI$I$!** I$I$ *6I$I$( I$I$(I$I$I$I$ I$I$( II$H$I$`ਪI$I$a-+ H$I$I$I$I$I$ *I$I$I$I$* II$!AN$I* 3'L$(I $!A A$!AI!AI$ I4h$I$II$H$I$I$/  @$I$I( IH$ $I !AE6m$IX1d-;vb'@$I$/IA۶/ $8 p 'IH\)PhQ$!!$!B$ (*`:N@P$J$1%$IC* a&s$ Lx&6V5 m۶I$I$$ $ x%d$IY !UIY6 ~|$ Wp$I IyY   !ս@r!ȤMV !*NK I  $%)A I$I$E(CI$I$E(C@!I$I$!I$I$!I$I$!$!&!_4@!!`!$!"!U&!AZI&!U_$OҶ!!}?!U  I"$!*U$'!@$! " "!TQ!@ $I!a  I$I$!*  $H$! $ . !@ II! AA E)a I $!* @ E)a $$I!꠪ $! $dH! @J!* I"=$!_ I$L)! JI$!+ R"$L! ` $(! $k!a H$! I$IE)a  I$E)a R($I!A@ Ii!b b+I!/ %9X!zɷ $AV!- R" $I! ( ! $d!d @! !H0!* H0! !@۬$!/ ܆m’a$! o! + I$`B0!* G! H$H$E) $I$ !A  I$! b"@!z DO$!+* IA! !LH&! ( @ !@ ! !H$!!5_ $$!!oR }5!_x W!- LA!  )&A!@@  I!  I$E)  HB$! ( H&$C2!`<@!蠀  P! )% @ d!d $`$$!!_ P@4!!` @(!A@ !A  H! !'< %! 6  t!. C $d!d @!d!d I$I$d!d !HE) Hd!d J") I!V` IDI$!/?  0!A @!p )! I$I$e) I$I$$!!.< I$I$$!! $! OVj!5 K&ۘ39!  ! )0! @ $!!6s I$I$$!! @ $!!Rrj $!! I$I$$!! * 5$!xxI$I$+  $! - I$I$e) $! I$I$E)! I$I$E)! I$I$E)! I$I$E)! H@ $!!p P %) a E)iϧ> `$!  ` $!!XPp $!! $!!Bʊ* $!!   $!!@ `!@ P! p($!J!A $I$!U웿!I! IҤ!U!a-$!U $I$!U|$!(<!UzUy&!U]o'J!A6JO !<P ɟ$!  UM$!! $ W!* I$I$!*  AI2!(* I$I$! I I$! A$ !"* H$@!( $!@ pII A (R"!`@A"&H$ AI$I$)* I$I$ I$I$I$I$@I$I$!I$I$"I$I$"I$I$"I$I$I$I$ I$I$bjzI$I$ I$I$I$I$ I$I$!I$I$bI$I$ I$I$"I$I$A@I$I$ I$I$b +I$I$I$I$bI$I$I$I$I$I$I$I$ I$I$I$I$aI$I$ I$I$A+I$I$"I$I$I$I$I$I$I$I$ꪪI$I$I$I$I$I$AࠨI$I$A*I$I$ `I$I$&&I$I$ **I$I$! I$I$(*I$I$* I$I$xXI$I$A$I$I$I$I$I$I$I$***I$I$(( I$I$!AM$I( %s$(I $HI$!AI$I$!AI$I$!A i$@I$I &M$xI$I$^׵I$ $ H$I$JI$I$ H$ !A$I$(I)Z4$!!hI$@$Iܗ%I$@!` %pĉ $!BI$ۖ +eA'b\pĉ)\եi"'I( -s$ (I $( $IzV 1 H- ضmۖl$H"A 8@,'^Lb'y > խ^9N$M$I^? IE A*O AM!M- iI$I$$!bI$I$ R" $ !_$$ ` @@!B'! ` 雖!I !!( m?$!U N m!W SI'!UW I+ '!U m m$!U IM!WU HI!*UU $IO$!UUI$!AI!UU d I!Ad %$!aj a I!UuU<@B&!!`zԓ$yB jRI'   o$! j  I! $I$!  $$! I$!I$I$! I$I$! $  E)a dB$ ! H !($ CnI۶! j"$!I$IA* DI$!*7 $@H!/ !I ! @!Ʉ! I$E)aI$I$E)a I$! *  &C!P !~꫾z4!zz  #)!*b  IJ  0!+ I$I$E)  + ! I$d2!* @ ! Mۊ!* m$!  t! * JF$@! ( H!!* $I 0E) H H!A  !! K%"A! \ɛ$!%U @! I$! * I$I$d!d d!d  $!!iW  ! }&j !W^x .Jv!-  @E)  .(! (` $ !! B$A! !I! *( JHD!A((LP!^   ! / @d!d  $!!! @!@  0 @!  !& "`! !$!cI>  !a @ d!d @H0E) d!d  d!d I !E)  CIE) L$P%! !!ˏ/ ! @ ! I$I$$!! D! $!!  $! ʨ P+b!! Ē)! !ˏ/  T! %5 !  $!!kO @$!! % I$I$$!!* $!!  !@@ @!I$L' x ɐ\I!+/ $!! $!& I$I$$!!,< I$I$e) I$I$$!!8 $!@ @!a @E)! @$%) ( \  1D%) $!!BB !$!!%%  !@ $!   I$I$$!! @$ $!!P`@ I$I$$!! `$! *[$!W m @m!U I!UU $Iɟ<!UU $I$!bjj!b )I&! j $ Hə'! Mb$!AޘOI!UI¶!UI$!UU)$@!@$O"!APL2`I$ I$$ /O!W I$ A  ! $ !  I@"%!Ap H@!a @ !A  I!*hD$!bH$I$AI$I$!I$I$<I$I$jI$I$ I$I$"I$I$@I$I$!.I$I$I$I$I$I$7 I$I$PؼI$I$// I$I$(I$I$I$I$"I$I$"I$I$I$I$"I$I$I$I$AI$I$A// I$I$!I$I$aI$I$I$I$I$I$I$I$I$I$pI$I$z~I$I$A>. I$I$I$I$ .6*I$I$I$I$I$I$I$I$I$I$I$I$AI$I$'I$I$I$I$aI$I$I$I$I$I$I$I$I$I$(I$I$VוI$I$ABࠨI$I$ I$I$I$I$! I$I$I$I$ **I$I$ Y2' II$ (H$H$ H$I$ I$I$!AI$I$H$I  A$xI$I$^ֵ%I A$b+ H$I(* $H$I$I$I$I$(IR$<(h)$kI$IxV5 IĶm `Ȑ'/x\H$IѶ`i۶-жI$!B$8p$r\UIi$H$I&( $I((r$ (NX$W,۶m'ApI $!!(6$!BH'I^%I 9L$bH$I Ib !EA$ W2:mnAH!($@2!I$I I$ !$)!$!U@"O!b$)!U ɟP ! I% $!W  iN8!Wu l!bR$-!UM!WɓP !'+ @!տI@! !A !!!I$I$!!*I!lH!_I"!UI>!U_I$b !U$"! IB' I& $$PHH$I'!  I$! U K! I"! $@ D!!)? `$!!8  $! H$ !  I&$I! $H!I! b$! I$b  JI$! $HI!a !d0!! I$$E)a I$I$E)a `@! BJ"!꯾?_@!z&D!^{ I!% I$!* I$H$E)  $E) I$$C"!* Z`-! + Mm!?  8! P T! - 逊&!a @9$I! I ! h;4 ! @!@! * J"%"!AX )TI$! U @ !  ! ( d!d I%!P  ! * "( !a@ih!a  X! 7 L! (  I$! * I$@ E) $%R"A! 0I!** #I!H] ! $@!! `&0E) e) d!d @ ! @@ d!d Xh!\ J}C)!a La! $)& !` -! ( H d!d  `B$!(   A2E) "I!`II$!? 0! I$I$d!d $!!' P$! @ $!!6p (!!@  P!  DK(&!?? X*!P  ! d!d @d!d !A @$ d!d  d!d ! j%P!xI$I$/? P]]I!!" I$I$$!!(( *! P$!( I$I$$!! I$I$$!!  I$I$e)  H$!!%7 X @$!܀ ǵE) "(!A@ %QR!A ! @ $!!rJ $!! @! $!! H $!!( Kny$!I @!I!4!z!!B!j !!!!!!I$I$E)a!O U~I$`!I:*I$I$ !$I$* pI$!*  P!( I$ ! * $(!`A$V$`I$I$AI$I$AI$I$I$I$I$I$"I$I$"I$I$ I$I$"I$I$ajI$I$I$I$bI$I$ I$I$I$I$I$I$ (I$I$"I$I$I$I$I$I$I$I$I$I$AI$I$ I$I$I$I$I$I$I$I$I$I$ahI$I$ I$I$zI$I$AI$I$A+I$I$I$I$I$I$I$I$I$I$I$I$I$I$  I$I$!jI$I$ I$I$ `I$I$I$I$I$I$I$I$I$I$I$I$AI$I$bI$I$I$I$I$I$ZI$I$ I$I$I$I$`$(I%+ H$I$ РI$H$(A$I$ ( I$I$I$I$I$I$( I$I$I$I$^V׵I$ $- I$I$*I$I$ I$I$ .&I$I$(I)R$ h$I$A`I$I * Imb6`!R$KZVI)$!!mMѶ$!!-ڤH$ $M!AI6h$II$( M$ b* $I/I@$!!h۶m$!!mRAp@$$!!ND1 W 0c$h$I$I$IR !Z &8Nhܗɖl !ۼm@ )  K`!'!W(>I$ ^UUh$I$ '=] O!UU'I!A'O!UտIJ !տ m!着 %  I$! %BBJ!Z D"!o a @ !@!jꪪ  $I$I$E(CI$I$E(C@!$ !`!!! !j!!}!WI' !ꪠI$O!UUI I$I$I$*TI$!  A!(+ $ $!* I$H!  $I$!  $I$E)a &!$I!B II!* nm&! j"$!ɑ$J0 /~@!- L&H!  $! I$A!"* Dh$@! ( AI$! *  R)H!/0& b(JU4!G!{ DHR! $)*I!(  R"H!! a I! $IH!  ! * [5 m!: h'U&!Az j: N!a * I$`0!* ! $H$E)a H$ ! vi! *O'@ !!@ Hɕ!A + H$$!  ! * @I$A!P HH&C!(  A0! P (&A!`[Z4 4IK! - d$ !  ! * $ALB&E) I$@$! $HF!@ ! I*(! (` $aM!9  I! I$I$e) @0d!d d!d B ! /Hʁ!ͧ\  ͡D!b &. ! E) H&DB !( d!d C HE)   ! $HB"!Р J&R"1!  \! // d!d @$ d!d $!!(" $!!` $!!# 4@H!!` -, h!p ~@$!saͅ ! -5 @d!d  d!d   !A d!d  E) !  !@I$H$ h I\!! +- I$I$$!!  $! I$I$$!! .< I$I$e) I$I$$!!.80  $!@ H@!b $!!  X$!,80 A! @0$!ࠀ M!& I$I$$!! ** $!! & @$!0 @$!!&4 I$I$$!! @4$!H I$I$E(C@< !p AI$I$E(CI$I$E)aI!hH a(4(I$I$E)ah& AI$I$E)a` !@!!I$I$!I$I$!l!_ꪪI$!I$I9I$I$  I$! B#y$ ࢪH$I$bI$I$ I$I$ ((I$I$"I$I$AI$I$"I$I$"I$I$I$I$I$I$I$I$7I$I$pPI$I$>/I$I$(I$I$ `I$I$I$I$AI$I$ I$I$I$I$I$I$AI$I$A?/ I$I$:.I$I$`I$I$I$I$I$I$I$I$"I$I$ I$I$AI$I$A* I$I$I$I$"I$I$I$I$ApI$I$I$I$I$I$aI$I$AI$I$A I$I$bI$I$ I$I$A `I$I$I$I$I$I$"I$I$I$I$A)I$I$I$I$I$I$I$I$I$I$I$I$I$I$A`bH$I$(+  $I$!AI$H$(I$I$a I$I$4,I$I$  I$I$I$I$aI$I$  I$I$I$I$ I$I$!AI$I$I$ H$ $`I$I$a7I$IA@4i$bI!AI$I$$!!m[-Z4$!!$I8sVu)R$M$I$I$*I$ I$Ih۶I$I$$!!m[m6$!!$IWU5 %/ $I$I$I/I܆1b8:Nxx5I A-  "@ ` %)++I$I !m 9 $l$ a $I$  I$I$/I$I$ I$m*I7" ʂ/)A$RB2 ``Rt! )I!۶l0l RB AP0` 믺 @ )!.@a !DJ! $ ,! $! 6 !,@p X!!$!  @@ a@ @@ A!I$I$E)a!I$I$!P!~I> I$M!I$I$I$I$ * PIə$! $N! I$! I$I$! I $E)a $C$H!ꪊ $!  C!!+ I$JH I$ * $j!! !Ʉ`0! H$! I$I$!  $I$! bJDA! I  !s*L![} A$! -m۶! /  ! I$I$E) H!  ! * sm! H*! -vi! * $@0!*  4 !@+ CLD!  *( I"A! "II!ʪI$h$! I\! % I$I$!*  I! IE)  dB2! ( $d!d `L !AJ![y $mÖa!( L$a2!(  !  I!*** J$ I  &I$I!窨 a !Ë. $$!* `2$! !! I$I$d!d  `E) P%! P(*@!` ZV!iM $HA! $B!E) !L! (( IH!@ ItI!   $ I0E) "I!jꨨII$!b 0 I! d!d  $!!% I$I$$!! $!A P *! ! z!% ͣ'x! h  @! d!d J!A4, I$I$e) `@0E) )E!  @! @ y&X=!yxIdI$A ** *P@!A $!! I$I$$!!8 I$I$$!! I$I$$!! @$!ap $!!B‚ $$!! 7 @,a! x[6$!, $! /  $! ( I$I$$!!*  $! I$I$$!! @  $!!rbB I$I$$!! $!!BŠ ,! `9!"В!jFH! (d'!HK! !$ ` $(TL˖  I8!!'!W!I$I$E)aI$I$E)aI$I$E)aI$I$E)aI$I$!!ꪪ}$ AI$| !I$I$`I$I$a I$I$I$I$ I$I$"I$I$I$I$aI$I$I$I$ $I$I$I$I$ I$I$ I$I$AI$I$ I$I$(I$I$I$I$"I$I$I$I$I$I$bI$I$u}I$I$AI$I$AI$I$ajI$I$I$I$I$I$!@I$I$ I$I$"I$I$I$I$AI$I$A I$I$(I$I$@I$I$I$I$API$I$a*I$I$AI$I$ I$I$A>/I$I$bI$I$I$I$I$I$ `I$I$I$I$I$I$ pI$I$h* I$I$aI$I$I$I$I$I$I$I$I$I$I$I$I$I$*kI$I$I$I$I$I$ I$I$! I$I$(II I$I$b`x^WI$I$b- I$I$.I$I$@I$I$aI$I$I $* HI$a`H$I* I&MB4H$I!A$!!MڤIZ4 (h$I$$I$I$I$b)I A$*MI[( EۤI$$!!miѶ$!!@@$ J$AVU$R$pH$I$5I a @̣$ xWpı$I\խٰm۶m+$I$I6i m,*$|$ !zP8I$I$I$A* I$I+I0` IYI$ mK$!$I ڷ.H$I$$!BI$$!b  $!bH$!b50ؚ$`I5I࿀ f $M2ؒ$$ $ I$II$!& O$!aHI$ U HI$$I$!I$FĘ$@`II9!MŴ!&!_!I$I$E(CI$I$E)aI$I$E)aI$I$E)aI$I$E)aI$I$!@ A@I$P a7I$I'I$I$*I$!* $ J!** $I$ !@ $II!bI$I$!@ !ꪪ $LB&! $ ! ɑ$`(!x D \! ")$I!h BH!! $@ A I$I$!* d0$H!*c6 !Ӱx$!Z B !7  IB&! * $ ! $ E) H$! "!$I!@B * J*i!! jJ!c 4M! / $)!a@ @$I!a  $I$E)a $FR(! "I I!j*I$L&! DIH!  H! @$$h!` $I2E) $J! ( C ! L!  {f! %  L&! ( $I-! *(x ڦmi! "$A!`⊊ !A !!  d@&$C!: Xt!8 !I! *" Id&!*(  d!d @! @!d!d $`E) WZ=!6X  JG! %6  ȐHE) `B$0!  ! $IID!7* A ! * $H"!!@H&A0!  P! / $0&! 0d!d e) ! d!d I$I$d!d =@!\Xp BR,$!RsAM T ! % HA$E) @0B"E) d!d d!d h$@ !a $!!.? P h!p`I$I$ AID!A. 0 $!a I$I$$!!Š( I$I$$!!  $$!!` I$I$$!! /  $!@  H! "!  $ $! !$`$!   $! +)  HF!!8 I$I$e) @@! $!! I$I$$!! $!!  $!!zz* R P,!`(I$ @j$ Ao I$ `I$-I$Az @1$`I$bI$IUUI$IU$I$U$I$_r"AI$ $A1/Rm! !!P!  A&&I$I$E)aI$I$E(CH ܀8!@ !a I$I$xZ_I$I$)* I$I$ I$I$"I$I$I$I$"I$I$I$I$I$I$"I$I$I$I$ I$I$I$I$ I$I$(I$I$@I$I$AI$I$I$I$A*jjI$I$AI$I$I$I$AI$I$A?//I$I$?/I$I$"I$I$I$I$I$I$I$I$"I$I$ I$I$AI$I$A* I$I$I$I$"I$I$(I$I$"I$I$I$I$I$I$"I$I$`ࠨI$I$A I$I$ I$I$I$I$I$I$I$I$I$I$"I$I$!xI$I$ *I$I$I$I$I$I$ `I$I$I$I$I$I$~I$I$.kuI$I$!BI$I$AI$I$(* I$I$(I$I$`I$I$ I$I$b`x^I$I$b- A$I$I$I$( I$I$! I$I$ I  I$I$ (I$I$ h*I$II$m$AI$I$!$I$!AI $H$I4( I$I$I$IAʊ I H$ Ii&( H$I!A $$!!$@$IX$( @$I$xVI$IV5 IJ$  'I`\I$!!I$I$$!BI$I*I)4*s$\UP$I$AI$I$ApI$I* I& 08 @&I$ $I @ [۰m ۼ!$Љm$bm M$* 'I$h$I$(I$I$A(`I$I!*I$qII$N$8I$ IIې$KAIb )IbIb; A@I$faI$UI$NUWI$IUI$I$_$I$/UI$UI$Жm  Mٴ!R!޻$P aI$I$E)aI$I$E)a(!j( I !.( !I$ I$I'ꨀI$I$ /rɕ$! @TI!$I aI$I$!I$I$!I$! I!! M"= I!W_ J6!/ TI$ ! 0ۀe!I$I$!I$I$! `B0$H!*" !ke&P!!ڠ IV!/' $LH&! .  &D2! $E) I$@ ! d2 $! I\j! ./ jRb!R $!HI!H!A/ $("I! y"5!k@}D!!*& R")B!p II$ **j $II!  II$! * m۶m! TI$I!  D2 ! * #4$I!`E /!k* A !  "$ !@ TIf! IH$E)a $ `H0!I$I$! 4 e$!/> ݶlȄu$! 0!!  ! (  $A!  dH2E) AP%!A ɒ&A!aBޢ!ym $HA!  I$!**  z$! C2$&! I$A$!*  )"I!H@ I!A II$ ? 6)6 !bb %!! $d!d I$I$e) $`$!!  !a&& `! ͱG$!% ɔTJ!5  H$d!d $H$E) ! ! ( Hd!d HI!$4 A$$E) @$! ꢢO$x&!^^zxɑI!-- @$! I$I$$!!*" @$!!. @$!p I$I$$!!: $!!@  $!![pjj $!!bC ˴[e!.>: !L!A   $!  ! I$I$$!!+++ $!! & I$I$$!!* @$!!& I$I$$!! @!I$AjIҶPbIB@&Ib Ib'c$jI$ m/I$U_X  pI9_I$U^I$I( ^I$ ^ $DO!!' $!!H! $P' `pXXI$I$a( I$I$ I$I$ I$I$"I$I$I$I$"I$I$I$I$"I$I$I$I$I$I$a I$I$I$I$@I$I$I$I$ I$I$ I$I$ I$I$I$I$A(I$I$~uI$I$AI$I$A I$I$ I$I$"I$I$I$I$I$I$ `I$I$I$I$a I$I$AI$I$:I$I$I$I$"I$I$"I$I$I$I$I$I$ `I$I$AI$I$*ڪI$I$I$I$I$I$I$I$I$I$I$I$I$I$AI$I$A>/ I$I$ pI$I$I$I$(I$I$I$I$I$I$I$I$bI$I$յI$I$! I$I$( I$I$! I$I$I$I$* I$I$ ЦI$I$A( I$I$I$I$** I$I$! I$I$I$I$AA$I$bI$I$p\WI$I$ I$H$(I$ (II$!AMI$H$I$РA$I$^I$I$+I$I$ (Ii& H$I$!A @$$!!@$I( IK$AH$I$I$I7 1 IP$ HI[$!!A[P$!BHI$!BDI($$m'P$I$I$I$I$I/II@$0H@$I$$!B %B"8A`  @۶!b8-9 M@$i$I"JHI$  I$I**I$$a*I(I$!! IHb ضm۶-$$!B$$!B$!B$!B$@ a PA" XI$II$  '$$`I@zI$UxI$N@U)$I$/PI$ B"'v `I$! ! b@!*   I$I$!!zI&@! zI$I$9I$ +U TI! + I$A!*I$I$!I$I$! @ !4!bj IH!aA! " $R!xB H"!A !I$I$! "A I!* J%!/ I`"0!\r TJ!5 !L&! / I  !  I$E)a $ $C! Xӭv! +=! > TPU!s (@ ! +! I$I$!*  )A_! 9D)" A @H$" b9I$! /I$I$!  @#)!!` PH!! I$@ !* LA2!( zR#!Xx` FB(![y P"%VI! ` Z$I&h! @ $!!ꪪ! !zj 4@$!Å ۰Mݖm!** L$I$!( ! $PI! $A !  H!( % zFX$!A((  Jf!-' I$H$! J$H$I! PI !ظ* A$! A ! @$! J'P$ ~`  4!A k P @!  (! @ $!  d!d d!d !A$ j%j4!\~u h %B,!c 4IA! $I`HE) R"h! $ d!d DB$$B"!  A! d!d h%P,!hI$I$%57 0! I$I$$!! @  $!!rbB Ѐ$!  P$!! $!! I$I$e)  $!!% R-(!aHa%!, J !!(   ! I$I$$!!/ @$!!4 I$I$$!! @ !$ I$I$$!!* $!!BJʎj` !I$I$$!Bh a I 9(*H,I0$I$I$$Ir$J"A I$I$DI  ,$I$I$I$I$*  I2&1`@I$q,b aI$A8$A *Pm7!uH$I$ I$I$b**I$I$I$I$I$I$I$I$"I$I$a I$I$ ,$I$I$"I$I$I$I$ I$I$a ( I$I$ I$I$I$I$ I$I$8I$I$"I$I$ I$I$(I$I$pI$I$AI$I$A/7I$I$/I$I$"I$I$I$I$I$I$"I$I$I$I$I$I$AI$I$A?/I$I$I$I$"I$I$"I$I$"I$I$I$I$"I$I$!@I$I$I$I$A*I$I$I$I$I$I$4I$I$I$I$I$I$*I$I$I$I$ bI$I$a I$I$I$I$AI$I$I$I$I$I$aI$I$a* I$I$ $I$‚I$I$ I$I$! I$I$*I$I$A I$I$ `( I$I$A)+I$I$ I$I$"(I$I$! I$IA@@$I$bI$I$`XVWI$I$* *Ii&I$I$( I I$API H$I$ I$I$z^I$I$׵+I$I$ (I4A$ I$I!AA$m$I   @&bH$I$ I   4H$!AI!A I$$!!IA$!!d (/ `8&N$I$I$bI$I$*I$*1!<B@$%A$!BII$**Id$IA rAh)$6I&I*N$ )&I6 I$I$IH$!! H!I$I$$!!$I$$!! ڶm۶ I$I$$!!I$ $!!I$$!B $!B$!BH 8IH! IAI$I$$!B A@J"'I "IA@II $%R" ApI$II$I*I$ mI-۰mxI$I i$I$!ni$bRm!U& !j `'!!I$I$E(C( @ #I!袁I$j4 `I$I$A I$! $@I! $I% ! $!`B( `P @! + bD !+ $I !*6 "IQ!મ $I)! *`! I$I$! "A !** HJ%!˯I$h!UW^z K!㥕 D b$%!/ I$H$! $I$B!ʪ @IJ h4! !„H &!! ! `0!0!HI$!A* %1(I!!I$h$! !+-/ MѦm6!. H$A ! I I$!  I$! * mӶkv!(()F!m J\!7 $B$!ʪ*!I$I$!@!I$I$! R%!!( ۆnXd! $Ij*E!a(  A$%!` :`l! P $H!  I$H! #&A!bE<)!Yme $HA!  A!*"*  I! *( I$I$E)a IH$!*( %P!!p ") I!ࠀII$ ao/ I !A.$ "!@  ! d!d  d!d JAH!4 "*A!z` " ! B  ɔ\! +* @  E) B"$! $e! A$E) ") !A@ $A! Ȁ@!`I$I$h  ! +/ I$I$$!!( I$I$$!! D$!!C $! !!A@ ! H@d!d  H@!A+8 P ! )- xGH!A I$I$$!!  d!d $!! !  jd! ( I$I$$!!//? R )!h $!BI"% `R"9HA@bI$I$$!B$Ir$ m%)! $%)UU  E)UU m۶ DE) $-%)U mI! vbI `!I$жm- 0ېd*0=C% @C'$A@I$I$A##I$I$4I$I$ (I$I$"I$I$AI$I$"I$I$I$I$I$I$I$I$I$I$AI$I$A I$I$ @I$I$AI$I$I$I$APPI$I$"I$I$I$I$I$I$zI$I$hI$I$& I$I$I$I$ @I$I$AI$I$"I$I$I$I$"I$I$`I$I$AI$I$A/?I$I$(I$I$`I$I$I$I$"I$I$"I$I$"I$I$AI$I$A?/I$I$I$I$I$I$I$I$A.I$I$I$I$I$I$AI$I$A+ I$I$ajI$I$I$I$I$I$I$I$I$I$I$I$a(*I$I$ *I$I$I$I$I$I$I$I$I$I$I$I$AI$I$A/+I$I$I$I$ I$I$AI$I$ $I$I$I$`XVI$I$% I$ $ H$I$( I$I$!AI$I !AI$I$( A$I$hZI$I$׵- I$I$AI A$ <II$$ $!AA$I`)4m$pI$I$xI  - @&M!AI$!!I$I$$!!I$I /`I#'*p$I$I$I$I$I*I"(b*@@ٱI$I$!!vb%"I`H!4H$!!Hm$ $ A4 UU{A,K p$$ ($II!A $$!!$$!!$I$!AH !UUU"!UUU I*E)UUU/ I$I E)UUU m D%) mE)UU $E)UU IE) $۶ E)UU ɟ$ۆmE)UU Ā E)UU m E)@ mӿ E) i%)! $E)UU $E)UU I$ %)U@ m۶$!! N%)W mI! Ib; !I$MRnm$  +v@_vb) AKH뭾ЄL !X!I$I$E(C !ꪪ !`*I% {I$I'~x $I$ R\! R"I$I `!@$ a` @R)I!/ ɕH & #$$I!p ( "AI!A@ B>#! j I$I$! "$I!ꪪbCY!oI$I$(I$I$I$I$bI$I$AI$I$!* bI$I$I$I$AI$I$!*** I$I$I$I$AB.I$I$ I$I$I$I$A`I$I$AI$I$AI$I$A/ I$I$ 0I$I$I$I$I$I$I$I$I$I$I$I$!(* I$I$I$I$I$I$I$I$I$I$"I$I$zI$I$A/I$I$a+I$I$>.I$I$AI$I$! I$I$a bI$I$byI$I$A?I$Ia A$H$(I$I$ I$I$!A $H$(I$I$!I$I$ 6'I$I$ApPI$I$* I$I$! I$I$!AI$I )6m$I$I$/I$ H$I$A  $@$!A $!!Nl[$׿H$M$b  I!**   ! $9 ! H$@E)  H!(( $I)!@ `tI!!   HD!% PID! **6  $!  I!**  ! IH$E)a  I! * I  E)!UUUo h0E)z* IE)A ) E) I$I$E)! I$I$)( I$I$)( XumE)  E) I$I$)( I$I$1 I$I$)( I$I$)( I I$e)$!( $I$e)$! $I$e)$! II$e)%) I$I$E)! I$I$E) K0n۶mE)A4( ТmӶE) @iٶmE) H$I$E)$! II$E)! I$$E)! $I$E)!* $I$e)$! I$-Ie)!$I RE)! I$LRe)! I$6`e)! I$I$E)!˴pmE)$& I$I$E)!* H$I$E)! I$I$E)! $I$E)$! $I$e)$! I H$E)!* I$H$e)E){ ۶m E) I$I$E)!, mѶm6E)!(@ @I$E)! I$I$E)! I$$E)!* I$Ie)E)U^ I$I$E)!, I I$E)$!* |m۰mE)b~ I$E)Au I$le) I$I(!WI$I$ I$I$bI$I$I$I$I$I$I$I$$I$I$AI$I$A;I$I$I$I$I$I$"I$I$"I$I$ I$I$ I$I$@I$I$!*I$I$b I$I$ I$I$ (I$I$"I$I$I$I$bzI$I$I$I$AI$I$A I$I$I$I$a I$I$I$I$ .&I$I$jZI$I$@I$I$!)I$I$aI$I$bzI$I$I$I$I$I$I$I$I$I$AI$I$ I$I$I$I$I$I$`I$I$AI$I$"I$I$AI$I$A/+ I$I$ I$I$I$I$AI$I$Ah*I$I$B`I$I$I$I$a-+  $I$I$I$ I$I$I A$I$I$*I$I$AxI$I$b-+I$I$(* I$I$! I$I$I$I( I6M$I$I$I$ H$I$( I !A@$A`I)4$!!$I$A(I$I$!I$IA7/I4&@ 'I!* <E)UU} E) }5 E)A  E) I$I$E)!  @E)@ `E) E) I$I$E) I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$IE)! I$IE)! I$I2`E)! I$@e)! I$iKe)! I&m e)$! Id۰e)$! I-e)$! Ie)E) IB$He)E)me)8m#e)!` IRYe)E) IB$He)E)mble)  I6-e)E)Z Ie)! Idme)$! I&l[e)!$IZE) P I$ e)! I$I E)! I$Kme)!96aE)p I$IE)! $I$E)! I$I$E)! I$I$E) I I$E)! II$E)$! I$A$e)E) m۶-&E)!P I$I$E)! I$I$1 жm۴E)! I$I$e)$!( I$I$E)! I$Ie)E)Uj# I$I$E)$! I$I$)( ۶mE)!X( IҶhۢE) U M2&۶aE) I$M@E)U_)I$! !I$I$E)ah ! ( jj9 !A X 믾Ot$ A6 !I$I$E(CI$I$!`$!Ah"<‚!^[kII$!R!!I$I$E)aH`!`!ꪪŒK%MP !`$!ظ!I$I$E(CP(! $!ꪊɑDI$?x'`J!  $AH!P& !`! IRG!*H&@0!a(pHT![I$I$!H!I$I$E)a@!z@$!  11!>> JhE! $ID! $H !. A$E)a II$!** I$H$! P"5"!Xpbчa& ]] H$a&! !ꪪ!I$I$!!I$I$!h%@0 x` (! + DyA!A(* HI$!(( $H E) `B&$C2! H$H! @  $!J&`<!!( HIr%! 6M%) $IRE)  @@E)bp E)! I$I$E)! I$I$)( HE) E) I$I$E)! I$I$E) I$I$E) I$I$E)! I$I$E)! I$I E)! I$I$E)! I$IE)! I$ImE)!  I$Ke)! Im e)! I$e)$! Ile)$! Ile)$!* Ie)E) IIe)E)me) mvVe)!$ IB Ie)E)m;4SIf1` IeKe)E) I&$e)! I& e)! Imme)$! m۶5E)ضuE)'e) _۰yE)* ٲe)! _ 6I$e)!  m[m$e)! lې$e)E) IB`e)E) Id e)E)U* I$l e)! I$Me)! I$I E)! ˰m6lE)!& E)$. òm۶mE)@ mmE)!4(* I$I$)( I$I$)( I$I$)( I$I$E)!  I I$e)E)z} I$I$E)$! I$I e)$!  I$I$e)$! $I$e)$! l E)h IضmE) I$ E)_W I$I4!_I$I$@zI$I$AI$I$A+*I$I$:(I$I$ I$I$AI$I$"I$I$"I$I$I$I$"I$I$AI$I$A** I$I$ ((I$I$(I$I$ I$I$"I$I$I$I$"I$I$AI$I$A** I$I$I$I$I$I$I$I$I$I$`I$I$I$I$I$I$A- I$I$I$I$pI$I$I$I$ꪪI$I$I$I$ @I$I$('I$I$I$I$I$I$I$I$A`I$I$A`I$I$AI$I$A>/ I$I$I$I$I$I$I$I$I$I$I$I$AI$I$A+* I$I$ I$I$* I$I$! I$I$I$I$*I$I$pzI$I$A/ I$I$AI$I$bpI$I$!AI$I(*I"M$ I$I$ *I I6O I$I$AI$ b@ A$IA6pA$I$axI$I$A I$%E)A ɟJE)U E) I$I$E)! I$I$)( I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$IE)! * ۲ycmE) (!IME)a I$Àme)! ImH$E)! Imؒ$e)E)u l[$e)! e[I$e)!z -6I$e)!foe)!`۶m;e) zf۶e) m۶cE)!x l%mE)A @$I$E)!*+ I$I E)!Of1!UUNm1a.cf1A .I$I1!UUI1U.$If1UIf1!UU I$I&e)!* E)!_ԶI޶e) 6`۶m;E)!+$ֶ$E)e) *}fce) U %I$e)! dI$e)!( ٖ$e)! mJd$e)E) u MRe)E)  I&%ضe)E)V I$dKe)! I$[6e)! I$IE)! [mۆaE)P (E)` I$I$E)!*  @E) I$I$)( I$I$)( I$Ie)E). I$I$)( @I$E)!  I2,I$e)$! I$I$E)! I$I e)$!* II$e)$!  clE)!p Mm6lE) I&m[E) U_ mh E) I$I$!K% !MP!a<6 #9 1` !믿|&!A   H($I!*G@(!M'R>!9I!b@'! **I$I$!I$I$E)a H$!P0@!~zV$I$  % : b **I$I$E(C@ I!@,!J&P4 ^xx  -%Hd@`! @ $I$I!!!jꪪA*I$ ap!@6 `!!I$I$E(C !! {C!aɇIGp ( ! I$I$! A$I$! I$I$! $B$A!ʊ**I0ʏ uuV !!iI% $@ A- ! I! &  ,!I$I$!@!jꪨII 7 $ ! ** A ! !$! $C!$!  $! mE)+ IE)* E)) I$I$)( I$I$)( I$I$E) I$I$E)! I$I$E)! I$I$E)! I$Ie)!c\nɴE)  I$۰e)! Id-e)! Im$e)E)y I[$e)$! [ ْ$e)! l I$e)!*?e)!^ٶe)!f۶$e) W жme)!* $ %)` ж۶E) տ I$I$E)! e)!m۶1ۉM8e) ._ 1.'I1.$IB1UImf1e)! I$I$E)! , $@CE) HIE)eXI$1eI$1eII$1~eII$1.O^f1ըJI$$1m?`mf1۶-e)*m۷e) E)* mV2E)k@$e)  e)!* 6ɖ$e)  KlÖ$e)E) I- e)$! I$2e)! I$IeE)! I$I$E)! I$I$E)! C2l۰mE) ` I$I$)( I$I$)( I$I$)( $I$e)E)v II$e)E) { I$ e)$! I$I`e)$! ۰m۲E)` )$E) c"-6e)z@I'mE)A_ I$J@E)I$I$A[XI$I$ I$I$I$I$"I$I$ApI$I$"I$I$"I$I$`I$I$ & I$I$I$I$ (I$I$"I$I$``I$I$bI$I$(I$I$AI$I$A I$I$ @I$I$ I$I$I$I$I$I$.I$I$@I$I$A踾?I$I$ I$I$I$I$I$I$I$I$"I$I$ @I$I$#I$I$"I$I$ *.I$I$I$I$ I$I$aI$I$!I$I$AI$I$AI$I$A@I$I$ I$I$I$I$I$I$bzI$I$A**I$I$*I$I$//I$I$I$I$,I$I$I$I$AI$I$A? I$I$*I$I$I$I$! I$I$I $I$I$II6a.&@$I$(*I$I$!A I$a IyRE)+ O$E)UU) I"E)a !E)! I$I$E)!  E)a@ E)A I$I$E)! I$I E)! m۶E)  I$0,e)!/C@E)  K6`K$e)!g۶mE)8m lE)A& l۶E)!u 0E)  ЯE) ۔$$!  ۖv!( @ mvE) IE)!uUW H %)A*j  E)j+ H$!A $E) @$E)p ۶amE)+ $I$f1$!*e$I$1!U$I$1 U 9$I$1!Ue $I$1!E$I$1z $I$1! $I$1!WP$I$1 _U$I$1U@$I$1eI$1! __eI$1eII$1!zeI`I$1W.w1_ .1.I$`$1!UUmm[f1Oe) E) ml׸E)mE) e)! I$e)! ۂ$e)$!* Imle)E)[  I$ e)! I$I`E)! I$I$E)! I$I$E)! $I$E)!* amE)  I$I$)( I$I$)( I$I$)( HI$e)E)h/ I$I$e)$! I$Hee)$!* A$I$e)$! * H6ɘE)> Imɐ E)!h4@E)! OdE) s$!I A @(!I!H$ 2۰m!뫿I(!յI$H&|  !ڢ *1!I$I$E(C ! !뫯M&`5!_^~IO& ] D!`1!)H jꪪ + !)@P!jꫫI$N$/>D% a!I$I$E)a@$ !  )")!(Bx&A0!!ay!b./I$I$!Ȁ!$ `P  !  k!'> K>!\@!ꪩ*  !k!  $I$!I$I$! z$J",! DO!5 $ɐHH!H !!`!0!I$I$!M$J& x TI !- L$IE)!UUի J E) E)!U I$I$E)$!*" I$I$E)! @%E) I$I$E)!* I$IE)! m۶ E)!@ I$ e)!2-mE)` I Ò$e)! !I$E)!$C2E)b @mE) h۶m&E)!_] @ҪE)j `&E) 0@$! m$! hvI!((  ("E)Aj* IJEE)! %$E)Aڠ -E)* &%)A JE) ٱme)!. .$I$1$!_n$I$1 U$I$1!U E$I$1!e $I$1!$I$1! $I$1!$I$1!Uϑ$I$1 _$I$1e I$1! I kn1E)U I`o1E)U Ivf1$!_m˶f1& e) Vf1!U~K$ e)CmE)^  9E) ^Զa[e) $E)*{  HE)b  h%%)*_ t %) 0 R$!/~  IE) m2E)AjMne)A  0`I$e)! -e)h e)  I$mC"e)!۶mٖae) I$I$E)! I$I$E)! I$I$)( I$I$e)E) I$I$e)E)7w I$e)E)5 l`fE)8۴mmE)` [mE)A I$I$e)E)?U E) ` I16E)Wx I$mE)UU~ I$I&!bI$I$A說I$I$I$I$AI$I$ ***I$I$I$I$(I$I$ I$I$"I$I$ I$I$ I$I$@I$I$ **I$I$I$I$Ab I$I$@I$I$AI$I$I$I$I$I$AI$I$A?/ I$I$"I$I$I$I$ .&I$I$I$I$"I$I$I$I$A?. I$I$ I$I$6pI$I$I$I$88 I$I$I$I$!I$I$A// I$I$"I$I$bI$I$I$I$I$I$I$I$AI$I$A I$I$`I$I$ I$I$! I$I$$(I$I$AI$I$A+I$I$ I$I$ I$I$! I$I$I$I$ H$I$II>. @$H* I$7E)UU+ IE)U E) I$I$E)$! I$I$E)! I$I$E)! I$I$E)!+ I$IE)!+۸meE) mE)   I$E)! a۶m?E) ˰m۶E)A( 4:E)  @ۘ$! mc! 0m! ۖ$I !* $ !* MV!A* IE)  AE)bj  E))Nl۶me)!ׯdK$ E) m;dž1!j$e) I-e)!me)iƍe)! I$Жe)E)U I $e)%)* m۶m@! lKm6e)E) m %$e)E) ۖ$1E) I $e)$! e $e)%) i e)%)*& [;9e) `  4e)E)NJie)A IIe)E)U I۰1E)U Ib;1$!~mK 9e)*p`e) z?`f1!U}ҶemE)^*m @e) )PaE)L˒E) @IҶE) U x%)A -E)u $9J%)_ X $!   l%) ۰mfE)*mdE)  I$e)!* aɐ$e)!$)PE) I$6e)!۶mzE)< I$I$E)!+ I$I$E)!+ I$I$E)!* I$I e)E)z I$I$)( A$I$e)E)"_6H۲-E) @@mE)! ̸mE) E)A I$I$)( cm۶ E)^ lE)W j%R %)az` @B I$A$ #$!zD-&6I$I$+/h!!  'He@ !$!zI(N$ % 9T D@ 8!@  ۰ !ﯿ!x%@#) ZzjID  -X$ !!I$I$E)a "%R"R !`p( AA/ p!@,2 !@!z`؀ !꾾 !# !{ R"$)! `p@  "@!I$I$!I$I$!I$I$! "$I!jʪA$I " @!@ !jꪫ ! *I$I$E)a ͶlK!. m6 E) Z"E)_ E) - I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$ E)! [mnE)A IH$E)! ˆ%I$e)! m6rE)@ $iE) $E)W  #$!( Nb! &IN!/ h6! M$&! II$!b I:`E)몂 $HHE) E)!}}۶ e)! ۶mf1$ɆlCE)!8  I e)!  I&$@e)!mme) IB$Ie)$! IB2e)E) II e)%)  mӶmS4@! mKm$e)E) m $$e)E) m $e)%)  i $e)$! m$e)$! vamf1E)着$Akf1A(4 re)A@iKI$e) $[e)$! ɒ$I-e)$! !$IҲe)$! A$qE)A$ $I$e)E)U ْI$e)$! I$f1E)U എ$f1E)U Id$e)E) d6e)%) I@e)E)]  @e)b- I$kӡf1!UOb۴=le)۶$ E) Ѐ%) 2IR @$!xi $! $!* HDm[u! X(" E)%@$E)$g#mE)( $e)!+ I%me)$!$I#E)@ I$I$E)! I$I$E)! I$I$E)!+ I$I$1 0n6rE)!( $I$e)E) I$I$e)E)W I$He)$! I$e)$!*  ۺ-E)` Id,e)!p I$6E) I$cmE)UUzI$I$aI$I$ &I$I$a( I$I$I$I$I$I$bI$I$I$I$I$I$"I$I$A* I$I$I$I$I$I$I$I$I$I$(&I$I$I$I$AI$I$AI$I$I$I$I$I$I$I$I$I$I$I$AI$I$ 0I$I$I$I$a I$I$AI$I$I$I$ I$I$AI$I$A+I$I$.I$I$I$I$I$I$ &.I$I$aI$I$A* I$I$*I$I$A( 6I$I$! I$I$I$I$A bbI$I$!)I$I$A I$I$./ I$I$! I$I$I$I$AppH$I$ I$I$!շ NE)U E) I$I$E)$! I$I$E)! E)  ۶-۶E)J ۖmlE)  II$E)! I$I$E)! $E)!U X%)! A$$!  iN$!WW lIbO!U t$7! ߶ʤ!.$ I E)տ*  E)o۶e)!] I$6e)!߿dBmE) `mr #!DA$" P9p !'  !I$H$ P)0"!@@H!I$L$ \$!ꫫ !I$I$E(CXd,!!J`<!^Z L  H!﮾ H$H$ G@ 8!d@2,! /HKF!ͧ7pIK @  !!I$I$!!I$I$! L$z&!! ! / ! !. KdE) IE) U I$I$E)!- I$I$E)! (E)` I$I$E)!* ۶e7`E) I$@$e)$! I$I$E)! A$I$E)!_ )E)!j  E)a Hc;!~ I!U jۉ !/ m۶. !o@ V!* 1=a%) iq۶ E)*m۶ `e)!  I$`e)!LRMe)A6xe)  $$e)E) HFe) IM$e)$!dJe)Ъ &I$e)! 1ٶmE)! H$Ie)$!  X$I%e)$! I$I e)$! K$I-e)$! I$I$e)$!  I$ې e)$!;dE)a(4 I$`e)$! I$ e)$! I$e)$!$I`E) I$e)$! I$e)$!* mۆ e)! mle)!** I$Ie)$! $[ee)E)X  -%2e)E) 0$Y%e)$!$Gije) ` aI e)E)- em$e)E)z K,e)E)(@ IB$e)E)U I-ؖe)$! I$e)$! I$Ke)$! ۖ$I,e)E)UU dI$e)$! I$e)$!  Ai$e)$! dC$e)E)+ IR"e)! I$!e)!ߠO?le) W ̆mE) $%)}W m۶[D!< $I2'!/ `nI$! ܐ$E)UжmE)0dLE)* Mle)E)% I$6e)! I$K e)! I$I$E)! A$I$E)! I$I$1 I$I$1 -۶mE)@ fE)! I$H E)!* $I$E)$! H $e)E)( ۲m؆ E)` I%E)a I$O E)U]_I$I$ I$I$"I$I$ I$I$I$I$I$I$AI$I$aI$I$I$I$I$I$I$I$I$I$I$I$AI$I$A** I$I$"I$I$ I$I$"I$I$I$I$I$I$A@I$I$() I$I$I$I$I$I$I$I$aPI$I$"I$I$AI$I$A/I$I$AI$I$I$I$I$I$I$I$!@@I$I$A*I$I$b髪I$I$ I$I$!6I$I$I$I$I$I$I$I$ * &I$I$6 I$I$( I$I$ I$I!/ ɓ'E)UU  E) I$I$E)!  E)jJ E) I$ $E)! IH$e)$!  m۶E)  h۶m:E)!U 5E) H{! 6;I$! 'c!/ I$! In$! &E)( c۶ e)!U I$6e)!. Il-e)! Ia$e)E) mI$e)$! -I$e)$! Ö$I$e)$!* H$I$e)$! hE)& m)e)! mm E)!j٦M6hE) I$ۖle)E)  [2lɐde)E) . ɶdK2$e)E) ( Kl e)E) I$e)E). ˲ae)E)  ɐdIle)E) 5. ؐ Ie)E) /* X$ e)E) IdIe)E)/5* %&le)E) K$Ie)E)( ېe)E)  a`e)@Ƒ!Ime)aZy$e) ؂-e)E)[m @E) ɲ%S6e)E) -ɒle)E)  m e)E)  !˲$e)E) l 2e)$!Dj1YE)  Ȁ ۆ%e)E) m6 e)E)  IR$e)E)V' Ime)E)U  I$e)$! I$X`e)$!  ɖ$I`e)$! Ð$I$e)$! H$I$E)! * vI$1E)U I-$e)E) M e)E)he) $ke) _=&[ mE)Aڰ v<:E) m۶(!`$I! {I$! 01$E) U ۰mݖE) `öce)!@ojFE)A I% e)$! I$[e)! I$I$E)$!* I$I$E)  I I$e)$! I$I$e)E)* $I$e)E) j  ۶mE) I$@E)! I$e)$! I$e)E)*+ @$  e)E)P C$IE) xE)u I$M&!AD)P!`! P Ȁ @!"!I$K&)I!H %@(!öml  I!ﯿHD `"$#)!zz) D  --X(!!!ꪪ0 !"(h aA$I  $ɓ$ AH BR$!b "!,!@ !믿T@#*!_  _RD!! !I$I$E)a@! !ꪪ R"="! IE) E)! I$I$E)! PE) I$I$E)! I$ $E)! 2۶mE)` $I$E)! $E)!U '%)W  iI! f'I! L$! IĜ! I %)U K$IE)* m۶7 e)!  I$ae)! Imö%e)!/ ɆmÒ$e)E)Z mI$e)$! $I$e)$! $I$e)$!  E)a@  @E)a I$e)$!* [a۰ E) I`ɀ$e)E)U I@ e)E)+* I- e)E)  ےI$e)E)/ I% e)E)* aI$e)E)+ K%2 e)E)p ,Y%e)E) e)E) I$[2`e)E)x I Ie)E)  ض$I e)E) ٖ$Ie)E) 0`e)E)$b*E)  ۶$Kme)E)I;le)  K$[ e)E)xɰIe)! lX%e)E) $I e)E)מ $I$e)E) @u6lE)AР `ۖI6e)E) I$e)E) 6[$e)E) "#@E)@foe)  )6eBe)E) -2le)E) à ,2,e)E)  ؐmْ$e)E)Û A%e)E)@۔le)a % Imضe)E)U, I$ضe)$! I$K2`e)$!#|LE)$( жI$e)E)W II$e)E)  l$e)E) L(@e)b`e)!W}B$ E)_ I2'E)U_ k;H!~ xI2'! U_  $%)*U m%E)* e)!/ I2`ٖ$e)$!  I$`e)!F.HE) o E)  I$I$E)!* I$I$1 I$I$)( @I$e)E)`' I$e)$! I$I$E)!  $E)! I$I e)E) PE)x I$E)U_ I$I'!bI$I$(I$I$AI$I$A***I$I$(I$I$I$I$I$I$I$I$I$I$I$I$AI$I$A I$I$I$I$I$I$"I$I$! &' I$I$I$I$AI$I$A `I$I$I$I$I$I$ XI$I$I$I$@I$I$!I$I$AI$I$>/I$I$I$I$I$I$I$I$aI$I$A:z I$I$I$I$ &.I$I$ I$I$I$I$AI$I$!* I$I$A@I$I$ I$IR$! z IE)U hE)A  O%) I$I$E)! I$I$E)! I$I$E)! I$I$E)!_ 5E) @c{$! 96!H! c' 7! IWE)U* &E)* m۶e)!տ  I$-e)!  I2l۲$e)E)x Im[$e)!, -I$e)$! [mE)P I$I$E)! D@E) I$I$E)! I$I$E)! I$Ie)E). I$I$1 I$Ie)$! A$Ie)E) A Ie)E)/ ْl۰%e)E)  Id$e)E)+: K`ۖ$e)E)W&[E)а8mE) @ %I-e)! $I$e)E)h $I e)E)W $Ime)E) I$I e)E)** I$le)E)U i$$Ke)E) $$e)E) [$$e)E) ې$%e)E) ؖ$ۖ$e)E)e$ E)A  K$le)E)T ɒ$6`e)E) $ e)E) $Ime)E)[j ؖ$I%e)E) Ͷ=E)!@!vn$InE) mBI$e)E) H ٖ$e)E)(j eC6)$e)E)@EFE)  K۶e)E)* dI$e)E).. ð I-e)E).'E)  Im%e)E)_ I$ e)$! I$ۂ e)$!" %E)` I$e)! ْI$e)$! d -e)E)-#0Re)A`  e)!}C$ HE) I1E)U  @! I"5!/Uz PI!+ E)e)  H I$e)! I%e)$!$I" AE) ۶x lE) $( I$I$E) I$I$)( I$I$)( $I$e)E) I I$e)$! I$He)$! @I$E)!&< I Ie)E)/ E) IE)( T[ ,E)pI#0 j J  J !h6 ^~zzII$ **J!믭@ -*`ɖpA#=K!zzTI i髫I$N$/>(Ar! bbJP! a  H@6,! D!ͣx&  I!+"2"#!P  IH$ XG ې%X  )9Ҩ!qiE@ J!(!z $I! mҦ-E) IE)!խ ()%) `  9 E) I$I$E)! I$I$E)!+ I$I$E)! E)!w &E)_ lsln! $7:!cXN! !_+ y[IE)u I$IE)  I$0`e)! Idee)! Ia[$e)E)i ^ ɰmI$e)! ض$I$e)$! 6n˶mE)A(& I$I$E)! *E)A I$I$E)! I$I$E)!8 I$I e)E) I$I$E) I$I e)E)> I$Ae)E)> K%ٰme)E) m&%$e)E)x ؖ$e)E)  Imے$e)$! ̶lE)ǶmE) 8 lI%e)E)  $Ide)E)^* $I2le)E) ؒ$I-e)E) ْ$e)E)u I$ٰ e)E)* ۖ$le)E) ۖ$۰$e)E) K$de)E)(* $ؖ$e)E) $e)E) l @e)  I$X e)E)U  K$X,e)E) $Ime)E)  e)E)  2,۶me)E) ٖm$e)!8 6l[$e)E)  @lme)E) `ؐe)E)  IMْe)E) I6le)E)~ I$e)E)~  ɖ$me)E) i $I2le)E)j XmI$e)E)0 HI$e)E)(Z IB2%$e)$!  Il e)E) ɖ$Kme)E)  6-e)@A–ie)@ېMe)  I-me)E)U I$ۂme)$!m&iE)  -$I$e)$! HI$e)$! le)E)  I& e)!vbۛ e) _ O2ۈmE)W I$ ! I9!/  $$!+ m喷E)* lI$e)!/LE) I%2e)! I$I,E)! I$I$E) * I$I$E)! I$I$)( $I$e)E)  K2$I$e)$! I$Hle)$! I$I$e)$! H$@$e)E) mӶhE) ` I%ضmE)Wx I$O$%) I$I$A I$I$I$I$I$I$I$I$I$I$I$I$aI$I$Aj**I$I$I$I$ I$I$zI$I$ I$I$ @I$I$ I$I$A>>/I$I$ `I$I$I$I$I$I$ I$I$ I$I$ApI$I$* :I$I$I$I$I$I$I$I$"I$I$I$I$a*I$I$bI$I$I$I$I$I$I$I$I$I$AI$Ia+ I) E)W- IE)a* I$I$E)! ۶mۖ`E)A I$I$E)! E)a I$I$E)! 6E) k$! 6! $7aN!/ Ӷ!* M E) I۶mE) I$$E)!+ I@$e)$!* ٰmK$e)$!D IE)&* I$I$E)!* I$I$E)! E)A ۶-۶ E) @ l۶mE) E) I$Ie)E)믾" I$Ɇ$e)E) I$$e)E)W&0[E) `p I$I$E)! 1жm۶E)! H$I$e)E)U I$@e)E): I$@e)E) ( I-[%e)E)  l,e)E) a e)E)  @Ie)E)(*   e)E) ɖlɖe)E) $Ȑe) Kdɖae)E)(*  ذmۖme)E) 6ٖ-e)E).o۶ME)  n 1E)Hr 1e) $CHe)a  mB$e)%) I$m6e)E)  mIe)E) / $I1"H e)A He)E)*(< ۶ale)E) H$e)! ۶ۖ$e)! 6le)E)  6de)E) ( Ke@le)E)  IdK0e)E) I$@ e)$!* I$ e)E)6 $Iae)E) dI-e)E). I$e)E) M’I$e)! Ide)E),* M$mBe)E)< aɶee)E) pe)'$ɔe)4 Imöme)E)^ I$`e)$! cmE)( Ð$I$e)$!  I$e)$!  C-e)E)- IB6Ae)! de)!Wö$ E) I2'%)U_ ds H!߀ nI$!  ܔE)`۶E) ڶ $Ie)  I,e)$! I$Ie)! I$I$E)! I$I$E)! I$I$1 I$I$e)E)> X I$e)E)o I$ E)! * II$e)E)%x I $e)%) I$Ae)%)ꪢ cmmE) P E) R+!2`!믯I$H'I!+HP 0!zg78bKa[ ﯿǹ ,s%@1Pp@BT! ٶ A(.H$ . !jx"&!! @4" !Zz{kNq$ "!Rx& ! (۶m[% @  ,I j@! !׮ # E)  %)  4E) ` I$I$E)!  E)!` $IE) E)! ڤE) 5m[! o! II! [t! &E) m۶ E)!ݿ I$e)! I $e)E) ^0̶ce) `l۱me)!+ I$I$E)! I$I$E)! E) ۶faE)  E) I$Ie)E)/ I$I`e)E) I$$e)E) I@$e)E)*U ۶7nE)<& òm۶mE)` $Ie)E)U I$I$e)E)/ I$ e)E)_  Iɖ`e)E)_*  Ieɐ e)E)  [%[de)E) ( m2,e)E) I e)E)*  @$He)E)(@I0e)@ ۲%H$E)! lde)E)  m[ee)E) #0e)`` a&Ie)!lI"f1@I4Ie) ` i%I6e)E) I&$ e)%) $H$e)E) 0`ٖme)E) &-e)a@ e)  I$e)E) ÐdI$e)$! Xm۶mE)  I$e)E) I I$e)E)*U ,$e)E)-loe) @ۖI$Ie) @$e)E) )K)قe)E) ömÖ`e)$!  ؀dHe)E)((  ۲mˀ e)E) I2!e)E)$)$E)$ ɒ$؂-e)E)_߾E) @HB$9E)  K%$e)! [de)E),F2 Ie)@ ېmٲ%e)! 6lY$e)E)"$)A")E) I$؆e)$!* I$I&e)!*x $I$e)!  $I-$e)!/ IB2Ie)![?le)!_C$ E) I2'$! ސN!+  IMդ!* ۰mE)  e)!ۖaME)  I$e)! E)!* I$I$E) * I$Ie)E) I$I$)( @I$e)E)p' I$@e)E)^? I$e)E) | I e)E) % `m؆mE) I`E)] I$hE)bI$I$I$I$I$I$ꪨI$I$0I$I$A࠰I$I$A. I$I$"I$I$I$I$`I$I$I$I$I$I$!I$I$![{I$I$*I$I$I$I$I$I$I$I$I$I$pI$I$AI$I$ I$I$I$I$I$I$I$I$@pP\I$I$a* I$I$I$I$I$I$I$I$ I$I!}]]- IE)aU @E)-` E)!+ I$I$E)! I$I$E)! )ڶm۶E) 6E) mE)/ жtE) X$!// f$! $%)Abm6E)+ I  E)! I$e)$! @$I$E)! E)b@ E)!* OE) 68 I$I$)( I$I$)( I$Ie)E)[* dH$AE)8 I$H$e)E)U I$I$e)E)U $I$E)! I$I$)( I$I$e)E)U* I $e)E) $A$e)E) A$H$e)E) II$e)E)*. H$Ie)E)( [y E)a ڦm",E)b`` XdY%E)! @$$e)E) 6ۖ$e)E)U ɰK$e)E) x_ MCI$e)E)ӰɑE)8̰I6mE) -$I0E)!!`$INE) $Ile)E)  $Ime)E) ے$ɶe)E)_  Ò$e)E)U ɒ$e)!!me)  ۖ$Ile)E) $Ime)E) $I2`e)$!a۶mE)! I$e)E) $I$e)$!PӪm۶E) me)!(( II$e)E)_ 6`I$e)E)* ېa$e)E)ڶ IE)$ ٲ-۰me)E) II e)E)** -ɶl$e)!0 2 Â!e)E) m2,e)E) K e)E) #)9E)` I$ee)E)7 $I,e)E)K 6mE)A I)$e)!< ؂% e)E)  iڦLHe)E)# (Đ,He) ömɒ$e)E) h "e)!@ le)! I$K e)$! e)! i$e)  uf1E)^ I$$Ke)!C$ E) I1E)U~  $ch! @X &!  OE)`{e)! dEE)8 I$e)! mv E)! а I$I$E)!* I$I$E)! I$I$e)E) $I$e)E)_W I$$e)E)Up $I$e)$!* II$e)E)( ۂalE)b@ IE)! ɆeE) j&Z5!II$*(+BT!{)  m@ۤ(h(DB1 [{۲6@IdI$A (4)lA ȑ!۲ m 9I V ! &&("A !﮾I$N$()H!bRBO Z{{kH 뫩bɶd[ 믿 ٖn E) v6E)+ HE)( I$I$E)! I$I$E)! E)` E)! $E) M!E) [E) hK7E) ؒn$! H%)! I$I2lE)!+ I@$E)!  I$E)! A$I$E)!* PE)  @E)!@ E) I$I$)( I$I$)( I$I e)E) i۶-жE)! II$e)E) zU I$I$E)! @$I$e)E)U I$I$)( I$A$e)E)ժ IH$e)E)*( @I$e)E) *. I $e)E) I$e)E) A$I e)E)몀Fn&HE) mKDE)<< $e)E) ~ Kۖ$e)E)(*_ [`ۖ$e)E) aSI$e)E)WU K I$E)!iٶmE)A@ D$)E)P&mE)а $I2e)E)յ $Ie)E) ؖ$Ime)E) K$e)E)(U K$e)E)URe)ap ٖ$e)E)Հ ې$Ime)E) $I e)E)b۶ e)!@* $I-E)!$m>1E)` Ille)! %[le)E) Ilme)E)  I%I e)E)ڰ6 I @$E)!@ I$[$E)$! I$I e)E) mKqE)A(e)  ۆmE)  X I$e)$! Ȁ $e)E) lee)E) " Y%He)!, ˶le)E)  A, e)E)" H@! K 0le)E) I%le)E) $e)E) Ime)E) `$e)E) MҲ$e)E)  !X Ke)%)  e)E)(,Ӹ e)!`m$IE)  I$He)E)-Ux %I$e)$! [ l$1$! MBHe)$! I$de)!MB$ E)W I$! pI9! 0ٖ%) жnE)! U 6 I$e)!/ I% e)$! I$K,E)! @ DE) I$H$e)$! I$I$)(ö%۸mE)p ۆm[7gE)  ْdI%e)E)-p I$I$1 I$@e)E) PE)z I$[lE)I$I$I$I$bI$I$AI$I$AI$I$"I$I$ *&I$I$ 'I$I$I$I$I$I$A>I$I$I$I$I$I$jI$I$I$I$ (I$I$AI$I$A*** I$I$(I$I$kI$I$ I$I$I$I$I$I$bI$I$I$I$I$I$ I$I$! IE)ׯ E)! I$I$E)!+ $E)a I$I$E)! $E)!_ вE) &E) lE) E) $%) ۸-8E)!` ۖmmE)  mmE)! %mE)p P E) I$I$E)!  I$I$E)! I$I$)( I$Ie)E)/۶mgE)( IH$e)E) xU $I$e)E) xU @$I$e)E)U I$I e)E)U I$I$1 I$I$1 I$I$1 I$I$1  I$I e)E) I$$e)E) IdC$e)E)*U IeI$e)E)* ^U ɀ$I$e)E) U ؖ$I$e)E)_] H$I$e)E)U I$I e)E)_} I$Ae)E)u"/ 6lpE)& m; E)!@a$mE)! I$e)E)*. [-$e)E) ٖɐ$e)E)% `f4iE)a8dMe)<4 ɐ ؖ$e)E)  ضmٖ e)E) nC|e) ɶ e)  Ime)E)  I$@!OH$RE) ( ۶a۶$e)E) K$,e)E) 0ۖ$e)E) $e)E)`ҶMlE)A H e)E)8  Kdɰme)E). I![-e)E)p I$$e)E) I$E)! I$Ie)E)/ ۶mÂE)@`۱me)!!`H$iE)a  2lI$e)$!( ,ِ$e)E) X%le)E)  md"e)!hoe)  Ȇ e)E) m6`e)E) `ae)E) I,0e)E)j I$6e)E)) lI`e)E)  [ɰ$e)E)  ˲mde)E)H+ IlJe)E)   `˶lӦe)E) H$e)E)KlHe)A/ I$@E)!  iI&e)E)5Up a$1E)U le)E)` I$ e)!dC$ E)z I9%)U sl!/ M1g$! ۰m햶E)*fce)!  K2lle)$! I$@e)! @E)h ضmٖmE) I$I$)( I$E)$! ۖaܸ-E) @mhE) I$I$e)E)꠭ I$ e)E)+ mӶmE)!` I$۸aE)^ TI$!bLD` %!^Id`& Őmn L$`%<\'! l&*!V!aZ*II$ P9, H!H'`$! I$ A***$*J *) _&/%)!j* E) I$I$E)!/ I$I$E)! E)  I$I$E)! 6E) hk6E) kt5E) `h E)/ lE) E) ۶dE) ( m۶hE)  I$E)! X8E)(4( E) *4 I$I$E)!* I$I$)( I$I$)( I$I e)E)J ۶moE) II$e)E)^U $I$e)E)^U I$I$)( I$I$e)E)U I$I$1 I$I$1 I$I$1 I$Ie)E) I$I e)E)* I$$e)E)^ IK$e)E) U II$e)E)W $I$e)E)U $Ie)E)U> I$I$e)E)U I$I$e)E)W׾  E)@ ۆm E) [% E)b I%[le)E)*  e)E)  H$$e)E)e) @ h2e)a@ Yle)  Ie)E)*-0e)`4IaE)  $e)E) Id%e)E)* lۖde)E)+ mR$e)E)pW۶mE)  M$6e)E) Imِe)E)* ɒ,ۆ%e)%)m$Ie)A yme)  Ie)E) mٖde)$!["m4mE)A ɖ-$e)E)  ٲ-[ e)E) I-Ke)E)8(["1$E)ap( [mE)A $I2,e)E)4LHE)A4 d $e)$! ae)%) l e)E) I@!$H$Pe) @e)%) I$me)E)w i$vf1E)] $9E)A$  mK6$e)E) M6%Ke)E) 6lۆde)E)( mI$e)E)* I- e)$! I$Xae)$! жmöE)` i$e)!  I9@1$!~vb۰ `e)!U~ u¶mE) ɖ$Zi! II&$! $QfE)+ /e)!  [` e)E)`  I$[2`e)! I$I$E) I$I$e)$! I$I$)( $I$e)E)W I$ $e)E)WP  I$I%E)!(6A[$E)!  E)@ P E)x I$P E)bx@I$I$A***-I$I$(I$I$ (I$I$I$I$I$I$ `I$I$AI$I$A?//I$I$ j&*I$I$I$I$@I$I$aI$I$"I$I$AI$I$A I$I$I$I$I$I$I$I$I$I$bI$I$a* I$I$aj I$I !b I%)- I$I$E)! P%)!( I$I$E)! I$I$E)! @ $ME)Ъ$˶MYE)vRI:E) $(֎E) X $!+ !E)! I$I$E)! 6`XeE)8 I$I$E)!  E)*b` E)! I$I$)( E)` I$I$E)! IA$e)E)/W  E) $ H$I$e)E)hU I$I$E)! E) I$I$)( I$I$1 ۶d6`E)A(4 I$I$e)E)*X II$e)E)jU I$I$e)E)U $I$e)E)WU I$I$)( I$I$)(  E) @` I I$e)$! I I$e)E)Ϫ cðmE)!@ $IE)! $Ie)E) I$Ie)E). I$Iae)E). I$e)E)* I $e)E)닀 Im,e)E) [2l[$e)E) K`$e)E)U aK$e)$! ɐ$e)$! %HM$e)$! ۀmI$e)E)UAr$IE) ֶI$1! @I$e)! II$e)! mI$e)$! -Qi$e)$! $e)$! ض ɒ$e)$! ۲$e)E)}()IE)@AIE)A IeX$e)E)  I$6 e)E)J$f e)b8˴m&IE) Ie)E) * ImI$e)E)6*Z 0E)!@MmE) [lme)E)  H  e)E)ˀ6i4,E)` !m6 E)A m&E)@dCE) ` $[I$e)! Mɔ$$e)E) eI`Je)%)  I$ 1"Цe) @! Il`e)E)Z I$lےe)E)PB$E)P i )$e)E) mҤhe)E)( )ٖl 6e)E) ۶ K-e)E) Hmِde)$! I$`e)!+ $I&e)$! foiE)  uҭ1E)_ DOe)!_C$ E) I&H$!  L1!"/ oE) ae)!  `CI$e)!  I$e)! I$I$E)! I$I$E)! I$A$e)$! I$I$e)E))~ K!I$e)$!* I$K!e)$! ۶%E)!xmIe)A ۶mölE) R,E)_xtR/!mѤI$(L6$3,òbɐd /X 4[-$IH  $!bT&P!AڭB#(B! I0%)aW/ %)) I$I$E)!   E)a( I$I$E)! E)!_  @ !mqYE) I`E) imE) 6E) I$IE)!/ II$E)! lnE) I$I$E)! @hE) << I$I$E)!* I$I$)( HE)!4 I$I$e)E)/z ۶!ضmE)@ ېm۶mE)! I$I$1  E)A` E) I$I$)(  E) ܖaۆ E) I$A$e)E)W II$e)E)^U I$I$e)E)*zU H$I$e)E)U I$I$)( I$ $e)E)U폮 mضmE)! I$I$1 H$ $e)E) hm۶E)!0 H I e)E)؊ A$Ie)E) I$Ie)E) I$ e)E)  I$ۖae)E) I@$e)E)  I %e)E)/ I I$e)E)*W Il$e)E)*U lY$e)$! l[%$e)$! d i$e)E)U l۶mE)@Prm۶e) @I$e)! @I$e)! mI$e)! ض I$e)E)U Km$e)$! ,X$e)$! ۶aI$e)$! $$!  E) E) I$I$E)! I$I$E)!/ $I$E)! $I$E)! ɐ I$E)! H%@E) Ö I$e)!J8HE)  me)! ٰ$6le)E)HMHe) lYle)E) @ٶ$e)E)  l2De)! K2dK%e)!۶i6$E)p Y$۲ae)E)#@J$I1E)@ I I$e)! %Ie)E) HI1" H $1" I @!h"E)a@mFIE) I$e)! / mK!$e)E) IB6 Ye)E)m,E)` e)$!ۆe`ME)  ɖ$H-e)$! I$e)$!  `C%e)E)- e)!~b߶E)!UW $@%)~j I6h! @E)! ]Uwe)!- XaIde)! $3(@e)` mۆmE) E)!@ ٶmضmE) `E) @6lME))۲mۆmE)b@ ٶ mE) I@$E)!@ dl۰mE)z I$[2lE)UWxI$I$I$I$AI$I$I$I$ $ I$I$AI$I$A I$I$I$I$I$I$I$I$I$I$@`I$I$!**I$I$bkI$I$ * I$I$aB I$I$aI$I$a`I$I$b I$I !}/ I  !  E)!/ I$I$E)!/ $E)` E)! `E)!U.I$Ih<1 _U-f1mE) 4E)* I$I$E)!+ @E)!R I$I$E)$! I$I$E)! E)! I$I$1 I$I$1 I$I$)( I$I$E)! $I$e)$! I$I$1 I$I$)( HE)a8 I$I$)( I$IE)$! 1I@E) II$e)E)*_U $I$e)E) ^U I$I$E)!* I$I$E)! 0 E)A I$I$)( I$I$)( ۶m۶E)(4 A$Ie)E) I$e)E) I$e)E)* IA$e)E)_  mE)$  ۆ%I$E)! ò%I$e)! $I$E)! $I$E)! I$I$E)! 4E)z $E) U $E)U $E) $%)A M$$! m$E) R$E) m$E)U I$%) I$%)U I$E)U I$E)U I$E)U m$%)U $E)U cgۖ$E)A8 $E) * nE) E)* I$I$E)! ɐ$I$E)! ِ$I$E)!  H$I$E)!B۶mE)!pimE) ҰmE)@Q[HhE)( ɶ%e)E) ²m4AE) @ aI[e)! 6,ɖ%e)E)  eۆ-$e)! ز`le)E) I%Ò,E)!ۤmAE)A  $Kle)E)cm۴E)  mI-$e)E) m4M@! $I$1" H1" ۂ؀ e)E)$I SE) $H%e) ( ɐ$e)E) mRe)E) I$$4e)E)+  e)A &"iE)!@m6IE) -I$e)$! J $e)E)  MB6$Xe) e)!U~ M2E) JI!  !@ %)!UaۉE)! U `KI$e)! I&%e)$!oiE)! I$I$E)! ˶mömE)$( I$I$e)E)?^  7۰mE) I$H e)E)%X ˶mmE)! I$ e)%) M]m۶E)!v  9E)WX ]=m,$!zz&n* I$M$.<:llt/$ $$!b IV !  0$!/ I$I$E)! I$I$E)! E)$( $E)!W'If1 _U-O'?f1e) @ME)*  E)!+ I$I$E)! ˰ ۶mE) I$I$E)!*  E)! p I$I$E)$! I$I$1 I$I$1 I$I$E)! I I$e)$! $I$e)E)WU I$I$)( I$I$E)! E) I$I$)( m۰mE)p I$@$E)! I$I$)( @$I$e)$! I$I$1 `E) ` I$I$E)! I$I$)( I$I$E)!@ ۶mۖE) I$I e)E)* I$$e)E) I@$e)E) 0bE)!@ ٶme) ۰dI$e)! H$I$E)!  H$I$E)! @$I$E)! I$I$E)!+ &E)W $E)U $E)*U $E)_ R$$!A I$%)A $E) k$E)W I$%)A I$$! I$%)U I$E)U I$E)U I$E)U $%) U ۶aܖ$E)U I"I%)U I %)A I$ $!!_ I$E)W $E)U $! VIHE)U  H+i%) @HNE) p  E)!kzU E)a (* I$I$E)!  %)!@аMmE)  ۶mE)A  0 ۖ$e)$!*˶IiE)Ӳi e)@mo#qe) `I$e)E)* Yde)E)(* YdYde)E)#"( I A$E)! ɐ$[de)E) Z" I$e)E) ޸ - $e)E) U@r-6e)c l˶le)E) @! [e)%) I&$ e)%)  I%e)E) Iʶ)$e)E)* MS6`Ke)E)$@˴ E) $ [ me)E)` I$e)E)U\ $I&e)E) U` YI$e)E)  MB6ےe)!?e)!U~ $E)!Uuwx ! $E)!U`{me)!  ɖ$e)!  I$de)E)UX I$I$1 I$I$)( HE)<< I$e)E)* I$Ie)!(< I$I$e)E)X I $e)E) I$Ie)E)** @ E)! I$X$!I$I$I$I$AI$I$A?I$I$bI$I$AT8I$I$ I$I$  I$I$"I$I$!I$I$A* I$I$I$I$I$I$I$I$aI$I_/ IɁL!A/&( $A$!* E) *& I$I$E)! 0E)!_e)!W%JI9 '1!U p.1 @E)!\ !E)!տ+ I$I$E)!/ I$I$E)! I$I$E)! I$I$E)!+ E),& I$I$E)! 9E) I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$)( I$I$)( l̰mE)A I$I$E)! I$I$E)! E) I$I$1 I$I$)( I$I$)( I$I$)( I$I$e)E); ̶m E) ۶-òmE)@ V mE) I$I$E)! H$I$E)! I$I$E)! @"E)!U $E) zU CӶE) ڶE)  IE)_ MZ=$!~_ !] m I$I$E)! I$I$E)! I$I$)( I$e)E)+ ۆm[eE)b $I$e)!* @$e)E)) $I$e)E)ʪ K-mE)^ I$M$%) I$I$A-/ I$I$I$I$I$I$( I$I$I$I$I$I$aI$I$ BI$I$I$I$jI$I$+ I H! H ! *  @!A` I$I$$!! $E)!_m۶mE)+JI$1!U%Xe)$I$1!XUU HE)!W+ I$I$E)! I$I$E)! I$I$E)! E)! I$I$E)$! I$I$E)$! I$I$1  E) @E)Ap I$I$E)! I$I$E)!* I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)! I$I$E)!* I$I$E)!* E)@ @ E)a  I$I e)E)_ I$ $e)E) I$A$e)$! A$I$E)! $I$E)! I$I$E)! &%)!U HBE)!W- )E) $0E)!UW k n! mm2!* -%) R%!b i:E)+* IE) U* E)-) I$I$E)! I$I$E)!* @%)A0 I$I$E)! I$@$E)! I$I$E)! I$I$E)! I$I$E)!۶A۶%E) p۶ ۔9E)yeڶmE)( I$$e)E) I$ې$E) I$@$E)$! Idې$e)E)) IlX$e)E) I2`ٖ$e)E) 6nKmE) $ I $e)$! I$A$e)$! I$I$E)! I$H$E)! I$I$E)! I$I$E)!( I$I$E)! I$I$E)! I$I$E)! E)!շ E)!շ E)!/ @E). E) 1Cm%) ` I$I$E)! E)!} E)! K$I$E)! 0m۲-E)a`$Ame)#0Ie)b` $ e)E) ˒mɂ-e)E) ٖ-de)E)( ۲m,e)E) I2,,e)!@۶Ie)A  I%e)E)p % %e)E)5'@e)  mm6@! [ ؆me)E) I$6`e)E) IRe)E)% L $e)E)(  M۶lIe)E) lCae)E) @e)E)p I$[ e)$!*Dl8E)   $K!$e)E) I& Ie)!|۶0e)b` $!! @ E)!Wz+ mMܶE)! Wx e)!0  M6%$e)E)\k I$K,E)! I$I$E) I$I$1 I$I$e)E)/m+-E) mٖmE) %ɒ$E)! I$@ e)E) 3`۰mE)x ɵE) Ä!$!!^U%  H!A$ I$I$E)! E)!_UJ'f1% eIx$1!pWJ`$I$1!pWU  E)! I$I$E)! I$I$E)! I$I$E)! E)!* I$I$E)$!* I$I$E)$!+* E)@ I$I$E)! ȀE)$( I$I$E)!* I$I$)( I$I$)( I$I$)( I$I$E)! I$I$E)!* I$I$E)! I$I$E)! I$I$1 HE)!< ̶mE)a I$I$e)E)U I$A$e)E) I$H$E)! H$I$E)! H$I$E)! 0E)!_ E)!U IE) U $E)!Wh 5E)ꯠ mh!" ]6I%)* Ҵ$! z%)!6( E) R 4E)r I$I$E)! I$IE)!/ I$I$E)!  E)b I$ $E)! I$I$E)! I$ $E)! I$I$E)! I$I$)(&hE)6apE)a$ ۖn۰mE) I$$e)E) I$$E)!< I$H$E)!( I $e)E) u ImK$e)E)bE) @ mmE) I$I$1 I$I$E)! E)! I$I$)( I$I$)( I$I$e)E):U I$I$)( I$I$)( ۶mölE)& I$I$)( E)H  E)  I$I$E)!  E) @ @E) E)!׿ E)!}e)! I۶-E)!uxK~۸ E)  LE)!x %)!6 ِdI$e)!  ؆mI$e)!4¸ E)` Y%ٶ e)!&HE) ($ mېde)E)* Xm[-e)E) I$I$)( )$I6e)E)z ɐ$e)E)  mۖ$e)E)hME)  dC Ie)%) K-e)E) )lBe)E)? lKI$e)E) ^ m6(Ye)E) 6lòme)E) X`6,e)E)p I$[2`e)E)V` I$e)$!*L@Ne)$`e)!^ n븭E)!-^ aae)!` $1!Wz @E)!/6lSE)P$9"E)$ I$I$E)! I$I$E)! I$I$1 cömE)!@iնP[E)vnɴmE)a I$He)E)ꨨ mm۶E) B I2&aE)a I$I$!I$I$I$I$I$I$I$I$aI$I$a***I$I$(I$I$ I$I@ Az* TH$!  L$!!  I$I$$!! 0$!eI$I1 _-eIG$1 -xJ$I$1!\UU HHE)!W+ I$I$E)!+ I$I$E)! I$I$E)! I$I$E)! I$I$E)! E)8& E)!*h I$I$E)!  I$I$E)!* I$I$E)! I$I$1  E) E)  I$I$E)! I$I$E)! E)  E)  I$I$1 I$I$)(  E)b@ $YIE) I I$E)!( I$I$E)! E)!~ "I%)hm۱1 c'f1z Ie) UIE) U @$m۶E) W &$! IE)!ժ I$I$E)! I$I$E)! I$I$E)!* @E) I$I$1 I$I$)( I$I$)( H$I$e)E)UW I$I$1 I$I$1  E)A` I$I$E)! E)@ pE) I$I$1 E) ` E)a I$I$)( I$I$)( E)@ I$I$E)! I@$e)E) I$I$e)E)^۶m۶ E)  I$I$)( I$I$)( I$I$)( E)! I$I$E)! I$I$)( I$I$)( A$I$e)E)U I$I$)( m۶m&E)!P I$I$e)E)[ I$I$E)! HE)!4 I$IE)! I$I$E)!ھ *%)!( @ E)!/u @E)!ުmm;E)! mmѺE) ߀ ۲1ض E)!Jm#)lE) %%) h -жmE)  `I$e)!  2 ے$e)$! ۔kHE) M/4E)` ɰmٖ%e)E)  m2`e)E) I$I$e)E)^ન ɐ$Ime)E) W I$e)E) ۆm e)E) $-le)a@mme) `e)E) ɰ$e)E) I$e)E)h mKe)E)  ِle)E)  ae)E)  I$ۖe)E)Wx )$I&e)$! @3A@re)` IB4He)'e) ^mm;E)! 5~O?&1!WZ-Ϗe)!kp lɒ$e)!ʭ#I!h6E) I$I$E)! * I$I$E)!. I$I$)( I$e)E) > )HE)$ecmE)  I$ e)E) I$I$e)E) I$ $E)! E)!^XeI$I1!WU%eIx$1!5xWex$I$1!pW  E) * I$I$E)! I$I$E)! I$I$E)! I$I$E)!  E)!*J E)  I$I$E)!>6 I$I$E)! I$I$E)!* I$I$E)! I$I$1 E) I$I$E)! I$I$E)!* I$I$E)! "!E) J E) I$I$1 I$I$)( PE)a8 I$I$E) I$I$E)! I$I$E)! $E)!W P"%)A *'O1!UMe)a&ae) Z -6۶E)!xի  I$%)Ap ME)* E)!* I$I$E)! I$I$E)! I$I$E)!  E) I$I$1 I$I$)( $I$e)E)U I$I$1 I$I$1 I$I$)(  HE)b,4 I$I$)( @E) 0 I$I$E)!. I$I$)( @ E) E)$ I$I$)( I$I$)( KmmE)( II$e)E) * IH$e)E)  E)@ ۶mlE) I$I$)( I$I E)!(  E)b@@ PE) HE) I$I$E)! I$I$E)$!  E)A I$I$E)!* ˶mömE)$ I$I$1 I$I$E)! I$I$)( I$I$)( II$e)E)/ I$I$)( I$I$E)! I$I$E) I$I$E)! @E)!_  E)!W6۶ce)!W MnIE) I-E)!x mmSE)!\ -E) ~ mnE) KmI$e)!+ 6ٖ$e)$!  mK6Ye)E) m$l0e)! ٰmee)E)  2[6,e)E)  I$ۖ e)E) M&e)E)+X l )$e)E) Mڴm[@! He) X e)E) I$e)E). $I&e)E)? mÒe)E)  aۆ e)E) [ ɰle)E)  I$ۂme)E)\ %I$e)E)%UX lC!e)$! d32 HE)@۶]ۆ1+.prɑ$1!x-.I$xr1!Wxa۱E) $- 2le)$! I$X2`e)! I$I$E)!* I$I$E)! I$I$e)E)+V K%I$e)E)\b. I$I2$e)E)-Vp @$e)! ò`E)`aڶ-E) @I$[rE)I$I$I$I$ I$I$aI$I$A  I$I!/ IJ$ ! R#)!`  $! I$I$$!!eɟ1 eIǂ$1 xeG$I$1!XU E)!+ I$I$E)!* I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$1 @@E) ` E)a& I$I$E)$!* I$I$E)$!*( I$I$1 I$I$1 I$I$E)! )E) I$I$E)$!* I$I$1 I$I$1 I$IE)$!( I$I$E)! I$I$E)! I$I$E)! I$I$E)! E)!~?I1!WU 71!_ x.IM$1!U xU.??I1z  E)* IE)!ի I$I$E)! I$I$E)! I$I$E)! E) I$I$1 I$I$1 I$I$1 I$I$E)$!* I$I$E)$! I$I$E)$! I$I$1 I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$E)$! I$I$E)$! I$I$E)! ( I$I$E)! I$I$E)$! I$I$E)$!* E)A& I$I$E)! I$I$E)! I$I$E)!* I$I$E)!* @E)@ PE)A8( I$I$1 E)! @E)! I$I$E)$!( E) - I$I$E)!*  E)!j E)  I$I$E)! E) J E) I$I$E)!* I$I$E)$! 9E) E)!pꠀ  E)a $E) I$I$E)!* I$I$E)! I$I$)( I$I$1 I$I$1 $E)p  E)` I$I$E)!  I$I$E)! I$I$E)! I$I$1 E)!  E) I$I$E) E)@ I$I$E)!( I$I$)( I$I$)( I$I$1 E)A  I$I$1  E)@@ E) I$I$E)!"  E) I$I$E)! ۶m6,E)` @HE)aP I$I$E)! I$I$)( I$I$)( E)$ I$I$)( I$I$E)! I$I$E)! I$I$E)!*  E)A@ E)!  E)@ I$I$E)! I$I$)( I$HE)! I$I$E)! J%)! VP@$!\  mf!* 04m$! ۰mۖpE)*  I$e)!  mC,e)E) il[e)E) mۖe)E)* K-[%e)E)  $dRe)E)  $YI$e)E)I$H$@!A$I$@! K,e)E)x!DR#)e)  mC%e)E)4IڄDe) @ e)E)`@ I$@ e)!  I$1E)U L&Xe) t(hE).hI$1!p5Wsf16`{E)   X  e)$! I$K$E)! * 0E)!^  E)!XV 0$! m!eI$I1 eIo$1!5 Xeh$I$1!`^UU  $!! 7- $!!/7< C$!!@\ ")!a@@ t%) ) %)! $ p%)  I$I$E)! I$I$E)! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)!꾫 I$I$E)! I$I$1 I$I$E)!* I$I$E)!* I$I$E)! 0E)!_ I$If1!_U-.I$1&1!U Ji8O$1!-^U.x$I$1!xWW !E)! I$I$E)!+ I$I$E)!* I$I$E)! E)!z I$I$E)! DE)( H %)b4( I$I$E)!꿪 @E)p I$I$E)! I$I$E)$! I$I$1 I$I$E)$! I$I$1 I$I$E)! I$I$E)!+ hP%)  (  E) @ E)( E)  I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$!* I$I$E)$! I$I$E)!( I$I$E)! I$I$E)$!  E)! E)` I$I$E)!( I$I$E)! I$I$E)! E) $ E) I$I$E)! I$I$E)! I$I$E)! E) )lE) E)! I$I$E)! I$I$E)! I$I$E)!( E) I$I$E) I$I$E)!* E) I$I$)( I$I$)( I$I$)( DE) E)! I$I$1  E)& I$I$E)! ۆecmE)A8 I$I$E)! I$I$E)! E) PE)  I$I$)( I$I$)( $E)!P I$I$)( I$I$E)! I$I$E)!+ I$I$E)!* I$I$E)!  E)a I$I$)( E) I$I$)( I$ E)$! I$I$E)!  E)ꪨ@ $!A  $I!x P I$!/ 0fE)  ÖdI$e)! e)!  Iۤ$ e)E) ( Kmۆ%e)E)( زm2 e)E) I$ e)E):  @I&e)E)p $Ie)E)  $I$@! e)E)[m`E) h[ $e)! lrc;4e)` 2lle)! I$e)! !I$e)E)\ 3ޖt1E)~dC ME)z.1O?1/.O'ǟ1 mI[E)! T ِde)!  I$@2`e)! I$I$E)!* I$I$1  $I$e)E) I$ْle)E)\B I$e)E) ) I$I e)E) II$e)E)j. mm[E)! I$I$1 I$I$E)$!* I$I$E)!* I$I$E)! I$I$E)! $!!.I$I1!}U JI$1!U-^. ) 'I$1!xW E)!X E)!+ I$I$E)! I$I$E)$!+ I$I$E)! E)! I$I$1 E) PE)A I$I$E)! %)& I$I$E)$! I$I$1 I$I$1 I$I$E)$! I$I$E)$! I$I$E)! I$I$E)!  E) %)  E) I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$! ( I$I$E)$!* I$I$E)$!*(* I$I$E)$! I$I$E)$!  E) pp I$I$E)!* E)$. I$I$E)!  I$I$E)! E)p  tE) I$I$E) I$I$E)! I$I$E)! E)p E)` $E)!U I$I$E)! I$I$E)! I$I$E)! $I$%)A*_ I$%)a  I$%)A $%)U $$!a  E) I$I$E)! I$I$E)!  E)  I$I$E)! I$I$E)! I$I$)( DE) I$I$1 I$I$1 @E)` m7fE) I$I$E)!x` I$I$E)! I$I$E)! E)A& I$I$E)! I$I$)( I$I$E)!0 E)  I$I$E)! I$I$)( E)@ E) @(E)A` I$I$E)! I$I$)( X`۶mE) I$ E)! p@E)) !!  KzM %!X ϔH$!% $ !  me)a  dK)e)$! i&E@! 0lۆ$e)E) X20le)E) I$dSe)E)@ YI$e)E)  m۶h@!@l؀me)!P K,e)E) OE)!4 me)E)  I$I1" H e)$! $MR&e)E) \` C)e)E)Smf1!^1!%W~ I$I$1" ۲mۆme)E) I$@e)$!* I$e)E)5W N6Ün1$!zO'e) ^s$1 xW|rf1`۶E)ʯ Y!DJE) I$I%e)$! * I$I$E)! I$I$)(ILE)A$( $H$e)E)IuP aaE)  I$I$e)E)+ I$ e)$! I$I$E)! I$I$E)! mve)!W5.I$IA81!W . Ihx$1!-xW.O'1 !$!!%  I$I$$!! I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)! `E)! I$I$E)!  %) I$I$E)$! I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! @$D%) I$I$E)$! I$I$E)$!ꪂ E)! I$I$E)$! I$I$E)$! $E)aP I$I$E)!* I$I$E)! I$I$E)! E)! E)( E)!z !E)! +h%)( I%)!U  E)!~  IE) @"5.%)P v'$!UW m$!  @۶c'$! Pvb%)WU 'O$%) $I$!z $I$%)U I$! jj JI$E)a }%)_ %) I@4%)!` I"5 E)U I$%)U I$%)UU I$}%)U $IH! I'$!  I$%)W I$$! & E)* E)! H E)* I$I$E)! I$I$E)! I$I$E)! I$I$)( E)b& @E)b@ E) I$I$E)! I$I$E)! ۶mۆeE) I$I$E)! I$I$)( E)@  E) I$I$)( I$I$E)! I$I$E)! E)  E)A@ nm۶E)! Ҷm۶E)!@ ٶmض E) c۶ E)! M(E)Wz ה|J$!  It$!  $!  ۶E)A `C%e)! 䶑+e)a($ ۰m $e)E)  X2`۰%e)E) I$lҶe)E)  $I e)E) > m6mS@! @! I%`e)E)> dI&e)E)/ m۶he)E) ضmېme)E) I%۲me)E)WP1ۨmE)A` vφ1E) @ E)kӶ-YE)` $! iZD! .I1/ Jq?1A `.$Ie)A  !A 4$!b $ $!*  A$!! I$I$$!!  I$I$$!!  ! I$I$$!!? I$I$e) I$I$e) I$I$E)!  $$!Ap %) I$I$E)! $E)P E) @%)Ap  E)/;C1!j. Iq$1!-yW.h$I$f1!WuU !$!!X $! $!A I$I$$!! I$I$$! I$I$e) I$I$E)! I$I$E)! I$I$E)! %)!& H %) $( I$I$E)$! I$I$E)! 4E)br I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)$! 4E) `  E)b %)b I$I$E)!* E) E)!u E)!{- yf1!^U $ E)!^h HI E) `B$!( HE)!]U HE)!W $E) *^* E)!}+ E)!ՠ hE)  E)! XE) E)!ՠ* I$I$E)! I$I$E)! I$I$E)! I$I$E) I$I$E) પ I$I$E)! I$I$E)! `E) W IE) U j%)~ %) IE)W IiE)! I$%)U I$%)UW I$R%)U i$I!* $I"5%)*U  I$%)U_ I$$!z $$!  E) @E)` E)!" I$I$E)! I$I$E)!* I$I$E)! @$E) I$I$1  E)A I$I$)( I$I$E)!  E)b@ E) I$I$)( I$I$1  E)A& I$I$)( I$I$)( I$I$E)!* ЁE)( I$I$)(  E)A $I$e)E)  7l۶mE)$ I$I E)! P@E)z $P$! II$! V  J$!  m.E)!j$e))$m;4e)b` ۖmI6$e)E)+ ؖle)E)  I%le)E)>  I$e)E)? %Ie)%) @! X,e)E) !M6e)E)/ me)E) ۶mۆde)E)( H e)E)X I$M&e)$! cve)a mMj1y?f1 -^z>/f1/ P E)  I$e)!? I$`Be)$! E) . {qömE)  $I$e)E)K n6`E)A  ۰ E) & I$I$E)! @ I$E)!$I$!E) .9&I$1! VUc۶E) pW $!!/ @$! I$I$$!! I$I$$! I$I$1 I$I$$! I$I$E)! I$I$E)!  E)*@ E) 0%) I$I$E)$! I$I$E)! E)6 I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)$! I$I$E)$!* X$%)!4 @ %) I$I$E)! (E)r E)!{ E)!] m۶ME)  ?f1!_ dE) $ AE) IE)!ի  E)!u  E)! E)!U $E)!^W E)! M E) I$I$E)!} E) E)! I$I$E)! I$I$E)! I$I$E)! I$I$E) I$I$E)! I$I$E)! I$I$E)! IE) U? mE) I$I$e)$!( I$I$)( I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$E)! ۖl̶aE)a' I$I$E)!ꪪ @E) M%) I5%)U I$ %)W $M%)  I$%)A y$%)U @LE) %)   I$I$E)! HF@%)A@  E) I$I$1 I$I$1 @E)44 A$I$e)E)m I$I$E)! I$I e)$! I$I$E)! I$I$)( I$I$)( I$I$E)! E) I$I$E)! * I$I$E)!* I$I$)( I$I$)( $I$e)E)U} I $e)$! I$IE)! cۆqE)~ꪸ I$P!I$I$a<  $E) we)! je)A0ђ0Ie)`m ME) $ m$ E)!P )M&e)E)>x $I)e)E)5"e)b@XH,Re) 8#0e)``j@re)  I$I&1" òmme)E)@ ۰mXuE)P @"I%)Ap* HJ%!,l۶me)-.O/61 J'I$1~_ hӤi!+  $!  @$%!  @"I!` $!!* !& $!& I$I$$!!/ h $!8 I$I$e) I$I$$!! ! I!A @$!p I$I$e) $%) zW m۶-!  0$E)A* I$ɐ%e)!  I5N$1!-^Uh뷉e)a &M! $!( $!! I$I$$!! I$I$$!!* I$I$$!!( I$I$$!! $$! I$I$$!! I$I$E)! I$I$E)!  %) & I$I$E)! I$I$E)! I$I$E)! E)p( ) %)  4%) ` I$I$E)! I$I$E)! I$I$E)! I$I$E)! E)!_m۶ce)!/mۏbf1 I$$1!_~ I{$1!U UOf1!+U?1!W E)!x @%)!h E) E) I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$)( I$I$)( I$I$)( I$I$)( 6lcE) I$I$)( I$I e)$! E) I$$e)E)ի A$  e)E)p I$I$)( I$H$E)$! I$@$E)! I$I$)( I$I$e)$! I$I$e)$! I$I$E) I$I$E)! I$I$E)! ۶%[ E)aذ I$I$E)! E)!~ j%)_ I%)U I$%) ɔ$%)U dI%!A~  I$%)  $!  %)A(( I$I$E)!  %)!` m6nE)   I$I$1 I$I$1  E)`` E)  I$I$E)! I$Ie)$!* I$I$)( I$I$E)!* I$I$1 I$I$)( E) I$I$E)!* I$I$1 I$I$E)! I$I$)( I$I$)( II$e)E) - I$@$E)! [m6,E)z@ M&$!W\I$I$Aj I$$!b E) 2@e)@mdJe)m@lE)A p  I$e)E)BJmm[IE) I$e)E)%^ MM6@! 9e)! K$e)E)z9e)< m۶`e)E) I$I$1" I%-e)!P )IE)a  s6o1E)^}j E)DIe)A %snE)/ -mE) @ mXe) I$I$e)$! * I$I$E)! I$I$)(& E) ۖmۆmE) H$$e)E)  ۖlE)! Ӷh۶E)!Wh i1E) I$I$$!!* I$I$$!!* I$I$$!! ( I$I$$!! I$I$$!!/ $! I$I$E)! I$I$E)! (E)!`  E) I$I$E)! I$I$E)! I$I$E)! h%)T I$I$E)! %)A(4 I$I$1 I$I$E)! I$I$E)! I$I$E)! E)!zm۶be)~?A1!U- I$1!W_ I2I$1!1! zuf1!U I$I$E)!ֿ J%)A  E)* ` I$I$E)! I$I$E)! I$I$E)!*( I$I$E)! I$I$E)!( I$I$)( I$I$)( I$I$)( I$I$)( I$I$)( ۶m68E)` I$I$e)E)~ I$I$)( ۶m1E)pp I$I$e)E)U+ Ie)E)+* H$I$e)E)^ I$ $e)E) I$I$E)!8 huE)( ۶ ض-E)@`yܖIE)  I$A$e)E)b H$I$e)E)7 I$I$)( I A$e)E)b I$I$)( I$I$)( I$I$)( I$I$e)E)_ ۶d#7lE)a(4( %)  I$I$E)! I$I$E)!ꪪ PE)^ I%) ɔ$%)U OOH$!U P%)""W F$!  E)(6 I$I$E)! I$I$E)! I$I$1 I$I$1 I$I$1 A$I$e)E)bUU I$I$E)! I$I$E)! $I$e)$!* E)A I$I$)( I$I$)( I$I$E)!* I$I$E)! I$I$E)! I$I$)( $I$e)E) p$AE)< mӶh[E)!~ IۆmE) I$P $! I$! @#$! I$e)! @aېe)$! ɒl`e)E) $e)E) * I$ e)E) *  I%e)E)` ۶mÖ e)E)  H$I$1" X2 ۶me)E) !I6e)E)/@m=e) `  0$! k4!.{1_/ .ya1 $I$e) I!+ $$!!`\ $ A$!!XW RH! 4( I$I$$!!* $$!!* \ J!!$ $!!&  $! ! I$I$$!!/  !@ $! ( I$I$$!! 5$! =4!`Pj!_ rH I!% <! ` 4II%)b t$!A' i$! I$I$$!!  !a I$I$$!! (H!A`  ! $! I$I$e) @$!P I$I$$!! I$I$$!!/ I$I$$!!/ I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! $!!  E)۱mf1 JI$ 1!U/J?f1b jJ ϟ1 . $I$1!W} $ E) I$I$E)!* I$I$E)! I$I$E)! I$I$E)! I$I$E)! E)@ E)  E)b $E)!P I$I$)( @$E) I$I$)( l6E) 6,òmE)@ I$A$E)! ۶mò-E)@ nmE)  I$I$e)E)VV*W )h۶E) I$e)E)U۶mE)(4 I$e)E)U I$e)E) ؆mXE)AР ۶aذfE)< ۲mذmE)@ ضmE) C ٶmmE) 2PE)A@($ ٶmlE) $I$e)E)jw I$I$)( II$e)E)/+Y I$I$1 I$I$1 I$I$)( I$Ie)E)- 6,۾ E) ` H%)a 8 I$I$E)! I$I$E)! E) O@%)U I'%)UW E)U_  I'$! *%)} (E)z I$I$E)!+ I$I$E)! I$I$E)! I$I$1 I$I$1 $I$e)E)UUU I$I$E)!( I$I$E)! I$I$E)!* xm۶mE)b I$I$)( I$I$)( I$I$E)! I$I$E)!* I$I$E)!( I$I$)( I$I$)( 2l۶mE)@ I$AE)! KmlE)ު I& $!bI$I$! I$$!b mnE)   ɖ$e)!/ I$6e)%) I%ۆ$e)E) @I$e)E)* ɐ$[me)E) 6l de)E) 7 $I$1"  ۶me)E) I$mҶe)E)/&`$Ke)A ۶mle)E) X2$۶me)  I$K-e)$! ( [ e)E) Xe)E) > &{E) $`1ɄE) / S $e)!  I$LB0e)$!* I$I$E)!* I$I$1  [ I$e)E)P+ I$I$e)$! m m"E)! @ $A$E) I$A$E)! E)!~z J !a(4  d! $!! I$I$e) $!A& I$I$$!! I$I$$!! I$I$$!! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! %)a( d@%)*J I$I1!w J I$9'1! xJ'f1Z.1 .1z HE)!֫ I$I$E)! I$I$E)! I$I$E)$! I$I$E)! I$I$1 H E)( E)A` E)  E) & I$I$1 *E)! , ۸-۶E)` I$I$E)!  HE)( I$I$)( $HE)Ap( I$$e)$!* mӶ-ڶe)!z** I$e)E)V !I$e)!A۶mE) I$e)E)U I$e)E)* ۶m̰lE)  6lmE) [qmE)  E)j $ I$ E)!@ ۶mܐmE) I$H$e)E)5 E)@ I$I$E)$! II$e)E)U I I$e)E)V]_ I$ $e)E)WU I$I$)( I$I$)( I$I$e)E)[X ۶aۺ-E)` @E)A ۆm۶lE) I$I$)( I$I$E)$! I$I$E)  E)Bj %)a j @$!ހ  I %)j` $! I$IE)!7 I$I$E)!+ <@E)z* I$I$E)! I$I$)( I$I$1 I$I$1 I$I$E)!" I$I$E)!* I$I$e)$!* I$I$E)!* I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)!*  E)@ iѶm۶E)!  I$e)E)+ ۲mۆmE)h ÍۆmE)a I$P@!Aj I$! DE)  ېlI$e)!/ lJ$e)E) M˰ME) 20e)A` I$$e)$! " aI$e)E)5^ ۶m$e)!@ @uE) X&! X6I %)?ɝ.@1- .>$1`^ jN4 !+  $!+  `$! Ld!d I$I$$!! I$I$$!! H$!!p% $!!- I$I$$!! $!!@ $!!% I$I$$!! I$I$$!! ( @!@  H$! mk.!@$!pX!ؒd!2 j i!a  !* I$I$$!! I$I$$!! I$I$$!!  A"!@ $ ! $!!  I$I$$!! I$I$$!! $!!`W   P!  I$I$$!! I$I$$!! I$I$$!! I$I$$!!* 2$!!V `$! hD! H %)a6.* I$If1!W.f1*J ILI$1!-^J $I$1!_ I$I$E)!^ I$I$E)! I$I$E)! I$I$E)$!* I$I$E)$!* DE) I$I$1 I$I$1 I$I$1  E)a I$I$E)!(( E)!(4(  E)@ PE)  I$I$E)! I$I$E)! I$I$E)!* I$I$1 I$I$)(  E) p ۶ 2,E)A@ mۢmE)! I$Ie)E)W// I$I$e)E)* Ilېde)E) * Ie)E) Im-e)E) I$$e)E)ꀪ I$I e)E)﫪 @E)! I$I$e)E)U q6jE)i@vE)) h,E) /e)  I$$Se)$! I$I$E)!* I$I$1 I$e)E)K/ ۶mضdE)a4 I$Ie)E)% I$I$1 H$Ie)E)Tz? I$I$E)! I$I$E)! $!!` @@"!` @$! I$I$$!!/ I$I$$!!* I$I$$!! I$I$$!! $$!  @$!!*.5 " $!A ٖm۶ e)a  I$,1!-J1 J 9A'I$1! W. p$I$1!U I$I$E)!׫* I$I$E)! I$I$E)! I$I$E)$! I$I$1 E) I$I$1 I$I$1  E)A@ E) I$I$E)$! E)! 6۶%E) I$I$E)$!  A$I$e)$! I$I$E)! I$I$1 I$I$1 I$I$E)! m۶mE)!4 ۶mcdE)b8 I$I$)( I$A e)E) I$ $e)E)  Imme)E) Ie)E) I $e)E) I$@$e)E) I$I$e)$! E) I$I$)( Mۢ-ڶE)!4 I$I$E)! I$I$1 $I$e)E) I$H$e)E)+ $I$e)E)Z II$E)! I$e)E) * I$He)E)~(* I$H$e)E)W㨸 I$Ie)E)w* I$Ie)E)U/ $I$e)E)U I$I$e)E)Ww I$ $E)! I$Ie)E)>z+ $I e)E) I$I$1 I$I$)( @E)  I$I$E)$! I$I$E)! I$I$E)! ۰mc8fE)! I$1!*. I:'Ć1$!^ I$p$1! I$I$E)!+ I$I$E)! I$I$E)!/ I$I$)( I$I$)( I$I$)( I$I$E)! I$I$E)!* I$I$E)! I$I$)( I$I$)( I$I$E)! ۶mXeE)A I$I$E)! I$I$)( I$I$)( cmmE)( I$X-e)! P`E)zꨀ I$h!  I$!/ ۰mܖpE)* I$e)!  I,6e)E) XudE) ' =o=;e)!X 0E)!|WUU mM2!܏}e)7 vap:e) `]ۆ1 mt-P!/  $$! $I$!* !@d!d I$I$e) $$!!pV @$!!ܵ I$I$$!! * I$I$$!! $!!*p $!!5- I$I$$!!* I$I$$!!*  $!!z k$! AP>!_P_6M$ v *iӄ$H!}ׯ l$!A  i! 9! I$I$$!!* $!! x xD !A( @$!!^% I$I$$!! ( I$I$$!!* I$I$$!!( H$!!' $!!x/ $!! I$I$$!! I$I$$!!પ 0! @P%!Aи $I! $ ZdW!* @E)!W55  E)B$aIe) H$I$e)! H%)! (  E) ` I$I$E)!* I$I$E)$!* 8E)! & I$I$E)$! I$I$E)$! I$I$E)$! @ D%) I$I$E)! I$I$E)! E) I$I$E)! I$I$E)! I$I$1 I$I$E)! ކm۲E) 0E) I$I$)( I$I$)( E)!؀ I$I$E)! I$I$E)! ۖl6lE)A I$A$e)E)U I$$e)$! I$ $e)E) I$$e)E) I$I$)( I$ $e)E) I$$e)E) I$I$)( I$A$E)! I$A$e)E)xU mm۶E)!p I$H$e)E) I$I$E)! I$I$e)E)/^ H$A e)E)bB $I$e)E) H$I$e)E)} H$I$E)$! H$A$e)E)蠢 IA$e)E)w, I$I$)( I$I$e)E)U I$I$e)E)_ H I$e)E)X]z I$I$E)! I$H$e)E)﫨 I$Ie)E): I$I$1 I$I$)(  E)@ l۶mE) I$I$E)! I$I$E)!  %)b@D!e) Nm$f1$! . I$&1$!U~ I$I$E)! I$I$E)! I$I$E)! I$I$)( I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)!* I$I$)( I$I$)( I$I$)( @E)@ E)a I$I$E)! I$I$)( ò۶mE)@ m`e)! mۆmE)j I$! $I$!  E)* !I$e)! / X` e)E) B" &e)A XM6He)A $E)Ap ۖaI$e)E)5^ ۲m`e)E) I$1"۠m(-E)@$@me) I$ۂme)E)* @$I$e)E)`* I$K$e)E)%\x @[)e)E)5CۛE) nkE)/ EZE)-vnE) / lB2!e)$! I$I$e)$! * I$I$E)!a۶mE)! I$A e)E)Xb II$e)E)+ I$I$e)E) I I$e)E)ZK I$I$e)!ꪠ @E)!W I$I$$!! I$I$$!!* I$I$$!!* $! HIL!!& $I! ۴!* // E)! @%)A* e)!x E)!\ P %)! E)! I$I$E)$!*   E)a@ E) I$I$E)$! I$I$E)$! I$I$E)$!*  %)A I$I$E)!" I$I$E)! `E)! I$I$E)! I$I$E)! I$I$1 @E) @E) I$I$)( I$I$)( I$I$)( E) ' I$I$)( 60þ E)` I$I$E)! I$e)$! I$@$e)$! I$$e)E) I$$e)E) I$I$)( I$$e)E) I$@$e)E) I$I$E)! IH$E)$! I$I$E)! I$H$E)$! I$I$E)!* I$I$E)!( I$I$E)! ۰m۲E)` @۶i۶E)! E)pH$ɔE)(4 I$ $E)! I$@$e)$! ЄE)b$ I$I$E)! ذm۲mE)b@ mٶmE) I I$e)E)^ I$I$)( ۰[mE)P H$I$e)E)U I$I$)( I$I$1 I$I$e)E)+ I$I$E)!,, c۶aE)!p I$I$E)!۶1mE)A` I$I$E)!  %)a@Ҷ 'gE)+ I&%e)!+ I$IB0e)! E)* I$I$E)!/ I$I$E)! I$I$E)! . I$I$1 ض -E) j ۶mü-E)B E) I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$e)E)-U [mɐ$e)E)` I$@e)! z(E)^ꪠ I$K,! I$! mnE) \&E)( LE)A =I!pX_qAe)5 '6f1`~ NIE)x ٴ!+  `$! L!!  I$I$d!d  @!@@ H ! e) I$I$$!! $!!*z $I$!!`\խ $!!% I$I$$!! I$I$$!!  `@&! 6r=&!l$!^p$IH/I@ * 4I4 ! i!+ I$I$$!!+  ! @! H$!!xW-  PD!  I$I$$!! @$$!!ZZ 0$!!^ @! H$!!- I$I$$!! I$I$$!!* I$I$$!! $$! 5m6!`!'m!J$ !( ۴M !**?/ I$I$$!!/ E)! I$I$E)! @E)*@ E)A @%)@ E) I$I$1 I$I$E)!+" I$I$E)! I$I$E)!( I$I$E)$!* I$I$E)!* I$I$1 I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)! I$I$E)! DE) I$I$E)!* I$I$E)! I$I$E)! I$I$E)!* I$I$E)! HE)<4 I$I$)( I$I$E)! E)4( I$I$)( @E)@  E)A I$I$)( I I$e)E)_ I$I$E)! I$A$E)!J nmE)  I$I$E)! I$I$E)! I$I$1 I$I$E)!. mFnE)A I$I$E)! ٰ ۶E)  I$I$E)$! I$ $E)! ,E)p ضmٶmE)  $Ie)E)/> m6nE)A I$I$1 I$I$e)E)U I$I$E)! mٶmE) I I$e)E)U I$H$e)E) I$I e)E) A$I$E)! I$I$)( m۰mE)! I$ $E)! 9%)A I$I$E)!+ m 4E)! e)! I$de)! ۶mۆ1e)*` E)!* I$I$E)!/ I$I$E)! I$I$1 m۶eE) ۶mlE) E)b I$I$E)!* I$I$1 I$I$)( I$I$E)!* I$I$E)!* I$I$E)! I$I$1 I$e)E) 5_ I%ؒme)! mۆmE)z I$@! DI$$!b ۰mߖpE) *C$Ee)` * <E) $ K%I%e)E)* II$e)E)j* c6`E)8I E) ۲ ۶me)! A e)E) I%e)E)/p [mÖ`e)E)  I$e)E) I$I$)( !I$e)E) 5W MB&`[e)!` mE)/ k E)/  tE) / @Ӓ e)! ۶m,E)@ E)  I$I$1 6lE)!( $I$e)E) I$Ie)E) I I$e)%)* I$I$E)!⊀  E)!p H$! [<2!@c!²@R j H!! 0!  @$!! I$I$E)! I$I$E)! D@%)A I$I$E)$! H%) I$I$E)$! I$I$E)$!" I$I$E)! I$I$E)! I$I$E)$! I$I$E)$!* I$I$E)!/ I$I$1 I$I$1 I$I$1 I$I$1 I$I$1 I$I$E)! I$I$E)!* I$I$E)!* E) I$I$E)$! I$I$E)!" I$I$E)!* I$I$E)! E)!jJ E)b I$I$E)! möcE)! @  E) I$I$)( @E) I$I$)( I$I$)( I$I$E)$! I$I$E)$!* @$E)!pp ۰m۲E)@ ۶amE)+ I$I$E)!( I$I$E)! I$ $e)$! I$I$)( I$I$)( I$I$)( E)@ I$I$E)! m۶cE)! @ mٶmE)  k6fE)A8 H I$e)E)/U I$@$e)E) I$H e)E) I$I$1 I$I$1 I$I$1 I$H$e)E) $I e)E) U{ HI$e)E)UZ E)0 I$H$e)E)| A$I$e)E)b I$I$)( I$I$E) I$I$E)! I$I$E)! $I$e)!  LI$e)!/ I$ e)! I$I$e)! I$I$E)!/ I$I$E)!/  E) I$I$E)! I$I$)( I$I$E)!* I$I$)( I$I$E)! $,IE) I$I$E)! I$I$E)! E)!@B @ E)  ۲-E)A@{e) o۳9e)!@ O%! ID A!/? @$!@ \ *e) 5ue)`\ M4 ! )P!  &I! $$P@!A` d!d $d!d @„!E) I$I$d!d I$I$$!!* d!d  I E) e) I$I$$!!/ 5$! m5! O' A B$I$Iɕ *  9UI$ !/ M!* @$$!!)X_ @@d!d  d!d $d!d `@!A @  !A I$I$$!!  $$!!V $ $!!W $!!  ! I$I$e) 0$! H$! жm8:!h$!Wh'I!!ڪM)[!WU[! 1m۶! I$!* I$I$E)! I$I$E)! %)@ 0%) E) %) I$I$E)$! I$I$E)! @E) I$I$1 I$I$1 I$I$1  E) I$I$E)! XE)A I$I$E)!" I$I$E)$!( I$I$E)! @$%)A I$I$1 I$I$1 @E) $E)X I$I$E)!  E)@ E) I$I$E)! ۶m۲E)@ E) I$I$)( ۶mۆeE)ø%۶ME)` $I$e)$! $Ie)E)U H$I$e)E) E) I$I$E)! I$I$)( I$I$)( ö ̶lE)& I$I$)( I$I$E)! I$I$e)$! I$I$)( I$I$)( I$I$)( I$I$)( E). I$I$E)! m mE)(4 ۰m۲-E)A@ 6mE) I$$e)E)U I$Ie)E) I$I$1 I$I$1 I$I$1 I$A$e)E)]c I$Ie)E)W+ @I$e)E)-U 86lE)!@ ۖmݶE) $I$e)E) I$I$)( I$I$)( I$I$E)! I$I$E)! I$I$E)!/e) `  I&!$e)!/ I$I,e)! I$I$E)! I$I$E)!+ hE)  E)  I$I$1 I$I$E)! I$I$)( I$I$E)!* ۶eaE)0 I$I$)( I$I$e)$! I$I$E)!* E),$, I$I$16AlE) I$ے E)! Pg%)z I$z"(! I$! MnE)  @C)e)   I$`e)%) $Ae)E) * I$A$E)$! C$I$E)! ٖmle)E) e)E) I$[-e)E)'` lɐde)$!  I$[-e)E) ۆe6`E) dI$e)E) 5WZ l&%e)$! kۆmE) <`qE)' E) -2i[E)A@!I)e)! E)! - I$I$)( I I$e)E)Z* $I$E)!Zu6IE)  $e)E)/Z mӶh۶E)!B @ E)X`I$I ɛl!vl ! i۶m7!*  E)! I$I$1 I$I$E)! PE)  E)!B E) *E)A  I$I$E)!* I$I$E)$! E) I$I$1 I$I$1 E)A` E)! I$I$E)! E)A I$I$E)! I$I$E)$! I$I$E)!* E) & I$I$1 I$I$1  E) E)' I$I$1 E) I$I$E)! I$I$E)! ۶m[eE)a I$I$e)$! I$I$)( ۰mnE) x6`E)$ $I$e)E)U $I$e)E) I$I$1 ۶mnE) I$I$E)! I$I$)( I$1!ժ . O$O1!~. I$I҆1! mN E)! ضm'E)!\ m"mE)!@[ ۖmmE)  I$I$E)!( I$I$)( I$I$)( I$I$)( E)a4 I$I$1 I$I e)E){ I$I$E)! I$I$E)!* I$I$E)! II$e)$!* I$$e)%) I$IE)! I$e)E) 6`E) ($ I$I$e)E)ꪢ I$I$)( I$I$)( I$ $e)E) I$I e)E)ꪊ I$I$)( I$I$)( @ E) I$H$E)! I$I$E)! !I$e)!  I$$e)!/ I$I,e)! $! @ E)!  E)@ E)!,$ I$I$1 I$I$E)! I$I$E)!* I$I$E)! ۶mbE) I$I$E)! I$I$E)!* E) I$I$1cmE)!@ IXE)p m8;! K> !_-  0E)% %MvE)b\ !gn0!  $! `$I!* !H$I!  d!d HE)  Ad!d I$I$d!d 0d!d ,$!!@ ! !! $!!/x hҤ!$A>!_M&I$I$/ yL A*6, &I !   ! $d!d  d!d ж!! !& I$I$d!d I$I$$!!.?+ $$!! W $ $!!`V5 $!!5 I$I$$!! I$I$e) l! $I$! $ID2!HM$!d$I*I'$!U oEI.!!jJ $I!  I$! I$I$$! * P%) ( I$I$1 I$I$E)!  E)J %) H%)b6 I$I$1 I$I$1 I$I$1 I$I$E)$! I$I$E)! I$I$E)!* I$I$E)! I$I$E)$! I$I$E)!j* )E)  I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! @E)p I$IE)!/  I$If1!J I$s1E)UJ I$I1$!ժ. I$&ֆ1E)u e I$$1!e I$$1!JI1J I$1!J I$1$!UJ I$$1!Ue I$$1!eO1AJ I$$1$!. I$1$! $`[e)!W. y$R1$!j. I$I1! f1!_ II$E)! E)! ۶dmE)A 4( I$I$E)!* I$I$)( I$I$)( I$I$)( (E)` I$I$E)  I$Ie)E) I$I$)( I$I$E)!* I$I$)( I$I$E)! I$I$e)$! I$HE)! I$I$E)!  <0E)` I$I E)$! I$I$)( I$I$)( I$I$)( I$@e)E) - I$I$e)E) I$I$)( E)@ ۶mmE)  I$I$E)! ɐ$I$E)! H`I$e)! I$Xe)! I$I$E)!/  E)b I$I$E)! (@ E)`$ I$I$E)! I$I$E)! I$I$E)!* I$I$)( E)A I$I$)( I$I$E)!*  E)! h E)  ɐ$I$e)E) U{lME)\ٶm&iE) K=E)z I$I&!/  @)DE)*$C)GE)  L6$e)E) K,I%e)E)* @ I$e)E)`* $H e)E) X ۆmٖle)E) I$I$1" I$e)E)W` lI$e)E)  Kele)E)  ò-lE)@m۲E)@HpRe)!C E)x 8`E)믞  X6E)/-ڪmE) mE) , I$I$E)  ( I$I$)(C۴mE)` $H$E)! ( [maE) I$I$)( I$H$e)!ꨠ Hxt! $ I!* !$! I$I$E)! %)! I$I$1 I$I$E)! @$%)A E)h E)a I$I$1 I$I$1 I$I$1 I$I$E)$!" I$I$E)! I$I$E)! I$I$E)$! I$I$E)$!* @ E) p@  0E),6 I$I$E)$! I$I$E)$! I$I$E)!* I$I$E)!* I$I$E)! *( I$I$E)!* . I$I$E)! E)a& I$I e)$! I$I f1!J I$1$!^J I$1$!*J I$&1E)__e I$$1!e'1zzJ1J I$1$!WJ I$1$!UJ I$$1!Ue I$Ð$1!e1AJ I$ $1$! I$@߆1!~ I$I$E)!- I$I$E)!* I$I$E)! /0۶-E)@ f1!^ e)! m(,ܲmE)a@j E)* mhE)!^ I$I$E)!  E)!* +۶E)| pE)* E)a( I$I$)( I$I$)( I$I$)( I$I$1 I$I$E)! I$I$)( I$e)$!*  I2 I$e)$!( E) I$I$1  E)@ E)!= I$I$)( HI$e)E) U~ I$$E)! mۖaE) I$Ie)E). E)A,$ I$I$E)! I$I$E)!@dBE)!pmae)!p  I$H e)! E)!K^ E) I$I$1 I$I$)( I$I$1 I$I$E)! m۶mE) I$I$1 I$I$)( @ E) E)! ` HIE) $Z!b\@ ~$4!{ ЫmV!ֿ   !  0`$! II$!* $I"5!!` IH!a4. $ ! !@d!d  Id!d Ä!( H!E) I d!d $ d!d 5! M5!(5I$ aH$IpIl@`/ !M ! 4H!/ $H$d!d 6l۶!< $A $! `!!* !  @! TI! & Ad!d !@d!d Hd!d Hd!d &! $I$!@@&!>I$!bI$I!I9 m۶! I!* $!!* $!! I$I$E)! I$I$E)! I$I$E)! I$I$E)!꿫 I$I$1 I$I$1 I$I$E)! I$I$E)$!* I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)$! I$I$E)$!* %)  I$I$E)$!* I$I$E)$! *  E) E). 6E) E) IE)!U H%)A E)!U E)! I$I$E)! /$,IE)A&  Ʉ$IE)b  Ò$I$E)! I$I$E)! I$I$E)! $%)` I$I$E)!+ E) I$I$E)!* I$I$E)! I$I$E)!@ E) E)*4 I E) 7( I$I$E)!z E)!* I$I$E)! I$I$E)! :m۶e)!^*m۴f1 ؒ$I$e)!/me)!ת  E)ǧ ݖ6rE) E)! }* @E)!_ ۲ ۶mE)`*  E)b&, (E) ` Em۶E)!" I$I$1 I$I$)( I$I$1 I$I$)( I$I$E)! $I$e)$! @I$e)E)PU]ۆeڶmE) I$I$e)E) I$Ie)E)* ۶m۰lE) I$I$)( $I$e)E)W I$ $e)E) u ۶aضdE)b H$I$e)E)h ۶m30E)`` I$I$E)! I$I$E)! E)!-oYJ E)  e)!  I$I$E)!p E)$* I$I$E)! I$I$1 I$I$1 I$I$)( cm6lE) I$I$E)! I$I$)( E)@ ٶmضmE) E)A I$I$1 I$e)E)%] K%Ö e)! mۆmE)z I$@! I$!a ^lnE)  DC)e)! IҤ`e)%)( Ae)E) *" I$He)E)^*4A[%e)A ˶d,e)! e)E)  dK$e)$! kHjE) I e)E)* I$I e)E)V\j I$e)E)% ːe)A 0E)z WVA%)%$AR%E) - H$ْle)! I$I$E)$! * I$I$)( $I$e)E)K I$H$E)!( I$I$1 E) ˶öaE) I$I$E)! I$I$E)! I$I$E)! I$I$E)!꿪 I$I$E)! I$I$E)! I$I$E)! I$I$E)$!* I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$E)$!* I$I$E)$!* I$I$E)$! E)a I$I$E)$! * E)`  E)h hE) &E) ؖnE)( ,R#%)!` IE)* E)!U I$I$E)!  E)A@$IE)o۶mE)A) H$I$E)! I$I$E)! I$I$E)! %) 4 I$I$E)!* E) I$I$E)! I$I$E)! @DE) E)!@ @E)!` ۶amE)  @E)!W I$I$E)!  E)@ E)  E)!@ E)  E)@ E) I$I$E)! I$I$E)!k* E)!} H E) E)!   E)!WU $&$! BE)! _ IE)!  $ E)@ RE)A:( Xe۶mE)  I$I$e)E)U I$I$)( I$I$e)E)Z I$A$e)$! $I$e)$!* II$E)$! I$E)! I$I$e)E) II$e)E)* I$I$E)! )жmE)! @ I I$E)! I$@e)E)/ I$I$)( I$I$)( I$I$E) hE) I$I$e)!/ e)!/_ %IE) dE)a I$I$E)!+ I$I$E)! E) A$I$e)E)c]u I$I$E)!* I$I$E)! I$I$E)! l6E) (R&!~_cH{'>b\HaB$  bZ'% !+ I!/  &I$! I $!  IP"%! P Z*EtI!A  $I$%! $I!$ $I E) &L!(*  IRE! @@d!d  JD!A&$ Z!JDj& A,6$I$I$. J$I խ m@!/ @BE) `2!E) $IB&! Hm0A!*  AI! Id!d  ! K!  Ld!d d!d Hd!d &! m۶-!@'$!b'I$!I$u *IZI! ٶm0!* $!- I$I$$!! $!, I$I$$!! I$I$$!! I$I$$!!+ I$I$$!!  $! E)** I$I$1 I$I$E)! I$I$E)! I$I$E)! KE)! I$I$E)! I$I$1 I$I$E)$!* x%)( I$I$E)!*~ 5E) $E)U O%)֪ d'$!_ k>%) ` E) E)!ժ E) I$I$E)! @hE)p I$I$E)! E)A  %)  I$I$E)$! I$I$E)$! I$I$E)$!  E)@ E) I$I$E)$! PE)   E)!*p  (E)`  DE) I$I$1 I$I$E)! I$I$E)!* I$I$E)!( I$I$E)! I$I$E)! E)$ I$I$E)$!*(  E)  I$I$E)$!* E)A(4 I$I$E)! I$I$E)! E)! @%)A E)!*U @E)!zW H$ %)!j $E)!UU IE)!/U $E) +W ("%)!$Ȃ  E)@ E)b I$I$)( I$I$e)E) I$I$E)! I$I$E)! @I$e)E)-U m-жE)!j I$I e)E) I$I$1 I$I$e)E)z @E)! @m۴E)!& I$$e)E) I$I$e)E) I$I$)( I$I$)( E)A` PE)) I$e)!$ SE)` ۶mۆ1E)A ` E)* I$I$E)! @E) I$I$e)E)/_ I$I$1 I$I$e)$! I$I$E)! I$I$)( mZm۶E) I$I$E)! I$I$E)! I$I$1 ےaI$e)E)% I$@e)! j($! ؀ I$M%!/  D$! ' %I$e)!/ M9v1E) I%I%e)E)* H $e)E)X  ْI%e)E)%p ٲ$ۖ e)E)XuIE) I$A e)E)\b Klɖe)E) 7 ْ$Yee)E) I$$e)E)^r )I$e)E)T K%e) }7[mE) U6K!&ï$A/E) % X2,ɐe)! HE)$( I$I$)( @`E)` I$I$E)! @ Ae)E)% I$I$e)E)? I$A e)$!* I$I$E)! " $!!@ PE) E)! I$I$E)! I$I$E)! I$I$E)! @E)` /%)!  I$I$1 I$I$1 I$I$E)$!  %) 0E)!_ 4'E)_ @j6E)~ I$! %)U mDHE)A E)* I$I$E)! E)! I$I$E)! E)b&, (E)` " %) B E) I$I$E)!* I$I$E)$!* I$I$E)$!  DE)b E)! I$I$E)$!  E)a E)! E)a( E) I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$E)$! I$I$E)! I$I$E)!+ dE)A I$I$E)! I$I$E)$! $E)bp %) I$I$E)!  E)@ E)a I$I$E)$! I$I$E)! I$I$E)! E) $ a2E)!V @E)!wU^ !$ 0$!+  PE)a  $E)! U E)  I$I$E)! I$I$e)E)W I$I$E) E)b I$I$)( I$I$)( I$I$e)E)W I$He)E)) ۲m۰aE)@ m۶mE) I$I$)( AI$e)E)-Wz I$ $e)E)ﮋ I$I$e)E)~ I$I$)(  E) I$I$E)! E)!-jL$IE) !I IBE) I$I$E)!+ I$I$E)! I$I$)( I$I$1 I I$E)! h-E) R&!_M0d$N @A oR@!]  !+ 2 !讫I$I$! IE)  @&L! * I !** @! K$I!$ `„I!(* @ ! dH$!  -! +k-! 6I$ H$I+I/ iv4!  JG!A( $I$E)a $  E) !H&I!* IH&!* IE) $A d!d ($ !A@@  I!  $I! ( H$ E) 6! 6M6! @P$$!bP$I$!bI$I! Y * i۶0! DP! ( I$I$$!! I$I$$!!  I$I$$!! H !,  ! I$I$$!!  $!A I$I$e) I$I$$!! @ !a I$I$%)!  %)!_ I$I$E)! @$%) I$I$E)!  E)!~ E)u @E)_U 9 !~ R$! #i%)U* E)( I$I$E)! I$I$E)!* I$I$E)! I$I$E)!ꫪ I$I$1 I$I$E)! I$I$1 I$I$E)! I$I$E)! E) I$I$E)! I$I$E)! I$I$E)! I$I$E)!  E)@ ,%)A` I$I$E)!  E)a&. @@E)ap E)! @E)ڪ I$I$E)! (E)b @D@E)b I$I$E)$!ꪊ I$I$E)! I$I$E)! I$I$E)!  E)@ E)b I$I$E)$! I$I$E)!‚ A%)  I$I$E)!* I$I$E)!  E) & I$I$E)$! I$I$E)! I$I$E)! !_C'I$I$IA* I$!b O$A!/ !H0H!* $I! I @$!* H$ $!  I$! ( R"B"$! DJ$I!4< жMH!* $$E) @E) ۶m5! k!$Ib$!z'I$ zWI$I ə !* i۶0! 0! I$I$$!!*  ! , I$I$$!! I$I$$!! @H!`  $! $!b, $!! !  !@ FP$!  `$!@ ! @$!  "5$!!`  Q$E)  IE) Rm5 !x} IJ! !/ I$I$$!! I$I$$!! I$I$$!!* I$I$$!!* I$I$$!! I$I$$!! $!! I$I$E)! HE)* I$I$E)!   E)J %) I$I$E)! H%)b I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)$!* I$I$E)$! I$I$E)$! E) I$I$E)$! D@E)b I$I$1 I$I$1 I$I$1 I$I$1 E)A( I$I$1 <E)` I$I$E)$! E)!BJ E)A  E)  I$I$1 I$I$E)$! PE) I$I$E)!j * I$I$E)!  E)A' E)! I$I$E)!( I$I$E)$! E)` I$I$E)!* I$I$E)!* I$I$E)! E)!x E) I$E) UU~ ۰-`!*ꫀ brE)  JE) (& I$I$E)!- I$I$)( I$I$e)E)+U I$I$)( I$I$)( ɐ$I$e)E) U^ I I$e)E)5W I$H$E)! I$I$1 I$I$1 I$I$)( -3mE)@`  E) I$I$1 I$I$)( I$I$E)! ۶mfe) lvle)!-+1 E)ah LE) I$I$E)!/ I$I$)( I$I$)(  E)A I$I$E)! I$I$E)!* I$I$)( I$I$)( E)$( I$I$E)! I$I$1 I$e)E)% I$@ e)! X(E)Zꪨ DO%! ? ۰m\E)a (ڻ e)! / I&K&e)! $@E)! I$e)E)x  ,ɖ$e)E)TIj*e) `E) I$e)E)-X Y$le)E) I$e)E)j  I$I$e)$! *(dNE) uhE)ࠀ ZV)e$! @!0SE)+ Òa e)! I$L&e)!/ I$I$E)! I$I$e)E)/ I$A e)$!* I$I$)( I$I$E)!  `E)@ 0E)a @d! I$I$$!! l!, H$$! ( @K$E)W IT! k !!X [ $!+ !$! I$I$$!!/ I$I$$!! I$I$$!! I$I$$!! I$I$$!! $!!j $!! E)!} E) HE)r $%) I$I$E)! E)!j E) I$I$E)$! I$I$E)$!* I$I$E)$! I$I$E)$! I$I$E)$! (E)b` I$I$E)!**( E)!j( :E) I$I$1 I$I$1 I$I$1 I$I$E)! E)  I$I$1 $E)b Р  E)@ E)  I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$1 I$I$1 E) @E)@ E) I$I$E)$!"* *$! H E) I$I$E)! * I$I$E)!" I$I$E)$!* I$I$1 I$I$E)$!  E) @ :E)a I E) Ux* $E) mm$!! 0 gE) )!E)A j E) I$I$)( I$I$)( I$I$)( 1n۶mE)b$( H$I$e)E)5U I$He)E) I I$e)E)Z I$I$E)! mضmE)b I$I$e)E)- I$I$e)E) I$I$)( I$I$E)! I$I$E)! uѤm۶e)!7 m]n['E)!\W P&Ҫ AИX&$ @A$IA*I$VK/!Y  ! I#%!ah !(! I $!*I$I$!  I'! I E)a 0 I!ਪ @$! I$AE)a H*]$I! -K4!0H$H$I$?IID!*(%K,U!!bJ  H!a  D$I$!H !8 $C&I!* I @$!* $I$$!`  $&!  $J"$ ` I$I!!  H ! I E) H`!HJ.&!8&I$^UI$I WU+I + mӦmQ!*  @!  ! I$I$$!! I$I$$!! IH! $!! I$I$$!!(* I$I$$!!  $! I$I$$!!   %!a ` !A !@ $! $5!x (ғ$!@h$I$ A I$IZ ! I4! j T!A  !d!d  $!!j+ $!! I$I$$!! I$I$$!! $!!* I$!! I$I$$!! H$!! I$I$$!! I$I$e) I$I$E)!  %) I$I$E)!ꪪ E)! I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)!* I$I$E)! I$I$E)! DE)  E) I$I$E)! $E)` I$I$E)! $E) I$I$E)$!( I$I$E)$! I$I$E)$! I$I$E)!  E)J E)a E) I$I$E)$! I$I$E)! I$I$E)!* I$I$E)$! I$I$1 I$I$1 @E) I$I$1 E) I$I$E)$!(( @HE)(P  %)A  I$I$E)! I$I$E)! I$I$E)$!** I$I$1 I$I$E)$! I$I$E)$!* @E)b4 HE)!W #1E)~ nj (E) ` 0 mE)+ JVE)A8 E) I$I$)( I$I$)( I$I$)( @HE)p AI$e)E) U_ I$e)E)% I$I$e)E) I$I$e)E) {mmE) @I$e)E) ^ I$@e)E) I$I$1 I$I$E)!8 I$I$E)!  E)!_ E6E)! _ 2E)`   E) I$I$E)! I$I$1 I$I$1 I$I$E)! I$I$E)! ( I$I$E)!  I$I$)( @ 4E)p E) ($ I$I$1 dI$e)E)%_ K%`e)!$C$ E)j ɠP @!/  `mG!a:SmܰmE) pa[ f1 K$ɂ$e)E)( H$ $e)E)Xb b7e)!@ (m4he) @e)E)  K%e)E)\p I,Ö`e)E) 2,@e)`a۶mE)!  `R2 4e)$! CIE)p I! 0E) ' `I$e)$!  I$K%E)!* I$I$E)! I$I$)( I$I$e)E)\Zo I$I$)( I$I$)( I$I e)$!* I$I$E)!p &M$!AГ$I! I$y% !UU IF!* i;! I$I$e) @$!!޿ I$I$$!!/ I$I$$!! $$!!_ @$!!^ $!!' I$I$$!! $!! I$I$$!! I$I$e) E)(jj 0E) * @E)!ڪ I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)!ꪠ %)b`  E)!( I$I$E)! E)$ I$I$E)! E) I$I$E)$! I$I$E)$!ꀠ I$I$E)!廒 I$I$E)! I$I$E)$! I$I$E)!  E)* I$I$E)$!" I$I$E)$!* E)!@ E) I$I$E)! I$I$E)$!* I$I$E)! I$I$E)!* I$I$E)!* I$I$E)$! I$I$E)$! I$I$1 I$I$1 I$I$E)$! I$I$E)!( I$I$E)! I$I$E)! E)!j E) E) I$I$E)$! PE) `E)~ tB E)_ p%) `E) E)! - I$I$)( E)! I$I$)( I$I$)( I$e)E) _ I$@e)E) I$I$1 I$I$1 I$I$e)E)%~ I$I$e)E)-U I$I$e)E) I$I$)( h۶m6E) ` iҢ9$!z~L1bI$I$-əI * IfO$A! $#!Ȗ!I$I$!!ꪪI$I$!I$I$! b(A$I! @$I$!I$I$!  $I!  1!  Ь.!%J$I$I? I   |R !׿/ @$I!B $!I$I$! B$$ !Ap I E) @P"%!Ap $ $ !* IH!  $I"I!J @ $! $R$2!9N$N$IIT @!խ qA! i!+ I$I$d!d I$I$$!!* $!!(  !b I$I$$!!/* I$I$$!! I$I$$!!* @$!!X $!! !!4 I$I$$!!* h H! &! H$! &I$!M$I! I|$! $ H!'  d!d I$I$$!! I$I$$!!/ I$I$$!! $!! (!b@ ! I$!! I$I$$!! Є$$! I$I$$!! I$I$e) I$I$$!! I$I$$!! I$I$$!! I$I$$!! I$I$$! I$I$E)! I$I$E)! $@E)!ZZ I$I$E)! I$I$E)! I$I$E)! E)! I$I$E)! @E) * E) & I$I$E)! E)` I$I$E)! PE)* I$I$E)! )E)! I$I$E)! I$I$E)! I$I$E)$! I$I$1 I$I$E)!* E)! I$I$E)$! I$I$E)$! E)( I$I$E)! I$I$E)$! I$I$E)$! I$I$E)! I$I$E)! I$I$E)! I$I$1 I$I$E)$! I$I$1 I$I$E)$!* I$I$E)$! I$I$E)! I$I$E)! * I$I$E)$!* E)4  E)@ E)!! E)@ E) 1E) @ۋ %) 0;E)+} E) I$I$1 @E) I$I$)( I$I$)( I$e)E) 5Uz I$e)E)5 I$I$e)E) I$I$1 I$I$)( AI$e)E) ^ I$@ e)E) I$I$)( I$I$1 ۶m۶E) $  0E)!_~ mIQE)!X%vle)!\  "E)Jj E)  E)` I$I$E)! I$I$E)!* I$I$E)! * m۶m"E)!@ E) E)! 6 I$I$E)! I$I$e)E)5 ` e)E) 5 I$H%e)! j,! i$! / I$e)!/ kޚ1$!e)!p @Ie)E) +* K%e)E)7p Ymۖ!e)E)" e)E) I$[-e)E)%pioe)O 8lmE)A I$@$E)! a e)! $C2# E)h@ YjlE)  ^%)A* I$E)!  I$K2$E)!* E)  I$I$)( I$I e)$!* I$I$E)!  E) @ ܖmömE) @@E)X  4 !+ I$I$e) I$I$$!!/ I$I$$!! $!!*z $!!+~ H! $!.( $!!  $!!@ !% I$I$e) I$I$$!! I$I$$!! @$!! I$I$$!! I$I$$!! I$I$1 I$I$E)! I$I$E)! E) &. I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! @E)b @  E)a I$I$E)$! E)$ I$I$E)!  E) @(E)Ap I$I$E)$! I$I$E)!*: I$I$E)!*( IE) 4E) E) E)" I$I$E)! I$I$E)!* E)b( I$I$E)! I$I$E)$! I$I$E)$!* I$I$E)$! I$I$E)!  E) @ !%)B 0E) I$I$E)!( I$I$E)! I$I$1 I$I$1  E) I$I$E)$! @$%)A xE)a I$I$E)$!  E)@ E)! I$I$E)! E)!z* M,E)Wz :@%)]^ `$E)+W E) I$I$E)! I$I$)( I$I$)( I$I$)( AI$e)E)-^ I$IE)! I$I$1 I $e)E)^ʂ $I$e)E)^ m -6E)!` R&E)j`b'I$AТr$IA`* IېI P! j$R+!!@@4!I$I$E(C$! (!( `!I$I$!!ꪪ !j Hp!A  @"'!PYeO> _$I$I$I l lR%!!b $Ij" !I$I$! @!!I$I$! $A$I2!* I$!  $I$! I$I$! @x$!( Ͳ!6 `$b@$I$bI$ gb- 9EI"% !/  !  " !@  ! $d!d $ d!d  !b@ 4!a 0@$! *)$!j $! I$I$$!! I$I$$!!* @!, $5!x K$!`$I  I$$ !+ W H!  ! d!d @d!d I$I$$!! $!!/x (!@ T! I$I$$!!/* !!@ $! I$I$$!! )!A@ P! l$!, $!!5 I$I$$!! " I$I$$!! I$I$$!! HE!  $! I$I$e) <%)` E)! $E)!ꂪW 0E)! U $E)!*U Ȁ$%)!$ 6E) %)A k$E) $%)W $E)(U %)U $E)U E)U [E) vE) E)!U \E)  E)!} E) 4E) E)! I$I$E)!  (E) ` E)!  I$I$E)$! I$I$E)$! I$I$E)$! I$I$E)!" I$I$E)!* E)A(4(  E)A I$I$E)! I$I$E)! I$I$E)! I$I$1 @ E) I$I$E)$! (  E)@ %) E)!* I$I$E)! E) I$I$E)$!* I$I$E)$! X@E)^ NH E) ` 9E) U_ xE)+ I$I$E)!+ I$I$)( I$I$1 I$I$)( $I$e)E) Wj I$I$E)! I$I$e)E) II$e)E)j** I$H$e)E)V H I$e)E)^ I$H e)E) E)!$ I$I$E) I$I$E)!۶ce)!  vl1E)!^p5 $E)!X E)b`* E)B 0E) I$I$E)! E)` I$I$E)! $E)!` I$I$E)!* I$I$E)! * I$I$1 `I$e)E) 5 I$Xme)! @E)!_ H$%) X I$I$E)! C)e)!e)! $I E)!  $@ e)E)p ۶-e)E) e)$! g۱mE)!  Hme)E)' I$K e)E)( I$A E)!(  e)$! *3ژe)蠀 ֘ $! `P[E) - !")e) nlE)  I$I E)! I$I$E)! I$I$e)$! I$I$E)! I$I$)( I$I$E)!( I$I$E)!x $$!!+\ H$!!W% Fx!8 I$!! I$I$$!! H$!a I$I$e) I$I$$!! hE! @$!/(  I$! I$I$$!! I$I$$!!/ I$I$$!! " I$I$$!!( !A͊ 0$! I$I$E)! %)!(4 I$I$E)! E)!U $E)!U @0IE)@ 0E)! &%)A z ۘE) $E) $E)U $E) U %)U $E)U E) mE) E) * $)E)k I@(E)ax`  E)!U{ @E)! H$!(( @E)!ުz I$I$E)! mǶmE)!^ ۶m$E)a( Ϗe)! @E)!PR I$I$E)!* I$I$E)! I$I$E)! I$I$E)$!*( I$I$E)$!* I$I$E)$!* @@E) ` E)! I$I$E)! I$I$E)!* I$I$1 @E)b I$I$1 I$I$E)! I$I$E)!* I$I$E)!* I$I$E)!* I$I$1 I$I$E)$!**  E)@ P E)@ y %)  q&E) U_  E)+ I$I$E)!( I$I$)( I$I$e)E)꯾ E) AI$e)E)-^ I$@ e)E) I$I$E)  M:E)-'J$I$I/ɖ  `!`Xd!ɐ!@H `((` ! !!ꪪ <H!! ' H!H!! HK! @ $P!p"%$аH$I$I /a[&m!_1 ! !ꪪ !%b" A`h!$@ PPH !a$( $!ZI$I$!$!ap$!hR$O&!z$I$I$I$A IR !* )I A U& H!Ab $A! $0d!d H" !@  !A I$I$e) @!@ @$ !  d!d @d!d d!d d!d H'!^ %I$!O$I + I\$! $H!- H !b Id!d I$I$d!d d!d $ $!!_ H$!!W- I$I$$!! I$I$$!! I$I$$!!** @@!A @$!!^ DJ!A$$ H$!!W- I$I$$!!+ I$I$$!! H !A4 !8 $d!d $$!!*{U $!a   '! Ij$!  UI$!} $I$! $ID!`$I y$m+H!uU '!ZZ &$!!z ym@%)U I+ E)a IE)U*  H%)!(4 IE) U IҶmE) U IҶmE) U [lE) =@@E)` E)A. IE)!U J@E)  9E) K%)  E) zrz E)!{ I$I$E)! 7 I$I$E)!mk."E)!`@۶mܘaE)  I$I$E)! PE)  I$I$E)! I$I$E)!* I$I$E)$! I$I$E)$!"* I$I$E)$! I$I$E)$!  E)b  I$I$E)! I$I$E)! I$I$E)!* E)!J@ E)A  I$I$1 I$I$E)! I$I$E)! I$I$E)! I$I$E)! I$I$E)$! I$I$E)$! E)& IE) {%)-Wx E) E)!( I$I$)( I$Ie)E)  E)b ` $I$E)!  I$ $e)E) I$I$e)E) I$I$1 I$I$e)E)%Wz H$I$e)E)%U I$I$)( I$I$)( I$I$E)! I$I$E)!  (E) z *'@RE)P   E)b@j+  E)!" I$I$1 I$I$1 I$I$E)!*  ۶mE)p I$I$)( I$I$E)! I$I$E)! * I$I$1 dI$e)E) 5U#CE) ` @:E) I$I$$!!>( I$I$E)!? $Ie)! -$$pE)  e)E) I$@ e)E)7\` ۶a e)E) I$e)E)* I$@e)E)p`I0HRE)@ I$E)! I$I$e)E)VXz Ie)E)E) x X ,E)x dE) / p6۰mE)gmE) ( I$I$E)! I$I$1 ,IE)(( I$I$1 $I$E)! E)A @E)! I$I$$!!( I$I$$!!** I$I$$!! I!a  "$!@H  !a I$!! I$I$$!! !@  ! ! @2d!d ,*I! @ P!"^  A$! $IO$!_ ԩI$!$I$!$I!* I$I ! !U/ I!A ID$! . oI%)b_ +E)ժ mE)B $%)! IE) U IҶm E) U IҶm[E) U MmE) %)b I-%) } i%E) HE)!U I$I$E)!* I$I$E)! I$I$E)! I$I$E)! E)!B dE)ڰ I$I$E)$!( I$I$E)$! I$I$E)$! * I$I$E)! I$I$1 I$I$E)! I$I$E)$!  I$I$E)! $I$e)$! I$I$E)!*( I$I$E)! & (E)A  I$I$E)! I$I$E)! I$I$E)!* %) m۶mE)!!A$IE)  $I$f1!}. OrI$1!z ]_ I&$1!U+W I$@Ć1!W8=1 j 0E)!)^ I$I$E)! I$I$E)$! E)A*& I$I$E)$!* I$I$E)$!** I$I$E)$!* I$I$E)!* I$I$E)! I$I$E)! DE) I$I$1 I$I$E)$!  I$I$E)! I$I$E)!* I$I$E)$!* I$I$E)$! I$I$E)$!* I$I$E)!* j%)! Z`$!-^  E)/ E)! cmE)!` I$I$E)! I$I$)( $I$e)E)UZ I$E)!  E) @ E)  $I$e)E) ^z I$e)E)糖5 I$I$e)E) I$I$)( I$I$E)!( EE)5ު P HE)b  %%)*Z E)!/ I$I$1 HE)$( I$I$E)! I$I$E)!* I$I$)( I$I$)( $E) I$I$1 I$I$e)E)%UU X-ɖde)! E)*` 0E) + I$I$E)! e)! L&Se)%) $e)E) j ۰mۖaE)  e)E)@@e) H$e)E)p Hlɖde)E) I$K-e)E) I$I$)(#f1!K!$ E) P %)UW\p E) -% I$e)E)B - I$H$e)! I$I$E)   E) I$H$E)! ( I$I$)( I$I$)( I$I$E)! )%)! $I$!!^ @$!!_ $!!- $$!!^ I$I$$!! $$!!_ @$!! U 6!~ $IZ$!  $I$! $I$A$I!I$/  I $!* I$! ڪ IE)a E)  E)!ժ I$I$E)! I$I$E)! I$I$E)!* I$I$E)!" @E) E)& I$I$E)$!* I$I$E)$! I$I$E)$! I$I$1 I$I$E)! I$I$E)! I$I$E)!** I$I$E)! A$I$e)$!VTFh S>f>kzR>? h0CRCC,c Wqs^s?u4,cpk?s]Lku "qsvsUt,c,c qsLk "Pmk~Psj4s]I$I$PstެNΑsWCu4yEL3Lkj0 lkW"7tmkWs,4c3sQW,c W,;&mps\2as?u4,cXpk?UjeMs]D@Lku "Ėp+Ռqsv"@0asU cHt,cl3]z,c ʉ#qs MdiLk "c:qmPmk~I0!Psja[4s]!6`Z-<$ AF4SR| GvbT(&uPZ롱 SwSnP,kHG!\ 1 cykm,c€]aI9ZBWA&-O [~5!UYZm cmVS^Zi:.a 5h~,c $:Lk$P!;޿֑ cAy &LӪO [& >#VҔZ_&PPLk$ HթmVZk#h|JplaG3Z*btrF3Z7^[S}} đ3J,cg伜  . c!NZrPLkHOd ) tLcy!r,c€]"mfZB {~vҔR/<, 1f@sr|*II c,f !Lqb &G6ؑmkP $mױ,ciy"7 )O [A c_^ Em)O,c~"l cm"{ ciA!H|Z8.  ЌM c5V.Z~P= 豌R묰 sJ0 [ $!MҔLkZ \!KZcI NpcsZ%R4b~,0ykfb A%mq5 HiZΤo62Pb! ,QqZK h9 SR:>"S|4|kk!lۡak4Zb" ۍmc2 [վX$kS9 ( Uhsgpk>&Y )’]\R,fZYm: [@`) &:\ΐ:"$ '|PR*77,:]<.Jښ5 ݙ^1,+t%O 2P+ -Mc((FkJ)mm! Ԛ_{rzs+΃4O3 c" `MSZ\$ZTZ$ Jzt J#'PĐ'x'& F탪0-{ԓJjzڼ/ qnԮєRj& )MMpJ!( 'Eeo "* 2ꢰkJ,ZUC1upRZ 2?oJ3 bFkOk:ȴ0w>ҔIJ! A0ARi~#ykuOZм *@{9O :% mj,cY_$V>^jJb'OoR^z2PkJC{,U4ߕPkB40 ,\J& ' ! Rjz) j)R3 [m-Sc. 7_vEєZ)9HќJ7) 9pRp؀+ Y3J4ɩ) l9‚)_EisRl'URW$ U-as [`-x#%1p5QRu=-\H1)(UX2J ) jeSfpRh'+ j኱J#z3{akB7I, 3MiќR(+ 1CIMck*\ۢVG+:3 n|=/+ & s9#kJ ,^m/J:,>)cqJzɵ'DqRw$L{,cu w+& _S=1ќ [J/ ד7oB>1  pj , nURz', p+B)޽R0! &KamM 2ޫ' + J=* d׼Z]%SJQJ/kJ) ,ea-pkB" .+ eI>pJB*/6]g c^+i(oJ6+ajB, _|ќ Sj{+ `zJ'8/ f7EfpJb6+ ^ Dpk:b)+RA޴R* Q|b4R-u͇U3Jm) Ey7Uls/ٕbꊨ* |:u-39 , 6tZW /uRR0S7G䱔R; + 2–O :*-~mpRj/., ^ ["19Z7]coJһ+^IJNB. (׌uSєR遣+l[ S9>.%Ys5' ϜuZ+*erT,c())mJ'8&kCݭ2jRx&AkR4Z?*Eß5x,4{0o5R2rg&p [zj,PkJ .ehPҏZ- g[Uk:&+rkOJr1qcs4t_͉k:) tb4q~Fv, aIfcsj/ -LTsΏ-+LTI ظ( 3Q8 ,k-- y+cJ-er˳_5P>+ }Qnjp*+. UaTє)@- q|ߪpJ#),mVBy [/73%>7:ːK282 Zĝj,/ -=5OO+2P* J-nc($+jJ1Ԯm' šST{zs. ã<Ϯ4b% )!iL SR'mܵcS cUX&cP"s3B .l-pj<*fIM⑽s|0_Zm: [@`. &:єB+f&cgZ.77 .2_*ДkJژ8.Y=జkB-4SApRz 1 >mTJ#2 bF{OK:2v|zRm" u:1Rm~$ l^WQoZؼ,-Jם\'pR{߰  Tb- HtjJ+&7Őh'D.F{ .|ԴRzzڔ1q|ԯ| [j/ N]"R1 Fio+*( 2 KK[ Sb19+FZ*9HÐJ'/ >Zzު2p[R4`ͩ+ 7p.)¦*Gu{Rl%v~4ZW' ˺6AZ(To!6R`& ف{NOZ^z2PФBC,ҕPB4, rSJ&) *4spBr, h4-R*/OrMc0ehgФR}3f>P+" ((E{єR . 1llpB,?`]QJz˵!uQRv#Cv{Zw*#b{,c/~$$L5QZu=*TМkJ\)x>*B*eќjB', lxt2Jz-{ắK:>A, 3MgќR(*N3,cU}UCF;1J%b1qk:& ,͊a*:` >*fGJB*&4~oPZ$%6okB6&UќJB. _T-ќZJ:)Ǘ6>OK:.* ьz*  + mi4KPJ`* ܅vpkB2ݎƽS -!]mM *2ޫ* sJ=+usU+kj ) &}:3I * 71b4 cW-'s&Jo/qc7QܰR# 7' BO)*'NTPJj*.clR"- _Tќ Sj{. H~}8J- 6نBc6* ^= Ppk:b*KR5-^qKTjJ+ u'V3Jm) Ey;Uls jcCݭRx#a}S)R/!xZYpbx$Nop{&قuҔIB.1ǟ&Ҕ cxz' <بYPJ: %]foR19Z7яBһ)F95BJB* l5єJ #-ld6~s1>.,Utl8;,aU/Z+0r"S c/)M8f8! 3Q8T+c-%ytb/J'er˲m5Pz?% tMvZp*#/ w\iི@/ )»pR#0(uyJ7?0%<7Jo)*0 I+2&.hOtPRR1qsk/| [͉J2! 4b<wgw) aYfcT{zrښ+\Lts% +LHJ(ظ*&8BOJb-) Kph'ZjJw$\у¦ .+-W^|[)Vn#΄U{n'\5P+д:ĀV-&*߆`LU##)lwU/Y!.Ncʃ2Br(v!udŐJ)N?Mc*'I*mRv,OKkє [E0=fXk-3LB+3WMynHQ1>kcќ).%xS71c/ $Q +at֔s3 \rK2JJ,?N.1::%cHӽӌXXPp#<'@) :&UtHT#gLƖn&r|జn['X sR>7 .V{hBj2weA]Ե,czx+ډRZi04{X :](~@91J''ۮ5h1*'[=](Tض@ !6s)#1pU{j",~tb%&C-|0;+mV/ݢ,->JR,pk#"c _) }RW /)2!xB)7U/NS N27l)Ϥi*2wqǒK:Ԩ6<;FJ.RNN[1 ˸P!6KKckє101eCeknw?0?튭.i :+k-gR|h*Fh#Gsꮫ/1upYv./( rK5|-n.6pN[ & T'-521rtn;>1 vnkB0K_S)B뉣0g1М-[jj)~z*kjB{j+lVuIB)kK߂OJ`-\3WQ*:704;pc/p5Zm觑*J-B%0| [ 3Hc͓S10S6 :ʧ/--ᰜc+/IK:2= *'Vulk 5)/2xFKS-S n)"0WB}&{Lmc2ҳ-=xQJK{&CuZ1v/J" CGe{Jχ(.l;{Rm"6|唭RJ`% & [/Ru(X}r!:*L[s~-etTu{{) UO+w0\g'4T(J**.ūH>4kB83h֘9ƌJr/u*МJ}*'1 AɿO2k}&:bQМRjz\(#dKIB/(ǛB./c-) 7R[-b1 cМJ:O0O}ќRoG/ #1oJ"{0 v\kj|//Vk L2ؠ*%̂2O*:.:1gq3mcՋ6{3МRz+ J^oJ,%{RB)xb0oBao*x/k:&p( euWgP{Z& _$ 3d/|Zh'+58Z.R%^/$X1B+,摽Iz> 1Hqҽ1b19-ФR, zvLJɣ0QpmkJi0?BќJB23Rਨ';NQ-[jr+]R/1k:,1DR]o[r.B:HN['&O6jSk:-VX2]2JB , =-,[p(2q#oBb-VJ2JB .|VV+2-[ j.JRZ={Bj2MݰjB{>3jrJ2ͭ.7ORt/( kq! K:* uni {J#1 KKsRӡ/WixauZ!!/P7]o~-4HR` `fO)* 8S7zJO 0 OYR'n/R`(@ҎklJp1iokB?{5CМ*286.Fj<9slJC 0TIyJJ*&<.S+k08-::oKB{;0׃6psIJ.,)j Nc*j.qdbOJ{3 ϧpxӔZ(5,.ќN[??/ Dxlќo[--b6OBb-ᚈ МkB/0WsR(*%/J 0 DJ9jB>{.+X!Hmc#pK2B,+\bӼ/J:j'-Ֆb;NJx7,-rhP%K2++ ӐupkB/fM] [P:& =~{RY#]qRY[$ga{B^%&r/Bں&Pj.J['mI0jJ'`q/J#ݰA|3կJ{./m!ir).R90/ 23Գx9v3R0 l񮑌Mcz.2МjB/h zB3IJRn[1 ORri54?=j *B7i.2 Z5} Rnc*38;1qO[Ԣ.7oc4{Jwo' %BRokB&,5M[)upJ'b+Ք/J &J7,]~f)/2LcvR(ฯ.2qϜ+B'0jd:SJ'.XiM[(jX,JBgJg/-sKÇҔ [ø.";5hpJ:b4)rױМRr2==zh>b.v4!.MlL 2' 2Fy(YRu.RR*e0/J`+;&$;^+Z7 q*2b/m 9$J6.O[)pKJ([*ދvA1&0: [~)L=,Jpz/ ]k`OJ:j;+}9a) &k7 b͉*Fo]OJy0( JqY"/ F{>OJ**~JBW'qBW*,@eФ!p0c\)/!RkJ7,`+R/?fnp [c)BєjBk'- Ҕj:'MpR.Cp+6 e_*1&=|)7 /kJpzm) ?;qJ?1m6'xOJ>=-SG{R"*DoOkJo:0 ڏ {kJʩ+ ; oJ: 0N']1 _2YS1ΫJX3-\^OR1~J:, ,4bR{/{UMoR)PDo zPR(!+$Z9ќJr.0etoZ5P. sB5/J쯿6[,fLQ)&:@ujB/4 2NRLJ 4 zmc& !FCJaO., mBI6-ejB729ƙKRks}3Twy [>k3-SjJ'26n`5SR1&J*j/(1΃*,*j:/ӿI B7%aQ 2|+ 24c!K(iФB]1yԽQ)1Sژs(B -ld [/2#c{B"(﫥/R1ugJ?50 # #ФJW}}5W8МJ60ъOJ?-J=9B'2 'EⱔJz + Rۘ1J:o+I71=2R0 !NQҔLcx1aYOR/^CJM76J͡1k!oc)v|VBk.fzФB}:0Ҕ,cl4w1k:j,M\4/*2k*c q1'$ AU+cV(,Z35b],,/'4b( q-1|RY2utiJ * Γ^u|j4j9{.s?(Тa3RZ(0 ISJBx%9UAԽJB70- NmJ,b62J.SDk}_?- il|J5cw kB/t3ZoN[?o/Nh*pJmZ*uOlԽ!/ #. ǑuVp&90 c^*  YSJBꗿ.mL:}1K:.1kbkB3Xc41 0 qvu{.0\=ŀS kz3dZE*cR1w\"mm.ÜgHu.0" dTOp' *(2G` .p,ӽBp*, bCqoJ7k+ߘuR 154Rrz*"aBϜj!>$ќR2 ᄐ [^.'),>JJk1[ Z,CќN[.6n4MROM-6ϤK::.Z N2n[v0dS rBok-H"n>1jB?5_VhҔcu4>vwRs-+\jlյJ7& 9nԔJp+-'`m4s!*B!fRt&3q'J1T\3tJo:)\}TF!)" *!7_1۔,czn&FuBvS);?'5&xSJRxj,:cLoR^,u#,p9n*8:4m4O|1 UWncu/*) jFN5/Ω.*6tlj4/ĉ.^TbT.1V/{RjBؠ-eмJ1 >jrkj0 Z!ɣORZ&;\JB/ ."2#&kcV,HtOkB~-1$SQkB}2iP/Z+ [9=jB?)ȡv#OJJ +,Q)3;:s B/(*s"/br'/1o/`)JյR+sӂ:N/7(_L#RvPY&@55&b;s k0)xv0|%1U{* ?q[ tO0\|>4Pb^Vx0 6KJn07M/)Bh ,, 4(J*0 .#" v- UU!(u5{"ʿ!/LgRU./9,>tm`6&w 2{3ǘhҔkJ.z+wgМRJf6&vPRXw4/upyjҔnc2cOORR4Q'ՏJŨ,YTrr*:-ZO2Jɉ# f͝Ф.[*' R׿56،oJ2J3c:Hg) .!.Rx,@ir\0/>-6`j3 ئVqW/MPO١8&77ҔMc`|j1 ac51oc/ܢ)5hHh)UO/x-vi/2SZ / [$>H cp苂1p?'rRx-xd-[{ 0RCյk:z- jLD%Z)1"v6qv{򶂪1rwQV/~!1vn w t..YbrZ^ڢ'JCɆQ &7"n[.'i+:}-.5C0h936'Z1ҔZz0<1+- %TmkB458єJ顣2\Kync1 %Đ0vk:.mtR4G{-SnnO-n71Q*::2ٖ}Bӽ\*L%(o+- L^JV|׊1]huo!߃6f:c1qN[;3w)"1c<3"Vh.7RLU{xxpr2=}OKJ?) )R*ߥ5t&S3R 55M1|x_-+YFºuZ/1 +v|x7-Pj51اᰜc*/I1kB}8ٟ>ԑ */vULk '3)6pHOSM[ n, {J:}({Hk2/>1RnKyS/Cy5v/R0 \eȞRχ-^;{Rkk 3 DGfub`xxX, vO:ĬZo}/ 9iǔjBz2fIV{㝃0 iU -"ߣ5/I2ɭmu|(2ou>+5(6231|n21 wnkB0 MќJB1GP!МN[on/lQ$"kJJj0sH9qҔjJ1'KJO/J@¢.#WRJ71{^IХМJo* ,$jB"{0 rcj|0jL2ؠ-1ҲO 2.:2u2oc67J. J!FupR/Nxp{ZB,hj o+:)x/kB&p) utQgP{R( &TsB4`֘9ƬBr/l"u*МJ}*'3 Yc},2QR{\0OeOJ71 Ǜ1Oc+0 4 S[.% kМJ:o.B:@N['.O5B,V2]B ˧+T 9], 440 [lק)48ZR%^,!%X1kB.ũ!*1qkBj19-ФJ* xd Jɣ-QpncJk*h,BJ*R.;᮱-cjs1JRP*:k+DV1O[r0 Fxlo[,-b6OJb0t)(kB/SkZ*!PRت / D:$,9PJ<{1R_)ƎMc','МBb(*a.eOBk',Ŕbb ORx7,,rI!Ao1++ wLpJ2gMa[ [P:- }RY,fH/ Zy{.j;R~s-hoKB4 0S7JO >/ YR.'j.R`{*@ҎkH+B-vJokB?{5C 286/Fj;9sB( 1 TyR*&<.S+k08-::B{;0ً8J%X)b ФN[/o,Q"/kB{2 lxlҔR.+C6<2ќN[?;:48;1qOSԢ-4oc4ۚ[Jwo/ !rORڻ/؛Dk/R{/u6bR{, g$/R-%GBCzoJ{9*3mX!ƍQ)-90.13Գx9vR/ l񻑌Mc{.2ќjB/h SJB.IJRncz- .X.Jbi/4?=j :7I0BIeR4} 2nc"-R;wќB*g0)*+($$;^0ZwLq 2b.m 9#L폜R6.DMcn*.ϘRm*c:taJ:&0*[є-[z:41vZќ [rZ/ <◀OJ:j:)}9Jq(&k- b*oM.Jy ( JQ"'&/J>(/ $*sZƅU- 8b*v4Դ1!."N|l 2' 3Gy(Y2J'F"oJ::, h .{Jʩ' 2XKfoJ-{x'MZ']) _*WS1ŋJX.--^Rߥ/~ S:, )4XJz/{EmpJ- ZO PR( !(&cCJr.'etOR5R' ݲ/J쯻.ܭfLQ) :ƒq*:/* 6NRLjB 2.*Bw/'qJW.5@?М 2p*c[⨮,G)ڻKB7-a 12g\>r [b'Ťcw/):k.,*J -`R-[(cp3 6_*k:(=|Tӽ)7 1kJzm. g";R0m&ٛ x/J>?* G{R"& ? uZ,>ʼCcJ:*)ڂ;OR ,umJ:/5) n;kBW}})5ce8B6*ùOJ?.j=k:/*?EєjBz ,V2*:o'zNq!8pB"$, 2McG- 8OJy$DCBM7.iJ/!o1yo[˧4󵌷xc&/K!FCSaO.6Lq-rМJO/-\JB629Fz"Rcs}3TwyМ [>k3-pJ2z`M5iJ"$QФJ/{,9&-),+j:5ÿIŋJ7.iQ*2|/0$C *K.iJ_,y4QФ+2n.S֚T(B? 49{V{?*۲aRZ(2`=IJJgmx#+TAԵ B7,ۼRu* 19t:(WP8 *63]3v)(VX:%J7*yԣso%"C /By6'reќR-I+O2Js) Vbq{JIബ.A{R) MN[;?*v|c3e抐 SkS.@%/eRJ71k$NSJᢨ'ͅ;J.[.؀N?kBm:0ᢱ-[l5wK2j(#X j1/ 2k3krյ):'+ ZLkW(/-V2Ou+k] 0?94b, q qZ].4tiJ *-^5|B*=ŀ+kz-d3ZE'F?)J,o\imۼ(e4.- d4/p/O1;g` .z񳽬Bp** CrkB?k.Q6єZ 4-74єZr~B)31abo: %HJ2οdR^)i+,AJ:0\ ,cN[//<*/Ҝcio>3r򩍏J0j6mJɡ$Мc?7'U J3bW xRJ:/t3ko.[/o0 R$*J}^4aOlIB/ 1un 璽|))023b. }SjBꟿ*mк}J:*1Aȋk:38c4) 1Lq>u{.2z3Jxj$bLoRV$}#,/All(::tpg\(FwR5/_$.Zgsϩ2*%?lb/ĉ&^Tb*V3%3JBت0aJ 1 >jr|ܧ/ [ǣORZ(+\МjB/ -.#&rkbkV%&tOJ(1 QkB}5n4MROM-6Ϥk::6w[+N2cv+P 1kBNk.$H*%>Q*:?5_Vh3to2?Rr+)hljJ7-nNT"-/0`mUs.3)fRt:&5q'b-XtT/3iBo"/||t%!)" 1!G_!bz*9@ؚG1;?&+ЮLҔZZ^(ඞ{):J$L/9l #,3:$)l.#" v'wAm4s#&u4{"ʿ!'LiR=/J&y*5p{m`!,7q{3fҔJ0{-gg-[Nn- 2evPRXw3/ela{Mc1.KlOlJr4QEڐKJ煪4ilO [Q0 9J2ɾ#p.SJk +Pq!,K;ٰIB/*Oʵc;ߟ-js/!o( )JԵJ$*!;TOz) OLc RvPY/=U/0b;4{ k0)v0|-5T/p3 >q[ V|,);v( c$?xlU+cz싢*t?'rJx!xȄDr [{ )ڐC9z%ZLGR)&"5/CFv{򶊺,r V~!0vM_ivO׫!#_k|C1k:Z*KɄQ&"o[1'+2).vK2lR)56)z1PRbȈ081++YDmR*:0[2Jɉ( eMќN[*.J:rJ26ARJ3nc>Ho'餮)J`+&`mQ|\)/>-L.`j+ s4VPר, QUVO!5&\76Ҕ,c`|j*Yc1N[/2.hhh+ Y5 x'v/6Z " {)R ,t&S'B ,5M0tx $8ʕiZ.) +5{''Pj5/`* Wۧ=s5/(vאQ5|!!(mwHUY#!39ȏʯJRX+śJ:.'(ے?t:"ɯ0$Yrs&uZ 3d) cz .1С̸[Us $'ֶ5/)c0Z̸ c:-rM"HUsV(S,<9Lc*9!k$Kk.@㐖b%wI?5s*9ȶ{g)'mVksW#@/Lk>53Im(oBv,I" QOJ*Tmm#|sw&))tKs@`b`3OqJV#I$IRU%I"!2)J:**GRsTTTT"N ur|s+;6KtRZGG3$P{RU*5lN.!*7lR\)-#mc-[<m\e4FRJB''''2AmK1k0ImK1|UUU6R( 1keMcZ'eUk,[;;;??X*: +=i{SP|0\/435RM[ 4l$ 2\&@ۘ$.*2U&h te..' %wpgwbjB-ۊ50'ӌWWW B4ă?14Lk*ʯx q|R'RtJ$iu*k"9W|J**ј!Lc"R.#8rR?1xrk0LdMr1/I k=82:I>vJkBz@<O`<=.y|kќ:r08L0Gќ10Pvm;pRW3ܸ>I6\2)B-3OAXے:%0®Hr0)h-UypmR&ڶm%Mc90d%uG.>'3l XrlcB2 gqјVs,Z4-S2U c8b4 &̕H+kX&6!:j[Z#K%탉<%3R'M[&7़Yۖ(ֶ7 b-|dզvӌ/< ?lk%dEO<ӌ~{P@ @Ets>/xغ؏c [$DMcZ**j*hY<A $o SU""([ *2ȏۈqR$O Mc,[m#"13)26$ rT [V2Ӗ Z*U*, L΄REBO#-Mc,c-%" "({J5$*:2I@2JU2I`FPe2IB%7?*{0|k# !-|t5z>ԽRf&*yI?1U.кIR)U;XA +mp?Z0SC9RZ1aRXX1'PRU/P\峽 :.7? !ԽPkJ+h+T"۶M&55k*X 'ԵKkjz5k[_ulr!:4bh%bts+kP(*$MI2 v*k*U0 .S"B#4B34J4( 혼 S-z{Gs [74߶W)2)-{`@``8qGgՄ4!l SsbJ,=)8`{J:j-9M):Z)*RI<shJ7$I2խ9_3#$BqH~1ٞ$5`gS 25@bIkR - prDA '?%agnBTҌ, kgukk$64u<ږb3pf1{{'Զ2!4mcH@0:Isj_ !mN):(wյ,cj^:Akҗ\'ۤi7Zj:yƹKk#-ԖXM5{ :s֧Ir S,*~"@O*2U! AIh4Ay3 [*qkU%R=?єRۚ2s [t'[k,c]*.;C494h֒k#a[vf1|s88МgC$$m${J.35BМe:::2)McXXXX#! $nkMc~WWW)B&B:<2IJ?7")n $P,[~+}SZU ;s2GϱFrJ͊4 U9~R^3T?m{ZU4`BF[@2).>?5 #)nc6ik_571)c)&rD's:$S>8ҟQd::*vh>0i\ks(3sks%01 -Irsstj6oTj+1 mK1 ƈ˶T*cX􌳄3 KLRl*B'm/0R*:*3 QRc-NF[fs [7&#M$msW $Js`@6T mM򷶭lkV:1IBRMcnf6t3rPhR x 3I2IBW*) ipKkT4c 7ӓZدb2F-nҐJ*ʤSD{JΆ>-ێ.Nk+J+h$S.$.G):z-/䙵*kx(k2ks)j 5)h5|#Z (%Lc 1֓Gֵks[-Ӎo|x!`,ijMc.1X9Ԅx%6.#rBB%SMc :<7m|)^V5ӌ=9LՈRJcs$!mkR{-N.1k)j@02 k[Ss^\TTٕ-ssi4\Rd@sZ,M?PoJ:_"%$HrФ)U+4dD~?&Ö>M0|m[$$Q|k?J;?ќiJ,mٲJ U2O.\N沽JB?79`$r1p4ܦI*B_6$1 Ф?B1ּtkV6sx.Z0eC:єZ&>8멞ꉆokR#"H$I c c,C:S3- B7/k,e1qs???z8XK\qB2 H$mМJ02y󱖥.S-$Q5{(I8@1׭ c&+$. Np_,6'յmkj_*:rJ\$`mkRX1=[8276 䪳i,cW,XIqN[U*2lsJgopq McR($cy8McR:?(2@9ɡ'ImLkW($-l: 4Ai[ RL)ڑMc,ckk!X&pG.&ANxH$G21Ά3nMkR++(IMkA@H7ymk$$A`A|k()B#,!R:hcȅjJ) }] JnkZ`/)2:ms9"@8Z$@2 [T3IHnӔZ7vfl1Jʆ&>2ۊmkR/~\[kRn*.NDÃ(AgZ- 2 ') $$1cx+$ib c^%/DGŕlk(I$J&*@4G]瓭ks3&6O\ 4Kk+ʘ@ `)#$mϤs*UUU%O 3=B0!>jJ}X"$i${B*z@ʚP(Be$-% sJ*ՠ+ ˷/&˃?Mc [WWU.)R)McA@@@;x3Q|n5wPJ^'21˅:1 (({IJU5=4{1i* Z{JJW2>9!7{bZٖ֭ c:ꬖks#5ӌ]WW*!v cx65KҖ+k6`0(5mVO'G;FӌV:JpLrmcj,&3jvP|%ԏYӌu?23&{Mc:>&7Tۑ [v3 $I{Bj;OPsiR/$a?P|50rJ.,[(J5aJB$ ۴MЖ McJ))mk1H6U9Zֶ.ss2\\I::.35$ؒФ 2,N"k:׀/:Lr+Z@d=4ФjB'?+-c BQ9 c9*X%>" 1|R h54$:9`Rj^/Eyr6rh) =O#[ќ) `o2Glј?2Jq)M|c(#4"J66N*:V8㓜ќIBW ;y d=jB78:2pPP1jj>3OFPϒZ+U3 )xls&ܲ*k`4OLZZV:Ѧ1' XRXT.R׽28)#mtLcU0d{J>&90}ێkR *_k;PJ W0'F!ېgkJ o-ޡќ:٣m~@{jB *B,qν1g)*.\5*k@x%0q@RX) -OJ:5Ώ0R*0{ Sp): Ɔ62eS>P,?o"\Y2 T߭2 ct*k,64\ cb 4!fؐ{!!!"ٖ:)7 !%5{;&ϑa+kj%7)6"Ivs'Πg#O%X,-',cj>:LykRx(4I sB,)#O յmc^9N 2 ['^U.&Pr$9 >,Ҷm'5sW,61jխ,cz7Ls`8ؾp [.|.훰MR5_;e͔B>0{'ikQ|k*s"&!B*jj3M9Jjsz"Yb[hmkJ%$2-k2JB049F3J 16۸m|kz)Z3єB j8њRJX"I.J`#3%`$RD:.7r$# N3$- q2TQ [ZRpm$ЦmmkMc^VV_.)<.(:j1FqҜk) um~b0|k*+R88㸱):*2'1 " toR*&M=mc9=3&I1?j;ȕrl#apꪪ2z0fSN1Ҕk38N&/49: aIB`2 E1J᮷/-7)`|PE!>8v1"[(4BϤ*:?/ q6F6S3 17:}閱B-p)J8H6MkKJ2{t pq9+g{|RU.BǥT60) ::3(8s?nkZ1 ƨ`C10>Sc׭Z~:!$'IR1W9mi쒽.'*/!lE4R '+{fc%k>)$)nt,c $T4R.R1#r6'ӌJ5`Ξ{ԵiJɢ2t|ՌҌRz5 ۶_sR11P!:z.# j1 z6 A~T [zW8xmƽpjB篿+inmk [&(g:jHwiqr1X>> 9 b:97ZxZ})mۻ}8mk [,8)Ã9o{6=tmk.ۦmtUUVp8\{hR4v풐Rv,y''*.j2Sj2d:&9(IyIќc&۶ 0|c* 5ljJ>a'/[McJ,I*: oo:()sA 4"qpk*G*QN[**J:Ε8RJ#6$hIB{9k)B 1?L%J7:PsZ^5<!(kIt|A76|11 *:OB2 :-;p|R|/9PKRJ:'.IҌ c `6ӄ)Zڷ7OC)̓r [bY;h|R$(ZMcJ@ (?)o+S;9҂mkJpb;1eP1j :yќJ17 P)]R$!Mc@@711ؠ$ <*{jJU2 lK9&LtHmcR2S,$2&{99/Xc OZ~<tK q1.|62):2'5 32)nnk7PkOR5?μ :::vCQJ)Nk$s11&?gA1 0Nќ)B:6-ݖjB/mז{Z*Ӳ4`mkJ: @:#WgE)(`ܱÄӽ(B ;O ӽZx^W$ hئM cR) ۶MkRj*/X38og :Ljs3c)&!aHr0|k" 7M-[J&8)':Ji~(ƍHsR69%kS:6< st0|w}) HNQ|/=y'kѤJ2x 07J#  mkR68Bc9>>ؽ{N[x39,[*.!24ҔRjj>Ac)rSJx9lŬJxy$IDimk [.?) jBoA`YTR#, !pjj2-$5 cz-&mbMcUVVX* o;vk,[>J134r.>;PUt*k઩,pfbt)Ҍls|$iHR#0aBD1k'6Lc ќ=ޞ>198*IJc'!A$Irmk [è*;.!s)B b.1F>86yGis [\\\T#h{&Mc,c**3ʯh(J./۶msZ=lJ'+(|A8 4׭91mU [U1l4b7gO):"#[u:e4dr'!Ӓ1k+8]9NIB3 1j>ќ1/b]J跟.`nmsR.{|IBΆ.#ҴM=Mc):Mn?k?6IJ-Alќ Sp;}c :7* 4l%탬R#!$H!,k c)$ $(nk)J*rAlXA66xZ68rok%1ќ [nz8CɑќRs)BR#=VkRj**/ ?XQ!&5nB( m+С%t,ck< F)SRis%rsHMcR0 ,!21K:; F 4iJᰨ$m}/51|s?0zF Sɏ&;\΅l3J>.;}۳s/!F?-МN[O3&L,0 :|9OIq1j 2 FZL1qkB7+ۦaÆZ*b3{r [667G2P,[h7#p:z7: -֑Rr_,=Z65R 7-7[`%R*3\TZz0<5iz/1Pɑ2Bp)Vh4IMcJ*# J7*aϐФH+۸ .nkJJ8T>1&AhB2-۶RJ&}6FilˇJ_$ @xmkZ+7ȀqiJ#$i!bp(B McIBJ0Ibl!+9\]} : -?w]PRU-lʶl0f!Ǝ+2$UkJK 6iZ%7<'{1::4,)Kpf!0[!Ъ:%2I@ٖ 2 :pjJ,BRlsjBj*b9'K@Q :Z =):*[RcX'S:(4 {R{*f?&?n!bClxA) )챜c,۰@3FҔRj6;DRc)1$_B3̓ [S'''*:/;;J#DHiP|-?<4+c@8|LpJ5(ɑxsR*nkR*J?d͖1&5H}۱Mrk(H0:qR_0[8c'2J>>8L tZ$TII0|s) I۰mQ|Mcj**5iͶds:k3hZo[PR'i(kJbJ*/G$9b-|k -ڸ )0|RB/!CJBɢ,~[mk [?.Cggj&>Or 2.7hӔk$2nQ|Mcj*#J1): $/J֭kR)D6̑:z?#-P [T2s>1~ ';F+B%S~k,c4 C*lVk,[83!1㣡(-Dq1"/:l /IBe,d?1@pIBU. 8.5o1 3$؆jBU9sFo,.$I IM0(B56<gá 5җ䏔:: )# I}_)B&#Io!g('Kќ):'Z-19 GϺp)/@oRX) L/IBφ>"i1(kJ: b1{fc$q)6-7ӄpR A?SҰJ`) {-[}vX*6 *8k :"B:k܄9nR&> !s6SJj&?ɑJw* &m{J( PGR)Bo';Ob sR)'?ɱ{ %.ۦM᱌lkbClxZ8!N߲JX ($I1nc~)@.$.[U+Z,8$QR&>~-FlHQB/ӣP:j&4RќjBc,֘n 1МR1[R65mKnc.Ԗ-~ќ:Z: 31 A0HJ(Ֆ 1pJ2\ Rz5Tk?s8h " *3ݶRPUw'4 >McR#*双ej:3$F#J:x:'y? :wX2y׻ :V%uqmMc m:QpqRӲ/TE\$HB:+9wl kR4YlJ*S34S#0{JB4 s|R=lDFl4J&&&&/iv%>s*:++]0y/wͰgj+@ќRV^09eE)*::#&Hm)IMc 2/{me0R':I-AmcR):1{IB.&9㓔/9_ 2շ&7`ќg!: .{PQ ;yR`5`ܷoK|Z(tѺm~k-[n?+VƒR 27@|/d)' :Ydr4P|;G9kҔZ7?2ќJ)aG%+k [/7G9ciJ< T9  Aa/k,0J%ҌJj=N)Xr 2*/ϤJk'IA R*6҃21o'?I,[xW/c$ҜR'*$Ieq#qM[*K7\&M@3,c[6 ֍3kp'#,( qN['5|qcA2ܷs+U}1:W$XqKJh6 vUќh!⼸!t¦mMcR!%3"1 kB7(ʹi $c[|k9.%@HJ&$Tl)Jc$6M!Mc)@/[ 9'${(9q!/'mT, [ `6ehJ&%l1ϤBb> ӈql4%(K`:f!''JBkJ)$|=, JB '8O䳽,c`(I2@m*:9'ۥ :^?m$ضМ)3$9EQ)}*1'O 2 58tМ ,Kز1j;ImiJ@I7) "I$Mc9‚©.ypW'/2[",\6xnp(B2&I<OIB_/ +$PHB2|_F(:W -HemќJ+6- $11 3$yD4IC+rRx^%̓R-vRM41b21{> D>): *ve'kҌP|:N17,?zZk=!HpIҜJc,T1Jk [z**Z4}Q+Bh`i,[$W#0|sR& #1R7@M)91R`:۾sR(@$3rkRJ .0cޤ&;p)&ڭmkR)B80ap*:>k?c&Α2R4c7jB]* ҶmQR* ۶mQ-c*U*r,=L1 .,V !1Bb=h)ROa'QMkJA*&΀GP",9'$mҖIJ9-Y.d09j;)c`ǒp :()|JZ+?L(IӔ,[ᰬ+[>0!0|R @<cq262T۷ҜKJ% 2N#1ms :*J6qN.0 "/ ]פєc"D2=sR B.Dr1*(hɶeOk:$A mc [ +2F.\01z8cb˖Ũ! (ŊJ` -+ܗQG7j+(ɸsJB1S4ES):>?>7 \ԚaMck:) P P)&w&vMkJ:ʀk8P:7FZ`/1..*)]ORU3J2B.0R7h|R|&S0D9PIB+;*.sI:*h/\4Dh1?& 1$RG)z7? ӽIJ 8UMnR}) MC{R*۸m@!-ci1@:?&MRiJ%=)6`s.۰s B<sZ`c:,Y [PT$kp0̓ [\sͷ=3&L`SB%=(*YTncc+!b8ok駟0۶1`DRz4OCJb)3 FmkRK*(`p4 Ss7+J4rD1' ?UR)2V)AB'g>=,چM98\3'Iua2:7<IVt3I2 Q1-[U=mb93/N*1jjjBIQyokJ*36B2kJªU/$ˆrJJ-ږu"09W, I$ Bu 98r# :9fS :$Mƭmk [,Ӿa"%OH:j:9tw 8J46#G͐3R62P%Gkw(k5/RX87dC񀱔1>7tkBX.GФB9{h)B6( Qm۸|k( e9:(۠DG9S(:#!KMcZ!)QkB7;'ӽLsa:#*GRw7yA9>R{-I ʶl%! φ*ܶmoZϪU>ImTFR.?2q$mOJ=weeR >0?s)~(2*\;k)U&"%1)#*,ID1)/7rgRG .3v9J:o7C&M(B{ 6((qRp% 6-cb *r!.0΃)*:Är9%;vScx+7K-S" .5ӣpZ6p,9ϤJ,۶M` s1*h432d. BNRkh}+ۆmq Sb/%LRj'8M0jے1$Tl).JA" ۶m0!LcG@$ӂ%Lr >";vhӽR`8Iw8r 21'HdIR~6˵Q)*ɏ:X$TiBԫ8 l<9*0I$sB1m琔IJ.!;-cA@@1FI漱KJV%39P12QR3]edp%!:*.2I$mФR.U-ɯxȒD *Jp+ڄ >R 2~8K@*1'+rRdKmkRC(+= ќR+ۦM!*2h@thR>3!Wc1ќ-[R_* ۶m S;3Khќ9EOlӲќZ},ۄI>0|R@7R&)h608 Rn[+dh|k:(mHk-[>I=\3ƌ(B;ƃ1,YJ},fl)NJ- )mk1 @@6. ͍mkB,C6=/::2)IH&MkW1IрR*B6?OHDzk:cɏ-u;sJ#3$AO 2jj2&I@r15u"ǍќRT( %8{ [r7' %1j;s)HS97 /p=Mќk(&M!7pZ*hb:liR2۷mpR+& 4(mce9@@9zs 69rp4k+ 60r,c*JR=n 1jJpD eRX(0 cZ8$b(5.5)>'ǹ'f)&2'Iu [X/c0S2Q' 8-۪kќR+ ,-c,c:_ljB/&y)IkR2ʠhhҔJG0?o0RU7TzWqf),{ [U+#S>RjJ=O 2/R.+N*siJz3PwMF/ %Q;sIB**`> xp)BKᱳ+{>-ӽJB _$~p߿ӽФH.<(YxqJp+8$1"kJ(B5#GB69MOQkB8P)x1cc*A%Rb;<2)z":JJs) W;kMcW8ss2IB/7/ 0Y/tR ,ӰEZk{8STJ@M@(B<  4˶RR& kݲmnk-c1ZJ-OG:.B&I%&:Z I [X^WU+LVl"kkB J:O᳽f! 0II+cU(I IҔlk=,۴ɓ2䳌Rjj>SR #0,AR7(w Jb5%C&̝@2(:'I6J)x1Rp{'!M۱;mkMc^WWY(&%Jo[9>R/=h9tkr*$ (0Q,[**JA{Xx2 [aX<QR-Z=,{+* Bdi4D)/::TP|u}.>=+kB;j1V2R6`X5PmqZT}* =- Rc'&ۤiCМg&'{$β&)' =Q`4ypyRNZ_ޠ26#0g*:3]ipiB :ܨ2FI!W -'/rkJ%6n$) 2`8'@ܘ${JU3!q;F (4I${J1SJCg(B-HۻߒMcJ2 '-#.):6ȍJ/TF:.9:ȶJ\9u: A3PR$v/O5mJ-W@sLѼq!>6Eܹ]ߑR#$ɒ&k-c?t5c) ><K`ȤR*:',xm 0|k :s Rk6.$)E51Z(: R( J/>MȜ3R')k% ӱP|+Ӯa"$Z@>y2 [W_r:1cQ:z:tXI:༯'<.A0k:?/6m0Jr9%{R9';s3kX/9j4Фn[ɇ>.ی0|s<k4R>,/Qk! ۰m5|,[ *^$)'F1K.7zZ 2Rr"X..J %pJ4%' j.ALPjsIB'8Hmqk-b:8)Jb=k1r [bZ-Pb:n [y($ d(s)B*X<c9A':ӸmTpT]W)KJk A)R&iZ.@j~OR& ,˶iw-kZ+&$@Мj&+ӽKs 5kxW5@{F)%rבmkR_"?4T#.):?({Rt1bG1_{) }MMcR.IfZk,c<!(B32 :-3ؓDT1 6i,Gr^6vNJ90/0S^e):>;wN61(,$DN+:+9kϟќF.)6M$R`8L2!#dH$ MkZ+$A$G*nkJJ**J9Γr9 *K&0 261bQ)::1h IP:'# I0B',6M1 2 =J(9T,[,j$9:2*j&Fm[0J:%ڰI:<ΟV29+”<'JC 6z@q+c6)2a iPk6y<)MJb)i۶omk S+i?nkR**J.Lxӽ$&;92Z)ܶmRq [+ӲqNcj+1МkI@'9r-[S7}FRU/I*,M.ҔR/oj:`y{RRar(VmAmkR,+ ;۶!Mc1@9|1&)ƖTj.Ϥcx*۶QӐpK*hBd‡RR&C4XعҜR*-ךlQ#kJ**J=}S'B/MԾic+ڀI:Ҍ c b;SRiZ$ tH0mkR&Bڶs-[_=#Pq)z .NLi) 5/ƘS:^ +?P41ժ0mu!5$$thJ]+$0iB97jbS!0kX:&d-QiJU 7r2<2JU::p#8!+Iq|)0gS3j5%z*mĖTo /"MRu*k(p;}􇊕׭Js&dI %QK:z&!R4o' 6Ai[J%R\R)W2$bT#! 0fJORx,"!ԒoAojݸ;ڸ ױR' :"O1.jjj<9-Rxs*ԦMiJ- ۸m!mc(B@<3iJ*!&JA5[DS(:&2B2%Im[}8̑| 28IjmkR(ͤ@) :>{:(x2nc-۶ ,=0|R@;c!63R6ø0M??.Bb8TgTq96:vٶ01`쫪?bM9gR+Imk+U1'@NcW-j@?%J.:4hL1 Sɏ$LR0|sHc!3åsPR&4RvҜR-9 {-[p7[SNR1*<VߌTk*a;S0|kપ*:3k3R>>5[sGQK:.+c>ȯJp(8`Q' =Gt2nc( $ $"qR**J9{DrRr&P"JXc%*mjJ#$(УgԽ1'9jR &%k"X$4I{@%mƔb +2*5,cH@J8QyGiw&$> Z*4Pƈ4Kk,on qs},M(Q|Z*`7|%Ag霠.|*چp#;5sbb;I%PÎ{?dV)k $F8CI$/As>j2O֥ s6(}3iJx&۴b3j*SZ.`e43B1Sb@@?Ī֭ZWr)-N!8<;p2jBX&9XkB7۳9 :ߵ2Bرm۱R(# MR_;ɸ|r-[(M%|iJ@3k$4R 2'f /$.p9l)6ќ)B 4@,6mќR<}=Kc|RJB'2׷Qk.R:.=R.jBh˶aR# m5cb0S:1,1q1.z0mjФk$ L2-Q|t<l:KPsJ.&,Z 3-,[&4#'n-Rhh5RRiqx)a{l mk [)(!B#%):o?8 EqMcp)H/|{--۰I<,Q|R @9AYqќjB#vImk-c_-21s*:Jj:ITLc+r,Ț Mk7_9\'|RR : Ar۶R&".9McB@!P qj6'6m붳B'fH\qӌUW\p(ӌ+k5ӌ5'̠z£s-6I"3Z@*6ǵ3SZB$m3LcV3=!G!5I2ۍPZU7m,eVFu9*5ۼ]Vӌw*/4* |:(s 'a5eT?-%T{.д- 5{Wu;ܶ>h4Lkxp-XЭ2R .,0"TKc B4AYt֭j69$[mԵ2iIG'uz9T:@*c&6xm۱m۵Ҍ1-S"bj8Ih9ksz.r.0):~) |!)I [W]u4ĩP98L**rќ1x3ꌔHJ',Hm۲/|6t@e1+cr)(5n/kJ$*鐢 Nk cUU5*r9C1e ./2#WiS 2 6RJ'/4G-O.[j:9rq:z7 8L ::'0[6=iJ'?/w{{3QN[**H; SR* 0| c@@:sa2R/>n,YR0ħ: S-4rS)B' 1mׯmQ|k+ R$Gpk-߿:yGlRZ I8ω>VR|)vBL [-2SfKR:&="嘘k^,۴"0Jj9G/qJar(Hx{ [`($n4mk)@0/͙:iJ #O9Mqӄ-WU"v|u($t`7%ΑI b=\,#)=9sxRT;eHKŀ:&-g[vkR*<]NFhє1>AxfeX'..'ΪmkR)8d@l8tE!>.&5ۖ$mb)$$єR U;9*/60w*tksb@v`єRp1-359k:AY{ RB$O mk [j,=\((B?;؊֭,~ntUU?c֭*c<&,/5m3{`.x#(T- `=)Js&&d%aT:7T<ե c<>pB%I*?8|*5ӽ*:p *>FhّR%!ڶmkR)'eМjB '2$s~Z*>|ú c 4l{尜 [XiϮ7=Mbp1j 7 a`ْJp*4_S:1Ѥ)2>'!۶pqk, ,'Q|Rʊ`>8v2 [Zs#AHmk-c)"& *:j/!Rnx<AI Tk0$()):*8̔1r [Imp$i6nmk-c) a,)mc)@6'S1$ Msk%(۰i1P|J B< kRRar%kc,[((/*201j:!Ftkq,3A۴Mok;ggl2J*=ر0R,P3IM{ [ o<nX>1 3۷mv„ 42(-3eZ@4 a++&BuӌUU'P $Rյs-p)rhx91q?Ň)+ $1}@Fwќ1&S:C&c:::9+ 'Nee1-dhsHB (3Lh ZDFj!>mk [:l\խ9?''',B-)4{bBB5D?P6?s ќ97 C`$"29=3ږ$JUt6\$N./*j-#{(/6!>tksB:is֭Jk'#I$eT86?F֭ c&?òmٶVN|*=)3*kB @V%w֥p*mmQ#T*J;\3cb&,@Rxj3HN&/1j7;d Q)'0ꋈB$m0|s-S3훺Ҕ-[7+R\$ Mc-c#"a IMcj:@0lB90+YR ப1`D)1|Lkb0&n6&{15 NPHJz5/Mg@r(>D$mJ:23S:>7i''Fr*2ت.J} .R-)#fz)B7<p;lMc*ҠM!qR*@;i'11Ҡ)ӴMmkR)(#<1*:o5I9mu/"Dh1_ӌUWXi!cDӌ}2k户*c&",o)`(۰ -lc@2{|GյRh...6AlYI-2 Ȉ)k$ <03 k`,/ &):Z#Ҥ 2kx8\ysȴ  12)S*k@.9IÂRR\w8kJx,!MkJ@@H2\YV [,!mc(@1kVҔ-e_Uӌ/?2O c*#hUsw9z_ k"O5ӌWUU.BrHvbj3Z Vv{說A\sNA֥jb =߹֭S*B#ɚ$TObʂ;ٚJ`5x۶mێkR*R4"J>8#kJ :㓄R^%8s [rl,?kJ*B+I :-4GIL0rG81ۊ1kh. QRʊ`5=y1 [sQz7۶m{Z\*#,1 B5*R;k Lj1.%hmcR":c:McR:\F9/7'&(Yn 1| S#"(Q|JJJ2lӽZbpxdHI-kZq-H*{9*j=b&J .I*:m1kp 1$?Z*=FҔRT. ۰MoZx'X<' 8uӌ\"3 Inӌ%UU"N" \3iQZ')5{x%’@6Dub 6܌۶x1d@d@js$`􌒄+))mC Uӌ_ :Xulk$$$$hvaӌ1˸p+c$,6d֭Z>4 hSn۶Ҍu=I[:. z-eNd!֥kk712Zn{R,ܴ &0nkjR*P>pm8pA06>'`1j 5Ɩ1!*8l|2h/j9Viq'V.u0F5sM9GiJs&;5۶4ӌ__?8k[Āb.%8@#@*s n9jإb&&M (k `>Tv c= k{.9㓄*kz> _l,c{l3}ۼ.kJ @*$ؓ1j 2 lS1$mFI0|s *B,0"ҔZjCsws B׮7!%IќRV.雺I{1j7t3R5m˲Ҕk^4 c4ZFƮ:, MkR+ &mk9J73QJB;2 :$Z/mk,[誮%X'k [վ;7@|1(Incx )^-1 2*1a$ؠ$$ISMk*B \0)"4g1j<KrtP|# ض-ь|=\FFs_Z8,L)0iaK@MkKJ ( I!nk1 @6ygyA3ۿmU+(q ,k`&#>Γ)sZ2/빣 tݺ-R7dF|Jk>>&#(0150t+z:lĦcks.' iJj%$ӽk~;_Խk #FI$*k./OLk56A+sK֥pXkSr|')Ts**J3֭kk?5x1SjJh9{CĺQ B76`S$E{9j3`g mҔhJ]/hp9y+&KEќ9덀8 KGu..,#0m{~1xڣU*k, /85{(~>?ib,lL5ӌ_/;ƌ׭b&3k Hub.;h۱}۷0j0Sv{?31؀̦9*lٶn Q|t] ,=1(ҔRz8S*BW8I%h$IR x61jBGg5a$r!؀0? oJ^/4Iw 4 2z:4Ai1ssꦪ%S38C:dR7`؊qJ,v.u"$mJ.y(C8r)>*>3&ۖk+^.m뺤k ?KrI:k0yY?qkB^.4"1G::1O K3 [. mKk_/X{0g1JJ#@ $g))@$98z0Ir 4[Rz9I#Kr4Z5wpR#!$CI2cb)Z.31q1/?.QwrR\%&ILMc [%+#8\>d2:::;$ln3-c\+ [U4[VGI1kB>'%BJMcJ# ۺ-cb=dFT9?')I@0IqkU-IMncx61 [rPSQ$!ض[$nkMcWWU*38?r91NOr5```@#Hӌ#!H$@5q-C6dC6du c,x5*ydaR5:69Kk$M3耠 8{TKk1 -Z`jj4ј٘arsXXx+C=1>PZ9-?S#05srp7p ז>}§Kp3 cd+Ā B+&?9TLk 8[1vl k67]Ҍ\'&@#arcp :)?ӽJx7asZs5$gCsjB-9Ǥ+SƖmk"j9|n [^7ysjܜu 'A%ubj'7#ɑs)#,"js@9 V/ ໱7ؓivr|x=إ*k,e5=>?7?ե+k&ۺѬAT-rjFӵs&=l$wI)_ -ϓ$1-0ik$c$i|sr'bB2J>>9vt} J:. PߑRU85):>64P|+ gҌq8Ns{4TU{W;8>Jki 4$$@ṽU5u@Hs0̯۸McR +mkRJ*-HYRѡ*ObҔZU/#4IB*J?8ۺQZ#"I$cb%" ",{B1'Hvqt [T*I" Jk*U3HɤPrRmcj4'}| [x11-.j:9rR\/?0|ZU9ZFk 2.'&($I$| c($I$|Js9KX2Z(ymkJ/ж$džkR/*8Ȁ g ` 4I"#mjsU5I$mv5nd{*0'Ihu*k^ 3ux4R*k^/4yb"6I>AJ֥{Հ63sR)`rJ&>8s)XhRB.&&6؈Vӌ$"("!js@@@@9r|@< 訑RlȈh5#1~91ќ:+ 61mk1;c1V(B8`9B1,>o2qp6N*,Z%k&>;ITԄz5!n˶^/1e;v{>b36Jv+c `7[ӄ)Kkz 4ɀ` 5*k &,7۶}vX4cTFE*k>6Pܴv2 ` hk&$A***9 Ȁ ؀ks%!"M:vӌ%@d@&d̃3z0mk)1gsJ:**U=!41$mQ|s.))t*k@@@2 zJ(! hkJW)"!"(ls 8G{Sk\& `;m0|k"**3JJ [GGG%vmwk-c]+)"!kR`7ulR(#mcJp :u\k4F2)''.&2 mK2c0ImK2|UUU6J#r@pMc ["&T1R\aGk-c?Xr : ,=@iqkU0\/435: 4l$!ܨ'@ۖ$nKBU#bke..' 'wpg2B3~pVӌ#" I 5q)B&Ă#0Js5ʭx ۖ*!_74|*J/ibk+ G3ҌH(2lk*R.$#8RR>9s1rgJēZ.Ij72:I>ᖥ kBz><ԽOh=.I|C:z09L0~9/N%;pR-OMR*@`i)&NBj1B6M␌%!j/;&NױZش~0WAbWn/J @2٘>?uHJ"ɯ2$Yrs&b*4ӄ) c 51P͸{s꧶'25=5c@Zθvb84rM"Hvs^/S,!i$إ)s2@㐷bn)@wI?U{z>ح{w/$mvsW*@/䔭lk85(;Im Jv2I" ۴MR*(T@AF)#"H$I|t&"!" tJs`8OmRRT&I IZU*I"!2)I:*_0As|TTTT#(h2|s***;KKTR [GG1ܘ$mjJ_4l$N.H*5$*:3I@2JU3IdFPeRHB'(7?*}{0|k# غ-۲-|t+ ԽJf&&mI?jBU.IQ)U<xQ0Y'qiJ6>$JB?1򡘂ӽK:X*+I|JU9PdӽjB.7? B"$B곽PB`.3(9USԄ($ &4Us*P% ɓ'յ+kjj<#ٕ^Еs*r-vKkz8b㔔j{r(0$II" Js*U71 TLk)B#4B34R<( 혼nc.JJGs c7$W)2)")ks``@8qGgt4!l SscB+=)8@{J:j2FM{Bp);ܸ>I6\3HJ_-:O˒):%.$ P)x,UyR,Fr=mc(B*1k=uG/>'4 m rumc@- WqUs%R " 5*k@/ &̑@KkX6@)J*Y c'!탉<-3Z'Mc&A඼i۷(־= ץb5ivӌ*< k%*$ :ӌx$@ @eTs<7؊دk [, gk-c?u0HY$A'ܖ$oO[U*"([K: 9؈R#!$I$cb)"-# 2:= cV1/ ҔZU5Jp΄lJJM'm-cZ_&B2"({9:2)ӽMcXXXX&$ #lMc [`.S6U:<2iJ?6")n $P-[~.+}SҔZU=s2GϱFB&Ϫ4 @$m1J4'm{ [W2`2F[0g..:5 #)nc6isW671)c+ڶm@'k)B.O<ܟr::+vhԽq7i|ks"(:s+c>-61 i,Irs|j<iT׭j+: 週mIӄ^? Ƭ t)k'f3 *: TZl3B'n#0R*:";Qrk0NFZf,c/6*I$sW&" $Is@@;\mM򷶭sV?5IBRMclt;uqPhR x;IJW*0RI<siJ?$I2խB_8$Brh~7ٞ$5 7G`bIR-/ j0 B '?-il B5,XGs&74kb%1p~1kkj.62!5sh@4^6Isj_ R!؜m.(1:(Z~CA{k.\/ۤi75bkB:ǵKs#/X 5{AsاIR,3fO"HO)*' AI<ytfR3Иop|-Z=?lcҒ:s [+՘o~ hk [.;C$Ҕ14ۼmP|)zҌp???9Ȁ8Ф*:k*$I${RՀ/35BФ:::8`$1p3[+I jB_6$(М?@9ּڔkV7Кm۳sx/Z0ES:єZ&>4ۊ؎kR#"I$$cb+C:C3-ќ)B6k, v1qs??z9XL\BO6 @%mМJ7>2Lq)o ӽ?!ϘtŴzz$$HdIӌ) u`W5ӌ??59耍Pks# ɔӌ3cEjs,<$'3-ȤlʠTZl)C1r;М 2::28ktRs\\\1zRFN-O.ێ c UUU1m(DdRJJ? }kR诫)8Hh 1Ǝ* 伀MJ-R0ح#)4'B1irkk\.7cI5ԵRb9F-npR/ʤSF{kRφ>4 2nskRx+C!$/9z:t)kx>i$dC.{9zj/ tU+:N%5mk X7ǓG֭s[ 5ԋ?|p'ί`<Խnc.89􌠠hX-m._W+re%2 [:87h+s(uaW5ӌ??9Lh2 [Oiq$D@mk [{4N.1mc9J@7 Ai[ tP|" H0p;\¥dtKk0-jBW/-$иI 2U*:d!s)*%tm 0|), O4p|?JC?ќZq-X #R U2O.\ӽJ?7ANxH$GR1Ά3n붎kRX+ᚨInkA@6wpӔLk#"H$$|t)B#,! Sj6ƱR( mOLk,[/)2:k1 @7Z@-[T3IHnӔR6vfdrR˦>2zmk [.i{vfs [o?7NdÃ/AgZ1K: '0 (41kx06ibvb*x-8DGlk0ܶI$Z6*BF]甭kk 5&6O3Ks,ʖ@ `+#$ms*UUU&O 3*BmX($I${RU+x@Ț0BG% %{J; ڠp)$!Xvk۴mkMc~VWW.!)McA@@=Y󫿶7ƀ= c|d~*!{JJ⊾z<ĥp*B55Lb p97 -GrqR^4pmA#!!, 95lk(x52Nbk/:ϕAɒ c'-`J!fU{&+  9Jkp>s!B k1+Ҷ qR `75.>9@Rj~8w>yqh)6R) =O#[r)`3lR# |t+3421J76OJBV8㓜1 :yd=JB7>:2hQ1j>:r~PnR+u< )s/ܲ# k`;O r-[ZV?C2/ 2.:(X'/R߽5<)!ضs+c1\\|rB>&;0}ێkR .”Vn2pJ 8Qt/ْsR o?ߘڡpB٣0IO`{R/"0qF!"6pw:/q|n:w/*B-21˅/A: r $0|JU<<4{1k1 ZsR*^ ;>B9)<aXYr׭Z@E꨷*k, o~5ӌ/.?!U kp6>KҶks6`9(v.'6U5ӌ+zsMcj,&<U "v/|) :k5ӌ?0#&{-[:<&8Uۑ [v3 C$I{kBj;OP3hR'$gH$I0|s5@rJ*1|R(@5ѤJB) M mkR,")mc9@<V9R$ LR$I20|s6\C=\R&<5$rOJ:/,NB׀/:Lr*"!.*:J7Z'!7YA"Ip(B-:p2\2IB'?6!,k^)pdVdIQ|k*C?ذGgМ [qiO# U@Amk [/( uP_;kMcU4h &IB&8NSJz8k&v4Z-5xPQRXyo$YRUImk [-Ӳ! Bj<HќR`&Y7]kMcWW4Kӣ:/'>MdQJrb$dh&JmkR# @!`sj:j*J0Lʑ):́//xќ1&V;o|ZU5k簜G#DI$ksJ,!$sBJJj*1 9L}ۑIBV/(v8AyPR#mۺϏPR2{ %p:Ɔ<J2%9)@3?舲ӌ[Xxx(m6 5ӌ߉8 cUks,90b <fؐ{)uv>/7 %5{;&ϑa֭Kkj%;)6*Y상)G#O%Xb-(-'յ-cj>: ykƫRx'4I sJ,)#<1jA sMc'$I1|s :9\(ӔhR:<RєJ)}INR-U7'HR! A }Bmkz/&mpnc*`;lќJI$fIImkZ+2-k(@Ȁ 8F)q2Rs3$- r5ct0Rpm(IMnk,[U)#!,N:j/Flik) oybQsK,R84ќ):*:/2 " toR*$M=mc26C&I)?j=ʹ2cx$Z-I0|s~,1fS>, SƦ>-6N(&o48ܺ aҜIB{1 E-ФJ᮷;1bqE)><vXɒq9'Z*4"AФ B.&Q)6S# 179uזkB.IB(1Mc [3{t pP:Ɔ+n|RU6BɥTHEPe) ::;(Oׯk,[5 A/5pZ2R~:" iI21_A\bi쒵'.'*<)zv׵Q|3arZ[ 4)IHR6ض6&:v( 7JrҔe)9\N&~ (B7'4/贵/kj:[PSMcxX; ev䕭Z &m$5sU'!R+7ܶ>Omk^/9NR/,& r 1 .,Ӷm'5sW,&-h,[z9Lӽs`9ؾq [.|.͛MR5_;e͖2b>16o߶Q|k*sB$!B+jj<9R :&!mmkR%)2,nkBJB:94Jᣰ'NAmK0|kx 2R?2>єJ j@јrR\)i.J`*#$`&rE::.3r$" J)"QNc**J:Ε8RR#6$hIB{9kIB 0? %R7:PSZ^%>!&,Y3kC76|1 :OB2 :-;蟼|J|.9JJB. 粌Jb:d)$iJ':OC)ڏrRby;h۶}0|R)#B$GҎkRj*>)x̷Ư1,im׶MkJ :-cPA{:IiJ18 +Ru*8!mc)@@=R1ڨ( {RU2LK)B% ޚ^+mk-[U3SLESqiJ-m{R4 إ96ctvKk<,$,{|##0hc SӌZ~( P!A '1zfc%Sk$<0#m1|Lk ,T6R2R5#r&R(5`ΞWiJɪ1k|˅ rӌZz= ۶_|R31"-pg!z(" b z.:~T [zW2\uĽqIB覯+inmk,[+!*Д:jHwiqr1X6> rJsx:97r [pZ}*wm}hIyGӔs,m Qk* =t:>.Ho۶mkR!.3 ۴М*: o>(),sB/mlc*.!24JJj>Ac r3Rx8lJx{#H0 mk [.S) OJBk@`YJ#  6,0|s2ӽ-<5QZ8p-&mcФMcUVVX* o;vnk [:J334r.;P\Lc)Hy$I0|s&03PMkfJ,ۆmH.R+0aBg:';Kc2&=ޞ>N0E:!8*IJc'!A$Imc-[ );.!sB b/"1F>87AyGi-c\\TT#[#&aMc c2hҔIJ.Iܶm{ cUU=lR/7*&H|:7 492M [U1ۖӔZ7g5ҔIBA|L$ Pe)3{6sJB2'; .):nnk@PiPZ>gʨjB9]6N0R~j/چMf%{1(7&?wA)B 0M942Lq*B*qi{Z)C HkjB`:#W_e)(`ܹÄӽB :O ӽ-[x^W$ MЦMMcR) ۶mkRj*/X38 ;Lzw3 &!#I0|k" 7M-[J:.6):Ri~%%ٲhpkJ43%kt:75 s3nc(B$KrOk799'sk:z2lJ(۶m`mkR&8Bc1{>=۽{3N[x39 [;\Nl3R>.;۳s1!fӿ-N[O58rD0|JB|7ܮN:z 4 Fb11kB7,$A#ÆIBz6{@(R667G\J2q [h;\3t:z7: -[Rr->Z65R7-۶M9R*8[TRz7?5z*9PّJp$ XhmMcR*# J7*aϐ,kR*K8T1&Ah2%IrR&]6FilR_'mxnkZ+7ȀiJ#( 2mk-c~|4s0[{jJ&#VHtMc [4 qRGG0fsMc>5bIB,kJJ/"Wu>/F;d )0!ے{BkJz/99NBќiJ3 є1j>ќ16!ceR 跟6n_skJ0{{*Jφ&%ҴM=-k9 :6L1o:k/2sIB-@kRp?}c :6* 6l&R#!$Hɀcb)$ $(kIJ*r?kX9R:x5Hrok51ќ [nr8CɑRs)NR#=VkRH**/4?Z1!&1Pn)#ITkb&%ҔRj6 E RIr)vnmk-[j/?21NkB ; F 4iJ͡& lQ|t0̴{F [χ&9L tZ$TII0|s) I MQ|McJ**9i ͶdQJBk8X۱pR)M۶kRbJ**6',6u 0|k , 0!1|Z@,CJ:ɢ-}۾k-c]7-B#gj.?~Ɠ):.:`طMP|+2R$Asj*+ J2Rrω)asR)D;ܲ̑`B{?#,Yp [T2{9:~ .<F+p B,ceNk c<K#1SdEVsMc 93!1㣡0=d9"8:u P91d?1@iJU"8 85o1<d$jJW@qsZFp'!..4I Q0Rݽ;INC15+\\6}) 5?v]0RU68lʶP)+B$UkJKJʪ6pipR-9Ղ<'{1::7* JpE2S!Ъ1%3IAbI*B BǚpJ,RRqsjBj*b9'K@r 2Z <)8*YJc&+($ {R/{*f?$?o *rCdx9) )̱k,۰@3FҔRj6: Rc(1 _B#a̓-[S'('):/;;sJ$=-|k'=<4|kB@1|ns9++]=><{').7|қ$g:: 1INr_jJ4I"p1g9$ojJՊg6SF:Q< ͺJj:ۤ]PR- l1IBφ.(};(kJB b1{0fZ$q)6-7ӄp B?_М :ি)ii{-[}*Ҧ *8{ :j:k܄9l2&> !s_6[ҔJj&>Jw* &m{B( PGs :o':Ob sR)'?ᲄ{(ڦM!|J`=lXќR>A5{kR## ̓R-&r:8E 5G$Tp1:X(4~0RR0IRN2mco5MZ>'#,( N['5\o[1ܱs+U}2"=!ԣEIBj>;U$XrkB謖:vUG#&H4@mk [,B3ɛ J7:DDŽ ,}0|k 5;%@IJ&$Dl/ RC#M!Mc :B0[ 1'&t(9Q!/'۶MT,iR`49fR&#!b,0ϜBb>,45G8KHJ1',we˶kRO))=, J 'AI䒽Lc`/I2mФJ]0'g!;<e$8 22ۖ$IEQ}*7'Ķ/ : 70t+ֲ1j<IqjJ>I_! 7yNα)j4_RW;F\e0J?>#@iMcB/{%^[0EPR?*& k [7{^A09*+4|HB_ 47&7`) h4{b9">;y˶ҽRo8۷'ˤ{Z(,Q6-z-kZJ*,0{ƒq97@|/S1': YdӔk-1=`IJ8??>5!*7།McB' p&"UMc*:2AO1<Fd/)..+i$mcA4p'.*:"2T&~RIJ <#'I<pjJ_/(2$ pIJ:_AFIBU ?5'@$YnќJ+@- $g)o: 3 +YќKJp( E30M{Z?/jvy?RM91k3g1{ E>)S) )udCQsg>O*6>xJBj<LٰKќjBc+G k [{)*Z4}Q+Bf`iTZ'ᰑKVP:/ #sLc6:M)1Z`4۶ޮsR#>kJj*'Π`΄&5p(!fmmMc [%B60AjB?o?c&ΑSRa8JสU* ҶmqR2v :/g!j<IpWoJ!ɃtS21ªW*$d א 2t,|"0Ф*:W, I$*:u&9bPf:jj:3Pw9B47#GSR>5@n%Gt/|\/o5䰌,cW^<C`(B{<AJ:/GR'_9{H3J6-HmQ|k+Mńe::- Dh9S):II McZ!#3QJ:75'+ca3#*WRw4ylAR}.I ʶl9dž*mRϪU3I.lDF/HJ(7>+/$mOJ"6oeeќR .0ַ]0RU5J22.jR?h0R|,S4D9PiJ3K{.sJB*h/S0d`ќf):& 1$R)2? B 7~KJP$ IhR,nm"nkKB*B:ܿ%L2)J%<)6`s.۰ҌsbB<Rzc:u+Y [PT}' x 9Rs<S&M`s!{ >**Y/|a+!`8 '2D-`3+cj<ORb#( ۴mMcR;B($Hp Rs7%(4pr!' : R*2V(5'G>=(ۆM93\3'Iqa2:_7=Ivt3I2 DRR<mb:*&S!;k9j( 7ּJBV'3Kp16x،QR3\edp:*.-#Je[J.U&ɍxȒE "ےJp'I?R1~5K`*1'(x HkJ *= rR+Ӧ !3 ShBltb7!{e1є-[PZ% A{ S:Kh9DOlӲR},ۄI>0|R@>GJ)h60&IPOS(fm|K2"!g!cmkR*K6]ƌ'B46,YJ}$Tl).B%)mk1(b96'΍mkB'C4Oe*:"6z?s9v02:s1U.&H11W* ,Id!+=rg1h .8uќJ`o4%3&LIB_0 (GlRp#)ך cR@*,;8o'*=ΔRg17 <vS0tp-7;,탍&R5ӣpZ6p,;J%#e)|)x1S3. 7N]rM[,ۆmҌs(C5%L+cb'=M,*Yr+:,Vh).JA# &m0!Mch@%&L!۷ #;h߲J`:Iw8r 2/@m S^8˵!"ɏ6X$TiBԫ4 p<9+ܰ ۔$sB4ҜiJ,&{ [U$#R.rIJ8~ *PR>)fN*sIJz4PwMF!& $Q;sIB*`9 z!01K${..-jB _"~p߷䳽@ 30Y)tJ:x,X.Q#kjJ*J4#B69MOnQB'8P)xts+a%b`9<1z㢨:JyoJs%gmk-c9tDs2)B/740˱|R+0T#fӌRz3CJ㸮:sM@3:7 AuPRӬBMc,czz,c1/ :.:&Oqf&3Z`ْZx\WU#Vl"kJ: J2ᒽF *II+cU&Imќk?U)I$ Ҕlk9IрSJB=pNHҽJcɏ5t;sJꫫ(3AKBoo7&IHR16+YќRT#C%8{Zr7&Ұ %)j<tX)XS97 .9Mќk_06M!4*kkAlkZ8ضqZ$R-Mc1`/1j ,v)T3mc* 81rZ*Z> JpE eќRP$)ɦmk-c8(`(44o *+Ŀo'&2'Iunc\0c0S2Q' 0/m汔R#ɐ,:cb;˵k):.(yiKHkR-Ƞ` `JG.Ƿ{/|RU7(TzWp1$4I${lB,SJCg(B+؋_Mc): '-#.)6J.T&:.7:+IJ\4t1*<mOJ$~&O 1QJ-W)f ؒ!7UJ!dӭsmk,cU8t5l) >;K`ȤjB&,H6{P|+2sSRz6%$)МE51X(:$[:DRR'}7L7˜9!gSIsc&ܾ"|9 @03ФRZr!0-btp&> 4vb$q1!%<^IФ*:''6l PBr2%{S1'6 }3cX'9j4ФN[ɇ7'=|k,2QRJb>[iJ'#0,A.[7/ qJc:3&˝@):{'I?J)x1 [PV{!mi4Mc [#A%IBo[3>R/=h!toc)$ (0Q,[**JB{Xx2 [aX<PRt.=,{ * 8lXk3d)-pc,=/J *b6k1X2R7`\2ɴiq [T,=).Rc7,ܴaC'6+r$γ1' DR` >{pyr2Rޠ;6#0)*:;^ili2jB86Ib)W 2'/rjB%7n$+ /`8Q!ۘ<{JU-;g 2o-Iӄ_U],S sRp+ 0oe!*><w'F'()$и М) 4kXϓќ'jB`'LጏMcRW# КyNmkjB*oJ5ϓypr1 $K%Q!21cP9z>4)X`ɒPIB(#mB')6MQJ 5J(I4Kc%j&9:2k**j#Dh)[Ф$Ҡӂ):8Ο R1+ &K:(C5K`qR& Ӊچ/n[6{*!Mɾ *8i ,cJMcJ**J,L*JӽB&59D2 [|"6nS0| S%Ӳ$ PM[j+11ncM=k4hJ>,8-AQk)۰m5Q|Mc**^,̩'fQ1C.?;zZ2Rr)P. i.R (tB4%' j.:LPZjB%2ȝ۷oQk,bJ8)PJ *B`<k1 [bX,Pb: [})$ d(s:*x<c9TB;رoӔsTu*. [o1FJ'iZ' A/B%6SYmk [;)$1o'0ɟӽs <kzW>@{F 2,&imkR)/4B#4O!:::D(|Zt8A1_{1 $a}HmmkR,vmkMc8!(B0@21 5ؓdVt9 *ۦmAO $ Ig c`4} b風"T@ !rJBz%!R4OG4Am[ќ9% $GkJ-1$S$) 'dNOjJx&!o9jj0:˺pR# [A!oH*jjj89-Rxs"i`J$۸m0!,c1@43ΐ2)B#!&J/[D tR62BHTs}8̑ڜr)MݦmkR*M$)P!.j;(阘2nc.u˖<=1|J*;u63J6ø2>?NJb4d9`q972 ׂF0G `7bL9GR%IHk+U,'mM[W-k@?%J.:?'9-[R܀6}DZU7I*$M.Zoj:@9{RJr(VMAmkR,) !Mc1@9sҴ1E&(ŖPj>Фcxɪ)ۨmӔPK*hBd‡RJ&C5XعҜJ*5ٚQ#kJ**J=}3B. Ծic+ڀI:qR*b<rJiZdQLcJ"('Vk [?-TQ)z 7NL& *  ?7x(B^.4$ز(JU7m򔭇!=ܖ$ZU.'m40?+$cGI:W(7jXr(B+djJU*9r"<1JU::t#6!,Iv/|($gS3.%r;I%PÎ{:dV׭ k $O]P􌳄&[252As>j1Oזu)s"6(}NIRx#b3j*SԽ+c(7Eє_Ut3́21Z@;' ׭bW{(b-N1{>Q= 2kBX&X,0JP7d9ӽ9ߵ+@ƑR$#ɐJ_2ɨ\SLc.$Ir% c( B:s$4SR+iM/$.hp8lX!8ќ(B /@,6JrќJ<6Lc|RjB'*n]0|c([:=R/k;h˶aJHH:kJ'S:1,0p).z(qМkVP ;0|s<k:PsR>&4hL5Rɏ$T0|s!9\sZ&;ؾ۱R,N9 {-[p 7SSNR)>*=֍̝tP|) ~>vҌ}U]0#ttZ:>ug1J.}*h.ȯJp7(8`Q:' =Gtc( $ !QR**B9{DRJr$\X"qBXc% ۄ B#D)Xgӽ1'5b]-R /n4򌤫)X$4.IT pB-&mǖbt+!3Lc@@@8AyFiw#,dӌ9Pƀ4*k,cv+ Qsy{,۶ $(rZ*j7{%Ag霠/|+mŔO#<9s)kr)mK5ӌW7+%Ãls.Д(O5{W5&h-c^X&c"RR*@r"5+c*J0[j39$Cnsp|z/)IK'30|^9]J@׭ c&7xo۱o.-2ebj9I^ඒ֭jsz-r>0):~)|G)IÖϤR4#QBj'2K"N2)9altZ'3x۵}ҔP|=s@\1+cb0 h9ZPJ$kCk,cUU7&r9C#Q ./4#WiS1 2b)rHJ')ȴ^+(/-[j:9-I2zP2{7 1L *n9'*[&8p1.:1Qn[H<3Z,Z 3- [.3#%n-JH;јQJIqx(o˶u+4mk S)()B#%1*:9 EqSk*%m4Dz탪_'ڴI<,lk(Hr2AIќRKq%JTNMc,[ ,21{1j7HpS,c+r,Ț k:T'|RR : Arے2R'$@!MmkJ` "($P hj>'붳9 +iq҄uw\`# 3Ҍ *t??/ˠz£Ss4:I2SZ@*;#t c B$m4,cV9=<3-Jo@!G21̄5I2m [U6e,\ETA*6ۼ]V)/4* |:(s/60w*Uksb<vh;Rp,-5)k9{ 1KBj(MkZb.)<C8B?6ۊ֭Ҍ*Bt??5c Kk>&,?5m{`,xj"0Nv791ֵZ&(h1U>o1S,b<6pR-ɒRt&)?<|9 :x >Fh[J$ k [)/e!J '9$r~tbj>LúTb .-lМ-[XjΨ4J&Nbf 8 abےIB+4_[5Ф *>&!ɶ]Zc& ,'PiJʊ`6>ɸVZXs'MMcR)"& { 2:J/!1rRnx;AI`Tk*& 0| [@@;]ra2HJ:+;n,YR0ħҺ S-:sD2):' 7xݶ۶Qk) #z)~0|k85yGl1Z I2 VJ|(| {J 3[KR:&7 ܖxk^,"4rRjj:G/qRRar(MX{ [p-#7J.4k:*B6͛:pխR )O5$Iq=_)|є@-)A$s*`7:&Α'J b=\,)=8ۈR8dHKŀҔ:&.x_mcJ# 3TNFє1>AxDgnXg/.%ttmkJ+@dmHt>.&<ۘ$b)$6AZU:)B*,N1-5{bbb0(F?P0Mt Ф17 :`$22)B5-$$9.\$N.OD*j*X/֭s)6!>SksB}2xi*c%8-$e\G Z&+Sovgs6.|#=! kB7U-P##q|*J5\3c֭b&%@1fr-[\Xj*M&/)z7:\ Q29%1ȶsJ# dp-S3<kj2+J$S;VMc,[**B mkI2J(7Jx94#iӔR ஫0b@)1|Lkb1'RF&{11 NPIBz5,Mg@Q(>=$ikB0$()1*{9͔1rRImp#4H nk-c) a,)mc1@:'tB) m1|k%%XX9PJh`6 iRRar D2Mc,[*251j:!Fs,3AۤMҌ` *<gGl2iJ*<ر0R-RIM{-[ oBnt>> >KP|'2ؒ3.>-3e4Z`; a;qp)BrnuUUU(R $Rlk3um11xp91q?Ň)'$ :j]71Ewќ1'S:C&:::=++'Ngu#)/ODh\픭HB-(:l ZLnj$B Mkb{~:l0\u1>.&+2)KcB`*0IRR \w2Ъ]Bx%!LcB@@+c˵pR%! c(@@@+iGuє&uzT+*OubꁡPAӌLkn'wuR! >P6' :.BrHvZj2[ 2Vv|7sAubb 5߹S"B#$a5|j4!2Jp.pۭ'kR'R0BS)B?7#k3b**9㓄 cX%7sEf,[z|+ ŽkJ*B*4IP :^-/GIJ0r :-n[Hqkl+QRʊ`54yZsQj0`{R\#3-"ᐜ9.mlѤJ33T9>8i)'Fr*2ت.vJ},.R-)#<[)'B]tsVVW0N,ܰmkX&c'Mr1>$tAJV0탫Jנ0\>FxԽ)B7;p;ls+ӰM!Ҍmc*@<q'1 2Ҡ# ИIMcJ((S3=2 2o5I9m-)DH1\3n %hqT>7cԀ k,)lo+( *!Lk@7{|GյRh...=QicY֥DI-(8 Js, <0j`4/)&ӽ9Z+M2s x5Lxyst( 0)Rn{$4M&0mkiJ(P7pm8p:0.&%apFj -0*+l|2HFj(1kpy' u&$TsM2GY k ,a󌒄2uX栶GJ.''8[i4ks~6jZ$&M (k `6]pU c6dy*k{/2㓤շbz-φuXSRbl!} Mc): @4 ؓDФ1 2 ht1$im0|s *=0 [j@sW):׮3-9J^'в(I΃!j6uR6!&nKӔk^0 c0RGƮ:+-kR#( &Mk)J@71)cR)B<k ňќ(:&#H$HmkR!'96m]Mc [B[HFt@2IB/7'.(YJq-S)&(rRJj'lzòJb`x d@AMcR᫪% $K.{!*j4a3hR -I*:m0sx U2$?R{*</ȯҜRT& ۰MoRxX8JG' 1_޸ؕҌ)۴mo4-&B̤4." 5aAJsi/9:@V{x -Ò7DUj >Ux7d0c0js#`@q(eֵ5ӌ 8Lk$$$$$3#:˸t_u)k,,;\fZ,< hSn۶}=I5p _5`ٖ,1 [j,x13Jh1{Cq:7/`$W.{1j+`g mHB_#/1y#6k7쐔1덀0˥\t..&$#0m3j{~*xڳe4)k$$I'8s |6QkR#- %:ƌfR&3k Hvb.2h)r0TC5{]۱JW3Klԅ):'72%Y$6q Sz+ $rRʊ+9hrBb؆u]Mc,c%qgmk,c,1̶1%mk1|sU &=1(Rz3$ BW.1I%hlIkJ x5A :g;29# m؆nkMcVWW^+ kMcU<@ z1.Immcx/^$-r*2*1aء$ؠ4Iws*:\ !2/F+9r 3.[#@#|k=\FFt_ҔJ:*>mkB)# ۰m"mk@1ygyB+HͻmTҌ&ڦm$,Tk( `"B#>Γ),c:0k t낡5R=eFt)k>>&)ⶍ$,51t z=dDcks52' iRj$$Ůk_9_🳵mk *FI$TJk2Oյks7=A+3Iq#"HI$5q. c1c(@/Kk>& 4)Z@4!wJa39%!&/XwWc4 ȱIB 2<|1@.Or&("$ 3lc j7ሩZ&#C ڶ 5W}])Xhub25w5Z`*5u $׭ c39IaKkڵ0+uv c1+ch0ǚ&ub.OF{!9hJJpjnX McR$DN81f*:5OɑZ3mK2s_UU/X{0gJJ#I$G-#@$)3I 1ciJ8IҁJrӔR0yplZt$S!h cZ)S,?0q9'?4a$!q!؀0/oJ^/4 w 41z:9Ai49# ۀm4|s+C38Ch"qR,T0u"#mR/I*C8哵1*?/+mp [-x-l۶cQ-S*;Kr*:k+I?0jB^%?8?u+k&o? ӌ~.s4rFscƦ&,<$wmФh_ +ϓ$$r 2-4ipAk# a|s )bB*2J&>>: rJ_(P?pRU3=SS:М 2>9* ɔmc,lZAfQs?8ᘋdd:::;$l n2Mc\1vҔ-[U9[VGIRB>+McR# ݂-cb<dFW:?7*Ih4ikU-IMMcx61R,csPSY$&3&mc,c~!#8/Q)+N````mmӌ}!@ ӌ%C6dC4DUZ% p􌒄!?2u,c$Otӌ3zʠ4+c+ 2.Rhjj,markXXXX,CO1>qZr9֥҄%=S#0Ts0v7}Kt [d$Ă sJ:$& ?95lk %K ɝ0mJ-+ܖOiJ*5&Otֵ cj/) |Ӊ{z16fU.*۱?3,c77Lh(p,> ֵE)_5 0%ّls& 'V/z(ۦm&Z0Ov*k .j'Ub3.N c* 2>NZ .du{ W88>*ki 0$$@ṼU0ud@H+c--0mkR *vdž$mk SHj.h2hRѡ$OєRU'#4IќJ::?2ȏۺQR!/@$IMc [v " "(*2:-*'HvbqZV*% I"IZ3HɦPRk:i6и5ٲ|R01۲-:9y'R\&@$ kMcUU /S6EZSHJ?7/* 2˲|k #m@&i|sj;{{GSJf+4 IMOjB+@OjB0 L`9#`@4I|t*!0|kJJ1Ig!Ң*ҶmI@/JU'SI(B7'.0OXr```` Dr|_" m>5k_'C6dBgTZ?&x۸5#eA5b*)aU*k.gm'ut*_5 hNBҔZj.??Rz 7sw(ԽJX2#8dB&Mc/74ؐUsV#I2 2-4Js`b0ظؖ2˸ȀRLLLL!nmk [>3\KՀ).$ 80Lc3c1X92`8:Bα1 >n+"'p5N*%Z%mk&>5IW~^0>w۶^/Qls>j+nU+c `0[ӄ!Kkz /ɀ 7_)k .2ؓ۶}vx0dTFE*k>1ܴۖ. h c!I *::4 ʀ ڀvjs 6כ 9ӌW!@$dR$e{.2(mk)U,ds)2 U8!֡4a-$FQ|kը).")tj`/-nB(?vmmkJ_$))Lk 3Sc\ Ӹtk***4KTK2 [EGG$'BDnk,[,)"!kZjj`8 S\/duc/| [U2P0mP2J:.'''#$0| c"$tLsU8K2R+A~5_mkR"?:0}ێk S-**8Ȁ <3RM*$I$|*kU.rZJU8jBҲ#?uBMcJ(jj&...9g{` -I"#IvJsU.I$ˑV-neds*<0ڶ'Ihv*k^/2uXĖ+k_-3ytZ/I>A#Kw{Հ0kR"bRkB&.0rk$Z,`gRJ&&&1x 5!")!js```@1ȍRt8< 許Rlj))n1)İ9&'jB^*AIM:g) <KnqJ0 Mc,[dǙdAMc,[ !"53's0A s c^8$91`ZX9߁ۖRbz4OOd'B(")-*}۵5IӌsӌW $AP'Z`:l$IյZ A|1g׵M_/9 XWW ӌ $aHӌ2$ tJ*+9HT+k ! 4IkM󌳄 #ZwUӌ?'ܒlk%Al1ʕZ% `֮󌳄@<$ҔZ;ط m۴Mmӌ"ӌ}z!h&h&Lkܜ/'~Kk^ MIKk U $Ҍ cU!$Aw$LsUњiR)RiJ?O$n mLkW,I$$ RLkՠ,I$$ c.I$$ ,cCɑE[2iJ '$4@ݖ|k #H%|s# @$|s#$@d|s__&PZќ!;'Ar1^1$ !U1I$ GU1I$ Ф)U/I$ 9U/IG)%3spprr 2{ d#m\޶Y|s_+#ٸ B|s (3=#<0IB*j?$1jJp& mO/1U&IO:'In)BU'Pť**CsMchhh#@Mc-c#!$I$A0cb'.-.Mc-[)r!r!Mk1BBBEy TSs 1ImqsU1Im|U2Im@r|U1Im@|U5INB=sR;!-[hxxx% 8#,McR`@& 'B)BMcZ $"I cb#!  cb(`h Q B77HOc9N6IFU6IHN7I$InW8LiJ ,&&7 |xxxx$IiMc [$![vkMc c($&IR;$Mc [%-)Mc@@HHӽ+ I$I$ԽP67OGֵΤ>:$a]u5 A42-lӌ__w?ӌUUTӌו/IDO褓Z))-/ۺv$@`ӌUUU]Ңӌ]v)aӌ:*-ϑb----S ӌ XTӌ"*IrJ<ɑyG2J!))IJssNdA0|su* Qg) >ȏHsTTTT m#sk ``3=\2=s9``=G;-sUӄ& m˲M 5ӌ+%$I5|X&R.


)ٜ2 [hxx2`O{,cUU4 O|McUUU5!tI?|McUUU8@%dN搌$0:hsxxx'amk [$!ikMcUUU&$<"nk,[+)"k:BBJ> I k #pH0|k#" I |t$!-ڵ|t#"@$|t(#8#8Q|Z7ќ [``h`$McZ`% /BjMcR $10 IMc [ #!C&H"cb(xx0G!&&&&@1)toNNJJ$"&HB&$"! I$_UU%!v@m;UU$ʏx䓵J&&&&:?R`'I$)BU&PI$1U%dI$Ϥ:U$n;IcdHAӽ-I$I$P#wpgw?Խrc8˯D A42P b"3QtDB QtE6E􌳄˫'b,0j喥AB$Qt〶DSӌӄ* !0|JJ/yyGZ))!)# 5A1eKӌ!Vl@Zӌ0OOd+c) 0ۋrk!v}0|s8ʃ9>H$H$4sTTTT #Hsk`!dB&d<|90F>' I$ cի1[$IS cջ <O$q@*kտ*>I;3&Z.x@ࢲCְ+Qz<yNQMcCNP )-=9MqIB0wh)LR$%Imc,[!$2kJ" m1McIB`" `$O-9$Izpe)z ;Iºf :q,[^UU!".Mc1@@3o,cPrca$A$Mc,[$@kJ62`KkJ!ڴaLc1@ n鐊rB @I z.A/8sXj< I $"$L&id%5Q|j*29M0s%70%ٶ+2U0|`!r c`޵?O!8*k-:׵1tx')k9 '&vSӰkӌ#HV5 ×q+c͍CZ簭\/$mvU03'{du c޼6@d.(?_+lۺUUU-`{t+c6D7׭t| glVӌ@[ӌ+"ӌ@q)J=ʯr,cTTTV AkJ`I"kJ!imk [??3M'J`Isk6bmtsI#Jss i^ts{z!X%b&JB9dj,[X\\\q<JMc [0IMc [IB:$IMc,[ZZb -c [wbj 97>{$,[\!$tb_#$۔$tIR#hsjJU#B.X/E)000; [xpxx (Kc;Mc,c%&boMc,[ #!I 2cb%PPМ$,'qJ` $$rBU$mm19U%$ IJU,m$I.o&?I+c#@t|s#"IA$|t#"IA|t$!놶ke|t'B#0#,0|IJ``:! [````( 6kJ~)tk6nk: U&$I'Mc$$Mc(x{q...'@))toNNNN#"HH$$!t֭ь|#!C" CUUU&xHriJ&&&&JOGpZp8 mےpMcUU5wMc?P-cUU0жyb0|,cUU4V7c|RoHіm9 $I$սP^ B"BԽn`k@5 b˹ I!HӌK&42t;$# ӄw'.X`%PZ3Uiw 5QtХ[&ӌ,)ӌJB@(yyG{!!+%{KV| [f$ӌ!dz,::*zNDJJ9ʯkA ɀtsʏxќ1&&.<ȏȏsTTT\Bss!#<#<0(BD\׵{??= 1imۖإ=طӌWu&S:%RPҔZAOLΤ6',Y5ӄAMՄҔb.&1M׽ۏk [$!]5mcMcU]-/J'/ q/McUW^\u Mc,c*7~ħP9+?Mtќ(J 6߱}q [pUUIiMc [ H` kJ"$VmkJJ*3 h1 YaMc [-" ۶m5Mc9`! @c$Dz-"L'ɝ0D DVR(AΟr ڴq0tB59PgUks '61mm7Vӌ}wt6mԄس5ӌ+cpX)&8RbpFɕjN58xk6g ӌ * `ӌt`% 5{>$=,[@P)2qR:h;U֭ӌT^[Y"۠ 8"Q|**JANLֵ c7-- .]ov%Ȓݠ9ӌ$6 $ӌ:*{DMSb66&&>p7{t|vv)gqp҄X%k&ӌ!!sHH1ygyRJ4؋sZ$ɀkJ$$!kJ!vnk,c2ɟ' `IBМjBU`jJU `$JU`I1JU!h$o1g';xHr,[\\TT Mc,[$-fi'Mc [ & ;Mc,[] iMc,[#pxgo1&&&&?S ۊUsTv.#-Inqs 0O@$IsW2I@s u-&R)**=G}4Jp [YMc,c yuMc,[# acb)ZbФ::IOGppR3Po0McUU;'1|Mc UUU7s,[w2l7-үkRo@ɑy1#A|s #" $A$|t#"A$I$|t$"d$IB|t%"("(0|9@@@@m1XIM4 4HRU II' c I.I$̃%OuU3I.Ȳs (*_>))7SBx%ۘ$R'd$ҌLkU(m$Kk*Uȯ$R&&%;Ggprrjb4ۺs c UReMc-c$IkJ BtWmk,cu55J>@F I$I$Խq vca[qft8-ӌ 5[ӌZ`R7xn[nZWID MZ(59`Ƈ!$&>Jx}ZW+P|МJ` w`s1$I>tZ1$ u+kU/$HT cU/ɟ?У&S*s<ȏz>sTT\\u۶mtsȍr1&&&&#w'-[^nc\ #<#Ip-!jMP?mcJ( 4POO !V@6mkR z $ 'Lc_{~ "I'e7ɑr1 &?O\d+=O$9!d CۖZ~U2h"'l=&>>J_oikl򌪮 I2 Aꪪ!j.9B#SsXp`3Iǖv틨4h$ c`ܧ;OĹPֵb ;cMkp3lu{ $iJӌ ФM50tr $H S"/0ZZ`X7 @-ْZ* tdeԽq:o".)#yR,[`!$IMc9U $ILc)$ImkJ! Z.McR oEIt ;k.IsUU*#opkU/$Is UU-IkgR*6>R [Ttvv`kJ͐ M4Mc,c#ۭ'AMc,[$!dKcb?LDL39''''9 (K:k!$3Yts :i0|nc$dCO|sw"`&`&)::>6OD#8RpxxX!]%p$Mc,cZ uPDMc,[# ۊ-۲nMc,c)hx197666BGzrpz)!ێk-c#" cb#" $Icb% 5\ommkMc5:yGydѤ 2ۺrs#!H$$0|s$!kvM1|t+& eɶNI1|s'"!0|9@@@`A'ə.?8QR7I^ fR;1۶q-cUU;' c_UU.-k@@OI'IRZ @$Q0| _<IrĖ2{U=-#K|/WU8/Ils {Q(B ?ʯrZ#)R.Mc,[òmkJ!_Emk [??؊q I$I$qqII$Խq@81Ldž $ 9ӌRx 9|?Rp-=ɟ?OԽ)s ;&М~Հ1I`JuPjo14'rR≁9I'IU`b ;I ضU/8o۶ pU$`"&Z"=Z2U|䷭ ӄ/>q"$@􌳌U Z%#8 c/)BY&Ӕ(B\$s)JUȍʝq9&&J˓{ln,s䴑ҜsxUU#'#p)B *:ֵϤ?5dBnӌ mvӌB+R9ӌzzz_XX%Z<x9pحo'mۥ 5ӌ_!#,.-R@6јb4Jbr(Ipe)z9up1^-4ɒpMc-^U3'?q,[^UU4I'+@յ'Jժ-Htksm/O$mS1ի8I$@:խJsz5?s1+[?BSMcXV=|}1 @ռ=rZxW_*p~m۶nsZ\$pJvk cZ##ɓF -c9@.1LdRI &۶T[Ӷk򌪪!O' c`^7I&&0HsZ$ $ &Mc,cU-mֵMc,cU$&dB)kMc,[ &WVuk-c?PA''2!:I0|cJJâ!R ss[7 C0|ncu֦ss%%"x?ʿ81)>&&/MI):V #mɟ$)w"$ $Og!ՠ&n$s(B#H̟&&'5Gzzpb;ۊ| [$" $LBcb#" $Icb' v~k-c"NDLB :M1'I$J_#'I)BU <$+ cUU5u[ 3B?G1M[hh) !!McR@B% ?-cR//--#!$I-c c0 $"I$-c c*'$2MkZN:AID! $DI|k#!!A0||UUU$"ÄL|t' QggQ|s?881B< `+S%q:\%&H'mcF1U c$Lc1z-" $oF)ع1 I$H$ԽQI$I$սq޿:#?rk`<I?O ԽR <O ºحN <ü׭V) Amӌ  rj*>yIdսZ))-:hӌXUWW!$ɄӌI$I$4R"#8B#0+cp`9FyvN'@ӄ(m`42 #0",Z`<IblFy3s[,IFR.{璵jB .&7<91Sshhhh4ss".)s*B@@5IItb)++$',cU+k_iORU !X'?2,c%4$IRrs\W2~$I2 [_5IQ) j=ϝ$1sxZ,$$IOJ\ ,$(p)U-$l @%U ;IO4E1U -ۻu]U"i -3p*`' j3ZX5@}$bZܭ+?)4h۶єZp^ hH%Ink-cUYUU P#, a{9j1iјRI$I$NkJJ!.. cb*!hZZ*| &9%.:.&n$tbں/$I+kzտ 1IS(Js/'gSs -7 imr[nK |!C􌳄u# ۲۶ s` 'c4Kk m6|$ɕֵ k-8*`ےr"m$ r|b ?9k '>I$H$ԽP-m۶mnԽP/BL:&!D ӄ UU"qϤ/UUv7,c9 ^p|[" 1ATJ􌑄$xoӌ$!X&]ӥӌ'Rh'ZXԔ,cVWW)X]{-[ UU-lmϤ-[U3_?@R0Mc+r eоm2Խbr?ȏ/Q,[\& m)',k-cp'$I@:McG1z($$Mc -!<ϓ<' JIbN|xV< )hm˒t*UU='s_/߶mrsX&"(Iq [Jʪ= ɑHJ ) !!-cRBB@@# cR))))#!  ncjb#"HI$-c c'!nfvVMk c?1NDL9 ''<ʏӌs#"A$|t#"I|t#!AC00|s*)ʣxQ B&&&>K~$bQR7Imc/_4I HМ-cU6 y iݶq,[UU09dC2Pf!0jۆmݖmӽ I$I$ԽqoZDƯ>=B`VIIӌH!CӌfL6dKӌ!N`GvdӌNʍyGTӽiBE ?q [V_])fu'k [U^W#0C9mc9`2aV]J:TO{jB` wsJXemcZ**-7 \MħtB -'73 >N۵Z|*uIB 2Z^-<?I.յ-LylZxXmsJIMc-[ Bd@&mc,c?0tA&+ۼNkbUUW$a1-kJJ `$[' c "B=O 89g6߹֭W]]Z@ 3ҌPZj 9#2lkp`" 9  @| 6J/p"0|*b4s$R`/@ɓ'ϕ@ c* 9 r붷AP4HӌŲm芭42 #( c`@ c* B\ά:?AsHvbӌ)ACӌ! (!c@"ND?Z/<($!mmӌ$9kӌ&\+*5ӌo8ϛ1R&C],[Tt$P>iMc,[#v: IMc,[֭۲aMc,[#R%`'&!>?A{EKkr5ss4Lts/%aj*ss/ &,!s)B@>IL 9 !koMcR+ ,}?kR**P [/UU%}"H-E-[ UU%I62j>)-Sz$c|nc#hےӶ|sU ]tsm$:*tmc J?ϑ h9 f@tL,cR kJ$Co'Mc [ %u\/nkR*N9iIr  )۪QԽ0jx0&$6~If _=I$7`Ф9(>IDФ [U<#8cB>8;`˹s\XR#"H  |t#"$H|t#"A$ |t(!Qs1ODMȤJJ ;,#323|Z~~tt!A! cR-#"$ ,c c#"I$H,c c# ؆۲- c c(z'h&G.>>@-]k#! I 0|s+& dٲv"1|sU%ڶ90|kx*j.`1::7<1 [`xhh$ILTimkMc_]$=S;Mc,[#x,SMc,[!"*iLcE@I J0!lk ,!LIͤb芪/IUdDӌ$I2!42`ˆԌӌz$=ӌz &Xb45SYv$I $4Rmӌ! sJJʪ59Pu*k Mhӌ$I$42",#8Z```;G{'Z\@MsJ_*-l~'u"Ne**GWko8И$U)39#b`p@GN ۑRX#=* ̃Jb @-JX!$&Mcf14>IoD:/?cm'Io ;pF1 1IpR ~U,}1R->hյ1 tBBP݀ XPZZ aۤMt@ #Nԧ c /&ĉ$4Z*x;$I յ+k^ս <Iaإ4X}H't{-*M۸+ӌt-m42!eM-ӌ_&,`$Z`ض/ɟq.Z 0='cz#FhMӌUWXx&?wӌP"| Hӌ %29Z'Z`мIo'yP#`m􌢺-"@- $DJ )("4R@`ByL1 c!3ۿs [#!I$cb$6m 93lkz+'IPR_ ,n$}`ќRz pɿJU"Z*B~= ќZCb`EIMc [ +-c,c@t@ $-c,c$2-LcD@ R"Jk JyGN%10AᚪZhxx>${bWwW${ 0m-cZ$ R)-c cꫪ&#0#-kg10@={cK$" $$I20||WWVW#!$ |t#"IH$|t# ذmۂ0|s'J'p&IB&<>>h6[5pZ|||x%ɔ cjJ%-%$!k׶i,c c$"HȄd0ncjb# m ncjb(X"%#1*B`j;LOQkxx#d@AMc,[# XlMc c#Z6 qMc,[$x+mk [??،ؒ 9*:``0q : '/1HOv>:"n/􌲌H$H$42@6mӌ/  ,r*b#/-R\ -c [UU_#'vMc [UU'#AMcZ_$vI(nkZ*9|M16'' <r4s\TVWXlssZZ"7>dKts+)ǿ1|k*/8d2& :2<{E;Rpn۶.Mc,c!@ -c,c4i2Mc,["29#OjHcbE؃6+2jj>1l [hh%Fq-cZ%$M@<-cZ &$IN{B-cZ '"(i-c9@<9p9 &6I0|k $'8|k$TB햷|k #!$ 0|s꯯&X%#8ќ)B8l豜Rxxxx&9ϐ cJ%%%5%FT cb & 5˶=.k c&$I0:-c1x(C#8bĐ%%@ќSsrj?kx3߶sx$1i۶M0|s' "&I0|R@6ygyQ B9ȍ|,cwv#"II cb$!v]$cb&[5$7mk [(˿xRc&&&>T{xxx$&mmkBb"w5J1* Tv $I8'Z\!N'Z׫>$aֵ c^/=AP۶Js0MNƧT*c*)/,$9$uZx'};JB/$I Z )Ϝbt;|$;@ќZ\:It,c W8&L< :}Ҝk $dBss@d00|ncd#qZ0|k?rċ<11>&8Irs`%ĒI.IBUMy$of! $%N 6RINmjJVGI{IB I?{)BW4}dOA..'߯kR $@ [Z" @$ [Z( $k7vcMc [ &%P%.1Fȏحӄ'mYm@V5ӌ?;hZ$dAdIMc [ 0kJ"R"XfN'1>=ʯRZ\TTV`mbb2|0Gs6g/9&&&6/ۺ؏kZ!A MkKJ#{NkZ??;յA%%%)0s$3+c^8$Ixյ*c^ >ɟ{@ks%leӌ' $42$@B42 !ӌ_"|&#<Lk/3&mT+c`X,<I׵Is <p$ Irӌ/'6dN5[__)*ӌ-#$aآE}IB*?)Е+׭p4ӌUU`vb'ӌUU ږnvpӌ& 6J#!s@ &+1qR DjS Ҝ [pp/ }ߏkMc?UUU/P mK/Mc+UU1Nq.McU2'Q~.G-$Tm&ip|#" $ь|$t:h&iq3৶k-uEsOLҜZ  1_s [8-c,c%-ۧжMc,[ % ۶d$Mc [$ Mc:@>P39 @Q9sk I„ss)رIssvu|spd1>&@Iќ)B^ 䏜 :^ߍk1*+x&nkjB-'XxD>.&G1s-[hj' 2$ mkIBB; yDФ$ /ĉZ'NkRx\+c? cjJp#VsZZW᧫g cZ,ONd  ּ1|kDAl sk/(sk."۶m 5tmc `(#,0|9@??13p wp_|c~ (Ig1_ܶG)_=I'I5@ќ(=B62! z~<PR0|~lx'i%iJ|s#" $I$|t#!$|t& FmպQs!8)B &9IќMc^^\X&$'mcd'O'>$Iz =I,sf! j=Gys4s,c_VT"*i&Mc1@9'(J @I' ƨR*<UaZ۶o%>إxȮ-0ӌ hB#,Z<` I2탧BX!6ԳZz>B-۶Ҕ)B|>|iJ-۷s,[Xwi%M۰VMc [-84ϤD7G~Glk$$0|ncIdH0|nc!$,)s1@:yy1 DZ,$ێc c2œ?s,cUU,#ۖp,[ ;6N1-0;ms [v}}nc [ UUU"ys [2|Op94I,c1 ERMc)BHR -c [UUW /BMcZ *b&po:66A؊'$*!nk@; )͑Jr!m?kJU!ҶmmkRU8|GL.&&/ 0+$s9U$A? cAU `XOg9>7(h${c@${')W*IbbO9W>Γ$ɕ4΄**9WA۶ 5;xUU @J-ٱ3-.0Ds敥s'60V dȄ42)Lh 􌳌/ $A?'R6$BZ- @Fb۶׭P/1,Ԍ{)f) --$flmӌ$"aI05q(S>-.K!ӂ%K8 [`P6:'Is9h)w- v6$)ӌUU"'6ӌUU#&\ ӄ:"%p3Rb&DyGLqpx?0,[}#"A $cb$" $a&cb)$i*)mcB@N7Q!FM pRZT#vL۲q_UU`ǒ ёp*U"mٶp U":!"8hJ@`2МJbP9'J^ McIB 6AJMcZ B"IMc [R "1#=Lcf!@=FK4sIc[[ssIM0|ncHI0|ncA*!sjJ@@IIh) 18{Z)C $9n-c%UUU(I.:mФMc/UU-#a 2^*I2S1 IA[-cRX\T' uО[ߎkMcU&Mʏ'Ф&!&$ȯޯsRVT\\$ ŋRjJ*MZR.@'ZE)xO4o&/+;>Mcx $sHJp->IA^ ;~RW9ݩJLc @rqhR $}?Il/_@t&R-[_? ۶McxUU5h۶ms,[% AmkjBB:O) (8v<t-[v*I0|M[ &i1|k# 6,f|s%p Z.=3 :>c1XA$91hМB BWAXے2Mc^U@PR,[x&6m[Mk [O:<&:* 'P)4>N\FE!' <DӔ,cxVUU `.Ȓ INR- 9ӌ+k-%D "􌒄 !$I&0 [`='IєZp- Dbќ [XV5xo|RaMc,cj=/1>z* 7pbnMcUWTP%4Mc,c88%4D9$R\$$0| cU| c_"#8d'bꪚ*@lq|`hd@,cR C$kJ$$AkJ!$mJ"mkJ*J5ϐ9p -McRNi&f [Z4אƂMcZ3ϓHp% "IhD [*U$:В.):~$$HN1U/vO)B~-{dysB.'**,0;4V҄'",S#<R@@`KqOxRZ^/IPpRU+ImD|R(IE`)B.67:II(P cVV/I$I,cUU3/,C6:{DInIEkќ c XZ5qZUU6R6C&{E@j9GյM9?4ˏضWVTHJ3򌪮a@ {"#4"b`@0ycVN$>,c^>OLb^ :Ib 5@ߗӌpVUU@ӌBӌuU(A9Ts-. &rT5'$I$1-c`&&Γ2Z`')=y!&/ 8ƒحxVUU >Psﮘ#T@)nR%گ?󌪪%&B%bp $ k D?zs-[hzz$Tm4mMc [#"I$Icb#!$I C2cb&"0mke)@`DyOL.6?>P|p A.ti&kqUUU &pDiR<$DAKݠ+Ҕ [pV&{,[/UU&Nѓm.,[+)n#@o):PN=ФjBzXfM$:>%<`t,[_ $qRs,[ |s~@ 0sk "4R&/|9@A9k cB`pPmiMc,c!I kJm-0 kJ'#2-Mc$@FyOh 9۱| [# غ-ÊMc,c'pP.<.>7v:М1X 7N|.9z :$9%@p9_<I| HqR-65$OP)j8'SHR^ 8AHҔ+k8.vmӔ|WUU$HjL۶M1|sT'!Ѧv\1|t?&ͻp&J&(`l9L{kV'&`QkU+)'1|:#Oİ*:z>u$9G@ќ9-IϑXRZ4p۶s-c\WV$"$!$kZ#"I cb#!C& Acb&r#0)&FNOǚќZ`?pQ|Z$ Mc,[a AkJ  8Mk Sz4IB +?_'cIRiJضB!&hɒҔ [p$X @McR #OMc,[$O IMc,[%BrMkBJ*(Dt>16);{,[6MM<QZWw, AIb0bUU($ HcZUU& ۲{@jj?1ѤZbbQ[B+Mc [`$kJkנMdkJ ,",Lcf)@`;{R+1Mc [zzj7n-L,c [UUU:#!mc9J@19ép1֮LcJ[ۮ! [ZaۦM [ZLyg[aMc [AMNս'///&I;ZՋIu$b=ɑqsBXMc,cH Mc,c X R"=.g19ʏQ,cTTTTۺ5nkJ "(-c@@?p cXRRSC,m cbPx$>. S)!Խbbb6/d~嵥Ҍ A0򔪪v8ꊃ (a<'Z# qDrR*=I| k+<ٶm׭x(Ngk>:4{/(lR()ӌ-[&ӌ_ #4s`@1!ˏ?2Z E}$yԽZޭ ?Ia;%8xvӌ$" $I2%(q|B *#~.F5 T{x{(ݖss-W $H&ܑlkz$MOqM[-  !s**H@NɖҔZ& *HkikZ Bٶ-c,cdkJN16-[Mc,c'?r<.>?ϖMssJrX's"mos UU&$?Jހ*`wɍ>ϜRW 4 6J6|OМ1>& =\ [X\VW$$ kJ$IDkJEVm3,kJ#B#Z&F)>H9k,[H`pP#!$I&mcMcTVW#!Cdcb'#0")mc @8 TQsبjc;տ}ۑ-czUU3h۷s [# `ö cb$ mk [J***8INĐf!9̏s$![vh.|t#"@I$|t#"I A|t&#4"qiJb//o9 M[V\z#$ @Mc [#"$ $cb$"$$$cb$!kۦڶcb&#,.Mc10@6ǖ2iJjZ!01z5C tb @0b[-^U:h߷4P|&L`=МR$<4 'qМMcW_^\$!ֶhncb#"I$@cb#!  Icb%"& Mc1@.) !.:nk,[z n:Mc,c[۵P8Mc [ 8McB@P=}c1' :O1J:631 0ncW^Xx#@ cb#!$2Icb#! A cb(ҶM0)kJ*B!Ld":& 3٘OgMc^Xx@NNDp1#8˶q.cZ Ȁ cZ @MkKJ " cD@@@@-1$:R H$)U$)U$ )U!#8~Dn7EiImf)\0$I"1U3$?,)U<-?3l*p [ssZx IMcJYka [Z ֶڶ [Z\mk [>Oص9- D׵n&@#wkQ|`ByO,c!=Anc,cww 0$ Mc,c_!#9B#5Lk90 qiB\$>Mc)_#,}j 2ќbyyzp! ۰M8!-kJJ**J )QD  B$ ԽP6GʶO!$AZ` 'yX c`-Eɓ$y*k*:10`۲O (p|m5ӄ I$I2ӌsrb*&!à -'۶:mcp RX%;$yМJxFI(ќ-[^8 }>SR -.܆m#" $5q$!Ͷڮ5q#A#}ӌz?((Z3'ZpIIZ C?KlZH=h;-crXTW(!$mk-[z)s IR *sB^ %JUxGI39) 8۱mӌk&9qw۶ss%# is UU'#`Ϥk\/n;c;Q:>E cirP\mvX"Mc,[@$AkJ Ad$kJ  I*)Lc@<OI =k qtsMЮss_$dK|k'&N29):*z@POrkpbDH MkJktmMc,[ -nkJ FQmk [?ȳ܎?#. ;P$ɟ1W&pIb1g!U'PrIbJB~)I&W:GyQ8ȍ|McUWV\#!$A$cb#!$Idcb# C-:lMcLc&p&P"8g)&>5Gpќsx#"I |t#"I $|t$"a2 &|t%# 1q1|kJ *4dM'jJ&7ȿ|McUWV\#"I$@ cb#"@ $cb# ecb*:r,1kR**bq4HQ)  ItWtsbZ~3pۮmҌO|#"A$A#"$Aь|%B#*aR`3!C Ф S$Momc-c$!6]mcMcUU'$I5Mc)`(|P9z >O<1 -2yh1L-[W|#Om$McR(4j.>k1`A} 9- <R`#$ mkIBr@*1?qIB⋍'3[PMcUWW\$ Mc,[ '$ 9Mc)p?$ID> DIBќ-[X,hN6M/):=1Il cRȐIMkKJa(`MkkJ  c@:A,crRR.ж/|,[UU.`I?0|,cUUU.`I/|,cUU<g\9.&''3 ]ۏkZW$P cZ #<#8,k9Ғ,B* ݖ!#ӌ c`)l . [UWX"?nkiB^ $ْV?mc1_D?,cQ #( (IaVO%Mcӌ:4LkNR8?$O2:U3$Ҕ9U4y@Ҕ9Պ1IrĖҔZVBmCR <4k-PSl[R|sx!&;Фjj*:CIv-/I>4ru"U*1P9sbh> a2s z<)$j۶Ҕ,[xVU):7 A7$Ҕs '&@%$5s_U#$@b_! Ir۴Z~*hmےR5"|+c B|!1M[zCյ붑-cXUU#D$HMc [%@#A{):j*1 /۶m6' [\'$b%5}SZpMI$@Z% $GD"Խ0.BHHjsMczZ$fl&hMc [$"L 2cb#!$ Icb'ЦmT[k-[z?'>KD .&DZXtsbR\V%! i0||TWUU#"  I$|t#! AC2|t&&<|B`6Og! DhvJz&  ,c 2 6TWMc,c.bkJ #X'Of!z>A9KTsjrX&$I|sI$I$1|mcC%۰mssܶvtsP'dМ9>&@qmR$&* NJX!r >*: ݐФI:X!*%Lcc@LIyrHR#:+ Ҝ| WV7IHFМtU1I"mk_4IB@| U7:RiJ*8YMc^^Xx#"$H$cb#!d@Hcb#!A$cb(#) sf)jh51HI2J:'f)|s #!  A&|t&4,5 1|k.B& `$0|HJx3s$B>7 5wMc^^xz#!  I2cb'm ,kR*b' j$!-C$AA^ ?_0򴽇)+61Hgpq^غ-۷ӌUUWT#"AH$ь|$"L„Lь|&-1[Y:q/?&Np&МZ$4q=Px(5N?z CN$aМE) D14j۶Ҕ,cpVU& ﺎk [+-15IB7-↭%5Nv͐17 ? SɟӔRxUU"vMcR}" McR_"nӲN1>{-!cgB#'Lc`8<}$O> F1F}nJV!ݪq*McZ 4nk [??7N tAI cR 0bb$ILMkkJ "("(b@@@=AAq,[RRRR cMc [$H2 kJ'[1nk,c׾?>X09$m.kb%ҳI-kZz'3=#8Lk94TNŃ;#Ӳac@C$ `յA[0IRU-IIlbJI11lkhHޣR*].?kR 7-Ӷ I!4Z@@4ϑSȺ!!imn|k톭t0|nc uZ70|sU3NLħIB&1yRsVTFhPts(c2&`&МJ>{{S$s/NvT5pR><Q [X_^ IMc,[ "$IMc1`9)hWiJ43$)rМmc+UU1I& *ڼQ ?9Q`s{B;0SМJ Z>hI^PMcT^^[#"$cb$"a&Icb$!Q[.nk-c__!3,Q1'?@Inmkxz@I"'oDjE>I&)  FI>1+B(~AMkFc [}#!$$cb#"@$H cb#!$I$B2cb(((PjEɑORA -ضmnrk#! 0|t$" ÀI$|t% 1"1|s:*J=s$N)J6 > [pXTW$#a inJ+&q#):^/1):x" v;kp?MDМ!& A۶U-[! ts[Z[5۶mssZZ 41 tsZ[]Z&"8t:@@IќA ,۱}ۯkZ@ Lc-[ #RS[k S6%N9 Ф,[%UN;q9 BO>3%RZ< h)UtV\XZ#"$ $|t#!"I|t '!]{P|UUՕ'HR)&71HOQncxp&m mk-c&$ 5Mc)`&|O1z >N9A`o9 =yj`&1IB&3qsZ& `|9`6,yr9z EĨ>3k3k`21,cɇ&o%@t$I/CI -c rVB,[x_'mmkRJ*#y8f! &6 7qTZZh$!邴6UU^_$!]m ץ& @'R`0k$ə 2&J>fr-qksGOrMcz^@o [p%"E$IҶmcMc^UU#$+Mc [ࠠ! ²5mc)B`Gy'МIJ*?X撌McXVUU%ФMmc,[ $h0gsMcjJ8'4 Mc [.' =nk:@X=N<c1 GMp1%J۲R`&"`'ImcMc\W)K$IkJ"(.)Mc@@3ɐ2A!4ݖ$ cIR~ ۔ c)JU$ cBU!"(c' cC<AG{-cZZZX%7tK/CMc [ #"A$$cb& tFmTkMc>MN qiJ .$ I BU.$ I BU/m<"4 6DLELĶ( !sHHD 1b$mmҌ1mVӌ ; |+k漜4ۼsZ{&2i&nkRbj**+fCs!(B 7'B# r4sJʪ(!q8QR ." r$kJր|ZAsR!p&X尜!..:8h){=Ҕ):x& t$)B_-$x0jJ6% >%qGOֵsrZ94XIp,[x^U2 McJ`(vc A_{jJ"vMc,cVkMmc,c !#1¾>o.~1v0ďx1Nk€p<139jS!Dɟ?Re1-F9vP cp\W#$H$H-kZ &X.$I̓R'%NlB 'FnhmkR#!$  Ȑcb& *,Mc@DMI1&+J޻Usru( 9& Ncb% I&Ncp #|c'(.0Ѓ&0|HR@`B*,ccrXVm$mMcZ#O @Mc,[% ).HnkRjj+3,1МE jj@'yis)*>g3˶uOP%1P3Ac^ @1onc\|Mc% MӦIdss*'c'L1>&@K`ҜZp\VE)-c,c mڦI!kJ#&AMc-[ &.0Mc!@`GID A) A`>S63)Jj;12|Zzhn$![ۚ|t#"H$I |t'$,!0|):@JyP9)+ !~?QR ;{$B~$AМ9-AIUaX˒-c\U?hQMc\UUU&#*Amk10`?;Q:x FaZ*E14bۖpr\U&Gnp|#e~)p%#5, c`Fp2KkDٶ,[X}#1 HMc-[ #!D$Icb#"A$H cb%X8"g!>j31 ϕ1{-۶M :Rx-<'ORZj޵+FIt֊ c/) B\ s3s6OGt:>ќZ 8۴mt [ ˰M۶Mc-c A!IkJ%T"-c,c nPgc,c,["#Ӭ 2>{o*KJ*{|mk [)rZ.McJ\PР)`B's1[?Md`e))Cϟ,[`\}#z9  R/*4h! SC$ $I6XmcMcUllkJ!"0#yҜ S'.c>knkZ#! $&cb'dAV2nk,c?.o7H`$ITH-kZ# @A-cZ)#8#8ms'B:T\E\Ķ&.(",b@``Ej{$!hk#"A$@ӌꪪ&P.8#Kk``8 )EPMcV\XX&0sP9z-=NpqA'$a0GR 9kp,[V=0ybr,[U_2A_lL:J',p.s,[^X!-c,[ 5 {):.j(6'1X::$I 9z 9ItF!-= q-[xWU5hޤC6pIB&?/n{,[\P#"IH$cb#!$$cb&`*5"{)B>j16mƖ/McV\Z{'$M0nkIB `'5Kz Hr$Irr' B?Ϥx^C9tP cz\V$$H$I cZ$"L0$,c c#"H$A c cꮪ# R7%xj"񯜋Rb 'IoRX%P'͓> G1xSU|sPT$6im0|s#!dB$|t*'² $ipk7_)9ЏjB*@NϐpIB7%CQ,[}$" Lcb$" I$cb%˱\Dk-cߟ7(RįD> J+/I$AqO (mۑqՕUu)# IМQ|/_(q#ФncX "X2yr?2 2Aɑl?s)B!'YnkZ) -c,c$1JKMc [ ' vnkMcUUՕ.ڣ&{9۞'HZXuscRV'"(A|9@;ϖɑGiJ#)g. Q|s#!$I2|t'"40|1@H1TNJb'j.=3R6ZjHϖxQ{jr?߱}Q [x# `0lmc-c#"H Icb%!t`&mmkMcUU%-ǘ4JB'FP]P|p$"A$I2#"$Iь|#B,R-8pА!Mnƒp?-N@9МLc͆<3 # OMcWW^\#" H cb#"  cb#" $A$cb%2[Qnk [J*"Q# &BNpbD)4bےp pVu& >,"鲄/|lcjJ 1 ? pt $#Hlkp@)CgMcVZi%v{Lk-cUU۶m[5-c,c-b6 kJ$I ,,c9@+ܾ>Noj& ?y< 1J"z~.b d [wr&*4rҤe-BO ќ'B% C`Mc\WUU#"@$I$mcMc\UU}$!hkncb$X,{R{*tA?!- [r(=McR$R` D>.@9R,[hhhh Yۦ]lMc-c$H$kJ%@KMc-c&"0#0McA````BfIB\4$#@nHBU2$m/IBU1/9_??p1%$'-cIJU%ۖ$-c)JW'#8'Lsg);;D9p$׭Lk^,S#8$4ZppڿDGk'׭ks',$5lkW&$$5{U*,$$s@7 pORGDhq c`\)Kn0nc [*"R#1́*j@yPRZ+۷sZ!..),cF1@@7) [caccMMc [Xx'|X"=oG!&>:8` [Wt$I^iIMcZU'3͒(AnkjBjʊ3){g!$/F!-=~$A)_ :IxJ˖ [3 PGP1&$q{mmc [ kJ ,cIB@.|IB$ aZdMc [#! Hcb'&I0mk1`/7԰ϓ'Ϥk B} a`E)-#?rIB %??ӽ龜cA PS czZV$4H -cZ#"I$A,c c#" I ,c c$"Ia$,c c#"I$Ancjb%ڢM MkRR**"-$Q &&DcIYtb (8dQk$" 0 $|t# `-|t& A 80|iJpHMcМiR6 Ju5l۶R<_%J͉=Jb $ @sR# ذaۺ5mc-c'((%mkF@HIP1xյI) :ۿ4qTU]U#?C8q____ @"$.t$!nkp (,-&':@Fy9L[`/ 5Hrn S`/]"tJ= Rb I LcJ4#t)BMc,[ '$.8Mc1@Ih)zTA %h)m0|s& umĵQs#˃<IB :ʏp|VTT^$ L$I1|s'`'ȳ`XҜL[`\WQL& mc [&##sjB 7MI9RMcXc2ns [#"AH cb#!!H cb#" I$cb# [mҭmcMcU_U(R#B=1*z'aФR&xr &&B1)R,[hhhh$!$önkMc_WVW$![ucb$" I$cb'#4B#4k(Jr=}ݐ [# Xm6lcb#!a cb'nkZjJJHcҔ95 ImK{-cU_6 ImK/McUU50\=/1D?plҜ,[^\4/$-cUU2~ @PMcUU9 1, Hm/| [/mO?,[UW'x{&揔1ʇ&>%RY/ [\\XrӶJ,[R".0,c@@?1ʰ8IMc [","0,c$)@={ [rrr(۾:mcR`(#0S?mkf10_;TipW?OjJXX&/1 6'I O9W 9)=uaRs;1Zx$(PMc [`P#,/9>1 0,[VV\X뚬늮kJ%$2Mc,c(s5/iJ'72r=/!|'|O)j QN$y1 DBќMcXWG`r,[X}%b9"ɰ):&{oEtəLcb,q{Mk [#"$,c c#"I$I$,c c#" $H$,c c#!@A,c c$ eCF-c cj:'&,У'f)j6@I9v2D1 FCn۶kV}#!XhϤkr#Фc'$ &-|IB@@tI2HJ-A rҔ,[`Xu$"!$ $mcMcTuU$ $ R&IĐ#Jx%%@ 2zH}$ cA=B7u|%"kI)۴ P|j*%Mh|**' A,4hJ`D͓IМhR& FǏ޻?-[P\U& qMcZ #2GkJ>z%9'.Bx 7! IϤjBxAl§N39%D\4k![e0tsغ!a)fcss'xX.*B&>;٘|RRrh( 8"Q|k**J@ΓyRJ !H5s#!$ |tꪪ&#4.ҔBj3cR%Hq! nkMcW]Uv%$IMcZ& $X;Mc:b(=~O9Z @$&1 0i1 Ϭ_^x$&h^iUUY]$ 6 |*b 9rDьZp%?I4Z- D`>e_ [{j2wl)HmcWVXs'$ &0Mc9`>'Op9z- B aR 1H۶os [%s&P#o):&/&qbq|& B#B/4/|`ppp p p|/#$ 9Rp='I2HJj- 6w#:J몸*چ5u2:ϓ'ϕCA% @!8j۶Ҕ [pVU 4 Mc [@$@$kJ$ hmmk-cO?$|*>PJ%_-Vh)XR`& m[qmkMcUUVY#!$Icb& #McZp' :0Mcf!`J}dIA6% A@uӔJ~%QZ %;!-[``hx&!ӶNՎkMcWWW|$!mummcb$"!$acb(#8#8mkA:G|V\ő [#! cb$" 0Icb' Ҿ!k(BJ3PRAa o? IMc [U v IMc [WU"C>#=lk&00,- đR$I۰-3 [Z a[kfgMc [+1 V,cRÚ6躮 [Z0"{g)j%1hռoB㡉E0`kܰ-ĹmqC 7);RpXph$1U "BC&INOc+2'/ȰBXDOdf1*;INFR ;/$CPf!jjAќ,crz{7t,cU#b#Vmc [j*:.7c/14AMc [m5E&kJ "(aLcB`@1)k/ :⣡ &m 1kIJ*` @oz-"BI|Ϥ Eyı0+k(pE kےҔ-cWU$11>0&mƖaMcUUV\%!vh2vnkMcUU%&$$s&) &Bpb 0$[OJ讟($IA{Z#!$0ncjb$!Xu֦,c c# ۶aX c c:& 0 zFOdS'J) @C}k#H$A|s# |kp &Ω&.K: *r"&QR_C:ZMcbXVV$ ѤhKmk S$!m׵Cfcb# ضmۂucb&$B{bEO ("HA/޻m۶P|r&# Ip'z 4˃-%| ''I$!k@&`QB&G9EMcbX\$ mk [s&H6IMcZ%`<6Mc [#fh:,Mc,c&P-P簜g!+>G1E uscR$+Ҥm0|s# I$6 0|s*$HDss窪'B#,"|9@;?h2s誁(<)241|1@`GTu{)#Dh|s #"@$|t%!6IM'Qs%MR62&qŖiϜmcUWV\'+B&mk9`*$B1߷ =Pc钲,[`^&BIҴMnkRH *(OФ1 >+؆q՘-Ҍ c `9'ORz% ;pRUlk -}[rs'90c/4ACR>@|?Ѥ- @(jiJ&m['Mc [#HۖMc,[&жmkkBB.s>(: 61=Ҍ|zb!~sJ^ $iOmkJ (#<3&lk0006T ƒ [$$HsMc,[$&IrMc-c]%")Mc1@@@0q cqsqqX;Mc,cۂkJ#<#*kZ ۶1mkR*` $'Lc y0e :~$y%`%) ;IJڶ S z>9xB멭0pn]s [$!@۵]֮mcMcX]Uu% "$ kIBbJ *0N)'Ž&'-GI)Fќ1 @гo [XV}_#@4DknkRj**ϰ#NB'*MKnJ%$Gr-k c' @&ms1*pBND29') >!ttL6k+ ۶mi0t#!I$"|t'$(0|B`Ht$IA& J!X`˶єZ@p)R#.Rb7(H Sp# ؀mdmcMcUUW\' &mk#`:NQJ%<H[kp)Fj&jss#"@$$|t% 7N0|k𢪪& $$I0|Zb3 }:'ФRr&.q+ Ik [$IMc,['OlqMc ['?ܶMc [([#(,mk(:`A?r1z Qy|ftkk(CF~4sp\W_I$ sk 1|mc@#s [`#\}>1J'" I`oJE1DJ-c,c$In&Mc ['۶m.nk [/O/.>M1jڷ ApRӜJ1`5۸moB+aB3S3>|%j>%G1xZҜ [r#Ink [ #;p-c,[0!2kJ!"0%mk @0<F+ [brPX"[uk [ 'MmRz 0O<Ф$/ &7pR\%&H%$BUܖ$LcA~ ?,c1@@`3xyP:^$,c1UI,[^UW$̳mnkR @mc [-U!J Z8o1&>/ qOMcWW^\#!$HI0cb&$I,mcB`'bL0. CO -cz^Cp0-cTU]U$3/Mc,[p#@5HMc,[ %[A'mmkRb*$PϤkJc7'$?МEEOdɐSA) DDϟUsPTUU$" $M|kp(9_#Oc*M-|1`Gt$I2HJ-H)X`˶ҜZp$4i4mMc [ #!d IMc [@#9 MR'(P1epHi'QD' J[յo.IcR$mmp#"HIь|#"H$I ь|& m˶dҌUUU',4`$ьZ`6EILXќZp@XӲm۶ZU&` Rr7&I/R$!AuK4mkMcUUUV(ӶM!kR**JDl$ORE)/)I AKUsrT& cK#AQ|s_&!m'q,P|UUz&$m:QMc^($I'0|9W($ $0|)B$<͓& 0pB'vr1iRGW>Uk$" &IB"|t#"I$ $|t#"H A|t$ b@Y$-1|t%/0RR6z1i1mc^VXp$ )BSmcMc\]T$"d 2cb#" A$cb#@*ؒ Mc,[0 #*谜.j'KB%?{K ss$$H0|s_#$@q$0|s%A,9|HBp>|IR% /CLgmc\Xj-mmmk,[ HfbMc,c&$9Mc&!p@l$I& >cXͶќB"x3Oќk:$ots&AJ$Cts!(r'|s ҆M4!s-c @6O'Ns(B޷-.xL ?M[Xp."(n{R M0!mkJ*J&͓Gj& @ Ҝ [pManMc,[$![&ذnkMcUU#)oB'G O'*: %$@&sokBX#!@`nkMcUUWzh -c,[mmw1mk,[@|ҤN1&' ?r [\TVU$ɀ „kJ"Fmmc,[:::>DNDB2ض֯s,[,-CI/Mc UU:~N\(B ,IDO,[]-I" @rO S*>I[NTќA 2/$Y/ [U6 IͶp-cUU2|:B 676C˿R'%ۖs [_/;5sR@A9p(BPO5D mc [s' H-cR_ xGpGo)&&&&0ʯȏsRE!,[ [29& vҌjmc,cw m]N `mk,cUU$319mk9bb6UYEk&/G!\!$Mc"H$.G!W (MI&)>$y')3IAo&-(.9 @h,[VW9'r,cWUUpJ6McZ`0.).:. h+UP,cV^\X` IkJ$ kJ#,,c1@@3)HIR'0pz'F}c:ڱ S`X(x-skZn)VkkJ%!tDZXcb=pMcRZ#!o1>oo kձp'rhR%S?qJ^S/jB\!&"0Mc%@AI9ʱ1 dh@McR  kJ"A^uZmc,c?>9OϔhE1 fm!McZ$ўimc [?:??9pHJkHMc ["~t>mk [/>5O1 uU)QMc S#lMc,[ $ppOB66667ȏQ|,cTTTT$5TKMc,[ &nkRoJJJ=9P9#yB$IMc,[#=$IMc,["pGze...8j LOW I$Ϝe4ɓ$b. $Iގ!A$ɟb_*I$М,֐ [U$CP:ФIB_1L\iќ [^^' BCi| [`W&Om IMc)B^ @#0{1?3e0 [mmkJk"mukJ "h,c9`@.L/9 ȱmMc [)"I5McB`"`O- nJ!1q G珕br̓ jF!&jْҜ,[pVu#$H Hmk [ #j5 `R7+Dh! Sc.! Mc,[&ذ+nk-cu&4p<zDIr!"El[sX+B!-t)}ײ |t("& A 90|R@PG}ĉcќR% C s붲,[`Xu$OR_)!R'dr Mc-[ & &mkEFNIRǘr|z~< dKќk_9tUU='|UUU9osU(& &,|)@ X196 Dϕ t{bX% [ 7yb ~GIIZW?I1RU $1)B_'p$kBU%Iɟ$JB_&h1h).:ߪ+wz?kZp/M{McWW_T$$A 9nkHJ`X:tIbe)' 6  rk-cbXVUD 4Amk [>t: *: ''ÔARp:|ITHR޷-7޼k` =m Lsky?sk% s8p [6z?Γ F1%3*Ԩے-c`XVU)۶ -cR66Mc [N &UMc [;Z,@kB'&vh8j:k9'ItZ{5 :)VXsQ-h-:pP|P,,GrP|/t#͒@ьkZj wG>Qc'3 0|ReƱi [RBMcR #NMcZ W#7McR@#&͓Dne& GIaUmcbXT%͍&#iQR-_K0Ʀp{p+s'crB}$ќ1@Mcd ~ MLc!#:Σ!kRJ?$%i}mMc [&v@k-cՕ=OTpA $)y`iMc [&OVk-c7 A$ٖnVtMc ["C͒4Mc [%p*h oB66667ȏȏQ|,cTTTT%Vcxnc,[++.!kZjjj? pB&i:kjB~'$I'Mc _7IrT-[U.#1 :z?kWќM[Z[5?o1|-cWUU1$K|1hꪪ5y1p(Bc"Ir$IMcR $ )Mc-c*"",Mc9@3b|R%!4M۱kZ&cC%)Mc [## Mc(B`@@1OR ;-AMc,[!-k;$ Mc [U J9Mc2 x1GM/ ('ϓo)_-*O= /ۖX6M- Jddncz@}ҔZp$֋mMc [ #"HH cb#!$$H2cb#rh.J',6m/!`'&M?D& Ky\)Z*@¿upPu]$"LIH"^uUU%"h$tz*(@-? 2&J} xМiR%GGZp$"d0 $cb#!d0$@cb%$ {R{*̳' &1MI& F)_SkrZ&A$rsk"$Pm&|s_#q|s(d˖lA"1|sz:J$s>J816 G~ Z*3ƄCkB/*(nJR_}%Dl۶m-kZ#!$Hncjb#!Incjb%$0F1jz ϖR:$%1 J|TMcz1N:4یRs#"HI |t#!$H$I|t($ &,0|1@'Xĉ96 FϑC .c\8}۶m۳s$ " q,[bʪ#r9qLc %300|_VX`4yrs8 O|UUU6Ss߱sU7%I|UU6I\3&2)2zLϓ)r B`+C 2B<}ɐ(J% <GΟ,[pW]`K@KMc [K%`Mc [$ 8*Mc S*j"L&Bs1JB '];zRmcz IƼts %'lnsk + I20|nc vӚa|kk>#=1$g& %mĖaMR-Jښn-c,c!mgp-c,[$A$$-c-[! a%Lcg)@?N$IcФE! .??QjB #܆mÖaќP|JK҄΃Z)pP|W<$7IŒ=b*`X=~Ib3Z5 x9JX` /"- mpRW/  Mc [h+r|Mc [WWו8ppj'5I,R`&+AfgkZ%!t mk-[* s5 H1J 7_}۾ ǒ c 5mvԽq܀v>Oo|1II@RR~(Ih1"<)z;I11z#S&)U(`I$ :U;P$ 'БI$RUU&I?1)BU5h$$PIoIBU#жIR):U#pId.' 9(IRro9W3$$I.@PD)L$b%9$-H b2I 1j>I$Ѥlks öMc [U!%<-[9@@+ [[{sq  iMc [uר"OĒ@Mc [ *.O9f4McR  IMc [] @%McZo**//B!ouMc ["ϛ֩mc [% MzP;kIB"z(1`/E)˭O10l$I Of)2Oo9 4In FjB85NsAj !xQ' I<ŬR~?Dy1R$![nikZ#"I cb#"I I$cb$!ڮkcb&$ 4mk`%*IOK֊obX+[#{(*P-&mcNX% klq_5($س'b@PDO\1dZ% ?5m] [U,Vl!{-[#!$H!cb% ۪ckMcUUU'$XPF)j6Gϓ珑bRB% AjےUsbXVU!= hNc#4h! sUUX{֭t0|nc" &M0)1|-c*J'&L?9j' AyD9`2LcbDă,[p}#"$Mc*B@%ϤjJ7_($HRp$ IR 3-c c' a= c@1Mq& HOK r-[zVDhoQZ$5,/9&j3w!`k$$H$|s($ &,0|1@%PĉФ1& HcƊt{,b5{۶ڳs#" $I$|t#! 2 |t$0-[b ; Q c '/fl) 0tUW|$ "H!iQ|t#" I|t&$ $!0|Mc @I|I(B>& HU ZVU%s=@/9?<I [z\p%mm׿Mc-[d #-c,cN2@y-c,[ Mc [* I&mMcRK#|>hIB'7!d@11c!FVsk#H1Its_ ,8`„)Bz&= bZ%g-[RI'$mB.R!Ai[Mc,[ A 8Mc1p8}ɑМ97=ݲmӔ cp\VU :'"~2qjJ "IBP|"a#&hR`8MdpZ% 6Du{cp\}SD{ Sb93Rp"# [UUVX(,R'/j&5I )ZбE! /{R"IMc []%m0NMc,[m&tMc,c:B7HJ <1rJX mAmkR%)'mk,[߯7sMc*U5zLќA'''H q-cvWV0b cMcUU5 mpMcUUA~IT) 4Q [^U}6'|,cUUU1L6dC6s1jjj=Ҝ cZzz-$kZ_$B*11P(BÁ$v.@$Imk-cU%".Mc1@@@@3,crsysXMc,[#8McJJʊ410|9mo-c,[ mv#7 Mc,c*2MG/9&&#/37mcZl!$ID?Lc9~! $Mc91̱GO$N !4?Ojo1_B$c9_1I/95I ض c~U1lG|Jp9&><`=1|Z `䏌$z&`Q!%A?pV>pP3 cj^W fINkZr9.` kJ'+4mNMcUW\R# [lcb&e۶kMcUUU' `B&mkb`85|`.n'iJ` GI!HќZ- F۹ [uu$!h$[۵MkMcUU#h5*@{R 7+Fl! McUWZq&4p<z'DIdpS9-# GFΟ4sp$"$$ |t#}x|s 5@.k_#VH)OK*(B#)BZI!xr-[zF`Ӕ-c\WUU#" $$mcMc|UU#"$cb$*R;4mk SJ* |>-Τ 2(dA9<xJ|$I Мd>/ GT`۶3-czVU$`i4mnk [$[<ٛ;Mc,[ #,B$Gnk [o/5NGl<>oB&2)n84ӌ)B`'X䉓16 JcƊ.r\2ֳ֮s$!m k|t#!D@H|t#"@$ |t#!IC|t$ҌR&OqLc .&mb|UUW\$ I$0|s&"8X'p:b,K FҜZ`p$$H$I-kZ$!-mMkZK.$~2?0h) >&va\0McUVX`#mnMc,cHLkJ v,c-[&$‚%k1(`;N9pҜ9' 9}>dO﬌B&&fa1Фc&('{R@PAɕKHgR- ,%Ik#mi HtMc`#O5PRr.&M3pC`=|$IМf)' ?J`˶Z`X^WM cZ]a cb/@KJ7"O}>qR %9N\1t3HR- 1߿5sXVUUk.rskI$ 0kk /bK|N[z**M䑽*B '4Iϔp1%-3 hQJIH& [Z #ɑϔoMc [5%#!LcbS;C39-c,c" a‚%Mc9 b8Γ1p1 *h5qR%ےJ^$0AxRkBp$!]ekmkR1LK9''&&0ظs,[$!kv6cb$!]kmkMc8Op) t Mc [-akJ",",Lc9````1p crrrr`0$Mc,c*˜*iMcZNJJ;9 `9%hMc-['",Mc1@91jJd$Mc(J_${1U 1?IO1In9W+$'I"p1U"4M$-.D .Mipf)6Ip􌏔)2= P S U11P,[UU1\;vo0J@~31lP9.G@Mc [:`[vMc,[P<#O:+'qz$I HR Ccn?(*ْ cXVU$)I$I cR #@-cb#6ci-cZK **Z#.R_,MbMcUUP'$,h< j'CϓbA*;I9_3|XX/FlPӌ #!ь|'۸m!/t*J'‚%K9@> GI)>2{zCpQ,[Tu] ۤUaG-c,[#"IH$cb'$$Q"k-cm$ʟ$0F&:C1 GReu|XVUW$!ڶ떶1||_WUU#" |t -#sk $  9s:p!z& BO1Ncz^* z&:J'+-ٶ`k-[#"A$cb#"A$ cb$Mc,[` "*ҳO)j3r'B/΃Mc:b=M\97- <CϟMcXVUU#! mkMcnUU%s5*@J 7_>O'QJ5As#"H|t#!I$0|t% A 40|iRp;111RhZk"V,-cZit cb IC&MkKJ$ &( cG!@>t$I. 4:1J7 $l kWUWXM۴sk~sk5hD Bz'9IŌR[N[B_4HB`YJ,cR )JMc [$[ؠmMc,[! A,4-c1p;}d 97% 6CΟӜ,cXVUU a۶mmkRr*=QJB 'ҔiԽ~ #?JX)zg{ǰd..&(= k($|)%$I܎kIB%I;nkR**u>IIF) `imkR B;,c,[ "-",Lc9``@`1pRpr q?mcR_&uUs-;nkR 5 @lќ' 4I'nk)BU%&a?mc9U59` O2 $YPM[U]5 loO-[U]3 o0,[U8dOT|p1 "$j$Ќe- $& H%Kq7 ۶M ,Խz>$fnkz5GФR`k( f] MkZ$" a2-c c #"I$H c c$!k-ncjb' (I0(nkJJ* B<;0j  Hy\1TGJ*DpTUU$!ku鲶i#{=s<`.Fl!б+[B.R#'NZp' I 3,cxV3XSIr{R{$L&&J'$hHMc,[%   McJ@&͓Ϝ$& CI (4ks)F۷m4ncx)Dk5nc'+ۆmÖiotW]w$$AR#|s! a&tA`?}pP,cj\W$H{l˶nc [%# kJb*+ |6>o:'+-hC8mk,S&5gmk ['&0`ќCj&:ɟ?0E) GR+2McbXV"x=?):701QmcXp,o}nc-c\p#R ]fMc [:%$ =McfP$'z6 =']QRz@$aQ{[6$m Q{U4$$ QsU9gl G)B*':ImضZW0ImObU/I`-1jjDI<9RLki4I$8 MkU0~"@qs U#;I1RX=J$ѤIJ^$$!H-k9p!$I c'۶mwNkJJ(R#ɚ&s1j w;Q9 $ThQ*:X@}dJ% ?ăϟ,[Pu]$"$$$$mcMcVuU#! Hcb# k:tmmcMcUU&#&*:/o(!?1' IAok'$ (0|IB`?tĉKtHR޷->A#̟k`X@Oc{%BNnRb!mH $ cR$q!-kR J2'Ng1' =1vRќ,[pXV ݲmmkJj*0B%(6m k]u!*4j҄IBz'=Ic֊4hR-(ۦmqs$TK$iPse$s,9 ho[(JI1Rz#%ذmMcR&$M6-mcA`9tĉC1' =A#̟,[pVU $C2Mc-c$kJ IMcR@ ί#qJ -_iϤ⪪ B$ӽxBO&2 [X4IBCR7>IRU1I<0MJA+?#5.:] ?ɟ$iBU($@/9, IJ\//HBUBI>ќ(J 7@oJ5IҶ@OZ2II4o,cjU; h9!tm{Mc [ 4MmJMc,c ȁmCMc,c$8#5mk905]QR#Mc [UVWMc,[*>7LD|FgOe)..+8os [#5Mce!`' ,|$$j E'A(B<Izʒќ-[zW?`>C6&>z $I$L$Μ kI)HZzDX c\WUU$P.R7)BMNJ) }L cZ$ Hncjb&  8-c`'D& FF,cOgts$ M$#!$  I2ь|' 4iR`ENQ:'?!(j붱 [pVu&i$IMcRX5ɖ-c,c$6ißMc,[%#ii{Jz' |oB%:9z1zEɟ?Q( >9dPtRz!4M>,cx"$#$mcB-Oq . -b0McW\P`$ `$OF!'?N$wBќ!& @ea˖SMc^U?XS6eS60|A`zjz6x,crrrr$vImkZ&wF[Ak,c??@N\qHJ'* H׾Nk ctTWU$"!I$-c c%."(-c @@@@1Zcbbb$d, Q-cb!09 cZ)%[2&/%):=d摌R+ 3mIP,[*UU,O0McUU)Ih$1%& IA_'m۶rmq?"ɒ IԽPJ{yQ-czVX`( ]׉ mk-c#! I$Ccb#"  cb'8$!nk-cE&&Ld1z7 CIr-[+z^'|.0 S El$ORZ'<*`ɒ4scX )m{ dH1|mc!#i Pc[# Oi!‚%H҄O1z'A  [p$-hZ'mMc,[$"aBI0cb$mkJb *&M(-0 *zBcSiZ 2۱ۓs#!A$A"|t$!mvhl|t$*$(|Nc @:N)B&' 1/N&QRVx.D'OќB_'=:`ɒ,[bXW$ 曶mmc,[#5@$IMc,[ $"$IB&cb$" 0aH$cb'&&,mk%1@CC "KOL!RmchXCȟQMcTUUU$ A:(mk [B*%j$IϤJ% '&שׂJ-!C#0S,mciJRPsx8 P [PPPPI$JkJ-A(IkJ "IMc [JJ39@ 9$fmfLMc [$"II$cb&!lWudnkMc3L9$yznk,[ @DHkJͺhvkJ#"LcB``3 mGP [XXZZ$I mk [*mamk [!`EX,/9>>.:NzEN$Oќe) ?AX۶ [ ^U?r,[xWUU% 41MciB@!#玓Мz>@O 2-cb^Dx cTU]W#! -c c#" I$ c c$PR7)BMRa) P3Mk$` DpPT|CXV(x$IQkl)1ǚ#Mc덷(HQt'  =ZP>t$ɕќR7 >xjN:Rꯗ' $I@ [$!vmcb$! mmڶcb  4Mc& `>t$IR&)) AI:kZ~+Ôak'mn0|s#"$I$|t$$H$ Q|kb&#=L$М:6 >D1T.cr7SJB7$mBm-[UUV\dkJ0tٶnkJ ID$kJ! ۦm (Lc1@ N#' L6$AӽPjxC)=N?1& Z 1_+ 5I?=1):䜠1mc_9Inؖ-[~U7 >l :.AIU$ќ1x>Iќ)#mI.)BU'C:IO:z_?McRrPP$ )RD;cb'Ank-c8OPA $I cb#!A$ ,c c&"0#0-cf9@?ybbrrP$"dȄd-c c"C:R% cbzzz `xNG)>>&&:rʿr,cTTVVlkJ!ivmc,[::.:M9'' ; mm[o-c(UU/I.mrmc UU/#貽,cU$ P7 S8雰MԽϤj *A q [ux( k׎ mk S(K,Q*nkMcUUe(‚%Ko)j6 FIcƊҜR .]s [$H{Bz7 |kBRR뭗'Ik#B=9I0|sߪ!m3DYtsUU$()'0|HJ`=I\9p3hZ) DXu^6k*Ia/ S#!$Icb#! cb'6M۰)kR*J1['N)6 @I|9R~,fh1\OOS( |t&K+1ts?o+R#&K(Jzڶ-:1vR 4Mc#P AkZ9}B:rmcí+MKJ$ DmkMcUUU^#"I H cb#! H2cb%   Mc)J@9c'O16 ?BMcbXV+1ǚѯB7-mb S#!$I$cb## Acb&"A$I.R_$qe 8G{'МgX#.1Հ'ybۥmMc [$k{eaWnk-cյ8 1 #dAMc,[#"AIcb'!u`gvdgkMc7DOB0۸?sZ~!ӴmP;LcG!~$'LcEWے$,c@3&I1^0l$;N:_ *>I?O1 -=Okì2Bhh/9PI1⃉) mc,[ $ $ mkJB* BΓ1&z' BIקrmkxo7v{ c]]#"A I c c#"I$$,c c#"@$H$,c c& -6l Mk c'(R#4`䰔$*&o;q*k'J!8hUsp%4MX<0|s Z$$H?|s_Z#8|nc@$AǚМ *FMcb%> jY,[bXu#AmkRH*)|#NJ(InR%  9mk:@P?|$I R%!+ @)V`˶Tsr\WTx;mts #s9,aNc{/VlKot__$H(4|1`!@牓gМ:z >Iќb`\@hZ\W]W`-cJJ` " :'#MBR)cLc,c\!$I 9Mc`س16 %ђ$IӽϤ"H$I$q)wxdzr`=˯,cVVV)ؓs,cXUUUO!QMc [Mc-c$R.#4oE:DR [hh0@Ib/|,[U6`?I|-cUUU69=s'J?if$o1\$H$.1U$$I$N1U5ϐH $)$0 n)BU$n$s*BU'B#4'Lsf) AGiUpJJ^' $InkB U!GRWNk*J-9MD1&//.sZ$A@kJ" !,cI:@; h9e1 $a8aMc [# ò`cb("0#I Ǫќ,cpX$2MҦmmk [#P@NJ'*AΠp [&8r򄐌IJx%B'R $Itk#!|k # "H|mc`$1J/*4h!Rp# 6` cb'$Ir@"mk [*8&MМ1z' ? ќMc`XV# `lmc-c$a$mMcj:@,OϤkJ7-چmbnR# ذmZ,Mc c( %Mc@07Q IIM`Mc\V<@-IMczUU)j9RZ7*$ 6'):=Oɑ\p &瘒mk [%Fr@>mk [ z%Ҵm`kJ_+{GxƤc...&7M$ 1I$v 2R*2ɟ$ @0|/9M`1jJv!BqjJ DTMcp\\#6ݶmkR<&,c_UU m&MMc [-ꪪ/017*i1J:`玓?cƊ,cp\5S$IOR>(! Rc ) K c [#!$ ,c c&K$"-kZ ' 9z<ДDz>EI 2F Fl۶kxw( L&>c'*Mh~|s[+b|s ȐҔ(:ZDO ӽAB~ۑ [`$!ڵ]vmcMcq^WU$!mmWcb$iXMcJ`)5ǚ& .2{y~,Ф1 A h{u|CXVW$UҶi0|s$"$I|t$!+u]0|sj:,1#P: *)pA'"Sc' ~pܱmq9%$$IԽq?_? $Ir$%/j^>'Ap_5?ҔMc[Z{/ ԒObMcWUU0 _0Mc UU5" mɖ/Mc(M7O0f1 Do?ҔiJ_7I?ING )I{IB B!.(b:Mcf)@<{ [acr%!$Ĥ mcMc|VVT#! CMc,c 7c{p1>>&> [\w){$IqJ _(MMc+5B$IԽ/F'{`BKmJ#! H$cb#" Hcb#!  I2cb($I(0Mc1`<tɑCA7 :O9MФJ,L?QBBU|rXWU$!]um|t$"I$a|t% & $ | S@!ǏJ +:0<М GI1xќ A| [$" 2I$cb#!HAcb#ڦI R7_>P$2A .ȝ}n>rkMѶk0|nc$J/j|s &$ (,|R`;sĉHJ- E~9kݶ|z^(d@܏RXb63>}O1j6 > ҜR$fL¦mmc-[ $"`$I$cb$"I& cb$"aMcJ@,gk"& :',ۄM- x"xܹ;QC> D9tNcz=0 [#"H $cb$A$hMcJ%=r! /:w.bIN$ m)W 7I$ &7I$ J8ɟ$  [#  |s_"n"ɕssWU.4PP)Bjr<@T Z|#1 2.+?qmkXp(ۺnc,[`H2kJ$HkJ! "$!mk1B R7r ?c RMcz^4۶ms [#"H $cb#`sRz) {9 J'+6nT,nkR*h'‚%Lmc9`=M\psA% ?B#uTkPx')k5Lc) ihps& m˶m|s*'$X)6Cϓ'O R% DyB4`ϲ*J8/fi) cWVa#ф cZ!C"bb  `0 cZ$bDMkbUUյ!/8b䰜$:'е0.IeԽ/>H'Oӽ.~=eaX۶2-c ^U>r,cXWUU!'p11'78EyMc^\ZXItH-c,c L0-c,cI$I$kJ& k:Jʊ?19pBÃ!I0 $Mc,[#! A &Mc c&#<#qJ-(Ik'۶M!Q|kJ&LIBz Bc4|-`X.x9۸m﬐[7ACyI٤o [p( l}ۏ mk S#!! cb#!`@cb"*,P'.|F!j>=I1vќ9 "'c*J !Ia/k' I)1|Lc*JAl'OյZ^׵-@:`˶PAP$ )9(^#j(As'zFmkh{i)6-mk [#"H$I$cb#"I Acb#!$$B2cb&$ 9Mc9p;k$!. 1h*:'DDrmkh?@Ҕ-cXVUU$"A&L$cb#"H$I cb'$ (,Mc@H|$I) EU%TZ({1i9Ϥt_~x##A|s]$ H$I|su #N $|s #B% 0|s*$Ҥm,,tIB`GN\ThR7-3۲k"A t S@ QJB >+9pMcW^XpEQ`,c,[ &q!mcR*J#MRc' <OzMc"`X7s,[}]$!芮ktcb#"I@cb#!!I@cb(m0!kJ JA#L7ڪ Hy탡(F`vt\WUU#" I 0||VUUU#" $ |t% mm:0|s*'/8X$9z6ByD2mkj?McXVUU#"InkRr**ϰ#.J'+ۆmB-S' B&mk$)`@N\9- =ƒɟuPTUU$P>Mّpа@ kp ((1j5s馼)1h<9j,GɓIќHB Et붲Z`XWu$& Zm-k c#s>+J'+4Lo cUW\R Ē: cZ &I0)-cR*B =LМ& Vm44r ='BӽowFZќ)h5/)Zcki nخ%mk,c}Wx&mP?mkiB^"`,::71 [xxx!m'+`k,cWWע i0:Mk :x"$I$McU&$A$/F)_+=97I1{ "Ibq1U&`Ibq)BU'&;1C*8m}đ [# ضm֦cb#!!H$Acb%" "!Mc9@@@@2,cssss#! cb#!$I2cb' mP_vfkMcCOdNќ(B -2HػsZ]u-c,c&hI:-c,[ P`&::.CA{˹Rpv$Lc-[(?mnc,[ ,`KDМf!&&'J9'`=):p(vO5NjBW ݐxNjBp8|M.&FXZ/}m-c UU1$ -c*U/I0R`)$􏜧`Al'O1ڶ AH`ɒҜ,[bXW$ammk-[#"A$@$cb# R Mc,[ #P#R_%01 ''"%w):jھGIcƊTs-1׶mےs# C;dۆa0|s%&pc'z&0*:)mmk [' "=mc1@?Od %! 9RΟ [XVUU"i$McRp*! g#oJ'D'OiJz߷*C)hZs⸮$Iچip|#"I$I ь|# ذ% UUU(b"1({XbJ*tA\ϤJ)!۹mk-[$ $I-Mc-c ( a&Mc9`A} 񁱔A-@͟ [`\}$R{):*~L?qRZz%' I@ S$!mvڡcb'$Ir+*k-cG&猓Фd> L9U Tsc& ۶mQ|kC*&1R'1qŖМtW__x$"L"d&|t#" A|t'!:Qs'&J2HJڞ'GZXUscT {d$ɐD0|nc# @Jj!~pǿQR )qMcUU^\!‚%K<j. DIƪRZp )X|9 [X`5#$M J#! A$mcMcWUU#! I cb&$ !nkR* J&@Ο?1z' Iy)Xt{.r:%IҜk}& L=kX%&$IA0|k$%q\1|s?'&,X1j6HIdМ)B ACɟ?McXVUU$![hfmkMc^WUU#" $I$cb#",McR@& 'Мf) >IO 1+ +p9-^+Ip%?9?p'm1ҌP=M'={(Bz/ADpNc `E cXVUU#"A$I-c c#"H$,c c$ ۴MkZJ'#nKJ7'M2x Ň1_- m;eӽ샡<Ox*<?I2^Фbj61?I2)r5$.ho1U5I0pB5IpqD* &.<4Im1p+I1_(IrI@J$y{1s/i/$ ikU6@qmcU4Ir@QM[U3IMDr-[U4Ƀ><iqr۰R\\'PIҒPiBU'ԲIBOiBU"NImOo5МF)r#I?%_&$oG!U)$ v${9* ENϑxF1 INMcIB-iu@2`Mc,[&ۊmMc,cU~!p'xg)&&&&?k,[\\TT&dKdK-c,c! "nk [?oDOpќ% )xMosZ('oNc-c-UU*|"3=o zEZ'&hnkZ$"LIBncjb#bI$ -c c /.'Ncb*./j.:*7B!yq [zX`'X, kR#! cb#! $ cb#Mc [*% R&Mcd)=Nx1`1' )?/QR %; y91kp) } |s& %[6eY0|s*& 4h$IBr&FI!H3HJ )N&pRz/D|$I d>. @ ݰ]Ҕ,[pVU$ Lc,cY]64kJ4,cj:@2NƜ= **$h! q|# mٰnҌq$!]h6ь|%!m:fȲUUe$=rD3Rz'DI6 +cp*taDoMcUTPC% 'sBXANX1T97 =ÃϟӔMcXVUU$"!L$cb#!A&$mcMcUUW$5,`*:6(1?1J *m–AO ['JI1t{)c7ӌs#"A$I |t$#|Z@1'1,c0?Q||UUTX#"I$|t'&%0|:`HɑL9TGR) )8fIQ|s1|mcIHH20|nce1IQ|s_{#1R6{(14Q``@yR>x0R۲ ڶiMkJj"1#aJ7_"$mPJp!#Mc [*B(L;ez& Gy1ht..rHh5k#"H$H0||UUU$$I0kz%#nkX%'?МJBjޠGIfR 6o|::Ϥ [xZ(mis-[$![ؚvcb# ۀm2cb' '01zFOdI) DăϟP|p$"AI/|X⪪))b,1 %) q豌s B=eC'MZb6 @Ir6 [ XVECە1 cX^_y#!A-c c$!M[kt,c c$"a0 $,c c#"H H$ncjb!H&( c!@*K)HqD P [m'AԽqVSiۺ^:$I;)jLǘY,[Xxx)ۖ$٘kZ} Mc [_ HMc [!x p(!&&&&CqZ'?nk?nk [_( H2^7sIB@Jjn91R  i؆mMc [!kJ $I$Mc-c/&5QkMcGMNA=s,[9$s,[U4Զ$5sB*b3@:}L\j)O.1R^z:I~/J:4$mo B_**-'М&:mlќ(BU$KIQ 0I'!נ $6$o 2W"*r?LcZB1ҜR!ّl mk [HCkJ"Rhc>.D9z [hhzZ#"A$H$-k c_VVW#"I $,c c#"I $,c c& [zlMk c_Օ>| .&;y$XOq-c U&R`'-۶hmkR$!]u[fcb! @&Mc1p=N1d9' =P-cXVUU#kJb*"N.?P0B 7*BOQsUVX'(0h$0(B`'GI!H3gR- Dps$PAqkZj1}>0-[b'*qnJ$ȐLc,[$IDH$kJ"$ 8-Mcg1`4s$I%)' =O>BR(^,FiT/|%ֵ Ҍq% 4h҄bp7BIbŊUb *Hm˶Q|s#b @nc%DO(BBhq [#"@$@$cb#"A$H$cb#"H$ cb#!ImkMcUU#r> .j9ߒJJxEɓH1"  Lݏ͟5sP$"H$I$0||VUUU$" $H„|t#! 2$B1||UUU&/R&zj2/0|W^Zq$ۦmن|sBt$Or1/)J=ްUsRTW%!tlQ||UU"[I"H1|s"9tk` $IT?sJ^ '|iJG'OQJ%/Fh˶Ҕ,[pXw$HMc,[$m'Ҥ Mc,[4k Mc [*j,a샬J7#c&Bj*Cy9{: H`k$!趦b0||VUU#!$@0 |t#! @|t',B|E!Gyg2sHB`Ҕ-c\VUU$AmkZj(R# R''I S' B&mk `8IΓ)HP|r$"$H0#"I @ ь|% (  (Lc@;yO֭]'@߹}#$@ I3 $!k6ֶt$C۠ z(/TSZZ(  REMO C [TvW-'mێk-cUUU1k [_0 3 mɲ-[*uCOOМ% 3)$XOJ1BX(I9J: #$ %$.IBU8s ?۲ cX\TT#"$Incjb#"I A,c c#! $@,c c($i*)Nk)J*J? H91 $!aiImk ['#Ȓ"鐔 j'!y?1Rp'B&{f*7N1`1' 8пܿ}ےMcXVUU$!X״ڶmcMc\U}U#" $cb$U['amkRB *"M>1R %_IO瓵탥(Cps#"I$0||VUUU# ۆa؆-0|s&/9|9 @$IqPqKcX⃪!HMRP $ 4 LcIB@+c'ϓo16 9pCҜ,c`XVjImmk [es*: JB'%j51jBz@IC uZ-2ߒs#"$H$|t$!ie[v|t/$j5 @onc[j*ta1XϜRc&lYq mkMcUUV_$!ڵkvcb#!$ $A"cb&ۦm@ kR*b&9{Djz C$9r*:*J)jvRR^&w$JB$0|jBW&Mw0|-[%!6dBQs_%,B1|sj$~'J>5 9qזs_|JI?7/A(O$HW Dn1)B *$N/piJZ$,c1_HMc(:U&FjߎkiJU,mz{kR**(58tO11 6$y^(EO /=,׭b\@,r(DI!3- %% mnxs#"  I3&4jj'pmPTq+k)LSbx?IH-&! 0sJ$ɐ &mk-cUUUXR$X-c,[>!*#8McF@@A 1ќjJ[IMcR(ǵmoc,c9U__(#@㴍-c UUU+IJC& :踒0 :^%@ns B/\$4IAMkR #!$ &-c c꪿h("0#<-cF9@రC[,ccrRR$ N$mc,[$#9mmk [J*'uR wvQ ; sJ#!A$"kMc_UUV#"Icb#"I$Icb#! II0cb'$ &,k(B*b%OQ1 %* Ps_\`*o]0|s' a%1|IB`:|$I2R @!6Ԩ۶kpA1 [i7 @&~r){,@Ҕ [p2IڦIMcbڭYWlkJ-JvMc [J*.}díjJ %_Ches#! A |t$!ڵm6|t& c[e1|s?&$س$0|hRXDI$nr1 .Fl! Mc]V^r# Æmݚvcb'$ 9Mc9p?'Ip9z B`X˒ [ X)X3&Imk(BBFyQHB =$&P1|U4$#+PQ U5I~@1J~(wIRU$'JW*(\ɟ$J}~) q! :ӽcr\~> @h4sVW>@?s~7osp)@4msk/!*)s1@J$ϖ1R6L5R\/$@ sJ#!@ 0mcMc_UUX$!kmۭcb&&8McF@FOghD!/ ?}5k$R3Ak5_*y#a﬏cx$DIc& -|RJ&hɟ'9& G91s,[j\x$$IImk [$"L acb$"D$I$cb($ &)Mc9@F|$IR%)' D -K5sbw#!D" 0|sꪪ#`Nk *BM%Ʊ{ #%JsRjڶ'Fɔ隷r-cjxX q ImkRU 1$mMc [#A?Mc,[ "lMc,[  -FRMc [ꪺ"s5`)BJ%17 =O L:hحӌ\WUU7~PCts-Z+5,'m5U.$v0ӌ*UUU5X2$C2RjjjA@ 샯 -vU]/d+IuӌU2IbvӌU5$ d1Zjj>14탏MI+vsޒk_*#]sUU1$I{-Oi4lk_5IB֛ВR*I11W Gϑc")(D)4bYحp $W)ӌ Kk4R $Ȑӌi!s*5*aӌ X(dA\3N=( {ۿT&&=3kXA$I*cz׽/DIa׭{-6`e[v\Rz* ɛjBx HmkB P&<$:.@k ҔZpP IҶMc,c HK-c,c!mmMc,[;?:tMs:'%Htsɶ^0' ,4.W0wNRIRW*%R$ B%P}GO%):7Bd,[X\T! IMc,[! @$@Mc,[',"4Mcf1@@GRb"@x>B7)$L []up$ $ mkMcUUW\# ð-cb& 4Mc9p;kɕ 9޷-A!6`ɒ,[pu$#0J: '*2,cx`CMɑCHB+= r4kBXVUIҴsk"A sR`#'0R '. ّL0-cUU^X$ aLc,[!IdkJ&ISIMc,c&4A<>k9 B)) *IBk%$IQttUUe' 4r䱜jBz%FI (4&R- Ghs\#|P̏ [Z,$'%!X?}PB- C }۱-c`\WU#$AMc,[$!m-Ҷmc-c:ꪪ$9/*:'1wl!Hk$3hfi0|t%040|s*3'}rs7|UUU7 ]ӑs*!ɟ1  6Ϗ?C'0j: &>; `U|T\ZX$"aI$|t#B#0|sRRzz mo{Q/|sg3t& CMh;,[pXv*!)~mk-[ꪪ) 9 Rb 't =R`&$ .kJ( n&`<gМf)& H!zSTsJr%! I0|s#!  I|t& Q6Iv|t*)# Iot ]!;Ф1 ?nԚJp$ON'\IqR)]%'0R^`$ HsR&!:Ndk-c7'JФ&JT{CR#D@I|k#!$AB|t$ $%$#1|t(#8X31>@'@O n-Ι c` (GR]wx!m'Mmk,[ n3Mc,[$m{' Mc [ꢠ#0B&mcB@3N{-(nU6ӌ $vk1Bӌ&2-"0iR@@@91حn#JHӌ%$#`*z'@vǦ%"4#=Lc`pP@T{kcsR"Kʎ$m|sM% ss I 1|mc!m|s?&:5`'|(B`$F3$F!wB-Zr$ %# E$v󌪪!MX%ӌ#{;[ӌ/'6X$ cXB$ յks)1R*cj DOֵJs׽ B k۶ֵxWU# @$ӄ#lq8ӌ#Xڶis`ߟ :rk'>'*k~3OO8> >hnJ^kۥmmcR $H-c,c",,,cD@BɑTI'6ƅ9-)! 4IB3$EA?tK 0}u%UUU2ZC #UДx 4I,>Ft{글J06O rHB # y'jB~!mkIB %#`.':.K]s,[jzZ$ #`ڴmkJB$O?r1jB 7*Th)J`( AŒ=McAB|Ib9' < r붲,[bXu$ !%R)mc-[ # ۲ mmcLc$|.>P0jB 'Cz)ts|bZV[Umf|sV$C$0|nc6;f0|sUUU ,,`1j&!Qlkb&&mCM-[]U|]jMc,c%! س$f!6EN 񁐜%' A s۶Z`x}(N*B''&~Jj^Kc u c-:o߳s$"HI2|t$"H|N[@2t::RGR$![mcMc\Uw#! Icb#"I Hcb$BӴmk [J**2gs2>(B '2l Zs^X#"I$$|t$!Eu6|t$"A$ $|t'*",0|1@`LygPR)#"&R<#(HJj91`{rjh#!0|s#R#0.0|szzzz ,,%|1@?I`!zќ,cbp$>b-Bmk [#"IHcb#! $cb*cGNs-[$1j GL)u{9.xn۶rs$" `|t#"A$ |t$!h׶6|t(&B#%|HJ`Fɑ1J '0Ծk [dik `4HMcZ )UcAiJ%&9#ϤJx-&8,dj6OR *NsVp$B0|k5"P;9|s' "8|:@AΓpPo  9􌲌 hBIӌ)dlӌXe[42ӌs`'cg4 -%_Oӌ$&@bӌ(#43=Lk`pP>)L#"$ #! @2$5q( @3$mpꪪ!=P%ҌZ@Ak=k")Xts*&,׮K 1|s ' 5ky"Q|sU& %0|9`KO)h=ќ xGh'Nf)'/Dd,xӌTT'L 9* -#U%dA0- 7%Hj! 5ӌM& 8{$+kpEI)F7(k/B׭#j@t/|7j3jOէuM( {K#"H I5q# Iӌ$C ӌ*## Asp1kDu˃/&ǵT'|mT̃~ (&3aHBz ĐJW"B#Мz742Խ0i)9Im,n($H6at.#!A t#! I B03j'"8X3b`МHxS {- C Ub )I.>M3jz,NN'DФJB`#0NMcI: # "aIMcB`#1R7JNr*?G [`#"$cb#" Icb$"H$$cb$2N۴nkRJ*%M&X#쯜J+4ltUU^X!)0|nc*j =K䰜 :j6 ?y14̔hJ* ? ٵڕPWU%Ls.>,[j&&:Lǯ&<I'(p 8yגbXWUU#!  c cj$ #MkJRB * ?QA '4 WPQtUW~! ts!$a'ts&$I4e#1|sK#0h/f!`.,CImc\Zp/ nkMcU]wT#"Acb#!$$I cb&!:NnkMcUUU%%R#@'Lc! @(3cOD0|Z[s,}ۿ1|s#"$H$|t$ L$#1|t(#Z 1>H{nkq' $ 0|J@:ɔIdќB /iڵrs'ۼm۶!Q|kꪊJB}I)> AUҔZVw$=KKMc,[ $!-.mucb$!mM6cb'(B%mk )!$1E) HE˵]Tnc^$!k׶iӢ0|s#!A$|t$"IL$|t&H #1"1|k**JGt$O9&/ F/Ҝ-[P\VW$X9iMc,[#q캀0Mc [$`oMc,[ ) I()k : B>ȯ#"I$@$5q#.X!;9LcBrCI J8/DpҌ#"H$t# [5a3>ڪ#(3.)BO15n7)}ی R5ӌ%#Ǒ 5ӌ:' $I5s p'@$ZxhsIT c--)ɿ'Is+k6( ;>ӽМI Y7.W6 Ȓ嘗|# V`ٰm4UUU^(ڰ !Tp**JFMI`7*k7%@֭#" $@$3ꪪ# R`ú3[z+:5R"'(B`?$q{,"7u2RV઀$41ϤJ\& #`bmkB@%wL7Qf) )ta\0McUVX`' qmkMcUUTS#"A cb#!A$I2cb($I$1Mc9`;C'Oz/ <ϙQkB*=C'Os(Bz.?IqX۶s-4x4/|dB2q^UUU@#&R@BOR-cym1۷sZ}w$tC,cZ$" I,c c$["ك cZ !#A :>k#q)B )&mbќsW]~ $9siJp:'IhJz% ?Ia c 9:dO [zj/fl!mcWVXs%#9rݜmcMcW]($ =Mcf1p5O'I$!-AIX:-A1mSpBzk1Fpbs$!kbݚ|t'mݚmDQ|s&x<1.&Guk%!v@4C3Q||UUU'Kh%R>: Ӕs'.0汌9bC Tϛ'r,ch$ S|jJ\$"$$Hk-c$!Cukcb&6 ۰!nk [:*N%p܏?c>&CFSsRX'{țmNk')唘r"M[x*$ pMcp$0IQ|nc '.0Ѓ沌IBjjDќ,[B`$! 4hMcR#"$Icb#!$Dcb$ LҤIDMc c (#=hМz>&GO`!tKs$hۦI0|s#"I$I|t( NQ?w0|sj"XH :>IrmkjCQ-cTWUU#"I $cb#"A$Icb#R {bXIQR JI$y1sZ1$Pnk*U7ĖMcpU=I6ӄof! <&JIR),[V8I"FMc_U0O:mqmc UU,%Q :G.GC9f)``p>12Mcxxxj$m*H4AMc [$]+=4Mc [$k,c?AOT9----' IҌ#"I H5q#!C$H2ӌ**#`$4qZj*!t8>- %\+$93 #"AH t#!! C3&$I93LcP>$ɗZ,& 4e$b-sX/U4$'IRZW*POt1b׫<IhJ;ڐ [z_ 0P#aJ 4@!. .= (8R@?!̃#inm- 9 *RdےTj+N9IT W*}R^.$rIx(o 咽 c (B0!mӽ`•+di1QMcUWXp%IrakMcUUW' A&Mc9`@tIbp1' A!6jY-[xVU$#mcjB@(}:?(B +i;}ٲO|dHH.dl1䈒.$m۶Sp_5j9B>R8X+GߘC cUWVX MIZlbZ#"H Hncjb#B;R, cZ " >-c1X1.& 8Oy>q S&?~d(J- 9 ٴkkXWU!4I$Isk d|s:-j9МR>2ۆ5t|oF!j@Nxe1 Ak۱ [X$ EImmc-[$&m۠MkRJ*/M')4_Qs(a*!|R@HyIlB))+6x۱۳s#!C |t&#0.0|R@@=G!sI=L$IФ)B& IGӜMcP\VW,NmM-[-W.唛t"nJX$ xOJx&.0P"PF!jjByj{*@sTWUU1|mc.Oỉts%,j"mnt)UU-/? [V+COORA' @]?ݒBx%Nϋ9 J $@SsJ#! Hmc,[ ' a,,Mc@@ϓ$y1DF4sP\TV$![va|t$"aI$|t' A*(|1@0is'QB' I;]ќRpZ$!ڭi;mkMcVWWy#"I$ cb#-0Mc,[`!&q۶!McR *J!`Ď&<Oc֭''  o >ӽМu۴mBԽ/9u:m۶ōz⢪(T@&MKӌ(v[0-51|b%$1r$b`ܥDOPZ7 @ [x$"Aa&mcMcqVU#! A$cb%,p):>{)cZ)!iP4"$ 9pZp.Ҫ>OSZZ-EO|b/A|>J&/rO cUU_T&0!.kb'K%j$Oj <NIaa ' >0b۶є-[p^U*`9o)>j<Dk隓ҔmkIJss 1|mc!I-ts&#ɒ&qZrj*I1ќjB⩉*e nk [$!-fڶcb#"$I$cb#!$cb&h#,ќ1&{2q1|_^|z'"0#$0|9@రH zT|KcR$  Q"0|t#! $H2|t(#2QQcJ**= 029KiHL 2+ch$H$IMc [$!hӡݶcb-9a?oMcN[-#`ۤMMcU"8<f). @!T TsbrX\I$H$1|mcII$1|mcHAB0|nc$1|s5'Rp<2)>&HjRMc`zZ$&L$Imk [, 'nkMc7UU+}i Mc-UU+唛j".Jx&%~ǰE6LuQ0|T)N$-[p# 0|Mc $ h(6#F0|s (Bp<1>&J]-c@pP(z  I-[5_+s| 5-J/#{R$/,qMc,[`` I !H׭,='9vAmuӌ8$ҌR(NMUu%Ȓ d@8MӽϤ~²'py? [x"$1ZX CBA1@XKm$1|9U8kEE [cr$"HB&`$mcMc^\_W#!$I 2cb'"4Z&Of)j>I9FҜ,[CbP#jvmkRJ;ygf)$[unk,[$#Mc,[ ( (Mc1@<IC1B -O@L2t c*j?O@2Lcik4KO-[U8O$ImcUU8I@$IМmcUUGyxIpԵA ,P?S̃w8IyDJc%?ƒͽ-cXVWW#!I H2-c c#!$Cncjb'`&p珔G)>>&Gc2>ֱ(:,x1glHMcW^Xr#r h@IMc [#ONN$iMc,[$Iv0mMc,[5*6NLsB-''77#"I 3""I$I$t&!:uTUU.b"'K cھ7DSZTV$ rE3- 'T/k"۴m4_.y/&R+c 8,OG|'r)k'>(-֥p#MN Zz7 GA޻}7#"$ t% жu׭3%{5( s%Zz vpσo/Ihf-cVWW\#!$cb$!kmcb#" I$cb$+R=mc,c:P!t : '(6oShRZ(8N|4Z%E!u۶sx%AAФi0|s&$@#@|J`0! BCC$Idz ?IJê [p>`r-cXWUUMc-c #2N5mcRJ *)чs>! '>(nsW__|۶m[ss*$$ 9t)Jp% >OdJZ5 @y$,2)J5 )/McW^Xr$" 0I2cb#"H $cb$"II@cb'"$ Mcf!@!q'r% 2h&df)B<,IWUk#! 2I|t'$|RU%$PJ U*)z'O?Q)B&>HzT+-[pPX\#"@$mcMcVWW#" A cb#"@ $cb' A*!mk):@COIP39 =sTWUUI$I$1|mcI$I$1|mcڮڮ0|nc'A<)QjB BCϓy1B"G[Ӕ [vw$=\Ϝfz >I9v9+ ApLB2ӌ`k542@H2dȄ42Bӹӌ!"4&Z@`И=IAK׭n2I$IvW4 ۶vW1 mےvu6uͲwuop;qqiR -Fl0Mc]W\X'$ V/kR*nGMdɑPќ& I [w#!HmcMcUUUT% &(Mc1@IMDh1'/ IrR!!G{6k,['OdM1: {z:1|Jx  j/F)-hĉ QC/21hOum.: 20#=Z``<[ќ,cbrRX!g-YMc,[% M?Mc,[(B!mc9@A9Z$fT(3#,`*j"&3*k>ȏ?Q cTTT\$!ڶk۶ c c*mvNk c8LdMDќ(&B($Q 1gI+nM$n)BW% II$NBU$ I$OBU(hOϤ(B6"7 G' |_%$A3{ U%۶mИ T-'$"44Lk`pCɑ  k--'k4򌬩#"$$t#" $ t'Q۴!T*JG|dϑLֵ*c7 ?ڷp$I&: n _#Nɫ&- .{;dC>}Zz/E)hZb#H$A3#! AIt#" I$3& & 4!3s@(hϟ糽Z<6/,y?QkX`0۰sMcWW]|#" $Icb&m˲nkMcUUU'۶m/'Mc6 =|IFrOp2O|M rk$"`$a&0||^UWU#!B$A|t# k0d6l1|s?%-4J&GҔ-cXV^ m )IMc [۶m[ kJkJ@kJ # a{)j*) 1 2)5LӔiJz/>N' &J/@!lYs.hSdGvqnch4)HMGOR鏆(monk-c# m6Mc c'!vm;mbkMcUUU'$ >mcA\%ʏNr&&'+Kyr+c( `-Ie$qiJ'm$Q| cU=$IMcUU@.-,eB&p`GygМyrXzE-cTVWU#"IA$cb#"IA$cb# 66 Mc c'"4Bєj:$Pr{sP'-[xRs [ $LB|saRtsk"#%`9z>Bl9RMchxlqmcRXItMc,c$1hkMc [ % [έmcMcWUU'ƒp<>G9[{ks$!Amk0|s#"@I |t##I(|t,C3=Z&є9:GZ2MchrZ#$Amk [$"aI0cb#"$H cb% ]EQ#nkMcUu&pΙ?&& =Џ׭PTW]$Lӌ $I42I$H42H$$42Uӌ<|OZ7->jӄvw$0IHӌ ɐlӌ$J1bӌ&$a(!51|JImZ -{x蠢*1Dќ#j9fm[ےRsq1%rIr1&%O'G)QJb\%$I nkJ "ЄM5Mc!` ʃ$0d&+5xy6S1V(EIE=s)5Ӳ-I\_"q#͓o^(`&u3Z=U>R kukJ$kJ#.)"4Mc1@@=)!֭$!벵X3h%X%#<b89pDi'f\&$Z$-c&)%&&:O\oEz-Cɟ$  A[ےb^U7#&d=18CiݲMcXZX0 DO1McUU0@McUU1"939/HB0A Qn򢣡-Om5-}x*+`4UP'??1+cڗCJe֭{_%I Tp|$!hv튴3$?dOO1,j7isZZp#"I$I|t$"a$L|t#!$I &|t'"&A1| [`@3bOJ⫉#@-؁=Mc [ d2 IkJ kJI$I$kJ M&i6nk-cUU #?90) '?;4c#.dK|s $!vmv|t#! $C|t&h%#0PR$5 pjBX%`$|9^-;$kp9z :ISp1<! uۖZ`x2yQ%) MI6M[W5I2 F-[U% ڛmc-c:&XxDФ:>&M}Rk``$PJ'jBx${*:X%ȒXimkZ ' S{kMcUՕ(p81&!>&I9}ssjrR*dMQ|s+Oqk`)喸#@p-[X !4 /?PR+`4IQ1& @kќjJ\ ISLcIB 0 CMc,[$J.jMc,[ ( I*!Mcg!@Hϓy&! Gj5k#!$ |t$"$0 I&|t&[t1sFLҤOМB&& Eb,c\TVU#" $cb#"$ cb#!$B cb(,(B#%mkd@0?Z #"#SN>Ӕ/{ MJqAӌۊa a42 !@42 ("4Z@p> h1׭*s h$M􌲌$Ia42` Pӌ$ 5'%z3J`<Ѧi$GB)*8ӽ&>I'm ;$.H~;<IrD=I2 YvW<d5׭Rjj=qR^j 6~$9`tA׭ ;IQaX۶-;x|'֭ c7ʏ֭TTTTA Sr|!ncѲ3r*<~GNZ.&6ȿ0|,cTVWU `BkJIږ#Mc,c!hg!>&<!!˧$!k$3X&#<3ZFI?IIb8')JDռڳ c^UW,pm۶sZ#"$H$-c c'#8B#0-k9>FyMcXXPP$!Ck.cb$!]nmcb&B#0#,McB``;yN$!aݺ( Oa?v_*mv5-?E~ս c7'/qX3A4 %P 9'̃`l6JzAO  c7%1۱mv!H42]42d'Uӌ-=kUgR>A^Pi#3ӌ-=۸&3{zH'O7bz޷-Id`˶ 㸮$THڤm3 $!K4UU#t>3s`K|$O EIeaXۖ-[XWAhQMc\UUU$"$IH2mcMcrWU}%mqkRJ*7MFDZ9 &6ˏqs& $I00| [`& $9*^-A$I HJ~=I9HB5 c SpM[W_^\ `H$Mc,[  )PBkJ۶mm&Mc,[#mmk [#/'mk"@>4nc㡢#+ I|s#"I$ |t#! H0|t("ɚ QJbȈ 9yB <y5@ -cVW=P1 cxUUU#1H -cZ+%!t`fb;Nk c'̯< hqMcV\^X#!@$ 2cb'cA7*mk,[***ENIPќ$! /gis [.S]|Mc/UUU/OmmcUU,/Ę/@NJ (>)x$;w|0 CFȯ4kTv I!$ssUUI$I$1|mc#Ѿmv|s5?$pΟQg.& BOh{h2 3nn[pR((ɽ:4N.Rx (喻tJBZ*#07oRW'#8ZД#j@P?rs`$ 0J $FNa1|k$!-ڶkt|t'("4|A@3ɑRR%P $ФJBx$@SkjB $" $I0nkMcUUWa&eݖm`wkMcUՕ'h̟ܲ) @9!3i&@􌑄Ң9Ѥ-骸 $HӌUU^p fӌÊ5Ceӌ &pR$=kRP 0 IӌU ]ӌ_@K&'ӌU':1ӳR@qZ (@|!׵j F5s;8P|x4 ` `b$aItB#1$Aӌ$"$I$"$$ Ð&",#0Z````Fn j’` 􌳄ۯغ5ӌq~ h&Z"= c3V~䵥ҌȔ" Ҍ*,4؃'Z`м<IC+kypw1):W  /Ф): ao'lcdAN e1 Aɍ%k_.VX'i3*kz*BL$Iќ+c4 I)Fh۶Zpu%#(@{941P+B# Ancjb#!A"$H,c c&#,"-cD1@9,cprrr$!tk6cb$" $ $cb%"("(Mc)@@7{$"2LB#" $ 5q' t`gvӌ?>ϔl c''%$m)+ ۶mp5%_%I* -􌀍U3)O>v-vS| @7mۭӌLB2Cӌ$@&Rp@I*׭b%HI҄&B(󌳄@$M=,@Ԍ/Ch9o&٨q䈒3$"IaHt#! @$ 23Z'm0Tp|j*<dORˏ8]۸ s [$!].bcb#" $$cb#!`$cb$X8#O'::j4faJx"B} 4RW BGAbے4s-~AsW%"(AtRb@3c jJ⣉%fnmc,c,(۴ 0kR*`( h$pz-(Pz ='7@1JJ (/r"'rJ6͏rŲ|WV\&Ҥm0Q|nk z&$P$|iJx4H?I'B~<y=: 87P| cVV\X#"HI,c c#"I$I,c c#!$I2$H c cꪺ&X.B#,p1j=McZxxx$!ȶ[cb'*"0Mcf!@@@D)R%ؑMc [$$#Mc,[#KMMc [&(VmMc,[j&jl2mkZˮnB S" &x)rkass I2H20|nc &",s)@ )钽g1 A9{R chzzZ $ ) cbز [ cZꪪ'9aݶ cZ . Z $ǎ| [ DOOԽ9*-)AI^?ؒr U1#@Őz*} ɏ9Q,[x% wМ-[^'@Γ;R1' EF;Ҝ [pXX/X3#m-c/UUU/I.:MϤ-c`/UU0喘#`.JX'(/z )I!9 CkMa$PR/5ӌn+ӌ|M= n  d@XnW_p 4ӌ^CNϑXb--.?TrU{W*+n/4sW%I{]6 w$ӌsU_(c'NsR7+C4;b%lk "!|JJJJ2 ` `֭Kk1hӌ#@ۦӌ#"  $5q#"$H 5q&#0#0,c``ppC91إ H$ӌAA$42#<#4+kp6Fy .83Lk `p>Oɔ*k- >p֭UU#AX.@IX1t˃*7BI֭Ҍp$ )B4WUU&/53 c*FjS)Z`P$ I"%R-k c% ѺmS-k c?_/|ڣ9N).:3 # S cWW^& $I5Nk)Jx'࢓$!j/3$ :z%$w$):%@Mc(B _()R.mk1@@9! c$!.݊#"IH 5q'!50|JJ@9׭b# lmӌ#!D@@5q][:ӌ%ɒ>1Z@`<ϟ<1̃{#rN=ӌ /^p Ӓ>ZjBN Js%>ӌTwUUI$I$4R--Ԍ$ $I (50t*B;l>NtZ-/Vl)LSN %% I03k`&$3+k^@$I յbz AI;#:յsx5wcncV\Xx# m`cb#"A cb#!$$$cb&" sJBJ*D |Oќ! 6Oۼےs#"I$0||zUUU#"H$ |t% f[׭1|s?(Mz1JB&>0vTМ): ;u$1`p1-AI ؖ-c zU?!oQZz3o߯sZ&b%#01.<6RRX>~ħhRW;IYk;'Ӕs^&P"4"| B@8! c^Xxb#"I$-c c#"II ncjb$"dȄI0,c c'"&I-c @= lIG)#H Mc-[(#DFI [pp#5TLm'Mc,[ #B R#Mc [ iMc,c֮Mc,c!*"-,c@@@99IJ HtRI|s )`-ss"#$Rќ):s;}h@VZX\TTH$I$NkJJ mm׮ cb"[۬-NkJ'("(-c$@GIl Z) %yHִIp|$I6Mp" / ܿ򔑄UU0#MnҌW;}2,cEZTvw#"II$ncjb#!$ C c cꪮ'IA7l;z.c c5WUU.`.J1e.>&66Τh@`C^Z^\T$!Cf]ڶ5qꌮhxӌ$$Ʉӌr5 @ӌ{ܰ"9Zj; l Js vIDI) ӌ*$6 U,ZSVx/@GIյZ*/--'HU݆ k-42#!!|JJJJ2 ` `Kk !eIӌ]]]]1ӌ///$!nk%ӌ$ $IIb=)S#4C8UlkrrrP:!!pp"ӌ  I42"(.R@@9֭ I=t$O c-> =[qZTW0 Sr|؂6Sr|R`@O"s,1 Wz"JBo  &a=3lk@PFMDT c >{Z' -k c'' P#'-c0`8B}PpF1-1!0gog)r HO1+>YAK,[ zCcp:(31J=IncwV5$Mz21#Lc*$`N'|\#s{ (,>( [@@=)ks$!ڦX5q#! I5q# 62ӌ'B#D|$KkV AAۖץ 5?֭'"$ 3k@2ɐO$,[቏7McUUWT&$I0Mc)@&|<% 6tO-9y?9R8hӔ|T\\X$"I&IH|t#"I$I|t#!$C |t%P.#(ҔJJzjL)-[x)Y-MkZت#@--cZ $" 0L$-c c*#! -c c"%"(@-c @DTɕd1 )q% 1|s#"$H |t#" $H|t' |R@;PDR㡉)f-.cb& ,rAMk cUU &$I$>-cD x*t$pd 3Ogy$$ ;ȏ|McWVTT(xOӃSs\-$MМnkx.}@МRU v/>Z"xϟq)>& @LPx\-۷ۯsR 6I4 cb!0&dK cb #! C c c'#8%s 2E){NMi$" 0L0#"@$I$ь|#"I$$ь|'ڠM!Ҍs*JE Z #TH cZ#"II ncjb$" $ $,c c&lY*Mkb??/عQ DGޞ<#"I I$5q$LۮIӌ ّӌ!$ ,Mc`ےJ' =1єEMia-M:ӌ1Ia42!$d42!.! [@@ɑIPֵ k)-+/4JIӌ$ 42!.1|JJJJ3 lɕ c ) 4I?Z^!$+c^( I3Z($J_`mrJ-:!Τv!p,۳=;ӌkul42!"*kHH.17sbK)>D 4H&L򌭯`Sr|!$Sr|$A#0򌪪a `"#Ф?2s*'B|ďcսJkֵ/ B~ &S֭{zz/&qJp3ۺ9}9Z7 AIK 9-AhQ c\UUU%X 5, :.j8`Y/,[^x& 7zN kMcջ8GPB&&iNnkRb*(*?k*5NJB>+%+r{-[% "!Mc%@=!̓ɉ.Om5-W0$#h4*k>x$̃_$SUs$!i۶KS`' [Gn5ӌ?D|ބNյKk67%DӌTTWU#"A$5q$C$@Ԍ' L۸-5s*b5yOKk "$f$ZZBOX)F k%B׭ӄp$"AB&Ly'#ɒ& sp@79Lg{/)?-o{׶u#" 3#!$2$3Z&z++cp2璵 :^?}$y5`9-CI|ۖ czU:'rbWUU R"B#,/G)91|xhLJ$0M|sppk;li0|nc i Lts!"& tJ@4y B0k cUWVT$=D~-cZ #!!I -c c(*$!vݲ-c c**p& mUm֚Nk c?$NĤʃ?Фg) &:ˏ_Ӕ|VTT\#!$I "|t#"A $|t&!mfQ|s&Lx1&>;|$c<$In p(>I(-<9[-c_U2%d2=(:<IFќ-[^^DIМD 4's [$iMc,[#! I2 cb%3mMc,[!mM3 -c,[*8l>|E)>.&=ȯkvvZ# $Iss#Imss .?1|s#bR1*:>($R`N : $.1$ 4iMk9&MZs MkZ (X'xg)>>&&FVP|$" $Iь|$" ÀIь|#"I$I ь|',"0IR@`E9ќRCX& &ҘnMkb %!4ض 2-k c|$ $E"ncjb'*",-ce @@l@ ICh%qDYI#!$I! 0ӌ% ڭc5ӌ?( a#R`:tyԽJڷ*:<+@{n'Zz 0IZx#[$I3 [zի?Js)**)xntҌ@$Sr|2Sr|kۮ+Sr|@j *4 c`;}ɑZ- ? j۶aPTU$"a i3p|@%59b (B)4Z cpVV$DIФI-cZ,#!$@C2ncjb'$ 0-c1`DɝBsE1 5e iJU6|=p9' 00ظ?O1W9$+ҜA_2Pjmc^zh*)",Mc9@@@@5vb$!huhn_'I1:,גӌ'z1 RS$I.us*jF'I+k-1.N53{-(6?,kj~C h1Js#@$IҌ #"$ 5q&'@ӌ_/-&|tZzض?C1B׭ 5 3tZj<ᚏ #PC.Bӌ$" $H$5q$ $!1$mJ?%r=R#ks`9  #!$3'e~5 TUUc(2)@'3R@@`BqPrb?p܌|Z\$IC9-cZTHD,NkjJ "(a c @9ϔg('Uٱ Q|sY]x $ID?s1^ @)B^-#0I$М)#.Q 3hU cV^^XJ0Cbb$"I2H$,c c#!$HAncjb#!$C2Cncjb'hP.<')>>;ytZ[xh$!vh$0||UUVW$!mbmv|t' o;w=0s(`%3&9:J1G뵱-[X\>1|,[U#!@IMc-['$" I&cb&#,"mk%!@=90`6?rR`%$9 o)BU& Imc :$Fr mkZ-#R&dZmk [*@NXh41'' IHsk @$ssZZC%۶mss ncts:!p<ʳФ1>&&;C-x,[T\,-Ip,[UU.I@ФMcUU6'TnRx5$/1נHOG[B%/"/<ؿTP|$!ۺbֶь|#"AI$ь|# a:,ь|(#$X&RF'_hrLkz1ImϤ9%pI>Ϥ9U %$w$*BW)C#EI|!׭JsF !յ K8J1iJB-hrT&OАU $ 󌒄 -$i QRp3J<,>3kj4v$I c^=IխJk =Ia֭s`jG9T{$!]0|s'#0B#40|RppppE$PT:Z=$Pr|U=O@2tLD+c'%7In ȶn/4m۷)U5ߖ;Os55%Pz5 /I. -Ca-򔪪@$Sr| $ &,Lc@=t$IW k->8 ɒ$ QE3$!kӮ-ֶ3&#$ T/|bʨ /1|$МZ$- _Mc ch& 9 c9pEt 3e97 EATsr$I60|s}*$p'xМ)B>&&&AUsTVV'cnk1|sX%R.|)B0@@-I1g!xb4vJs%!M 5ӌ$!m۵ӌ;&=`'b`ؼD9إ샍,!滵_󌉵+|m5%0T{,m^%$IR/ $ $IRiӌ '*,Ѓ& c`pGI:k-$mUӄ'm050|* `- AGk$3R*.q˷VҌ'Ҧm15Q|x&$R).:IZ@x+6!` %~$3b߽ؓķ1Zx*,IR rkk-9?#4ԽP9 9Ep cV\XX$R/,cZ@@bbk-kbO8ˏ?Q')'9t$ILB^9I$ Z-5Ibֶs*U8qhm۶ҜkW2пd% B(51 cZZxx!}U cZ:$ I cZ %!2mv -c c+&-۶NMk cuU'B#-2:Mk @h:1`1kb%@0|R_1F?Ib ҔR_9$y R_ <I(ҔZ @<McXXrc#"Acb#" $I cb#" H cb' kJJ** 16# FPPxz9k nq [u5}"$ϜMc*UU3I@Mc`U3'DnBW&?z1Cz > )9$HIsk( ssI$I$1|mc"a1|k?8NdOМ1 9ȯ| [Ttvv&`-c,c I kJ$`mMc,c '}Ďk-c:ϟQ&)/ $0 I's [_%.$Zx%$I ['mp-'p$ДR<,&E[.߳McX\TT.?mnkMc UU6sMc UUU0`CݶMcUU0{r9 /7' MIԽq:4vɉ-?m5ӌ//RNmݶ5ӌ_A10Ѷݶ׭ b*Hl۶Uӌ' Q5ӌ????JN$NLk'71M$IuJsW/I$ IuksU*$$I4KkU&$4KkU&ϓ8'J' :֤r֭"\5Ҍ$i3 & B)Z@@?)>iJZ$$|iBU)#8c'|)=1ҔxxxP$HtH0|k& lٶ1|tCMDLdR7'66,]4@ ӌkykкӌ.MLdS ['&&6/}ʏv~@L U0-- ҦM@2kj8'Oյ cZ޷-?)hZ{⸬#03  #"H 3#!A23' Ž%3Lc`XAΓ܉ c0NM'h@HMdyg2f1-E4sp$"H$a2|t(~mQ|s>MdN2(J&'//=ȯԔsttvW! @0ts $"0q9Bb<?Խ?i$~{Z# /_& al;R~COɔ k- AحTWUU$!ִ55q%!C;aӌ*$-$5 k`X>O$X{y퍂-N= c z HNT17 k%@`ɒd$ czW&$:I$ cx@~$InսbW =(2sh=7I kz <~׭ kW=KKjs<6~IdDZ)/?@q ilے>׭5U'#4S35tKcrrr69h cxxx`#/_%-cZ@tC2 -cZ+ $1 cZ`"p&X簜C..:7C[GҔkpq@Isk m60|ncIss #0")t9@@4h+:`$Қ$ c 'IДe'''_ %$Q_I< 1$)JgΜ(94p|84P|W%Mm^U_U&"(IҌkJJ:9h RÁ$dIfAMc-[$!+6ڶcb#"I$ $cb' vОo;k-c'̯x1&!&.6 {xxx|#0McR#"Acb$"$$acb& lZmFnk-cߟȍ܈QD0w$1JBx 'ҔJU!@1|R~ IsJJ#Z:t&!jAIPѤ:! 47Mc,c%I'8Mc,[#"@ $cb#" $Hcb( !kIBJJE'@R3$$+qU5Q*}U7OI2s\3'Ii cU1yzgriR@˿Q,[#!$Hcb#!$$Bcb& KmAFmc-c::"HʿQ & NDIԽP&2vќ#"HH#!I5q#"IH5q#"H I5q( eGe5ӌ??GNND׵s755$SAJԄ欮$uڴMӌ#?m􌳌&y>R5ӌտ?ȏDŽФJ>JTTTT$N@a3$IM6m3'",#43 c````KIrֹ3R8I2 FԌ̃w ?0dB&ZA0PpXP#@P |k # ذ2 0|sꪪ)xGhTR69ۗ$s?Iӌ*$~$Lӌ/?(zGz c$4448ʏۗR'uӌ#j#0 c``=?1+cVAɐN"ԽKk $FI 7$KJ4 &!]qTUUU' B/'3+c`DMIb7ks׵-FΟr#@3p%qRp $wIM cZ5CI ׭{ Bh\WUU%"A$Irx*#=sb .OI{=hlK%?׭xUUU'BFJ0|J ? lI׭Jk --%HmҌ #"$@5q'F~5ӌ?>ODMք+k?76ۺؖ$!k)lt#!A$It%",(3R@@2y0spBB!iMp  'o0h1U+ p$'Q%)׫ ҔIJ k7њ)Rkzzhjhss#m1 |sUU$ |k"*at :@qqiR,I.>' 3rMkhhhh"MMcR%bMc [UU&&MqHMcZ+' 0 kR***9O2B =ImhsTW.IHFsU(IhmМsU0I@ќ{*U1IbL2s B*jB1ncjj@JMc [#"H$$cb$"IL0cb$!Vmncb'.",mcE1@@A94Ks$y,MH0|s]#'H$H|t#!$& |s*2qQ|kEyIѤ(B ,Hn}ׯk,[$"I& $cb#"HAcb( UvTGkMcLr9 IDIDԽP>+6#"@$!ٲ5q#"I  5q$"LI$5q( QG5ӌBNO{5555# nbԌ$&AR#Ԍ# ӌ&!uZӌ?'Or+c-))?ȏʯ֭$!+&mt#! A3zz&#<%3*kp?^4s#! |t'#$B"$ :CO򒲒& i։ Qs`&$I>|Bz)b%|<)88 @ȏx.TTT^%quHH5ӌ&Y#4ӌ&zp3 c?ʏ׭TTTT$!ؖ4ۺv5q'#0B#8LkpppPG)G{ќRp,`߭,k[{-j"`۴mo c UU/1 -k(U)V:IZ{EO|1ks Aϟr#!$ $I3#"@ H t# ˺eC7l3@#M&`r0| 7K&̙AӽMz* 'mkZW( ;oےiJ InqA 5?IϤ<O 89ۿ;9d&MZ`ض-BZXҔ [cr'w:uWkMciWU/3aZ'/F! j7qItA.'t cz?*A`Xحjs %dI4i5ӌ#"A@ 5q#!$I"$5q$# amk`:1{$"`0!$![t+5q% mE]Z4ӌ???<MԄtb//&62 ˏuԄ#"@$I$5q# [1dضaӌ::::#JJRZ&&@ȏ# 0lۖ3U# 6lk3U&")"Lc@@@@L'yrNHIٺ-[W4I"Yќ c_U5 @mے,cUU1vPJBjo9?GJ @IssYy%FHM|s #"A$A|t*&m01Q|k**zyGL19=ϳ QRW$!IHMc [ #!Acb$"dI2cb$!mk6mc,c*('ʣOOֵ{5555(n`ӌ$mӌm6ӌ$% Xӌ/ygysZ))))2؈ؕҌm ۺ $!&k3j'Zh3*k?h($JV%$$|)J(Ru<Ф':8*;OwObA$+@iJ^BI 3Z;G1 2+kX4d$I S+cU9$ KsWݪ;ϓ$%Z>x.׭T\\\#!!I" C 󌪪&#<%bBؗkZ#"I @ncjb$"I&ncjb& (!nk)J**JDM `& 4NđN S/..#`Ϥnc/% y${ %Hw3s%$  ,3k`& 9M3Kkx׽<I8 ֵs;Ф׭,/6I4߿El[%hWU6Ӳ$Gvx몪"h,ӌ /!%r$ c`ЖBɔ+Ҝ,[p(4A'mk9`?d'I սBW < 8I =B$ӌVUW&P"(A.XP+fh15 7$$Mo󌪪#!  0ӌ& e۶[(5ӌ)$ F?b^6du+k'%-.۷%!MN ' $M :kx$JxZ$,<'< h('k\%$A',cW%$$,cU#ȃ<˓81Z&? )u֭*kV(@IS*kժ'I'S{UU%?ɟ$QiR*AɑG&Yٛnk,[$IMc,c햬bkJ "mXumk,[O￿5ɔL Ҕe1 !mf|k% k Q|s %!$iǡ-0|s(cm91s!˭ȯМ:&BȏȯrMcTTTT#"IIcb#"$Icb$!kvCncb#!$C"$I0cb'h&X尜96=Dip[YS& d۲# Ҍp_%!i' ҌUUU$Ҷ:(Pj*zhRZ66>J1i [X8 `I1McWUU:|McUUU5КQ16?6?IĶҔ c8?,9RB!"!jJD&-Us\*$ۖQ|s\&!Q|kJ!)Q1H9s.׵ӄ7$vӄ% Ӓӌx{(j&`"&Lsܜ:hh淭\\\\#!B$25q%P%P%b9F\[,qZ#"H$I$ncjb$!醮me c c&"8`'P%)j>C!EҜ,ccpX\$!ŊvklmcMc{W(mYkZ-P3۶mMc5UUU0I>'::Мz[!Z(#D`׭- 4xvӌ#X-@/^X*a 5 5+955q`'4P$R&>I۴iJzF61IB`C$I9~׭ =I8&RBGץ.$$IЄm􌳄$!mvH5q#!`B Iӌ'b*5*aX`)THsm%}$*k=$Il +kZս >Ijs?/(cS׭*k`jj0f'4 kZ4'I,kW+>I*s =Ib:&֭jBN܄4̃W7Ib@{W6IBDvʃ4ɳ9`B'{F{.\T^9 <UUU; $֭UU9fc:yGR.r s-cVVtt$?IMc,[$mmMc ['(Ij[cAnk,[::?1 $o)B $ R*$I"ZU0O$#ќiJU8?4МR:bq [#"A$H$cb#"$I cb#" $Icb#!$B"A0cb%PxМ&!>>F!?2 cx7$ cU6$v cU8$v 'J/IQjJ%*BAќMcXXPp$" C&C&cb$ HXMc-[# m.cb%ZP:;Hr{hxx,0 }/|,[]+I0|McUU, In0|McUU1&| :Jjj>OIb$tAti|k$!]۶-ڴ|t#! |t#!$ $|t'#<#0|IRD9RMchhhh#i-IMc,[$I:hMcb' 7-]ncMc+UU-?vmێk c03&c"&N)<GlU\s#!$Ȅ|t#!$ $ɀ|t#"H H |t((!qZJJJ6ɐɐ R$XPHmkZ#q  Mc-[##HMc [&""!Mc&@@@@tHtH{ IIԽ]^3!?r*cpBI$. mֵ*kU7I$ mu{U:I@̃U;IbDU1IiLU{@J4y2;9)&I$ZV!h}$Z_"F'IZ^ :~$I Z_\Lc3OIB bW:I$w ksU*8Iխ{տhCLM$`H`H|s'#,"!0|9`@@2!r(MIE!z'J'5|TTTT$"LI |t)!Q|jJ@@iqbCȏTTTT#" $H$5q"! ӌ&`&`&+kؘ5`Zŕӌ#!$C2C2ӌ%X%X&4b6'JJ\$ms B/\' I!NkIJ**KFNDl9' DQZ#"$$cb# ö؂ Mc,c & a&mk1`D} 1-E t붲Jx-\}:?1hB#0m5ӌ$ AI5UUU$j9,Lk>`)x [V M*ӽ >$IU`֭^'AA˖M>׭_%$"& 0|J2!xcus '#$@Jӌ#!$ ӌ %<' c^@d'Iֵ+czW 8ɓ?%s cG17۵@PxUUU#$HҌ & "(Is@@@ɖT*k+ -?$J"ӌT&P%P%b9]\mĕӌ$"$Ʉ 5q#! @2  ӌ'`&h&5ks<pj涭\\\\#"@$ 5q#!@I5q$!#>Ҍ~~3yyR0۸s,c#"I$ cb%"IҤcb( ~n^k-cENDNSHJ%%''<sW5osu0ors*nR|s$@"<@$B8MUlĒ [#"A$I$cb#"@$$cb$!ֶÚ6cb#! C" Bcb%P P ќd9!2sbh`b$m$i0|s_#H|s$Om|sW$R@14-cxxpp$"!C&H$cb#" $Icb#!CI2cb$@@.$:Glrnkhh$pM7lmc [#! cb%!M۶Ccb(.!")Mc&@@< I瓵+kc$ Ip BU%I'P)BU%I$/IJU$I$є)BU$@ߒ*?1)2,[hhh`#"$nkMcWWVW$"I2acb#& )$Mc,[&b<@McR&X%`揔93'qv$3):^%I$ќJBU&$PJU%n$|ZU+.᭓PCj*6 Rk$tHtHMc [#!$H! cb%!Mۤccb%"!" Mc@@II- IA$ԽqnM1t#{MHV$q mIӌ#! C A󌿪$!۰5):50|JJCy?yb)8ɓJs<I ٖo 9m۶ 0`[vӌD\+k%---/ߩ}ۖ$I 3("!"TkJHH<ɐĨ#%Mtm0|s("*Q|R@HȀ(!qRF!JH$U|TTTT#! I|t%"!(|%!@3yg샩3#"=؊$"I&I$5q#!H2Cӌ%X%X% cؐ1 @ tus# !X-ӌ(`p  cEʯ,[|Tt.N̛MNMc%U.$NEzE1$МRxp$ /Jx$ IskjB% '16DO\1Tќ9% >Ӕ-cXVUU$!k]ڵcb$. !>j>싣#!H$ӌ&"k@IpR M.>x$ $HI $!hma5q$ A$-2ӌ:.fb=4Ls61n[?,[^;dM'I+k^->I׭Jk-?,^UU&#4"Lkp`@:̃$"$C& 0$"!$$5q' _Q5ՕB\OKk--==% $AX| #!$I$C"3u$P%P%jА>ؖҌ#"H$I5q#  ӌꪪ'h&h&3ls4P,+ŖӌX#! 5q#! A Ȑ5q%,"#Ҍ~{0yyQZ5 *s)w' imc9U&$i$mc9(۴M$kJB*UBMMTE1'''%$ 1H|{ #"A$I$|t#!$  |t#!C$C|tꪪ$@%P%AA{ [$!4m mkMcUU$ "E`2mcMcU$Զ$Mc,c%(`;mc c_&B.@>汔A:5sbbbb$"LBdB0||VVVV#"$H |t#! B2I|t&B.B"$|)J6 [hhhh$ )HmcMcTTVV$!mmK4cb#!$H0Mc,c&B"$B"$NDr,[`hhh%tHDIncZ&!vkUǍcb&?smcRWV(r/v#mk&!@Gy ts2ImPk1Im@|U0Imm|U1Im0|U3I>=sR *<!М-[```p$"dB&`$mcMc^T\T$+ HMc [%!Avh[cb% ՝5Mc c(`h 1)B77GOc1s{n5IFs*U4I6sU7I$IҜs 9Lq :.&&5 |xxxx$tHMMc [#! I!Mc c& mecb'R!^mkf)BBIHŬ{! I$I$P˯=Gֵ>;:,磃N5ӌ~%DH$I􌳄#"I$ 5q$" 0d05q% 3nE5ӌ??4IDNؤsZ))/9ۺۖ$"I$#"II$5q$!mt" >ɑյ c----#`HB3#"I $t&#2#(mTJCɑy3b)!))$ޔM a|s (BlQsﯿ?)(Q(B F HH$UtTTTT#!" I|t("0B#40|9`>G;-HۻUӄ%ɍlZ 5ӌ&$I5|x%R. Iks #pp@0|k#"@H$|t$" |t#"$I|t*(38#41|Z72-cxxxx$!hkmcMcTTTv$!ݶX۵cb#"H I cb$ CѢmЍcb'xx1.&&.?1)2{HHH@$!ۺum0||VVV#! @0|t$!hem֦0|s*&ʯJr:&&&9p'J`'I$QIBU&`I$Ф)BU'`I$9U)l;IdtIIKs"I$I$ԽqZ.(wp?ӽbj=۸ ߷#!$ 5q#!A 5q#"$@5q$ D@Eӌ:&K$x' c</工ӌT#!!HI25q$"I&L5q'ɚ!51|JJ:yyGԵb)))),!ȏu#"@$It( eeGt8DOds 6ۺسs' }ziQ|t<ʃ<:FʏȏUtTTTT#!$A H|t(#<#I;3&յZ*-x@@0B+qz=yN1,[&DNTf1-?5-MJ1wh)LpR%8mcMcxuu#"@$ cb##$Icb* '褶cMc [ ) 9(i.Rb/oNk? :b 5d'If1z)4I79МF!-"?]tTHRи4k۶q [hWU-hsZ\Q(Imc,c+ rP#Ф :'77( :|Zx.4b &ϓR' DIT)s/<,'ӌ\UU b9#sp`,&qbV냨4R!-Kdӌ_' P#'bp:ODyl,b-6Iv{U1'MvsU_4m$/uKk_۾; c ?yҺks^(@IBbw&@I53ZI$Sl{Z^1%?IhTlsU#tIls"`$ZH)\4VӌU2lwbvӌW1@䶍5ހm6)qZFxMcTTTT#I  Mc [#I"I @cb%~ ڰnk,c:?8A''''#P `|s #!@HI|t$" $!|t#! C$I2|t%P%X%(BG]\-[PX\\#q HIcb#I@ Hcb# H$cb$I2øcb&RP尔":>3srrrr#! |t#! A$A|t$!mh|t'#<#$|(B0B)ٚ c`xx4!I?{ cUW5 tI{ cUU5 I?{ cUU7@%dB&p0*'Z`Ę$$qBUМ)?I,k# #tHdA|k$"IBI$|t#"I @|t#! A0|t&B#0#,0|(J``;ឡB``(qE?nkZ ^& $M$nk)BW'$I'Mc!$$Mc*x{P..&':)2kjhh`%@nO|kW$  m}"mtc_% @3NtkU &xNR).&&&=ҽpzx( w IɳOZUW) o'pZUU0 ~|R;V7v_|Ro iјI$I$ԽP. !ԽͤHJȪ= bKU$!hl[5q$" $ 5q#!$ $ӌ:& m:6 'ӌ&h%P.b;Ei$!ݺtXu$!hv]ӌ%,"(Z@@1yyGss!###3ˏ۶V% ֮`3+)]՚$>T:*~"MdJМR@ʯʏs#!@$ |t*%ʃ'xǰ):&&FHȏ= 1m۶ץ-=$W%hi8Ҍ%RPiZDPֵΤ?.+G5ӌ@NՄєb.$0Kt s [#!dH mcMcUU,#J'0 # /McUW^\$ "mcMcWWW&$i0kR `& `${1^5?$Iz o1z @IO;9 5<'QJ^".,c1@@/)oRxpbX뺦,c [?ߏm?Mc [dbcMc [" "$ak):b # @I+z.</8sPXj8hɕw  ӌ A mQ|J*,91UJk 6,m۶,65Q|h!0r c`^DO8׭Js-?C۷mQ|x,)k95̃ 'z, ӌ'v@AUӌ  tQKcG'\5'mߖU3'{΄t c޼6Fd./ .'mUUUU2Uӌ7`L̤t+cDȯ׭#"A H5q$" $L5q&ӌOOOOqqZEȯq,[$"LLcb#"I Icb( ^vdk-c;MT'J$vmp|s#!A!Ʉ|t#! A |t# ۶-|s'X&`&OR@dr瑌 [#"$A$cb$"a$Lcb#!$IAcb$!mSm-cb)bh&1>>E{$S,cZ&$$1| cU%ۖ|R_$|R U'/<[|100?јQRpp*ЖOm-cZW$/I cR׽#dmI cZu'Pm尜$HGrPp3Po0McUU: 'I1|Mc UUU5$s cW3l7-֯sRo?ɑIќ$ji0|s#"H$|t#"$I|t#"@$A|t$"("(0|A``@@}ے9ZI"I ӽHJU I"Ib INI${ &Oqn_2I.Ȓs *_?))7)p&$0|HJ&$$Q| c U(m$0|ZW ȯ$q(J&=Ggozr5s [$v.$Mc [_$HHMcZW' ϓlkMcJ`q I$I$Խql ca[ԽqK&+?ᚪv%&i`ӌ%!I3H5UUe'$`Z&HطrbW IQZ;9`'$ &>Zx&}ZW &@2Z`+(%wp#:螺R_:$I> k9$ lsU7$-HJkU 3ɟ?У&sIsCȏz>|TTTT$!mvk|t#H<ȏr9&&&)w'mc^$@Sp.['#<#<0IJ?ֵ#APh󌍭#"AH5q#!H" C5q%PXҔiRB1׭$QQiӌ%JIo@~ħp9/HMpB <߱}qR$U Mc,[#OҖ$HMc,[ߪ&-3 kJj*:lp1 $ nk,[}+' $95kIBp#$@$Dz/!'ɝQD+Ec6FR*DΟصr!a Q1|J**09LuKs 7+۾6҄ @ӌz?##9B#>,crX'c'8RpEjص |=<xӌ#!$A5q# "hH0p+55̃ )$=UMk*`P )BZ@h9U'!5q**jGNP c7=- 4۱v$!m6ڮ5q% mU5ӌ?)zDLT c666/?#!A$ӌ$"a „5q' &!vsjJ6ygy1Z;؊0| [$"I$acb#!$ 2cb'muRk-c:ϟ'E! &`IB1,cU&pI$RU&`y$RU&`I2RU(h$q)B x'H䒌McTTTT#! dBcb#!$@ &cb$" 0I&cb$ C-Mc [(pxg16&&&G\ ʯpTv2#mKNj7O@$GNU2I0 _4C&2HJ FGy cXXXX$!]k׶ c cꪪ$!6]uncjb# ! c c'X`C::>@Gbxb(m۶zk-cvv#"H$ $cb%"]4Icb&!bvkMc;yGydМ 2ۺss# ذmې0|s%!6i;m 1|t+& m۶#@Q|sU (")"4|1@@@`A'ϙr>rNcW;I H-[U; 1h۶P [];'0LcWUU,)k@@NI'IRR"=$11|_<IrĖ1{U>-#Ks~6Ils!{QiJ@ʯʏQ-cVTTT#" $cb#$ $!Mc,['”Qnk [:*:؊rF!I$I$ԽqEvzII$սqsV?1LΤ)JD: cx' 9|<Zp Dɟ?O)k- ?O$׭n8I`Jpjo7 4糵 ck?I'IU`յ k*AIȖW =!նַ 8&cB&֥*kCf^#M" 3$>i(m3'Z%#<3 c6)p&*B\% $t)JU"ȏʟRfRcrthL3kqӔsx+Փ'#ќ):*AֵϤ76=#@ITӌ#!󌪪# ض5ӌ&XX%bDFKحo& -K#`4ӌ'#0-Z``8 4Jbs,&ID!z=uh9W-;IZ)<8??,[WU+kGR`'kR**_<NO '֍9nkR j'$ 'Mc^'$sf)~+&I'D;ɑ1%&6?Id^)BO$9!F1 BAۖ c ^U7h"'l=Q)?BLc$..&5GӽpX``:| [$![6k cb& :&HMcZz & nkZ-)**"NDLB 9M!'I$МJ_#'IМ)BU"=$+ cUu6u[ 9*H9l1Mchh$$IT Mc [#"@$$cb#" H$cb#"A $cb&"" nkZJ**CI\Dќ1 %V@I|k)$"!0a0||UUU#"@I|t'AG&U0|s::**8J8 B= `+S%q)B\%'Mc))$$mk(B^*0O$eQg I$I$ԽP/I$A$ԽP>'?zDI?O ŨR GOºحn Dľ$$I$Aӌ%"$ Jʪ*AyIdյ c))9-Ahx$!醶Ym5q#"$A$5q&#8B#04Kkp`=y֥o%"IfMҴt#" I$t'#4",3+cp``CIbly_3I6Ҝ|U6{rJ: .&&B99rshhhh#"HA$0||]VV%(.)|*B@@6I p*k))+$$ cU&<Kk_$mObU )`'?1Z/:$IRLc֪6$I2 ФR<I М)j?$QkZ0$$ [^3$)p)W6$l @)U AIO 5Ά)U ;I'+@'Rժ5Ht{iz8O$mtAU?I$@6֭jsz8?srLcCB -cXVA|}9 Hռ;rRx/p~ڎsZ#"$H-c c%" -k9@69LdTA ))/vvVӌ%ӫ0a5ӌ_'*L' c`^C9*55s&z/,cV'# 9+kXp=I'C˃}/ 6є -IBӽꠉII$ԽPJZA$߳sZ 2\'y cת0F3h׭ok*9P# ~p$ q /W$,'Z`I1{ح{0/?m5ӌ _0CNlK5` 0Om5U0I?s c* JOt9-[j1I"qoMc+U0I$8 Ф,c3IH29&I*H lJs$dI$IP|#" ь|#" $@$ь|& ۺҌUUՕ2zGKR<4&8˯| [%"Imc [@#`@McR}%1C Mc [ & lFVUkMc՗?P9''#d @P#!Iь|#"A$ ь|$!]۵kUUՕ(x?ʿkf) z%`$McE)*8<'KIRNt|xV< 1hmےӜtUU<'s_/۶mrsX&(IQ [Jʊ= ɑМ(B #Mc [#"$@ cb$"AI&cb#! H$Acb' Fgk-c0NDLМ1 '=؊ӌs#!$|t$"I2a|t$!]͊50|s*'ʃxQ9&&&>J~$bR=IМMc _=I ؒМ-c~U< 1 hm۶McUU6²5\10f)0jJB0I$I$ԽqNAο׭Ԍ`VWV$!IҦMӌ#!$ 5q#"$ $5q& m׶ӌ.::"MĄʏ< [$;ʏ?疥#!H@H5q#" I$5q$ c`@81̃#nb'3UU$&@%"("-3Z````@AA{$&imo?|sUU'xzrjB&&66A112{HHHH$" `$0||VVVV'",#4|9@@`=ɟiМ crR,y۶qo c UU/IHmϤ.cUU.IqМZ@yTAK r,[VU].ۮk-cU)#4#8mk9`Ca$F]pМR\0Vn Jh%ssJ%aNkZ**-> \Mħs9 -'66ܕ}'$i ,TP|*`%3ZXF}$ɕbZ/G)D`۶Ҕ cpVU$ lJL-cb&P, a{Aj7gјPR$"d B& c c#"A$@,c c%!t`۶cMk c%z1&5&f$4j@$I+czտ <Iks/8g{/%/iu V$P+R,ӌm($Ԍ! " s@1cOTKk m=|$ɕյ k-A:`ɒ.$"A$I􌒄b #ο9rk>I$H$ԽP I$I quOFP9?'VI(1j$ HT'􌲄'ȚdPw7g [A/׵#!`"5q#"A $5q$!. ӌ%Ph'R8>@-]k$ @$1|t& lےv AQ|sߢ&H >0|kx'``2)B7;) [hxh# HnkMc_]#"Icb#!$@! cb'"(amc!@HIA 7!s 8-!L ΤBʠ"5GpǘV$"IH&L25q$"I$d&5q#"HH 5q#! 0@B"ӌ&x&XZ8:YvM#"I$H #"@@5q't@7 hP k -DHI򌣣DH$IS|!",#4b@``;G{VZ^ @$sB_$x pr...'=)!s```%!2I0|s##8#%|B< [+qZPX\d@$Ʉ cb$"$!&-c c#h !NkjRJ7ϔ`9Adi&iMcZ# ۰-Mc c&#MsJ^ 0k~'u"n* *:Nյ cZ-uI RZ^-=?I.յ-NoМZx\${Z#!$2AMk cuUV% k j9mk cuU6|A.1Nk c]UV4'۶m5NkjJ h&$'-c(*B#=OOg15L9Ϝ<WUU#$hAӌ%h =B#ls`3GpVN$![4ӌ'0(51|*b!4r$b`%Cɓ'ϑ@ c: > hY׭$$@ӌ#k?ӌ%"6Nk`dB+hs E\ͤk>>H޼}ӌs\WU$I􌳄x$On I􌳄'mr(!k**@NG1Z/ 0&nݖiw#"AI$󌪪#"IA$5q&GF*󌿿81R&C],[\t$"a„Icb#"Icb#! C0dB0cb(R%`'N&:.E{EIֵps[[[#"@ #"I$Aь|#"I$I ь|(&,!Z@EIL ҜR $6h$Imk [2$mۏkMcUUU6cSo/|Mc*UU4~`6МMc UU3Iւ5Rc*jA1Δ{{&6Ҍ|%$MpP#! ҌUUU~'m"|*JFϑX hҜZ $tdMc [#$Mc,[#"I$ cb'ڴa!nkR**J9IIrB JyGN%R8A2M[xzx>0| [#h8 mc,[$ !EMc c'#4")mk90@=ҜsC#" $$0||WWWV#!$ H|t#!$H|t$ I1|t'J'p& :&&>>>/lp-cTT\X$"L0 0cb#"Icb#"H$I$cb#! ICcb'X"%#B.S)B/jj=LOqsxx$tlVJMc,[#"AIcb$!m;fcb&!\[uPGkMc브r& >)hQ:`0q*: '71hOuΤ>(f/ 5ӌ#" $5q#! I$ӌ&ڦm (*`(#IO*/Ec]'I AO$( @IP۶p [+z=oq [?lA#iIӌ$!tkW5q%a M4|J**3 Nħus-7-4$u cXA$I cZ DIb틥6X}&{0۸Uӄ$瓰mӌ$ ӌ_/&0`$Z`ض7ɟq>r [ 0E'cZw'D@),UWXb'mYƭӌ#DmSӌ%8Z'b`KN' P#n $@- $4JI (("4R`AyLR4{ [#!d@Icb#"A$ $cb( ovk-cߟ&<<#.8 q$S+cV%䱌b~%IR$$I Ҍt'"0#Hɵ4s^2'MqbW*1$}+cz$pI> c U(ZZo_D )ќ [Kb`${IMc [![HMc,[$!Mۡ@cb(,"-Mc @@ Y'R" kE؃6+Cj?lMchb$HMlMc,[$"La&cb#"@$ cb'"(imc:@=9PA $FLm0|s#" A|t#"H @|t# زm؆m|t&X%#8pHB;iMcXXXp#" H$cb$ &-$ Mc c' 6IMkMcUUՃ%$I0>Mc)x(C#8bB/C}@2tzz=>|^UU3}sx#  I0|s'"&I0|R@6ygyQ*J:ȏ|-cWVT\#"@$$cb# a[eMc c &} k-cU)ʏxQ..&>P{xx$BA0IkBb*"w1qJ8* Tvq& &b^%N$b׫E$A*k^/EAPۖ׭Js-6LNƧlk+93ܶ$ץZx%'};sJ^-*I!Z :(:^;|$9@ [\/;Iw6 [+_9&L< =}kPP$I1|mcI$I 1|mc#Cr50|k?> p܋8Q1>&;_I.qs`'I/ BU$II$O9W$$oU%%G 8SOmpIJV#rIJU 4I{IBWC}dOќ..' 9ۼ| [#"I$I$cb#"$A cb$ H I2McLc%%P% 1?G\d,޶# :,uӌ>l<|b>ȯ{Z#! B I-k cUUU'@#,#<.9/ښ?YHC [X<0Z_C\Lq9&&%d8$IMcR%!HvlڭkZ(k-c:LuGJ$dIi$$I(*`%`$Zp@|$IԽZ AN(׭˃/B/׵bVUU$!&ӶIӌ%P*asp2Ɩiu˃-%K! 5ӌ& 8p$ZpEI!H8)k/E`mݶkzC)؏׭̃#j5(@ԌN^X(A ѧnW\`)$I,4Z`FNDIh c=-FTVUU$!M&m۵)j" I 5*/j"(`ķrR5Hyrmkxxj.vO.JU*$ .'{IB׀$nkiB W($i!mkBJHIGɑSe1 #<JlYsU]3I"0r0| UU3I$Z?Qsz .II [W#v$wriRE].,[Tt#"H$I$cb$"d0 0cb#"I$cb' nkMcUՕ<{MR9'/Dr4svw## 0|s#$9|s^1cr{WU./4["&)B0F{U9ҜMcrPXX$!X׶kۦcb$!$ݶ6cb$ Mc,[ߠ'#8%Drrp(© nkjJJŠ(< IDМ +i4 c-c#"@Acb$"LI0cb'!mdkMc<ONdєA '/m۴ےs#! H@ |t$!ݺ˒ 1|t(Ҷm 1Q|mk p)#,$0|J@7<13М'p&@p~+%:Irg)_|Q1_=I'I5@%)=611 z:)R|jh$mm|s#"A$$|t$!ma۲|t&F7z0|s*:*$8ʃ1)B &:I-[^\'$'mc (O'@$I| f1~=I,1 *`j>gyrsࢡ9| [(*a.>mk1@@a'R9)EI' t c EUaZۖn5DXUUU# `ӌ&h%B#,4b` I-IX)6-SzHC-۶iB|AO|J0߷k [x  q#7RMc [- *889G|m$kPPX6rskuPdsk$a:sG@<Iy1B FZ-mۏk-c*UUU4sMcUU4#KP-[A6NTќ)./pضsZ+'k-c/UUU-ks-c*D|O񸐔9$ @mc9%MkJ$ $ISnkMcUU_'-=k,c*b&pМ)B66AۈTTVV' uvP[5ӌ?@hZ$$itl-cZ# ۺ-5ncjb(R`fpF1>Aȯr,[v#!$$Ccb8{Gs6gp1&&>>5ۺs [#!$@0cb'^eGk-c@фյHJ%%%' r$ c\>$Izյ k^խ =ɟ:׭{@lحjs#1 @dӌ#!A5q#"H$A$5q$ڴM 5ӌ**j%|&#<Lk/4%mu c`؞.FI I{ EpإӌUW#! H$UUU+!75UU# Ŋel􌭯&$/~ؠD}?qjB(E)Eحo#! $"I& 5q#!$I5q& &I&!s@ (#)xZ DjS Ҝ [ppX\. 'okMc/UUU/P lK/Mc+UU/Nq.Mc/U1pr.'FS{Njr$0m&I0|s#"H I|t$t h&i|t2Ƕss/EsLќ9 0H]os [#!$ICcb$!۶5cb$!kvҶcb($*!mk)J@DP3A $H4I|s $"`L|t%8"4m|s'7r[Q|s%pd9>&G\IְJB^% $1^%@mc(B)\%4mkJ-)Xx2C>.&I1 [jj'l^Yk-c%Mʏ?М &;ˏ0|,cvt# fcb&۶m,mk [*@&$'mc9$xO71&&%:z ۨ=Ӕkx'$$|hJ`.>IҔJ^ :~hZW=]aʒҔLclrhRA?I o# |w?OT2M[_? m۶McxUU5h۶m{ [&"$InkjBB *8yМ) 8̏s#"AH |t%!t`RA0||ՕU% BI|k ('p R<2):>>cqx@$ )B-@WAےMc^U?PR,[xW%. Mk [M: ̃?F =( `2'P14CN\1D17 CEMcxVUU'`. I R)' 9Kk '۶mi&$ &, c`C'IҜZp Ib-cXV<۷m [%2ڴiMc c#t&#.)>z)F'b []W\P / McR"H8<!6DKp$ c^Z" $$t cU_&e $$t,cUW(#8d'F!*COlqthPPMcZkJ#JMc [ % m*!kR*JB 1 #ivMcZ$ MMc [&v#nk-cgCϓ ќF) 3Ilđ.Mc*U5I>@pR_"6$иm:U5v#o)B~5{yFs%)>7*.<؊'&*!s@@A )͑iR{'ƍ?NkJJW&ӶNkJJ?|GLC ..8 0,$s(BU#?McBU&`XO9>>=(rh$|1'H$1U .IbBp9_FΓ$VE!*+?WAے 5@PxWUU%i1I5ӌ=8D{斥+k/65uUWT\#!$AI$5q&!nk5ӌ' A>'b^>l$B׭b% E)DbۖO ⸮%#5,{`0fi) 5- # am󌪪#!$I$H25q&۶!ӌK&%K83,cbX%@$I˃B`ɕ!w.#!H!ӌ$!]۶Eu5q& l]mU'%ptRb&EyGPrOlA0 [#"H$H$cb#" $ cb( i*)Mc1@N7 FK TtRX\T$"d$ |t#"A$I|t$"L2I&|t(*!"4|9@9 OaRs$@'J^%HmkiB %$Wnnk [# ذ6Mc-c&"0=McD1@DFKTsic$"IBa$0||VVWU$"I0H$|t#"II|t($i*)|R@EOIhќ1 :x| [/ C$moMc/UUU/I.:mmc?UU/k"` :V I2nQ KA[,[pX\T#!C2$Ccb'h&P.$G!>>9Dip91X%N|o%! 9$y%@p9_;I| HpR 61$OΑF!j9繐hR\;XLk-<s^%pmHr1|sܫ% F]0|s":&Mp&RRM`޳McxV^^$$H$IMc [ $"$Lcb#"@Hcb# Cu6mcMcUUU"K,'`=1&>;h+s( m7q[Qt_'$'|9(OĐIB=u$9G@HJ5 IϑXR,c4s,c\v$"aB&!$cb#$Mc,[ $!mڵ][,cb'h#0).JNKǚќZ&`BpQ,[}_$" 0cb#! dHcb%&mmk [ꪪ'/5iJ +_-jI2RضG!&hҜ Sp$FI$MMc [ $"L&acb$" acb! #В IMcI:@*s>16+{-cUUWT8MM)? PJ- IIbP,[UU*- Hb/ [U) ܲ{@jjB1ќ,cBbbDH$IMc [ kJ#)JoMc,[ % ",Mc1@@@?{Ra$VcJMc,c #! $ cb( !k(B@C99$"A&LH&mcMc^\$ RL9Mc,[$IMc ['gS.qk [/?FMDNս'///+Ƚ5҄("-B#P{p'T@)ϜP% ] ӌ'&&Zp %GΒb Gz2-c`pP%رMMc,c$i46Mc,[#!$Idcb&"0mk@ 0DyLs9~7۱}۳s#&dK|s $![ku|t$ $-#|s*&&pdIB>&L A۹+ҔR,R vݒ{Mc-uUU,Om.Mc-UU/v#@)2 $TN-0jBz*'`fN$:.%Ebt c_%$M QNc%!۱ :1|tx#!$A$I&|s&"4@&(:bF9kќLcBbrP$ ($Ymc-c$!m֡cb&$ (!McJ@)&B0mcC@GyOh99۱| [# ömmMc c%#,"!mcD0@: Tq{تjs<շڑMczUU1h۶ms [x$ !%Q EJMc [%ӠQnk,[O*7INİ1 8ۻےs#!H0$|t#"H I |t#!d$I|t'#4"|IJ@49 mc\xz#0@HMc [$"I0 I2cb%"IҦI$cb#! $@cb&#0Mc10@61Rb$Q&z C SZ A0bےs^U;hs%L'`=МjB&>4 McWV^|$"I$LHcb# ɖ`Mc [ #! Acb'"& Mc1@.) 10ߏkMcUUW\#"$Icb#! 0cb&  9Mc9@P@|c9' :OQ*B .641LncV\Xp#$HAcb#"I@$cb$![tncb! &I0!McJ B!LdD:& 6٘Ognc\Xp@NN:$H۷imc [I$I$kJ kJ " " McC@@@/1$:P $)U$)U$$)U'#8~Dc꺟AEiIm9\9$I"P9U(<$?,/9UF-;3l9P,cq{$$Mݔ cb#mMc,[@kJ&qhk-cEO9---#O;ZՉKu$b޵Cϑr{#TI-k c}uu$ (1$#-c cz'XP%G):? ʏȯ璌McVTTT$" B0Icb$("Mce)@@@@McZRRs& %]֬Mnc,c:'XHrd>&& E.)bb;\~嶥ӌ$!]۶][4ӌ$!mۮMa5UUU(*a<'Z' dRZ˩*<I|j D}׵0Ngl2:5{/,# r$ IHӌ#!$ H2ӌ*' R#(sp@1!ȏ?2J F}$yiJޭ*@IA9N-7xvӌ$"`„a5q#"@Ir|b*$~.F5 tkj.ݔtO-[-^ "$oR$I Q-[-)Q!Q|nk**HHNɖHR'-2>sZe ikJ! |ٜIMcR $'5& McZp ,p<*>Gɖ[Ssr/t"۴ps/W_.$P?a S^$pwO&ФRW '4 vR<|OМB>& E]Ҕ,[Vv$"LBL@&cb$"a cb$"m6IMc [@)#`'Ҝ>I9kќ [@`r$!6]4nkMc]VWU'@rIbQ)B~(IW7ɑGy09{McUWVT$!vKcb#! I$Ȅcb# 6,]cb&po)&>5Gpќsx$!m۬0||UUWz#"II$|t#"H$I$|t%" 1|kJ *6dM'J&7ȿ|McUWV\$"H$$cb$!]۵iacb$6mp Mc,[ %(,e7mcR*jqHQ1 HpskZz3p~rs\}#$Ic0|sUU#Rql|sUU!B#*at)B`.!cɐФJ kukMc [$ ")R"mcMcUUW($I5Mc)`) }P9 ?O<: h1i) [|#IMcb& AŽ=Mc1@D} A%DҜbx\WU% "-k)B`0C?qjR≍%3 # OMcWWW\#! 0Mc ['$ 8McF`=$IϜd> DIB,c XV,hN6ۺmo)?=o)dJI-c SkJ@kJ " -c%@@@@>QlksSS/`IpMcUUU0`yQ|McUUU4`1|McUUU@D\9.&''8(ms [&!В8[;nkMcXUU&#<#Mc1_) NXj 7&Ҝ,cyy{p(ҰMJ!kJ**K qr  B$% Խqt~<ʗM' @XZp''y\Z Lɓ$bյb*B4`K׭ 'x|۵m҄I$I&ӌ sp (A -(DJ6mkx&kZX%<$yRxFI-c^7 }>IJ - ܆m#"AH5q#"HI5q% ]5ӌ?'(P#'Z`AIӽ*k+ B?ФJrI=h; [pw(!mk-[x*s MR (s0J:^ &dɓ0JUxGI29 9۱}Ԍs'9|sPp$#mnk )3A S\*">;1*:_DEҔ,casP\# СMc [" I&`H0Mc,["sP[$mMc,[& I*)Mc@BNI2$) Cpk$!ж֭|t$Lqm0|s-RO0|s -N29RzZFPOqk``%DINkR$ I mkMcUUUX#!$ $cb( n\gak-cߟ!ȳ܎?1. <P$ɟV&pIbRg!U0I"i|U3I2@tU/?X>1!">6МJ^& HMcR% ? IMcR'  McR( mk)B`5hIJB'yNn1|sU#|s&۶$1 1|k*B' `$0|(Bx79s$ɟ)B>7 6yNc\\xp$![۶&cb'$m ,kR*b# j$/% 6$A9^ 9_0X! 0o61HgQ0^x,e>nR|s_]#M: H0|sW#IҺA0|sU#OJ{|s*?&NĤp&ФJ&/nf9|x)9M?z FN$aМ%! ED`ے,cpVU&Hiq"Ink [+-A5o :61↭C%>M\9`97 CģϟӜ cXVUU$"L Ʉ-c c#!$$Hncjb$`4.aO*J6o0!@OGR-R'mk$`@}$IМf1 C)F۶ [pTu!4HMMc [!-*k-cu8N ќ%IHMcRI$I$kJI$I$kJ!" " McE!@@@@=A,cRRRR$ $kJdHdkJ&!sV{mc,c((8:=qA'&%naHmk,c$!m.mkMcUUU(#<#8lkB4CLDL$ Ak@C$ `B[ 1I#hJU.IIm cRI9QszOQZ*], =Sp&tmm􌳄 9LkN3Z8G$OsIBU:$1U;y@1ժ8Ir@ZVIc4Z =>}s~-Sn$I1|s`몪&&8氜Cj (DIx-3I>DrvϜU/19Sbh*E arsjC)$jْ-[pVU$ )B7&Mw$4탠+!$$lkw!@ c_"0ItZ hےB>7 | c*A|!rM[zDյ붑,[X# @$IMcZ$@#k):b .1O1 ,۶M6'Z\&$Z(5~4R`MJ$H+k ,GF"Խq,fIjs [zZ$lmMc,[#" I cb#!$BIcb(ƭWwnk,[j:.'>KDc.&CZXUsbRT$"d$I„0||^WUU##|sz$$H|kU($4#=|1`?I1! Khv䲜J~#$M kjB-# Ii%mc,[!$H20Mc,[ꪪ%#X'oF!z>E9K{ks%80|s#"I $|t$"L |t' +B(1|k*X'ӄ9>&Gqmh3Mcz\V,;' .Jx&rO >Ϥj: $O)x)*C>mk@LyyrhR:yHksWV8IHFМtU$" C" "|t' ]}TQ|s?&H19& 81hOQncxx%ޘi {mkMc]]]'$I5Mc)`&|$O1z >~$ A`9 @yj`&jB &3qs& `|9`6+y9z DITs ?3۷ۺ4M[`21J㉏& p&Z%@t$IМ-CI ќ-cp^B-cxWUU&mڠmkRJ*"q8QF!&56q|V^Zx#" I|t% km1s/& @'|iRp=s$ɛBR17 ^-JkGOR-[^@,[P_#"A$ cb#" $A$cb% " kJBbJ**Hy'(B(@ cXVUU$" 0L$-c c#!$I@",c c#! Ä c c' =-cAP;O<cQA EM1 B%J [`X&a,OϕGs.&dIj1|k#"I A |t'!u`Gmh;1|s9MLħҔiJ'&&8ss# !2$0|s'`&`&МR@{{׭s)&s6NvD5pR>*Dۭq-cXWW^$"`a0mcMcR]W% "`(mc2`9!kѤ1/3l)NMc UU-Im& *ڽq ;9Q`rsz>94ќ)B?hky/ [z$!ڬ뺵mcMc|uW_#" $Hcb$!m5m5nkMcUUU'#011'6>OJmk`x?I"'p!jE>IМ> FI>QR(~BrlkHcӔ-cXTVU$![Эcb$!ۺ]cb#!`@a0Mc ['((0|)jGɑO29 +4INqmc$&M&1|sZ#4H&|s%& .1|k*>o@t$OќB& D+ڲ$ [pW+3`׶. [ _UqCj:^-!NjBx&?kxDMdќ!& Ev,[$%1j|s#" $I|t# ؆a۶-|t$B $|(B`GIќHB 3H۱}s [# Xacb+dKmk S⪪+O9 Mc-UUN۴;QiJAO>#%rZ> 諆ycܘ$!튴ku|t#" $$|t&$a,!0|)B@JyGP9)+ !~ऎqiJ ';{'AN$A9 BIQaX˒-[\U?hQMc\UUU%B#*As):bʊ?;q9x Ga2Z D14bےTs r^U$Im0|s&$!][4݊|tꪪ%4,R>jEytsiCٵ{ב,[X}$4IئIMc-[ $"L„ cb#!$C2Mc [%X.8")>j41PRs袁+6M:0|IBx-&OIBj% FI4GR CCs`3Os:>МJ <}0 [#"@I cb$"L0L€cb$" 0L€cb#! I2$Icb(#,o1>jj,CRb,v}۽-k cUVXy% n]-c c .& #'nk9 P=Md`9-DZ`"z5 R'*Dh! Sc%DVj&rmk-[&!کڍcb'"0#:; y=ӔIBx&t$(B-%x)B6% ?%qGOsrZ94 IQ-cp^U$"` kJjʪ*0vc A_{J( /v8mc-c&!ug;NAnk,c'#5>E*z+v0ܯ'x-NE)' ?aX+SR~;hr,c\UUU$ :9ӸnkRjz*1)HNAGHB* w۷mk-c#!$$@cb$ IcmcMcUUU(=sg!Bx<)7Ũ)[ Dɟ?Q0 E9tPMcr\W$4h&Imk [ &X.$I.J'%&NB &FnmkR#!A$cb'$*,mcF)@ENI1& DQ ޺m4sp)M9& Ocb%II&Ncp %mMI|c').0҃&0|(JJ`C+Ҝ [cp!@$IMc [)#Dr3McZz%$Mc [@*%#5ќ jj@ɓ'yr{!*=g3h˶4{XTW(yP3aM[^/$ 1ďnc\$I QM[%& mӲvAg0|s*<+b'LМ9>&FK`,cpX\V#"H$HmcMcTVW#"H H$cb$"!$I$cb($>0mk)@`JID S1 Jh>S:4IJz51`kzx$"I2!00|s#" $H |t'"4qf)`G1{jj$j#2IB.jFϖxQ{ps@߱}Q [x$ !D$ERMc c#" $Icb$ d@FImkMcUU#{Ƙ0JBGP]UsX_#"AH|t$!mk|t$!Mmb|t$ BE0|s:-N@9R63 # PMcWW_\#! I cb$!M4cb#"@$ cb$ 5nk [J**"x0$ &EN qSZנ D)$jْ4spV%UIm|{ #"H$@$|t%#̒&i|Z`.CgN-c\R,m}vncMc]UwT#"I$@$cb$! -cb'$M$,Mc(B@..>M9j^7 Cyz*A!- [p( c&McR(R`":.E9Mchhjj%!mҴmmc-c#!$I$I0cb$" $d„cb'"0#0McA````CfIB^1$mIBU2$mIBU2</(BU= `?9%$'mcHJU$$McB'#8'sf1?;C9p$Kk^,S#8$U crp?Gk'׭ls^"$$sU $sU(-$k@7 pRB' s1z 9OLq'B+aδZ "qRGzЄ1&;)"p [v=>qMc_UU2Gk=IB'>2 O{,[#"A I$cb'+5, 2.j/6l'/!x:;c'I 1z 8ITA% 9 u۶QZxWU/pƣ5*J&_-()S{-[v^\X kJ#CMc,[ #`::.{iB6j1&qƖiMcV\Xs& $I0nkIB `'4Lcj HeK7 C?ӽϜC9tP-cpXV#4@$HMc,[$"I0 A&cb$!mӵkۢcb$@@J[%|j"1Rb &oМJX&P'̓М > E1xS t{rXT# L0|s#!$C$I0||UUU)ò ҦmNk7*9؏KJ.@Mϐp :7/@H$y'q,cTWU] kJ$$Mc-c' h:d@nk [?#҃įE>@9tsjZ\Di$Isk#O϶yss%媪'3a Is%UU&q#ФM[X'h2y?1)BEɑLќIB '0&ɶk [#"IA$cb#"I$cb' mv^nk-c2ۣ&{9۞6'HZXuscR'"(A|1@<ϖTɑGjJ*f- 1|s&-ҭ1|t'`'ȳ<1>&H{ETssX%M MQ|ncJ**-y#?R65k[/McWV^X#"I$A$cb#" Icb#"IIcb& "$ McB`11O B1 q|s#!B H|t#"H$@ |t&!:v0|s*&.'|(B@p>1!HѦc\sb/ncMcUUvT#"H$cb%Ӷm0 mc [(&4rpj/@I(B%EGx3(B&80|t#"H@|t$!Y[mۡ|t# H-0|sZZ&j9-J&>j/fl!ϤmcWV^s$ڦMnk-c' AŽ&mcaEt$I%'B`PMc`\W%f 6imk [&+#sjB 7MI9R,[zc2۷s [#" cb$!mvkvcb#"A$$cb$!]5X5mcMc]W](R3-B=/|1*z(ϤR\%HQe&B1),[````$"LȐLnkMcWVVW#" A$cb#" cb'#4B#4kHJrr=}}ܑ [# M`mcb# Y36lcb'HJ`qR`|~$BDJnc,[4&R0,s9*jGyP1Z 2]۱s [&.(Mce)@@>),[Aacb$![6hnkMc~WWW'pX"=o&!.>:=ȏOq-cVT\\#!$$$cb(#ɒ(AkiJbʊ2){)A&$p-C$A9^@IJ˶Zx5 PAGP9&&q--cZH$I$NkJJ! "$ -kJJjj*2IJ $ ݶiMc,[ $ "%QIMc [ '8  2k9*h07Ԑ' Bu a`ќ!-$ȿqJ %??ӽФ bp^A9t@McbXV$4I$IMc [$"!2H$cb$!km-cb$" $L€cb$"$0cb&2rmkJp**#/<0 &&FcI[sZ )8dQk#!H|t#!$"2|t' A,4|IBpHMcќHB& Ht6,۶ S4W& M&Rb $ ۦmNsR 2Mc-["((%/ jBI1x3! 4۱ۓsTUUU1|mc m&m1|mc $Msk",)|)@8Ey9s,cz+ 0&MN [`(tJ= Jb $  McJ4#!$A$$McLc'$"4Mc)@Kh)zTI $(HI0|s'!NTeQ|ՕU"O˃<)B ;ʏpҔ|VT\\'۠ ۸!Qk**J?ΓyJ))IVs\Tvw#!$ I|t%#4.QJb3cR$dMkmkMcW]]v$!h׶m5cb' &M$,Mc :@*=MP9 >$1 0i1s_|# 6`,|t&m@!1|k B&9{dIJz%?IGR- D`>eO [{j3w)LmcW\Xs& &0Mc1`?'Op9z% @ a+R 2xvs [$r&PN):&0&qb|WW\x#!|t#! B 0|s&$I91|IBP=d'IRBz-+=ǐ#:R [᪸.1uФ$@O'ϕ9% H!8h۲ [p$$I$IMc [$"LA$cb$ 6imk-cO?%},>P/jB%_-Vh)XϤ Sb% k׶銴mkMcUUVQ#"H cb#"A I$cb($I*0Mc&!`I}dIA% A@u붳jJ~$QkR  <!R-cxxzz%!M 1kMcWWWX#!Hcb#"A$I cb(#8#8k(JҒ:G|Vlő [#" cb$!]vֵcb',!kiJJJJ9!!PHJ$"I $mcMcT^\#! H@2cb%#<#3 bVV\\$I!NkJJ!() cZ*,!O5{JJ61r6=PF x'|p1z QO$I EBќMc xWG`r,[X}_$`9"1JB7GtəQmk`+1kymk [#" $A$cb#!! Acb#" cb#" $A cb$ $ICncMcUUU'&,У'P1j6DI9vtA)+Iòm۶s^}%Xj"0Ϥkr$@Oc'$ &(|iR@@tI2(B-C rҔ,[`Xu#!@B Icb% "$I{R{%IĐ#Jx% 0xBM$ R1:w5sW] "I ssZZ1|mc1|mc" A,4tg1`<͓yϜB& A˟Ҕ-[P\VU$!hӵmۮmcMcWUu' 8is [{'I''.Ϭk:z& ykBx@l§O39%I\͟Uk$"dH$|t#!0H|t'pZ>9.>;٘|Z[zx(<)240|1@@HTu)$IDA|s #"@H$|t$ `)0|s*:*%M=МJ&2mŖiMcUW^& A &mc9>l$ɗB9޷ BDX˒,[`\$(CInkJH ((1 '>,D)ҔBh@'IҜHJz5 D𩣽4lk x.(=qk&&|k _4Rɇ6K}I-< (jY [x$1J$ McZ #" I cb%a MmkJ@ ,s*>iJ70nKk4Qs<@'$j9%CN'B* G!6j۶Tsp$"a IҌkk("?9qk ?*]-[`X^|$!يڵk-c#" $@$cb$"d$acb#! @cb($CdAkRJ**|;rE!')d@DϤJ) vkmk-[%$  !kR*JFl'O9% F -p۶Z`XVu$"L$ $-c c#2 iMkkJb*#/ @ȯ*JZ7_Gn1JW%$.>sRW$ INmkJ&#8&lk0007\b撔 [#! I @2cb#"I cb&..!mcA@@@@7q caaqs$" ILcb#!! 2cb%#<#G9E tsc$Mi0|s$!]mXf|t$!mum|t&S31"0|A@;?h0|xh>lp'2g)8HBB!H[sp#H$0|k #"H$$|t#!C |t%"$Iq [bʪ0|:'ϤZr&.}ܭkMc_W]|$" $Lcb#!AH2cb#!I "cb&(,mk90`+G<)z Oy|f{麊HF#UP|r$!muQWUU#!B0ь|#s@+\}>kXc'* MiMcUU]T$"!$Icb#" $I$cb'۶m۰!nkZ*J2/>LD! ApRiJ/`1۸mNJ+ÖaB2S3>{P%j>I)xZӜZrXV$M&J-kZ#"I$H,c c# +m,ncjb'"0%ms@8EF;,ccrZ\+!~rۮsMc/UWU,M ̓m [z 1O0۸nkJJh&cɶ#5-kR*`!$' c7"y" :N$9%`) <IJؖ [ zCќIBé3}s [$6I4Mc,[ &#$ mkjBp@0~F )Œ&''IIX)Fќ9 @P-cXVUU#2AmmkR`*)ϰ#NB')IJ$$a]Fmc,[ ' @&s1 pBNDSA%- ?!tt\6s+۶mt$!um6|t'$ *4|(J`Ht$IМB' I!H`˶ҜZ`p)#.Rb7(H .Rp# ؀ݺMcLc' B&mk#`8N|IR%)/CLgmcVXz. ΏmkMcUUVY$!-6k%cb&  9Mc)pGt$Io& EcXͶќR X7oէZ#, 籌#"A$$ь|#"A$A ь|&&I )s B:&NR޷-6XL ?rk\x(Ih S'&M0!kR*J'&MgE& E [p$hmMc [$!kZ,mkMcUUU$B'HNR?1Rp%$ @wKJX$!ݚK4Mk cUVb$!lncjb' Mk cߟ?F|¤N!>&F-cTVWU$"!a$cb& eekMcՕAMD92ܾۯs,[,1 ٚ/Mc UB~_Nќ(B''2IIčOMcU0I"Iq-[*FI_X'B 9/$YPR8 @mݶoMcUU:|B >66Km ˿Ҕb\VV9 '{ cUUU7h7-sZ@ooD?PA#3A4@-cb#v,&I cZ[&zGxG9&&6&3JH{ [& ezkMc:MM09$MviMc,[$!]eֶcb&",",mc9`;{0-cPPPP$!Xv5cb' vm[vdk-c;PO1 &mYY@nk ['$I>Mcx(X s$O::+8X/'N^ A~$15F1W+HI{褐(B <>r-c^UW'hrm۶k [X !!Cmc-c;!zX"9n9&>/ qoJ%ϦR$iMc ['$M 0McA@'L0D. CO sMcz^Ep1 [$(M+Mc [#!$ cb$"a'IMcJ@#PkB7& ?МEOdɐSJ) DDϟsPTU]$ $I|k`'9_# k'*I.|1`Gt$Iќ'J I)X`˶ҔZp$$A&IMc [#!`@ Imk [j"r4 NR'*P1?OpHi'Q. J\{,JrZ#0|s$!mvma|tss!mmZ|s?",4`$9b&?IL!XќR:XSm۶RW"Th, Jr!INJذ!Mc [! & !McJ J?t$OR/+I A=K5sr( tmwB QtU+&!Nm7q Ps(۶m>Q|Mc^($I'|:_($$Q|A%<͓1& KyGϑ.:`:(9$ӌIJ&mwQ|-c&!ص P|UUU&!]q"Q|tU# [1l60|s%" |):@%yǎqJ '.mbMcUU_\#! @ɐcb#!I$$cb& 0Mc1`<k$ɗ 9޷- AI:ͲjB(-B c) uֿ|t% 8|iRpB|IbThZ޷ A͟4s%1*a.['z.vi1mncWTXa' `R'Mc$)`<@}$I 9-E!8`˲Ҝ,[pVu$$i$Imk [)#@J'-bGR * m۹ر% $  (s B@C'NZz޷->1ds$c>z*)N:'L[\b&BМj'Cc*ќBX/0Ys ['!uMmcMcUuU$!ڶ醶cb$!h&ݺmcMcUUU&R#,/ :>jjcE&QZ#SO?JJ^&$$A\(&>5-cf1@@D `9ќ1 %D>nk ['&Hmc [& ink [**?OTϔБ &4ҚMcR( 0ێkR*<xpB $$IRMciJݫ*$ۺkR**@Op1 $@@!yMc [#Al6Mc [(pr*O(B6666>ʯZtt%ڶM@ cZ%.-kZJJJJ=99/1$6l s-cZ $!EڥmRlncjb&xgxgpF9&&&&6غ{ [$ !aMc [ 9P9&&& !ْ-Bk,c*& mۺN k-cՠ)#19mk9`<EY%PG)\&$McE!($.1U**IМ1>$y)@)7Ig1(?)@"ќ [ VB>6%M֑R~\gHMcZ `#0(:&/ (EP-cVV\X$kJ$kJ'3-k1bJ3)KIR' Ҕ#7G}r*c `X"''19U И$m$Q1r(BU*5II J=I' rs8$R,[*j ǒR& [-7yb ZFII1Z_?IRRU?$0JW&$JU& ɟ$jB_&hr)>ߪ+X|?qmkX`%  s^kZ_' n=McBjP>tĉb1' >  j۶,[bXu#L$Imk [*$t":-jB '-ÖaJh@|IbhR7 @̟Tsr$!Y;]m0||YWUU# öem|t*#s9 [>jEΟ 1% ?*j۶Mc`XVU$&mimk-[#"I$cb#!`@&$kMcUUU$b1(AoJ'*v@18Zi?'IZz޵/B)VXs$6'p$!]: UUU$Pkz$w}>rsɧ7"鍑RT$"IMcjJ_$y)IMcJ$ i"IMc [&J"nkMcUUe'B&LDoE!& D  є,[P#͍&`R -_ A6)˴sj"s'Q)ߚJ{$9&@mkf)_' mmc!(!mkR@BAɘ99$-H&IMc ['# 0Rnk [**>?OTpA #/@@@McR% nkZ***<PLєA$ImMc [$2Mc,[(hpo)B6666?ʯ|Zt$y& -cZ+vc3nkZoo? P9'4m:Nk)Bz&&i' c_)xgz܏$...=* K$OF!V *I$f)9ɓ$Ф. %ؘ$IbO$c9U9I$hf)=@McU7IC6МR_Fy)h-c^^?'Q [_(c$Ik [|& @#09>7PMcVT\X#"B+Mc [!tIHMcR (Ak(Bbjʊ3٘9L/1$m mk-c&$I5mc(B`%`Pe)- O)1 IϕbR΃ jG!6j۶Ҝ [xVU#$I-kZ)#j5 hkJ 6-Fl. Sc#!B!ȐmcMc}UwT&m=P#kMcUUe&4r<z>FISc1"El[UmcX+C!Nc( m{ $|t& A 9tR@PG}ĉcѤR B r붲,[`Xu#/J7_*C! R'-j cb( &McFN&$ɒ,ӽn *9IR 1tx\: m[s U8IntUU<'ӌtWUU9mۓsU'& &,0|)2`"X16 DϕC cX#aHqZr"s9Mc %71\q|_VX`4$r|UUW8|UUU3ڱsU8%I|*UU1IS3&21Iϓ)2*2@+Cq1b@}ɐ1-=,[`\}#" Icb#"@$cb%,Bj$Gmk [J*$|.>0jB '_:zx1sbzk% ]q |t#" @|t$" $$|t&BQ0|kJ *+}1L$9&)qĖiN-[_]w ԶM۲-c,c 8-c,[!v$Mc,c! a‚%Lcf!@?N$Ic2E) 0??QB $IÖaќP|&H^w.t! I$.t! AҎ=b`X:} R6' "X{>: [Xb'"IJR$BMc,[ &&/ mk,[-&'Ec*R .xn]s [#!LB0mk-[J#j5RR _} 璵 c  $mvqciEOjx8II@1Jz,Ih1W;)z;II:X#IR?М&)U)`I$1U;P$ &PrI$jJUU)0I?1)BU5h$ (PIۏRUU'@IRo):U)pId.'?()IҒO9V7$I>AOF9UL$bAz8$- @Hs1I ,МF)j?I$,cz;IrFMcU93C2)BzPklќ,cZ[>PrMc_UU:l;m]|R@<11pA#I 4mk [$ @(Mc ['"*McB@0wlPR$IlMc [#" $cb&"*mk:`@@8/R%¢ڶmMc-c@&$+nc ['$M5nk(B*x5GL%!/%'O1_-N 1 < Hӽm* J|t.czG# cxVUU#"A$-c c$"I0 ",c c$$ Z><-cZ${=/ kJ',6m/H `'&M?& Ly\)Z*?@5sPVu_#&#50|sZ#@|cp''+2&J} МiR GGZp#! cb#!I0 cb&#$ {R{)˳簜G4MI1F)' H)-$ I$IP|$"0!$ь|#"$ь|# a#P|j?Os J81iB.6 ?~ 2)B.ȄCJx#IBnlJ cZI$I$NkJJNkJJ!${g)jZ ϖQ&$%) D|TMcz/N).; Q|s#; 0|s}}$!nh.0|s'6(,|):`@¤OR97 EϑC t(b\8ȝ۷mӌs#"HH|tꪪ%#$Q-[j*w; QZ '/fl! 0tUW^x# ۰a|t#"H$|t(Ӧ !qMc*JH|IHJ& M]̟ӔR$r= :'BǚI1 [zx* }ۿmk-[$"D$a„cb#"I$ cb#"IA$cb$ :mk [J*'|*>`)/>'T@1k`& ,ɲ1 |t% k۶k 0|s*',4h¤IJr6B bhR#gRp'$mJoJغ ۖLc [A 8,c:@P8}ɑ17 =۲ [pXVU&1J:'" ~2QJ-"IBP| a&p B`6MdpHJ% :Οkp `|Ncb*IrRp> $HϤ [UUX(:1c$.&j&DI)Xќ) ?1,[#!$@ Hcb#"@$H$cb#!I2$mkMc5UUU$$J'{ۼZD1䒵Rxx'mҖImkR%1$}ێk-cU/߯k,[('xdLМ1E r [vv)K/-c UU2;o/-[A~Itќg) 8ڹ}ۓR6'|-cUUU6\6dC6s9jjj>,[rzz0$k-cUUU)*^kiB@K>11p(B$u, $?mk,[ ,Mc1@@@6p,crrcc%%kiJ ^47@Θ8OF)˭' Op$! 4c$I P9"3OP15In F6Д9{:9O?Cx' DNdT1 Hm>mR _}ADtR$$ -cZ P%H@ cR#! A,c c#! $ncjb'$ 8nkf1(p$0 JOK֊T|b\,[#c7^,MkNtVX'$71|s''(ڳ$|B66O\1dќIJ%)-b:vvpJ],Fh)sJ#H$Jcb& -[mJk,c?($X䐌 j&Hϓ珑bJ*B s붕pCXu#{= @{?+4h!-5#! Iɐь|% $I$(k@"‚%L;1HBj6 <yD9`Rkkj?ăɟMcXVUUHMcjB@Bc 7#4HoLJ` ۶Q. cZ"a"= cF)@0Mq1& BOC -[z^@pQR!5, 2&j4w!`k$ڴmh|s'$ &,|)@'X䉓16 HϑcƊu{*b5۷m۳s#"I $|t#" $A |t$"L&I|t$McZj%Oq-k /&mbt_]$!h-ݒf0|s'"8X'p):bm_lB&'d@|UVXc&&#'tR@pAɑKJhR% 4H''s"I|mcb*"O1Z#Ϥ [r'"I3pC`<|$If)' @J`˶,[@P\W AMc [m%˖mk [B7" }.rR %:N\1tSHJ- 25sXVUU$CLȐ0|nc$A@H"0|nc"`0|ncZ*;q*B ''DIϔpR'!Cܹ}Z#!`0 Acb$"`Lcb$!ڶ]vcb$!k%ݰcb$ %k9 j6N9p&'hBqjB /rR\"4H|qjB` e[4mkR'MMќB.ۈsZ HkJ#6Rqnk-c7O)"Mc [$$0kJ "("(Mc1`@0 crrrr u$ Mc,c!6ncZJJO99p:U7Lٚ,c ["k(:Jj<)1PhJ%!4Af[kZ&nkRJʊ7!10B$ )R2Mc c% mfukMcս:M̱GPB&&*&i;kZh&$I@?mcB_&$$mkA6̱GO$O &$?ONp1_J$c19IP1<I Hp-c ~U9mG|Ɛ:&&>B`QZ$$.z&hGd DOHb`\Dh1Z}_#h.fJ-k cUU%r=.i R7-9oZ_^\r' @=TC cR $ $EC-c c' a@#'-k#`3|j'n' 2jBI!8б(J ;h [\WUU%7tC@mk [/"b0 {R 6*4l{-[&4h<М&!z'DId "Gϟpr\WU$!m۵# 66luU#j5 @{/`*VH)ZJ%ɝrHJz By!xr-[z@` [XUU I$IMc-ckJaMcRB *|= ϤjB%"d1?`D}$I Rb' DT۶ [r^U@H$Imc,[kJ BMc,[j*5NGtL>(B '4)r84):`&Xĉ1& IcƊ.r\1n]۳s#" I$|t#"IA|t#|iJU$?|jJU'$I$|JU&j"5zjB.u,g?*B ,i|-ҔBhBNHJ' B۹rZ#"$ $cb#!H$Acb$"a IMc)@$?Q : '7)dH1 [}p%ב抴kMcUUV[' aŽ%mc9@>M\9-<CӔMcXVUU#! CDBmkMcoU$j,5*@﬋B7=O'QRAs$ŚI0|s$˒ i|sV$$A 4tiRpB GI)>Rs!zBp?>Q,[Tu]wzۊ,c S%?C9cMc ['#K$A"k,c7M$ʟ$#ʮ& :CrA GRepPT}#"$I$_WUU#!@!Iь|#!$I$I&ь|'  9iRp%z)B. BORNcz^&{8>﬋B'&vkحs SkJkJ"m֭SMc,[."*سpj6/rb*Mc,[%kB'(!?11( I–AOs' (0|jB`>t⤉CtGR޷- AAߕqs\VU$${ؠ)BNN S`&e Mc-[ 'ӦM۰!kR*J43'Ne)z' C9vRҜ-cpXV%"HImkJ#AQR%-6m s_UP% 4hє)Jz'AIbŊUgR-1۶mۓs#!!I C|s@ "s 9 Ϥc7&tIФRp'%˒`mkR &$ &,Mc9`<tĉє9' =A̟ [pVU \MLc,[vB6`эkJB McRB (*?'RqR _mn* K$2$Խ⊬x=O&2,c~X-ICϤB 7<IRUz0$mJc,y?35.AU ?ɟ$iќ(JU'$/1+ IJ\,IpBU 6I?o(Bu0@oJ/IҖ@/,[U,IIF.,[*jU7 ќ99 -@d[P cUU4y @_0ZU6@c c_UU9dL0A8Gh? [V'`$YnkMc\UU'Ilvk-[:;Pq9$Mimk,[#"@ cb( gЎk-c?XΑ|pA ! r$- $ Hm۶Qc7 $I (0g<9QlJp$$HnZUUTZ cb[ [NkjJ#H"$C,c c#"I$@$,c c):r)NkRj*8QEk Hy\1VZ*CuppTU$ $Ipj:#{=h-[&`,FpѤL*b.R#'Nќ(Bz' Fb є,c p\3XS8/R%K{&.J'۰M>,c S( J6"mcIB B&&͓ǐj' CI ({)Hmەkx+ks &)IAW_w$!]kUUU' a摄iR`E}J'&mk S!mֵ mk,[/!&,`$j':ɟ?r1 ?B3McjXV z9JB+1Mc^x'ۈ mk-cUW[R@kJ"$ =Mcf!P"P'z6 @']QRjA$aQs {6$ q|U5$% sU9gl G1JJ*9Imo-[W% 8McR&$Mc @j>1;iBr $aMcR McJ[s'm%:2l R\\!b}w.,NR U.O4-cUU)I$Qc&/iQ9_$m۶&mQe/隴MPv{HE{9r-[zX`(!mk-[#"I$A$cb#"IA$cb'ܸ$A"nk-c_G&&Kdof!z& FI 1-[#z^'{0R %DlOZ^7?*hٶaPTU$!ֵ뺢}WWU#"I$@ &#i ҄z*( 䎜B&%H҄og)z6F 3,[jx^$+MӦAMc [ $!mvhcb$iqnkRb(M:&/0М *zCcSB 3ȝs#"I|t$+ЏU|s&v#@"1|Mc** J@N21&/ 1N&0Rp E'O9ڗ'>:`ɒҜ,[bXW"$Mc,[躺 4 Mc [zdPHMc [$ kJ & &,LcF@ ,yO! EOLrM[hZ9H0,[U]W άEMc [J*:$r,1 MJ7_#ANnRb #S35C0mcHJrprz8 }GP,[PPPP @ۍkJqn -c,c $I,cR`/ @ H9'EL&Mc [ 0$CkJjVmk,c2Lp1$Iٖm-cZ#"I ncjb#!IC c cꪪ&/8#4mkA5qMcTT\\$"d$!cb$!kK[,Mc,c:LD|4gP1&.>1۲s [(I1Mc)`( ,|$Dj D'AМJ?I˶ [x9`>S6>j #I\<*CC!HӽRz?XZ\UU!!#-KJ_'qNZ]UTP!99m cZ# l"NkR($ $, c@&@#OzCyF{XNgvo$!ۆmn_WUU#!Iь|'$ 0ҌZ`E'c'Ҍ cXEO1iR'G!(j۲,[pu$$ $IMc [kJAkJhsjBz& L4nB'  8zFzCɟ?1a @9tXMcp\W#4I:Mcx"$$mk%OqC .7 +qmcW^X`" b$o'<N$wB& DIa۶S-c^UBX6eC6P|9`zzz6z-crrrr# #LkMcWZUU'IZZkMc՟?N\B''(0};nk,[{ .AfMcR %#0#5Mc)j9i{Rrr!)n,n-c,[%8%-c,[z `zO1>>&<rʿr,cTTTV,c S Ummk,cߟ:MD!&3ImْO,[u,I.@rMc UU*ȒR$ $ԽPʨBmӽ`($tJ,[UVX##Qmk S#)Mc [/J#҂%KOf)j6 BI*ҔZ`*hk [$ g sBz7 kBZ%'IO# 6aь|#!$H ь|&(('Z@>I\pb+ HXu^6ќ|kw/mӖi.-[#! I`Hcb$"IH&I"cb'۶M۰!nkR**J2['N!> AI9R~*dh1P.[( kw|t% Vu 1ts?O2[3&LHRz6->1fR Ulk%RqcZ:}>cB 7&mJJhMc,[!@jFNMc S%)-c,[ $ $ LciJ@5l'Of)6 8 @Ҝ c`XV'ƛяBÍ7&mbnRdCkJ 8NۮMc,[."A&M.B? !1Z/8{'1!\$g",ǒdMcZ-QRdZMc,[.../0L9iJMc [$H$$kJ vPGn{mc,[??8D/1* {Nk cUUVT#"IA ,c c$!ڴb,c c&#0"(-cA`@9 UiG0 [% mu#kMcUUU& eS7,k-c_'`eX>'O)>>4:N1ez?MN$I1)CgAXۖќMc^UEQ,[x   mcIBB 玓Qz=O 2bjZ@pZTw]WH$I$ cb!6Ӳ%B-kRj*"!okJ&$lNJ& *9-c9pFl$I)ާ HR-iXV(xdIҌ|h(ƚ#ͯs6Z(HUU\P'$ =ZP>t$ɕќhJ' ?ϐxjL:МZ`( iR$ A$?Mc,[#'McR#H:Mc`8t$I' :r6l1).>;IE$М1 x;ɓ$ќ1%0nIOIBU$C:IN1_:McRPPP 0Mc-c~&\A6mc,[ ./=OpB $)niMcZ% m${JBU#R#4'ls;Gk摔jJ^ILc9_0 mkJ* -9MDpe1&&,kZC$kJ !MciB@; l9p1 H$HMcRb(-kJ!"0#=Lcd@03m" [ .$IKPK¯۰mԽ/b$JqJ$¢%KG *,cpX$4mmk [#P-J'+–aΠq [$ 8jdєIJz5A4b $i60|s$!mڶmm|t#"A|c@1J`/"4H!Z]U^pP TMc,[ )!McR:J1&M1{' 7 @Ҝ,cbXV 9|ndRMc ciڤmLcJB@%NAJ:'&ۆmbn [U]w+ڬ,c,[ %LcA@03S'BIM` SMc^V4@mIMcUU"dK9ϤJz7"$ 6' :6Oɑ_pd  rMc [Fn@:,cZ`i>mcjJ _.LGzا...&7p?sZ~'$MP?Mkh1_'$I'-cEW%ڒ$,c@:>I^5l$g1 E$N:1!_*DI?O%FOkêJ`49I:⁍1}ۋ ߎk-c& $  mcIB@ 玟Ф&zAHIr-cx4۷]{ZH$I$NkJJI$I$NkJJ"bN cZ **%rw-kkJJ **&J1D &&$x jY,[`Xu$"i kRRj*G/nJ%IJkB  9Mc1P8|$I Фf!' >)V[4kb$14J|k $s9`nc7.FlHҌ탢'$ &4Z`%@ɓgQiRz%EI Lc `\Ghq,[#@Mc*B@*чjB'*mBo-[W]kJ  8Mc$`!X1& lϤ I$I$-~+wxwxdzphb>߳ [vVV-۶mۯs-cXUU#IMc [+$!5ڶmcMcWuU&@.#8O&H2,[hh2@yb0|McUU7 |McUUU3N:=sBښ:Gin$&  I$.)U&iO$NG7ϐHy$ $ I/IBU/DrcMc]UU/ ݶ/McUU/~[.-[M4OQ%! ?o?єiJ_7IIO 'rɏjB{IB. 9Mc1@9k [acr!:l2&Mc,c H2$IMc,c2l|of1>.&=R\!{$I0R _}!MrZ %ò۶lP{:<?s`: ۭqR+kJ%kOMc,[..#!@0cb& (0Mc1`<tĉC9' <="MJ,L?ӽhRB PcX%! ӱ$"IB"I0ь|% $ $ Mc@ Ǐ [b)+:0<М GI1x1 A| [$"a$H$cb#! @cb$R7_@$s(B*0۴]ڒs!;0+sk$9ڹ0|nc& 81|Jb>tĉCS(J- ;v9kݶnc^"d@nRXc1$3>} 99pBiJ)tMc c e@㺁-c,[7ZMc,caa,ck:`%gk"&1#ۄI-fxxܹ};QC> =9tRMkz50|R$ILkJHmkJj,[_U&iA$ˑmk [)%/0!>1i1kB`&玓1Z%BcƌMc"p\6S$I.J&#B-Rc"msL8 cZrI$I$ cb%6i6.kZ/"*8r<$z>?ɐe( El۶2c)L&&Мk%*$ɒ q& %Y֤SҌUUU% 瑌RpHORZHGΟҔ [`\}#! Hcb&+Mc [`X"#@,[k:`N!=D.)}y|0М)7 2 ب4kbXVW'Bsk) #6K@|s$ 4,JrL0|s::+1#P1*0'pQj:'*℉s'jpܱmq1I$IԽP@ $Ir$%Խ*^='AO5?mۏ &5$M / |rZ\`!IBnJ AUwMc,[% &,McA`>lI9޷- = *hْҔLcbXVU# ٺmlnk-c9#1J%(|~>1J 'IѤq|(#KP"0|:J&LRp& AcŊo%bX/x5ۺmk 7ACyI٤,[Zk& ,ےmk [#$H-$Mc,[#$AeMc,["(,X'/j>=I1vМ) ''Tk1OR-# mh0k $ $)t [@9l'OєiRZ% :8 ɖsCP69ts{^ j" @N[%=ؤmc`z}#w.McZVڮkJ 8fqMc,[6`[ukJ!$ 9,c9p5t$. *q)B7<pqkx:PZP}h6햮Mc,cC3t6 kJ!$ &)Mcf@@|Ir) =U&SR()1k_~N"I`B|sUUm:MD sk KkIssՎ#9$@|s $I2hڶU|s)"4Zq(Bb@A{;ZpPPXZ lFRLc [訪%$>mnc c*z*`KD*&&H9$`=pIBp%O5njBW $@jBp1{LF!.&&A`ؒ,[Tw)}Mc UU($QMcU(OQZp !$ԏ'`8'O9޶- >8`ɒ,[BX\W! t@'Mc [ d -c,[ $CMc-[*@oJ7_!I01 '&"%w2RjھEIcƊ{-0P|# #豄qZZ!Ikj"J0J^b"bpMcZ a9Lc)@>Nd E!' 9RΟ [XVUU +òTAMcRp ! g#NJ'=C'O2(Jz7 ;)XZLc"QZ|k+* }Ҷmtk~ ~sk*X&o S/z"tA|oh46McR ۘMc [ `&Lc!:}9-:͟q [`\W]R&s):j$~L?IB # $J`/J]ݦ7t-c,c!l˒"Mc [.N猓D> E9DTkbP\" !I0|ncK ~R &*qŖsUW^\ LVcss!CQ|mk$![(|t( A,,|IB`HNthR7-=k&a$IQ-SJ*! QJ &3Ŗ9mkW^Xx# ٖcb&M !kR*J&MRz' EO 2mc`X=0| [$ kJI$I$kJ@$kJ "I mkB: JG#K3eڪ Iyē{*E`5sXVUU#!A"$A0||^UUU#"HA$|t&!mvl0|s*)/8X$96ByDRkj?@McXVUU#"@$HnkRr*ϰg#.J'+MB-S!&R&Lc$`81N\9p1- 0ϟ5sXVUUR5ݤ sk. #`s-[r "1k1NN[7#1j'1j,AɓIМ1 C ޼}۲-[`XWU$ !R"%k-c${$>jB',4lnM[UW\p#m;@IMc [&$I0 kJ*B'%L26 ֑@09 B'BpE1h=)Rc&m㈭nk,['m;i>kjJ_&b,::>)Q-[xxx'3.9k,[' 4m0:kJBz&$'McD(@${1_+?97IQ{)%IbQG!U%`IbP :U'&;1C*4mF|đ,[XXXX@2-c,[Mc ["(.Mc)@@@@0,cssss I?U Nϑxp  @AN,c 2 mǎMc,[݂hmMc,cU^!p'zgg!>&&&?kȏ,[\\TT6tXvkJSڶ)mk [??oAOP (_i}s [t&䧭ONc,c-_'|3=z< [ MMcZ +II%-c,cX,LILc,c(,cN[x &#j.1f)*>>2~rJZX`"$A*mkR"*+8-cM[IkJa[v,c,[ &,c1`7Nx1`)'&I8tR!M [\x5t$O E)' =  ӔZpVU! SnMcR ߯ ΄n+I,[Za4BmkBB,~Ɯ=f *#$i' c nW[ts#/jBts Ttts>#.=rDiJjZ%8y6 TZtA|nRwPC0&s1Z)N1Vpd1' 5;I$JUU@',cJ__  H֖iMcR #*a1)B7"1w;Q 2 %ӦmIn-[W]u "B 8EYqbМJ\\!@IR/IBU!@ImOIBU#NI2/cj/Rf)z*9O6^-5O>$MrV\1O21mk^z/I@J1$Dp)B_(-'句(&,I1U%K?Q 2($!נ$w1W  r?LcEBX=)ќRBp -9`,cRZX do? [R__@t簜>&81Y2ZhxzX dsOMcR I_-cZU MOR-cZ M\-cR**/{Xr.',$XoqR U"qJ`"[jI!Hb- =pUtX@kZ#?}>0 Sb/$NjJ BvMc,[$@B0kJ $ (,Mcf1`1t$I%!' :O>BJ^$DLc%4DK0|s7# 9pdIBz'AIHR Mtkb1hФ-[_9O1'0 h>_qJ Oݶ,[R [,[R"-cR m){kMc [:uur9/4М.j9rhBp@ɓH1 CT͟sPTVU0!0|ncVlP)0|ncm5+ ts -R6k,bt^\p"D,ts (&0|:`IɑL9T&J) )0fKQ|s#"@$ |t#"$H|t#!D$ 1|t?&{#R6z194Q`HyϔsZFR ['2mk [j&!@ϤR≷_#H.Rp"۸q "Mc [B!BL8z' Dy1hts.rBp5s\WUUX۰mts$BADIPk%kX%(?):j FIViJ 5s;:,cxZm'ۦMas [$"II0cb#! $Bcb'$@&s1 pFOdS'J) EăϟsPU]#IH|kP` "t` 0Nc%ۦm0|-[*h3S'NBj7 4Ir6=J Xv9۵T [X^#I$%PMc [W $H$IMc [ $8TMc,[#!$I2 cb&(I&(Mc1@ rOmr  P m'Ap׋i]ZA$I;9jRǖќM[Xxx2XmsMcpUWU#N, HMc S#1HHIMc-c (xxМf)&&&&L(r [4'ms,cU8 V7sIBjJj<)!R$ ЈMmkMcUVV$ 1 (JMc c$"d2Icb#%d@$}Mc [ 00IMNA9<|-cUUU2$s,[]1ж$I6k9b3@:}<cz 9|$O2 & I$I􌳄+ C$I4R%²IҤIo5UuU!T#ҔZWX!  ̓RBMO DhR0k,c UU*b߶{ [u.~$GϜ-[ U@IO  1$϶9X.I1  < 94Oz" - VNp/QJ -_CO紽.*=pU|Ik$ H0qQz-=qiB8@p OqwPQ [p!lRP &M4!LcIB@*c'ϓФ9߷ :tB ќ,c`XV jmPmmk [m|*: `JB'(j5J^@c UJ-0xsv[ےst勹@ tkX,,ܺsk"j5(IJ>[fXRcm˒) ,[ZC5i [Z"@H [Z ( %Tb%P*,[R  B%"5{DAjj+;$9jJ*B)lvRJ\w$єjJHs:^ 4MS|Rm'tb0|sUUU  Lv0|ko?~4?ФB&6"9qזtW_xAt$O1)IݰMUsRTW%!MvbQ||WUU&!]N@Q|s&8r5Qk*z& $IP?1|R_&*'0|IJF?OrR/G=h˶Ҕ,[pXw#"H$ $mcMc\VuU#"AH$cb% mmvmk-[j"j,h R7%c&1j"=y9SLk A`Us\WUU C$I1|mcȀLts$1JM|s &* B|1`Hyg2sjB`Ҕ-c\VUU#"mkZb&R#.Rx%'I  [X' B&mkD)`8IΓ!' IUsr}#!$ 1||_WUU#"A$$|t%,*,|R@3D`$IKӌ@4R!I$A&4R ۰q0)0|*b#L2bx-<Ih-&s @HNsBÊ mmk,cUUU\LLkJ ("8LcF!@@A 1ќA! lNI cR! / I cR*!3A IOR -IZC&' /0+rJ:^ @Mc1  INmkR $ЦMc,[""1B#=Lc1@`:[ [crp%!rphSkZ"I7McR@*"v"R _uv1 :X&Rlҵmk,[dH 0kJ$ 0!ȐkJ]WK; kJ $ $,Mc1` Oq9 %$0pW\p#y_䐄Q| A‚%qR`<}$IRZ) @6h۶PrTUAǘ [k> &~rG1{,B DҜ [paҶMc c kJ$6}Umk [O/.}[ФIB 'Dhes%!i|t**؎skmSsk7$Ȑ's(B67ɟ$1_&I B,Kn3-c [UUUIn 4 [1p='I 9~ <X; [`X(`l+Imk1J=11 6$Q0tU,$+ 0P wU0I~@1JJ~ #w?IQ)Bժ'jBW#ܮɟ$ФRu~* 1JI?1`(@I'1*:%$ϓ)BU@$INR_(=O$HJU>IRƶ4 c*@yΓ7/@ O$)W'@nIjJW'*$O6?Z[^%$mc BU&$IێkIB U(۶qkiJU*dZ"xkR**(-7tO19 2yQf!_ =Iح />,'׭\!` s#4H!MUUZx&di1XMx)ӌ_!$I=Zx;$Ibz׵/?I%-`m۶6|J` *` '1jJp$IsjB R&Ϝ$:.@k Rpp($ cZ$ MkkJ dMmf-cZ:>9tM!'/HsKإ_'O' 4,z*(wN2HJW%R$ϤJB&P}Go:'?\ [$!km׶cbA%ŖkJ ,!"0Lc@Cy c 61jB`7"4HJ !Mc [I H,c,[0-cf!`4lќ9޷ :!6`۶Ҝ,[xVU# 0 : '"R [`<NɑChR* 9 j۶uPCPVUh0IqP|"a Ikj"'QL[É'0(ٱp/-cWU\X 2!0kJېe@lkJ dQ5Mc,[&&AŒ=Mc))1) ")Ijk%-|s>((9sє :z/CI *3R- H$Us\UU$!Z#я [Z.$')\<}PB%B ,c`\WU%!"oMc,[ #!a@ AmcMcUU]&9/N*:&j2y!Hk$"i4|k#|s-.'$ɖQs U0l۶rs7 ]ױt +u 1  :Խr> @h4sVv>@'s7߶m۳sx#N$i0|s '*(|)@K$1Z99J$A sJ$ H !mkMcUUU^$![m5cb' "8mcF@IOdhԽ#))* A}ۖP|X$P3A Ac'x +Đ3akX$DInc( GR-Q|Z*j'hɟ'q9' G912,[hXp$4I$Lmk-[#"IA cb#"H H$cb'$ &)Mc9@G|$I%))+E -K4sb# C5ضd$XNk*BNƎk'%K39z6DɔQ-cjxX6aFnMcR!$lclR!UW>Mc [_$"Mc,[#$LMc,[*s`М9Js3Qc' BO ׵GhҌ\>~PC{5Z5Řum2$vr'uU6V>Iф_8#mkь ?H2-6֭JjjIϗ@ - -6_U1m IbuӌU3~. IbuӌU6$+$1ZjjC9umi2wbےtU_/ۍsU7~$IW4OiDsW8I2֒@Z*I1)_Gϑc"1( @)$`[حq#Oi/ %]-ӌ#N6Cӌ'"r5 `.A$Iakk(12 cj ?Oյ*c׽ < l붶p4 I󌳄 I&Öӌ/ 3& s`_s:Rk '?'m׭*kz4OO8>М =hn. Bxidh--cRI bZꪪ $.) cE@AɑT'ӵ0  4Ir% lB;Aӌ_(߶ _- ,Gno5-_3ɽ>FTsJ)5NiJ$ y'J~#HMcIB&#`.'n:.FZRMchzZ" ímcjJB I$s9iB-'VmR}`&۶m9mc'B`A}Ib9' 6 rے-c`XVU"!kMc [ 요6Mc,[.|.>P/0JB '<z!toCRl pP|$$ qps̫U P|/ ,,`Ҝe`.sb&&qCФ-cUUVX"Iڂ mc,cZ?#0$/|)6=N 񁰜%7 ; ٴ붱 [`x]"N9JB'!,&~jJj_Gk Tb-3ȝm۲kH$I 0|nca0@0|Mcj*-t:ZA,[\VWWI-c,cm I6kJ H$kJ .ROMc SJ:*/чt:1'+,)ZqswWZX۶ts!Nss#-y~|s (*"1|1@`LygPb#*5Ϗ?{B'k:&>< `U|T\^Z$" D0|t#"H$I |t'$M$A"Qs/o9s& IMh [p) 'wSmk-[ꪪ* 5 [b (tJ=Rp &$ .kJ( n&`<ΓgϜ&J)zSO|Ks% YkN#"$ь|& :d˒)# I/#8qiJ_Gn ҜRp(/'.PR+_$pɹ'0R^`% IsJ% Ϋ k-c7'J&JFu{Kr%@m%A|k #"A$H|t$ Mɔ#1|t'/4X9>C'@qp ~-QLc` % I'0RUUxmd :Lc [^X"aMc [UU'8׏Mc [#0@&kB`1ϟS %-۰]t#!!A t$!ж[t%"(#03R@@``D91حo#"AH$$"d0 25q#! H$25q&#0#ќDz7۶Uur)yImS z/6ma5 %m@ӌ># m؂ӌ'"8X c`p؜IxS حs/ S c'^'/>6R~(,NN'GXќJ`$IMc)2 # `kJJ*#1J%7INr @G,[p\w}$"!C2 cb#!d@$ cb$b( $IMc,[#3r$ImkRJ**%M&X#쯜J+#7l UU^X'?@!s*B%ӌ=K䰔ZBX6-Dy10Z* D وu붕p|)Lgr.>Lc{&, >|į&BI& <гrRp@A Mc,[ #mkjBJ *w;Q: '+ WLsUU^X؆e閠|sUUUV[vbss c!tk*.h`/(cIϤMc\Zr',cM[ 0kJ@ kJvlMc,[ /@'Lcb @<+cODk~%mts$" "0|ncA0 0ss]])#X1>It{Jcs&R.#(:j81`|Zxh`#! $0|s$ $I%2|t&,,%0|A@FI`!z+c br$h&mMc [ #!0Acb# ؂a0lcb(B5Ns [?$Qc IL)ֵ 9-8P|d%wmBp$"!2 &ь|%"IMuь|=phJ`<ɑP1ќHB %*DBkR#͔@$Hmc,[ (P#A$I.R%'yĘ#ZX-&:,ej5O1 *Nkx#|k6#!|t' "8|9@AΓ!#"@#!H5q#!H0 ӌ%#=P& kCk+4sRP$!m0|s+&!qR 1|t_ 'aQ|s($%0|B`KO)h=/ xFh'Nİf)>'EZTT'L =( MU%`A 1- 5&H"!(5ӌM% 9r$+kpJIXFk/ %!mH(5q(!;?#@PVXb)jOEnWXb%mM ӌ^ M&ӌ_u $m5k p#4@$ZzhGUӔ [vw%"mm6cb#"$Icb#!$A"cb'(Bkg!@` !$Qb FEM]|rW$&0|@JpU#mֱqUUU"F>4ⲌP|/O<}$O:8. :ݸ SP\$lYMc,[&$"d2Lcb$"I$&cb' I()mc!@>Rz (o ӽb R )IŎh)d`1QMcUVXp%G%k-c& A&Mc9`AtIb9ާ A&[J& #$ kJb**}:?: '2i}Ҕp|#"IA ь|#" $H ь|'lGڦҌq_5'k9>Z^/6mCmcUW^X[ufLMc,c&Mc,c4M'HMc,[>!$I=Mc)D& 5y>qN[`6?~dHJ ; ٫۶sXW]$qk5@|k $ i|s? *#9Rɇ6-ۈk\1zBOxE!' <q,[X#mMc [>&mC MkJj**M'f! 3_hKrsUw(䶉*!1|R @IIIlA))+6۱۳s& tv$[Q|s?&Kh%ДJ>:Ӕ|TT^X'.0@"沌1bC Tϝ'Q,c`$$s{I:#! Imk S#!$$Ȑcb&'0"nkZ*J&p܏?QC>&GFt{R-{.̛m 2t,斘r"ok-P. s Z mJs !.0P摌J`=ձ [B`X !`mMcR# IbMc,[ #"H$Acb%!M:mmcMcUUW(#%hФj>&CO`!t*ks%M$m0|s#!$C$ |t(~>mö0|s(`) :>JncjC1 [$!۶nKbcb$hiMc,[ #!dcb'$a"8McF@J$Hr! I$I&ԽOI$I$Խq*aoے^` )UU^z$ /򌏨$!˰uk׶t#" It%!itTUUU&  & cXIQR& OI$iy1{Z9$0k U<@МmcpU>I:ӄ!* >&KIR)1-cV9I"IMc_U0O:mPmc*UU.P/>r1J*GC99bpx>)RMcxzzz$t $Mc [% q[]uMc-c' zvhkMcBOT9----&XҌ$!ڢڤ5q#! I&ӌ$`$AQXb)!|(> ++$9Ҍ*$IZlҌ!& #'Zp>M Z-?},[`\W]i"$jMc [&2=R%pj:1q{bxhO.q۴ Nk cY]T^#R#lR nkjR$ !94--cZ@%j.0&HMR 7_%X&~g3&B)?M޸Ҍ$3$I3XZ#O#ÍP+(#=3Lc`P=N)֭j.' ͬ5_+tOs{z%`Nss^$h4s-$3j2cєR*}ױ]]u&$ 9Zp.>OsZ^-EI|t k-A|>,c. $ Z0-[W]_\!@#E)mkR*J#$s$p%j >OIeae)7 >0b۶Ҝ [j^U*`9o1>j<Dk)sP vIts$H ts$ ts##ۦqRj*J9МJ)y% nk [$!m;li cb#"HI$cb#!dB0$ cb&h#,16z300|_^\r'"0#%0|9@0J zU{Kcs$!ڵkn0|s$!-ҵm|t'#0.0|iR@@BGkI:N=#`,,Mc@:ϓϜ -W۶mЖAԽPumۺӽz((TA1XTR' TUUUV%$m (T*B%0r$ c`ܥCOPќZ A h TR%4Mc [$$ Mc,c]% mMc con7ɐ?te1 '$' cU$H$ cU% Iϓ$ZU&IT cU%LI2,c{*!?s{+PÕ~9IyTRKk>҃̿ [PTWV$ &$ Lc,c"DA#1-c,c#X&z珔g)>>&@c">ќ : |)f!@ cWVXr Բ cZ xȊt cZ% y'mkZ/6NLƧB-''72HԺҌ"b[utq|$ "Eh3 $"$E3::/c2'L c޶7CA>S$Ibӌ飯,d5_,#`$mМ "I='1R(+IGn?rks%":0mP|!l]ӌ#Q$Q"*:J;CN ׭Rz7@qXu,ӌm۶mӌb* {1s| / vpHfp [\~ ĶmMc,c#"`!Mc,[ $4A϶Mc,[&ضk [*'}IB '06oX3ZjZ(AN|TZ-G !u۶XUU#A@IP|&@# ALc`)!):C<'I6 <IBêҜ [ x=QZX$ɀ!Lc,c2!mkRJ*&чs>1>(rpsWW^|͆ts?$5s(:p >OdДiJ^ 9y$,s B5 qOMcW\XZ*C &kJX&ܶMc,[#!d Hcb&"$ Mc)@!qQ1 3h&mf1)B,IWUk# ɐn `0|s$!kץv|t&۠ Q|kJ**< 029KiGLrkhj$H$IMcZ$!Cvm۵cb, McN[,#`۴MMc U#8$Q1' FD Tmcb$4 I|s$ɖhضm0|s&!0|kJJJJ Jf sk)"Rp<!>Bj-[jzZ&IIMc [&꿶smk-[',Mm.Mc5UU+es".Jx'%~ǰ6LmԽzoT*TN$-[p# 1|nk % j]|s 'Bp<1>&J]ќ-[rP'z  I-[%_)S| 4NJ/$sR& ekn\kMcUUU("=h$pj:&EI !H-=':TUUU$!m6-3>ꪪ)ҚOTb/.NmϤTW+sӽ  d@-QΜz '`S [x#$1ZxCB")?XKm$Q|99sEE [br#v Mc-[ [% ;-c,c .4'o!j>C9F [CbPX MkRK*8yG&!#!l nk [ 2$$,c,[##*)mc(B@BIC1B 2I@-U*cbGO@ 2Lcik8#Hݶo-cUU7O$I.cUU8I@$I1-c(UUExIl1 #1hӌ+`*j&+k9Q,[TT\\H $kJ"m[k [?1LdMD&&:($Q*gI?Ф"iL$o1W 0i$N9U I$N1U"hI1>?1 ɒ'탨W#Hs "VZ3* )".4tmkjp>ɑP ֭*k- %wwk# cW?ӌ(!0ھ1ӄ zzລ6ӄt J-|dϑhZ6' 3 إ0|x"Ͻ&ZnԌ _Jɉ&М1t 5dC>}׭Rjz.>)jحb8rč􌳄$DH42Kۮ6l42! $ $!k@ ďRJ,$$y'QMkX` 'y}s,[$ Mc [  +uMc,[*".'Lc%)$f1Z H|IVǓn غ7ϟۼp|#"$I #"I$ь|$ !Ƥ,ҌUU% 0,c&@mڲ,[X^_#1I)Mc [ Zu2-c,c!lIvq-c,[z@Mc,[꭪ #,Ag:j))1 2,66|ӔiJz/AOHR-;!#I3sx*۴qQncl着5)HMG/R၏+䛄IkJW%BIMcjJ '!n;akMcUUU'$ >Mc1X%ʍN1.' Lyr,[( `+M%$RR'$m$Q|Z_&$0Z*U&$HJU*z 'O?Q :&.HzT+-crPX\$"H0 cb#"H$Hcb#! @$I0cb' I*!mc:@EOIP2D1 Ds#! I$|t#!  0|t(᣾0|k@AZ!s :B>ϓyA A[-c\TVWH$I$kJ0kJ$"L$dBMcLc' .,mcE@EIh$)#) ;۷}5P|-۶m%.=' kp .tOncWj*EOI9 Dh͟Ӕ [w}#!$CHcb* )ꟶoMc [) 9 - [b-)Ώ>z JIx6ƥ1 G˚UU&ڴO 657#!$AȐt$++3򌠠$!nX53zz'"4Z&Z@`CIAI׵N9I$IvM]: lKإ6 @mۖvҌUU4`vͲV}n:qZ 1VlHPMc]WVx(۶Q!kR**JHMdɑLМ)&' Hے [w#!$ $2cb !Mc1@@MDh& Aq [TvU]kѦk [?%DM1g): s+r:1|Jx! k1%h܉Q%^- 79hOL.((24#=4b``Ckќ cbpPX$!X+6-c c#P4R$ cZ((.!-c9@A1HR#@u6WW"X%#=b/R9D&\$Lc)5 OXOf!Z%=ɟ$ c:A۶,c^U0#&dB>E)8:iWݑZXX)@n{bUU)@nO{bUU*"9ܳ9{90: ֭R+OmU (#`S{먀@$??,[ڗ<;ֵs^؆{?Qt?ӌWӌ>0gZ@pX4/)Ӎڗ c !" @|Hpӌ|! ²A4IԌ5u%'?1nc*~;2t$ Aӌ0t @`$42 $ 4)k@8C'OZz޷->Ib׭O-/C$Musz(cdMcVXb(۶M5Mc` =N$z'?ɓ QМ$! B0b۶Ҝ,[^U:C>\O/1,j6g탨$!mnҵь|$"a0L$ь|#!D$I0ь|'"ɒ$@Ҍkbj1ט/Z㣍#$I`Icb#$iMc,[*#A dKMc,[ % Mc,[% H9[OisR#"H$]VWW#"@$ь|#"A&ь|,C3=Z&ZАFZS-cjzZ$$mЦmmk [#"H $cb$"I$ 0cb&cKV@*k,c?(pΙ?&& E`۴{ьX'yҶ I3U(R$I/# @c3$SA&u3& [mВS_B|OյhJ//Ej\TVW#" $5q#"$I 5q#"$I5q'i(!51|JhZ)) ,sp1.5D#j1fnkے [{ߒ:$rI :$%O#'?)1JX  mcJ "$M5Lc)`ȃ$0#.&5xyޮ (DIEh;Js 8XӲ-I\}(y#S^X/`&vT kܾDV>Z\T#"$ ncjb#+B#$ cZ"("4 c1@@>)؆m[&ӌzP"#=R@I?q`BIrb8'1iJ=!MҜ,c^UW'hm֮k [B Mc,[#8B#0mk97FyA [XXXXkvMkKJd!ɐMkkJB#0#, c9``6Gyo! H$3~&a3'sw۾Tz*?~N\ֵ*k'7'X34{I9'Ҍ{%_zӶn6Jz0O ʶR7- o5Q| 耒(p`ӌm;ӌ?.=kUgR>?nZpisolkj?'OhR-Bd̠Kح. )DHFRۺbӌt :PRc>rC|$F!=IeaX۶ [XU9h1|,[XUU m m1YMc,c!2mErkRJ *6M6A /'6ۋp& $I0k `'$Z\B$I 2Zz <I9b5 + TpMcWW^\$"$LB2cb#"H $cb$B7œ%Mc,[&-i?Imk [&?$mkA@>4nk론$4I!Yj|s #!I |t#!B$A2|t&"&I|iJ@6yG1IJZ495``pbVW7|bxWUUaܸ cZ- 1C-cb:$̿6 ()P-[XX#" I$cb$!ҡ[mcMc~uU(`xd>&K~Qs``V#P'JBx${J:X$4r˜ mkZ ' ߆\kMcUՕ'p81>&L9{t|jsR0RdKPt/0Imsp0喸#`qmk^ '8$pJ`91f& 8Ak䰜): ANMcJDH$AMc [:-lcR'4i:!mc1@CϓyԽD)))*EjP|#"Hь|$!mv-.ь|' MgҌUJMOќR6& Db$-c\VWU# 'Mc [%!4M Ccb#"AI cb(,-B%mke@Hb*(N>3[>% IT#!$H$t"&b;# @1@tt'("43Lc@pBIlJs-$h&hӌ#" I5q#" I 5q$ "-dD 5UU'%JTRb6 Ѷm۴Aӽm)* 6By' ;$.HU+>$0U;IrDϤV*U<I2In <dC6֭Rjj=qZVz*=~$9!`J׭ DIaaXےץ-%Bx|'ֵlk=ȏ׭VTTT$!vۺ5q'NSwt5j*E~gN [& ?ȿZ#! Incjb%/OLcZ!BhD>&6!!Ϥv `i cz*;M$ICѤ [4 A)HШ۶,cxVU#&As*:rj,9 /*:ࢁ4a,c,[6M@Mc,c",²,c$)@4oZppr cb n؆uMkkJ"(" c9@@@@2{"Pctq|!vl' S| IPew3Ҍ>:6 c'' *1tB oԄ5I Ҹ mԄ#!O>t._m ls{   A󌳄UM ӄ:$P&Rp>I*׭b%h4Nӌ m󔓄j= @q|'<h9N$IN􌒄42[lú42.Z; tj1|OQJ덉0ۺ k [$ t?,cR$Lc [U$AeMcR&`9#O1>j5faTb`A} 4Z޵ AGAZے4ls-@t`WUU%AtRb@2cJJ⣉%#mc c'm ,kR*`&$pZ-%Pz 8'7@1*B -r2?rJ4 rŒs~\*65Qncx&$X$|iJx0>IHJ^ 6y=2:*0QbWWV\m+MkkJ$IMkkJ@  cb}.B#,OE2Qqc-cXXxx$![fmѶcb&\4"nk [**jCNIL1' 1Hgos [1ݶMc-UUU0OmMcUU..Ę/NJ (F#>O)x"&;w|JWUk$" & |t#!$C|t)ѦWwQsߟ+xΟQ'& 5Osh, rPR($ɭ>4N.Jx #喻t.jB^0 /'BW&& =?Ϝ!2i$In4/" Ѥ#m+'$H3n 7HHK$ŝE3򌪺:&@&p3 cИ$AkR׭P|$ Dd,@5ӌ#$ 9ӌ# aؐ5q&*,Z`*k F|!׭ G9~o7׭1|hno8 ` `Js$KDHӌU $Iimӌ#"$@$!mm &"0#0Z````E#B\  3Ҍ$ ")"3&h&X%+k8Ķ$!k׶]ӌ:',4X'b`ؼBI$3Ksy pwq :W $$7$Фh)%&Mk <Nɐ%9 = >l߶ץ/W\~/14 c*?j+Ҕ [`PX\vaMc [$!cMc,[:)|=OF.:+ +R/,[WW^! (5mkIB*`.$/Bjz/.$ :r w$o9U@ c9 W!)N. cg)@K2! k!?q3W!0MU#7!TtJ89֭bo-,󌳄bbr&)Pس-٤Tp>1 [@`:ϟ<){!rN9ӌ ^>Zb?N ׵*k%<ӌTWUUa242 غ542 M$(s* B3l>NZ-'Vl)Ln$I,mc` $Z^0$I Zz 1;C:Kkx/i!М-[^\XpMkmMcJ6ۚ [Z C [Z*( 5ӒmQMc)BJ E |Oќc 5Oۼؒs$"I„0||{UUU#"A$$|t& lZe[0|s::%Mz1JB&>1vx)B֠;u$1%`D1-<I ȶ-czU8 >-[^UU,mms [X b#016{9:RRX<~ħ HJ׭7IIk:J?ok^!Z24"0|IB`@4FФ c\\xrMǤiH cZꪨ4%bb ]'m cb*!" c'!@:PМ&) #`H0IMc,['*"0mc @D)R$DЄMmk,[$" a0cb#" H cb#t$$Acb.jm_3mk [ʊJJ S1" .xirs$!Xlֶ|t$" I2I$|t(&",|9@` 4rA 59} [``pXa,c [[mn,[ [ !uk,c S說( ZSmג,[)ANR** ;_?֖QsU0@00`U ɏ91lcx% wcހ)B͓;HJ' FF;Ҝ [pP'X3#m.-[UU(I,:mϤMc`/UU(喛#`ok:x (C.Z I!=GkєIaq@-lSr|$6h[ $M%,HM-"TAXn4p$mQT?~JNϑX+k--1?Vu{W2./UsW-I{W%$w${U+b"'NSZ7+J4hq ,ȝݺVӌ&!)50|JJJJ9 ` `ks$fhmӌ#!$@ 5q$"I$ 05q#"II5q&#0#0,c````B91#"I$@ 3#!$ 3&#<#43Kkp=Fy,& .8,c@pDOɔֵ k= Epح\VUU$I+-_!=P| II\v.7p@4ӌ?NDTZ-5|,cTVUUmsMc [. `@#'Lc`8;}P9-)!3G!r DO11 8YAۖ,[^U=qB"31*J7Iob*\+'DNfz*7#R*`{'3{~ss ,>)Z@6)jsM;ӌ.iҦm41t# 󌳄^j``B#9P&ӌhZ?m+O 6ӌsU$N9IlӌUUAEK' ^ Ar-֮mӌ $ > [X=IbGRz- ;&kٶ0|ηR>>}$b޶ 8WAے샽9@_|^"$ ӌncB"ɔ cbፇ&kZUWV\$M 1,[)` | cx" ht$o$ 2Ody$B <ȏ1|-cWVV\(#{rD.>.&v6ԽBj>]ҌRX\T Ä!HSr|@iڳ{ök:*r5 hp&ySZj> L׭Js-AK􌲌 &Pӌ2`!$NR{ [U}t !"!,c&@5*k%OmT 'n$#@SKk;{$֥{_Hss 4EKIӌ[Bӌ_5}OZ6'-9vwK&aJ42t $42$< 6-s @4yOKk $'ZڪCOX)F c%8pTCn]&ӌy"ӌmc`@2LgTjs -/%.숐` 􌲄Naӌ34Z$$Yr)~ .~$95f1 1IzP]ќRzU/'1R^$DBC)&:91ќsp``# ml|t#"@$I|t#! $0|t&"& |J@4Iy(B1ȍsMcUUVT JOm]-c,[- ,c,[$A֭-c,["-Vumc [.* ~ʏ?) &2MƲk ۉss `vts"k1v;|s?:!Lx :&>7*|$oF7$I~ oF)z8Ip-79ۖZ_U*=ܳ9ϜF(::Ip-[^X'xR'xϟ1>'/9Oh0jp[isJGN-c [5VhlcR$dH$lcR#8%s&28!Ak3sBbRR b$" ssXX#|sUU$&HI|sUU(m-"Q|mc**JDOɔ: $ kC4Mc [nlkJ&E dHYkJ A-*mk [?۴yq =GOΤ>4vw}4MhSr|[5ۊe󔠰H#-򌊊&M$1-[`rJ ;1Mi $ӌ!C2H242 @$42(! [@DɑI k)-++#T @􌲄#"I I5q'隮)51|JJJJ7 LɑյKk(4I?Z^($ kz(IZU($JW`kr*:/;)Ϝ$!ڮ[53#!$@$3*,TsHHJ3131+cKc!E ح˃ #0$Aӌ#!$A5q#"I$$5q#" $A5q#"`Mqzʪ#s*':}ďc+cֵ/ biӌQt@N5ќ1b ( :)4,[x^^ UqFnMcb!0kJ&0Mc1`:ɝBќ1 0m$ @qB/|=)&'8& ?O)W/$+گ&Pjo-[Xp&#)",Mc9@@@@/*kۊ-uSr|!O:>Z* RS$I.us*j?I?I*c-)%N5s!6? cjz? 1 k j(q󌲄PU^l941t*Rmӌ_w)&|3Zpض'@9vRץ{ð5 `;ᚏ˃چmZVӌbkm42[:lӌj=P#Ӕks1*)V8􌳄ZXPX$4E 􌲄c"(@'jJ@@`4_DzO{k,psR\AI0,[Z-mv [Z#BHJ,cf)@7ɑg!-oڿQs'$ F?0| B^&PiJ^-&4I$М1* #Q) 2`Uq,cV^ZXnkJc;`,c,[֐`?-c,[ YЖn-c,c hR..:2yњsZZxh lɸ |s! ts*%vɿa1|s]"`%#&ќ1:>15kZ^^9P|bUUUΆA0B cZ%ݖv]m cb"#-" c @>٘90МBFIќ 6ۿs [$![K۬cb#"H$cb#"AH$cb$![.hfMc c;k>|1>6&Bȍs#Xa$i|sz*(9,I1|s+2ضo| UUU)b&21 :>-$QJ`PR1z#@w! I,[1ikLcR)X&z΄%!>&&5U.&nc#%' tkկ#|kU$@|kU(L"00|1@D9JP$BЍ}mk,c{z$@k'Mc [\Ad,c [zw *,LcD@HHJ=h$nIXAьB򌪪"mf3򌺻. $a#Z`6tyŊJ޷*6<,[~)*k$bzMy S c;I ֒Ӕks >q (C64(B`zz I$IԽQ.IIԽP9x@յ샌j'$@$3Z'0I$3 c)Z$IA2KkhկEs)*.xUӌ#"I@5q#"I $5q$"aL5q#z\rӌ(35-[p4tIֵ c-= kҌAXV öl42 " sp (1|篜:$o뷰=Mk,[!$I 9,c1p=t d)' =GkrOEPts rx):>&&&9k\S$I|kXRs90@@% 1)nxb,*km;1 '򌪪m[Ҍ: "=`Z`ؼ?9E+{#vwmݶ􌲌#|̓m󌃵UU'T{.5M^lw/| Y3m􌲄"*,҃&Z`p?I*׭ c- 8$͒􌲌*"6n011|*`*MAGk$TZ/:-xV Ӵm01| `!$ $ӌZ .:IZ@x+/!`u˃!~$b׭ķrRz!oIB ӽ k*(?4m(ԑ [V^\\`H [Z Ͱmkڵ [Z*"stSmk [5?11'<s$IL(B^>I$b<IN֖tU91hmKҔk_2пdN&185McXXxx @HLc,cM9,c,[6uMc,cﯪ/ H-mk ["S#1B:Mc! `71kbb$|B^ ,f?IR ҔHJ;$y)@iJ^>I83IRj;ᚪ cXxrs#M-cZ$-B cZ #O cZ'6¢ NkjJJ** 1v?P!# 6?qZ`%r$1&$v䏔):U%Hk)B $mmkR)& GFjkMcEMl49'' $dIH0|s$!mn݂|t#"H@$|t%!$;e1|s?'x?ʳМ :>&BC:Mc\TT%3  IO S 1I0mcUU5I'DnRx5$/H)נIOd[1% &Ȇj4Iqmc$vrM|s$!Mnkۢ|t#$H)(|sz'#%X&q(B@$_@1Lc`3I1UrIIBU0w$p9W B#<I|!׭js? !ٵkҌXL8˻1J<ްQ|V6rqU w􌒄 *-%Cӌ_ZUPhJ<,A3jh6}IR c_ =I k>Ia֭s@jH9ũM$4H]I0|s'B#4C350|RppA$pΜ9$PstU5HRsUCD5+c%5<Ib ؒU ?ֵ+U=׭>Ns%7,tz56N~$O -$!-ڵm#!A`H5q$H,mc @=t$I8b^/;:`˶q ")ӌ0]Z42 =Z`:ϓ܉Z (N_'@@Mdyg11-<kpW}0(ss` KE|s5MdN'B&'///ۓk H&{["0pg1b8m8i~խZ`'~ A:R~=Oɔֵb- : 2 C42@l@bӌe#61$ [`X7ϟȏK?Q,[VV#`ckMc,[ $"$$dcb# ` cb'@dAkMc:O! %4J'RJ_ %0|ZX& $I|IJ&BnR Qs-"p?ܰ)B>&DeӔMc\\TT(D>K֎kMcU_]0k [)` 0,c UU(Ώ{r.&& IIq*-u(7<ӌ/U& VM+910m۷q $l۶ lf[ӌCN$O+k77+M$I4 kW*I$ I4KsU($ 4KkU+$I4+kU%ϓ8'R :$p4V҄U!u3:Iӌwo#"(R@@=):'Bz"I$sIBU$#8s'|95 Q~\xzv`atk$nfRK0|s?//AMDLdյR77770ۻؕ$4M"3*o#xv4?/MDMdSZ&&&&/3؊v~@ӌN\!4HԌ " q@2k j7'NRz޷-A)hX{٤M$Iӌ 42 a@&Z`>NI k׽-=͟ӌr\WU`QR#qp`_SOQmc\$wMc\!Q}"P|k8OHB 4I9sG)``k3!~-HqQ9&B&"P)3p"B2ގH c (i1Z-@ki |]IIQ|  $ 0(t @&,>|4Z-<I ׭ k= 7hoX &I􌑄Z*=kb &JI׭ ժ6lK-8XӌpUU"QtJ 9 lIX*c --wMtj􌒄!Dӌ%9S5Ԍ:OMd+k77'62v\9ӌ]ؖlӌ",.R``@@4y1spCBhLo&!'mf!W+ p$QE)W IIb=)2sxxhj$ t$I0|tWW#mǐ 0|s#$)'A0|s$" h|)B@)yRJFIr ;ќR 3I"$IM[UU2 mK-cUU.q hӶP-cUU4кIl0 [&xDLМ) ?˯ʏԌs#"@$H$|t#"@ |t' gvTG1|s8IDN2R9ʏsZt%(,!-kRJ'vmdNkZ)c%$'-c(`ΟQD>>' 7 @x|~~$IdHMc [#!A`cb#"@ cb' ~~enk-cߟȍʽ17y$rJx'$$JU&0|iJ~%$I|IB(&i:|9zFyPf!#=Քmc-[۶[3 kJ$" &Lcb#"$I$cb( !kIBJB'1e13$d+UU4 U8IIRs^3'IRU0yzgyQ9AȯQZ#B"$ $Mc [@]v-c,cIET@Mc,cߟȭʯ1d& MIԽQ-vo ӌ)[QӌuCe42 I 242 EQӌ?NODs5555i"􌲌ﮯi+4iӌU6MӌU k(Ue:ȯǜМkB:x$H䷭ӌTTTT "ӌ$JD ӌ%"-#5Z@```GIrSsR3I2 Hs U60dR&(J:qrRA&Ass$j`|s)xGhtR66:ȏvvvT!*0,lꪪR*v*:zgx*c44<<5ʏȏܗӌTTTTXe42`"0Z``<?LcW8N"{ @{ Q ӌQ| ]mӌU<O\1Kk= =#ϟrE5ֶӌ64ö42$H |j*L&`1| r*٤Inj 'mkRU! ;or1 INq ,?IL 0OK>17҄g9C'M c`ض-<Z`qZcp\V :]-cZú &3aZ'|( j2wIA )'tZz.*9`Xks m9n􌲌vbCH ӌ! $I#, Mc`11{ dS|z  y| UU(Ҵ I$4r|*8O [-/7&A5XQ| .4$$ [ ӌ%!IGIӌ:HH2Z&&BT# uФӌ# mӌ%")"R@@@K'yQOFIҖƶ1-[W5I"FnMc_U5 @$K-cUU.-P):j=?hGR!6H;|k#I|s#! H$@|t'-ZuT1|to/??'yGN֤IB=1 [#0A]?Mc,['m>McZ'm$McZ%$I'McZ_%J?<&=`&nc^$ |c$!mv|t&1 .G1|s*?%˯<ʃ1&= n$ќF! &'ɟ W uO Q*2IB 1Z-4Ik7Ashhhh$QdMc [#" cb#!$IIcb(mmZk-c9OR'B -@OI*|TW4IHDsU.IimМ|U6I@{|6IbL2ќIBjGlRcjj%ځ6)Mc [%mMc,[#! A Hcb#"A$@$cb&.",Mc1@@@@A94s#! 0|s#S|sz$!mѤڶ|s+2$IrQkJ着DyIМHJ ,Hv֯k,c#%!XMc,[ @Z4t,c,[!m`mk [???؍q9 IIԽq6/OKOOd$ &ӌ1Cmӌd242 HȐ42!v_=NOֵs5555& 􌲌aH 42H)42 euזӌ"Oy2 c--))8ȯnӌ//#!  H5q!#8% c;]L kڥ0|nc#${)00<Oӽ!i~|s(I>0|IJ^(b%|TTT^"dLƶ#TUUU;R;ة33Ҍ!xp2Kk48ȏӌTTTT$42!#4B#8Z``@)Q{,crZZ%`߭]Lk-[z*&j"`۴mMc-UU'qO-c(-U"V:I2R//NDM S/'j"`M[/ y$Ҕs Wsk $ $,Mc` 9M cx=7y8 c4कN-IBR4_4۶ь WU(Ӳ-ٶux`h* ҄^p52={' c`ЖDɔ;ҜZp\0' ce9'I s1- 6ə A- 5V X"(IԌZx#fi7. 5)6@ӌR%XbEӌ $IҶI ӌc$& F? c^1dTKk '%-&q$"/y'& U*!Pn5k xxxiB,,,'8 ()r'mc\  AӌMcU $,[Uʃ<˟8Z$&> )}䷥KsV'@I+kժ'I'sU%$ɟ$1IB**@ɑGQs&m#rkMcwvt#"$A$cb# @C lMc [#$Mc [J **7P Ҝ1 dHH|knk61|sUUU#Jn|sU!U0ts*˭ȯ)=Hȯr,[TT\\b Mc [寪 [.H$I-c [Z*I-cR/iD-c Sꀪ!k&X尜 .>7kGkX!M|k$,li|k#g00|sߪ+z.pRJ66>J1i-[XZ51$C21R9$s-cUUU2'ms,cU*hb.16>Drmchhhh$!ZimcMcYQ]$!k[mۦcb#!@$$cb%GrZ#mk-c?DyI2 ) n}1|s$"`$!&|t#!$AB|t#"I |t%"(",0|I@@@`D9ҰBX) .kRj@u%fm mk-c' މMkMcUUU$" I$mcMcUU\)#5#M ќC  ȐMc,["Oan۶mc,[&# S-__(I>9c z[QJ*#>`VحN--U#HԌX$a4 5%u14p*`$l P$R9I2jJx-EO969`B$I9~׭ @I8Ď'RBGO!鶑H􌳄*X9)iӌڀ4Iӌ 0*A{x$VHsi!}$ cW9$I| czկ 8IJs9/c֭Zj*f'Zr0c'I3 cW :O k 7Ib:&Z?N4W2Ib@ũU/IB@V/ɳ9XB'usCK\VV7IUUU5$IwUUU5fcvo6yGRR*(k,ct#@vMc [# @-Mc ['nk,[*>*9М: 'ߒIJU$?R_'$I"ќRU,iJU2?4МJ%05p`>撌,[\\\\kJI$I$kJ$$IkJX `Mc,[!Z`f!>>Ea<2 [xX2$ Z_1$ iRU0O$m (JU*1IQ :5*BMcZZXX%"ЊMcR@%!ز-Ӎcb#!$" Bcb%P.P尜EO$rI:p$ I$:U% I$9U% I$9U&&$.Cɑ9 #`IH|s $"I„D|t#"I |t#"H$H$|t'#4B#8|HJ`?O$`rmkr h4ɓ$,=Ѥ:_5$O 5n@IB+dIH/9'3'3,* AA{FksRR#"I@$|t#"HI$|t#"A$ $|t%8"1|sNJɟ'əМ1,$$,c+I$ќA_*I$!/$m-oEJDHIb IIԽq2KO :􌒄~ ۶m`'tW!i?kU $I$ [U#$ $UZ*7OyhJ//)"#5(Q$)42ۺÖӌ5 -Yv-/`;yϑb)--)&09?4r^?|W#$'-[_;|$͕4Z6%6IĶ c2I>S:ќR 2!)B`b=( 4k\\%cm۶|s| 妁!tmc*J!-Qf1?Ŧ/׭X.VU3(􌲌hj&`&+k4斥ӌ\\\\$ "42R"%P%ҔR4EL= [XX\\LHkJ$ 0 ,c,[ "8`'OE!j><!EҜ [crX\ @!kJ $Mc,c a&Lc(`=} f1 >t붱Jx&\}:?HJ '(]5d!C"ӌj9#,,c.`"xJ^ )q*ӽ 6'IU`ά'=Z]O <J^(]1|jʪ4!xcts'%$m"# HI󌳄!L'Z9'I,czW/3ɓ?%Z<)5۵׭p:Pӄ`W$@$I󌳄+! "(Ik@; T k+ --9_ HN҄ P%X%ҔZА0SJEZ&DJHӌ I$C2ӌjjj!`&`&kk7pj涭[mӌ)v"Iӌ 53􌲌jjjj0yyJ*ʏs [&m+ Mc [_&- hNMc []$ qmcZ***BNNDSHJ-%%%8TkUU/ԶIkUU,ֶcrkU$m1|k_!@<3%/:0;]qRm;kJ@mێkJ M-c,[;-c,[ P R,М:4!k````}I5RtsU=ss#AjskꈊR@䱔90a-[xxxx#̼JMc,[,#" $I cb#!2 Icb$@@$:@Hr|x|x,0@/|,[], 0 Ib0|McUU, Iߺ/|McUU/&)|):Jjj>OI k$dId|k$" &IB|t$!]ۮkb|t$!mui t|t&#<|IJE9RMchhhh%"hMcZ% tHAMcZ&!$ncMc+UU.?vmێk [03&c2&og!:GlU\s$!E۶n|t#!B&|t#"I I|t( !qRJJ7ɐ ќHJ%VHTImkR LMc [nILc [".LcE@@@tItH #II„ԽP#/a?Zx5I$& H֭ cU1I$mksU4I@˃U2ITvW+I2iLu{@j4yG:39)&ئI'5RV`?R^!F'I2Z_7~$ILյ cWy\Q,k '4OIB cU7I$w H*cժ1I향{h:ϔl*pIdIsk #,"s @2!r)CJka<xx5s\\TTH$@ 0|nc!*.!0|JJHH4iR<ȯحӌTTTT͆M42ؒn242`&X&+kؘ/Xvd& H242 X%`&R3X)'МJB^@mkIB/\ 0 H!MciJ K?NDlF1' =0Z ӶmwkI:  Ș'/|&)6>N\Vќ17 8£,cXVUU `B0Mc,c.>jj8  ӌ_"M[@єM-prIB EحΤ5X$9DӌD@$ @42Cѥm4ӌ*1gc=+k>+n]?Z^4dM'O+c^-7I k8,'׭^#4"Lkp`@0ٚV닣$ C4R4R"Zuӌ>\OKk--5= $As(6$C2 ӌP%@%ҔR7}QܖI$I$4R@  ӌjjjj!h'h&ls0XR,Ŗӌ$H$042!$Bӌ,yyJB. (($s:W# Mc:U! $Mc:U# @V$mc(B*UDM41'''%%&q0|s %!dۤ0|s%!$m0|s & lٶ0|s!@"%P%q9={ S& mk-cUU$=Mc,[!]V$mc [Z!%K'mc [U!P.@<ưC.k```` Цmfoss $I$1|mc2$I01|mc"B.B.<|IJ81-cxxxx%! MۢmmcMctV\W# ֦cb$ H"m2Mc,[&B"<#<H!Elrmkhh$mmMc [$"dB$I2cb&C$Mc-[(~)mkf!BB3 I+cc p)BU$jJUI$pjJUI$JJUB1 :: A)2,[hhhh( cJ@+mcRغ& !tB'BMcZ #"I$I$cb$ MM2cb&X%`q94'pv$*:\#I$ќJBU%$PRU&n$|RU+.p)z*7 1Mc$ItHMc [%uȋMc [$I$4mMc [%2)"!Mc@@@dIIӽM!!II$P닯H1t٥ΤM^Mtp􌲌vI'm! ӌDȄӌ!B꛺0|JJʪAy?5ΉZ)9I5Mض 8 'ӌ |U3X{mvD\ϕ|ֵ*k----1kwvbq4 􌲄*!".ncJ@H@7 IstIItk!"*0|jJHHȈ()b>HH$5sTTTT  @ss".!"1sg)@@2yg싡332:ȯ۶#$$Aӌ#}#ӌz#`&X$Z* us!vo/ӌ}_$br  c=ʏ۲,[\VV'N۰U.-[/U(w$հb~ z@1y$RZx{i:`.R_* >;iJU Kg[Bտ6ɛ'Pi{.z5 'Mcx^W p$I$Mk,cXVUU@I kJ@$kJ $IkJIIkJ$A$kJX&j',c(BXܞ:IDɑ׵-?5`&j'X\\^  :ӌ`8:ӌMcz$u䳌LcxW`mWN,c^խ"2IGp*c /IR М [z~ ]ۺ 'Z /a)Cv!='ӌWWVTI @42 $$󌴌 42I 42 $42HH420ӌQ|x$,cxWHI筯Lc55% $I$1o^*7I ˃. 29U.%2к~$~WU"s;ӌxWUU A42I$@42H42I 42 ӌMc`Lk) ':Uӌp`I$H$4R@4R4R4R4R  ӌjjjjHH/Lc(9$R.jo*Hܷ_{LcW 57n&!H$I$ӌ 4R(ӌq@@@@HLc552aAnA$A$ӌ 4R4R@4RI$I$4R 11ӌk```` 1ϤLk- 4 h׭y۔|U$|Uӌ0|U ӌQ|I<ӌrU ӌ>-ӌ|@@@`ɐ I ,c%%I$I$c X֭ݶZWIZU(IAZUIZUIBZU I @ZUIZUI ZUI Z*:1C)B4)"{|Z^$$McZU"'McRU"$McRU$@$McRU% I#$MciJU# H$'McHJU"l$,c(BzU (J%5%  rx`:$9#9ӔMcxxxx$"IH$cb$" $$cb$"I$ $cb$"II$cb$"@$$cb$. Mc [@@@@"ɐ ɐ McZ%%%%#P11,c(Bp``` 1Z 9I$}@sМh^j/I$ U/I$ .I$m u/I$ /I$ <.I$  u.I$m ?]/I$ -I$@𤑔W#I$r/(+6IɑrX\wW7#h&h&qmc\\\\$"I$Acbv(5,[Zhh McZ55$"I$  cb$"I$I cb$"I H cb$"H$$cb$"A I cb%..-McR````Iɐ(J IILCI# mМ_1I4/I0In[U1In}.InW.IN]u+I 0s p. r샪) I$H$Ϥr;k````$" $I$cb$"HI$cb$"I$Acb$"II$cb$" $I$cb$"H$H$cb$$#Mc [`P5R5,[(Bpppp1b A$I$ԽqAFI$I$ԽqUGT $I$ԽqQE@  Խoc@1A)C$ӌ$I42@A$42HH$42(vk42mڶӌm۴ӌmӶӌI$ӌ#ӌQ|@ ʍܯLc%777- -'=(j's?Uӌ\\\\  Qt$Qt@QtIH QtmX5ts@@$ӌ5]5r|@@@ ʭn,c7777(!B!Bu- :ӄTTTTInmt{$AQt Iӄ@42  ӌs` ϤLc %%3)C1CNF#|ʃ<1|sVTTTIA0|ncH  0|nc sMc@ I۴KR%%%5I$IrϤc^_o7995sxxxx @ 0|nc I0|nc 3skh*$Y;sks'smcHJܜr//:  ֭'&/'1#x'z'u\\\\$"I@$5q$"I$H$5q$"I$H$5q$" $H$5q$"I$$5q#"Ȓ 􌒄@˽ʍ܎Mc7'77I$iY.o/W!RyМP\#0 0+"1P#5ӌ,c``pp*Iols))) :">&mcXX\\#aÆ6Mc ["@8:Mc(Bz~,c(B~W5h-IJU-:I$eOHJ-8kms^0ndkPmcU) }MOmc"U!I^? Nk*U" q$sMc*UU#h I.mc U"IB?kU"|,cxzI. [UUWx s,cZ $H$Lc [A kJ kJ۶ @5Mc [z@::,c(BzHɝn(B55%9ɐ c׭%,bM?uk^86}䒄,cxW ~-LcW*/&PKk19!$Pmc ^3и~$QMczWU%XCe˶kZx~jiJ %/Iun7?*}r>UӌV^\\@(-ӌ` Mkӌs &nf`H 42$-ӌ``&ӌ,c^M'I$,cx^-ILkխ* 0I@L +I2:XS| x2!Bpo *'}B?Uӌx^^^I $42IA 42H42 I 42IH 42 A42‚8ӌQ|@ OLc'76'aUOiu Iv$ӌsU ӌsӌQ|ӌP42@6ӌjjj_zpOLcI Ϥ5=!3IDɑֵϤ^6>6P9&pxX\H$I$4R4R"((ӌq@@@@ȩLk%%1AAn!q$H$ӌV$ӌ ӌ@4RI$I$4R00ӌk````1 Lk- *It z{{ ) I$II3sU!@sU_mIsU_ ?mnmkUU* $mn,cUNMcU6OomkjUWɐ)0Qlk%% i$IϤ |:&sp) I"ImpkU) I"IMkU) I"I Ik(U) I"I IkU) I"I IokU) I"I IokU) I"I IkU%+oR*W8)jj $খ1|sVV 0@|k m$|k!mf|k!6 ږ$|k  $|k mts ($I$0|mc "-")smk@@@@ ϤR%%%%8Iz_7IҶms(^+IB IsU,IB Is U,IB Is"U,IB IsU,IB Is U*IB IsU*IB IsU*IB InsU*IB$iN[iJ%5  U+x'x's\\\\1|mc 1|mc!I$I|s$Oo6a|sU# IH$Q|mk$"I$I|t$ۊ"k6|sHjjHHįjJ7777 I$IRrk.R^x 'c iJU ?HJU  HJU I.(JUI/NHJUIbv HMRU I1b* ɟrM C;;h`8$Dc0s0mcpp``$"I$I$cb$"IHcb$"I$I$cb$" $I$cb$"I$A$cb$Mc [@@@@$  McZ%%%%$11Mc(B````!R  = iiui{y/#ж͟$|UU.#жI$|UU0#`$|UU."ВO$|UU/#I$|UU."P|UU0#`I$|UU0#I$|UU. D?|UU$?LoZ>8ɑɑ񤏔5"h&h&QMc\\\\$"I $cb!k7X9McR~|xxO ,cZ555$" I cb$"H$ $cb$"H$A cb$"I$Hcb$" A$cb#0McHJ````) (J %IDIsϜО>"P >#>xXX*"Ҕuu*"d8ҔUu)"PyҌfUU*"VҌ)"yҌUu("$$ҌUUU'#>b"> cpXXX!!N @$@$0SS\`;hk````$"I$A$cb$"I$H cb$"@$H$cb$"I I cb$"H$ cb!i Mc,[!@&mڶMc,[11,[B````NJR I$I$ԽqQDI$ $ԽqVqI$H$Խq4 Խ/p.9ɐ/?(?UӌVV\\@ 42 A42A42H$H$42tH Qt IQt $Qt@I$Qth mӌhK.j&qLc'ɕ|u?+j>>uӌ\\XxH Qt @QtAQtI$$Qth5 󌳄I$I ӌ Ȃ.0Q|@@ȋۼn,c777%')B1 uM  ?ǪӌTTXX -󌳄@I$QtmMvӄ $42 ӌQ|@@ ۴Lc%%%759@Hm%rsVVVT@$0|ncI$ $0|ncúmsk̿J䎜R777II1@7؃995sxxxx  $0|nc@H 1|mchsk kkkz>HOIJrΤ /-8 -">U\\\\$"@ I$5q$!A&I$5q#$A0$IX?0|~!X?ӌk_"$$ӌLk~UHɝ1lk% $I$Խ0? II$ԽlS1I$g_`j.I"'/T@=nМMcz^Z4ɕ{6X>qiJx^8:N$kHJ^U% H]N(JU ߿ZoZ-=4i{x;$$mc^U+"ĹsMcxWuU%=)Mc,[I$I$Mc [*"p}mk,[  $kJI$I$kJ 6$I$mk,c)UUU"iƍmk,c(UUU}Mc-U}9NZWx/I.RWp ,cR+@Һ>,[(J^:Ns(B_-M<.(JU nФZ >1b{{-~.,cV+/yT@Qs/2!hHPMcW.JO$0|Mc^UU p$I$mk,cXUUUII$kJ  I kJ ,[iJXx`-ɑ|ORhR*+/bX5vxТ',cxW~\ɑ_Lk5 )9P4Uӌ{ppp9ӌmkx(:M$r,cxW LܷmNLcU 2I@˃/2 0@ 1K~$ӌ~WU P#,ӌsp`#~?s/$@5蠢I$I$ӌH$H$42II 42H H$42HA42@@42 $H5ӌkxp$M/,c54ɟInw߭%/$c h Uw!HsUmksUWжn['.sU`PsW@c?lkUHLcו5 I$I ?6ɐ ɔϜ'.k'sW $$kU $$kU`j;kUOLk5($3zжOlkUВI$lkUm'kUW ImmkU m$ӌkU cc'Lc``zW wquLk ; Th(bz*ƶ$vUU'@N$5UU'64 U& n4U&Am5Ҕ^*%~H I4-_ %I&aMQk  ' OIoj4@==McpxxxڦM&Mc,[$I$Mc,[$I$Mc,[@$I$Mc,[$I$Mc,[M$Mc,[6iҦMc,[&j&,[HJ.)B!BӔ{ H$H$|sTTTT$$0|nc A 0|nc H0|nc $tsI@0|ncI$A0|ncII$0|nc((sMc@@@@  Z%%%%; !is``)`$O$sMcWUUv$Mc,[h$I$Mc,[`lj8Mc,[&i6Mc,[aێMc,[($I$Mc,[8IMc,[!m$I$Mc S *.-mcZjjjH(B%%%%4 '+ *x'x's\\\\1|mc1|mc!ӡ|s @ { l" @$I$Q|mk$"@ H$|t$]6-|sjjHHďR79Iɑ8d?'-c^)$ $${McU-%o|McU0#-)@<|mcU.# d$0mcU1#m+ n$0mcU0#)Hu<0mcU/`m;PMcU L1iJ/755  rx8m̑kppp`$" $I$cb$"A$I$cb$"I$I$cb$"H$I$cb$"AI cb$"(" Mc [@@@@"p) McZ #0-Mc(B````!hR  5@@pCCAB%"H4I$0|s$"I$I |t$" $A$|t$"I$A$|t$"I$I$|t$" H$|t#"I$A |t$"A H$|t$mkۢ0|sJJNZ:ɑɑќn5"h#?QMc\\\\$"H$I cb&9-mcZzzzh,[Z=7#!A IMc [ D$HMc,[$" Icb$" $I$cb$"$Icb"0@5,c(B````)R  ,IDIs9">uXXXX$"I$ь|$"I$Iь|$"I${$"A$ $ь|$"H$ ь|$" Iь|!؃=9+cXXXX!! ) I$I$~H9 62 [z\$ Im$McHJU# Il$-cHJU#Il$McHJU$ Im$McHJU# Id$,cHJU0Im$,[(JU A$$,[(BU5$ [(B``ZUJ 1hR I$I$ԽqPTDPI$I$ԽqWDI$I$ԽqQEQQH$I$ԽqeQ0Id><-r&h>ӌ^^\X$H42  42I A 42I$H$42tIAQtA$$QtI$QtA Qt Qt`&5Lk\XXxМ #-9C5ӌxxxrH Qt Qt HQt$AQti$ 󌳄I Hӌ ,,s@@@ Ф,c%%%.Lɐ u-'#UӌV^\\ 󌴄 QtIIӄH$H42pB"BӌʭHLc3ɔ n+';4*{'x'sV\\\@@0|nc  0|nc@@$0|ncrh&/R _ϑKA~7994sxxxxII$0|nc@$$0|ncڢ-:skxA @$kkHJ)B7I$I$Τ>K)jϤ *؆9?5Q|~#@X?mk_" $ӌLc~U:IqLk~U/P$ۯmk_UIث LkU I]kk rn5?I$I$Խ02I$IϤx:x׭p&#ioXO)IxɛQ{zrh x{MiJW6I0p)k 89G@mk^>.R '*p! /sxz|p("N$k7kMcWW^\%"H$M$cb  $$Mc [kJkJkJkJkJ kJ$@&iMc,[ `Ҭ5sR/_ XݼR %v1ZWzO.B-5I @pJs2 4qmc ^*/tNOiJ>5I1 -5'mc^W,X'O$s,c^UU`ljLc,[HkJIIkJ kJkJ&H,cZp6 R5_#9wmk`z^Il$ 0lk%+ `ړ)694Lc`p`}ۏLc^5 '{ 9IIhM% 3('z_U!hҶ][ӌ v< ӌߪ &󌳄j񲌮s\Xp% 4 %=&` 4ӌW^x!?$ ӌ*!I$dI$I$4R$󌴌h*6ӌLcx'Ip,cxV--ɟ?eSj 'I/N7^^,msVO(Pro?5UW'X= $5*U(@ƶU' ~"m0I4OW )I2֐$I4 Wo2k*  I$21I$IB@ֵn^_(SKsW(IS+kU'OS*kU&I@KkULk%<Iۙv`׭U(IRUMw)I$@U-W&I$c 4-uU%I$OImsW( Iv @lkU ɕ -* 69=׭xxxxI$I$4R4RI$I$4R4R$42I$I$ӌ*)")ӌ0|@@@Hp p1Lc%%IdIqox599,[xxxxkJ@kJ kJIH$kJH kJI $kJ $kJ [(J/!B!BӔ{M$H$|sVVVV 0|ncIH0|nc$0|ncHtsH$0|nc@H0|ncH$A$0|nc,sMc`@``I nZ%%%4 xkbbb`@$kJHkJ@ kJAkJ kJkJ$kJ@@kJ@kJ((-cR@@ HJ%%%%3ɐn*'qs\\\\I$I$1|mc 1|mc I$I${ l# i$M4Q|mk# I4IQ|mk$"H$I$|t$,͛!|sjhjJHH܏J77776o.h&r0|,c\\\\@$$kJ MvMc,[$"I$A$cb$"A$ cb$"I I$cb$" $I cb#,Mc [@@@@ J(J5%%%@ΤzkC8vhhkp```$ 'Mc [$]$Mc,[#0 ۖ$Mc,[$n$Mc [$ Mچ$Mc [$$IMc [@$) IMMc [ "00Mc(B````!ФHJ 7aABBCB$"$Hd$" $I$|t$"HA$|t$"I$ $|t$"I I|t$"@$I$|t$" $A$|t$"I$I |t$"I$I0|sxpZ8ɑɑќM4#>h&QMc\\\\$"@I$cb!  Mc [@@@@I,[Z? IömMc,[$!iiZ4cb$" $A$cb$"I I$cb$" $@$cb#P5P5Mc(Jppppb0Z  ,IIԛ9">>uXXXX$"H$H$ь|$"I$Iь|$"A$I ь|$" $I$ь|$" I$ь|$" $I$ь|!P5P5p cppppr{ ) A$I$ԽPCs+c\IҶk;lϤZU"IB$ ФZU*IҶ-@ZUIR-HZU(m bUIbۭ ZU Iۿ/AnZU ۶ cU kQJkI$I$ԽqUBI$I$ԽqFPUI I$ԽqQ@I I$ԽqAEII$X3#>9ӌxxppIH$42@ 42$I$42 ۈ;42tI$H Qt@$IQt$I Qt $@QtQtP1쳄,cpp``&qaФls!,ZscaaI$I$Qt QtAQtHAQt 42tAI ӌ 0k@```ɖvɐ1Lk%%-*ɐ ɐ &'/&&'Uӌ\\\\֢n󌳄$ QtM۶MѶ42t I42-6RHH䐔,c4ɑn:-r"?&s\\\\$H$0|ncI 0|nc$H 0|ncj%X=sRXX n}q}6994sxxxxI$I 0|ncI$I0|nc`sk\C`skꀀȍМB77?? I> 3!α$s|jz`$OnOLc|U+ IvmLkU%I]3{*7I$w)Nխ5I~HMw6;m8c:$NМmk &%%018IDֵϤ6:"=#?׭xX\^$ۦ􌳄@&h&mk>\@IIM+>19i(k^+P/:kQMc~WU! lMcRX! hMcRW~$Ov\;Z %+&mA{mc^^x$"I$I$mcMcU_W\$!I4hMc [I$I$kJ kJI$I$kJkJA$Mc,[ &6,cJx$,[BzP$I(B_U (ɟ}ohJ5 2Iw@P_5 hqmcW2$QMc^UU"X&i&nk-c\UUUj&؃9 [(Jp- /ks){'p>{McVV\\ $A kJ$$kJA kJA$H$kJI$@$kJkJI$I kJP ,[iJp`'wr;pHJ- Խ0=!  Խp`''IR ^,6Is`nեh2?{*6 (i%"I$HҤ$"I$A$5q$" H$5q$"I I5q%R#̀(is`~P紣:Nk) ,&hAU.%"iM$"A I$5q $M5󌒄pXC'LcxVh.,c^-5IX)@@j{/ 5Ċ'ֵx^W`#"+ӌ0|xx|u>:/ O I$H$5Q$@ӌ$Iӌ$$Iӌ jpKQLc  R~~:H9pp+жoUUU*PIuUU+PUUU)$5UkjzɟLk&;h+׭cbp#$I$ӌ$`?ӌ&py$4ӌU&Xn4U'Qv?T*U& R94Lc`x_s ))<#؃=>׭xxxx#R5ӌ``!NLӌ*4R$4RI I$42A42 2,ӌ0|@@@@ɐ ɐ ,c%IdIQop6=>,[xxxx kJA kJA kJHkJ$  kJI $kJA$A$kJ`hLkB.AÃH$M$|sVVVVII0|ncI$0|nctsIts@ۢI$ss*ts1|mc,0s,c@```Tɔ NR- 7zmёk``pp-$I$Mc [  lcRI@$lcR$HlcRm]-c,[I$IMc [$H b,[ $A$lcR @ lcR -,[iJ````  B 59k3x'Qs\\TV tsI$I$ss I$I0|mc" I$A$Q|mk! Q|nk غ-|k Z(^(skBBB ȍ܈nJ77774I ФpTty,#'|,c\\\\@$ kJkJ$!IR$M4Mc [$"I$$cb$"I Icb$"HHcb$"!McZ@@@HxtϤ(J%%%%I4i]~1ͩ$ [z^\`IiJUUIBUI(BU`IN(BU`I.IJUЖI' RUUжI{RUU:IiJ_UUn)VhR 8ABAAAI&"L$N0|tTT$"I$H$|t$"I$I$|t$"I$I$|t$"A$H|t$"I$I|t$"H$@$|t#"@ $Q|s$"H$I$|tp'h&sR7ɑɑm%%5#p'&QMc\\\\#"AA kR%#1#1Mc [````|gd,[Z$" $I$cb$"I$I$cb$"I$I$cb$"I$Icb$" $Icb"11,c(B```` QZ 0II9"&>uXXXX$"I$ $ь|$"IHь|$"H$H$ь|$"A$ ь|$"II$ь|$"I$@$ь|#P5P5q cppppqs)) )IA$03C>I۱rX|w3IҶIsW1INn Is"U1ɿI msU3/DkU0II3PmcU-w $PmcU+@$PMcU, (O6|Rz۹1(B I$I$ӽP=I$I$ԽqQH$A$ԽqUI$I$ԽqTQAh4@ j1 X 42I$ 42I A$42M$h$42t  QtHQt $Qt QtA  QtȀ ӌk``1 ,k)-%+a!Bv M$H$ӌVVTTA$QtQtA$QtQt@ӌ15,c``ppi Lk- *  Ϥ/.56%Uӌ\\\\&6󌳄I$Qtimӄ$A 42 42{.j&P,c5IDIdn9/h&>Ӕs\\\X $A 0|ncI 0|nc 0|nc95sRXxxx М{)7>>4sxxxx 0|ncH$I0|ncss6"ssȍȍܯjJ7777I 4 =Iֵ{^. 6IRioU7yFҔ6$$U5#I$UU."IU_UU%"$I4$"(.,Q@@@@MI1lk555  ΎM}:ɐB׵& 2#p"'t$u\\^V$"I I5qhh&LkX:ɐ - 0#p'z'|Mc\\VV$"I$Hcb$"I$I$cb$20IMc,[! #:P{R_(! / [*"O7sMcW^Xx$"I$cb kJ kJ @$2Mc [z@Ҹ:,[Bz}$,c(BW$ (B_-/I$ .HJ 4IShp{2x3hbmqmc~W.]?O$PMcWUUh$I$Mk,[AkJIcMc,[P1,[(Bpp``%.hR ->؏0Mc\\XxH$I$kJ  kJ$kJIkJ@ H$kJkJ$@kJ (,cR` Ι(J%55% 06<I$IϤ_%7@@׭Ҕ x4XO?O$x^WUkXp(! U -5'B'UUW^X$" $H$5q$"I$ 5q$"I$A5q$!M&i5q s">ӌsXx`+)d4j{ +=*"/:9UV~|x"5sx*:M$LkXWILkյ*6ɗhN5,:t$x^Wh&m&ӄhZZZK7C􌲄ﯯ hӌ|x![uҔ 5!HOI$H$5Q4R  42HHİLcRc:9#>ӌxxxx4R@4R4R5&ӌLc`pXX<IIks?:>#'׭pxX\ 4RI$I4R I@4R$"H$H$5q$" I$5q"99Lcxxxx)IDI3{=---<#>&׭XXXX!,􌲄```` ɖ )bӄ I$4R!I$N$5QA I42H$H$42,,ӌ|@@@@ɐ I ,c%%+I\ɑ1rn3>>McXX\\A kJ$@kJII$kJIHkJI@ kJAkJ$  kJh pnj{(B/ aaӔH$H$|sVWWWH 0|ncI$A ss I$I0|nc $A 0|ncsk tsI$H$0|nc .,0s [````99NR 2O0C?4qmcppppI @ kJh(Z$Mc,[I$IkJI$IkJ kJI$I$kJMc,[ꪪI Mc [ꪪmۦm Mc [1[0,[(B````ɐ鐮ϤB 1I|zxض'. [W `M cUUжI$sZU@$sZU P$sZUm$sZU"mm$|ZU ($sRU ɝ۰R755-1 9pww{x&'/?s,c\\\TA$I kJ $H kJ Őn)nMc,[$"H$I cb$"@$ $cb$"I$I$cb$))McZ@@@@MI (J%%%%A$I$/:2I$IrN2N I$m;R?^ I$/RUI$IB1n?N U!I-Ϥ/(]*I$-/ʬW6I$+ /? U2I$m `k*z$Z 7!ABBIAI&"Lt$0|tXT$"I$$|t$" $|t$"I$I$|t$"I I$|t$"I$I|t$"HI |t$" $I$|t$"H$ $|t"j&j&sZ6ɑɑ\ќ-5X&QR^#?McRU" o?MciJ_ d' [(B U"$$McHJU# I$$,c(BU! id$McHJU!0m$MciJUU!@$,cHJU @C:O$ c(B`zU I QR 0II7">>TXXXX$"A$I$ь|$"I$I ь|$"II$ь|$"A$I$ь|$"I$H ь|$"I$I$ь|"P9= cpxXX rs )   Խ/O=9CH0Qzz|x-"h''sMcVVV%"@&i$kMcUUU&!m4m$mcMc UUU -h$Mc,[Mc,[$$kJ A kJ  ,[R@@ɐI(J m۶)Խ0!I$I$ԽqTI$A$ԽqDBEA I$ԽqdH$I$Խols`/a!C M&k6ӌI 42@H$42M$MR$42tI$I42tI$I42tmӭm `42t$I1ӌrxӌQ|UȀ6ӌt@ HLc55*1v --$L$s'5ӌVV^\Qt@@Qt QtHH Qth6h:󌳄~~~P5%,cppXX!1`s' ItϜ<874$j&>U\\\X)$􌒄Iڔ$ӌV$A$􌒄**UHt?ӌrU>ӌ|_`&j$LcXX\W#IDIoa2h>؃=sXXxxAH 0|ncH I$0|ncA0|ncP5P5sRppppKk) 59#>sxxxxH$A 0|nc $0|nc @$0|nc C0c skȍȍܰiJ7777I$I$懶8B)jϜ +"'5^^%"E$I& ۰mX&Ԍ$m)ֵ5q$"I$I$5q$"A$H 5q$"--Q|@@@@II1lk5%A$I$ro9AV`'"Hm$$"I$I$5q `&`&ӌLkXXXX5OI\Vs."{2?>|McV^^\$"A$I$cb$"I $cb$"I$A$cb#@McZ`6b .R%(P! k_~|& < ;kMcUW~\I$L$kJ Mc,[J?IHJU+N$ HJU  ФZ 9Ndi`3$qMc~W*X'|McxWUU$@$Lc,[HI kJ$ $kJ $kJ@kJ  ,cJ`` y˸-(J %-RM0Mcpp` $kJ@$kJ@ @kJHIkJ Mc,[5,[R`@[',[(B_,:N,cBzW5ɐP`(J =I$I7=)ThШ83x^*_?$T\V  4qP `sx`O~?ok!-7,&hAU.$"H$#$"5@yӌ]~$ӌ_W C$Os` Eomk )V;4sjz`$IќLk^W 5sks*79% 5X'֭x^WU@$I 5Qk&k6Qt ӌ h؆mӌ| # ӌ0|^x"T %u!H󔲌 I$M&5Q  -ӌs` H܉ϤLc5%II$r~H2P xxzy4R@4R ӌ@`K䑌Lc\Ԗ;C׭-5% 1h"'|$\\VW!I$I5Q$! $)$5q$"I$A$5q$"I I5q$m6n5q9#&ӌLkXXXX8IDɕ̃===?9">&׭\\\\$#,20􌳄``bb#IAӄ$"I$I$5q H$I$4R@ $42 $A42 -ӌs@``ɖ I Lc%5ɕɑ~x\~1>j"'QMc\\\\$ kJH@kJHkJ$A$kJH kJIAkJI @ Mc [xH(B-iבmcp Il'sRW Im$sRU $$sRU Im$sRU I$sRU Il$sRU $$sRUI$$sRU,1l$sR``^U W1qZ2B#59McxxxxA A$kJ mvmѶMc,[! mӎkJ$"IIcb M$@kJI$IkJ!I$IkJ!I$I&kJ!I$IbkJ #11,[(B````oHJ  <:hҪTQpX+IF|xU' O I(I" rU(I샩*'I q>TXXXX#"A$A$ь|$"A$I$ь|$"H$I ь|$"AI$ь|$"IA$ь|$! $I$ь|!X%`&p cXXX\!-) I$A$Խ/L4 ɐ1px^X|."'xsMcTT\\$"I I$cb!I i6kJPMc [H HkJHI kJA$HkJ,,cR@@ x(B%Խ0I$I$ԽqEeI$I$ԽqLQI$A$ԽqQAPP ӽ0``~p39@ɔP./&̳?5ӌVV\\A 42@$H 42@4RI$ $42-ZR$ӌ@h<>ӌMc^'I,cW-$l[nmkUU$mmlkUUIqlk+ID.s"v^\XXIӌ @@ӌת$ b;'􌒄^ H?ӌs_ic$,cU`I,c^W5i-n +%xɛ䓵p +t' c^I/LcWU $oO,cU $oۯLcU* ؖ$mۯLcUP$nڏLkUU*" I~nmC0Lk=gnxs4==sxxxx@ $0|nc@0|ncA$ 0|ncP5P=sRxxxxQ{ (Xɝ$nc^x 攛sMc/H$sk  H0|nc+:݊!sk ȍȍܯjJ7777NB4)B)BϜ# v$ӌ\!0mm$ӌ*!H$L$5Q!B5Kӌ" IH$5q#"@ 5q!((0|@@@@IILk%%%%I$IRxHx9#NB5ֵbrpx# H$E$$"A$ 5q"`&؃9LkXXXx'II$.˨(0#9Cc0mc\xx`$"I cb$"I$cb$" $I$cb$"H $cb"  McRxx Og~^?Z %& |Mc_^zx @и>,[iJz$ [(B~,m HP{ ^/?0MczW!/LB.>77. aapsbbbbH8qBMc,[H$kJ A$kJ@A$kJ kJI @kJ$I kJ ,cZ@@ ˭ȍ.HJ%555/vaBkzjj mҤkMc,[ kJ5McRz@H?-cB_}$ZAW5P$o(J_U IkHJU- As*.I$IϤi{99p@М-O?\WUUHH$Sr|$H 򌪪@ mjj|&5ьkXp1)KI\U -5-"}'=UW^\x!00􌳄```@A$|i4m4| @5kx`K/|,c i$Mr+2|CZ9'pAj׭ .?~$vxVWUH$I$4R4RI$I$42tI 42t 4Rӌ` # ӌ0|^x"Si %!iX-QbP#>t䲌Lc`XVI0 1lk I$A$Τ@4iKќɇ#$K$ӌ E$I$4R  ,ӌk`ȝM,c7% <)aho#=uӌ -ڶ$4R$! (5q$P2 ۆak$ӄ I$ӌj`"&j&LkX\<ɑɑ׭,==7?4 p"'r"'\\\\! 􌲄@@)!!$"I$I$5q kh۴ӌ@H42 $@42 0ӌLc```ɐ i,c 6I1Z|t/p'r2'|,c\\\\H$A$kJI $kJI IkJHA kJH A$kJHI$kJ ("!Mc [jjj H܏HJ555 qi;m h(!'?@ќksUIKkU yn۶ IϤKkU"Sm @ФKkU"IҶmФ+kUIФ+kUIb&`+kUIbQ cU(IB+k1njx3؃=؃=,[xxxxI$kJ Mc,[ꪪI$I$kJ!1$I$kJ!жI$Mc,[ mI$Mc,[!@Mc,[!@IMc,[ nI Mc,[wP59,[B`ppp-ə|ɕb))))8#>|xXX\$"I$I$|t" I$I&Q|mk$"$ $|t"#$M$0|s*WW"I$1|sUU&I$qs UU/"|UU,иl:kΟR'%%61C)b/nlko$ئ=mkRxXXMc [ IkJkJ ِA Mc,[$"I $cb$"$I$cb% .-McR```` ɐQ(B-- -I$ $0NM:1C @00||~~*"̣'sMcVVVT$"I$I$cb$"$I$cb$"I$I$cb$"IH$cb$"I$Icb$"H$I$cb# McR`@ HJ 519+"z'xQ|TTTT$"II|t$" $I |t$"I I$|t$"H$ $|t$"I$ $|t$"H$I |t$"H$I$|t$"$I$|t"`>>tZXXXXiiQ-+! I$H$Խq@TI I$Խ/?I$I$Խ0U I$I$ԽPN<0I$$/̕@$廊WI$I(UI$IoU3I$ p_U5I%@QOWU,I$Mk *IDIRМ>q[6Ш'4Kc^W@O$PbU@IO cUжI/ cUжI/ cUжI.ZUTI c_UH}ۏ cW-ii  $I$Խ8Irp\X\z3#p'j'0|Mc\\\\$" $H$cb A  kJMc [AI$kJ@kJ@$@kJ. *Mc [jj˭ʍįiJ555Խ==  $I$ԽqRuPEI$I Խq@QI$A$ԽqTETPI I$ԽPC 2ID6->ӌ^^\\@ A42I $42H@42 I(1ӌq`$Lc`^W H{,cW m0r샩I0U<I$I$Խ0eԽ/0iII䒽Ϝ^\^0?5xxxp 8:ӌkz$$Lc^U'ILcW HnLkU+(Iblkի %I$ylt,/%I$~5z fR-I$/7@U](IUM+IBr$iU-*+IM I4Mu*/I Iu.* muO, O6U|`z MׯLk-35UoӔtpppb$H0|ncI $0|nc@$H$0|nc99sRXXXX1!)) I$ 0u|B?1lkZPnqįkUZ0smk-$C0$8skȍȍܰiJ7777I 爐3)B1CФ#H$H$ӌI$I$4RI$I$4R#Ii4R# Im$5q m[&Ԍ10|`@``IItLk%%%%2IDɑϤ75=#/>C'׭XX\^  $I$4R!4 ڶ4R!̀ `ӌkp` o~lk  %.t@kxx& Sc֎kMcUWVT" I$ $Mc [$"I$A$cb$ۦa86Mc [# @X?MciJ~k${(B?WUɟ$.RzxtoHJU /77/R %m?k,c_UU46Mc [Hx{HJ. aaPsBBBCI$H$Mc,[ $ $kJI$IkJI$ kJH$@$kJA&Mc [_>McR_`]',[B_ HΤQHJ-2)Kl|zx#i>kHB^u$,[B_$INB_U INBU-9I$YOb 9I ipsz2 5C:)J x~0IR9BviМ% 2C?~$֭X^WUI@ 򌪪H$򌪺H$򌪪I 򌫪 P `sp`I}?k)/&hAu.!?,ӌ`M0q|`i&,ch^$ɟ,c^W-*{2+k 6whМ +:T{\^/!JLU- %&M'{?4ӌ^^\|4R@4R 6ӌӌ4R4Rhӌ`Z՘&qlkX\kjzIL$ 0Lk-   / $ $Խ/Cp@5ɔTI66')?'Uӌ^\\\ I425P%ӌ,c`pxXIKk)#95#>׭bpxX4R@ӌ H$H$4RM ӌA$42& ,ӌr`xKoLc֖76ɑdI$?w-&$5{V_$I.ӌkU$ Js +$$I􌒄H󌴌H$42I$425%,c`ppX-lk 4ɐ9Cq~zx|)x$|$s,c\TVV $A kJ H kJ HkJ kJI A kJ$$kJ ,,cR@@ȻI(B%%%%8ə1BUm 4's^W*m'sU((m璌s U'dqtU' ~M|U& IH I1|U(I2 IФQ|U(Ib QU&I? 0s,IDIP1s8>j&McxXX\(Mc,[I$ kJ$kJ@$ $kJI$IkJ ImMc,[ Ib؆Mc,[$"I$I$cb$"I$I$cb"=؃=Mc(JXXXX:ɕI4{==)-8"&s2'|\\\\#"I$$|t $A6|k! m$|k!H$L$|s  $0|ncA1|mc$"I$@$|t 11s,c@``` R%% 4!aa{Hbbb 99mcRxxxxMc [AkJ$$kJ A)IMc,[#"A$Icb$"I I$cb" ,McHJ````)(J I$ $/L{> HH0Qz~x~+"zx'sMcTTTT$" $I$cb$"$I$cb$"H$ $cb$"I$I cb#"I@$kR$" $I$cb$ McZ@@ NФHJ%%%57 ɐm /"/?p撌|TTT\$"@$I$|t$" $I$|t$"I$ $|t$"H A$|t$"I$A|t$" $I|t$"I$|t$"I$ |t!؃99|ZXXXX!! I A$ӽϤ ¼_ m VWI$IBNU"I$w 1(~U/I1 U5_N IsW:)HFqnkU4#M'Q-cU6"<-cUU1"VOs-cUU)9#1k(JxzzzZHs]h|_I $1^œ|w2I$IR m\ 7I$ nj5I@MUv6Ir IoW6-m/_41`HӔs{R/775ɑ\IQ\~Z6#h&`&QMc\\XX$"A$I$cb$ 0C##Mc [I$I$kJH@$kJI$IkJA$I$kJ ILc [ꪪJpo(B ӽ055%I$I$ԽqTI$IԽqTAI$I$ԽqE0AI$I$Խp@dPIdI$~`2j>9ӌXxxpA$$42I  42I1ӌq` 5j$ӌ,cx^IP1Lk% I $Ϝ1I$;th,I](I?Sp(` i0{ .Jѥc',cphmLkWU*I@kk*2I$I^ u] 4IܝHW19$mn*/ R'uzU1"-4t`jj bwФLc .T[5׭z{y"l[5UUUh$mӌUUU mIӌ ЦI$ӌ$I$ӌ( ӌ|`@@1Lk3z|rbccA 0|ncIA 0|nc@ 0|nc؃=X%sRXXXX!!a--ӽ|\X>ImT/x.Ҷm|bW y@OmcxI1-ncWz ȋ˫iJ7777 I$~rq31C)BМ#z`9mk7X.ɑ|zr.` 5|McV^\x$A>McRz hc'McHJ~UOجsIJ_U-t$HJU -Iw7/hJ.ORHPs z0h[PMcW.6$0Mc~UU d',cRUH?,[IJ_xK{HJ,tABOs@Bjhiи>McZV V?MciJ_@#',[(BU m$,[B_I.(BWU/$mۯHJWU hMϤ(BU IHJU+)PPQjs  I$Qlkxx H]nHJU-4I$IoZ-6IH{z8 @6Q-c_7$1 cWU-"oϓ$s c_UU` cjR`{n)J %*C tn -&>TWWT\$@$򌪪 򌪪 H򌪺 I 򌪪3҄ꪪt5kXp-)T 7' mҸ:50|x 5|$LcxV NܷmLkU5I@A };&h9ڶ ^2"O?_WU  iӌsx`&gv^;3{5u% i4I$I$ӌ ӌ(1󌓄z H>ӌk^Ik$LcU I%ӌkU$Lk^UHLkW% III$I$Խ/I$I$ԽqUDUI$I ԽP\3ɐ H/'*/Uӌ\\\Wh)Z ӌ@`"K䑌,cXܖ)II$Tmi-I{^ 0攗ӌ| -Àaӌ 4RA$ 424R,5ӌmc` nLc5%- 0I4M,I$ I4-^&ɟ$~h3̃WwIҏkU`I$kUȨO$mc Wn$ӌkW0I.ӌkU`&Lp,cXܖ5rM61),[xx!4$ncRUWIn$,[IJU m$,[HJU -$,[iJU ,cJU$,cRU۔,cR*U L6,[(Jz  B 8!i4pacc H$L$|sTVWWI0|ncAA0|ncA A$0|nc @$ssH$I$tsUUUi;$|sUUU!؎'|sUUU!(/1sR``./R 5/OQMcX\\\ [%X2)Mc,[zjA$kJ kJI A$kJ $I$kJ dMc,[#"@$H kR$"I$H$cb$"I$I$cb"`&`&,c(JXXX7ɐ% 0"p{B?|\TVV#@t,&tkX ɐts ts A$0|ncA$$0|nc0|nc!1I|s! .1sZ``` R 8 xkb```#%bB,cRpPXMc,[A@kJ H$kJ )b)Mc,[$"A$I$cb$"I$Icb#05Mc(B```p)0hR mS4m۶0Lx7ɐ 1qzx~X."x?sMcTT\\$"IIcb$"A$Icb$"I $cb$"A$Hcb$"I Icb$"I$ $cb#"ɐ,Mc [̭ʍįiJ5558I6%)1">h|\\\\$" $H$|t#"I$A$Q|s#"I$Q|s$"I$$|t$"$I$|t$!E4AZ$0|s$!i$M$|s$mam6|sz#=j'sZpXXs =ɝJ4h|p8yHqkU3 [O6QZ~_$Hֶ{ZUU+tisZ'"X$I$nk-cUUU$"I$@-cb*$"A$I$-cb$"II$-cb*"$"I$I$-cb*" -c(J```t(J):IT`+7 60|_8! i?|U7#D$|WU1"P䳌|UU-"y䒌|WUU'"&M$Q|UUU$"@$@ |t#$2$C|sjjKJnR777IdI1o`{8#>`=Mcxxxx$"I Icb$! $@ڠcbIA$kJAI$kJ@I kJ@ A kJAI$kJh`&kBII I$I$ԽqTAI$I$ԽqWEI$I$ԽqTGI I$ԽqAQTh4@bx1Kpbcc 6:ӌszhc$ӌLczU&I䑌,c^U-Itٰv,c5- $I$Iso54I'@ߝ 3 )@6Ҍ ~/6~'ӌ_U(hUӌUU" 1s```͖ ɐ 1lk%%Rg2I0-2yE&ќ52$_U-[$v_UU#ڎmӌA$I$4R ӌ|@ ʍ܏Lc%%%0 vhavN I$H$5QH$HӄIIӄ$ 42I@$42"(aӌr@̿JoLc774xҔ,cz\m$sRUm$sZUUm$sZUUX&N$sRX^Ui)--ODOϜX~\^7::4sxxxxI$I$ssq|sUU@Os/hϤk/ m۷:Q{ "1!AA!p";s<ӌVVVV42 H$42I4R@4RI$ 42((ӌ|````XqtnLc%%-7!AVhm (!h+$5TVVU$m[`'ӌ_$'ӌQ|P0P&Lcp`p^ qs) /кc/iJx\$w-HJU/,I7/R 5I~s q{z/ȶP-[_0?0 [U&Hm'kZUI$McRU H? [RUI(BUI HJUIuۆnR$/y$Lcxx` X$ HBWU*I$(ڶ-(BUIbhnHJknAjs I؉=2 I$I8rUV5I$IrМoTU8Ikx)m=>МR >W=I$I2o7s^7$R-c_U/X?O$ cWUU h$I$ cR! cZ$"$ $,c c@ cZꪪ5 Mk)J^zz(R** htҔࢁI&I&Sr|HI򌪺I$ISr|H$ 򌮪 jjZjX#-Ҍkp` ۹دKk%X3:sҔmkpXX'ɟ{ tJk +Io5 *;$ӌxWU'u$󌳄~!'?􌳄  ; ӌjꪪ#Pӌs\x`#\̃'5&~B?k4ӌ_^xxH @ӌzz1 qzzl'kp,c^>Ims.*i sU m sI Τ5>A I$ԽP I$I$Խq@I$I$ԽqUPI$I$ԽqT Z% I$qpPɝ$sU^čmm;Lcz țۯ,c7%%6J$h&}Шm5NvxqM1 VsPNqܲ/ ^} .ӌ| Uܔsӌqh429X&LcppX\:Iɕs=/6!:&xX\' 4*UU*!$4U)!/ 4%h$Io^!IB'nW I$|@m_s^I0qLk*I$IΤ˲~4I?7IA2/|x~z*I$INs*W lkW y~߶ cU*Ҳ iZUqb HJUIb'4MϤ(JU$mmФ(JUlIRUU) ϜiR 7xZ40|cbrr IssI $0|ncI0|ncA A 0|ncI$$0|nc@ 0|nc$0|ncI$0|nc5P9sR`ppx1pb)) /h'p"'0-c\\\\!HMc,[I$H kJA$ kJA$kJA A$kJ!IIkJ$"I$H cb$"I$I$cb$"IH$cb`&`,c(J؜81C)B)"'|'Q|TTWW! 8@8tcpppp@skH $0|ncAI 0|ncI0|ncA$I0|nc ItIts4P9sR``ppmФR 8 z! [xX P u [iJ $McRU,cR Mc [U IMc,[$!mi$Mc [$m۵uMc c"!9=Mc(BpxxXQ c  I$I$Խ/L8 IPqXz~Z2"'r|Mc\\\\$" I cb$"I$@$cb$"II$cb$"I$ $cb$"A$I$cb$"I$I$cb#!A$ Mc [Jp IJ8ɑ\Id5:7b `>Ӕk\"f'|Mc_" $| [U"H$$sRU"m$|RU!4$sZUI/RU*жZUUFmcR Hq1Zյ- II2`\S<%P9S>mcpxxx$"I A$Mc c#00-cR```` a`ZR$IA-cZ)$"$I$-cb$"IA -cb*$"I$I -cb$"I A -cb($"I$I$-cb# cR@1K(J %%7A!B5ok&"N$L0|tVX$" $I |t$"I$A$|t$"I$I$|t$"A I$|t$"A$ $|t$"I$ $|t$!A4M$0|szhR q{1Cy8!ROVmcxxpp$"I H$cb$"I$I$cbI$H$kJ $kJ$IA;Mc [;,cZW X?,cJ_`s$ c(B))q--#I$I$ԽqeI$I$ԽqUDI$I$Խq TI$I$ԽqYQ1@$ z-ͧs?Tkbx `$qݺLcWU-Iۭk `lk+.I$Iֵn_76IxhU7!h׭ zW1M$ӌ~WU@4M$ӌ$  42 4Rӌs`@ItIϤLc %%: K׭Ϥ%4*|$~WW# ھsӌ_UUI$I$4R@4R4R4R2 :ӌ@@LJoLc766/B)u- #K2'p$ӌh XӌIIӄ $42$H42$H$42JpO,c:I$B5Nu*I$ 陨)I$ UV)I$ eU+I$ ͐mcpnhvrs G|xx6>>sxxxxA 0|nc A0|nc Iss,sR``HnmϤR 1 aah$H$ӌA$$42 $@$􌲄$`d'ӌ:ӌQ|_@h'ӌs_ _'ӌMcj_Iy,c- /8'T czжIpLcUd?I/LcW$oФLcU $mۯMcUIФLcU 1i$I"Q̃""$1nrz%0i$ϤkW($.RUf$ iJUd?O (BU$NiJUU ؖ$HJUU$%nϜHJUUdqiRUU+՗+IIItn+ -m- ƶ+ eە}+"7@?3U,hk;҄/ ic'kzW)K'I$slk^8N):4h;Ҝncx^-S'I$|McxWUU ,[iJXp`4\.iJ ->9{ c\^^xI$I$NkjJNkJJNkJJ  $I$NkjJ 2, cZ-bZ  cRhࠀrn)J 5)Cɐtn /&~sTUWT\ 򌪺@I$Sr|1z@H;k_-:M҄Kk`^W 6 ФKc% ,IS`@֭] (b];ӌ zW!o'yjps-疜&6HA  N8L ӌ$I'-ӌr`5k$,cp\$1Kk -*3yhϜ ,ZKuӌx~WI2'1P_$I$= I ԽqDDWI$I$ԽqaP4I$I$ԽqUI$I$Խ/K>I ԽcI$@ Ϥ]n8Idɑ>.8X>k'׭px\^@$ӌ"H4Iӌ`M> @MԌ* wI&{^({Uzimm?mkxp߰,c׵-9 9j׭-%0` cu!$j$ӌ!0$4R $A 4R!fbi4R"mm׵UU% I$ U%[C2Q|`jj s˸qs /%IIr_{</>ӔmcxX\%I$kMcUU)Tr?sMcUU'bĶ|Mc U& h0Ionc*U)IB$IkU'IϤs*U'I$@0{UI'1{*IRxl8 T9=4tpxxxH0|ncHI0|ncH$H0|ncA $0|ncA H 0|nc 0|nc H 0|nc  0|ncЃ%`&sRXXX1I pj{) ,>/|,c\\\^HkJ@$I$kJI$kJIAkJI$kJ IItMc,[$"HH$cb$"I$I$cb$"I$Icbhj,lk(B7 avhӔ{&"H$N$0|tVU!tkp"_Kh|s @0|ncI 0|nc $A0|ncH @ss  1|mcЃ=X%sRXXXX).Ls ,$_@Ѥ [x~.iRU %'NHJU `'moIJU_oniJUU`I(BUoiJUWВ탊RUUX&N$+c(JX^Ui)-- I$I$ԽqU@U8ɑIdq\^zP5"r>>PMc\\XX$"I$A$cb$"I A cb$"I$Icb$"I$I$cb$"II$cb$"II cb$"A$A$cb"s"'j&ls(BII$Qoy$M'Q [_WH$mZU*IBϤZUOe *cUМ{3I$= u8I@NW 6r I U.1 @mӌu*O-ќ-[ z$1ФKk5Jqkxpp`$"I I$Mc c#00-cR````pbZR#tAI-cZ$"H$H$-cb(#"A$ nkjR$"I$-cb $"I$H$-cb($"I$I-cb$*-cZjLJNIJ%5591C Ln+"L;r|VVTT$"A$I$|t$"I$I|t$"HI$|t$"H$I$|t$"I$ $|t$"I$H$|t$"I$ $|t"j&`&sZX 1M 7 xRx# A#'McHJU" im$Mc(JU$,[(JWDI$lk(BU V'IN(BU $m-HJUU+K4mn(JU m B N* *-A$IԽ/I$I$ԽqPDAI$I$Խq@A$I$ԽqTI$I$ԽQUAI$@$Xξ5I$I^%5Ih׭W58c]׭~W0X?O$ӌ_UUp;IӌHI42 42HH$42I$I$4R"ӌq|@ͽʍďLc'77/ u '?*{'>UTT\\4R$4R4R4RI$I$4R  ӌjꪪr"'h&q+c/1 u- %*|'{?UVVT\@ӌ ӌ 42H H 4242؏=LcXX7!jj &DM$qsWWW$зQsUUU$`ۿQsUUU"5Z5Q|R`zzzِnnKk )) IDIrr4>>sxxxxH0|ncI$0|ncI I$0|nc4P5sR``ppϤR3 uOj'ӌmk_U$LkUI$qLk_U$oo,cU $]ۏLc_UM6][,cU IҶ1lkU( iI1{-I$IBP_.I$ Ϥ0*U.I$n Ф0U,I$Ϥ|"U/I I|U1o-:МJz^<ɔ ɔpOW4 $qMcW.I#WPMcU*D/nc(U* m/cU)i/kU(I@ Ik*U(I& [zR 7I$f@_$XTWWW 6i3$I${!H$I$ !m$0tq" @(:sx9}lkxW OKk%:IX!$hҔ-i%`7'mcx^W'osMc\UUU@kJAMc [jꪪC;iJ7+fhB.cxh"I$M&.kbUUWTI$I$NkJJNkJJ  INkjJ )"( cZ0$I8ZZwu$t߷sZZ 5-ZJzhJ )u @H?s~$$Lk~UM'Ilk`WխIkkU(&I$@S{ $p"'{ *vc'Nӌ^ $|@|Aڶ Z4|IIӌӌ$$42 9ӌs\x`#9O{/=" Ъ1q|` 5jӌ,cx^ɟ۷m,c5-5y $hN%3>}$x^WUH$I$ӌ#ѐ(IӌQ|x}&1| %W  )I$IԽqCAI$I$ԽqUVI$A$ԽqI$I$Խq@-6m&€z; BV׭*U\VWUI$I$4RI$I$4RӌzZӌojI$﬐+U  R?I RM:6!Σ9􌲄Vx"ۈm􌲄ժ Ixmӌ  I 4R$" $@$5q$" $A$5q$"I I5q" ,|`HNФlk5555;ɕI19">r'qMcX\\^ I$H&kJkJI$I$kJI$I$Mc [*!6$I$Mc S$$I$kMcUU&d?kMcUU!X/>k2's(B(>3I|ɑ4m59&j2'tXX\\$I$0|nc@@0|nc $0|nc1|mcAI$0|ncH I0|ncAI0|ncI$I ssh'JOR֗'I${r"$jJ_^ЖI$s(BUm$ [HJUm$,[iJU_mm$,[HJU Im$Mc(BUI-,[(JU$ Im$McIJU# $McRU#@:Mc(BN{HJ5%5x:0acbr$"@$I$|t$"HI|t!k&k&tsI$I$1|mc1|mc1|mc 1|mc0|ncX%`&sRXX8Iɕќ ) --8*Ѡ>ӔmkxX^&DNsMcUU&D{McU% I.nc&IRФsUU)I$ άs*U(I$/UN#  Ϥ_ 'i۶@۶ԽPI$I$Խq#IDIqo`jx7"؃9qMcXXxx$"I$I cb$"I$ $cb$"I$I$cb$" $I$Mc-c#"I Mc c$"H I$Mc c$!h$A$Mc c "`&#>,c(JXXi۶i.):I$]S[5I@CV*6IN ip ~5 4P/U8$$|U6#O$Ӕ|UU0"h'|_UU("P$$Q|UUU$"@$A$|t" ,|Z``` Z 5`Bszxhh%"M$M$Mc c#00-cR````aZR !pp-cZ$"H$A$-c c$"I$@$,c c$"I$A$-c c$"I$ $,c c#"A ,c c$"A$A$-c cz'h&)J8 n%%7=1"'h|V\\\$"II$|t$" $I |t$"H$I$|t$" I$|t$"I $|t$"I$I|t$"I$  |t#9P5tZXxxp1`!ks ":Z\Ib{IZU*ߺlmJkU* I$In М(*3I$; O VU/Iܜ@0 U0Ir msW.-PkU.q h$k0McUr>'iJ7 Τ+I$I$ԽqDI$H$ԽqT$I$I$ԽqQSI$I$Խ/|8I)Kv/ 7'׭~W.`'I$ӌ_UU HӌI I 42 $42H$ 42A $42II 42@ 4R  42z.h摌Lk+Idu==->^\XX 4R@ 4R4RHA$424R4R`=9ӌmk\XXX0I\u/--=.r"?>v\\\X @ 42 $@$42  $42 42 42`&`&,cXXXX11C1C탏!H8;0|sVTTTA$ 0|ncHA$0|nc#11sR````1b  $II3>>sXXXX@@0|nc I$0|ncA$H$0|nc=X&sRXXXX;Iɗ{ "0Iќ{j~^&I${U)I'N{ U)I$m{U)I$$ Ф{ U(I { U&I?i{(UI$O$rs" 7I 0|:)'Mc^V+ֶ{,cUU)P?s,cUU'Զ$s,[UU"Tm'k [U`&j'+cB؜#ɐxI?sxhvv-RU^ &mu$,[RV N,cJ@$HLc [I$ kJ AkJmMcZ`sNIJ%4iKN+|'r&VV\\ASr|4 H:Ҍz(>kz!u$lkWUh$mlk_U =I$IФs:IҔs*x7X>~$Mc^WU`$I$Mc [I$I$kJAkJ@kJ 5,[iJXp`){)J +}B'>s cV^\x NkJJNkJJ I NkjJ!2!Ӳ cZ$NZZ}_I$@ ,c,JCvSZR` ƯB %5$sj*HͶlkW #I$I 2s )IMՕ ,0AҦ- )<~$zWUhlk4x!! \T- -5_^|xHI$|mA6|I |I I$|& 󌳄$ Pӌ`ӌQ|@ȍĐLc'77|6mkbzI}Lk- 5I h׭ 5>?׵x^WU qӌдӌ$ӌ `ӌ|Xx>s %Խ?99I$I$ԽqDPI$I$ԽqUFI$I$ԽqD8IIֵϤ78->׭ӌxX^$o+I􌲄$ 󌳄<& 󌳄u?n+ 󌳄'u I󌳄_'9ӌ_՚&k^^)IIS94/>׭xxx 󌳄 󌳄4R m)4R$"H$I$5q$" $ 5q$" $I$5q" 9ӌLc``p !lk-);B!Aќ|`*p'}sMc\VWW!I$I$kJkJI$I$kJ@kJkJkJPZ Mc [p'J.(B894n7?'/1&3Ӕs\\\^$@0|.cD%Hssm$m۶0|.c$I$ts@$i$ss@$Hsk4mskskj`H܏R551I9n*IbmkzW_;Nk/U&I$/ns(-U$I$I{"* O?Ϥ wIҴ-6̃_( vBQksUmm`bU I 0iRUIҶ(JU1Z<=>kxx!PIskU"жI"skU#P?σtkuw$I.skqskqNskmIss ***AI$sshzRޖ7ɐ M;6%.h'z'0Mc\\VVI kJA kJi&M$Mc,[*#$I$nk-cUUU*"?sMc UU-"v$sMcU- "if}7{McU$s$ϜjJ?Խ I$I$Խq@ee Q:Z|Z\7%#5c0mcxxxx#" @cb$Т6Mc [$ID?McZW" ?-cIR_#Ic$ cJU#~$ cJWI)JUU `$oۏ(JUU [Zs @#*?:U|xz-"F<|WUU'"&I$Q|UUU$"@ I$|t$" |t$"@H$|t#"@A|t$"I$H$|t$"H$I |t$",tmk`@ ʍNZ %7)C9K|hjb)"t2' ێs-cVVVT#00 cR````1C1ZR -!-cZ$"H$H$,c c$"I $,c c$" $I$,c c$"A$I$,c c$"I$I$,c c$" $A$,c c!`&؃9,c(B5IDI./8"k>|\\XX$" $I$|t#" $Q|s$"$$|t#" I$Q|s$"I$ $|t$"II$|t$"I$I$|t#0 tZp```)1Z );IIsϜb=I^rmќsX6q)FpkW/!h$QMcU, $|McUU&];O$sMc_UU#P$MR'nk-cUUUH$I$kJ$kJj"&`9,c(BX)i-/I$I$ԽqD]@I$I$ԽqPII$ԽqTI$I$Խ/L,ɕ)/'Uӌ^\xxA $42@A$42@$42IH$42H$42I424R4R@ӌꪪ`=5ӌlk\XXx{*-4cuxp`` 4R4R4R A424R4R5P0ӌ,cppp`%ɑDI2{9-=0>؃9XXxxI $42H 42$$42I@ 42I$42`&`"&ӄ,cXXXX21C1C "J$H$1|sTTTTI0|ncA$0|nc1-sR````0Z ,IDIs3>>sXXXXA0|nc@ $0|nc$A0|nc`h"sRܜ4 Ӕ-50`-|'QMc^VW#Զoߎk,cUU$k,cUU$Ik,cUU%IIB'8Biќ{ck'sMcTVWU hmcR:Mc [zkZ_$IlclJh۶m [Z pHA-Ba{HkuMMcU'* [h.wO, RUZMZUWPJ$,cR*_,cZ &Mc [9P [(JXp`,ɑDTfZ *+),  }:usz m$ӌLc~U:Iq,c~U- `,cWխ i s**I$A$珞B<!jyМmcx-ַ0|,cxWUUH$$kJHkJI$I$kJkJkJ&@,cZ@=;JJ%*FhA.czzhI$L$ cZ!I$IB cZ!I$I[ cZ$** cZH$ cZ @: cZ{@>ZjRzp'K{B(IdI\ֵU3 y)I&֭/?3_U,~UUp0$C24\I$IsZ# hkx`OOs cWV\X!I4 6 cZ#$H>-cZ~@>bB~@c$ZA~UIAWU- $-BUUɝ߿]o(J-ɑ\眔 :(>>Ҍxxxx@'򌩩򌪮 ( 3I I$3pi6M򌱄b梃5lkp1 d4- -5u"b W^x  0|A I|dӌ?=5@5ӌmkx*:M䒄LcXWI!hФLk5+I$I1=;IB71??$׭ӌx^WU ӌ 42H I 42 42A$@$42 @ 42 `ӌ0t` K2Lc%i)Խ ?   Խ/|79Bk׭ 03'疥ӌx^WW A 42  42 I42I $42H$  42HA$425ӌLc`pIɐ Lk5%-)I$rϜ`(TIt $늭[ӌ" I$$5q" H$a$5q$"I I$5q$"I$I$5q$"H$I$5q%&,,0|`HNLc75%2Iɕc;$9&mcxxX\$"II$cb$"AI$cb$"I$Acb$"I$I cb$"II$cb I$A$kJ!I$E kJ 0,c(B``  (J% 9 !av4pccc"H$I$0|sVVWWm&M$sk ۶amtssmۢi0|.cPtsts ss( I$ts ,5sR``ppNR 7/:Mc`pxX$I$Lc [Z.Mc [lclJÿMc [UUUp^,[ [T_WW'A; [Z!N$Mc [UUU$mk [ UU ж~ns [*UU&X=:lR'mk(B0X^^1IXəќ #.X+'r,[^ܔsMcU@skVlskhQmss I H 0|ncH$ $0|ncH$  0|nc Ȃ.,sZ`IINR% 7 xHkbbpc'tMc,[ $ kJ@$A$kJ AkJ I$I$kJ!$I$kJ 6aْ$Mc,[k (MciJ``ɐ 1HJ%%% ӽ0=I$I$ԽpDxQI I$Խ/oGQ{\  ",I$_ OU9I.'@PwU6InsIs_5 )mPnkW7$ $Q-cU5#O$1-cUU.<6msZ~ʏnIJ%%%54vABOcɉ&"Ib'L$0|tVZTT$"I$ |t$"H$A$|t$"I$A$|t$"I$A$|t$"I I$|t$"I$H$|t$"II$|t$"I$I$0|s"s&j&{R0ɑ\IМoUVW4">Q-c\\XX#00 cR````dIZR b cZ$"AA,c c$" $A$,c c$"A$H,c c$"IH$,c c#"I$H$nkjR$"H$I$,c c# ciJ``@ 1n(J 7X0|pbbb$"A$I$|t$"A$I|t$"I$A$|t$"II$0|s$]k&|s*^#>|k~"?|McW" 'sZ`zWɐ )2Z%% )ɑdI0ojrx5":#QMcXXxx$" $I$cb$"IH$cb#"I kR"!I$I$Mc ["!I$I Mc [*H$@$kJA@kJ ,,[iJ``)i (J Խ/ 8I|ɑp~Z,I$h>Qmk+'IIӽ: Խl(!ɐU/<'CUӌW^^\ $A42 A 42H $42$I424ӌꪪ I$I4R$"I$I$5q I$I4R # ӌs` yLLk %7,! u -(}'j&5WVT\4R4R$ 42I$I4RI$I$4R,ӌs`@I Lk%2 hҔI$I$4RI A 42I42A 42 I$42h&rP,cXܔ.)1k xĖ?sZUm?sZUmm$sRU"1$sR`j_UrR ) 8IIDs0's\\\VH$IssA 0|nc )sk@@ ȯt R77%%5x:kbbbpI&IMc,[ PMc,[ Mc,[kJ@kJ A kJ 0,[iJ``)ɛ/HJ%-).9QMcpxXXI$Mc [IrmcRMc [ $@$kJ  ,cR@HЉ-(B%%5|/mcb``pkJ Mc,[$HMc [!I$ kJ!I$i$Mc S#IڶkMcUU"2I0MkMc*U$~. mcU O$R/;9C׭M 8#&$^W1"0-Mc [{,9H̃,[%U`N) [U^   sk [TMc [kJ(($Mc [`8:,[IJzL )J%'&}6JJ~\4Os'qMcX\^V'p $Lc [tCMc [؈=;,[ [H$@B [ZĎ0 [Z(a$A$ [Z H$H$ [Z q$ [Z  - [RhL Bח51Iy,+$m+k^訨~OZU (P> ZW`NZUВMcpxxXA$ $kJI@kJI$ kJkJHkJI HkJ@IkJ,0,c(B```phR A$I$ԽPFqA2II/zzO$ @ILɐPpRz99Hq.c^8"$1-c_U3#O${ cUU*"?I?nk c_UU$"@$I-c c$"I$I$,c c$"A I$,c c# (6(4-cbꪪ/h̓)J731N%/#M${'|WVV\$"A I$|t$"A$I$|t$"I$$|t$"H$H$|t$"II |t#"I@ Q|s$"A$I$|t$"II |t"91tZXXxpϤks6$Ѓ9PS5-cXxxx"00 cR```` e_ZjJ$)B cZ $"A$A$,c c$"A$I$,c c$"A$ $,c c$"I$,c c$"H$H$,c c$"H$I,c c$ -cZh@阊(J-%%%:ik& IX?|,c_"@#'sZU" m$sZ_U#I$sZUV?IZUИnv RU+&_ OZU/O. bժ&I$5{ ? I$I$rpps3H`kzzxx%"i&i$cb$" $I cb$"A$H$cb! kR# AS$I$Mc [ [%C-kJ @Mc,["A,cZ@@ʏФHJ%%5II$#+IdIQp`h`x0 X QZ\XxxO'k51Z % Μ/"II$^l)X UӌxpIAӌI$42@@42@H42@$42!I$I$5Q cӄ!FNӌ!6󌒄jJ H$Lc6-I\IT&-#?>u^\Xx!6 j$ӌ*  `[&ӌI$I$4R NLɔӄ$" I 5q#q@@@`mk%5%%/A!BuM #NR'r$ӌ@I42 $42I@$42@1ӌshHL܏,c759Ik)BUMω,Iڐ$I qU}'I$q U(I$ -Zeo 'I$OhՃI. 'I$1op`W`[ɟ$ORWo [U_mmm?sRx~$sRjW#II.R 4R/9>qMcpxxXIH$kJA kJAH kJ@$$kJA kJHkJ5= [(B`ppX/yp PgR) .:?|Mc\\\VmE"mcR'MH,[ [WW?!@  Mc [$Mc,[ 5,[(B``ɝ B 3> [pxxxv?,c [UUUN,c [UUUyMc [UUU#Q6Mc [*)%U!ۤ `Mc,[_!mۦkJ# $i$Mc [%! h&tb'cbh.z{HJ9)BAN*"xB}<$"AI$5q$"I$I5q# (Q@MLc&''8##59Qmc``pp$"A$ $cb!kZ;Mc,[i.,[5UUU1` [x 5 7 [UU\i[]?,[J~6~{B_U-u$q(JU /I/'B-*'P.Z=I$9A 5In $mPs^5)h1 cW-?ZWU#X??sZWUUH؎ZZC" C:ZR ԈB%555)SS5s핥rcaa9O-@  3$H$I$I$3p]V򌱄b5pLkXp9ɑn/ڈ&,cx\X$IO,cxW&I$I c 3IH--3'~W)SUӌx_UU#>P̳sXp$ \O'{.+% hX```ӌ@H 42 H42@$42&(󌒄`$,c`XV Jع},c׵ "0Iק8׭nHO")"I$I:r_3Ik M&-.< $ oӌUW\r#OAӌU!IH4R"II0Iӄ!I0 ӌ  5ӌmk`p HɛNLc5 >1A6o 0!'~$u^WU$Xm 󔲌X!O"> Hn 鐤I&Ф._?!PNyҔP)TR! Q $@[ӌ$n+6!=h'ӌLcpX\a+6`1{ ;)AVhќs``)"sMcTVWW$"I$cb$"II$cb$"I$A$cb$"I $cb ضm[$kJ@$I$kJ  Mc,[`&r$(B_חII,)*$\:I$,cx\pORUВIo [UUPr$s ch0Ims [U0-s+c skU\skUĮ~;kmcjpM R55CKk'`+ks,[\^VUX-R$,[ [Xh76,c [UX,[ [XmMc [YimUI$ $ [Zc'`0LcJiڦIӠ [Z" ,[ [UU5 $;̀, [HJ@HIt-(B%% 9ah4Occ) ׻$qsW&HN$Qs U&@mP| U% 1|;&I' P:U$I$x Фks_m۶ cUXRk;IZU7ɗ\ќjs!+4>3'qMcX\\^ $AkJI@ kJ$A kJ@ Mc,[@kJII$kJ kJP9X&,[(BpPX Js))+m6h&Ȱ^?9bfh{H@`b/z(B 75IɑDPP|^{z4${"'r& c^\\X$"I I,c c$"@I,c c$" A,c c$"$I,c c$"A$I$,c c$"I$I$,c c$"I$A$,c c"j"&9bBp5ɑ|̃/994##'>Ӕ|^\\X$"$A |t$" $I$|t$"I$H$|t$"A$I$|t$" $I$|t$"I$I|t$"I I$|t$"I$H|t"|R``!S9Z 7xpNcp`"00 cR````IItZ9#JJ cZ $"II$,c c$"I$@ ,c c$"IA$,c c$"I H$,c c$"I$I$,c c$"I$ ,c c$8-cZꪪ*LJnA'777$)I$sxb Hm۶ZU InZU)I$ {(9I.'@-W]7Ir i-]5y)60W5#$$Ӕ|U1"ڿ|~UU(:#:0|ZXXxQ{3A)s~z~'"MڤK&kMcWVV\$"AH$cb$"I$ $cb$"I$A$cb$" I$cb$!i I&cb$ɣAڤAMc,[!d/1Mc,[zj{.h&HJbv Q۵:xlpp2TqMcxxxp @,cRxI$j5QZ @$I$ϤhH ,B U ,%O^'t?5ӌWWV\$A 42$I42A$ 42H42H 42 @$42 8:ӌsz 5t$ӌLcxVIAФLc+"I$IR'2x*:`UҔ`I$I$ӌ ӌ@$A42!&q,[XX\\$ [ZI$I$ [ZEI4 [Z I I$ [Z" I$ [Z WWLc [" I$I Mc [$ c33Mc [HJN(B7@t@-$"H$H$"H$I 5q#"II5q# 0k``2ϙ_O,c--)3>>QMcxX\\!4$I$kJD$I$kJHMc,[m5:lMc [zzzM>`-JJ79$i@bW/O| iMk z1 i$ cW/${ c~UU"#>Nk(J^^4BKP{hon'NĎs c|WWW X4 cZꪪ2  cZ^~zn6  cZ}ky䱏ZZo;/mBZZ JJA7/!.븒$ ҄ @S|<3҄8҄ $I96|z1$+c``xW&9Ϝ c sRk֪"+Ix @-] +!h˖ xW)ضy۶uӌUU$I$ӌA I 42@ӌQ|`C?s%7\$BɐXM'5#q:#4ӌI$42  I$42@-ӌr` 5jLcx^W IqϤLkե:ə4h׭M/ 8P#>?ӌ`x~_|B?sX*IIDSM(*7#>/xXXX hPW^xI$L=/*!P|nW\x#kݚӌ" I$I$5q!@,Q`&L$LkX\֕>I\I I{// =$>r'׭px\^$"I A$5q$"HI$5q$!A6h$ӌjꪪ"Zh+UU$I$mefXI$/VRPr{ _!6~$lkzW HْϤLc5-I$Irj8Xo$ [xX! @NLcR~$ I.McR"McZ E&I$Mc,[ M$IkJ I$I$kJ I$I$kJ ( (McR` HϝnHJ5%=I\ =5-6m'upX^'I NҌU_'I$XҔL#I$Iќn~Nb۶ ˃z"Mu۶Ф+cWi6mmZU uK+cUU v7RۮZUU ɝ?Z- h Mc`ppL$N,[ [TWLcJq8q8 [Z$N" [Z A$I [Z" [Z H$H [Z "N8LcJO1qMc [Օ5= [B``pX#IIo'B 7?5>4|bpxXH$I$0|mc1|mcI$I$0|mc m$I$|sUU#1|s UU&VQsuU##ԶQs U$ }h4ikڨМZ*/76 1B/o+'|'|,c\^VW IkJ AkJ kJkJI$IkJI$I$kJ $I$kJ`&r$IJWחI m+ ;IIhXC%U9#'Ӕmc`px\r`=NIJ_#IdIosH~8##>أ9Q-c\Xxx$"II$,c c$"H$I$,c c$"II$,c c$"A$I ,c c$"I$ ,c c$"I$$,c c$"I$ ,c c#P1 c(Jxp``niR 5$934|Xxxp$"I$I$|t$"I$|t$"I$H |t!aj&|s_ mM|k$"I$A$|t$"II |t$" $I |t$,|mc`` Z %%4A!Bsxj$00kRzxxhiMtZ9% J cR $"A$I,c c$"I$I$,c c$"I$I$,c c$"II,c c$"I$H$,c c$"II$,c c$Z[.Lc c?pp IJBII UϤW8IRIԾ\:q'HF0|*W7"'|_U3"Xӌ|_UU)";N?Q|WUU$"H$ $|t#"I$ $Q|s$"I$A$|t# tZp``Z 3 I1PZ|Xp0"|?j>|McVV\\$"I$Icb$"I I$cb$"I A cb$"II$cb$"H$Icb$"H$I$cb @5CMc,[9P5,[(JXpp& Q*k  #)ӽϤllh3fhiќkzzxxMc,[ꪨ # h,cRxkR 5(ɑDI$S)j=P3Uӌ\xpI$ 42I 42A$H$425ӌQ|z@K'Lc_6N$LkzU$.Lc^U-5I$iֵks 4{Bn/k7)1Un %M:5ӌWV^\$H5ӌ1|zh&ӌ,c_и:O䲌,c~U Hv[Τ,cW-I$IQks I Τ*)Təs'~X$:M$Lk\V X$N,c_ In,c 5I$K˃"0 5 :x mR4!B!BHHhb K$H|sTTTT @$0|nc$H0|ncH @0|nc$0|nc$A 0|nc $ 0|nc 0P9sR`px)1R  $Խ0q4ɐkx( k$siJW ۖ,cJU,cRU [RU$,cZU@,cZU`-,cRjH̛\̃(J55%-V]>0Rz^ $mn$mcRU 8' [iJ] 4I%< [JU iܘ [RU@$ [RUP5= [BpxxZ-ɑZ) )+(h&r"'| [\\\\I$@$ [Z*mڦI [Z  $ [Z A$I$ [Z"  $A$ [ZItMc [" I$ $Mc [$ )McZ@ ȯNHJ555%;zJ׭Ҕ$" $I$5q$"II$5q$"H$I 5q"59ӌLc`ppx2IPKk-) -h"'{'|Mc\\VVkJkJkJ@ McZjjpK̃B59 vXQMkbbb$Pm?Nk cpUUU NkjJI$I$NkJJ؃99 cBXXXx/7?Js %ȏ?nk cVTTT#")"-cbNkJJHNkJJX` cZ cZHxB.@A.H$H$S| I$ma3!~$ 򌺺 m(:sx$$lk^UX$Ilk^U)#IRkkս*6I @n 7 $@иҔ ~.:N$~WUH$I$ӌ4RA$ $42I$A$42I$@42 ӌkx`O}>s+%4@ N I$H&ӌ ,ӌ1|`5s$ӌ,cx^&n,c5 7I!@@׭m% 6 >|$x^W$"H$@ $ ѐ(isxNf[-4}1"9ScXXz{#۲mmӄꪪ b@ӌ0|xI$r9/+-! In -Z"$`ӌu 5b'ӌLkxXVɝ۷kϤLk"?)ta&׭ +"~'4|WW$" I$5q$"II5q$"I$ $5q$" $I5q%" 4M&􌯯$Mx I$񤐌 I$Ir I$I0 yЈsx\)I^탮sx"U)ZW*RU_$RU^# Pr$mkRUx" .McRU$McR # 5Mc(J``x !hJ <9Bt`."}󔑄\VWW%"I$Iq)"~n'Ҍ UU)RҌq*U+M򔑌h*U*O 󔏔x*(I$  )I$OR_ mR 7Iɕ1h^7>McxX\\-MHMc,[y. Mc [U#@AlcRIulcJ!CMc [U!CMcZ#IMcZU!SMcZU! Mc [`rs(B^ޖ79 ˃=- 6#?s'sx\^^1|mc1|mc@1|mc1|mcAH$0|ncH $0|ncI$I$1|mc  ,sZ` IMR5%%5 !avk`b!H$I$mk,cTVUU$ kJ$@$kJA kJkJ IIkJ H&[Mc,[ Mc [jjHIJ55 $勞@ 9BSpo9#p'|$Mc\^VW#؃95McBxxp`[mY(J7HNczzzx$" $I$,c c$"I$I$,c c$"H$I,c c%$ " cZV!ӤiP cZ**$"I$H$,c c$!I$)$,c cU$, cR``y o(J %%6 hҔ|`bcc"$'|kW$ m$|sU$ Im$skU! $?|k $Aϟsk i$|k$!h$i&0|s$"I$I |t$ڲ|sjȪLzoZ%74 1|z`/Z5Z5sRxxxxL& $kRJ!` cR $"H$I ,c c$Դ cZ$! &@$,c cU#$A$: cZx" ? cjR_#I#' cBW#(v c(B_H1inHJ5 7I4m%2)>bs\|#JO&|k_$!II40|s$"II$|t$"I$I$|t$"I$A$|t$"I$I$|t$" $I$|t$"*tmk`@ˍ1Z%%%.ɑdI1Ojb6#k>QMc\Xxx$"II$cb$"I$H$cb$"I$H$cb$" Icb$"I$A$cb$"I$I$cb#$1Mc [#5&Mc(Bppx^  1RI$A$ԽL7B1CМ|xxh`*!=?kMcWVVT $C$`Mc,[ꪪ hmkR^zI$j5Z *v@!CUN & '􌒄\:ӌ,c~u$,c_$IrۏLczU I@LcU6I$˃?6&o 4&$_U'XS5ӌxWUUs&5LcXp+ XI4 /?&3'4Mcx\M'IќLczW-IvrLkUIr 8I$I1{)I$p&q,c 7 I$Τ*v,I$I1`V4I$O_3In $ms(_2!HbqMcW3$QMc~UU&#>3>s(Bx^^^!11 )4aapCCCCH$H$|sTVVVH0|nc 0|nc $ 0|ncI $0|nc@$0|ncI @$ss`&rPR^^۱Q);I$h10~x'9$ Ϥnch(~$(BW#I$IO(BU kۉ-(BU?[NHJU_ $nIJUU $߶nHJUU $߶HJUU-IМhR+ 1 I' mpls~)$ H{ c_$d @RUϟ{RUIh{iJUv{iJU_ P% {BW_, Cp{! !p'ss [\TVV$I [Z I$I [Z  [Z A [ZIi4 [Zia'Mc [$!A h6cb$,Ȃ.)McR@I N(J%:$59׭rppx#"$I$5q$"I$ 5q$"H I$5q &j"粌LcXX\47B!Aq{B$kMcTTWW@  kJ@kJkJ (,cR@OJ5%5/91 c`pppNkJJ@NkjJNkJJP5ZBpp``/ hR+{'z's cVVT\ I I$NkjJ $ cZ MkKJ A$ cZ!II cZ***rp&lsB4j)C $j 3|"@>lkz!u$kxWU`$olk^U=7I {?3Ib u`: |֭n''9維|^^'N2Cӌ@(Pӌ@I$42I $42HI$42II 42A@42Âmӌ񒄮sx` \I$s )"hZ-1|`/&L䒄,c`XV .kKk57ə4hn 4 'ӌx^W!M$I$ӌ!6I!4R$"I $5q&Og $Wӌ%*)='5U!II$4R [ӌj b(iӌ0|xI$k1Ϥ0|%I$Фtz" HMLk5-6I ֭n=%<|$x\^W!Dcӌ`I$ӄ qmӄ!жI$ӌ* mIlӌ HI$4R mI$4R#Z#̀ qx`mk 7 I露o< )AQh5"??$qMc\^WW'"IkMc UU*"@RsMc UU+# ԖsMc U+  IkU)Ik)$hb_"-iONRU~P'MФiJUU Js*A\ZcrxX$"$I$ф#" I ь|$"I$I$ь|$"I I$ь|$"A Iq&"$I$q("Nl'Ҍ UU,!r?򔑄 UU)s'Ҕ c=I CҜ-(+3"/{qMc\^VW!k۵XMc,[@$ kJH kJ Mc,[!FlnMc,[$"I$I cb$"I@$cb$" $ $cb (McR` Hɟ.HJ5%71Bfh4Oc'x'~$Qs\^VW1|mc@ 1|mcI$I$1|mc1|mc @$0|ncH$A 0|nc $0|nc5=sR`pxXvݚR 0x$pZx\ v,[R*^ ܔ,[R*M,cZI Lc [@kJI$I$kJ$"I Icb# ,McHJ`Itɐ(J%%- m۶crϤPBvk`px("H\7n؎kMcTWUU"@0Mc(B`` J 4ABФszzxz&"I'L'Mk cW^^|#0 cZ`##$ cRUȇyZRVܐirZZ*} cZ]UU? cZUUֶ;ZZ Ƚ-B%55'vB)C/aΆ|kw~H @ t cA $t csk A sktDHDIssII$0|mc!I|s$"$I$0|sj&`&sRX5 ɑ{6Z5Z5|RxxxxH$$RJ$  -cR%%%#@X? cIJ_!id$ cJUOs)J_U-$oۯIJUU H4JUI~HJ*.Im Js"0I$=Lc./ɑdI15#j&9Ӕ|\Xxp$#I$I|kr$TAI|s$" $I|t$"A I |t$" I$|t$"AI|t$"A$A$|t# $ |sj⪪Lr&OR77I$I$R{5 Xhikzxxh$"H$mcMcT$"A I$cb$!-M$cb"9McZz#@X?McHJ_"u$Mc(J_X'INIJU+NoHJU I$I1 I I$0A5 ɐP|xpx*{'z'sMcVVT\kJ dB&Mc,[zꪪ  sR_#[R )K'M,c^H޶IФLcU m۶m{5(5I$ 1m%6e׭88~$׭ӌ_U&?'5ӌxWUU I$42@ H 42 P `ӌkp` i{lk %7h^۶m1lk֨I۶I @$Τ@\;I qAr}8 ;ҔMcx^#OR__7y Oќ+c5'mc^W-3',cxX\$y'LkB ,9C)bJm'mk [TTVVI$I$ [Z I$I$ [Z""(II [Z( I H [Z*A$H [Z!1,c [!mmMc,[" ,MciJ`` o(J >#؃=>׵xxxx$"I$H5q$"I$ 5q$۴ۊ-􌳄@pL$pLkԖ5 vHqkbb`H$I$Mc [ kJkJkJ ,,[HJ``0IIB 3>&Q cxXX\@MkKJ@$@MkKJH@ cZ0ZJ````0IJ .r"'p'{ c\\\\I$I$NkjJ$AMkKJ@$MkKJA$MkKJ"aێm cZ*h&j&,kA41k ؕN "(:|$LkxV HmۏlkW-",I$s{7IO$m֭o-5c'֭zW-X36dot0|`h~Nh*Ҝk`px&"HI$kMcVWUU$"I$I cb$"I$I$cb$"I $cb$" $A$cb)".s'ӔMcxX\^$"I$I$cb$"(aMcZ@ʍܯB%7739ɐФ|~px-چX:sZ|\??N3:siJ^^іos!2 Xh`Ҕ0|p`b$"A$H|t$"II |t$"H$I |t$"I A$|t$"I$I$|t$"I I|t$"H$I$|t$"A$I$|t!b>5sZXxp@!Ks4!CPs|xzp(ۆm>mk [T"H['Mc(B^ $Nk(J~U5P$mM(B_U-IHJU-5I${ oZ-:Iwh~x6@8qkxW23siJxzzPQb 4IdPpz\Zr/r"'h>0|Mc\\\XkJ h5McJx/>MsBz^52ɟO(J% 2I> k*^~{ 7 P@׭o 4$ӌWU#`]ӌWUU4R IҶ lӌ4RA$I$42R4Eӌ@s&LcXX-i6I$IW9Ih1sz;*}$Mcx^U#ߎmk,[@,cR`u>.iJ 7$d@! nc_~!M$M&mk,cUUVX AkJ H$kJIkJX%X%,cBXXXX 1-) !2``4OccccH$I$0|mc I$0|ncH$0|nc I0|ncA 0|ncI0|nc0P%sR``xXZ 8ɑ ^Xv1h"'{'Q,c\\^V IkJ$HkJII kJH HkJ $kJ $kJ)6I6Mc,[ `&ssBޖ39Ba{i%'M?k,c\VVW<@Mc [ZZZ^H$I$ [ZI$I [ZII [Z((HI$ [Z pH B)!ORxxF$ [iJU4in' [iJU ܔ [IJ $ [J*4A [R*0tv [Rɖi`,[Z m)Mc,[",0Mc(B```` HJ-))):#>h&׭XX\\$"$I$5q$"A$I 5q"  (s`ɗ.,c 5S9>McppxXkJkJI$I$kJkJ0P9,[B``pp3IB.h&x' c\\\^I @$ cZAH cZ@$A$MkKJ ," c)J```-ygJ /h>= c\\\X i$AR4 cZðmð6bZp>ZRV 'Z)J_Id'ZJU`2'N$+kB5I$I񤎜}0O$y5 /0mo 1$~U*?xWUU8q$23Ҍjꪪs9lkx(9 U /%O5ӌWV^\@42@I$42  42I 42AA 42 $H$42$@1ӌQ|`'ӌLcxWJ}nLc)5I @n'6ӈ$^W!5[=0|Xzz5'o{(7"DAN #l ӌ%&iBӌ$"I$H$5q$"I$ 5q#"H5q$"  5q X3:lԌꪪ۶ 1ӌt`P#&Lq,c`Xֵ Pk% IDI$ro2pxz}iۤh$Qt Qt@$QtA@QtAQt ItItӄ4R@,ӌ0|`X"'MҔLcX^5!1{ =IXI1nt=#>s'mcx\^V$"I$I$cb$"IHcb$" $I$cb$" $H$cb$"$I$cb$" $I$cb"@ McZ@HMФHJו5%I&ArˉNr?1bVaa+"x~$򔑄\VWW$h[ ь|#$Iۑp@U Æmm$pW! $ؑp*U 6`mp#IۑpUU$mɓ䱌qUU ,P9qZ`px n c% 3 X'pZ\X $,[R rMc [Mc,[I$I$kJkJkJI$I$kJH ,cZ((!Fm;Mc,[ #&kB',c(BXXܞ:ɗXIj)+ 4&z'sx\^^1|mcAI 0|ncI$$0|nc $$0|nc$ 0|nc@$@ 0|nc$I$0|nc` sMc@H͝oR5%9CҜo%(J1-?|'Q,c\VW#r'k,cU"P@I{Mc U#O kUU#I$@sU$IKkx+ %a?RUp$RUU Hw۶Ϝ(JUr,A Cvh{b."p}{Mc\VWW$"I$H$cb$-Rkcb{.'j&IJ2ɑdIϤzb(#'l&{R\\XXH$H$Z9I I$,[H9 II,[H9A  ZR" I$,c,JA$,c,J@E&ZZZ5R36ZBXxpz'XIoR'>:k\XXx@It c I t c&aeK;sk?_ X?kR~$kiR~['IRW N.ZU-.7*k ,_ѱmc`xۆmnZ CҶ];`r{ފ Iڶ-m*"I$I$ “I$Ir5I$yGR]U8kNis^8#?Qmk~U5"K$Qmc_UU'"&I&kMchWUU$"@ I$cb!@ MciJp`閮IxR %3B1kpj&I"$0|kT"Mtk5$"A I |t$"I$A|t#"$|t$"I$I$|t#"H $Q|s$"I$I$|t! sZ``)1b %&I${zj"`M'oМiJWWIHJU-{)(6I15o; $mk~7#$mc_U1"X]w$|Mc_UU%"@$I$kMc^UUU%"̂*iMcR`̏ϤiJ %5IdI1oz`5#>9qMcXXxx@Ъ9,[(Bx'I(B_W 2IyqoHR- 5 0h(mkx^*Oϓ$|Mc\WUU h,c5UUUIǚo,c Ԅ_~Nӌ- 4R$"H$A5q KچnӌI$󌴌->,cXhI,c^5 :I$I2색9`Ak^5XO?$Mcx^WUhM6kJ  kJ$I kJ ,[RXx`$'.iJ# hMcW_~mM&Lc,[I$kJI kJX%X&,cBXXXXI$I1/-83Qbbbz IssI$I0|ncH$0|nc H$0|ncIH 0|ncH H ss@`&J/R^ޖr;9 C)bќ0|Hh&Hs,cTVVW@ kJ@kJA AkJ@ kJH@kJA$ $kJ (,cZ@@HL (B5%3 v9qmkbbpH$ikJ0Mc [ZZZ^M&m [ZIlclJ@p$LcJ& [R H-(B55%.IF{bb'.mkx$c .RW O"h{HJUmkyIJU~ ЖqIJUUВm$ iJUU~жIJUUɟ$siJU!@9v',c(J`z__<IdItgR)))+7"#'r.'\\\\$"H $5q$" $5q" 5Mk``p1IɑXO,c- 4 'JW ۖ$McJU ۖ$LcJU$$LcRU$$,cRU%kR'Mc(BXX^W5ɐHPKk x'  $k)JW I$Z)JU i$ c)JUm$ c)JUmc;ZJU\ə(J ._'{)J^WFImsBU+X'I.BU $JUU-II BU+.I$. jR` pϜiR  49B- 28}$֭xWW'?'T|UUUHH 2 H$򌮺I$ 򌺪I $Sr|P lkp`*_ks+=*=?U\Xp`@ @42 A$42$I 42H$I42$@ M:ӌ`@к:ӌmk^&Oq,c^5-I{ 3+cս 4 $.% 3>~$xWU h$I$ӌE6E42sXp I'{*+& &iA$mfmӌ$"A$I$5q$"I$I5q$"I$A$5q$" $A$5q$$@1{`#&L䒄Lc`XVI0`0ls5)*4IĉϤ 1ypzxx'POH'Ҕ- 'e @Nӌ %!IҶ+Jӌ* IҶlӌ I۶6lӌ"I"I0Mӄ#7pܴmӄ IRmS$ӌj 5`2'ӌLk`xXV sFQlk )IȂr; 1BVh2sjz,"3?bpX\%"H$I$!i&m$qҌsҌs$ qpҌsI$I$Ҍs PX&sPZX\ޖ:I$ɛ{ " 0Z msp^"ZW*rNZUUzPrlkRW  ,[RU ,cZ mMc,[ I6I$kJkJ6,1,cZ@@x(B5%51Bfh5 'x$N$qs\VWW1|mcH$ 0|ncH 0|ncH 0|ncA0|nc@ I0|nc@ H 0|nc 9sR``p iR : !HҜkbp"_umk,[I H$kJ $H$kJ6a;Mk,["v};k,[ U$CNvsMc*U$ Ik UU(I' hk +UIN?{*"/I$Irr\@#/>k`pX\$"I$I$cb$"I$H$cb$"I$Icb#9P5McHJXXxp q*k؃9SSRxxxhA$A ,[HAII$Z9 V|,[H9ڭY7ZR# $A=ZIJzic'ZB~UOlsBW ZKBU  NhJ  %P-spp`zҸ:kZ^$kR~U>I{RW }.RU 2IwGb5IRH./6@H0| W4"6Ӕ|WU+вۼQmc`j̍Z %%I4I I$m 0OW)I{&AR{W7 kW:#8$McWU+"X>OsMc_UU$"II$cb$!i4icb$"I I$cb$"A$H$cb#0McZ``̭hN'-iJ%5TФppslShѮkMcWV\pH$AkJkJ`&`&,[BXXii41/9-I$ncxpж$RWU$ZUUж${RUж{ [U ж$s [UsZ șIФR5%%  ro;vXҜkb`rpǎ$Mc,[$H$kJ @ kJI@kJ $A$kJ kJII kJ ,,ciJ``(IIB -P qMcpxX\I$I$kJ@#4@ Mc [Z[Z^mmvLcJ@@ lclJLB0 lclJ *.(,[R@@@ ԉ B%* 4P8Q,[pppI$mc [*UU`߮k [ UUrɟ?k [UUMus [*U > $s [U@r{McUOH NmcU'I -k%I$ oR^<Iɑ׵M=75=1 /v\\\^$"I$I$5q$"I$A$5q!=X&ӌLcpXXX +c{ #}IHJW(I"/HJU+iJU* I${iJU*$ {RU '~?$ {IJ69$oZ6$mpbU(,cՀ( I${Js}*I I{{+Ib I sU&In?oR*>$qÃ֨2IHOs"~.=m0nkW.!Hc?-cU04 cWU,#>kB'nkA`x^1@hR41CP6(h>t| m - mk$3򌪪I$I$S|I$I$S|S|8@p`z.Lc4(t@!U- "NĴ&ӌWW^\I42$@ I:ӌ`@8:ӌMcz5}$LcxW"N,cWխ*0IS@'1Z_?xW)P]UxWUUH$I$4RӌI$A42ӌr`Ցs\x%!- %%v&3-ZX``$!I $5q$"IH 5q$! 4H$5q# h5sx#'NҔLcx^׵Ilk 4IPݗ-6X׭x^(:o5x~# |\xO'. @ o -# M$M"" I$I5q" I$I$5q# M I$5q :ӌmk`X Hy0Lk׵%)Ii۶91.IIrpbXz<#/>mc`pxX$"A$I cb$" $I$cb$"II$cb$"II$cb$"I $cb$"I$@$cb$]Ѯm.Mc c!&j"',cHJXXܖbur{))>CϜ& 8"#'|?u\^VW!vB&Fb&q Ҍs@Ҍs@$A$qp$.t$qpIIqp  ,pmk` Hɟ- c5%9 Bf{br, K0McWUU!mM$k,[" 0IMc U!I^? -k+U~.Z_ *'RU_ r RUW0.,[R ^ ,cR 1,[(J`x&ɟɗO(B% 6/>|bpx^0|mc @1|mcA0|nc$0|ncH$0|ncH 0|nc$0|ncAI ssX&j$sRX\8Iɕ{ +";R3?ӔMcxx\^ $$kJI$kJHAkJI$kJ @kJ@$kJ $I$Mc [*# 1Mc(J`` xϤiR BɑC3e:"3?|'Mc\^VW$"H$ $cb$"A$I$cb$"H$H$cb" McHJ``! HJ &_М c~|x!I$m-cRUUw I ZRU Z'ZJ _6NMk(J_U-vJW/.I[ /hR+4I@q̃ 4y7Pk _,>OIB.ɛ䯜nkzxjloZWժ0Iwb3I~HӔU'1!| zW4#VO$Ӕ|WU*"߉?r|WUU%"E$I$|t#"I$|t$!i@$0|ss9/ZZI.JM"҆>q [^^}Ps ['"X&I$kMcZUUU$"@ I$cb$"I$I$cb$"I$H$cb&7g mcZ($"IMc [B$P $Mc [ 볦McR^ހ9X ['JoZ1 FhӔk^x# IB|cU"Im|ncU!ItncU!ItncU# I@|c &6smcx@['sRWNsZzUL1)@Z5 II$ϤË}iBKj20n~7"XM~'QMc^WW&"pI$kMc^UUU$"I @$cb$"@$I$cb#"I$ $cb$" $Icb$"I$ $cb$!mIӢcbP ,[IJ``'ϤHJ %$}Rܨ6 h{ x8>}$qMcx^UH$I$Mk,cXUUU  IkJIIkJI$H$kJI kJH$ Lc [ꪪ Z#i,[5UU9ĘoLc*0 ԄW~͢C'Lc`XVNɟo,c5 ;Ih탽`:"'Mcx^W#`}Nnk,[W!m6m;Mc,[ꪪ I$&HMc,[!I$miMc,[ I$&AMc,[ת I$m;Mc,[ I$&AMc,[P̀McRxࠀ~R'NiJ %$tA1kW^\x":nk,[~ I kJ`&`& [B:IIN4IIЦќokW,ImNcU+ Im{MkU* Im{MkU+ID{-cU)ID{-cU(I@D{-c U# 9)Bz^{;U9#>ҔMcppxxH  kJIkJ@HkJIIkJ @ kJ kJH I$kJ09,c(B``px2I p'J )) 3h?qMc\\^V  AkJ "$lcJN$q [Z  lclJ@lclJ,,,[IJ```ɛ|ɕB ,9#>q [xxxXI $ [Z  A$ $ [ZI$I$ [Z" H$I$ [Z (A$I$ [Z  ES [Z II$,c [U`nomc [ #&b&ncHJX^^9Iɐ׭N5%%%*hֳ۸UTTVW$"I$H5q"ݶ5􌳌@hJҔLk\֖R ;Aj|xx,4|McWU)P'{McUU)ԶI$s,cUU&y's,cUU& 5[5kiJ`zzz2yg/(B 1>j>0Mc\\X"$I$k,cUUU"$I$mk,cUUU!I$mk,["$I$mc,[h`sB>ij{jon,6l6s cWWW;' cZ H MkKJTb+ cZjpLJח5I !".IIDϤ7/s2?h>^^\XꪪI ASr|S|S| $򌮪 )ڮm۶몪j=1ҌLcXxp(ɐI˃ ;/*-X-=Up@8:ӌ,cz8M$LkxW jmoLkW-%w-Sk{/I䕥n//]2P:u;^_] @6k6ӌӌI$I$4RI$I$4R 4RI$I$4R P̐`ӌsxvH':s5(dA 5N %'t:UW^\$ضmۨ1󌲄`$&ӌMkh^$ILkXW-#RKk*6$H-5 $^W$oӌ 4RӌQ|`}>bs7xII$o^9 0UW^`#!I$IB$" I$A$5q$ $i*1s`h$NLk\%6i-* m6mۢ/mc`pX\II$Mc,[6]mcR$ILc [ $IҶmc,[ U!Út4k,[##h I.mc U#IR?nkU#$~NLcZpRUz&oۯIJUU"ФZ$ɶ$OMcWx PNs,c+X 唻s,c+Issk   I0|nc$$0|ncI $0|nc $I$0|nc  -sZ` HܼNR5% 8 )aҜ,c-?''0|,c\^WW$ kJIkJ@@kJHkJH$ kJ kJ IIkJ%P9b&,c(JpPX!ϤR A!h(sbp("p:vĎkMcTVWU$"IIcb$"I I$cb$"I$I$cb$ɐ*McR@؊įIJ%%5-9 I|kxh&Іs$mkIJxVX$IIJWU)I.HJ/8$@pk{ 7 mPk^6"jnIB%79tќ|Z5???qMcx^WW!h۶vMc,[ Mc,[  IkJH$A$kJ IkJ  kJ$kJH$@$kJ3u&1Lc [z5$oiJ / [mۭ1Kk. #6I\I$rOZh2 ?>:mcx^_$"I$H$cb$"II cb$"H $cb$"H$A$cb$"A$Icb$"I$ $cb$"@$I cb$" $H$cb$"A$I$cb9,ciJx`II$nR #HpMc__~ql';Mc,[`&`& [Bؘ5I q-=1*p''{Z\\\\ $$ cZH@ MkKJH cZI I cZA$@ cZH A cZ99 cBXXXX6IDI{ !)!8#>3'McXX\\@kJ $IkJA I kJ H kJH$A$kJ@kJ $kJ=`&,[BxXX3 C1Bqks '?s,c\TVWH$kJ B,@Mc [ZZZMڼ-:,c [I$I" ,[ [MmmLc [,0,[B````+.B (>&0 [XX\\h6I [Z A [Z @I [Z A$A$ [Z I$I$ [Z I$I [Z $I [Z /Jj,c [h'r'Kk(B79C  #؆)?q||"@:mk_!(u$ӌLkxWHTɔ0Lk5O~~4!B)B|~|x~!r8H mk,[kJI kJ  kJ ,,cJ``_ (B 1b">؃9Q,cXxxx$H$kJI kJH$I$kJ@kJ`%؃=,[BXX8)C9CQnM)bb6nk cTTTT $ MkKJ $ cZ(,1ZJ@`I ɐJ% Խ/ 2?ϜZ^|09S5XxprH$A$Sr| $Sr|HH$Sr| I I$@$򌪺H$򌪪 ӌk``ilϤLk-!J5s3lkzZ Hk׏LkU 5I$g tj{*29Ui 2P#:?ӌ`x^W:bՏs*'^!XM %7$6Zӌ~zxӌ 4R 42I 42@4RhҢ(42#:PӌsXx`% \I${.;(h5kp!::N$,kxWHtYmlkU8I / 6@i 9$XO?O$~WU%"H$i$$"H$I$5q#"A$@$5q$"I A 5q#PH0|x}B?ѯ| ^I$1Zc$@'P󔏔 (%h1P`=s䳌Lk`XVɔI0 lk I I$/sPI$o^7tn䰜mkxz(6nvkRV$IwMcZ$!IE4cb$"H$I$cb$"H Icb$"  $cb$"I$I$cb" 5Mc(J``xI im(J- 9I$SS. ךM:{jPrw/k ^ 0 .qs UsqsE0I.tA I .t$ $.t۶: p0|@`"'K|bXܖ9I1ã) /3'}'QMc\VWW$kJkJI$HkJH kJI$kJ A$kJ!Pqmmk,[+" (1mcRjzͻB -6IIRcP:-+40|x\" Ot"'Z@o{nvONLcW'N,cUhPn|,cUx 0I.s cHsmchmss 5ڣ&sR`pX\iZ 8h ҜmcbpxHB'vMc,[@$kJ@kJ@ kJAkJI kJI $kJ I(-Mc [jp$KN(Jח5@IImB#&@">3?mcxX\^#" $I$kR$"I I$cb$"I$ $cb$"I$I cb$!)"Ecb|.h揔IJII{J;O/7@Ҝ{7 $mps~4$$Qmc~U5#]?I$QMcUU'"6I4kMchUUU$"A$I cb$"I$A$cb$"HI$cb$#*McR`ʍoiJ %51B1 ӔNa+"v|R|UWWT#" I|t$"H$A$|t$"I I |t$"A$I|t$"I$I|t$"I$I|t$" H |t$"I|k`rZ%1\kXx`$hP@s,[~$"I I$cb$"$I cb$"I$H$cb$"$I$cb$" $Icb$"AI$cb$"I$ $cb$"II$cb$̀Mc [t>`9iJ701 XӔN''HЪ:rZ^%6~$sRWX$IR_U I ZU-#I$I˃ (9I@un 9 @6u)_8#ϓ$ux~WU&"m&I$Q|V#k">p cx`#ɑIϤ{/+|mc\xp$" $cb$"I$I$cb$"H I$cb$"I$I$cb$"I$I$cb$"I$I$cb$"I$A cb$" $ $cb! MciJXx`$NR + $HAOkW__|$"I$I&mcMcUW\ Z Mc,[AI kJ kJH kJ$kJ AkJ I-,cZp 5j$,c(Bx^ɟ߿}N(B5- 5I?]rmk*^I$I$QM*"(A9ϤN[~*"?t6sMcUWV\$"I Hcb$"I$I cb$"I$A$cb$"I$I$cb$"H$cb#"HI$cb$"IA$cb$"H Hcb!*Ъ5McRx JФHJ%Օ#9I冷sZzj$3CsMcW^Zxhh [B; PC )x'z$s c\TTV$AMkKJ I$ cZHI$MkKJH MkKJHMkKJ$ MkKJ== cBXXXX4 \s )/'0|,c\\\V$Mc [U ,c [U$$,c [U $,c [UI$,c [U `,c [U:,cZ]hJ-(Bח/iٚ/Jpm$Mc(JU0M$Mc(BUm$,c(JUm$-cHBU Im$Lc(BUMv-cHJP9lR' [BppZ_)IɐL/R$p"'?{ [\\\^i&IѴ [Z" E i [Z "I$ $ [Z"*hҦi4 [Z A$I$ [Z I$ [Z  $A$ [Z *.J7r,c [HH (B61B)b׭N$ILc~U*IttLkU"@I$I : ׭/``iIQs )61C1C0|z~~#ʣ'$k,cTTTT $@ kJ@$kJ kJ",,cZ@@@@ t (J%%09PS50Mcpppp HkJ H kJI$kJ$kJ9P5McBXxxx6 ɐ0*k)*??s cVVTTI$ cZ H$ cZ@9X&ZBppX\ P b)) I$I$Խp  @$@$^nx.fhA၁I6MSr|A 򌪪 I$Sr|A Sr|Ҧ5 zHҺ:lk^:6N䲄Lk~UInPLk5.I$I t۞5y h 4Ѭ?~W)`?I$UxWUU@ӌꪪ 1 ӌsx`N't:s+ $6HJ-  & ӌ4RH 42A 42I$  42$I$󌴌 5ӌsx0tlk55DڶmQs^(In۶ q{8IT'P@֭ФU 8$'xW."`_U^WW$"I$ #"I$I 5q$"I$I$5q$"IH$5q$"I$I 5q$!m5q$#I|xNR'| 71pO̮ O:w2kz^\ O$ Kk *I$I$ ?IInC;X-kpx^%|NmkUU"n c^$NZU_!MwRWx# McR+$HRMc [-$"I I$cb$!MI$Mc ["أ&s$Lc(JXܞ(IIjs>V U0|px* Òv[ۑ|UU!t-|;UU Os|$nk^Pn/kW` 0.pk sps-qp ,p c`N b5% 5 V mkbpXH$I$Mk,[A$$kJ@H$kJA$H kJH$H$kJIkJH$IkJ kJ 1#&,[B`xXɐinϜHJ ; K!fTo+c.pNҔs\^WU $I$ts_W#I$0|s U!MPs*U Om|+U!I'| I%,c^ɟ$Ф,cU_P? [UWp߰Rו5=ə\IOҜm%'8&s'McX\^V$ kJ  kJ @$kJ $kJHkJ@$AkJI $kJ ,,[HJ`` (J% >!`b1#'N$0|Mc\^WW$"I$I$cb$" $ $cb$"I$I cb$"II$cb$"I$I$cb"`=5Mc(JXxpM&ks 8Thiќkxxx("[u\kMcxWUW$" $Icb$"I$I$cb$"H$Icb$"I I$cb$"I$ $cb$"I$I cb$ 42cMc,cs&9{iJ^/ ɕ*"+3#|2`=|^\Xx$"H$I$|t$"H$I$|t$"I$I$|t$"I$  |t$" $I$|t$"I$I |t$"I$ |t$"I$$|t"9sZXx` mvoФ c)- FhA/ncZx`$"I$ $cb$"I$H$cb$"IH cb$"A$I$cb$"$A$cb$"I$A$cb$"AH$cb$"I$I$cb$"I I$cb! MciJXx`ФR x߶mrZWI@0Ks"/I$I25Е9Iw@v): HHu xW:#X]?O$T~WU&"p$N$ьq$"I$I$ь|$"H$I$ь|" ̀`lk`ی ߏ+c %'/tBs^~x,"}l|?sMcWWV\$"I$I$cb$"I cb$"II$cb$"II$cb$"A$I$cb$"A$I$cb$" $Hcb$ɐMcR`ˏiJ%55))s\xx*"C?/sMc_^xx !-Mc,[$Mc,[$Mc [ `Mc [  $kJ0,cR`5s$,cBx7+I$ɝN(J5 99qs x9X3:l0|Rpx~N'R -%#II$Px+ Hnc__~$"II mcMcUW|$"I$I cb$"A$H$cb$"I$ $cb$"I$I cb$" H$cb$"I$I$cb#@5McHJxP3'O䏔(B_W%0I$IHJ%3I'ۃ0,c'BkW\Xz"j&h&LcB59C9CqFnee"J$H$Nk cTTTT  cZA@$ cZ@$@$ cZAMkKJH$H MkKJI cZ=؃= cBXXXXϤ{I)X>$niJ_W m$.IJUU tmIJUU m$.IJUU pdIJUU p$IJUU( pd-IJUU F:d} IJUU5I$ɝO(B554?m I{j*$OKku*$0lsU)$/s*)I$0sU!?X:-R 77:IfhU*b'(IJkWgR:{y )ms,[^^~iILcJI $ [Z A$H [Z *I$A [Z)MZ [Z( I$I [Z"H$I$ [Z *7.,[Zk HͼnHJ5550!?TsjzI$I$sy\X<IP@Ф]>ZzW0 3$MUs`h qLc -79C9CQzz|{#zk,cTTTTI$kJkJA$IkJ! Mc [jKB'77/Z0mcp`b` $H$kJ IkJI$ kJ$2,cZ|1Z&,[B``p^4 \(J.?>{ c\\\\I$ cZI(bZ@pLnBח5 q!!I$I$ԽqTE  Խc.!C9#ͳ?TUWWT Sr|5pxh]'kxW&Ilk^UHmlkUի{-2IT& @u 5bO?x_,Z/u_UU!h$)&ӌ4R4Rӌ@t>Xѳs\x \O' >#&l@蠂I$H$5QI$@$42hѶE642 :ӌkzl$Lc^U$InLc^Ulk% (:I) @P"z.&>Z4J |n)">#"I$ $5q$" $I$5q$"I$I$5q$"I$A5q$"  I$5q$"A$A$5q$"  I 5q$"II$5q# 1ӌk` ( ylk+%IԽ: Խ/5I$IhX?B6s`4"'N$0Mc\^WU$" $Icb%"hM$kMcU$s.mc UU%Ik--ZWp$oZUUx# Mw܍sRx"`Z6MciJ Hɝ؏HJ5%=1Aun5%;#'}$|x\^W$"HI$|tI$I$0|mc I$0|sU P@pt -UI$P0|I'Ϥs^p$懶kWPNOkUpP#:u/|Z`x^5ypb)+5&|'qMcX\^W$AkJ kJ@ $kJ@ kJA$kJ@ kJI@kJ@ ,[R@h$M䏜(BW%5Iɗ3W^&:93'4spx\vi4|s}W  tsI$I$1|mc I$0|ncM$I$|sUU (ni&|s?U" h IOt U!IB? Ϥ|/UI{+5sΤ{;1bvќ{br&'}?k,c\VWW$ $kJ I kJH$HkJH$ $kJHkJ HkJ $kJP9`&,[(JpXX ۷hR ?6?R^^#mm$mc(JU" mMcHJU$ I-$MciJU$ H$McRU$ AܖMcR* MMcR(*#McIJp``jHJ 3)ɐ|~~xp/"~ssMcWV^\#"I I kR$"I$ cb$"I$I$cb$"I$Icb$"I$Hcb$" $Icb$"I$I$cb"P McIJxp` naqR / FhA|p`%"I4H&|t$"I$ $|t$"I$|t$"H$I$|t$"I$I$|t$"I$|t$"I A$|t$"A$$|t$Ȓa|Mc`K掜Z %',!ɐФs|z-#MR'r&sMcWV^\$"H$I$cb$"I$I$cb$"I$Icb$"A$Icb$"I I$cb$"IA$cb$" $I cb$"A$H$cb$"ɒHMcR`{R%%5  $@IXKtS@bt^5"]O<P|&"0$$$"I$Iь|$"I$I ь|$"HA{$"@$I$ь|$2۴Iq@ 5p+cx*I\IϤ{x0"/[|mc^\xp$" $I$cb$"A$Icb$"IH$cb$"$I$cb$"A$ $cb$"I$ $cb#$A$1Mc [p# c'MciJ_xLL{HJ I$I"8 )y) nncW|)I ms,[U~~,[Rz/I I,[Z I$I,[R0,[R`->|$lk(Bz^50IGJ*4`ALc x.C?~$0|,cx^WUm$IMc,[9 ,cR\x` t+c-%,)ɑs\xh,"}B;sMcW^Xx$ HR+4Mc [` Æa퐴Mc,[$"I I cb$P֠cb$Enݶ5Mc,c&,[(B`^h$In(BW% <I$I R :1P@Ҝk x^/3:0|RX^O#2.Z!X=pBܘ51B)BP{JH"H$J$Mk cTTTV A cZꪪ@$ cZ@ I MkKJAH cZI$@MkKJ @ cZ؃=؃= cBXXXX8I ɐL)!)3$qMcW*m |$|McU*d $|McU*m m$|McU*% n$|McU)$ l|McU)m|McU)Z=:sIJz^7 ɔpls 0'0| [^V'ж$sZUU&ԶnkZ#d?O$Nk cUUU"Xo;MkbUUUK-IJ55!$$ӌUUU# LkxOg.mk\Zq!O$jk [W^Xs?/,c [UUUIb;ILcJq$ [Z HI$ [Z @ [Z II$ [Z 41 [R@`MɐlQ(J%%A$ w7ɕ׭7:<~WU"rtӌ#㲭mӌ@L'r&,c68 @ @ҜOdifo$-۰k [T4A$Mc [$Id;Mc [U4?,cZU@',cZUpp(B-v`P,[h\ $$,ciJUH#?,[IJU [(B_5'HJ_U3Omќ'JU4IHb' Ƒ;/b^^^x&@R cZꫭ ,ZA`I ɐϤA%  $I$Խ07&I$I$ԽPUI$I$ԽPO<. ɑD'48) "X+:t|x$lk^U$IlkzW)IlkU"&I${{+h5II\n/5y5A54'~WU!mӌj$ ӌ 6m64R4R 4R 4RӌQ|`:Րs%X" IM /'"iи50|pH['ӌLcW6N䲌LczU XmLcWUillk5 ;I9Uќn )<@@k^;#MN$Mc~WU# McRx` y珜R #P! UW^x! $MuWW~$"A$I$5q$"H$I$5q$"A$I5q$"HI$5q$!I E$5q![m6ӌz h,:ӌLcx'ILk^W% r{  IA$ԽqNUDUI$I$ӽ0o?I\ Rbv@"P'mcxX^W$"H$I$cb$"IH$cb$"I$ $cb$"I$Hcb%"mi6kMcU$mc/UU'I$Ϥk $I$z( RmIJ_3МHJ =8T1|`xX%"H$I&0|tTVUZ$"A I$|t!I$m|s IA${ l!rm|s_!II4|s @Os+"I'HϤ| UI?{ Mh۶q{ת7!`k`p"pmߎk,c\VWUI @$kJI @ kJ   kJ $kJ @ kJI A$kJH$AkJ ,P=,[(B`pXɖٖ Ф(B < KfToc+p۽m߲s\VWW Ih۶|s_ ts 0|nc@$I0|nc H0|nc 0|nc ssi:/ts X&s/R:֗I$Is-1М [xx I.,cR*T HS,cZHkJ @ kJI$@ kJ$kJ$kJ@ ,cZ@@x͟(Bח5%r"@rwIQ ^0ksWmRW IҶ(JUк&IϤHJU ?mKiJU_ $u۶ϤHJUU)-0`1(B  1ɑdIqOZx`r1"=/0Mc^Xxp$" I$cb$"A$I$cb$"H$I$cb$"I$ $cb$"I $cb#"I$ kR#"I H kR$"@McR`KniR%%52)K n̄%&."~|WV^\$"I$I$|t$"I$$|t$"A$I$|t$"A$I$|t$"II|t$"@$I$|t$"I$I|t$+h|sꪪk"XsRp`#ФJk 10mc^Xxp$"I$I$cb#" A cb$"I$I$cb#"I$cb$"A$I$cb$"I$ $cb$"H$Icb$h6Mc [" (>MciJzh&Ls(B5r<!K \2vTX,"O;s>q|TV$"I $q$"I$I$ь|$"I I$ь|$"IIь|$"I $ь|$"I$A ь|$"I$I ь|"P lkx` |ФKc %-tA! k~|x("N2rǮkMcUWV\$" $Icb$"I$cb$"I$I cb#5McZx!hZ'McHJzWJ'I/HJW-7ɟ /HJ-"4 IuAlQlkx- Z0R:z~$N'nR * hA/nc__~$"I$ImcMcUWW$"H$I$cb$ $H:MciJh!P&M$s(Bz^54Iĉ oR%6!@@Ҝkx^-C${,[x~_U HkJ kJЂ$I,cZp}>R%_m6m&1̃⢋*fHKM[~"k$m&nk-cWUW\kJH AkJ P $6McZ *zk$,c(B`^ Hqn(B5 >I ANY-;ҔMcx^,S''{Mc\WUUCh.-c,[  [Rp9jnR 53!B!A{jj`b!L$L$-cZA cZ$A$MkKJI HMkKJH$H$ cZI@$MkKJII$ cZX%X% cAXXXX0 Q˃&p#t) nc~` HЦ>mcR^ ?McRU ',[iJUh$ [iJU' [(JU$$ZBU(c$ [(B~Uɐ ɐ1(J% 7I$IΤW5/Sx^WU$) A$H$!Im5q$" I5qPӌLcXxp`.7k IRWWdi-JUU `$< iJUU p?#̃HJUU ҖHJUUNO .HJ*i$I2Z\ -I$@'JU*!y.HJU6whӔ k*/ Ӕ|%W5"4$Ӕ|_U2"$|WUU XItsxzPsj1ZW[>#9db'ms(Bz^^X3ӽhR*:I$m֭Ϥu~%I$IhWI$I_II$C'lkX^ I֮Kk&I$I27Ihќ{ x55$Mcx^W{9NR%Wdnӌ0 ӌ0|/ ӌ$vli$-ۢMӌjjjӌj :ӌqx :ӌs^H#'ӌLcW5u$,cx_UE)Qlk )S6mkz^IQlkUImR냭 9I$ p[}5ms^:#(}$mczWU)"(ĮsMc|WUU$"H I cb$mMc [.J%_I${" $$@ &"I8N$"@$I$5q$"A $5q$"I$I$5q!&i5rx'ӌLcxWh}LcW5im0r{)"ԽqAPA$ $ԽqUU(I$IӽФnX_?Thkpx)"''sMc\WUU$"I$Icb$"A$$cb$"I cb$"A$I cb#"@$H$kR$" $I$cb%"AI$kMcU#5oJ _ڴm契R AIK)tiT&C8#'M$|\^WU$"A@$|t$"I I|t$"I$ |t$"I$I$|t$"I$ |t$"I H$|t$"HA$|t5sR`pܹ金R7% *IIQOb<X/S?ӔMcxX^_H H$kJkJ@kJ$kJH$I kJ  kJH @$kJ$@&),c [@`"'LN(B_ח7Iɕ4 >+75#'U|px\^ $|s @ ssI$I$1|mc1|mcI$I$1|mc$ 0|ncI$I0|ncH 0|nc 5sZ`p HIZ5 :ɟAn"A1#Шok\W.Rz+'.ZUWPNv{RW` ,cR+$AMc [A kJI$$kJ 9,[(B``pɚl(J% >I9v^3IRI"WW3I? IiU/I$*U/I$U0I$d 0 UU2I$u2I$0U/I$I@5kHJZz#ks!2Z|Xxp$"I$I$|t$"I$ $|t$"I$H$|t$"I$H |t$"I$ $|t$"II$|t$"I$I$0|s"&5|Mcz $sZ`x^U閬bZ - /A) kzx("I8r&kMcUWV\$"H$I$cb$"HA$cb$"II$cb$"H $cb# ڶm[$Mc [#@8:McHJz!}$,cHJxW5h}{.HJW-67UZ%)I'h'1Z '7&ɑI$Q^j/ hҔQ|־$"I I$ь|#"A ь|$"I$I$ь|$"I$Aь|$"I$H$ь|$"I$Iь|$" $@$ь|$"mP|@|>9ќKc7^,9ɗZzH-"?|Mc^^xx$"H$I cb$I5McZx$$Mc(JzWP'I-IJ_U IMHJ <IX' H '<#'mczW)XͺsMc\WUU#&AMc [".R%_)){^Pr'#'-sMcW^Xx@5,[HJ`P&MOHJ_W58Iĉ o'J- 7$+mcx^*'O$sMc\WUUkJkJ@kJI$I$kJP@,[R`~?nR 5& I${xp(|McW^zx$,cZU V?,ciBz-:Ms(Bz^WIfYnB5 :I!0hҜ-?`<?Mcx^W$8$;k [w Mc [ZVUI$-c,[,M*)Mc [~jJ.B1a`PsB@BB & cZ NkJJII$MkKJ NkJJIH$MkKJ $MkKJANkJJ>> cAXXXX2 9R˃&nk [ $lcR@kJkJ$kJI$IkJ I$IRkJ>>,[(J4KBQ{)"ǻnk c\TTT#"I$nkjR$"H$I$,c c =A cZ o6* cZjJJ 977774׭ I$I4R!I$I"5Q! ӌ [`R/OmۏHJWI$ (BUIݶ BUIҶ`(JUIm 1HJUImbU$I$I+k-I @Ф{ ";)i9ټ"P ̃ -'!M%k:!IZ$m$4R $A$4R! #,ӌk` qNLk %I$I$r_Cx9q@iWcs,q @l'sW*m$sU/m$sU.$sU+0'sUU*$sUUX? R'71:Ӕ|pz{i@$I$0|mc# ii|s 6k$|kH tsꪪ c,s,cx`` 5ϤZ ?ɐ J%9#`M$3^WW*Hc?tUU%ڴ.'TU&  @8:T.|z:7Мk(6IIq*c510@mc^3`'O$qMcx^UUH$I$Mc,[#H,[R`C'R %I$|_ ?|Uz`жqLkW*жIpLkU*IpLkU $IМLk~Up-InLkUՂIuQlkU Im I$I$5. $ԽPQP4I$InAISm2sz9!?mc^W."${McxWUU$"$I$cb$"AI$cb$"H I$cb$"I$Acb# McR` iJ 5'I$&h>Lkx" m$LcU"4$ӌlkUUI璌LkU'IOLcWInLcխ iP)  I$ԽQEETI$I$Խq@ $Խb=ɑ 1A2Pk;"3?|'qMcx\VW$"I$Icb#"H I cb$"H$A$cb$"$Icb$"@$$cb$"II cb$"I$I$cb$ m۸)Mc ["&{$sHJ^^9Iɗb +"?#,>T0|px\$"HH |t$"H$I$|t$"I I$|t$"IA$|t$"II$|t$"I I$|t$"H$I$|t$$I -|k`X"'L/R^^55I$ɛМ{ (0I' mФk^V-'Z\\ PNn{RUx ,[R $@oMc [A$ $kJ Mc,[ kJ @kJ5,[(J`pItɚ(B% :BVh4ob.'~'s\^WW I{ l1|mcI$I$1|mcI$I$1|mc@1|mc1|mcH$A0|nc$M2sk&rsRxX1b ;:X/mkpx\"hmq$mk,cXUUU HI$Mc S*  Mc-UUI'X`NMc-吻OoZWr䏜RUUx@NnmkR\ @?,cRUX&LO(B_WIiQs)5 Idr2"='>|\\X'"I$0||UUU("I$Q|UUU+"I$Q|UUU,"ڷ$r|UU."`ItUU."P$|UU0"Զ'|UU/$5ZzzɝZ /1 ^Zzp.#L'{>|McWV^\#"A  cb$" $A$cb$"AA$cb$"I$Icb$" $I$cb$"I$H$cb#5Mc [x# C'McHJ``xWٖnɐФHJ /B1 Мrzh*"M?&Q|WWW\$"HI$|t$"I$I$|t$" I$|t$!IiS 0|s%$I(:t,cx"l$sR^$INZ_U 2I bխ -IrќMcx1IXəX|o}.#>|Mc^\xx$"I$A$cb$"H$I$cb$ֶ5Mc [#@8:McHJz!u$,c(JxW5pHJU-;I$ b* 9yikx<#м~$mczWU!>sIJ^zPIk+0CɐS忘-"O󔑄WV^X$"IH ь|$"A$Iь|$"H$I$ь|$"@$@$ь|$"I$ $ь|$"I$ $ь|$" $I$ь|"P +cx` oqqZ ,T@МMc~~zX#$Mc(JzWX$INIJ_U I Rխ?I$ -99aҔs^7P&O$Mc^WU!p$I$Mc [HkJ I$ kJ! c@McRzzN'NR %!O [~|xp$M (B_U-4IywpZ-#,#qMcp\^ X'I’kRWU ېI [Ru S [R}ٶo [Ru -,[Z <,[RUU%,cZUUS?m,ciJ^z ?R %'' kV\P!m˶c9mcBx P#'I B_W +A-Aəќs"x+K?m,[x^WW!m$$ McRUgn,cZIKMc [U(Mc,[ (McR`` ܉N(B55%8hqs`bbbH $MkkJ@NkJJ$HMkKJ  MkKJH$@$ cZ  cZNkJJ`&`&bBXXXX59C9CQ̃$H$J$nk [IIb,[ I$AkJ IҶkJ!I6AkJ$"I$A$cb$"I $cb!`j,c(Jܜ6!Ba0sk& h?Mk c\\TW$Z[-cb$ E$-cb$@۶ݚ$-cb$¼͛\; cZHHA77778O$"AA 5q$"I$$5q!)(q@@@@ ،,c763hh׭_'IUnU*)IU_.I$( UU+I$T#_%1S-z;!:mcxz,>o0|Mc`_UUb86 mZ-U!|A#Ѥ [-( *h O #ӌUW qlےӄ mSh󌓄j€̿r搔Lc7 r}2`itPcsrrI$L$|sWW_^A$H 0|ncA 0|ncH$0|ncA$A$0|ncI@$0|ncsh&/R,A1 É#N$K'0|sWW^\ &hҲ-|kPts1|mc Ү(s,c````  R 7!AA)"zT3TTZV!/"3z >|x^3>lMVlkx^2?{Kk-4?qMcx^_$'?Lc8P;fkx^_$"H$A$cb$"I H$cb$"I Icb$"I$I$cb$"I $cb$"HA$cb$ c"b;Mc [#,,[IJx q[t 1Z )%>$ɝ1{^=I$n Iݿ2I$N| 3IIns4Iи>O*J_R/5 ,I$ɟA0zO'r{-I$$Խ/9IIp`~>:P Ҝk`x\&"N$q$kMcVWUU$"I$$cb$"A$I$cb$"$I$cb$"I$ $cb$"I$A$cb$"I$I$cb$"IIcb#P#&Mc(BpXI1`(J5% <)jv-4"3'}$|\VWU$"I$A$|t$" I |t$"A$ $|t$"A$$|t$"A$$|t$"I$H$|t$" I$|t" P&sZ`pXɝZ%)+4)pA&s`p-~'|,c^WU {McUUU/' NLc-UvI&nZW RUUzInsRU\ ,[RH$Lc [ 4Mc [&rs(BZ^:I 2j** ;R9C'4tpx\^H$I$|s mm l|kH$I$0|mc1|mc mm&|k& $|kI$I$1|mc$I0|nc 1sR`pțynR5% :I )ta,b03}?qMc\VWUA@ kJI$I$kJ$kJ$`vMc,[* ` .Mc-UUOB? mcUɟ$O:Фsj RےHJWIQhR/-I$Ir*{IM$Ro5X Ӕ|xxp`$"AI$|t$"H$ |t$"I$H$|t$" $H$|t$"I$H$|t$"I$I$|t$"H$I|t#P9X"&sRppXXI0 R c "II$r.h3Z+qmc^Zzx$"II cb$"I$Hcb$"I$A$cb$"I$Icb$ 1McZh"hM'LcB^M'I IJW-I$mN(J-!ɟ/Фlk */|I1X\P[/"Xo첌|^Xx`#"A$ |t$"I$ $0|s$ H(6tmkx!$sZ^U`$I۰Z_U5 Ib:IX' @Mw ;bS?tx_& X3LҌlkxULk%+ F@PkZxx&!K&h6kMcWWV^# @8:MciJz!u$,cHJxWhm۰HJU-,}R-;Ih|x>$$mc^W."?OsMcxWUU$"AA cb$P#(iMcR`ˏHJ %7%ɑI$Qx.@xx$"I$H$ь|$"I$I$ь|$"H$A$ь|$" $ ь|$"I ь|$"I ь|$ A5|p $p c`ZWɐi1 c%%-+ )I$QKkzInZ 1-3z<IX' @0z>#ѫ'Ӕmc~W-"sMcxWUU$"I $cb$" $I cb$"I$H$cb $IMc,[!ۺam$Mc,[ 5-,[Rx`t毜Zj <I|Ab ?#?Ӕkx^W$|MikMcTWUU$O@$ Mc,[!IbmێkJX9,cR``xx! ɐMcR%%5$"I I$cb$"I$$cb$"A $cb$ 1Mc [`jJNIJ75Iy?0b &h"IJ_&AI$IѤc">`@Ҝmc x7"O??qMcx^WU$"I$@ cb$"II$cb H$H$kJkJkJ 0,[(B``1n(J 8 xqnk```` cZI$I$NkJJNkJJNkJJ NkJJNkJJNkJJ>`&ZBXXXX59C1CQEF$nk-cWTTTDMc [$"A$I$cb$"I$I$cb$"I I$cb$"I$H$cb$!i6I$Mc [h&r"'LkIJ.i$. cj\~$̃jRWUබ$̃RUUP۶̓RUUڵ$̓RUUڶ$̓jR]U H- B55?:o$"I$ 5q$"IA5q" Ȁ,s``ɛɕLk5%-=#9>׭pxxx%"&I&'"EפI$)"O'4ӌ,"I$UUU$s\X1@!/kxj% M$M4kMcUUWT#b#ђiMcZzh"c5 hMcZ^z%1ҜZ )&H$" $I mR$@R$4R`9P1+cxp``6Q{ , 𤓄r&~BrqsWVV\I 0|ncAI 0|ncA  0|ncAA0|nc 0|nc؃95sRXXxp,ɑDk{ !.|'r>s^\\xH$I$0|mc@@1|mc Iɔ ts",| [````  Z 7AA֭'&m*:3px tsx^+ ?/s) V`/mc`z^{R /7#4@{Mc^zI$L$Mk,[ I kJ kJI H kJ"Mc [jꪪ#X 탪R5W_$OdNMc)"M'kMcWVXp%"-i$kMcUUU' I(:kR~)}$s(JzWϤiJW% ɟ$^7I@rzU: 0@k^8#>O$qMc~WU! >9mkR6^Z+t{lk!*"O'tsMcWWV\$"I $cb$"AH$cb$"I$  cb$"I $cb$"I$H$cb m"-"kJBJ$DMc [jꪪ O:nR%WA\ɗdn]U=`>Mc^^^) iZ]'k(J^']'IJ~W%I @Ф(J AIdɐAҜM@# 'ӜNkx^W&ФZ7UUUI${9 c=  !okz4"3?uQMc\^WU$"I$A$cb$"I$ cb$"H$Icb$"A$I$cb$"I H$cb$"I$Icb#"$$cb" @ 0MciJ`h$INHJW59I$ɝ닉2u1x~xX$M.{k/$$s|k $"I$A|t$"I$I |t$"I$I|t$"I$ $|t$"A$I$|t%$i*1|Mc`hΟR^5;əWtbҔ.9K2P:'Mcx\^Wm4M4kJHMc,[ II$Mc [ OMc5UUUI'@Lc Uy$I&{x " I<ФRUxPrwZUUW&ͬ',[HJh_VH9{rn(J% 41jq3_~(9vrkU0sk H 1|mc$@1|mc 1|mcI$I$0|mc ɶ-&tsꪪ1|mc-sk&r{RX^7IəJs 9,>ҔMcpx\H$I$Mc,[AH$kJkJkJI$I$kJA kJ I$Mc S*!#@i{-[/uX&IB m۶h6rm(z<b83sB` M۹ۯR 5I!CҜP`cȎ'"i$M&0|tYVdX$"I$I |t$"I I$|t$"AI|t$"H$I$|t$"I A|t$膢X6|sjh"'K.Rޖ) @$@$~|0B9k|z)"8s;sMcUWV\$"A$I$cb$ @6:Mc [x"hM'LcB^M'I$/HJW-INHJ-7I0{: 4@k ^65l0|Z`x~ =LМR %-tA) ќPzo'۶m:1|kx"'sZxWX$IoR^W I R+;I u׵;9a%x<#X>$t~WU"6]6p p|ﯯ |>plkx,!K9omkBC)Шt$mcHJx^hn(JW- mn] c+"9I@ќoL%c>0h8kx_6"X_?$qMc_UU$"@I cb$"I$cb$"H$Icb$!A&H$Mc [#s">siJ^z@6Z-3+"&򔑄W^^X$"H I{$"$I$ь|$"H I$ь|$4M$2P|p"hM'pZ^PO'IOZx^-#I$IФ*cխ )ɝJi3N`Qs *I$I~A9Akx<#XM?$Mc^WU%"HҤM&mcMc|]$"A$I$cb#"I$@$kR#"IIcb$!i$i$Mc [@ kJA kJvo` Mc [j*!3? R%_/1XI$sj!)&mIsMc^^~$"II$cb#"IIkR$"I$I cb::,cRxxxxI,[R55!DHIMc,[$"H Acb"1McR`"Ъ9t$,c(Bx^5,ɟN(J5 ;Ir ncz,IP1{B 4hHkz_2#O$0Mc\WUU#" cb$"I$A$cb$"I I$cb I$I$kJkJkJ5=,[(B`ppXٖ)ФHJ2ѱ cx^\ жO$sjRUU жI$,kJJU жI$bIJU Вϓ$ZIJU @$ZIJU q$ZIRU?ZiRU]h'NO(JWU541B)BpufnH#HJ$nk-cTTTT!eV́Mc [??$"I I$cb$"HI$cb#" $kR$"I$I$cb# mShӶMc [hp {iJ7 ytar{k0!IA"Y-cU0!IIh{-cU0!I"@$e{-cU1!I ${-cU0!O"H#i{-cU%c)J*>: #"I$ $5q#"I@$5q" 04Lk```p9IDI*k===8#&h&xXX\$"$I$5q$"A$H$5q$"I$I$5q$"I I$5q"5kxp`0Glk)).!|"'=|McVV\X" I$I$Mc [$!M4Mcb#k# k [__~& Eb )'"M&h[!i$m$4R ӌMc`It0Lc )-%* IQTxnr)` `K:k^$INsk-@$ssI$0|nc@$$0|ncI  0|ncPsRp``oR 0X Ӕ|Xxpb Mb 4ts 4I$ats" и:tZz!9t$sR`x^ q/ ϤZ 4a֭ќw" 'Nnsx^1 \! @P{튡`,'|Mc^W#`_~~k,c|WUU # ,[Rx`" Oǭ{R #PO̮kMcV\Xp $ kJ$AkJ H kJI  kJ@,cR`~^'R%*d@!H.k_\|p#X3'Mc(Bx^$InHJWU5 yuϤ(B-<Ii ?Pu8yms^8#(}$mczWU)"kMc\WUU$"II$cb# McRp&g]Z 5-+{mc^Xp`$" I$cb$"II$cb$"@$I$cb$"A$I cb$"I$ $cb!I&m4kJ ɔ ˴MMc,[#5McHJxx``%ɛohR29j'0IJX^Hom(JU I*?IdɐR}@#Ŋ'Nkx^W&"p$I$Nk c|_WW$ LBӰi,c cW"l@sZ_9 Z%"  cUW\$MwMcZ /$"AI$cb$"II$cb$"II$cb$"I I cb$"I H$cb$H)Mc [`"P#&{$s(Bz^ɟ(J =1pAU/p1!?|XVWU!M9-s#wO&NkWx "0 喗/kX#IN|k $"I H$|t$"I$|t$]].|s!9b2'sR`pX:IIb*<:X/mc`x\"h$I$nk-cTWUUI$IkJ m6@Mc,[ߪ I$m Mc,[ )kJ$*В-:McRx#CAPNMc%UUU#I'PФLc5UmҶm6R "O{V 8O$huU)}Шm/B\xw|olk\PNwNkU\ 0smkÀnsk  1|mc1|mc 1|mc1|mc5sR`xH nR5% 8dhќs`-h'M$0Mc\VWU kJA kJ kJkJI$I$kJ kJkJ  ,,[iJ`Hɝn(B5% ?ID Cu-<#6s`x|~K䎜Z%73 In,/"'h|WV\\$"I$ |t$"I$I$|t$"H$ $|t#" $@ |t$"I$I |t$  -t c` țIR5% ?ɗtɔCSCO$H$1k)1I\IQ/Xjz2b+X5| [x"hM'Lc(B^M'I IJW- I߷NHJ-9I?U (< 9UAk^;"$mc~WU'"h6I$kMc_UU$۲mMc ["}2?OiJ7_(I|IФs"X?'}'Z~WItZ- I$IL8;IX' @7 ?$'^W."`_?<x_UU$"H$A$ь|!C#C"p ɖbbpPHps`M'slk7Im׶{:I$ə nH;ymҜs*^<#к~$mc~WU'"hҤM$kMcX_UU$"A$Icb$"IAcb$"I$I cb$"I Acb#" Icb#@McR`ϤR 5ɑI$Rl, h@򔑄p$"I$ $$!I 4ь|#@(6 cx *>N$P cXW5O+cU(/I4`t ' $O3/|^!طϔ0|hM'lk%7=9tOW8 '|$qMcx\^V I$ $Mc [!M4i$kJ H$kJ!i$I$kJ!$m$kJ  $kJ kJI kJ )b鐴Mc,[ P(iMcRx~'R 5&! I$﬍kVZj&HVkMc^zj$"HH$cb$"H$I$cb# McRx fi7ZJ#@'$McRU!@;McBX&N/(BW%:Iĉ Z ;PAmcx5 C;PMcx^WU! #@.,c%UU!;:-Lc\x% $ McUUUT$"IH$cb$"I$ $cb$"I$Icb mR$h&kJ kJ@kJX%h" [(BXX  1M#:IrDhќ|pp. ImkU)Im IkU)I I틯kU)IB I̓k U'IҶ탏sU&Ib{s_U- I${s%oZ NZ 6!B!B|H@Bi#K6h&mcMcTTTT"LMcZ>6$"I$I$cb$"I I$cb$"I$A$cb#" Icb#$C0$0Mc,[pʽHJ75xh0nkbbbb$"I$I$nckb$"H$H ,c c$"I$I ,c c$"I I$,c c$"H$I ,c cHH B;  $"II$5q$"A$I5q"P9=MkppXX<ɑI֭k{=---7"p"'r'\\\\$"A$I$5q$"I$ $5q$"I I$5q$" I$5q$&i0|@v߳;.mk-&1 h|Mcxp`$"I cb$"I$Icb$]vڡMc [#ۢsjB.~%ΐӔgR )#m&h5W^^x`ӌq@JƯMc7rϤ~I$Ϝ,c^\В)$N [Uzrv{Z@o?sZ~IvsZ* e's,cUݞ,[HJ~=t$Z(B8X^5"ɑI'ϤLkb)%M.(B3InФk"^:ɛxo=$3'Ӕmc\^/"?OsMcUWV\$"I I$cb$"$cb$" I$cb$"I$H$cb I @$kJ  I5McRx! 5s$Mc(Bh^ymB  ۶m۶sI$I$9,bCI Bs}B#Ɗ'Nkx^W'"h&I$nk c|_UU$"II$,c c$" $I$,c c$"I$I$,c c~#` cZx"M>> mmZUn cWZ"  { [$"I$Acb$"A$A$cb$"H$I$cb$ֶ.Mc [" 1&,c(B`x\Il n(J5 A!Tiun5%=#3'}$U|x^WU$"II$|t$"I$I$|t%"IAOs5_#$hMsȫpO$nk^j"" 0s0kT#$H |s# 1tZ`Hɝ{.Z5% ;B&h{ `4>ub'0Mc\^WUH kJkJ$ ڱaMc [$"I$A$cb$"@ I cb"b.$McR$!AӤcb! 9X"',c(BpX)aR 9əA/ 9X>|$upX^W M$I6s" HqO` ~Mq-UO>k\rkU^ 0攛smk ۶ܘsk I$I$0|mc@-sk@أ&{sRX\8IɕJs:93'ҔMc`xX^hڴm&kJIIkJkJ I$ kJ!I ؎kJ$]֮bcb$ IBlMc [$ cӠAMc [%R9j2',c(B`pX+A FfҨuPpX'"h4m$P|TWUU s&b=pZ^+II$nA~5#j>#5Ӕ|XXxp#"HI$|t$"I$H$|t$" $I$|t$"I$I$|t$"I$ |t"0P9tR``px1!`Z B1bvuca!{"'9Z'^I$I$rny (9iJ~^I% RU+8Ig{ 9yms ^<#к}$mczWU)"?~$sMc\WUU$"I$ $cb$"I$H$cb$"A$H$cb$  hMciJ`>R -%5H$I$sk2A>I$ə t۶ =9aA&-x<#XM?O$t~WU%"H$I$$"II$ь|$"I H$ь|$-ҭkь| I4 q҄΃" plkx` kk @ThҜsz~/"`??|McxWUW$" $Icb$"AIcb$"A$I$cb$"A$I$cb$"I$I cb$"A$I$cb#"I$$cb#!I$@ cb"9P̎kiJ^zzH!`hR /)O1R(i(:sx#$p c^WhN cV-=I$ { @yA5 x2-S?TP|x_W X4MdP/|\UU"n)P| # # kx`&~'Nlk'' mI|Mc^^~I$I$Mc [@ kJ@kJkJI$I$kJkJ $ kJ $I kJ@  kJA$AkJ0,[HJp``]R %PkWZz'#q$LB$kMc_^z$"I$Icb$ Mc [@@!I$LcRUUm 9R(JXsĉ.(BU5 ;I9pZ "=$;ֲmcx^.#'O$sMcxWUU$"@$I$cb# h4hSMc [" H{ [5_!dt"-LcZk-$ K̃McUUVX$"I$I$cb$" $Icb!pB&f&kJ kJ "Mc [jxKN(B5I$I1{c7O5R9Ҕmcpxxx $I$Mc [ $I$Mc [$I$Mc [ @$I$mk,[!-$I$Mc,[ꪪ$nH&mMc c)"nk-c%j&McHJ6Ajqs~&چm$mc [W ńMcR<<<$$ 8Mc [u#$Mc [$ Ӗ$Mc [U$ I>{R__*{+k ("N&r$kMcWV\X! 9 )Mc,[kJ!m۶kMc,[P@,cRxC;R%#hAsMc^zx5-cRxHb',[(JzW:I{HJWU-M.(BU 1IqIOZ%;N$ms( ^9"'qmc~W43:0|ZX^__7TPZ0##>|mc\\^^$"I$A cb$"I$I cb$" $I$cb$"I$I$cb$" $A cb$P iMcR`"aO탪R %5+&A{mc^xp$"I$Icb$"A$A$cb$"IIcb$A&4Mc [`!h'Mc(JxW$ɟ(B_U U$(J5Im۶ӽΤ?$ӽ?poBI BsX}B$NJ'Nkx^W'"h4I6nk c\WUU$"I$$,c c$"I$I$,c c$"I$I$,c c$"I$ $,c c$"I$ $,c c#Z#I cZ j"1@Mb UUίn cX "0w,cUUVx$ضnMc [ $"A$I cb"5Mc(BxHɝM(B5% ;I\Un'>"?U0|`x^W$"H$I$|t$"I$H$|t$"I$A$|t$"II$|t$m]u|sꪪ!hos UU {5sx+`nyokWP3'N{Rx^W*:p b- ?!X?Ӕmcx\^W$"H$cb$"I$H cb$"I$ $cb$"I$I$cb$"H$ cb$" I$cb$"I$ $cb#h -Mc(B`Hɝۏ(B5 ;Iɕ'@#*??pX^#h&]R'p\W]U!I$I6q i6i"҄σ% Ip|%IIO=]$O2?@pUw>Фlkz"Rɛ$kWz 0I.sMc \ZS'sRz_Λ9Z% 79B6s `)h'M$|,c\VWUH kJIHkJkJ I kJ$" A cb$"I I$cb$"I I$cb# 0MciJ`Hɟ.B7% B)thu-?:"??M$4|\^WU$"I |t"5sRxp``! c 4fhAҔ0|``$"I$ $0|tUUfT$"A $|t$" $I$|t$"I$I|t$"I$$0|s X&j'sZXXܖI$I @\Pu0|brxx" P @t cx`m߼1 c I$I$LϽCO!ti/b9$$mc^U-"OsMcxWUU$"I$I$cb$"I$Hcb$"II$cb$"I$ $cb$"II$cb$ b34AMc [!/:XͭkR^zII*k @$ћ>z_/"󔑄WUU$" I$ь|$"IA$ь|$"II$ь|$" $ $ь|$"I$I ь|@ҌsҌs!Aq|@3Olk'x,1ɑ{XR`+">sMcV^xp$"A A$cb$"IA$cb$"I$Hcb$"I$I$cb$"I$@$cb$"I$A$cb$"A I$cb$"$I$cb$#&@McR`iJ %7 ar~.-P>Kc^~%I<Фb(;IHN]5;#'~W-"`?xWUU!h6`&/||xXX yGpt `Odp$mkq@>Plkx`#)Nk^p$>X_kMcW^X`I$I$kJ kJ@kJkJHA$kJ$ kJI $kJ  I$kJ 5,cJx>|$,c(B`XV5n'GϤHJ ?Qϵ& ФmkW\p'"I&EkMcW^z$ж 1Mc [  ֢'McIJx^WJ (B׵ 9I @Ҕ{/:# $mcx^W("(:؎kMcx_UU$"A$I$cb$"I $cb$"H$I$cb# mREѶMc [$cIs [7_ [-$0! McUU\p%"I$Icb!p8C:Mc [kJ (,cR@x p(B5%%ɕRnhh899Ӕ,[xxxxI$I$kJ kJ kJ kJI$I$kJ$" $ cb$"I$I$cbhh,c(J؜ܜ'!nLc~x Nº탪RUUtz{RUU* $In{RUU $I탪RUU $Im̓RUU ?O{RUU9#/탉RUU yywNB-7$WcD34-czzzx$" I$,c c$"H$ $,c c$"I$,c c$"A$I$,c c$]S4[5-cbHȍ A7777: hh.$"I$H$5q$"I$ $5qh'J$p,cܜ:1B!AN("H$K$4TVVV$"AI5q$"I$I$5q$"I$I$5q$"II$5q$!A$i$5q#5ӌmkp`1 I/lk!-0">|Mc^\Xx!*:}܎kHJ^W55O<OhRե+5 Ilqs= X7 :?0Mc`x_U!k>coZ-W6ӌUP5m$Lcpx_U9IIМls)+:ڃMcxXX\ pLMc,[ꪪIkJ 0,[B```xOHJ 3+5>McxxX'I$sMcUU+В?sMc*UU)P-:3:kHJZZ>ɐT|Jk2:QLc^^^$Ж mc [$!EM$cb!I$IkJ#M,[R`@"ag]{R 5)" уsMc\x`PHLc [Mc [ [2 6Mc,[ `$Mc [b -:mkIB>^#doRc$-IJWU IvQNB+4I @Ҕ̃2 15pnc_48$QMcWU'Xo?I$sMcxWUUA$I$Mc [@Mc [jjO?탪R%5(fA {mczh mk,[#"$IkR$"I$I cb$"I Icb$"HIcb# (Mc [# s>kR^z+  \ c+"}sMcWV^x$4HӤ)Mc [#H>McHJ^&Oo(BW%It01(JխI>+"ԽqIT $I$Խ00ZDIIBrC# 'Nkx^W'"h$I4nk c\WUU$" $I ,c c$"I$H$,c c$"HA$,c c$"$I$,c c$"I $,c c$"I$,c c$"H$I$,c c$m[7l-cb#[H-b5UUUI$r5Ϝb )5"Nn,cU\p#$@6McRx`"'M$HJ_W5:Iɗk "( ?6+U0|x\)"?$P|TWUU$"I$I$|t$" I$|t$"H$$|t$"H$H |t$"I$I|t$"I$H$|t" 0sZ` R  I$2vBHp; dh֘kx\) =s,[$"IA cb$"I$$cb$"H$I cb$"I$H$cb$"I$ $cb$"H Icb$6i(,Mc [&{{(B^^"HJ>)`Ax/"'O$\VUU!m$H$q[_^ I A$҄΃A$@$.l II ҄΃$"II҄$"I$I Ҍ{# q_"I'Ϥ/| )nmkkxHΟ$IZUϕ{8P_?Mcpx^^kJH@$kJI $kJ@kJ  $I$kJ$"A$Icb$" $H$cb$! i6Mc [ 9`2',c(B`xX=II2Z+ B$'U0|pX^$"H$I |t$"I A$|t#  |,c`` qMФZ %5)C򜐔eͨ."M?|WVV\$"AI$|t$"I$A$|t$"I$I|t# ,|k`H͝܏R5%@IDɑT:7.=">34|XX\^$-R@b0|so!s>Z^z@$Qs"8Vhjќs`z||&"H$L$kMcVWVV$" I$cb$"IIcb$"@ I$cb$"I$I$cb$"HI cb$"II$cb$"IA cb#@McR`_?nR %,AM -)"??>Ҕu_^x$"I$Iь|$"I$A$ь|$"I$I ь|$"II ь|$"I$Iь|!4c0c;q Ҍs IIq" P̀@kx~Zk %,T@ k_~~'"I$M&kMcUWV\$"@$I$cb$"AA$cb$"H$I cb$"I H$cb$" $I$cb$"I I$cb$"IIcb$]-6Mc [ P#>,[(JppXP1iR =IywxA 4h8 ^7"XMt^UU$"H$A $"I$A$ь|!`%@8/|XXPp Iϑ_pt dp$"A$H${ Iqs`~R?nlk)#tBXkW\xr"N$j9k,cW_^x H$kJkJIH$kJ@kJ@ kJ@[m"Lc [@*:,[(JZ'Io(B_W-7I o'B- : 1GIШk\, PMP [8^_WI${>Z %p|mkUVXj#Ъ9s$Lc(Jx^-IN(J- 9uh{/ x#>,[xxxx I$ kJ!IۤikJ!I4m$kJ!IbmӎkJ I ڶkJ$"A $cb$"I$ $cbhh c(B:!Bo1# mt'0mcU-skײ{Mc(U/# Am${mcU/#-e${mcU.# m{mcU.#m m${mcU+ 1{Rz NNHJ % 5 (ѥ?PZx^x# жɟ$ cRU @$ cjRU! ж$ cjRU @$ cIRU! D$ cjRUɟ-B755/6Y$u탃{{`I$mkUdI$lkU HݶoLc56Uc_ԶlkUжIpLcUPv'pkUжu${UUWжm$q{UUPm$q{UU_m$Ps. ItOLk%/ 6hR`7w @qZ* 5XQmkxW,`:csMcxWUU">qMcXX\\m0`Mc [ꮪ{$lLc [WUc3- [Bp`!_.(J 3tB'q,c^^Xx"OMc [UUZ!?!GMc [UU#ym+HMc [UU!m'McRU ~'lkJz)mcz~#ok [WW^ Lc [UUU @5 [(Bxt$Z(BxW5 `.(BU-2ɟ? NHJ 3IOmpsx):3J.64Fטpk`zzz $N$mk,[@$$kJ $HkJ$AkJA$kJ ,[Rx`%{R $ +sMcV^|x$" I$cb$"II cb$"II$cb$"I$A cb$"I$I$cb"@McR`/탪R %5)$h6sIJx!к>N(B_U% Lܿ}-(JU5QKk** -$I$ԽqpVD $I$ӽϤhAIIrXuBѢOnkx^W("pSǎk'nk c|WUU$"H$I$,c c$" $A,c c$"$I$,c c$" $I$,c c$"I$I,c c$"I$A,c c$"I$H ,c c$" $A$,c c$" $I$,c c$"H$H$,c c^$c#&HmkZO'яZ%7}R^߶iФ'B- =pA&UOz3#p$O$Ӕ|\WUU$"I$I$|t$"H$A|t$"$I$|t$"H$@ |t$"H$H |t$"I$A|t$I(1|k`P&|PZz^W<IIZ <qBmcpx ypoLcx 5!PNw [WX$ IݔvMc [ $"I$I$cb$"AI$cb$"I$I$cb$"I A$cb$"I$H$cb"P%Lc(BpXəqyn(J5 ? Dh5 ;#3?~$ux^WW$"IH$2N$! &)Ҍ{ A4I$.l A$I$.l AA$҄΃$"I$I$҄$"H1Q{$"I$I$҄" 5#&PZppXbvs+:Iw!d`0|`*.րIkWU Ֆ|9 [\p/ .{ZWx s,cZ5A@kJ AkJ AJMc,[$"I$A$cb$"A$A$cb# 1Mc(J`H܉ (J5% >9AU/p/#x'$|\WUU$"I I$|t$"I$I |t$8m|sJ̿rnR'77ɑDI񤎔3"9Ӕ|^\Xx$"II$|t$"IA$|t$"I A$|t" 0tZ`` R >ɐ1BU2#p'M$ӌ|\VWW$"A$A$|t$R#͂(@t,c`s&Z'-9ɕ^PrB."3?{McV^Xx$"I$I$cb$"H$H$cb$"I$Acb$"I$H$cb$"A Icb#"H@ kR$"I$I$cb$"I$ $cb"5McRxx Z + -,&hA򔑌xp$"I A$$"H$I$ь|$" $I$ь|$"I$H ь|$"H$Iь| m"E&qҌsIIq$ҵmp"/:#>Pb8pX+II$lk‚ ,h0mcW_~|$" $I$cb#"H$ cb$"I I$cb$"I$Icb$"A$I$cb$" cb$ H(5Mc [`#C'McHJZWhHJW-0I?<ms +Z<'J9T.U+k10|$"I$H$$"I$I ь|$"IA$ь|!00|p``qɕP||;>/; IItp$"$H$ь|H$I$q~  pkXxt:s뉭5"4@.Mc_~| I$v'Mk,cUUVX@ kJ@$ kJI $kJ 1,cZp$ [BX H}ۏHJU-6I9j{) 7mcx^(]'N$sMc\WUU mӢnMc,[jꪪ!# -R5_&Z )Nb5<P@mk x5"C'$QMcx^WU$"I$Icb$" I cb$" I cb$"I$I cb$"A$ cb$" $I$cb$"@$H cb$"I$A$cb$"I$A$cb$ՒIMc [- &.R /$Kɕ䯤LcW^z$HBMc c#P9&Mc(JppXXIT QZ  -IDIzxXx;$&`&mcXXX\$"I$  cb$"$I$cb$"Icb$"I$Icb$"I H$cb#"Icb$!I@$cbpplkHJ7AAp{IBJB$"H$HmcMcTT$"@$I$cb$"A$I$cb$"AI$cb$"I I cb$"$I$cb# McR``@`#IO(J --7IRh{zxX-IҶ|{,IB|{U-IҶ{{U/IҶ sU+IB@s?"ON??OR.'7;IR@ThҜ{{0I IOk U2 ImOkU0 I IpkU3ImPkU0 h/-[ɍĨnR%%;_HfҜsz3I.HV|nkU. IJ|mcU0IAf{mcU."y{mcU&X9/J _y|Rx:#P9s:qMcxzz$"H$I$kMc^UUU$"IHcb$I:Mc [h"Mc [# ,[iJXp`1Ф(B 9)avҜsbb"߽_;k,cTVWWI$kJ$kJ9=,[(JxXXX0y*k))))0>r"?0Mc\\\\II$kJ!N$IkJ$ɐ*McR` J-IJ %56[Pnkpp``$"I$I$cb$!IIcb$"H$I$cb$"I$I$cb#P McR`%vaoiJ%(hJ5s(Bx8:N<,cBz- p۟ (BU 5I$b 4ymqk x3$Mc_U+X?I$|McxWUUj">5,cHJxp*!Z&}s,cWV^\IHkJ$  kJ@kJA$$kJM,cZ@?{R5*VAJ{nczh&"$N&kMcWUW^$"I$I$cb$"H$Icb$"I $cb$A$1Mc [!@&Mc(B^pɟMHJו5% bm֯iRx@IIaAi{ ;4@k^*p>3R7WiIڤr +)H$I$/?Ͽ@AIĉМX}BѢҔ cx^)"c'nk c\_UU$"HA ,c c$"HI ,c c$"I$I,c c$"I$I$,c c$"I$H$,c c$"IH$,c c$"I,c c$" $ $,c c$" $I$,c c$"I$I ,c c$"I$,c c$뺵X6,c c!X9`2'-cHJxxXVٖmr*k))-I$COz(tn䯜s^z" N|s*$"I I$|t$"I$H |t$"$I$|t$"I I$|t$"A$I$|t$ضa1|sx#Ь9k$|Rx^-I$INR% >1pAҜmcx4"'~$0Mc\WUU$TC(HMc,[:N> -,c U{I$+cWz+# n,cUUWX#$HnMc [+#"H I$kR$"A$I$cb"` ,McR`h$N-(BW5@I\B֭M%@"R9'px^W$"H$I$ь|$"I$I$ф$"I$I p I$H$.l.t I Iq$" $A$2N$"H A2N#` 1q+c`hIZ^5 =I ќN0?#5'Ӕmcx\^ $I$Mc S "i4ILc-[?O> @ Lc Ups-'ZWxI.{Rx$O,c [5ِmMc,[$"I$A$cb$I0Mc [P&rs(Bz^@IB4Z-+ >$&|$5|x\^W$"AH$|t$!IH&0|s$"I$A$|t$"I$I$|t!j>5sRxpDZ;탨 4 8hҔ|p``%"IҤI|t$"I$I |t#"$I$Q|s"P9`&sRppX\$@Ϥb BHTQbp%"H$i$0|tTVZU$"HI$|t$"I $0|s!9|ZxxѶiKZ .F@ok^~x&"I;N$kMcUUWV$"A$Icb$" $H$cb$"I$Icb$"I$I$cb#"$IkR$"I$cb$"I$H cb$"(1McZ` xNIJ%77*1ɕn )+"# 򔑄^^x$"A$Iь|$" @ {$"I$@ь|$"I H$ь| h&ER$qҌs mm&Pz"Z3'p cx^h$I. c^% I-hs  (IdsTPp*"}BsMcW^^x$"II$cb$"H H$cb$"H$H$cb$" $I$cb$AҨ5McRh!*:t$,c(Bx5+I.HJ-: h{- p85cqZpx~A:-R 5'4.rw&q$" I$$"I A$ь| 2,$pjjV|P||.;8> ɐ ΔLp$" $$ь|Ҍs$C$Hp0|#X5P+c>xp"{n c #iA{McW_~I$I$Mc [@H$kJ@5,[IJx&M/(B_5ɝo(J-6IXP@Ҝ-? `8'Ӕmcx^W$[ߎkMc\WUU@kJ!kJ##AMc [ # Z5UUI$O'*k/DIPМk_W\X%"I6I$kMcU_VZ$"$I cb$"A$I cb$"I$I$cb$"I$H$cb$"I$A$cb$"I$A$cb$"I$A$cb$"AI$cb$"H$I$cb$H 1McR`hMOHJו51I$BФN#y$y:>.Mc\p!`&snIJ_Wi-"7II\XXz8">&mc\\\\$" $I$cb$"H I$cb$"I cb$"A$Icb$"I$I$cb$" $ $cb$!i"I&Mc [p p Ǭ{IJ5AAp{BCCB$"$H mcMcTtt$"I$ $cb$"I$H$cb$"AHcb$"I I cb$"IIcb" ,McR@```(/(J -7"/>#>QmcxXXX'"m$I$kMcUUU%"($m$kMcUUU%"E$I$kMcUUU'"]$I&kMcuUU%雾)mc [HK.HJ75558qkbbbb$ yMc,[# Mc,[$ IMc,[$ sMc,[ R/5Mc [`@jj ȍ iJ%5557xiPk`b`b$"I$ $cb$" $ $cb!Ӡm4Mc,[ ֶI$Mc,[P,,[(Jp`+ɑDIOHJ $fiBncxxh,'Lc [WWV,c [UUUkۤmLcJ!@@Mc [ 0,[(B` IԹ.(B 7LPmc`ppxI$A kJ@$HkJII$kJX&`& [Bؘ3 ɐ pJs  */?s,c\\\\ kJ I`Mc,[$(Mc,[LrIJ773vAB/sBB& un,'mc,ch$$>McZz$ Ah?McR_"Id'McHJU!:6v$,cHJzUIynHJ% D5mSoR^6Iy )s 3Us\3($qMcWU'I|Mc^\XxIkJ$I$kJA$kJ kJ I$kJ 9,[Rxp`*{Z -"}2?sMcV^\x$"I$I$cb$$@ 4Mc ["HM'Mc(B^&IIJWU%I(JU%?I$IФs)"@ɗ&Ҝ{(^@$к~$ӔmczWU)"'OkMcXUUU# X͐`McRxO's>Z)mI$pkU> dis`z|*!_c?k cX^^z$!M A-c c-$"@A,c c$"H$ $,c c$"I$A ,c c$"I$I,c c#"$AnkjR$" I$,c c$"I$ ,c c$"  A,c c$" I$,c c#" $,c c$m6,c c$Z3& c(JxZ Hܹ}n(J5 9IAT8@?Ttxx^W|9 @s+5UxI's\r !0wNsX$& ܔN|s"+%$"II$|t#"@$I$|t$mۢm6|sj"13'sR`X^ɟNZ5 @ B{/x7#C;u$qMcx^WU$"A A$cb#"I cb$mҵC[Mc,["#@,c%UUɛ$z4o,c% r䏜,cU^p$ 0Iss [\$$AD1Mc [j#9k$Lc(J`X^9R.aHJ <vڱҔc{_'"h4I6$"A $ь|$"I$A ь|$"A$Iь|$* 5P|(qO| HtOs#" Ҍ{#@,s`&LObx\5# c A )tik`x,"$sMc\WUU I$MRkJ I$IҢkJ I$H$kJXشv [-UU'-,c-roZU^  斻sZUX!4WMc [ "9Mc(B`x9ϟHJ); 640bpX& ];m1|tTWUU" I$I$Q|mk!I4)4|s  I|s" I$A$Q|mk#P tZp``!1Z 2B1oaNj)"N;h>Q|UWT\$"I$@$|t$`-|s|hKoRޗ7II3mj+A"R9>U0|pxX\$"I$ |t$"II|t$"H$ |t"|k`N'r> [%-IϤ|ZzH."{>ڏ{Mc^^xx$"I  cb$"A A cb$"A$ $cb$"I$A$cb$"I$A$cb"Mc [P 0f2McRj#Ъ9t$,cHJx^I6`HJ% I$@41c *tA1ҔVTX`)"O>ҌWW^x$"I$ $ь|$"I$H$ь|$"AI ь| m&E&q1qs`j$P|b`^Nܹ} cյ+:ə h4/61bspx~}?N,c 7+d@! Nk_|x'"i4M6kMcUWVx$" $ $cb$튡h6Mc ["`*:Mc(BxPC'Iĭ{HJ^W 9I pZ+*; PAs x^5"MN'PMc^WU$ c#Acb"#:PsR_^z'9XOOR *iq=$!m6iѴq$" $ь|h&?q/|\X\VygDP||;:.? ɔ I p I$ q P@*:p cZ3'OOZx^%}[+k "'Ϥs\Xh%k9k [xPO',[(Bx^`$ۏ(JW5 }۶mR-9ə4hќ{*`8-:}$-cx^WM'Mc,[ IIkJI$I$kJ IIkJ$"I$$cb$#AMcZ`# Z%UU!ɑI$sz)'$@ ФmkUUW\%"I$H&mcMcUW\x$" $I cb#"I I$kR$"I cb$"I$I$cb$"I$I cb$$Mc [V  DMc,[$4`۸1Mc [` =s$,c(J`X^;Iɑ Z% >X+Ӕmcx^( ,[.WWϤ,c>* I$I$*=IIr6"h>`'qMc\\\\$"IIcb$"I$I cb$"I$ cb#" cb$" $Acb$"I$I$cb$ڵ-!Mc [xHĬ{IJ7 aaqsBCCb%"m$H4mcMc~VTv$"H$I$cb$"A $cb$"I$I$cb$"H A$cb$"$Icb10,ciJ````'/HJ- )),X >0,[X\X\v#I,[ [UUMc [UUV$NB,c [UU?c,c [UUX;C,[Zj ȭʭ (B55551YPMcbb``mlj',[ [8$LcJ $ILcJI' [Z6i& [Z@  ȫȋ97777'abOkh``b<}Mc [VVV ?ϓ$-[ZifU8I8 [Z$I8 [Z:ۼ [R@ h IJ%%" I|O c!}'r&s [W^\XIILcJiilcRMc,[9X& [B`pX7IDɑo'B7>3'McxX\^H$@ kJI H$kJAI$kJ`&h&ZB01q &j$s [VV?Mc [U#  X?McR_#I#?McIJUh} [(J׵1)oomczz#и}'sIJ^W(${ (BU~߶] HJU-Iv9hR3I/Js 4 Ir IpsW27 ?6pRz1 XɗpR+/?>|Mc\^^\A H kJAkJHAkJ$AkJaMc [jꪪ3;iJ%*VhAmcxbq;vMc,[A @$kJA$kJA kJH$$kJ"Ȁ(A,cZp@Ŷ&{J %7+ D@{Rx"h$Mc(BzW]'Io(BW-(I$INB-&I$N'Фs @IX!I2p^= _Ҕk^W1#`'I<|McxWUU$"II cb$"I$Icb$! H$cb9LciJxx 1R )'PI$k\x$/McUUUT% iѶvMc c$"I$I$,c c$"I$I$,c c$"I$I,c c$"HI$,c c$"H$I$,c c$"I$I,c c$"IA$,c c$"II$,c c$"I$ $,c c$!AiR4,c c{$9 cB`xxɝ؏HJU% ;IyTn]%9 C'u0|x^W"h$I$0|s|_WU!IҶm`tsU##@s5UUUɛ{5{`"!NyܯsUWz# O|s+$!AI$0|s&(Z&|Rx^ J-R% =I$hҜ{. `<$C'N$Mcx^WU$"H$I$cb#"H AkR$"I$I$cb$"$I$cb$mb+ncb#iHmk,[ O2'h,c)5UIlk^ 1oiJ_X:I$IQB*:O.{#xr.5탂z#0s $MqP|$"I$A$ь|$!I4I"ь|)C$ 0|z#I0|ժ Iݶmp$&m80p`"9j$PZpXIlY c% ?)d`Ҝ `<"3}'Mcx^WW$$Mc [T"$McZU# 'McZ!jbMMc,[#M+A$IMc,[!4hMc,[ݪ!Lc-UUɝ$}Lch+%ɟ$nRU^`$O.IJW> Cdh4% 3!3'N$|\VWU" I$H0Q|mk" A I$Q|mk" I$A$Q|mk IM${ l" $I$Q|mk"@|mc`؋ܯZ%%74 Id2"{2?|V\\X$" $I|t# (t c`șIZ5%%-Dɑ HTm>;'9"#?{'|\\VV$"I I |t$" $@ |t$"A$I$|t$" $I$|t" sZx` }دZ -v@!c~|("u8J ێkMcWWT|$"$Icb$A*5Mc [`"ۖ$McZU#l[$McZU`:,[B^&O{B׵ 5I Z* :Imps*X.5P/R>_!ɑO${, &iAҔx$"I$I$$!i&ь|$!HIь| h5qlkx,>M/|bX׵0I{b+; 94P- x8#X~$|x^WU$ҭ-ڶ|sꪪ$# |,c^x*O',c+*h@0mcW_~x$$I&1Mc [`#C'McHJxWh$}wHJW- :{@A k* 9"_?k^W,"_'OsMcxWUU$"I$Icb$"I$Icb$IMcZ` uB?-R5_) InP^^[+ }=5q%"I$I>%p/|\\\\_P||+++> II`p@1qs`k$p ch^U HĹMZW 7I|`ATIs. 41S?Ttp^W{'6Lc56ɓ$R_\MHJյ #I$I 7 ќsx8X>~$ӔMcx^WUh4i6Lc,[I HkJ!IIĎkJ$kJ!IIĎkJ$"H$I$cb$" $Icb#PMcZx }>bnZ 5U$II$Lkp$ ϤmcUUWX&"I$Hb;mcMcW_|$" $I$cb$"I $cb$"H I$cb$"II$cb``Mc [VVV#T-jMc [%# 13',c(B`X:I$IHJ+>!d`ҔspX,"3N{Mc\WUU$!I$@Mc [# [#@.,cUUUI$b c =ɑXQp_5 'QMc\\\W$"I H$cb$"I$H$cb$"H$Icb#"A kR$"I@ cb$" A cb$ c;C;Mc [HHB77775 `v`scbcc$"@$H$cb$"I$I$cb$"I$A$cb$"I$Acb$"I Icb$"IA$cb"0@4McHJ```p-yOhR))) /::0|Mc\\\\@kJkJI$I$kJI$I$kJ 2,Mc [jjjj ȍȏ HJ55551ȁqmcbbbbDZm,[ [H'H$LcJI$I$ [Z( $I$ [Z m4i [Zr h{(B&!B)BOs@@hk$K&Mc [TTTTI$I [Z((I$H [Z I$I [Z A$A [Z9PZ(BxpN< (J %!/{ [xx` 6LcJ 9 [iJz$$ [BzHۏ(B5 6 ox-h'|'|,c\\VVm$Mc [F?,cR~@?,[IJ_pM(J/)䏜McxxH?N{IJW $kNIJUU~_HJU*I iR 3I.)P)k" 2Ir@|W/IP9/JZ<y LҜO^&w8$$Qmc|V3"D$0|McWU."VsMcUU'"C&I$kMcWUU!"-McR```{iJ %%)س=DS|McXxxpA$AkJ$ kJ AkJA H$kJH@$kJ,[HJxp`*){R&'rs,cWV\\  kJA kJA kJ &:,cRz@[',[(BWh$I(B%1Rp8o(J:ITH e6x:֒mkzW(>/nR'_-XI$spr*bsMc^~$"I$I$cb$"I$Icb$"I$I cb$!Mm cb$5MciJxptxФHJ%5%<I$ɝR[w49omkX$K{-[_%"MI-c c$" $ $,c c$"I$$,c c$"AI$,c c$"@I ,c c$"I I$,c c$"I$I,c c$"I$A,c c$"H$ $,c c#h5 cBxh$IN(JW5 =Iĉ3˃/ =6+T0|x^&CQ|s|!Ibi|s$ͺZ0|s$!I"m|sꪪ$c&`|szI'Ps*-UI$Ϥ{Wz 4&;O [z`xInZW% ?ɕ DhҔ9 b?#??}$Ӝmcx^WU$" A$cb$"I$I$cb$"I Acb$"II$cb#"H$H kR$" $H$cb$"H$$cb" 5McHJ`xQiR-%% I$Isk> An5"?~$3x^WU$ۢLPz ϫ&@pޘ!`Nyq " | -!,pFmp %XpZZ"$P|=$!H4h $ь|!P#&p cpXH1yrQ c AIΜ@# C'ӔmcxX^$"I$H mcMc\wWu! Mc [~"mMcZU!9Mc [$"I H$cb" $ $Mc [# 6 $Mc [! kR"ms,[?ĎR5?Idun^= >$P9j'U0|px\V$"HI|t# M$M Q|mk" I$A$Q|mk# I$M$Q|mk I$I$0|mc!m4I|s$!)$M$|sꪪ{.h&/Ryy<N4X Ӕ0|Xxp`$" $|t#1P=|R``xX!!aФZ  B9bhUCc*"pMb;Q|TTWU$"I$ |t#"$I|t$"I I|t$"A $|t$|shʪ!}2'9Z'^+IDI$Ϥ{z`#. {Mc^xx$"I$A$cb$RHMc [` m;s ; [Rx'RBX pAW :I{I*k* 8XMmkxW."?{McxWUU#̀@McR`'R 5(1ɗn4K)5Ҍpj $$I'P`*:pZx'ɟ cXV-3ɟub*3!0@0| x^2"'|xVUU$"I$ |t#$I$skV$,|kh!}B?oMc%^+ yns\zrc#Њ9j'Mc(Jx^6)I(J- : h{ p9#+u$rmcx_U&"p$I8kMc^WUU$"A$H cb$"I$$cb$"I$I cb$"A$H$cb$# aMcRx~ZNJ 7)T' O/='!)s ьq"5,0|^z` p/|U AҼ>p c^PC'Io cxW ۶m c5 :ɛ$hUo/`7'4sx^W h$I|s|_UU # sLcx:ϤLc 5 I$Is= JFs(z4O?~$qMcx^WUHmӴkJA  kJIAkJ!IIkJI$IkJ  IkJ$"I$H$cb$"AI$cb$"I I$cb$#HMcRx>ϤZ %ɑI$Ϥmk`$ mcUUVP$"A$H$cb$"II cb$"H H cb#!,Mc,[` ,c [^^$Ү9,[(J`XJ܉ (B5 ?BҔ{p5"C'?PMcX^WU$"I$I$cb!X6m&Mc,[ꪪ$I$Mc,[ꪪHMc [^'A3o [ 5UԶRWVPr.JU MwMcR!m-Mc [@$Mc,[!$I$kJ Ðvm۶Mc,[$].-!Mc,[HHB77777xhqkbbbb$"A$I$cb$"H$I$cb$" $I$cb$"I$I cb$"I$ cb$"I$A$cb"P5P5,c(B```p-y?R +>'|,c\\\\ $kJ@ I$kJI $kJ$@kJ -Mc [jjjj ȍȍ.HJ55551Pmcbb`b lclJLLLcJM [Z((I$I [Z I$  [Z( h`+cB&)KO{lo?sk [VV\\ $ [Z"I$A$ [ZA I$ [Z $$ [Z" [HJ``&B'7 vj)ORxpLlkB~W5 `$ݶϤ(JUU-I(Ji۶-жϤ&II$rxj"(cOiJ_WV;o(BU $%INHJUU O߶ (JU(Iv;/Z5 . I0#U$IR.R(6 )B/hm41H"KQmcW5"'QmcWU2"F|McUU+"sMc_UU(95mc(Bxxxx5ɐ\p*s !)1#sp&|Mc^\\\$"A$I cb$"$Icb :4Mc,[  Mc [ꪪ{iJ77* fha{mc``mڤmMc,[I A$kJ I$kJ$H kJ@IkJ ,ciJ``)g(B (9P{Mc\Xxz $9Mc [z:,[(J^}$ [(BWX$In(B_U5I[a(J 1I$I{=IT I/謫z<b]۲mk~W6#`'I$QMc_UU%"AI$mcMcx}U$ R#͐iMcRpO's>nR %* \k\Xp)"n2ݮkMcWV\x$"I I cb$$ $1Mc [`"ZC',c(JxV`$ɟ(J_%;R ;4Ҕmcx^/P:|McX_UU1 [ %'4IT̃-cUU\p$"I I$-c cꨨ$"I$ $,c c$"H@$,c c#"A nkjR$"I,c c$"H I ,c c$"I$I$,c c#`5 c(Jx`$IoA_5 /II)k* ?!d`TQpX."'O$|\WUU$"I$I$|t$"H$I$|t$" $I$|t$"I$A$|t$!Im&0|s$70|szb$МZ /_W!۶{h4I3Ф^7F1pmk`|\x$hacb$" $I$cb$"I$$cb$"$$cb#" $I$kR$"I$H$cb$"I$I$cb"@1Mc(J``$IIJWU%  1 k)@4h֭?;!>畭x^WW$"H$I$ь|$"I$I$ь|#k:`pj"̀@ pU|9O R0wp|/x$M O| $"II$ь|"` 1+cxpɟ߯ cV5 I$I1 J@)tak`x-"?OsMc\WWU$"H$Hcb$"IA$cb$"A$I$cb$"I$A$cb$" $I$cb$" I$cb$" $I cb$"H$I$cb" 5McIJ`xMɟ.HJ5 ?!t`u0bx+"hO$r|\WUU$"I$I |t#"I$ $Q|s$"I$I |t$"I$A$|t I I { l!  i|s$"I$I$|t"9PtZXxp`+a1Kk)4`!Cr{zh'!k70|tUVXd X&rsRX\I BZU0|`px$"I$H$|t$"I$I$|t$"H$I$|t$"A$I|t$"$H$|t$"H$I$|t" P̀ `t cx`Z '+ɐsV\P`)"NR;>kMcWV\X"@5MciJx`>MkB~^5I{ B-' Pmkx+QMc|WU&"`I$kMc\WUU$"II$cb$"I cb" McRxN$t:ϤR %#|񤐌}u\X& cx\h}WN cW5 3W@@3j{+ 2Ъ'|^W&mQs_UU$"I I |t$"A$I |t!skTPX`/T/sk * X̀sMcptn [ '&߉ c8 PA6ֲMc z4:l$0 [U$Mc,[$H$Mc,[!MMc,[!4iMc,[ lؐ$Mc,[$$ $Mc [U#HMc,[! 9mkR^zz&O'oR + &hҌp! `',cz 1{tRxV Hq[ФZW5 /I$I˃8yqT/; x9X~$Ts~WU M$|s@1|mc@tszꪪ# |Mc^zLk )%(tJ9|Ϥk~\Xh!M$k5mk,cVVX`AkJI$A kJI kJkJ I kJ!M&IkJ$"I$I$cb$"A$Icb$"$I$cb$I1McZ``&{k(Jޗ) 1.+)'I$O:Ϥsh"?#@!NMcUW\`%"IER4mcMcp$"H H$cb$ 1Mc [``Цc-6 [(Bhhɝ(BW5 @ɕ !ThҔ{)<#??}$Ӕmcx^WU$"I$Icb!i6h&kJ kJkJ@I kJ#ɐ@,cZ|p|>>Z5nZU&I$IN\{8 ' ҜLk_%l{sZUx@n.{RU^  ,cR+\McR `:6MciJzHɛ B775-7 nqkbbrp$"H$$cb!ہkJ!L$H$kJkJkJkJP5P5,[(Bpppp.ɐ ɐ 0b (p?s,c\\\\@kJI$ kJHAkJ   kJ!,Mc [jjjj ȏȏ HJ55551Pmc```bM$@R4lcRH$v$ [Z  I$I$ [Z**MۦA [Z I$ $ [Z (`&`%ZA& P샮 /ps [^\\\II [Z "Mm[ [Z(* M$ [Zm&$ [Rlf' [R_N9N(JU IO{ ɓ$I ФJk) $I$I2OU-I$-qO _U.I$PPUU(IϜ-c0I.|r/ IBrmPk^-+60mk(U. m'0McU-F$|McUU)I$s,cUU"&k&ncHJ3)JJQ{$˸kێkMcTWWW$" $ $cb$"I$I cb$"AI$cb"0McHJp```-O(J 4#h&؃=Qmc\\XX$"I$I$cb$" $$cb!I$M$kJH kJj>9,ciJXX*J |{ˋ #'k,cWV\\IkJA kJI @kJ  kJ" ,cZ@@@ ̯ȋMIJ%%55!,cW^xK'NN(BW I&Ao(JU52I$IZ-4IĞФkjzI|pФZ;"V>Ҕkx^5"X]QMc_UU$"H$A$mcMcV]$"AIcb$"I$I cb$!i"i$cb" j9McRXxI$MB'Z -+TA okW^|p$H5MciJx *:Ms(B^5IdHJ- @IAҜ ?$'Ҕkp^W'`B'tb's,[\_WW A$kJ$#(HMcZZ`}>ZN [-5$` | -cUVP@%!i3-c cȂ$" A$,c c$"I$I$,c c$"I I,c c￿$"A$A,c c#hЊ5 cJp`$INA_5-9Ij-* 8I\z.>W7 $|x^UU$"I$I|t$"H$I$|t$"A |t$"I$I|t$"I$I$|t$۠Mè-|s**j#'sZ`XVNqiZ% BI)Th-"/b?:McxX^W M>N,c-U"1LcU\p%4lkcb$"A$I$cb$"I A$cb$"I$I$cb$"H$Hcb#@ 5McHJ`س'O(J_W%Y 1R @I A֭Ф@$P/>t$x^W$"$A ь|$"I$ь|$" $H$ь|$"I$I$ь|$mӶmь|hq/|jϻ'o|`NyO|-r( ix;pk~#'Mo cX^5!s) Cɕ 1iP2j<#3'}'Mcx^WW$"I$Icb$"IA$cb$" $I$cb$"I$I$cb$"I$H$cb$" Icb$" I$cb$"I$ $cb%$i*1McR``"'M̓(B^ח%>ɑ1A4)k9/ ;$'M$|x\VW$"I$I$|t$"II |t$"H$$|t$"H H$|t$"I$I$|t$"  |t$"I$I$|t$"I$I$|t#  t c``)ryϤZ %3 I." 5kxxH͝МZ5%BIdɑu==#>j2'5|xX\^$"A I$|t$"@ A$|t$"@$I$|t$"H$A$|t#"HH$Q|s$"I I$|t$hm0|sj!s>PZZzs⪫(6<Z_W^$I HJ_յ 6ɟe pZ7 1Giqk `^'룑I{ [x!OMc [$"H$I cb$"I$A$cb$"I$Icb#۲ Mc,[ }"?J7_ ɑ1Jk"+ hBkRkkW:yOTi5.-2 u$sx^W p$I$|s|_UU1|mc#"AI$Q|s$"AI$|t$"$I$|t$/ A|kW!v>mm|k" ht c^xsФ+c#%*d]i -[_~'Mik [U!I"lڰiMc,[ I `Mc,[ I öaMc,[$IMc [U%I"I$IMc [U!IMc [U$I"AAMc [U%ۆmMcR X J%/o߰k$]R^W7 InZ ;ITZY= F@ШTQx^.h?~$sx^WU@0|mc 1|mc1|mc1|mc@sk@# Mc5_ ?Ф+c P)mkUVXx I$t&mk,[ @kJ   kJII$kJ$"IH$cb$"IH$cb$" $H$cb$"I I$cb#1McR`!->LkHJz^W56ɟ/HJ% 9$ڒmkx^-P;s [8zI$ c $`XmcUWXb&!m&]ӶmcMc_|r$$H 1McR`&L/HJ_W5AI\BҜZ+ =#k'mcx^W$"H$A$cb$"I$H cb 5Mc,[ $H$kJ IkJ$AkJ@I kJ&h" [(JXX\:ɑɐK{ ! 5'|$qMcx\VW ֮I۶mk,[!Z#MkMc U#O.${mcB/#mRUj#'NiJUU* 9yeG(J-6Z]:P [xX$$ܖMcZ*$@wMc [!L$H$Mc,[I@$kJ@ $kJA@kJ99,[HJXXXX-ɐ 0 k &h'r";s,[\\\\@$@ kJIkJ A kJH kJc)Mc [nk ȍNHJ5555/pMcbbbzH:,[R~R' [RW d; [JU $A$' [iJU? [(BU=c$ [BXX^U% OLk c )$kB^mZBU DI{(BUU*InBU ?] 9U Ж$nۖ (JUU  Z?:sBxz2X c!)0І?'Mc^V+Ķ|,cUU&{,[UU's,[UU=s>siJ1 iqskiiJEnk [W@$Mc [@kJH$IkJ I kJh&h& [(Jؘؘ)!B!B0{KKKK  I$Mc S$"A$I$cb$"$ $cb$"A I$cb" McR``ɛ-(J 4$34CS0Qmcxpp`$"I$H$cb!&c30C2kJMc,[H I$kJ5,[IJp``,{R ){"?h>s,c^\\XI@kJm&,c [p >,ciJ~ic$,[(BzU:I{(B_U I aNB55 5I$I~ sU3IH(x4y7pkW3$qMc_U-:o1,[x_UU{&IJ %7*dI kxxz'"I&k&kMcU_V\$"H$I cb$"I A$cb$"I$I$cb$" I$cb$" Mc [`}2?OJ_#I|I${rh `'Ф(B_' m۶miR-<I'0@ќ0 `@$ |$Ӕmcx^W'"h$I$kMc\WUU ٚM;Mc,[~!ii&kJ$"A$I$cb$ѐ`McZ^x}>ZnZ-"IN cW\`$iJ-c c$$"$ $nckb$!i&A ,c ck#`Ъ5 c(Jx`$IB_5 =IĉSZ* >+U|x^' X*i1|s^z!|k1.k-7% K/|UUUX$"I&I$|t$"I$I|t$"I$|t$ж 61|s*j$'sZ`XVHqVnZ% >I)P@N&b>" 'Mcx^W$"@$@mcMcX__#HMc [x |26 lM,c)U .LcWX%$ NkMcUuT$"A$I$cb$"A$I$cb" @1McHJ`#'N(J_W%iHJ BIɑ7C$'ֵx\^&"`q$$" I$ь|$"$I{$"I$ь|$"I$I$ь|$"H$$ь|$"I$A ь|#vB:IpZ#s" {*x` 4܏Kcx !1s/1I$@1/_5iyİmkzzo$ Smc,c$"I$@$cb$" $ $cb$"H$H$cb$"I$ $cb$"I $cb$"I$$cb$" $ cb$hW4Mc,c 9j$,c(B`pXBII1hR+*? јU0|px^%"H$i$0|tVYU$"H$H$|t$"I$I$|t$"H$H$|t$"HI$|t$"A$I$|t$"I I$|t$"IH$|t$"I$$|t$"(i|kbꨪͿz殜Z%7-II$2_5 #1R``` !ФR @ 9BU-1#p?L$|\TVW$"I$$|t#"@$AQ|s$"I$ |t$"I$H$|t#"H$A$Q|s$"I$@$|t$"H$I$|t#Ȁ@t,c`sФ [ 5 ItIdRϜ{@?IW4h(`7$\ $mc^W*"`ǮkMcxWUU$"H$ $cb$"IH$cb$"I$A$cb$"I$Icb$"I$H$cb$"II$cb,[R`~B'nR %W ?냀 3 80|bz~VL8L ;|s_W_~H$0|nc1|mc$"I$H |t$"H$I$|t$" $I$|t$"I$ |t$"II |t$۲4h|sjꪢ!#X/,c7Zz'II$ [ ( @/mcW_~%"i$IR4mcMc]WWx$" $H$cb$"I$I$cb$"I$I cb$"IIcb$"I H$cb#"HkR# EѶh[ Mc [$ Z&McHJx^ `w1hR-%5-I$I$s亂~AIT1Bu/>%$U0|^W+!]'r|\WUUI$I 0|mcI$I$1|mc@1|mc1|mc@1|mc@1|mc #skhZ Mc%W_ɑO${`" @McUW^XI$H$mk,[ kJkJ!mtmۦMc,[ 6I$Mc,[ 6l$Mc,[# @8:MciJxP&M$s(Bz^%:߿u ќZ* 7&+ڒmcx^* M۶ǮsMc\WUU$v-ֶMc ["Ѐ@McZxNL'N [ %$pILcUVXJ##>|$,c(B`X6<Iɑ R%  =Xڲmcx^)"?'kMc\WUU$"A$H$cb$"@$I$cb -ڢ.Mc,[j A$kJ$ $kJ $kJ` (,cR`Hϟ (J56!ta6scp#pNk,cTVWUH$AkJII$kJ"I$I$Mc S #ֶI$kMcUU P P#:{IB*~^=I$Is+!)4 $mpLkX%O.RU*`'RUUж<̓JUW@rm?lkIJU@ cHJU@$ [hJU&N$ cB*+7pK+czx"$$kRWUmm',[HJUm$,[HJU0$ [(JU*@O?,cHJU Ibۭ{iJUUKdIN(J55-!$nRz^ Ж$onHJUUЖ$$ HJUU $ BUO- .BUI- (JU I=.RU"ɟ$v `Ϥk Ṽ"4I$ l{zp'IbINsW"IRr iOkU" ? ncU#-@ƺ{McUP#5P5 [Bpppp(OZ!))'>|,[\\\\ $lcRZڠlcR Mc [j cHJ.AA0sBBrMc [V @@Mc [  kJII kJ@$$kJ`h [(J/!B!B0s  dMc,[$"H I cb$"$I$cb#"H $kR$ McZ@@ ʍNHJ%%%58 hiPkpbb%"m$I$mcMc^VwT C5C5Mc,[(@Mc,[  kJ McRh`iJ %)M:sBxu$ [B_['I(BUxw[-(JU+NB(7IpB5y%@6qmk W46$qMcWU)Ⱥ'{,[_UU$Imc [U$lcR$iMc [U9P/,[IJXp`)?WoZ-">{mcV^Xp$" I cb$"I$I$cb#"@$A$kR$"I$Hcb$"$Icb" P̀ McRx`` )HϜ(J 5 O$IR`= hќ{p@#X>~$mc^WU$"$I mcMc|WUu$"A$Icb K$K%Mc,[~!1kJ$"I$I cb$!A icb$#рHMcZZh~2?bZ -"I$,cVx%$I{-cUUUT#h<: c(Bx`$In(JW5 ?Iɕ Sb* A$+U0|x^-"?<|\WUU$!E6AP0|s"c|kzǒ.k # .|UUTS$"I$A$|t$[um5|sj"њ3'sZ`XVH1{wnZ% =I1`@N%c<#$ӔMcx^W&"`8I$kMc^UUU$"A I$cb$"IIcb$c36Mc [耀` ,c%UU{M>-,cX-$ OMcUUWX" 1McHJ`#'N(J_W%a0IR-=I$Io7AThֵxX,"?N򔑄\VWU$" $I$ь|$"A$I$ь|$"IA$ь|$"I$@ь|$"II$ь|$"I$I$ь|$"I$ $ь|$ )q@! 5b'p cpXVɝ߱{Ϥ+k *<I 4h2sz<#`>O$-c^WU"͐H c UUSM,> cWx & 4Iܔn{ [\$!I"I$cb$"AI$cb$"  $cb$" $ $cb$"I$I$cb$" $$cb!>Mc(JxXHyN(J% ? B&Uop0#p'N$|\VWU$"I $|t$"I$I$|t$" $ |t$"H$H$|t$"H H |t$"I I|t$"I I$|t$"II$|t$"I$I$|t$"I I|t j&9sZXxR1 /S0G5єZpppp@s!@hHupacr'"H$M40|tTVVe#"I $|t$"A$H$|t$"I$H$|t$"A$I$|t$"A$I|t$"I$H$|t$"A$ $|t$!ME|tꪪ!9|Zxx)b 1ITФsz\Xx)"6kMcVWVx$"I H$cb$"I$$cb$"$I$cb$"IA$cb$"I I cb$"A$A$cb$"A$I$cb@Mc,[X@,cRx}N?կR -5$XI$Ϥ/\z !hAPs_~~I$I$0|mc 1|mc$"I$I |t$"I $|t$"II$|t$"A$I$|t$"HA |t$@-|k`!9s$sZ`x^ /U Z ()s\p`)"d>XmsMc_^z$"A$I$cb$4lېuS9Mc,[$" $I$cb$!m&M6cb$(HMc [^xN2'N [ 5L{ @!Th趱 [^,`ms [$"A$$cb$"AA$cb$"H$A$cb  X-:Mc,[z I$kJI $kJI $kJ 0P=,[B`pX8IIHJ)+8R9#?McpxX\@$kJ @kJI$kJ kJkJ`&h,[(Jܜ9 Ӕ̃)5"h;{'0mc^VV*"Y {sMcU*Hm{mc(U'i$Ik(U#OP>NR_6I9 ڼ /I# IO{W~V)I$$ { )ɓ$$ Osk /I$m+AOls*"?N [9I$yBu.II/{+Ib|UU-IҒHNs U,IBn IosU+ I1/IBz#]Z )6O M[x# I%|McU"%i|,cU%q{,[U,`'|,[U, кdS6|Rza_.(B 7P93>-cxxx#$I$kMcUUUlBMc [^дmNMc [UUUuI4lclJZ5P5,[Bxppp'OZ!) (:0,[\\\\H lclJ lclJ&tLc [h&h& [(J,A!B0sM$M$mk,[II kJ@kJHkJAkJ`h [(J-AA0{KIII I-дMc,[!)M$kJ$"I$I$cb$"IA$cb$ 6#cMc,[̯zo(B74A!KPs@@&"N$'kMcWVV^#$$2Mc [xHH?,[iJ^i$,[(B~U8:I/(B_U-)GnHJ-XڶniJW+1I$Io*k- 3IWips(z3 @HqmcW-X/>>|R8^_)) X/lk(O?s,c^^\XIH$kJhMc [VZCMc [UUO޶Mc [UUBMc [UU #@,[R`wٛˋ.HJ 7*t)Ok^~x)"}dkMcWW^\$"I I$cb$"AH$cb$ Ӵ1Mc [#h>Mc(J^PO'IN(BW-IhR5-A9A6s z;#O?O$Mcx^WU$" $I$cb$"I$H$cb$" $I$cbX%[&Mc,[z!I4I&kJ$"I$I$cb$"I$I cb$"II cb#͐@McZZ蠀}>ZѯZ -)I$ [Zb `$۶iJU*=Iɕ 2)k* A $hШu0|x^-"O?|\WUU$" $A$|t$"A I$|t$"$I$0|s$l|s^z'i k7$Px.sB"X&|Rx^ HعZյ =I!@@ +`<#t'ҔMcx^W&"H$I$kMcVUUU#"I kR$"H$H$cb$"I$I$cb$"H$@cb#C Mc,[$ i{ [%_9z>+cz5&IJ_WiHJ  $DɐBv 6"~$T\^WW$"H$I$ь|$" I$ь|$"H$ $ь|#" ь|$"H$I$ь|$"I$I$ь|$"AI$ь|$!i$M6ь|#͚3'bx^H9 c-;ə/`Aќ/,b9#/:s'r-cx^W$"@$I$-c c$!I$iӠ,c cw_" @{Z5W_yb` 5"@ .,cUU\`#AMc [ $"H$I$cb$"I$I$cb$"I A$cb#h 1McHJph$INHJW5 AIC-?%A$>t$u|x\^W$"@$I$|t$"A$H$|t$ڢX60|s$6 V'|s*W$AT?|k_$ H?|Mc_%  '| [U#H$'tZU# mm$|RU"~$sRWĶI0RU+'IZ_UUٖmٶ Q+k 6mײsZڒ".II2s A"S9أ>U0|pxX\$"I@$|t$" $H|t$"I$H$|t$"I$I$|t$"I$I |t$"I A$|t$" I$|t#"I$$Q|s$"I$A$|t"tk`N's>Z' II$1 xȊ+&@BNnc_~%"i$M4mcMcW^|#" Icb$"A$Icb#"I A kR$"I $cb$"A$I$cb$"I$A$cbI$I$kJH$ Lc [ #> [B`XؚJJϤhJ !'ɕ0|^\p!:0|s_^z!II|s߿!AI$|s mۢI${ l mѶI${ l!I$|s1sk` 5j$sRx^2I$Z 9shM*">mc('\kW\xj'!J3 ծkMcWW^x Mc [ $kJ kJH&-,[R@(5k$,[B`^ KܹknHJ% 6I/@@Ҝ..b7Ê'ҔMcx^W:mMcRXx~ZoR %!Jy|V^r m6[[|sW^xH$ ssH $0|ncH$0|nc mi$|k Aۖ$|k!H$I$ts@ 5sZx'OR^W%5ɟ?uZ+ ,}">X{(XII$mk`  nMcUUVXI$M&Mc,[  kJ@1,cIJxس'I(B_W%1(J 6 )P@M[x*$|Mc\WUU$ $kJIIkJ$"$ $cb$"I$cb! &`$Mc [XXTP];mͶ [R`s2> R %U-IĎZxpw䯜RWp" mkZT$°irMc [ $"II$cb"L$H$Mc [$kJI$@kJH),c [@`&K{(B^ח789B˃-1p'}'Q,c\^VW@IkJ$$kJ@$I kJMc,[  Mc,[hrLk(B;C)B M+"psMcTVVV$"I$I$cb$"I I cb h&CMc,[`h c(B5KK )7||McVWW&ж$k,[W'ж$s,[UU)q?s,[uUL{B>7778!jj{jk'Xs,c~WW%ЛOkMcUUU&<)mk,[ $I$Mc S1,,c(B````".hR 3>>qMcXXXX@kJ kJkJH  kJ ,,,cJ````ɑ\ɕ\(B /99q,cxxxxH$I$kJHRMc,[ Mc [O.I4Mc [UP5P5,[(Bpppp*ɑɑOZ ! -?h>0,[\\\\@lclJ$lclJA IlclJ>> [(J*))0{ύ"K$J$mk,cTTTTA$H kJ $kJH AkJH$kJhh [(J-AA0{IKII M$M$Mc S (Mc,[ꪪ!)$I$kJ"ض$Mc,[*!mf?Mc [Uh&`&sB$9TI$mkxz ֐iJ_W$ (BU NoN(BU<I$moR:IIЪx1I$msW2)h#qmcU4$qMc~UU'X's,cWUUhm$kJP# ,[iJp` iR %*T{McXxp`HHkJ@ $kJI@kJIkJA$H$kJ@6mLc [ꪪk.&5sIJ^$|ɝФ r-X 0mc^^zx$!I$I6cb#@5MciJx$::M$s(B~W5H6˒HJU 8I$s /s26mskx^^^%"I$M&mcMcw_$"A $cb$"A$I$cb$!M$I&cb@$@R$Mc,[ I$kJ$"I$I$cb$"I$H cb$"I H$cb$!EIR4Mc [! #&,c(B`XvoIIJ % BI$I Slr. A4hШ0|x^."&䒌|\WUU$"I$I|t$"II |t$" $I$|t$" $I |t$"@ I$|t$R- -|kh rOZ .pn߶mZ<3I.~A$P/:'mcx^W$"H$I$mcMc\W_#"@Hcb$"II$cb$"A$I$cb$"I cb$"II cb$"H $cb"@0McHJ`NHJ%r<IɑS `<0|x^+w}>U" N+$!iiь|$"I I$ь|$"H$ $ь|$"I$Hь|$"I$I$ь|$"I Iь|$"A$I$ь|"#>p c`X Hܹ}Ϥ c׵%);I|pҜM/># ?ӔMkx^W&"$I$-c c$"I$I ,c c$"I$A,c c#!H ,c c_"" cZh N>hNb U NN,cW^ # Ns,[\$"H$I$cb$H*1McR`3'MќHJ_W5,МR >Dh+>T [^'mm$RU#$|R_U@IsRU+IМZUU $IRUИ$[ФZUU+KϤRUIvZUIuZCKsI 1L(I$2 mݶms:;:A$I$05I$I$Խ/`B?I u47:"#'s?|\\^V$"I$I$|t$" $I|t$"I$ $|t$" $I$|t$"I$I$|t$"I$A$|t$"II |t$"I$A|t$"I$ $|t$" H|t" sZx` vZ)*I$q{^zz+ksMc^^x$"I$ $cb" I$I$Mc [*" I$ $Mc [ "!I$I$Mc [!MIkJ$"I$Acb!$Y$ 6Mc,[z&Z&,c(Bx^p{ (B׵- *ɟ=hs I$~=P{+y|W^xh"Ib't0|s_~I$I$0|mc 1|mc1|mc1sk` 5j$sRx^0IR*6`A|x5"`OO$Ӕ|x^UU"Ѐ@|LcxhNZ'.Mk 'dAPokUV\x"M$m&nk-cUWW\I $kJ @5,[Rp,:L$s(Bz^5 ɟwn(J 8ə4h{"`5 ',cx^WH$I$Mk,cTUUUIHkJc3т@McRzNL'nZ %p\|WWZ` N$`2|sW^xpIssI0|nc $ 0|nc $0|nc$hҪ5sRx`$I탪R^5 2ɝ{3 k+ 3ТO?Tpx^"Xmsx}>cФs)5_yI$lsp  ФMcUUWX$iЪ5,cIBx`$I(B_W%#R 7AҜk x/C'~$0|,cx^WUI@$kJAkJ IIkJ$"I $cb$"I I$cb#Mc [^V^VI $ [Z $A [Rx耀t26 R 5UAQ{ 9I$Q+cZ"rQ [UU^%4I픷McZ !hmMc [HAkJ $ $kJ 0,[B`HiN(J5% 8vh(kbp h$MۦMc,[ $A$kJH$ kJ  kJ kJL24C3Mc [HJ̃B77779!jiq{BC$`nk-cWWW!$I$kJ$ Mc,[!ZmMc,[h&p' c(B21B)BqJN$:#;k-cTTTT@ $lcRlcRFN0Mc [jjHHB77772aaPs@@BBM$I$Mc,[  Mc,[$"I$ $cb$"A$I$cb00,c(B````!.hR 2>>qMcXXXXH$kJkJ!I$IBkJ co$ Mc,[ ,McJj```.(B 0 qMcxxxx!O4 Mc,[!IҶӆMMc,[!I6:lMc,[ꪪ!I$IkJP5P5,[(Bpppp*ɑɑOZ )!-h>>Q,c\\\\HlclJAlclJ lclJ99 [(JX.  0ks#'r'k,cT\\\H A$kJm E$Lc [ @V;Mc [W:-cR~`rlk(B,A/Rx ml$McBU~$,[BWI$sBU V'I-(BU $MIJUUN$ (JU0I$;OU8I|_6MFpLkW0'PJz_4 TɗR8-c3qMc^^^  $I$mk,chUUUIkJ$IkJ$kJ I$kJH,cZ@riJ%5*A) /kzx"S;t:mk,cUVTT@kJHI$kJ $$kJ $kJH kJP ,[(Jp`)b)lФhJ ,Bmk~~xp&$Mc(J^`$IHJWյ y-HJ ?I|`AҜnN C>#'mcxW+3#s [^_ I}> [ %& $ mcUW^x%"I$MZ4mcMcW_$"I$I$cb!c8c:kJ@$@$Mc,[!I4 $kJ$" $Acb$"I Icb$ 4Mc,[#3'Mc(Bx^H}nB5 "A!jI3/{v/#'|\VUU$"I I$|t$"I$I$|t$"I A$|t$"A$I$|t$"I $|t$ H&,|k` 9s${Rx^IZ5 ;h{x-r>b?o [.W$ NmkVZp& mØmkMc_z$"I$$cb$"I$A$cb$"H$A$cb#"H $kR$"A$I cb"@1McHJ`#'N(J_W%(J =Iĉt|X??$+U|x^, C{r|\WUU" Z@Os-yN|Ï#@ . -%H$WP| $"H$I$ь|$"I$ь|$"H$I {$"I$I$ь|"` 1+cxp$IN cV% @Iɕ ќ* 6H>Ӝ-cx\^#=NkR$"A$ $,c c$"H$H ,c c$"II$,c c$"$A$,c c$"A$I$,c c$c(A cZh!#@nb-UU}:n,cX #@I昻.R^`!#>}sHJz^WɔJ4 HJ- +II$/j⠀xZW*IBKk"I1 "*I$2U0 $1>__?{R "pJ9\|W^X` kۤm|s_W^$I$ss #I2skj 5k$sRx^+IZ+ 6`A| x/'O$sx^WU h$I$|sH$$tsꪪ *s,cx:NLc %#$HJmcUW\X` :,cBxPC'I$(B_W IܿknHJ-5 $h{ `5X$ӔMcx^WUMc [VUU;?Mc [UUU(ILc [ I$Mc [) [R`O'-Z%`1m|UW\z N$t8|sUW\xI 0|ncH 0|nc+6sZx`$IiJ޿/ 6I{A3*s/ 4'x^W"O߲p\WUU$Pqsx|">Ps %WyI$sr+`2ϜB_(߷kФR 49Ҝk x1Xϟ$Q,[x^WU$,[Z Mc [IIkJ kJ$"II$cb$" I cb#jMc [XXXXI I$ [Z "I$I$ [Z 1 [B``x) (J mѢI$I$I$= c^ꪨPnyqZUU^ ,cR+h$Mc [P=`& [(BpX؜9IIohR<#>j2'ӔMcxX\^@@kJI@$kJII kJA$@ kJH kJ ɐ,(,cZ@@@ ȍ.(J555%4 xXkbbbbH4mMc,[$H$kJ A$kJ@ H Lc [p'zKk(B2)B!Bq{HC#h6knk,[||? Mc [UH IMc [U0Mc [jjȍȍ:77772 aaPs@BB@!N$j Mc,[!n݆mMc,[" I$H$Mc [$"I$A$cb00,c(B```` OHR 2>&qMcXXXXA kJ@kJ$"I$ $cb$"I $cb#,,McR````{(J 7#393Mcxxxx$" $I$cb$"H$ $cb#"A$Acb$"I$Icb11,[B````'ɑɑoZ!!))1>>qMc\\\\&MV; [Rj' [R_i; [iJUXc$ [BW.pK?{Rs#&}$k(JWI$sBU V?IN(BU $oێIJUUX$nٶn(BUIB+ l?wZXI$IR N c#I$ {I$d mk1IFh|{,9A6IPkW.d3PMc_U! h'{ [^U! $nkRW!$ McRUm `,[iJ yO̓iJ %%,#9Cc,|McXxp`Mc,[A kJI$kJ $kJI$$kJA HkJ9P [HJp`'ɐɕZ){&{McV^\XIIkJAH kJ $kJkJ!I$IBMc [ *5,[Rx JϤHJ%%5  itQ-xʪ=91KsI$Irh_?ɛh2|z>#,$Mcx^W&"p$I$kMc^WUU#CIMc [" hs [W_!9}> [ % {Mc_%"I$M$mcMcUWx!db$C;kJ@$@$Mc [ A A$kJ$"H A$cb$$I1Mc [`"Ѣ$,c(BX HymHJ5 @Iɛ,/;T`px!x=o|'V^# -|W^j&"Ib0Cd$"I$A$|t$"I$I |t$"@$H |t#-|k`" :t$sZ`XV,I$IoR% AIB{.x>$'O$Mcx^WU$&iMc [x!t2: N [ 5U$ NmkVXx%'kMcW~{$"A I$cb$"I$I$cb#"@$I cb" @1MciJ`3'N(J_W%HJ BI Bu&AѢOTtx^+";vR|\WUU$"II$|t$kum|s"Z/|s ?N>?RN|/ N䏔.\$ ANP $"II$ь|$"$H$ь|#@ 1s`#'MO cX^5@Iəs- > 4hЈNkx^,"_羓$s c\WUU$"I$ $,c c$"I$H$,c c$"@$I$,c c$"I$I$,c c$"I$H ,c c$"A$A$,c c$" $$,c c$hӶ躵,c cf߾" R . [5UUU =`ФR IڶmmJs Im"05LC?I$ќ|6I$@2k6I I:_3I IpW6 mP/U41iӔ0|U5# I$|U4"0$Ӕ|WU2"$|UU/#I$tUU+"yQ|UUU(! k};1|tUuU$Z&|Rx^HĉZW "I$I2%cCIbuOxJ'ϤMc7mӶm~IҶm Q zMۊmӽ{UꪠI׭rZUꠀ `;mKZUФRU`ZU_ВpRU!@n$sbU^"0I-|ZU# %t [U$ ܖ|,c$$@|k " P*s,cp`mۻb %5 8mۓϤ[o(d@! ϤkUW\x'"M$M&kMcWW^X" I$H$Mc [! kR!m 4Mc [xb$ [(B`\"OɝB- 2yuh{/x6X??~$Mcx^WUiMc [#& ,c [p# R5W_ Z `Ϥ|UWZr H(|k` 5jsRx^+IZ-+ 2`A|x+C?璌sX^WU"ɒ(ss說ask$sk&IdLskꪺ s,cx9~^?nLcx `'(JW7۷kМKs "3  $ќs"x1P>}$Mcx^WUH$I$,[ [ lclJ @lclJIImcRI$NMc [Mm`Mc [#H,cRzG磃NZ -!@Ot_~ m$K6|sUUV\h,:sZph$Ib^5 4WPASJs+ 5Č'ux^W#`Ͷm:p  /l IdY6pP|I$A$k ZIP|sx}:s)%Wm۶mrL(\1/x0X>C',[x\^^m&I [R誀I4ML[JR6w<,[Rߪ)@ ,[R  Mc,[!6M۔$Mc,[! Mc [U#R+AmMc [U$$)HMcR!# :mcIJz`$M$-B_׵%:Iɕќj ? ШҜkx^$O&XLcU iI$- )$# Ik(oRZ^Pnq$ZUU\HɝHJՕ%9I9bҜ.:h./|,c\\VW H kJ$@$kJI@ kJH kJ$HkJ (,cR@`` t.(B%% 40EC4qmc``pp!I$IkJ I$I$kJ I$I$kJ m6m3,Mc,[jHH{B77774!B!Ap{KKHC"K$MMc S I$IkJ I$IkJ!$C2$)Mc [@ ȍȍB77772 a`skkcb! HMc [" II$Mc [*# ) i$Mc [! kR 01,c(B````.HJ 2>>qMcXXXXA @kJ kJ$"I$I$cb$"I$Icb"((McR````.(J 5#B#4B#4qmcpppp$"$H$cb$"I$H$cb$"I$Icb$"H I cb#:N [B`xW-#ɑ\əoZ)*X;?NJ^WU $mn(JUU+X$۶mBUInBUI@By$IksI$IB .âWI$q 쯜Rz.I$ϑs7I򻀶Мs^/I FkU) l#i/McU'm$0 [U%4| [_U!Fҿ{ [UU3'|{iJ6+ iJ0kb{k!ŚiMc S$"$Icb$"I$H$cb$"I I$cb$m. Mc [CMc [ꪪ3?r̓iJ570hia|mk``I$H$Mc [H@ kJA I$kJI AkJI kJkJ ̀ h,cJ`ᘍiJ %%)Ha{Mcp`H$kJ $kJ&:,cZ_H[',[(J_6N$,cHJzU-ؓn(JW/K$0iR%  $I$ _;I$I\VW?9Akx9#P>O$Mcx^WU%"H$I$mcMcW$"A I cb$"II$cb$6mMc,[" # sZ5_#x> Z -'$IJmcUU_\"$vB$Mc [L$@Mc,[$!iE&cb$ @1McZ` 5tLc(Jx^I@(J-=Iu? ? !4hШx^1#'O$3\WUU$q|xk5 ho| W^% -|WZh+%(mH|t$"I I |t#`1tk`$/>|$sZ`XV8I$IoR% ?pAҜk x7#C'$qMcx^WU$"IIcb$"A$I$cb#@Mc [p#3 [ 5W# NmkV\b%&hIkMcW^{$"H$Icb% i5MciJ`3'MNIJ_W%qM6 ϤHJ >I\`@T^@#Ŋ'u1|x^W)"O'Q|\UUU$"II|t$"A$ $|t#"AI|t$" $ $|tꪪ##i|sz!s hns+U{| # SO#1|`"#>s$p c`X^.IɗМKk A )DhШnkx^1"'w{-c\WUU$"A$I$,c c$"$ $,c c$"I$I,c c$"I $,c c$"I$A$,c c$" $$,c c$"I$ ,c c#"I$I nkjR$!mA4,c c$ Z& cBx\I QHJ%%- I$IԽ/><I$I$Խ/Co71LɕRp~X1"K|^^z("$I$Q|UUU&" $$0|tUeZ%"H$I&|t$"A I |t$"I$I$|t$"I$I$|t$"I$A |t$"I$I |t$!i$ $|s"X&|Rx^Hܹ}ۯR5 'I$I2l;CIBP/x<"O?~4|x^WU% *hs,cx0mk)%I$ $ӽ0/=7I$ɑijb7I$@S\|{-I$  U2I$"U,I$IVWI?Io eI$I$m^?UA$˃~IZ_mIФZU 'mФZUWORU xbZW ?#ɑI$zp(HNNc_~# I Mmc,c!1McRhЪ9s$,cBx7-I.HJ 6 9Ak x2O?~$QMcx^WU@kJI-c,[H kJ3$H,cZp3 ϤZ%UU O̓*k )L1Jxx.IZ+2`A{ x-`䲌sx^WU I$6Hts I& ts sk.MskIskIskz# Mc5_ Qls7Idh{z1>}$qMcx^WU!$HMc [_j? Mc [UU,I ,[Z@ۖtA,c [߿ I$IkJI$I$kJ kJ@kJ h,cRx#:oZ -&es?Rxh}o cW-4WP@T{/ 4Ì9s$tx^W!`$I$q\WUUC `фσ@ @ svB;fbptIIptHptc(`P|sx|": ̯k 5_< H 6msМ,c_WV\I$m4lclJI$@$lclJA$lclJA$,[Z* A $I$b,[C>`,c [W_^^ $I$ [Z I$ $ [Z  a*5 [iJ`P&L/(B_W5+n(J 5!PiҨkp\."?<|Mc\WUU#ђ&IMc [ s9 h0,c-UUO&rks*II$Խ/`>I$W2MӶ Ϥj.$Q,cz^x ВI?iJUUPR?sIJU ImMc(JU$%,[iJU ۔,cJ*$ ,cZU .1,[(J``.B 6 9؃=Mcxxxx$"I $cb$"@$A$cb$"H$I cb$؂)-Mc,[HȍB77778 aap{@C@@%"h$H$kMcVVVV$"I I$cb$"I $cb$)Mc [ ȍȍ.B77774`v`sbbbb$"@$$cb# I$ Mc [ *" I$I$Mc [! kR 01Lc(B````OHJ 2>>qMcXXXX@ kJI$IkJ$"HH cb$!( I4cb# 0McR```` (B 5+=5qMcpppX$ ?McR_" $MciJW"H#$McHJU# m$Mc(BU"I$IR N;w/I$-OU/I$.Ф0U*I<կR1Is!pBPu) ocW*q $i0McU. $Q,cU-/=l۶0MczUU[C6 kIJ`zz$I.HJ ,M?0R\Xض ,[R ,cZ555HPMc,[kJ kJ=,[iJxp* ){ k &sMcWVV\$"I$$cb$" $I$cb$"I$I$cb @$H kJMc,[j>9 [iJp/!tK Jk &kMcWVTTE$Mc,[@$Mc,[H$lcRa@U%mcRMH,[Z* `4Mc [ꪪs:siJ7-'Jt/khk"i;?kHB^}$ [(BW%P$.(B_UI]Bկ 1Kn۶ rjsI4I$"$01w>IɕxXu; !4hШҔkx^. O$0|Mc\WUU!I4A4kJ$! &M cb$"@$$cb$"I$A$cb$"I I$cb$#6 Mc [! {Z5_$TO'. [⃍"HsMcW_~$! $@cb& $HҨ5MciJ`!P&M(B~_5I$HJ% @IA׵_/>bMx^,"󔑄\WUU$"A$I$ф$"I A 1Q$R$Aq/|`$l22 o|^x$O'-|TRK&$h5|kh#/>|$sZ`XV?I$IZ*;)P@Lcx5"'$0|Mcx^WU$"A$I$cb$"I$I$cb$"I$Acb$"IA$cb#@Mc [h#3 Z 5_$ Mc\x % h5mcRx3'NoHJ_W%qI$ hR-AIɐOuϤv-%< s'Utx^W"h$I$0|s~WUU1|mc $I${ l$l|sU$"I$H$|t$"I$ $|t$"I$I$|t$#Ӹ|szj l"6P5Mc/__7lkJ:М,cz^+I$o c- )ə$Ȃ/m/--c^V\p h%[f cZ訫!$$IBh cZ#-cZ$"I$I,c c$"I$I ,c c$"A$I$,c c#"A $nkjR$"HI$,c c$"I$I$,c c"Ў9 cJ`xHɟ(JU% !EJD "$ €[;I$ɗBQp x~$I$H"'lk%*D@|zz& vL۵ 1|tUWWT$"I$@|t$"AH |t$"I$$|t$"I$I|t$"A I$|t$"A$I$|t$!H"h$0|s"P&|Rx^Hܹ}ФR5 +I$Imr.B BuO.x:#'$|x^WU$"H$@$|t$Cnm|sꪪ" h|Lcx9Qlk @$A rz/J dQ\^x+"q|_W_. в|UU0#ɓ$|UU0"M| U1#*I<|U.m|0I0|u.I Фq3U0IR Фq.I$Ф¥U+I$k*^ I$I-9I>FR,cZ(\I$sX`&hz-{Rx->Lk(Jz^51IR+4P@mk x.O?O$|Mcx^UUH IkJkJA$AlcRkJI$HkJR#$ ,c [p!3 [%UU *c 79s36'x2 )LkVW II${ l!mI$|s!I8&m|s1|mcAI 0|nc@A0|ncH$I0|nc#$@skhZ9OR/^'NOkxzr!M&h۵mk,cVXX`m6IkJ $kJ@kJI$IkJkJkJ kJI I kJ `1,[iJ`'M䏔HJW5Iibr )+II$u1֍1SpV^X$[,p\^^I$ $qp .t ҄΃O:0 pP|__|y)kpP|UUɓ. pP|UU# ,ps`-6j$|Z`x^"ɟ} c O'Kkh $iSM [UW\p?Mc [U_IҶ$IMc [UU$H,c [ժILc [:?Mc [VVVWI $ [Z  $h62 [Rh#&{$LkBz^5 ɟhR% .pAMcx'hٗI0|,c\WUU$"H A$cb$"II$cb$d3mMc,[h [5UUI$|=Q+k 5  0I$0,I$I$ԽqQUHԽ0nI$I$Խ_I$qI6mQ̃^"InRW P?KϤ(JU $]iJUU b'oϤHJUU!ɑߏiR 5Ш'|iJ_"m$Mc(J_"0Mm$mc(JU# -LcIJU" @$$MciJUȭ̝-(B77556 ap [x$Aۖ$McRU#"$McRU#$McRU `h?McRU ȍ̝.HJ55557xך5P [z ?McJU $$MciJU $$MciJU! -$LcIJU 5l$Lc(B`x^NHR 0 M'R^W Id?,[(JU m$-cHJWU"4$,cHJUжI߭sB]R'In(BUU yw֯iR&@>o(Bz^(h$mnN(JUI (JUI iJ I|Фks 24$Q,[U.Ķ?0|McUU+fI$sMc_UU"-#>kiJ^^1 !KOQ{$/zkMcTWTT@kJ kJMc,[ McR```\{iJ .أ=?|McXxppkJ kJI$I kJkJHA kJ P0,ciJp`&IId{HJ +"T#<{Mc^XXx$"I I$cb$"H$I$cb$"I$ $cb$"H$Icb!I$H&kJ P1,[iJp`( ɕd{R +&=|McV^\XH$kJR@Mc,[ꪪIMc,[mMc [ꪪ:McR^@[',[(B_=M$,k(B^^W-?woZ  HlnnHJկIob-(I7'@sz"oМ97wɟs: I$I$0OPBI|pBr~@%'kx^W+"'ϓsMc\WUU$"I$I$cb#"I$ kR$"A$I$cb$"A$I$cb$"I$H cb$"I$Icb$"I$I$cb$6@Mc [h [5UW%T'-[ %h[6mc(Jx'I(B_W-ɖ0hR- AIɕ䵵m*~?$Š'x^U'"h$IXVUU$"I$I$ф$"I@ ф$" $ф$"I ф$چmqP|pP=OZ xXZx` Iv$G Z% @ !diᖎkz0#'~'|Mc\VWW$"A$Icb$"I$I$cb$"H$I$cb$"A$Icb$"II$cb$"I$I$cb$P( Mc [`9oIB/_6ۯR^zR 9I& h2p*zp11wO'&䘒Qs\~I$I$tsUU_~  0|nc 1|mc $0|nc!$I$0|mc!HI|s$"I$$|t$ H1t,c`!&MRx^5 !irKk- "?Iə1zܷ? )T`Шkx^0X3|Mcx^UUN<' [)5%pJIď,cUVp$&i -c c'%"I$I&nckb$"I$H$,c c$"I$I$,c c$"H$I$,c c$"@ I$,c c$" $I$,c c#H(1 cJ`h$IJW5 i$@ӽ{)**m6MϤ(*|~?I\1@@2pz>! 'mcx^Wr>iJ'_,I䰜Oq- >|W^\x$" $I$|t$"I$I$|t$"I$I$|t$"I$I$|t$"I$I$|t$!)& 6|s"P&|Rx^Hܹ}ێR5 /I$I2 4B A./x9#'O$|x^WU$"H $|t$"I$A$|t$"I$I$|t$mV|sz誂" PMc^zŌs Q;mq\#d@)PϤ0|UW^p $!I|s$"I$A$|t$"H$I$|t$"A$I$|t$"@I$|t$"$I$|t&"$I$|t*'"ݐ$M$0||UUU(ۺ1Q|mkj#`NoR^%AICoGC XcrjRpxO'l:R 3ɟϤIBxp6߿Z4!0`kx^,'O$|Mc\WUU M$M&kJkJ kJI$I$-c,[I$Mc,[L$Mc [$#,[R`! hjMcR૭# mR-5U O'{ʫ"$HOos~VP$M&tsжi۴ts!ϟs|kI$I$1|mcA A$0|ncAA0|ncI0|nc(sMc`&LRZ^5 qnks \nmkW^P` N$pB:Mc,[A$kJAIkJ ɐ IMc,[kJ kJkJ@,,cR`P&L${B~_5.'J- 69mmk``x?Z %I$I$Qnb#PX1pUU^|M4MSqW^z$A$qpҌs  I /t[qU pP|75 1pk`9{/|b`XV2Ib+ 4 Ta{x kWW{b-񔘰,cUVX6lÐnMc,[I$I$kJ$-[ZjUmú5 [RЊ5j$ [Bx^ɝ߷{HJ- / B&s p*?N$Q [x^WU9,c [UU!PMcZ/%5$"A$Icb#"A$I$cb ئmMc [訨 Z@{R7_I$b c* " %I$I Խq \A$I$ԽqPETI I$Μ ~6I)dAQP{.I'$I1|UU(I$Ϥs(U+I$$ Ϥ|U,I$| U1I$U-I$IiФ.Ƞ?UI$I ( Oo {_ Ӷm b_I niRUInۺmФHJ5?I$R^Ib'H(BUI$@(BU!$IϤHJUItФHJU AHJ5+oI䏜J^Ib۷ -(BU*I .BU(I/HBUIڏ(BU *&I(J%I$IϤ/nW($ МbW,$n Z-O$Pks"+Io [ z0I_Jk)<IҒmҜ{\2I2 IsU6mk U4 mpk"U2m њ>/iJ^@IɐPҜ /:!m?qmcV$h ,c [We'+Mc [UUUmm+ Mc [UUU3: [HJXXxp*Pɔ |b #$ s [VV\-? ,c [Uߪp'$Mc [UU/ Mc [UUl;v`,[Z@{o{ɴ{IJ%557*9o|-cpp``$,c [UeY,c [U}$$MMc [UUԽ ,c [uת`;N Mc [UUB6$@ [R@`@៽;{IJ %%7*X>fc{,[pp"$InMc [UU!'Mc [Ui#?IMc [UZ! Mc [U"BiMc [Ui:AMcRjz̓iJ %%7'P=c{,[xxp`P:,[Z~m#[? [IJ_$ [(B_IlkB+ $ݖB_+I .(J++I +k"/Iߥ@0"W0 pMc~/hb'Q(BzW-P'ɟќ(BzW5 )HJ Y,IϜ { vgn}: isshxX'"k4k&kMc\V^^$"AHcb$"I$ cb$"H$I$cb$"I$Hcb$" $I$cb$"I$A$cb$"HI$cb$"IH$cb$"$I$cb##*Mc [`X x-)B/7 B.[2b^#1{ (<Ish(O&PМ|(^$-V[s%"m"IӶW\p$"A$I$ф$"I$I$ф$"HI$ф$"$I$q#h->p+c`Xhɟ-Z^5 <II싉.;;mcx^$ j2:,cࢭ% {mcWW|%"I$H$kMcUUWV$"I$I$cb$"A$A$cb$" H cb$"@$I$cb$!ii&Mc ["/&,c(J`Xh$INHJW% ,I$Is =Iup>x:"P>}$5|x^WU ѐhk~z TO'.k |sVUUI$H$tsUW_~IA$0|ncI@$0|nc 1|mc I { l& $i5t c` P&MORz^5I+6 c% <Iĉ2l@4;mkx^/"O|Mc\WUU$!i)$cb$ђHMcZX`}>-Z U! $,kWZ`&$IJls cWUUT%"I&i$-c c#"HA$,c c$"II,c c#" A$,c c$ $A*1 cIR`3'MJ_W5)1Z 2I$Ir~>hќ{ x?"}'mcxWU$!H$I$nkLcTUUU! @McRxNR't:nR %5+t@!1|z'"IҴM&P|UUWT$"H$|t$"I I|t#"H $Q|s$"I $|t!X&|Rx^ Hܹ}ۯR5 2I$I29r7AɐAu.x9!O?~?|x^WU$"H I$|t$"I$A$|t$"I$I$|t$" $ $|t$"I$I$|t$(@|sz誂##Z ќMc5_ 粽ks"*ɑI$rNx"'DA0|UUV\&"v'0|teVX$"H$I |t$"@$H$|t$" $I$|t$"I$A$|t$"II |t$!A6i$0|s"5b2'sR`pX\0I$IoZ BVЈ.cpx)"pn'nk c\_UU# cjRxsФjR 7KI{p`,p'c'|Mc\VW_I$I$kJ!db'vB#kJ kJI$I$kJmӶMc [ꪪI$Mc,[m3Mc [ꪪ0 ,cR //,[Z $@Mc [Zj3Z NR 5_O$lk耪  sUUW\I$m&|sW_  ɖt|k tsI$0|ncAA$0|nc i(,sk`-:lsR`x^-IܹМZ+ 2 1K{`xM*'яk‹%PXMMcUVX`I$h6Mc,[蠀I$kJ!'mMc,[@kJ@kJ@-,cZp#:t$k(Jz^WɟNhJ% 9pBnkx0'N$1|,cx^WUj@,cRxOZ % ?1`(-p\0pUUW\H$@$qW^zH $.tI$qp i1pLc`#&LpZx^W1Iܿwќ c* 0 !@`4|x^(XkWUUʲkskx hmc%W_>ФLc rϜ,cW\xTJLc [U횦m:,lclJMж(4 [R((13'ZB`Xɛyn9- /ɕDs`.&$,[x^WUH [Z( A$ $ [Z iLc [յ mm;Mc,[ I$IkJH$I$kJAHkJc&@,cZ|N2'Zq [+UmI$m/)I $ԽPC@A5I|Itr{p9Ō$ӔMcx^W#nk-cUUU#ϓk,cUU'I$sMc UU(`IsMcUU."${McUU0"В?{McUU,P/:&sHJ(<ɗ\yќ)<#'Ҕk^V.!v0mcU0DPncU1 mOkU0 IkU6@mk U$ϜR/758I|po2);qMc^.Tj?P-[U/m$P-[U-0,[U-F$|McUU$X-&sB(9 9S 2ئ|$McWW*P$|McUU)s,cUU'I$sMcWUU'5[5kIJ`zzz(__hR 7#>`=qmcxXXX$"$A$mcMcUU$"I$H$cb$"I I$cb"=9McHJXXx7  PJs  + sMc\\\\kJ$Mc,[@I$Mc,[P5/,[IJ````. TXR *|2'r>s,c^\\XkJkJ@ kJ  Mc [ꪪzx{iJ+f`Amcb IkMc,[HMc [I Mc [ꪪI$I$kJkJN$ BMc [{"j{iJ7+fAA|mk` ڦm؊-Mc,[hh!DOMc,[!v 5?Mc,[_ 'Mc [V!0I$i'McR_!m#?,[IJWhL{HJ7#{Rx\$_.HJWUOmN(JU*v9/Z.I@/{!- ]N m/s_.1%@mcU/4?0,c_U(#>sHB_ M'O(BWU5I61B-IۦMϤ#8I$IQ(r\^=yiA3k^.ZZ~_!?~^? Z %# $HJ{mcW_|x%"I$I&kMcUWW^$"H$I cb$"H $cb$"@$I$cb$"I I$cb$"A$I$cb$"H$ cb$"IIcb$@-Mc [`!$,c(BXL!AHJ55 >I$Io'>`A/x:"O?~'ux^WU$XђI|x|2>o{^%ı-k&"tb&&W^z$"HH ф$mvk6q|%Z&p cp^p$ɟ. cV ?I|pAҜ+=$'kx^W*!cm߮sMc\WUU%# Mc [^x% |uN6 [꣭5&H {McW_$"A$ImcMc]W$"A$I$cb$"I$Icb$hk.Mc,["Z&Mc(Jx^HۯBW- ;I$Is :?pAT0x7"?~'|x^WU$"IA$|t (atszh/k5_x>.k s_I&m $0|mc  0|nc ss@5sZxC'OoZ^W% 0Z->I9@p@ZҔMcx^,"sMc\WUU$"I$A$cb$"I $cb$"I$H$cb#b@McZx|">nZ %U"\I$n cX`"O cUUU\%"I$I -c c$"I$A ,c c$$H&- cZ` P&|sBz^5ɐ 0J =I$IRB PhШkx^8"ONQMcx_UU$"H$I$cb# I$I Mc [*" I$I$Mc [*#s">Z|R__,IDO'oiR - /̒|^\xp" $IQ|mk" $I$Q|mk$k׶Z |s"P&|Rx^Hܹ}МR5 6I$ISmz?@pAu/x7!O?|x^WU$"A$|t$"A$ |t$"I$I |t$"I I$|t$"@$ $|t$"I$I$|t$" $H$|t$# |kh!u:bmk%W_ i"*-&IdI$qO\x' @pt_~$"I$ |t#"H  |t$" $ $|t$"A$ |t$" $ $|t"` 1tZ`HɟNR5 A!t`.b9"?'}?r-c\^WU$"I$ ,c c$26h-cbjꪪ# RWW ϤjR "tXmkUTX`"M&m5nk-cUW_|I$I$kJAkJ $AkJH kJ kJA$H$kJkJ kJ@@kJ 5,[HJ``pLB I$1z0|UUWX Il͖ |s"k|sI$ $0|ncA :ss@3'sR`x#IɛoiR- 4`Ax+?䒌sX^WUр@smk^xNJ'юk㉵ .LcUTP MMc,[ h6iMc,[kJ$@1Mc [z 5j$,c(Bx^ɝ۷{oHJ% 6I$hs p5??~$Q cx^WUH$I$MkkJEE cZꪪ@bZpN2'ZZ-m6iRmb p 9pUWX`I$@qW^z @ 5qLkxP&MOZx^׵2ɟ *k+ 64;|x^' ˶m$QkU@$sk7y'skLsk͔Fk5UUssw,c^x ,Ԝ{ [_]W\#& [Bx^HܹkSN(B5 -I1`A.!+C, 'q [x^WHI LcJI$ $ [ZI$A$ [Z(!9 Mc [%5$"$I$cb$"I$ $cb Mc,[kJMc,[ꪪZ̀@,[R`&Z % 0> O$,hoɛ$q [U^j RsZT Mc,[ I$I$kJ$|ڰaMc,[??$" A$cb$"$I$cbX=؃=,c(J8  )---/"'|Mc\\\\$"II cb$"II$cb$"I$H$cb$"I$I$cb#"Mc [ ȍȋ-iJ55559 i{bkj$CkMcTWWWkJH$kJH$H$kJI kJ`&`& [B0P̃ &x"?ps,c\\\\kJ kJ A$kJ McJ````ɕ|.(J 8">ڣ9qMcXXxx$"I$A$cb$" $H$cb$"II$cb"P5P1Mc(Bxppp5I\ob)) /s"'>|Mc\\\\h4H$-c,[@v-c,[I$I-c,[ ,[iJ``$_HJ) -#=|Mc\\XXkJA kJAHkJI$ kJj> [HJ,A!BsBH!M$M$mk,cVVVTI$I$kJ kJAAkJPIMc,[)$Mc [P5,[(Jx))PZ"iXK'kiJWi$,[(JU4OLk(BU+X'Ir{(BU & HJU+I (Jի,Iv9.b.I@o|",P9iJz:Ix{ 3s'q,c^^(Xs,cUU"[m?mk,[ 5,cJxt$ [B`^ Hyk(JU*)m0I1b) @$ͯZ6IIqrXw<!4;Ncx^-`{ cxWUU!X6m۶ cZਪ # sR5_!x] Zࢃ-#&HsMcW_~$"H I$mcMc_\#" cb$"I$I$cb$"I$I$cb$"I$Icb$"I$A$cb%$I5McR` *:LsHJz^WIIϤIJ- <Iyq7 =  hШx^1#'O$xWUU$"AI$ф$"I$H$ф$[&H|x t2: los)z$Iᤑ  5&)Q|j"ZC'qZx^ Hnb׵-=IX)P@Ҕ싽+ >"Ê?Ӕmcx^W'"h$m$kMc\WWU#"$H$kR$!i4AMc c"bhLc [^x#X=:{ [ %%sMc_%"IҦIZ$cb$m81Mc ["',cBx Hy1HJյ-+@Iə3,?A )ThШuQx^3"'O$|\WUU$"I I$|t$"@$I$|t [@|kh4 ts~ h|k5~t>.s򣩵  sI&m tsh,>sR`X`$I߯R_5 IY%I+k)>IXP@Ob@$Ċ'mkx^W("cq4kMc\WUU$"I$I cb$"A$ $cb$"IH cb$"H I$cb$"I H$cb#ZMc [x!3 M [ 5U9O' cx#0SN cUUVp$@5-cZj! 5j$ cJx\I!@(J% @IdP@Ps@ _Nk^W."?O<{Mc\UUU$"I I$cb$"I$A$cb" I$IMc [*" I I$Mc [!McZhuB?NR%,9-≅%(!O{?Q|UWW\#1Hl;{t#X&|Rx^Hܹ}R5- :I$ISmn?@pAU/ x6#'O$|x^WU$"I$A$|t$" $I|t$" |t$" $I|t$"II$|t$"IA$|t$"I I |t$"I I |t$"I$A$|t$Z#$@|kx}>bMc-5_m۶ir 5(9I$QOW\x'm`Q|W^z$"A I|t$"A$I|t$" $I$|t$6`Ҧ-|sj##&{${RxXDIɕ cA#3'-cpx^$"I$ $ncjb$" $A$,c c$" $I,c c$"$H cZpu:bNjR5_?1 jȢ !P)mcUW^x#I$h%nk-cUW_\@kJI $kJ kJH@kJI@kJ!I$ kJ!IҶ6HMc,[ @1,[iJ`&M/HJ_W54I?qZ 42:ќMc>^^N2' [ 0o|UU\P!kH|s^ Iҭ A|k#>sR`XLĉ.R5- 59$h- 03?oӔtX^WU!IրM|sU II|k р@smk^N>k Iį,cW^x"qb:$3kJ)Mc [h 5b$Lc(Bx^ ɝwB- 6ɗ'@`{*`7X>}$-cx^WU I cZI I$MkKJ $HMkkJ I cZ몮͒@ZR`}>bZ%U mضn1 " JIϤ0||x`#'M.Zx^/3ɟ?qb 1&Xsx^"OmQs\WUUB$&skI$It cI$$t c $It cwPsk b(@|k^zk `Rz HN߭KhJU/I|Aќ .5j$-cx^Wp$IMc [TUUU I [ZH$ $ [Z II [Z !''@Mc [ $"A@$cb$"I $cb kJA A kJIH$kJ @1,[J``&Lܬ{(Bח5$I$Ir ro*UI$I>.*/M6i0x19bzM1Ϝ [UUX0WMcZ" /$"I I$cb$"I$ cb#"IHkR ؃=؃9,c(J8IIq{- - 1#z'x'|Mc\\\\$"I I$cb$"I$A$cb$"I$Icb$"II$cb$.)Mc [ ȋȋ-iJ55555 aaps@@@@ H$MR4Mc [@kJI$H$kJ kJ$kJ`&`& [B/P ''s,c\\\\@ kJIA$kJHA$kJ "(McRbbb`ɑ\x (B 5$38SC4qMcxxxp$"I$I cb$"H$Hcb$"I$A cb#P1Mc(Bp```*_OR  2j>>QMc\\XXh6hMc [ꪪII-c,[IMҶ-c,[(,cR``O\{HJ -PR/50|McXxxx$Mc,[@@kJkJ@kJP5,[(Jxxx+7p O*k #X ?kZ\d?,cR_ @',[IJ_H$',[(JU$ [HJUDOLk(BU $(B_Uw.R|R۶ .iRU!In b`{ 5_rmsx- F0mcW.'0Mc_U-$|Mc~UU&Xs,cUU P/͎kIJxzzj#[iR ,=?|Mc\XXp@$1,cZpb',[BxW$IФ(BWU5 IJ$QhR II$Τ mֵc z7IX)@@1z8ѫ?-cx^W#]vnk c\UUU $MkKJ MkkJ[a-cZ # Z5UW#. ['msMc_^z$"$Icb$"$A cb$"I$I cb$!MI4cb!@5McHJxC'OHJ_W%I01R ;I\Ϥ}>6B$Ɗ'x^*";O򔑄\WUU$" A$ф$"I$I ф#"A Hф$"I$I$ф$H/|xk5 oLc*xɓ$LcxMmn c%?ə4hҜ.+`:"$Mcx^W"Xkܤmk,[$"I I$cb$"A $cb$"A$I$cb$mSm׮Mc [#ilk [_~%PWtJ,c%'Ik-[x%Ъ5k$Mc(Jx^I!aФHJ% >IĉT,> @$;U0|x^1#$O䲌|\WUU$"I I$|t#"H |t$"IA$|t$³%Z|sRZZX 1|mcE@ss@ H|k7_z9t2:Nk⫉5$];qRzxxФRW- 탩 FIoRp^A#-t'ӔMcx^W&"H$I$kMc^UUU$"I$I$cb$"I I$cb$"A I$cb$"II$cb$"I cb$"I$I cb ðuh&Mc,[PֶMc [z ϤZ-UUɑO$ks`J:Ϥ B^Im J% ?I Th{ zA#}$mk^WU("X$I$Mc-c,$"I$ cb$"IA$cb$"I$Icb" A $Mc [*" $H$Mc [# A$$Mc ["!  hMciJx`'~?.R ,`|\x`b!X&tZx^Hܹ}R5 <I$ISz_?p@ux7"_'$Ӕ|x^WU#"$ Q|s$"I$H$|t$"@$H |t$"I$I$|t$"I$I$|t#"A$@$Q|s$"I$I$|t$"I$|t$" $I$|t$"H$I$|t$"I$I$|t$#тItMkxO'mk %5 Τc'PPW_Zh'"M%hlQ||W^z$"I$I |t$"H |t"=sR`p͛yZ5%?9AҜmkp/"'{ c\VWU$"A$I$,c c$"I I$,c c$"H$I,c c$"H$I,c c$Z̀(A cR`NR'金R %51bȈ!0ϤmkUUTX$~:nk-cUUW\ kJH AkJ $$kJ@kJ!II؎kJ" @ 1McR`P&M{IJ^W59ɟ gR+* :&=֒mcx^)X3cˍs [x h [%UU~>? c #0S|UU_|$-:sRxpɝ.ZW% 8@@- ;!X?T|x^WW$" $I$|t#" @ |t$"@ I$|t$"A$I$0|s$(H|kz蠀 N&nk W 䏜LcVXh&k(Bz^Ν9Q B- 7W`A.`6'r cx^W@$I$ cZA$MkKJ$I$MkKJH$ cZ@$ MkKJ $A$MkKJb&HbZ\@t2 ФZ 5U ۵1Kk &I\ɑROu3bs?sz_ `:0|s|_UW skꪪC>skH$I t cI$I$lkH$ $t cHt c$p'sk k 5j$kR p\mYgAQKs )II$ϤlZ-vk`x|h$M&Mc [\WWWI$I$ [Z I$A$ [Z I$I$ [Z (,[ [ IHMc,[$"I$Acb$"II$cb@kJHH kJ@1,[R`P&Mls(Bz^%3ɟ?pZ 6 'qMcx^& P#{ [>^__jqZ+mѶiԽ9IR$-^(t cWz# 斗n [UWp$$HJMc [ $"HA$cb"99McIJXXXX7IIpKs) !2"p?|Mc\\\\$" $Acb#" $A$kR$"$A$cb$"A$I$cb#.)Mc [ ȋ܈NIJ55555aaps@B@@!H$L$Mc SA$AkJ $IkJ @kJ@$kJ`` [B1  P  'ps,c\\\\I  kJ I kJI$I$kJ" McRbb`` 9 T B 7$c4s0qmcppp`$" I$cb$"I H$cb$" $Icb" 0MciJ````!.(J 3>=QMcXXXxh&hMc [Am$Mc [öm$Mc [W X6 [Rj NHJ%%55,89|Rz?,[IJW@,$,[(JU ml$ [(BU$ [(JUC'I{(B^W+  nZ`&NIJ_W $$K.HJU* I5UNHJU0Iw[@Zժ+I- /ks(/Ir IP{, ON mOkW- F0mcU- $0McU. 5:|R`zq_.HJ 1#:S:PMcxxxx(ҴI$kJA$@kJI kJI$H kJ `,cR` uŐiJ %%5(F]?{HBxxM'I؏BW Iw$ (Jխ I=m[m6ӽ0 pI$Iz7 h2sz9>}$r cx_U h$IR-cZ I$I cZ I$IҢ cZ!I$IB cZ I$I-cZ̀`-cZz" }>bZ-5U&' .k_Xb'"m&XkMcVZ$"A$ cb$֢04Mc [!hP&Mc(Jx^h$IHJW5 I$I c)  3I$n hS2 |NN'3M(W0 ئmnO$"I$I$$"H$Iь|$"I A ф$"I$A$ф$"I$H$ф$ H(1s` P#&L/ZpX5 طy1Kk ? 'i1|~?#X>$mcx^WU"H$M$Lc-[I kJ ݐbMc,[$"I$I$cb$"I$Acb$"I$Hcb$2-ڮMc [!P5kIJ*zz?契R~{+I iJ- $Iɑ\RϜӯ_>&=U0|x^+"Nr?R|\WUU$"II$|t$"$I$|t$"IH |t$"H$A|t H$M$0|mc$H0|nc  0|ncaV4skZ9b$kR( !Q_)'I$I1n!*5I$i1{"^0ON'k* IJmcWWW\$"I$ $mcMcUV|$"H I$cb$" I$cb$"I I$cb$"I$H$cb#" $I cb$"I$@$cb!cMc,[$$kJ #>,[(B`X))1hJ IU 3I&mS4C .KQs^^x`*#N'>kMcW^Xp$" A cb$"I I cb$"I$I$cb$"  $cb" I I Mc [" I$H$Mc [" I$I$Mc [*"m6mS4Mc,[ꪪ #X /R__*cOp+cAHܹۯR5 @I$ITu5>9p@u x4"?N|\WUU$"I$ |t$"II$|t$"I$I$|t$" $H$|t$" $A$|t$"H$I$|t$"II$|t$"$I$|t$"I$I|t$" I$|t$"I I$|t$"I$I$|t$"$I$|t$ is,cx0mk -%Ϥ[p'ϤPUT\x'"I$h1|tw_|#@(|k``'L$pR^V5BIBҜ˃-; @#>|'-cx\^W$"I$I,c c$!HI$,c c_ A $NkjJ$"I$ $,c c$"$I,c c$!i&i,c c% h cjRx`t:Z %ɑI$q{h訢   McUUTXI$MR$Mc,[  kJ $IkJ kJ"A82,cR`!X&Ms(Bz^%9ɟ pGR- ;$+mcx^+"ϓXk/US$Ϥmk^X` $HNs [WUUTAI$ [Z $y~,c [UUU,c [UUUV?>Mc [Օ I kJ$"I$ $cb!I4 kJkJ`0,cZp>tlk(Bz^55I܉woR 4$+mcx^#Γk,c\WUUH ILc [ꪪ b#HMcZ^zI$ c* +ԽP\p a;]z ə$Ϥ [U\`# 0r{ [T P5P5,c(Bpppp2y[P*k) !)3">>0Mc\\\X$"I$cb$"HA$cb$"AAcb$" $I$cb$))Mc [ ȋNIJ55%57AAp{B@BB!?( Mc,[TkJI$I$kJkJIIkJ`&`& [B1  P{ )rBzs,c\\\\ kJkJkJ$.R ^McZJBB .HJ%%%%7jqkp``b#"A$HkR$"A$I cb$"IA$cb%",.McR```@[{ (B 239TS4PMcxpppԶNbLk(BUԶI⺬{IJU߶HBU $m۶.IJUU ɛH .B5/:y.R^Ob .(JU I[NZU,I$v p+kU .I- /{ ,IrN|"U,rIOsW* =m/kW,q Z Spڳ?NR 53Hёmk`zz$ԶOs,[UU#ضk,[UUmMc [$I$Mc,[&mcR̀ ,[R`` >p HJ %%,Z0mcpp`b$I$Mc [ꪺдm۶Mc [($I$Mc,[mӴMc [&Ҫ1 [iJ` HQHJ%CIߪIU*I$@$Խ/I$I$ԽqQAT*I$Ip|^<9AҜokx9 C?~$r cx^WU$"A$I$-cb$"I$I -cb$"I$A$-cb$"I$@-cb "$"A$H-c c$"I$A$,c c$!m4$-c c$Xa-cZz }>bZ %W%9| kWXz&ۆmظ1kZx!k$Mc(Jh^ Hع붯(Jյ ?I$ɛt 鿾 9`A-x8 t~WU! |6^x%\O'o{$oUUUT$"I A$$"I$$ф$"I$I ф# @5qLc` P&Nbx^׵/I$IZ- <I Мk x(S篜sxzo&AIsMcW"M$H&Mc [A I$kJ I6OMc,[$"I$I$cb$"I I$cb$"I$I$cb" 1McR` &M{(B~^5 v]Qb- =I1Y@SМ}c-I'5Ϝ{(Axn0|^^\j%"I&E40|tVZh$"H$H$|t$"H I$|t$"H$ $|t$"A$I|t M$M$0|mcH$H0|nc$(1sk`5j$sRx^N1AZ% 9I$I1*W8`@ҔMcx3M$PMc~WU" Z/W_%xN^'. [ $ .mcUUWT%"M$HSmcMcwW#"$cb$"A$I$cb$"IA$cb$"IH$cb$"I$ cb!1?0Mc,[jjh/&,[(B`Xhɝۯ(BW% r{) ?I$I r"0O'h>1Lc'I$I$rmj *)t)kUW\x'"I&m&kMcU_^X$"H$I cb$" $Icb$"H$I$cb" I$HMc ["! kR" A$I$Mc [# A$I Mc [# Ъ5,cIJ` X͛HJ%5_r)<1`h['Tk ^2O$qZU@I$sRU@$sZU @$sZU"@$sZU!m$sZUU"m$tZUU$m$|RU$m$|RU#m$|RU#m|RU#0I$sZU" Im'sZU# Im$sRU# Im$sZU" @-$sZU k;sZU %#Z %?on|#T@0|UUVX 1X&sR`pX4I$IФR+< FNk`x\"H$I$.kbTWUUNkJJNkJJH cZ NkJJ  ٔU cZ$"I ,c c$k-cbꪪ" {R_Z %ɑI$r{x蠂  McUUVXt:Mc,[A AkJ@-,[R`P&Mlk(Bz^5;߿u Z* :4+mcx^+"8sMc|WUU$" $I$cb$"II$cb$"I$I$cb$[34 Mc,[# h. [UW_ c 53xI$pr, Цmܔn|^WUT$"I$I |t$"H$H |t$"H$H |t$"I$H$|t$" $$|t$$i(|k`!Ќ9k$sZx^0IМZ+ 5|px'9|2:Ф{pz%Mw. [^W\pI$H cZNkjJI$I$NkJJNkJJ$HMkKJH H$ cZA A$ cZТ=ZB`X HܹJյ- 7IT`A + 2ڃb= [(^_s9Ф c %ɗ{WZjj|kWP HskM$It csk!skh 5jsRx^(IoiR- 6A4-x.X:c۳sx^WUm snc~}:d Nnc %_xOL'n cX@  [UUWX_,c [w۹c,[ [TUUywJMc [Օ I$IkJ$"A$I$cb$"A I$cb@,Mc [j 5j$,c(Bx^2IHJ*2 !P@kpX(''s,c\WUUIA kJI$kJA$@ kJ,cZ|?1Z  $"I$I$ԽqABQI$H$ӽ0wX9Kk^言P5IJ__X&_Ф*c6 ؈]'QR^W# Im$MciJU# I%$MciJU" ܖMcRU#$McRU" j;MciJ ȍnHJ555%7Akx!I"$mcRW۔$McRU$,[RU,cZU$@t?,cZU`&`2' ['J؞09SP{ +` 'sRVۖ$McRU,[HJzi$,[(B~UImk(BU/'IN(B_UɔJ00(J I$I$ԽqGB@DI$I$ԽqCPTT $H$Խ/[ I$I ^/IɕQ|4 3''r-cX^_W#"A$-cb$"I$-cb($"I$I-cb**$"H$-cb$"I I$,c c$"H$I$,c c$"II$,c c$"@$,c c$"A$H-c c.$͐iMcZzj;&샪R 7\:ФiJ_^Ink lHJ =IyqW= ? $h(x^0"~3x_WU$"I$ь|##P|p # p{X`$\~^'{ $oUUUT$!  6~"`5+cx'I c^W%;I$I*k+*=PAҔmk x5!O?QMcx^WU"# { [5W_%S.Lk^z !$HIsMcUUW\I$I$kJ IItMc,[$" I cb$"II$cb"@5McHJ`P&NNIJ_W5}۶mHJ @ə$hUn->#+}$4|x^W)3;1|kXzzIǢNMc 7$`To0|UVXx&"I$HB0|tVZh$"I$H$|t$"I$A|t$!IS@&|t ضm6;ts@5s,c`,:|sRXV5IHR5 7Iyq񤏔1o9 $h;Ҝmcx^-?$|Mc\WUUI$I$kJ##& Mc [#3 Z%W_%\O'N,[ $ mcUUW\%"i$H$mcMc]Wl$$4Mc [`!mMc,[$"I$I$cb$֮]74Mc,cP&Mc(Bx^H}HJU% )P샭*?IɑRh? $h)mcx^+ #[kRXzsR %#ɑI$r{x(@nncW_~|$" $I$mcMcuw^\$"H$H$cb$"I$I$cb" H$I$Mc [# H$IMc [(""m5Mc,[ h&,c(B`^$I(B_U5 )(B $0GpEiI$I$zT\IRZˆIҶi[1"IҶmRϤZ Iض 2YI$I2#–IҶm1^?I$ɛnV9I$m HZVV3I$m NVU1I$$ NuWU2I$$ Nw_U0$/{]"-$c .Zz b۳ ksU* I?lsU IR@ФKkU"IP+cU*I@@+c*@$A$ɑI$rOX舠h"'u~1ZWז=IC cz2X;$2RU bZ[abZ= cZ$MkKJ NkJJ ivi cZ$"I I$,c c$"I$I,c c$m-cbzꪪ# R5W_ ۽ Qb I$0sx $KMcUUVX`>,[Rz=Kk(Jz^5;IĹZ+ <4hЪkx^,"]ǎsMc\WUU$"IH$cb$"A $cb$"H$ cb#" $A$kR$"I$ cb$kvEvMc [$ (as [_O'ϤZ -"I$|ZbȪ# n|UUUX$"AI$|t$"I$ |t$"II$|t$l5|sj! 1b'sR`X*IɛМb+7`A| x.'O$sx^WUZ#@skxOJ'osB)%  񔜏 cUVXhM cZNkjJ NkJJ@NkJJmmNkjJ` 5ZJxpɟNJW% 9I|9qBќi{* 7Ċ'Ӕmcx^Wp8IMc [訪c@ [UUUI'ϤZ-5!I$Ф|^R@OsW]wNh |s -sk` 5jsRx^&IoR-+ 6 A4/-x.C'sx^WU I$ Hts I6l|k$Ñ(H|sz#iNk%_IM>k`"P LcUWZ`!k MAMc,[- MK&Mc,[ ֶm$Mc,[ IIkJ @$M'Mc,[z 3',[(J`X&Iɛ(B5- 6`Amcx-'$0|Mc\WUUkJ kJ@kJI$I$kJMc,[ꪪb@,cZ\pN> [ -U %ْqN+I$ $Խ/ I$I$Խ/<I$I ӽ0kI$ $W^+k^;I$II cU/I$I.ZU I$anRUn۶[iRUc @.IJUm hnR%%IrФ [xx $@iJU '쏑.RUU( %IAnRUU $nݵNRUU d;(I.RUU J H (Bտlk{z iJW $-hJU$/H HJU m䵫.iJUc۶-.HJUIܶNiR5// c^I ZU*$I-bU"-I$-/+kU /I$m @OKk ߫ФKk/AI%Yhќ/w\z`' ڷkMcUUU% &I$mcMcUUU$ 6$ $Mc S $ H$I$Mc [# M$)$Mc [$"I$I cb%" McR``\{IJ 1##=BC40Mcxxxp$"I$I$cb$B$R")Mc,[@kJI$I$kJH$ kJj9 c(B0!B1CQ{iN$ImĎkMcWWWT$"II$cb$"H$ cb$"A$I$cb$"I$A$cb$a*-McZ`h$LOHJו55)KOLc`":|$mk(BxV5 xn(JU m۶mϤZ *I$Irm+ IϤ+ A$IԽ/63I$A$ԽqU-ڶm$*~AIIqB1 r7 (-c^"}.:.Z/U! 9.-kV^p% kmMk-cUWZ$"I I$-cb*$"H$ -c c($"I$H$,c c$"H$ $,c c$"I$ $,c c$"A$ $,c c$"I$A ,c c$"$I$-c c?#@Ъ9Mc(Jxh$INBߗ5 i۶mkR, ?I\1P@u{?#'ֵx^W*"'򔑄\WUU$"H ${$"I$I$ь|$"@$I$ь|## /|`!3 {5^x#\~?{ %h5 [x`ɟ c^׵ <I js)(? @hШҜkx^2#S'I$|Mcx^UU#" I$kR$8 Mc [# [%UWSY [ @sMcUUW\ ɔTPOMc,[$"I$H$cb#`Ъ5McHJx'I(B_W-$HJ <hUp>"X~$u|x^WU$"H$I$|t$!M Eڦ0|s" htmkxmk+%tn|UVZp%"HҴM60|tVj$"I$I|t!#):|k@5sZxP&M/Rz^%IidIZ% 8I\P@Ob8'Ӝmcx^W$O'k,c\WUUkJ IIkJ$"A$I cb$P Mc [#3 o [5UU$O'N [ &HAmcUUUT!?&mc [!dDv$AMc,[$$a(5Mc [#'McHJ`XW HykHJ5 rm-* ?IĉBQBu=ZҔMcx^(`O$sMc\WUU mvf{Mc,[j .R5_ 1Z-)I$Q{^z`*ksMc_^z" I$I Mc [# 4A$Mc [" H$IMc [( !1McRh#Ш5t$,c(Bx^ Hq떯HJU5 1no;I$9EA1]_7Ir9R^<ItO/7 I¶msW0 IB IsU1 IB IМsU/Im IsU.I2I IkU---:Z^W< I P{8#`;|'Q-c^VV."fɟ's cUU+"ys cUU+"$s cUU+"dI's cUU(,59nsBzzzob <$:R9NkxX/#V-c U.~@IoNkU)I2 sUU(I$s U)I$sU#I$I0s**ŜOr?R^ OaNJU -IJUUpMIJUВI )JUU@n$Lk)JU0Im cBW"ڰ n c)J & Iܖ cjR$ cZ$6m– cZ$R cZ`u>bծR 5WiIM**O?qsxX3miJU8I߿wo'B 8!@`Ҕkx^-"h_'${Mc\WUU$" $$cb$" I$cb$"A$I$cb$"I$Icb$"I $cb$"A$I$cb$"$I$cb$!I E$Mc c%+Ь5MciJ`x 1ФIJ I$q{z(#0S|UUVX$! m|t$!H4MR4|s#њ3'sRx^NĉѤZյ+8ph4O%p2??}'Ӕsx^_WI$I$0|mcssꪪ#ѐHsk^`M.>hNs+U In cW^hH LkZI$I$NkjJNkjJ h 5 cHJh`$OB_5 9I b ;*XMcx^!H¶ink,[|!CMMc,[!C&aMc,[ꪪ@McZzO' [ 5XI$Ϥ{\`ʂ! &@ipk| 1`$sRp\'I$oR-+9 9uj4/%x-Oosx^WU$"A$H |t#"IHQ|s$"A$I$|t$"$I$|t$Z8 |sz" Nk5W_I$rФk pФLcW\` &hms,[uTI$H$kJ Mc,["X&Mc(Jx^NɝHJ5 4 {/x1?'N$PMcx^WU kJI$I$kJ@ kJI$I$kJI$I$kJI$I$kJkJ #6AMc [Zj"|2> [ 5U ̃ I$I$ԽqQI$ $ԽqPAQo ~DCs x9"'McWU.C_{Mcx_UUM"> @,c+%UəI'{3D疻k^x.! |McU1$" v'0mcU,i#[{McU=njJ*/91B)jj-OI"G0mcW*Iֶ|mcU*Iֶ|mcU,I$i0mcU+ f0mcU+ $<|mcU+ O6|RzZNiR --=%eKU>kzz1"m|McU0#m'|McU2"@<|Mc_U0"@$|Mc_U/"?|McUU.dC6sZz ̴PNiR %%%< j񲔎kzzz!a!8Mc [!4 Ҷ$kJ!6A4$kJ I I$kJ (M$kJ!M$H$kJ$" Mc [@@tp {iJ%%'72$ES000mcpppb$" $I$cb!c3c3kJkJ( Mc,[Mc,[95Lc(BXxxx/9 /Ks  +j`sMcVV\T$"A$A cb$"I$I cb$"I$I cb$$ ö5Mc [! P&Mc(J`x^I HJ%- 6h'Zp7 hR 9Iisx85Z:QRpx~ ۻQR)-II$Խ/I$I$ԽqUETI$Iz<IX1P@2P{?#'ӜNkx^W)"'yk-c\WUU#Z-cZzࠀ!}>b Z %U$ y-MkW\z&c+ژMMk c%"I$I4nckb$"I$H$,c c$"H$I ,c c$" $A$,c c$" $I$,c c$&1-cb"Z& cBx^hn(JW%*c*)I2M*z@$9?U0|x^W&"H'I$| $"$I$ь|$"I$Hь|$"I$I ь|$"H$Iь|$"I$$ь|$[&h/|`֠/OKc >V-뵯Kkp;IIќ "=$+Ҕncx^."'{Mc\WUU$" I$cb$"I$I$cb$"I$H cb!R(HMc [h3 {Z%W_S[.Lc^x-"6nnsMcUUUT#h->McBx`$ɟФ(JWյ-9I$Irb*?AT/ x:"O'~?|x^WU$" $I$|t$"I$$|t$"I$ $|t$mvm|s " `smkxklk)5$PW|UW^x%"m$m60|tZZhh*6sRx$INR^W Z 8əhќ{" p9>}$Mcx^UpIb'Mc,[IH kJkJI$I$kJ$"I$I$cb$"A$H$cb#$IMc [`"3 o [%UU#)O'N [ #iI{McWWW\!6McZ*j%Ъ5s$Mc(Jx^Mt(J% s9>p<I As}< 'kx^W$k,c\WUUI $kJkJ!#ڈMc [zꨨt:X NRWWJs** (Id0sW^xh) }ޫkMcWV\x"mh6Mc,[ @*:,c(BxPC'Io(B_Wə,[ФHJ%8Iy|69UmҜk(^:":~$MczWU(&jk(J7 9 -) 2"/?'|Mc\\\&"6;q$kMc}UU$"$ $mcMc]uU$"$I$kMcUUU&"8I$mcMc(uU!`&j&,c(J6 Q˃ ."xs c\\\\$"A$H$,c c$"I$ ,c c$"I I,c c꿿$"H H$,c c"99 cBppxx*pb :#>>r-cxXXX#" ,c c%"I&I6nckb!m$I$ cR"`cNkZ &ֶc;nkZM(J>7555!Afisj*Hl$0McU% }@IncU&O2 NkU&Ibs*U'I$h{UФ{muZWI$I0(JU 'n۶ϤIJU_oϤIJUUЖIМ)JU_J<.IJUU (90iR %I$H$Խ/=I$A$Խ0;!Aᖔ2k~X/"_?{McX^WW$" $A$cb$"I$A$cb$"H$$cb$"I$@$cb$"H$I$cb$"A Icb$"I$I$cb$" I$cb" @1MciJ`3'N-IJ_W%-IZ .I$h1k~#bȪ$ {UWZp#R#>tZpZJĉ.R5- :I 4h4 - 8#>N$|x^WU!E$i6|s1|mc1|mc1|mc&@skxs5HNk_. cVp s cUUUTI 1 cR`&MHJ_W58IəoR : DhШҔkx^,"_NsMc\WUU$"HA$cb$"I$cb$"I$Icb$" $cb"`Mc [^ ~> [-U)I'mkzj+$OZ-8pU//x6!O?~?Ӕ|x^WU$" $H$|t$"$I |t$"I $|t$"I$I$|t$"II$|t$"I$I|t Zٚ9tsZzX5%sZ8XXX$!Q̃+xI$,c\p o,[UUW\`::,[(JzxɛT (J׵% ; 4h{) :">䒔mcx^WU$!M$H$cb!IM$kJ!I6m$kJ#"AH cb$"I I$cb$"I I$cb$"I$I$cb$"I$A$cb$"A I$cb$X# McZx` `1iR %55I$I$P I$I爐X@ɑ$ht{z@"?<Ӕmcx^WU$"H$Hcb$" H$cb$munMc,[ !,c%UUI${5ϤLk઩#N,cU^z$ IRMc [ ,H$H$Mc,[hhLkHJ2)B)Bq"K$H$mk,cTTTTkJ kJkJkJI$I$kJȀ McR```` 9Sp (J -4"~Pnkpp``$"I$ $cb$"$Icb$" $cb$" $cb$"A$Hcb$*McZ@ ȉ iJ%%552hPkb```#c/u$nk-cWWWTH$I$kJ @$kJI$ kJH$AkJ@kJ RMc [ꪪ-p {IJ77.h0mcbbbb mMc [W]4Lc [wMc,[I$I$kJ(Mc,[P ,[HJpp``/ pR+)))+{McT\\\PMc,[ 5McZ*z i]',[B^к>I(B_U%H6nHJU5 <I$y̓;is^6!$mc^U1"`_O|Mcx_UU$&IMc [`&iJWAI- 'OϜp_AI'4h|zA!-'-cx^W%"H&i$Nc chUUU$"I$-cb"($" $H-cb#X@ cZ`t>: Z %U$ IMkW\`% XmMk c~$"I$I$,c c$"I$A$,c c$"HI$,c c$$A(1 cZ`!5j$bB`\H)Y(J% ?Iɛvu5<daTP`X!x>Xk W$ ɕ䎜|TZb& ัܘ |%5$"I$H$ь|$"I$ь|$"A$I$ь|$"I$ $ь|$4`ж1P|@#Ѣ'p cxV Hyְ c׵ ?I|Aci=#Ѣ'kx^W,"'sMc\WUU$"A$Acb$"I$I$cb$"I$Acb$" $I$cb :4C34Mc,[3$AMc [zꪪ# 샋J/'s$ c^z hМ(JW/ Iv1ks > 1`@HT0 z5"'O?Ӕ|xVUU$" $I|t$"I$I|t$"I I$|t$"A$I$|t$"I$I$|t$C30|s{  |nk^x}2lk "D.};o [xhɝ߯RW% 1Mr{89tjs*z5XO璌Mcx^WUH$I$kJ@ A kJ $@kJIIkJkJ$ ٖmcZ_X?,ciJ_H#$,[(BU}$ [B_IoHBUU+P$oۯHJUU QhJ % a;mrmz&d!HkUV\P!$,c(BXHn(BW 6I$ Мj{)9i ikx9!Q-cX\\\$"@$A$,c c$"A$I$,c c Mp NkjJH$H cZ Ȁ, cR``` I.(J5%% 4z\qkbb`ph۴MkJ AkJ)$I$Mc,[#I$kMcUU'`ɓ$kMcUU" Z9nkB xxzې vr{  )I$0@$0ɟI0I$ $VI$A$ӽϤwI欄<I$I$ԽQAUQI$I$ԽqA\I$I$Psh$@!0McUW^x%"H$mmcMcV^x$"I$A cb$"I$Icb$"H$Icb$"A$I$cb$"A$I$cb$"I  cb#H 1McR`P&M$OIJ_W55hR- <`AҔmkx6!X:'QMcx~WU$3 ,[-UUI$N1ksP^nkq cWު:w'`A˃=9"P'U0|x^WU$"A$ $|t @ H${ l@1|mcA1|mc1|mc1|mc[3 skPhPR*^T,c^`#>kbpIJ__W/I$Io(B-71`@Mcx(Xַ|Mc\WUU$"A$Hcb$"II$cb$" $I$cb$"I$H$cb$"A$I$cb$"I$I$cb##&IMc [xX&oIB /W*ɑI$ "+7и&|x^WT%"M$M&|t$"A@$|t$"I$I$|t$" $H$|t$"@$H$|t$"I$|t$"I$ $|t!iЪ5sZp`$IR^5-9Ak{* ,OR'Ps*^?0Kkz* h߭۶iRU:w/Bb) :$X:|$qMcx^W$"H$I cb$"I$I$cb$"I$Hcb$"HI$cb$"H$ $cb$"I$Icb$"I$I cb$"Icb$" I$cb$!Ii4Mc [#Z&Mc(Jx^Iɐm(J5% $I +U=II$1O`A$>~'kx^WU$"I$I$cb$"A$Hcb$"I Acb$"H $cb$!I$AдMc [$[imk,[? O2'Zh,c 5UTI$n,c\` So,[UUW\h&h& c(B1)B)Bq#J'p$kMcWTTT@kJkJI$I$kJ@kJkJ(,cZ@@@@ P iJ%%%55zPk````$"I$$cb$"I$I$cb$"I$Icb$"I$Icb$" I$cb$Ӳ{R^$,[(BxWM'IoHJ_U I B-4I$U˃"8s ^86}$Mc_U+X$s,[UU$!H @cb$"A I$cb h,:Mc(Bxh$I(JW5 ϟr{"> h2sz?#X'ӜMcx^WU$"H$ $-cb*$"I$H$-cb$"I$I$-c c#" $ ,c c$"A$$,c c#b cZh |2>Z %U$ I.MkW\x&!h6ENk c$" $ $nckb$ A5 ciR`!,>MsBz^5I&Ф(J- =IĉTU5> $h(T1|x^1#'$Ӕ|\WUU$Z͐@|kx蠀M&bkW$ ɕ䯜|WZp&#9Öm0|%$"H$Iь|$"I$I ь|$ @0/|`$Ш1k$P c`\WKxiW +c%) ɟOn ;Tikz^'"XڦM$kMc\^W_$"I$A$cb$"I$Hcb$"I $cb$"H$Hcb$"@$@cb [34[34Mc,[@H:Mc [ ̘3',[Bx^͚ɖ(J %-1IɟB2"I$~=QNʫ,tJ{Qz\Zj'"M4h1|tW||$"I$I|t$"A$I|t$"AA$|t$"I I$|t$"H H |t$"II$|t$(`F:|czJOZ/$ $Rw8Iɕ|1>LcW'!Kďsxxp m5@mk,[~H @$kJ@$IkJ kJH H kJ kJ $kJHH$kJI A$kJIH$kJ` 1,[(J` hɛϜ(J-5%I$ .* I$I$0ebS\8IMc^6t$Ҕ(BWZ?I(BUU М$mHJUUI Ф(BUImۀ(BI$ I$IM 3I$ p*kU2IPU/Ib? ,[_N$+ch -O$ϝHJ5 9}Sisx:c',[~U-8m$|RU#$Hۘ$McRU# I$McRU! @$McRU h&t$ c(B7 q -"'z'sMc\\\\$"A$$cb$"I$I cb$"I $cb$ڶ+R4Mc,[pJČsHJ73)B!BP{HCCJ'"H$K&Nk c\\\$"I$I$,c c$"AI$,c c#"I$,c c$"H $,c c`&h cJܜ9I q˃-#4"p"'r c\\\^$" I$,c c$"I$ $,c c H$H$ cZH$H MkKJ,1ZJ``J 2D?9qMcppxxH kJI  kJ$kJkJkJ>` [(JXX؜6?)s)! 7ɏMmkW+O$ 冷s UU)I$@0s*UI$OR{ I$I$ӽϤI $Խ3I$I$ԽqEUUI$A$Խq I$I$ԽqUTI$?.z$PX0McUW\x&"'vmcMcx$"I$A$cb$"IH$cb$"AA$cb$" $I$cb$ H(1McR`!P&M$s(Bz^51I$In(J- >`AҔmkx5#'O$PMcx^WU$"HI$cb$cÆ Mc [!# hФ [5UUI$O=lk+4i0h^\%"@4M$0|tXfZe$"I$I$|t$!iM0|s I$H$|s I$I 0|mc I$I$0|mcI$I 0|mcP&sRxXHygZ% 3Iyum$y$z>Ф{<Bќkx2 h'O$QMc\^WU#" H$cb$" $Icb$"I$ $cb$"I H cb$"$I$cb$"IA$cb$"H$H$cb#Ь5McBxHĉN(B5 ;I$yB.*k&I~>s袥$ -|UUW\%"IE&|t$"I$ $|t$"I$ |t$"H$I$|t$"I $|t$ $`(1t c`#'MOZ^W54ɝ{pj+ 5 '4|x^W'PImQ|sxz|9 hs WI$I'R{ )4'tK9sxp`("J%p8kMcT\\$"AI$cb$" $Hcb$"$I$cb$" $I$cb$"I$I$cb$"A$I$cb$"I$ cb$"$A$cb#" A Mc c"9,cHJ`XHɝn(J% ;IĉM'>*XҔmcx^!{>Xn [ %U% ďmkVX`&"Ib&4c؎kMcWZj%"I$I$cb$"I$I cb$"I$cb$"A$I$cb#!I$I Mc c$#(hMc,[⠀!@n,c UUM=Lkj%`2miJڠ.11 eel~&/`'k,[T!,Iؖ$Mc [!m붓XMc,[ I$A kJ I$kJ!I$h"kJ!,Mc [jj@ʩȋ iJ55553x`aPkb`b`$"I$I$cb$" $A cb#" H$kR$"I$ cb$" H cb$!A iS4cbrh&lk(B>1)B)KP{@K'z'x'sMcVTT\kJ kJH $kJA HkJI AkJA@ kJj&> [HJ-!B)K|{!$r mk,[~I$IkJII$kJ$H $Mc [ T',cZ_<:,[BzunHJ Xc'oۯiJW_InHJ $I䉑|1pb8yE@&kx7и'MczWU%?ϟk,cxWUUHH kJH kJ ٰ-۶mMc,[j!$iۺ5,cHBx`$IМ(JW5 #I$I1Ks">IҜsx<"??~$-cx^WU$"I$I$-cb$" $I-cb$"IA$,c c$"H$I,c c$"I$I$,c c$"I$I$,c c$"I$I,c c"P cZp t>: Z %W$ I-cV\h%i6 cBx'INJ_W IvϤ(J->I|`@T>@$'1|x^W+"'O?r|\WUU$"AI$|t$"HH|t$#&I|kz蠀M&ck)W" ɕ䯜/p%)iP$$A1s`!9t$p cxVɟob ;yyh{x3 [;/ [ ~Is9o c5#0NMcUU^X%"IIcb$"H$Icb$"I$I cb$"I$I$cb$"I$Icb!ú1McZ`$ [(B`XHqvn(J% ;IAUnݵ/;XO4|x^(P+k^_{%Фk"(TA'n1|_~'"M&m$0|tVVXh$"IH$|t$"I $|t$"I$I$|t$"I$I$|t` 5sR`Ю&N/Rz^5&R5 7I|P@0ʮ{;'-c^W%3$MsRx~}>b-R 5  y-mcVX`m&HSMc SH kJI A kJII$kJI kJA  kJAHkJ Mc,[`Ъ9,[Bx`$IoB_W5 J0QHR I$I$ԽqATII$Nx *{UI$I$ro1 W-I$I^ 0O*W.IP(UU.IrsI|"U2 ;6pkW3 i$qmcU2D$QMcUU+XۿsMc_UU% .1.͎kR`jjq ɶlHJ 3'p'МMcx(P$I$ R^U $In RUU* #,)HJU/ iJUOI" HJU۷ HJUI.iR*(51.*"?sMc\TT^$"A$H$cb$"I$I$cb$"$A$cb (")Mc [`hjȫʻB77774 !baPsC@C@'"HM4Mk cTVv$"$I$,c c$"I I ,c c$"I$H$,c c$"I$A$,c c h&r"',kB: Kr ."&zs c\\\V$"AI,c c$"H$$,c c!M$M$ cZ$I cZ1P5ZA``pp*[.iR 4>>qMcXX\\@ kJAH$kJH IkJkJ @ Mc [h'Jĭ{(B75B)tbK-"'}?sMc\TVW&"$Ib'kMcUUU)"P?kMcUU)"MsMcU)h Ak UU&I'9R I$IԽ 5I$I$ԽqDEI I$ԽqPII$Խ/C0 vP;ӽ~#9McUVx%"IҤAmcMc_+$"L$I$cb$"I$ cb#1McR`&L$s(Bz^5+nR% ?AҜkx5#'O$QMcx^WU$"AI$cb$" $ cb$" $I$cb$]bm۶Mc [$ Z#i ,cUUU$n [-5#` 9{UW\`$&HN|s/%"I$i$|t$"I$H$|t" I $Q|mk" A$I$Q|mk#Ҫ5sZpp$I؏ZW5-:ɟu 4 /:(P4|x^$(i|s\zINk` "0'.McUU\p%"i$I$cb$" I cb$"A$I$cb$"$H$cb$"I$Acb$"I$I$cb"@ 1McIJ`hϟ (B_5?IɕМJs?(XӔmcx^% Pi{ [>__Oѧ. [ 5$ .|UUTP$"I$H$|t$"I$I$|t$"@$I$|t"0tmk` P#&LsZpX51ɟu Z+ 6&Xtx^ ۶0|s|^WU!M|k##lH|sZꪢ!`k%WI$}>s p I,cW^x$$@Imc,c$"II$cb$"I$H$cb$"I$H$cb$"I$$cb$" $I cb$"H$H$cb$"$I$cb#hЊ5Mc(Jxhɟ-HJW5 :IIќ* ?&X;Ҕmcx^*"MǏsMc\WUU#R̀HMcRxM&b-R 5%ImkWXh&"C'I:kMcW^%"I$M$cb$"I I$cb$"I$I cb$" $A$cb$"I$I cb$!I$H&Mc [" Њ5/J?_ 61iR% *ɟ$ [z 'OiJWUoۯiRUUwnIB"@s,[# I$M$Mc [# II$Mc [*"-,Mc [ȋȋ̓(B77774 A!BPs@@@&"I$I$kMcWVVV$"I$A$cb$"I$A$cb$"I$A cb$"I$I$cb$"H$ $cbh:,c(J//{ -r"'r>|Mc^\\\@kJIkJ I kJ@$@kJII$kJH$AkJP5,[iJXXXx+7pK{Zs$m$McHJ_U~$ [BU+IIJUU 'I-BU $mФHJUUH$$I(JU 1b -I$IRn^9I 2,[zzN$0Kk)hIMcz~~|I$I$Mc,[ I kJH AkJII kJhЪ5,c(Bx`$IМ(BW5 mmQJk?9qVh{x:#'O$R-cx^WU$"I$ -cb$" $I -c c$"H$H$,c c$"I$I,c c$"I$I,c c$"$I$,c c$"H$I$,c c$" $I$,c c$"A$H$,c c$[#i-cZzꪨ-h.)J / C%YiR^}۶m1Jk@I$hu=`@#-$U|x^W&"Ď$0|thfU$" $I$|t$"I$$|t$"I$A$|t$"I$H$|t!ҨsmkxM2&XmkW!Oə$OTc- /&|P c`XV>'ɟ*k*;Ih{/x=#C?~$Mcx^WU$낮mMc [#hs [_.Z 5$PxnMcUW\x%!c0ۭcb$"II cb$"H$I$cb$a1Mc [` 5jLc(Bx^Iokn(J% 6I)P@TN7;Ċ'T|x^W' QsWUU CӶmtsz꪿h|Mc7z!O篜mk( $@P|xb&"I$I$0|tUUVX$"I$ $|t$H${ lh-:sRX$IoR^W5 ɟZ-9ə$hќ{ x9-:}$r cx^U h$I&-kbXUUUA@ cZꮪ р` cR^zM?ϜZ)%p9|nMcW\x NB'`3mk,cUVZhHkJ@$kJI kJ@$kJ$H&M:Mc [X&,c(Bx^pۯBW-1i$@ӽ{I$I$Խ/0I$IԽqEA@I$I$ԽqDI$I$ԽqD8I\ɑQr81XMc^04$QMcWU*VI$|Mc_UU$?ϓ&XҔmcx^*"?}$sMc\WUU$"I$A$cb$"IH$cb#рHMcRxM&bnZ 5% dmkW\r'"m&hҵkMc_^z$"I$I$cb$"I$I$cb$"A$I$cb$"AH cb#@ 1McIJ``$O(B_%!@rs)"=I$.)@1P~z2I0|U5I I|U1Ib׀hokz_% mc$'mcZ^$IMc [$mӢE6Mc,[x x${IJ75!B!Bp{JJK&"p$H$kMcV^VT$"A$ $cb$" $I$cb$"I$A$cb$"I$I cb$"I$Icb&95McHJXXxx0 IXO*k )-XX;>|R^ ?,cRU $,ciJUi?,[(JUIm$,[(BUm$,cBU$ [(JUP&I{B~_U ɚv Qb) IB$ -U*"IҶmrn6I$nZb7I>Фk^^I$N9lk *% m۶r n]8I0@1q7 !h8mcx_2X:oPRx~siJ 5#9IsZx`$t>/sMcW^ZxI kJH$kJh5,c(Bx`$I(BW5 QKs #I$QW3vj9nkx\xx$!H"E-cb$"H I$-cb$"I$I,c c$"A$I,c c$"I$H$,c c$"A$I$,c c$"I$H$,c c$"I$I$,c c$"H H$,c c$6l61-cbj!̘' cBxV Hq{1Jյ- II更Y IɑrnB#X>'50|px^W$"HI$|t$!R @ 0|s$I$0|mc!$I$|s! $I$0|mc!$I$|sI$I$1|mc,1sR` ϛR 5%6I$Inp?AҜk x8$C'N$Mcx^WU%"H$I$cb$"IH$cb$!i"E[$Mc c##@McZxK- [%#` 9nLcU^x$$iJcb$I1McZ`#Ъ9s$Lc(Bx^ɟ߿mn(J <ə$hUN';>}$sx^W h$I|s\WU!I$Ib|s I$M|k!Ñ6ask`"# pk5_~&[ok)mIQ|^xx$Iڈ1|sxC'sRxVxĹ}ۯRW- 4I$I̓9IqBmkx7X}r cx^WUH$I$ cZII cZA$ cZH  cZꪪ  h cR^zI$|>Z -5w-cW^xI$ER Lc c kJA$kJ1,cZpk$,[(B`^H1nHJյ-+IL-*I$I$ԽqvTI$A$ԽqA]I$ $ԽqP$UI$I$ԽqqTI I$ԽqD1/IDI~|~|1&>QMc\\XXAIkJkJH kJI $kJMc [kJkJ i6AMc,[ꪪJpoHJ'I𤏔SSU8!>McXXXX# I$AMc [*" I$I$Mc [" I$I$Mc [*" I$I$Mc ["ڵ5Mc,[xJ{HJ%!'+cx^'m[NRUU $%ٺNiRUU $$NiRUU( $$ٶNiRUU$INiJUUIn(B%/#?Z^~`nJ-RUU 탊RUU ${RUUP$̓RUUж{JJUHʤLH̓(J74 ߜ/Zz# $ cjRU!M$ ciR_" % ciRU I% cjRA cR*`r+kB2 1B탥&x'J$s,c\\VV$H kJIA$kJI$kJI kJ 1,[(B``(J 7U?:mcppxX$"I$Hcb$"H$A$cb$"I$ $cb$" $ $cb$I*)Mc [@xL(B7%=͖Xhscb#I$r1Lc -I$Խ/I$A$ԽqI@UI I$Խq\\H$x""OI$LkVX@P&MNiJ_W&7kIJ- = 4hҜ{"`=#?'~$mcx^WU$"I$I$cb$"$ $cb$"I$A$cb$"I$I cb$"I$H$cb#"$I kR$"A I$cb$"H @$cb#X/ɀ ,McZx`z䎜R- xI${^z# okX$IH6|mcz"P#&|$sR`X/Ф c* <)`A4| x1#?ϓ$Ӕ|\WUU$"I I$|t$"A$H$|t$!m4(0|s"̀|k^zM&Zos W%JoLcWZ`%mmcMcn뭴$"HI$cb$m(1Mc [%9s$Mc(J`x^ɟHJ% ?Bsx6#'O$PMcx^WU$"I$I$cb$"I$H$cb$"I$H$cb$k(mMc [~M*>`N,c U$`IcB!*6u$sZxW.IR+ :`A4| x-?O$sx^WUA$0|ncA$0|nc LɐLts$" $I$|t$"HI|t$mnZl|sz"" bѐ |mk>zh` u+`˴ c %!\I$lk^h$  -McUUW\$" I$cb$"A$I cb$"I$H$cb#`1McR`3'M IJ_W59IIZ* >&XҔmcx^+"~sMc\WUU$"I$I cb$" $I$cb$"@$ $cb$!)6M cb$#hMcZX`NB'ѯZ -5&|NmkW\p@&"L$DB2kMcW^Zj$"I$cb$"I$I$cb% i1McR`!&L䰜(B_W5qJ Q(J)1IIrP~?$#>ӔmcxxX+"ϟN,c%U$p y--cW^x&IqmkZ$"AH$nckb$"II$,c c$"I$ $,c c$"IA$,c c$" I$,c c$"I$I ,c c$i- cZ"5k$-cJx^L1aϤIJ% =I$ɛT6:cmtq{x^(OB>s_!I$m|TZj%$ It%!I8c;0|s 0|ncA@$0|ncA$0|nc@ $0|nc`Ъ5sRx`$I.R^5 :Z =`IҨMcx3"?PMcx^WU$"IIcb#"@$ $kR$"I$H$cb$"I$Icb$"I$A$cb"̀McZxN>'̯ c 5$SɛϤLcW^j!->t'|IJ~_W6ɝ۶k(J5 <hUN7 `;"X??~$U|x^WU$"HI$|t$"A$I|t$"I$H$|t$"IH$|t$" |t$"$ |sjꨪ l26 k^z('Ps$5j'0|Zx^I1HZ% @I Nü< 1DhШҜnkx^1'O$ cxWUU I$ cZH$ cZHH cZ$@$ cZꮪA @MkKJE EѢ cZꪪ {R5_ |>jR x-kUVX`I$@" kL[ @1,[iR`-:Ms(Bz^W5IW4 qhR+I(I I$ԽqQI$I$ԽqXPTA$H$ԽqUUPA$I$Խ/3`@$ lvO$Iq?rnbh29RSqMcxxxxI I$kJAkJ  kJ kJ Kd۰MMc,[kJkJ iAkJr.hs(B'\МN8!#>>qMcXXXX" I$I$Mc [# i I4Mc [" I I$Mc [# A MMc [*"!!Mc,[HȍB7777;OBNF O5IIڶpkW0ID0kU3I"ֶ0kU1If0kU2 I$mcU1!I$0mkU0 &0R^_9vK타 1$ij<0mcW.$Id${McU. {mcU,Dr{mcU, #I0Ik/U- #m I/kU-I2$I탮k(U Ch.oiJ*?7umϤZ_,cORUfO=탉RUWHtŒ (B5(3))O,[xh! 4n$ncRWMcRMc [@Mc,[I$I$kJP9&,[(BppX1[ypb)) 3>#'qMcXX\^$" $I$cb$"$I$cb$" $ cb$"HA cb" 0MciJ``,ϟ.HJ%% )9#/4#>mc`pxX$"I A$cb#{Mc)UU!I$M9qmk + $Խ0<>+I$ $ԽO<<I$I$Խqp@T@Խ/ׯI w_9ɗ)J10\<$P>|$Mcx^W$"H$I$cb$"I$I$cb$"H$A$cb$"I$I$cb$"I$$cb$"A I$cb#"I@cb$"I$Acb$aڬ9Mc [! 13',c(J`X#IɝniR%% 7I hkxy}>Lc-&oۯZ_^Imb> B&Uop6"O?~$|x^WU$"I$H|t$"H$I|t$"I$H$|t$"I I$|t$!@i |tꪪ#`|kz蠀X > [+/W#SɛФLcVz&$IJ{McUUUT"̘&Mc(J`x^Nxɖ o(J5% @ɕ'T` .b@#3'}$Ӕmcx^WU$" H$cb$"I$H$cb$"I H$cb$" $Icb$"H I$cb$#(Mc [r"5*- [ 5U Jk7 O {3&M$Ӕsx^WWH$ssH $0|ncH 0|nc!=,QR|k$"I $|t$"$H$|t$&M8-|sj# 1C'sR`X(IɛRb+9Iւbx |">lkxʊ*#  -McUUVX&"NH&mcMcV|#@1McR` P#&|s(Bz^58IIќGR* =&;mcx^+"NsMc\WUU$"I$Icb$"A H$cb#"H cb$"I$I cb$" $I cb$"I$I cb%#*hMcZ^xNL'MZ %p\nmkUTP`&"I;pkMcUv^$6@1Mc [ 9jLc(B`x^Iv4 HJ%  $>sCɕ BsT9"粔mc\\^W$"I cb$"I$A$cb$"IH$cb$#iMc [##H [5_I$s+c -I$ ?I$I 3yI$szꠠK'iJ_W $]iJUU $v[iJUUe˒n(BUI$A(JUI(JUIbϤ(JUymФZ1Im IҔpQU1Im Iќq U,Im IФq,c %5I$I s1j |sxXX`$?k,[|^|A kJ $kJI kJA $kJHkJAkJ"H,cZp?9iJ5II$1 p訃"&f?Z_WVxhI(BW5 -I$IФ c :pAҜncx1?$1|,cx^WU! kJ$bђaMc [x!t>: m-,cU# -cVX%hmk-cUUUT$"I I$,c c$"I$H$,c c$"I$$,c c$" $I$,c c$I(5-cZ**`#,>|$sIJz^WI(J-@I T}Z@ !DhШuQ|x^0"'$Ӕ|\WUU##I0|kxꪪ"t2: nk 5_!\I${Xp#@BNsu|M6iҢtsUW]~ A0|nc$H$0|nch,>sR`X`ɝ0RWյ-1Ks9!4h(ҔkpX)h[|Mc\WUU$"A$I$cb$"A $cb$"I I$cb$"I cb$"IH$cb$"A$I cb$!Ii$cb$Z/ 1McR` `KiJ %%3y䉕6 *Ir>|"7('40x^UU# M$M60|s$"I I$|t$" $H$|t$"I$ $|t$"$I|t$"I$|t$"H$I$|t"h5sZxXɝۏR55 HҶm۶s"/I|ɑ|Qeo\R?X-kx^-"`'s cxWUU h5غ cZꪪ@NkJJ$MkKJI$MkKJI MkKJI cZH MkKJ3bZ@3Z Z5UU ͯ*k q<ФZW^XPC'I߯(J_U.qI$0(J-  Խ0-5II$ԽqTI$I$ԽqUUI$I$ԽqLQh6廊ku7I$yk]U6Is^.P=jB'PiJ8 R|}2 hhќkzzxz$kJ@$HkJ IkJI$I$kJkJkJkJ I kJ`=5,cHJXp [o c7!>:q,[xxxx" I$I$Mc [*" AI$Mc ["# I$iMc ["" I$I$Mc ["")")Mc [HJ(B77778 !B!B{Jkj'"H$M4kMcVVV$"I$A$cb$"H$I$cb$" I$cb$"II$cb$"I$I$cb `&`>,c(J4 P̃ +"z&x'sMcV\\\$"I$I$cb$"H$I$cb$"H$I$cb$"I$A$cb%")M4mcMcu$.m6mc,cjjjȭʭܯB7777IdI1{x=*Z9ҔMcxx&X3ֶsMc *U(M.nc U'I I kU&$X  [z*(I{RU`'RUUВ$RUWIn,[R W`&s$lk(Bޗ4 Cq{ +'{'|Mc\VVW$"I$cb$"I I$cb$"I H$cb#"H$I$kR#5>Mc(J`xxX5yp PgR 5#h'|$0McX\^V#"H @$cb#" cb%h4ikMc_uU#N> McUI$I&s +Խq@^I$I$ԽqPUI I$ԽqQUP&I$Q{X`$ McUUWX$"I$HmcMcW^|$"I$I cb$"I I$cb$"I cb$"I$I cb$"A$I$cb$" $I$cb$$ 60Mc,["̚3'LcBxNĉohRյ- 89qhҔ{/x7!'qMcx^WU!͐@,c5UUUI$|=+c .ɑI$RpB:и&|x_W^%"I$A|t$"I$I|t$"H$I$|t$"I$ |t$"I$I|t$"HI$0|s"Њ5sRxpɟܯZW5-1n.O'LcZxHnHJ5BI\BN @#Rs'ӔMcx^W&"$q$mcMc|W]U$"H$ cb$"I$ cb$"I$I$cb$" $ $cb$"I$H$cb!dB'vB$kJ#*-Lc [~zP hOBח WI䏜||R@H0s_|H$H$ss$ $0|ncIH$0|nc#w|s$"A$I$|t# EZ4|s$Z&sZxMĉZյ- 99qh- 6#C?N$Tx^WU! @|^xItkp%čoNR_\&O{(J~_+6ɟOhR% ;$+mcx^+"NsMc\WUU$"I $cb$" $I$cb$"I$I$cb#" I$cb$" $I$cb$"I$@$cb$"$I$cb$ҵm۵cb" McRx`@ t!shR %&`XmkUVX`#1&Mc(J`X\I )0(J%  $+sAIIs`xuB$ '4kx^W'"h$I$kMc\WWU$"I$ $cb$" $I$cb$"I$I$cb$"HIcb$[ӮmۢMc ["bs [_`1R -#I$ɓ೽М]"IIrn;IB$i5oz3IB Ip@U1I IoeU3IB IќqU3IB Iќq㪪U3IB IќqU2Iq IpU2Im IќrU&"$c'd%"&I$0|s! EیM|sWWW$I$|sUUUе5ts=j$sR`X\7ICb-) 7&|$sx\^W#P P [^~zMMQ+c -I$O'Nz%6hMc_|NlL;Mc,[IIkJA$@ kJI$IkJ@kJ@kJkJ ,[IJx` 6irhR -%II6r z(I$I{ ;Akx7"C?~$QMcx^WU$"I I$cb$"I$I$cb$"I$I cb$b(HMc [h  h{ [ 5_%SY.,c^z &$I s-cUUU\$"I-c c#"I ,c c/$@(5-cR` P&M(B~_5Iv0`ФhJ% >IIu=A&ZT|x^."_|\WUU$"I$I$|t$"I$I |t$R#$|kz"#l"6 kW_ O'sz"   MsUUVXi&m4tsW_~#&sR`XpɝۏRW% $Iɝ { #U)4@sonk^^\x$"I$@ mcMcW^z$"I$I cb$"I$A$cb$"H$A$cb$"I$I cb$"A$Icb#"H cb%i(5McR`!P&Ms(Bz^54ɟSZ+ 9$h+u`x^( X+qk^xIt2:nk)"  .|UUVP$"I  |t$"I$@$|t$"I$I$|t#"A$ Q|s$!Mi6|s$->sZ`X`$IZW5 kn]+k AIFhQ{zz$Ih>Q c,DIO.Nk^^\x%"I$m Nk c__~x" $INkJ"M$mR4 cZH H cZIH cZ@I cZ$@$ cZI I$MkKJ  MkKJ#̂(ZR`IJ-5i4 Խ9I$A$Խ0<I$I$Խ/̿A$I$ԽqEEII$Խ/33`E6M^6I$UUU7k^78}$Mc_U']'I$s,cxWUU؃9P5,[HJXxp)*k 0A!Bszzxx"I$J$nk-cUWWTkJkJ @ kJI$I$kJI$I$kJI$I$kJ I$I$kJ!0McHJp```_NHJ 8!>=,cxxxx" IA$Mc [*" I$I$Mc [$"$Icb$" I cb$®)"Mc [ȋȋ(B77777 !B!Bp{BBBB'"M$M$kMcVVVV$"I$A cb$"A$ $cb$" $I$cb$"I$Icb$"I$I$cb!`&:-cHJXXXX4P{ ."{&hsMc\\\\$"I$I cb$"I$ $cb$"A H$cb$"I Icb$"I A$cb$2!ۢ!Mc,[ȍȍNB7777IIJ@_:99,[xxxx kJkJ I$I$mk,[%kMc+UU'ry$kMcUU'@%isMcU"9j')B>5ɟIKk~.N.R(,!]'Nmczx@rm{RUW"@ vMcZ+U#McZ*$ ۴Mc [*$&m(,Mc [`&r{HJ^ח8 Btaq{C)"}I|AT_C#׊'1|x^W+"ϓQ|\WUU$"H$I$|t$"II$|t$" $I|t#" |t$ҺI|sxꪪhNk%_ɑL">k4g;Z~X HmۯiJ׵-7IIќ .;ZڲMcx^0X3|,c^WUG ,c%$ PT-mcUW^r&"I$6mmcMc_~$"I$ $cb$"I$cb$"I$$cb$"I$Icb# H(5MciJ`P&M.IJ_W55ɟsb+ 8 ֕x^,"ON򔑄|^WU$hP|@ bhk^xIt2:nkꃭ5$  o|UUVX%"I$M |t$"A$A$|t$݊bm5|sz#Z&|Rx^xФZW% I$I "> hќ{( x>#>}$Ԝ-cx^WU#  {ZW_"y~^?oZ-' $OMkUUV\%"I$MR$-c c"R","I cZI$I$NkjJ HMkKJ$I cZꪪI H cZH cZI(1bZpb$ZAXH|qgnB5 iiۢԽ= I$I ԽqI$ $ԽP H金,I$I~W8IU@ncx8к~$MczWU%o?McHJx^Jܹ{(J5-<4h- `;#??}'mcx^WU$"AI$cb$"I$$cb$"II$cb" $I$Mc [ `Mc [^z~>Z [-U a;1nn$p y|UW\%$IJ|s/$"I$I|t& $i*5t,c`3'NOZ^W50IѤ)k->A4P x7#&N$|x^WU$!H4M&|sXj# cH|s^znsh $P x-McUVX`$ 4I&Mc c$"II$cb$"I$@$cb$" I$cb$"I $cb$"I$A$cb5,[BpHɝ-(B5% 8I|9BҔ,;75'ӔMcx^W(hlk [W_9ч#.Z-5  sUUWPI$@$ss!vX|s#5sZxh$IO cW5-8'@@{/ 8#|$tx^W&"H;I$$" H$ь|$"I @$ь|# -m[ь|" b@{xOJǢя|5.TIw/kX\Xp%"I$EҶmcMc^p$"A$I$cb$"I$ $cb#"IA kR$"II$cb$" $Acb$"I$H$cb$"H$I$cb$I(5McZ`!5k$Mc(Jx^'I(B-7yhs x0p [(^_Z ?IɑXV@;Ӝmcx^*"?$sMc\WUU$"H$I cb$"H$A$cb$"I$I$cb$"I$A$cb$"I $cb$"A I$cb!P#&Mc(BxXHyk(J% Aɑ )t`vN>U|x^WU XѰ [7^~I$I${#*Ht~$"I$I$0|tUYVX#" @$|t$"I$I$|t$" $H$|t$"I$I$|t$"A$A|t$" $A$|t!I6I6|s@1|mc(snk`X"'LOR^V59ɑ9A4̃5/3/??sX\VWAH$0|ncA I$0|ncP̀`sZxs>0 [ %H$ z#%kV\x`#Mbk,cWW^x@ kJ  kJAkJ IkJ@1,[B``$IB_5 ۷m c 9I${p7?璌Mcx^WUH$IkJ$"I$A$cb$"I$$cb$"H$I$cb$"A$ cb$"II$cb$"I$ $cb$]6+Mc,cࠀ" h{ [%_t-N,cxb5`m۲iRUտ*i01Z-AI\CT@#Ċ'u0|x^W'"X$I$P|\UUU$"AH$|t$"A I$|t$"I$I$|t$"A$I$|t$"H$ $|t$"I$H|t$[¼)|szjX &hOZ>ޖiAѢR=IĉS{?XӔmcx^("C'u'sMc\WUU$!I$h4cb$ՐAMc [xNJ'.+c 5$ `xmcUWXb$"I$@ mcMc_~$"I$ $cb$"$A$cb" @ 5McIJh3'N{HJ^W%7sJ* 9$+֕x^+"C?ϟ򔑄\VUU$"A$I$ь| I I$q@Pj @pmkxO3nk*)'$0n|UUW\%61|s`"͚C'sZxV Hܹ}ϤR׵- 7I$I ! @9AҜokx<"`O?~$r-cx^WU%"h$Mnckb$"3a-cbzꪪ#3Z Z5W_&|O'-Z &H-cW_|$" $H-c c!M$A4 cZI$I$MkKJA AMkKJI$$ cZꪪ @0bjJ`*:|mkJz^WILT B- II$  Խ/3OE6m$Τ*9I$wq}<5J`x)[[b+3&&QMcX\\X@I$kJI$kJA@kJ$I$kJ ,cR`@ yHJ %%2IɑpXRpX,r|,c^\\\I kJA kJH$@ kJA$kJ I$I kJkJ! 0kJ!-McR`juQW}HJ%6Ш'1|R^W ImMciJU  Im$McIJ U# m$McHJU# I%$,cIJU!@$?McIJU ͛.HJ555%6aapsB@@@$"$HkMcVVVW$"$I$cb$"I$ $cb$"I$I$cb$"I$I cb$"H$ cb"X5X5Mc(Jxxxx8IIP*k  1"j?p|Mc\\\\$" $I cb$"I I$cb$"I$Icb#"H kR$"  A$cb$ c80B;Mc [HxIJ;Ҝn1&>Q,c\\\\AkJ@kJkJkJkJ (-cR@Htɖl(B%%;C1Bќ0BH&p?sMcTTVW kJkJ"퐤I$nk-c?UUU$vϝkMcUU$ 5k(Bjz qnHJ 4I{)$J^@Nv{RUx 唻,[R+oMc [AMc,[1P9,[(B``pp"oiR >$=И>ӔMcxx*Pm{Mc U*O nk"UU(I$qs(UI$I>r{I$" I$@$rϤ\z#Oɗ0LcW\x%$HNmk,cj#!I cb"-:McIJxZxɝw.B׵- 9ɗ@`{99#P|$Ӕmcx^WU$"H$I$cb$"I$A$cb$" I$cb$"I$H$cb$"I$I$cb" I$A$Mc [#&iMc [z蠀 |9 h c 5UI$O'1s "Oə{WZp#1|mchP&MPRz^50IМb-*=`AT/x6"O?~$Ӕ|x^WU$" $A$|t$"II |t$!II40|s$ i|k^zO'񎜭s-" InLcU^x%IBMc c$"A I cb$"I$H$cb$"I H cb# @ 1McR``NN(B_׵%6IĉJs #( 7(XMcx^#hϓmk,cXVUUA$kJcL,cZ|ϥP [ %Px-sUU\zHҪ5sZz`ϟZ^5-<WAtj{/ :$5$x^W$"HI$$"I $ь|$"I$$ь|$"I$I$ь|$"I I$ь|$!A Iь|!@|^xGosB$P)T mcUVX`%"I$m"mcMcW^x$"I$I$cb$"IIcb$"I$Acb$"I$I$cb$"I$ $cb$ H5McR`!->}$mkHJz^54I{HJ*:`Amk x5"O?}$QMcx^WU$#&IMc [`!}>boZ%UW.II$Lk,$IKnmcWUVP%"i$M&mcMc]^n$"$I$cb$"I$$cb$"H$I cb$"I$I$cb$"II cb#h5Mc(JxxIHJW% ?Iun} @$9'U0|x\V$"H$I$|t$B#@tmk`N': [ 7+I$OZ\*"_q|V\x`$"H$I|t$"AI|t$"I A$|t$"I$I$|t$"$A |t$"I$I |t$!6m|tꪪ K"A|k 0&sR`X\7I$IZ+=:U0|px\H$I$|s\WWUI$I ss"AI0|nc $ss#:PP [^~zmMqls*)-I$I$ z%&HBoMc_~I$H$Mk,cUUVT@kJA$AkJ@1,[HJ`X'NМ(B_W%Y1hR <ɗwR0X<>}'Mcx^WWH$I$kJ I$IkJ$"A$A$cb$"I$Acb$"$I$cb$"I$I cb$"A $cb$"I A$cb$"H$I$cb#` 5McHJx`IiJ%II$Τ9 I$I {j;!jy0zr) =5qs$" $H$|t$"I A$|t$"I$A$|t$"I$I|t$"H$H$|t$"A$I |t$m]6|s*#X&|Rx^ HĹ}ϤZ% <I3^>+mcx^,"SۿsMc\WUU#"HHkR$"I$A$cb$!I4 cb"`Mc [\x~>Z. [-#|mcU\p&v6mc-c"@5Mc(Jx'IHJ_W%:I FR* ;+x^+"?~8򔑄\WWU$"I ь|$" $I ь|!I$i&q $H$qpꪪ!I ؑPꪊ"  hsxo{聍#8?pRzxHti׵ϤZե ?IɛnL<1P@sx^6"O$ cx^WU$"I$I$,c c$"I$H$,c c$" I$,c c$#&a cZ`!Z 탫Z5_&/䏜ms\x&&i@s c_^z &m$ cZA@ cZHI$ cZHШ5ZBxP&N.B_W%N$ hR*I-ڶԽ9H$I$Խ0O~8I$I|VW8I s^9($Mc_U(P5[5s(Bxzzz!OZ)) 1>QMcXXX\T?Mc [W',cR ?,cJ_$,ciJU@d',[(JU ȫɛ(J555%+IdIpjpB1>9QMc\XXx$Mc,[:Mc [WT?,cR_h?,c(B_Il$,[(BU~,[(BWINIJUU $IbۯBUIt-(B%LB4 q uIB$ Uvb@0KkUIB cUIB0ZUImZUA Z6 vaasbb``$"@$HmcMc\TT$"I$I$cb$"II$cb$"I$@$cb$"I$H cb$"I$Icb"P5P5,c(Jpppp5IIPb !!2"r??|Mc\\\\$" $I$cb$"IH$cb$"I@ cb$" $I$cb$"II$cb$!h&i$Mc [pp&{iJ<I ,+ /#?|Mc\\TV@kJH $kJ kJI$IkJI $kJ Ȁ,,cIJ``` 1B ;ihk``H$M$mk,[@I kJI $kJkJ@  Mc,[=X&,[(BpXX9IdIќ)k)+(<??ӔMcx\^$ IMc*U#I' NkUw~.R^ $-RW PNw{RUX#&k',c(BXޗ<ɗI Ҝ{)++ ;#h&z'McX\\^$"I$Mc c%"I4I$-c c )"dnk cU+ 2jns-c*U*} Ink+UU)I$ s U+I$O{!I<,c\`#$[>pJ_\hɛ.B׵- 9'@@Ҕ{*:#/>t'qMcx^W%"M$I$mcMc\VU$"I$$cb#"A$kR$"H I$cb$"I A$cb$"I$ $cb" II$Mc [*$"I$I$cb$#6Mc [!5nJB$IIJ 'I$Lk^z IФR = pATP x5"O;~<Ӕ|x^WU$"I$H$|t$" $I$|t#" $@|t$"IH$|t$!mSIڦ0|s%т*|k^z`٘Z 7"SLkWX# {McUUUT$"I I$cb# I(,McZ`"P#&t$s(Bz^7/IIHJ- 7 !T`kpX)Ovs,c\WWU$H$kJkJHkJ#I,cZ\p}>ZNZ US]ۯZW9[pSJk/ 9$ 3'x^V&"H'qb'$"I$H$ь|$"H$H ь|$" $Iь|$"I$I$ь|#" I ь|$"I Iь|$!M&Mь|# b/1lk`tܯ+c-%#P)mkUW^p$"@mcMcx$"H$Acb$" $H$cb$"I$I$cb"`5MciJxP&N{HJ~W%;I߿woZ%)8 )@@k x^2"O?<|Mcx^UU$"H$I$cb$"I$ cb$ZHMcZx}B?ՎZ %W ɑI$sh+$  mcUUVX%"I4IڶmcMcW~$"IIcb$"I$A$cb$!HR$i6cb$$H1McR``"'Nn(J_W%/I$IФZA!dhuQpX+"p?s?r|TWUU$"I I$|t$"I$A$|t% 5 t,cXxO$|>Ф+c-%*Τ1|*"NQ|UW\\$" $I|t$"A$I$|t$"II$|t#"H  |t$"@$$|t#"$@Q|s"` ,tZ`HɟNZ5?I!t`Uo56"3'}$|\^WU I$H$0|mcAI$0|ncA @0|nc@A0|nc#$Isk`~N? [5_ IqϤ(%I$0sZp`%/:X=sMcW^Zx A kJ 0,[iR`3'Mn(B_W50I$'J .I$r{*WII${p*0 wN,cWW\p) Lc [$A$Mc,[$"HIcb$" $I$cb$"H A$cb$"I$I cb$"I$ $cb$"A H$cb"`5McHJx`$INB_5 In] Z =I`@T73Ш0|px^O'Ϥ{ȯ"pS䍜sW^z$ N|s $"I0I$|t$"H$I$|t$" $I|t$"H I|t#" $ |s#Z&|Rx^ Hܹ}ۏR5 BIɕ 򜎜UV&@&;Ӝmcx^+"'sMc\WUU#" A cb$"H$H$cb$"I$I$cb$"II$cb$"I$I$cb$ aMc [ t< . [-Uv$nZW^P$on(B_տ3}b*1O>?nVv- Цmݖn󔑌\_UU$"II$#"AH$ь|$" $ь| 'l'-P I$Iq Iжq$&A(0|`` r| c8\ QN?I 2l? !4hШNkx^1"${-c\WUU$"I$ ,c c$"IA$,c c$"HI$,c c$"I$I ,c c$"A$H$,c c"@ cZ`u:b Z-U#Mk^Zp#M$k4Nk cW__|ֵ]. cZzh&ZB`\`InBW% I rb- I$I$@\/I$Il^7IRnkz8 c'iJW+ж$s(BU~$,c(BWPC'IHB_UU {iJ&o)B_$oMIJUU $nk HJUUM$NBUI .(JU(I/ZU zin݀mr)k a۵Ϥ_``4c'0iJx^:Io(BUU Ж$mۯIJUUh$InϤ(JUInϤBU+imZiZ1 ( $R Y$R^m۶mr}I$IR n]I$I ro"U.I$I2 QO U5I$1P(U4I$v PU4I$$ 5KBz@s錄w4A!N[x$ I#$McRU" $$McJU$  A$$McJU# $$McJU `$$MciJU $I$$McJUP5Z&,[(Bppx_,II\Ob ) 2XX>0|Z^#$A aϤ [ U1S̃+)#p%"M$iR$$" $I$ь|$"A$I$ь|$"I H$ь|#"H$ ь|$"A$ ь|$"H $ь|$ h(1s`:tP c`XV,{ +k%+ 'I$}={` #P)omkUV\p$"I$@ mcMc^x$!AڠI4cb#h5Mc(Jx'ɓ(B_׵-5ɟ7Z :$+ֲmcx^-#S'I$sMc\WUU$"I$$cb$"A$Icb$"A$I$cb$"II$cb#ZрHMcRx~^竃ϤZ 5ɑI$1sj$0 mcUUTp&"N$N3mcMcV_|$!-$Acb$$H,Mc [`#P#&ts(Jz^W ФB @ITh5c9"??~$|X^WU$"A$I$|t$"II$|t$"HI$|t$h]ۭ|shꪪ #:PP,c^zI$O$kk+ *4@ќ1|_|'"M$m$0||UUUT#"$I$Q|s$"I$I$|t$" $I|t$"@$I$|t$m!|sJ P%r$sRpX\BIISb**D!>U|px\%! c0|s K$[%|s1|mcI @ 0|ncI A 0|nc H0|nc  `sZxs1 c %5H$A c̼7&B冷sW^Xp#㸍5kRxP&MOB_5 }۶iB 81A&Ҝkp-C?|,cX^WU@n,[ %Uls`-` 1n,cUVP mc [$"I$Icb$"H$I cb$"I I$cb$"@ I$cb$"A$A$cb%i*5McIJx`$INB_5 i۴mZ =I)P@uМ~a>$t$U|x^W'"h&I$P|tXUUU$c(i|sWz"}2> is 5U{L{^j " O.sX$|s#" I |t$!-$M&|s$Z3&|Rx^Hܹ}ϜR5 ;IɗM˰:AFkx\,"vIɗu׿-? !DhШֵx^+#Ҍ/|\^z!?> /U$  -UUW\$"I$I$$"I$ ь| H$A$q!Iv)Ip$ I(5k`!->MP c`XVInPQ+c "?II|H=XҔ-cx^-"?s c\WUU$"H$A,c c#"I$@$,c c$"I H$,c c$"$I ,c c$"I$A$,c c$"I$H$,c c$"I I$,c c!X@ cRx}>b-Z 5 p9m-kW^x`ѢC'ZAx Hܹ{(JU  i$@ -I$IԽ/ "I'${\8}$RzW($X$(B~U+I(JUIm1R"I$I 3I$I o3kU/I$.1PWU/IHФ|W.IRN IsW/ mOnkW/Id?0McU/$Q,[U.Ь53:sBxzzKs)?I$d m10^^,I$$ UU-I$$ | (U-I$- Ф| U.I$m @|(*U+I$ hPs"_'Idv@,c*9IHk^/ DnkU. f0mcU1 m$QMcU0m$Q,[U/0$0,[U.D?0|McUU.!I$|McUU."y{McUU+#&k&sHJX^^^#I$IQ-] /Ibx訪!OI.RU#II/hRU&II/hRU(IIHJU)I$I(JU+IHJU.IHHJU(IN cj'RWW $ݶϤIJUU $v]IJUUۯIJUUI(BU`IBUжIIJUUp$I(JՕ:)B-[x$ئm,cRU,cZMc [@$kJ$kJ$ kJP59,[Bpppx1IIoZ 8>&McxXX\kJHkJkJkJ,McR``܉N(B5%:)afk`#H$N$nk-cTWWUI$I$kJkJkJ-жm4Mc,[*jأ&K${(Bޗ7 qm۷i1AB>h*Ҝnk`px$"H IMc c$"I$I$,c c$"I H ,c c$"I$H,c c$"II$,c c$"I$ $,c c$"A$I$,c c$"$ $,c c"0 c(B`ɐbQHJ----ɑI$ z#@|McUW\x$k1ŚnMc c$"I$I cb$"I$I$cb$"I$Acb$"I$Icb$"I$Icb h4m&kJ$I$kJ hЪ5MciJxC'NĬ{(B^5-9I1ab+ 8$РC;Mcx^' P(is [^I' [ -ɑI$1j"%P X|UUVx&"q$ |t$"H$A$|t$"II$|t$Iڴ1|s(j"њ3'sZ`XV MܹmnZ% @ə'DhuN-=X#:spx^_|>ZϤk+%WIϤ [x HK1Rյ?ɕ'T`Ҝ* b<X>c?ӔMcx^WW AkJHkJA kJIkJA$kJH kJ kJ-C,(McZ~bK$MiJ %5#XI$O\x%$@IoUUVX%"I$MZ$" $Iь|$"@$I$ь|$" $I$ь|$"I$ь|"0|`#-:s$p cx^4Ib+ 9 )P@u| x, Xk^_rk $PTMmkUW\p%i<:Mc(Jz`I HJW5 :Ix`A k* 8#?kp\W*"$sMc\WUU$"@ H$cb$"H$H cb$"I$I$cb$"I$ $cb$"IA cb$"A$I$Mc [% McRxO$s:ϤZ 5I$I$r{j"#@)0McUW^x& j5mc,c# 5bB'Mc(JpXVIvФHJ5 BID Cuy5A#P:s'u|px^W$" $I$|t$"A$A$|t$"I$H|t#"I$Q|s$"A$I$|t$#Htk`~B?,c %_*ɐI$Ϥp^n*Z q|^Xp$"I$I |t$"IA$|t$"H $|t$"IA |t"9tZ`xHIonZ @CVhuOb2"?ӌ|\VWU$"I I$|t H&h&{ lA1|mcH$ $0|nc$A$0|nc I0|ncI$ ss#:PsZXxI$I$1b ) j$/9e&(B~^^ɚ 0HJ% 9IBoӬo:>|$Mcx\^W@IkJhӶ-ZMc [ꪪ #i ,[5UUO'ϤLc 'ə䯜lkW\h! I$mk,[\!F[Mc,[ vI$Mc,[" II$Mc [*#` 5McHJ``$I(B_ו%I$ 浪Z <I1`@T6="?U|x^W$"H$I&0|tXVUY$"H$I$|t$"I$|t$ Nb|sz!@os5UUsn{x荵"P NsWZ`$$ |s(*#!#>sR`XHɟnZו% +IwMh0{+8IT{z}5X+lPMcX^WW$"I$H$cb$"AI$cb$"$I$cb$"I I$cb$"I$A$cb#"I$H kR$"H$I cb"`5McHJx`ɟϜ(JWյ-BIɗ{* @4+ֵx^/"O<3\WUU$hSmq~ꪪ# c`|^h ?t> )Uw$  O~$"I H$ M$Mq @5p+c` X3'Np cx^50I$}N c *I$~9{? dќkz~*"^;s c\WWW$"I I$,c c$"I H$,c c$"I$I,c c$"I$I,c c$" $$,c c$"I$H$,c c$"I$I ,c c$"I$A$,c c# H4I$NkJ ڣ cR^z t ڠܯiR % hʖ$InQZ*I)ZI$I$ԽqAA I$ԽqXTI$I$ӽ0Wp?IӽvI$H$Խ0<I I$/ @$Խlou<1Cl1Qxz3ظM$McWW*I$s,cUU%jOs,cWUU X&imk,[hm6kJI kJ@$$kJP5P4,[(Bpppp!IIob;X-:,[xxx(pI$sMcUUU(`I$sMcUUU*I$s,cUU'I$s,cUU'[5sIJzzz/GyO'J )3&&QMcXX\\kJ kJ@ @kJkJ@kJkJ" I$ $Mc [$"I$$cb h&h,c(Jܜ>ɐ @Ҕ 8"ئ䒌mcWW1"m|McU2"4$|McUU0"0r|McUU.!@|McUU-Ķ'|McUU+@m>{R) ic]'s(B~W%L'Io(BzW 6iR%I$IRl%5I$~u/2I> mwI$I&269m*I${A|VI$ אַs*UI$OBk"qI+cp}I.IJUPrw-RUWPn샪RU~@nsiJUm,[RUW 0I$,[iJU#&t,cBXX5I\䏔Lk)`/9$QJW^ -ciJ,[RI Mc [A kJ ,5,[(B``pɟN(J ; O5=mc`ppxkJI$I$kJkJ kJ  ,,cJ` ܉HJ5%%6Iɕ0l_<#P>`&-cxX\^$"@$ $,c c#"I$I$nkjR#"A$ nkjR$" $I$,c c$"I$ $,c c$"I$I ,c c$" I$,c c$"II$,c c!5& cB`pXZ I$IےUv`;MQbz($JįLcU\p%$hNmc,c$"I$$cb$"A$A$cb$"$Icb$"I Icb!pb'tB'kJhЪ5,ciJxC'NĬ{(B^5-8I1apb- 9$('Mcx^'"h$I$kMc\WUU#"$ cb"cMcZx? [- a۶1-j+% 9|UWZ`&"I8v8|t$0@۸)|s"j#ѢC'sZ`XV KܹkNZ% <ə'@@uN%<#>|$|x^W$"H$I$|t$#͒A|kz蠀 |2>s-U 1,6fm1ќmc~\p%")"mc,cHkJ I kJ$A$kJ$IkJI A$kJkJII$Mc,[z" 5',c(J`X ɝw o(J5 &I$/z"|O'Ф.& $J%"m$AӦ$"I$ $ь|$"AIь|$ H0/|`#Ь9k$ cx^2Iќb+*: `A4| x1"_?~'|\WUU$!IEۦ|s$ i|kZk -X}ۯiJW;[Z*="ԌS'mcx^W&"H$I8kMc\WUU#"I I cb$"I$I$cb$"II$cb#"  cb$"A$I cb$"A$I$cb$" $I$cb$mEۮMc,c$ #: kR^zZ I$I$ x  VqФZ '+ DR||)"C'q|UW^X$"IH$|t$"I$I|t$I*-|k``"'MoR^V5AIɑ T+ A$P>j'U|`x\^$"A $|t$"I I |t!m$I$|sss H0|nc$ 0|ncI$0|ncA $0|ncIsk`~B' [7_IIm)i$h6N 6IIRrR:8P-Ҕmk`x\"H$I$nk-cTWUUA$kJH$kJA$kJ#HLc [ꪪ@N,[USN,c^x) $N,[UUU\IA$Mc [ $H:1,ciJ` C'N(J_W%`ϤHJ AI\pATx>#Œ'U|x^W%"H$M$0|tXfVV$"II$|t$"H$I |t$"I$I |t$"I$I$|t$!@$ 0|s!Zi|s~ O'͎s$MczxooZW'<ə1pAҜ샽.8# $qmcx^W"ѐ@ ,c/UUW-:NLc^j-# R̃McUUW\$!A$Acb$"@$I cb$"I$Icb$" Icb$"I$H$cb"@ 1McIJx`ɟNB_5 ?IəRj* @ DhШֵx^."O򔑄x^WU$"I$I$ь|$"I @$ь|$[Ӯkqzꪪ$i|^xѧ/p&$  )#$iЪ5p [`C'N$O cXV%=I9qB)s+ ;$'Mcx^*Ps [8^%9|}> [ %%$H {-cWWx$"I I-c c$"I$I$,c c$"I$H$,c c$"I$ $,c c$"@$I,c c$"H$I$,c c$"I$$,c c#"I @nkjR  ҠM8 cZ#>ZA`Xȗt nJ5%% ӽ0I$I$ԽqTxAI$I$ԽqP}UAI$I ԽqTI$A$ӽ03 _H$Ϥ*I$I~U6IHP_0MP#:J^0 Pxrb*p?s,cV\\\ >,[RxMc [I IkJkJ'Mc [U$Mc [R#531,[B````"IINZ7:McXXXXPMc,[( Mc,[&Mc [^?,[RU,B:,[(B```j/oJ )) 1rQLc\\\\I$I$kJkJ@kJkJI$I$kJI$I$kJ ))kJ$"I$Hcbhh,c(J<9C1C+"?sMcTVVV$"H $cb$"I$cb$"AI$cb$۶m61Mc [ @::McHJ^&O(BWU%IHB-1I$I]w'9ISH֭/7!hZ]֭3 W5"$3~UU*"`oyT3`VUU lN`y$ސKspp탊JXm{\sR*/"4n{McU-"n'|McU.$i{McU*c 9{iJz^薵ٖm(J:I6hҔZ{bp'$/ c&Nc oR(I$O@{"UI$IϤ j $I$niJ_pO'NiJU^`$-JU^PnsiJUx#&u$ [BpX^:IDɑXJk) ;&s'McXX\^kJ kJkJkJ 0P5,[B``piФ(B 9I CPnl4"#?{'1-c\^VW$"I$ $,c c$"I$I ,c c$"H$I$,c c$"H$I$,c c$"I$A,c c$"I$I$,c c$"I$H ,c c$ZE--cb`'zLkJޞ7< B) 3kM0mc^W$}@mk UUI$O>Ϥlk!əϤLcVX%$ N{McUUUT%"m$Hcb$"A Icb$"I$I$cb h5MciJx'O(B_׵-3ɝ{Z-+ 8$'Mcx^'"h&I$kMc\WUU$"I$ cb$"I$A$cb$"I$Icb##͐HMcZz}>ZϤ [-Um6iR "y|UVx"kB'sZx^ Hܹ}[NZ% ;ə'@@UN% ;#>|'4|x^W%"@ҴI$0|tXUU$"I$I|t$"A$H$|t$cÈm|kz蠀 t2: Мk 5_0hdALcUVXhI&mMc,[ꪫH@kJHkJ $ kJ IkJ$$Lc [X&,[(Jx^HyoHJ5 3?Ҝnۡ97X>Mcx^ [-UU9O'МJk $  O$" $@$$ۤ1P|p! 5j$ cx^.I2*k/;`A40 x4#'O$Ӕ|\VUU$"AH$|t$"I$I|t$!H"h 0|s!@|mkz'Ϥmk -;!j9kp`)"h?kMc\V^~$"I$A$cb$"$I$cb#"I AkR$"I$A cb$"I$cb$"A$A$cb$"A$$cb$"II$cb$" $I$cb$#iMc [ #5ДR5__nivk{+ I$H$Խ[m۶hrÊjAɐB&u'p6"`'N$|\VWU$" I$|t#"I$IQ|s$"I$I|t$"I$H$|t$"I$I |t$"I$I$|t$"H$$|t$ҵku|sh*%>Z| [x #'Kk *T@М1|_~'"I$M&0|tUVVX$"I$A$|t" 0#&sR`pXItٖnR E1i(upcp."|\WUU$"I$I$|t$"I I|t!M&)4|s1|mcA 0|ncAI$0|nc @ 0|ncI$$0|nc H0|ncP̀@s [xI$|&Q [+) m&I{n:B$sp0'N0|Mc\VWUdI$ Mc,[ I$IRkJ I$I$kJh Mc,[$Mc,[,@4Mc [ #{ [%UU1տ,cp DR~pP&L䐜HB_W5iR ?I|9qu5B#Ō'u1|x^W'"h$i$0||TUUU$"IA$|t$" $I$|t$"H$H |t$"@$I$|t$"I I |t$"I$I|t$! I|tꪪ" 1P9sZ`pXjKk ) <I 3Wx># 3?Ҕmcpx^&" $$kMc~WUU$mӢhbMc [##H{,c5UUUտ,c $  )LcUW\`% kimc,c$"A$Icb$"AI$cb"@1Mc(B`X$OHJ_W%8b*=)`@p x1"?$3\_WU$"A$I$ь|$"AH${#"IHь|$"I$I$ь|$!i$iь|$k l|^x~1ߢ>k?&w cZ^;I9qJs ="ѢO'Mcx^'"hM4kMc\WUU$E3Mc [" k hs [W_'x}>-Z덥%s-cW_~%"I$i&-c c$"I $,c c$"I$H$,c c$"I$$,c c$"I$I$,c c$"H$@,c c"$IM8 c [ b&bBx^ x}(JU%  i$@ӽ̃* I$I$ԽqQT ԽqPUA$I$車 I$I~]3I$9!QUU4I|k_5$qMc~U.K?O$0Mc_UU"9Z5Mc(BXXxx3IDpb##).{&h&0|,c\\\XMc,[ꪪ kJ@ kJkJH"I$I,[Z,[Zd00,[Bz```%OHJ8tXqRxIMcZ5![mmMc [z! }BMcR_I,cZU300,[(Bz```4p'J) /h&h&PMc\\\\kJ kJ kJI$I$kJI$I$kJI$IkJ  I$kJ$"H$Hcbpr.+c(B8)BAI("#'NĎkMcTTVV$"I$I$cb$(-6Mc [#@86Mc(Bz(:M{(J_U5H&In(JU #I$I1js)3I!@֭ߟ 9 i˶֭3 x_3"M䶭3_UU$"@$It$"I$I$t$"I$I$t$!A4M&35`҄X` b̀. 5UUnWNJ:ZWZ$ 0 n{,[\$ H$RMc,c $"II$cb&j",c(BXX\:IIМ{! ;P9&ӔMcpxX\#$I$kMcUUU'`?sMc*UU(жɓ$sMcUU+i?sMcU(|McU+mncU(I IokU&IR?->.IBz$I$Iks "IIN'{`b!FZWU^ PNlkJx 䔻,[R Mc [$Mc,[#&j2',c(BXXܞn 1Js)9 )afs`p'"HҤM&nk cTVWW$"I $,c c$"H I$,c c#"A$InkjR$"I$I$,c c$"H$A$,c c$"I I$,c c$"H$I$,c c%(,- cR@ ȻϗT(J55%9 !vaFhsbr&"H$N$kMcTVWU$"II$cb%Z#h$I{Mc5UUUO2?P c U|I$Lc^`#  nMcUUW\%"I4Acb$hЪ5MciJxC'NĬ{(B^׵ 4I1apb +5 (Т'qMcx^*"'OǮkMc\WUU$" I$cb$" $I$cb$"HI$cb$"H$A$cb$"IA cb"PMcZx }2>Ϥ [ 5U I$I'Q샪+- `n޶mےs׾;ə/ un& ;# :s'4|x^W$"HI$|t$"H$H$|t$"H$H|t$"I$H$|t$"I$H$|t# Isk`"t2:Z o [ /zm6m1sŠ  PLcU^zh4EMc,[ kJI @$kJH$ kJ/> [(B`XHNB׵- 7ɟ ,=76XMcx^%O'k,c\WWU$H,cZp3 ϤZ%UUO' c #DA0|p%Ъ5k$ cx^W'I$Ѥ*cյ+; AU/%x7"O?<Ӕ|x^WU$"II|t#" I$|t$" I$|t$"I$ |t$ BRE |sꪪ# h|Mcmk諭%P'kUW^x&"v$f2kMcUW^z$"I$ $cb$"H $cb$"II cb$"H$I$cb$"I$H cb$"I$Acb$"I$H$cb$"I$I cb$ I&5McZh"P9k$Mc(Jxx^nzQZ I$ $0?BAgFIs8BP-֬$UkW$6A|s$"I$I 0|s$"I I$|t$"H $|t$"I I$|t$"A A|t$"I$I |t$"A H$|t$"I$ $|t#@|kh~B?Ϝ,c%5_+IdI$OXh*l@q|^Xp$"H$I|tpINR5?I n7C#>t'u|x\^W$"A$H$|t$"A H$|t$" $ $|t m6ES { l@;ts$ P?sk_ ?s,c_?sZWIl$sRU?sRUDO$sRU-h$IoZU BIBM+A#>t'Ӝmcx\^W$"II cb$"H$cb$"I$Icb$"H$I$cb$ NB&iMc [N$`'Mc,[ $lcR@lcR ̀ ( [J@ 訶HJ-%Im6Qb <IsϤ[*?!РU|x^("hZ7v$P|TUUU$"I$H$|t$"H$I$|t$"I $|t#"A |t#"H$Q|s$"II$|t$"A$|t"@ 1sZ``$OR^ו%.II{"? !dhkpX-"'sMc\WUU$" $Icb$"A$A$cb#"@$AMc [$lظmMc [:-: h ,c-U! N LcW\x$ jmk,cT"@5McHJxس'OoHJ_W%inV@Z AC񖗕М U7#'N$Tx^WW$"II$ь|$"A$A$ь|$"I$I$ь|#" A$ь|$"I $ь|$"I$@$ь|"`Ь9 cxHIm c5 ;IIn9@ѢOMcx^("X$I$kMc\WUU$"I$I cb$"I$A$cb$kӮMc [# chsZW_%T}>Z⩥'mIs-cW__|%"I$h$-c c$"I$I ,c c#"I$ ,c c$"I$A$,c c#m۶1-cZ $ZAX Hq鲮J5 !IR$ L $0_R m۶qn [6I$IQVU5I$ms_6!ic[ےmc~U2J?O$QMc^UU#X''k,cWUUA kJ@$@$kJ ,c(B``(_.(B 0>QMc\XXX@kJA@ kJI kJ@kJA$kJ@IkJ,,,c(B````*O(J<">>McXXXX!N$H$kJ@kJ @kJA$kJ00,c(B````2y'J))))0p"'r"'0|-c\\\\@Mc,[ kJ kJ @kJI$I$kJ$"I@$cb$"I$I$cb$"I$IcbhhlkB:hvhqsBbc$!HMR$cb% H(:MciJx"}$,c(JxVpmۯHJU Z*)I$IS1?4 9.U5֭~UU!N)3󌨫$"A$A$t$" I$t#"  @ t$"AI$t#"A$H t$А(X`҄UVX Ox1 !OKs 0 |.,cUUXh$Ɓ3Mc [pLN(B5= CO*O0h'{'QMc\^VW@kJ@$kJHkJ!$$I$kJIA$-c,[!I$I$kJ  ,-McR`pN-(B5: 1A.i.Xkɺ|Mc(W$N okUU%$XNsUI5NRW $-RUWDvbiJUWH}hJՕ II1}r9 F?5>Mcppxx$"I$A,c c$"I I$,c c$"I$ ,c c$"I@$,c c$"I$ ,c c$"I$ $,c c$"A I$,c c#" $H$,c c# 9 cJ``p'ɝɗ.(J 9#/9>mc`pxX$"I$H cb$"H$Hcb$"II$cb!X5PMcHJxx`! i k II$rkkxࠂ#0inJ|p'O (B_׵/4I1ab+ 3"`qMcx^("N&kMc\WUU$"I$cb$"II$cb$"A$I cb$"@H$cb$"H$H$cb$"I$$cb$"I$ $cb$cظaMc [x!3 Z-UyQKk )4)sɛ$Q0zp)(nQ|\_UW#"H$ |t$"I$I$|t$" $I|t$"A$A$|t$"I$I$|t$ H1|k`"P=s$sZpXVnFb +I$_a1.j箜McVZhHlk-cUUUTHA kJhЊ5,c(BxhɟnHJW5-5Iɕ {"(54+ֲmcx^&_s,c\WUU@$kJ $kJP̀(A,cZp# Z%UUIM"kk )NФKkՂ99hUO-x7#C'v$|x^WU$" $I$|t$"IH$|t$"I$I|t$" $I$|t$"I H$|t#"$ Q|s$!m&0|s$ 3 |nk^x}N?Lk)%&4@OϜmkUUVX%"I$M kMcUU_z$"I$I cb$"I$I$cb$"I$I$cb$"A$I$cb$"I I$cb$"I$ $cb" @5MciJx&Mčk(Jz^%7I{OHJ-;omk"`xI'h> [ %5($I$cx 'ݶ1 cU_RUI$ [UW!Pn${ZUx#0In|ZU$ $A%t,cU$H|Mc $$@|s"#! H|s$"I$I$|t$"I$I$|t# ̀`t cxO's> [ 7, ΤPT\zz+ ۦ -q,c` ۶Z A!th(Usx) $m#'|,cW"@h?tZW# m$sRU!~$sZWI$0RU+'IORU Ж$NRUsmNRU-I_ ZU/ɟ$7Z +׀ 5b`x]PQ+k- @IInl2C8+Ҕk`x\'"H$I4kMcTWUU$"I I$cb$"I$H$cb$"$I$cb$"I$ $cb$"A$A cb`'`&Mc,[AIlcRM۶@4mcR 5b' [BpXI(J% I$I$0r|U2ɐXIr\Rx- +mߒkV $ |k hI${ l @I${ l @I$|s!MӉ|s$"I$H$|t$"I  |t$A(0|Mc`!#'MpRZ^5 ym c-? ${p8"C?~qMcX^WU$"A$I$cb$"I$I cb$"H$Icb$"I$Icb$"I$H$cb$m6bMc,[ꠀ!#р@O,c-UU`>Ф c_z='߯IJWU7I?wBj- +I'Ϝ|I?1rz#@'UU\p%"H$M6$"@ I$ь|$"I I$ь|$"A$ ь|$"A$ $ь|#hЊ5 cx`ɟZ^׵-8II˃+8XڲMcx^*"'8sMc\WUU$"I$I$cb$"A$I$cb$"H$ cb$"I$I cb$mӭZMc [" c`s [W_" )M&Z $&imk cW_z|!۶Mې$ cZ(!AӚ$ cZ"ۆm#K6 cRz!Ъ5t$bBx^It0J% r契CI$s蒵ќ3IW11ncr5Hc$iJU3$0|BU'6$k(BU Im$,[(JU Im$,[(BU I$$,[(JU I,,[(JUI$$,[HJU $k;,[HJU|.B %2XXO>q,[xxxz$H<,cZUA$Mc [U6l$Mc [$ $Mc [E$Mc [Mc,["31/,c(B````*.(B 7'qR^W$,[iJU ۖ,cJU,cR* I,cZU/5,[HJ```r/  (B+p'x'{,[\\\\Mc,[kJkJkJ@kJ$"I$A$cb$" $I$cb$" $Icbh p.IJ2t@PLc~\"k$,c(B^`ɟn(BW-М(J-9I @n 6 @Ӕ ~13oߖӌx^WUM">iMO$N^ @  -$"I$I t$"I$I$t$"I I$t#" H tq$"I H$t$"I Ht%#0-X```!9!҄ $!M&M43! X`tNZVzHxIunHJ59t`Fmcz#H6M4nk-cTWWUI$I$kJ$kJkJI$I$kJ -bMc [IkJ 9,c(B`pxI)nB ;fkbpx!H$I$Mc S؎Mc,[ "k,c UU$TJs,c*U#@ IMcU"IB'k"U$I$NPs* ɑ\I1orl4X?qZ~^$HwMcZ$!iH-cb#"IH$,c c$"  ,c c$"A A$,c c$"I$I$,c c$" $A$,c c$"HI$,c c %`& cJxX؜99q k)) 7">s'qMcX\^V$"IA cb$"H$cb$"I$I$cb$R@McR`#B,c-UU#I$mk-m4I$Q j&I\ɑ1.U6# S'Mcx^'"h$I$kMc\WUU$"I Icb#"$IkR$"I$I cb$"I$A$cb$"I I$cb$"I$I$cb$"H I cb#"II kR$"H$Icb#$hMc [h/&iJ7Wrm«#)I$P|Wz%@/|UUu$" $I$|t$"H$A$|t$"II$|t$@1|Mc`"->|$sZ`XV ɝ۷mZ :ə4hUn'b59?s`x^WO磃ѯLc)%ə䯜,c^x@J1k(Bx`IMB_׵-8Iəb 8!DҔkx^(_~s,c\WUU  kJH kJ@$@$kJH kJ$,cZp3;Z%UU<ɑjs +=$&|'4|x\^_$"I$A |t$"I$I$|t$" I$|t#"HQ|s$"A$I|t$"$I|t$" $A |t$!Ҵ $0|s",:sRx ɝێZ555-I${p +4HJnkUW^\$"I$I$kMcUUW^$"I I$cb$"H$I$cb$"I$Icb$Ҷ (,Mc,[#Z&McHJx^`$IHJ_5 8ɟ7aZ 9 h(mkx^1!_?|McxWUU"# |RW_iM1R ),I$IbS]I$I1 w$1<I$2ÕI$1_m ZW 'ϤZU~RU [UW Pn${ZU`#0IvsZU" t cU Z|ZxzI$HϤZ 'b0g;RzxxmϜno*P&Rz^*IۆФZUIbФZU*IRФKk0I$IќM7I$y Mf3IIMY2=m/}_0HckӔ|U26~$Ӕs_U*Dm6c"`$NМR^5 R=s@B&sp3"~$0Mc\VWU$"I$I$cb$"I A$cb$" $I cb$"  $cb$" cb$"H$Icb k&k&Mc,[ HlcR= [B`XHyvМ(J% .Iɗ1p@N: cB"}'mcx^WW$"I I$cb$"I$I$cb$"H$A$cb$"I$ cb$"A$Icb$"H$Acb$"I$H$cb#`,McZ`KOiJ775IIR&:FlЊ40|xx+!umr|\WWU"j@s-UU}>{ %$PTN~&"I$A۱$"A$ $ь|$"I$H$ь|"@ 1q c``IМ c^ו%3IIHs) :&ZM?,[x^")$k [U VlvMc,[$"I$Icb$"A$I$cb$"A$ $cb$"II$cb" I$IMc [*#v8cMc,[ꢪ #is [WW_ { [聅p0mc cVx1-cRp-:}B_WI00(J-I$Ir n7I|PAϤ2 T53|pxz ?{z )%8I$ə{U* 3I$l IujsU*I$mTJsU*I$T*kU*I$TbU)I$I@3ZU"I$I@ZUIihRU(IioHJU Iݶ io(J%5'NjB~^ $֯HJUU /nIJUUdm' iJUUm$ JUUж$IJUж$.RUUU:.IJUU)1ɖ(J $ݶ1ks_ ikϤhJWIڵ`Ф(BUv{OBhoHJU  iJUW C&e.HJUU(L(B% IN$siJW @$,[RU~q$,ciJUU M$MciJU In$,[iJU -$-ciJU" $$McRU$۔McR$McZ UHHФ(B9ZxInthJ;I$׵_u5 :@׭%8"ϓ$֭~WU$ S;c7ӌӌꪪ#Iӌxs`q VxtO&є- *W#  3O -%"i$HҤԝ񃪪$"H$It$"I$H t$" $I t$"I$ $t$!"!@@@@!'3򌭩#@5sx&N䱌lk`\W,ks- :I$ wb$I'o [^pI&ORWprMcR* Mc,[kJ(  Mc,[IAMc,[mh"Lc [`&r${(B^_:Idɑ{ 8>3'McxX\^kJkJkJAAkJ@HkJ!mk,[ " aۺ1kRzX?͟HJ/5%I$ϤZ^p䯜RUW rRUW" 0 . cR W$ @ cZ$khv-cb$"II$,c c$"I$A$,c c$H (-cbjp$LČ{)J7%;B!a A* |sMc\VWW" 0I$Mc [" A$I$Mc [! kR# I$ $Mc [# HI$Mc [*#,1McR`` IJ %%I$ r$ IpMcW^z%mܖAmcMc^$"I$I cb$"I$H$cb$"H$A$cb$"$I$cb$"II$cb$"I Acb$"I$I cb$"I$$cb# m&Mc,[!P&McHJx^xw (B׵- 1I$M@0)+_I$O'Qs+-#)I$|^p'&HAPt_&"NI$|t$H1t,c`!P&MPRz^5InZ% 9ɕ Tp:X>}$Utx^WUh$m40|mcѐHs,cxM'Lc % -ϤiJZ2Iə c 6 !@`kpX*'O$|Mc\WUUH @kJI$kJ kJA kJ$ kJI AkJTCD@McZzꢂ t<: .Z 5W(dJ9/s&"IL;fd$"A$I$|t#"HHQ|s$"I I$|t$"AH$|t$" I$|t$6A61|sj!X&tZx^p$ɟNZW% >I|`Ajs* 4kx~%9|O'kzj)' HmcU__|$"H$I$mcMcWW|$"I$Icb$ I1McZx!$McHJx^MɟHJյ ; hs ;$t'mcx^W("]'$kMc\WUU$"I$I cb$R#HMcZ`~B'R5W=9Pɗ4nU4$؆>1|^_.#$g|U/ mќ1|U.Ih IQU0I IrU-I$UU.I$ 3UU.I$Oh蘿>iUI$In|< cФ{x"" t ZW $m[ZU 0Z5 $Μ^3(I$I$ԽqBI$Isr,@IܔiVux6IN$mpW:Hȶ0| U8"$|_U4"FO$Ӕ|UU*`'O$qs_UUh$I$|sUUUII 0|nc$0|nc 0P&sR`pXIِaR ɑrnrl4 XyoMcx^Xh#wMc [-$!M$I6Mc [$"I$H$cb$" A$cb$"I$I cb$"A$$cb$"I cb J$&Mc,[~$ ,,[iJ`h$IN(BW5=IT?;Պ3?U|x\^%m?ӲQsWUu mti|sN9Ϥs#UUN>Ϥ{h=R篜sU^ S|k I$Its Ii{ l$C[t.|s" 13'sZ`XVI ϤR5 8IɑRn^@"Č>mcxX^$"@$I$mcMcWU_$"AH$cb$"H$Acb$"IH$cb$"I I$cb$"H$I$cb$"@$I$cb$muZ Mc [! 5b2'Mc(JxXɝ۷k(J% =pB&hUop5#'O$Ӕ|X^WU$"II$|t$mZ0|s% #IPs5_O'̎s#9NW^h% mX` 0qk`3'Mo cX^50Iɗ*k @6/ҔMcxX'o+Ik [\UUOm,[Ry ,c [!iMc,[" I$I$Mc [*$"I I$cb$"I$H$cb" $I$Mc [ I$@$kJMc [j~ c$ sJ/zn탫RxcP'IN(B_UI 1R I$Isp8I hМ76'׭xWW XHrxꪪZ s7p8t䕭N }+v^_&d$5ӌUU'жUӌUU)жIBќU.I"uqW*0DuPU0O4uPU1IDnvU2 mvU/ I IvNU3 ImvnU.-6Tlk*x m ۷Ϥs)8:R941|px(mqsU)~ԶqtU)4r|U&i Ir̃w'IBr̃u (IRqUU'oq{_)$d pbW)$ pRU((I$iOHJU'I9NHJU 'm[ФiJUWI(J#I$Ir|9I @׭%=%$׭~W,"o?$4_WU" I0I$5q!;&C84R4RA$ 42dHӌ&@ӌPUz t2:Ҕ-)W$0Oo '$" $H$ԝ񃪪$"H$It$"H I$t$"@$$t$")*3jjz!4\C'lkx^hɟolkX5 9I$ɗ ˃? :P. 7#CN$x^WU Z􌑌^zI$j1.>wI$RWx .NRWpsMcR*Mc,[ AMc,[ ,,[IJ`H܉ӏB5% =ɔC)iќ|`+p?|,c\VWW HkJkJHH$kJ kJ$H$kJI kJ 5,[(B``p!ɟN(B :~"U{x)I'*4n_)I$O4Vu `į k^pϟ䯜RU~rZUU_! v cR+X%$A喻 cjR "1 cIJjΝ (J5% ;h:k`pp# H$M&Mc [! kR" $I$Mc [! @kR" I$A$Mc [" I$H$Mc ["0P9Mc(J``pxɐ)QHR- I$IrϜ"p8I$L&{#əmkWX`% H sMcW]}$"I$I$cb$" $@$cb$"I$I$cb$"I$I$cb$"HH$cb$" Acb$A1Mc,[#͢C'LcBxLĉ.HJյ ;ə4h{/7" tqMcx^W$#  [%UU c %)I1/VXx$ @5|,cxP&M|Rx^%R- :TO5 p:??~$4tx^WU$ 0|mc$@0|ncA H$0|nc р@sMc^xLc %1I|I$/x- )%/McX_W\$ 'Mc,[@ kJHHkJA  kJH$H kJI I$kJ $kJ IAMc,[$#,McR` 'NiR %%#p9|UW^h&"L$v0|s$" |t$"I$A$|t$"HI$|t$A(1|sx"$sR`X Hܹ}.Z5 =I `U / =$ |$4|x^W'X۸m1|sxꪪ!u:Zmk%W_&[䏜s\r&H@sMc_~x# @9MciJx &Mk(Jz^%7I{.hJ-<9As x8"X~$Mc^WU%"A$I&cb$"I$I$cb$"I$H$cb$"I$I$cb" `McRx`O${>R 5,t@!1|zj'"I4m6P|UUWT$"@$ |t$"A$H$|t&"!$q'0|tUYY)"OQ|UUU,"`r|UU/"жO$|UU/#Mɟ$|*U/" Hu|U.m0|U-O` I0|U'٘/Z*Խ05A$I$ԽPxpY>ɐXIr~9$`'|&|^^^&"'I'0|tYUY$"I$I |t$" $A$|t$"@$I$|t H$mR${ lI I0|ncAI0|nc` (sMc`h$MNR^%6IIͱC=+kx\)t(Imc.U /}5Z^ #I. [V`" SMc [ $!m4m$Mc [$"I$I$cb$"I$Icb$"I$ cb$$H((Mc [@!P#&ss(Bz^}۶k(J =9Aupcp-"'~$|\VWU$"I$@$|t$"H$H$|t$"II|t$@A|UUU#I.' | U7玜{^*!  1osU\r$$A|kU"?:sZ`Z HܹR% II$r)*I$R`p-жm.oLc^WWX$aۖnMc [ $"I$H cb$" $ $cb$" A$cb$"A$H$cb$" $I$cb$" $I$cb"9McHJ`X HHJ5- ?IAUn7?$>|$U|x\^W$"H$$|t$"I @$|t$"H$I$|t$" $I$0|s#b#@|s^z}.> HMs-W$nps &M$ cx^W1r޶ Kk*-ɑ|IQOz@2XdPMcX^^^I$H$Mc [I$I$kJI$I$kJ $I$kJ hQI$kJ"II$Mc,["6LI$Mc,[ mI$kJ ($I$kJkJ 5,c(B`xɚ B I$ 欄&I$Irʲn48׭М7 8X>N$x^WU h$I$5Q@ $42P@ӌ|xu:os)!XN /"IR'9ӌW^xA$I42I$42A$42A I42I$$42@ 42 H$42P5=LcxXXXМ) !8P>>׭ӌpxxx ٖ)ӄ$"I$@$5q$"I$I 5q$" $I$5q$" I5q$"H I$5q$"I$I$5q=X&ӌLcxXXX0IdI2̃=?6ڃ9sxxxX#m-3|s0|nc $AssA$I$tsUUU!4$I$|s UUU!$$I$0|sUU$`?0|sUU'I$QsUU'`qsUU,mm6k+&|$Z rϤ?*I$InA A% :$P'O$׭^WU$"H$I$$"H$5q! @5q!I&i$4R4RH @$42HI$42 i)nӌ"  ӌ|xp~R;<)$@Wn &&"I$Fbԝ񃪪$!m$M&3# H5|x 5t$Lkx^ Lܹmlk5- :Ix0@-5 :!ZO֭xW/"_?Ux^WU$"I$I$5q! @ 4rb`q^zN&bP/=WI$I$r,n +wI$0RWz .NRWpWMcR*5#&,[B`pXX۱mHJ ; X Ҕmc`pxH4MLc,[ $ kJ kJ kJkJI$kJ$Lc [&r,cBXX<I H׵j{=?/6`"'{$X\^V&6/U)"P5*U) I4UUU(I>4neހ)I$}4՗~I 'Ф{Z pRWB6ۯRUUz)ə_Z-):P_'Mcxx^W# m۶-Mc,[+! kR" I I$Mc [# I$IMc [*(# I$H$Mc [(# iI$Mc [* `&j"',c(JX؜iEQQ{) *=I9ARPk6b=p [\^_{=Z %#XI$lk^z# -McUUU\%"M$HR$cb$"I$A$cb$"I$I cb$"H$A$cb$ H1Mc [`!$McHJx^NĉhJ5 : $h{- p9"'mcx^WU$"H$I$mcMc\WUU$"$HMc [`!# [%UU c mr+c^*% c->Iuo-x;'O$4sx^WU HssI$0|ncA$0|nc $H$0|ncA @0|nc # hsMcxk90lk \I$Ps^x!i{McUW_|I$I$kJ  kJA$kJA$ $kJIkJA kJ86,[Rh",:|$sHJz^W ɝۯmHJ5 O$#N^% 9|W\xh%"mEd$" I$|t$ I1tk` 5s$sRx^ ɟNR-=hU 5=#P>}$u|x^WU$"@$H$|t$"I$H|t$Z#&I|kx}>bՎMc %_"',c^z NjnHJWտ8PpZ+<$;mkx^0"]?|Mcx_UU$" $I$cb$" $I$cb$"I @$cb$" I$cb$"@$Hcb$k3l]עMc,c#>X{R_~,dI$oZ + mhq|\x`$"I H$|t$"I$I$|t$" H |t$"I I$|t$"@ I|t$"H$I$|t$"I$ $|t$"A$I$|t$" $H$|t$,(|mc`HɝR5%%iiԽ9 7I'1s*>^?1z6Z+Ӕ0|Xpp`$"I$I$|t$" $A$|t$"H$ |t$"I I$|t!k:h:ts$I0|ncI$@ 0|nc 1#&sR`xXI!iR ;BFhҜs`3"??~?QMc\^WU$"I$cb%#@ kMc?#} mcU唗N:. cWx+"  [Wx$$AMc [ -$"I$I$cb$" $I$Mc ["P#&McHJ`x\I!HJ5 @əBuA#>$U|x\^W$"I$@$|t$" $  |t$"H$I$|t$"I H$|t$"IA$|t$"I H$|t#@o|UUU$`n|%UԶ}>LkWz `֯ZUժ:ɗ1Ҕ탩+b.hb [ ^W3,c -1x "Nܯ,cUVx$4HSmk [$"@ I$cb$" $I$cb$"A A$cb$"I$$cb% $h*1MciJ``$OM(B_5%?Iɕt˃+/@ XU0|`x^&"`8I$0|tXfU$"I$A$|t$"H$A$|t$" H$|t$"I$H$|t$"I$|t$㣱:|s^zhМZ+I$I$" @$=]@$I$Խl/Wɝ$Lc^z /McUUUTI6H6kJA@$kJ$ kJH$ kJI A$kJ"Mc,[ЦMc [-$Mc,[H(1,[B``IB_׵-! QKs 5I$Ip.7`A׵-x3O<ӌx^WUH$I$4R@42@$42 $42 #5 ӌsXxNЧm:s")!4 M I$N&ӌHI$42 $$42I42I $42I$I$4RI$I4R؃%X%,cXXXX IdI )=-:;#>׭ӌxxxx )mӌ$" I$5q$"I I 5q$"I$H$5q$"I$I$5q$"A I$5q$!@S4E$5q `&r2'LkX8I4M5='5 >#?|X\\\ C34C |kꪪ!$$ l|s1|mc$H 0|nc@1|mc 1|mcH 1|mc1|mc  tsz 1b$sR`XVInR5 > U%B4I\ɛ$9 9ܶqW$MR􌳄 $"$I5q$"I$5q# H$I$5q!c"c34RI$I$4RAI42 $42  iӌk"/>Lk`X`ɟlkյ-;1V|{#P3n $iO'lkx^$IlkxW-6I$IS{ 9uh-- ;#}'xWU&"$I$5ӌ#" $5q$"H$A$5q! 5q""-. ӌ{xxM'Q{)-%I$IsU(I$O̔nWz_`I$nRWxhMlФ(Bו(8IPo鿜\:>s'ҔMcX\^WH$kJ $kJH IkJ kJ@kJA $kJ  ,,ciJ` Hμɛ(J5%:9B׭N'x'N$4TTWI$I$2$` g4򌫫$"I$I$3&"1$I$t)"pW;T/)#mTєp ,O T)I$Snx>Мz dM$sR`X58I$IZ*@ Av.%x;#O'N$|x^WU$"A I|t$"H$$|t$"I |t$"I$A$|t$#ђ@|McxNR'Lc %=IIXpࢸ~="ŠC?Ӕmcx^^&"p$IǎkMcXWUU$"I$I$cb$"A$ cb$"I$H$cb$"AA$cb$"I$I$cb$"A$ $cb$" $I$cb"McZ`~B?nR %+ Q|+"C?:r|UW^X$"I$A$|t$"I I$|t$"I$I$|t$"IA |t$"I$ $|t$" I$|t$"I I$|t$"A$ $|t" 5tZ``pIِ1Z%- AI$əsΤ -9ZZxxzjnYnϤZ 4A!Cq{kh'"IҤK0||UUTT$"I$I$|t$"A$I$|t$"H$@$|t  -|kA$0|nc@,sMc`pNМRW%8I| na%:P='mcpx\V$"I I$cb$"I$A$cb$"IIcb%"IM$mcMc=WU#@sMc=UU#O js x,I2:,Qmk*WUI$N'rsI$qlk^z! oMcUUU\!>IMc,[ߨ  Mc,[ IҶ Mc,[ Iu IMc,[ժ$i[IIMc [ I-ڢkJ@1MciJxX'O(B_W%ia1Z);I [6 : 4hШx^+C]v\WUU IuIӌ!q iӌ*!I$C'5QI$42A 42@Sӌ@# s\x DO'̃*?!HI$I&ӌ!I$I5Q"I$Ib I0lӌ$"$I$5q$"I$5q!`&j&LkXX\3IdIum5:!؃>>׭X\\\$"I$I 5q$" $I$5q$"I$ $5q#$s* `5h$M$.(B7%9ɓ`n遁!$j-w| PNy-Ԅ~$0wP $"H$A$5q#"H I$5q" A$I$5q!I$I64R#aӌ!$I8!􌲌`#b&Lkx^x}ۏLkV%;I N] 9 C֭U{pxI$s:N? p޺m۶sW8Iɕֵ **=$hШ׭ 2"XO略^WU$"H@$"I$ $5q$"IA$5q!I4H$4R h I$4R!D$I$5Q ӌ`s">PsXx '2 *0 (iޖn#@ IN!I$ @n3U' I&srr-JWx @/mkRT S,cZ5@ @ kJ IkJIkJI$I$kJ5#&,[(B`ppXNT B )qu^0ޔsp+Ҍ I$IS|$" $I$t$"I At$"H It$" It%" $M$t("xNT3UU(9,c`x#lk):I$y @׭M_*N k^ꪀ$NRU_ Pn{RW %McR Ҽ1,[IJ`z (J% ?ICv"b4?N$qMc\VWU!c'I$kJ!]ӶmѮMc,[j" ` [UUUZ !II$qlkx誂$ McUUVX$I5McRx ,:|$,c(Jx52IФHJ*; Amk x6"O?~$PMcx^WU$"A$I$cb$"IIcb$" $A$cb$"II$cb#"$HkR$P#&hMc [`#}>bNR 5_.ɐdI$lk' HIOt~!L$L$|sWW_| A0|nc A$0|ncHI 0|nc $0|nc -sk`$sRXV Hy떯RW5 I$Ir @rzΤkVXj"NR'Zck,c_~z@ kJ4H$Mc [P&,c(Bx^h$IN(BW% ;I b = @@Шnkp^5#'O$-cx^UU$!mi-c c蠪! ` cRxO':R %RnmϤZ^?I$I+k=1`@U|x5"O'O$|xVUU#"I I |t$"I$ |t$"A$I |t$" $A$|t#"H$IQ|s$!H6h0|s$ |Lc^x)~^?,c- &iI/Mc^~~$"I$I$kMcUUUV#"H$kR$"I$I$cb$"I I$cb$"I$I$cb#" I cb$"II$cb$"II$cb$"H$I cb# hMcRXx$NR %+D@0|^{{%"I&I$0|tZVX$" I |t#"H I |t#"I$I$Q|s$"A$H$|t$"H$I$|t$"A I$|t$"I$H$|t!%`&sRpXX -PQ{ E9jvuoac#`|mc`K簜Z 78PDm0#}'泌|VV\\$"$I$|t$"H I |t$"I$I$|t h6[5|k $0|nc5ڣ&sR`pX\۷kiJ 8)t`Ҝk`x'p'N$sMc\WUU$"A$I$cb$"I$I$cb$"I$A$cb$"A$Icb$"H I$cb%"MI$cb& {Mc-UU '5R+ Pm(BWy}$KQ c- @ɐB6hUo`5#h'O$|\VWU$"I$I|t$" $I$|t$"I@|t$"IH$|t$"II$|t$"$I$|t$"I$I$|t$"I$A |t#9sR`xϙ9nZ5% ?BTh{ b./tR0Mc\VWUMc [ZZZj!p/,cZ  Mc [! mk [%奥%N":@Mc+=UɛN:mk-"N䏜,cUVp$0AsMc [!P#&Mc(J`x^IlHJ5% ɑɟ$rϜz.mw{z^\x$ S|s $"I|t#"A Q|s$ 6B;c;0|s    { l$"I$A$|t# h 1t c``$OnR^5%ImR냩Aɕ!ThS/z=#3?}$mcx^WU%BFmc c說##HМ,c5UU,c I$1sXh$  McUUWX%"I&A$mcMcu[j$"II$cb$C۶E"cb!$LM$Mc,[ @:6,[IJ`3'NoHJ_W%iR <IIֵ/ :X=׵x^(X&~$Uӌ_WU"Ö$I$ؖ۶uӌ4RI$I$4RI$42@ 42$ 423iӌr`Z {5\p ! ;"u9ӌ^z! I$5Q!I H$4R#"I$A5q$"I$H$5q$"I$H$5qh&p'Lkܔ>IDI׵M==;#h&j"'X\\\$"II$5q$"I$I5q$"A$ $5q$"@$A$5q$"@I 5q"}2'Xl􌲄W^xȲӌQ|h Ƚ܏,c77758)Avi4pa*"ǼQ|TTWW#!I$I$Q|mk" II$Q|mk! Q|nk$"I$I$|t$"H$I$|t$" $H$|t$"I$A$|t"` 1tZxxɟNZW% CI)dh--cAЪcO:iJxz~  N(J <H*׭bp#aӌ^ꪪ$}9HN/xN&Na!0sO /$h]$"I$I$5q$"I$H 5q$$-q` j$ӌLk`^H1lk5-=I9mU% ?$3x^0"S?䕥3\WUU# iO^xI$s51O79P//3#3o\\^$"II$#"HA 5q$"I$A$5q$"I$A$5q$[>=iӌZZj ݲ$&ӌ~ ۚ$ ӌ [$&Aӌת ZC@ӌQ|`Cs'x%T /;&SZ=TW_|!$I$3!aI$3*M3-Vɛ$`@bzr$NRU^ -.RUX,cR Mc,[@(Mc [jh'L䰜(BW5mnnϤ9ԽqEUQ ?o[ʨ#pNIn ^#$I 3 -$" $At$"I$I$t$" $H$t$"I$I$t$"I$I t$ö:13󌪪jj`&zLkX\֗?ɑ B=% ?"X}'^WW("VI$4󔨯&s 4-^#I$@4N}vI'R^%oێiJUW*Мb< _?Mc`x^WM6iLc [kJ$vhmMc,[$XӶ]7Mc,["h [UUUy<{= [%Lc`X&wϤIJ_W:IZ58 P@Mcx1"O?|Mcx^WU$"I$A$cb$"A I$cb$"I$I$cb$"H$Acb$"@$I cb$"I $cb$"II$cb%#͒&IMcZx }>bZ-5U"9I$|^j)$ Nt$!IM|tꪪ I$X%|s $I$0|nc@1sMc`Ъ9t$sRx^IФR8I$I tj6x/"Ѭ'3q~U=Kc. 9|kW^zhl5mcRx&$,[(J`^U Hع{.(J5 5Ix@A b8!&'-c^W-"?U0|`pxX$!m$M 0|sr&9|ZXx!II$M2#X=@sӔ|Xxpp$" $I$|t$"  $|t$"$I |t! |kꪪ ` ,s,c`pONR5:ɗBM59&|$Mcx\^WkJ$"IA$cb$"H$I$cb$" $Acb$" $I cb$" I cb$"A$H$cb$0È-Mc ["#&s$s(B^ ?I u/@#X>s'u0|x\^W$"II$|t$"I$ $|t$"  H|t$"I$I |t#"@$@|t$"I$I$|t$"H$H$|t$"$I|t$$a(-tk``"M.R^֗5<I| ; @$R>j'Ӕmkpx\V$"H$I$cb#hR-Mc [xx!Mc [$C2$ Mc,[ꪪ dOMc,[$"A$I$cb$Z#h$ Mc5UUU"O'Z`nLc 5UI$+c^hHmiRU.AI$IS>7I$Rp_^?N#wI$sWz" 0wOsU\$aݖN|s*#!I$I$|s!۱|s$I(1|sj@&r{RpXi0R AI\ C1f?"'Ӝmc`x^W$"HI$cb$"I$A$cb$!M4I6Mc [$b#Hmk,cVZjO2'XϤ,c II$sx $$MONMcUWVX! $I$Mc [`$I$kJ @1,ciJ`X&MМ(B_W5 1hR ;I  ֵϤz&<C?׭ӌx^%h߾ӌ!I$Ib85Q$ 42I A$42 $42H42H42I I42II$42$42ӌ|xvR?os%7 M /"NR'rӌW^x4R@4RI$I$4R!mӌ xK䱔Lc8ɑɑ׭=5#h&h'\\\\$"HI$5q$"I$I$5q$"I H$5q$"A$I$5q$"I$I$5q$"H I$5q ɐ,ӌs@`IInLk5%%%/h(|b`p!pjp|k# $i$Q|mk" @$I Q|mk" I$I$Q|mk$"I$I$|t$!HA&0|s#ۀm$|s*W% $IH6t,cz#'MR^W5:Io [!x?$ӔiJWU"P&Os(Bz_U+)R ;#>׭ppxx$"II$5q$2k۶4r" ZOz$->%#I9N -%6an󌲄 "`1|` ,>L$LkXV ۯϤKk- *:I'0@m5 =#'3x^W("SvRS3\WUU$"II$t$mӶ[ѭtq$ (hO^xO'ФO $p 9U^r&!X6m3~#"H $$"I$I$5q$"H$ $5q$"I$I$5q$"H$I$5q$"I$I$5q$"I 5q$!h&I 45q# # `ӌ|x`~'{!%(T %%?TUWW\AI򌪪iM&2!퐶I$3! RH$I-`!I&z%N5ZWz@Nn.RUVL:,[(BjzI ɐ(B%% Խ/->I$IԽìcx9I$H_W-I$m{^w:)x-A֭.U+C'>t_^XX$"I$H$t$"I I$t$"HAt$" I$t"5lk`pOnKk5%-)>Vh %"HҤI4$"@H$tq|! $T|% 됶I$T󌪿# R I4` *%I>m4)U"I$NRI<ϤR^xPnoZUUWx @吗,[R 4H# Mc,[$"I$A$cb$mbm[Mc,["hZW_I$|>1b %I$ L;1B1kx1#h$O<|Mc\VWW$" $A$cb$"I$Icb$"H$Icb$"I$H cb$"HIcb$"H I$cb$"I$I$cb$"I$H$cb$"$I cb$͂&@McRxb9Z %$1I$/W~%@Pt_!k5R|s~A5sZxP&N.Rz^%ɟZ%8IhnW5 8'~W*]qxWUU@qp PLcx` KϤlk) %@S>ϤIJ_^IoHJ 5hs"p4 'Q cx^W"H0.kb\UUU$"IA,c c$"I I ,c c$"AI,c c$"I$I$,c c$öa-cZh袊"ZяZ%UW I$M$1ks)'9|I$rO^~'HAP|^z!I M$|s mh${ l $I${ l!hI$|s @E${ l!5sLc`"Шt$sZx^N}NZ5 )I$탡%p9\kV^x)"~sMcUW^x$" $I$cb#"HIcb$"I$I$cb$"A$Icb$"I$H$cb$"I$A$cb$چm9Mc ["hM'Mc(B^X'I䏔(J_W-iϤZ+9ϤR|~)"|&s=Q|UWT\$" I$|t#"AI$|t$"I$H$|t$"I$A |t$"I$I$|t" ,tZ` ФR% AICu?;##'|$|\\VW$"H$I$|t#P tZp` R 3v`BҔ0b`È$"I$I$0|tUVVT$"$I$|t$" $ |t$[-")|sZjbb5`&sR`pX\ɟR : f Ҕnkpx"$mk,cTVUUkJ$"HI$cb$"I$ $cb$"A$H$cb$"I$$cb$"I$H$cb$"I$H$cb#=Mc(B`XKHJ% I$A$狼y? !taTpc{)"x'$Q|TWWU$"I$A$|t#"@|t$" $I$|t$"I $|t$"H$I$|t$"IA |t$"H |t$"I$@$|t" 1#&sR`pXɝ۱nZ% ?)taҜk`p,"sMc\VWU$"I$@$cb X-۲-kJ!!I@mMc,[!I$4hkJ )mMc,[$!I&h$cb$"I$I$cb$)-Mc [{iJ/7 m;mRp`@9B6TO `2"<|VWU%i p|5UUU$OB?P`Ф|/UyO>Ϥ{j ` yįkx$$A|s$taߖ|s#X#&sRpXIlZ% BII2s|SB6+k`x^("`ҤخkMc\WUU$"I $cb$"H$A$cb$"@ I$cb$"H$@cbP@ Mc [Zh}2 h,c UUINB?Ϥlkpꂭ OMcUUVX@8:,[IJzP&MOHJ_W5ɔI B- I$I$ԽP/!sɛsМzn'ЦmjUӌ# M$M&$"I$I5q!I$c4RI$I 4RA 42I$@$42 I42H$ $42@ 42$42ӌꪪ `ӌ|XxMDo{ #4A . !mlӌ$42$A42$*(ӌ@HJ܏,c78I׭n7=7'./v\\\\$" I5q$"H$I$5q$"I$H5q$"I I5q$"I$ $5q$+Ю[6ӌ~ .5ӌMc`x!IILk---4 P->McX"0I?sZW"Id$sRU i$|RU~sZUIsRU IR_U$OZU $dm R_U +ɟ oZ5$ 4IP B`*揜R*8IDɑ׵79">#?XX\\$" $I$5q$" $I$5q$"I I 5q#Z#@󌒄x!M> ԌN_~"s$ӔN+Y3>t瑌Lk`X^#ɟ0ls*< hN7 =#}$3x_U$"H Ht$"H$I$t$"I A$t$"I$ $t$ vb2mtq!р@p^xO'O# n 5% ku3Zx$"I I$$"I$I 5q$"A$I5q$"I$I$5q$"I $5q$"I$I$5q$"A$ 5q"@5Pz b՚S'LkxWϤs* (&iAќTI$L$Sr|@ I$$$A$$3򌪪!\Ad3򌪪"5j'lkx\V4I$əֵ/)$tѴHR^ꪨ)Qj *I$A$ԽQ[ '`<Шь~W*Вt0"ж<3UU+"]?y$T3`ZUU$" $It$"II$t$"$At$4i-tq#أ&{$lkX\V@ICj{=/=##'|$3X\VW$"A$I 3ꪪ$"I$H$3$"I A$3$"A I3$"I$I$3!a$I$"1b2'ӌ,c`X\ %Ymk @R| <ФJ^PRy䯜ZUU\$0McZ -$&aؖrMc,[ $Â& Mc,[" h. [UW_I$K&1 c)%I$I$ z⊈$@!ϤmcUW\x%"IM6mcMcWx$"$Acb$"I$I$cb$"II$cb$"I$Icb$" I$cb$" $I$cb$" A$cb$!H 6cb"`Ъ5McHJx`O{(B׵ iYa1 )+%)I$0/V^h%h5|ZxX$I R^5 5ISb*8@@p%~4XM?$uq^WUh4MӦp\UUUH$ qpA $.tp0|pLc7Zx y1*8`@(ҔNkx3O'$1 cx^WUh4m6 cZ IINkjJ$" $A$,c c$"I$I,c c$"I $,c c$"I$A$,c c!I$I$NkJ!#& cRh~B?qZ-U@rm¢#)ər/V\x# 0|s~I$I$0|mc1|mc 4tszh::sRzPC'I{RxW 8Ib 69Q-x3/6lk`x~%ޢ.Lc )D@ Onc_~'"I$MkMcUWV\$"A$A$cb$"A$ cb$" $I cb$mע6Mc [#H:6Mc(Bz!к>NsHJ_U5 Nܿ[NHJե8IyU-"*7IRmk~(IX#oZ ?*Hr|Xp$"I$I$|t$"A$I$|t$"I A |t$"I$I$|t$"I$I|t"5%sR`ppXaZ D1ihupac)"xvR|TWUU$"I$A$|t$a|k`毜Z%749 n΅."'|WV\\$"I$$|t$"H$$|t"  ,| [`HɟRו%<ɕBn6M8#'|'McX\VW!I$IaMc,[ I$IkJ$"A I$cb$"I$Icb$"I$I cb$"I$H cb#"I Icb#` -McR``$MHJWו5im۶1mҤIϤr_-tnќ{xr" $|kV$0AԖ|k*$"I$H |t$"A$I|t$"H$H$|t$"I$A$|t$"I I$|t$"I I |t" ` ,t,c`pΟNR֗5%@IBN5?#>|$Mcx\^W$"H$I$cb$"I$I$cb$"I I cb$"H$I$cb$"I I cb!M$I$kJ#!AI Mc [$"A$A$cb&(9Mc(B`xIlɚ ФHJ5% >I\Iu=A#>s'u0|x\^W$" @$|t$"I H$|t&"$|t*# `|%UUU%I'ZhФ|UO'sVx?OZ^pɟФZW5'ϟ1 -sBpB&sp3"?$0Mc\^WU$"A I cb$"I$I$cb$"IIcb$"A$A$cb$"A$I$cb ZmiMc,[ڪC HMc [ꪪ /J/O|䏜Z `B'm0RUתJ 0HJ-Խ/7??I$ $ԽquI$I$ԽΤj #WɛQ^~h$$HJҔUUW\!i&m64R$!M I5q ES4E44RP ӌ H 42IA$42 42I$$42I$I4R IҶ؆mӌvɀ ӌ_j  {^x# |~^?ќ{;!hk:Lkz Im$,cU Im$,cU&$,c_UItɐ0,c 5  xϜ5/+ b'usV"?MkU# mm$ӌLcU" m$LcU!4O$ӌlkUUI$LkUT;IOLc_UX$0Lk_U*mc"R^IҶQZUInZ(!I$IR0{CI$ɛM(>II.Zo\5IR IPs(~6 mPkU4!)@c0mcU5"$QMcU1!O<|McUU.!sMc_UUxKo(B; ɐ ׵7%%%4"p"{'\\^^$"I$I 5q$" I 5q$"I$I$5q$"II5q#Z#I󌒄` l" O^x`~ϤN;ptnМ% 9"X??~?3x^WU$"H$I$t$"I$ $t$"II$t$"A$I$t$"H$H$t$"I$I$t#!I$I"tq!pp^XOB'ѰO 7$ n & Ӛ$"I$ $5q$" H$5q$!I$E45q$$A$6qx#H['mk_$6N$LcWX$Io,czU-I@Lk-R," "1 ɕ$#J'P%@$Sr|/ZZZZ ISQ 0k` H܉Mlk5%7C!ti֭o +Cu$\^WW @3+UU I$@r>r.I$QN_j r'/|Ur! ./+W$$HwP|$!I Itq$"I I$t$"I$I$t" 0Kc` H܉{nlk%>t`o'"hI$S3TWUU$"I$A$t$"AH$t$"II$t$"I$I$t$"I$I$t!` 0lk`HɟnLc7 ;I|ɔB +-iЦU O"֐$I=UI$@m:-UI&Z\"rnZUX%  픻McR $&I5McRjX Ko(B?5 :͉*I$?ҽ ~$@!mcUW\x&"L$;kMcWW^z$"I$Icb$"I$H$cb$"A$@$cb$"I$I$cb$" $I$cb$L1Mc [#ZC'Mc(Jx^`$IHJW5 7ɟPpb 73ШpMcx~:ϤZ -5LcX8I$ht̃5t$tq^W%c?ϓҔq\WUUA .tA@qp I qpI$H$qp I .t@pk`~\nLc7+ViOO.cxxx!I$M&-kbUVVX H cZI$I$NkjJ" I$ $NkJ$"I$ $,c c$"A$I,c c$" I$,c c $ cZ * !II$NkJр@ cjJx_1R %@Τo=#IP0W_Zx$I$j91|s_~1smc`$sR^{{RW 4I{0@{/ 5'|~W+?O$sx_UU @$I$|s~ s cx`'I|'N,c肁 )H@mcW_~x$"I $cb#"I@ Mc c$  @5McRx"t$Lc(Jx^pm[NHJU-8IyUpZ)8ymk^8#8}$qMc_U*"'OsMcxWUU 9P,cHJ8p`*7OZ+"}"?q|W\Xp$"I$I$|t#"A$ $Q|s$"I$I|t$k׶-0|s`&z{RXܖ?IIuA"R>u0|pxX\#" $|t$"I$I$|t$" $I$|t#j">5sZp`/IdI${"3"=Ӕ|\Xxp$"@ I |t#" $|s$9b2'sR`pX\9 Z > vikx("h:u$kMc\^WU$"I Icb$"I$I cb$"A$H$cb$"AI$cb$"I I$cb$"I$I$cb$"I$I$cb! 5أ&,cHJ`pX\ɐB AIɑS4/= `T|^&s͐$IotU!joLcxrNmkWp! .0mc\# s|k $"I I$|t$"H$I$|t$"I H$|t$!M$E$0|s%9b2'sR`pX1IIoZ ? FҔmcpX$Kvnk-cTWUU$"A$Acb$"I$$cb$"H$I$cb$" $Acb$"I$I$cb#"II$kR$"I$I$cb$$`(-McZ``"'Lo(B_ח5<{)?!t`u0|bx*"p;'R|TWWU$"I$I$|t$"I A|t$"I$I$|t$"A$$|t%"i I&|t k/ Oߠ1Lk -% rm5?I9A2PjB"}$mcx\VW$"I H$cb$"I$ $cb$"I$I cb$"I$ $cb$"I$I$cb$!HM6cb ضmm$Mc,[I$H$kJ 1,[R`zϙ(B %5% $I$Խ I$I$ԽQADI$I$ԽqPHUI$IԽqaTPEI I ԽqTAUI$I$h("xI$_X" UUWX" I $M0 ԌꊪA ӌ @$42  $42A$42$I42 ItIӄ$"I I$5q!#4ӌ*i1ӌ`b:h'qLk8\VӺ&i{^ IҶ1 u*"IҶh WIbǶ8샕$Q-?ORN]sR LkV I/lkU*IϤLk?I$]HҜ-_4I$n /3UU3I$/ }U/I|* U)I?hsU5r "II$<<I$I ϕ6II1:&h"'(B8=IXɕDp[~z7"`=?s&Mc^^^("8؎kMcUUU$"H$I$cb$" $Icb!Xk6Mc,[  I$Mc,[!,4Mc,[HJ-IJ: )B-  ,":jBU\\^V$"I$I$5q$"I$H$5q$"I$I 5q$"I$UQ$"I$I$5q$R#󌒄`!# ӌP^x#|N^'N_$  3N &"N8fb$t$"I$ $t$" $I$t$" $t$"II t$"I$H$t$"I I$t $@Ҩ5`Њ5c$lkx^W`9{{-+y$ќ.xl|ж䑌lkW Pr$ӌsU_ v$ӌLkW$ILk~UILkU 7I$+̓5I@0W3IIIМsW- иmc~WI$jФLc-IyN_+[-6l򌰀I$򌪮5#&lk`pXXɟФkk !#7Z 3bpx M$ S| koI &!)M43*& XH 3p$I& Ϥ3 UI$O>R> 66m1-|(wO?0/^ #Mn|+z# %/|+$$H"P&j$lkpX\V=IIj{=/@#>s'3x\^V$"A$I$t$" $A t$"I$I$t$"A$It$"I I$t$$L۸-@$#&s$ҌlkpX\;I$I?= 8`ڽxWUU&ЉҌp7t-( Zi$I4Ҕ^耪#I2' hnV9I&RxN:w߯RUWpIO$ hJ% I$H$Խ/ I$IԽqdI$I$qxࠀ$0 mcUW\p%"MEkMcW_^$"H A$cb$"A$Acb$"I$ $cb$ A1McR`k$,c(Jx^N}HJ5 :ɛ h{= ;#ê'mcx^W) `kMc\UUU!: {RW_ ?&1b )--iToꤷ#?>pWW^X.tA H.tAI qpI I$.tIqpIH$.tHI$qpꪪ PlkXp~^?nlkh)! H cW_~i۴H& cZNkJJ @[ANkjJ#"@ I ,c c$"I$I$,c c$"II$,c c!I$A$ cZ*"*! $I$NkJ : 5-cZzX 53' cBxX^ې ِmq+k I$m$\b#tAk~|x&M{Rx^%.I{Z*4Iu/5 x5>~$t~WU!p$I$|s|_UU 1|mc!II|s #&Isk@ /,c%^,!ns^Zj+#)5s [x!ZO'McHJxW$I.(J_U 7IpZ *8ms+^8"$Mc_U+"'?sMcxWUU$" $A$cb$"I$H$cb$ ͂iMcR`ߌ -IJ 7+t@)R|_~)"w|Q|UUW\$"II$|t$"@$I$|t$,|Mc`Hɝ؏R5%@ɑ Cun7-8!/'|\^VW$"$I$|t$"H$ $|t$"A$H$|t"̀ tZ` inZ 3VhAҔ1pbb$"I I$|t" ` 0tZ`HIZ%1.y#'IB?ФLcXhPNwoZU^"0.McZ$@JMc [ $"H$cb$"I$H$cb$"I Icb$"A$H$cb" @ 0MciJ`HɝHJו5% m۶mRj<1tA(TPbp+]?O$s\^WUL$I$0|mc"-I$0|sU! | UU%$`osxp$omk\  ./mkx$ tmk $!H&H|s#h1tZxHɟR% 9I ts"p3qMc\^WU$ cMc,[$"I$I$cb$"I$ $cb$"I$I cb$" $I$cb$"II$cb$"I$ cb$" I$cb" ,P#&Mc(J`xXIlϤ(J% @ɗCu5-?#&|$U|x\^W$"H$I$|t$"I$ |t$"I$A$|t$"I |t$"I$I |t$"H A$|t5sR`pIɐϤR%% AIIslC*ѠkpX^'"hҤIkMc^WUU$"I$A$cb#" $$kR$"$I$cb$"IHcb$"H$I$cb!28[&Mc,[A$kJ  ,Mc [j=jk(Bz^Vɐ0`HJ I$I$Խ01#jI$I ԽqEI$A$ԽqQFI$I$Խq EUAA$I$ԽqWI$I$ԽqAQUD@ Խk"9I$q|"  UU^x$"@$I$!3ۦmԌꢪI$L$5Q$ 42@I$42 $I$42!Ijnӌ+$"I$A$5q hЪ5ӌsx*:M$LkxWI1`ϤLkյ,I9IQs^<ɟK1B2P}/ +kW+o#$0mcU*t'PMcU.I$Q,cU.q$0-[U1&C'|iJx^_>IZ ))#>">kx\^."{McUU."ɟ$sMcUU)"Ht(J^^-IdIİ.7"#>9qMc\Xxx$"A$ $cb$"I$A cb$"I$I cb!Z3(j&Mc,[H$AkJ,),cZ@@ HnHJ5556!Aa׭o)"xL$"I$H$5q$" $I$5q$"I I 5q#"H$A5q$"H$I$5q$"I$I5q$[#&i󌲄`%3 Ԍ/Wx"|N^'N/uu%  3 %"I$m$t$"H$I$t$"A$I$t$"$I$t$"A$Ht$$@5/|`9s$lkxV%I$Iolk ;Kh{(p2 Im/nkU-I Iok U,I'ns.U,I$ [ _I 1V(B `{bx4"$QMcUU."ɟ'sMc_UU'Ь-۲1kMchwUU H!IMc,[ZLc [M9HM,c%UxI2'js   -% ۸ -3ҌjjhJ䱌lk\֗:I  ?/6O֭XX\V I۶ $!i(3$"A A$t$" $t%"iI$t&H I3p*$O54U%I$}RU_I$I$RV3 吸?Q{Wz(ಹ{U~ Hymlk׵ ?)taFO * ڵT$"@$t$" $It$"I$ $t$"H t$"I$I$t"9lk`xȝylk B CVM% 33'}'֭\VWU@@@$3p7wҌ$J $3&m3jꪪ" # 1{` & s  -9I$sսϜaPmѴ" I$I$Խ/3I$H$Խ/pɑI$r{z&4 kUUTX&"I$L'kMcUUV^$"I$I$cb"@5McHJx&NĬsIJ~W%5IyOR: 9s x9$O'O$Mc^WU$"HI cb$"I @$cb$"(Mc [`>XЯR%_"ɑI${ $ hҌpxI$I$pUUW\$.t H qpꪫI@$qpI$I$Ҍs@PI$`pUUz&i(:P+cxjL.Z.ו )ɗįMk\z&}B?;sZ_^z mA cZ i۶a cZ$"II$,c c$"II$,c c$"I$H$,c c!M H$ cZ* (!  IҨ5 ciJx5t$ cBxV5HxnJ5 6I$IRn [7I? ZzOs`+;IBj{4! h;t^-?$s^WU0|mc1|mc@@1|mc II0|mc!I$I$|s" P̀@|Mcx`O'|>n c %7 njJ~\6O OHJխ"8y iq{9 x8"'qmc_U+"`?v(nkU$~-ZX+rnZUWz$ I.kZ\$WMc [$!MA"cb$!im$Mc [9`"McHJpX\-0Z :I UϤ7&;>'Utx\^W 0|mc 1|mcI$I$1|mc0|mc&ǐav1|s#)# I.t $$P@n|+5UI$lkWx@?,cU^X$IМZ_U +k )ə/r^׶O'.ZW^ @J.{RWx$$ 唛McZ+$[;t]Mc,[ $" I$cb$"I I$cb$"H$Icb$"A$H cb#@ ,McR`hMHJW5, #@fhT0|`x)"xR|TWUU$" $I$|t#"H$ $|t$"I I$|t$"A$I |t$"I$A|t$ i*-|k``"'LR^ח5 PQ{>9Af{bz1"?''|Mc\^WU$"A$ $cb$"I$I$cb$"I$H cb$"II$cb$"H$I$cb &٘9Mc,[zI$I$kJ@H$kJP#&,[BxXIt(J5% /I$IΤz2I' hյќzI$N1(.mI$Τ#>Խ/I$I$ԽqAVAA$I$ԽqPGE $I$ԽqUAe@ԽPԓ yI$qXj(4 O+-&"I$N$ Z%Xӄ!I$I I$ ӄ!I$v5Q dAӦ󌒄`"ZC'ӌLkxV$IOLcX׵ 9I$Iks%#" 9hkx8|$(B:`fhscc"H$Ink-cTWUu i$I&kJAkJkJ` (,[R@hL.HJW5> )A.=k5"3'}s'3px^W#P/R#3xzzz$H aSQ$T I3󌫫$0I80@#P9k$ҌLk`x\=IgIֵjs=/ @#S9'3px^W!{54'~I$O&Qo+I$ $ӽ0'ԽqMT$I$rsx)$IJmkUUW\#X&McHJx^`$I HJW5 9I1b*9! h;֑kx^/#`$I$|McxWUU$" @$cb$"I$I$cb$"I$I$cb#"AI$cb#PMcR`~R'R #9Iќn@$t?ҌqV^x` @.tI$IqpI$qp!6Yc掑p# (6lkx"}$p cxVp cWխ"=I$yS k*6I>ќkX(XMnkV\p)"Mnk cW^\x$"IA$,c c$" $I$,c c$"$I$,c c$0i(0-cbzhZ&bBx^$Io(JWU InB-7Ix @ќOz9$b]Ҕmc~W,36l߶|Rx~O<>iJ %55taopbyU#h$M$1|s^^~ 1|mc1|mc1|mc$1|mc I$I{ l I A${ l$@ӵ[0|s!:P{Zp II$+c= cmcxz-#$I'{McxWUU$" $I$cb$"I$I$cb$"@ I$cb$"I H$cb#"@$IkR$"I$A$cb$"H$$cb"̀ `MciJp` o|ФHJ %+IDqWTpj*"}.Ǡr|WV\x$"I$|t %`"'sRpXXCII2Js**@#P9>U0|pxX\$"I @$|t$"I I |t$"I$I$|t#"@$ Q|s#"I $Q|s#9PsZXxp`5Ij**+3 1R`H܉nR5 AI\I󜎜54=#>s'Ӕmcx\^V$"I$cb%"iI4mcMc u'!MuǎkMc U(} Nk UU'$N,ch+ps$ZU^" I.sZx!`Һ5,cHJzHɟ߯(B5% ?R~l< v T0|`x$_'0|s\^WWI$I$1|mc1|mc@1|mc$A0|nc4ts  $A|s%"iI$d%@ @o|5UUUI''ϤLc 'rˋ?Idh|`;"'mcWU$ $I{mc UU!O? -mkU.OZW PNZU^#0 唻McZ W$ tMc [+$"A A$cb$!M$h4cb" 1&McHJ`pX\IB- ?I KTϜ44(>#د>s'4|x\^V$" $H$|t$"A $|t$"I$@|t$"I$H$|t$"I I$|t$"I$I|t" 0P&sR`pXI Z%- m۶cr{3nymkx\x$4 ޔMcZ $u-Mc,[ $"I$H$cb$"@$I$cb$"I$I$cb$"I$H$cb`'`&Mc,[ $$kJ` 0,[HJ`hɟBו5 I$I1- (9B׭М' -ھ^WU#2HZӌ | !I$hrϜU$Խ ?II$ԽP 5I$I$Խq1UԽ/c?II$МVZ$0Ԍ$"H$I $" $I$5q$!iH$5q"86ӌkx!*:M$LkxW Iܷklkյ<I@@ҜN b;h;kxW5:dO6PR~؉ (J5%7N0@9mc``px   kJ!j&kMc,[!I$IbMc,[ I$IkJ R9,[(J``p ɟ.HJ% ?H Ҕk`pX#"$I$mcMcTWWU#"H kR$" $Acb#"$kR$"I$I cb"` ,Mc(J` HNHJ5 ?9BF{br0#x$O$|Mc\VWU ,Mc(B```!HJ 4fh`kxp``#!H$I$Mc [(" I$I$Mc [$" $I$cb M$M$kJIH kJ),,cR@@@`IIHJ+$tkz~'ФLcU $oФLcU $mۏLcU $ݶLcU $KϤkUU $mۺΤkUU`$i,cUI ,cUIҶ[[ϤLkUIҶ LkUn۶ q{ |I$s~`$  ќ3UWVx% ]׶m63|"h->+cx`$ɟolkXW5 >I {# ? !DhШkx^4"N$1-c\WUU$"I$I$,c c$"H$,c c$"I$A$,c c$(ɀ- cR@ Hɛ(J5%%2I',P*/! d{|Xzx+"|2sMcV^\x$"I$I$cb h&C;4Mc,[HkJAA$kJI$ kJA$HkJ#(hLc [?|ϤR56II+>:$9؃>3bxx\%"I$I&t#"IA$tq$"I$t$"I$H$t$"I$$t$"I$ $t$"I$At$$I -3Ҍ`X&KьlkX\;I\ ֵ=/:$P r'֭3x\^("RMT調&sh4n(I' @32+U#I$O5px ɐ$$ ^pO|W r| Uh% I.{" 쒳&lk`x^%I$IKk+@dho*"h>T3XZUU#R#4R/3zzzI'N$Iw$v!K63󌫫#͘&lkx^=I$Ikk-: $hЈ("hL;[S3\WUU$!I I"tq# #iH!I$R5I$ϤI$I$/cɐI$ŌkZjJܵkHJյ=ɛS$h.`<"(?mcx^W'"X$M$kMc\WUU$"A$I$cb$"I Icb$" $I$cb#" $H$cb$"II cb$!I R4cb h,[Rp~R %&A1ҔnŠ)#pUW^X@qp1psh$P c^U`$I- c^U%;I$yS*s>>y$mO ~<$(}$0|~WU,Zxz?n c )D@nkUW\x'"M4M&Nk cw~|$!IРH4,c c# @5 ciRx5|$mkJ~W5J oJ5 6Iy6@k^4~'qMc^WU!$I$Mc S Mc,[ꪪs">sJ^z$XOZ %iQs^xI$I$0|mc1|mc 1|mc@1|mc!i$I4|s" I$H$Q|mk$"I$I|t$"ɂtmk`/ȽnR '7,1k~|,"]r:sMcUWV\$"I$H$cb$"I$ $cb$"I I cb$"I$  cb$"II$cb$"I$$cb$"I$ cb$2mMc [?9iJ5_ 1np#,D@1|_|&ۦ -0|shhxLoZ5@ CvM7'7"h2'|<|\\VW$" $I$|t$"IH$|t$"A$A$|t$"H$I$|t$"I$I$|t$ *| [` ˏNR '5P#9%ZppXٖv6ϤR @1BVs`-"sMc\VWU$"$I$cb$"@$Icb$"I I$cb$"I$I$cb(".wI$kMc UU' @ Imc/U' ' 탍kpUlbRW/ E b <ICu?<3'|$4sx\^W1|mc1|mc 1|mc1|mcAH0|ncH@ 0|nc!nn|k$"HI$|t$ -|,c`܉دR75%<IIRcA$/5&Ӕk`pX\$"H$ cb$"H$Icb&"1I$kMcUU&#AsMc %~k -U$ ,c^r-ZUWz# I.mkZ\" `5McRkpΟ(Bח5%r +19xI$Qp|h, 6mqmk\$$IW|k $!Ii0|s$"A$A |t$"H$ |t$"H$$|t$a*,|nk`h$M䐔R^%<IIm!/? 19hЈҜkx\* |(Imc.WU!wt [x/!PNw- [UU^$ McZ+$m1]Mc [ $"H$I$cb$" $ cb ـMc,[zz$@,,cZ@&{{(B^^uݶuϤiR 8 4hМ56>}'׭x^WUH4R!HLJӌ q۶mӌ) nMӌ*" ZH I+!I">u7WI$MQ WPmԽԽ/?/I$I$Խ/| 'W|#@W% H8:sx!t$ӌ,c^X}۰lkWU%6I$I s :Iis x8#*:$mc~WU'!k$kMcWUU# 5Mc(J``p;II'J--)!;#>j>mcXX\\$"I Icb$"I$H$cb$"H$I$cb$غ)Mc [!`&L$OIJ_W<I򜫃-/ ;#`"'{$mcX\VW$"I$ cb$"I$I$cb$"H$ $cb$"I$Icb# -h6Mc,[ %r$,c(BpX?Idɑ Z)  @#P?Ӕmcpx\^!1Mc,[j! ".McJ``1 HJ 3B)sxjh'!M$u$kMcWWVT" H$I$Mc [$"A Icb H$M$kJ kJ -,ciJ```ɟəB 5IhWu)I'TnU)I$T`h{9IBi4lsp/I@ IOkU/I" IsU-IBФs U/I|(]U/I{U-I@1kI'?1Z/%7I$1AֵϤvk|O9MXmszp$kWյ <II <XҔmcx^,"]Ok cx^__$"I I$,c c#" $@$,c c#"H$H$,c c$"I$H ,c c$ 1 c)J``  o(J >~LR``y?揜R )D@Nk_^x'"I$M$kMcUWV\" Mc [h ImMc,[ IҶ0lMc,[ ImHMc,[w I$j+ Mc,[ vb( Mc,[_s>`iJ_;I Tֵ //-%8#h'{'֭3\\^V$"H$A$t$"I$A$t$"I$ t$"H$I$t$"I$It$" It$"AI$t!5lk`p ϝعlk% ;!tA&h׭ ,"t3\VWU$"A$@$t$"I I$t(".I$ԝ("[Shq$Tꪯ)t$3z)I$ I3exI$I>pcmkpX^_$"@$A$mcMc\WW$"I$H cb$"A$I$cb$"A$A$cb$"AI$cb$"II$cb$"I Acb$"I$A cbMc [ꪪt">X탊J7_"I$Z $ mP{h>pZ^PC'I8{Z`V 8I$ISb :yiu <"'u|_U."?I璄|xWUU$"  I |t$ۦI|shꪪ|&OZ7z(I|I$Ϥ{xb!*hh-cW_~x#ZO' cBx^$ɟo(JWU .I$Io(J-7hsx6$Mc^W'sMc\UUU kJ Mc,[ꪪ kJ@McRhࠀ~?-iJ 7#y||~$I$91|s^| 0|mcI$I$1|mc 1|mc  I${ l#!H$I$Q|mk" @9t cx!5t$sRx^ItaZ5% *ɑI$ ``0b|Mc^xx%"m&M$cb$"I$H$cb$"AH$cb$"I$A$cb$"I$I$cb#" $kR$"I$ cb$"I$cb"Pр McHJx`IT1R *ɐI$QpZx, >,rZ``I R% @h(UPbp&"HI$0||TTUU$"A$H$|t$"A$I$|t$"I$I$|t$"I$I$|t#"H $|t#$B |sjꪪ/h:Z^GZ>**9IIr@#T9>ӔmkpxX\$"$H$cb#" @$kR$"Icb#"@I$cb#"I H cb$"I$Acb$"I$A$cb&"ĉ$kMcUUU":j"'sHJ>?1n+; v TQbpX#M۶0|s\^WW1|mc1|mc1|mc@ 1|mc $0|ncH$I0|nc m|k$"A$I$|t#5أ&sR``XXɐaZ > )tA.*`7#hB'M$qMc\^WW$"I$I$cb$"I$A$cb$"I$Icb$"$H$cb%"M4I$mcMc.uU'"]m$kMc +U&  mc+UU%'b mkr/U:?n(Bz ɟhJ ;CltqzxX&I$0U$I>Ф{zpɝ$kU^!P /mkx$ ݐ|k+$-֮u|s$"I$I$|t" 0#&sR`pX !ϤZ% > !t@"b6"'~'QMc\^WW$"II$cb$$IkMc?U% }9 mcU .u [^!I. [U^$4IwMc [+$!)4I&Mc [ ,-Mc,[zj1&,[(B`X^I!h(J5 7I D`׭% 6/>|$ӌx^WH$I$ӌ @42I$42IH42 I 42I$I$42-$I$ӌ*".iӌ+$t&I UI$1Q >^ 賈5H$A$Խ/|O$rx芊>omk^^(I 1s" 0IX xʠh9'Z^W/I$tZ_UU @LcRUDvb?,ciJU*'IHJ_UU:ɔLb))5#p"'|'0Mc\\^^$"I$A$cb$"I$I$cb$"I I cb" 0McIJ`pʛyN(J5% >t`Ҕkbp&"`L$kMc\VWU$"$A$cb$"I I$cb$"I$$cb$"I$cb! 0Mc(B` Hɝ-HJ5 A9a6{cp-"?XX^#ӌUU#,5#>,c`xX*IIoKk #+8 #:&mcxxX\%"H$i$cb%")$MmcMc U(".`I$kMc UU'"$IkMcWUU)"8kMc}UU'1kRjjj |ɗxniR%%%%< afi֭(HӴmtx(~&3N]$I$2n9=IXɗdOP\_3"/0|Mc\\\X$"II$Mc c$"I$I$,c c$"A$I$,c c$"I $,c c$"H I ,c c",5 cJ``ppɟNHJ ?#T9=Mcpxxx!#X oR5__, \O$R*X `sMc^x`$"H$I$cb$"I A$cb$"H$I$cb$" $H$cb$" $cb$"H$H$cb!9P1McHJXxp1_tb++--3":>3\\XX#"HH tq#"IItq$"I $t$"I$I$t$"I$I$t$"A$I$t$ۆE[4tq!&r$ҌlkpX\9IDɑ յ=/;#R:3'׭3pX\\$" I$t$"I I$t$"II$t$"I$@$t$"I$I$t#"$t&"&I8T' ,13{`ڽk%I$Ibs?UII$snn%Tr3OVk% 4Ip- [7]v3Ҍ$ IB0i3# IRmѢ3# ` 1s``'NlkXVե;I4h 58"3?~$֭3x^WU$"I$$t$"I$I$t$"A$Ht$"H$I t$" $I$t$"I$I$3~ꪪ$ #mA^ I$R%_sϤl9(X1sWVXp("Ir9kMcW~Xp$"I$I$cb$" $Icb$"II$cb$" I$cb$"I$I$cb$"IH$cb$!h6cb $ $kJ@,cR`j&IJ %7/ɝ${zj3O?Oz2bW1Ii4택 664|WU/"O?|xWUU$"I$ |t$"$I$|t$"I I$|t$"I$A$|t# P̀ht,cp<揜Z %7&ϹМjRxx Lܿ]N(Jե;I0@< 8! h;֒nkxW.XOMcxWUU Mc [kJkJkJ$kJ Mc,[ꪪ ,[iJp` ~iR #T!t~#]۫ 0|sW_~x1|mc1|mc 5sMcx $sZ^U`$I R^-5} c 9IwHnu71 ЪҔMcz. BNsxz)"N\?>sMcWWV\$"I$I$cb$" $A$cb$"H$I$cb$" $I$cb#"I kR$" $cb$"H$I$cb$(Mc [`jiJ%5rϤp+)~*?rZzzz`?II2Z+*A"X:#?U|pxX\$" $A$|t$" $I$|t$"I$ |t#!HH$|s$ m&$|s$nm$|s]$4 '|s*U#5/sZXp``)vZ =I 1BQ(h6"#|'qMc\^WW$" I$cb$"A $cb#"HH$cb$"I H$cb$" I$cb$"I$A$cb$"$H$cb#` (McZ`pN(Jח5%<I CUn?-<3'|$4|X\VWI$I$1|mc1|mc1|mc@1|mc1|mcH0|nc$$0|nc nn|k$$h -|k`hMoR֗7%"II2}n@HkpxX$"I$H$mcMcU$"I $cb H$kJ $ kJ$"I Acb$"I$H$cb$"AH$cb$"II$cb' (,1McR` دHJ %>ɕT;*-="#?'4|X\^W&"q$0|tYU("HmQ|?U'O1| UU'I$s/rUps$lkWz*"@Nv/mc^" ;s,chMZWו5=Iɗ񤏜A ,@$5&Ӕmcpx\%"H$IڴmcMcW$" I cb$"I $cb$"L$I$mcMc?UU%A IsMc?UUU$ N> .mcUN> cVx  .{ [UV`&Mc(Bz^Hɝo(B5 8IA׵M5 7:s'׭x^Wh4Iӌ@A$42A42I$42H 42@42HH$42@I 424REѴm$ӌ&r$LkpX\6I$ɗ M-3I$I*I$T*Ium-IbNIݩ,I@ Iv-_)I I5̃W,I"H I5̓U."I I4̃U.I"(5 ۰1s /+I$0z`+$IJkUUW\%"IM$mcMcu^|$"I$ $cb$+ڶ"Mc [ &j$,c(BpXAIDZ! >#>rB'ӔMcxX\^#"H Acb$"I I$cb$" $A$cb$"I$I$cb$&lӸ1Mc [#&{$k(JZ^?IDZ+* ?#>'mcpX\V$"H$A$cb ,,,Mc,[jA  Lc [ꪪKznB73IIDo\^\.z"'p>|,c\\\XI$A kJ@m[$Mc [@86,c(Bz(}k(B~W xmHJU-Z) -X uӌxxr H$42X&h"'LcXX8ɕ =+/ 4/'s'qMc\\^V!Ӱm$Mc,[ ILMc,[$"H $cb$"I $cb$"I$@$cb# 0McIJ``yN(J 9$l4D?9֭3cbrp%"h&i4t$" $H t& R#1s```#_ys"8">9q cxxxx$"I$I,c c$"I $,c c$"H$I$,c c$"A H$,c c$"I$H$,c c!=X& cJxXXX=IdI*k !# >">#'McxX\\$#&McZ`/X &NJ %W)ɐ\k^zp@'mШ&kZ^$ I$McZ"U$IҖMcZU"$McZU$IۖMcZU$ @ۖ$McZU"N6LcIJ```z|ɛМHJ)) 4eu_## $tq$"@ $t#" H tq$"I$A$t$"IIt" 1k` Hɟlk5%<BTho /"?|n3\VWU$"IIt$"I$I$t$"A$It$"I$I t$"I$I t$"I$I$t$!M$M"tq$/53'lk`pX\=I {=%:%Ѡ?'x\#$I I$hm󔪸=/I$NTPNwO V|"0喗p+#@81pbP#&|ҌlkpXV;I9pA֭{5 <#Pt$3pX^W#"It$"II$t$"A$I$t$" $I$t$"I$A$t#" @tq$"AI t$!mMS 3ꪪ! P#&lk`pXN` s) ?q.j ,TI kUW\p'"I$M%kMcUWVX$"I$Icb$"I$I$cb$"II$cb$"I$I$cb$"I$I$cb @$A kJ$ &1,cZphZC',[(BxVxHJ5 @ r*5dioSqzV_(~$mc~WU$nbnk-c\UUU kJkJ@kJkJHkJkJ kJ@Mc [jꪪ}NNiJ%7_I$.Z)% &hApt^~ &M؆5skxZ'sRzW$I R^W 6I$ Z 9}h- ;$$1|^U3#`I$Ӕ|WUU$*|Mc``*?̓ [ '- sMc\x`$"H$@$cb$"I$H$cb$"II$cb$"II$cb$"I$I$cb$" $I$cb$"II cb$!II&Mc c!99Mc(Bxxx ݐ *k* ) I?qhAIH9BU54"h'L$|\VVW$"A$I$|t$"I$I|t$!AS)4|tdIZUU`IoZUU'I'-RU$oNRU$mRU y?Z  ? v(Ҝk`p%"H4I$kMcVWUU$"I$I cb$"$Icb$" $A$cb$"I$I cb$"I$Acb$"H$I$cb#"I$IkR" 5Mc(B`p HJ <)axTPb{%Qs\VWW1|mc1|mc1|mc1|mc1|mcH 0|nc@ @$0|nc )n|k" ,P=sR`pXI Z% ?ɕɐC2g>#3'|$McX\^W$"$Icb$"I$Icb M$M$kJ IIkJ$"$H$cb$"H I$cb$"I I$cb$"A$I$cb"5&,c(J`pX\ yniR @ )a8TPbp*"p&8R|TWUU$"I$I$|t$"I$I |t$"$I$|t*("I0||UU(@ IOt**I',An0|+u!?>Z~ ɖ`ϤZ @ɐC!th{ b6"~$QMc\VWU$"I$I$cb$"I$I$cb$"A$I$cb$"IIcb$" $I$cb$"$H$mcMc.WW%P#`$IsMc-UU#>?- [ _ Xt=RW*8IIֵ˃/ :,'׭ӌx^!pM׵ӌ@I42H I$42A$I 42@ 42IA$42$A$42$ $42AI 42I 42 0ӌk` Hɝ؏Lc6Bd`o .`'~'vVWU#`۶ӌUU#p<ӌUU"Xӌ_UU h$I$5Q  Eӌ$"II$%"AI&$".0|@@@@ɐ ɖLk%%0^I'I$0sZ`)mH|McW_!Ҵm# ;Mc,[|.1,cIB` HɝۏHJ5% <9Bfmkx/ڵ{ [$"II$cb$"IH$cb$" $ cb$"H A$cb!9Mc(B`x̝yMiJ% C1i(sbp+"psMc\VWU$" $I$cb X5X34Mc,[I @ kJjh&sB%IdInonmq29Q,[Xxxx@8:,[HJ^86M$kB~W5L$.(JU (Rb*II$r𤉽H$ \|-A)KU "#1r|hHOLc756C!aJJ&#|s,c\VVW$H$kJ@kJ"$I$Mc [! $I$kJ$PMc [ #1P5Lc(B```p)ə|R-))):$>&֭3pxxX$"I$$t$"I$ $t" (3s``` ɑ_əoKk 7$S9WQ-cppp`$"I$@$,c c$"A$ $,c c$"I$I$,c c$"I$H ,c c$!M$- ,c cko`&r$)JWח@ bp4)|$qHJ~W'I IJUMNHJUq߾Ϥ+c >nIJ_$ H-HJU$ (JU?m[-(JUuK.(JU?n͒.(JUPsmm-(BUyyscmϤZ- q].zʂ`}|W( r U_#  .| U$ IP $hӖ%$ڶE63󌪪j!P&j$lkpX\8II{?/<$/5>׵3pxX$"$I$t$"I$H$t$" It$" $ $t$"$I t$"H$I$t$"H$I$t"` 0s`Hɟ.lk%< A&  +O?U\VWU $I$4R hI$4RUUI$ӔnՅlI$ФNU_*>ms`^^ >ɓKJk+ =$nj'3px^%"@$I$t$"II$t$"H$A$t$"I$ $t$"I$It$"A$I t$"A$I t$"H$I$t"`5kxpɟlkV% sm #I$O9sz%I$0{p`(@/mcW_~$"II$mcMcUX$"I$I$cb#"HkR$!h I4cb$!E$m$Mc,c"@*6Mc(Jz*&N{(B~_%IHJ- %I$I /I$~s^)Ip~-}ՒsV^xx$ PKI|k%$" $ $|t$" $I$|t$"I$I$|t$" $A|t$"I $|t$"H H |t$(A|mc`vT.,c 68mkxz~%"H&I$mcMcV_W\ @&( kJ!I$$ێkJ!I$i$kJ I$EkJkJkJkJI$I$kJ@kJX `,[iJp` m iJ -% )Sɛ|^xrX>]OZ~W׀0IiҜZխ 5 $i 7"$|^U/#X'I$|xWUU$"I$@$|t$"I$A$|t$!i$( |sꪪ |"'=sZ6p-.kx+"N|?sMcUWV\$"I$I cb$"A$I$cb$"H$I$cb$" $A$cb$(5Mc [h":McHJ~ u$,c(J_`$(B_խO1Z *$I$rjj8 8t^?S cz"ĶI${RU*жI$RUжI/RUжINZUU7I I1|*U5Ib I{U4II IpsU33'OJxޗI$ <Idɑq^?$>j2'ӔmcxX\^$"I$$cb$"I$H cb$"I$Icb$"H$Icb$"I$I cb$"I$I$cb$"I$Icb$!i $Mc [ &jk(JZ^!``1*k (ɝ$kxpI./|Mc\wsMc@tsI$I$1|mcH1|mc1|mcH0|nc 0|nci8-sk@`"LOR^֗5)P 1M ;)aHҜk`p&$O$kMcTWWU!$I$kJ ($I$kJH$A$kJ!IIĎkJ#"IA$kR$"II$cb$"I$I cb#` ,McR`xN(Bח5%CIɕUU55?#>3'U|px\^$"I $|t$"I$I|t#" Q|s$"I$A |t$"H$I$|t$" $I$|t&21|so/KZ??IIR@%9&k`xX^%"H4I$mcMcwuU$"I$Acb$"I$ cb$"IH cb$"A$I$cb#"$H kR$"H$ $cb$" $I$cb 0&McHJ`pX\+RR)) :њ>׵x^#O?ӌx^WUA A 42IA 42I$A 42A H42A$42A 42I A 42$$42 H$42I$425#&Lc`pX\-II+c++5,>`pXHҴMӌ I$42A $42$424R KL˴ ӌ$" $I$5q$"A$I 5q#(Q|@@@@ɐɐ Lk%%%%Խ/2:I$I$ӽ|p(!ɕאַk^X`&tZ k,[9`"' [B`pXIT ƉZ*#ÚI$+cWz`RUUPrnRUU!0 .MciJ W"McR*"@H6McRz`&L$sHJ^<IIOsA#>s'mcx\^W$"I$I cb$"  I$cb!R5S#4Mc,[$IkJX=9,c(BXXxxI$Is 09lb0iJpX\<No(BU8Iı Hb 4 @֭/>$x^WUs5@_I$O&rn "'ɗT';z$ 1k``IILc%-7 vHkbbpHۦIMk,[$kJ kJ@ A kJ H kJ IIkJ"9&McHJxXXX3ɕI s)==+8"&>֭3XX\\$"I$I$t$"@I t" P@@ y،Mlk %%'5 fh`Pnk````$"I$I$,c c$!I$I$,c cW$mѢ&-cb# @8: ciRz!$ cJ^UHɟ(J% 9$I1lsZ8I$G 6I Hp{^6 6PZh܏R %; )AaҜ|k1"I#0mcU0 Of0mkU0If0mkU3 I"A$yncU3 I" $mcU0 I@hmcU%rМR.78 'A!BМ鉉* I4n(I' @Nw"$^?{_pɟ$М{U_ĭьLkz HIklk׵%;Ti- 3"}?x~_U$"I$ t$"IH$t$"A$At$"I$ $t$"I$It!E4I$T| $IҸ13ҌzP&s$ҌlkpX^;ICֵ{=%;X/'xX^W R4H$4RI$I$4RI$I$4R4R MIԌ*"kn UI$|1𤏔/!I$tm j&I&Tp^$ K $"H$I$t#"I I$tq$"II$t$"I$I$t$"H$I t$"H$I$t"`5kx`$ILcX5-<I$I յ<d@ .P"/ьxx~k5O,IϤs\x)"X_sMc_^z$"H$Icb$" $I$Mc c#5McRx k$,c(B^p}nHJU Z <I @Pz9!@8kxW5?6SQ [x~__r2'?NR 5/fHC/pc("؍;0|tVVX$"I$I |t$"I$A$|t$" $ $|t$"II$|t$" $I$|t$"I$ $|t$"I $|t" j>Ps,cXp`*). [,"l,;jsMc_^xx$"I$Icb $ $kJ!I$I$kJ A$H$kJkJ kJkJ@kJ@kJ@S Mc [ꪪs.XNiJ7__mi1{ *6T4o֋c3&'Ӕt^U(mqsUU" H$I$Q|mk#"IQ|s$"H$I|t$"A$H$|t$"H$ $|t# 1 sZp`+ɑI$.Z 0b {mc\Xp`%"Mi$cb$(n6Mc,c% A8:McRz!ic$McHJ~U[?I{HJWNm HJU 577pj*5kiq{?^4ZO60Zpz kK۴0R %rϤll%I$I2 o_4I$I.ФOkU4I$ ФPU3I$0U*"7$sMcUUU("NĎkMcUUU$i,(mc [jjHMď(B5%  G>B?ɐC1b20|h1"?t0|Mc\VWW$"I$A$cb$" $ $cb$"I$A$cb$"I $cb$"H$I$cb$"I$I$cb$"I H$cb$ -McR`HɝدHJ5%I I$Ϥ!b.I$_AQ_&I$O{h *w珜LcUZPNwOMcV 0唻sMc/Jsk-1|mc$0|nc$0|nc5sR`pIlϤR% :IIR^<R>3?ӔMcpx\^  kJ kJA$$kJII kJ II$kJ$"I$Hcb$"A$I$cb$"I$I$cb$ 1#&Mc(B``xX HB ?Cvhuc/"'}$|\VWU$"I$I|t#"H$$Q|s$"I$I$|t$"I$H$|t$" $A$|t$"I$I$|t" ,tZ` țZ5% @ C!ta b4"3?|QMc\^WW$" A$cb$" $A$cb$"I$H$cb$"$Icb$"A$I$cb$"H$I$cb$"H I$cb$ ,McR`h$MN(Bח5%%II$1-)ʂ) иmݘn5ꫭI$I$ӌ@A42@$$42HI42I 42@ 42HA$42 $  42I$42@$I42$i (ӌQ|@hLoLc\֗55 B-7% 1#'{'\^VW $42A$A42HH$42H 42@ 4R ˰T˴Lӌ#"I H$5q$"H $5q" 1ӌ,c`ɐILk% A $Խ/1I$I$ԽqPEh ӽ[߿%ɚR|p`Hɝۑ(Bו-D DIӽϤ- I$IԽO?II$V(*mӶ{"I$I Q*kz 1RU ']ϤHJUWI(J% 9I$Qsx蠠!@NqĎ [WWX$4McZ -# EQmMc [ 5McZzhM',[B^&Io(B_W%Ϥb(3O1+앭샿`<ɑ\Id׭=:P>|'֭x^^!h$I$3I  򌪪H@$ꪪ`@zࠀ?Фo;b2wm۰Lc``"ls#6S9>McpxxXI kJ$kJHA$kJ @kJ@$IkJII$Mc,[`&r$,c(Jܜ7IIM7#h&h&֭3\\\\$"$I$t$"I$ $t$Ҳ)Ҍ@@@ʯȍܯlk73i)?ќRxx m$ c(J_ 4~$b(JUV;I/)JUU X$}o)JUU-9I$I NHR58Ix@{z< H6NkW;$O$Q c_U,"`mϟدs c_UU$",-cZj ʋ-IJ%%56AB{bbh`%"M$HkMcVVVV$"AI$cb$"H$ cb$"H$I$cb$"H$ $cb$ c6c;Mc [Jx{HJ772!)  )"4^^'"i&)"ߍ%hn/UU%I' n#UI$~򜎜jV %2Ge*dɟ$3.z~"@Nw{ /^%4I%/|+#$ N3򌪪$" $H$t$"A$A$t  $@$T|H=lkpX&I$Ikkյ=8fq"pBv'ӌ\VWU  42I $42A 42I$I$4R"I$I$5Q mI$ӌ#$K󌒄h1k*7 e;mm^)%ɋ'UNW\# 0r.+$ۦab$"H$It$"A$A$t$!@&)&3!`9Kcx`ɟLk\׵?I䉑{/ ? $hШ0"?3\WUU$!I6 tq#  /|x`I$|>{7,Bɐ\sW^P`)m 5s [x!Z'Mc(JxW$I-HJ_U5 }۶miR :I0ќod)b: @kx_9"M~$qmc^UU'"hIkMc|UUU$ &C3iMc [!s">siJ^z.IĐ)s #/"?؃|W^Xx$"I$I|t$"I I |t$"I$H$|t$"I$|t$"H$@$|t$"I$I |t$"$I$|t"tk`h%h.Z7-Fhnczz&"I$v&kMcUU_^!A$I$kJ!A$I$kJ!I$ $kJI$I$kJI$I$kJI$I$kJkJkJkJ ̀`,[iJ`掜iJ %/A)KPbj$I$K$0|sW_^\ iA{ l$"H$I$|t$"I$I$|t$"I$I |t$"A$I$|t#" $@$|t#$H|kj說?j>.R'7,9Tnk~|zx"@>McHJ^6N,cHJ~U-VHJW/3I[ .R+4I~w@QU-x6$@6PNkW5"6<1-cWU*"XmӔmc^^2"40|McUU1"y|McUU."ysMcUU$"I$I$cb$"I I$cb" ,McHJ``ɐɐϤHJ  I$q7y [x& M5mcRV$McR $k۶-Mc,[ $"I$I$cb$"I$I$cb$"H$I$cb$"H$I$cb$"A$A$cb"0=Mc(J``xXɐ)iR- @IIRʢ0?3'u|x\^'FqsU"@ Ot$I' 0U$Oolk\Ȫ*Pr.McWp  nsMc+Xwsmc ТE&ssЃ&r0RZ^1`@rs) 7ɐ!jsx-p'N$0|,c\VWU$$kJA IkJH HkJ $I$kJ!IIkJ$"IIcb$"I$I$cb$`*)McZ`h$LnIJW55IIS,>@#//>U0|bpx\$"I$I |t$"II|t$"@I |t$"A $|t$"@$I$|t#"H |t$"I$H$|t"9`&sR`pX7II c*@",>Ӕmkpx\%"MI$cb$" A$cb$"A$H$cb$"I I$cb#"@H kR$"I$I cb$"II$cb$"@$Hcb% 1#&Mc(B`xXɐ0iR%- I$IÓA|I$1^ls!$Iܔr􌑌A 42I 42  42 H42 $A$42 $H42$42$ 42I$ 42 5ӌ,c`p ɝرLk5-)4d`&o"oӌ\VWWA$@42 @42 $ $42  @$42I$I$4R  ӌ$"I$I5q$H(-|`&MҔLcX^5d Qks)I$A$ԽQQI$A$ӽq6I$ ԽqIZ$hӶp "II$rΜH I$+uI$Ϥ(  I$ ]$I~](I$IB Ϝʮݯ6I$/U5I$.^߿8I Im6Ib$iW*I"':{(X鐜I$+c^b P [UUVxM'I/(BWI&ANHJU-2I9A֭ˋ/5@׭p-3P9C:,c`xzz%IDI2{?9)1#>Xxxx@Sr| Sr|  򌪪 $P򌑄x/>`k.^9ɗ\N3>r2'qMcX\\VA$kJH$A$kJkJ $IkJH  kJ ,,[R@HɟiJ58II?68#&j"'֭3\\\\$"I$I t#" $t$1>3jjjjʍH䰔lk66iӶmϤvB$ Q ^(I$I탫=Io:Ymqs^9"$R-c_U1"[O? c_UU$"H$-c c#"H$$,c c$"A$ $,c c$R3-:-cbKJA77774!B)p@KK)"J{߮kMcVVVT$" $cb$"I$I$cb$"I I$cb$"I$ cb$ 6b;m;Mc [z"'h&{iJ211- *"h5\\\\$"I$A5q$"I$ 5q$"$I&"$ I$'"CmI4+%@9UUU N"{\!I$3Mo -&{rPrwМ|+_" @ .| U$ @Rq-  $A$T| @ ,|`h$MKk\֗9)t`̃= 3?ӌx^WWH 42II$42 I42 $ 42H$A$42I$I$42 $42((ӌr`JJʤpLc6>I1tiM?' 5؃;vpXxxI{9-6($PN9N -$A-$"I$I$3#/>lk`Xh$INLk\% @I|pAֵ u @#'74x^W*"OT3XVUU$"I I$t$"I $t$@!# |^x`IN'{+(9noIBz^I] (J-=IyќM5':9Qk^=#>$mc~WU'"h$I$kMc\WUU$" I$cb$"A$I$cb$"A$A$cb%#͒(iMcR`<&-R %.f@/rbˉ'"I$I$0||UUTT$"I$ |t$"I$I$|t$"II$|t$m6|s" &:tbz!$sR^U$I.Z~UIt6lR-,{Xx-#/?#sMc^|x`!I I$kJ!I$IkJ!I$I$kJ M&h"kJ kJ kJkJI$I$kJ@ AkJ!iӴmۢMc,[ꪪ/X5sHBzz+ ɗoZ,XՒtV\Xx" I$I$Q|mk$"I $|t$"H$I |t$"I$I$|t$"A$H$|t$"I$A$|t$"A$A$|t!5sZXp` c *}RU 4Is*6 yGmpk*^7#$q-c_U."O{-cWUU$"A$H$-c c$"@$I$,c c#"$ nkjR$"I$A$,c c$s&9msBz 5X Qmcxxx`$"I$H$cb$"H$ $cb$"A$I$cb$"AA$cb$" $Icb#P9#&Mc(BppXX;II(B>Iќsx\*I' sU#$կKk~p'nRUzPrZUUW# I6McR V$$@McZ$!i$mMc [$"$Icb$6h*,Mc [`"'KOIJ_חrM *@I9BuМ>M1h2'|'s\^VW 1|mcI$I$0|mc#$I$0|s+UU%r$Qs U$@ IPt#I$ Phd my9.LcUz(Dn?NJ~ HIZ5% r8L$!?Lcxx@nRU^ IvMcR ^,cR @mMc [A@$kJ!IIkJ$"I$H$cb$"I I$cb" 9Mc(B``x !(B% @ 9BU8#'|$|\^WW$"@ I |t$"I$A$|t$"I A$|t$"I |t$"@I$|t$"I$I$|t$$i )|k`xMNR7%@I 1j.5j8#h'M$qMc\^WW$"A$I$cb$"A$I cb$" A$cb$"I$I$cb$"I$ $cb$"I Icb$"A$Hcb$H -McZ`hMIJWו5Pr *7baϜ΍N"'p^I$ФoXr  ӌO 0 ӌ 42I42A$ 42AA$42H 42A H$42E۶H"42&j$,cpX\3IDtj{9;+ 4P3?׭xX\^$42A 42$$42I 42 $H$42 II4R K@ӌ#$ &)􌒄`##>s$ӌLc`X^II6 0lk%)i۶h۶ӽ0 I$I$ӽ033?hӽV8I9W`Ϝקp'1:I4h׭uw3I I} 7 m5yٺ+U4$ u$U5"<U3"ƶvUU/"TɓuUU,"$4W)"`lj!؃&h&ӌlkXX\\s ;<I$f@֭_W.I|@u-_/mO 28$xWU$'ӌx_UU@4ӌ,cp``` yw׮lk).@4@0pppp$Sr|@ISr|@ HSr| Sr|(P`h"'Lp,cܖ54ɐ 1B J*x'}$s,c\\VWH kJAI$kJAI kJ   kJ H$kJ 0P9,[HJ``pXɐR 7ɑ\I䵭;;[4/'_$"A$I3$"HA$t$ & 1t`HNМlk% $I$r嵐-Ae?Idp@sp}>5Z:Rpx~1\O'.jR /">{-c\^xh$"I$ $,c c$" $ ,c c$"I$I ,c c$"HA,c c$"HI ,c c$!i ,c coor.h{IJ319 /dj+"z"rsMcVT\T#"A cb$"I$I$cb$"I$@ cb$"H cb$"$I$cbh&h&,c(J4 ̃  -"xz'UTTTT$"II$5q$"H$I$5q$"I$ $5q$"A$I$5q$"I$A$5q$!h $@"Ӕ`&h"',k=K9Co ,ڦmUh&O5UZ&$|r$|WpIn|+_9l$ҌLc`x^-IIsKk++8=`&pX^ ӌH @ 42@$@$42 42$ 42H 42  $42( )"42옳&Lc`X^2ɟ +k=8 ƌ9C'px^h6mۦӌxꪪ 3$ӌq^zI$ͰoqVSI$ќn 4d;ҌkkjzxɟNlkT=I!0@.5 >$ >|$3x^W&"8I;S3TUUU$"H$I$t$" $It$"H$A$t$"A$$t$#&i` ~B?є{%\xA29Cə !iOk<"('Mc^W+"ɟsMcxWUU$"IIcb$"I$Icb$"I$Icb$" $I$cb$" $I$cb$@m׶cb :P̍kIJzz.I䐔 c/"{>؏ղ|V^Xx$"I I|t$0m62|s(j#H>tZ^ (NsRxW5hRW-7I$Ib ;IH5M <y7@5O_-OO [,6/fI' /czz%I$K$kMcUUWT!I$I$kJ!H$I$kJ $I kJ!I$IkJ I$HRkJ I$IkJ I$IkJ0,cZp`',[HJxWPC'I(B_W- y'KϤiJ 0VhBќ1|zz&"I8N'0|tUfV$" I$|t$"I$I$|t$"|t$"II|t$"I$I$|t$"I$@$|t#`|mc`؊ܯR %'7<  tU<#`=?|'mc^VV'"h$M$k-c^_W$" $I$,c c$"II$,c c$"I$I,c c$" $ $,c c$" $I$,c c$"I$H,c c#P c(Jp``IR 6i!Ckzz&"I8p$kMcUWVT$"II$cb$"I$I$cb$"A$I$cb$Ŷ-6Mc [h"'K{HJ^B KJӔ-/6"??}$qMc\^WW("I$kMcUU(# I$sMc U)` IOnc U(IB?sU&n,czrM?nZU^(!PN..RW"0McZU$<:Mc(BzșIϤ(B5%- @ rJHAvh8U/bp#H$M$0|s^VWW 1|mc1|mcI$I$1|mcI$I$1|mcI$I$0|mc"퐤I$0|s+UU 5b&sR xX!0{+ I$-"蠟Â:ɛTCrv4bK۱-cW#$-NcU!$h Mk|tϏZUxrRU^ Iw,cR X! 唻McR +$ ۖjMc [ $k-6Mc,[!`&{{(B^^a1!@ !ߘ0|~&!H$m$0|tTTfU$"I$ $|t$"I$H$|t$"I$I |t$"II$|t$"H$A$|t$"A$I|t# 5sZ``pɚniZ% 3)o1kzx& Mu܍kR\#sMcZ $! Icb$"$I$cb$"I$I$cb$"@$I$cb$" $I$cb#"$ cb" P=Mc(J`pXI)HJ%- I$Ir@Hz8h*׭ccr`8M􌒄x說tHМWI$M&N|=% pWl ӌ-A$42A 42H$H 42  H$42$H$42  -ӌk` HɝܯLc5%9K)aN */tUӌ\\^WHH 42 $I$42I$@ 42A42H$I42I$I$4R n$ӌ"13'ӌLc`X\IQLk%  0=|@6"h:I$wڗ >׭ќ8 bC6s`zzЉnLc - 3 o5Vc5brrs%mӌ$"IA$$"I$H$5q$"I$I5q$" $I$5q#"IA$5q$"H$I$5q$"@$I$5q$"I$H$5q `&`"&ӌmk\\\\ Ir>#ZS9׵bpx)>>4ӌ__$v;ӌA 42A$@42 ӌmk``! n,c .Jє Sr| $@Sr| $@$򌪫 A$)򌪪j 5j'ҌLcpXV wФLk5 ),q$o [xxDnv/RU\ .,[R$ ,cZ A Lc [ $A kJ @(1,[iJ``"'M(B_W59I$I{9I խozwN<'Ҕ-֚!0sN -#>/|~$P#&t$lk`XV ym]Фlk- CI!4hќ`?# $-cx^W&۶iNkZx: OjR%_+9Mok~|*"c'֎s-cUWV\$"I$I$,c c$" $I ,c c$"AI$,c c$"I$A$,c c$"I$A ,c chhbB6 p /"z.'sMcT\\\$"@$I$cb$"H $cb$"H I$cb$" A$cb$"I$I$cb `&`>,c(B6ɐ ɐ %%%-/"sr?U\\\\$"A$I5q$" $I$5q#"A$A 5q$"I$I$5q$"$I5q#6,ӄpJPLkԔ8)Bva׭N("r"'H\'&"I$*%! C󌠪$k-^!I$h-wW |Ϥs *&IIt5>0-'_-ӌ A$42$42HI$42A$H$42AH42I $42#>ӌMc`X/N$I+k=5!dh '_?5\WUU 4RI$I$4R#5@ӌx M2> hќq%_z ɗ on =$P>}$֭3x^W$"HA$t$"I$It$"I$I t$"I$@ t$"I$It$"$A$t$"I$I t# P͐h/|x`k 6APѤsh|xx)"sMcWW^\$"I $cb$"HI$cb$"I$H$cb$"H$I$cb$"A$I$cb$"I$H cb$"I$Icb$ #iMcR`ˏnIJ %7-t@C0|zbl"hXM'tR^к&I{R^ OϤZU*7Ij{*9$m5. ~;$$$0|_U3"K?Ӕ|_UU'"h$I0|thUU!9PsZXp`/I\I䏜+c-">O|Mc^^xx$"A$I cb$" Acb$"I I$cb$" $cb$!Ii$Mc [$ A6:McRx#$Mc(B~UX$IHJ_U Il0(J Im1m I$I24r#(/ɑ1TTxb0"}>9|W^^X$"AH$|t$"H$I$|t$"I$ $|t$"I$I|t#H5sk`#@H?tZ~ $sR^HNR% 5 IO~|l1"#|Mc\\Xx$"I$I -c c$"I$H$,c c$"I$I,c c$"I$I$,c c$"I$I$,c c$"I$I$,c c$" $I$,c c$̒*` cR`ʍ߯IR%559 Ϥ|rx/"?r&|McWV^\$"I$Hcb$"A I$cb$"IA$cb"(McR` H-(B7%%:aVhsb`&"H$IĎkMcTVWU#" HkR$" $ $cb$"I$Icb'"-$I&kMc UU)"dRqsMc*U(  I/mc+U(O&I.k/U"wܫ`R\b2֎IJU** P0b >IIs8=>3?U|xX\^1|mcI$I$0|mcH$I$0|mc1|mcI$I$1|mc1|mc`,)sk@hL䐔Rח5I -Cڤ¢x; !8nk`p#MǵNk cTWUU-M$ cZ"rmNk cUU#P#Ms c U$~$ -Nk*UU"b @ -cx+-OZUzr.ZUU^ $$6LciJx țI(J5% I$I0/I$|^~Pr䰜Mc^# I.|Lc W$$w|k $!MA$0|s$"AI$|t$"I$A|t$!iI"|s&jsZXXܖ1̃) I$@rO_qKkzpɝ$ZU^ MvNRWx" McR+$AkMc [ $"A I$cb$"I$I$cb#$A((Mc [@`"L(B_ח5i--"1II<7=&׭pxXX"m)ӌ+ 3 󌳄ꠠb#HӌqzI$jФp=WI$q~* Nӌ 5I$I$ӌ I42 H 42I$I$421%ӌ,c`pxX ulk 7H[>Q|^Iӌ1| Hwӌ A42I $42I@42I $42A $42$,(ӌQ|@pLďLc֖75II$Ϥj:I$I~/9I m׭ ;8$׭^U+`$I$UxUUU ,(s````  ,c -1S0c0bbbb h$Ԍ$"I$I$5q$" $I$5q$"I$I$5q$"I$I5q$"I$A5q$" $I 5q$"I$$5q#"I$A$5qhh沌LcII񤎜N^ >#9#:xxxx P#,,ӌjH 42@@ 42@H42#1.ӌ|`@ILϤLk%.v`Aom6H4{I$H$ꪪH$A 򌺪9lk`X HܱNLk5 8IKDh֭ %h9TO|XxI$N&n:9 ĶmےZW `ФRUWr䏔RUU0I-;,[HJX&N-(J_W%8Iĉ A* : !@hШ֭є 2 C?sx^WU"ѐHpW^|9N>X&os_W%s?hҜ{( xA#X?~$Ӝ-cx^WU$"H$I -c c$"H$,c c" P ` ciRp$O~B? jR 5,HA-c^zz%"i&H&-c c$"I$I,c c$"HI,c c$"@$I$,c c$" $ $,c c `>9 c(JXX7 Ipj{ ## 0#'p?|Mc\\\\$"H$I$cb$"I$I$cb$"A$$cb$"A$I$cb$"I$@cb"؃=9McHJXXXX8 I{----1"/?r?u\\\\$" $H5q$"I$I5q$" $I$5q$"H$H$5q$"I$I$5q$ . 􌒄@@ȭN,c677: vho%"E$H$$"I I$5q$"I$A5q$"I$I "cq3ӌh􌋿UW I' @mUI氜/^\PNvܲ| Wr0 ӌ|+$$ӌ I$$42@$42H 42@1ӌmcxhIO,c\׵ 9 C&֭ % 1O'~$X^WU4RI$I$4R 4R4R##ɃV􌲄 k"@Ҕqx! N>N+#  3 %&"N$f'ԝ񃪪#"I$I$tq$"IA t$" $ $t$"A$@t$"HI$t$!i"I&3z$ `5/|xH͝Фk50ɑdI/jx2$&C50mc^^Xx$"@$A cb$"I$Hcb$"A@ cb$" I$cb$"$I$cb$"I$I$cb$"IAcb$Ų+6Mc [!s>5/iJ__ XI$Ϥszj7Nb'YZկ7IiU-7@| W5#:$|~UU("X$MR|\UUU$" $A|t$"I $|t$"I$|t" t c`یNZ %7-tA) nk^z)"Ob'|kMcUWV\$"$I$cb$ڠi1Mc,[#:McHJz u,c(B_$IHJWU%Iu۶ HJ .I$In6IܦR6$is_/93:oR(>_Os)/ 6hA1|Xp`%"MHҤ|t$$ 6|k*z">tZ~"$sR~[?I~RW NoZU 4.%Jsտ*1IbҔ/k`x ߨ c %3 8hhPMcxx`$"I$ $-c c$"I$$,c c$"I$I,c c$"I$H$,c c$"I$ ,c c$"I$I ,c c$"A$ $,c c#! $@ncjb s&`9)J_5ɑdIФOX{B6$z&`=0Mc\Xxp$"I$A$cb$"I$I$cb$"H$H$cb" 5Mc(B``p-(J <#O9mc`ppx$"I$A cb$"$I cb$" I$cb$ömӖ'Mc,[$дIҖ?Mc,[!I$M$kJ!6i$$Mc [*!(C:Mc,[jz#Qߎk,cU"͍kZ{ڲiR %<IH9bUm.-p'}$s\\VWA$A$0|nc $H 0|ncAA0|nc$0|nc 0|ncII$0|nc 0sR`IR5%- Խ08IIh^xW;>3'-cxX\^@NkjJ NkjJNkjJI$I$NkjJ $I$ cZ*#zI$Nk cUU%R#Ns c & } k"U"S9NZ W!ɟ1Jk "/I$1pI$Irn R~ I$R{_ p'mkUW"PRќMcWx#0|Mc#$HS|k#`*1tZ`HIZ%@ɑCnF;#+$Mc^W*4m| c U(~nkU)I$@sUnOR^rw RWx"  nۍkR\#wMcZ #9McB`xI hR%)I$I$Խ=ɕ ֵ66.3h&r"'\\^V$"I$H 5q X5X5ӌ$H$42Z@ӌrzM2&@Фq 5_I$ФNs0ӌUW\pM۴h 4ӌA$H42I  󌴌`&r$,cX/I$ɝm%(~3^z$նNs_ж$Os+Uzr$sUIӌs*U $ %ӌsӌ1|aŚӌ5ӌMc`p y,c%- ;IX$h׭78׭zW,'I$vӌ_UU@IӌH @ 42 --ӌk````ii,c 0o0c0bbbbd 4 ӌ!Ii&4R$"I I$5q$"H$H$5q$"I$ $5q$"A$H$5q$"A$H 5q$"$I$5q$"II$5qh&h&Lk%IdIu<#>>׭xxxx [5[5ӌAA42IH 42 $ 42"͘*ӌ@˯ȍo,c776.A)M "M3@$Sr| @1s``N䏌lk\V5I\ֵ 5' 4'֭x\^h$I&xZi󌏌~# WmmI$m[wk0ۊZz9I9Ab* 6&'֭x^&ڱt$"A$A$t$ fBöItq" `p~6 | +> !a|k<$C'N$r-cx^WU$"$A,c c$"A $,c c#" $nkjR$!(4)4-cbꪪ"#XmsjR^^z+).R,"}>s cW^Xx$" $I$,c c$"I$I ,c c$"I$A$,c c$"A@$,c c#99 c(Bxppp2Iɕ|p c 2` M'|R^$$ Mc [$ZlMc [ $"H$H$cb$"H$A$cb$" A$cb"5P5,c(Bpppp4Iu k))--2#p'h>\\\\$"I$A$5q$"H$H$5q$"I$ 5q$"H$I 5q$"I$I$5q$ Ȓ-|@` ΛIoLk5%%8l=asrr%"m&I#"$ $5q$"$I5q$"I$I$5q!mۮm"Ԍ $I$4RI$ӌ 1ӌ,c` mivlk w#W~M. V ӌ|+ Hӌ `5ӌLc`X'N䐌LkXVյ7I1p@j{=/ :>}$x^WW ӌꪪ4R4RI$I$4Rӌ$ 15q$ fBdžMӌz## 5ӌsp Lk'4@ 3&"$v$ԝ񃪪$"A$I$t$"I It#ðm53󌪪z# @8:sz"$lk^U$ɓlkxW1s5 *"I$I&S0tA! k^|x)"}'kMcWWV\$"I$H cb$"A$I$cb$"II cb$"I$Icb$"I$Hcb$"$ $cb$"I Icb# P McIJ` q|(J %<tik5i}w-" >N|WWW$"I$A |t$"II$|t$"I$ $|t$"H$I$|t$" $I$|t$"I H$|t$2k۶|sj⪪ |2'j=pZ^/I\IФ|pK.K:s [^"@>Mc(J^ :NsHJ_U% H{.HJU 7I$Il NIJ 8I@~7 9mpok_7"$qMc_U3"X<-c_UU)"vĎk-cUUU% R#,-cR``` q׼دIJ %0'K91|pp&'0|Z^W['IZW NĶ.ZU"777Ҕ*k 8N$mӔ 6Hb0| ~U5"Ӕ|~UU*C6%QshroZ%71B9 nszz+"NNrs cWWV\$"II ,c c$" $I,c c$"I$A,c c$"I$ $,c c$"A$I ,c c$" I ,c c$"A$I$,c c"1 cJxp`ِ隬J 4 HPmcxp`$"I$H$cb$"A$I$cb$"I$ $cb%#&j2',c(BpXX9I\ɑ)k!+ *<$&j'McxX\\$" $H$cb$"H$I$cb$"IIcb!L"2# Mc,[ꪪm Mc [mMc [$ HMc,[I$I$kJ$AkJ ,,cJ`HIN(B%%% :v(40cbpH$I$|sTWWU1|mc1|mc1|mcI $0|ncAA$0|ncI0|nc@9X&sRpxXN QKk-    Խs:I9B2j-h'|$ c\VVW NkJJI$I$NkJJNkjJI$INkjJ!I$6m-cZ I$h[NkJ!I4I4NkJ%$,-McZBhMN(J5%AI Cn' ;" <^WW*Tr򔑄*~ I򜱌*IR?1є uUU)I$h1 I$O UI$Lk^nLcWxP'OߏZ_U֮`1 c>)afҜsbr("h,'N$nk c\^WU$"@$$,c c%" &I-c c*"$v'nk cuU*в-gs-c U+ INkU(' nk`U%mO9.ZU^X$1iRUU*1$@ + $ԽLso<C!a׭Ф -!pU\^VW$"I$I 5q 5ӌH$H$42@$H 42C Iӌ#̀@ӌPz{%/+@SoӌUWzM&mSӌ ӌ1|@H͟o,c77%8C)a׭N - $uWU&#f5ӌh & uhM5oW$IB4OUz&$c @4 U Ҝ{U Ж :ns_ж$.kUz'O~ۏLc^U8IDɑֵ{?;+<X>s'׭ӌx\^pqb;ӌ@ H42@$I$42$@ 42 -,ӌs````iI,c-1c1c0bbbbI$H$4R -$I$4R!$I$4R ]Itӌ$"I$ $5q$"@$I$5q$"I$A$5q$"I$H$5q$"$I$5qh&h&Lkܜ7IDI<#>j&׭\\\\ C4[4ӌ$A$42@ 42A  42I$A$RKr&pLk-9M &/p?TTTTT6 ,҄@=j$Lk`X\3IIrks;.56xx#]o4\WUU$H򌪪 $$Sr|[@Ҍz|9 p+^z qo 7IXK~ 9 ѢO?3x^WpJ3\WUU!'ndj$"I$ $t$"H$@$t"` 1k`sIolk67:F(rMk`px$"H I$-c c$"I$I$,c c$" $ $,c c$"H$ ,c c$"I$ $,c c# cR`-p-IR %+d@.Nk_~|'"I4M&Mk cWw^X$ I46 cZx"@: c(J_!~ cHJU5`$ɟHJWU  c'I$iJW?RUUoRUW Pn$sJU$ Mv$McR*U" ܔMcR#P5RC:,c(Bpppz0ɕ|Sb---)6!?'\Xx^$"I A$5q$"H$I 5q$"I$I$5q$"I$I$5q$"I$I$5q"0s````ə|+c----<$#:>֭xxxx$"I$I$$"I$ $5q#"A 5q$"H I 5q I$ 4R I$I4R 4RP9`&ӌ,cpxX\4I|{-=/4X+ӌxxx\I& Mӌ-U.I&Wp#@Nnؑ{~b&MpLcx^59Iɑ {?;ŌC'xX^H$I$ӌ4R@4R4R@4RI$I$4R$!AI$5q"h+6Lcx'IOLcXV8I9U`t)s$ dK' *' HJ3UUW\#I-3Ҍx!@&k^:Nlk~U hmۏlkW-1I$I rks 7Ix@-%8$`8֭є *>j>2s8X0 \IϤ|zJ-#r6P#0|Mc^^xx$"I$ $cb$"A$A$cb$"AI$cb#" $H kR$"I$A$cb$"I$A$cb$!m i&Mc [$ h8:MciJzxL.HJ751\n0"?:|VV\X$"I|t$"A$I$|t$"I$I$|t#"H$A Q|s$"I H$|t$"I$|t$"I  |t$5tZxp`ِMYNZ ɟϤR^x2O[phRU5I{H0Is 7 9%PnkW9#4$Q-c_U3"ϟ<{-c_UU&"$Il'Mc c$"H$H-cb("$" $I-cb"#"I$ nkjR$M-cbbꊨL>j&oIJ5 1nh<9{U5NI/5)@|_5"$Ӕ|UU*";I$Q|pUUU#"H$ |t$"II |t#!IH$0|s!j>5sZxp3\IĐs2#s>90-c^\Xx#" $@ nkjR$"H $,c c$"I$H,c c$"I$I$,c c$"I$I$,c c$" $ $,c c#"A$I,c c$ɂ*h cR` ʍN)J 57B1@szj)"~|'kMcUWVT$"I$Icb#$h()Mc [pKoHJח5; ҔN)0/?z'|Mc\\VV A$A$kJ$"H Icb$" $Hcb"M$K&Mc [A kJ I $kJI @$kJ kJA$$kJ 5,[B``p-_HJ 7=3?4|xX\^1|mc1|mc1|mcI$I$1|mc A$ss 1|mc` sk@pLNR֗7 Ϥ5 I&I`nZ8v8Nk`p H$I$-kbTVUUNkJJ@ NkJJANkJJ I$ NkjJ" $I$NkJ# M$INkJ$"I$ $,c c" 0-c(B``Inɖn(J% @!iho'"H$Mڤ$"I Iь|&"'I$'"퐤I$Ҍ*UUU*"Ў?򔑄 UU+3-ײ򔑄U+ }h Iok (ORn"I$t>/*)IIrn^=#5>-c`pxX$"II ,c c$" $I ,c c$"I$I,c c$" $I$,c c$"A I$,c c&"I$v$-c c+'"ݐINk c u(*-1nk)Jzz)bB ӽ02MڤIjj;v8׭cr%"MI$" $I$5q$!iҦ 45q"l b(ӌ@$ 42AH 42$ ӌ`# iӌ|^xI$L&|PTnW^| .5ӌMc`p  Lk%3 v`H׭ҔH$I$ӌH $42 $I$ӌE$I$ӌ #pI?ӌUU&w5ӌU%Z#Ē5x$h I5Nנ ڠ-s5IɐM//,#?uӌ\\\VA @ 42 $42AI42H 42 ,,ӌs````II,c -0 s0s0bbbbH$H ӌ 42I$H42!II#"I$5q$"I$$5q$"I$I5q$"$I5q#!I$ 5qh&h&Kk9Iɑ׵n76#h&h&\\\\ -5ӌjA 42H I42$ 42 42j.&`=,cXX-ɐI /-/5+z'h&^\\\P#&KcpX ϟlk5!5&h֭N .?N$\VWUH$Sr|A$I Sr| Sr|H$ꪪZ#Az蠀3hO$O^'3n_"&iN3mfh3p!nn3򌫫$"I$A$t"@1|`&Mlkx^ו=I\ js+ 7#:hB'Q-cx\\V#"II$nkjR$"I$,c c$" $A$,c c$"II$,c c# @5 cIJ`":Ms)Jz_U5/I<oIR%, \s>omkɥ(S'MkIJX$INIJWU I.HJU=7Iw7pb 6mnpLcxt^soR 7 &k xZ#y>PФlk/U0I9N¬m3I$Z @^_)$h. czIoRU C&-ɺniJU_Z  %ֶ$|^~"$ PNwӌ| V$ H0| $-$"@$$5q$"I$I$5q#1P5ӌLc```p7_ts5===;#>??X\\\$" I$5q$"H I$5q$"IA$5q$"IH$5q$"II5q$"I$ $5q#( (􌒄@hKp,cԶ7= K)B׭N% 2!u\^VW%!I 8%ZiIz!I& IM샧 *;!tnqح U'`+mT4R@ 4R4R4R @ӌꪪ-ӌ`!ZC'ӌLkxV(}ɓ2lkW=9h{5=#>}$x^U|2'9s'X"I$m\x"Ъ9єlkxXN lkU5I$yE/7 i֭ 9$'֭3~W1"$3^UU&"pIt#X lkx`^n醬s!-,t@! ok~xp("Nj'&kMcUW^\$"I$Icb$"I$H$cb$"H$H$cb#&0Mc ["@и:McHJ^ &N$k(J~U5`$mHJUխ i0B- II$Rb2XӔ|Xxp`$"H$I$|t#" $@Q|s$"AI$|t$"I$ $|t$"I$ $|t$"I$I$|t$"I$A|t$"ɀ(itmk` ߎZ 76ə|1O{>#ˆC?Ӕmkx^^."@I${-cWUU%"$I$-cb$"H$I -cb*$"I$@-cb*$"II$-cb*$" A$-cb""$"$I-cb*$"I$I$-cb$"I$I$-cb!5P c(Jxp`mvZ ;t`iTbz*" ~br||WUU$"I$ |t$"I$I$|t$"$I$|t$"H$I |t#" I |t$"I$H |t#P sR`olnR 1FhAPNcxx`$"AI -c c$"H$I ,c c#"I@nkjR$"I$,c c#"I HnkjR$"I$I$,c c$I9-cb# @> cIJzJKď)J53OWZ_p1"?>|McV^\X$"I$I$cb# ,McIJ`N (B%% ;)Av`sb("$Mb'kMcTVWU!H$m kJ I$kJ$Ecb!s6P35Mc,[I kJ@ kJH$kJ @kJ@$ $kJP9X"&,c(BxXX{1*k $$ќMc^^Iws,c_ s,csk(tsA$ 0|nc1|mc,sZ`Kɐ ϤR5% im0? 7IIQ`89> cxxX\@$MkKJI$I$NkJJNkJJ NkJJ  $ $ cZ" I$ $NkJ! @ NkR$"I$I$,c c"P9& cB`pXXФR)"@$V/5>bpxX$"I$I$ь|$" $ ь|$"A$A ь|$"I$ $ь|$"I$I$ь|$" $ь|$"I $ь|&"6$I$ r"'/ c8?ɕI p>#h"'{'r-c\\^V$"I$I$,c c$"I$I$,c c$"IH$,c c$"$I,c c$"I$I ,c c$"H$$,c c$"A I,c c#P9#& cJppXXM1hR I$ $ԽPdTB-IIϤܼ;$R9>׭ppXX$" $H5q$" $I$5q$"I$I$5q [$[%ӄI42 $@$42 H42$Hӌ#hӌ0|^xI$K%Ϥ|PC:c1mk^^g{434=`ppx  42 @$42$42$ 42A I 42@I42 $42(ӌQ|@H͝ܯLc759 @9C'#?UTVVV $42$A42 $I$42H$$42 ,,ӌs```` i,c-- 1 s0s0bcbbI$H$ӌ@I 42 $42!II$"I 5q$"I$H5q$" A$5q$"H$H5q$-p'xp,c9ɑɑn==?4#h&>\\\\!S#4[5ӌI$$42H$42$$42 $A429P5ӌLcXxxp*ɑIdS{)/=)-  5cph$IolkT5%6IA=/ 7>|$֭px^WH$@2@$I$Sr|@$ Sr|$Sr|$H$򌮪A A$Sr|c ZꪪcHpW~ j5-p= WN -!in3󌫫$I1P` #&L$Ҍlk`XV s% 7)jќsh|-"'us c\VWW$"I  ,c c$"H H ,c c$ۺ5-cb"h*: c(J^'IJ_W 8I|P0GR-8ZQ-cx^#>R7W:I$əks"* ?I~sm{x6@HqmkW7"HQMcWU+2m_s [h~}{탉R%%552M0mcpp`b$iMc [XxM碏oZ .IxOkT^p,#0vM?sMc^."I{McU.#D/mc*U* okU$I'ѯ [/ q'.~`Ф|U^PNvӌ{ W# I| $ @vq#9#&ӌLcppXX9Ik{---/3#r2'\\\^#"A$5q$"II$5q$"I$I 5q$"I$H 5q$"$I5q$"H$I5q# 1Mk` عnLk5--; fh(׭$"HI $"A$@$5q$"I$H$5q!L$4R @o5UUUI>' @Mӌ,5UOIJ'  0rӌ/+(ӌ@4R4R @&5ӌsx9|䲌LcxW:I$I Kk:`@7"O?疥^WU$"I$I$% # sxts )5xID,~+?9)'IШ֭x7#Dv$֭3WU+"mt3hUUU$"I I t$" $I$t$"I$It$I@?j:Lc6.IDI$zh1#t>X#0Mc^^xp$"I$A$cb$ $1Mc [!@&Mc(B^к>I{(B_-HٶHJU  k-7I75@Ϥ1*3I(Nc~_cq c/v`!CҜQ|p`&"$H$0||UUTT$"I$A |t$"IH$|t$"II$|t$"II$|t$" $A |t$"A$I$|t$!@&h&0|s!s&9{Zx ˉ1(Nc^zzx Æmm$ cZ!ڦAm$ cZ m cZ*$"H $-cb$"@$ $-cb $"I$I$-cb$"IA$-cb*($"I I$-cb*$"I I-cb $ -cjR` 뻌ܯHJ %%3)Cќlȣ,"MB'r'q|WVT\$"I$I |t$"A$$|t$"I$I$|t$"H$H |t$"I$ |t$"II$|t$"&a|k`KNZ'72!{|~r."}{&s cWV^\#"A$@$nkjR$"I$I$,c c$46>-cb~" > cIJ~#$$ cJ~U>I.)JUU- `(JU+wr$GJ5 'II$1o~h5#j>#5Qmc\Xxp$"I$Icb#5=Mc(B`pxXy(B <Z-Ҕkb`px$" $Hcb$"H$I$cb$-vEcb!I$6hkJ ۺ5[34Mc,[0YlcRMc [ kJ HkJEѶH 4Mc [`'J(Bח#I$I2n-/I$o^^$I:\ I$,kW$,cUWɝO,cU_Iws,c^ s,c5C'sR`pX^IP c-))+H$I$/|O|;Cql13'|'0 [\\^^H$ cZ!I$ cZ NkJJI$I NkjJ I$A$NkjJ$"I$I ,c c#"I $nkjR$" $I$,c c`'zlsBޞ?IM5/<#&j'x\\^$"H$I$ь|$"A H$ь|$" $A$ь|$"I$I$ь|$"I$I$ь|$"H$A$ь|$"H$ $ь|#&a,)/|@HN c75>9C!aBC,"p"ts c\^VW$"I$I ,c c$"I$I,c c$"I$I$,c c$"I$I$,c c#"$@nkjR$"H$I,c c$Evk6-cb`'K)JWI q--" Խ/p<ɕI ֵϤ>?/<#h"?s'X\\^$"I$A$5q$"I$I$5q$"II$5q R%Zӌz"I$I"45Q((ӌH 42A 42C Mӌ`/`&Lc>XXm隶Ϥω/0IDɕ>:5xX\\ $ 42A$ 42I$H 42@ 42I $42I$42I @42 ,ӌk`` ,c%- 81B)bحn%h6h6ӌ||||@$42AH42IH42@$$42 ,ӌs````l+c ---/ 8m@ӌ$ $42H H42!%A$Q􌲌***^$$@V;0|~# 'sW"H$ӌLkU"$ӌLc_U:ILc~U/MPLk*6I>6"&>\\\\!B5[5ӌI@ 42H 42 A$42@  42P1ӌ,cp```ФLk)))))&sTkkpX޾7Iյ̃?7,3'3pX^ h&M43$@ 򌪪 Sr|@ISr| H 򌫪 򌪪H ꪪI@$Sr|mSEz c`O~OF?{" I9o_ $/>t$lk`X^-I$I2kk+;y1 ѵN``*\I$sphʃ*&mh{-cW_^x$" I$-c c$5 cZ`!$ cJ^-Nn(JU*8 hq+s) 7"'Q-cx^U&"p$I$Mk c|^WU#X̀h cjR`#~CR %53&miPkx^~|$"H$I$mcMc|WW\$"I $cb$m6EMc [{>r{R2 vaB0sccB'"i4M$kMcUWWV##рHMcZxNV.Z %5'D@-kUW^x&"q$f&kMcUW^Z$"I$I cb$" $  cb" 5P5,c(Bppp4ϕɕj+)))7І^(IR?*4Mw%~W$n{WȊh$NLk^Wר7 9kN .`kU#!H$I 5q$"H 5q$"I$I$5q#"A I 5q$" $H$5q$"  $5q!9X&LkpxX\:I{=/>$>j2'׭pxX\$"I$I$5q$"A$I$5q$"I$I$5q M$M$4Rӌ-ҶM۴ӌjP`ӌ `ĨΨPJ9/ / ӌh>ӌmk`^$ɟo,cxW:I9A{/;h:/"Ux^UU$"I $5q$"II$5q$ҡۺnӌjꪪ"#:XӌsXx`II${*)2 (h%"I$H$t$"H A$t#"A$tq$" $t$"I$H$t$"AI tq" Mkxpٶkk# 1FhMcz|\X$$i>McHJ_>O{(B_-OܷhRU <I$} {:IWh{ (^6hq cW2:$1 c~UU#в5m_nkZh ߏIJ%%5-9 I񤐌|/"j>|WV^\$"I$H$|t!&h&ts1|mc1|mc!tɐImts@1|mc$(PtsP# sRp`1Z -B1 kxx"Nk cUWTTI IMkkJ@@NkjJ$"I A-cb*$"I$I-cb*$"H$I$-cb*$"A$I$-cb$"II$-cb$"I$-cb($Т$m-cb誨L>j&NIJ74\I򜏜=e3#s"?9Ӕ|^\Xx$"A$H |t$"I$I$|t$"I I$|t$"I I$|t$"I I |t$"AA$|t$"II$0|s!s&`9{RX0ɑIФOpnA1bP5| c^\xX#@X? cB~#$ cJ_['I.)JU HWMJU &I$I oiR9I/%/̀4m Is_66P [j ۼدiJ 8hhiPkp``%"M4HҤcb!`&r$s(B^ޖ6Idɕќ 00<#>`&mcxXX\$"H$I$cb$"I$ cb$"H$I$cb$" $$cb!s2,ӶmMc,[ꪪ!Iۤd `Mc [UUZMI,[ [оm,[ [0hlcJ.1McRjj Ht (B75%%;Th*|p/$ӔsWU)MqsU( mpt(I IQ|U'I$ Q3U'ɟ$~`{rI:+kWꀪHYZU(IIӽϤ=I$I$Ϥr``6!aVќsbr"O?nk,[|~@ @$b-[H$I$NkjJNkJJ II$NkjJ# i4I NkJ$"A$I,c c$"I$ $,c c$.( cZ@HMNJ55%=1Bn%1#x'M$\VVW$"I$I$ь|$"I$Hь|$" $ $ь|$"I$A$ь|$"A$I$ь|$"A I$ь|$"I$ь|" Ȁ,lk`` ɝرn c%-; f(nk`pp$"@$H$nckb$"A$I$,c c#" $I ,c c$"I$I$,c c$"A$I$,c c$" I$,c c﫾$"A$A$,c c%,- cR@ HʼɛQ(J%% ӽΤ+# $I$Խ0|\<C)A׭ ."??U\\^W$"H$I$5q$"I$ 5q$"I$A$5q$"$A$5q$"$I$5q Mӌ I&:`ӄ)442`&ӌ,c^h$I2,c^W-I  Τ) 3ɐ ֵ66&&.h&z'ӌ\\^^$42  H$42 $ $42$42@ H42H 42I420P9ӌ,c``px1lk :an!X$ӌ~WIA42I$H 42$ 42  42 ,,ӌs````Ilɖ ,c- (! I4 ? I>ӌMc^ $ӌ,c_UIq,cU'I.,cW $ݶLkWU/IҶm1LkUIn$qLkժ I&m I$mѶI@۶Խ0 5IDI:5">9XXxx!3ӌh$H 42I$H 42 @$42A$42,.1ӌk````ɖɐ PLk%1I$Im/5!P@є ''t\WUUI$A򌪺$ 򌪪A $Sr|H $򌪪A$ASr|H$򌪪A @Sr|@$h& I$򌯯@3zꪪb|V\x` ˾˴s5(O$IR{ת*>A% 5P#l]֭xz}>հ|x(ɕďk\ph'i 5k)Jx&N{)J~W%6Iq(J5 80@&QMk ^3#X'O$-cx^UU$"H$I$nckb$"I H$,c c$ "C,c c_n{! P -kRzz+1 aOZ,"3?sMcV^xp#!@$Mc c $"I$Hcb5,ciJXX/) 0ks +"}'sMcWV\\$!m $Mc [# McZZx uB?.Z %%okUUW\'"I$M5kMcUWV^$"H$Hcb"99,c(Bpppp3t k)))-5">\\\\%!I/(#ÒnM$ (h ^)I' n4*U'O5NYUp`$osW#PNvӌ{_$$ 唛|+$Ij󌲄 $"A$A5q$" I$5q$Ұi:-􌒄@h$LpLkԖ< 1BN% 4"p2'}?\^VW$"I I$5q$"I$I$5q$"I$I$5q M$H$4R@4R ӌЬ9ӌ,cxxɝnLk֕5 8It3UVTX$"II$t$"I$I$t$" I$t$"I$H$t$"II t$"Hq@rМk7 Q{z }iRU:Iܯ@Hs:y5qnk^9$~$r-c_U0#`'I${ c_UUH$I$ cZ$MkKJ  $ cZr9{)J$ɑdIМ˃(")3"9?Ӕ|\xxp$" $I|t h$H${ l 0|ncH 0|nc@$I0|ncI$H 0|nc $0|nc `sMc`؊ܯR %77. ɕdXpbj-|2?>{ cV^\XA$IMkkJ@H$MkkJ!I$i NkJ$"H$I$-cb$" $ $-cb $"AH$-c c*$"I$I$,c c$"I$I$,c c$"I$ $,c c#9X5 c(Bx` qb38hӔ0|xp`$"I$I$|t$"H$A$|t$"I$H$|t$"I A |t#"@$A$Q|s$"HI|t$"A$|t"5tZxp`.qr)sZ %9R^^ I߾.JU-3I$]OhR-6I@.Xz7ImPk^7#$Qmc~U4"$Mc~UU)"X]'ɓĎkMc_UU#ɂMc [@JnIJ576!C Lsxh+"~ Ho%"H4m&$"I$A$ь|$"@$I$ь|$" $Hь|$"I$$ь|$"I$A$ь|$"I$I$ь|$"H$I$ь|#1P9pb``pp.II*c)+<#9>-cxxX\$"A$I$,c c$"A$H$,c c$"$I$,c c$"I$I ,c c$"I$ $,c c$"AI,c c$"I$I$,c c" 5 cJ``pɐ)J A[m۶Խ/I$Ib^: v`6׭cb%"H&I$$"AI$5q$"I$I5q$"I$I$5q$"I$I$5q$"H$H 5q$"I$I 5q$$10|`k䳄Lc`^U Hqݖ,cW  @Q--""H I$sR5K)BϤ &#O5ӌ\\VVI I 42I I 42@A42@H 42$A42$I 42II42%`&,cXXXi-{6 xhII42 42H 42#I$I5Q!m붫 8ӌx.1ӌk````I i,c - I$I Q{.v$=sV.I$ 0Ir iӔ _+/&Z]nrn- I$ $Խ/3A$I$ԽqVQDTI$I Խq$E@AI$I$ԽqI I$Խq ?hpr7"#P0xppp Ь-ڢ5ӌzA:ӌrz V?ӌs_H#$ӌLcU$LcWUC'Ip,c`_ ɐ0Lk- 6a֭ 0C'~$X^WU$H$򌮪ASr|I 򌪮A$Sr|I$$򌪪$Sr|H ISr|H$Sr|@4ZZɐ@(-`9j$+cx^"Фk5 *9h- 7"??$֭3x^WU$" $I t#@/|xNB'|=C7jR^ 9y @qZ*9$'Q-c~W+"o'$s cx_UU$"I$ $,c c$"II$,c c$"I I$,c c#"A$ ,c c#h cZ`k/-'{)J/)fi. [z^\ `I$lkJU! жI$,cRUP3:uR; [(Jpz_2?Wb-mZ=?s(B^! $,cHJ_DI$k(JU+`$oNIJU#9|$sXc' @mcW_~x$"I$I$mcMcUW_|#99Mc(Jxxxx4u k))--6"p"?h"?\\\\$"I$H5q$"I$I$5q$"I$H '"$I$'!jq%tM~I$>ќs(Ϥ{WbМ{^" .ӌ| $0 oq-# 1mk`` ϛyLk5-; dh(o%"HҤI$$"I$I$5q$"II$5q$"I I$5q A$I$4R@4R` 1ӌk``$IOLc\5%9ID ֵ?/ 9 9j'׭x\V ӌ/|\\xI${>"7Hحє!M$I$ӌ!I$i4R$"A $5q$"I$I$5q#"$I5q$"I$A$5q$"A$I$5q"5 ӌkx`'I'2{.1 ь$"I$$t$"I $t$"I$I$t$"IA$t$"I$It$"I$I$t"9&lkXXXXrN<I1ORP~Z="X}'Ӕ-c^WW'"X4I$Mk cuU$" $I$,c c$ ($*,c cNkJJ  cZA  cZ5Z(JXxp`fqR 2f`AҔ0|`b$ '|s**W H$M$0|mcA0|nc@0|nc I$ss$A:sk~ V?s [_@'sRWxOR5II$RMo.X--cXxp` MkkJA@MkKJ i)NkjJ$"I$A,c c$"I$H,c c$"I$ $,c c$"H$I$,c c$"I$I$,c c$"I$ $,c c# cIJ``! (J 3B1ҔoaÇ)"NBQ|UWWT#"$I Q|s$"HI |t$"I H|t$"I$A|t$"I$I |t$"I I$|t% #,t,c`` yMTZ %=IP@ќPc7q'pk_8#4#R9>pxX\$"I$Iь|$"II$ь|$"I$ ь|$"I$I$ь|$"$I ь|$" $I$ь|$"I$@$ь|#!$$ь|"`&j"'p cXX\5ɑə탽s7X+'Z^W$ cZ$kmm-cb#",c c#"H$H$nkjR$"A$I$,c c$" I$,c c$"I$ $,c c"=`& cJpXX Q c I$I$ԽqE@UIIϜ\h: ZM'׭q^$ HQ$mۢm$"I$I$5q$"$I$5q#"I @5q$!M$H$5q"@*:ӌLcxP3'ILcx^%@Фlk5)>I$׵w 6qO#&t,cM۶irϤnU4 af H$L$ӌI$I$42I42I I$42A 42A$A42H 42$@)ӌ@pKќLc֖A  R~os6EC5cbrph$Ԍ D'ӌp^X?ӌs_!hd$ӌmk~U8O>\\\\$"H$A$5q$"I$5q#"AI$5q$"I$UQ$"A$I$5q#,5ӌLc`HɝߐLk55 6It)`ݽ -IB? IUn^ɝ$N9 pnyܱ/-`@3&u$LkpZ_:I|tks-++=">??׭pX\^#"$I5q#"H$I5q$"H$I5q$" $H$5q$"I $5q$h¦-q` P&|䲌Lkp\V<Iɕ {?/=x^$pڵӌ c$A󌓄h# s7x&O'4-5't">#5^\x`!i$I44R$"I$I$5q$"H$H$5q$"I$I 5q$" $I$5q$"I$5q$"$A􌒄@"?>sX/ u  -*"t'T3WW\\$"I$Ht$" $I$t$"I$I$3#5Px"@['lkW`IДlk\֕5I$I驋"1 I0pxh4"s2-cV^\X$"AAmcb$"II$,c c $C  NkjJNkJJ$ $ cZ@ MkKJ  bIJ` y(J %%5)c9xpkk|^&ڪ Q|sx4:sMczX;sR_$m$sR_UIPR_U/К$m۰RUH80RUIR 1GnF15 I$I$s,vA)Мs~|x"uL'Mk cUVVT@$ cZ iANkjJ$"H$$,c c$"I I,c c$"I $,c c$" $I$,c c$"IH$,c c$"II,c c$H cZ@JIR%52򤐔1"|.|V\\X$"A$H$|t$"I$I|t$"I$ $|t$"I$I$|t$"A$I$0|s$ :|kz" @>sZz K.Z'7: vjsb{z|%"H$MkMc^WWV$"I$ $cb$" $$cb$"I A$cb$"I I cb$"I$ $cb$"H$I$cb$"I I$cb!9@McHJXxp`Z 4%bB'0(BxXI$ y5fg$М [x\$MnMcR*V ݖ,cJ*,cZ  InMc,[$"I$Icb$" I$cb$"A$I$cb$"H$I cb$"I$I$cb!b;C:Mc,[`&j"',c(BXܞ5 )B 'pB'L$qs\VVW@1|mcH1|mc1|mc1|mcHI0|ncH I 0|nc $0|nc0P9sR``ppqUY Z 7fԺҜkpx(D/Mc U'@ IФnc U(I IФsUU'I$ϤsU*I$Ϥ{U y$IФs^ В>IJ_`$NjRU_ jJU~`ĨIJWՕ=ɑI˃=?/:"#'s'tX\^V$"H$I ь|$"IH$ь|$"I$$ь|$"IH ь|$"I I ь|#" Iь|$"A$Aь|$$I*(P|@xLo [77iֶR.f~ҶϤR^I$jRUW`ɟ$-jRU^!ImkjRUx% I- cjRU$ cR$ذiw-cb$&M8,-cbhKp(Jחnb"I$I$ԽqUE lp`$I$s^I$kWy$s W$Dnӌs+W$ 0I-s"0|#$ӌLkXWxNLcV =I$Iֵ >I$׭n =#(u$׭xWU&h"'s2'U+c27\?cbrp I$@$4R!I2i4Iӌ -HӄꪪI$I$4R A42A  42 42 ,ӌs`șx pLc5% r|2ѢC'lkx^:I䑌lk^U$mФlk_UI$IФkkUIМsՂ 3I$9M}w8I u.` mhvs=$GC4P540|`ppp$"H$H$|t$"H$I$|t$"A$A$|thhsR)i I$ӽZ^($I _ n"$I"U$I"rwI$I1q(.( "-I$OnUW 0Iܝ@n .M iN 1Ick U.$WU+6?Uӌ~WUrİMk6I$I2c@B N'oVw 0r hm򌪪I $ꪪISr|H$@ 򌮪A  Sr|I I$򌪪$ ꪪ6򌪪j͘&Lk`x^ Nlk% 9 4h֭o5 9#P>u$3x^WU$"I$A t$"IIt$"H$I$t$"H$I t# Ehtq! |^x`#NR's`#'@ c_%"I&M$-c c$"I$I,c c#"H$I$nkjR#I&1 cZ`$$ZJ`X9OR(Jյ+:1`@4x4"'Ӕ|xWUU&"8q'd%"-&I$d$ 15sR``pZ <&XC941|px3"Ӕ|UU."|WUU'"ؚ$I$0||@UUU$#&`|k`9 [7^''ɗįsVZx&9#5k(Bxxxx7IIJs----3#h&h'\\\\$"H$I$5q$"I $5q$"I$ $5q$"I I 5q$h-q` أ&L䲌LkX\֗:Id {?/;# 3'׭pX^'"h۴M$'#HDӌ*%}M$I$sne֠2sɝ$T}. жm%VO$ mӌ$"A$H$5q$"II$5q$"I I5q$!)A45q&*1&ӌLc`x\1I$IRKk;<)`@o /"?w$u\VWU$"I$ $5q$" $I$5q$Iq`6Z ӌ{x'A9U.5$]׫ 4UWV\$"I$$5q$" $H$5q$"H$I$5q$"I$@$5q# I&ӄp& I>sz"=s$LcxX^U/ɑDI$R{=)0#r>v~|Xp$A53z H:lk^}$ҌKkWX$}߯lk^U5InrkU I۶mѴM-*I$I ӽ0W?qRhz3;Nc^xxx$"A$I,c c$"I$ ,c c h$mR$NkjJ@NkJJAMkKJ MkKJ(hbZ@Lrn)J55ɑI$1nPˊ"иnrR~\(P$mnR_U/IRU/oФKk54I$IR ќm P2I$/m?W-2I Ip~2+m0W2 c:Ӕcz۾ϜR .9 z\zz)'zs cVVT\ $  cZ!Ok cZ$"I$$,c c$"II$,c c$"@$I,c c$"I $,c c#"H$$,c c$"$I ,c c#!$ ncjbr`/)J%IIM5":SӔ|Xxxp$[[m&|sz":tmk~"@Z?sZ_! m$sR~UIsRU+$yb.RU {ܶm .ZUI۱MAoR-2)|~z,"|;sMcWVV\$"I I$cb#"I@kR$"I$I$cb$"A I$cb$"I$I$cb$"I$@$cb$"I I$cb"  MciJ``ɄLϜ(J `b'IQR& I$I$ԽqMEI$@$Τk $@sp ǎSۏHJW`nRUW-jJ^! PJ$kRU\# .McR$ McZ $4I{Mc [+$"A$I$cb!.-McZ``H(B75%8vhH{H$I$|sVWWUI$I$1|mc@1|mcI$I 0|mcI$I$1|mc@1|mcI$I$1|mc 1|mc&b&sRXXX\Ф{59=McxxxxI$H$kJM$M6kJ $I$mk,[$pkMcUUU'`I$sMcUU+Rɟ$sMc*U/#I$ٶ|McU-~0Iok*U-I" nkU(I$X [ >9C)jn,"p'$󔑄\VVW$"I$I ь|$"A$I$ь|$" I$ь|$"I$Hь|$" $I$ь|$"I$I ь|$"A$I$ь|& *.1k``L  c5%%-AIt@2y{4I$IФ{_U,I$Ϥ{U.I$Ϥ{"U*I$ UNZ^ORU^`$jRUFs')JWHTIJB5% ii[ӽ01I$I$Խq A;Idɑֽػ=~Іح_(I>4*I$H4zI$IM[퐤I$sW" 6?sU_<I$IKk/<I i׭- >#$׭~W."?O0|X"$|U$ ۖ0|U$ Aۖ$0|*U"چm#$Q|U$@ҔӌQ|U<ӌQ|ӌrU -5ӌLc``pzɐa1Lk- ) I?Os{Nl~$IbM+2I$Kn_0IĔ@nU/IJin4!!@kߵ3 W6#$3WU,.194mk`ppp&Фlk))?"9#>UtxxxX$"IA$|t$"I$ $|t$"I I$|tppsR r@vhTPb4#m$|U7#D$Ӕ|U6"@$ӔtU3"mӔtU.PtNpR8;19C 4Ц$VW+XUӌUU"$I$ӌ_UUH$I$ӌA I 42$&HRz.p&PLk6 L %)sU\\|9|5-x /.+ A  -I$I򌺪$ꪫ$Sr|H 򌪪H 򌪪X#&lkpX HNKkֵ 4ɕ!@@o% 3 />}$֭x^W$"H$I$t$"@$It$"I$I$t#"I$H tq$"H I$t$"I$It$چA3zꪪ=ьlkxX'DI$sPb'H{-cW_|$"A -c c$$I1 cZ`#Ъ9t$bJx^<I$IJ+ ;)P@4{ x0#'I$Ӕ|\WUU$"IH$|t$"HA$|t$" $I |t!P9&sZppXX,IdIМKs !! 9#>4|xxXX" H0I$Q|mk" $I$Q|mk! Q|nk" I I$Q|mk X5P5sZxpppݐq+k) s2wiJ^x`6IOT k)+++0?'v\\\V$"H$I$5q$" $I$5q$"I$H 5q$"I$I$5q" P#&ӌmk`pXɟLk #9!`@h׭ /"??U|^WU$"I$$5q$"I$I5q%"A$M$%! c68󌪫#jMz"9j-!M/. w# 0+# H$$"$I$5q$iЪ5mkxHINLc֗% < $h׭-% 8#'O$x^WU$"H $5q$"II$5q$&h5􌳄`" >k~Ъt$Lc`^U#ɟ,c+' h@5o%"M$HҴ#$H5􌒄x">mk~!$ӌLc^UX'IPLc^U hoLcW $_AќKk I$I'1}.vt{jz'ILkWիI6`ϤlkU**!{-I$I2Φ?1I$I 5I$w յ1I$@wI$>1. (3B1 Ϥs~xz("q8r'nk cWVV\$"I$$,c c!vB'`b& cZNkJJMkKJA@$MkKJ I cZꪪj>5ZJp֭1Ks):I$1W@Sx3I INf2+m0|W3 $ӔtU0DӔsWU*O$sUU$QsUUU8v$|s~UUU"*smc@ʏ䯜R%'7/ɑDI/rbp/s&`= c^\XxI$H$ cZ!JI cZ+ $@ظx cZ#!I$Incjb$"I$A$,c c$"I I ,c c$h;6-cb#4> cZz" V? cjR_!9k$ cJX^I1{! -v11k~zZ?~? [WUc$Z_U ,I ZU3.Js4IHӔ 4 mӔ-}5yFp1 Z5 cppp0NKk4"r"'0Mc^\Xx$"I cb$"H$I cb$"A$I cb$"I$Hcb$"A$I$cb$" $H$cb$" I$cb$"&HMc [@MJϤiJ%5)II$I$ӽ0?C`|;Iq~;~m8qkV1 @mokU) nkU,IsU.I$c ns*,$@oZ_!n{탪RUx@n1?RU!@n?RUx(ͭ$Mc(Bj_Uɟ-HJ%% 79=4|rxxXI$I$1|mc@1|mcI$I$1|mc1|mc 1|mc@1|mc1|mc sshJRޖ6IDɑќm/1=>qMcXX\\AIkJH kJ@H kJI$I$kJkJkJ$"I$A$cb$"H$H$cb% ֶ6kMcUUU!h,'L${HJޗ4!KTNv&I#䑄sW$$|$MۖP|$"Iь|$"II$ь|$"I$A$ь|$"I$A$ь|$"I$$ь|"0P9 c``px yn c >x:Ѳk`pp("$$kMcUUU("xIĎkMcUU+"`?|X\\\$"I$I$|t$"I I$|t#"I$I Q|sppRR#<vhh3Qbbbb$"I$I|t$"I$I$|t$"AI$|t$"II|t"j&`&sZX<9@L 'H$x'UVVVT@$42@ @ 42IH42I$42@"E42`&`&+c1ɐ u-'%/*z"'p&Uӌ\\\\Z#@ӌqzO&M =N$Mz" 0N )@򌪪A  Sr|$ 򌪮Њ5lkxpɟlkVյ-5IpAխ 54?x^W !6iT|$"AI$t$"A$I$t#"A$$tq$" $I t#"H$ tq$"H$H$t" ` 0s``$NolkX֕%!I$I1 ) &! ɕ䮜ns\X@'i*1nkRp /&L${Bz^5<I$I(R*@!DhШUPx^/"'O|\WUU$"I$H$|t$" $I$|t$"I H$|t$!i$)$0|s!`&j&sZXX9ɕɑ3-=?+8">&|X\\\" A$I$Q|mk# IR4I4Q|mk! Q|nk# IH${t!&j2'sZXX\ ӽ̃)+I$I$s (OI$Rn G$ќsW^ #PNwӌ{+# s0| $[׵v5q%$*10|`hMpLk\5<IB 5- >#>|'׭x\VW#"H$H5q$"I$I$5q$"AA$5q#"IA 5q$"I$I$5q$ $(2&&Z&mkx^۹s%%搛O9/W~"@nnҔ0 Wz! il?mkW`'ILkXVե9I )`@Is= :#P>}$px^W$!m$E$ӌ~$ A:sz!h$ӌLczUH'ILc^U-HgɖФLkU ,c-I$I2i͖')4 V#C'ӌmk\V'IOLkWի$OOKkU 4I$7%u{+4INHuOU 36)4*dc;v`z̽,c '7:ɓ䉕 W]5IRH֭-կ7-mM61@#[߶3U7"$֭U0$WU.ֶI$UU- j7c;tUU-h搌lk<1ɐ|pzh1"s"{ c^\\x$"H$I$,c c @R$@&NkjJ@NkJJIHMkKJ MkKJ@NkJJ Z)Jp``! (J 7vjPcjj$?OQsWUW@$I$|s~UUU $H$0|ncI0|ncH $0|nc 0|ncI A0|nc $ssK.h.R7 ?mH.P?0 cxxp` H cZ H : cZ ۰ ? cZ**_& I? cIJ_"H#$ cJU#4~$ cJWVI.)JUU $mФIJUUK$6Ф(JUIlO$ QZ+I  >It tnX( 7-IЦ4OW2!`d+U1" '_U1#fɓ$󔑄UU+"ɓ<ҌUUU'"h&I$UUU$"II$ф" ȑ+c``߯ c 3+Pmcxxp`$"@I$cb$"I$I$cb$"H$Acb$"A$I$cb$"I$ $cb$"I I$cb#"I$cb$" $Icb r9sIJ^IIq- )@$@$_R9 `hҜsbbb&"p$q$kMc\VWW$"H$ cb$"  mcMc u& I$kMc UUU(`kMcUU-"ВOsMcUU.#POiJ*^_I R >IDɑXT(7&j2'sxX\^1|mc1|mcII$0|mc1|mc1|mc1|mcss (sk@@H܏R5%6 mҔzb.'r'0|,c\\\^H H kJkJkJ IҶkJ!I&H4kJ$!IhZMc [*$"A I$cb$"HI$cb$,(Mc [@@HϜIJ55%  Qn{ h$I$QlkW1sUU `$lkU_!r$OlkU"0InpLkU" ܖۑk$I{$$T>P| &r$P cXXМ (<#9=ӔMcxxxx$"I$cb$" $I$cb$"I$Icb$"I$H$cb$" I$cb$" $ $cb#"I cb#59Mc(J`ppx b )) II$ԽqAE\II$Խ/CL7I Ϝ>>3#p'j"'v\\\\$" $ $5q$"I$ $5q$"I$I5q$"A&I$&"$I$"I$@$"A$I$5q$" $I$5q#" @$5q$"A$I 5qp'p'q+c= @׵4!I(IW0!IvuU1 IhuU0OfvWU-HuWU*UUU)Զv](O@DV_# P9spX m[un 2?B/53``pp$ISr|II 򌪫A$@򌫪A$ ꪪ! Ķ$2 II !=X%lkXXXX:I{9+[3Ц$rRW#m$|RU"0M|RU#m|ZUxNМRAR#)7@A3qbbkj$"H A$0|s$" $A$|t$"A$H$|t$"I$A|t#؃=9|RXXxx7ɐI{/---.z'p'uӌ\\\\$42@ A42 A 42$H42H42h&`>LcXXXX0I-7=55-h'>ӌ\\\\I$I 42Z#Hӌxk"ѐHN?xLMx+ 斛O/v ݖ$PU`6k_`$IoKcXֵ 7I / 6 ,53?3x\^" ˶l3TUUU IA$T|#"A t$"I$I t$"A$A$t$"I H$t$"I$I$t" 1s`P&Mlkx^W9Iɗ {/<:Ъ3abx\K&ZєOJV!6jR^Xɖm1Z @Hɖ3O x1 ?ӌ|\VWU$"I $|t$"I$|t$"I$H|t$"H$I$|t#!I$$0|sh.z{Zܖ:Iɐ 4M%'4"p"'s'Ӕ|\\^V! Q|nk! Q|nk#!I$I$Q|mk$ i*1s [`HIZ5% $?II 64I2mnx'I$Z@4m I$I>М,N*#I$/U_ @NvҔ| Wx"Ь5l$Lc`x^6I$Iսks/<Dˆ׭Ҕx'"X&I$$" H$5q$"II5q$"A$I$5q$"$H 5q$ a&5q`"$ӌLk^W HoLkW 7{P-յ3]ШҌz*O2*iNX~{^* -Is˃:*<b's^"ic$ӌmk~U:IҌLk^U `mϤLkWU- m[Ϥlk6I$[mW8IH׭u1y1 RC6k`zz y'Ϥlk 9T-W+5 $iv샽4$l' ~U3"u_U+" 4}$" $I$$*􌳄@˯J䐔Lc76;19C֭n 1"??3\VWW$"HH$t$"A$I t$"I$It#"  A$tq M$@ӢT| c'Mꪪh&h&kkɑyNbk .P-Q-c^zzx$+֦,c c H$M$NkjJNkJJHH cZ(0l&bZ| >ZjR^m'Z(JzU1HJ %%%1)C9 󜐔nEī$QsWVVTI I 0|ncAI 0|nc 0|ncAA$0|nc $$0|ncI$ 0|nc@ 0|ncb"&؃9sRXxR1 0vikJxx $ZJ_FI{B_U+ $n(JUUIϜJUIڵ+IR*IZR˃( rϤVrϤI$Ir } OA( W I$I$ 8 S,$7/"?x󔑄\\\\$"A$I$ф$"I$ь{$"H$ $ь{$" Iь{$"HI$ь{$"I$I ь{$" s`@ ؋ c-%%4vaBsxxh&"N$v8kMcWWVV$"H$Hcb$"II$cb$"I$I$cb$"I$I$cb$"$I$cb$" $I$cb$"I$I$cb"P5McHJxp`` N1iR @$@$ΤHJx9k````$"$I$cb$" A$cb$"H$I cb$"A$Icb$"I$H$cb$"@$I$cb$"@$I$cb$"I$I cb!&`&,c(JXXX!&-)3I\ɗX~/` ֠=?k^$skPts@1|mc@@ 1|mc1|mc 1|mc1|mc Ȁ(s,c@` R% 9 C1KOloo'p$J$s,c\TVVkJ!I$IkJ I$ $kJ$"I$I$cb$"IIcb$"I$I$cb$"A$Icb$"$@$cb$ Ȓ,McR``I ɐ Ϥ(J%% )I$Խ>I$HI$ @rT<@Rmn" *I$R˃~ "-$mҶQlkU*y$lkW:,cUIt)0 c% :I|ɕ2^=#>j"'mcXX\\$"A$I$cb$"I$H$cb$"A I$cb$"I$$cb$"A$I$cb$"A$H$cb$"I$I$cb"=؃%Mc(JxXXXItivQ{ A$H$Խp\pH$I$ԽPC8 IϜ>2#p?v\\\\$"I I5q$"I$I$5q$"$ 5q$"I$I$5q$"I$A$5q$"I I 5q$"I$H$5q$"I$A$5q$"H$I$5q$"A$I$5qp'p'q+c= @ @, ,"#HUTTTT$"I$I$5q$"I$I$5q$!h&i5q!Maӌ!IҶۄIӌ ImHӌ ImAӌX&`&,cXXII2-;3P ֭pppx$i+@ @3$@3##A$I3##I @3$i6l3$I6IMT X&`&lkXXXX'I$y М. 7I$I>,^5I$w W{5I$Ӕ_z 3@Ӕ̃*_/ c/>H$H$Q !7A!Bc@H&"v$L0|tZT$"I $|t$"A I$|t$"AI$|t#P50sRp```6ɑj)-9=0x&h&\\\\@ ӌ@ӌ@$@42A @42ӌ؃99ӌLcXXXx,ɑIt̃-?==/>>\\\X  42 42h"mQ42 b@ӌP^xI$kϤP h2os_zHҤQlkU IQ{+:Tmo._+жm-/|!`&2򌠠   I$T|$"H$$t$"I$$t$"A$I$t$"I$ $t# @(5s`P&Mlkx^:I$I{/:!P@ /"3;}3\WUU#⣍ x s5@򔑌\>/+I$I$qNz"r$1sUWx#0 .|k $6ar|s+$"I$I$|t$"I$I$|t$*ɒ-|sjhHKoZ759915N,"h.j?r|\TTV" I$IQ|mk"$A$I;{t!(:s,cx!P#&t$sZpXVP1b- 5I$IսkV<Dh+!`]UWWU' `U& `*:sz!}B's%!I$I&"%H۶uQ{ר :n׭ 3"?'x^WW$"I H$5q$"A$H 5q$"A$I$5q$"I$H$5q$I5{` ,:|$LkXV(I$I2ksե/: hn 8"'׭x^W'"h&I$$ C0Iӌjꪪ# #@pI$jo Sm۶1s^ 5I$I RsU3I$.M]}5IrSHMW+5 -7$6~$WU0"Yu_UU h$Iӌ" s``1ϤLk);F֚׭Ҕ)"߿<4W$" $#" $I5q#"I H 5q$" $ $5q$! $M45qz.p摌Lk6 ɐ--%0#K<'t3TTTT$"I$A t$"H$ t$"I$I$t$"IIt$"IIt$!AE43h&`:lkXXnnʋ,vA'COkxx"#9 >MkZ\ > cjR_I['ZJU~$bBW-X'I.BU `۶nJU IvϤ(J+Ivmq{-0ɐIR,{'r&sV^\\@ 0|nc $0|nc1|mc1|mc A0|nc 0|nc$ $0|ncP1sRpp``1Z  $Irz.I$o HksIls*_)IPk 0Ir |(U4Ib I{ U2IBn IsU0/ IќsU3 mkU3 ֶPnkU2#hd'PmcU#r>珔iJ*?6IDTm:;94"r"h4\\\X$"I I ь{$"IH$ь{$"@$Iь{$"IH$ь{$"IIь{$"I Hь{$۲ 0|@Lʏo c'7761Kɐ0x|p."&sMcWV\\$"I$ cb$"I$@$cb$"I$I cb$"I$A$cb$"H$ $cb$"I H$cb$!H&I$cb! 1Mc(J`x) 1(J @$@`xp.nБMc````#PIJMc [(#" $Hcb$"I$I$cb$"I$Acb$"II$cb$"I$I$cb$"II$cb$"I$I$cb `&j"',c(B؜IIn)O$qnx`[?ФZ_^ۏRUInZU_В/RUm$sZU^ IsR*U msZU ܖ?sZU,1$sR`z !ϤR 7Ivhќs``"3?:mk,[|||~ IIkJ$"@Hcb$"A$H$cb$"I$H$cb$"$I cb$"H$I$cb$"I$ cb$"I I$cb" 0Mc(B``` yHJ @ Irj&T{p. I IQ*U. I"I IќQ|U/I IrU/I rU.IϤU/I𤒌U/IU.I# h|(*zI$|'{"<ɑQp5#h&x'QMc\\\\$"IAcb$"HI$cb$"A$I$cb$"A$I$cb$"H$Hcb$"I $cb$"Icb X&`&,c(JX-)I$I$ԽqUAII ԽqE6IIФ4#p"'r.'\\\\$"H$I$5q$" I 5q$"AI$5q$"I$A$5q$"A$$5q$"II5q$"I$A$5q$"I$A 5q$"IA$5q$"H$$5qpp瑌LkԔ? @H- ,"UTTTT$"@$ 5q$"@$H$5q$"H $5q$"I I$5q$"I$ $5q$"A$I$5q#!A I$5qhpPLkI3)5%6#9=֭3xxxx$"I$I$t$"A$A$t$"A$H$t$"AIt$"I I$t$!I4$3jjjhr.DZlk\=)Bi 5#DO$Ӕ|WU0"ɓ|UU-"Vɟ|WUU+:vc;QsHKZI$I$rn+9)B1CH("KJ$Q|WTWT$"II$|t$"II$|t$"IH$|t#|Z````4IDIZ)---4rӌ\xxx!v( Mӌ"$!I4i45q$"$A$5q$"II5q$!IM5q9P5ӌLcxxpp)IDId3{-=9=1#> ՖXXXx I$mmӄ I$m ӌ!I$aӌ m$ ӌ_몪&h&Lk R ;IdA0nx2I">mk^W$I$LȎs/I$|W⢪ )N -]$0 攛p # mۢtq$"I$t$"I I$tq!@5kxPC'OlkxV58I$I{/:)P@m 2"v'3x^WU$"I $t$"I$I$t$ cڶm3^ꪪ% [#mHj!I$RQє=WI$I$rm s^r$0sUUZ" @tk W$@N|k ",tmk``IϤZ%:!AtaOA'I>Q|mk^!ic$sZW6O{R~U5X$mRWU-IRZ I$Irʀb;ɐA' 3'N$x^WU H$I$4R @ 5sx=qLkx1 `Qs`* PI$Ipmc7WUU#I2' 0kU%tI&ќ{# 0r/WU$0I0+$ڶhӌ$! &M&5q#@Ш5mkxPC'NLkx^յ<I$ SKk+ 9P׭o 7"PM?~維^WU$"HI$$"H$I$5q$"H$I$5q$!A M5q" 9ӌ{x` z1{+-<BK 4#H~$WW,"8U_UU$"@$A$$"I I5q$" $I$5q I$I$4R$"*Q@ʍNlk774tABN &"N8L$"II$5q$"A I$5q$" $A 5q$"I$H$5q$!A$i5qj&`&Lk\XX:Iɑ׭N5552"k&h&3V^^\$"H$I$t$"I$I$t$"H$I t$"A$I$t$"I$I$t$"I$t 99lkXxxxv $9IQmkxxz'NIJWW p-KnJU IvHRիIR{"Ar勪 II$:0I$m/IDIds2>>Ӕs\XXx@1|mc$1|mc II{ l$"I$I|t$m#,A|kʊ"I$IB|sUUU I |k  s [``) I qZ-- ɗPp|~)>|'qRx^^T۹McRUU! nnkR("d;I$kMcUUU'"ؚ$M$kMcUUU&"$$I$kMcUUU$"$ $mcMcU_%"A$Icb$"I$I$cb$"I$ cb rh&s(B&IDI3,>8#j>=TXXxx$"I$ $ь{$"I I$ь{$"I $ь{$" $I$ь{$"A$I$ь{$"$ ь{$"I I$ь{z.'h&p c4IФOsx5"k>>QMc^\\X#"@ $cb$"$I$cb$"A$I$cb$$6Mc [$ @X?McR_# ic'McHJU 4N$,c(JU/X$IHJWU 1&A c+MIh.cE]4Mcpppp!$Mc [% U!ڴ ”Mc,[$"IA$cb$"I$I cb$"I$ cb$"I$Acb! 4|pxX\%"E$M4|t$" I$|t%"-4IҤ0|teU'"-I$0||UUU(";IQ|UUU'"$IQ|UUU+"pQ|UUU*1Q|mkjjj 8Z -%; 𤑔tt2"p'{|Mc\\TV$"I$I$cb$"I$I cb$" $I$cb#"$$kR$"I $cb$"I$H$cb$" $cb`&p's(BޞII-- I$A$ԽqU@UUI$I$Խq8Ϝ3#pp斥\\\\$"A$I$5q$"A$I5q$"II$5q$"H$H5q$"I$A5q$"I$I$5q$"$I5q$"IA 5q$"$I$5q$"H I5qx'x'pLk7 - +"x'UTT\T$"H$I$5q$"I$I$5q$"I$A$5q$"II$5q$"HI$5q$"$I5q$ ("HJoLc66,IdIt58#>>֭3xxxX#"I$t$"I$It$"@ I$t$"A$$t#"H$Atq$9Ӣ13jjpJOlk: hfh/ca$" $I |t$"I$ $|t$"A$H$|t$*۲!|sjbjJȍʭФJ7777I$H n)<9C9@3Ȇ*"r8#Q|TTTT$" I$|t$"$ $|t$"I$I$|t$ ",|Mc```_əoZ %%8"9#9xxxp$"I A$5q#"I A5q#"$5q$"I$I 5q$"HI 5q"X51ӌ,cpp``_lk))))7#=ڏ9xxxx$" $I$5q$"A$I$5q$"A$I$5q$"A$I 5qh&h&Lk<I M* <#'-cx^W("q$nk cUU("[I$nk c/U(i Nk-UUU%I$ nsU!nI9os*Pno WW! 0o<| U!$lkzWhNlk\%8IIuյ? <!4hШ 1#'O䵥3\WUU$"I$It#"I$Itq$" I$t$" @$t#"A$A t##$I3Ҍxh#|>bpW^ "=I$^/oqsZ ɟ$mkUWz:OZUUIn0rb 2XѮMcz^$mZWU-Im0Z+I$I,*"I$#OI$I9 $h׭77X}'׭x^WU@4R @1ӌk`3'N䲌LkX^7 !P@{/ 4"P>s'Qmcx\VW#"@$Acb%"hi$mcMc ]&"H$IsMc/U#I.>h -[ _O'Z PNwӌ/ "$[_?ӌmkz^`IOLk\յ 8I`j{:$;׭ x^."?$Ux^WU$" $$5q$"II 5q$"I$I 5q$"I$I$5q$" $H$5q#"&I􌒄@}2'9s7X5M-=2"|j>uV^\\$" $H$5q$"II$5q$" $H$5q$"I I$5q$"I$I5q$ c:c;ӌzjKrpLk2)9uM +"?x?UVV\\$"A$I$5q$" I$5q$"H$I$5q$"I$I5q#!H I5q!`=؃=ӌLkXXXX9IDIֵ-5#h&`>֭3\\\X$"$I$t$"IA$t$"I I$t$"I$ $t$"I I$t$"I It!99lkpppp!!0{  Nb'Nr0I$IBP_/I$ PU.I$0PUU,I00UU/Ir I0{*U/II msU2 -mkU1 % O:PJz~Qn(B 3>س5sxxxp$@1|mc1|mc#p|s$"I$|t#"I$I |t$"I$I$|t$" $I |t"",tk@@ͿʏܯR%%77+ɗə0r`j6~'vPR^^!O$McRUU mMcZ$"A$I$cb$"$I$cb$"H cb$"IA$cb$" $ cb$"I$@$cb$"I$H$cb!99McHJXXXx q{ks 5$X34E0Tpppb$"I$H ь{$"I$I$ь{$"I$Iь{$"I$I$ь{$"I$I$ь{$"I$I$ь{$"I I ь{ h&`>p cXXXIIM)5X}:QMcxxx\" >McR^#hc$Mc(JW $N$ c(BW-$In(BUxnmϤHJU IڶhRիIZ +"I$H$欄<I$I$Խ/0 NdNbjjh,?0B#,cxxxx IlclJ@$lclJIlclJ-rm,[Z*:$i $HMc [i $) @ Mc [ $"AI$cb#: Mc,[HJ.(B77>I un/5;#?|'|\^V"H$I$0|sUU$$1|s&I$QsUU'`QsUU'`ɟ$qsUU+ж$rsU+@n$sU+@$sU'X3>qZ(Z^oϤ #:T99ӔMcpxxx $H$kJ!IIĎkJ$"II$cb$"I$I$cb$"@$I$cb$"I$ $cb$"I$A$cb$"I$$cb$"I$@cb!؃%`&,c(JXXX9Ij{) 4"`"'z'|\\VV$"I$@|t$"$ |t$" $I|t$"I$I|t$"I$I$|t$"I$I$|t$"I |t$ú|k` ȍZ555=C9CP@N*"p$sMcTTVV$" $A$cb$"I$$cb$"$I$cb$"A$I$cb$"I$Icb$"H$I$cb$!)m6Mc [xH.(J Ϥ I$I$ԽqAUTII$ԽOC8ɑɑֵϤ6"r"?\\\\$"I $5q$"A$ $5q$"I$A$5q$"A I 5q$"AI 5q$" $I$5q$"I$I5q$"A$I5q$"H$$5q$"A$I$5qxxpLk6 -+"x'x'UTT\\$"IH$5q$"I$H5q ӌ!i&i 4R$"I$I 5q$"@ A$5q$)#,􌒄@ȍȭܰLc77778ɕ\ɑյ=57#&h&֭3XX\\$"I I$t$"I I$t$"I $t$"A I$t$"It# -`` ȫΈ.lk67%9"oS50|cbpp$"I$I$|t$"I$I |t$"H$I$|t$" "!|sjbJj ȋȍZ5555I$H$n < @HS,!?r|TTTT":|k^"X?|Z_"i$tZ~UL?IpZzWUILXϤR7#35Dopppb$"A$I$5q$!H& "5q$! Фm&5q$ m6$ӌ_$6mX?􌳄Z 05ӌ,c```x_[lk) ))5#9xxpx$"HA$5q$"I $5q$"H$ 5q$!MI45qp'xPLkܔ811BK+"h"Ss c\^VV#" nkjR$"II$,c c$"I$I$,c c'"mdI$Mk c U'!Z3Avs-c U'M MNk+U(ɟ$mMc*/UI̶nФs,I/;9b$W-KnT$"AH$3$"H$I t$"I$I t$"I$ t$" $A$t$" $I$t$"I$It$[& x"u2: p-^x  -*/I$ $ԽPMAH0dI$V? IԽI$$YII$kI$Io0I$Мx3I!Tm 6 @6 5XO?O$x^WUH$I$5Q @1ӌs`P&M$,cx^׵7Id *k# ;%Č9'mcx\^$"H$I$kMcVUUU$"II$cb$ Ҷ5Mc [p"hM'Mc(B^M'O{HJ~W 0 sR 6IהhN]&vձs^*4yw /;#ê'׭x^W*"&NXZUU$"I$I5q$" $H 5q$" $H5q#"I H5q$"I$I$5q$"A$$5q#"II$5q!P ӌkp`.Os;)5"#>#Xxxp$"IH$5q$"HI 5q$"HA$5q$"A$A$5q$"I$H$5q$!m6 5q"j&b&ӌLk\XX3ɐ-'--51">u^\\X$" $H$5q$"I$A$5q$"AI$5q$"A$I$5q$"I$H$5q!99mkXXXX_1=:"#:9xxxx$"A$I t$"I$I$t$"I$I t$"I$It$" $I$t$"$It"X51lkppp`b)s  =I!BRp~;$|$Mc^W+жI$|McUU'Tys,cUU$f'I$k,c_UU"mk,[ @$I$Mc S A$ $Mc [MciJ```wN(B 1S_GӔ|pppb I$0|ncI$I0|mc$!I$I40|s$"H$H$|t$" $I|t$"I$I |t$"A$ |t! 'tnc\Ht'oR*ɑ\ɗol|o9">qmc\\XX$"I$H$cb$"I$A$cb$"IH$cb$"I Icb$" I$cb$"I$I$cb$"HI$cb$"I @$cb$" $A$cb#P5Mc(Jpp``uٖmHJ8 hhuscaa$"I$I$ь{$"I$A$ь{$"I I$ь{$"I$I$ь{$"I$I ь{$"I$I$ь{$"I$I ь{#9P5 cXXxx) Q탩)ɝ$Z^x hNHJU I~n niR O { !I$I2O_(I$I.1OU1I$w+Pp"]U2I$QP WU4I$ ͒Mc"*_ I$N$QZ _npx.B99,[xxxxH$I$lclRI$A$lclRqle,[ [???$IRHMc [U$"H$H$cb$"I$H$cb$"I$I cb$-Mc [@@ȭ܏HJ555%8ɐn ."z璌|T\TT1|mc1|mc@1|mc 1|mc1|mc1|mc1|mc@1|mc=؃%sRXXXX3IĨ):#>>mcXX\\ kJ!IIkJ$"A $cb$"I$I$cb$"IA$cb$"I$Hcb$"II cb$"I$Acb$"H$A$cb h&r"'lk(Bޞ6 9  ,"r"|TTVV$"I$I$|t$"I$I |t$"IA$|t$"I $|t$"I$ |t$"$H$|t#" $$Q|s$,.(|s@@@@ ȍȍnZ5555<1C)B/CHK@("H"Dz$kMcTVVV$"IHcb$"I$Icb$"I$I$cb$" $Icb$"$@$cb$"I$I$cb$6>-Mc [HKNB7777 Խ I$I$ԽqQDPH$I$ԽqTE8ɑɑֵϤ7#j'r"'\\\\$"II 5q$"I$A$5q$"I$I5q$"II$5q$" $H$5q$"A$5q$"A$I$5q$"I$I$5q$"A 5q$"IH$5qxxpLk8M ."xU\\\\$"H$I5q#"I 5qH$I$4R4R@4R4R(ӌ@@@@ ȋȋ,c77773֭=50>>\\\\S|I$I$S| iT|$"I$H$t$"H$I$t% ,1|``` Olk% 8"9:|xxxX$"I$H$|t$"@I$|t$"A$ |t$..)|k` J۴ϜZ%%%%M$MҤn+4L r|xx)>N$PR^W/$ynZ_UIanZU5oZ!I$I=Mcxxxx$"I$Icb$"HI cb$"I$ $cb$"IA$cb$"HI$cb$"$H$cb$"I$Icb$"A$I$cb$"I$I$cb" ,MciJ```1 (J 5ABTn&"$N$VVVT$"IIь{$"I$A$ь{$"AHь{$"II$ь{$"AI$ь{$" $I$ь{#P50q cpp`` 1Kk ;IXQ8 I6kW2" $0mcU2#$qMcU3#$0mcWU1"@|McUU2#O$|McUU."$sMcUU* .1[31siJ`zzz)(B __qox199,[xxxxAI$lclR  lclRlclJ$P Mc [ $"I$I$cb$"$$cb$"A$I$cb$ .,McR@L(J%%%%:91C5,"p;C?q|TTTV I$I$0|mcm۶m{ d I$I0|mcI$I0|mc I$IҢ0|mc I$I0|mc I$I0|mc I$I { l`&`&sRXX8IɕМ{3c3 `+'PJW ,[R U 0McR# IMc [$öMMc [$!M4IMc [ $"I$A$cb$"I$I$cb$"$I$cb$뺮];4Mc [pJo(B7995-+"x?'Q|TTTT$"HI$|t$"I I$|t$"A$A$|t$"I $|t$"H$I$|t$"I$I$|t#" I$|t$(" |k@@@@ȋʹnZ%%%%<!jRx%Ml$kiJU$ A-$MciJU# AMcRU"McRU$ IܖMcZU$ IMcZ $ HMc [& 1McR` ؉HJ55%%I$I$Խ=1I$I$ԽqAUI$I$ԽqTP8ɑɑ>6#h&h&\\\\$"AI$5q$"I$I$5q$"I$H$5q$" I$5q$"A I5q#"$5q$"A$I$5q$"I$I$5q$"A$I 5q$"I$A$5qxxpLc9M  -  :Uӌ|\  mӌ @$I$4R4RA$@$42A @$42IH 42")"(ӌ@@@@ ȋ܈,c77775ɑI֭?'-0h'p"'\\\\S|@S|!ۡT|$" $@$t$"I It# 5k```p5_Ҕks=-=5Z='ӌZ^# Id$sRU"$tZ_U!DI$sZU:IoZUUII1`R%% O$I1(@Z:I$=S_}6IMU 5IR IN+8 y 60|W8$l_;k'hNZ>755I$ $@>(U.`Yk+ 5$C34DC0prpr$"II$5q$"@$ $5q$"I$I$5q$ .-q@@ ȏ˿܏Lk778!AAp{BBb`$"H H$Mk cv$"AA$,c c$"H ,c c$"I$A,c c$"I I$,c c$"I @$,c c"5 cJ`pOɝ.(J5% ;d`k`p)"pNخkMcVUU'"@nM$kMc+U)bi I nc U%I$nk* U"I&s `${+x#@Nv{+^$ $唻/|+#$H3Ҍu"h&lk^P'IєlkxWխ.I$I2sս.: ho 4 X=qxx$bФP( 0IuM 2#Ķ8UU3#dI$vUU+"[InU_UU# h$I$" I$I$5q"kúnӌhRh@ӌPzp, 55f?pLc`xZɟ۷Lk% 9AҜk p2`l[;QR#hM'Mc(B^к&I.IJW-!IIrhRU*7}S@{/8c] zW1"X]'u_UU$"H$I$"I$I$5q$!I$H45q# hQ^xOԌ 5_& 4   %"M$M&$" $I$5q$"I$I$5q$"H$I$5q$!MڦI$5q"66qx"@:ӌLk^ u$ӌLkWUx}ۏLk5 /' U, /)"}? :4^x$"II$5q$"I$H$5q$am6ӌ$ @:|z%$I#'mkW!P9u$Lkpx_U_ls)))3 =:kz$ I$'ӌmkU! I$$ӌmkU# Im$LkU"mm$LkU!m$ӌmkUU&O$lkX^U P1)&Ispx?oLkU IokkUIb۶ KkU* Ib۶ HlkUm HsU Ib4 М{ II$ϤM+*?I$I$Wr6 0Qz~xz-"{p'sMcTT\\I$I$kJHkJ IkJ $ kJkJ#Em۶c;Mc [ ,cZ@@ ˭ȏnHJ%5551aAPaC!I$N |sWW!I M|s$"I$H$|t$!ii$|s$Md'|sW$ÆId?|sU$0@'|s*W$ f'|kU!؃93&tZXXX^_Ф{;$أ99Mcxxxx$"  Hcb$"I$I$cb$"I$ $cb$"I$@ cb$"HI cb$" I$cb$"II cb$"I$ $cb$"II$cb"McR````  B 7)C9Ku)"ҌVTTT$!MZ4M$q$ I¶$p|$0t[$pU$6a'0|$$A?0|_$ f?{_":q c```~ِi c :!B1C0hx||("p$J$kMcTVVT$"I Acb$"A$I cb$"I$I$cb$"$I$cb$"I$I$cb$"H$A$cb! ".McR```` I B IɑdrϜo_l|/PP/> [xxx^ [RРI [RU [RU 5McR $Hږ$Mc [U#i P m4h4zxA$VU5Q|zz6"$|UU/"<|WUU'"X&I&0||@UUU$" $I$|t$,.(tmk@@K ɐ R%%% ΤC> d@F׵c2#uU1#D~{'mcx\^W$"H H$cb$"$ $cb$"I$I$cb&"&I8kMc+UU'# sMc U%Mk UU(I$kis -U {W( @ҿsUz Hw[ϤlkW:Iֵ˃ 9 @Ш 5"XM~'~WU$!h$@## hQ^xO'/$P- 5&"N$tL$$"I$$5q# I$H$5q" II5q#ضmG:􌲌` :k~$Lc^U k Mc % =ɕ )diќs b<Ш'HJ~WK'I{HJ~W IhRU5 { < K׭- ;#??L$׭x^WW$"I$$"A @$5q$"I$ $5q$" I5q#"@@$5q$!M$E5q!р@Q^x Oфt2:Ҕ/5W$   $"I$I$$$@5qx$$I:ӌLc~!u$ӌLk_U$IlkzU/ I}LkU(1I$[t{3IMյ1I:X#u탿z\($@C  "(:sx"ic$ӌMkU6O6h:4zZ/#=uU0# H$uU1#0I$U2#M$ U3"4m䕥1"mߕU/ N60|z-ۍQk*%9ɐ qx|~z/"'?{Mc\\\\!s"mMc,[ I8&IMc,[ I$mmMc,[ I$mmMc,[!s$9 Mc,[ I$mMc,[ mӍaMc,[kKH.:7777:)jsjz$4$sZW@$sZU@I$sZU жI${ZWU yOZU dI-ZU$oNRU $ݶnZUU`aNZU q{˺Ϥs6$DS40qmcppp`$"A cb$"I$I$cb$"I$I$cb$"I$I$cb$"I$I$cb$"I$ $cb$"A$I$cb$"I$I$cb$"$@ cb! 0MciJ`Itɐ HJ+TI$1Or&Цs?pb^@Ob/ZUIb{Z_UI?NZU$-ZU$ۯ cU $n c_UI Ф cU1 c ;9CKQ|z~x+"K'r;sMcVVT\$"H$Acb#"A I$cb#"I I$kR$"I$H$cb$"A$I$cb$"I$ cb(McR``@@I ɐ Ϥ(JII$r@ꂠ9?R^\ $9iJUU <.iRUU $6m-iJUU mKiJUU" %ɖ RUU 'm˶NRUU nk RUU>].iJUUiaϤHJ 9!B!AAA&"H;$0|tThhT$" $I$|t$"I$I$|t$"II$|t$"I$I |t$"H$A$|t$" $I$|t$" $I$|t$!m&I$0|sppRs喇g[AS8Ҝkp, H IOkU. I IokU/IB IsU/I sU-IbnsU-IN{:U/I$d N{~ /m b~. H{HJ_Z "/'8 !BAoA%"H$H$0|tTTV$"A$I$|t$"A$I$|t$"A$I$|t$" $H$|t$"I H$|t$"H H$|t$"I$I$|t! s [@@@ N(B @Jthc4OHFPkU/I@pkU.ImpkU-Im/kU-I Ipk*U/I"Im/kU0 I"I IokU-O"р,5IBz#r&rQ+k I$I$ԽqQI $ԽqPBAI$I$ԽPCsp7ɑɑ5` `&X$ ?Q_"'0|W#$|U% $#$sU#'kU#I$'ӌLcU" Id$ӌLcU#m$,cU"$mkUU!:I䲌Lk~UH1GnQLk-*1'%'')x&h'Uӌ\\\\!II4R!I6 64R4R4R 4R&42`86ӌtz ȋʛ,c7775/19K -& `;?tp^'/|U 0`#$|U! 0m$sU!H$?sU!Il$LkUس&N$lkX\ו:?C4̃7#$|W6"ϓ<Ӕ|UU1"Xɓ<|UU!ps.'1Z 懶h6h6hp8%DC4D#40|pppp#"$H|t$"HI$|t$"A$ |t$"I I |t# ,|Lc@```IɐlR I$IrHh<%FS5T#9``pp$"I$I$5q$" $I$5q$"I$$5q$"I$ 5q$" $I$5q% ,#1s````IILk- -6%s,s0bcbb$"H$I$$"I$A$5q$"I$A5q#((Q@@@@HINLk%%%:zjqnkbb`p$"@$I nckb$"II$,c c$" $I ,c c$"I$ $,c c$"H$I,c c$5 cJ`x ΝعN(J5% =!ta&s`p)"xsMcTWWU$"A$I$cb$"I I$cb$"I$I$cb$"I$A$cb$"I$A$cb$" ImcMc/U& 5kZ z# k$pIJ*W&I'yФKk $I$O&P.(58səuv,#C;U\W_$"AH$5q$"I$$5q$!I"i45q! `0|^xND'53=5&@' - 'lK؊9`$  >sz!h$Lc~UZ'ILkWU- Hv[LkUՋM$rs*)II|rNrx5Œ9s?pBx -I$IHJս 9I@ 8$@. /#?u{^^6)BS. %+"zzUWWWT$"I$$5q$"I$I$5q$"H$I$5q$"I A$5q$"A$A$5q$"I$$5q$mӵEע5q# ӌ0|^x`6Qk*5!4f;szx'IpLkW I$ELkU4I$I T{5I{@Nյ5 $ 5!?_U/"?uUU"9P1ӌLkxxp`ks ! h$Lc^ת"I$ILkի*7I$1' -4I HMW 6@ڶ)W4d6rzLk;d@ViМ2#i$uW0#muU1"@'uU/"uUU/#жO'uUU- *[36sjzz(yLk 9$C5DCprrr$" $H$5q$"I$H5q$"I$I5q$"A$I$5q$"I 5q$"AI5q$"-"(0|@@@@ɐlɖtLk%%%9  T[X[1#z"x?|Mc\\\\$"I$ cb$"I$H cb$"II$cb$@lBMc [^$$H @Mc [ $"H$I$cb$!)6)&Mc [Jz IJqɟ MÃI/ w"(I-, "I M3*I$-ќnV3I$+Ҕn2I$m ӔnYi0 I$$ ӔnV/IҔo i/Ir@ќPjN?mk/8jqk````#"I$ $kR$"A$I$cb$"I$H$cb$" $Icb$"I$A$cb$"I$I$cb$"I H cb$"I I$cb$"IA$cb!@8@McHJ`p`ɐɐϤ(B ?IISp26IBmv1IB I 1IB I *1IB Iӌ.]2IB I.2IB IO"3IB IN"(Im`Мt [ %7 q~xz^-"x?hsMcTT\\$"I $cb$"I I$cb$  Mc [@$"I$I$cb$"$I$cb$"A$I$cb%",McR@ɐ M1(B%%%%II$Τprs?_hhҜs`x0Iƶ|mcU0Iֶ|mcU2I"Aֶ|mcU/IT|ncU0IԶ|mcU0Iֶ0kU1O"ֶ|mcU-$ ,1{iJ`z iiR 8AABBBC$"H$H$0|s$"I$A |t$" $I$|t$"I$I$|t$"AH |t$" $I$|t$"I$A$|t$"I$A$|t$ C"c;|sjHJoZyLP;$S#99ӔMcxxxx$"II$cb%"hi4mcMcu$" ImcMcuU&"$;NĎkMc}UU("$'kMcUU+"`~?kMcUU-"pQZx^#$H cZ$! $m4-cb$"I$I$,c c$"IH ,c c$- cZ!`&L${B^ޗ7>I\IҜIs+ =#X>s'Ӕmcx\^V$"I$A$cb$"A$I$cb$"$I$cb$"I I$cb$"I$$cb$"A$I$cb"@1McR` />L$s(Bz^5:I$INHJ% =dAk x.#bOR._y{>ϤZ *A4 5("$$"A$I 5q$"$I$5q$!h IҤ5q"  ӌ{x$~R?{?'+:tLkX^ xn[LcWիIN$LkI$ Iڢm[$% | m6IϤb9ɟ$ _V 5{ Ho-7#' ~U4"H$UU'"H&I$" P sx`-O\4{-=.">OUXxp`$"I$@5q$"I$I$5q$"I$ 5q$"H$ $5q$"I$@$5q$$H61􌒄`"HM'Lc^M'I䑌Lk^U ɝv ФLc-+ I`; ;2i<IsT@׭U39Ҕ56#$WU1"[$uUU%"h$I&$"I$I$5q$"I $5q%#1mk```11Фlk ) -=IDh5"ic?U6#O$WU*"cU_UU$"I$I$$." 0|@@MINLk%%%8xo$"H$I$"$I$5q$"HI$5q$"A$I$5q$"I$I 5q$ -#1s````IILk 8%ES4Fs0rrrs$"I$A$5q$"A $5q$"I$A$5q$"A H 5q$"I$I 5q$"H$ 5q$"()0|@@@@ ϤLk%7  𤑔P^Rr0"'|Mc\\\\$"A$I$cb$"I$I$cb$"I I$cb$"I$I$cb$"A  cb$"$I cb$"H H$cbp'h&sB;4- 8#&$0|VW2"$ӌ|UU1"D䲌|UU2"?|UU/"P<|UU-"ж<|UU-"fϓr|UU,"ϓr|WUU)$C.Q|sjjj H܎Z558qkbb``#"I cb#" @$cb$"I$Icb$"A$ $cb$"I$I$cb#"$IkR$" $I$cb$"H$Icb$" $A$cb$"McR`I1HJ%%%%:II3"9"r"?|\\\\%")I$0|tUU$"@ I$0|s%" &Iڤ0|tY%"hi$0|tiV$"@$A0|s%"E$I$0|t"VeV$)1|k@jjj HϤZ%%%59 Ipp\R2"z>r|Mc\\\\$"IIcb#"H A$cb$"I$Icb$" $I$cb$"IIcb$"I$I$cb$")McZ@@HϤ(J%%%%I$I$rpc:|̑kp```$"H$I$cb$" $Icb$"I$I cb$"I$H$cb$"A$I$cb$"II cb$" $I$cb$#1#1Mc(B````ϤhJ 9aapBCBA%"I$i0|s$"A$I$|t$"I$H$|t$"AA$|t$"I$I$|t$"A |t$"I H$|t$"I$I$|t$۬>-|sjh`jȍoR777'%IdI1``<#>>,cxxxx$"H$I$cb$"H$I$cb$"H$ $cb$"I$ $cb$"I $cb$"@$@ cb$"I$ $cb$"A I$cb%"(,McR@@@@ MHJ;4Paaca%"M4i$|t$"I$H$|t#" IQ|s$" $@$|t$"I H |t$"I$I$|t$"I$H |t$"I$I |t#00tZ```` !R ;k````$"I$A$cb$"II$cb$"I I$cb$"II$cb$" Icb$"I$I$cb$" I$cb$99,c(BppppNrKs ) )I$I$ԽqII$ԽqTDI$IԽqUAEɓ vx4Pbcc$"I$H$|t$"I $|t$"H I |t"؃95|RXXxxMِN{ ))h6h&h`z<#S##4|pppp$"A$$|t$"I$I$|t$"I$H$|t$"H$I$|t"05tR``pp)qZ) )&IDIsϜܾ<#>>׭xxxx$"A 5q$"I$H$5q$" $I$5q$"I$I5q$"I$ $5q$"-){````I)lk%%5zaaaa$"I$I$$" $I$5q$"I$I 5q% -"1s````1 ,c---Sbb\Ж'-ZUW!PrRUW% Mw cR V# cR".5 c(J`x͝xyN(J5% ;)A6Ҕ{bp+"?MXii?I$ $Խ0 ԽP'IϤ _;I9E-9yG~8#$WU/"X?UUU$"A H $"I$H$5q$"I$ $5q$(i􌒄`?r>ps',T@4 %"I$M$$"II$5q$"I I$5q$ l9:􌒄`!Hк:ӌmk^8:NIJlk^U#OLkU+6I'ݽ 51+Ъіz rϤs +9fiiќ&"pI$"A $5q$"  $5q$"I$ $5q$"II$5q$" $H5q%#,|`@ yNLk %'2t@AN%"E$I4$"A$I5q$"H$I$5q$"A$H$5q$"(Q|@@@@ NLk%%4 @@o$"$$$"@$I$5q$"A $5q$"H I 5q$"A$I$5q% "11s````IILk- -7#0춭sscc$"@$$5q$"I $5q$"A$5q$" $I 5q$"I$I 5q$"H$A 5q"  0|@@@@  ФLk%;IIX|\2"jp|Mc\\\\$"I$I$cb$"HI$cb$"I I$cb$"IA$cb$"I$I$cb$"I$ $cb$" $cbhh,c(J=C9C4 +"z"'Q|TTTT$"H $|t$"HA |t#"I$I$Q|s$"I$A$|t$"I$$|t$" A|t$"I$H$|t$ò-2,|k@@@@ȻNZ%%%%5 v``qs```@$" $I$cb$"I$I$cb#"IA$kR$"I I$cb$"I$I$cb$"@I$cb$"H$I$cb$"I$I$cb$"I$$cb$.).McZ@@@@ζxJtϤHJ%%%%<ɑɑT;;4"hh&|\\\\$"I$ $|t$"A $|t$"I$I |t$"HI$|t$"I$I$|t$"H I |t$")|sHjjJ KȋZ5555;𤑔s||3"p&p&0Mc\\\\$"I$I$cb#" $I$kR$"I$Icb$" A$cb$"II$cb$"I$I$cb#")"Mc [@ ʋȋIJ5555  Rp<|̑k````$"I$I cb$"II$cb$"II$cb$"II$cb$"A$cb$"HA$cb$" $ $cb#15Mc(B```pϤR 8 `/b&" n$0|sW$$|s(U$A$|s*U$۰m$|s* U$$@|s**U$IЖ$|sU$æ Ö$|sU$$H?|sU$*6|k ،Z5%%%-IDI1P\b9#>&mcXXX\$"A$I$cb$"I A$cb$"I$Icb$"I$ $cb$"I$A$cb$"I$I$cb$$@B%Mc [ $"I$I$cb#((McR@@@`ITLNB ;hך{{# H$|kW$H$|k$'|sU%$E"|s*U$M|sU$Eu]&|s$ m۴$1|s$!Hi&0|s%1#5tR```pZ ;k````$"A$A$cb$"I I$cb$"H$ cb$"IH$cb$"I$I$cb$"II$cb$"I$ $cb!99Mc(Bxxxx q{)) I$I$Խq@UH$I ԽqP4I$I$ԽqQ"IdI$`>$ЪS:׭pzz+"]~$U\WUU%"@ҤI$$" $I$5q$"H$I$5q$"H$I$5q$"I$I5q$"I$H$5q$"II$5q$"HI$5q$ 0s````ɐ ϤLk ɓ$Rbp Hnm]wФlkU+ I$I2탵*2I$)n}_5I IץU 5 9Im2#d'U-u~UU#:d6ӌHʯOLc66751)B֭ 1 ?3^WW';ƍtUUU#Ҝ 3%"h$I$ԝ񃪪%"&IҤt#11Kk````!s!);vhiPbbbc$"I I$|t#"H$IQ|s$"A$H|t"@0tZp```JJ0Z h6h6jhj:$P99U|xxxx$"A I|t$"I$I$|t$"A$I$|t$"A$I$|t#P99sRpppp!!`0Kk 9IDɕϤ9">&XXX\$"H$ 5q$"I @5q$" $I 5q$"H$ $5q$"I I$5q"((|`@``  lk%%6$"I$ UQ$"I I$5q$"I$A$5q# ,0s````oLk ;$*P=ҔkxX(`mmc*U'O2NkU($.ZxI ZU^&uN)JWU/ɛ_SoZ='Z~W$&IMc [+$" A$cb$"$ $cb#"$ cb$!h$h cb#hЬ9Mc(Bx`$ɟ(B_5 9I9Z*;+mcx^."${Mc\WUU$"I$Hcb$"I A$cb"McR`~R?R %,!ɐUM -=.#M'>UW^|x$"A$I$5q$"I$I5q$"A$$5q"P ӌmkx`nwPs )-I$I$Խ/=_lX@ 4H(-x8#~$WU*"`?ϟ$4_UU$"$ 5q$"I H 5q$"@$ 5q$"IA$5q$"I$I$5q$"II5q" j=PӌsXxp`- \T -%5.!/:UV^\x#k5ӌ_!@8:ӌMkz (:N$LkxWMlkUխ*6 { 7 @ 7"K$~_U%ۨ`Lj&lk72! u- '+"}'UWV^\$"A$A5q$"H$I$5q$"A$A5q$"H$H$5q$"A$H$5q$"0=􌒄@̯HOLc7663B)M ("N8r$$"I$I$5q$"I$I 5q$"I $5q$)Q@@@@nLk%%%%5AAo%"I4MS4$"H$I$5q$"A$I$5q$"I$I$5q$"I$I$5q"00mk```` 1lk- 9zacca$"II5q$"I I$5q$"I$I$5q$"H$I$5q$"II 5q$"I$ $5q# 0|@@@@ ФLk%9IIX_\R2"p'p0|Mc\\\\$"$ cb$"A$I$cb$"H$I$cb$"I$Icb$"I$I$cb$"I$H$cb$"I $cb`&`&,c(J:9C9C5샍*"ʍJ$Q|TTTT$"I$I |t$"A$I$|t$" $I$|t$"A$ $|t$"I I|t$"I$I$|t$"I$$|t$ 2,|k@@``MZ%%%7ABsbb`b%"M4M$mcMcvtT$"II$cb#"AIcb$"I$I$cb$"II$cb$"I$I$cb$" I$cb$"H$I$cb$"H$I$cb$")"(Mc [@@@@ JФHJ%%%5<4656"p.'p?Ӕ|\\\\$" $I |t$"IH|t#"A @$|t$"$I$|t$"I$I$|t$"I$I$|t$Ҳ|sjjJhʭʍܯR7777;ɑɑo4"p'&QMc\\\\$"I$I$cb$"I$Icb$"I$A$cb$"I$Acb$"I$I$cb$"I H$cb$"îMc [ ȍȍϤIJ5555I$IRCs=#FO5R9mc`ppx$"A I$cb$"II$cb$"I A$cb$"I$I$cb$"H$A$cb$"I$H$cb#"I$IkR"P5P5Lc(BppppY1b ,xI$М [x$oМRU$]ۏRU $mZUU $oۏRU$oێRU$]RU$oZUU $МRU$mۯRUI - Z%% 2IIQ_X~z9"&mc\\\\$"IHcb$"II$cb$"I I$cb$"HI cb$" $I$cb!r|Mc,[ ضkMcR$"H$cb"((McR````ɚnɐ B !I$Mczx $]0ZUU $ФZUU $oϜRUoۏRUINRU`INZUжIo [UU(жIZUU$R_U*m1 c:k````$"I$H cb$"I$$cb$"II$cb$"I$H$cb$"AI$cb$"I$ cb$"I H cb#99,c(Bpppp  ks )) II$ԽqT1TT I$ԽqADQ $I$ԽqAQ@4@ $prr7 hhsaa$"HI$$" $ 5q$"$I$5q$"I$ 5q$"I$I5q$" $I$5q$"II 5q$" $I$5q$"I$I$5q$").|`@ɐ ɖllk%%%6I1 ֭Ϥ 2 ;3 $U2X$UU%y4ӌ$"H$I$$"I$H$5q#"H$ 5q#!)􌳄@@@@ȍȏLc777!B!B- '"kHT$"H$I$t$"H$ $t$" I t$"I$It"0lk```!s)7A!BpCK%"M$M$0|tjVTT$" I$|t$"A$I$|t% | [``) Z   rr=#99U|xxxx$"@$I$|t$"@ I |t$" $I$|t$"I$@$|t"؃%X&tRXXXXP <IֵϤ7>>>5"`>r"疥X\\\$"I$ $5q$"A$I$5q$"I$I 5q#" I5q$"I$ $5q" 0|`@ Iۼʋlk55/di'T/z^# 0I{/$0ms􌳄 $"I$ $5q!,0Lc````$IDIOlk--) :#>>mcXXXX$"I$I$cb&";I$kMc}UU( Nh7kMc+U) ->sR_!OIJ*$س%kk))pwIڏZW.ZUUx" PnsRUx" %McR$$HMcZU!&,c(B`^hɟ.HJW% =IxPAk" <#'Ӕkx^W)"?8sMc\WUU$"I I$cb$"I$ $cb$"I$I$cb$"I$I$cb 9=Mc(JxxX_*k+!));">>^xxx$"I$ $5q$"I$I$5q$"I$A$5q& ::sxK0Lc'i $Ϥ* ~qh`zx48Ҕ$"A$I$5q$"I@$5q$"I I$5q$"I$I5q$"A$I$5q$"I$@$5q$"I$I$5q$"I$I$5q$*0|``a䰜s-.6e}?4s^u$Lc_rmNLkW- <DAuj{ 9 @@-8#O$~WU&"pĉ$$"I$I$5q$! h5q#/:5ӌmk\Xxp/ ɕdt̃//=1"u\Xxx$"@$I$5q$"A I$5q$"@$H$5q$" $I$5q$" $I$5q# 6ӌjHH䱔Lk419CN  ) ؆`'UsV$I| %"I4I&$" $I$5q$"()q@@@@JddLk%%%6AAM&"L8`$"I$H$5q$"I$A 5q$"II$5q$"I I$5q"00mk```` 1ϤLk ;z׭aaaa$" I 5q$"I$5q$"I$I5q$"I$ $5q$"I$A 5q#"  5q#0|@@@@ɐI Lk%%9IXɗ1p`3 M'sIJ^"$$McHJU#H-$LcIJU"$$McIJU# I$$LcIJU"$$LcIJU"$$LcIJU# H$$McIJU`&|$,c(J֕7995샍)"H$Q|TTTT$"H$I$|t$"I$I$|t$"I$I$|t$"HI$|t$"I A$|t$"II$|t$"I$A|t"  tk@@@Z%%6B!B|jhhx&iw/I$ 3/I$  w/I$ >qmc\\\\$"HI$cb$"I$Icb$"II cb `ItMc,[$"I Icb$"I $cb$"I$Icb$"I$I cb# ,,McR````I IϤ(J IIclBI$# mTzx/IU0I򤐌30I񤑌i0InM.IMai.IMpu/Ib ,c x. r0" I$@$Z;k````$"I $cb$"A I$cb$"H$I$cb$"I$Icb#"A$Icb$"H$A$cb! 9Mc [#9P5Mc(JppppnQ c I$A$ԽqQTI I$Խq-UA$I$ԽqQ@  r6B)C%,ɶJ'ӌT\$.$$ I#"HI5q$"I$I5q$"II$5q$"I$I 5q$"@$@$5q$"@$A 5q$ q@@ʍܯMc%'7739%%=/"/?>u\^\\$"$I$5q$"I$A5q#"A$5q$"I$I$5q$"I$ $5q$" $I$5q#,"󌒄ȍȭܯLc77!B)BM )"x?T3TTTT$"$I$t$"IIt$"I$I$t$"II$t# |`@ lk-%:)C1CoΆ("J$J$Q|WWTT$" I|t$"I$I$|t$"*|k`@ ،Z%%5m6mQzrrJ>"99Utxxxx$"I $|t$"AI$|t$"I$I$|t#"$I$Q|s`&h&sZXܜr:  ׭7'''0#p'x?u\\\\$"I$I$5q$"A$I5q$"I$H 5q$"H$I$5q$"A$I5q#"ɂ 􌒄@@˽ʍܯLc7777I$_ oqWꈠ `NqP\x#0 唛P/#5P5ӌ,c``pp,IDols)!))9">>mcXX\\$شM82Mc [#@Ҹ:Mc(Bz }$,c(JxW5 `}ۏHJUխ;I$eoHJ-?Is^4 vmd0mcU.Inc&I? .s"U"<~ R^ D?NiJU~K$ Bտ<I'PiҜ탽+z<# t'mcx^W&"p$$kMc^WUU$$ T)Mc [B$Mc [$ a6$Mc [$!Ai$Mc [$!M I$Mc [!`&r',c(JXܜ=Iɑ˃??/3'xX\\  0:󌳄z@>ӌMcz}$ӌ,cW`mw-,c^խ2IWќKk--IR Rz~ _ۻ Z /A)C$p$M$ӌ"D$I$5Q!-ڦm$ӌ^ m$I$ӌ! I$5Q Iӄ BIӌ"$:0|z$ӌ,czWHФLk55% $I$1]>I 9yUN5:":$zWU("h]MXVUU$"II$5q$"I A$5q$"@H 5q$"AI5q" sp`ۏLk 3;upb$"$A$"A$I5q$"II$5q$"I$I5q$"H$H 5q$!hI$ӌH$HĐLc-9$S j*HlkW8 j&/%"@$A$$"I$A$5q$.,"q@@@@ȋȋMmk%%%%6AA׭o&"L$H$TTTT#"@I5q$" I$5q$"H$A$5q !-ӄ)"ӌk````  ϤLk8 f׭y$$ |U$ ۔0|U$IӔQ|U$$IqU$ @r$6 А􌒄$.)0|@@@@ɐɐ qLk%%I$ $rx XRmݶZWIBPZU *I$ZUIZU IZUIZUIФZUIϤZUq ФZ79C1CM("H$J$Q|TTTW$"I I$|t$" I$|t#"HI|t$"IA$|t$" $I$|t$"A$A$|t$"I I$|t$").(tk@@@@  Z%%%+)ɟ$,czX$iJWU $oۏiJUU $]niJUU $oۯiJUU $۶iJUU$$YiRUU$eYniRUUlYiRUU$m۶BUX$uBU iR :IIu1"hp?t\\\\$"II |t$" $I$|t$"$I|t$"@ $|t$"I$I |t$"I$ $|t$ۢ̓-|sjbhȍȍďR77779ɕj`2` >|Z^$$?McZW"'McRU"?McRU!"Mc J" @$McIJU$ Id$Mc(JU!l$,c(BzU (J55% H$H$pr0@#4CCq,[pppp!p@Mc [$"A$A$cb$" $A$cb$"I$cb$p҂$McR\(Ib$ mcRU! IqMcRU 10,cBz```!R ; `i4pcb/"ж'|UU."P$|UU."P<|UU/#жɓ$|UU0#dO'|UU0#dɓ'|UU."P'|UU."ж'|UU/!?tUU#?L䰜Z>9ɑɑ񤏔5#h&h&QMc\\\\$"$I cb$"I$I$cb$" cb$"I$I$cb$"I$ $cb$"I$ cb$"I Icb$"I$I$cb" ,McHJ````)(J !IIrМ^?$->&4|xXX+"I$q|UUU+"?Q|UUU*"PQ|WUU("&I$Q|UUU*"Q|UUU("I$Q|UUU&>b"&tZpXXX!!- -I$H$Ϥjb;k````%"I&H&cb$"I cb$"I$I$cb$" Icb$" $I$cb$" $I$cb!9Mc [#P5P0,c(B````)QZ I$I$ԽqQP@I$I$ԽqPI$ $ԽqE%UH$I$Խ/H69ɐ/&.#L'x'UVT\\$M" ꪪ!􌳄 $" $H$5q$"H$H$5q#"A$@ 5q$"H I$5q$"I$I$5q$"I$I 5q$]벶ꪪ{.h摌lk4\ɗ574#r&>\Xxx$"I$A$5q$"I$H5q$"A$I$5q$"I$ $5q$"I$I$5q$"H $5q$ ɂ ,q@ ȋ˼Lc777%2)1M  *"&r't3VVVT#"I$I$t$"I$A$t$"I$H$t$"I$ t$(.@@ I˴lk%<9@H5n+"K.Dzq|VTTT$"A $|t$"I$ $|t$2|sjJ̿JФR777IIRФc`^VA#>#>Utxxxx$" I$|t$"A$A$|t$"HI |t$"A A|tprRϤ?8ɐ ."r?U\\\\$"I$I$5q$"A$I$5q$n-$$@>0|~"X?k_"$$Lk~UHɝLk5-Խ07IA$rrn1I$g_`~[k搘I&/Tj(@=nMcz^Z2ɑ{7X>riJx^!и:N$kHJ^U% H].(JU ߿1ZoZ-=4i{0z=#$mc^U*!߿sMcxWUU$" $I$cb$"I$ $cb'"퐴i4kMc U)"^BsMc*U*h IOmc U(IB?ФkU& |5Lkxp! ..,cUUWx$AMc [ iMc,[jꪫIvlLc [@ lcR0 h:lcR$h86 [HJ^Hɝn(B55%6ɐ c׭n%'bM?Uk^8}䒄,cxW~-,cW*0Iܯ @PJk * /91PMc^/$QMcWU#6:#P#'׭pXX^$"I$A$"H$I5q$"r@@@@ȋlk%55AA' Z-Mӌ$!I $5q$!E 45q$"I$@$5q ,2,ӄB)B(ӌk```` 1lk /I t {z - I$IH4sU&@{UWmIsUW >mNkUU $oLcU" NmkUj;kjUUɐ)0rlk% " $I$ΤrB&S|zz. O"I IokU0 I"I IkU0 I"I IkU0 I"I IkU. I"I IkU0 I"I IokU0 I"I IkU,)МZW6)B)B '"H$K$0||TTTT$" $ $|t$"I$I$|t$"I A |t$"II$|t$"IH|t$" $I$|t#" $HQ|s$.(")|k@``` Z%%%%<II2Op;IҶ$m{V1IB IsU0IB Is U1IB InsU1IB Is(U1IB IsU1IB Is(U0IB IМsU1IB IsU0IB$is UiJ %:  S0#p'x?|\\\T$"I$ $|t$"I$@$|t$"H$A$|t$"I$$|t$"I I|t$"II|t#$M2$2|sjjjHHďR7777 RmskNR^x $ IJU l (JU  .(JU I.AU IN(JU* INiRUIn nb ڒϤ5rxx9 os𑔎kxppp$"A$I cb A $kJ$"I$ $cb$"I$I$cb$"A$I$cb$"I$I$cb$"I$@$cb#11Mc(B````iR 9aa4pbcab$"H$@$|t$" $A|t$" $I$|t$"I$ |t$"A$A$|t$"H I$|t$"I I$|t$"H$H$|t$!H&I|sHHR:ɑɑќo4"h&h'QMc\\\\$"I$H$cb$"I$I$cb#"IH$kR$" $ $cb$"I Icb$"H$cb$"II$cb$"I$H$cb#11,c(B````ِR (IIr9">>|XXXX$"IA |t$"I$I |t$"A$I$|t$" $@$|t$"A$ |t$"A$I$|t!؃=9tZXXXX!!Q{ mR$E6Խpl9 6ќ [xX"l$McHJU# A$$McHJU$ Im$McHJU# Im$-cHJU# I,$-cHJU# Hm$McHJU% Im$,c(JU 1$,c(B``zUJٖ riR ) I$I$ԽqDPI$I$ԽqEI$IԽqUU1I$I ԽqĄ8Id::4"p&`\\Xx$" $$5q$"I$$5q$"A$A 5q$"II 5q$" I$5q$"H$H$5q$"$A$5q$" H5q$!AҤI$5q `&؃9ӌmk\XXX_ 6$=S5XXpp$"A$ 5q$"I$I$5q$"H$A5q$"I$@ UQ$"I$A$5q$"I$I$5q# ,|@`` Lk%% 4 Ф%''/#{'3VVTT#"I$Atq$"A$t$"I H$t$"@$I$t$"ӊ@@KH䏔lk668ɐ M&+:*/"p't\\\\$"IH$|t$"I$I|t$"I$H$|tr.h&/R qxyRri@##>>Utxxxx$"I I$|t$"A$I|t$" $I$|t$ڶ"|sHJ䰜R =K)b׭Ф*";?5Q^"@X?mk_! $ӌLc~UIqLk~U$ooLc~U/IǛ LkU] sժ**rn*?I$I$Խ0?Ϝpؘ9x׭p$hpXh0/++-5)Ixɛ1sh x{iRW 6I0p k-89GA&qk~%>.R ',).szx|x("uƫ:kMcWWV\%"Hi$cb$"I$A$cb$"A I$cb$"H$I$cb$" $cb$"I Hcb&"6;q$kMc+UU%"ImkMc*U#M9 mcU喷N:.ZWx I.ZUWp0%,[Z @> [B^8:Ns(B_U-Lm-(BU Z *>0Yc{{,~.,cV *.IXh/Kk (/!hɶQMczW,$|,c^UUhm4mc [wMc [Mc,[ꪪ ,[iJXx`.|O2R*+)0bX5x͢',cxWMɑ_Lk%-*94U{ppp@5ӌmkx*:M䒄,cxW LMLkU 2I@+3 0p 4M?O$~WU! P,ӌsp`%~?ќs+-&l@5蠂I$I$5Q 4R@$4R@  4R@ 4R$"I$$5q$ hЪ5sxpMpLc58ɟIխ%7$d iuUW%H{UmksU_බ'OsU жs UUԶclkUH}Lkו5  0w;ɐ ɔ׵.'3 k$sW# $sU% A$$sU"`?sU ȋϛФlk5555.$SOj~жOpmkU Вɟ$lkU @R'ӌsUU!0Inmk*UI-$ӌkULdc'Lk``zW ywФlk-- ? Th(bz0"Ķϓ$uWU,#@Jɟ$UU,#4I<5,# fUU,HM5z,~H I4-)I@4M0s ' IdInj=$P99ӔMcpxxx$" $cb$"$A$cb%" $I$mcMcUU$"$I$cb%"-$I$mcMcuUU&"$q$mcMcU]W&"AI'mcMcU]!&h&LcIJ2)B)B{'"J$H$0||TTTT$" $I|t$"H I$|t$"I$  |t$"I$ $|t$"@$I |t$"H I |t$"I$I$|t$"()tmk@@@@  ФZ%%%? !aҜsbb-"sMcVWU&"8؎kMcUUU%"$IkMcUUU&"'q;kMcUUU%"$M&kMcUUU%"@$i6kMcUUU'"($I$kMcUUU&"$$N$kMcUUU%"$m$kMcUUU$,"!mcZjjj ،HJ%%%%8ɐ ɐ ."?ht\\\\$"I$H$|t$"$I|t$"I$I |t$"I I$|t$"I$I$|t#" $|t$m66|sjhJhHHİZEI\ɑX/>$?'nk\V0#m+ e${-cU0#-+ u${-cU0#-) f-cU0#m '-cU/#$ m$-cU.#m$-cU.`60-cU /L1iJ755@rΤOs: xk````$ a6$Mc [$X׮Y$Mc,[$ӶiMc,[$E۶4Mc,[# mQ-4Mc [$!MI$Mc [$ m$Mc ["00Mc(B````ϤiJ 8AAqBBBB$"H$H$0|s$"I I$|t$"H$H$|t$"A$I$|t#"I$IQ|s$"I I$|t$"I$I$|t$"I |t$!I$ &0|sxp/R9ɑɑФp4#&h&QMc\\\\$"I$I$cb$"I$I cb$"@ $cb$"I$I$cb#"I$ kR$" $I$cb$"H$Icb$"I$H$cb#P5P5Mc(Jpppp1Z ,IIR9!|XXX\$"I$ |t$"I$I$|t$"IA$|t$"I$I|t$"I$A$|t$" $H|t#99sRpppp0s H$I$Խs? c^IҶm;lZUIB4 ФZUIm+@0bUIҶm+HФbU IR bU IҶvM bU Ib۶-nbU Ir +kU in { +I$I$ԽpQI$I$ԽqDTEI$I$ԽqAI$I$ԽqAQTII$xr8"95xxxx#"  $5q$"I$I 5q$"I$I$5q$"I H$5q$"I$ 5q$"A @5q$"I$I 5q$"I $5q$" $I5q"P5ӌLkpp`` Vi﬌s4Xhb$"HI$$" I$5q$"I$I$5q$"A$A$5q$"I 5q$"H$H$5q" 0s````i lk--4ɐ ɐ ֭-'-'0"3\\\\$"AI$t$" $H$t#"$It$"I$At$!@&iR3jjjjHHМlk;ɑ3n76"r2r'Ӕ|\\\\$"I$ |t$"H$I$|t$"I$I$|t!`&X=sRXX ϑnq="99Utxxxx$"I$ |t$"A $|t$"A$I$|t$6C.|sjjȍȍܯR7777I$I 0WK;2!α$s.jz`$Onlk^U I߶LkU*%I]S{*6Iw)Mխ4I~@MU4;$m7#:#䒵mk./>9ID><.<$#>r2'׭xx\^#X3mӄ@h沌lk>\?I Nȳ:>15IШk ^7#::$qmc~WU("&IǮkMcXUUU#  McRZx&Ov^?Z 5*hA{mc^^z$"I$I$mcMcWW\$"A$ $cb$"II$cb$" $H$cb$"A$I cb$"I$I$cb$"I Icb$"I$Icb$!i$mP cb%X#5kR*z `؏R %ϤRWxON(JU-/I @pJs0 15@8pMc_$/sB'iJ>3I1K-x/O?QMc|V)X]|,[_UU8I8Lc [$HlcRI Mc,[@kJI$I$kJ@,cZ@3; R5W#9wlk`z^ Io$ Lkխ q;rn*8S:4Lc`x`$ILc^U (Ks*6Iu׭ 3($^U%'I$ӌI$I$4R 42ѲsXp& \'5&~B?5WV^X4R4RI$I$4R@@$󌴌#h+6ӌLcx'IPLkXV%5I1et{*I4-*xx04IޖnvO-$зI$U_-"X U*U-@DUҔ- ~"m0I4 ,I2ր$5NU%omk" ( I$0p5I$IB@M|^+~$ISKsW+I$IS*kU+O3+kU+I@3+kUМKk% >Iۙt@МU,IRUM}-I$UM]+I$c U-_'I$O_變Om{U" I\m @ФlsU _-9(0;$9؃=׭pxxx$" I 5q$" $I$5q$"I$5q$"I$I5q$"I$I$5q$"I$ $&*)")Q|@@@HtIxLk%%%IdIrnx`:#P==ӔMcxxxx$"I $cb$"I$I$cb$"II$cb$"I$I$cb$" $H$cb$"@$Icb$"H$I$cb`h,c(J0!BAӔ{%"H&M&0|tdXZ$"$H$|t$"I |t$"A$ $|t$"I I$|t$"H $|t$"$H$|t$"II$|t"(|mc````Z%%%%;xs``bb$"I$I$cb$"H$I$cb$" $I cb$"A$Acb$" $Icb$"I$Icb$"I$Icb$" I$cb$"I$ $cb$.",McR@@ HJ%%%%84-"?|TTTT$" $I$|t$"I$I$|t$"I$I |t$"$I$|t$"AH$|t$"I I |t$h۶2,|sBbHHܰJ7777<Ѥow4"p'' c\\\\$" $I$,c c$"I$@$,c c$"I$I$,c c$"I$,c c$"II$,c c$"I$A$,c c$.(" cZ@ ȋʩ(J%5%%I a0vͯ?Jxx`IoiJUUIBUIn(BU`IN(BUЖI.IJUI?{iJUUжI{RUU:I.iJ_UU*n)VhR 8ABBBJI$"H H$0|tVfVT$"@$I$|t$"I$ |t$"I$I |t$" $H|t$" $A$|t$"H$I$|t$"A H|t$"I$I$|tr&h&sR8ɑɑќo20R\$HMc [$"H$ cb$"H$ cb$"I cb$"I$$cb$"I$I$cb$" $Hcb$"IHcb$14LcB```pa0R  ,IIs5 ڠ>t\\\\ $$|k$ $|s*"U 0l$|k!skU":tk!$tk_U!P5:sRppxz+k)) )A$I Խ/ϳ/I)CQ~|^+IҒ4kW$ I> @МkU*/V۰ncU* 'PMcU+- $$0,[U1}?0 [ 1#m?QmcU1O6|Rz۹HJ I$I$Խ/=I$I$ԽqQQAI$IԽq1AUH I$Խqa@TQM&E&hhx9 X$"I$I$5q$"I$I$5q$"I$A 5q$"I$A$5q$"@$A$5q$"I$A$5q$"I$H$5q$"$I5q$"H$I$5q" s``1 Lk 4A!B '"M$K$$" $I$5q$"IA5q$"A$I5q#"H A5q#"@$5q%/1R#5ӌLk``ppik- 5  ..'&0#p>p'3\\\\$"I $t$"@$A$t#"tq$" I$t$"H$I$3j{.j&lk:IIdm=5"h&&|\\XX$"I$I$|t$"II$|t$"A I|t"9P5|RXxxxМ{!="99Utxxxx$"II$|t$"I$I$|t$"@A$|t$2,)|sjbjjȍȍܯR7777 >IֵZ6IRiU5y6Ҕ6#$U3#O$UU+"?$4_U$"@ $# (Q@@@@MILk%%5%  0}8ɐ1 2"x>{u\\^V$" $A$5qh&h&Lk\X9ɐ -0"?z|Mc\\VV$" H$cb$"I$I$cb$]:tMc,[% ZѭsR^~)!/ [)"}>?`sMcW^xx$"I$Hcb$"A$A$cb$"I$I$cb$"I$I$cb$"$I$cb$!@6)$Mc c" 5McRx"$,cBzX$IHJ_U *ɟ}NHJ5 2IwH0Ȫ_0`qmcxW-0,[~UU`]vMc [`&5 [(JX+ Os%z$h&{,[VV\\I AlcRAlcR lcRI$Mc [-Mc [kJ kJ ,[iJx`ov{t1iR# %IiԽ0)͍  Խccp%'IR \*2Is`Nr2?S{*2(m M$M$5Q ӌ@4R4R @ӌs`vP紣:Nk ''&hA5p !I$N'ӌ@4R1ӌ`C'LcxVh}oLkVե 9IT)@@= 9$'׭x^W'5q\^z$ u:-_%   %"II$$"I$5q$"A A$%!3LL'*pJ䰔Lc  RϤmA$Z[9zx0"ж$uUU0#жɓ$uUU/#ЖI$uUU+$[?6kzzɟlk%?h*crx)"$*"I<4ӌ,"`8U UU+"JUU-#4 vU- R94Lc`x_{")))=##:>׭xxxx$"H$I$5q#" I$5q$" $I$5q$"A$I$5q$"A$ $5q$"AI$5q$)0|@@@@ɐ ɐ Lk%%% IIQob="9>-cxxxx#"IA$cb$"A$$cb$"I$ cb$"IH$cb$"I$I$cb$"I cb#"IA cb` p,+c(B1!BAӔ̓$"H $0|s$"I$I$|t$"A I$|t$"II$|t$"I$I$|t$"AA$|t$"H$H$|t$"I$I|t$,"-|Mc````T .R :xZkb``p$" $A$cb$"A I$cb$"I I$cb$"A I$cb$"I$I$cb$"A$I$cb$"I$I$cb$"I$ cb$"I$cb& ..-McR```` B ?K9k5m+ rsV$!i($0|s$!I$i$0|s$"I $|t$"H$I$|t$"I$H$|t$"I A |t$ -|sbhhjȍȍ܏R7777:I pP|/؄'{Z\V(m$-cZU#$Am$-cZU# Hc' cR!< cR!n-cZ $ d; cZ$ 6 cRjHM (J%%%%/== I$&o{ I$ r_ I$-1n(uI$O nI?N"]!I-ФOU'I?-/W2I$v+/_]1I$m `k" zZ 7!ABJKIO'"m$K$0||TTTT$"H$H|t$" $A$|t$"I$A$|t$"A I$|t$"I$A|t#" A$|t$" I$|t$"I$A$|t"j&j&sZ4ɑɑќ.4zޠ+Q [\\\^#@'McZU" P'McRW"#'MciJU!$$McHJU# $?,c(BU! Id$,c(JU m$MciJUU!@$,cHJU@9 c(BpzU I iR ,IIs7> s\XXX!_skUj#O$IskU! tk_!$n tkUU!y' tkUU!$tkUU:=s(JzzMQ c  H$I$Խ/lpL500z~|x)$kZV|&' ` [R*ERR [Z Hm$ [R &Iw [R$`dMcZ /$"I$ $cb$",McR`@ ɐ(J %%A$ $Խ/=A$I$ԽqEI$I$ԽqS@I$A$ԽqHTTH$I$Խ0\S:iC'"iM$UVVT$"HI$5q$"IH5q$"H$A$5q$"A I5q$"IH$5q$"II5q#$I9􌒄x#?qU"6|@ HϤlk%5551K //-"?UV^\\$"H 5q$"I$$5q$"A I$5q$"I$5q$!IӠ@$5q P9%ӌLkpxXX11`r{)+4 I.7&60#h&h>3\\\\#$I$3󌪪$ӆm'3򌪪U$ضM'ҌU$ @'#V?P|_`&j$ҌlkXX\W&IDInO9!>|XXXx$"I$I$|t$"I$$|t$"I$H|t"P5P5sRppppϤls!<"9#4|xxxX$"A$I$|t$"H$ |t$"I$H|t$Ӳ)|sjjjȍȍܯR7777 9!BBϜ +"'|.?5^^^%"HM$$"H$I$5q$"I$H$5q$"I$I 5q$"I$@$5q"((Q|@@@@IILk%%%%A$I$rΤhx9AT`׭򤉉)"'$"I$I5q `&`&ӌLkXXXX4I\NZ.#{'h|McV^^X$"A$I cb#"@ @$kR$"I $cb#@McZ`6b R 5*d! k^z("&ckMcW_^x$"$I$cb$"I @$cb$ $6Mc [h!8:Mc(J~ }$LcHJzW$I (B_-6I.hR 6IS@/x8b]mk~W+K|,c^UUH$I$Mc [HA lcRAlcRP4 [(Bpp``".hR +>9|,c\XXx@$lcR@ IlcRAlcRlcRH$lcRkJkJ (McR` (J%55% " ̓<I$Iս[57@@׭Ҕ x4XO?O$x^WU{"'9kXp*! U '(UӌW^^x@ 4R4R4R $󌴌ꪪ#>ӌkXx`&) dj{ +9&|"?95W^\x@5ӌkx*:M$LkXWILkյ <ɗ$h׭--:#-t$^W%"H$I&#!I I$4r# ӌ0|^x'{u ?'$HAo $"@I$$"I$$5q$ c:c8HH䰜Lc2@8A$>#>xxxx$"I$I$5q$"I$A$5q$"I$A$5q!4&Lc`pXX?II{=@">>xxX\$"I$H$5q$"I$A5q$" $I5q$"II$5q$"II$5q"99Lcxxxx+IDIS{)=99;">׭xxXX$"II 5q$"H$ $5q$"I$ $5q$"I$I5q$"H$ $5q$"I$H$5q$-(0|@@@@I ɐ Lk%%%%0IDIR_PP\;">>mcXXX\$"II cb$"A$I$cb$"I$I$cb$" $Icb$"II cb$"I$H$cb$"I$ $cbp p njs(J6 AAӔ탁$"H |t$"I I$|t$"I$I$|t$"I$I |t$" $A$|t#"A@|t$"I$ $|t$"IA$|t# ,,|,c````yWyNZ 9$FS4D?4mk`ppp$"I I$cb$" $I$cb$" $Hcb$"I$A$cb$"I cb$"II$cb$"I$Icb$" $Icb$" $$cb#,McIJ````InϤ(B ,9IФ|xضڵ' -cW`,cUW${Z UжI$sZU@$sZUI$sZU Im$tZU$l$sZU ɝR755-3 91~{|~*| sZ\!I2-cZUV!Ӷ cZU$I#A-cZU#O cZU}"Ӷl cZU!IҶ$ cZU!y6/ cRoj`@IIМBI$I$P@qB!j11|x4IIYPkU1$ m$PncU1#@mQMcU3#0McU2"4|Mc_U2#Զ$|McUU0"D'|McUU- 1sRzzz!1(B 8)B)CjFNF("H$H$Q|WWTT$"I$I|t$" $ $|t$"AI$|t#"A$$Q|s$"A$I |t$"$I$|t$"I I |t$"@$I |t!b&`%sR*ɑI$sJ $'1RWWh$Ϥ(BUIHJUIҶhRUIҭ1ZUIҶ]bUz& rKsUIҶm;lUIb۶MВnUI(I$H:2.IIs9">h>|\\\X$"I$I$|t$"I A$|t$"IH|t$"A$H$|t$"I$$|t$ &$0|s!X%`&sZXXX!&N) Խ/~C4 ɐ0p~xZ^-s [| I Mc,[!yBMc [U$IR$IMcZU!I2McZU"OҶMcZU$!I&MMc [$"(,McZ@@ O۔ϤHJ%%%Խ/7I$I$ԽqI$I$ԽqPTA$A$Խqm6mԽPSЌ69$/"?UVV\\$"I$ $5q$"I$I$5q$"A$I$5q$" I$5q$v+6$h>mk^M'ILkW%$dmPmkUU $uKmkUUI1lk5%3Id6?5">#^\Xx$"I$ $5q$" A$5q$$ 9􌒄x" H?s~"ic$ӌLcUhILkX%i-M) /Xəĵ?_.)t'TsxVWTIOlk_U$lkU$ylkU $߶lkU$5ڎlkWU InmClk/ IgO:#==4|xxxx$"I I$|t#"A I$Q|s$"I$I|t!99|ZXXXXQ{)/Xɝ$kWX# |mk $ ܔr|s"(#"A$A$Q|s$-â-|sJjbjȍȍܯR7777ͽ8)B)B׭'"h$H$$"H$I$5q$" I$5q$"I$I 5q$"$ $5q$"A$$5q$)-0|@@@@IILk%%%%I$IrH9#NB5ֵcrpx$"H$ $$"I$I 5q!X%9ӌLkXXXx&II$Ф )1#/9Ro0mc\xxp$" $Icb$"I$A cb$"I I$cb$"I$Icb# McRxx%Od~?Z %*i{Mc^z`# HҸ>McR^"$,c(J~>I۬{(BW !N$ HJU! oZ  .?NdIҜc;$$qmc~W0"[w0|Mc_UU$"A&I$mcMcx_UU I$m;lMc,[!I$mmMc,[  Mc,[ vlIMc,[ # ,[iJ`` y˴.(B 2PMcxx`!I$m+ Mc,[ SHMc,[_I$Mc,[ I$mmMc,[!c$ Mc,[@5,[R`H[',[(B_9NLcBzW5ɐ)HJ =I$IսϤj{5?)ThШx^+'$v\WUU4R P `ӌsp`O~?mk)7)h@UࣁI$H$5Q 4Rӌ4R`ӌs`Iok)%F';Kkj`$ILc^W 2I$ɛt{+79M% :$XO?N$׭x^WU&"p$q$$"I5q$"A$I5q#$B$Iꪪ$ # PW^x&T~Z? =_%@&"I8I"  ,s` H̼Lk55II$s7 ֭xx{{$"I$I$5q$"@$I$5q$6`'K$ҔLk\֗@C =% 6"h"'|'\\^V$"I$I$5q$"I$ $5q$"$I$5q$"H$I$5q$"I$A$5q!9&ӌlkXXXX6IĨ====9">&׭\\\\$"IH$5q$" $I$5q$" I5q$" $I$5q$"A$$5q$"I$I5q# -|@@``ɐI Lk%%>IDɑ1|Pt8"&Mc\\\\$"$ $cb$"H$I$cb$" $I$cb$"I$I$cb$"$I$cb$"I$ $cb$R,Mc [HHHJ4iױ{j# Il$| cW# Im$| cU# I-$s cU$ Im$sZU# Im$sZU$ Im$sZU$ Im$sZU$ Im$sZU",1l$sR`^ WquNZ 7$88mcxxxx$"I$I$cb$"I$ $cb$"H$I$cb$"I$I cb$"A$I$cb$"I$@$cb$"@$cb$" $Icb$"I$I$cb"00Mc(B````HJ  ?8h(ҔpX0ADp^,  I -# I W.IR  .I-ՠ/I$l  ]-I$̃W(Ihќ{+ I$I>2-; >HCQx|||+"x'xs c\\\\$" A$,c c$"I ,c c$"IH$,c c$" $A$,c c$"H$I$,c c$"I$H$,c c$( cR@@@@ɐ I (J   K:1C9@Q|xxh+"̳K'sMcVVVT#"H @cb$"I$I$cb$"II$cb$"I I cb$"I I$cb$"I$I$cb$McR`@ HJ%%%419+"s'&q|VTTT$"I$H$|t$"H$I |t#"IA$Q|s$"I$ $|t$"II|t$"I $|t$"I I |t$"H I$|t"`&`&tZXXXXmvi-) ))II$ӽ0 $I$Խ0V I$I$ԽPe0? I$I$ӽPU?U$ԽZ@$車ȯI$I]I$I qo_0I$;o"UU4I%@R0_U,I$Qlc*IDIRoo8'ӌZ^W@I$sZU@I$sRUжIRUжI/RUжI.JUTIoZUUHmnZW-i6i;I$I$7IP^Z|\3"?0|Mc\\\\#"HA kR$"II$cb$"HH cb$"I$ $cb$"I$I$cb$"II$cb$*Mc [̽ȍį(B%577I$A$濫 I$H$Խq@ESH$H$ԽqTUEI$I$ԽqTPEI I$ԽPH|8ID֭Ϥ4#{"'h>^\\X!3ٓ=ӌjr$"I$I$5q#"@ @ 5q#)q`!$ӌLk\W HykLkW u0r샭* I0WI$0Vh05&II䒵~4#؏5B35xppp# (>sz"$$ӌLk^U'IќLcW H%IФLkUIB lk -I$ylt,*2I$~ϜuO$1 :I$/7@MWW0I-߿1IBnI-ݪ1Im It-1/I It-/ I2 36/|`jM۱kk -8%P39Us0T|xzzz$"H$I|t$"I$H$|t$"HI |t#؃=؃=|ZXXXX1!q̃) )I$I$ԽZQsZꠠ!PRy䏜kUZ$0I.|k $:|sjmȍȍФJ7777I 8)B)CϜ)"35|\|\$" $I$5q$"A$A$5q#"II5q$"H I5q$"A$$5q$-,0|@@@@IItϤLk%%%%7IDɑϤ59$؃=h"'׭XX\\$"I$H$5q$"I$I 5q"P ӌkp` n~԰Lk '-t@kzx("nd ;kMc_W^\$"H$I$cb$"$I cb$شa8.Mc [# @>McR^k$sIJ.WU"vω$.ZzXtoiJU 577OZ4IlHq{+~5!hco?PmczW'/L(B.>775aas`kkk%"M$H$kMcVWWW$"I$I$cb$"I$ $cb$"II cb$"I$ cb$"I$Icb$"I$ cb$*Mc [@ʍ-IJ%5575vaBPs`bB%"I$M&kMcUWV^$! 6h$cb$5McZx"@:McHJ_"~,c(JWX$IN(B_U Ivk(JU- !AQjs- /I$Iz:9p@єx/?O$\WUU4R4RREӌ@|&5kXp+) I\U %'C5WV\X 4R4R$ӌ @5ӌsxh&LP,c5 i$mn/+y2m8'pAjm .O}vxVWU$"I$H 5q$" $I$5q$"H$ 5q$"I$5q$"I$A$5q$2,]ӄj  ӌ0W^x(P %&ih-qb>t䲌Lk`XVɔNP qls% + A$ `4A)'"I$H$$"I$ 5q# 0s` ȝ܉ۯ,c%-A)if("ôM4$"A A$5q$"I$I$5q$"H$H$5q$"II$5q$!I4H$ӌ`&h"'LkX<ɑɑ׭M55?58#h"'r"'\\\\$" $A$5q$"I$I$5q$"I$I$5q$"I$@$5q$"@ $UQ$" I$5q" 0Lk```I ,c =I1|5"p'r2?QMc\\\^$"I$A$cb$" H$cb$"IHcb$"AI$cb$"I$I$cb$"I$A$cb$*!Mc [Hʽ܏iJ555?1n_ȋ$'?@{UIsU Ir۷ msU( Ӷu hФsU"IҶmKkUIҢZϤKkUIb$@1KkU(Ib@+kU*IBQ+k 1n}b9#X99Mcxxxx$"IA$cb$"I I$cb$!I$A$cb#"I kR$"A$I$cb$"I$I cb$"II$cb$"II$cb$"I$ cb#P59Mc(Jppxx0ə|ɕZ))))9"=>xxX\$" Iь|$"I I$ь|$" $I$&"$I$Ҍ*UUU("I'ҌU_+"$򔑄UU."вUU-$$O2P|Ο c.'%%=9C1Bќhhn*"$s cTV^V$"A$I$,c c$"I$I$,c c$"I I,c c$"I$I ,c c$" $I$,c c$"I$A,c c# , cIJ```I ɖB I I$0p`: @ 1Qxx|z+"x.sMcTTTT#"A$I$kR$"H$I$cb$" I$cb$" @$cb$"A$A$cb$"I$I$cb$" McZ@@ ؊دHJ%%%%5ɐm ."{'璌|VTT\$" $H$|t$"I$I$|t$"I I$|t$"I$I$|t$"I$I$|t$"HI$|t$" $I$|t$"I$A$|t"؃=9tZXXXX!색)-@$Τ k  ]'I$IoU1I$y qp(UU3Iۛ0U5_N I{U5y4ҜkU5$m$qmcU5$O$0mcUU/"f$|McUU)9#1k(Jxzzz)bZHrvI$1ZI'I2ek2I$IR m*6I$ nf4IMu6Ir INw6-m/_51 hJҔs1R /76ɑ\Ir\Z{_7"&QMc\XXx$"I$I cb$"I$I cb$"I$I$cb$"I I$cb$"I$ $cb$"I I$cb$mӮMc [JpNIJ ϤH $ԽqQFI$I ԽqPQD@I$I$ԽqPI I$ԽqTB#II䓵`8">9Xxxx# ` Ơ 􌒄ظ$"AH$5q$H1q`5k$ӌLcx^I )Plk%i)ڶ; C (2I$+2IuΤ.I?T#`QȪ4Jѥc'4 cphmLkWխ*IH s1I$I 7Iܝ@u 59$i6#<~U2ЪdC6u/|`jj囹Ϥlk+=XS{yy*"D~|tWU'"X4I&S3UUU&"Il'ԝ񃪪$"$I ԝ񃪪$"H$ $ԝ񃪪$,/|@@Nԏlk%8h0rccc$"I$A$|t$"$I|t$"I$ $|t"؃=X%|RXXXX!!N )OϜ|CImuOnx3mӔ/^`zW&y@/sx m1.kWxȭ˽jJ7777 I$A}}91C)B׭Ф*"{z?4\\\$"I I$5q$"II$5q$"I$I$5q$"II$5q$"I$H 5q$,0|@@@@ФLk%%%:I֭m?/4"''\\^V$"I$I$5q$" $I 5q$@󌲄@!}>j:mk7X/ɕ/\p`z1 9|McV^XX"6:McR~!ic'McHJ~UOحs(J_/t$} HJU 3Iw7OZ 4IRHp{#/z6@qmcW6"8'Qmc~UU*"Xm7./"{?uV^\\$"I$ 5q"5%ӌLc`ppXɟLk+?#5#>cpxX$"IA 5q$"I$A5q#"H 5q$"HI$5q$"I H5q$$,-􌒄`pLOLk76ɑdI$=-&$4{V^" .ӌkU$ {*$Æؖr$!I ӌ$" $H$5q$"II5q#P5&ӌLc`pxX)PQs):ɐ ~z~x/"p?|Mc\TVV$"I$ $cb$"I$ $cb$"I$I$cb$"I$I$cb$"I I$cb$"I$H$cb" (McZ@@`ȹIn(J%%%%>ə1B 8"'u^W0#T$U/#&mU/@ֶU,  I_ . Ii0I/I2 I̫U.Ib 3]+I' h1O*z.IDI@/<#>&mcXXX\$"I$I cb$" $I cb# Mc [@@")؃9McXxxx$" $I$cb$"HH$cb$"I$Acb$"I$I$cb$4MڂMc,[$Mc [$"H$I$cb!r&h&s(B /  $I$ԽqaPPI$I$ӽqmTA$I$ԽqUI$I$ԽqaUt:C:|p5Hzcca H6?ӌsz"hc$ӌLkzU&ILc^U-IYmФ,c5 (I$Is{?:I'@׵{ ; H6׭ _5"4~$WU."XUUU( ,11s```ːi ϤLk  R[#6I0-8yE$m6#$_U1"Yێ'uUU("$$"A $$",PB‚ ؊Mlk%''3 v`A&"Iĉ'ԝ񃪪$"I$I$t$"I$I$t$"It$"I$I$t$"@LJNlk'6;vMkz^"m$tZUU"m$tZUU!m$sZUU"`&N${RX^U1in ) ODOQpX>$>>4txxxx#"I$I$|t'"mI0|t%P 0|UVj$yhk/ m۱R샀*"7!AA׭'"Hk&$"$I$5q$"I$ 5q$"I$ 5q$"H $5q$"I A$5q$)-|@@``TqTLk%%<!AVhM (!/|5TVVV$6iP;ӌW$mP󌲄V":q_"X1Z&Lcp`p^ qlk)1кc/iJx\($wk.HJU/1II/R+5IsiP{*x3FPMc_5$$Q,c_U*$?s [U$'McZU$H'McRW"v?McRU"@?MciJWxL{(B77753ABP{BCH`$H:mcZ~# 'McR_$ Ic$McHJU&$Mc(B_DI{(BU $IIJ_U `nKФ(JU IФ(JU+1@@1Ks)! I$1Lkx`Hmۯ(JU9I$Ib-:IH~> H6nk W<#и$Q-cWU-"Xɟs cWUU$#ɂ(` cR`{掜IJ 52!C un '=,"tL'j :UWV\X$"A$ $5q$"H$I5q$ҭ@v5q  4R# ES4m[ӌj|&5mkXp))DU ='") 550|p5t䲌LcxV MoLkU 3I0 u4`ֶ x^.$vxWUU  `ӌsx`&gv^?{-W&H5蠠$"I$I $!A4m&5q$MJ:󌲄h" ڸ>s^# Il$ӌLkU" %ӌkU $lk^UHQlkWյ)I = A$H$Խ/6 3I$I$Խq UTI$I$Խ/HO; H׭/'0 $v\\^W$Xv!`"KqLcXܔ/II$T+=084{^~#| -$۴mĖn􌲌 $" I$5q$"I 5q$" $I5q$1mk` ͝܉ϤLk5AI6hU-I$ H4-v($vh_IsUI$okUЖ瑌mkW#@n$sW$0I-sU!h"'M$3Lk^V rm " <9k,cxx'4r$kRUW"0In$MciJU# Im$LcIJU%$I%MciJU"ܖ$McRU%$A$$McRU$ ۔McR*U# L6McHJz HJ% <!ahun&"H$N$ьq$"I$$ь|$"I I$ь|$" $Iь|$"HIь|%"AI&"6;q8'"$M$Ҍ UUU)*/5 c``1p c ) 5">hqmc\\\\#"I$ cb$"I$A$cb$ $5Mc [` Mc [VTXU")POMc [ %$"H$A$cb$"II$cb$"A$A$cb$"I$Icb!X%`&,c(JXXX7ɐ9t% 0"?\\VV$"H$A ь|#"HH ь|$"I $ь|$"I$I$ь|$"H$I$ь|$" $ $ь|$"I I$ь|# ,lk````  c < xs`b`b$"$I$Mc c$"I I$,c c$"II$,c c$"I$I,c c$"H$ $,c c$"I$H$,c c$"I$I,c c"0@5 cB``pp)1iR  I$I$Խ0C@p8 IPpx^~^2"/'r|Mc\\\\$"I$I cb$"A Icb$!@$mcb ֶI$Mc,[$@?McZ_W"wMcZ% $!H$)R$Mc [JpoHJ7ɑ\ɕd;4XX>Ӕk\"f?|Lc_# $|ZW# H$$sZU&$|RU~sZUI$/RU*жZUUDmcR HyۖϤZ5- II1npz<%@=S:mcpxxx$"H$A$mcMcU]U$"I$I$cb$"H  cb$"II$cb$"I$I$cb$"A$@ cb$" $I$cb$" $I$cb$"H$H$cb# McR`` y׌HJ %%7A!BN&"t$N$0|tXVTT$"A$H |t$"I$ |t$"I@$|t$"HI |t$"I$I |t$"$@$|t#! I$|sꪪrhR IdI$1O6!R?qmcxpp`$" $I$cb$"I$  cb$"I I cb$!MҴ &Mc c$ڶ(&Mc [! m&McR^# 0@f?McR_ht,c(BܜI)+ I$I$ԽqUATI$I$ԽqdP$ $I$Խq@EQDI I$ԽqEA@$ h3xͧs?tsbz `$mLcWUIm[`Plkի5I$Iuw5<IxH׭=!hI׭ _6"M'~WU&"@$I'XUUU$"I$H$5q#"HA 5q# |``@ɐɊllk%< K׭% <$}$^W)"`?5_UU$"I$H$5q$"II$5q$"I$I$5q$"AH5q$2Ȑ(ӌOLJOlk6643B)N ("MrT3VVXT$"I$ $t$" t$"H$I$t$"I$It$!mA&3jjKrƐlk>I$B4Mݏ 2I$Ӕ ]u2I$ 1I$ V0I$ ̐mk`m۶h{ *GМ~x|Z<#>>4sxxxx$"I$H$|t$"I$ $|t$"I I$|t 0sR``xiϤR 1 AA h$h&ӌ  $I$ӌ#$@;ӌ_$Ӧa'􌲌_$$IV?Q_$@'|W" m?ӌmkjW 9Lk%-8'us`^жIpLcUd?ImkUU$oۏLcU $mФLcUI LkU*m۶Q -$Nj'0I$Mc.$oZU#f$.iJUd-)BU$oiJUU $niJUU* Д$mےϤiJUUИ%RUUt$@(JUIHJUIڮۆnR5*)y$mk~xxX$.IJWU*I$@N(JUIBHnHJqݶnkjs * Iۿ=A2 * I$IB$s洛U:I$IQbZ~8hk~.m=>М*J >BI$I1o<s^="$r-c_U3#m?I$ c_UU'"h$I$.c cWUU$"H$I$,c c$" $I$,c c#"@I$ncjb!9P c)JXxII$HR / m`Uࠂ$"I I$$"@$I5q$"A$I$5q!͘4R# I$M 5q$P ӌkp`۹؏Lk )'P/:Lkpxx2I$I SJk 4Ii-- 4*u$x_U$mӌ4R 42#P ̳s\x`& \')"}4_^xx$!m$I"ӌ"R#: @ӌq``t'sLk^Insկ i klsU m۶ Ϥs* I Ϥ)I$I$ԽpQEQI$I$ԽqQPTUI$I$ԽqQEI$A$Խq\PA, I$pbЖ'sU| ĉn;mkx țׯ,c75=ɝJ4h ,}(iVNVxqL5Ҕ.UUf`@N1ӌ/ VU#0 .|$$q-$ &a4$5q#P9b&Lc`pX\=I|ɕks==/>#P=3?xX^^)"pI?4*]*"q?5]+##?Hn4(h Mz(IB'4M}_'I$|h4mW߀Фs^ "IPQlk*  $@ΤȺB<I?1YA2O|z{z/I$Ho{ U%I$lk_ *Ib۶ o cUwBZUqBHJUI$mbФHJU$mmФHJU rK1RUU1y ФA = xHєaass$"I I$ь|$"I$H ь|$"H$H ь|$"IH$ь|$"I$I$ь|#"$ $ь|$" I$ь|$" $I$ь|#5P9pZ``pp8ɑ*k)))+6#h"'p"'QMc\\\\$"A A$cb$"H$I$cb$R4 Mc [``!O$Mc [UU!yMc [UU` ݖIaMc,[$ TMc [&$"I$Icb$"I$I$cb`&`,c(J؜99C)bt )"3J$Ҍ\\TV$"I$I ь|$" $A$ь|$" $ $ь|$"I I$ь|$"I A$ь|$"A $ь|$"I I$ь|$5P5p c``pp閭]0+k#;hߚ֐-[xX" $McRU" cRU$ ۔ cZU$@۔ cZ$ӶA;-cb$ i$-cb$"I$H$,c c"P9= cBppxXQ c H IԽqT7ɑIdXXX|4"r&>QMc\\\X$"AH$cb$"H$Icb$"I $cb$PHJMc [`!I2m6 Mc,[$"HI$cb$"I A$cbr&h&ls(BII$1m~+$M'1 [^WH[vФZU IBZUͲ$ c"]М{*"3I$= 4IM]+4RI-_3 @mӌ),ќ,[*z$1`qKs5Jqkxpp`$" $I cb$"I$ cb$"A$I$cb$"I$I$cb$"H$ cb$"I I$cb$"I$I$cb$"A$A$cb$"I$I$cb$ Mc [@Lʏ-B''77;1CLM*"Lr|VVTT$" $ $|t$" $I |t$"  $|t$"I$ $|t$"I$ $|t$" $ $|t$"$H$|t!j"&`>sZX M+)!8 xRx"@#$McHJU# mm$Mc(JU!$,cHJUDI$s(BU*V?IIJU $m-BWU*KmnHJU }v (B Qn #=I$I$Խq!VVI$I$ԽqTUI I$ԽqDI$I$ԽqDAI$I$ԽPB0A$@$Ӟ8I$I'<Ih׭v/>c[׵~W6"]?O$_UU$"H$I$$"H$I$5q$"II5q$"H$H$5q$"A$I$5q$" iq@ˍФmk%2 -%7/"u^\\\#" $5q#" I 5q$"I$H 5q$"II$5q$"II$5q$!IH ////r'h&Kk31  ''."?p3VVV\$"I$I$t$"I  t$"I$@ t$"I$I$t$!i&m[43ꪪ j`&lkXXX8!B)B /"<|WWW*"8r|UUU,"PIlr|UUU(#5Z5rR`zzzِnn1Kk $IdIМzX;#>>4|XXXX$"I$I$|t$"I$I |t$" $I$|t5P9sR`ppp!ϤZ 1 uOb 'ӌmk_U@N$LkUIPlk_U*$boLcU К$oۯmk_UK4]7LkUIҶ1lkUIm۶ Q{-2I$IBo~^4I$ ϤP"U3I$n Ϥ0 U0I$Ϥ0"WU6I IϤ|U5Ib=Jz^>ɔ ɐPќOU7$$qmcW0ֺ0mcU04n|nkU0 m/kU/ I IkU/IH IOk*U/I&-[zZ %<I$f@11IIHnW 3 - i2 DU/! fە3U2$.'e$ U3 I%k?Ҍ1HZ'kzW1K'I$3Lk޵;/Ⱦ= 4hШӜNkx^0"X_${-cxWUU"5 c)Jx`9\/IR2">-c\^^z$"II,c c$"I$ ,c cﯿ$"I$I$,c c$"A$$,c c$"I$H,c c$"I$I$,c c%"(I cR`s&IJ %50Cɐun%,"~jUWV^|$"H$H$5q$"A$I$5q$ @46qx @:ӌmk_ <:N$Lk`ZWIlaLc% 6IS`@M_.2bx^-vxWUUI$IB$4R4R4R4R`ӌ0|`m>jps='$@5  &"q$p$$I-r` 5j$ӌLkx^W)rs?8yh׭М 1Z9uxx~WI2'P1p _I$I$ /=I$I$ԽQUAUI$I$ԽqWPQI$I$ԽqUI$ $ԽqEI Խ08I$@ Uʊ=Idɑnu'?$P>j'׵pX\^$" $I$#@UUU"M"> H-ӌ-UwI&^*r|U~mmm;mkxp$ɟ,c֗/= 9B׭ % 4#p'}$\^^W$"I$I$5q$"H 5q$"HA$5q$"I$I$("I$+"dk<4U) ۾14Q`j j z˼s*(IIr__>" >mcxx\,"TsMcUU,"Tr8sMcU+v|McU- iMOk U0Iւ$IkU.I?){"U,I$@{UI$O>Q *IsϜv>#D#99ppxx$"I$$ь|$"A$ ь|$"II$ь|$"$A {$" $Iь|$" $ $ь|$" $I$ь|$"AI ь|"%`&p cXXX\7y9{-++1"h>#|Mc\\\\$"I$ $cb$" $I$cb$"I$Icb$" $I$cb$"II$cb$"@$A$cb$J  Mc [$"A$Icb#"A$$Mc chp,lk(B3 @f`T$"H$I$$"I$I$ь|$"I $ь|$"I$I ь|$"I$A$ь|$" ${$"H$I$ь|$" $I$ь|!=X% cXXXX1-i{! 2$_@+cp!oRU mO(JU 'vn)JU_nIRUU`IBUжIRUUUP-JRUU`&O$Lk(J^WU i-M +++@$I$ԽqTEE IDIQopp`9"#>=qMcXXxx$"I$I cb$"I$I$cb$"I$I$cb$tMcR.^ n޶McZU$qI$McZUU#my$McZU`%c' [BX^iiQ ++)<I$]AtkZ6Iߜ@󜎜L5IN Ip+~6 Q*U6$$|U5"$|UU1"O$|_UU'"$IҤQ|UUU$"H$H$|t" ,|Z``` Z 6`Bsxxhj%"H$m$mcMcVW^T$"I$A cb$"A$H$cb$"I$I$cb$"I I$cb$"II$cb$"A$I$cb$"H$$cb$"I$I cb$" $I$cbr.h{(B7 M%)64"3'r&|V\\\$"I$A|t$"I$A|t$"A$H$|t$" $I|t#"$@|t#"IA|t$"II$|t#؃9X5tZXxxp) q{)":1Z\IlwIZU*y^K+k "I$In М7I$;Nr2'J.7 I$藍9 I$$ԽqQTEAH$H ԽqeAA$I$ԽqAEI$IԽ/?@I)Kw/@#'^W5#`?I$UU&"H$I$$"I$ $5q$"I$I5q$"I$H$5q$"I$A$5q$"A$H$5q$"I$ $5q$kӶnӌjz.h&lk.Idu5?3#j.>؃9\Xxx$"I$H5q$"AI$5q$"I$ 5q$"II$5q$"A$A$5q$"I$I ? `=9lkXXXp5I\ -%552#r"'h:3\\\X$"$H$t$"IA$t$"AI$t$"A$H$t$"I$H$t!`&`&LkXXXX81C1C탇("J$J$Q|WTTT$"A$I|t$"H$I$|t#P5P5sR````)1 c 'II;">>|XXXX#"I$|t$"H$@|t$" I$|t=X&sRxXXX<IɗМ̃ +1 $Iќ^^V)O탯s";U+I$N{ U/I$n{U2I$l {U-I$ Ϥ{*"U+I'h{"UI$v${;I Rw?")s'Mc^V.!I$|McUU-!I$sMcUU* T۱msMc_UU+"ɟ;kMcUUU#`&z'lk(B؞(tI?spx!0rn.RW^"ayMcR V$McZ $ ")JKMc [ $"I $cb#"$ cb$"͒(iMc [@ͿrniJ5;iKn,"h}L'T&"8I$ԝ񃪪&"$I83$"H I$3$h].tq% I8:sz!9}lkxW NܷmlkU%);I @Ҕ싻/`>#'-c^W+"?N$s cxWWU$"H$A$,c c$"@ cZ@C;jR5/fH/Nczz&"IĶMc c$"I I$,c c$"I I ,c c$"I$I$,c c$"II$,c c$"H$H$,c c$"H$H$,c c"9 c)Jx`"II$J /uӔa" >k~#$$ӌLc~U]'ILkW-IlkU3Iĩ$@t{ "I$x"'{* 8 ii&"tIb&$"I H$5q$"H$A$5q mӶ-$4RI$I4R I$I$4R!& ð$5Q 9ӌsXx`'9O{-=):14r` 5k$,cx^ɝ߷},c5-";I $hM% 9">?׭x^WU$"H$I$$#ѐHQx}>10-%WP-ӽ:9I$I$ԽqUXIHԽqTADI$I$ԽqAI$H$ԽqAAU @ 4h< BThќ1#'Nu\^WW$"I$I$5q$"I$A$5q$!M I&5q# Z U I$𤐌 Qw I rp> h8("HR'N85ӌ$"A$I$5q$"I$I$5q$"IA$5q$"I I$5q$"HI$5q$"$I 5q%,.-|`lk555;ɕI 39"r2'qMcX\\^$"II$cb$"H$H$cb$"I I cb$" $I$cb%"m$I&kMcUUU)"j&{(B*>6O|ɑt5=>#>#'xx\\$"II$ь|$"I I ь|$"$Iь|$"I$H$ь|$"I$I$ь|$" $Iь|$"I Iь|$m[ӵphJ䐌 cޖ-I${r+$.J_^@r?sIJU @$,cHJU!m$,ciJU_"mm$McHJU# Im$mc(JU" %McIJU# %LcIJU# A$McJU"@6Mc(BOHJ%5x8Tp$"I$I$ь|$"I$$ь|$"I$A$ь|$"I$Aь|$"H$I$ь|$"H$I$ь|$" $I$ь|$"I$A$ь|!X%`&p cXXX>Iɕќ,+==>%*&kx\^+"@?sMcU.#A4n{mc*U, IokU+IRФs U,I${U)I$O{*", @Ϥ:9 $I$Խ/>?I$I$ԽqT@QNNijnj7#9Dcmcxxxx#"A Acb$֢E$Mc,[$$:McZ~$  'McRW# Ic$Mc(JU#ظ~$ [(J_6I{(B_U X$ݺBUU aZs)@#*c:U|xz."y|WUU&"$IQ|UUU$"I |t$"I I$|t$"I$I |t$"I$I |t$"I$I$|t$"H$H$|t$,|k`` I۴Z%%%57)C9 |xhj+"M8#s&b>|\\XX#"I IQ|s$"H$I$|t$"A$A |t$"H$I$|t$"I$ |t$"I$H |t$" I |t"0tR```-0b );I$IϜxlx=I^rm{\7q)@FqkU6$$qmc_U4"<0McUU-"fsMc_UU'"XI$kMc]UU$"HI cb$"I I$cb!j"&9LcHJX]q )I$I$Խq@uPQI$IԽqu]@I I$ԽqTDAI$$ԽqU6ɐTɕt7:0"s:u^^\x$"H$I$5q$"II$5q$" $I5q#"I$5q$" $H$5q$"I$I 5q$"I I$5q$"II$5q$"A$I 5q `>5ӌmk\XXxII${"1$#4s얥Xppb$" $I$5q$"I $5q$"I$H$5q#"@I 5q$"H$I$5q$"I$H$"P51Lkpp``%ɑDI{-9==0؃9XXxx  $I$S| h$I$S| ($I$S| h$I$S|!E$I$S|`"&b"&LcXXXX41C1CӔ %p0|sTTT$I$0|mc ($I$0|mc00sR```` )1Z  .IDIs9!>>|XXX\$"$I$|t#"AIQ|s$!A&@ 0|s`&r'sRܜ<ISK-M1`+|'1 c^VW$dNk cUUU&ɟnk cUUU+"$s cUU+"`ɓ's cUU-"жI$s cUU*Hҭs cUUh"?jR 61Bta{b'x'|$sMcTVWW!4I$kJ!m$I kJ$"I$Icb$ A&b"Mc [pJO(B<1Ba k,} I.k U+'* [p*+m{OZUX*M ZUW" w$McZ+W$HMcZ*$ 6iMc,[ #j9XMcHJXx`3ɑDtFZ *+)1"t"?:3V^\X$"II$3$k۵6`"8:kz!u$lkxWX$}ϜLk^խAI$Is(?IҔs(x<#P>~$-c^WU%"H4I.c c\wU$"A$I$,c c$"I$$,c c$" $I ,c c" 5 cIRXx`/iR ."3ٯs cV\Xp$"I$ $,c c$"A$I$,c c$"A I$,c c$"I H ,c c$"I$A$,c c$"I$ $,c c&#(I cR`r毜)J %5$$sh* HܶڏlkU*.I$I Ssջ 5IN 6 m. 8":'z_U z"'9lk<p.! uM 5-"?UW^|x$"I H$5q$"I$I$5q I$M Ԍ kX6ӌ@$ӌ$ӌ8ӌQ|@Ĉįmk"|6kbzIϤLk ; h-% :$P>u'x^WU$"H$I$$"A$$5q$"H A 5q" Zр `|x`OQs -+ $I$ԽqI$I$ԽqUUE Խ/``=IIϤZ7=#9#'`xX^$"H$ $#$j#'ӄ|\!0nm6􌲄"@O$􌳄UU"y'􌲄UUm'󌒄u_C'3k*^W#IIs7!@9#'׭pxx\$"I$$5q$"I$$5q$"HI5q$"A$I$5q$"A$I$5q$"I$H$5q$"@$A$5q! P9ӌLc``p !lk-))<C!Aќ0Bb."p_sMc\VVW$"I$A$cb#" $cb$"A A$cb$"H$I$cb#"$I$kR$"I$A cb$ I;Mc [h'H IJח<9M57%7"h"'T\\\^$"I$I$ь|$"A Iь|$"I$I ь|$"I$I$ь|$"I$H$ь|$"I@ь|$"I I ь|# )/|@HLo+c75=I 7Ibms^-IR? Ms UU.I$/ms .I$I{ σ-U#)IҶ U qBksU*Mn01ZUI0hRUIҶ(BUZ ;"S9:zxxx$"$Iь|$"A$@ ь|$"I$Iь|$"A$$ь|$"HIь|$"I$H$ь|$"@I$ь|$!m E4ь|h.zp c֖=ɐ ӔM557"h"'{'QMc\\^V$"A$I cb$"I$I$cb#"$@ cb'"ݐM&kMc UU*"`sMc UU."rr>Mc\^^^$"@$I$cb$"I$Icb$"I$I cb$"A$I cb#"I $kR#"AA$kR$"I$I cb#5Mc(Jxp`` JR I$I$Խqe ԽP >|\\\\$"I$I$|t$"A $|t!ۼ5|kxJ탪R61Bvaq{Cc$3Nk cTTWWNkJJ  INkjJ$"I$A$,c c$"I I$,c c$"I$I,c c ( cR`pt{(J5%2v:qmkbbr H$M$Mc [kJ$!&icb$"I$Icb#Ȓ.!Mc [@HNHJ555:v`fhsbcbc%"H$I$mcMc!nyМMcp4X˶0 cxWUU$"A$I,c c$"I$A,c c#"I H$nkjR$"@$I$,c c$"A I ,c c$`-cZj蠊M;jR5.Fh.czz$"I$H-c c#" $@nkjR$"I$H,c c$"H$A$,c c$"I$A$,c c$!ih4-cb$@66 cRzpJ{)J4IIDW5= y)I׭4#'_U3"X?u~WU&"$q$"A$I$5q"P `sx`IO$lk+)'+@U$"I$ $$"I$A$5q$"I$I5q$!M$A&5q I(4R &@$5r`XC'ӌLkxW H{QlkՕ5-I$IR?I5 <#??~$x^WU$"I$ $$"I$H$5q$"I$I$5q$"IA 5q$ D"mӌzꪪ##:PӌsxpIN${ I$I$ԽP 6I$I$ԽO s>I$IϤl_>=9p@є/"~u\^WU X&H24ӄm 󌳄zv\>$ ӌz8l) ӌwd ӌ$ӌr|`hJ܏,c֖7%ɑ|u, x\^_$"A A$5q$" I$5q$"H$I5q$"I I$5q$" $ $5q$"IH$5q$k۵E-ӌj&r䲌LkXX m۶i{=h:k``p%"M$M$mcMc\VWV$"I H$cb$"IIcb$"I I$cb$"H$Icb#"cb$"I$I cb$ ,McR@ΝN(B75%<1BN -"x'|󔑄\\VV$" $A$ь|$"I$I$ь|$"I$Iь|$"I I$ь|$"I$I$ь|$"H$I$ь|$"I Aь|" Ȁ,lk`I  c%% >!aVҜsbr+"sZ-IdФoRU_a7#s&#>Qmc\\XX$"$I$cb$"I$I$cb#" @cb$"A$I$cb#"IA$kR$"II$cb$"I$Icb$"H$I$cb$"H$Icb#MciJ``` n(J 8 X0rrcc$" $I|t$"I$ $|t$" $ $|t$"I H$|t$֢[&|s_$$T?|k~$ '|McW#*ͣS'sRzW R- *ɑdIqn|~xz5$h>#=QMcXXxp#"I cb$"HI$cb$"I$I$cb#"I$ kR$"I$I cb$"I$I$cb$" H$cb#  McR``) (J %A$I$Խ/ >>I|ɑМ^~X7I$j>mk + ӽ05 ӽ0oO-!ɐu&/"~>UW^\X$"I H5q$" $A$5q$"I @ 5q$"I$I$5q$"I H5q$"I$H$5q$"$I$5q$"I$I$5q# {` yLlk%%0! u %."}>UW^\\$" $H 5q$"I A$5q$"$ $5q$"I$I5q$"H$H$5q#( |@@1 Kk -%%1 hinI$I$S|HS|I$I$S|S| @$h&p$lk\Ԗ0)1k xĶO$sZUM?sZUm$sRW"1$sR`j_U))Z)) 6IIS7?|\\\V$mW|s$"A$ $|t  sk@@ ȭ܋T.R7555x:qNkbbbpH$I$ cZ@NkJJ! cZ*$"II,c c$"H$I$,c c$"II$,c c 0 c)J``)ϛ̓J% 2S9>QMcpxXXkJ@kJ$!M"I Mc [$"I I$cb$*ɀ.(McR@@HI (B%:j,Бk``pp$" I$cb$"II$cb$"I$H$cb$"I$ cb%"I&I$kMcUUU'"vI$kMcuU)"I@kMc+'~ ̃nc"OZ*/sMkp*I$IB Kk4I$/M}4I$v u4I$_ 5IШSpX:I'A}.1ټأ cX`" ݔs cUUWX$$AR cZ-#"A,c c$"II$,c c$"@$A,c c$"I$,c c" 9 cjRXx`-9OGOZ."u2?s c^^\x$"HI$,c cz$06 cZx#X? cIJ_!h$ cJ~U I)JWU-`$ (JWU-IiR-&I\2- "*8#/>=xxxx$"H$I$5q$"AI5q$"I$5q$"I$A$5q$3M􌳄@!|2'9mkp-1 dT- 7,#?9UW~xx$"II5q$"I I$5q$!m$m$5q"@9ӌmkx*:M$'O$x^WU%"H$i$ hӌ ֶmӌ A I$4R hۢI$4R I$4R (ӌQ|` mk'7I I$Խ9I$H$Խ/pp=Jo׭ 7#C'N$x^WW$"A$I$5q$"A$A 5q$"I$A$5q$"I$I 5q$" $ $5q$"I I$5q#5ӌLc`pImLk%- II$RZۿK# TU_x$!&m$ӌ$"I$I5q$" $ $5q$"A$I 5q$"II$5q$"I I5q# (0|@HΝLk52IIL;$R9&mcpxX\$"A$I$cb$"I$cb$"A Icb$"I I$cb$"I cb#" $I cb$"II$cb$ 1Mc(J`` n(J > !avho&"'NbDZ$"H$I$ь|$"A I ь|$"AI$ь|$"A ь|$"I$ $ь|$"I$I$ь|$"I I ь|#0P9 c``pp"II*k ))=#/5:mc`pxx$"I$@cb#"I @cb$"I $cb$"I I$cb$"I$$cb$"A$A$cb%")$M&kMcUUU)"y;kMc UU-"ɟsMcUU+9j&kHJ0x^^6Iə3 */2M'3kW"۔s*$Ah?|U#$$|U!O|$!A4mь|$"A$H ь|$" $I$ь|# ,lk`Io c%%-= vHk`bp$"H$I$mcMcTVWW$"I$$cb$! $I$Mc [IkJ$"II$cb$"I$@$cb$"I$I$cb& ,"1MciJ@`ɐ (J Խ/"1II/"xz AɝLɐPr\9yIڑnc^5$$qMcU2"V|McUU*"?OsMcWUU$"$ $mcMcUuU$"I$ $cb$" $I$cb$ c:c:Mc,[K.h&NIJ731N%/"}?|WVV\$"I$I$|t$"I$I |t$" $@$|t$"I$A$|t$"I$ |t$" $I$|t$"AI |t$"H$A$|t#ڃ9P5tZXXxpϤks)8"9Z_5Mcxxxx$"H H$cb#"H$I kR$"$Icb#"A kR#"AkR#"A$H$cb$"$I cb$"I$ cb$"I $cb$"ɀ McR`딊M(J %;i|z# ?|,c_"@#'tZU"m$tZ_U DI$sRU/V?IZUUnkW Z_U(_pZU/O. bի&I$5{+ ? II$rh`4Hhkzzzx$"H$A$cb$"II$cb$"I$H$cb$"I$ $cb$"I$@cb#"I@kR$"II$cb$ hMcZ@ͽJiJ%55Խ= /IDIPhpx`6 q [\XxxI$k5QZ)% 0%%II$jrp0P hvXxr$"I$I$$"I$I5q$"@$I$5q$"A A$5q$"A$I$5q$"I$A$5q$"A$H$5q$"I$$5q$в*4􌒄`Jx$Lk61I\It7561#r>9u\Xxp$" I5q$"H I5q#"H $5q#"I$5q$"I$I$5q",q@@@`Lȫlk%%55/A!Bn #MR'r'3I$I$S|@S| @1/|hHMܰlk5:Ik)BUN}ɏ.Iڐ$I /U(I$-**I$l , )I$Oh _? *I$Qoxbkw!XIɟ$oZV. [_"@n'sZz(}$sRjW#ɝɗR 4B9>R cpxxX NkJJNkJJ$"II ,c c$"H$ $,c c$"A$I$,c c$"I$A$,c c5=ZJ`pxX2yp PhR)) /#?'|Mc\\\VkJ kJ A kJ$"I cb" ,MciJ@``ɝɗ.B <#9=Mcpxxx$"I$I$cb$"IA$cb$"@$H cb$"H I$cb$"I$H$cb$"I$I$cb$"H $cb%!6&q&cbh.z{HJ<9C׭-  8!$'^W4"O䖥UU0"$uUU,!V;Uӌ'=tҌLk6t`Vh0nkcb$h6V-cbꪪ z 4 c%UN) bU^` #0 msZT$ڵݚ-cb$"I$@,c c$ Ia'-cb"`8: c)Jz!LJ'+$}6{)Bx4O$msBU-$I.J_UI<-JU9I$K/HR7IHQh41mPk(W4 lo;QMch_U7oiJ /%56$9P#9xxxz$"A$I$5q" $A$5q$"I$I$5q$"@ $5q$"A$I$5q" P sp` u̍ܮmk,6@Un %"I$I$$$H5|x $ӌLk^U`$INLc^-9I$ɗ ֵ 8y]ioO'j>|3FiO'"I$K&$" I5q!I$E 4R I$I 4RI$I&4R II4R$6l۴-#(͚C',cx^ț|qwvϤLc5  Խ/Cs+1tI$sМWtt'$INO -$"A A$$"H$I$5q$6 <ӌU$m횶5q$uk5q$& 9!أ&s$ӌlkX\V=Iə˃/9Ir?mحМ}!I$|5n賗~pNҔO*T#0P /$Ӷ ۖN􌳄 $" $I$5q$"I$A$5q$"I$H$5q" 1ӌLc``Illk%%--9Iqh5"/??QMcX\^V$" $$cb$"I$Icb$"I$ $cb$"A I$cb#"H$Icb$" H$cb$"I$I cb#P9&Mc(JpxXXY Y ФR >zjѕpz$¦ ӔP|$Vkь|$"A$I$ь|$"H$H$ь|$"A $ь|$"I$ $ь|$"H$ $ь|$"I$$ь|!Ѓ%h"'p cXXX;ɕIҔ˃==//=##'{'McX\^^$"I$Acb$" $I$cb$"I$@$cb$"IH$cb$"IAcb$"H$I$cb$"I$I cb$"I$cb$6)Mc [hLIJח59IyUn}_-$hKk^ꨠ?OOKkU~.LcWV䏜LcU$O+cUMwpKk_"0In$Lk U# %ߑlk! ,C:+c``x_!II- c ="T/>ҔmcpxxX m$I$kJ!I$kJ!&i%Mc,[ 6lŖnMc,[$"I$Icb$"I @$cb$" A$cb",5Mc(B```p)1hR I I$Խ/1ps?9bfh{HBbr/zR %55Iɑ\pxrZh2"j>>0|Mc\\\X$"I I$cb$"I$I$cb$"I$I$cb$"I$I$cb$"I I$cb$"H$ $cb$"I$cb h>9,cHJXx7ɕ|򜫃*+)-4"#'j>Ӕ|^\\X$"I I|t$"I$ $|t$"I I$|t$"H$I|t$"II$|t$"H H$|t$"I @$|t$"H$ $|t" tZ```iV9Z 7xpkp```$"I$@ cb$"$I$cb$"A$Acb$"I$I$cb$"I$ $cb$"I$A$cb$" $Acb$"II$cb$"I$ cb$2Mc [LJNB'777$)I$sxp Hbm֯RU I~۶ ФbU(+I$_ {*5I.-V6IrI.+4y)60W3#$Ӕ|U1"'|UU':9|ZXXxPq{4A)1{~~~|'"I$H$kMcWVVT$"A$I cb$"I$$cb#"$IkR$"II$cb$"H Icb$"H$Hcb$!m$A"cb{"j&.IJ Ϥ) Q۵\|7"#5Uqmcxxp`# hMcRxI$k5 [ @$I$Τ0B9 u.+"N'5VVXX$" $I 5q$"I$I$5q$"A$I$5q$" $I$5q$"I$I$5q$ 4m$b'ӌ~" 86sz 9t$ӌLkxVI@lk%)_?1x16hiuprc$"I$I$$"I$A 5q$!)ҤI 5q$&h¶1$H8:,cz }$LcxWUItILk5%% .19 /'ڨ>T|4>|z@Z'LcW6NlkU$LczUɚn- lk%-6)B)BNM#p$J$0|sTVV#$I$0|sUU'I$qs UU(В$qsU+m$sU+X#Imt*U+m|8U(I$pkj?QR'%I$I u7ɕI1PZ2>r2'1 cX\\^ NkJJNkJJ$"I I$,c c$"II$,c c$"H$I ,c c# h6h6ncjb`&r,kJޖ3BtaQ{A%hkMcTVWUkJkJ!I$kJ HI$kJ",0Mc(B````9IdIo(J ) :$&h&mcXX\\$"I I$cb$"I$I$cb$"I$H$cb$"A$I$cb$"$$cb$"H$Icb$"I$H$cb$è*!Mc,[HHN(B9)BA׭o)"4TTVV$"I$$5q$"I$I 5q$(Q@MLc7"/P91-c`ppx$"H$H$,c c$]vm,c c_#Ri@. c5UUUqh Zp 5#M7nbUU^h"H[> cIJ^ иNs)J_U%uJU 4I/J-.'PNR>?I$9-p9In ips ~8)HqmcW7"$QMcWU)h?ݶsMcUUU XŶmMc,[$m6(Mc [jjK؊B'7773M`baa$!M i&5q$"@ I$5q$"H 5q$" $I$5q$"I I$5q$Ckۮ􌳄@|&5lkp.IUM55(X&Mkx\X$IOLcxW -I$IRs+9ISHn-9$ͫ'^W- CoUx_WU##XӌsXx&XO'/;* h4x$"II$$"I$I$5q$" A$5q$"I$I$5q$Àm61􌳄`"Ѣ$Lc`XV Jܹ}Lc5:IHnɟJ&O-%I$IԽp߾;I^k M&Mp3 $ ONUW^%"i$I$$!Ii45q!Ih$4R!IB&m4R 5ӌmk`p J܉Lk5)?1A6N 4#'I$^WU$Xi 􌑌x"O> hn􌀋I'Ф._/P 1Ҕ/ $4Q $@[t-vӌ$6I6. %b'ӌLkpX\V-V0{:)AV`|hhz+"x#?qMcXX\\$"I$I cb$CӵCucb!IR$I$kJ!TMvMc,[$"  I$cb$"H$I$cb$" I$cb!P=`&Mc(JxXXX !aJk))+* @$ԽΤhxD"U5>Ӕmc`px\ rh>OIJ_$ɑdIns7"#>#qmc\XXx$"I I$cb$"I$I cb$"A Icb$"I$H cb$" A$cb$"I$I$cb$"H$I$cb"P1McHJxp``nR 5#93|Xxpp$"I$I |t$"I$H$|t$" I$|t$"I$$|t$"I$H|t$"I$H$|t$"A$I$|t$"I$I|t$ |mc`` yZ %%%4A!Bsxj&"N 'H8kMcWVVT$" $I$cb$"I @ cb$"I$I$cb$"I$@$cb$"I$I cb$"A$I$cb$"  cb$"AA$cb#$L$I0Mc,[pp.IJ<I9 3Ž& 9Iri컠\61@60|"W6"$$|U3"X'ӌ|_UU*" IQ|UUU%"($M$|t$"I$I |t$"I$I|t# tZp``)ϤZ 3 I00~|xz/"{p|McVV\\$"I$@$cb$" A$cb$"I$I$cb$" I$cb$"I A$cb$" A$cb$"I $cb#9P5Mc(Jxxp&1Q+k @@ ԽϤlh`9fhikzzzx$!MS M$cb" Հ`McRx5 c*).ɑDI$Sm:k0#r>3u^xx`$"$I$5q$"I I5q$! m$5q$I6:Qz"H['ӌLk_6NPZz^ I$McRU m$,[RU,cRUMcRU,cZU@5=,[(BpppX<ɑќZ))++5"hh"QMc\\\\$"IIcb$"I$Icb$"I$Icb#"$H cb$"$ $cb$"I $cb#"IkR" McZ@ ȭ-HJ555%;`vh׭ $"H$I$$"H H5q$"A$I$5q# 0k``6IGPKk-=)7">#?1-cXX\\$"I$H$,c c#"$A$nkjR$"H H,c c#(i cZM>`-JJ 7:$) cW3OlIs x4 hZm-cW3"8-c~UU'#>nk)J^^6B)C{+"?MB'sMcxWWV$MIMc [.&#"H$cb$"H$@$cb$"I$Icb$!I"MMc [KJ (B75vh`/$"AA$5q$" A5q$" I$5q$"H$H$5q$!I$H&5q$I8:0|z 1$Lc``xWoy{s%-"tns֪(:I @  <$h8 ^5#XM?$~_U$"H$I$$"A$I5q#@Q`C?s7\*ɐX4- -5*"~4_^|x$"IH$5q$"I$I5q$h,r@! 5j$Lkx^W IqnLk%:ɗ0@M- ; 9׭`x^W}'s^-IIDsM8;;;##>>pxxx#hPW^xI$K=/+#P|nW^p%!NbĶӌ%"I&M5q A-Q|`&L䑌LcX\<I\I ֵ{=/=#X>k'׭px\^$"I$I$5q$"A$I5q$[S+nӌzꪪ"Zh UU$I$n;I$/Wb(@r{ Vhu$lkzW Hْ0lkՕ% Ϥnop5VgZxx$ @r$LcRx# .McR$$ ܖMcZ #Mc,[$"A$I$cb$" $ $cb$"I Icb$,-McR`H܏nHJ5%@I\ u=?-; m'40V*I Q?U+I$XQ('I$IO;Mm{ mv1KkW ;mK+cU Ķݶ [W6+cU ɝT c5>x*k`pp$"H$H mcMcv^u$"A$I$cb$" $I$cb$"I I$cb$"I A$cb$"I$H cb$"I $cb$" $cb$"II$cb&5#>Mc(J`pxX&IIo(J =#?5:40|bpxX$"I$I |t$"I$I$|t$"I$ |t&"1$I$0|t UUU%:1|tUUU+"䒿$r|UU+q|U/mtڨМZ /7> 9CҜN*K0#p'|$|Mc\\VW$"II$cb$" $I$cb$"I$I$cb$!H$I6Mc [ MsMc,[ IɐDMc,[$!hI&Mc c hr{(BޞI );II`^8#p2?|$Mc\^VW$9P1Mc(JXxp` mvwZ4Hqkxpp`$"I $cb$"I$I$cb$" $I cb$"I$I$cb$"A$I$cb$"H cb$"H$I$cb$ " McR` NHJ %6hi0rbc$"I$H$|t$"I I$|t$" $I$|t$"I$A |t$"IH$|t$"A$I$|t$"H$I$|t$" $A$|t$ò|sbzNR'775 /x|-"}?jsMcVT\\#"$Acb$"I$$cb$"I$I$cb$"A$@cb$!I4h$cb$$H¤:Mc [~$$X'McR_# I#'Mc(BW u$McHJzWHyn1HJ5- 7I2#?'z"'|x\\\$"H $|t$"A A$|t$"I$I|t$" $I|t$" I|t$"I$A$|t#"@$H$|t" tmk`@ ۸ʍϤZ %%5,ɑdI1Orr4">#9QMc\Xxx$"II$cb$"HI$cb$" $I$cb$"I I cb$" $ cb" I $Mc [$ۀ D6Mc ["1&Mc(B`px^M1R @  Խccs7B1C|~~~x("KJ$kMcVVTT" Mc [# imcZ^zI$k5Z 0v@!CuN '#":x$$H:ӌLk~!u$ӌLkWU$Iќlk~U IHLkU=I$/:m׭. <#(}$׭_U."?$Uӌx s&5mkXp. I3 +*-&Umkx^'ILkW It-0 1lkU+ir =I$IR<}-I$h&Q-c'm6*nu-I$IrpU5I$@Olo_4In $mps ^4!HqMcW5HO$QMcUU'#>3>s(Bx^^^!11 )!6aa򜑌@@@C H$H$|sTVVV1|mcI$I$1|mcI$I$1|mc@1|mcI$I$1|mc ts`&rPR^^۱1 =I$h11|zz) $ ncx*~$BW%I$INJU* ?INJU?-JU $nIJUU $߶n)JUU$oێ)JUU0ɝJ 3 I? mqs~($ cW '$l @{ZU" I$@{RUIH{RUmkI{RUUX&䯵{(B__8  ˃- 1"p.'z|Mc\\VV$" I cb$"I$I$cb$"A$I$cb$" $I$cb$"II$cb$"A H$cb$"II$cb%,.-McR@II-(J<zJ׭Ҕ$" $I$5q$"I$ $5q$"@ I$5q"59ӌLc`ppx7yPKk-) 2"#'{ c\\\V$"H$H$,c c$"I$ ,c c$"H$ $,c c$!-cbjpKJ5@ vXkbbr*"`q8k-cx$"AI$Mc c$"A$ $Mc c"99McHJZXXX49 Q{ *"$J;sMcVVVT$"I$I cb$"H$ $cb$"I$Icb$"I $cb$"A$A cbJx (B6`AO$"H$ $$"A$H$5q$ L$ӌ~# H8:sz%$ӌmk^UX$IМLk^U)#IФlk-7Inݿ 8 @ ~7":䶭~WU'"h&I$$"A$$5q$"II$5q$"H$ $5q$"A$I$5q"  hӌsx`Nu2;s+($@4 %"IH $3Ԍ$H&1Q`#Ь9t$ӌLcx^ə&IϤ,c5- ;I!@@׵M/ =#->t$׭x^W$"H$I$$ Z#ђHsxNІ\-4}2#CoXXr{$kukꪪ!b@ӌ0xI$r5Ϥ/="I䏜^xʢ$A.ӌ} 5b'ӌLkxXVɝ۷klk ?)ta&׭o +"p84\^w$"I$I 5q$"I$ $5q$" $I$5q$"I$ 5q%" I4􌯯$h I$p>I$Ir.)I$I ' 9Iɗq^< yЈsx\)I^? srU){Z_dɏ탪RU_RU^! @NkRUx%IvMcRU$$ McZ*# 9Mc(J``z 1(J BC!viua/"p?|\VWW%"I4I0|t)eU)"yQ|UU+"P y'q|/U+M| U+O R|*I$ q"/U,I$O/p m۶R:Iɕo`訾=!>McxxX\$"I I cb$"I$ cb$"II$cb$" I$cb$"A$A$cb$"@A$cb$"  I$cb$"I$H$cb$hk[4Mc [ `rs(J^ޖ;ɕ 4-+/ <#&|'|X\^V$" H$|t$"A$I$|t$"H$A|t$"I$I$|t$"H @$|t$"I|t$"I$I |t% ( -|,c` 뼉nR7%% ;!tafhs`b'"hҤMӤkMc\VWW$"I$$cb$"I$I$cb#"IA$cb$"$I$cb$!I4) cb IIkJ$ )McZ@HLHJ5% $ϽBP9j2d~'"hҤM$kMc^WWU# MciJ`` HJ 4vABsxzj&"N$L$kMcWWVT$"I$A$cb$" $I$cb$"I$A$cb$"I$H$cb$"I$ $cb$"I$I$cb$"*Mc [@ͿJ-IJ%776B1C.ɍ("$J&Q|UWWT$"I$ $|t$"$I|t#"@$H$Q|s$"IH$|t$"H$I$|t$"HI$|t$"I A$|t$!H (&0|sj&`&{ZX\7Iɑ샊3##'p&0Mc^\\\$]6Mc,c$$:McZ^!X?MciJ_!id$Mc(JU6OkHJU-$In(BUH%nHJU IVHJ 1I {ժ0I'9Mc./ɑdI1|5">Ӕ|\Xxp$"I$I$|t$" $I$|t$" $I|t$"AI$|t$"A$I |t$"I$$|t$"H$ $|t$ò|sb*/h&ZI$I$Rώ2 VhAkzzxh$"I I$mcMcUwT$"H$I$cb$!$E$cb#$:McZ~"V?Mc(J_ $$,c(J_X?I.IJU N (J51 I$I 0Lqa; H T0P~~|~."|'x'{McVV\\$"H$ $cb$ d;$mMc [#  kR^zz(X~2Z + K'NlkVH޺I0lkUկ"Ф{:I$ 1׭UU%<e$׭n5<$8~$׭zWU-"yh9Ӝmcx^)OR__9yZ7_?mc^W/X$0|Mc_UU#$I$kMc|UUUI$I$kJkJ؃=X%Mc(BXXXX&JDI1 )#5aaq@@@C M$M$|sVVVW @$sk Icsk 'sk I$skҠJsk & ,s [` HɛR5:II1?X/>k2'ӔMcx\^'I$kMc UU(жI$sMcUU(Pr$sMcU-M|McU-D{mcU3O"mpk(U-I IkU+IR?ЊR_5IҜ-2,2-{'0Mc\VV$I$kMcUUU&`kMcUU(ϟ$sMcUU(q'k(J;9C)B탏*"x}R'x^^'"h$I$5ӌ$"H$I 5q$"I$I$5q$"I$A$5q$"I$I$5q$"I$A$5q$"I H$5q$38M􌲌`!#Xͳsx`&\I$˃*/)&ij-0|B!/&L$Lc`XV ɝwmLk5 :ə0@׭n';$ :t$׭x^W$"H$a$$"I$I$5q$!I"@5q%f$Frӌ%/*,#UazU$"A$A$5q$k]vӌzꪪ# c@Q^xI$bϤP#5I$||" HݶФLc5;I ׵%>#>'x\^W$" $ $5q$"A I$5q$" $I5q$"I H$5q$"I $5q$"I $5q#"H$$5q#Z͐ qx` k+7I$I( p< )A2pl4#h'L$QMc\^VW'"-vI6kMc UU+"dsMc U*X#TsMc U*  Ak U+ IR?(k)$hZ^ -iO탪RUzPB'cN(B_W k>JT|`xx$"$A$|t$" H$|t$"H$$|t$"IH$|t$"I$A|t$"$I$|t*)"%O$Q|UU+!Pr?rs+)Ps$0R;I 9CҜ- 4"p"'?QMc\^VW$"I$Acb$"I$I$cb#"I $kR$" $ $cb$"$I$cb$"A$I$cb$"IA$cb$"H$Hcb$.,McR`Hɟ-IJ5%%91Bd`4. +"ǾQ|TTWW$"I I$|t$" @ |t#"I$|t$" $H$|t$|s h!iI|s$"II$|t"5%tZ`pxXivR 4 v$ [x\# MwLcR*^# ݔMcR*#$AMc [$!I$ Mc [ $" $cb$"I$ $cb$"H$I$cb#0McHJ`Iɐ(J%% mۤmrJ<vkbpx$"A Icb$"ȐHMcZ@ʍn(B%7741 ɐϤ0|xzr."|z>sMcVV\\$"H$I$cb$" $Icb$"I$I cb$"H$A cb$"I$A$cb$"II$cb$"A$I$Mc [ r&`=,c(J4IҔ %-/#z$h&|VV\\$"I$I$|t$"I$I |t$" $H$|t$"H$$|t$" $ $|t$$A$:|kz#>tZ~"$sZ^pIoZו5 &ɑ|INmc1S'0J^^IIJWU+М$oiJUU I0 Ϥ(JUIڵ01bժqKd9a=&I$ oV5IܦP 8Imk_9"'mc_U*#:#6siJ^^ao1{6 XhiҔ1|p``$"I I$|t$"II$|t$"I$I$|t$"H$ $|t$"HI$|t$"H$I$|t$"A$A |t$"H$I|t#b>5sZXxp@6r{ 2!P{~xxp'چmЦ>kZ\#H['Mc(B_$N$k(J~U5P$IN(B_U-I$YHJU-2I$k ob9IwHkx6@8qkxW0 536siJxzz0QZ 8Id0^~R`3">QMc^\\X$"@H$cb$ @5McRx!Ю>Ms(Bz^57ɓNHJ% 8I> s*^^I$>1s;P@-U;"$WU)"4W]#"H @5q$"I A$5q$"I$ $5q#"I I5q$mSC׮ꪪ؏%LkXX$@&rM*+I$IW@Ih|(x?$ }$Ӕmcx^U'"H&i$kMcX_UU$Ȑ&XMcR` uL?.iJ 7%t@!-nc_~#I$M$nk-cUUW\AkJ$kJ@kJX%X%,c(BXXXX1- 4``3qcbbbIskX+׭ӌxxxx$"H$I$5q$"A I 5q$۶ؼ-􌳄@pK$/Lk9 vhHqMkbb`$"H$@nckb$"I I$,c c$"H$I ,c c$"HI$,c c# , c(J``6II.J 8"=>McxxX\$"I I cb$" $H$cb$"A$ cb#0,McHJ````4IPHJ) ) 2"&h&0|Mc\\\\$"A$I$cb$"H$H$cb$"I$ cb$"I$ $cb$"I$I$cbh&h&,c(B31Cɖu $:|$LkxV HmnLcW"7I$k S{5I @n-9$'zW/36$OU|`h~N !t`(,"N'4|^W]$"I$H5q$"I$I$5q$"I$I$5q$"$UQ$" $I$5q$"H$H$5q$"H$H$5q" 5mk`xtIn1lk%%-IɛrϤs_|<h Ҕk`px%"H&IڤkMcVWUW$"I$Icb$"II$cb$"A$I$cb%" &i$mcMc/]]]'"퐴I&kMc+UU*"O'sMcUU' 1b'kHJx^i1Ks)) =ɕ T7$;">r'|X\^V#"Q|s$"I$A |t$"I$I |t$"I$H$|t$"I $|t$" $H |t$"$ |t$h )|mc`HΟ.R75<)afh{bb'"hM$kMcTTWW$"I H$cb$"I$A$cb$"H$I$cb$" $cb$"H cb$"A$I$cb$"I$I$cb$"I cb# @9Mc(J``xo(J ="\R4|`px$"IH$|t$"H I$|t#"A$I|t$"I I |t$"I I$|t$" H$|t$" $I|t$!MI$0|s `&j'sZXX8I$I, #2BI? М{x\($NLcx ->oZUp$RUUroRUU Mv,[R ^" McR*$AMcZ%5&Mc(B`px^)PHJ =IDɑR?#>r'ӔMcxX\^$"I$I$cb$!MMжcbs.h&NIJ6ɑ\IФO[loB5${"'=Qmc^\\X$"I$I$cb$"I$@cb$" $$cb$" I$cb$"HI cb#"H $kR$M86Mc [!5P9Mc(Jxxpz2ɑ\əoR5"r>:Ӕ|\\Xx$"I$ $|t$"II$|t$ 5|s Z" >tZ~#$sR~['IZW NoZU+ 577Ҝ c*4ւ ͱLk*`mHQ c CR];`̃^"I$ I$I$: cIr"~6ɟqGp7hs_6$'mc~W4"и$PMc~UU'"$I4kMchWUU$"IA$cb#P MciJp` ФR -%3B9 phį)"t>Q|WWT\$" I$|t$" $I$|t$"I$ $|t$"AI|t$!I E4|t tk.'$"I$H |t" tZ``)Z %I$szj*`M'oiJWWIϤHJU-s*7I15𤐔W]9$ms^;"'mc_U1"]|Mc_UU$"H$ $mcMc|WuU$ɒ(hMcR` 1iJ %"IdI0ozbJ8"#:9qMcXxxx#h,:Mc(Bx'I.(B_W-:IyupR- ;!0`Шkx^1"_;$|Mcx_WU#H/Mc5UUU!InLc" ӌ  /$ R􌒄-#"@$I5q#"HA 5q$"I$I$5q$!I&)$5q"h,:ӌLcXh$INLc\% @I$I 2@`A&s`^<"XO䒔mcx^UU$"$I$cb$"A$I$cb$B ) IMc [@ S:,[iJXzz#'NiJ "h/McW__\v<,[Zd$,[Z$I,[RU`&k& [BXXXXii2 ;4Pbccj`skI IskU/I$@skU IҖskUIҶskU!IRג$hskUm2'H䰔RWח  Qm-< C)B1|hj'x'L$sMcTVVW@kJ @kJI$I$kJ ɖlɐlkJ$"I $cb$"H I cb#(,,McZ`HLHJ5%6 f(kbbp H$A$Mc [ I$IkJ I$IkJ!I$IkJ I$$kJ ۺ.!Mc [@@HNIJ555:ID@nbb-'.s\-$ OZW-hoRU nkINRUжy RUUж$-RUU~` iJUUВɟ$siJU!9u',c(J`z__=IdIsHR)))+7&h'׭X\\\ A4R$"I A$5q%*.-s`Γə Lk%%%:#S9>r-cppxX$"II ,c c$"I I$,c c$"AI$,c c$" $I$,c c"0P9 cB``pp9Ip(R )5#h'p'QMc\\\\$"$A$cb$"I$I$cb$"II$cb% #,MciJ```2yg(J 4"h&>0Mc\XXX$"I$ $cb$:Mc [$A>McZ_#?MciJ_"Id'McHJU`2'N$+c(B5I$IY5O$y5-Uw/5io 7#<^U0"XmuUU%"EI$$[ӵ][`ꪪ9ҌmkX.9 U  +"'z?TWV^\$" $I5q$"I I5q$"IA$5q$"II5q$"H 5q$"I I$5q$5q`"'LkzWJ}Lk):I @׭n7 :#?`\W*5PXzzM'6|)%&@ M '"I$m&$"I$I$5q$"I $5q$"I$I5q$"A$I$5q$"I$I$5q$"I A$5q#@(1|`!P&M䒌LcpX֕ 0Qs * ɑ\Irn:Ъpx{}$"I$ $$"I$I5q$"I$H$5q$" I$5q$"I$I$5q$"II5q$"I$A 5q$$a*10|`X"'M䲔LcX^5!Qs =əXIRR>#أ>s'mcx\^V$" Hcb$"@H cb$"I$A$cb$"I$I$cb$"H$I$cb$" $I$cb"` (McZ`HMnHJ5%)ڵ]uR<1BVhTbc*"ۍ?r|TWWU$"I$A$|t#"H$I$Q|s$"H$A$|t#"I H|t$"A|t$"I$I |t$"AI$|t# P9sR``py)uZ 9 X,cz^\$4IMcR$$AsMc [$!Ih cb$"I$ $cb#"H$cb$"I$I cb$" $I$cb$"I$A$cb$"I$I$cb#&j2'Lc(JXXܞ>ɗXIjs)-+;##''|X\^V$"I$ $|t$"I$A |t$"I$I |t$"I$A$|t$"I$ |t$"A$I |t$"I$H$|t $a,(smc@HMܯR5%ACN*&<$'M$qMc\VW*"$rI}'kMc*UU)PI{mc U(O k*UU)I$@sUI$I>Ϥlkz py?RWɓ$RUU H۶HJU/ rA Cvhs`."?}|Mc\VWU$"I$I$cb$"I$Icb"9P1Mc(JXxppJk3+Pmcxpp`$"II$cb$" $I$cb$"I I$cb$غ6Mc,c#6:McRz!hc'McHJzUOߌk(J_+ X7 HJU+ə ohJ  2;ŚӔ|pprz" >t,c^"$sZ~U[?I{R_ M$NZU+5w7Ҝb*4IRH/4@H0| W4#$Ӕ|WU+2ۼQmc`jۊZ %7 II+~1I$m rU8I@00_7 kW9$$mc~WU+"m~sMcWUU$"I$I$cb$" $Icb$" $I$cb$"I$I cb#"Ȑ*Mc [`t&iJ%54 ɑ|Ҝm32"{2|V\\X#"A$|t$"I$ $|t$"I$I$|t$"I$I$|t$"I |t$$A@|k$"I@$|t$" tmk` ȋZ%5iiPK0I$Irb;IHP¸^9 @жk_9$O$qmc~WU+"sMcWUU$"I$I$cb$"I@$cb$"I cb$!A&A cb#s&5OiJ__AM{*)2(S5P)Bpxh}-HJW% ;IX@@ k*:#'mc^W+"O'sMc\WUU$"II$cb$"I H cb#"a Mc,c!{5@NLc)U!Sλ&Js *# nO+$"$A$5q$!iI$!X3'Lkx^p.,cֵ @I`AҜ냽 ?h;Ӕmkx_1#?O$|McxWUU$"I $cb$"H @$cb$"$$cb$"H$A$cb  Mc [h)B'_Lnmk\p#O k [W^^,cZUΖ,cZUl&`& [BXii2!),I$kzzж$탫RWRUж${ZUж${ZUжs [U ?sZkʙ R5%%+ rϤrOp;Xk```H$H$Mc [ kJkJ kJ I$ kJ$"AI$cb$"A$ cb! Ȁ,MciJ``,II(B <"=>McpxxX#!I$ $Mc [*$"I A$cb$"I$I$cb$"II$cb$"A$H$cb$ .(McR@@  (J%%;$/59mcppp(";I8kMcUU-"py'sMc UU/"'sMcUU-" ?sMc U. P%i{McU* mnc U.O"m0INkU,INsU,I$ oZ ^=Iɑ׵N5?=53h'r"'\\\\$p ӌ$" $I$5q" 5mk```p6IɑXOLk- )7 b'rRW%A$ cjRU$A$ cjRU%$A$$ cjRU%$I$$ cRU"&jR'-cJXX^W9ɐpKk x/ '$siJW" I$MciJU# m$MciJU" m$MciJU (c;McHJU\ɗHJ 5(O'0|iJ^W Is(BU/'I(BU oHJUU4II^ .(JU/3$. OR` oݺpϤR  99B׭' :$и}$^W-"$U|UUU$"I$A$$"H$H$5q$"I I$5q$"I$I$5q" Mkx`-DI3ks/=.#=3UXxp#"I I5q$" I 5q$"I$I$5q$"$$5q$$I&2!@::mk^='O䑌Lk^U3I$ sKk 69h-8"$~_W$"H$I0$!E&Aӌzꪪ!  ӌ{^xp#Id~'ќ//)HA4%"I$I4$"A$I$5q$"I$I$5q$"A$I$5q$"I A5q#@5{`#&L䲄Lk`XVI-0`1s <Iĉ l& 6yZxx$POX'Ҕ-*g&$INp -%"I4H$$"I$$5q$" I$5q$"I I5q$"I$H$5q$mۢ@6! 5b2'ӌLk`pXV s RLk% I$@$x;)pBVhќs``,"p2?}sMc\VWW$"I$I$cb$"I$ $cb$"I$I$cb$"$I$cb$"I I$cb$"$I$cb# 5Mc(J``pOq ϤhJ% 1IIQSޞ=#5>U0|`xX\$"I$H$|t$"I$H$|t$"A$ |t$"II$|t$"I $|t$"H$I|t$"I$I$|t$!iMZ$0|s#`&r${RX\@I$ɛ) +8I'b m{`|\&}ZW NZUU PN{RU#0 .McR$IMcZ $ 6Mc,c#$" $I$cb$"H$I$cb$& -McZ@xL.HJ55<1Bfh4/ *"p';r|TVWU$" $H$|t$"I$I$|t$"H$I$|t#"II |t$"I$I$|t$"I$I|t$!IR$i 0|s# P9sR``pIqZ @!vi8Ҝkbp'"H$M$kMcTVWU$"@$I$cb$" $ $cb$"I I kMcUUU)"y{IJ<$ɝ䏜kzpjlNZW*3Iw kի*5I~sH91%HHӔ0| _7"$|WU,"jIr|WUU$"H$I|t$"I$I |t$R |sj"!t9Z^0ɕIN}>"Ѣ?>ӔkZ^0"J|Mc_UU%"hI$kMc^UUU$"I$H$cb$" I$cb$"II$cb$"$I$cb$"I$I cb$" I$cb$[ӮZMc [9P,ciJxpߎ c 6!TӔ|xxp`$"I$|t$"I$A$|t$"I$A$|t$"I$A$|t$!M"|t$ 6:|mcz#H'sZW 8NsZzWL9)AZ5-+II$mBKj1jz7"XM~$QMc^WW%"hIkMc^UUU$"H$I cb$"I$I$cb$"I$cb$"I$$cb$"I$ cb$"I$ $cb$P MciJp` nvHJ %'Rܨ; h{/ p<"'Mcx_U$"H$H$kMc^UUU$"H I$cb$"A$A$cb$"I$I cb$"I Icb#!H$ $Mc [# ZHLc5UUU yOLc #  *"͢C'ӌmk`XVMɟLc׵>IhҔ̃`=# }$mcx^U("۸IĎkMc\WUU$"H$I cb$"I Icb$"I I$cb$"I$A$cb$"I$Icb I$H$kJh ,[iJzO':oiJ %&t1kWV^p$o?kMcUWW\Mc,[`&`&,[B;IIM.%7IIЦkV. Im/kU- ImkU, Im|mk"U+Im|mkU+ID{mc"U*I@D{mcꀪU' P9s(Bxz{<U/5>ӔmcppxXkJkJ@kJkJ! 1ŽkJ$"HI cb$" $A$cb 0@9,c(B``pp7I 'J)) 4 >r2'QMcX\\^" I$IMc [*$"I$ $cb$"HI$cb$" $Acb$"H$I$cb" ,MciJ```)II.(J :"mcxxXX$"I $cb$"I$Icb$"H$H$cb$"AI cb ES$M$kJHkJ" I8Mc [ &"&I8kMc*UUU'#&j&kHJX^^;Iɐ ---/h"'r'v\\TV!4R$"H$A$5q"=X&ӌLcpXXXIϤsY %}I(JW-I")JU1IJU1 I$IRU 4$+H{iRU.~?$ {IJ=9$Z#)8$Ip cU/${*k / I${ks}1I H|{0Ib @O{-]U'I^?XoR*B$qA˃ʈ7IIq^5=$mPk_4!HkQmcU4"~$QMc_U.=kB's(B`X^1@R81C',"'&UVV\\$"AI$5q$"I$I 5q$"H$I$5q$"I@ 5q$"I$A$5q$"&@Q`roLc'6-t@!U- ("l&$" $H 5q$-m&#H8:mkz (}䳌LkxW%N2lkU*6IS@̃-7"$_? zW1#?$ux_WU$"I$ $$"I$I$5q$"H$I$5q$P#&I􌒄`3?{\x*- 5*">4~~x$"@$I 5q$"I$ 5q$"IH 5q"@5sxP&NҔLcx^׵ iϤlk% 9IP׵/;X׭x^-`Cl۶Uxz # |x`|O'. #0U^^r%"I$H&$"I$I$5q$" $I$5q$"I H 5q"9ӌmk`X HyLk% i # 0IIr=$?5>ӔkpxX\$"A I$cb$"I$I$cb$"A$I$cb$" $H cb$"I$Icb$"H$I$cb$!@i$cb!&j"',cHJXXܖb֭js >BTМ<:"3'|?|\^VW$"I$I$|t# II$Q|mk$"A I|t$"A A$|t$"I$I|t#"A$A Q|s$"I$I|t% &,-t,c`HIoR5% C9Bf탏cc1"`I?1mcWUU("NΜ8kMcU'  {nc+'IR? -kU%~.R~*'.RU_ r.RU_# I.McR*^$$AMcR*",1McIJ`z*ɟɗOHJ% <"=>41|bpx^$" $A$|t$"I$I |t$"I I$|t$"HI$|t#"I I$Q|s$"I$ $|t$"II|t$-:,|sX&r$sRXX=Iɕ{ @#R:3?mcxx\^$"I$H cb$"A$I cb$"I$I cb$"IAcb#"H  kR$"A$Icb$"H$Icb#0Mc(J`` xq(J BɑC3ok<#h'|$Mc\^VW$"A$A$cb$"I$H cb$"I$ $cb$ aMcR@ʍ܏IJ%509 Ixc`&s$kIJxVX$yl.HJWU)I.HJի2pKs6 mPk*^5$$qmc_U1"$|Mc_UU&"p$q$kMc~UUU"5MciJXxp` nuoۯR :17@4pb{7"6'|_U-"XN䒄|WUU$"I$A$|t$"II$|t$"I$I |t$"I$ |t$"II$|t$"I$$|t#P tZx`/19Z 2VhBnczz%"M&M$kMcUWWV$"I$I$cb$" $I$cb$"I$ $cb$"I$I$cb$"H$$cb$"I$Icb$"I$I cb$" $I$cb$ Z#,McRx ۷ۏR %54vaBҔ/bʋ%"IM$0|tT$!I &|t$ &:|kz#H['sZW!6N$sRW5X$InnR_U-I}oZի7I0󜪃 7 Mi0`^Ф,c 6'K9X|hppp+"|?>sMcWV\\#"I$I kR$" $ $cb$"  I$cb @ I$kJ$"I$cb$"AIcb$"I$I$cb$"$AMc [?j>oiJ%>tќZ8#3?}'rmcx^WW$"I$I$cb#" A$kR$"A$Icb$"A$A$cb$"I$I$cb$"I$Icb$"H$I$cb$"I$Icb",Mc [ ` $R/U mk1s." <I\I$qo[|j<$>s?mcx^_$"@$I$mcMcXWUW$"I Icb$"@$Icb$"I $cb$"I$ $cb$" I$cb$"I$ $cb Mt Mc,[Mc,[ꪪ9,ciJx` II$nR &HApMc__~I$I&Mc [`&`& [Bؘ6I ,sr|p+x'x'|,[\\\\kJkJ kJI$I$kJH kJI$I$kJ 99Mc(BXXXX7IDIks );>3'McXX\\kJkJkJ kJ!iI$kJ$"I$I$cb$"HA$cb!=`&Lc(JXXX8C1Bqjs ,!x$M$sMc\TVW! @ kR$"I$H$cb$"I Hcb$"I$I$cb$" I$cb",0Mc(J```p9IGJ-)))8#`>j"'qMcXX\\$"A$A cb$"II$cb$"I$I$cb I$H$kJI$I$kJkJ! ؎kJ$"A$I$cbh'p'lk(B>@9C *p'{'UTTVV IIԌ$&Aۨ1ӌjh.'KpLcܔrABj{zz3#${-cWU/"ж${-cUU."Ж<{ cUU-"s cUU, 1[1sIJ`zzz9pHJ )-8">jQMc\\X)"Nl'kMcUUU'"$M$kMcUUU'"ؖI$kMcUUU'"4I$kMcUUUh,jls(B>ij{jin."X$sMcWWW%"@I&kMcZUUU$"A$A$cb#@ Mc [@pL䰜HJח5I  6IIdФ>2"r?^\\X$"I $5q$"I$H5q$"HI$5q$"I$H$5q$"I$I$5q$"I I$5q"j>1ӌLkXp`,ɐI3{ ++-bP 5Uӌp"@8:k^ &N$LkxWj$moLkW- .w-T{8IT䖭n5%}9#X׭x^_U&"p8q'TUUU$"II$5q$"I$H5q#" $H 5q$"I$I$5q$"I$I$5q$ Z͒ h|x`}'>s-'*T@ 5N '"I$M$6L(2󌲄`&$&ӌLc^$ɟLk^W-!s 7@/7#'׭x^W)"p?<hVUU$"I$$5q#@Q` }>bє{xII$.$ OUW^$"IH$$" I5q" @ ,s``$NLk\%1i$@q) I I$Խ/;I 2q|7#h&t$Mc\^VW$"I$A cb$"H$I$cb$!M$M$Mc ["@Mc [$!micb$"I$ $cb$$,-McR`H͟N(J75%I$IQ;t`f30|z' ,Ps$"H I$|t# I4m4Q|mk" A$I$Q|mk$"I$I|t$"I$I|t$"I $|t$"H$A|t!4%sR``pX>IIМb)+C#U9&Ҕmk`pX\%"HI$cb I$I kJ# $m$Mc [$PlM:k,[*&H mkMcU& ` .mc+U&IR?nkU($~nLk\`ZU~ C'~~ϜiJUU(ФZ *Ǻ$omkW\ Iw|Lc\$$I喻|Mc$Hw|s$"IA$|t$"I$I$|t$"I$ $|t$"II|t"  ,| [`HɝۏR5% < )AҜ-/B3#p}$QMc\VWW$" $A cb$"@$I$cb$"I$I cb$"$H$cb$"I$ $cb" ̀McRpp$PIMc ["P9`&Lc(JpXX$@ c @th(Ҝk`p'"H$I$kMcTVWU#"A$kR$"I$I$cb$" $I$cb$]hvMc [|.hnIJ1{j9O/%Ҝ{7 $mps ^5$m$Qmc~U3"[$|Mc~UU'"h$i$kMcxUUU$"I$I cb$"IIcb#"H kR$#ɀhMcR`ʍniJ %51B1 ӔNaɎ)"Ok?R|UWWT$"II$|t$"II$|t$"H$I$|t$"H$I$|t$"I$H$|t$"I$I$|t$"I $|t$"&A|k`ͿjoZ%7/9 d|^rpj-"|瘏9|McW^^X$" $Icb$"IH$cb$"HHcb$"IH$cb$"I$$cb$"I$I$cb$"I$H$cb$"I$Icb$3 Mc [-iJ701 9X +(i:rZ^#~$sZWX$IФR_UIФZU$I$Ĩ-*:I @4 9 @8Q xW9!$|~WU'"6I$P|\UUU!j">sZxp"|ɝϤs誫.X Qmc^Zzx$" I$cb$"H$I$cb$"I$Icb" I$I$Mc [$"II cb$"I$H$cb$"H$Icb$"$@cb! MciJXx`$OR , &iAmc^^z%"iҤI4mcMc]Wx$"I @$cb$"I$A$cb$"AI$cb$"I$H$cb$"AH$cb#"A H$cb$I-McZ` 5j$Mc(Jx^ ɟ߿}.(J :I?]МMc(XmӶhQN"-,A9ϤsV\Xp+"?sMcUWV\$"II$cb$" $I$cb$"I$H$cb$"I$H cb$"@$I$cb$"II$cb!H$N$kJkJ`1,[R`KNB7%9I䯜kX`&|&CsMcW^zx`&h&+c(B5ɐ Ӕ +x'J$sMcTTTVkJkJkJkJkJI$I$kJ؃=؃=Mc(BXXXX6II\s 0'0|,c\\\V$Mc [U$Mc [U$Mc [U$$Mc [U#0 $Mc [$ $Mc [$$I:McZhJoHJח8io [~x$m$mcIJU#m$McHJU#m$McHJU#i$McHJU" Im$mc(JU#MvMcHJ#P9lR'Lc(Bpx^_9 LpZ 4#p"'z'0|Mc\\\^$" $ cb$" $Icb$!H@&cbH$I$kJkJ@ kJ!kJ$ 6m:c8Mc [HJ-(B;1B)Bo% >Q|x I[?ӌmk_"&~$,cWHXIϤlk5% I$I$金ck9!B)B1{zx~|("H$$nk cVVTT#"$I,c c$"I @$,c c$" $I$,c c#  cjR`@!_ B 8##>=QMcxxxp$" $I$cb$"I$  cb$"I$A$cb$"I$H$cb&j"&>Mc(JXX8)C9Cq̃ώ("H"'p$kMcVVTT$"II$cb#"@ kR"0McHJ``IɐϤ(J% II$Խ0 2^~p5"9PSxxp`$"I$ $5q$"A$I$5q#" $I$5q$"I$I$5q$"I$H 5q$"I$H$5q" s``ilɖtϤLk-%+5sSszZHؿϤLkU9I$g tj{*69Uh5 5cӌ`x~_s>Ր{*7(XM '=(#M$k%$" $I$5q$" $I$5q$"  5q$"H$$5q$"I$I 5q# R4$4rs">XӌsXx`' \O'2̃/?(hк5kp!::N$,cxWHdYmФLkU 8I nU5 6@i 9"XM$x^WU%"M$I$$"$A$5q$"I$I$5q$"II5q#ZH1|x~B?ѯ| ^I$n߂$@󔏔 ;%i1P`#P#>tӌlkpXVɔI0 Qs% $/̏n I$ɓzV7tn䐔mkxp$жmkRVDNMcZd$Mc,[!IҶ&aMc,[!Im6MMc,[$"II$cb$"I $cb" 5Mc(J``xI m(J- 8I$S_{/ ךM:spp rwMc^#0Iw|Mc W  wsk#ێ{t$"I$I |t$"I$I$|t$" $A$|t#ۀ 5|sjjh"L{Rܜ7?I1AӔ 56#h2'M$qMc\^WW!Ҍ5Mc,[ꪪ$Mc [dI-Mc,[K,[RXV ,[Z+/+ I$kJP|mcZW^'ι2kR~=Ϥ(B -%=IIRlߐ@-)TQx\'o0|>U)'bho^+I>LkU*p$MMcU!Pn0LcUx% 4I-t,c$$w|k $];`m|s"5X&sZ`pX\Z Ah Ҝk`px%"H$imcMcV_$" $Icb$"I$Icb$"I$I$cb$"I$Icb$"I I$cb!`McR`$ I(Mc [pL䐜HJח5@IImq/4@#>3'mcxX\^$"A$ cb$"I$H$cb$"A $cb$"I$cb$"I$ $cb"`=5Mc(JXxpPo隮Ks8dhisxxx)"`ǾkMcWUW$"I$I$cb$"A $cb$"I$ $cb$"@$Icb$"I$Acb$"A$ $cb$vmMc,cs&`9iJ_0 I˃+1#s"'`9|^\Xx$"I$ |t$"I$  |t$"A I$|t$"I$A|t$"II$|t$"I$I$|t$"I$H$|t$"I$I$|t&9RsZx`qnZ 1 8ha/ncxx`%"Ih&cb$"A I$cb$"I$ $cb$"AH$cb$"I cb$"A$I$cb$"I$I cb$" I cb$"I$ $cb! MciJXx`ϤR x߶mےZW M@1ks/I$I2\;IwH4l 7!@80|xW8"K;|~UU&"'I0|thZU$"I$ |t$"A $|t% R#*tZ` ۊ ߏZ %5.ts~~x,"S??sMcWW^\$"A$I$cb$"I$ cb$"I$ $cb#"$@ kR#"@HkR$"I I$cb$"I$@$cb$(AMcR`ʍ߯iJ%%55))s^xp+">/sMcW^xx$"I$A$cb$"I$H$cb$" $ cb$"H$Hcb$"I$Icb$A(1McZ`"-:t,cBx71ɟ.HJ ?9qBs x93:qZX^_WϜZ %'II${`0mionc__~|%"i4i$mcMc]u_\$"I$ $cb$"H$cb$" $I$cb$"II$cb$"A$A cbH$H$Mc,[@5,[(BxP3'ON(B_W%0I$IHJ%5I'ۃ,c'BkV\Zh"j&h&Lc(B79C1C %H$K$kMcTTTT kJ kJ$kJ@kJ kJ@kJ ؃=؃=Mc(BXXXX{ X>$.iJ_W `,NiJUU m$iJUU u$niJUU ?m$-iJUU `m$iJUU `m$ iJUU*:kNiJUU<I$ɝHJ5*:ɟ$n I{b1$PksU2$ks]0$/s2I$A0{_)O?X:.Z67;Id@̃U+_?4*sU,gZ.:]WX+iA{Mc^~%"i$H4cb$"IIcb I$I$kJkJkJ@kJ II$kJ$,(Mc [@HMiJ5557!;T{bz`$МLc~UI tϤLcU@I$It˃ < ׭.``چmnQ{);1C1Cx~z~)"˃'r?nk cTTTT$"I$ $,c c$"A$$,c c$"I$I,c c$ cZ@@ Lp (J%%5"5RCQMcppp`$"$A$cb$"I$I$cb$"HI$cb$"IHcb#؃95Mc(BXxxp5 Pk  /"{'z'sMcVVT\$"I$I cb$"I$Icb!@9X&Mc(BpxX\ 0 rZ  IA$ԽqVEEhR$m&Ϥj8fhic$"I$I $"I 5q$"I$I$5q$"I$$5q$&mI6􌒄h&$i:ӌmk^<:NLkzUImlk%% 2I$Iz[ 4y hn 5$^W*X'O$UxWUU @$I$5Q  `ӌsx`NP't:s+7$4@M ۖd[-ӌ (I$4R$"HI$5q$"HA$5q$"A$A$5q#O?$Iӄ 5ӌsx0xLc %5%DmkXin۶ 1샥 ;ITPA׵׵ 8#_維xW-#`];N8U~WU$"$I$$"I$@5q$"I$5q$"IH$5q$"I$H$5q$"I$A$5q#р@|xNR'|)-R\\ L:w2kz^XIN$ 1Lk-I$ $ӽ@I$IzD!=X-mcx\'|"$.mk"UU". [x" -ZUV"PNw{RW" 唻McR# HoMc [-$"I$ $cb$k׶5Mc [&r$sHJ^^(IIks #?VŠT0|px* XCmmq|UU&| 0| UU&omk~<-,c^PNv/McW$ 4 .|Lc $$r|k #"I$|s# ,tZ`O$ɟ Z5% = Vk`pX$"H$I$mcMcTWWU!L$FBkJI$IkJ kJ mS튭Mc,[ꪪ!'xMc,[kꪫ"A$HMc,[#j$U$IMc [#5#&Mc(J`pXXɐYۭФHJ < !d`U+c3#pN|\VWU$!E$H |t*$m1|s_(R#DrQt )O"*ot.?a{  c~p'LcUVВ$,cUWpIRו/Cə\IOҜn0?#&s'mcX\^V$"I$I$cb$"I$Hcb$"A I$cb$"II cb$"A cb$"H$I$cb$"I Icb# 1Mc(J``I (J% CɐC)i.Kb1"?0|Mc\VWW$" $I$cb$"H$I cb# $$McRU"۔McR% HMcZ $PMcIJp``jِϤ(B 4)Kɐs~x-#M$r:sMcWV\\$"$I$cb$" $I$cb$"A $cb$"I$I$cb$"I$I cb$"I$ $cb$" $H$cb"P McHJxp` nynhJ 0 FhA0|pp`$" $ |t$"I$I$|t$"I$I$|t$"I$I|t$"H$I |t$"A$ $|t$" $I$|t$"I$I|t#@|Mc`K珜Z '0!ɐkz/"~?>{McWW^\$"I$I$cb$"A$I$cb#"@ cb$"I$ cb$"I I$cb$"I$ $cb$"H$ $cb$"H$I$cb%#̒(iMcR`毜iJ %5I $G@IXKSϜ><h40|xW4 M'|_UU"$$|sU$ m6$0|s$!iI&0|s$"I$I |t @S 6{ l tsj5/R7z&I\I䯤{xÉ+>R|Mc^\xp@$I$kJIIkJ$" $ $cb$"IIcb$"$A$cb$"I$I cb#H$1Mc [p" hX'MciJ_pML{HJ / )t) sWV^x)"wkkMcUW^\$"HI$cb$"H$Icb$" $I$cb"0McR`!->|$sHJz^W9I$hR*;`A.cx6#'O$0 cx^WU$!E&I -cbꪪ" MkR^zz t0b -,)ɑ1{^Xph-"}ڃsMcW^Xx$"@$I$cb$"I$I$cb$" $I$cb$"I$A$cb$hm(6Mc,chP&,[(B`^h$IM(BW% <I$I ќj)" :1P@Ҝkx^0:0|RX^N1Z"X=p(Bܘ51B)BMML#H$J$nk-cTTTT@kJ@kJI$I$kJkJI kJ@kJ؃=؃=Mc(BXXXX9I ɐL) -4'qMcV+m ,$|McU+m %|McU+m $$|McU+l|McU/#$ m|mcU/## d$|mcU1͚?>{iJz^; ɔLks+7"`;|'0McVV+"IsMcUU+"sMcWUU*"?wkMcWUU'T-6k,[LHJ77=׭&"8N$#Zӌsxxp( .k|)":bsMcW^zx A$I$kJkJ$kJI$I$kJkJ II$kJ$,,McR@KI (J%%A$ Ϥ"$r*z:IP@U%A$۶zW4 X3dMUs`h ׋ϤLc -%<9C9@0|xno)"<ȍ's cVTTT$" $I$,c c$"I$ $,c c$"I$A$,c c#$A-cbjꪪ(B%775XPkpb`b$"I$I$cb$"I$Acb$"I$I$Mc c"6McZx#P5S',c(Bp`p^5I\(J0"r'&|Mc\\\\$"II$cb$$h,)Mc [pL䏜(Bח5 Խ-=9A$I$ԽqUPDI$I$Խ/b|3!C9)"v'z 4_V\$" $I$5q#1Qh#iZ]'mkzWк>ILk^U%H֭ФLkU {* "8IT& @n? 8 'xW-X_?vxWUUH$I$5Q4RI$I$4R ӌ@t>Xӌs^x#ɐ\O'򜬃 .#l@蠀 I$M&5Q#" $5q$ڭm"ӌz" (6sz!t$Lc^U$ɟLk^U ɟs5 :I/ @Pz)&>Z63J dn'"H&h4$"I I$5q$" $I$5q$"HA5q$"I$I$5q$"I$$5q$"I$A$5q$"@$H5q$"I$I$5q  0ӌk` ( ylkIԽ0ݥԽ/$@$ӽ\v@BD{`4"?M$QMc\VWU%")$i$cb%"m IkMc&t̀NmcUU#Ik*-NZ_`䯜ZUUz# Mw{RUx"6MciJHɝnIJ5%=1Aun=/;#3?}$|X\VW$"H I$|t$"HI |t#Fl&|s?WW!`$Ios?UUI$P@m|UoI'ϤLk^*`$ФLcW!PNvOMcUx!@#:u$sR`x^;yb)) <##?'mcX\VW$"I$ $cb# I h$Mc [# I$IMc [ " A$I$Mc [ I $kJ! Mc,[" A$I$Mc [#i*-McZ`hMnHJW%;IɗTL:=#5>40|`pX\$"I A$|t$"I$I$|t$"HI$|t#!I$$0|s&"LI$0|t*UV& I0|t U' ` Ot 'IB? P+UU!I. I$@$rϤWOs<1Bthќ|br,"hNsMc\VWW$"HI$cb$" $I$cb$"I$ $cb$"I$A$cb$"I$I cb$"II$cb$! $I4cb!P=`&,c(JpXX ϤR BH'R^^&m$mc(JU# ImMcHJU" %MciJUIҮHJU`j'M(JU ?nݶ1RUW $m۶ϤHJUU )(B  0ɑdIQOP`x1">/0mc^\Xx$"I$Icb$"I$H$cb$" $Icb$"I$I$cb$"@$Icb$"II$cb$"I$I cb$#(`McZ`KoiJ%51) ň-"}|WV^\$"I$I$|t$"AI$|t$"I$I |t#"A HQ|s$"A$ $|t$"I$I$|t$"I$I$|t$m-ڶ|sꪪ"k">PsZp`%ɑI$Фs¢1` qmc^^zx%"I$I&cb$"@I$cb$"HI$cb$"I$I cb$"IHcb H$I kJ$"HI$cb!'Mc [VVV I>,[IJxh&M$s(B5rm#<!K \Ro_X)'qs~^|H$I$0|mc1|mc@@ 1|mc@ 1|mc 1|mc1|mc II$0|mc!Z,sZp` دZ %(tA! k^~x$?kMcUWWT!I$I4kJ$"A$I$cb$"AI$cb"5McZx#b'Mc(JxWM'I{HJ~W 8ϟw O(Jխ"6 IIQsX, {R(xz$~'oZ * HA/nc__~$"A$I mcMc]WW|$"I $cb$ I(5McR` P&M{(Bz^5@IəOhR% : !@@Ҝnkx^1"_?<-c\WUU$"$I ,c c$" $H$,c c$#l cZ!ѯZ5Um6m1{ +d@nc_~'"I$M6kMcUWV|$"I$I$cb$"I I$cb$-Mc [`#j$,c(BX Hyn(B5 =I AMY-;=ҔMcx^*'sMc\WUU Mc,[ꪪ h,cRx9h6nR 52!AA{hHBb!H$H$mc,[@kJIkJkJkJkJI$IMc,[X%X%Mc(BXXXX3 q˃  'x'H'sMcTTTT kJ kJkJ IIkJ$"I I$cb$"I$I cb!99LcIJXXXX4 QJs +";>sMc\TT^$"I$H$cb$"I$H$cb$"I I$cb$2,-Mc,[HH (B7777:׭#"II5q$#& Q`uB;p cp$t)L.nc|p I6?mcR^'McRU $McJU?,ciJU$$,[HJU I$$,[(BU"*m$Mc(JUɐ ɖ HJ <I$IԵϤ~z9ɕ ;;$׭x_U#.ӌ$ӂ(M􌳄@L'r&Lk6; @ @-lj, 's cVT\\$4 8-cb$äm' cZ$ `' cZ$ I'-cZ* Uph/HJ7vh0Rx# $$MciJU"@'MciJU ,cHJW'IJ_U3Omќ'JU4I@j+qy;Lc^^Xx#ISMc [ /" ,Mc(J`I ϤB% ӽ0 5I$ $ԽqPAI$I$Խ/{;3ɐɑD/7>/ چ+:usx"$ӌLc~U$ILcxW IHLkU- )I$Фs#h:II\n-9y5$m5z:#~?^WU#hڵ8ӌ4R4R4R4RI$I$4RӌQ|`:bՐs7x" IN %7#iи50|p"@['ӌLkW!6N䳌LkzU`mФlkWU k۶kk+<I9Uќn.S(;@@Ҕk^="M$Mc~WU" McRx` ˏ>R 'T LUW\[&"L'$"I$$5q$"IA$5q$"I$A$5q$"I I 5q$"I$H 5q$!@MR$ӌ#h,:Lcx'I2mk^W% { $H$ԽqWAT Խ/?\?ID RPoD#:'mcxx^W$" $I$cb$"I @$cb$"I$I$cb$" 0I$cb&!CӶikMcU#nmcUU$I$Фk- 1$̃z*+ VHJ_2GJ*=8T1|`xX'"H4IӴ0|tTfe$"H$I |t$"$I$|t H&m&tsII8sk** nm$|s U@ INs/U$I' Τ|)UI$I'. -MhӶ{?)h(Ӝsbp("p6Kc'kMcTVWU# II$Mc [*# I$I&Mc [("!A$A$Mc [# IH$Mc [**#! $I$Mc [" I$a$Mc [*" I$$Mc [! ,P=Mc(J`xXɖlY(J >CThU&b2"pӔ|\VWU%"@&M|t$"@$I|t$"AH$|t$"II$|t$" $I|t$"I$$|t!۰lKt|k&@l60|s #&{$/Z8֗m۶ms菉MW3vj1Ф,[xx$InMcZ V$@wMcZ$!m4hcb$"I$A cb$"AI cb$"I$H$cb$"A cb$$a*,McZ`xMHJו5rϤ;@rIR _" Iq{UMn1RW0I$d 0 UU1I$ 0 UU2I$1"3}U-I$IH1U&I$IQOW i;%.fpmcxz|x! 0IlMcR$IMcZUU#@I$McZUU!u'McZU!$McRW$$IMcZU%DI6$McZU!Mc [ j>5kHJZz#ɑI$s /=sxx m$a|k$$I|sU# I$H$Q|mk$"I$ $|t$"I$I |t$"@ I|t$"$I |t"&6|Mcz! $sZ`p^UlibZ .A) k~x)"M?|;kMcWWV\$" $I$cb$" $I$cb$"A$Acb$"IH$cb C$A&Mc,[zI8:,[(Jx(}$,c(BxW5 `yv HJU-17QOhR-&IR'h"'R '7#ɑI$1oh.`|\xp$" I|t IRm{ l!I$6i|s I$MZ{ l I$ڢ{ l I$EѶ{ l I$@{ l $Hsk@?pZ7^)9Xɗ{zp*>?|McV^Xx$"I$cb$&5McZx$$Mc(BzWP'I-IJ_U IoHJ ;IX' @Ӕ ]=`=#'mczW.#`&,c(J21)Q{ ("'$kMcTTVV#"A$ kR#"H $cb$"I$I$cb$ج-2-Mc,[HH B77778p$"H$H$5q$"$H$5q# # ӌ,c`Ré/'n(BWI$@(BUIb(BUIҶ(JUIm1HJUiu `ZU('I$IksU5I @_>!IƘO 3C'vb'x^W_ $Hӌ^$p@J$"A I$5q#9PӌmkXxp`89$mkʊ!IRWW$-RUUdm$ IJUU ?c IJUU Җ IJUUN_ NIJ1i$I2 Z\2I$ќHJU'I$~/IJU;rwh)s+4 Ӕ0%W6"$$Ӕ|_U/"X粌|WUU$ Ats`蠀Psj5,cW[*#9db'sHJz^^\5I$IӽZ*:I$m֭ϤW^)I$IhI$IМ(]UII$sju$C'lkX^Im1Lk*I$I1n<Ihќ x>#Վ5'Ҕmcx^Wz9 oZ %W$pRĨ%DI.0|/I󌒄 ӌ $ӌ@$󌴌4:ӌr\ X?ӌs_H'ӌLcU1}$LcxWUÖ)lk _6McxxIvlkU*Im1샹 "=I$ @X9is\I 'dau>a7"3'}'|\^WU$" $I |t$"II$|t#!H H$|sꪪ m66l|kꪪ#I޶$AskU!OskU!c0a|k#9sR`p܉R7% -IIQzhnA$X#>k'mcxX^_$"I$IMc c#!I$I$Mc [" H$I0Mc [" I$H$Mc [*" I$I$Mc [*" I$ $Mc [" A$I$Mc [#D*1Mc [j`"'LN(B_ח<IɕTnu7'?$E9j2'U0|`xX^&" $d$"H$I$|t$"I$I$|t$"I$H$|t$"I$I$|t$"I |t$"A$I$|t$[tk4446" 1tZ`p HׯZ5% AɟAoi7#Цmpkx^# [x '.ZUV @Nv.RWx# 唛McR+$4HMc [+$" $Icb$"$I cb# 9Mc(J``xɖ HJ% >I9vUv3IRIW.I IqU/I$ 裸U/I$}U+"?r|UU/"ϓ$|UU."жy<|UU0#`I$|UU).1rZjz xy浪R' ,1 I0|^^zx.NbsMcWV\X$I@$ Mc [%$" $I$cb$"I $cb$" $I cb$"A$H$cb$MA$IMc [V!v McZz & [(B```^ٚϤHJ /B1 Мrzx*"~;tR|UWW\$"$H |t$"II$|t$"I H$|t$"I$@$|t" 5t,cx#l$sR^$ɟoZ_U :{ Z 2IrLc"p/ Xɗxzr0#{#|Mc^\xx$"A$ $cb$"A$A$cb$m׭-Mc ["(>McHJz}Lc(BzW5 hNHJU 8I$ Z4y mqs*X1$Mc~WU"h>OJ__h+k-Ϥr|~-"?>r|UWT\$"I$ |t#" $ $|t$"I$I$|t$"I$H$|t$"I$I$|t$"$I$|t$"@$I$|t"X sZp` oqqR .VA [x!b$Mc(BzWP'IoHJ_U IФiR >I$ ќnE;9aҜk"^=$PO?O$ҔMc^WU$"A mcMcl_u$"I$I$cb$"A$I$cb$R͐(HMcRp~^?֏R-%)dAO [x`3'N.HJ_W%;I9qZ# ;X-cx^-"?Os c\WUU$"II$,c c$"I$A$,c c$"$ $,c c#" I$nkjR$" $A$,c c$!I$ 4,c c" cRx`vRZ %0Jnc~'h5k(JxPC'I(B_W%+(B C{( x;X>~$mcx^WUH$I$Mc [ kJkJkJ McR`` ؉N(B5%%;sbbbbI$H$kJkJI$I$kJ kJkJ@kJ I$ kJ#`&`&Mc(BXXXX69C9C샇%zkMcTTTT kJ kJI$IkJ kJ$"I$I$cb#"@ cb``,c(Jܜ5!BaQ{I&`k,cW$Cv-&Mc [$ 6 ڶ$Mc [$Vm$Mc,c#Èh;Mc [JHB77779$"A 5q$" I$5q# (q@@ ،o,c77%6 Bh_)I IUn׀)IR UW )I$Te)I$S#)W&II52-hB&ШѤ>Ӕkz~5 0Mc~UU`5 m [-U"D. /?J=ӄVVTX"))􌳄 $"$I 5q& #,s`` qNQlk-%I$I$rn?q@iua1$<|U1" m'|U5"mӔ|U3"Ӕ|_U3$ԲI$|UU0Fs|UU='.Z76(0|pz{i$"H$H$|t$"II|t$"AA$|t$"H$H$0|s" Z|Lcx``n3Z >ɐ J׵- 9#`;}$^WW-"n$UU+#ô 7'4+Z@6:4|zu:;Мs (<IIu1"l};10@mc~;#`?O$Mc^UU$"H$A$mcMc|_]$Z#̀IMcRpN':R %y'_j(m?M|WhuPLkWжIrPLkUIpLcU $mۯLc~Uh$&M0LkUժIҭlkUiڶm;l "I$A$ӽ:I$I$0D[4I$IqМȺZ={Oh2sz:#'mc^W."?O<{McxWUU$"I$I cb$" $I$cb$"H$ $cb$"$I cb#@McR`~'>ФR 5%9I$-4d'iZ>Lkx" m$LcU 0$ӌLkUUILkU'IoLcWItݰLk-iP"I$I$ԽqRI$I$ԽqX@QTm6m&Խ`>ɑ 1A2Pk<"|'qMcx\VW$"II$cb$"I$I$cb$"I$I$cb$" $I$cb$"I$I$cb#"IHkR$"A$H$cb$A()Mc [!#&s$sHJ^^:Iɗb*?%?4&U0|px\&"HBI$|t$"I$I$|t$"I$I|t$"I$I$|t$"I$ |t#"$ Q|s$"I$I |t$ a(-|k` `"'LpR^^5:I$ɛ{"*9I' ms^%V-'. [^\h PN{RUp! 君McR+"$AMc [-#!H$ $Mc [" I$I Mc [! @kR# I I&Mc [*!5Mc(J`pIti(J% ;DhUoc.!h?<|\VWU$"H$I$|t$"I$I$|t$"I$|t#"@ I$Q|s#"H H Q|s$"H$ |t$!mH40|s!|sk7&r|ZX\61Kk*A8-k`x\'"h$i&kMcWUU%"m۴IkMcU%  .mc/UU$I'`nk UZW nZUUx"IvܮkR\$ @?McR]!`&L${(B^ޗIir{+4 Idr0k>:s\xx%1|s)!`qQ|UUU*"Q|UU$"I$I|t$"H$H|t$"I$H$|t$"A$ $|t#P9X"&sRppXXJ0 r+k) # !II$roxj0X 0mc\xx`$"I I$cb$"H$$cb$"I$cb$"I$ $cb$$&1McZ`"hM'McHJxWM'I$ IJW-I$mN(B-"/lk *0dIox/"Po|\Xp`#"@$I |t$"A$I$0|s$$@5tmkx!$sZ^U$IZ_U Ib :IX' @5M= : b]40|~W- PqMcpx~dN [ %7+ F@/kxx`%!&Ĵ &kMcUWW^# @8:MciJz"(u$,cHJxWh}ۏHJU-,}hR-;IHp="?mc^W/"{McxWUU$"I$H$cb$ ͒iMcR`ˏϤiJ %5$ɑI$RX\r~-h@|Xx`$"H$I$|t$" $I$|t$" $$|t$"H$$|t$"I$A$|t$" $I$|t$ 5|kx! ͢$sR`xWɐZ%% 9I$r*kzI0ZժM<IX' @/ºz>#ѫ'mc~W.">sMcxWUU$"H$I$cb$"I$H cb$"I$A cb$"A$A$cb$!-"Icb#  McRx`И|&Z` =I|Ab <#'-cx^)"Onk c\WUU$"H$H$,c c#"AInkjR$"I$ ,c c$"I$I$,c c$"II ,c c$"I$ $,c c#" nkjR# ( cZ`jJn(J75II'1 `#`"'}IJ_&AI$Ib >`@Ҝmk x9 O?qMcx^WU I$IkJ!6RMc,[j!FidiMc,[kJ@kJ 0,[(B`` n(B 8 xkb`b`$Mc,[@ kJ@kJ@@kJI$IkJ I$IkJ  A۶kJ"`&`&Mc(JXXXX:9C1Cr샇("J$H"'kMcTTTV$"I$A cb$"HH$cb$"I$$cb#"IIkR$"I $cb$!H$m"Mc [h&j"'LkHJ+i$. [xжm̓JUжm$̓JUжm$iJUڶ$̃JUo$̃JUH-ʏHJ?*9$"I$H$5q$"I I$5q& ,.1s``ɛɕ,c--699׭xxxX$I$5Q"$I$ӌ*%pӌ'5UU$?ӌs\X1@!/kxj'"M6M4kMcWWVT#X̀@McZx{1ќZ)!(j/ $TIXӄ%%&&$" I$5q#"$`􌳄@Ϳr气,c'6rÂ7@Asqqq$"I$H$0|s$" I|t$" $I$|t$" $I$|t$"I$I |t$"I$I 0|sr.h&sR2A1ӌ싁("Ss Q|UWWT$"I$I$|t$" $I|t$" $I$|t" ,,|,c```` 1R 8!AA׭)"{$] X6# >s~X>m_ZLkx^4?{pKk-+;#(S'mcx^_+"'y'sMc\WUU$"@$ cb$"I$A cb$! )cb" McRx`5'Z%6Yixkz_'~@ IkU(I -k'I$sU*I$~{U"I$Iq{*UI$I$A$I$Խ0<'IW4Iا$@10~~3Qs'2 c6Ш&ےmkx^_U$"HA cb$"H$I$cb$"H$A$cb$"H$I$cb#"@$I kR$"I cb$!-6E&cb! MciJx` v[R >$ɝ{\<I$. Iջ2I$N|+_5I iok(/IҒ>OjJ_R.5 ,I$IA/I$I' *I$ $Խ03?͛8I$Ij|ZCJX/kpx\%"@$M$kMc^WWU#"@$kR$"I$Icb$"I $cb$"H$I$cb$"I$ $cb$"II$cb$"I$I$cb"P#>Mc(JxXI1hHJ5% <!jU-~3"|$|\VWU$"AH|t$"I$I |t$" $I |t$"A$I|t$"H$I$|t$"I$I$|t$"I$I$|t! P&sZ`pXɟnZ% 9)pA&kp2"~'|Mc^WU%@ sMc7uU"?' Mc 5UwI'ZW `ɝ$ZUUzIv{RU\! I䔻McR*!Ҡm$Mc,[!-tMc [&r$s(BZ^=I 3j+* ?"R:'U|px\^#!H$I$1|s!m|s$"H$I|t#"I$H$Q|s$"I$I$|t$"I$H$|t$"I$$|t$ò)|sJjbjڠq"-6kRxțyNR5% @I )ta-/c7"?}$qMc\^WW$"A$ cb$"H I$cb$"I$I$cb&"I$mcMc+U' #i mc-UU%OR?Ϥmk +UI$I&Ф{b  RmkϤiJWI1HJ5 /I$Iqk}$Rnsy41rӔsxp`b(6s0|k--$"I$I$|t$"A$I |t$"I$ |t$"$@$|t$"A$H|t$Eѵm[,|s"bh"'KМZWח @$@$rz: /A1 s^||)"N'sMcUWV\$"I$Icb$A5Mc [x#hM'LcB^M'I$/HJW-I}NHJ-8I0{9 0@k ^85l0R`x~ M̃䯜R %,t) Q|{'ڶmЈ5Q|kx!hZ'sZxWX$INR~W In] ФR ;I 3i @9ATQ*^;#P>$|^WU%"H4i0|teY$!Im|sꪪ!|>{,cXp*!CoMck%s$mcHJx^h}ߏ(JW- mn]iR-:I@ќo c>0h8kx_4"PM?$qMc_UU%"hImcMc\U$" $I$cb$"H$ cb$R-ڵMc [ j>PsiJ^z)Z -1Q~-"~?|UW^\$"I$I |t$"I$ $|t$"$I$|t$ۆM1|s(j"hM'sR^XO'I.ZzW-4I$IZխ =4|bx䑽lk*+)I$Ir(J?9qAkx;!qMc~WU%"hM$mcMc|U$"I I$cb$" $I$cb$"I H$cb$"A$A$cb$" $ $cb$"AA$cb#iHMc [!>.R5_01XI$sb)mIs-cxzzh$"IA nckb$"H$I$,c c$" $I,c c$" H$,c c$" $H$,c c$"@$I$,c c$"I I$,c c$$H(5 cR`!9t$ c(JxV5,ɟN(J5-:I Мncx-IOs A$hHkzW2"'0Mc\WUU$"H$ $cb$"A$H$cb! sMcRޗ$[HAMc [$!IMc [$iۮڭMc ["5=Mc(BppxXٚm)iR7xi䏔Zxx ж$lkRW вI$lkRU" жI$,cRU" $,cRU! @$,cRU 0n$,cRU" @$LcRUUh'N-IJWW591C)BqK'"H$HkMcTTTT$"H$I$cb$"I$ $cb$"IIcb$"I A$cb$" $I$cb$ c;c8Mc [pp,IJ8 yta{k0!OA#Y{mcW. f{mcU.!Id{mcU0!IH$i{mcU. yf{mcU$jIJ*>; .$"I I$5q$"I$$5q#,1Lk```p5IDI*k===5&#'XX\\I$I$4R@4R@ 4R4R5ӌkxp`0Glk! 0"|>>|McV^\X$!AҴm$cb4 McRzx>[-Z )%$-ES7􌑌(( $"I$I$" I5q"j=5ӌ,cxp`@!Q{* )2! 3s,"O'rQ|WTT\$"I I|t$" $I$|t$" $H |t$"IA$|t$"I$I$|t!؃95sRXxpp3ɑDҔ /--1"|"'>|V^\X$"I$I|t$"H$I |t$"I$I$|t#1|Z```` Z 7AAМ%AЈ5P|x" ӌs^0 OҔMc^^^) i>kHJ_%J'IHJW%IФHJ-AIdɐAMc@#Ŋ'kx^W&(io,c'WUU<{9+c?  k(z7#hB'M$qMc\^WU$"H$$cb$"@ Hcb$"II$cb$"Icb$" $ cb$!I4H$Mc [$!I۶I$cb" @ 0MciJ`h$IN(JW5:I$ɝ (3u1ќjzX"I./kV`$$Iw|k+$!-H$0|s$4mږ|sU  ${ l l$|k!iؔ$|k" $iҪ5s [`h$N.R^5%9ɗpBҜ).7b_'Mcxx^W#$Iy'mc [UU!Mc [UUMc [UU $7 O,[5UUUI'c,[ 5Uɟ$I'{z pyФRUzrvnRUUV0S'ZB_^Hyin(J% 81jq3~~+)orLc$iݖt|s Mkv|k$" $I$|t$"HH$|t$"I$H |t$"II$|t$"I I$|t$,.(|k`&zsiJޖ=Iəs (@$,&Ӕmcpx\$"@$ImcMcXWU#"AA$kR$"I$H$cb$"I$ cb$"A$Icb$"I$$cb%"mIkMcU&@$i{Mc/U$?'ФiB @ r~>8TsB` hyR 5!cҜ|`bȂ#B$I0|s$"A$ |t#" $IQ|s$"I$I |t#"@$ $|t$"I I$|t"  (t c` țIR5% =ɗTɔCtmi0k)%1I\I/Ph`2c+X5| [x!`M'Lc(B^M'I/HJW- IwN(J-7I7A{(> 9UAk^<#>O$mc~WU("`K7kMcWUU$2ڴaMc ["}>oJ5_(I|Is "X='}oR~^ItZ- I1- ;IX' @Tb<#ѫ'U|~W/"o?O'|\WUU$"A$ |t$" $ |t$" I$|t$P#̒`|mch_'s>N,c5Imks:I 3nn:ymkx=#~$mc~WU'"X$M$kMcXWUU$"I$I cb$"I$H$cb$"I$I$cb$"I$I$cb$"I$A$cb$ɂ(aMcR`ФR %%ɑI$1nbr(0 (miҔ|^zz$"I I |t$! &I&|s"@5sZx *>N$0R^W5 OoZU% ;I0@4ʃ :`840| x_4Xuӌsx~M'n [%7;9TO*W<#&|'qMcx\^^$"II cb$"I$I$cb$"I$ cb#" A kR$"H$I$cb$"A$I$cb$"I A$cb$"A$I$cb$" A$cb"P@McR`~?R %5'! ɗ䎜mk^p`( -nk c_~$"I$I$ncjb$"H$I ,c c$"IH ,c c$"@$ mcb$"II ,c cj#@Ъ5 c)JxP&N)J_W%=IyOB- ;PALc x6!C?'PMcx^WU#iO,c%UU!;:.,c\p-& $ IMcUUUT%"I4H$cb$"I$I$cb" Mc [&$"I$ cb$" I$cb$"HI$cb!X&j"',c(BXX  1 +#?Ir4hќ|p/ Im I/sU/Im IkU/I IsϺU.IB sU+IҶsU+ Ib{{*, I{{*(oZ -,c/ W:!B!BK@Kk'"K&M&kMcTVVV$"A$I cb$" @$cb$"AA$cb$"I I$cb$"II cb$ -2)Mc,[pJ{(B77776xhPkcbbb$"$A cb$" $I$cb$"I$I$cb$"I A$cb$!I A&Mc [HH.(B; .$"I$I$5q$"@ I$5q"P9=MkppXX7ɑI{=---1h"'r2'\\\^4R@4R@4R4R@ӌ0|@u߳:.mk'&1h|Mcxp`$"I H cb!S#Z5Mc,[jk mkR_~%)Z -&"NL'$"I I$5q$ Mk`ɀLk -%2 IQz/`X>s^$&hÖr|s$! &M0|s$"HI$|t$"II$|t$"H $|t"tZp``nR 5X Ӕ|Xxpb$"II$|t$0Hڦ1|s"z"и:tZz#9u$sR`x^ q/i ϤZ 5a" '_ӌsxV2 _! @0s*1"b_?|Mcx_)"X?w?kMcxWUU" McRx`( O{Z )"s/2@OsMc^~x`$"IIcb$"H Hcb$"A$I$cb#" $ kR" @McRxuL? R 5&d@!H-nc_~xpX3'Mc(Bx^$IHJWU5 y-GB-7Ii S]4yk^4*~$MczWU$_kMc\UUU@kJ! P,[Rp`|$g{iJ 5, i{mc^xx`$"I$I$cb$"A$A$cb$"I$A cb$"$I$cb#"A @cb$"I$I$cb$"H$I$cb#5McIJXx``&ohR 39k'{(Bx\6Hon(JU i@QQ{)@IdɐA3`ܧmA#'kx^W'"h$I$kMc\WUU$hӶPMc,c""Is,[_ߐN [%" ,cUWX$۶%SMc [ $"I$I$cb$"I$A$cb$" Acb$"H I$cb"h Mc [$}ɂ()Mc [@P#&rs(Bz^(B >i4P p+C'l˶sX^M9-s5UU.O&NkWz+0s|kP m+IJsk !IҶi|k Im|k!ny@skU5`"'sR`pX7IĉZ) 78̘mc`x\$hض=nk,[| ibm;Mc,[ m; m$Mc,[ m;lmMc,[ IZI$kJ"nI$Mc [ "R@$IMMc5UUU I$ϤLcUI$I$rn-{V8O$h4o`)Шm|VW}ns^/PnwokU^ 0 픗smk-#A |s#"HI$Q|s$"H$A$|t$"I$I$|t$"I H |t#5sR`pN1nR5% >d` b4"'}$QMc\^WU$"I$Hcb$"II$cb$"I$ $cb$"I$A$cb$" $I$cb$"$I$cb$"I$I$cb#  0MciJ`Hɝۯ(B5% DID CuМ7DX#:SUspx~~K䏜Z%749LI\mҔ{N($tsW^^\$"A$H|t$"I$ $|t$"@$I$|t$"I I$|t$"I$I |t$1P9|R``px `Z B1bvUCa"{"'9ќZ'^ R@ -'9МiJ~^I- n(J- :Ig { 8yis ^9!('mczWU)"'NI$ə S<9QTQ*^=$XO?O$|~WU%"H4I$0|tXeUV$"A@$|t$" I$|t$"A$ |t$"$A$|t$"I$I$0|s#5 s cx` Q c> ThҜkx~/"'|McxWUU$" $I$cb$"HA$cb$"I$ $cb$"H$I$cb$"I$$cb$" I$cb$"I $cb#!A cb!9̎kiJ^zz@!@Z ,)q_Zrh'm(:Q|k^%k$|R^WhNRW-=I$  k*<yem4O5x=#>~$4|~WU&"`$I$0||PUUU$"I$I|t" р `t cx&~?O+c- &iImc^^~%"I$IRmcMcUWW#"I$@kR$"I$I$cb$"A$H$cb$"I$A$cb$"$H$cb$"I$ $cb$"I$I$cb$"I$A$cb$"I Icb$1,cIJ```)iJ &0MkVZh'"K&kMk c~x$" $I$,c c$"A$I$,c c$6-cb"h-: c(Jh^`$I (JW5 97aZ :+mcx^."?'|Mc\WUU$"I$@$cb$ Nb8iMc,[" ѐH{ [5_"dt2-,cZ-# McUUWX$"I I cb$"A$ cb$"IIcb$"H $cb$6 ,Mc [xKn(B5i6m1NK;$O5B5Ҕkpxxx&"$I'mcMc(WU$"$H$cb&"$I$kMcUUU$"$AmcMc%"I$kMcUU'"ÖI$kMc ]UU("$I$kMcWUU%j&McHJ5Aips~%҆M'mc [W$ $Mc [u$A'Mc [U$$HMc [W$$Mc [U$$$Mc [#hJ6McRz͛(J77556!_Pmc````$" $I cb$"I$A$cb$"H$I$cb$"H cb$!mZi4Mc [HH (B; hN$"A$I$5q$"H$ 5q"X&j&ӌLkXX\\5ɐ ̃% +x'{'UTTVV 4R4R4R 4R ӌꪪ!s9ӌlkXx0A1/kj)"o'kMcUWVT$!m 4cb ; [R@XRAvѬsjJ/}%ϐ_GR )&"I$C:#"(`q@zϜMk'7ro+?ϤMc^\i$m,cU|/,cU!mo?s c_^! vsZ $$ m'|McU#?t,c`} R %4AҜ|z#ib]'sZxW>I/Z_U% pZU m۶ c5 *I$IN!*?o ќ{3 ATiqs3"@?|McxWU$"@I$mcMcXUU$"I A$cb$6 Mc [!b {R%_)p){mkxꪁ("S'k6kMcUWV\$"$I$cb$"I$ cb$6l1Mc ["@8:Mc(Jz>tZB8VKkj "M.B*Ielc *6ɛxNꢻ9Ĉ3'Ӕmcx^^'?I$sMcxWUUkJI$I$kJkJ!Mc [W! ~B碏sR^+tLcꨣ+"CsMcWW^\$"I I$cb$"I$ $cb$" $ $cb$"A$I$cb$"I$I$cb"5McRx! 5s$Mc(Bh^1mϤB HmגsI @$ 3CI Brr}B$Ɗ'kx^W("XI$kMc\UUU$"I$I$cb$"H$I$cb$!) cb$#HMc [z"M>> iN,[%U O䎜,cWX+# J{,[T$" $ $cb$"A$H$cb$"  I cb#!I$ Mc [# 1&Mc(J`x^I (J5 B'Tiun5 =#3'}$U|x^WU$"I$I$|t$"A$ $0|s" Os5_!'`n{p!Un$Nk^$ 0 0kT$4lېr|s*" 0tZ`H܉{ R5% <B&hs `1!?N$0|Mc\VWU I @kJ II kJ m۰Mc,[!?`Mc [UVhmLc [1Lc [`8Mc [5b2',[BxXِabhR 9əAT+:X'U|x^VWH$I$|s " |s!N> |5UyO>sZ rkUx" 0唷|k W$ Hn|s#"I $Q|s$6(1|sjأ&{$sZX\>IɕJk"?%93'Ӕmk`xX^$"H$I$cb$"I$Acb$"I$Acb$"H I$cb$"A$I$cb$"I$I$cb$"I$I cb$!iS$M$Mc ["9b2',c(B`pX+hJ @ThuPpX("$vR'Q|TWUU"tj>Z^'II$mν-5P-|\Xpp$" $I$|t$"$A |t$"I$I$|t$"I$I$|t$"I$I$0|s X&r'sZXXܖ @LPU0|b`px%Zѐ*ht cx`mۼ c 5IIrNCM= d`20z:#$mc^U-"]?ϓ'sMcxWUU$"I$I$cb$"A $cb$"I$ $cb$"A$I$cb$"I$I$cb# mSmMc [!#:X͍kR^zII+k"@'s?41|x~/"o'||WUU$"H$I |t$"  |t$"I$I$|t$"I$I|t$"I$I|t$"I$@$|t$"I I$|t#|kj誈 }B.,c%7^,1ɑ{^Pj+"|sMcW^\x$"AI$cb#" I kR#"Icb$"I$Hcb$"I$I$cb$"I A$cb$"I$ $cb$"H$I$cb$ɒAMcR`iJ %7 qmr+XS?? [_~&I$IМZ+<Ih4Nw/>#'4|~W."`?M'||WUU$"I$I |t$"H$I$|t$"I$ $|t$kS|sj*>{ cXx()Nk~ʉ*"t>OsMcW^z$"H$I$cb$"A$I cb$" $ $cb$"I$Acb$"H$A cb$"$I$cb$"$Icb$"H$I$cb$AШ5McRx$P#>}$,c(B`XV5 ywhR *I$I5rn& dMkV\p'"I&k24Mk cz$1-cbx"C' c(JXWK JW 8I @{/;#'mcx^W)"Od3탉RUU ywnZ 7$cDC4qnkpppp$"@$$cb$"I@$cb$"H$ $cb$"A$I cb$ڭX6Mc,[Hȍ B7777: hhN$"I$$5q$"$I 5qh'J$qLk61B!AO$'ӌ@4R 4RA4R4R ӌ!0ӌmkp`2 I/lk))0#=|Mc^\Xx$H1Mc [` h֢O'-[Bx^$̃(B]5 0$@/Z &TPks -%!C:$b8 j&9LkXXp o붷1NmA ihkx.m/kU- I/kU,I&.-[zɶ`.R 7$)Hp,c_.l {,cu*Z%7*+ɜI쏜mc`;I俛 oZ:ߜIqx5_ ips_51FqkU9"4'qmc_U1 >>|R__+Lc訫)"'r6sMcWW^\$"AI$cb#" kR$"I$H cb#X @McRx#Q{Z %5)hAsMc^x$$H9McRx#ic'McHJzW:I{(B_-Lm (JU 1IqI/GR-3iPkz2'Q-c~U/3:0|R^_2TOR,h&jR>|Mc\^^z kJkJkJ Mc,[$"A$I$cb!P# McRxx ]{R 5,&a{mc^xp$"I$ $mcMcUUw\$"I $cb#"AI kR$I(5Mc [`!Z'Mc(JxW$I(B_U IV$ QHR5+I$A$ӽ9 $(nBI BrrB$NJ'kx^W("h$Ij'kMc\WUU$"I$I$cb$"I$H$cb$"I$I cb$"IIcb$"A$I cb#S#AMc ["kh ,[ UU΃N+cX "0w,cUUVx$rmc,c$"Icb# 5Mc(BxHɝۯHJו% <I\Tn- <"'U|x^W&"8q$|t#"  |t$"I$I$|t$" $A$|t$!I4I60|s!h-s 5_!|5sx PnynnkWx&N{Rx^*<əpKZ t?mcx\^W @$Mc [I$I$kJkJ kJ $I$kJkJI$I$kJ` 0,[(B`HɟB5% 9IɕTm:&8 'T|px^!p$I$0|s|_WUI 1|mc!I$I$0|mc# I$I$1|s @ Os?!2 @|Uw?Фs^+rФkWz% I.|mk+V"[&tZz_ ΝyZ%- =BFҜk`/"'}|Mc\VWU$"A$I cb$"I$Icb$"I cb$"I$ $cb$"I$cb$" $ $cb$"I cb& &,1MciJ`HI (B5% B)thuN?9"3?}$4|\^WU$"I$I$|t"5sRxp```Фb0fhA/|`b$"H$I |t$"IH$|t$"I$I$|t$"I $|t$,)|k`HMR5%?IDɑT6>@#>k'4|XX\^$kmv|sj*!t>pZ^z 햶ks >fߘnќs`z~|%"H&I&kMcVWWV$"H$Icb$"I$I$cb$"I $cb$"H$I$cb$"I$Icb$"I$Icb$"I $cb$#͒AMcR`O?NR %5,A/`騥*" R|UWW\$"A$I|t$"I$ |t$"I$A$|t$"H$I$|t#"$I$Q|s$"A$A$|t$"A I$|t$"II$|t$ h|Mcx`~Z?o [ 7+d@ ok_~~("vR't:kMcUWV\$"I$H$cb$"H$A$cb$"A$I$cb$"A$I$cb$"H$Icb$"A$H$cb$"A$ $cb$Z][4Mc [!5P#>,[(JppXP0iR ?Iytܬ? 0H(T0| ^8"XM?$|^UU$"H$I$|t$"I$I$|t$"AI$|t$"H |t$"I$I|t$!I I 0|s lsmc`>.,c +tBX-oc~("$K9kMcWV^x$"H A$cb$" H$cb$"I I$cb$"I$Icb#"A A$cb$!IЦI$Mc [#h=>McHJ^'I-(J_W-:I Z ? 1GIЦk\5 XcM|Z(x~OZ %%p|MkUVXh#Ъ9s$ cBx6,I.J-: h{+ x>#X??~$Ӕmcx^WU%"E$imcMcW]#"IIkR$"I Icb$"A$cb$"I$ cb$"I$A$cb$!I6 6cb"@McZ .,c#` McUVP@%!NlMc c$"I$H$cb# 1Mc(B``I)(B ədIQbb<#؃=؃=-cxxxx$"H$Icb$"IIcb$"I$ $cb$" $I$cb$" $A$cb$"I$ $cb$"I$I$cbh&h& c(B;!Bk.# j0mcU.#m m${mcU.# l${mcU.#m l${mcU/#- m{mcU/#+m${mcU0 ?6{Rz~k N(B 5 8ѥ?PZx^x @$McRU @$,cRU @$,cRU! PI$LcRU D$McRUɟNB755/5Y'̃{`I$lkUP#pZ-W!@I!] P9u$Lkpx_U;IIs!!@"ӔmcxXX^$"I Icb$"A$I$cb&.1#5Mc(B``` OhR 8#*=mcxxX,"dqbsMcUU/"|Mc*UU.P/:#:kIJZz;ɐ\ls5#`'{"?QMc^^\'"h&i4kMcWUU$"H$ cb$"I$H cb%Z#*iMcR`$ag]{R %5-)h{mc\Xp%"M$I$cb$"I H$cb$"A @ cb$ "E"E(Mc ["b5,c(B(x(do탊J$IiJWU+ IvaФRխ5I @̃1 15Q-c_26$1 cWU(o?O$s cxWUU@$I$ cZ" cZjꪪ??{jR5'TA{nczj!I$t$nk-cUUWTkJkJI$IkJ$"I$I$cb$#ҥ[Mc [ (! t>kR^z*  \{Z)"C?sMcWV^x$M&1Mc [#HҺ:McHJ^&OHJWU%Il0(J-II$A$Խ/ I I$Խ0C[EIIB`uD$'4kx^W("]'I$kMc\WUU$"I I cb$"I$I$cb$"I$A$cb$"II$cb#"$ $kR$"I$$cb$"I$I$cb$ vb2 Mc,c耀#[H-,c5UUUI$r5n [ 5%n䯜,cUVx" @6McRx`"'M(J_%:Iɗ(k* >6+T1|x\)"ۺm cUy탍5_?mcpx^^%!mqcb$"$I$cb$"I Icb$"II$cb$"I$Icb$"I$I$cb$"II$cb$!M4I6Mc [!=h'Mc(JpX\CIɕSZ+ A#Ō3'U|pX^$"H$I |t$"I$I|t#  | [` qZ 71Cɔ򜐔lū-"?z'r|WVT\$"H$I |t$"I$H$|t$"@$ |t" 0tZ`` ФR ?ɐ@1BU0"'<|\VVW$"H I$|t%P#͒(it,c`掜Z '1ɕ{Zzz/"}2;|McW^^x$"I$Icb$"I$I cb$"I$I$cb$"II$cb$"I A$cb$"I$A$cb$"I$ $cb$!)$ $cb# McRxx!ɑO$nZ +&HA|^z&"'I$0|teYVT$"H$A$|t$"II$|t$"I$I$|t$"A$ |t$"I$ $|t#" AQ|s$"II$|t$!m H40|s!/:#>sZpX*I|I$ФKcꋉ+mhPmcW_|$"H$I$cb$"IAcb$"AH$cb$"AA$cb$"I I$cb$" $A$cb$$A1Mc [`"',c(BxhHJW-.I?<lk z=)kIU.U+k5rs%"I$M |t$"H I$|t$"H$A$|t$"I$I |t$"I$ |t$"I$I$|t$"I$ $|t$"I$I$0|s#  ht,cXxu>n,c %(D@Onc_~|&"I$&kMcUU^\$"I$I$cb$"I$I$cb$"I I cb$I$1McZ`&$,c(BXH}nHJU-;I9*sA&Zֲmcx^/"|Mc\WUU$6aMc,["# R5_I${=МZ )Nb<P@mk x6"O??QMcx^WU$"I$I$cb$" I$cb$"A$I$cb$"I$I$cb$"I $cb$" $Icb$"I$cb$"A cb$" $H$cb##&IMc [ࠀ/`&NR/%KɗNLcU\`% JMc-cU#P9%-cB`pxXIT 1R ,IDIqrr\r<">>mcXXX\$"I$H$cb$"IIcb$"I$I$cb$"I Icb$"I A$cb$"  $cb$!IѠH$cbhhlkIJ6AAq{BIIB&"N$NĎkMcVVVV$"I$ $cb$"I$A$cb$"II$cb$"I$I$cb$"I$Icb# ,McR````"IN(J -7IRh{x1IҶ$I|{U+IB|{V.I¶ H|{Y+IBs⮪U/IҶ$I|{տ!ON;?NR.75;IR@ThҜ{z3ImOkU/ I IkU2 ImOkU. I4OkU, hOmcz~Uɋ`NiB%8_hfsz*4{mcU+Ķ{mcU0I f|McU0"yI${mcU)՘/:J _ y|Rx7Ix @qb* 4 س:P [x^&ƑosMcxWUU$"H$I cb$ڣ@Mc [x>>.R+7IRɏCPCo6"h"'S'QMc\\^W$"I$I$cb$"I$I$cb#P5P9,c(B``pp/_Z) ))9">>rmcXX\\$"I$A$cb$"I$I cb"P McHJp``+Gy.HJ 5#j==Qmc\XXx$"I$I$cb$"I$I$cb$"I$ $cb$ BHRMc [! sR7^^+{+c)"'ޮsMcWW^\$6m81Mc,[#@8:McHJz u$,c(JxW5X}.(JW-5ɟ? NHR 5IOipsx'93JJ.65FטiPnk`zzz"p$I$.kb\UUWNkJJNkJJNkjJ NkJJ  ZjRp`'{iR )|/sMcV\xp!IbIڎkJ$ IDJcb$"I$H cb$"I$I$cb!M$IkJ$R͂aMcR`uP߳/.R*$hz6sjJx"и:N{(J_U5 KܿN(BU5Q*c)**+I$I 9+#I$I$ԽqQEAQI$I$Խ0 \tCIIBrwBѢO4kx^W("hSN'kMc\WUU$"I H$cb$"$Icb$"I$H$cb$"I$I cb$"I$I cb$"I$I$cb$"I$I$cb$"I$I$cb$"HI$cb$C-Mc c$b#&HMc [xO'ڃ [ %;HJz۶kZ >pA&T0 z1"??~?Ӕ|\VUU$"I $|t$" $I|t$"I I$|t$"I$A|t$"I I$|t$"@ A|t#,|k`"P&L$sRpX;IəМ c !"@CШќkx\!yroLcx5!PNwN [UWX$4HwMcZ I$@$Mc [kJ@@kJkJ@kJP&,[(BpXɛ9yn(B5 : DhT?b6?'~$sx^WW0|mc1|mc1|mc1|mc  I$|s!4 I$|s mQI${ l I${ l 5#&sRppXbivQkk+ 9Iw!d@R0z+IiϤkWU$|9 [\p! 斛 [Wx$$ sMcZ $"A$ cb$"I$A cb$"I$ $cb#"I kR$"I$I$cb# 1Mc(B`Hɟ.(J5% ?9AU/ p/"?|\WUU$"I$I$|t$"I$$|t$Ӳ-|sjjLr揔R'73ɑDI򜎜'6!Ӕ|^\Xx$"$I|t#"H$I$Q|s$" $ $|t#P9`&tRpXX\&b@vh6TPbp'"H$I&0|tTVVZ$"I$A$|t$"I$I 0|s#9P|Zxx OIZ -V@Onczx&"q'H&kMcUUV^$" $H$cb#" I$kR$"I I$cb$" I cb#"I$kR#"Icb$" $@cb$McZ`-x-IJ%77*1ɕpV[ox+"z6/q|W\\p$"IA$|t$"I$H$|t$" $A$|t$" $$|t$"I I$|t$" $H |t$۴M64|sr#ZC'sZx^h$IoZW%)"ɟ=s*)sVZp*"}?sMcW^^x$"IA$cb$" $ $cb$"I$I$cb$"I cb$IШ5McRh *:|$,c(JxV5,I.HJ- 9 h{9 x75cqZpx~A:NR %5)4@ p|zz& 1|t$"H$I |t$"$I$|t$"I $|t$"I A|t$"A$@$|t$"I$I$|t!Mi|s$]mt|sj誠##Z5|Z>xx&?{Ϥ,c *mmcW_~$"I$I$cb$!HA4cb"5McHJx"&N${HJ~_5.I(J <IXP@nזb<$'kx^W)"o;8kMc\WUU$"I$Icb$" $H$cb$[Ӧ Mc [!#P Z5UWI$NB'Kk +2Fmpk_W\P&"I$q&kMcUWVZ$"I I$cb#"H$@$cb$" $Acb$"@$I$cb$"I I$cb#"I@$kR$"I$I$cb$"@ I$cb$"I$I$cb"@,McR`hM-(Jו51I$ɟaФ.~"I*>N,c^p!`&s䱜(J_Wi  8IIqZZxZ9#`>h&mc\\\\$"H$ cb$"H cb$"I$I$cb$"I$I$cb$"A$ cb$"H$ $cb$!H&I&Mc [p pǭ{IJ6AAq{ACBB%"M$M$mcMcTt$"A$I$cb$"I$I$cb$"I$Icb$"I I$cb#" $cb& .#1McR@```((J 7"/>>QmcxXXX%"($I4kMcUUU&"0$N8kMcWUU%"(&i$kMc]UU%"@$i$kMcUUU&1mk,[ȭʭNiJ5558qkbbbb$"I$I cb$"AIcb$"I$I$cb$!I$AMc [$" Mc [` ȍ IJ%5556xapkbbb$"I$Icb!`;F$kJH$I$kJ$"I$ $cb$ McHJx`/ɑDI.hR ;%/>>Mcxzz"<4ncZpzzz ِ Mc,[$"II cb$"I$I$cb$# McRXx`1iR %<)Av`ќs`b*"x~bǮkMcTVWU$" $I$cb$"I$H$cb!P9&McHJxXXX7yp c !# 7">r.?QMc\\\\$"H$I$cb$"I $cb$" McR@ J IJ %53JPnkpp``$"H$Icb$"I$A$cb$"H$H cb$"I$H$cb$R McR`%a{IJ *hJ5s(Bx"8:N$LcBz- h۞ (BW 9I$OZ-:y mqs^8"'r-c^U+X?O${ cxWUUj.>b)Jxp,!/ c蠫(M'{&s cWVV\NkJJ NkJJ NkJJNkJJ"$A cZb⊊ ~?{R%+T@{mkp`‚%"I4H4kMcUWV^$"I$A$cb$"I$I cb$" $I$cb!McR \"@&Mc(J^p$IHJו5% b}۰R^"@IIaA)s*;4@mk^'h>#1R/WiIڤ+5 ԽsDIĉCrz\vCb4kx^W*"?$kMc\WUU$"A$A$cb$"@I$cb$"H$$cb$"H$A$cb$"I$I cb$"@$I$cb$"HH$cb$"I$$cb$" I$cb$"I$$cb$"II$cb$躢5Mc,c P9`2'-cHJxxXV&y)i+k 3I$SRjZ(tn䰜s\p# s|s*-$! M|t$"I$ |t$"AI$|t$"I I$|t$"H I$|t$$&,|s r!9j$|Rx^,I$IZ%->1pAҜmk x3"?0|Mc\VWU$b&iMc,[:!N.> H-,c Uw篤+c_z " 攗o,cUUWX &lNMc [HkJ kJ @ ,,[R`hN (BW5<I\BUN': P>s$4tpx^WH$I$0|mc1|mc1|mc1|mc1|mc@1|mc@1|mcI$I$1|mc@,sZ`h$InRW5 :I ќN1<< 93'ӔMcx\^$!Z $mcMcEU]u$hmkMcUUU"O> @ Mc-UpS-'N [U^"  .{ZWX$ sMcZ-#"H kR#" HkR$ذ:-Mc [ &rs(Bz^>IBZ)+ >#>$5|x\^W$"H$I$|t$"I I$|t$"II$|t$"$I|t!j>5sRxpaǎ;˃"4 8hҔ0|pp`$"I$I|t$"I$I|t$ô-|sjpLORޖ76II3i9@#P9>U0|pxX\#"@Q|s$" $$|t$"I$A|t"|k`N's>nZ'-ɗϤ{^xh.#{>5{Mc^^xx$"I$I$cb$"I cb$"$I$cb$" A$cb$"I$Icb$" $I$cb$ 5McRh"9t$,cHJxVI!`HJ% m׶@1{ *t1Ϥ1|~)"紃>Q|UWW\$"I$ |t$"I$I$|t$"H$A|t$"A$I$|t#@-tk`!k$sZ`^Nܹ}OZյ 9ə H샽/65cSspx~_K?:n,c 7+d@! nc_~'"M$M&kMcWWVX#"@ cb$! &Mc ["h*:Mc(JzPC'I{HJ^W-9I߿ pGR+ 9 PAk x^4"XO?bϤZ%UU!ɑO'sr&$@ϜmkUUVX$"I$H mcMcUW^h$"H$H$cb$"IH$cb$" $A$cb$"II$cb$"I A cb$"H$I$cb$" $A$cb#I$(Mc [`!9s$,c(J`X^<IĉќZ+ >X+֒-cx^) {Z.WWb> %I$I$ =<IIr||xZ7"&h'qMc\\\\$"I$I$cb$"I$Acb$"I cb$"A$A cb$"I $cb$"IIcb$!i4A"Mc [xxĬ{IJ7 aaq{BCBc&"NvbmcMc^^$"I$I$cb$"H$Icb$" $I$cb$"II cb$"I  cb" 00MciJ````+/hR-- 4">>QmcX\\\$"I$H$cb$" I cb$"I I$cb$"I$I cb$.)ێ-Mc [ ȍȍ IJ55558qkb``b$" $I$cb$"IHcb$"I$I$cb$"H$I$cb$"мMc [JH B77775 B!BPsBB!H$M$mc,[kJI$I$kJ$"I $cb#@McZ`iJ%70f@BOkzz$R"R5mc [Zzxx  kJ$"I A$cb$"A$I$cb# ,McHJ``I-(J >Lmc`px$"I$ cb$"I$Acb$"H$H$cb X&`&,c(Bؘ9 ɐ) 1"#'r|Mc\\\V$"A$I$cb#"AkR$ۂ8lMc,[L,hIJ771tA/sb@& m;۫&kMcUWVV$$:McZ~# 'McR_# Id'McHJU":6v$LcHJzUI9inHJ% D5msoR^@IKk" 9yUmnkx9!'Q-c_U-"`I5{ c\XXpNkJJNkJJNkJJI$I$NkJJ!II cZ*" 9 cjRx`-{IR -"u?sMcV^\x$"A$I$cb#0`6:Mc [#`M'Mc(B^X;'Io(B_WU%I(JU%?I$Iis <ɗmҜs x?#*$ӔmczWU+"?ysMc\WUU"PȀ@McRxO$s>1Z -@$I$Ϥx? tisjz\*!_}sMc\WWW$!M&4cb$"I $cb$"I$I$cb$"I$Icb#"A @cb$"I $cb$"I$I$cb#"I$ cb$"I I$cb$" $I$cb$"I$ $cb$" $I cb!P#&McHJx^ HyN(J% >IXAU5; PU|xx^W!|9 HMs _xI's\股$ sWX#0lÖ|s $"I$A$|t$"$@$|t$+v5|s(z" 5س'sR`X^ɟOZ5 A B{x7!?MsRX50I{bս*89q4P5 x:#O?~'|x^WU$ҭ|sꪪ"# |,c^x,O'+c⢫-,m@{mc^^x$6lڈ5Mc ["C',cHJxVh}WHJW-9w@@Js+ 9 ZMmcxW,"msMc|WUU$!H$I6Mc [ AIkJ$HMcZ`3;NR5W+ I0{)!90r|WW^x$"I$H|t$"A I$|t$" $I$|t$"I$@$|t$ H¦5|mkxk$sR^ HĹMRW :I|`Aj{. ;"S'sx~z.':mk -%7:ɓ$):xKtФHJ5'I$I1 <h{(x?#X>~$mcx^WU#"@ A$mcMc\WUU$"HI$cb$"I$Icb$"IIcb$"I$H$cb$"I$Icb$"I H cb$#$IMcZp}>`Z 5U$I$sx $ mcUUVX$"I$H$cb$"I$I$cb$"I$A$cb$"H$I$cb$"I$I$cb$"H$I cb$mm6Mc,c# 13',cB`x:I$I.(J5 =!P`ӜnkxX."?${-c\WUU# EZ-cbꪪ# c@bUUUI$j1Z=ɑX0~5QMc\\\W$!H[4Ecb#"AI$kR$"II cb$"I$H$cb$"I$I cb$"II$cb# hS4m4Mc [HHHJ3 @t@qsCcbc$"H$I$cb$"I$I$cb$"I$@$cb$" $cb$"H$ $cb#"$Icb"04McHJ````1yPhR))))5">&0McX\\\$"$A$cb$"A$I$cb$"$ $cb$"$A$cb$Ҏ)>,Mc [ ȍȍ-IJ55557qkbbbb$"II$cb$"I Icb$"H$I$cb$"IH$cb$!I4iMc [z.p&{IJ7B)Cp{K'N؆mk,cV$O値mMc,[ I$HkJ$"A$I$cb$"IHcb$#>#LcIJxp/ I\b.c":9s [^|xx I$I$kJ$" $I$cb#"HI Mc [#P9b&,c(B`pX\<IDɑZ)#?#>3'McxX\^$" $ $cb$"I$I$cb$" cbh&h"',c(B51, ۪='sMc\TTV$ :McZ~$ IX?McR_#I#?McHJUh} [(J׵1)oNmcxj"и}lkIJ^W${ (BU~߶] HJU.I9hR 3I/{%4 Ir IpsW77)O6pZz6 XϗdZ0">>|-cX\\X$"I$I,c c$"A$I$,c c$"I$,c c X%[% cZ@ cZjꪪ3;IJ%+VhANczzhI$L$ cZ NkJJNkJJ NkJJNkJJ#Rx cZ`ƒ G̓jR %7. Fh{ [p"i$Mc(BzWM'I{(B_ )I.B-s %@IX!IO~@_Ҕk^W1#I$hҜ{. p=$'O$Mcx^WU$"H$I$cb$"@$I$cb$"A$I$cb$"A$I$cb$!I$I4Mc c"hms,[!O2'i,c 5UI䯜 cx1cnIB_x6I$IRB*8O|pxxp1/spp0 s{k+pts0|mc1|mcI$I$1|mc@1|mcI$I$1|mc@0tsz 5bsRx\IlZ% :)dhќ| b7$McX^WU" I$I Mc [$"II$cb$"I$A$cb$"H $cb$"I$$cb$ vb4cb"-Mc UU ɝ}9Lkh +%$ZU^``OlNIJWՕ< Th4- 5"'}$|\VWU$"$I |t$"@$I|t$"I I$|t$" $|t$"IA$|t  ismc@ˍZ%574 Id3"|.?>|V\\X#" $HQ|s"0P=|R``xX!ϜZ @9Bhvia+"'}Q|TTWU$"@$I|t$"I I$|t$"I$I |t$"I$|t$"&I|sjʪ }2'9oZ'^,I\IϤ{xz,|Mc^^z%"I$i6cb$"I$H$cb$h1McZ`#'Lc(Bzh.BW- :I@pj9!Dqmcx_."ϓ?{McxWUU"P@McR`O's>J %(1ɛO_^`K'i?0|kz!$$tncU `Z?sR^'IR^W-/ɟ?qb* 9!0@8| ^09msU$"HI |t$"H$A$|t #$sk` X. [7^)yok|xrC!Њ9k'Mc(Bx^7!IHJ-; 4{= p5*'qMcx^U#h&i$nk-c|WUU$"IH cb$" $A$cb$"I$A$cb$"I I$cb$# `McRxO'6.R 7(T'1|_'!qSP|UUW\$"I$A$|t$+-6|s*zh&sR^X'IORzW ɟmR5 =I hUN-=$Œt$4|x^W&!hҦI6|W5 " hs^xO's:s -I$IΤ}= Fhsz=$'$Mcx^WU%"h&M4cb$"I$A$cb$"I$ $cb$"HHcb$"A cb$" $I cb$"H$I cb$"I$ $cb$" I$cb$Z͒(IMcZx>ФZ %ɑI$lkb$ ΤmcUUVX$"I H$cb$"I$I$cb$"$$cb#"I$IkR$"A$I$cb$#>McHJ`XJ܉NHJ5% =Ҝsx6"N$ cx^WU$"I$H$,c c$"A$I$,c c$!MH,c c"b cZ+A磳nb≵UɟnZUW R.RU"@wMcZ U#$@Mc [ $!M6hMc [ $"II$cb$"I$@$cb$k5E5Mc,[HH̃B77776xhqkbbbb%"I$m&cb$"I$ $cb$"I$I cb$"I$H$cb$"II$cb$" I$cb#P5P5McHJpppp4I pZ))) 1">#'|Mc\\\\$"IHcb#"  cb$"IA$cb$"I$H cb$,-,-Mc [ ȍ IJ55557qkbbbb$"I$I$cb$"I I cb$"I$Icb$"I$H$cb#"A HkRr&h&+c(J31 P͌-"|'sMcVV\\#"I$cb$"I$ cb$"H$H$cb$" $Icb% R#*MciJ`.iR %-P/|McXx`` II$Mc,[% I8:McRz $,c(BzHI؏(J5 ; OМ/.x3"h{'|Mc\\VV#$Hd'Mc [$$I>McZ_# @?McRWpMHJ4)oymczr I?NIJW И${-IJWU~_.HJU )I .iR*3I.)/ c2Ir@|W/I9OJ^<y L- 6#'Qmc|V2#$0mcUU/"h<{McUU'"$I$kMcWUU%" McZ``d{R %0"#Co-cXxxx$"$ $,c c$"I$I$,c c$" $I$,c c!A$i4 cZI$I$NkJJ`=0Z)JXp`*)OZ(M'j&s cWWV\NkJJ@NkJJ cZ5ZR`" @[' cB_&O.)JWU5z7(Bz 8I$IN(B=ITh %x96mczWp"'3njJ'_,XI${xj‰*X)hsMc^^z$"I$A$cb$"II$cb$"H$H$cb#"HIkR"5McHJx0tϤ(J-%5%;I$I1l39okPh# McUUWX$"I$I cb$" @$cb$"$I$cb$" cb$"I$I$cb$"IIcb$"I I$cb$"I$I$cb$"A$I$cb#hЪ5Mc(JxhIМHJW5->Iɕ3. >6T1|x^*"?sR|\WUU$"I |t$"I$I$|t#!II$|s$"#$H|szI'Ps 5UI$Ϥ{Wx !4%};O [z`xINZW% ?ɕ DhҔ= bA#??~$mcx^WU$"I$H$cb$" $Icb$"H$I$cb$" $I$cb$"I I$cb$"I$I cb$"H$ $cb" 5Mc(BxiJ %% I$IR|xj: AT|x/hR'N$sx^WU#iHssΩ&@ ssUPNq.kVx Rsk { d1|mc1|mcH ssP#&sRpXHyyrR% >Ir<C'Ӕmcx\^!k"AMMc,[!Ah4kJ# I$MMc [*(*$"A$I$cb$" $ cb#"I$H$kR$"H$ cb$"H$I cb#@s-[?R5@Idunv7@#R'4|`x\^$"I$I$|t$"@$ |t$" $A$|t$"I$A |t$"I$I |t$"II |t!N$m|s{h%Ryy<s4X Ӕ0|Xxp`'!M۬ 70|tUVTTX&r{RX\I$InγAZU0|bpx$"I$H$|t$" @|t$"I$I$|t$"I$I$|t$"A $|t$"I$I$|t" P @t cx`̏ c %,c~)">kMcVVXX% i::MciJx*>MLc(J^%-I{.(J-8 h{/ p7#*$qmcx_U&" $v$kMc~WUU$" $H$cb$"H$Icb" McRxO$|>ϤR %(\|V#m X&|Rx\ j{ RW- 9Ix@A)s+ 4i/X40|x^W!}m|k\!tku!Mn6h|k I"|k#OBtkW# 쳱@tZz^'N [ '.߉b: 1UAnkx4$'O$QMcx^WU$" $Icb$"I$Icb$"A$ cb$"I$I$cb$"I$A$cb$"H$I cb$!AҠI&Mc [# kR^z%O'NZ (`q|Xx$I5|,ch"5t$sRx^ Hq]ZU5 3I$IS ><qhUo7 x<"P}T0|x^%"HI4|5 $"H$Iь|$۲mp@$# psX`t:0{ .tJ9|s~^Xx'"I&k-kMcW^X`$"I$I cb$"A$Icb$"A I$cb$"II$cb$"I$I$cb$"I Icb$"I$cb$" $@$cb#" $$cb$$@(1McZ``&{k(Jޗ*I$ 1 (I$:s@/$@!McUW\z&"N$pb;mcMcV^x$"I$A$cb$" $Icb$h*5McIJ`hI HJW5 Aɕ !Ths- >#3?}$-cx^WU$"A$$,c c$"I$A$,c c$"$I$,c c$" A$,c c$"$H$,c ck"P cZxM>9nZU)I$I-r? ' Kk_* l{sZUx @w'{ZU^$TJvLcR \$ AMcZ+" `5McJzHĉ.HJ5%6z\qkbbrr$"I$A$cb$"I$ $cb$" $I$cb$"HI$cb$"A$Icb$"I A$cb#P5P9Mc(Jppxx5 ɐ 0b /"z"?sMc\\\\$"I$H$cb$"I cb$"I$H cb$"I$I$cb$>(âMc [ʭȯ IJ55557qkbb`b$"I$$cb$"$ cb$"II$cb$"I$I cb$" $I$cb`&X=,c(B69q /)/"z'x&{Mc\\\\$"A$I cb$"I$I$cb$ M$Mc [$mf?Mc [#`V?McZ_`>' IJ7)aoRx`&Ms(B~W5X$mۯ(JW-I  iRiۦ-ж]>#*II$Q{xh((c{jJ^^fyñIJU К$.N iJUUO۶] .HJU-I;.Z53I0].IՏ,cV: )J. m5"yIbQmcW3"0mcWU2#$|McUU*"h$sMc_UU'9#5Mc(Bpxxp8ɐT\P)k )2"?>0|McV^\\$"@$ $cb$"H$I$cb$"I$Icb$"¦mMc [r{R71 fiA{Nk``B%"i$H$-c c$" $I$,c c$"I H,c c@$H$NkjJNkJJ  bIJ``+gIJ +h={ c\Xxz 5 cZz:ZJ^u$bBWX$IێJWUIaФ(J-3I$I{9I@ќ/.z?$c]mczW4"X]y'QMc_UU$!mM4mcMc\]]% Z#ѐ(IMcRpO't>R %) \sV^xb)"-ծkMcWV\x$" $I cb$(1Mc [`#ZC',c(JxV`Io(B_յ <I䉑hR ? $hЪҜcx^/X:c|McX_UU1Z [ 5#0P McUUTz$"I$Icb$"I Icb$"$I$cb$"H$A cb#"$Hcb$"I$I$cb$"I$ cb"`5McHJx`$IB_׵-/Iɛ*k (= !T`TQpX."璌|\WUU$"A$ $|t$"H$I$|t$"II$|t$"H$I$|t$"$I|tꪪ$:|s^`$МZ ?_W!۶ p5I3\6֍1Mc~\z&!h6mmcMco$" $$cb$"  $cb#" AkR$"I$I cb$"II$cb$"I$I$cb"@1Lc(B`h$IN(B_)b?4hu6b<>tb;U|\^WU{ d1|mch6 ss̀@s UU甘|9.sTb#0 kx nsk 1|mc` 1sRppɟ܏RW% ɓM!:)d`k`x(&M$sMc\VUU@ kJ IkJ" I$I$Mc [$"II cb$"H$A$cb$"I$Icb$"I H$cb$" $A$cb" 5McIJ`xMɟoHJ5)?!t`u/bx+"wR|\WUU$"I$|t$"I$I$|t$"$I |t$"A$I|t$"I$ |t$"H |t$"H I |t"9PtZXxp`+֮ b4A!CҜP`b‚.kb5kxxHΝМR75%AIdɑT6=#>j2'4|xX\\$"H  |t$"I$A |t$"A$I |t$"I $|t$"II$|t$"I$A$|t$!I$M|sꪪ!s>Z^z{ !&&?oR^\$I/HJWյ 5ɟ?pZ+90@Шkx^4#O$0Mcx^WU$"I$I cb$" $I$cb$"I$I cb$"I$A$cb$жiMc [":X.R5_NLФZ pBФZ׾:``U /8"*t'|x^W&"pĉ$0|teV$"H$I$|t$"A$I$|t$"II$|t$"A$I$|t$"A$I$|t$"@$I$|t$ |,cx:,c %.VHKok^^\x("N4t:kMcUWV\$"I$H$cb$"I$A$cb$"$A$cb$"II$cb$"I I$cb$"HI$cb$"I I$cb$Mc [`X .R%_')Sos$NФR^W InФZ%@I T = )@@Цu x^3"XO?󔑄\^UU$"$I$ф$"$A$ь|$"I I$ь|$"@$I$ь|$2mP@ # ps'xy{誋 +dIWkUWXp&"I&vkMcU_^$"@ Icb$"I$H$cb$"$Icb$"I$I$cb$"H$Icb$" A$cb$"II cb% i(1McR`!-:|kHJz^W57ɟPGR) 8$h+֒mcx^-X;s [8zO'NZ $`XnmcUWXh%"Im"mcMc_$ @1McR` #'MOHJ_W5>IBZ =!?-cx^W$"@$I$nckb$"I $,c c$"I$I ,c c$"I$I$,c c$"I$I$,c c$"I I$,c c$!IM4,c c%h"' c(JXX\>ɑɐCҜ{)<"-'|'Mc\^W'# $I$kMcUU'P$IkMc+'O$̃ncj/'nZUr'vϤiRUU+ywr%(J-6Z]:q [x\$ @McZ*$$Mc [$!MR$I4Mc [ $"A$I$cb$"A$ $cb$"A$A cb"99McHJxXXX4ɐ PKs +"x''sMc\\\T$"I$A$cb$"I$I$cb$"I $cb$"I I$cb$.)Mc [ ȏȏ-IJ55557qkb`br$$@;McZ$ 'McZU"$McRU#@$McRU" $$Mc)JU 9k$,cBx^U4 o,k"c-І$sIRWU"D$,c(JU/DIsBU IbIJUf?m (BU Ж$mk.IJUU* L4;NHJU 1wa!* s,I$I2o U6I$-Qo(_U3I$QPUU.IϜ-c=IAҜ-b8 INrmps^6+ F0kW6$ $0mcU3"40mcUU."|McUU&&j&kHJ4 )B)BQ{("J&hĎkMcT\\T$"H$I cb$"@$  cb$"A$Hcb"0McHJp```-.(J 5"9Qmc\\XX$"I$@cb$"I$H$cb$"H$A$cb$!i6Ecb#j>9,ciJx0 kkŠ *"Əs-cUWVT#$ &-cZZ^ Z cZI$I$NkJJA NkJJȂ ZR@ ˏȋn(J%%55!nМ cW\pM'No)J_U I&AnJU3I$IoiR 6IĞkjzIڄhf c@%VS>Ӝmcxz4"OZNZ "`|nMcUWZb$!EmMc c%"I$I&cb$"H$A$cb$"IA$cb$" Icb#`5McHJx`$I(B_5 :IZ)  :\s>> *~6 $|x^UU$" $I|t$"I$A$|t$"AI$|t#"IHQ|s$"I$I |t$]ۡ5|sj"'sZ`XVN1yZ% Bə!Th.8 b?:McxX^W M>.,c-U# 9NLcUVx% sMc c $"I$I$cb$"H$@$cb$"I$ cb#" A kR#@ 5McHJ`У'N(B_W%HR AIAu>A#P/>t$U|px^W$!m4(|tꪪI$I$1|mc@1|mc@1|mc  ssꪪHssp='PhNs`+`NyNk^` 6s cz#'MOR^V51aKk):)A1| h7'}$Mcx^WW kJ kJ I $kJ" I$I$Mc [$"$ $cb$"A I$cb$"AIcb$"I$Hcb",McR``"'MoHJ_W5<ɑ 1pAT)s=+ <#??}$|x\VW$"H$A|t$"H$H$|t#"H$I$Q|s$"A$|t$"IH$|t$"IH$|t$" $ $|t$"I A$|t" t c``ٔNIlR 09 ITW3 #1iJ`` 1Z%-- @ 9BU.1#pL$|\TVW$"I$H$|t$"II |t$"I$I$|t$"I $|t$"  $|t$"HI$|t$"I I |t$R͒(@t,c`sZ 5 ə1mrȪ8I @Ҝ`:"լ'mc^W*"'sMc\WUU$" H cb$"II$cb$" H$cb$"I$I$cb$"I$ $cb$"I$A$cb$#&McZ` ~B?ՎR 5W 1 ; 8ޘ3Qbz_V%"H&M&|t$"A$I$|t$"I$H$|t$"H $|t$"I I$|t$"IA$|t$"I I$|t$"I$I |t$ pb3M|sxꢈ!#:XP c7zz&II$ [ ( HmcW_~$"I$ImcMcuWW$"A$Icb$"I Acb$"A$I$cb$"A$I$cb$"A$A$cb$" $@$cb$E۶5Mc [# X&McHJx^ vHJ % I$I$R) +?I1B? |IJ*~^<I$Is5 $mpbx#{RUඹ]?RUU`$̓RUWВ'lsiJU@n,ciJU $,ciJU&}' c(B*5K9/+c zz*$$kRWU! I'McHJU m$,ciJU$,cHJU*@lkIJU*FIbیsiJUUJd+ahJ55 ,$Rz^$oniJUU $%IiRUUO (JUI? (JUI/(JU"I-.ZU(ɟ$ `Ϥs_OF{ <I$Hkp0IN{W1IRr I/s*U1 ɿI isU2 4NkU.9{ Jxz0NXpb 8!І'mc^^4"4$0mcUU1"ж0|McUU."ylkiJ<8 aiq{kki)"O?NkMcVWW$"H$I$cb$"I$I$cb$"I$I$cb$"$I$cb &hMcHJ4!B!BQ{&"H8L$kMcVVVV$" $@ cb$"H$Icb$"A$ $cb#  McR``{.(J 6#C5DS4qmcxxpp$" $I$cb$"I$A$cb$"I $cb$"H$A cb# 5MciJxp`3 T|Z  )/"{>{-cV\\\!` p cR f`d6 cZ :bIJ~hc$ZBzU:I$BWU-aA55 8I$I Oʰ{4IH1|~8y7@pk_5$qMc_U.6oQ|,cx_UUr&iJ %7,TA/kxxxx$A,$Mc [| ۶$Mc,[ HMc,[$!H$I&Mc [$"I H$cb$(@Mc [`}'J%_" |I$sxj+`$MФ(B_ק y뺵ФHJ-=I!0@.,`="'Ӝmcx^W("h3'i4kMc|WUU$"AI cb$"I$I$cb$!EI&cb$ђ&hMcZZx}>ZnZ#-% ďLcU^r%4mc-c/$"I$ $cb$!AI cb#`5McHJx`$INB_׵ <IĉSb* =+U|x^' `)m1|s\z!| k-7$ |UUVX$"I$I$|t$" $I$|t$"I I$|t$۶i1|sh#'sZ`XVH1nZ% >I)P@N9b?" t'Mcx^W$"H$ $mcMc\WuU$jAMc [x!t9 iM,cU .LcVX%$ NsMcUUUT$"I$I$cb#" kR# ` 5McHJ`3'N(J_W%HJ AIɑSr<E%ь9'u1|x\^&"880|thfie$"I$A |tH$@ { l1|mc 1|mc1|mcI$I$1|mcm@ ss`Ѐ-c ? 7sФ+cZ-R- ,I$@1_3yİmkzZ{ &mwMc,[I$I$kJMc,[ I$kJ -ТI$kJ!I6I$kJ I$ $kJ$!H$mMc [*$݆uŊ6Mc,c"9j$,c(B`x\BII2hR+*@ јU0|px^%"H$i$0|tTZiU$"A$I$|t$" $A$|t$"I$I$|t$"I$I|t$"I$H|t$"$H$|t$" $I$|t$" $I$|t$"A|kjʪͿz毜Z%7*II$2ZSm/S0G5ZppppH$ c@hHTQbp'"H$I$0||TTUU$"H $|t$" I$|t#"H$  Q|s$"I$I$|t$"I$ $|t$"I$H|t$"A I$|t$!MI"0|s#9PsZx`ni7wФZ 1ITsz^Xp("k$p&kMcVVTX$"@$I$cb$"I$H$cb$"IH$cb$" $$cb$" $@$cb$"I cb$"H$A$cb$"I$H$cb"XMcRx~R?Z)-)XI$PXr@#'H@q|W_&"I8I$|t$" $I$|t$"$I|t$"I$ $|t$"@$I|t$"A$I$|t$"I$H$|t$ @&1|k`!9s$sR`x^ y7U Z ()Фs\x)">lsMcW^z$"HI$cb$" $I$cb#"I$I$kR$"A$I$cb$"$ $cb$6 ڶ-Mc [#C'Mc(Bx^H.B5 9I|`{!0O"'#,c5!Kə4nu'!h jͱT|#"A$I$ь|$"$Hь|$" $@{$"A I$ь|$" H$ь|$"I I$ь|$"I$Iь|$"H$H$ь|%*Ҫ5p+c`OФ+c/75?1{z⠠&$ ФkUUV\%"I$I&mcMc_$"H$Acb$" I$cb$"A$H$cb"@1McHJ`3'N-IJ_W%:Iɗo(J =4hШҔkx^-"OsMc\WUU$"I$I$cb$"H$A$cb#"AH Mc [$#тiMc [^`}>Zn [- s";!P@ض,cz^-`usZ$"I$I$,c c$"I $,c c$"$I,c c$"H$H$,c c#"A$HnkjR$"H$I ,c c$"I$H$,c c" 1P= cB`pX>IIOB <$@=&mcpxX\#"A$I cb$"I$Icb$"I  cb#" A$kR$"H$A$cbX&`&,c(Jܜ@ POӔ̃)5"h;t'0mc^VV)" sMcU*I0n{mc*U+#i IkU+IP/>J<I9 ҜZ 6I# I/{k/I$$ O{".$$ O{p0I$m Ols($.Z*;I9{u1IQ̃/Ib/{_2IҒ INs_1IBr Ios U0 ?,1PiJz&ϟoZ ==hҔ-kx1$ m$-cU2$$h$-cU2# $| cU1"@'{-cUU1*dC6{Rza_ɕ\.J :$9۳=r cxxx)"Nnk c_UU&" 'N8Mk c_Wu$"@$I$-c c$"I$ $,c c$P5P5 cBpppp,Ob! />>0Mc\\\\$"I$A$cb$" I$cb$"I$I Mc chh,cIJ3 AA0{CACK$"H$H$kMcWVVV$"IIcb$"I cb$"H $cb$"I I cb h&h&,cHJ5!B!BQ{&"L$L$kMcVVVV$"AI$cb$"I I cb$"I I cb$",McZ@ ʍ.HJ%%55 hhaPkpbb$"$I$cb$"H$Acb$"@$ $cb$"H$$cb# McR``#탉R %%2m9sBx+}$Z9VX'I-BU xnk JU+NA(:IpJ U 21qk W56~$McWU+O$|McWUU!$I$Mc S Mc,[ꪪMc,[ꪪ9P,[IJXp`7.Z*N;h{ [W^#IҶ$HMc [U!?`Mc [VX!ԖIߐ Mc,[$"I A$cb#"I cb# R͐ McRx`` kHϤ(B 5!I$IRsz> h{( x@#>}$mc^WU$"H$I$mcMc\WUW$" $@$cb! kR$"I$I$cb$" $Icb$!h$hcb##HMcZZh}>ZoZ 5 I$nMcVp%${ [T#h<:Mc(Bz`IHJWյ @Iɕ Sb* A$+U0|x^,"ϓr|\WUU$!h$AZ0|s$I|kxO1ǒ s)#  tx&"$C$|t$ $JL1|sj!̘3'sRx^HyrNZ% <I1`@N9b="'ӔMcx^W%"H4I$mcMc\wUW$"I$@$cb$"I$I$cb$ӄmMc [!ѐHN,c%UUxN>NLk\p#NMcUUW\$ H 5McHJ`3'NoHJ_W%1Z- =I$IsrC!ThЈuPx\-"'Γ [Vp- N,[UUUT Mc,[kJ kJkJI$I$kJ Mc,[P#&,[(BpXHܹmN(B% ?9B&hU 1"O?|\VWU#"$A Q|s$"I$A$|t$"I$I$|t$"I$A$|t#"I |t$"I$I$|t$"A$I$|t$"II$|t#"H |t$"II$|t j&9sZXxZ M6mײsZژ/IIs~_ۜ@"S>U|pxxX$"I$I |t#" $I$Q|s$"HH$|t#"IAQ|s$"I$I|t$"I $|t$"$@$|t$"I$A$|t$"H$A|t%ۈm|k`N's> c5ɑI$1hB* $HBmc__~$"A H mcMc]w|$"II$cb$"I$Icb$"HI$cb$" A$cb$"HI cb$"A$I cb$"I$A cb$(5Mc [ P P>,[(J`XIJiR &'ɕ0_Zr(!b0||TP@$"I H$|t$" $I|t$"$I$|t#"H |t$"I$I$|t# &-|kh5k$sZx^0I$Z5+ :hN+">#Мs W'\nkW^z`("N&XَkMcW^$"I$H$cb$"I$@cb$"H$I$cb"0McZ`"5k$,c(B`^ JܹNHJ% <IT)P@Ҝ.;b=#'Ӕmcx^W&#Ւ*mcZXxNN'nZ %& IMV_c'"M%kSt$"AI$ь|$"AA$ь|$"I$A$ь|$"I$I$ь|$"II$ь|$"$H$ь|$hЪ5Lkx'OO+cXV56ɟ7{/ 3}">Xs xII${r#$  mcUUV\%"I$M"mcMc_~$" $Icb"@ 5McIJpس'On(J_W%2ɟIJ < )`amcx1"?$|Mc\WUU$"A$A$cb$"$I$cb$"I $cb$"I H$cb$"H$A$cb$ђ&`McZx }>Z [ %UO' kx `NϤZUWx" 0MkR$ڤm– -cb$" I$,c c$"A$H$,c c$"  Amcb$"H$I$,c c$4A*--cbj`"KIJWח>9BҔ˃) 5"h"''QMc\^VW$" $ $cb$"I I$cb$"I$I$cb$"I I$cb$!m4I6Mc [hr'lk(B:C)BM+"'l?sMcTVVV$"II$cb$"  I cb$"I$mcMc+UU `&j&,c(J<KK 0$`$M$|Mc^VV+"IsMcUU+"`sMcUU,Ķo;sMcUU"L{(B>777?!jjӔiim."sMc_WW*"O~kMcUUU("hI$kMc]UU%"h4I$kMcUUU"00Mc(B````%pR) ))8">>q cxxxx#"I HnkjR$"A$I$,c c$"AI$,c c$" H$,c c$ ,--cjR````J 5#P9P9r cxxxx$"I$I$,c c$"A$ $,c c$"A I$,c c$"I$I,c c#P5P5 cJpppp*Ob) 0>QMc\\\\$"I$@$cb$"I$I$cb$"I$I$cb h&h&,cHJ3B!BQ{'"M$M4kMcVVVT$"A$@$cb$"II$cb$" $ $cb$" I$cbh`,cHJ3AAP{KKKK&"c'v$kMcVVVV$" Icb$" $I$cb$"I Icb$݂ڡMc,[̯zO(B74A!J{kkh~&"v$L$kMcWVVV#I$:Mc [x# H?McIJ~# m$Mc(B~U:I{(B_U-KdImoHJ5-PniRW+!I$+H k-9Iwips"4 @6Qmc W1X/>>|R^_+) X/lk)|'>sMcVV\XkJ@kJ kJ@$kJAkJ `,[R`ۻ -IJ 7+A Nk~x*"笍kMcUW^\$"I$I$cb$"I$I$cb$6L1Mc [!@к>Mc(J^?'Ip(BW-ɛ۷kHJ5 B A6s x;#C?O$Mcx^WU$"I$@cb$"H$I$cb$"H$Acb nMtMc,[$"A$ $cb$"I H$cb$"I$Icb$!I4Acb$#&AMcRx}>boR 51I$ c^h `$iJUժ?I$ISIs* @ $hШu0x^-"?O'|\WUU$"I I$|t$"I$ $|t$"AI |tꪪ$t29&i|s^z 9&i.k 7%P |-sC#Z&|Rx^ HܹmwNZ5 =I!@@Ҝ.*`;#9s?ҔMcx^W'"pIb;kMcVUUU$"I$$cb$"I$A cb$"I$H$cb$" $@ cb$mӶ-ڮMc,[% i{ [5_7/+czʭ5P&vIJ_W1HJ  i&IΤ[DɐBvu}6"3'~'|\^WU$"I$ $|t$"I$I$|t#" $$Q|s$!H&@"0|s1|mc 1|mc1|mc(( tsњ3'sRx^J9{nZ% 6ə/`AҜ."/b3' cx^W@$I$ cZh cZꪪ ZH{Z5UUUyǢ.Zr- . [UU\` Mc [ @PMc,[EH Mc,[ IMc,[` 1,[(B`pI(BW5 =ICvM=-=!>t'U|x\^W$"H$H$|t$"A $|t$!44|t$aV?|sW$ Ad?|k_$$ '|Mc_%  I#$t cU$I$$tZU# m$|RU ~$sZWĶIsRU'I0Z_UU*ٖmٶ 1+c $I$0O?I u;4?:#h"'{'|\\^V$"I |t$" $I$|t$"I$I$|t$"I$I$|t$"I$I$|t$"A$H|t#" $I$Q|s$"I$ |t$"II$|t$"@$ |t# sZx`  c %)IQ{^Z`) PsMc^^z$"IH$cb$"A$I$cb$" Icb$" $I cb$"I$I$cb$"I$H$cb$!Ii$Mc [$&Z&Mc(Jx^p{[.(B׵- .n-hМ{ 91{"+%I0W^|'"m&k1|t\p$"I$I$|t$"I I$|t$"I$@$|t$ H(1|kh5k$tZx^3IZ-+ : `A4 x5"`O?|x_UU$#(htmkXxN'-Mc &P! NkWV\p'"I$k6kMcUW^x$"IIcb" 1McRh!->M$kHJz^W5ɟwhJ- =ə0hҜ ;`=!,?Mcx^W$"H$I$kMcVUUU$!Ih$cb"р@McZ^xO'nZ %%|MV_s@("N$-$"I$I$ь|$"I $ь|$"I$ $ь|$"A$I$ь|"`5+cxɟ cXֵ 8ɝ{3*s/ :#ѢC'tx^&P#ђ(iҌ|xz}>bФs _ II$sxꨋ$  mcUUVX$I1MciJx`$InHJ_W%(iR ?AҜkx4"3}0Mcx^WU$"AI$cb$"A$H$cb$"A $cb$"I$A$cb#"@ cb$"A I$cb$" I$cb$cømMc [x!3Z Z-5UI$I$r샨 )o1bXPNyϤZUUX$0I攗 cZ-$&Hܖn-cb$"I$I ,c c$"I$I$,c c" 0 c(J``H-(J5% ?vh(Ҝkbp&"HL'kMcVWWW$" $I$cb$"A cb#"I H$cb$"I$H cb$¬--Mc [HK(B7778!Aa{CC'"HӤM$kMcTVVV$"I$H cb#$IMc [T!McRh&hB' c(B41B)BqM%/$kMcTTTT!Mm$kJ$$ TMc [&$"ڢ)Mc,[HJB77779 aaq{CCBB%"m$I$kMcVVVV$"IA$cb$"A$I$cb$"I$I cb"00Mc(J````$.iR 8!=Q-cXXXX$"AA$,c c$"A$I$,c c$"II,c c$"IA$,c c$",", cjR@```B 3#@48Q-cxxxx$"I$$,c c$" $I$,c c$" $,c c$" $I$,c c#P5P5 cJpppp$Ob) !!0>QMc\\\\$"I$cb$"A A$cb$"I$I$cb >,cHJ0!)Q{'"Kh$kMcV\\T$"  cb$"I$ $cb$"I$Icb$"I$I$Mc chh cHJ3AAP{KIK$"H$H$kMcVVVV$"I I$cb$"I$$cb$ h46Mc,[#?Mc [~h&`&lk(B(9TI$kxp#pJ_W$I(BUNN(JU>I$Il ohR;IH-Ux7I$ms_9Hڑk~U7->0R~_"tjnk [H$I$Mc [ P ,[iJp`R %* |Mc\xp`Mc,[@kJkJI$I$kJ kJ IIMc,[ꪪ"s&9sIJ^'{{r -` |Mc^xx#!A $cb"5MciJx"(:M$s(B~W5Hw[HJU 8I$ɛМ{ 0əs36mspkx^^^%"M6ImcMcWz|$"IH$cb$"I I$cb$"I $cb HvMc,[$"I$I$cb$" A$cb#" H$kR$"H I cb$!i&E$Mc [! #&,c(B`XoIoIJ % CI$I Sl?A4hШu0|x^."'|\WUU$"I I$|t$"I$H$|t#"H$I|t$"I$I$|t$"I$I|t$-(-|khh 5j$Z.pn۶mZ׮3I.=$9'mcx^_$"I$I$mcMc\W[$"I$A$cb$"H$I$cb$" $A$cb$"II cb$"II cb$"H$ $cb#@1McHJ``NМ(J% rϤ*s<IɑϤz=;ШT|x+w}>o{x" N0s\$!M&m|s$" I$|t$" $|t m&M${ lI$I$1|mc@1|mc ss#>sR`X HymR׵- :I|9BќoN9Č'-cx^W!H$I$.kbTUUUNkJJ@ $NkJJ@ cZZ#͒H cZz~> hnZ-UNn [W^  Ns [TMc,[@-,cJ`#'M䐜(B_W5) c+;F>4Z^$mm$qRU"$tZ_U0IsRU/IМZUU $МRU $mZUU+H4ϤZUIvϤZUIn0bUC1{բ I 2 "I$1U m۶mso I$H$2m6I$0PA9k)?sszx+$0|ZW" -sZU# t,cU$$@tmk $$@|s*U$6 |s*$"AI|t$"I$ $|t$"I$H$|t$"I$I$|t$"I$I$|t$"& |sj* }2'5 [5_rm.-* I|0sW^xp)"~B'sMcWW^x$"IH$cb$"I Icb$"I$H$cb$"I$I$cb$I1Mc ["Ѣ',cBxMĉHJ5 :$hs) 8$-}$QMc^W' -/R>_I$|>Z &|Ф0|UV^`&"I$HB;0|tZh$"A$I|t$A-|kh 5j$tZx^/IZ+ ;`A40 x3"O~$ӌ|XVUU$"$A$|t$!I4E$|sꪪ$  |Mcx-mk %)$HJ ncW_~x#hЌ9Mc(BxPC'I$HJ_W I߿kHJ->$hќ{( `>#P}$mcx^WU$"H$I$mcMc\WWU$"H$A$cb$"A $cb$"I$ cb$iMcZxO'NZ %%`1- %&"L$t0$"A $ь|$!Im4ь|#h+6 cx`$I. c\׵-<I{AS*s/ 9$'x^W'"h&I$Ҍ\_Uu$"I$A$ь|$I|x }>bs5_II$sr`B'vbМB_(߿b: (Ҝkp8)Ο$RWU!oMcJ$$ Mc [$"H I$cb$"I$A$cb$"I$I$cb$"II$cb$"IH cb$"I$I$cb$"I $cb% 5Mc(B`xb)hR)--m۶I8 I$I$ۀ 9I$ c^言VqZUUX!  cjR ېI cZ #P=l2'Z(JpP؜<IIb#">X/:jӔMcxx\^!”$I Mc,[!`Mc [UU$d߱-IMc [UU#>1 cXXXX mQI$NkjJ$@ cZ ضmI$ cZI$NkjJ ,"- cjR```` B 4$8B#4q-cxxxx!IR$m cZ*$m]Ѯ,c c$"I I,c c뿿$"I,c c"P5P5 cJpppp%/Z6!Qmc\\\X$"I$Icb$"AI$cb$"IHcb!>>,ciJXXXX2  0ks *"{?sǮkMcTTTT$"I$I$cb# @hQ$Mc [$$H>Mc [~%$IX?McR~hr$Lk(B2A/Rx"Il$Mc(JU!~$,c(BWIs(BU T?I-)BUЖ$ IJWU/M$ (JU:I$MO*=]8IH/\_6M$mPk~5O60Rx~: XɗpZ+7"`t>qMc^^^'"@ӦM$kMcxWUU$"I$$cb! 1McRxh/,cZ I$I$kJ@Mc [jjͳriJ%7+A) /kxh#]۫ :nk-cUWT\ kJkJkJkJ IIkJ"P McHJp`)ЮHJ ,Bmk~xxp'$Mc(J^`$IФHJW% IvhR- ?I|`@Ob@"Ѫ?Ӝnkx^W*XsZ^_ I}>.Z 5% {Mc_&"IČ&mcMcW|p$"HH$cb$" $I cb!IIZ$kJ$"I$I cb$"A$I$cb$"I Icb$[ѵk6Mc,[!3'Mc(Bx^H}n(BW  I$I1-"B!jIt/_W0"|\WUU$"I$H$|t$"A$I$|t$"A$I$|t$"I I |t$"I$@$|t$$(-|k` 9s$sRx^InZ5 ;h{x+9. [.W% NmkV^r$!h4@kMcW^z#"H cb$"$ $cb$" $Icb$"@$I$cb$"I$I cb"@1McHJ`3'N(J_W%`HJ =Iĉz= >$;x^, S󔑄\WUU% ci|^yNsr""@xOs\b$&Mn|s" $$|s1|mc1|mc1|mchЪ5sZxpɟZW-<Iɕ ˃  8X cx^$_Nk cTWUU NkJJNkJJNkJJNkJJNkJJk6 cZzꪪ#@-Z UU}:o+cX 0I斷-J~p#&|k(Bz^WII6 QR% &II$qOj((pb۶mZWIb@KkՂi[1 (I$2k $2uI$I28U+I$I 1j5I$ 2*Zs 5_ m۶ir)2ɕ\r~X7`"b+McX\^^#I' McRU^Ib,cRU"I$$ McRUU" I$$ McRU#$`McZ$A Mc [$"A$I$cb$"A$I$cb$"H$I$cb& $h*5MciJ`X'N̓(B^5->IɕМj " 9 ?Шkx^#O&,cU nk ۓM I&mѶ*rZ^ PyФZUU^HIHJו-?I9BNk4#h'L$QMc\^VW$" $I cb$"I$ $cb$" $I$cb$"I$I$cb$"I Icb%,-McR`` tq (J% 6S;qmcp`pp#y.IMc [U!IMc [U"MmMcZת"|@McZ^耀LH{B7791Apshj&<# IkZWW"I$McZUU!IlMcZ!`Mc [Ue B77776aasbcbb$"@$ $mcMc\V^$" $H$cb$"I $cb#" AkR"00Mc(J````#.iR 5>1 cXXXX I$@NkjJ I$ТNkjJ I$MNkjJ I$IRNkjJ "- cjR````B 2!۳5C341 cpppp$"I $,c c$"I$I$,c c$" $I$,c c!4B;C3 cZ#P5P5 cJpppp'OZ 6!>qmc\\\\$ 'Mc [$$'McR_$ ?McRU$McHJX^U.7p /Z {)&}$sHJWĶI$ls(BUd?IN(BUؘ$oNBU $۶HJUUI B+''ItnZx)I$IR М*kՈ7I$- =.I$es" ?CIDib7;mpsW6"hl?QmcU5"D'0McWU."IsMc_UU&"$N$kMczUUU$ McR`gR %%50$X"=Ds,|mcXxp`$"I$  cb$"I$I$cb!؂ۼmMc [h1p1,cZ kJI$I$kJ9P,[HJp`(Z +{|McV^\X$!I6HMc [*$"I$A$cb$"I A cb$" $I$cb$ڵE5Mc [% ::McRz JФHJ%5 ɐitR j ?91ks*I$IRͬ?I h2{z>$,:}$-cx^U&"`$I8Mk cx_u$mӶZ-cbꪪ#3 sZW_!9}>Z %' $@ {mcW_~&"I$N'kMcUUW^#"A$ $kR$!MIcb$"I$  cb$"I$A cb$H1Mc [`!$,c(BX Hy붰HJ5 AIɛTe^%;T`4|x&z>"ok'_#I,|WVx%"M&md$"I$$|t#" A$Q|s$"I$H$|t$H1tk`%/>|$sZ`XV,I$INR% @I{*x<#O?~$Mcx^WU$&IMc [x t2: . [ 5U% MmkWZx%(MkMcw^{$"HIcb$"I$A$cb$"AIcb"@0MciJ`#'NoHJ_W%`ϜHJ AI qB/AѢOx^+"8򔑄\WUU$"I$I$ь|$!A&M$ь|#@0|\pN>?n|?!ns\ $IN|kI$I${ l1|mc@ 1s,c`3'MPR^W5;Iəo c ; DЪNcx^'Cs c\WUUNkJJHNkJJ@NkJJI$I$NkJJ NkJJ NkJJNkJJ cZZ J? uڠɸB Im0QksI A$ԽQD=I$A3I$I22UW2Ir I1U3I IrW5 mQ|U5y#iӔ0|U5#m$|U5#D$Ӕ|UU2"$|UU/"y'tUU*"qQ|UUU&!ڦi$0|tYV#X&|Rx^HĉФR5- !I$I2OCIbtqbx# `|mc^xO'k5Rlk+ %II$Τ 7I$ɑ䳽Ϝx7I$@Rќs^_-I$ ;U0I$1/I$IUI$InUI$I$𤎜Q;V@̃~ I$ФbW@,IZU 'mۯZUWORU xϤZW 1ɑI$Q{p`"ڸƖ/ [_!'-McZUl$l ,cR`:t$ [Az?0I.(J :9qnk x8"O?N$qMcx^WU$"I$ $cb#"HH$cb$"I$A$cb#6 Mc [` # Ф [%UU }Ϥ,c "Z1Rxp1IR+<A4 x4#'O$ӌ|X^WU$"$ |t$"H $|t#"I @ Q|s$"HI$|t$"H$I$|t$۲Ҥa|szj#3Z /mk5^z Фs < Idi{z8#X>}'mcx^WU$"A$I$cb$"I$A$cb$"$H$cb$"I$ $cb$"I$I$cb$"I I$cb$"A$A$cb$!I&cb$ iMcZx3.Z 5$&Ѧ? czhk{+cWս :WP@t/ =# 'x^W$"H&I$ьq$"I $ь|$"I$A$ь|$"IAь|$"AAь|$"I$Iь|#P|p}>s-5_ɑI$1-x-/6msmc__VX$"I$I cb#"$A kR$"I$A$cb$"I$I$cb$" A$cb$"AI$cb$"I$I cb$"H$I$cb$H(1McR`P&M{HJ^W58IoR : )P@kx\."${Mc\WUU#R#AMc [x |9 hФ,c 5UUI$O&ks*I$I$/s5I$I {I$ӽϤw0$rLcz\zЖIiJUU @n'sIJU"0InMcHJ*U# -MciJU%$IMcR*$IMcZ" ,1MciJ``z .(J 9#S#9>mcpxxX$"HA$cb$"I$ cb$"I$I$cb$))Mc,[HʍB77777Aaq{CC@C%"HҤI$mcMcTtT$"I H$cb$"I$ $cb#"(")Mc [ȍʍ.B77774`v`sbbbb%"m$Icb$" I cb$"I$H$cb$"IH$cb&1#1Mc(J````".HJ 8#>>Q-cXXXX#" $I,c c$"I$I$,c c$"$,c c$"I$I$,c c# , cjR@@`` B 5+;51-cpppX$$Hf? cR_# ' cIJW!@[' cBU" im$ cBU @#:NbB`zU-$ɑ\ə䏜Z-P>MNB^Ж$oiJUUX,IHJUI(BUIH(J'yrks/I$IR ФOh6I$ Фk"z5I$d{ ?Imќ|(X;I msU7 FPkU6$m$qmcU8"DQMc_U2"'0|McUU$ 3's"'.R>2 viBPs`{k'"H$M$kMcWWV$"@ I$cb$" $ cb$"H$I$cb$" $I cb$26mMc ['r{R50 f`A|k`b$"H mcMcVv|$"I$I$cb X6+"Mc,[!))McR---  kJ Mc,[  `McJ`ͭiJ %%.HA|mcxp$"H$I$cb$!I6H$cb" 6McZz"H['Mc(J_!6N,cHJzU-$ۏHJW-ek$qZ5+ $ [<I$IZ@ AҜNkx<#O?O$-cx^WU$"H$I-c c$"I I$,c c$"H I$,c c$킶 -cbꪪ # sZ5_ x]?.R-&$@AmcUUW\%"I&H$mcMcU_^|$"A$Icb$"I$I$cb$H5McR` 9s$Lc(Jx^I! B =IT @!4h+u0|x^1";䳌|\WUU$I|kzꢨ#t2: Ok _$ Ns)%)m |t(%"I$I|t$ I&1tk`#/>|$sZ`XV8I$INR% ?pAҜk x9#'O$qMcx^WU$"II$cb$" $H cb#RMc [x h. [ 5U$ MmkWXz%IIkMcW^$" $Icb# @1MciJ`3'NHJ_W5iV6 IJ >I\`@@#Ŋ'ֵx^W("mMҌ\W$"I$H$ь|$"I$A$ь|$"IIь|$"AI$ь|#&hPZ  |?^z{Ms^z+ 4sosUUW\A(5sk`=s$sR`X^*Iɗ c+< )DhШӜnkx^+h$O${ c\WUUI$I$NkJJI$I$NkJJNkJJNkJJ NkJJA@ NkJJNkJJR cZꪪ  cZP#& [(Bp^I 1(J%% I I$Խ/ I$I$Խ/n31Lɕrp|X^-K?t^^^$I1|s&"ı'0|tY$"A$A$|t$"II$|t$"$I$|t$"I$I$|t$"I$I$|t$" $ $|t$-:tE.0|s"P&|Rx^Hܹ}ێR5 &I$I2|8CIBO/x<#'O$4|x^WU$!I$M4|sꪪ# h|,cxI$t:0Lk -@$A JH.J |QP_^x+"пq|WW_."|UU/"v<|UU/"Iw| U0#*I$|U/Dn0|U/ I0|.I IМQU2IR IϤr+I$ФUU+I$k *^ $Ir- 6I>2Mc(X#9ɛs^z*f+z1{Rx->|k(Bz^51IhR*7 PAmkx3"`O;0|Mcx^WU$"A$I$cb$"I$I$cb$"  I$cb$"I$Icb$"I$Icb$@&HMc [p!3 NR 5_ Qs 99S37$6#'|'|x^VW$"I$I|t$"I$I$|t$"I$ $|t$" $A$|t#"@$ $Q|s$"@$ |t$"I$H$|t$&@|khࠀZ9Mc-_.tONsxzpI$c X=kMcV^XX!$l$Mc,[ Iۖ$Mc,[ ذ m$Mc,[ۖ$Mc,[  @Mc,[w!&m$Mc,[! $I$kJ!$I$kJ @1,[iJ`MHJW5Ii1-II$RH(3֍1SWW!M$Cp@Ҍs ҌsҌsҌsҌs Ҍs@0qs`9s$0|Zx^#}b  O'sxȢ0WMMcUW\pI$HMc,[I$I$kJ@E(IMc,[$"I$I$cb$"H$I$cb$"HI$cb#(McZ`>tkHJz^W&B- >AҜk x4"ON0|Mcx^WU$"$I$cb$"I$Icb$m6]Mc,[$i,c%UUtrKk"-(I$H$ԽqUATH$I$ԽPp;I$I$Խ]jI$w¢IҶmQ̃ ImRW P?tKϤHJU $]ϤiJUWr'oIJUU!ɑФR5Ш'qJW"mn$Mc(J_" Inmc(JU" %$LcIJU#@$?MciJUȍ͝N(B77556 ap [x$$McRU#$McRU$$@ۖ$McRU$ &a?McRU ȋ˛oHJ5558xך5qZz# $McRU# $$McRU& $H$$MciJU# $$MciJU"5l$Mc(J`x^"iR5  X='QjRx^# Im$ c)JU# i$-cJU!$ cJW@ImsBU S'I(J_UU* y{w׶oHJ '@>jJ^W*H$mnnJUIbJU+I(J Il}ФJs&I$IR ФO/I$/PU5I$.QU3I$mkW>Is)Bp}6/mpkW4yƶqkU7!mqMcU5"@$QMcU15dC6|R`z,O_GhR )-9">>Ӕmcx^^^%"h$I$kMczUUU$"H$I$cb$"I$I$cb$" I$cb$"IIcb# j>9McRXXx. )|+k*4s [$"I$I$cb$"A$$cb$"I$@cb$"H$I$cb$"I$ $cb!j>5,ciJxp/! Kk  )"r ?sMcWVV\#"Hcb$ Mc [h$TI$HMc [$"$I$cb$"A$I$cb# CLMc,[ 9J7_-T/sji$HЪ>kIJ^ ~$,cHJW5$ɟHJ_U I]1iRU Im۶ QksI$ $ӽϤ>3+$/o>I䉕r> !0`ШӜNkx^5#$I$-c|WUU$"I$I ,c c$"I$ $,c c$"I$I$,c c$"IA$,c c$" $I$,c c$ ڶa-cbzꪪ" # Z5UU%XN' [ &$HAsMc_~%"M4H$cb" @1MciJ`/&M(B~_5IHJ% :IpAU%@U|x_)?qsWU$!ii 0|s$"I$I |t$I|sz#k iNkW#O'Ns&ۆmۘ1|kh$/>|${Z`XV@I$IZ"<1P@mcx5"?O$PMcx_UU$"I$ $cb$"I I$cb$"H$cb$"$I$cb#B# @Mc [p h.Z _$NmkVZc$ @J5mciRx#'NNIJ_W%I$ hR-AIɐO֭Ф?->$ :s'x^W&"p'I'ьq$" I$ь|$"@$H$ь|$"I$I$ь|#"H ь|$" I$ь|$"I$@$ь|#Iq/|` OLc *p7sz)L:R^*IoR5- &IϤ{)m/N-c^V\`h۶m cZNkjJNkJJ@$NkJJNkJJNkJJ NkJJ$NkJJ@NkJJh9ZAxHɝФ(J% I m+I $Τ`8I$ɕBqPj~I$x'lk(FHtzz -bk6|s~| $ɖm|k  $I${ l!I$I$|s#"AI$|t$"H$I |t %I$|k!5m>tkz__4e&sRz^Hܹ}МR5 +I$I2˳sC BP.x:!O~<|x^WU$"I$I$|t$"A$I|t$XSk۶|sx⪪! qMc_~qs vPmrMz'd)00UW_\'"M$M&0||UTTP$"I$I$|t$"I$H$|t$"I |t$"I$ $|t$" $I$|t%" 4I4|t ("'0||UUU'0iҪ1Q|mkj#`NZ^5@In:C#:ڒRpxxO'k9R %.IJzx;I߿HR-9)@`Ҝkx^1"]?|Mc|_UU$" $I$cb$"I$I cb$"I$I cb$"I$I$cb$"H$I$cb$"I$I$cb$"Icb#mMc [h!3 nZ 5W#O'kk))4IO|_UVX$"I$H|t$"I$I$|t#"  A$|t$"I I$|t$"A I$|t$"$I$|t$"H$H|t$$`(1tmk`&L|ZX^5 yBKk "p\kUVXzI$@4Mc,[蠀A$AkJI$ kJA$kJH kJ@@$kJ$kJ@-,cR`P&Ms(Bz^5-o(J 69퉂nc``x [ %I$I$1^ `X1pUW_xM$h6qW^z I$qpI H.tIH .tH A .tH1pk`/>|$/|b`XV2Iyќb+ 2 T`sxp: kW_IM:{` LcUW\` Mc [HkJ $I$kJ!tItMc,[$۶aж1Mc ["5k$Mc(Jx^ɟܿ}NHJ% ; $h{.p:#'M$Mcx^WU$"I$I$cb$"I$I$cb$"II cb$"AAcb$]mbMc [$ cI,cUUUI'Q+c mIԽ3I$I$ԽqDI$I$ԽqDTV@@6mҤӽX:I)`@0q|z/I'0|UU.I${U1I$d | U1I$|U0I$*U(I$IiϤUI$I Ӷ$=1̃W" 㶵 ZWIiRUIHJ5?I$R^IB'$@(BUq8(JUa$4IФ(JUI4 HJUIm(J5*nJ^Ir .(BUIr?N(JU!I/(BUIُHJU*&IHJ&I$Ϥ/JW($ .ZW-$n ZU+I$b/I$o [ z+I*k" >IҖmҜ{\1I2 IOs U5mk U4 m0kU1m բ>iJ^<IɐPҜ.9$㆑$QmcV5"0$QMcU0F~|McUU0"$|McUU'>#>kR^^^5 !KKrj{)"{kMcVVTT$" $I$cb$!MI$Mc [ $"I I$cb# McR``_iR %%3"س[O0mcXXxp$"A I$cb$"I$Icb$"I Hcb$"@$I cb$" $I$cb# @0McRp``*II{hJ , |Mc^\\X 6lIڶMc,[!Ii$kJ$"IA cb$"H$ $cb$" $I$cb$ P1MciJp`- ɕdR /"؏=|Mc^\\X$" $H cb$"A$ cb$"I $cb$!i4M$Mc [$ IҶ>McRz"@[?McHJW"3>N$,c(JxZW-ɝZɉHmےRUI c-$I7ZzIn?s5 ŊI$7_$ԽòzUBIdBqਪj@#'ӜNkx^W-"'O$s c\WUU$"A$ $,c c$"I$A$,c c$"I$I ,c c$"A$ ,c c$"IH$,c c#!I$ncjb$I$NkjJ![C, cZz # Z%UU&TO'N c-%h6mc(Bx'I(B_W-I0iR- @IɕSn"o># 'U1|x^U'"h$I$P|TUUU$!IҴI$0|s$"I I$|t [$C-|s$" $ |t!T@sk` PPc=>R *~^Zz` R, nZ% @ !disz^3"??|Mc|WWW$"A$A cb$" $I$cb$" $Icb$"I Hcb$"A$A$cb$" A cb## IMc [`9oIB/_6ۏiR^ϜR >I' Мgyp21wO'-*بmNҌp$" $ $ь|$"I$ ь|$"I$I$ь|#"H  ь|$"IIь|$"H Iь| -&M$q1qk`P#&L/ZpX51@1Kk ;IəRbp;ThШkx^)P#{,[^WUN<'o [  N cUTpömŐn cZNkjJ@@NkJJNkJJHNkJJ NkJJ@ NkJJ@ 1ZB`h$IدBW5 ivn{)*  Hr_:I\1@@RP{<'mcx^Wr>.jJ_)IİOtM)uڠ qs~|$"A$I$|t$" $A|t$"H$I |t$"H$I$|t$"I$A$|t$!M $0|sP&sRx^ Hܹ}iJ5 -I$I2AɐAuO.x9#?O$|x^WU$"A$I$|t$"A |t$"I$H$|t$"I H |t$2m|sjꊪ!# mc5_0ls-II$rn~b '$@t'"i$I&0|tiYVX$"I$I$|t$" $@ |t$" $H$|t$" $@|t$"AI|t$"I$A$|t! 5`"'sR`pX\1I$IZ*A VkpX(!|߮kMcTWUU" McRx|>Z =KI{xb0#3'u&0|Mc\^__$"IIcb$"HI$cb$"  I$cb$"I$I$cb$"I$H$cb$"II$cb$"I I$cb$"I$ $cb$"I$H$cb#RMcZh 3 ϤZ-UIO$Фkk $  Ф|UUVX%"MM&0|tVjh$"I@$|t$" H$|t$"A$I$|t$"I$ $|t$$a(-|kj 9j$sZx\8IZ+ 61Ih|`x яk+`XMMcUVX`I&@Mc,[蠀@I$kJ@A$kJH kJA IkJH(1,cZp=slk(Bz^5IoHJ% 9Akp0C~<1|,cx^WU@ [R`O'Z % v`mRop\pUU^`I$@ qW^zI $.t .t @(1p [x&M|R`\53Iܿwb 2 !@@0| p^)M?sx_UU#i$hsk`hOk_$}>mk  y,cW^`mk,cUUUTIIkJ#uіmMc,[*z#C',c(B`X ɝNB5- BɗTi.*b<"X'Ӝmcx^WU$"H$I$cb$"I$I cb$"I$cb$"$I$cb$"$I$cb$"II$cb$"I$I$Mc c#@Mc [pN&X+c+U I$I$ +%I$I$Խ/6I|9Srsp>$ $mcx^W("I$kMcUU+"psMc*UU+"`I'sMcUU."IsMcUU*F:sMcUU'@nsMcUU$P :j&k(B(.Iɕoϙ9 >mcx\- %0McU+Ԓ/ncU, moncU2"AmokU4@kU%䯜R/758I|o8)'H8kW3'QMcU/m$P-[U/@$0,[U/F$|McUU*X &s(J(: 9SҔ.5|'McVW+$|McUU+T$sMcUU&З鸮s,['.1#kiJ`zzz)__OhR 8#>>qmcXXXX$"$I$mcMcUUU$"I$I$cb H$A kJ؃=#9,[HJXXXP3  pJs #)!/"x'x&{Mc\\\\$"I  cb @$IkJ#"I cb"95MciJXxxp1 ɐ 0 k ,"r"'z'sMcT\\\#"I$I cb$"A$A cb#"H$cb$*Mc [@˃'{IJ%'772 _0mcppbb$" $I$cb$" $I$cb$" $I$cb$"A$H$cb$"II cb$"Ȑ aMcZ`@៽?{R%%52!O|Mcxp`$"I$ $cb$"HI$cb$"I$I$cb$"I$I$cb$"H$ $cb" `McZ`@{R %5/ -|Mcxp``$ H:McZ~"X?MciJ_$$McHJ_UOsHJ_U/P$ݶ(B_/I HJ+,I N*k 5IIФ0|_0 pRz/$0(B^"hR׵);I .Ayϭ.cpx^b-> j阓s`zz("p$4nk c\VV~$"$I$,c c$"I$I,c c$"II$,c c$"AI$,c c$"H$H$,c c$"I I$,c c$"$A$,c c$"H$I$,c c$"I I,c c$&-cZz Xx.(B/7 .[ c^#)k)<Ish4p(O&Pk >_%n|V^r%"M&E0|tVZ$"I$H$|t$"I$ |t$!I4 40|s$"II$0|s!/>sR`Xhɝ-RW5 3IIBќ냩/+Pq,[x^% ~b?R 5& @{mcWW_x%"I4i $mcMcUwx$"H$$cb$" I$cb$"I$I$cb#"AkR$!IӢ Mc [!h->,c(B`Xh$In(JW% -I$I1js *?М x="X??~'x^WU! h.|VVZ`"TNJ' )U%$@ O%"I$H4$"HIь|$"I I$ь|$"AI$ь|$!I&I6ь| @1pLc`P&MpZx^5I PϤZ- 9Iĉ2O}:$h+Ҕncx^*'O${Mc\WUU@Mc,[ꪪ#ѐH,cZ\p}>ZNZ-U$NZVp s cUUUTI$H$NkjJI$I$NkJJNkJJ@$ cZ @(1ZIJ`3'NB_W5)b "/I$In:Skz;>}$McxWU H$I$Mc S P@,[iJ`:NIJ 7,tA).j銇'"M$M&Q|UWWT$"H$I$|t$" $I$|t$"@$I$|t$жk6|s"X&|Rx^Hܹ}ۯR5 3I$I2=AɐAu/ x8"O~$|x^WU$"I$I$|t$"I$I$|t#" $ Q|s#" Q|s$"IA|t$"A$I$|t$"A|k`!u:bМmkW_ m۶i 탈)&IdI$qoZ~j( @pt~%"Ii|t#" $ Q|s$"IA |t$"$I$|t$"H$$|t#h 1tZ`HɟNR5 @!t` .c8"3$McX^WU$"I$I cb$iMc ["#X R_ '̃ϤZ &pXФkUVX`'"I$h6kMcUW^z$"I$I$cb$" $I$cb$"II cb$"@$Icb$"$A$cb$" A$cb$"II$cb$"I$ cb$"I$@$cb# 5McHJ``pLϤHJ II$1.xb$0o|UWTX$"I$ $d$"H$H$|t$"I I |t$u 4|sp# C'sZ`XV'IɛФZ+<A4/ x2!?$Ӕ|\WUU! ltmk^xNJ'Mk%LcUVXBM6EMc,[ꢏA IkJ$ kJi-,cZp5k$,cBx7ɝ۷knHJ5 6I$hs`5??~$qMcx^WU$A kJ@ HkJ,cZ_pN2?ZZ m6iQM p 9pUVX`I$@$qP|@ @ 5pRzP&M{Rx^%2ɟ  k+ 44+4|x^($rs\WUU $0|ncA @0|nc[skik5_ts")%Wɛ$,c^x n{,cUUU\&,[(Jx^ H{NHJ5 <I`AN)a;$>|$Mcx^W$"HImcMc\$"IHcb$"H$ $cb$"I$H$cb$"A$A$cb$"I$I$cb$"I$A$cb$"H$$cb$!IR$i$Mc c"CMcZx&ϤJ -7II$Τ/ nxOə$ [U^j" r|ZT# m-Mc [ $"HHcb#"I$ cb حb,Mc,[H@kJ`&`& [B3ɑɑ #->3/r"'QMc\\\\ @I$kJAkJ$$kJ! I4Mc [*#ڲ!ڢ-mc [jjjj ȋȋNIJ55558 {ckk$hҤI&kMc\WWW I$I$kJ kJ @$H$kJ hI$kJ`&`& [B1P̃ *'z'sLc\\\\ ($I$kJ -ZI$kJ IIMc,[ ,-McJ````ɕ|.(J 59q,[xxxx!6mm$Mc,[!4Am$Mc,[!C3I$kJP40,[(Bpppp2I\Ob)!)5"s"?j>QMc^^\\$"IH$cb$hڵEvcb$"I cb" P40McIJp```1 X/Z )))1"k.|Mc^\\\$"H$I$cb$"I$Icb$"II$cb#!H$I&Mc [/p{iJ0 v`A0sbbcC$"I$H$cb$"H$I$cb$"I $cb$"I$cb$"II$cb$kӶ]nMc [|2riJ70fAAkb`$"I$I$kMcUWWV$"@$$cb#!HH Mc [# T'Mc [">McR_"@'McHJWhL${IJ7*?{Rx\$ HJ_UOmOHJU5I /R/I/{- / ]N mPk_/1%@0mcW04?0,[U*c_'sIJ~W$IoHJ_U  @HJ%:I\1P@/"b<'-c^W+XOs c\WUU"k hmsZ_$?}> Z %' @{ c_$"H$@-c c$}-cZ$ @N cR$" $I,c c$"A$I$,c c$"I I ,c c$"$I ,c c$"A$I ,c c$A&, cZ`!b$ c(J`^H!aHJ55 >I$ISs%>`AT/ x8$PC'N$|x^WU$(H|kx蠀|2>k _$M|VZb"k6Zt0|s~ -$I${ l$ $m;|s&sRx^p$ɟNRW% 0I|`A{ "1Ѫ'Mcx^WCvk [\WUU 6i@,cR7#\u: [-5%@{McW~$"II$mcMc_l$"H$I$cb$"I$H cb$n+5Mc,["Z&Mc(Jx^H}М(JW- :I$I닽.@pA'x8!Otx^WU$"I$I$ь|##I$ P`" h|x#x> .$ . -$"AI $"IA$ь|$!m4 $ь| hЊ5q+cxP3'IOZxV-I0` c- ;I9A1}9`Mcx^'o?~sMc\WUUkJ kJ kJZ&@,[R`|2> [ %U\I$Ϥ c^z+ ObUUW\I$@ NkjJ cZ$i*-ZR@&K̓B_PJ :I$R~>PhШҜkx^1O?$QMcx^UUH$I$kJ$kJMc,[ꪪ#J__+IDO'oiJ /"P풌|^Xp`$"I$H |t$"I$H|t$hm6|s#Z&|Rx^Hܹ}ФR5 7I$ISj7ApAu/x7"O?~|x^WU$"IA$|t$"I$A$|t$"I$I$|t$"A$I$|t$"I$H$|t#"HA |t$"I$$|t$"H I |t$X&H|kx}>bMc %_I$I$r"#5'9I$PP^~z)kQ|W^z$"II |t$"H A$|t$"I$I|t$M)|sj &r0Rx^?Iɑb "A#53'mcxX^$"H$I$cb$"I$I$cb$"I$Icb$McZ` }2?яR5_0 r%P)mkUW^x&"I8vǍkMcUW^$"I$I cb$" $I$cb$"A$H cb$"I$H$cb#"A$I$kR$"$ $cb$"H$I$cb" @1MciJ`У&MOHJ_W57I?qZ 89Mc\^IO' [ &DASn|UW^P%"I$MR$d#!I$ $0|s#P#>sZpXLĉR׵+:9$h4% 7#M'M$|x^WU" $I$Q|mk @$I${ l#(msk^xN>mk  Į,cW^z Mc,[ꨢ& -Mc [zЪ5k$,c(Bx^ n(B5 6ɗ'@`ќ/+`8X'Mcx^WU kJA$kJA$ kJ$HkJ#͐&I [R`}>ZϤ [ %UI$I$1-pJIPs^z3'LOR^W/2ɟ?qb 3&Xsx^%o'qs\WUUI 0|nc@$0|ncI$I$0|nc@0|nchӢmss@ ci|k^zk+-'Zz Hm۶iRU <I|ќ >=#Ċ'mkx^W&"H8I$kMcVWUU$"I$$cb$"I$I$cb$"@ I$cb$"I$Acb$" I$cb$"I$I$cb$"I$Acb$!@I$cb 6lm&Mc,[ I*:McRzh.M{(Bח5"I$ 0OUO$>q H ؼ2=?lk^言PNyį [UUX!4AsMcZ -Mc,[ꪊZPMc,[HHkJhh c(B3,2>-p&p'0,c\\\\H$A$kJA$AkJA$kJ I kJ#2-ز-Mc [ ȋ-IJ55552 aapsBB@@!I$A$Mc S H$A$kJkJ I$H$kJkJ`&`& [B/P{'p'p's,c\\\\$kJA I$kJ I$IkJ!#-"-McR````{ (B 18SOQMcxpppAkJ kJ  kJ0,[(B````'_oR)) )5#h&`>Qmc\XXX$"I$I$cb$" I$cb$"I$I$cb" ,McR```)GhR) -2"0|McXXXX$"H I$cb$"I$Icb$"I$I$cb$!E$i$cbj=,cHJ3A!0{Bɏ'"M$m$kMcVV^T$"II$cb$" $Icb$"I $cb$"AI cb$ڶk6Mc [!P9McHJxx/) ɐp c 'I;?kiJ^! m$McHJUDOmk(BU+X?oIJU P HJU I߿ HJ+2Iv9/ c4I@39jJx:IIXj{ +=$|'Mc^^, HsMcUU$_>k,[ @5McJzЪ9}k(B~WHtIHJU I?1˃>Iќsp@~$ cx_U!pb&q& cR AA$NkjJ$ݲh-cbꪪ"  sZW_%XMb %(iI{-cW_~!wx-cZVX ~XuZR880 $"I I$,c c#"I A$,c c$" $I$,c c$"I$H$,c c$I5 cjR`",:MsB^W5IϜ(J-<IyqU% @!$+u0x^3"o?Ӕ|\WUU$"AI$|t$"$H$|t$Z#&|kz"|B>#nk)_ IѤN|W\b (i1|kz͚C'sRx^ HܹNR5 3I)@@Ҝ >b6 ',cx^Wh&MMc [\_WUy?g{Lc [յ$n:Mc [" hmk [_~#X;{ [ %(&IJsMc_%"I$I$mcMcW|$& Ө1Mc ["Ѣ',c(Bx HyHJ5 @Iən}-B)ThШֵҔx^5#$O$3x^WU$"I$I$ь|$"$I ь|$"I$I$ь|#hضmP|ꪪ! #рHq|Wz`"}>p*U$  UUW\$ $H 0~"h,:p+c`Xhɝ߯Z^5 Woݶ 1s8IX1P@OȮz;Ċ'Ӝmcx^W#hڶcێkMc\UUUI$I$kJkJkJkJ kJX@Mc [^j3 Z 5U9O' cx 0S cUUVx I- cZz 5j$bBx\ n(J% ;I|P@ox{<ѫ_Ҕmc^W)'O$sMc\WUUAkJkJI$I$kJkJ,[R@}B? iJ %-9- ),";>r|UWV\$h]5|s!P&|Rx^Hܹ}ФR5-:I$Ism:ApAu/x8"?O|x^WU$"A$|t$"I$I$|t$"A@|t$"I$ $|t$"I$I|t$"I I|t$"I$I|t$"I$I |t$"I$ $|t$" $A$|t"P@tMkxNR'1Mk %r+( PW\X)"#7 Q||W^z$"I$I |t$"H H|t"9sR`pϟyNR5 @9A{bp/"${Mc\VWU$"HI$cb$"I$ $cb$"I$ cb$"II$cb$Z̀&AMcRxNR'R5I$1j(%@mcUW^x'"I$M&kMcU_^Z$"A I$cb$"I$I$cb#"HA$kR$"A I cb$"A$I$cb"@1McR`P&M.IJ_W5;ɟ pR+:&Pڒmcx^*`m۶s [x h [%UUy}>+k-$@'SM|UW^x%=:sRxpɝ ZV5 8@@4=- ;"X>?T|x^WW#"H$A$|t" A I$Q|mk E&mR${ l@ H0|nc#͐@smkx}2> ik W NLcVX`1&k(Bz^ϟ9 nA- 6IX`AҜN;c69'Mcx^W`$I$Mk,[$AkJI@$kJ@$HkJ@ $kJI$kJZ$@,cZ|t2: Z U ۵1Kk &I\ɑQO3Т'sz_"M;Nb'0|sXVUU$A0|ncH$H$0|ncIA 0|ncA$0|nc $H 0|ncA A$0|nch¨1sk`5j$sRx^$)aQKk )II$sV<vטҜsbx|'"hҤI6kMc\WUU$" $A$cb$"H$cb$"II$cb$"I$I$cb$" $cb$"I$cb$"I$Icb$" $A$cb$"H I$cb A-,[R`P&MHJ_W51ɟ?GR+ 3O'qMcx^& cM [>_WUI$k50Z -EѢi0?>I$oxI$Q+cWzwФ [UUWX Mc [+A A kJhh c(B4O-h&h>0|,c\\\\A$@$kJIkJ kJ!IkJ#1-Mc [@@ ȋȋ-IJ55555aapsB@B@#iAMc [ m&E&kJ @kJ H$M$Mc,[kJ`&`&,[B1  P 's,c\\\\H $kJ@kJȠ Lc [(McR``` 1P B /DS4Fs0PmcppppHI$kJ $I$kJ  kJ ,MciJ````| HJ 8"#>9qMcXxxx$" $I$cb$"I$Icb#"H$kR#(McR`@ \{iJ 0##0mcXXxx$"I$ $cb$"$I$cb$"I$H$cb$"IIcb!P5Mc(Jxx09 0 k *# `>s [^"f?McR_" 'MciJW" Hd?McHJU $,cHJWDIlkIJ_U $I(B_UwOR|R۶ /RU'Iv+`.b`#I샽#!:_rl{x3+FPk U3#mQmcU3#Vϓ$|McWU-"jΓ'sMc_UU&#5/MciJpp`'[.hR 0#=#80mc\\Xx#$ (5McZxZ$,[(BxW`$In(B_U5(B- 6I$IRl<IAҜNkx6X??~$ cx^WUH$I$ cZI$I$NkJJ!! cZ" $" $I,c c$8i-cbjꪪ!# {Z5_&Z #X`nsZ^~dJ V cZ_]V$"II$,c c$"I$,c c$!E6H$,c c{#`Ш5 c(JxPC'ONJ_W%I A- :I\T]/(@$ C'4tx^,"?~?R|\WUU$"A$ $|t$" $I |t$"I$I$|t$"I$$|t$#& |kxk5 .R .zɓ$RzNܶoR%<ə4hҔ?`8 :t',cx^WrMc [\VVVH$H lclJ @$lclJ$"I$I$cb#!A$I$Mc [##is [W%PWt:ڬ{ [ &Hs,[x!5j$Mc(Jx^I!AHJ% <Iĉ5 @$+x^/"?~$XWWU$" $I$ь|$"I$I ь|$"H$I$ь|$"I $ь|$"I$ $ь|$kӮp`# i|Vx9t>:o!#&s;+cxxp}Ϝ cW% ̃"@IoQp^<-?Mcx^W!p$I$Mc SkJkJkJ@kJ@HkJ kJI$I$kJ@Mc [zꪪ3 -R 5_Ф c J:wФB^It]1(J% :ɗ ThҜ{" j=>}$Mcx_U!p$I$nk-cTUUUkJ@kJ$kJkJkJkJ  `,[iJx)~b?NR %.mh|\x`"P&|Rx^Hܹ}R5 >I$ISY6>9p@ux7#'O$|\WUU$" $I$|t$"A$I$|t$"H$I$|t$"I$H|t$"I A$|t$"I$I |t$"H$A$|t$"I$ $|t$"H$I|t$"I$I|t$"H$I$|t$"@ I$0|s$ѐ(hs,cxQlk+Ϥ_'00UWZx'"I&k%1|tW_p$ ,|k``"'LOR^V5>IB󜪃/ = >|$ӔMcx\^W$"I$I$cb$"A @$cb$"$H$cb$"I$ cb$"I I$cb$"I$I$cb"  hMcRX`s:R5I$Q{zȀ%  mkUUVX%"M$m&mcMcVZ$" I$cb$"I I$cb$"I I$cb"@0McR` P&Ms(Bz^%9ɟ o'R- :$+mcx^+"?sMc\WUU$"A$I$cb$cMc [!hN [5UU|>Z -hZW(>ɛ[9O3{.*9#Œ9'|x\^$"HI$|t$"$$|t" H$I$Q|mk ٚ @|k!I$I0|mc#I$I |sUUU" 0sk@rnZ ?וT#9r*kު* 7IɕR8 Ӕmcx\^!p$IBnk-cTUUU"; IMc,["I$IaMc [!I$IkJ!I$IkJ!I$IkJ"I$IMc [!I$IMc,[X#&,[HJ`X^x)wiR%  I$I9r ə|VXp#|s"I$I |sUUW!I$I0|mc"I$I2l|sUUU"I$Ia|sUUU"I$Im|sUUU ۶ ,tsh 5jsZx^+I$R*: y/p#~>Zk_*S䏜mkxp`&$ANs-[$"H$I$cb$"I$Acb$" I$cb$" $I$cb$"I$I$cb$"I$A$cb$"I$A$cb$"A cb#@,McZ`>s$k(Bz^54ɟ߹wpZ) 56Xmcx^#O'k,c\WUUIA$Lc [ꪪ c`McZ^zѲ+c+-P-(+9ӽ0 a;ݶr{jnɛ$ZU\` {RT`&`2' [B.ɕ\-.p&>0Mc\\\\A$HkJI$@ kJI H kJ IIkJ"钮Mc [@@@ ȋȋNHJ555%3ApsB@B@"!Mc [!M$M$kJkJ!H$H$kJkJ`&`&,[(J0  P{(x'x&s,c\\\\I kJ($Mc,[I`,[ [ ,cR@`ʹl HJ%%%%1Pmc````H$IkJIAkJHA kJ McR````{ (B 4#34D_Qmcpppp$]6Mc,ch$ &`0$Mc cW$Av7Mcbw#Ȑ6McZ_3!s ɤIJ%%55285|Zz" @'MciRU"Hl$McHJU$ m$McHJU ,cHJU&IHJ_WU/$ Z `M'NiJ_W c$ iJU IuuniJU6I'w]@bժ1I-/js 2Ir@QV3 M i/s_4)FPkU5"'QmcU21dC6QR`z q[NiR 9$#>S:qMcxxxx$"H  cb#"I$ kR$"H$$cb$"I$A cb$*McR` 5pH iJ %%5/6:|IJxxM'Io(BW IlQHJխI$I$==I$I Q~<1@hШҜnkx^0'O$ cxWUUNkjJI$I$NkJJNkJJ!iI" cZ$" I$,c c$"A$H$,c c$M cZ # Z%UW$ O c$~ENkZ޼$"A$H$nckb$mb:4-cb#& cJx^`InJW% "I$I*k "7I$ h_x3 |NN'.e/ ئmn|\^_T$"A$H |t#"H |t$"A$I$|t$"I$ |t#"I I$|t%$I5tLc`P&L$sRpX5yn c ? 'i20|~>#X:}'mcx^WU!=ڢ#Mc,[zh%-%lcJHI lclJu_,[ [????$"H$$cb$"H$I$cb# Mc [!P5LcIJ*xxf-RxbI -(J "Iɑ\RϤ,>&=ֵx^+";򔑄\WUU$"II ь|$" $I$ь|#" Iь|$"A A$ь|$"A$I ь|$"I$$ь|$"A$I$ь|$8(0P` Z9j$P cxXV !Q }-!'I$I1{8I$1s ^*ɐON'{xr$ IJMcWWW\I$I$Mc [Mc,[kJHkJI$I$kJI$I$kJMc,[ kJ@ Mc,[ 9,[(B``X) (J I/Y?I$I jsό*KPs^^xh$?bkMcWW\pkJ$kJkJkJ@kJkJkJ vضiMc,[z!#X R__+cO,cAHܹФR5 @I$ISi^;>9p@u x5"'O$|\WUU$"I$I|t$" I$|t$" $I$|t$"H$A$|t$"I |t$"A A$|t$"I$I$|t$m$|RU! I$|ZU$m$0|ZU" Im'sZU# Im$sRU$ Im$sRU$$Im$sZU k;sZU %#1Z %I$Ib;M~$T@ Ϥ0|UW\X! 1X&sR`pX0I$IZ+= HҔmk`xX"@$qnk-c\WUU$"I$I cb$"H$H$cb$"$A$cb#"I I$cb$"II$cb$"I$I cb# Mc [" |R_I$L&0Z % I$r{x%  mkUUVX%"I$MR$mcMcW_~$"H$H cb#@1McR`#&Lk(Jz^5:߿u p&J+;4+mcx^+"ߏ$sMc\WUU$"A I$cb$" $I$cb$"I$Icb$[S]ѶMc,[# h. [UW_I$s9 c)5/1XI$pZr* $IJp|\WUV$"I$H$|t$"H$I$|t#"$|t$" $I$|t$"A$I|t# A()sk@#Ь9k$tZx^2IZ+ ;Tz`x,9|2:`)It-Mc_UVp$" $A$cb$"A$ $cb$"I$Icb$" $H$cb$"I$Icb$"I $cb$"IH$cb"#>,c(B`X Hܹo(B5- <I)pAҜ 1 ;ڃZ֑,c(^W|9Ф,c %#ə|W~%H 0|UUUT$" $H$|t#" H$|t$"$I$|t#$I$,sk@#5k$tZx^,IoZ <AU/%x4"O'Ӕ|x^WU#R#$A|kzࠀ!|2: hk-_ O'lkZx # SLcUUW\$ )QIcb#"  $cb$"H$Icb$"A$A$cb$"I$cb$"I$H$cb$ش1Mc [` 9j$Lc(Jx^3IohR5-+ 3 !P@kx\(Os,c\WUUI HkJIkJA$H kJ͐H,cZ|NB'qZ  $m("+I$I$ԽqVI$I$Խ[ I'QRx HtK1RU!ɑ\IQOir0]'1|R^W %',[iJU  I%$,[IJU $$,ciJU $$,ciJU `?MciJU ȋəNHJ5%%%5apnc`!4IMcRU IږMcRU$,[RU$McRU8,[RU`"&bB' [B-SP{ )` 'sRV,cRU @-̓' [J_ ,[RU hh;,ciJ ʝ-(J%555.x60Rx I$$,[IJU Im$,[HJU im$,[HJU(m$,[HJ_U TINhJ%% 5 Ѯ'0Rx\Ilk)JU*Inی{IJUTo JU$].IJUU ɝFNHJ55 :.R^Ib۶-.IJU$I]OZU0I$v kՊ1I%P{<1Ir)U3_r Is U3 = mPkW21`J0,[p ڳ.IB '7=Hkpz{-"POsMcUU+"I?sMc_UU%"@$MkMcWUU%"H&ImcMc]U$"IIcb%",McR` >P iJ %%53X0kpp``!M"m$Mc [!$af$kJ (I$kJ EѶI$Mc,[ ,1MciJh HɛqHJ%B$iNUImѶԽΤI I Խ0sAIIOrb\Z?Zڲ cx^(S'N$s c\WUU@NkJJNkJJ NkJJI$INkjJ!II$ cZ$"A$A$,c c$"  A$,c c$"I$H,c c$#a cZ` u>b.Z-5W)% 9-cV&$i(0NkZx"k$ cJ`^ Hy֎J5 >Iɛs =`A-x;#`?O$u^WU! psX`$\~^?ns«$ Pt$"I$I$|t  A { l$"I$I$|t# @5tZ` P&M$PRz^5/I$IZ% <I Мkx-'wNkxp$sMcW_!j&h%Mc,[X:S,[ [x~ZHIlclJ,[ [????$" $H cb#"H$A kR#`1McR`!&M$(B^_5 qvФR =I1Y@z-I'5.)IxoҌ%"I6h$"I$@ ь|$" $I ь|$"I$I ь|#"H$I$ь|$"I$I ь|$"$I ь|$$i1|`"1k$p cp^L!@Ϝ c% >I$I2 |t8`@ҔMcx3XM$QMc^WU [5UU\O'N,cp @.McUUW\I$H$Mc [AkJkJkJ kJkJ@ Mc,[/&,[(B`Xhɟ߯(BW% 샩+*9I$I rv,O'h>rLc I$I$rmx"#d) ϤkUV\p#I$M&kMcUUW\kJH kJI$I$kJkJI$I$kJkJ!IIĎkJ" 5MciJh ΛIJ%51 <1`h['3+cz2O$qZU@ɟ$sZU@r$sZU @$sZU"@$sZU_!m$sZUU"m$tZUU#m$|RU"0mm$|RU1I$$ O{~2$$ P{u⪪0$Os,$c O [z Ob۳ c I?ФKkU(I(ФKkU "I@+kUI`@0 cA$I$0iɑI$OXꢪh"'u~QZWז8 C歐,[ x0`ֵ$QRU! AMcR$ۆMؐMc,[$"A$I$cb$"I$I$cb$"I H$cb$"II$cb$"AI$cb$"H$ $cb$MMc [#3Z R5__ ۍ 1b I$Rsx$ OmcUUW\# @:McR~ &L$k(Jz^5:IĹOR% =!D+kx^,"S;$sMc\WUU$"I$ $cb$"II$cb$"I$Icb#" HkR$" $I$cb$]ӡkMc [" c`s [_O'ϤZ - |I$|\r# М|UUU\$"I$H$|t#"I$$Q|s$"I$I|t$0l60|s*b! 1C'sZpXV+IɛRb/;`Ax2"?$4x^WU#Z`|x蠀ϻ'nsb?"`|-McUVP#!Hcb$"II$cb#"I$cb$"I H$cb$"I$I$cb"h5Mc(BxhIϤHJWյ-<I|9q{ ?#ŌS'mkx^W&P#֒kMc^WUU# c@ [UWI' [ 5%TI$/VXp$/|U_UT$"I I$|t$$$1|kj! 5j$tZx^,IɛoR < AU/%x5#'O$Ӕ|x^WU$"A I$|t$"I$I$|t$"|szꨪ#iOk_IM>Ϥsz+"P nLcUWX`$ ANmc,c%"I$I&cb$"I$I cb$"I $cb$mи)Mc,[" 1C',[(J`X)Iɛ.(B5- 6`Amk x+?O$0|Mc\WUU kJ$A kJA @kJI$ kJ $ $kJc`,cZ\p}>Z [ %U iI$N*II$Խ/?1I I$ԽqDI$I$Խ/H Խ_vĉ1{W蠠8I$ImpbW)ȏZU IҶۊiRU I⻮HJUIb߶ @.hRUm hZ%* !Iro [xx $-A IJU $􏭯RUU* FA IJU $ RUU $m'iORUUJ@NBտ*nlksr`?ߒ IJW mv+HJU c'(JU ľ= (BU?.HJUIضhR/"/oZ\IZU I-bU(I$- c+I$m @o+cФ*c/ <I%Yhќ|zr/Ib/{W1IҒI/s(U1 IBJ I/s U/I"mnkU3q+DNkU2$q)@d'1-cU0O6{Rz- IdiR+-<"+>mkx^^,"vb'sMcUU,"hO'sMc_UU&" $I$kMcUUU$"$I$mcMcU]U$ҶvMc [-piJ2 v`A0kb@@$"I I$mcMcWVT#"A  cb$"A I$cb$"I$I cb$"$Icb$2ؼMc [Lr HJ7775 i!B/k`  ۰$mc,[|(>,[IJx m$,[(B~UDOk(BU/P'IN(B_UM1HJ- I$ $Խ/> $I$ԽqDADH$I$ӽ0s\/9PI$0{x`(`;ds c\^_T cZ NkJJNkJJI$I$NkJJ ɖlٖ cZ*" I$I$NkJ$"II$,c c$"I$I$,c c$"H$I$,c c$"I I$,c c$#͒A cZx`;: B ?\:IJ_^It(J <IIqu7 >$h8x^1#?O$3x_UU$"I$ $ь|##&A/|h # k%^x#\~^'nsʋ$.|UUUT AI$|s#`Ъ5tZx'IoZ^W%9I$ɛФb* >`AҔmk x5!XO?~-P| ?# nMcW^j$$H mcMc$!M$I4cb$"I$Icb"@ 1McHJ``O(B^5 =I )s* ;XMcx^("hRv$kMc\WUU$"I$$cb$!I$@4Mc c#c`Mc [xO'Ϝ c 5#XI$Τ|^zʪ$ a0kx 5j|Zx^)IoR ; AU/-x5"??$Ӕ|x^WU$"I$H$|t$" $I$|t$"I$I$|t$"I$I$|t#$I|sjꪪ"@k5_I$s9Фsʂ5#pO䯜LcW\`%$ANs-[%"I4Hcb$ڢ:,Mc c!X&Mc(Jx^Mĉ.HJ% 89qhs*p3'M$PMcx^WUH kJ:CMc [!IZMc,[$ kJ$Mc [$IMc,[H$Mc,[̀@,cZ\|2: Z %U I$I${ -I$IԽqGTI$H$Խp8PPAª\;ɑsp5~$qMcWU':s{,[xUU|": `0,[)U1S'Фs/ I喛q [^- l0McU,$?0mcU*#@%{McU=oiJ*/91B)ji-IHI0mc(W*Iֶ|mcU*Iֶ|mcU*f0mcU+ h|mcU*-m|McU(  [>{Rz_k~w.(B 0IU9qmcpx+mv|,cU,@$|,[U*${,[U*@${,[U+Զ${McUU(:26sRz Ͱt.HJ %%7j_Nkpzz)"Hy~nk cUU&"$N$Mk c_WU$"@$I$-c c&"`$q$-c c $"I$ $,c c$" $I$,c c$" cZ`@@@\IR %%%1##930Mcxxxp$" $I$cb$"I$I cb$"I$I$cb$"A$I$cb$"I$ $cbj,c(J5!B1CQ{J͋("4K&kMcVVT\$"I$@$cb$"I$ $cb$" $$cb$"H$I$cb#@ ,McZ`h'KHJח56)KOMc`!:|$Lc(BxV5 xn(JU ⏜(BI$IM IӽϤӽ02I$I$Խq@PWUH$I$ӽϤ k9I Qr~4XpZ8^ O'n-c\r!imsZI$I$ cZNkJJNkJJ IINkjJ#!I$I$NkJ$"H$A$,c c$"H I$,c c$"A$I,c c$"A$I,c c# @5 c(J``"'M䎜)JWW5 nmRn) ?I\1P@U @$'ֵx^W*"Ҕx_UU$"@$I$ь|$!A4M4ь|$" $Iь|$"#&Is`"3 Ok^x"\~^s#)`1Rzx`ɟ-R^5 <I Js? @hШkx^2#'O$0Mcx_UU$"I$I$cb$(lMc ["# . [%UW WO Lc^r vs,[WWW\IӶM,[ [Mc [#`5McHJx'In(B_W-%R*<hn7 >"X~'x^WU$"H$I$$[mWtь|# hs^xs7$PTUW\p%"IR$-6$"I$H ь|$"I I$ь|"5q+c`P&Np cx^%Iil+k% >IxP@OMcxXXXII$kJ0Mc [jZ $McRU&۴',[RUP$McRU .9?755$!Aѐncz'&`$|RUm$RUO¶mN-c&IsU&I$h{(UϤ[*=I1ZW۶m1HJU 'm۶ϤiJU_oϤiJUUIМIJU_HI$NiJUU (9(B %I$I$Խ/H  Խk9'pA2k~X/"?|mc\WWU$"IIcb$"H$I$cb$"I$I cb$"I$I$cb$"I$ cb$"I$$cb$"I$ cb$"I$I$cb% *`Ъ1MciJ``"'M HJWW%( c ,I$羅k~/ zʊ$ 񔜯|UWX`!P=|ZxZJĉNR׵- :I $ht % 9#3?~$ux^WW$"Iь|$"$ $ь|$"I I$ь|$"A$H$ь|$a0|x s5 HpWx#-mcVx#sMcUUUT$i1McR`&M-IJ_W5=IəoHJ > DhШkx^,"S'$sMc\WUU$" I$cb$"A$I$cb$"A$Icb$"I$Icb$#IMcZx }: c U)O'kz` $OZ- 8pU/-x5">~<Ӕ|x^WU$" $A |t$"A I$|t$"A$I$|t$"I $|t! &i&|s!I$|s mҢI${ lX5%sZ8xXX$1{)|I$Lc^h! 4斗n,cUUW\"`::Mc(B~xɛTHJ5% ; 4h{) ;$3'N$mcx^WU H$M$Mc [&@Mc,[IPMc,[ ڶڢMc,[ $Lc [IIMc,[HA$kJIIkJ@ I kJ*,cRh XiJ %55Խ/ m&mȨl:ɑh{ x:'O$Mcx^WUH$A kJI kJ[ lMc [ #h-,[%UU1r-,cp 5!@  ,cUU^` hnMc,[!!Mc,[hhKkIJ2)B)Bq{JK#p'h'nk-cTTTTkJkJ $kJH kJH @ kJ  ,[iJ` 9B 0Vs0mcpp`` $Mc,[@PMc,[IkJAI$kJ@$$kJ"Ȑ ,cZ@@@ ʋ IJ%5551x0Nk```b$"I I$-c c$" $ ,c c$"I$I$,c c$" I,c c$"I,c c$" $$,c c#" cZ@L{IR%%%52$Ds0G00mcpppb$"$I$cb$"$@$cb$"I$I$cb$"I$I$cb$"H$I$cb#95McHJXXXp29 0)s  ."|{'sMcVVT\$"I$I$cb$"A$I$cb$"IA$cb$Ӧ 66Mc [# X&Mc(J`x^Ili Ϝ(J% 6x'bz8 ohJ 8Iis( x45:PRpx~ IڤM$0R -Խ/I IԽqUU@6 `x:I\`@10ȸ{;'Ӝ-cx^W$X3$INkZX~3 샫Z 5W O'- c\p"imk cW_T tI$ cZ!6mu$ cZ -P`-v cZ# H$ $NkJ#"A I$,c c#" H nkjR$"$H$,c c#h*6 cBx$INB_W ɟϜ(J *IS2*U?" ?x^W$"H$I$"I$@$ь|$"II$ь|$"A$I$ь|$"I$Iь|$"I$I$ь|$#ђspՠ&Z/V %Bv}KkZ;Iyqќ샍(<+Ҕncx^/"N|Mc\WUU$"IIcb$" $A$cb$"I$Acb$Z#ڈ Mc [# [%UWY-Lc^z!# IIs-[Wh,:,[Bx`$IHJW5 9I$Ir c*?A%x9"O?$ux^WU$"H I$"I$ь|$"I$H$ь|$mb- tqz# hqsxks" )%$PWUVX`&"I$vB;"`5 cx$IМ c^W-ɟkk ?əhҜ{" `?#-}$Mcx^W%"H$I$kMc~UUU$"I$AcbHkJ kJ @kJkJ Mc [zꪪhnZ%UU)O'- S sMcWW_| $i1McZh5j$Lc(Bx^IY1rHJ%) Τ<I Arx}> 'kx^W%kMc\WUUkJI$I$kJ$hMc [zꪪt":XR%UU 1*k % dPkW^zh$O?kMcUW\pA Mc,[@*:,[(JXPC'IO(B_Wɛ$KHJ%6Iyw:yUҜk ^;#:~$mc~WU(أ&j&k(J6 9p̃-- 0!-'r"'|Mc\\\# $ $mc,c%"-4I$kMcUUU&"8I$kMcUUU$"A$I mcMc]U}`h,c(J؜6 q˃ -!x''sMc\\\T$"I$Icb"M$McZWU! mm:McR"Mc [jU $ ,[RIm,[RUI2ң [iJ .B5%%-2 cHqmcz``pIa,[RWIb,[RUp ,[R#@mk,[ &`ϟk,cU" 9kHJxZZUn0ks A$I$ëII$)IY<2I$VI$H$w*I$ $ψI $ԽqRVGI$I$Խ/p<ɑI$rsh$@/McUW^x%"i$I6mcMc_\x$"H$I cb$"IAcb$"I I$cb$" $I$cb$" $I$cb$!mi[$cb$$H*5McR`P&M$s(Bz^%6hR- ;1gs `X.ؖO'| [WW8in [ 5UUI$NKk PRnk cWޠ9'`At=:!Px^WU$" $ь|$"H$I$ь|$"I$H$ь|$"I$$ь|#" $$ь|$"I$ ь|#IPhP`$O c\"WϤLc^z#P#>lb{(Bz^<0I$Io(J- ;)`@mcx1"_?|Mc\_WU#"IH$kR$"I$A cb$"H$@$cb$" $I$cb$"A$I cb$"IIcb$b IMc [&IB ?W,ɑI$1.9и&|x^WT%"M$H|t$"I$@$|t$" $I|t$" $$|t ڴ-|kꪪ$Jh) |k!II4|s$h*5|Zxhϝ.R^5-8d{ ,IR'Ps^?Kkx hBm۶ϤiJU:w/pBZ)9"P/'qMcx^W%"h$I4mcMcXVUu M$H$kJ@ @ kJ@ 0Mc [z ,c [NMc [$kJH$$kJ$kJH @$kJP&,c(Bx^IɐmϤ(B5% I$IAW8ɕrz=>Iɛsb ;dAx x>`s^$ ɕM\x&#9mVj%"I$i$$"I$I ь|$"A$H$ь|$"H $ь|$$m60P|@"͚'p cxV Hq}bW-?I|AM?$'kx^W*"vr'sMc\WUU$"I$I cb$"I$Icb$"A$$cb$"$I cb$"I$I$cb (iMc [h3 {J?&$ R` h}ۯ(BW/ overs> 1`@HҜc}5"_?O$4x^WU$"A$I$ь|$"I$I$ь|$"I$@ь|$" $A$ь|$"I$A$ь|#CHP" {^x}2篜{%"D.};kxxh$n c^%!M{ >9j| x<#O?$mcx^WU$"H$I cb$"I$I$cb#"I I cbkJkJ kJI$I$kJkJMc [zꪪ# ZUW/SnLcXr ,:tpHB_W>I1(J- O`;IdpAs`>Ċի_?mcx^W$ 9$?kRX?-ciJ_H$,[(BUv$,[B_IOHBUU P$mۮHJUU IJ  a;mrmz#d!H﬎kUW^X$,[(BXVHĹn(BW 4I${ *k(6y mkx7$Mc_U+ P[sMcWUU$"IH$cb`&`& [J49q˃ -!`'x'sMc\\\\" I$I$Mc [*" I$I$Mc [*$"I$I$cb$!I4m6Mc [h&p"' c(B6)B탏& '?kMcTTTV X,Mc,[ӟI,[Z~5':Mc [UUj"IbMcRUR'j& c9޸8ɛ 샽--(}NsR\ ,[R- kJI$I$kJ@Q$H$Mc,[ 1,[(B``ɛɕB 4E5=McpxxxH$H$kJ$IkJ @,[RkJH$@ kJ%`& [Bp؜4ɟ pb 1ɏImkW)O$IkUU%I$0s*UI$O{ I$I$(*H$I$Խ/3>I$A$ԽqTI$I$ԽqTAH$I$Խ/@?I$I$Qp PQMcUW^x t͐6Mc,[* Mc,[$"I$A$cb$"IH$cb$"I$I$cb` 1McR`P&Ms(Bz^5-o'B :`AҔmcx2M|Mcx^WU#B#$IMc [p!1gMcRAn [%UUI$O=Ϥlk4i閛To}%"M4M$" $ $ь|$"H$I$ь|$" $I$ь|$"A$I$ь|$" $A$ь|$!i&A6ь|!P#&p cpXHyyS c%- 6Iyuյ&y$x>М<@Bќs X6#?N$PMcx^WW$"I$I$cb$"IAcb$"I$I$cb$" $$cb$"I I$cb$"I$ $cb$"I$ $cb"Ќ9McBxHɟHJ% <I$IB."k$I}=sȢ$  .|UUVP&"Hb|t$"I$H |t$"I |t$"$I$|t$"I$ $|t$a*1t,c`3'N{ZXV%7ɝ{pJs) :# 'U0|x^W'X۪1|sxzt9 hФk 5WI$O'{ )4!K9Фkp`%h b$k,[w IMc,[ $IMc,[  Mc [fN,[ [U!HȎMc,[Mc,[$I kJ$kJ $H$kJ=,[(B`XH䉝n(B% 4IIќ )7*XMcx^s>Xn [%U! ďmkVXxI$@ mk,[@$kJI$HkJ@kJ вm۶mMc,[j!I$Mc,[ЦmMc [͐@O,[ UU{9N [x -h&urߏIJި.11 wuw|%b X+k [^6 ې$Mc [UAMc [$@$kJ kJH kJ" !Mc [jjjj ȉȉIJ%555/xiPkbb``@$kJ@$kJ kJ@ @kJA$ $kJ AkJhhLkB>1)B) P{ohk("K,;J$nk cV^T\$"I$I$,c c#"I$nkjR$"I$A$,c c$"@$I$,c c$"H$A$,c c$!AI$,c c{r.sjR1 AA0scC%"M4H$mcMcVvTT$"I$I$cb$"Icb$"I$I$cb$"I$I$cb# ,McR```1/iJ )-2b>|R^!b$Mc(BzW\'IIJ_U I޶n(B-;I$U{ ?s ^}$Ӝ-cx^WUH$I$ cZNkJJ NkJJI$INkjJR#@ cZzꪀ# Z-5U I$nMkTX`!"Mk cW_!I$E$ cZ" I$I$NkJ$A41-cbj#C' cBxVHĹ}N(JU5 <Iĉˋ/ C!4h; x^1"_$3x_UU#̀@{xM&cns^$ ɕM\p&9 $"H$H$ь|$"AI$ь|#A&1/|`$Ш5k$P c`\M)Ф+c5 *Kn <Timkx\'"H&i&kMc|V__$"I$H$cb$" A$cb$"I A$cb$"A$ $cb$"$H$cb$"I$ $cb!8:-Mc,[jX3',[(Bx^Mɖn(J % -IɟB2o"I$~=Q.,tJ9xМP^b)"=q$"H$I$ь|$"I$Iь|$"I$I$ь|$"A$Iь|$"I$I$ь|$" $I$ь|" `0|`JN c.I$ $RY >;Ib5>XМ [^3)Sə䯜sxx`'!.RkMcV|x$"I$H$cb$"I$Icb$muú"cbkJkJ kJkJkJI$I$kJ` 1,[(J` `܉HJ%I$i}庣I6@60ELC6I9tJx8t$Ҕ(B_[?I(BUU М$mФHJUU/I (BUI-Ϥ(Bi۴@샭 I?In {3I$ p*U2I@PU,Ib -[_N$+ch" *}nHJ 3}hs x6c' [~U)8u$|RU?McRU"ۖ$McRU I$LcJU`&s$ c(B1 q (p'r'sMc\TTT@kJ!鈶mێkJ$! icb$ 4:c;Mc,[pJĬ{IJ777)B!BMKMK("pK$kMc\T^V#*R/)Mc [`@ xMcZ5.$@Mc,[ꪪ Iѡ5Mc,[h&j& c(B0 1q '/sNsMcTTVVH$kJ$AkJ $@kJH$H$Mc [5Z5 [B``pp+[oZ ))3>>qMcXX\\@$I kJA$kJII kJ$kJ L"Mc [h"'J̓(B73B'A탍I&-'L$s,c\VVW#I$Mc S &බ$k,[U' s,[ U(hmMc+U!I'9R ? * H$I$ԽqUPI$I$ԽqAEDA$I$ԽqUPU Q;ҳmx(p9LcUVx!m"AOMc,[ Im@Mc,[!9۠mMc,[m 1McRxP&MsBz^5'ohR% 8AҔmk x2O$0|,cx^WUd@ Mc,[$"I$I$cb$"H$I$cb$ dB4LMc [" RH,cUUU$+c" 7O|%$HJP|$"H I$ь|$"@H$ь|$"AI$ь|$" $I$ь|$h*5 cxp$IM cV% ;u tN/ ?8Zx^%`(i/|x Iolkj"0'NMcUU\p%"IIRmcMcW$"I A$cb$"I$ cb$"H$I$cb$"I$$cb$"I cb" @ 0MciJ`hϟHJWՕ%@IɕJs=XӔmcx^' X(i,cWUUI c$  -|UUWR%"I4E6|t$"H$I$|t$"I$H$|t$A*1tmk`P&L$sZpX58ɟu k-+ :&X-4|x^("X$q'Q|\WUU$"@$A|t$R# |sz""hs5UWI$}>{" yį,cW\` Mc,[`@ HkJI$ kJIH kJ kJAMc,[A@$kJA$ kJhЊ5,c(Bxhɟ-(JW5 5II{*8&XMcx^%o's,c\WUU d*McRz}>bNZ I񤎜McWZbM&hmk,[H kJI AkJH$H$kJAHkJ  kJIkJЊ5kA*z t IФHJ  #ɟ$,cx'OiJWU $oۏiJUUw.(B s [I$h6Mc,[$@$kJ.زMc [jjʋȋB7777- A!B0kBc'H'Mc,[A kJI@kJA$kJ $kJH  kJh&= [(B0{ ,"rhۯs cV\\\$"$,c c$"AA$,c c$" $H$,c c$"I$@$,c c$"I$$,c c$"I$H$,c c j&`& c(J1)0{ˍ("$H$kMcWVVT$"I$H$cb$! &I$Mc [$Cע]$Mc,[$Hd'Mc [_"<:LcBzuɟIJ `'iJWInA &I䉑x2U>IU@&Ҝk"x=#и$mczWU*"sMcxWUU$"HH$cb$"I$I cb!H$I$kJ`5,c(Bx`$ɟ(BW5 "I$I1Js):IҜs(x9O?~$ cx^WUH$I$ cZNkJJNkJJ@NkJJ IINkjJ# I$i NkJ! cZxt:boZ 5U#䎜MkVPj#$&iAmk cW#$I1-cZz!5k$ c(Jx^Nn(J%>I|`@nw?#'ֵx^W+"'N򔑄\WUU$"IHь|$"II$ь|$#ђH{xM&bs!^% ɗ$TR` $#-s` :t$p cxVɟnb5-;yyh{x3 [;/Mc X^WI|2>o c肩5$0ONMcUUVX% *Mc [!ӠI|Mc,[ mmMc,["0nMc [UU!qMc [UU!0m>McR $,[B`^HyvnB% 5IAUMe/9'sx^&Xc=0|Mc8z|%Фlk*)&P'/ -'"M$m6$"H$I$ь|$"A$I$ь|$"IIь|$"@ A$ь|"@5lkx!&NO c`\5&I c5 =I|P@Oʼk@!ѫҔk^W*3#s [\^}N?NZ 5& InkV^p&#M$h6kMcW^z$"A$ $cb$!I4I$Mc [kJkJkJI$I$kJ Mc,[h*:,[BxX$IϜ(B_U I ӽb*II$Խ/!̃II$b {UIҶmRL1n "{.I$I^ p"W1I$.p UU0IrsI|U0 +ќkU2 i$qmcU2D$QMcUU+jI$sMc_UU$5cR`jjlФ(J %0'p$,[x'`$I$OR^U Ж?eKN RUU c?u+HJU? iJU#iJUIrHJUI߶ NiR**010knL&//k-c\\\\ kJ kJ!I$I$kJ#"(" Mc [HK̃(B77776 !BAq{BBCC'"H4KۤkMcVVVV#")*IMc [@@ ['$Mc [$&aՖMc,[ $Mc,[ppHJ51B)b{KJ#k,cTTVV@  kJH@$kJAkJHkJ=X&,[(JXX2I9Js)))+->/'0|,c\\\^ I$kJ@ kJA$ kJ@ I$kJ(,cR` ȹϛT HJ55%%3vXqk``H$H$Mc,[$I$kJA$kJII kJI$I$Mc,[#&j2' [B؜1Q -I$I ԽP0gI I$ԽqD @ ԽqPTTI$I$ԽqAAI$mӶl! LcW^x" aMc [ @5McJxP&Ms(Bz^5I}n(B- 99qB&Ҝs x2O'~$Q,cx^WUHIkJkJ$"I A$cb$" $cb$$*(Mc [@ ٚ Mc,[#d`Mc [zO2'n [ % p䎜P*# O -$"I$ ь|$"A$ ь|# H1k` `B'NO cXV%9Iə2Jk* ;D`x\)$'q|WWU m$mqj$(I|^x9o{C%#`9nLcUVXb  6Mc,[!6l>Mc,[z!&lږMc,[ ؆aִMc,[$H -McZ`P&L$s(Bz^57I$Io(J A!ThҜkpX/"'?{Mc\WUU$! E4Mc [#b#@Mc [x5N,c%%@TN|UUTS$"I$H|t#$I&)|kh"9s$sZ`x^9Iܹb+ 9D`T1|x^,"~$|\WUU$"II$|t$"H$I |t$"II$|t$[m;|sj"!@k5W_I$z5s%Sɛ$Ϥ [^x {,cUUUTI$@ Mc,[$A$kJ  $I$kJ@kJAHkJ@1,[HJ``$O B_5 4II*k 8&XڲMcx^&ϓ$s,c\WUU" Mc [ꪪ!A$vb'Mc,[ꪪ̀@,cRx}>bMR 5 dMcW^r Nb'2mk,[AIkJ $kJ$$kJA  kJ@ 1,[(J``$IB_)P*k 8I$.)HRPZ,I|U.I IsU+Iր&iN[)ͥ.,c M'mcZ\ AMc [M0b2Mc [p x{(B77/!B)BP{K@CJ K$H4mk,[| HkJIIkJ$kJ$AkJ@Mc,[9P5,[HJXXpp3?yP*k +! 1"r"'h:{ c\\\\$"II,c c$"I@$,c c$"HI$,c c$"I$I$,c c#" @nkjR$"H I$,c c!5 cHJxx-/pZy%m$mcHJ_U"4O$,c(JU/I̓iJUUT'I.HJU $߷IJUUH,m1HJU* `1b 1I$IQ_;Iۅ r-c(zzIO$+k 2&iJmcz~~$"I$I mcMcUW|$" cb$" I$cb$"@$I$cbhЊ5,c(Bx`$Iܯ(BW5 im۶ )k> BVҜsx7'O$Q cx^WUH$I$NkjJNkJJ@ NkJJ NkJJI$I$NkJJ IINkjJ# I4I$NkJ IANkjJ!P cRx}B?:nR %"ɗ䯜MkVP`!Ќ9kIJ_Wɝ۷m(B5 Aɛ$h֭5=# 'x^W("h8vl;$"H$I$ь|$" I ь|$"@ Iь|$"I$Iь|$тAsxM&cs)^$Lə$p\H"!#&|$P c`X>'ɟo c% ;Ih{ p>%'O$mcx^WU$Cm׭Mc [$ cik [_NZ-5@Wn,cUW\ht4HMc [N$Lc [c$Mb,[]6,,[Z`1b$,c(Bx^IoHJ% 2I)P@4nw? 7Ê'4tx^W dٴN1|s\U#,` |sy*!hkW_ y揜s& $P 5$"I $$"I $ь|$!I"I&ь|"h->p cX$ɟМ c^W-+c->əhќ{"`=#*t$Mcx^W&"p$I$kMc\UUU$"I$ cb$#*hMcZXxM?nZ %$p9mkW^x%"I&h6kMcW^z!6b3C;Mc [@kJkJI$I$kJ 2Mc [Z&,c(Bx^p}QHJUե I-Pū{" $I$ԽqWVQI$I$ԽqEUDI$I$Խq I$ $Խq4E:I\ɑ^:1`Mc^24$QMcWU-X$|Mc_UU%;kMcUUU%")$I$mcMcUU$"H$I$cb$"IA cb$"AI$cb$*McZ@̽ʍIJ%%55&əID1Sr^=I Ҕsx\2I"A|mcU0! $i|mcU0#o l$0mcU0$ I$0McU.?|McU'Xt'sIJ83)B)jpkh#؆m ?kRW $,cZU$,cZUMcZ**U$(:McR ȋ˛HJ54v`xqLcz&#$mc [U$&HMc [ ?̃RUU`$탪RUUж{JUHʤI(B?0ߜPZz Ė$LcRUM$,[RUW %,[iJU 䖿,cJ$H,cZU`h' c(B2 1Bq̃ ''{'s,c\\VV @kJI$kJII$kJ kJ 0,[(B``(J 4?=McppxXHA kJI AkJ@ kJ@$I$kJ$ ),cZ@pL(B7%5q͇Xk bbI$hQLc -I$鸞?Խ/< I$I$ԽqL]I$I$ԽqQDH$Μh"TI$,cWzP&|O(B_W. }6 HJ- 7 4hs"`6}$Mcx^WU$$kJI$H$kJI$I$kJ!0۱ӎkJ$"I$I$cb  ۶mMc,[ꪪ$AHMc [$!M4Hcb#Z̀,McZz` NiJ5|I$OW\H# 0ݐsP\$@F:sz!P#&|$P c`XV/RKs+<)`@ x0#hO$x^WU$"A$I$ь|$"A$ $ь|$"H I$ь|"|X`M&o{-7^# NLcW^`!)IIMc [$M*HIMc [ ܶM(Mc,[j 9jMc(J`x^ɟHJ% ?BҜsp6#?O$PMcx^WU$"@$ $cb$" $I$cb$"I$ $cb#ђ(AMc [^|(: HM,cU$`IOkzC!*6u$sZxW.IZ- : `A4 x1#''|\VUU$"  |t$"I$I|t$"H$H |t$" $I |t$"H$I$|t!M0vb|s{ Z|mc>zjj m`۴Z %\I$lk\ho,cUUW\IӶhڶMc,[IIkJkJ @1,[iJ`3'MOHJ_W52IIќb-* 7&XڲMcx^%_?s,c\WUUH kJ IIkJH$H$kJ I kJ̀@,[Rx}&NZ 5\mkUVZ`I$i$Mc,[蠀H$H$kJ   kJH-,cR`P&Lo(B_W5qI 1HJ ,IIrxhj:9#>ӔMcxxX$V'k,c_UU"mmk,[!В$I8mk,[WZh{R'_|nR^ ?RUUT.iJUW H뒯B=0)Cskp"( 'k [V@$,cZU$8,cZU',cR_ $,cRU [$,[iJUP1Z&,[(Bp`x_'y.Z 3XX>0|Z^$@' cRW# "$ cIJW"? cJU# il$ cBU" m$ cBU O$ cJU-P&I.IJ_UU+閶 bIҶm UIҶmMU<I$mjn8IB> ok\#I$N9s  r ]>I0@p{A !$h8ҔkxW53mݶqRx~O$|&ФiJ %5*9I{\zB+"t"?X/sMc^^x#"HI$cb$"$I$cb#h5Mc(BxhI(BW5 yϓQ*k)"I?1 W,vj9oMcxxp` H$m cZI$I$NkjJ@ NkJJNkJJ NkJJNkJJ  NkjJ# I$INkJ!I4I cZ" i&)-cZ9b'ZJXXVI) k kڶb1Kk& IɑR^B#X?>'xU$"H$ $"I I$ь|$"I$I$ь|$"I$I$ь|$"I$I$ь|$"A$I$ь|#"$@ь|" 1p c` h ϝ c5%9I$ImH#?AҜkx9#`'O$Mcx^WU%"HҤI$cb#"I kR$A*%Mc [P #ѐ*,cRz9MZ % y,cUVzA%Lc [(2,[Rh5k,cBx^ɟ߷mn(B 6ə44o/`2:}$sx^Wi!ts I$H$0|mc$"I$I$|t$#6 |sz*!# pk5_&[ok+(hHQ5%I)P|@#'p cxVx}ێ cW- 9I$I{ (@IqBҜkx<#XO?N$mcx^WU$"H $cb$" cb$" $H cb$!-&Icb%  McRxONZ 5$p9mcW^x$!M6@ӢkMcW^~ kJkJ-,cZpj$,[(B`^HinHJ5 Ii9.I$I Խq DEI$I$Խq@I$I$ԽqI$I ԽqDP I$ԽqPU2IDI\z^|2>9QMc\\XXI$I$kJkJ IIkJ$"I cb$"I$A cb$"I$I$cb$"$I$cb$ c2Mc [JpNIJ*ID񤏔R9#>>mcXXXX$" I cb#!HAcb$"H$@$cb$"A$Icb  ,۲-Mc,[jjx'J$̓(B77!!' [z~ 'm[ۏiJUU $$i.iJUU $$NiJUU$ǒNiJUUڶ iRUUq[n(J%/">I$oR^o.RUW ?탪RUU/"#${mcU.ֺ{McU-@D{mcU+ #I I{k(U*#m Ik U&I2$I{cCh.nIJ*?7I@4 ZW*coRU蠀$YO>.RUW HtŒ-(J*1)j)O,cxx 4nvmcRW ,cR*0sMc [$H kJI H$kJ5%,[(JpxXX0[ypb- ) 1>QMcX\\^!I&H$kJH H$kJH$ kJkJ1,[IJ`(ɟɗ(J% 8F/9#>qMc`pxXHAkJ{Ф,c 5UUϟ|5q,c II$濫I$I$ԽqUbI$I$ԽqDI$I$^<*I$I$Ϥի5əj0\5'Mcpx^WH4M$kJAI$kJkJkJ!I6)$kJ$"II cb$"A$I$cb$" $I$cb$iڸ1Mc [# C',c(J`X#IɛoHJ%- 9I? mc"zy}>Ϥk+&oۯ c^IФ c+>B&N 8"C?~Tx^WU$"I $ь|$" $ $ь|$"I$Hь|$"I$H ь|$!I$I$ф#RH|x|">X&oLc ^!ɛ䯜,c^x#  {McUUUT#њ&Mc(J`x^ItɖnHJ5% Aɕ!Th > b<#X#?}$Ӕmcx^WU$"A$H$cb$" $I$cb$"II$cb$"I$$cb$"@I$cb$ј8Mc [ s9 h [ 5WФks 9 tiUo%{7"?~$Ӕ|X^WU# I I$Q|mk" A$I$Q|mk h&|k"$I$|sWUU ֶI$ts I۔$|k$M2|sj 13'sR`X$ɟZ%% 5I0|px?s.nmcx LcUUVP!IvMc [ iЈ1McRhP#&|sBz^54IIќ'J+* 9&XMcx^%?s,c\WUU$ kJI@$kJ!?Mc,[H@Mc,[ I$kJ(@ Lc [ꪪ@ [RX`~L'NZ %p9\NmcUTX@ I$vMc,[蠀),c [@9s,cB`x^W4 (B I I$=O<ɕ B1pn2S?Mc\\^W$A$kJI$ $kJA kJMc [ꪪ@ [5UUI$sp c+I$ rΤ I$A$Խw<9I$QszK'iJWW $vݶIJUU$-IiJUUP$۶n(BUI$HBUIϜBUIBϤ(BU?ZP&iJ_^H$BUIABU*I@ϜHJUIL@ϤbI@1샵 (IR2I$I2N+n Τ I$I ӽ?Id`@zAѢ_Ҕk\W-"sMcWUU'ò DrsMc?U?OIFk U=#>$Mc~WU)"}'y܎kMc\UUU$"I$I cb"9MciJx`I$IZ -,BϜsW\P`*"M'|kMcWW^X#h9Mc(JxhI(JW5 .I$Ib:pAmk x1:~$qMcx^WU-: N [Up y.,cW^p  cZI$I$NkjJNkJJNkJJI$I$NkJJ!I$ 4 cZ " I$ NkJ!A82 cZ j5j$ cBx^N!@J% 9I$IS?j=8c3qx\$OB>k _&PI$|ZH&$II|$"I$I$ь|$"H$I$ь|$"I $ь|$"$I$ь|#"A$@$ь|#hЊ5+cx$I. cXV ;*k <1P@ҔMcx6"?O$PMcx^WU$"I$I$cb$"$Icb$" $H$cb!= Mc,[z@ lclJѐH [Rx?nZ 5O䯜,cWZx,>t(B_W6Iضk(J5 1$4O=p1X??M$4sx^WUm6msk*I!Its!iI|s$"$I$|t$"I$ $|t$@#I|sxꊪ l26 /k%^~'Ps*$Њ5jB' cx^I6@+c5 @I L=; <)@@Ҝkx^5"'O<0Mcx^WU$"I$Acb$"A $cb$"I$ cb$" $Icb$"I$Acb$]ӶMc,["3 sZ_t>Z $x﬍kUV^x&%#mk,cZXP` 5,[iJ`,>Ms(Bz^W5IT B Iӽ;I$I$Խq $I Խq QI$I$ԽqA@ $I$Խ/bmۢm$ӽΤ^ᒵ ?rhb39RS5qMcxxxpkJ kJII$kJ$" I$cb$" $I cb$"I$I cb$"A I$cb$" $H$cbr"'h&s(B(_Мo@9">:qmcXXXX$"IIcb$"I$A cb$"@$I cb$"$$cb$-Mc [Hȏ̃B77777OBOO0IH6pnkW,Iֶ|mcU-ֶ|mcU/I. $i0mc U1 I$|mcU3!I"A$qmc*U0 &0R^_7tK탈 1$m0mcW$" $I$cb$"I$Icb$"I$I$cb#"$ cb $I Mc [)S3)Mc [jȭʭܰ977771{xO:;՚#:ҔMcxx%X ,gsMc**U& ~MmcU&I I.kU$$X ,[z'O.RU"В?̃RUUr${RUW0In,[R W`&t$Lk(Bޞ39Bq̃- )x|McTVVW! ɐ#9Mc,[ $kJI  kJ@$kJ5=,[(B`pxX/yp /hR 0#?s'0|Mc\\^V@@ kJ$HkJ@ hmk,[?N"> 0,c UI$I&qLk  $H$ԽqBI$I$Խq SI$A$ԽqБXI$Qlcx蠀 $AOМLcUUWXH Mc,[A$H kJ AkJ kJ$@tMc,[$"H I$cb$"HI$cb#mۺ5Mc,[#Ѣ3'LcBxNɝ/HR5 89qh{p7!?'qMcx^WU!ヱ`-,[5UUI$|9+c 5.ɑI$sϤ\j:и&Tp^WV$"I$I$ь|$"A$I$ь|$"$I$ь|#"I I$ь|$"I A$ь|$"H$ ь{"9qZxpIߏ+cW5-L/ O'МLk\`HHJ׵@I\BnY6=$:s'ӔMcx^W$"H$I$mcMc\WUU$"I$A$cb$"I$H$cb$"I$H$cb$" $I$cb#"$$kR$"I I cb$*Mc [耀XjoiJ/W'WIФ/^^y'ImP|W__\#!I$I$Q|mk# IHQ|mk!m6m[|s 0|nc@$0|ncm6ss ͚&sRx^MɛZյ+8ph4- 3ONӔsx^WUi|k7_~Is9nkx˩%@oIIBpu; 'mkx^W p$I$mk,cTVUUA@$kJH I$kJ $kJHkJH$I Lc [ꪪ ZmkR?z l`ۤiJ - I$ɓϜ#II$Фp6IB6iphz*Im IQ8U*Im IP3U*Im IQ|U*Iq IќP?U+I2mФQ|U/IB IќQU-Im IQ* U1Im Iќq3U1Im IӔoUU1Im IќrU1Im IќqU1Im IќqU0I2I$k""IkФR*?xu|kcbxs,c+I$I 0U8j |Q{~^Xx+"t:sMcVV^X#"IHcb$"I$Icb$"I$Acb$" $ $cb$"I$I cb$"I$I cb$IMcZ`O'k>niJ5II$1`)&f?Z_Vx`$IHJW5 0I$I)k) ;pAncx2'N$PMcx^WUI$I$kJZ@Mc [^zt2: [ %U cVx $IIc cUUI$H$-cZ@NkjJ @NkJJ  INkjJ!1 cR` :|mkJz^W5I&HϜ(J =I 3^ =)D+U0|x^0!?~$ӌ|\WUU%X۸m0|kxꪪ!s9 mk5_#\I$s"# | $$"I$A$ь|$"A I$ь|$!IR4E&ь|"h,:p+c`Xhɟ c^5-s D DhҸkxZ3#h$O$0Mc\WUU$" H$cb$"H$I$cb#" $H cb$  )Mc [@!Mc [hVUU $@lclJH@lclJ `،- [iJ` KtHJ %%)y䉕ќ냷Ir>Фs(.кosx^W_m6hۭskask++.:II$0|mc$"I$I |t$"A$A$|t$"I$I$|t#!I |s"h5sZxXɝߏR/55 Hu۶m{(0Idɑd1nz@X?Ӕmkx^/"'O'{Mc\WUU$"IA$cb$"I$I$cb$"I$H$cb$"H$I$cb$"I$@$cb$"I$Icb$" $$cb$#IMc ["3Z -R%W_ a}LФ c qjB'piJ8 1m3 hhkzzzxI$I$kJkJkJ$"IH$cb$"I$H$cb$"H$ $cb$"$@$cb$"A$ $cb#j">5McHJXx!ɕ\)k "+!:">9,cxxxx$"I$I cb#"I $cb$"I$Icb$"IIcb$<Mc [ȋȋB77773 !B!B{Cjjj"h$M$nk-cTWWW@ kJ@kJkJ$"AI cb$" H$cb `&>,c(J5 P̃ ,";rsMcVT\\$"H$I$cb$"II$cb$"I$I cb$" $ cb I$  kJC2$0Mc [ȍȍo97777gbssP7>>,[xxxxA@$kJ$kJ&vMc,[#`k,c+UU&`'k,cU'#nsMcU"j(B8ɟ$I+kz1OHJ *!M'oMcxj u{RW4m$,[R^,cZhmMc [@I2Mc [j`s{(B^ח11Bt`Q{C#M_ێk,c\VWWH @$kJH$@ kJH @$kJ*)Mc [jj-L䏔B?75I$I$. I$I$ԽqEUUI$I$ԽqTRI$IԽ/_c<II$kkz言@ x,cUUVxI Mc [$AkJkJ IBMc,[$"H$I$cb$Zlk.Mc,c"Z&Mc(Jx^Lܹ.HJյ ; $h{+ ps$sR`X\;I k=- >#&|$4|x\^W$#:Zq,c^~z IM$Q c )I$O'Nxਢ*$@nc_|%"IҤm$kMcUU_V$"H I$cb#"A$Icb$"I$Hcb$"I$Icb$" $I$cb$"A$@$cb! `MciJx` 6i契R %II6-j"+I$Iq{AɐAkx6C'~'QMcx^WUkJ@kJkJRHMc [zꪪ# i{ [ 5W SI Lc^x sMcUUUTI$H$McZbL[  @(1-cR` &M(B_5In0lФHJ% >Iyqu6<+T|x^+M۵ǒs\WWU$"H$A$|t$"I |t#P# sk` k1hk%W_  O's$ ONUUXh$E[-{#Z&pZ`Xx$ɟ cW% (Iɟ .)&I.Fiw/mcx~Xp&"I$Hl3mcMcW\$"II cb$" A$cb#"A$HkR!?5ۿMc,[jh&@4lcRlclJ 0 [iJ`#&LmkBz^5+ɟGR* /&Zsx^ #sMc#>Mcxxxx$" I$cb$"I$ cb$" $I$cb$"II$cb$2,,Mc [ȋȋ B77771 AaPsBBB@ H$H$Mc SI$I$kJkJkJ$"I I$cb$"H$ $cb!؃=؃=,cHJXXX5P̃ ,"zp?sMc\\\\ HI$kJ EI$kJ$$H Mc,[ m E$kJ!)6M$kJ  Mc [HHB77774ə\ɕ񤏔o5>>qMcXX\\ I kJHkJH A kJ I$kJ $kJ !,c [@@H܏(J559ɑI n4-{'qMcVV'Js,cU$t@ {N[''(H{ [x #}`sRUm/9'sZUx&c',cB~xMw B5% 2jqmcb`pXHA$kJ@@kJ$ kJHH kJ0,[IJ` (J%% 3I$br _ v$n . $Խ:Խ/ ԽqQP ?oӽ-zp9Ϥ,cUVxHҦmMc,[@$HkJ nnMc,[$!m4M4Mc [%&Z&McHJx^J{ (J5- <4h{=`:"X}$mcx^WU$"I$I$cb$"I$ $cb$"H$I$cb$!IMҤcb$c@Mc [^x~>Z [ U ?1Nn" !p 9pUW\b%$IJq#"A$ф# @1qlk`3'Np cXV5/IR)k*=A-x6"O~$Tx^WU$!I4Mqp% [Iq/|xosH >$P 񔘏LcUW^p$knMc c#"cb$!H i cb ۆmÖ$Mc,[ ۰a$Mc,[ Cm$Mc,[Ь5,[BpHɝNB׵- 8I|9Ҝ /6 ?ӔMcx^W (is [W_ Ѥ.Z  .sUUW\I$A$ssA $0|ncЪ5sRxhɝNZW5-2w'@@{=/ 4P $sx^W$B|k M۴m&ts@Btsk0$ssꪪ b@smkxHяk(Vix.mcx^\`I$h4Mc,[ kJ A$kJH @$kJɐaMc,[Mc,[HHkJHIkJ5,cZp5k$ c(Bx^#I{.B- 2 hsx* Z?/Z(^_ I$L'q+c )8Iɑ rzZ:XҔMcx^$_k,c\WUU @$kJIkJ A$kJI kJA kJE@&Lc [P#&,[BpXH9y(B% <ɑ )thvN-6>}$4sx^WWt>O [7^zI$I$ks#@pt^zI$L$|sUW_\H A$0|nc$I 0|nc I$ { l!C&$9Ats )b-6l|s$"I$I|t$"I$H$|t$"H I$|t$" $I|t"9tZ`x NФZ)=fhU0pX'"H$I$P|tTVUU$A|kh~B',c5_ Im" +I$sZz+"#>Xm{Mc_^z$" A$cb$"A$Icb$"II$cb$"I$I$cb$"II$cb$"A$I cb! 5Mc(Jx ۤHJ55 I$Ir"c[C Bs(x<#'O$Mcx^WU X%[%Mc [I$I$kJ@kJkJkJXMc [zꪪH. [%UUXNL' [ $J{McUUW\@Ш5,[(Bx3'No(B_W%-PHJ- >I|Auo%?%'1|x^W*"hΓ?Q|\WUU!z"a|k$"I$I$|t$"I I$|t$"$I|t$[ڤi|sz說"hk5_ɑM"&s %!4op+cpHmێ cW-=II,>?XҔmcx^0X3m|,c^WUG [ %5& TtmcUW\r&"N$N8mcMc~$"I$I$cb#"H kR! Mc [XXhI,[ [H(1 [IJ`P&M/(B_W5+ɟhR* +Psx^_~n?1|kxWWH $t c b`kMcxy?:nMcࢭ50 osUUWX I$H6|sA1|mc$$ts&sRx^pێRW% I$I1{) < h{ x?#>}$mcx^WU" sZW_"y~^?nZ -($@Mc_&"$Hb&kMcUUW^$"I$Hcb$"$Icb$!I icb$"I$I$cb$"I$H$cb$" $I cb$1Mc [` k$,[(B`XHxign(B5 I$IԽ2 $I$Խq ԽqUII$Խ0l_*I$IМ]:IU@Ҝncx9к~$MczWU'?sMc\UUU$Mc,[HkJ ,[(J``ilФhR 49@ 0~|~~(L'z'sMcVVVT@ Mc,[kJ$"HH cb$" $A$cb$"I$A$cb$"A$ $cb$"I$I$cb" ,McR```[(J 9#؃=؃=Mcxxxx$"I$A$cb$"I$A$cb$"I$H$cb$" I$cb$>(Mc [ ȋ IJ55551 aaPsBBB@ H$I$Mc SkJI$I$kJkJ iAkJ$" $I$cb!99McHJXXXX2  Pks ,z"'sMc\\\\kJ$Mc,[Mc,[kJ! $I$kJ44Mc,[Jx'{HJ6Ҝn0h"'r"'1,c\\\\IkJA kJ kJHIkJ kJ  ,cR@HI(B%%;C1bќ/HB'p$L$s,c\TVVAkJII kJ#kvl;nk-c?UUU#O$k,cUU" 5k(Bjz qHJ 4IOaB($탪J^PN{RUx 0唻,[R+ LS,cZ=@I kJ0P9,[B``px IIn(J : =>M[xx'#`ƍ/Mc/U#I 癩k UU"I$k U> EI$*:I$m$Ϥ^ Q,cW^h @k [ )n閡Mc,["/>McIJxZpɝW(B׵- :ɗDh{- `8"P>|$Ӕmcx^WU# MI4Mc [(!$m6C"kJ  A۔dMc,[ A$kJ!iZ$m$kJ I$kJ b#iMc [z蠪t h [ 5UΏs )$SəO_x#@1sh P&M$p cx^52Ф c-<`Ax5"`O?$4x^WU$" I$ф$"IH$ф$!M4iФqZ q|^x`N<'nsʭ Jn,cW^p!4Amc [ -[$Mc,[PMc,[AkJ @,,[iJ``'N (B_׵%8Iɕ*k#7(XMcx^#'mk,[H$Lc [cL,cZ|7Z [ %@X-sUU\r@*5sZz`$ɟ R^׵ 5WAJs/ 4'sx^Wh$i$|s^WUU )i|k8q skਪm' ski$I{[y$Isk? #(hskpGNk P)mMcUW^rI$hR$Mc,[ H$kJI$IkJ!mؤM:kJI $kJA kJ 1,[R`-:|$k(Bz^51IHJ*4`Amk x0O?~$Q,cx^WUЂ$H,cZpZ .R_'II$kk+)#&IKnMcWUVX$tMc,[kJAA$kJHkJ$$kJ AkJ` 5,[(Jppɝێ(BW% ;I n7;9'Utx\VH$I$|s^WUUsMc`~B':Z 7$ I$ФO^r@%s:oQs^ZxI$I$ss $0|nc!iI|s" $I$Q|mk! Q|nk$"A$I$|t$"A$I$|t$" $I|t$I -|k``"'MOR^V5@ɑ9AU%=#3'}$|X\VW$"I$ $|t$"H$I$|t% #*h| [x [ 7hSڢC*1sV^Z`*"ޮsMcUW^X$"H$I$cb$"H $cb$"I$I$cb$"I$H$cb%$iҊ1McIJ``Io(B_5 ۶n k>I$h{(p=#3~$Mcx^WU$"I$A cb H$I$kJkJ kJ kJkJkJMc [ꪪ i{ [5W_/N [z)%hmiRUկ0Z- CI|Cuߖ@#Ċ'U0|x^W'"h$I$P|TUUU$"$I$|t$" $I$|t$"H$ $|t$"I$I|t#"AH$Q|s$"I I |t$[|s~X &h䐔Z?חۡas/=Iĉ3t?XҔmcx^*"&$sMc\WUU$" $I$cb$ѐiMc [xNH'. c 5& x-mkUW\r&"IB'mcMc_|$"H$H$cb!h&k&Mc,[چ+6,[IJxP&M(B_W%,ɟќ&J+ /6Xsx^ Q|s\WUUHIskA$@$t c@$ t c `k-cxIѤ|"6nmk⋭  -tUW^x ۶q(,sk@͚C'sRxV HyϤRյ 4I$I,.;9AҜkx7 O?O$Mcx^WU%"H&I$cb#&IMc [#3Z OZ5W_%XO'+c-&HmcUW_|&"q$$mcMc]W~\!I$IҤkJ  $I$kJ#" $A$kR$"II$cb#1McR` 9|$sHJz^WIO4 (B !EB$IϤ'I$I$Խ/ p@6*[:I$wrl^w:5ҜJ`z*[_oZ 5>XQMcX\Xx#ϓ$ Mc,[#y?IMc,[$ϓ' Mc,[$$AMc,[$ т*McR`` yۋHJ-%%%9IXɑp^P^b/{"0|McV\\\# $HMc,[!I4MkJ$"I$Icb$"I I cb$"I$$cb$"I$Icb$"I$A$cb$.1McZ`@@ju}HJ%8Ш'1J^_" Im$McHJ*U" m$MciJ U# Im$,cHJU# Im$LcIJU"`$?McIJU ȋ͛ HJ555%1aapsc`b` H$H$mk,[kJI$I$kJ kJ  $I$kJ#!I$I Mc [99Mc(Bxxxx29yP*k  +x'x'{Mc\\\\I$I$kJ@Mc [AMc,[kJkJ  Mc,[z'p&sIJ6I M&)+h&r?|,c\\^V  kJ@ kJ$kJI kJAIkJ ,,cIJ```  B :ihsb`H$Mc,[ $ kJ$ kJ@$A kJH H$kJ=`&,[BpXX7IdIb# :3'ӔMcx\^"` IMc U!_ NkU~.R^ -RWIv{RU\؃%k',c(BXXޗ7ɕI{ +6>s'McX\^V 2-6hMc,[j68vMc,[ #dI|$qMcx^W# H$E$Mc [" I$Mc [ I H$kJ@$kJ$A kJkJ@kJkJ#tAMc [z 5 :/۶mЖnHJ !8I$qs~zI+k"< pAp6"O?4x^WU$" $Iф$"A$I$ф$"I$I$ф 9 В/t`$I$k qs^h `,c 7Sɛ$,cVx {,cUUUTI$H$Mc,[@(,cZpP&ts(Bz^.Io(J 7 !T`,[x)O?s,c\WWU IkJPMc [Mc,[ꪪ#ѐJ,cZ\p}>Z Z 5U]nZ_3[p k+3 '4|x^W h$i|s|_WU$$0|nc nb|k H$H$0|mc ts H0|nc$@0|nc ai|kꫫ  1s [`` s؏R %PWMcUWXplMҶMc [~qgLc [U! IrO$Mc [UUm6Lc [}`<:,[IJxP&Nܬ{(B~W%0I߿ OJ- 3 )@`kx^+'$0|Mc\WUUAA$kJI$I kJP [R`>ФZ 5UɑI$lk`   McUUVX I$h4Mc [@kJI@ kJI @ kJ @1,ciJ`X"'MN(B_W%+I$Ib*;dhU0pX&hqs\WUUAI 0|nc0|nc sZx` N$t: c %$ΤPWV\j#~91|sW^\x$$0|nc!I6A4|s# II&Q|mk" I$A$Q|mk$"IH |t$"A$A$|t$!IA6|t! 0&sR`x\8I$IZ+?8U0|`xX%"M4I$0|tTfUU$"I$I$|t$"A @$|t$kE;|sꪪ j>Pq,c^~z IM$Q c  .x+$Hnc_~$"I$H$kMcUUWV$"I$ $cb$"I$@ cb"@1McHJ`س'NФ(B_W%1Z) CItQPZA$>}$mcx^WW$"I$H$cb$"A$A$cb H$A$kJkJ@ kJkJ kJkJkJ@ 5,cIBx`INB5 II$rΤI$I$奈^7)jy0|xr)hlRs$"II$|t$"IA$|t$"I $|t$" I$|t$"II$|t$" $I |t$ $$)2|s#Z&|Rx^ HĹ}nR5 <I+S4>)mcx^,"o'vsMc\WUU$"A I$cb$" I$cb#"$ $Mc ["bMc [^h>X. [-${mcU\x&j :mc,ch1,cHBxس'InB_W-/II Z#/Psx^''1|s\WUUH skꪮH@ skskꫫHskhE۴scꪪ sMc^#mk꣍8f?pRzxL1`Z% 8Iən߿8)P@M[x2?O$1McxVUU!i$IkJ$"I$I$cb$"Icb$$ Mc [`!Z NZ%UW&/Nk\` 'h@sMcW~z$"I$A$cb$" $I$cb$"I$I cb"@5McHJxP3'OHJ_W%ynܶ QR%)I$I$ӽ0>@$金?I$IW<Im2{^="?mc^U/X5[5s(Bxzzz%oZ))))8>QMcXXx\$ h'Mc [~$AV;McZW% $Hf?McRW# @$MciJU!`[',c(JU ȽɛHJ555%0IdI1\Pb8#j>9QMcXXxx$]6Mc [$I>Mc [~$$HV?McR"h?McIJW"id$,c(BU ~$,c(BWINIJUU $Iߎ(BUIt(B mӶma-U諸IB$ 0{U*vBQ*kU IB cU IBbUIҭ1ZUI@ Z2 vaasjj``H$H$Mc [kJkJI$I$kJ II$kJ!i$i&kJX5X5,[(Bpppp1IIPb)!!,p?h>|Mc\\\\,cZUMc [UMc [UMc [ Mc [ $Mc,[h&h&LkHJ59C1C.EF&pk,c\TTVA$kJ $kJA IkJ AkJI$AkJ,0,[B````q)n(J  8_4R5mc`ppx@ kJH$ kJ$kJ  kJi m6Mc [h'K.(Bח8I CӔM5%.p'|$Q,c\^VWIH kJ!퐤I$mk,c)UU!R؎k,[ }mc+UU$ [ /WH|$QRx^W Ŗm Mc,[! kR! @kR $@$kJ$  kJkJ IkJA IkJ@ kJ@ 5,cIJx`B'NĬ{(B^5-.ɟwZ *I$|=mk+%ɑI$rrr8и/Tx_UW$"I$H$ф$"I ф! @ф񃪪" A$I$ф񃪪!H$I$.lI 0qP|* `'0|Z`XV ɛyϤ c5%-+)I$#o"`1XI$lkXrj-,cUUW\ 1bB' [B`XɟoB% 9Bkp2'N$QMc\VWUII$kJ II$kJK@,[Z` ,c [u!m q$Mc,[ꪫX`McRzࠠ}> hФZ -U,S䰜{$#Qs\^WWImss@$ 0|nc!fbfj|k kMv|k!$3ä|kꪪ1|mc H0|nc  I(1smk`X:s$kR`X֗%ɟ}b% *ɛ}=s@PWM,cUV\pm6@6Mc [lclJHЪ5 [BxC'ɟB_׵-'ɟ7aJ/HR 3$c',cxW& и$sRU d$,[RU$,cZU Mc [04Mc [X,[Rx~^?Z -1{x0 0McUUVX I$I0Mc [ $kJ )Mc [zP%{s(Bz^W B =ICVUo&b5?~'sx^WUA $0|nc 0|ncAA$0|ncC$sk# O [^zI$O$Ϥ c #$@t_ mڤK6|sUUW\ i){ l" I$I Q|mk" $A$Q|mk$"II|t$"I$$|t"` ,tZ`Hɟ.R% ?I!t`U-56#h'M$|\^WU$"I$I |t$"II$|t$"I I$|t$"H$I|t#|k`O?,c5_ I"+I$QsZz+"6XOsMc^|x$"A$ $cb$ A*1McR` 3'M䰔HJ_W59I$I(J 5I$uѲ{*W$II$Q{xj(4IwNMcWW\p$vݚncb$"I$I cb I$I$kJHkJI$I$kJkJ kJkJh5-cHBx`$I-B_5 Inݶ R 9I`@T2 #Ш|px^I'͎s="pWəmsW^%$IN|s-$"I$I$|t$" $I |t$" $A$|t$"I$I$|t$-ڶ6 |s"X&|Rx^ Hܹ}ۯR5 AIɕ M,A&;Ӝmcx^,"?sMc\WUU$"I$I$cb$"H$A$cb$" A$cb$"I$H$cb$!$ $cb"#̀@Mc [Zxt< Z $ZW^`$on(BWտ*}R &O>?.Hrg! %Ps\_W^I۶hsk sk|M[@@skskskꪪ 1kMc`Xs|R>W1-3IK:!4hmcx^)X;ms [U!$I,Mc,[$! cb$"IH cb$"I$I$cb$"I$I$cb$Z͒HMcZxu:ZZ-U& nsV\r("N8ՎkMcVZ$-еݶ5Mc,c"&Mc(Bh^`$ɟHJW5 Y5I QZ $?s6I$Ir VAI$2kz? c'JW3ж$s(BU#4~$Lc(BWPS'IHJ_UU ZɃ*R^W^Ж$I-BU $vkniJUU*K' (BU I .HJU-I/oRUm݀ js*+ r`z4c'0iJx\:IIJUU ؘ$mۮiJUUh$mHJUIv(JUimZI[1  $2%8 $s i۶mr$IRN _"I$I PoU4I$I QPU5I$roU5I$v 0(U4I$$ 5Zz^rsCMA/A-Sx I#$MciJW $$,ciJU $$,ciJU $$,ciJU $$MciJU $$McJUP5Z&,[(Bppx_*y[/Z.` `&|R^ $KϤHJUU $mМHJUUoϜIJUUIbФiJUU`IBUжInIJUUpIlN(Bו3)B [x"ئm+mcRU ,cZA$Mc [@$@ kJA$ kJ kJP5P5,[Bpppx1IIb ))8>&McxXX\$ kJ@ $kJIHkJ@AkJ(,cR@`In(B5%%9)afsb`#Mǵ]nk-cTWWU@kJkJI A$kJЮk-Mc [*#'K{(Bޗ7 y2MM8h*k`pphmڤMc,[!!Mc,[)Mc,[H$kJA$H$kJ A kJ$A kJHA$kJ0,cIJ````iQHJ ---yI'r{r¨ XZUW\p 0ŚvMc,[ IkJ#!I$I Mc [ :h&Mc,[AkJAAkJ$I kJI$H kJ@*5,cIJx'O{(B^׵ 3I1ab+ 6ѪqMcx^& X(is [^I$ [ 1N~ $PXqVx&"I$pь|" I$H$ф񃪪" I$H$ф񃪪 Xmݺ50|'P| c`XV Mܹ{ c- 6ɗ0`N%6P#:uP|xx^W|>Zs%_I0 cz H>۴KRhJ-6'V{ `5>~ [x^WW?Y,cZU$v+ ,[Zs,cZUe,[Z$I,[ [UUILc [I$I$kJRɐ ,cZp@@@` NIJ %5XI${Wz  .s_I$I$tsUW_~! ts Im;ts$!i$I40|s!u5[5ts(sk`9s$sRxޗ+IܹyZ+ 0 )T`|`X #cMPnc^~h4lkʃ Tt-,[UVX`hк5 [Bx`ɝBW5 #{T`Pb *"?0RxWo翓<,[R_UUI$I$ [ :I$$RRI HZ):,[R ---HlcRimMc [ l,cRxO's:R -I$I$Q{x*!D)TMcUW^p$ 0Mc [ 1b2' [B`XIY1HJ-)=ID CT/<P/:'U|pX^WA 0|mcH$I 0|nc H0|ncI$0|ncI@ 0|nc@smc`~B? [ %%ɐI$ϤO\bz+&kQs^xx!I $|s! Q|nk"!H$I$Q|mk$" $I|t#A$(|sb#P#&s$sRpX\BIIRZ**B$3?u0|bxX^$"H$I$0|s$"I$|t$" $I$|t$"AI|t$"I$H$|t$"II|t" P@t cxsP c )H$A +ФsV\P`)ڦ 1kR`!P&LpB_5 kmB @A&Ҝkp6!C?~0|Mcx^WU!@,c %U~s`"` 9LcUVX$ mc,c m"-6Mc [$kJI$I$kJ kJMc,[H(1-cHBx`$INB_5 !Gn6Z 9I)P@tza8'4tx^W#p$I$0|s|_UU#ts_}2:*@s U{N珜{^pȭ# SPsX%"I$MP|ps$"A$I$|t$E׶!|s#P&|Rx^ Hܹ}R5 ;IIAߒ@DЊkx\."'{Mc\WUU$"I $cb$" I$cb$"I$Icb$"AI$cb$"I$ $cb$"I A cb$"I$H cb$Ю9McHJ`x hۻB - ;IɗT_ >FШT0|x^ 3H|k,~||9.s$ e[Ֆ /sUUc۵sk@sk@ @sk뺾sk H-kZ`->M|Rz^W5I-0`R5 4II2s2̘O?,[x^!'O$s [\WUUlclJ Mc [$!6Ecb$" $H$cb$"II$cb$" $A$cb$"A$ cb$HMcRx}>bnZ -5&p9mkV^zb#͢C'Mc(Bz^ Hy붯HJU5 1m$@ӽ-/"I$IԽ/ór&I'$|\:}$RxW*P$Ϝ)J~U+I[HJUImHJI$I ̃:I$I p3U8I$w pWU6IH0U4IRN Is_7 mpkU8 1!idPmcU5#$QMcU3,53:sBxzzKk >I$H00^2I$Ϥ/* U3I$Ф0U3I$/ U3I$I1/U1I$I`1s*+IdI01mk<IHkX5DkU3 PkU5" I'qmcU5"$QMcU6"4$0McU2"@0mcUU/"Ж<|McUU/"{McUU(#&j&sHJX^^^"I$I1nIlkXOI iRU#II" hJU"IIhJU*%I$IHJU(I$I(BU*IHJU-IH(JU&In,c z'ФRWW "I$Is2I$v--I> mU`O&o_/I$0 V-I$Ϥ|*W(I$O@Uq$I cp I.IJUmo$ RUWPn탪RUz@n$lkiJUI$,[(JW Im,[HJU#&t$,c(BXX6I\lkb.)$QJW^ ,ciJ,cR$IMc [ $$kJ ,5,[B``pɟo(J 8O5>Mc`pxxض[,cRZ'<,[ZU}wn?,[Z0,[Z_ :,[iJjz ۼI(B55%(Idɕ1c|4+C'Ҕ [xx^^ H,cZMc [U$Mc [@`;Mc [;Mc [Mc [$Mc [ Mc [9C',[B`pX^}۷}1Z $Iגn (} mmKQMp⨂ J,cU^x @JMc,[!m82Mc,[!H$I$kJ@ H kJ A kJ  kJ@ 5,cIJxC'NĬ{(B^׵ 3I1apb-+ 3РO?q-[x^!HLk,[$!m4Icb#c`McZxO'Q [*- ?1M*#ϤpUWXh# H&E1Q!A4-Pz̘3'P| c`XV Kܹ{n c% :ə'DhM' :X>}$Upx^W`lIزkHqsz}2: s %_ g1M 'Vm/o-[xX`LLc [^@d@Mc [kJ $ kJA$kJH$ kJ $A kJ @$I0Mc [ 1C' [B`Xɛw n(B5 %I$ 1"~|O'Ф{Xh osUUU\ nIl{ d h&E&{ l$"H I|t!Ь1sk`9k$sRx^-IќZ+ 4Ti s x)??s\WUU@ Hsk꾪 ѐasmc^zLc 5 X޶mׯ(JW0[Z"/_?,[x^WN@H [RTI2rm,[RUImm,[RUI0r,[RUI2,[RU08,[R-%?Mc [UU-Mc [U$mcR*{RW_I${>qb+)?r.h ͹$ϜIB~x H{ϤB% :I$IS> FT|xX"ض81|s\WUU A$0|ncH $0|nc $0|ncI$H0|ncI A 0|ncI$A$0|nc  hsZxO$|>0+c+)$ DϤPWZ~p%IR'%Qs_~~" L$I$Q|mk! H Q|nk$"H$I$|t#5|R`xHqonR5 @CVhuOb2"'ӌ|\VWU$"I$ |t$"@ $|t$"I I |t$"II$|t$" $I$|t$" A$|t$hӵ |sꪪ#XQ,c^zz nLQ+c + II$-h+/9e&pIJz^\I-0IJ% ?IBm@#>t'Ӕmcx\^W$"I$I$cb$!M$@4Mc [% #A Mc%UUUO?n,c-%ďmkWXb!hJkMcWWWTI$I$kJ kJI$I$kJ@1,[(B``$O B_5 J$ Z 8I)P@U' 9 :t'4tx^W`$I$|s\WUU1|mc!|s mAts뫫##Hs%UU{x 5$I7sU\`$6m|s !#>sR`XHɟ R5 *I:Ns INsWWVPI۶IskAHskH(5kR`X&MsRx^%%I}.R I$}5s4 dޘkz^!k,[\WW_I&M b,[UI$IҢb,[UmmLc [$!&A4Mc [$"H$ $cb$ú:4cb$"A$ $cb$" $I$cb$!A4m"cb$#*McZ^x٨R% pܒ$InrbתIE۶ I$I$ԽqA4I$I$ԽqQQI$A$Խ/ׯII$V/I$HU? $0̛I$H$1|@9 H1Qxz8#ж}$mcWW/"?|McUU+"hI$sMcWUU&" I8kMcUUU%"E$I4cb#" $Hcb$"I $cb"P5P5Mc(Bpppp"IDIb!@"X+>mcxXX0#I'|McUU1"Զ|McUU/"жI$|McUU/"PI$|McUU.([5siJ`zz1O(J 9!>qmcX\\\$"I$ cb$"I A$cb$"I$ cb$"I$I$cb$"Icb$"II$cb$"I$I$cb HI$kJ`&h,c(J؜ܜ@ɐ@Ҕ  3Ц$McWW,$|McUU,${McUU,@?|McUU+@$|McUU+ж$|McUU+@m:{R) i's(B~W%M'I(BzW 1R 3hb? W1O$~UU%`mӌӌ5UUU"y#{p*m1. [X(@rs [)@nsMcUU*M$|,[U)/m|McU(c 9{IJz^ؖuٚm(J7I$f=h x($~@OZ^IR* ɟ&2mI$@$h 6$I$ФhJ_ piJU^`I$NiJU^PnJUx#&}$ [BpX^1Iɑxb#"5X-s' [x\^W`OI',[Z   ,[IJ I$I ,[JJ iI&,[IJ (4R9``pɐB )I CPx|"?{$|Z\^VWH$$,[JRؖ` [Rm4& [ZI$I$ [Z"(I$A$ [Z I$A$ [ZI $ [Z +v- [RXrkkBޖ) )q{ j%P ml$|RW}h@Ф,[ =U?~Kc*ə䯜,cVx {LcUUUTI$I$kJ@kJA I$kJ@ 5,ciJx'O B_׵-37apZ- 3'q-[x^!h$I$mk,cXVUU!I$IkJ$"I$Icb$"H$I$cb"McZz}>Z c %Um6I1n#JIpUW|jBp+cx^Hq}n c5 6ə'@`-/ 8P>}$upx^WH$I$P|I AkA$$kR#͐Iqtz蠀t": s 5_ O{j|LcUVZ`MmMc,[ꪫ@  kJHA$kJ@ @kJI$H$kJA H$Lc [P&,[(Jx^HyNNHJ5 2ҜM<5(XMcx^ oZU9O'Lk 0 Os"m&k5|s__~$ H(|k ` 5j|Rx^,IɛR ;da4/-x/`B'}b'sX^WW@$skHsk@ skꪪb+kMcx`'Ф,c 5.!j9s~Xx-umk [\^^~@$N$ [Z A$H$ [Z(I$ $ [Z*(I$ $ [Z I I$ [Z I$H$ [Z I$I$ [Z"  lclJI$lcR2Mc [j3:O:/__  Q{  I Խ0uj I$HrϤrR;ɐB&TOp/'N$Ӕs\^WU  I$0|nc H0|nc  I0|ncHH 0|nc H0|ncI$$0|ncH $0|ncHӢ(ss耀3ZP [~z I$N"'b 'T@Ϥt%!I$I$1|tUUW\# I$ $Q|mk$A(,|k``"'L䰔R^W5BIɑ Tʃ+A$P:j'U|`x\^$"$|t$"H$A$|t$"I$I$|t$"I$ $|t$"H@$|t$"I$@ |t$"I$I|t$"I$A$|t$"A|kh~'Ф [7_-iϤ˩5A$I$L(*>I$IRHrОA6k`x^&"pbI$kMc\_UU$"I Icb$"I$I$cb$!M6hcb$c3$aMc,[!|9N,c-US.Lc^p  N{,cUUU\kJ @1,[iJ`3'N(B_W%`HJ ;I\pAT[; :Œ'Ttx^W h$I$|s\WUU1|mcI$I$1|mc ڡ-|k  |k#!H$H|sꪪ#Z#H|szON'Ns %U$M[zxmNZW;ə)pAҔ십/8#[ $qmcx^W!̀@ ,c UU!w=:Lc\` & 4 s̃McUUWX$"I$A$cb$"HI$cb$"I$A$cb$"I$Icb$"AI$cb#`5Mc(Jx`ɟB_׵-@Iəs c*@ DhШu0|x^."h?|\WUU$"A I$|t$"H$I$|t$mE۵|s!b|k^jŧNmc 4O-sUUVr$iЪ5sRx'O/R^W%2I9qBpZ)+1'q [x^ X3dMkR8^ |u: [ 5' &H{McW!I4m&Mc S$!I6A4Mc [($ IbMMc [#"A$ $kR$"I$  cb Iж-kJ$"I$I cb$"Icb$"I I$cb"#>,c(B`XȗxIoHJ5% Խ0= I&I$ԽqDI$ $ԽqQBDI$I$Խq@m۶m6ԽqE u-ڶM$金v-I$Io W=IHQ 5OP9R^9ɐIМPrt/"z>x|McV\\\$"I$Icb$"I I$cb$"I$Icb$"$ $cb$" I$cb$"A$cb#@5P5Mc(Jpppp#IIoZ:">>mcXXXX$"A$I$cb$"I I cb$"II$cb$"I$cb",,McHJ````9p(J ) 5"`&h&qMc\\\\$"H H$cb$"H$I$cb$"I$H$cb$"I$I$cb$"I$I$cb$"II cb$"H H cb! A4kJhh,c(J<9C1B&H$K$kMcTTTTI$I$kJkJkJ0Mc [@к>,[(J^м&ONHBWU%IФB-0I$I%7ISi_' E$I$5Q4R4R4RH ӌꪪhӌ|O| 8 cWZ J,[UUUTMc [$kJ&h",cBXXܞ:IIМj{#"9>ҔMcxX\&В8s,cUU(PN$sMcUU)*I|-cU'q/McU'@ IocU(I2 IsUU+I$&IsU%I$oR^$I$Iks .?r`6 iJWxImkiJUXRIJ  i8ZR AI$ZR&c&RAp؜)-Ϥ c(!Znk`pH"'$,cZTVVU A,[IJ 8,[IJ s? [R}] ƒ? [R} D [Ru c [R@5C [R_U[ [ %U R˃ `ҥmۺlk87ə/J= 5>|$uqx^WH$I$P|AI kI$H$k   kA$ $kZ#& q|z蠀3Z ќLc/?zۖmQ{") IP,cW^z Mc,[ I$kJ $kJI$ $kJ9,[(B`XHnB׵- 5ɟ 6&XMcx^%k,c\WWU$ ,cZp3 ϤZ%UUO'Kk##0Фcx" 5k$|Zx^W'I$Z-*< A5O-x5"M;~$Ӕ|x^WU# |sp@ I$[.tsIHsk skH;p'sc# `k [ Lc TSNMcUV\x8HB'Mc [UW^^I$@$ [Z* H$ $ [Z)m [Z H$H& [Z($I$ [ZI$I [ZNq [Z" $HlcR!@IH6McR*z:j,cBxX^n閭rZ )I$A$0?Q?IRp"x<P/$4ncW sk Ass* H0|ncA$A 0|nc 0|ncI 0|nc$0|nc  H$0|nc A0|nc@sk`}B? [%_)IDI$ϤOrr)m@q|^Xx" I$I$Q|mk# 1#&sR`pXIٖ R E9i(upcp."'~璌|\WUU$"A$I$|t$"I$I$|t$" $ $|t$" $I$|t$"$I$|t$"I$I|t$"I H$|t$" $A$|t$"I$A$|t" X @t cxsZ %m$ImzAɐB6sp5#h'O$QMc\^WU$"I$$cb$"I I$cb$" I$cb#"A$IkR$"I Icb$!i6 Mc [ Z#@{,c%UUU1-,cxʭ R~pP&M䰜(B_W5i  hJ ;I|9qBTӴ-<Ō'u|x^W"h$I$|s@1|mc 1|mc 1|mcC:db&tsI!ats$"I$I$|t$!i$h&0|s @9sZ`pXjKk );I 2A$C'Ҕmcpx^&"H$IčkMc^WUU$ pb;mMc [$I{,c5UUWߢ.,cp # LcUW\h$&iJmc,c$"H I$cb$"A$Icb"@ 5McHJp`$OќHJWW%:b*=)`@UP `X3#$O'Ӕ|\WUU$"I$I$|t$"II$|t$"II$|t$"I I$|t$"I$I0|s XsmcxpM毜Z/&vlۯR_V0I9qpb 1'q [x^?mc [|_WU@lclJ! eC8@s [U]&X}>- [≥'IIsMc_~$" $H$cb$"I $cb$"HH$cb!4m$kJ# (iMc [$"I I$cb$]ۮ];4Mc,[#X&Mc(Jx^H}HJU%  i&@-I$I ԽqVDEA$I$Խ/p@$ VI$I~U9I$9!rWU:Il$ms_9?mc~U3[O$QMc_UU*#>5mc(JXxxx:ID k *!)4#{&h&QMc\\\\$"I A$cb$"HI$cb$" $I$cb$"II$cb$"I $cb$"II$cb#11Mc(B````&IINiR9":McXXXX$"I$A$cb$"H$I$cb$"I$H$cb#"A$H kR"00McHJ````9'J))))4#h&h&QMc\\\\$"I$I$cb$"I$cb$"I$A$cb#"I I$cb$"I$Icb$"II$cb$"I$ $cb$"A$I$cbh&hlk(B8)BAI#H$K$nk-cTTWW kJ$kJ@(6,[(Bx::N${(B_U5HfKn(BU5 #I$I{ 4I!յ 5`;^/X]$_UU4R4R4R4R$4R4R"HHӌp@OҌ*s0| [UWX A/Mc [upK.(B5: 9CN*M/p'|$Q,c\^VWA I kJ AkJAI kJI$kJI kJ-$I$mk,[!ۼ1mcRjhNn(B5%8 1BҜC+գ:|Z(^W}0Io c UU$- -c-UσNRW @rv iJUW @ub(BUW H钯B5IIRsoX*D/> [`pxX m$I [Ri$iL[JRI$ @ [RIn A [RIR$,[Zqɒd ,[Z,c [UUIlcJ 5,[(J```p"ɝ/'J 5/&qmcppXX$"I$I$cb$" $H$cb mN$Mc,[9P,[HJxp`n *k II$1lkx 0i;jJ|p$I.B_׵/3I1aOZ 2РC'q-[x^"`8u$k,c\WUU $@$kJHkJ! $kJ!Ӷam$Mc,[ $Aۖ$Mc,[ $IMc,[  Mc,[ Z#زMc [zs": nZ 5U I$O'1Kk)+)Sɛ$R\R#qTVUWI$mk@@$k@HkIk $k@&,qshP#:tP|ZpX^n+c (I$_@Rjlj篜LcW^`HAmk,cUUUT kJh5,c(Bxh$I-(JW% 5Iɕ {64+Ҕmcx^&_??s,c\WUU kJIA$kJ!3۶Mc [z*!3 nZ%UWOMϜ c N cժ:9qhUO-x6#'$|x^WU$"I$H$|t$"A$I$|t!؆غ5sk`(Isk0A$skN8ski6hڴscꪪc s,c^z?? c 4ASm,cUWVX$NMc [UUWZA$I [Z M6MS [ZI$I [Z*A$A [Z@  [ZNN8 [Z (m: [IJx->M܌s(Bz_%2I{ohR 5pmk"`x2?>Z %"$I$M[x `ݶZU_cRUIМZUU@n'|ZUx0 msR U $%sZsMc AskA ss I$I0|mc1|mc X̀@s [xO's> [ 7*ɑϤq\Zr+ڦ 0r,c`pO-R5>I vn-D$>|$u|x\^W$" $I$|t$"I $|t#"HH|t$"H$ $|t$ۆmm&|s(_$a>|k#'|mcW" '|ZW$ i$sZU! m?tZU DN$sRU/h$IoZU @IB5oA$>t$mcx\^W$" I$cb$"I Icb$"I$I$cb$"I$Acb$"I I$cb$"I$I$cb$"I$ $cb$ 4b: Mc [ ̀,,cR`` 膶iJ -i$IQb% 9IɑtϤ4; 3'4sx^#H$I$0|s|_WU@ 1|mcI$I$1|mcI$I$1|mc1|mcdB&dHts$!A$A|t$"I I|t"@ 1sZ`hOoR^%/I$Ijs "(? !ThҜkpX."?~sMc\WUU$"IIcb#" $ kR#!I$ Mc [##@Mc [:-> `.,c-U#N.LcW^h#Nmk,cT"@5MciJxس'O-HJ_W%qYnI@b- ACSOz8"C?N'|X^WU$"I$ $|t$"I$I$|t$"I$I|t$" $I$|t$"I$I |t#"AI$|s!-:siJx HɝR%-2Iyќn 0Р3 [x^O;mmk [\WUUlclJI$lclJ#AHMc,[# chs [W_%TI [%%sMcW_$"$I$cb$"I$H$cb -"R4kJ#AIMc,[$l81Mc ["Ѣ$,c(BX Hܱi(J5 Im"I$A$nm(^9I$Ik_U<I$mt_<!i#[۲k~U8#$qMc~UU)"?IsMcxUUU I H$Mc [@kJ Mc(B``,_.HJ 7"/>9qmc\\XX$"I$I$cb$"A$H cb$"H$Icb$"H$Icb#"@@ cb$"I$H$cb$0#0Mc(B````*IIN(J<">>McXXXX$"I I$cb$"I @$cb$"I$Icb$" I cb#00McHJ````8yP'J )2"?0Mc\\\\$"I$ $cb$" $H$cb$"I Icb$"I I$cb$"H$I$cb$"H$Icb$"I$I cb$"I Icbpp lkB:`vhqsCbc!`B&tB&Mc,[5,[iJxt$,c(BxV xmێ(JU МhR *I$IS28Kyܵ U7׭ӌ~WU"p$I$ӌ4R4R@4R4R4R 4R4R  A 42I$I42ӌ{x`tZWzH n(B%%7t`HMczH$I$Mc,[ A$kJ kJIH$kJA$H$kJIH kJ $H kJ 9,[B``x)n(J :f-c`pP/5 cRzI$IZR**dq"i cR U@M-cZ UC$)- c UU!I' Mk"+U!I$~0ms*I1Njrl(؃{0 [Xx~^$ÒN,cZKI$Mc [UI Mc [ ZMc,[ kJ@Mc,[$I kJH$$kJP=`& [Bp؜4?qp k ) 3sQMcX\^V$" $I$cb$"I$H$cbMc,[#$,cR`C֒Ф,c-UUI$lk-A$I$r{h $ɝ\ɑQ3S'Mcx^"Mێmk,cXVUU $kJ@$kJ $kJI kJIkJ @$kJ$ kJI$@kJA$AkJX#&,cZp ֠0R-Ur,*'I$QoW^|@OqUUUTI6h&k I k k0pk`->|$/| c`XV ɝ۷m c5- :ə4hn/8/:?uP`x^W{B'nk%7əϤ,c^z@H1s(Bx`$IB_5 9Iə)k) 8!DhЪҔkx^(s,c\WUUAA$kJII$kJI kJI$I$kJ$#6HMc [`# ZW<ɑ{**=$&t'4|x\^_$"$ $|t$"A$I$|t$"AI$|t@/ sk``hTII$t cHۤmt cI$I$t c $sMc*6kiJx뼉iJ75%-y$sz6hBMcUWV\I$t'Lc [UUWVA$I$ [Z(I$A$ [Z $I$ [Z  ӤM$ [R$& [Bx^ɝ{(B_5 17aJPZ-+3! h'q [^++l$tZU:POsjJ~i۴MHJ I$IBq]I$IR Ic$iJU;$Q(BU+$k(JU# Im$McHJU# Im$,c(JU" $$Lc(BU#&Im$,c(BU,$,[HJU j;,[IJU| (J 8X P9qMcxxxZ$ $Mc [$iӖMc [$M?Mc [$æM$Mc,[$[hMc [$!AiMc [*#Mc(J````'n(J 7'qR^W"$MciJU#$$McRU#McR $McZ"05McIJ```z6I /HJ 1"r|Mc\\\T$"I$H$cb#"$HkR$" $$cb$"I I$cb$"I$H cb$" Icb$"I$I$cb$"I$I$cbh p.IJ8fiޘpLc\k$,[(B^`}ۏ(BW%B-6I @m 3!$p 0oӌx^WUM"> hM=O$Nx   􌑌+I$H$4RI$I 4R4R4R4RH4R4R@$I$󌴌@5ӌmkx&M$q,c`\5(rKk*3I$ vb I'nZ\x %.RWpw,cR H$kJ@$A kJ@$HkJIkJ $I Lc [`&r{(B^^:Idɑ{ **9>3' cxX\^I cZNkJJ@ NkJJNkJJI$I$NkjJ"퐴I$-kb UU$0I1nkZX?M B/75%~Z^`'RUWPr.JW 0 -,[RW,cR  I$Mc [AHkJI$I$kJ` (Mc [jjh$L{(B754B'tA탍C'h k˶sMcTVWW$" $I$cb$"I$$cb@Mc,[AA$kJ ikJ ,-,cJ` h ͛HJ-%%I$;rꪢ LcW^xۊnMc,[A kJI$I kJ$kJ H$kJA I$kJ$I$kJA$kJA$H$kJ$a$H:Lc [&,c(Bx^xW B׵- )I$=@{+I$N'lk )I$p_~&@p^xI$I$k 1Pk`P&M|Z`X5I+k-*;ɕ $o:X>}$qx^WUH6I4kрPkxNB'來s+ 2.R^2IIr c6 )P`kpX*'O$|Mc\WUU$I$kJA$kJH$ kJ  kJMc,[ꪪ%dI Mc [$R#&HMcZxl<: Z %W$0s&!M6m0|s$"I$ $|t$"I$A$|t!?eskVVZ$sk'O sk('I`skP&kRx^ pm.RW%6Id@Is* 'XMcxx|O'oLcp  dˑ%/,[UUWNMMc [UUU'+AMc [UUUɟ$,[Z`j$Z(B`\NĹ} (Jյ :$hs*8!'Mc^W#uH$Imc [\!IMc [U!McR~O'=R5W29 ɕnYU.qc>sz*X# %ےt*U( m|U(IhM1|U+I IQU'I$qUU(I$ puU*I$Oh𤐔 ?ZUI$Iop3 c'Ф^"NB ZW$iڶZU CQrZ%5* I$I Τ[#( mϤZ쪂(@&Rx^ I݊mϤRUIB@ZU Iڢks /I$Iќ =8I$Mk٥8IHNu7I>m/W7H#|W7"4'|_U26m:k'`$NМR^5I$IRsBB&sp2"?~<0Mc\^WU#"A I$kR$"A$$cb$"A$Icb$"$Icb$"@$I cb$"H$I$cb$"II$cb#"A$H$kR##>Mc(J`X HyHJ% 4I$yiT.Ir?h1Q~^!ɓ$|50|s^j nk^x sk-0|mc  1|mc1|mcI { l$$I)|kh"=s{R`X^mm[`ФZ% BI1taN.bA">'mcx^WW$"A$I$cb#"@ $cb$"H$I$cb$"  $cb$"H$I$cb$"I I cb$"I A$cb#@,McZ`/KNiJ775II3fn&;F40pX+!Por|\_UU!j@Фs-UU{%$PT|UW_|%"I$m"|t#" H$|t$"I $|t#@ 1|Zx`I.R^5 5Iĉ)k) "0̘>,[x^h~k [\WUU lclJ @$lclRim[4lclR!ItItMc,[$"II$cb$"I$I$cb$EvڵMc [# ch{ [5_% Ƭ{ S ' )kMcV^z @1McRh,>Ls(Bz^W5I-P (B5 I$Ir.r>I|PAϤV/9 T5X30|pxz &{z-BI$ə ˃U9$l IjsU0$m ksU1I$*sU2I$Mt kU-I$I@sbU&I$IH2ZU IhRUIinhJU u inHJ%$9I$NjJ~^$oФHJUU/NiJUUжm<.RUU`׶$IBUڶ$ IJUж$iJU_:IJUU)iIϤ(J $ms_ MnϤRWIu[ Ϥ(JUoIB@RU I.iJUWB&m(B_U0ɐL.IJ!+ 9$sJW$ P$LcRU~"m$McIJW% mMciJU$ Iv$McRU# $$McJU$  $$McRU$HۖMcR#McZUHHN(B 6`mZxIu tϤ(J57I$W5 6@׭%6>O$~WU"h$I$ӌӌꪪbӌpkh/ӄ+TO&Ҕ-. 0O - o - I$H$4R 4R4R@4R`5ӌ`ZC',cx^`$IOLc\W5 4I$ɗ tJs* 4P@Ҕ x0?O$ӌx^WUZ@ӌ.xI$j1OQ>7wI$RWp &ФZUUWXS,cR I$IkJA A kJ ,,cHJ` HnB5% 9C)a{`+'}{ c\VWWA$@ MkKJ I cZ $MkKJ@$ cZA@MkKJH$ $MkKJ 5ZB``p ɟNB ;єU{x#' n#U#I?Nnf$tZ~'nRUzrNRU^IvmcR\"McR " >1MciJjΝy HJ%%- ;h:k`pp%"H$i&mcMcW_$"A$I$cb$"I$I cb kJ$ kJ  $kJ 1P9,[(J``pXɐbHJ I$I_V1I$|&q{被əLcW\`$I s,[I$@kJ@ HkJH$@$kJAIkJA$ kJ$ $kJða5Mc [zѢC',[BxKo(Jյ-+3ə @{*1'q-cx^W# Z%UUb 'əoVXr @5qlkxP&MOZx^5ɟZ- 7n76X>}$qx^WUH$I$kI @$k k `qs^x1s )%1I|I$1x/ %/McX_W\$v'Mc,[I$kJ A kJ@ kJI$kJA$kJ!)jnMc,[$"H A$cb" McZx``` X˴R%#p9|UW|`%"I6(0|tVZh%!Nv0|s$"I$I$|t$"I I$|t$$A1|kj!$sRX HܹNZյ ?I$hv-'=# $4|x^W(ʑ1|khꪪ"}>b.Mc7z'XI$sZr (iI{McW|& $i::MciJx &MČk(Jz^%:I{OhR-;9As x7"PM䒌Mc^WU$"$$cb$"I$I$cb$"I$cb$" Icb$  hMcRx`'t>nR %)f@! tz%Ck 1|sW In|k!IҶФ |s I$Eۢ|s/U!!شm1|s '`SQsWW(@nIqsUU,nɝsU* #Iv'tU/m0|U-O` I0|U$/֐/ [*I$I$Խ I$I ԽqT>I$I `.@Iܔiv[]6IN$ipVW7@F0| U8"4$|_U4"VO<Ӕ|UU+"?r|UUU'"h$I$0|thVUU$" $I |t#"I$A|t! 0P&sR`pXI ) Z% II0Jjrw3ƍwܐLcx^Zx# wMc [-$! 4m$Mc c $"I$H$cb#"H I$kR$"A$A$cb$" $I$cb$" $Icb$"IH$cb" @ 0MciJ`hIoHJW5<It ><ŊC'x\V(kI$|x說 Xm۶qs_N9tU_O>Ф`#pSnk^ osk-tsI$I$1|mc  I6{ l" 1b2'sR`X^I)QZ- <IɑX1^B#C?mcxX^$"L$I$mcMc\VUu$"II$cb$"I Icb$"I$ $cb$" $I$cb#"I$@$cb$"A I$cb$h۶E!Mc [" 5b'Mc(JxXɟnHJ% =B&hUo%p4"3?~'Ӕ|X^WU$"I$I$|t$!m&IR|sꪪ# ZH|s'^zO'Ns#n|UW\j& ڝu|t%$a*1t,c`3'MєZ^W5.߿ c :(ҔMcxX ?k [\WUU  lclJlclJ$ $lclR $I$lclR!  Mc [%%%%$"I$$cb$" @ cb$"A$I$cb$EҶЮMc,[!  sR?~z$􎿝$.RzsP$In(B_UI9 I$Is=L>I$h׵/ =# $׭x^W&X#'jx |7\x79PnU3#X."O?t3UU/"Pyu3UU."жI䕥3UU0!Բ;3UU0VO' UU(VtU1!MU3#m$U3[3:5,c`x iV{ !EJn2OֶuqW 0yDUpU0IDuPU0 mv/U1 mv.U4 I"mv-3 Imvn2Ҭ5Tlkx_Фs >#:9TQpX/! mߒ|U.D|U.Ͳs+i@J{~+-I2 _*-IR-oj{~.$d bW-$ RU**I$ioHJU'I1hJU* 'm[RUUI1(J"I$IrϤ_<IP$h׭'8$^W'm;5XWUU 4RI$I$4R4RA4R mӵm􌲌z"hP~ |2>O;U}:Ф="0&SnU_Z&IiӌU!IB&L4R @&6ӌsx5t$,cx^ KܹmLkU"4Ix0@-= 4_?x_)o'OUӌx_WU A$42@ 42#hӌq^zN&Zt/N`; 1Mn"*pw1RWz .ФZUUUxw,cR 9X&,[B`pXX۷kHJ ; X -c`pxHҦM cZ MkKJ$ MkKJ@$I cZIMkKJ@ $ cZ  $ cZ&j$msB^^6I r-/* 4>'X\VV!퐤I$ӌ+UU#fz<ӌ U" I\"ɿ>mUU"t vkfsz"pInZUB6NB_)ə_oR- 9PբM粌Mcxx^W$ ۦMc,c+$"IIcb$"I$IcbkJ kJ@ Mc [X&j2',c(BX؜ R{ +*>I9b1Qj1c=PZ\^_t>ФZ %TI$Lc^p  McUUUTI$I$Mc,[ kJ@$AkJ@ kJ$(1,c [p' [(B`XN HJ5 3 h{+ p4P$Mcx^WUH$I$Mc,[$iMc [zꪪ# Z5UU ۵b Rm۶rKk^"ɟks% ;yqB5x6'O$tqx^WUH$@ kAAkAkIk$A$qP|ꪪ hqk^xk5s)I$懶kZ`!hAMcUW_|I$I$kJ@HkJkJ $A$kJ@ @ kJ!j1foMc,[$$A5McRh 6|$k(B~W5 ɝk(B5 ?/1NU py|UT^p!m|s 0`m$|k!AH:smc` Ъ9t$sRx^ɟR- (9U. x<X~$Utx^WU!дM$|sU 6 -$|k smc`}>ZnMc %Wɝ$ [^z$moHJWտ2PpZ- 8$ڒmcx_-$|Mc\WUU m E$Mc [$mڐXsR^z,dI$oZ ,hq|\xp#"A$ |t$"A$I$|t$"I$H$|t$"I$ $|t$"H$A$|t$"A I |t#"$H$Q|s$"H$I$|t$"HH$|t$ )|mc`HɝϤR5%%I$I$!A$I$ԽPCe>ɐXI7"X->|^^^&"0$Ib'0|tUUZ$" $A |t$"II$|t$"II$|t$"H$H|t$"I$I |t#"II$Q|s$$i ,|nk`h$MR^%:I$I}|'U|x\^W%"HI|t$"H$I$|t$"I $|t$"I$I$0|s#[@|s^z!}>> iNsW"Jokx"P&M$0Rx^W:J$ 1Z -ɑ|Iqo{jz@4X-dPMcX^^^m6h,[ [$$lclJ AlclJh6(ڶlclR IlcR Po޶Mc [%UU I$Mc,[!4a.Mc,[ 6I$Mc,[ I$Mc,[" C:Mc(B`zɚ ɐ(B I$ Τ)I$Ir*|8<h׭5 >#X>~$3x^WU$-3$"$It"@O|`~R?Ր| \(XTM %='"i&h4T3WW\p$" $ $t!E4m$T|$I$3󌪪 kmm3 imm۶! I4T|!@$I&T|P99McxXXXМ̃!!#B##>#>xxxx$"II5q$"I$I$5q$"I$I 5q$"I$H$5q$"I$I$5q$" I$5q$"II$5q!P=`&ӌLkpXXX3IdI샽=-==$>&4|xxX\$"A I$|t$!H&I$0|s$ P|sJ* $"H$ $|t&"'N$0|t"YVU("ې$I$0||UUU("I$Q|UU*"`'q|UU."P<|UU/0nm:k)P&|䐌Z r-m*I$IsHc6?ɐA' :"P~$׭^WU!M& $4R$直AӌUU$$IӌUU$ AӌUU I$m[4R I$I4R$"I$I 5q$]Rڶꪪ!  ӌ|xp`ɟϤmk-?;H$P 锘 u#ZO'ӌLkx^X$IpLcxW-1I$Isս.5u mN5 3*'zWU h$mӌ A42$A42@H$42d42 {x`MR'1{ I$IϤ&I$OS,nwI$nRWphMlߏ(Bו 9IPO⟾P9>' cX\^W $MkKJI I cZI cZI MkKJ $A cZI cZꪪ  ( cJJ` HIJ5%:9b׭&p?5ӌ\VWUHI$42I $42IH 42 1$I$ӌ #`sɝ?ӌU%P#4np 'O0An4-UW'I$4mx~a >{r`O$ZW~"r-RU_" 唻McR W"SMcZ$!IMMc [! kR!( -McZ`HL-(B75%7I$IRr=8X-mc`x\hӦm۶Mc [訪# hZUW_0b |I$1lkZp  ,cUUW\$Mc,[A kJ A(1,cZp 5j,c(Bx^(INJ- 29qhs+x3O?N$qMcx^WU HkJ@$ $kJI kJP$Mc [zꪪ3 Z%UU Ώ撽jk*9I kϜ77???upx^WW$ k I$kIIkAI$kAI$kI$$kҢE"qP|ꪪX P&|Z(pXaR c "Wə0k^x`@sMcUWWTAIkJ$HkJ IkJ $I$kJ A*6,[(JxC'IO(B_W-/I$In'B- 4us x0P5?0,[x~W}.'nZ % ysW^x @J:sZx->M$sR`X53I$IZ*9 AU.%x4O?~$sx^WU@$H ss 0|ncA $0|ncA @0|nc ̀hs,cx}Nկ,c 57IIXoܠu7ŠO?Mcx^^#h$I$nk-c\WUUkJkJ kJkJkJkJ )$I$kJ!#(IMcRhꪪ}B?nR %' DnQ^\zH$z;1|s|\x mIts I$ts ðmm$|k ۶am$|k!I$|k mۖt|k$"I$I|t$" A |t" 4tZ``pɐYZ AI$əs5I'Qs^II$Q{4+Ӕ|xp``$" $I$|t$"H$I |t$"A$|t$"A$H$|t$" $H|t$"I$A$|t$"I$ |t# 0#&sR`pXIlZ ?BDh{ b6"~$QMc\^WU%" ҦI4cb&#AikMc/}U$~.-mc˭U唗N> [Wp $I.{ [Wp$0IwMc [-$"I$ cb$"I$I$cb!P#&,c(B`pXI!aHJ5 ?əB7>#>|'x\^W$" $H ь|$" $Hь|$"I I$ь|$" H$ь|$"I$H$ь|$"I$I$ь|#/\$` @ Զ}B?ϤlkW~ `ٶФZUը;ɗ1pAҜ탹*0ئmoMc VW$I$rmk 1{h N䯜,cUWx$0ݔrmk [$!@&E&cb$"I$I$cb$"AIcb$"I$@$cb% $` 1McR`h$Oo(B_5%?Iɕtˋ;/@(Xu0|px^&"H$I'0|tXVUY$"I$|t$" $I$|t#" $ $Q|s$"$I|t$"I$@$|t#S"*|sZzjh$МZ?ImѶrn"I$A$ ì@$I$r:? /Wɝ$qLc^z @ ,[UUUTMi,[ [lclJII$lclR $IlclR! ?Mc [%%%$ A&Mc [Z  C$Mc,[ mmŐMc,[@(1Mc(Jx`$IoB_5 !@1b6I$IսZV59`A׭'9"O?~$3x^WU$!M$I$3說$H4MT$"I$A t$"@$A 3ꪪ#  |XpNl":{ &0 To -&"I$N 'ԝ񃪪$" $I$t$"IIt$"I$I$t$"A$I t$"I I$t#"I$$t#&`&LcXXXX"IdI )=?/<#؃=>׭xxxx$" $I$5q$"I$$5q$" $I$5q$"$I$5q$" $A$5q#"AH 5q$! m$5q`&h"'lk\\\8I4M=5'7">j"?|X\\\$"I$|t$"H$H |t!05a|k$JIդsk %$"I I |t$"I$|t$" $A$|t$"H$H|t$hWۺ6|sj! 5`$sRpXɟnR5 @IU%R`p4I\ɛ$׭5U8 9qU%mR􌳄 $"I$I 5q$"II$5q$"I$A$5q$"I$I 5q$"I$A 5q$"I$I$5q$"II 5q$+5ӌ!P>ӌmk`X;I ֵ 6qOҔbpxI$k>ФO x^mqsW 5Iɕm?.;$+Ҍ x-POvx^UUӌ4RI$I$4R 4R#I$I5Q!I$I#m+A􌲌z3Z ӌs^x'r{*2 8iޘn#HIX("I$ LU) I&sp ĒMZUUX  .,cRT@NZR H @$ cZ  cZ$ cZꪪI H$MkKJ5&ZA``pXM J 1I$Q~^0sӌq-^!$Ye 􌲌 !I$6mӄ!Iömӌ!CmӌIӌ IҶ۶ ӌ%PI$Iӌ ("T{$/(9,c`x!lk)8I$y hn_U*N c^耀Ж-ZU_"Pr/RWx 唻McR"Ҽ1McHJ`z HJ%- >I!t` b/pqMc\^WU"/IAMc,["i$IMc,[" i [UUU{=0b )II$Lkx"$ ФMcUUVX"H5McRxЌ9s$kHJz^W1IФHJ*: Ak x/0Mcx^WU#mnMc,["/I AMc,[("I"IAMc,[!IIP4kJ!IB2c3kJA,cZp -R 5_&|O$Мks# &iIq|~N;kH$ k HkI $kH I k &0q|h$P|ZXW HykZW5 I$I1mIR %vmZ^82 c?diШ4| x0'O$ӌsx^WU$IssA 0|ncH$I$0|ncA$0|nc@ 0|nc@0|nc s,cx(~n?o,c%& iI{Mc\^~8'Mc,[HI$kJA A kJ$AkJ $kJ$HkJI kJ$ kJ@kJ ,[iJx` NP'nR %%4HptzzI$M&|sUUW\ I 0|ncA$0|ncI$ss(H0|nc II0|mc!II|s" I$A$Q|mk!%`&sRpXX!`$@1{#+C9bvcq/#:[Zxxzj-v隮ϤZ 6i!CҜPb`ʊ'"m$k$0||UUTT$"  H$|t$"I$I|t$"I$I|t$"I H$|t$"I $|t$I -|mc`pNZW%>Id ng?#B9C'Ӕmcpx\^$" $Icb$"H$I$cb$"A$I$cb$"I$I$cb#@@sMc=UU$OL? @Mc ps=' [U^ " 0 { [UX#`J6McHJzpIHJו5 >II ?FHX-ֵbx\'"HҤI$$"A$I$ь|$"Iь|$" I$ь|$"H I ь|$"I$A$ь|$"IH ь|$"H I${#()0|@-+c'7=II2nBA:X-kpx^%"M$M$kMcWWU%!C1m&cb#{nMc5UU!I$|0sI$ФLc^p"0w,cUUWx$mNMc [ $"@$I$cb$I&-Mc [#P#&s$s(Bz^}۶mФHJ ?1AU.p/"?$|\WUU$"A$$|t$"I$A |t$"II$|t$"IA$|t$"I |t$"II$|t!9sZ`X HܹϤZ5 I$I oB sx,I2:,Qmc*UI$N'Kc)xI$LcZx H-,cUUU\mH 4Lc [ lclJ@  lclJ lclJLBA3Lc [")l$Mc [*U@*6,[(B``$OФ(B_W%R 7I յϤ; !4h8׭Д ._$uU$-횵3$"H$ $t$"I$A$t$"II$t$"I$Ht$]hntq!# |^x& dO'*/)&IAT $"I $t$"A$I$t#"H@t$"I A t$"II$t#"A$I$tq`&hLkX\\\1IDIM=79">>׭XXX\$"I$I 5q#"I$ $5q$"I$ $5q$" $I$5q$" $I$5q$"H I$5q$Ӻ<4ӌjzzp$K/Lk69ɐ 4M1"#;'|\TVV$"$I$|t$"II$|t$"I A$|t Z|kꪪ [׶m|k$!i"i0|s$"I$I |t$"H $0|s&͚&sRpXHVNZ% AC&s* `7h$M$O(B7%:ɓ`֭o끁#$j-^\PJyӌ. $0@rP $!M$ 5q$"H$I$5q$"H$A$5q$"I$I5q$"I$H5q$L(2􌳄`$ZC'ӌLcx^p}ФlkWե A&Z׵x^/!_?Ux_WU# h0^xI$50O.9t('4$h"?t'ux|^$"I$H$5q$!H&I5q$]v-u5q$!I ڶ5q$!I$ 5q$"I$I 5q$"I$@$5q$"I$I$5q"Q`ձ{5^X( ;(b;5z{#-I$UU%=Adӌ"M I-^ $`@bzNɻ$-RU^M-RUX wZR  cZꪯi-bZ@`L䰜JW5I *I Iӽ0? ?cZ~ #pNRUVX$0H􌒄 -$"I A$$"IH 5q$"H$I$5q$"I$A$5q#"AH5q$mب1􌳄@#`&L$ӔLcX\֗>ɑ 9B 5%9 X}$~WW%$ӌ &t oV"I$@N(U%I'nZ^C&cۏiJUW,Мb ? ժ'mcx^W$!Mcb$"I$I cb$"I$Acb$&MMc,["hZW_I${= [ %II$1lkxX&IJ_W<߿yZ8 P@s x^3"$0|Mcx^WU$"I$ $cb$"A$H cb$"I$I cb$"I $cb$mֶcb$mMc,[!IҺۄiMc,[!e&IMcRz}>bnR 5W9I${" &Ip|!IҶ&LpU!I$$as!vl6as ۶Q0ps`5s$PZx^IZ ;I$I uw%=wB&5 x/bѫo?3~Ur>Ok%9|kW^p$#Ј5mcRx&$ [HJ`^U KN(Bյ 8Ix@A . 7'Mcx_&_s,c\WUU$ kJHIkJmELc [ꪪ# {RW_ ?1J -*I$rorȀ+иosx~M6E |sUW_~H H0|nc@ $0|nc$$0|ncA $0|nc@@ 0|ncH0|ncX35skb՘&sR.X^!)nkZp#sMcWWZxIkJ@kJI $kJH $kJIH$kJII$kJ@ I kJI kJ؂C Mc [jꪪ/X5.IJ7_$I䰜Kk%ROQs^Xx@Ass @$0|nc$ 0|nc$I$0|nc I$I$0|mc II$0|mc$-|sjjpLR53I$I2~oS/B"5>U|`pxX$Ȓ(a|mc`Z%54bl1"}'|VV\\$"I$ $|t$" $I |t$"I$I|t$"H |t$"A$H$|t$5ڣ&tZ`pX\۷knR B)tis`x-"'~sMc\VWU$"I$ $cb$"IIcb$" $I$cb$"H$A$cb$"I$A$cb$"IIcb# P{Mc UU"'5 [/ Pm0iRUqY$IФiR ?ɐB6hֵ'4"'M$T\^WW$B#) P|$vlvMq$"H$I$ь|$" $ ь|$" H${$"A$I$ь|$" $Iь|$H$pP|5P|Z`xNɖZ5% ;kVќkb,$O$| [^WU$ЖiYMc [  I$kJ#"I@ cb$" kMcUUU"}nMc-UɛN>sb-N䎜,cUVx#4sMc [ -!P#&Mc(J`x^I HJ5% II$rϤio-mws^X`#O|k+$" $|t$"I$A$|t$"I  |t$"H$A |t$"H$I$|t# ` 1t c``$OR^5%i$IR) Bɕ!Th|`?$'M$ҔMcx^WW$۲mMc [@,[5UUI$t9+c)?1lkZb @ Ф,cUUW\IӤH[Lc [U_A lclJΔAޔAlcJIMc,[` 1,[IJ`#'NnB_W%0HJ /II{& 1֭x^"`IS҄0MS҄> iIt3򌫫$"H$It$" $H$t$"I$I$t$" I$t$"II$t$X` b є|\p'3N %)"O:CT3V^z#"I$A t$"I I$t$"I$I t$"I$I$t#"I$I$tqh&p"'+cܜ@IDI׵M?79#h>j"'\\\\$"I$I$5q$"I H$5q$"I I$5q$"H$A5q$"A$I 5q$" $I5q" (q@ ȯNLc777%:)At`4.*"?'Q|TTWW$"I$I$|t$"H$I$|t#"HI$Q|s$"I$I |t [%زm|s!I|s$"A I |t"` 1tZxxɟNZW% CI)dh-5%c@ЪcO6iJxz~I o(J% <H*׭bp$m$Iӌ^"}5@N/xN&N,"0s. /$0aj$"A$I 5q$"$I$5q$ `5q` j$Lk`^WHynlk5 ?I9A׵Mݿ- )";N8XVUU$"H@$5q$"I$ $4r" ѐ@0^xO'Ϥ/#p9n %% kuŚnӌ$"I$I$!$mM$ӌ A$ $4R h$ӌ h$m۶ӌ `ɖ`ӄ$"I$$5q$"I$I 5q#  ӌsxvR's %#nVVXj#hӌ@42I$I$ӌ!vI$ӌU P@ I-` I&wx%N5pRWxPrw.RUV&N6ZJj~I iA% ԽQ5O$IԽ0<I$m׭{U+I$um__/X .W.">`&U|xx$6!ڴ pӌ*)$"I$I 5q$"I$I$5q"5Mk`pOɟnLc )>Vh׭q&"tI$$" $H$5q!6A;$4R"TNdӌ*W$ R# vZ*$I>mnU'I$O5JUsIIXhn? ?!^W0"?OxWUU$"AI ь|" plkx` >Фlk %S>iJ_^!InHJ ;h/ `9$ :}$mcx^U#mc [I$I kJkJ kJHkJ Mc [zꪪ>XnR%W_mm0+k !9|I$r.^z"hAps_MҦi6|sUWU^ $@ 0|ncI$ss H 0|nc@0|nc 1s-cxt$sRx^N$} R% %I$x"t9|kV^x#vB'/k,cUW^x $ kJ kJ $I kJH@ kJA HkJHI kJ$-Mc [zh&,[B^X'IN(B_W-!mZ &B9Ϥ1|_~$_?s1|sWW\xA@0|nc@$@0|ncH@$0|nc II0|mc!II|s#,|Z`` ϤZ%% BICuL??9"`"'{4|\^VW$!IIӦ0|s#s&9|ZXx"II$Ф 5#j">c4Ӕ|Xxpp$" $ $|t$"A$ $|t$"I$H$|t$"II$|t$$h*-|Mc`xONR5@ɗBN%@#>|$ӔMcx\^W$"A$Icb$"I$I$cb$"I I$cb$"I Icb$"A$ $cb$" $I$cb$"I I$cb$Ӥ((Mc [!&sk(J^P#?I Ϥ7&@#P>|$xX^W$"II$ь| ò!-pjjjj!Ii4q$"I$Hь|$"I$$ь|$"@$I$ь|$"HAь|$" $I$ь|؊͘5ps``"'L.ZX֗54I| {* 6RrB'Mcpx\VIIMc,[$!I$ &cb#"IH kR$"I$I$cb$"I H$cb$"H$I$cb$Zh$HMc5UUUOB?P`nLc%UI$+c\`xmϤiRU.=I$Itm>7I$Rp_^?.ਪwɝ$sW|! 0wOsWX$۰W|s* *$"H $|t$" $A|t$6I,|s`@&rsRpX0 c-AI\ C2➶o>$>k'Ӕmcx^W&"p$$mcMcXWuW$"I H$cb!M$ Mc,[! 3@McZ^O' c)kkp8m n,cUUVXc+HMc [W_ ItaMc,[ @1-cJ`&M(B_W5i1R-5I Cֵl. -C'֭x^\WUU$ф LQ҄ ,!۰ t3Ҍ$! Rm3#"I$A$t#" $t$"$It$"I$I t$" $I$t$Z#&HPp}>b| &XT- -5)"m'T3UW^x$"H$ $t$"IIt$"IA$t$"H$I @xHO c=ɑ׵4">h'\\\\$"I$A$5q$"H$I$5q$"II5q$"I$I$5q$"I$H$5q$"I$A$5q# ,|@``MI-Lk%%%9V840bbp&"H$IB|t$"I$$|t$"I$ |t$" $I|t$"I$A$|t$!M$E&0|s$6i>|sW%$IH6|,cz#'MOR^V5:I c*~?$ӔiJWU"P&I$s(Bz_U+)RZ+";$9؃=׭ppxx$" $I5q$hӵC۶ӌ~ꪪ$ c#AOz$-#`J9N -%$IJ󌲄 $I(1|` ,:L$LkXV nnLc->IX)@@׵m5 =!ի?x^W$"A$I5q$"H$$5q$"H I 5q$mvX[5q!р@0^xO'0 $ In!ӌI$I$4R4RI$I$4R$42"I$I$5Q ֶI$ӄ`kӌ!+n6:ӌQ|xbXC'LkxWМs" $$@ I$L$ӌ A 42 @$42H$I$42-жm6ӌ _5j'lkx^4I$ə.-)$tshR^ꨠ1``b ӽ0?1 'Ϥblr;Ш׭Q|_)@U*I$UӌUU''I$XVUU ӌꪪ ӌꪪ V`Ԍ$ m6"أ&s$LkPXT@IC׵{=?;#'{$׭x\^W$"II$5q$"I H$5q k6[Ԍꪪ@bض'󌳄I󌳄#r)ӌ-}$1b2',c`X^ Xn붑Lk)+@R ϤZVPNq䏜ZU\$4 McZ $&MnMc [$3iMc,[" h. [UW_I$L&1 c)%ɑI$q z"$@'mcUW^x&"I$qb'mcMc\x$"I I cb$"A$H$cb$"I$I cb$"I A$cb$"I $cb$"I$I cb$"I$ $cb$!iI$cb#`Ъ5McHJxh$OB׵-iYaQ $)I$1VTP%h5+cp$IZX5 =Is. >P@%^;"X=$t^WU%"H$M$"I$Iь|$"I$I$ь|$Ҳ4P|@ t>Ҕlk^z }1 @`A&kx8"X=?~$Mc^WU$"H$HcbHMc,[HAkJIH$kJI kJ IkJ  kJ [R`}N?1R-5UrϤx)ɗ1/W\h!0|s^~I$I$ssH0|nc@[ 4ss@@*:sRzXC'I탪RzW-3IќZ* 29U|/x.P?6k`x~L6nLc-#D@ mc_~|!I$M4mk,cUUVT AkJH$$kJ@$$kJh@6Lc [@(6,[Bx8:N${(B_U5 O}NB- 4Iy{ 0IRmМsz_  X#oZ ?(&mIQsx`M4M6|sUWW^I0|ncI$0|ncII0|mc I$I0|mc"5%tR`pxX!AZ @1aVTPb("3uS'Q|TWUU$"I I$|t" tZp` R 4vhBҔ0|`%"M$M$0|tVVT$"I$ $|t$" $  |t$!h$I$0|s!5X&sR`pX\oR @ f sbpX'"H$M&kMc\VWU$"H I$cb$"I$ $cb$"H$A$cb#"A HkR$"H$I$cb$"  $cb$"I$ $cb#9Mc(B`XKt(J5% I$A$菉H> !taМai&P5ڬmP|xx#$m+P|U"E$m P|U ԎmpUU!TI۶p$IܱqUU lmӶq!iNpU!ϳP|uz 1#&0|Z`pXɝ۱o c% 4)tak`p"Mǵm;s,[\VWU @4mcR$BBMc [ $"$ cb$"I$H$cb$" $I$cb$" H$cb$"II$cb# *1Mc [`/{iJ/ m۶mRs@9B6TO `2"䳌|VWU$ ` p|5UUU"B? @Ф| UO>{h/"`NyФsWX$0w|k +#!I$|s"P#&sRpXIlZ5% BII2lB6+k`x^("h$vSkMcTWUU$"H$I$cb$" $A$cb$"$I$cb$"IH$cb#т(Mc [|2 h,c UUINB'lkp-0OMMcUUVX(6,[HJxP&Mİ(B_W5qJ 1'J- 0=+!sɝsМ Xj`m3Ҍ|^mڴHڦф Aф껪 $30tXM҄)&&*I$I$S|$" $I$t$" I$t$" $ $t$"I I$t$"I I$t$"I$I 3ꪪ# hsxMD'հ;'@T- '"I$H6S3UUW\$"H$I$t$"II$`$۾1jHK܏ [67<I׭?7-=5#x'z'\\\\#" $I 5q$"I I$5q$" HUQ$"I$H5q$"H$ 5q$ @ۦ$ӌ~" 5Mk`x#IIoLk--- 7 ->4k^"?tZW" Il$sRU" m$|RU $sZU@I$sRU IR_U'oZU В$d R_U *ɟ Z%6$ 6I@P C /I:&oR*6Iɑ?7=9"&/xX\\$"I$I$5q$"II 5q$"A$I$5q#c`󌒄x!M> -VO$-Wb#>t瑌Lk`X^"ɟrls*= h׭M7=$>}$x^W'"H$i$TUUU$"H$ 5q$@$"I$ $5q$"I$I$5q# mm 5q#IP^xC? ѯP"W ^x Mӌ"E6I$4R @I$4R mR$I&ӌ5ӌQ|x@H?ӌMc_N$,cWX$ILc~U"ILk r(ɕTx&mf?4?ӌU aӌUӌU -ӌs` H܉nlk5% 8!ta% -3'|^WW 3=I$X@r _>u ?1Xr'|URMvӌ|+Vwӌ0|󌴌$4R nnӌ" 0,c`HI_o,c7% >t`N("p$NTVUU$"I$ $5q$"A$I5q!I iR44R ӌhIl$ӌ_$i*1ӌLc`HɝФLc-?I|ɐB]% 6-mmќ(O4Yh%I$hmyI&Z\PNy䏜ZUUZ# 0McZ -$iH2McRj`JNB?5 ɑy'{x$@'mcUW\p&"L1C8kMcWW~z#" AkR$"I$I$cb#" I$cb$"HIcb$"I cb$6 )Mc [!X?',c(Jx^`$HJW% 7IPk 73ШpMcx~:1Z +-Ϥ,[x=I$hũ;#$u~W+"<򔑄|_UU$"I$H ь|$"I$$ь|$"I$I$ь|$"A$A$ь|$"H$I$ь|#@s`~\lk %72ViOOcxx)"On??kMcU_VX$"I I$cbMc,[AkJA I$kJ$H$kJH$kJ HkJI$HkJ ̀@,[RxO'QR -5Τ@ !I00W^^`"MR;50|sW^xp 1sMc`$sR^|{ RW 2w0@Ҝ)k*2'|xW'S'I$rsx_UU$H$ss#s [x`#IO'-,c $l@/McW_~|I$H$kJ kJ 5,[Rxt$ [B^ xz-(JU 4Iypb 3yW$s^2($qMczWU$?2&|$,[x\^W Id0iMc,[ Mc,[ n)nMc,[$"@ H$cb$"I$Acb$"I $cb$"H A$cb$"I$H$cb!9Mc(B`xIlɚ HJ5 =I\Iu޶6A#>'u0|x\^W$"A$ |t$"I$ $|t%"HI|t*% h|5UU%I'Xh| UO'sVb" ?McWVp$I1ZW'1{jBpB&sp4"?N$0Mc\^WU$"I I$cb$" $ cb$"H$A$cb$"I$  cb$"I$ $cb$!I A$Mc [k Mc,[~! /J/~ϤZ X2m1RU I QHR- Խ/II$ԽqPPH$Խ0wW0єWW~eKjєUUW\I$@ۢ{ih$фwd҄,,?@S|$"I I$t$"I$It$"H$I$t$"IH t$"I$@ t#"AIt$"I$Itq$ # |x( |~^?.%?u(hk:3mkz" Im$4LcU" Im$LcU#$ӌLc_UIt,c5- ; ɔt'/.0 ؆b'vsV!'MkU# md$ӌLcU! m$LcU!4O$LkUI䲌LkUTIpLc_UX$oۯLc_U/ɑlk!'R^IvRU+IvR+kժ"_s(CI$ɛM](>II/j\6IR Ios_5 mPkU4"!H#0mcU7"0$QMcU3"0|McUU.!j?sMc_UUxKn(J; ɐ ׵n'%//4"p"?s>'\\^^$"I$I$5q$"I$H$5q$"I I$5q$"@$ $5q$#&A􌒄xs hP\p$.* <pvn׭%<#O?~$׭x^WU$"H$H$$"I$ 5q$"I$A$5q!`&@􌲄XP {i7􌲄 ֤mmӌ  $A 4R$Ժ1q`-:k$Lcx^Wc9ks+w'М|^pжpLcW`ɟ$lkUv$LcWU$Lc~U ILkU%I$;os "I@s_"IImokW:n-c_UI$`ФZ- ZऎR|zONڃPBQ| %r|w;$Ar|u,S>P$q|+c`ppXKk))45[֭bpp!#$ ҄w vmUUDn3I҄ R#;ќ/I&$ /Ώ51М  I$I$1-|*?{^PsUXmӄk @?ӌ1|P%k䳌,cpX\=IIֵj{=/>#>s?xx^^$"I$A$5q$"I $5q$"@ $5q!c30c34R$˾ӌj$ 1ӌr|@%jq,cpX\9R k**? F' pmhVUU$" $("N8+' Z`$Ix*#I& hM]I cZ*5oRUWx޶ 0iR% I$I$Խ/2>H$A$Խ/`ɑI${x∠%@'mcUW^x%"I4M&kMcUW^z$" I$cb$"I$I$cb$"I$$cb#@(5McRh k$McHJx^Nܿ}HJ% =ɛS$h{+8ؒmcxWU' ڵkMcxWUU$#:ZR_ R 2iT3єbv*"'t6ҔWW^x$"A ь|$"A$I$ь|$"A$I$ь|$"II ь|$"II$ь|$"I$ь|$"@I$ь|# pkXp%I~n'Okƒ%* II0mcW_%"II$mcMcuWx I$H$kJIkJI$@ kJ@AkJ$I$kJ A kJ@I kJ+aۆ5Mc [zX 5& [(BpX^[ ٔmQ*c I$m$mx$tAk|x&M{Rx^-2I{ќZ 3yeh/5 x3>}$sz_U!PK%٘|s!&m|k m۶ia|k#sk`o [%^%! ns^Xp%c) 1k [xZO',[(Bx^$I(B_U 4IpR 4qk x3qMc_U#m[kMcXUUU IҶMc,[ IҶۺ Mc,[ R#@,[iJ`n(B %7(vi)1|_$N$ 1|sUU^!I$m ts!x$;a|k ( (sLc@HɝدR5%Bɑ Cv57"#{|\^VW$"I H$|t$"I$I$|t$" I|t"j>5sZx`/IdI$Мks*4"b.>9Ӕ|\Xxp$"II |t$"II$0|s%9b2'sR`pX\ɚu0IϤZ 9d@ќs`zX'!`=׬ݸkMc\VWU#"I$A$kR$"A$I cb$"A$I$cb$"I Hcb$"$Icb$"I$$cb$!iI$Mc ["5أ&Mc(J`pX(B DIɕt&@! b40|^+{͒$Io1|WU&r |p rNsb  @I.ps _SqsPI$I$Ҍs@Ҍs P5b2'pZ`xX,II*k%*7 Hղmc`xXIncMc [ I$Mc,[ m3ݐMc,[ꪪ$iע-жMc [$"$Hcb$"A$I$cb$"I$A cb$"A H$cb$ (,McZ``2'Lp(B_ח5I<{<!t`T0`p*"R|TWUU$"I$I|t$"I$ $|t$"I$H$|t$"I A$|t%"i I4|t$k/lk  rn*@ɗ9A2pj@$&}$mcx\^W$"H$I$cb#"A$cb#"A H$kR!M&I4kJ$"I$I cb$"I$A$cb$"IIcb$"I Icb# -McR`xəϤ(J %5% ӽ0I I$ԽPI$I$ԽqHEI$I$ԽqPQI$I$Խqm6E۶~tI$q_zr $J򌏌 ev$@҄߿!I*H 3Ҍժ I$AT|$"I$It$"  It$"H$I$t$" I$t$"$I$t$"$It$"A$I$tq$,1z` :`瑌lk8\V %i V I1 IHWIҶm탵 $RϤ1UI$I1nWrRO LkV I/oLkՀInmk%;I$]@ 4I$n m/}U2I$n0 UU0I@| U(I?hϤs*UI$50 mm(ϝI$I4BII`~==`&HJ8AIXɕDo[U8#`='s2'Mc^^^(";ĎkMcUUU$"IA$cb$"$ cb$"$H$cb$"AA$cb$-X6Mc,[HJN:77779)B-  -"x.s'U\\^V$"I H$5q$"I$I5q$"H$A$5q$"I$I$5q$"I I$5q$b$I􌒄h$3 ӌP^x#|O'ќ. # N &"I$fb$"I $5q$5@+H!ݶmӌ诪$h$ ӌ$"A$I5q#(1|`,:|$LcXV!I$IoKc+6Kh{x, @m/ncU'I okU(I'nsU)I$ФZ *_IsY;@Ҝsbx- &$0|-cWU&`My's c_UU!NBiNk c|UUU#i+I$I cZ( 6l-cZժ N> Hn c%UqI'c $9I Oӄ^^xIRׂ􌒄w`ZHpLk\Ԗ7IX Ko%6 >|$֭x\^V$"@$I$t!? 򌠠@ S|I$I$S|"mI$3 !3iDn3Z*N535I$}1/_HQMl(# M$I$QsUz ԲykUzHq뒯Lk5?)taF׭o * `=۵Uӌ$"I$A$5q$"A$ $5q$"H$A$5q!-[ӌ Iӌ꿪#5,c`pHtIϤ,c-: CDh׭M% .h:o\^WU$mmӌ$"I$H 5q#"I $5q$"@I$5q$ db$&Cӌz  0Ҍs`܆m1s" 4I$s̴:}amI$ A$H$Խ/>Խ/sɑI${z⠀%  ϤmkUUVX&"$p$kMcUUV^$"I$I$cb$h*:MciJx X&N{HJ~W%5IyohR*: 9k x: X:Mcx^WU" McZ/'.($"$I cb$# Mc [`"uB?կR%_&ɑI${*)+ HA򔑌x$"H$I$" $ $ь|$"I$A$ь|$"IA$ь|$"I I$ь|$" $I$ь|$!A$ &ь|$H8:q+cxL. c.W)1əФs^z*#{>csMcW^x!L$MMc [ I$IҢkJ I$IkJI$I$kJ AkJA Mc,[ @5,[iJ`5t$Lc(BzW5Hdvv(Jյ 4I$I- 1I RzNa$ϤKk <IB{ 5! ht^1"_?$|xWUU!I&I&|s möm|kꪪ$"I$I |t$"A$I$|t$"A$A$|t! P@|Mcx`~Zn c %7䏔jJ~^7I< oHJխ*9 mq{ x;$(}$qmc_U,"'4|x\^W$"I $|t$"I I$|t$"I$H$|t$"II$|t$"  I|t$"I$I$|t$ 5sR`pMɐZ%% AIIs`C*ѠkpX^%"H&I$kMcVWUU$"I$@ cb$"@$I$cb$" $ $cb#"IIcb$"A$H$cb$" $I$cb$ HEMc [ $I۸-Mc [##&s$Lc(B`Xɐ0B I$I$ԽPBeI$I$ԽOH$I ԽqQQAAI$H$ԽqTQTI$I$ԽqTI$ $ԽqTATI$I n9I$Q  OUW^x!I **$"II t$"$A$t$"$ $t$"I$I t$" It$"H$I$t$"I$I$3" @5sx"*:M$ӌLkxWN&`nLk5 .IH1Lc>ɟK1B2pw4 mkW3$y Md'PnkU0#+$QmcU4#Mu$qMcU3"m0|(J^^/IdIİoTHU8$r"&>qMc\Xxx$"I$ $cb$" $A cb$"IH$cb$"I$I cb$"I $cb#*ɒ"!Mc [@@HMIJ5559!Ata׭)"N^'$"H$A$5q$"I$I$5q$"A$I 5q$"I $5q$" I$5q$"HI 5q$3ӊ󌲄` hԌ/W^x#|N^'-.U$   %"I$E&$"I H$$"I$I$5q$"I$A$5q"@5mkx&NҌLkx^U7I$Ilk%7`Amk x3O?~'qMcx^WUH$I$kJ$I$Mc [ %`nm:k,[  /LHJחI$I$RΤ>"3hisxxzz# i$MMc cxX|" $H$NkJ$"I$I,c c" I$ NkJ$"AA,c c$m][,c c^! ,c%UUIя+c""&ӌs@bHIlk-5!tA6֭N $Tim3$"I I$t Km$H Iu$  IҶöa3 m$I ͂&򌮀 vm3*!9lk`pI1Lk /%-0I$ hМz I$ORaێR]oP%I$sx r䱔s ^% I7{ U#0|$ݺE4r m -ӌj TAX(qbX'Kp,cX\7BIdIK?/@"P/:s'pX^W" H$I$5q!$LjԌ$"I$I$5q$"A$@$5q$" I 5q$Ӵӈ1􌳄@P=s$,c`x\9IdICKs=/ ;S9'px^W{"5@ _>#.Խ0 I$I$Խ/x,0#I$0sx$ФmkUUW\"X&Mc(Jx^`$IIJW5 9I1b :!$h;mkx^1"?|McxWUU$"IA$cb$"I$I$cb$"I$I$cb$"H$ cb%Z#(HMcR`~R?R %5)9Iќm 3A,"t`-򔑄^|x$"$H$ь|$"I$I ь|$"H I ь|#!H$A$ь|" 6lkx"t$ cxWp cW->I$ySj*5I>S탻X*\sW\Xj'!N$p8kMcUV\p  Mc,[v am$Mc,[!Ҡmm$Mc,[ $IV7Mc [ ZO',c(Bx^$ɟ.HJ_U IHJ- 7Ix @/z9$]mczW/X3d0|Rx~iJ %5taoqc{_#h&k$1|s~ II${ l!iۦ$|s I ${ l!I$I$|s @$ ${ l  $A${ l I$ $|s:P0 [zzO篜 c > cmcxz."?'{McxWUU$"I$$cb$"I$Acb$"I$I cb$"I$I$cb$"A$ cb$"I$ $cb$"I$I$cb" P `MciJ` ۼܯHJ %+IDϤpTTRz+"|Nr|WW\X$" $I$|t%#&j2'sRpXXCII2J{**@"P>U|pxX\$"HI |t$"HI$|t$"I$I |t$"H$I|t$:m|shJM'r&oR'77)CN/+3:"qs^^C:`'kRpXX nZ @vh(Ҝncp,iڶM{Mc(U$O>(nmk U!~o c^rNZUWx$ I.kZ\$$ wMc [$" $I$cb$" H$cb"9b2',c(B`xXPB >I u6/B#|'u|x\^W$" $I|t$"A$I|t$"I$I |t$"I$ $|t$.,|k``i@ .kI$P@ns=I$sWz@?oLc^X$Z^W 1js %ɛ/{`V' RW^IsRWnk&,[Z+!Mc,[!IM4kJ$"I Icb$" $  cb$"I$I$cb @ ,McR`h$MoHJW%?1n> fT0|`x$H$I$1|tTWUU  ${ l#!I$I$Q|mk$"II$|t!6R6|s~!m=;tkv! mlm?sMcz`2'MoR^֗5)P1̃ ;9AfҜkz/$|Mc\VWU I $kJ! $kJ  I$kJ!h4I$kJ 6 C&Mc,[!Цmu$Mc,[#$I Mc,[% m$k;lMc,[(X#&,[(B`pXItϤ(B5% 1I$Iյuu8I' ֭_zI$O5q*mۢI$**UԽ/ &I$I$ԽqUUuI$I$ԽqD@P@H$I$ԽqEEM@Խ/os I$^_~"4OUW^x%"i$M"ԝ񃪪$"I$A$t$"I I$t$"I$I$t$"I I$t$M(63Ҍh"ZC'Lkx^$IoLkXW 9I$Ikk 9hs*x8|$(B87;`fhsbc("p8n$kMcTVUU#"@ @ cb$"I$I$cb$!EI$Mc [ h*-McZjhL IJW5BIH1i-a5"?'}'QMc\^WW#"I Hcb$"I I$cb$"A$H$cb$"I$I$cb$E׵m[,Mc [!P&j$,c(JpX\=IɑhR#=#3'Ӝmcpx\^#91Mc(JXxpp }ۏZ8"Umcxxxp$"I$Icb$"I cb$"II$cb$"I$I cb$"I$$cb$.")McR@@@N(J%6 v`fc$i$W$ ژ?􌳄U#$@'􌒄W$$H?qU$$$QU#$Q|U#ۖ$0|U?tU" H$sUZ[;mk*W \O$М{ * $ ќUUW\$   % m۶&ӌz$=>ӌ cx`$ɟpLcX5 7I js6 !0`ШҜkx^,?O$0Mc\WUU@HkJ@ $kJ@kJ!8۾-McR`` HʼɛHJ5%%,I',0{( D{\XXj(!?9s cV\\x!  NkJ$"I$ ,c c# A$I4NkJ$"I$I,c c$"I$$,c c$!i&),c c: 3Lc [7}.R 53II?+9[9/3rxX\$"I$H$t$" $ $t$"I$I$t$"IA$t$"$A t$"I$I t I H$T| (,3ҌzX&K䱌lkX\֗5I\ ?/ 4P>j'x\V$ neӌ"'si Ф UU&I' ?V"I$O5G+ ɐ$${z"(p?s^ r䰔s W! 6i&ӌs*R&ӌLc`x^$I$I+c+?dho( O?4\_WU! 5q H@$4R$"H$I$5q$"I$ 5q#!$$5qX&ӌ,cx\6I$IKk-8 6p"_ӌ\VWUI$$42 HӌUEI$豈I$H$Խp<>I$rkZhJukiJյ*:ɛ `{/9#$mcx^W( kMc\UUU$"A$Icb$"I$I$cb$"$I$cb$"I Icb$"A$I$cb$"I$I$Mc c#  hMcRXxO'>R %0In)*"O?>ҔWW^|$"I$H ь|$$1s`!$p c^W`$I. c^%;I$ySJs?>y$- ZэkiJzz"X簜Z$k l`Ps^xI tsItsu tsI-tsItsItsItsZsMc`-ȭnR '7*Ic~~*"s>sMcUWV\$"I I$cb$"I$I cb$"I$A$cb$"I$I$cb$" $I$cb$"A$I cb$"I$I$cb$ӆmMc [ |>9iJ5_ 1ns! +D@1|_~'9-0|shhxLϜZח5@ CvM='6#h2'|$|\\VW$"I$A$|t$"I$A|t$"A$I$|t$"I$ |t$"I$A$|t$9PsZx``4ɑIİb" )6 5R`H܉ێR5 BID 򜎜'?#>s?ӔMcxX^^$"A$A$cb$"$I$kMcUUU(!SqwߎkMcU)}$I kUU(ɝ$NLcxps$ZU^!  .s [UX"`J6,cHJzHɟۯ(B5% I$IR"x=d`T{x*!R|TWUU$"I $|t$"I I$|t$"I$ $|t$"H$I |t",,|k````gR)Qsk))))&I$sk*@@os?}U?/ϤR /7 Qj:yd`|`5:$mc~WU# 볭 Imc/UU"_ -mk/Uw~ZWx`w̃RU^I,[iJy~,cR$ KMcR  H$kJ 0#&,cHJ`pX\I)R% <I OT?$< &|'4|X\^W $I${ l!I$I$|s  { l I { l$h#|s~!n2tk_^ mMP&sRhpXIR%- I$IR(j*iqߏMcxxp"&wMc [ $# VMc,[ $3l۶AMc,[#~.@IMc,[$mHMc [j! 4iMc,[ ImضMc,[$I%H Mc [%"` 1McHJ`pIN(B% #I$IRŭ7@ɐAМ 7#`M'$֭3x^WU&!@]T3U%s3%I$hs#糽 $ԽI$I$Խ/ A$I$Խq!ET $I$ԽqQI$^&DS3UW\h&"q$Hb&ԝ񃪪$"  $t# m(6tq"`86kx"*:M$lkxW Iܷklkյ<I@@ҔN:h;kxW3*$O6PR~ɛ HJ5%%>#_9mc``pp$"II cb$"@$A$cb$"A$H$cb K$[%kJ 9,[(B``xɟ.HJ 9HӔmc`xXq$Mc,[ kJ $kJA $kJA$ kJ 0,[B` Hɟ(J5% 99BF{cr*p'O$s,c\VWU, ,[(J````1(J 0fh`kzzzxM6h$kJHI$kJ$kJI$kJI$@kJ ,cR@@@@XIHJ%.$lsp?oېLcU$oLcU $oێMcU $ݶNMcU $KmkUU iJ;I TN5-%53/{'֭\^^^! tq|" I$I$tq|#!I$I$tq|$" $I$t$"I$I$t$!M"M3"R$6 3%5lk`p رlk%% 7!tA&$H'Z5ӌ\V Iڶ0 ӌ$!h4E&'"ŐI("ka8+%khUU&I$ @mI$I>5n $m1{^ p$K1LkU"6ɑIm/.8 3'}'x\^_! 5q# I&I45q ڇyӌ! 5q" I$I$5q!Ќ5,cx|ɟLkW=61pA )C?o?mkpX^_!h4I$Mc [!m$Mc,[  m$Mc,[!$ltMc,[$" I$cb$!mڤIMc [*$"I$H$cb$$@6Mc [h$TAMc,[$Z/J7_&IФJk +ip"h& c^PC'IO cxW <I$I*k :ImO >#$_U-"y$xWUU$" I$ь|$ІIP|@!t>OLk6p(II$sxŠ&m/McW_~xZC',[(Bx^$I$.(J_U5 /I$Io'J- 4 hsx5t$Mc^U%]خk,cxWUU$H$kJA kJ kJ#ɒ&I,cR`~sNiJ %7# y|/WW\x#~B'91|sW^xpH @$ssA$@0|nc$I0|ncI A0|ncH$@ 0|nc @9sZx5t$kR`^Ita0Z-*(ɑI${p/b |Mc^xp$"I$I$cb!HMcR,$!m$I4Mc [$"I$ $cb$"I$I$cb$" $Acb$"I$Icb$"I$H$cb#X McHJx`-n1s1Z -%*ɐI$Qo\xz. >-rZ``IInR% @h(UOcp&"H$$0|tTVV" I$ $Q|mk$"II$|t$"A I|t$"$I|t$"AI$|t% # t c` یNR '4P#9%ZppXٖ:ФR?9BVh{bp-"x'MsMc\VWW$"IA cb$"$I$cb$"I$I cb$"A$I$cb)".q~ێkMc*UU% X{mc U&' ̃k` U mb' IJ_ 1`Z <ɗCT;9sX\^^#d $Itk %$Ih*I|sܪ!mI6|s$"I$I$|t#"$IQ|s$#-#0|k````!a9Psk))%%Misk***  ,s,c`ɝR55%;II2hx;>ҔMcpx\H$I$Mc [I$I$kJ!I$I$Mc S*"#msMc+U%~.mk/U#Rz *R$ ZUWx! T.lkZ\# $`Z2McR{pΟ܏(Bח5%A@Ϥ;19xI$rOzh* mmqmk\$$ s|k $n]0|s$"I$I$|t$"$I$|t$"I A |t$` -|nk`h$MOR^7%>IIL /A q9hШҜkx\( s&ImcWU!w.Lc^= PJw [W\#0Mc [+$[Mc [ #"I @ cb$" $Icb$"I$A$cb$$I(-Mc [`"&LPHJ__iѮmiR ;I$`5:"??}3x^WU$"H$H$t$"II$t$"@ I$t&"&I$ԝ񃪪# RH I3x&I2>3Z"I$M񓵯#> m浪H$I$ԽqEpH$I$Խ/l<ɟ$ϜW|$@w3W^z# @(>sx!t$ҌKk^Xm۰lk^U5<I$Is":Iis*x;#к:$mc~WU(!m8kMcXWUU$ #5McHJ``p>IIp'J--)!;#&j&mcxX\\$"I$I$cb$"I$cb$"I$@cb!1Mc,[jj`&|/(B_W:ɑҜ{)+ 7#'|McX\VW!I$I&kJI$I$kJ kJ $I$kJ H 0Lc [P&j$,cBxX9Idɑ gR  :P>r'Mcpx\^H4mkJ ,,cJ``  (J /B)Csxj!I$J$mk,cUVTTI$kJI$HkJI A$kJAIkJ ,,[iJ@`ɟəB ;IH׭UU.I'Un],I$Uhʾ ""@IBi6lќsp1I"I Ik"U/I"m InkU.IR s+U-Is(U/IsU,I@k I'#? c 6I$)BֵϤZ[}(I۴m4Ӕx'~&-w'I$}3n :IXɕ|pRrZ1p"'p&0|Mc\\\X H$kJI$ kJ  kJA kJ $I$kJ15,[B```poHJ 9T9:Ҕ-cpxxx#Z OJ5_% \O$oZ'k{ cW^zxI$I$NkjJ I$A$ cZ "- cZ cZꪪ cZ I$I$NkjJ9P c(Bxx/y|t k++-=/r'?^\\\!&i$T|"!I$I$tq|" I$Itq|! tq|$"H$At" I$I0tq|" C23򌪪j&jҌlkPX\6ID j{?/7@>֭pxX\ nnӌ$"I$A 5q$"I$A 5q$"@$I5q -I4R$"I A$#@dϦӌ  ՚/6ӌk` }Lc*/I$IbrМ I$I$RreTr0|X 0ӌ|+$ӌ @(ӌ mѢm$4R! h*5ӌk``'NpLcXV7I4h{%13'~$ӌx^WUH$ 42@42H$424RI$I$4RH @ӌ~ꪪ iӌp~I$q 5WI$I$rp#pXϤkW^Xp#?mk,cUVX`$kJ AkJ ɐIIMc,[ 24C;Mc,[ꪪ!!I$Mc,[Mc,[kJ &&aMc,[#@McR`OoiJ 7/ɟ$|{j9O?OzsKkU 9IiT 8#$t^U."?WUU$"I$ $ь|$"I$A$ь|$"A$I$ь|$" $A${$ P̀`lk`kk - ιМJxx M_NHJ%5I@@{ 5! h֒mcx_-XO~'0McxWUUAkJ I kJA$I$kJI I kJH kJ IkJ5,[iJx` niR #dH)ot~!ms1|sUW^\HI0|ncH@ 0|nc&5sMcx&$sR^U`$I.R_-1I$IМ k*4IwhN.+Mcz- B/kx*">sMcWWV\!@8McRPp`ސI$LcR+UU$HIMcR $"H$I$cb$"$I$cb$"I$H$cb$"HIcb$"&HMc [`Mj&iJ%5sq7'r*rZzzxh?II2Z+*A$>3'U|pxX\$"$H$|t" A$IQ|mk$"I$ $|t$"@$@$|t$"I I$|t$"I$H$|t$[SZl|sj/h:.Z7^G1 c> =IIRcܞ@#D>ӔkpxX\$" $I$cb$" $ $cb$"I$ $cb$"I$I$cb$" $cb$"IH cb$"A$Icb$"$H$kMcUUU#>j"'sIJ>ϟ?I2m @v T0`x("pMNP|TWUU$"I I$|t$"H $|t#"@$$Q|s$"I$I$|t$" $A |t$-"|k```` a'Ssk%))%H$ sk5&sR`pX\IaR ; )tab03?}'QMc\VWW@kJ@ kJkJ I$IkJ$"$I$mcMc/UU&"ca'kMc U( $ {Nc/%' mkx /UB6oHJ_~ɟФHJ- > yRєrpX'I$בּU I>Ф{z pɝ$ФmkU^#PNw/kUx$$Itmk $!IM4|s$"II |t# 1#&sR`pX !ФZ > !t`*b6"?}pXX\)"pΟ4 U(,5#>LcpxX-IIoLk #<$R9>ӔmcxxX\$"I$I$Mc c$"A -c c'")$I$nk c+U%f;nk cUUU'"$I6nk-cUUU'(2-nkRjj |xiJ%%%%;taVќ$"I$A$&" $I$',R#1k```%_lk4>أ9Q,[XxxxH  kJ IkJ @kJ AkJ$kJ=X&,[(BpXXX8IdI*k *8&3'McXX\\ [R@/X &NiJ %W&Cɔ\nk^^x@ I:-cR| $I$ cRU"m cRUۘ$ cRU$ cRU$ cRUL6Z(J```zɛ܏(J /etp_p!E[3򌪪 H $T|#`ǶS|!Nc!6k&3򌪪/5lk` Hɟۏlk559BVh֭N .3;u\VWU!iAԌ$"II$5q$"I$H$5q!m"?ӌ~"m[ӌ`I<󌳄UU<ӌ_uP:S',c`xX^*IT*k=- .(O?x^3Ioӄ I$3aҔmbI$Ϥ.VxPNќ0|_0ӌ0|+ A1ӌ0|bP#&|䒄LcpXV5I9pAKs=6P/'pX^WhM&ӌ I42 A42@@ 42H$$42 $ $424R ӌꪪ P%Lc`pXI Qlk 'Q.b#T@'mkUW\p!I$m&mk,cUUVX"Mc [ laMc,[$"I Icb!=Ƙ?Mc,[zA$HkJI$IkJ  $1Mc [z ZC',cHJxWHIۯ(Jו5 @rϤi˨>dio."~'򔑄^WV$"I$H$ь|$"H$I$ь|$"I$I$ь|$"I I$ь|$"I$I ь|$"I$I$ь|$!$m$ь|"#:PpLkXx`ɓI{<I&Ҝk(x8~'Mc~WU"H$I$nk-c\UUU Mc,[kJI$ kJ $kJ A$kJA$HkJ@$H$kJ"&@,cZ@MB'9NiJ%7_I$.r)% &HApt^~z 5skx'sRzWX$ɟ R~W 3I$ Z+"4}h /6$|^U.]Ҕs_UU`sLc``(? [7. sMcXx`L?s',[R^\\I$I$ [ :"1 McR %5$"A $cb$"IIcb$"$I$cb$"I$ $cb$!A4I6Mc [!99Mc(JxxxMٔQ*k Iw?qhAI9BUm61#?t?Ӕs\^^W hi{ l" I$I$Q|mk$"II 0|s#!I$ $|s$ a$$|s*$m׶m$|s**U$6l?|sU#5/sZXp``nZ @I 9B2Pj6"#'|$qMc\^VW$"A$I$cb$"I I$cb$"A$H$cb$"I$I$cb$"I$I$cb$" $ $cb$"I I$cb"@ McZ`p$M-(J5%>I un?/?#>s'U|x\^W$"I$I$|t$"I$I$|t$"I$A$|t$"I @$|t#" A |t$"I$I$|t$0-|k````!a&sk)%))`,(sMc@pMoR֗7%!IIqc:HmcpxXH$I$Mc [I$I$kJkJ@kJ AI$kJ#" Hcb#"HI$kR$" Icb& (,-McR` hɟHJ %>ɕC5%=##'|'ux\^V&"&ЉDZ (" m))N$ nҌ W)I$tєNvp$kUx PNnokWh% 4i%;s,ch$MNRޗ7%=II򤎜a%(?" >Ӕmcpx\$"$I cb$"A$Icb$"I$I cb$"I$A$cb$ sMc5UUU#N.: Mc UN cVh "M.{ [UW`"R>McHJz_HɟN(B5 <I)P@ / ?#/t$3x^W#JH3򌬯$ C'фx^!҄ $"I$ $t$"I I$t$"IIt!mI$T|$" $It$"I$A3ꪪ$ֵ-ӌj!&r$LkpX\<I$ɗս-/7I$Hحߨ/I$u0IumW3INIU0I IoU/II IU-I"I I5{U."I I4{,I"(4̃ MhQ{+ -*II$Q{z*$InkWUV\%"I$M$mcMcuWZ|$"I$I cb$@m6Mc [!P&j$,c(BpX@IDb)+* =#:rB'ҔMcxx\^$"I$Icb$"I$ $cb$"I$A$cb [5[5Mc,[@6(Mc [j&rlk(BZ^9IDќZ)#*;/>s'McpX\VH$kJ kJ-6H Lc [ꪪJpo(B73ɑDppPp_-r>|,c\\\XAkJ-P@6Mc [@86,c(Bz(6M$Lc(BzW pq붒HJUխ 1b)1 xx{$"HI$5qX&h.粌LkXX\=ɕ =/*7">s'Q-cX\^V$"I$I,c c$"I$I$,c c$"H$@,c c $$ cZ$"I$ $-c c" 0 c(J``yNJ 9$nD39cbrp$"I$A 5q$"AA$5q s````-,c 034FsPMcppp`@ kJI$$kJ@$ $kJ$I$kJH kJ`&rlkBޞ8 МLk*r-+|$QHJ^W'I.(BUM}(JU q۶ФZ `:cۏiRW^$m `-BU$um-BU$n BU$n.BU$mn BU@8&INAUqs$mФR-Ĺo-_pI?{_rҔ| Uz o{ U/| !An hk63ҌjP>jҌLkpX\4II{=/7U/9#'֭bpx\ hm6ӌ I I$4R!æMB&ӌ! t\ӌ( ʆmvӌ}05󌳄zzz~AI$$*6Mc` Hĉ.,c5%'9A(.O?\VWUI$I$K󌳄-nӌ UUI$ќoLI$Ϥ/W|/9lbќmkz_^5I *k+ 6 O?׭x\^H$I$ӌ I42@ $42I 42I 42  42@$@42A4Rh5ӌLcxpɝ,cV% sm)I$O9r II$Q{zx‚" HApmcUW_\I$H$Mc [!n閤Mc,[$mMc,[!Xk۶Mc,[ڶh&Lc [H(:,[Bx&N{HJ~_%I!HJ- 'I$I1n _2I$1s_0In<0"|>^^xx$"$I$ь|$"I$I$ь|$"I$H$ь|$"A$Iь|$" $Aь|$"H$I ь|$"H$I$ь|#@s`Tok)5 8nmkxz"!I$H$Mc S$!H Mc [ ImkJ m۰aMc,[!I⶘iMc,[!IR:aMc,[I$Mc,[ߪؚMc,[!I$IbЎkJ m۶MMc,[ ,[iJx` iJ %%)Sɛ0/_Z`>.Rz^5IiZխ*: $mO x9$$0|^U/"X?ϟ'|xWUU$"I$A$|t$ "RH0|s$mS|sk⊪ |2'9{Z6x0B.k~+s2ڈs [_$I"I$ Mc,[$%I$IMcZ'$"I$A cb$"IHcb$m(>Mc [h">McHJ~!u$,c(B_X$OHJWU ɟ?1Z  mS$I$r*<8t_?,[x#ԶI${RUжI/RU"жI/RUPIZUUdIМZUU(dZUU'yoRU$oۏRU$mRUyZ  =f`Ҝk`p%"H$M$kMcVWWU$"A$I$cb#"$@kR$" $Icb$" $ cb$"I$I$cb$"I$I$cb$"I$I cb" 5Mc(B`p HJ% >)aviUocz)"p$R|TWUU$"I$I |t$"I$H$|t$"I $|t$"H$I|t$"I$I$|t$"I$A$|t$"-#0|k````RΖsk))%%*1P#>sR`pXɖ ِZ ;ɕɐCh7#'{'McX\^W@ kJI$I$kJkJ kJkJ$" $Acb$"H$Icb$!I @&cb#5`&Mc(J`pX\ oiiJ ? )a8b("Xu$Ҍ\_W$"I I$ь|$" $I$ь|$"AI$("xI8Ҍu(@ In*'I' - U c^**ֶ`ϤZ >d`{b4"'~'QMc\VWU$"I I$cb$"$I$cb$"@$I$cb$"AI$cb$"I $cb$" $I$cb%P#` sMc-UU"N> [ ?_ XR׭ʏRW >I\Aֵ?<իC?x^WI$WUUf򌱄W] @;N$҄! % $"I H$t$"I$I$t$"$A$t KMt3򌮮$"HI t$"I$I$tq  1k` Hɝ؏Lc5%89d@׭o 3"`^WW*"q4]*"I4UW)"I$"@A$%"A6I$$"AI$" $I$$""(0|@@@@ɐ ɐ qLk%Խm!)\I$qs^x(i@/McW_|$"I$cb# ,MciJ`Hێ(B5% =9Bfќmk z/ڵ{ [$"@$ cb$"A$H$cb$"I$H$cb X5@Mc,[5,[B`x1.(B5 :1aҜkbp&x?'k,c\VWU$ kJ kJ  H$kJr&`%kB%IdIoPorA29Q,[Xxxx@8:,[IJ^9N$kB~W5L$.(JU )sgZimϤ5H$ Μx/A)v&& )4rhHLNLk75;C!A{@+"p'|'s c\VVW$"I$I,c c$"$I$,c c$"I$I$,c c  $H$NkjJ#"$InkjR"0@5 cB```p&ə\hZ--))9#9>pxxx$"II$5q$"II$5q  |`@y̏nLk%%5/ hapkp`bbI4MkJA$$kJI$I;Mc [ 8:,ciJz$,[(B^U HkФHJ5 9$IlkP2I$Gќ탩ສ0I hpsx/ :0Zh뼏iR %4 )Aasb-m,0-cU)I{-cU*I${-cU)I-cU)f-cU*I@$?{ cU s䯜R.72ߚA!BN # 4W&I' 3Nw֨$O W `l{U_* `䰔s+^"ĭ'Lcx HI}Lc5- 4Th  .3?}疥ӌ\^WU R ӌdH􌲄 Qt$I$Qt4i4QtX5ӌxxxZ  $Q|@P%rr| cpX^*ICks=/& P>'xX^WH$I$껮A$I$/)ӌ @ A42C$Aӌzk"͐&Iӌ UUI$|5𤐌#+!I$Ul o M&0|\0@ӌr-I42$ 42IH42@42I@$42@  42@ 5ӌMcx`$IO,cX5 9I$I / 5d@׭-*XcMvqxxzkϤ| $ə䯜kXp##'߭sMcWVZx A$kJMc,[ 5,cJxt$ [B^ x}ۏHJU-ɟ?OZ :I @/⼫z8!@8kzW5?6S| [`znR 50fhCoき&"q$N '$"I$I$ь|$"I $ь|$"H I$ь|$"I$I$ь|$"I $ь|$"I$I$ь|$"I$I$ь| k>Xpkxp`-lk訫*!v? 5sMcW^\x$"I$I$cb$"I$I$cb$"AIcb$"I$I$cb$" $H$cb#" A$cb$"H$H$cb$"H cb$"I$I$cb$(mMc,[ t>R__1{(;dhT׉b5#$|^W."`;O|xWUU$"I$ |t$" I |t$"I I$|t$"II$|t$"H$I |t# sZp`,ɑI$ Z .Z {mc\Xp`$"I$Icb$!I $Mc [% AҸ:McjRz%$-c(J~U>I،sB_ NHJU477/b 3k $Pk ~1c>|R`x  ۊiR %rϤpC_!I$I2 N _7I$I>ФOIdIs\?#>3'ӔMcxx\^$"I$H$cb$"I I$cb#"$HkR$"I H$cb$"A$A$cb$"H$I$cb$"IA$cb$!Ai&Mc [ &jk(JZ^!`A0*k),ɝ$kxp! -PMc\$ As|mc $ ۚ0|s$"H$I|t$" $H$|t$"II$|t$"H$I$|t$.0|k````>s kk*o`"'LOR^ח5  1 ):)AHќk`p$H$N$kMcTWWU@$kJ@kJkJkJkJ $&Mc,[$"I$I$cb"@ (McR`xΟHJו5%BIɕ-?#3'xX\^$"A$H$ь|$"I$Iь|$"II$ь|$"I$I$ь|$" $I$ь|#"A$ $ь|'V%-p|/K+c>?II2cA$5&k`xX^$"H$A cb$"@$A$cb$"H$Acb$" $H$cb$"I$Icb$" I$cb#"H  kR$"$ $cb# 5&McHJ`pX\2sZ)) < 4P-3px^#3;(#A3҄|~~$ 󌱄UI$IUUUv$ 󌱄_U!11 $"I A$t$" $@$t$"I$H$t$ A 3󌦪$"I$ t$"I I 35&ӌ,c`pXX/II2Kk)+;%.0>׵bpxX&"H$I$$"I$ $5q$"I$H$5q$" $I$5q$"A I$5q$"I I$5q$"H$ $5q$"I$I 5q" Q|@@@@I ɐ Lk%%% $I$Խ/ @ ӽ0[|p3(!I冷k\X`(#M&h24kMcW^x`!9`"',c(B`pXIV 1Z)$ÚI$1R^p?ϤRUUn䏜JU#InMciJ W$ H䔻McR*"`J6McJj`&L$k(J^7IIPs"*:>'ӔMcx\^WI$kJAI$kJH$kJ@IkJX=9,c(BXXxxI$I{ 09lb'/iJpX\<Mo(BU 6Iı @ s 3 @. 0P>$x^WU{5-UUΏ=r.-ɗS'8+ O1k``ILk5; vhHnkb`p%"IҤH$-c c$"I$A$,c c#"  I$nkjR#"A$A nkjR! 6m$ cZ$!M$h$,c c!9؃% cBpxX6ɕ\I*s-=9=9">>XXX\ HI$4R $A$4R"),ӌ@@ ˏȋܯ,c77-)oRxx4n$,[HJW$ [HJUV;IoHJUU/ `$mNHJUU-3I$I OHJ54IxH{("x4@6ncW4и~$qMc~WU'`ys,cWUU,McZhjj ˋNHJ%%551A!Bs`hbbH$I$-kZMkkJ @ cZH $ cZII$MkkJ(R4h" cZJx {A77770!B)C #$H$TVVV& `I$TUU'!a$TȪ"h 3n^!I' n3 UI$~򜎜 o۷ 1&fɟ$/|zrPNs/\(ӌty'ӌr|Ұӄ(VUU'q$ӄ–$q'ӄڤI&= [pXϟ+c)*Vշ/ `͸ӌTVUUI$IkI$11󌳄HI 42 $42A$42#ӌxk 7 e۶m1[!ɋ'3OU| 0 rӌ0| --&(ӌ $ 42$  42 I$42hЬ9ӌ,cx`ɟN,cX5 :Iĉֵi{/ 8 $h;x^*?$Uӌx^WU$A 󌴌ꪪ ӌsx`{) #tФkW\Xb$$95k [xb_',[(BxW$IN(B_U ۶mhR 6I0Ҝn=c: 0@8mc^6$qMc^WU#h۶m$nk-c\UUU$!m$I$Mc [!s">siJ^z.I s *+/"|.^^xx$"H$ ь|$"@$I$ь|$"I$@$ь|$"I$I$ь|#"I$ $ь|$"I$ $ь|$"I@ ь|"0{``%h c6.FhJok__~%"IҤMkMcUWWV$"I$I$cb# I4I Mc [*# 4I$Mc [*" I$IMc [($"$I$cb$"I$I$cb!3IMc,[z!fvMc,[ $I Mc,[ P h,[R`I$K&iJ -.A)KPbj%d$n 1|sW^| 'Ats mqIts$" $H$|t$"I I$|t$"I$H$|t$"H$I$|t#"&h|kj⪪Oj.Z'7/Btok~~zp$i>Mc(B^(N,c(BzU- V (JW-*I (J 1I~wi0{-*x41%@[0-cW5O$ cWU&։nkZ&A cZ`jJIJ%5;I1o|:)3'mc^^.@0|McUU."ж|McUU." !t` c5#h'M$QMc\^WW$"$Icb$"H$I$cb$"II$cb$"A I$cb$"I$I cb$"$A$cb$"I$ $cb#` ,McR`pNn(Bח5%(II$s=+ &iJt઩%"i$Mt$"A$I$t$"I$H$t$"H$H$t$"I$A$t# IItq|" I$H tq|$"I $t$"H I$t$"I $t$& -`hLoLc\7: B׭-?' 7">׭\^VW$"I I$5q$" I$5q$" $ $5q#"I H5q$"II$5q$"I$I$5q$"I$I5q$"I$$5q" 1ӌ,c`Iɐ1Lc%% Խ/I$I$ԽqDM&m6ӽϤ_(aR~p`HɝHJ5 )PΤI I$Խq I I$Խ0lI$m[ZI$I r{^ RU ']ۯIJUWI'J%  I$1sz@N1ď [UWXDIS,[Z i$Mc,[%I-,cZpiM' [(B^3'I(B_W-}} c(6O1+앭 `;ɑID֭-???=:X^^^#j$IAӌ Id@ӌ" H I$4r$#I􌐌zࠀO?q^r2Мlk`j $k=#S#9>-cpxxX$"HI$,c c$"I $,c c$" $A ,c c$"A$A ,c c@$I$NkjJ!ֶm6 cZX&r-cJ3IIM553&\\\\ 4R4R08ӌ@@@@ʍHoLc6I$IϤչNB$ Q-V $I$ɓ*6I乐򤏔Ө9YIk^3$qMc_U+[ϓ|,c_UUH$I$Mc,[ $ kJ@@ kJ C"$ Mc [j˽H.B7777/!B)p{`bhb#?s NkZ $I$MkKJ@ A$ cZ H MkKJ $ cZ@Ӣ@ۢ cZp&h&s)J-11N #ꊲTVVVT" I$H$tq|" I$ $tq| $I$S|%o3#ڲA'3!h$InO":X sXI$3nVnznI&{W` @Nns\4 6s U V-0| A I$ *1s` `M/ [\ַ%.H)t5 #'M$\^WU  kI$I$@J)Jӌ @42 $A$42 42 h*,ӌr`HJ,c6<ɕ1ti׵M?' 0b;\\^^I{9PZ PN1/ -$@ޔTӌr-@h642h/>Lc`XhɟO,c\% 8I|p@˃?:'x^W#5ӌ\WUU 42AA 42زPlӌ# ӌs^x`ɑN'sȊ "9nroIB~^ It^(J-6I .79UAk ^5~$Mc~WU#öm۶nk-c\UUUmMc [ꪪI EMc,[!6HMc,[ ɀ(iMcR`~?NiJ %7.f@- '"i$M$ьq$"I$ ь|$"A$A$ь|$" $A$ь|$+vX6ь|# (>lkz!$p c^U$Io czUIt:l c-*{Xrh,"t>sMc^\xp$"I$$cb$"I$ $cb$"H$I$cb$"H$A$cb#"I$@$kR$"IA$cb# M$i$Mc ["! kR"!A$I$Mc ["*# Mc,[肪!/X5sHJzz,ɐɗoZ / >|V\Xp"!I$Q|mk$"A$$|t$"H$I|t$"I$A$|t$"$ $|t$"H$H$|t#"$@Q|s!5sZXp`0bꫩ %}1ZU.PJs-*/ yG0Nk ^1$1 c_U([{ cWUU 'v cZꪪ@$H cZmP cZ  $ cZꪪj&5mkAzII${ 2 UPMcXxp`$ @Mc [ $"I$I$cb$"I$H cb$"A$Icb$"I cb" ,McHJ``ɐ ɐHJ%  I$sBY5jy-cxx# IvMcR^$$AMcR$]mMc,[ $"Icb$"A$H$cb$"HIcb$" $cb$"I Icb"0=Mc(J``xXɐiR- AIIsB$Ҋ3'u1|x\^-"֖?|U(` o1|*U(I' nPUU*Oolk^PrNmkU`% @Nv|mk^# w|k $#-#-|k```j؃%j{JZ^)1s 4ɐC1s|" ;}{,[\VWUA$ lcR$ lcRA lcRHIlcRI mcR$$lcR ABMc,[ h ,McZ`h$LoHJW53II=A%/5&bpx\$"I$I$ь|$"I$Iь|$"I Iь|$"II$ь|#"AIь|$"I$$ь|$"A$I$ь|!9X&p cpxX\7IIJk) +"?",>Ӕk`pX\$"HA$cb$" $I$cb$"H$I$cb$"H$ $cb$"H$I$cb$"I$I$cb$"IAcb$"I$I cb# 1#&Mc(B`xXɖiR% I'IO#XI$2,\T#N3є-$"I I$3$"@$ $t$"I $t$"@$I$t# I$Itq|# i6M$tq|$"$Ht$!I $3$"I$I$t$ #5lk`p ɝlk%)<taH׭'"hҴMҤTVVU$"I$H$5q$"I H$5q$"H A$5q$"I$H$5q$"I$ 5q$"I$A$5q$"I$ $5q$$I0|`&MҔLcX^5d qs) I I$ԽqI$I$ԽqQTI$ $ԽP@\I$I$mlII$Τ I I$豈yh۶I$鸞m$I$IϜ'I$I RY*6I$/W4I$.W7IIm6Ib$i)I"':{0XI$q+c^j @noNjB|M'IIJWI(NHJU-8I Aֵ/;@&׭o-993:,c`xzz(IDI2̃==97#b">9Xxxp$"H$I$5q$"H I$5q$"A 5q$!H$H65q#chqx}>s \?I\o;#&r'R-cX\\^$"I$ $,c c$"I$H$,c c$"I$,c c$"I$I,c cNkJJ , cR`hHɝ(J5%4IIm?>2h&h&\\\\ӌ 4R h 0ӌs`HN؏Lc% $I$r來![9Idp@rp}:5Rpx~*\O'NiR (/>Z_{Mc\^zx $kJH$I kJ$ kJ A$kJA$kJH $Lc [ꪪz'h&{IJ-11ojllc%??rnkZ|@HMkKJA $MkKJ $ $ cZ I cZ cZh&`&bB/ . %M$M$TTT\\" H$Itq|# H$H$tq| I$H$S|! 88S|S|A$Tp|`&j.籌Kk5C1C. (65ӌ|N5M($t{~ `n$NsT .ےs ^5c$,c`x^W$[2+c+**&pxXH$I&ӄ A$ kI I$I$I$)'p󌳄A42@ 42 $42͚&,c`x^3ɟ Kk=5 ??pX^ $mӌ| [#`ӌqVzI$p sI$ϤP^x 6Lcjxpɟo,cV%)9I!0h׭ 7 8'׭x^W p$I$ӌ$ $42 42IA$42H42&HӌQ|`}>sXR<ə !i0|h6(?Mcx_U%k,cxWUUAI kJ$ kJII$kJ $kJI kJ 4o Mc,[ j>PkIJzz/Ij *+/"#^^xx$"A$H$ь|$æaۨ1P|p"@>+c^!(6N$PbxWh}n cW 7I$I*k*:I@5M ;7@4P_+دO/ [,6-d@'Ok^~'"I$M&kMcUWV\$"I$I$cb$"I$$cb$"H$I$cb#"@H$kR$"I I$cb" I$ $Mc [" 0I$Mc [# I5McZz!hZ'McHJzWP&IМ(B_W-qv޺mϤhJ-V`1|x`$ I$N1|tUUW\!  Q|nk$"I$H$|t$"I$I$|t$" $I |t$" I$|t$"I$ $|t sLc`ʍZ%%58  PϤQr~3X=|'Q c^VV 'I$-kbhVUUA I cZI cZH I cZHI$ cZI MkKJH$I cZP ZJp`1Ф(J *@!Bkzxxh!iviעMc S$" $I$cb$"A$I$cb$"$cb$"H$I$cb"9&Mc(BpxXX;I$I(B:yBՀm{\^.I'-HsU#ɟ$O+cx I$NRUxPr.RU^# @I6McR V$wMcZ$!MMMc c $" I$cb$6!Mc [`"K/HJ_חPr *@I9BU76"h2'|<|\^VW$"II$|t$"I$I|t'"I&1|tU])"@nQ|?U*` IQ|8**I$ Qgk&m9omkU^*Ѷ?oR^H nR5% I$Ir9p?,cxxr-RUU_ Iv [R XW,[R PEmcR lcRI lcRA$$lcR!fNdMc,[" @=Mc(J`pX1B% > 1b5-8"3'|$u\^VW$"I$ $ь|$"I$A$ь|$" $Iь|$"A$H$ь|$"@$H$ь|$"I$ $ь|$&h*)|@xMo c֗7%>I )B.)o5`ڴ'qMc\^WW @۶m$kJ @Ѣ-$kJ -жm$kJ$ömMc ["$"A$ cb$"$I$cb$"I$H$cb#@ (McZ`hMϜIJWו5Rm <B!AФ͉$O"'`\xI$nl@%I攗+$m $" $I$t$"I$I$t $I$T| A$I$S|$"I I$t$!I4M43$+]6tq &j$ҌlkpX\8Idֵ=?/:#d=??׭xX\^$"II5q$"$H5q$"I A5q$"I$$5q$"IH$5q$"I$I 5q$"I$I 5q#I)􌒄`"=sӌLc`X^ɔi4 1Lk% Խ0 3 ԽqQm6MϤoV7I9W`UO?Q/">I4h_W3I I 7 mќU4y)U8"'U7#D$U2#O$uUU/"$uUU*"f?I$UUUU'"ؚ$M!؃&h&ӌlkXX\\As+=ϯ<I$f@յ,z 2I|-U6m֭%9#8~$֭3zWU*"N'Tx^_"P1ӌLc````{Ϥlk)4$4@#4xppp$"I$I$5q$"A$I$5q$"I$ 5q$" $I$5q$ `*1P``"'LP,cܖ7:ɐ 1B.EO/"p{{ c\\VW$"H$ $,c c$"II$,c c$"IH$,c c$" $,c cNkJJ 0P9ZJ`pXIIR 3ɑ\I䔭Ϥ5W//'u_ wP -l>ӌsz=s$Lc`XV yulk- <I!4h1|z;-'Mcx^W $ImcZx: J%_&B9.k~z$~\粃k,[_^|xI$I kJH$@kJA$  kJA$I kJA kJh&`& [B0 pd(/s cVTTTH$ $ cZIAMkKJH$@$ cZH$$MkKJ  MkKJb&`%ZA0 ֭--%%*{?p?tT\\\#!I$ $tq|!  tq| H$I$S| $I$S|I 򌪺- R4jjpKpKkԔ1)Bva֭O#::ӌp󌳄^V^XI&ӌUk Mӌ/UWIX` Ҍ; Mnu 1s***IDI2,"/:UxxW 󌳄UUy'l 󌳄UUߪI$$ 󌳄UUϟ$󌳄UU!` 󌳄 $42H$H 429ӌMc`X.Nɝ+k=4!d`̃ %?5ӌ\VWU$42H A 42р(@ӌrzM2&lФq %U_ $I$ x 5ɕ o-58P>}$ӌx^WH$I$ӌA $42 H$42I$H$42I$ 42I42@ 42 ӌsx ڨmk '0its`xxp$] k,cWW^\H$IkJ$kJA$IkJI@kJ kJ@$I$kJI$I$kJ"Ȁ`McR`nHJ %70vHkN⁉"hXM'b^>IOb^խN cU+ 7Ii{ 9$m4/ ~;$$0|_U3"Ӕ|_UU'"h$M$0|thUV!9PsZp`. \IN,k-"PO|Mc^^xx$"H$ $cb$"A$I$cb$"I$I$cb$"H cb$!I$E6cb"A(:McRx!$,c(BzUX$InHJ_U It0HJ-I6mQ/ I$I2r( ,Vz~r.!|2?|WV\X" II$Q|mk$"I A$|t$"I$I$|t#"@$Q|s#$I$5|kz">tZ^&$sR_ HĉMR% . ɕxr``,{ c\\\XH HMkKJI$H$ cZI$ cZAH cZ @$ cZA@ cZ@NkJJ?'@ZIJxx ߯B%5(9H Ϥ{xzrh#KJs [$" I$cb$" $Icb$"I$I$cb$mvh[4Mc [hJ.(J_ח@ J- 7"??}qmc\VWW)"$ĎkMcUU)"fBsMc U, t"hI/mcU(IBns U&o,cx ps'-ZU^!PN.RV% /McZ U$<:Mc(BzșIHJ5%%  rz?vh(UPbp&"H8I80|tfVe$"I$I |t$"H A$|t$"I$I$|t$"H$I$|t%"I$I$|t'!ر$0|t UU%5b&|RxX!0{* I$A$r/ɛTCR|,MqMc^W ~2 Mc$h Lc~+vϏ탪RU RU^ nMcR\,[R $e$SMc [++$+.Mc,[X&{(B^_a1˃)+ 9 vit'!=tьq$"I$$ь|$"I$A$ь|$"I$Iь|#"IIь|$"I$I$ь|$"I I$ь|" 5q c``pɖi Ϥ c% .)o$qmczz! ضmuܮsR\R,[R)IMc,[IMc,[ Mc,[H$I kJkJkJ P=,c(B`pXɖ )(J%  I$Irh8h*3abrXn[u3Ҍ~kIn/I$M&Фnc?"pNIo+%4INь-#"I$ tqS|S|" I$I$tq|$ِmϖO3󌫫"  (s`HɝNlk59 )pAM 1#p'L$u\^VW#"AI$5q$"@ I$5q$"A I$5q$" $I5q$"H H$5q$"A$I$5q$"$$5q" 1&ӌLk`X\IQlk +I$I 來mۢm$͜h<I$յl ;u׭ x>Ь5:s`zz6ӉخLk-8%n5c1bbc&"$I$"I$I$"I$H$5q$" $I$5q$"HH$5q$"I I$5q$" I 5q$" $5q$" $5q"h&j&ӌlk\\\\ I}<$ZS94bpx+"ߏ$TU%"h$I$3$" $$3$"H$H$3z" ,k``11Lk- %5ZҔ$"I I$"@$A 5q$" $ $5q$kѶ5! 5b2'ӌLkpXV ɛoФLk%)2q$n-[xxMRU\ 唻ZjR+$$A{ cZ#!HIncjb$"I I$,c c @5ZIJ``&M$/J_W58I$Iսj{/8I? ׭W}xxN>'.U|9Ne5X&o [~*"ϤLk/:Ҝs x:X??~$ӔMcx^WUhҤI4Lc,[ kJ R̀`,[Rp`NC;.R %5&hA{Mc^zxI$I$Mc,[I$H kJAH$kJP Mc,[$a?Mc [ZU`=9,[(JXX1 I/ks*{b\\\\ A cZAMkKJ MkKJ $ cZꪪ$ cZ؃99Z(JXXXX0ɐ խk{----*hhڕ^\\\ H$I$T| l햶H$H$S|S|A$Sr| "(`` ȭ˿NLc771 vo4A$r|WX ϓӌxUU C&I6ӌl qI۳|Mv$ӌUUi-I'-Hp]_O揜|^z PNvܳ/ U_ {ӌ|+E" ӌ" - $ Qt4R$A 42h1ӌmcx`ɟ.,c\׵ 9 C&׭ % 0h'O$ӌx^WU $$4242I$@ 42  $42k3Æmӌ`k@q5W^z M"&ќN   MUW^xI$HR$ӌI 42I 42@ 42I 42A I42mSm6429ӌkx Hد,c55(ɑDIxrB*s>#|Mc^\Xx` Mc [(,[ [TU?,c [WU@,c [UU@Lc [UUUPMc [UUU`IvW,[ [ غaMc,[ꪪ k.>5/iJ__ XI$Мs :O'ibׯ9I$ĩ 9i0|~U7#J;$|~UU)"cR|\UUU$"I$I |t$"I I$|t$"I$H$|t" Ȁ`t c`ˍnZ %7.tA) nk^z)"c;kMcUWV\$"H$ $cb$][]5Mc,["8:McHJzu$,c(B_$}N(BWU%Im[ HJ +I$In=]1Iܦ01$mk_*93R(_ q1s, 8atxx mtKv|s$ @2|sz# Z?tZ~!$$sR~H'IRW O.ZU 577AҔ k*.o{*`xФ+c*-* (h`q-c^zzxI$I$ cZH$H$ cZ@$IMkKJ  cZꪪ  MkKJH cZꪪH  MkKJ$@ cZ꺪s&`9A_+ɑDIϤ/hKr. S?OMc^^Xx$"I$I$cb$" I$cb$"I$A$cb"(McR` H܉-(B7%:AV`Ҕ{Cbb'"H&m$kMcT^WW$"I$Acb$"I$I$cb$"I$I$cb'"]tI$kMc+UU)"dn/$sMc U*#@I{mcU(O"$.kU(wܫ`Z\b2'niJU* 1``1b BIIt޼;B#>3'u|xx\^$"I $|t$"@$I$|t$"A$A$|t$"$I$|t$"H I|t$" $A$|t$,(|sbhLoZ֗5i-m&mrzz-v8Ҝmc`ph˴umc [VWU6qIwLc [/rsmc [!X3IVs,[*U!~$ImcUb h.,cz.wO ZU~ `RU^ 4$:LciJx ț(B5% I //I$QO^z PrsW$ 0I.qs$$@w{$! $I&ь|$"II$ь|$"A I$ь|$!IH"ь| &r$p cXXܖQ{)+@1._y+kxpwɝ$RU^PNwRW0唻,cR+ H Mc [A$kJI$I$kJ@*),c [@`"Ln(B_ח5i- +-IIϜn87=&֭ppxX@$I򌪪mӢmzꪪZ#$o^I$j쮤 wI$m|+# N3o -I$@ S|I$I$S| I$T|$oo4򌯯!5&lk`pxX qФs-)>X[]?^$IQ #A{􌲌$!M4A45q$"II 5q#!I I$5q$"II$5q$" I$5q$Ê!q@poLc7%II$r串>Z>I$IԽ{~%<I h׭ ;"'׭^U/"ӌmk`X HߏLk- ;I D`׭M .j9UOXI$N&n ǶmZWpIRUWrϤZUUU"0Im? cIJ_P3'N/J_W%7Iĉ A* 7 !DhШ ,C?Uӌx^WUHӄPW^x iӌq^xO61s 8 !a.i53?~$Mcx^WU@I kJA $kJ A kJ HLc [ꪪ#P{J__%)R&}N9s,cW^\xI$@$kJ"@B&Mc [A4ILc [h (ХlcR5P9 [(BxxpX,I|O c#!-` `'{R^V;ZRUZR  $ cZ A$ cZ cZX5Z5ZBpppp1IXj----, /?\\\\$# ҄j@ ҄PII򌪕UYAy<򌪪UUAwr򌪪UU ,t`` ΛIMlk%1FS-֭qsrzI΢󌳄WvR6l:ӌUzzXM$-Tpm4-TpHTpM6M&Tp$N8ӌUUh-,c`, )Rk*) wW~PNn| _ ӌ|+ӌ hЪ5ӌLc`X'Np,cXV5I1p@Js=/ 6X'׵x^WW 42 $42  42 $ 42  42 I$42@@ӌ` 5Mk`lk* 0UW\P't&ӌH$42@$42$ H:ӌ` >ӌkz$Lc^U$Lc^Uɟkk%)**2@pf,vi)Kќk^~x Imc [~Tq'q [Z " H$ [Z$ [Z($I$ [ZI I$ [Z *@ [Z* I$ $ [Z ", [IJ`` |nHJ %;tik5k}u,"X['MB?|WWW$"I$I$|t$" I$|t$"I$I|t$"I$I$|t$"I$H$|t$"$I$|t$ҵ[W|sj" |.'j9/Z7^,I\IϤ{xj/bK:s [^#H:Mc(J^:NsHJ_U5 H{-(JU 2I$o ohR-2I@|(z17k_2$qMc_U.[O$PMc_UU"$I$mk,c`UUU P ,[iJ` qϤHJ -%&!90|ph O'1|Z^W['IRW NĶ ZU 577Ҝ k*4 i.U/4h[m| W3Jc?s_U$PmQ|kh~z-R77+B9 kxx%'z&s cUWV\I$I cZ $A cZ H cZꪮH$ cZI$@$MkKJ$I cZꪪ I$MkKJ1 ZAp`YmٖnB / Vh@qnk^zzx$"H$A$cb$"II$cb$"A$I$cb" ,5Mc(B``pN(J <%O9mk`ppx$" I cb$" $H$cb$"$I cb$"H $cb$"I I$cb$"AI$cb$"II$cb%"i4i$kMcuUU*"dϟkMcUU(Ps [*kڰR %%AI9BU65#p'M$Ӕ|\VVW$" $I|t$"A$H$|t$"A$ |t$"I$ |t$" $A$|t$" |t# 0tZ``IɐZ5% I $Խ/,IIqb~ZZ.P9#' [pxX\ 1lclJ6wLc [ HlcR  lcR6Ķ8Lc [* `mc [ #Զs,[ U# ~ mc U!S9.R_1Js **.I$rO^I$Iq"urϤϛ /1^*`'Ϥk^ PNws Ux% 4I.s+$$n/|-#` 1Kc`Hɝ c5?ɑCҜ I9+?Mc^W"I/Mc+U#O$kUU"I$@sU.ONR^*PrwNRUUx 6lkR\,cZ9,[B`xIRHJ5%  ;7ɕ 6?&/3#?s'֭\\^VAA$򌪪II$򌪪 vlqh$d3aҌX"N&in0 9I$ќn,Y OnUW^pI$ S|!I$IT|!4!6m3`&z$ьlkX4I$ɝn} -~3{z$ն ֯{UW`$Os UZ"PrsU$ Mӌs U% $ -s$HQ $æm󌲄$ 5ӌLc`p ɝ۹ФLk%%-)BIX$hМw5 > o~W2"O<_UU$"I$I$" $ $5q$ ",#-s````)ILk -7%csbbcc$"I$I $"I$H 5q$"I$I$5q#"5q$"I$A$5q$"$ $5q$"I I 5q$"$ $5q$!i$E45qh&h&Lk&IdIt׵=;#>>xxxx$"I$It#"$H$t$"I H t$"A$I t$Ӳ@̽ȍNLk7664A)Cu- ("K$J$#"$I$5q$ i*1s``NpLk\5<I\ɐֵ 5' :# 9C?׭`x^V$Xmӌzꪪ% [#&Hp^I$/%UII$I$ΜZ*-ۊ1br7I9b 7X׭x^%`''Uӌ\WUU$42H$$Rꪪ` 1ӌmk`sILc67%3H*mc`pxH4MMc,[AkJ@ H$kJ H kJH$AkJ(,cRhpOiJ %'fHCnnc_~!I$m&mk,[|5,cZ|@: [(B~$u [(JzW`$}N(BWUϤ,k'I$nIJWp$niRUU`oRUUWPn$MkIJU0InZ)JW bIJ*P5ZC:ZBpppz*ɕ|RZ))))/>3'\\\^@ S|@S|I$I$S| S|I$I$S| ,k```əɕ+c----3=>֭xxxx$0 Ԍ訪 X󌳄~^~^)Z M TpH I$TpH Tp $Tp$HTp5X"&,cpxX\5I|{==/4`ڶӌxxx\I&*HMӌ-U.I&|_/Pnwܲ| W&M䑌,cx^78Iɑ ֵ{?7 3'׵xX^H$NӌH$ 42@ H42H$H$42 42 $I42A 󌴌`*6ӌ,cx'IO,cXV2I9W`TJs dK'-+ @IUW\I1ӌ`@>ӌLc^6:N$,czU hmMLcW-$I$I3s (IT@u-}=*$hu ^?:mk(^#9XəϤszj¨ j&أ1s [^\xxH$I$ [Z I$  [Z m $ [ZH$I$ [Z "A$I$ [Z AI [Z"I$M3 [R a8: [IJzL(B'752\o0"3?=|V^\X#"A $Q|s$"I$H$|t$"I$I |t$" H$|t$"I$I$|t$"I I$|t$"A$I |t!X tZxp`YMOb  ɝZ^x1O[OHJU/ 3I{@0Jk 4 9qk W4?QMc_U){Mc_UU"h$I$nk-c\UUUkJ@ kJ@ kJ@Mc [jꪪL>j&NiJ5 vq۷1Mp"=OyBt{2IӔ /6h#[0| ~U3!$Ӕ|~UU' Q||UUU" $I$Q|mk X34[5|k$tsꪪj">5sRxp.\Iďs/>{ c^\Xp!I$IB cZ!I$I cZ I$H$ cZ@ H$ cZI$ $NkjJ!I$&$ cZ !I$0$ cZ [#( cjR` y˴ʋn(J %53B1osxx("M̤KkMcUWVT$"II$cb$"I$ $cb%#&j2',c(BpXX9IDɑ*k +">#>r2'mcXX\^$"H H$cb$"I Icb$"I$I$cb$"I$A$cb$"I$$cb$"I$H$cb#"II$cb$"I$H$cb$"A I$cb$*Ȑ.,McR@`HINHJ%%?vh(T0bp%"H$M$0|tTVVU$"@$I$|t$"H$I$|t$"$H$|t$"I$$|t$" $I$|t$"I$I|t$P9b&sRppXR Q c) I I$0C/I9b|h$h'M$| [\^VW [Z 9wLc [յ@lcRIIlcR$  lcR @ lcRA lcR!@r$]6McR*jhMN(B5%=I CUn%-7`=M$tWW'#Ԓqs * ~ I1|*IRqU)I$hp /I$OnxW p䯜s^$ФsU|'OМ+c^W i׭ks ?)afҜs``$kMcTWWU$ kJ $I$Mc,[ #tk,c UU#C sMc U"h ncU#? .Mch" my~ZUZ*Xۏ(BW7i-P{)  $r7C!a֭%p"'|TTTWWIH$򌪮@$ 򌺪S| It3򌪪#@۶3zꪪb@N^hL&N0W /#ٚF-tq|DL)p`HMĐlk%>C!a׭- 0غ?WW'# %;5xU+ #h@IVW )I24 w-$c 4 _u${U >ns_жsB'׭x\^$"$H$$"A H 5q$"I$I 5q$"I H$5q$ "-"-s````IiLk- 6%s,rbbcc$" $I$$"H$I$5q$" $A$5q$"$I$5q$"I$I$5q$"@H$5q$"I$ 5q$"I$I$5q$" $A$5qh&h&Lk9IDIn?=9">&֭3XXX\#"It$"I$H$t$" $H$t#"A$Itq# h6-tqz.p氌lk39 M %-"UV\\\$ۦ(1􌳄@"P#>s$ӌLkpX^8IISks;*:4׭Ҕx)"'v'XVUU$"II$5q$"A$I$5q#`􌲌x |"6 Rq5W_$N'N=IXKW:'x^W$c'I$ӌI$42HA42A$A$42&M,cx^׵6I\ Ks+*2&k'QMcx\\VHkJI$ $kJ$ $kJ@ @ kJ H1,[iJ`к:M{IJWU5*I<HJ& \s>NMc‹%#ІC'mkIJx\$ (B_U I.(JU-3I$yGOZ-1mnO-[hkR 2(qNkxZy2PФ cU*I9Ф.pm-I' @n{ _#$hN,k^ O.IJW #&6N(JU_Z ֶ$.V\Iw| W$w/| mQm򌪪$HSr|I$ $򌫺1P5Lk``pp-_sks=-=-2>h"?֭xX\\I$I$42p"HӌVI 󌳄I󌳄I"i󌳄ꪪy[ӌUWz ۺX5Q|@ hL| cܔ76ɐ )A׭N% *}uӌ\VVWni۶󌴄I􌐌j *I& @M UO$I&-5::!tnw׭ U%`m4 A 42H$I42 $I42 H 42HI42H1ӌr`ZC'ӌLcxW$uɓLcWյ+3h{=3/:}$ӌx_W|2'kX|I$ќn 9Lkx\ MLcU 1I$yG˃/3 $mM 1c_'~W#[?O$U~UU@$I$ӌhVuZ ,cx`^M6o c v`!Mc^|x~t>mc [UUV\I$I [Z" I$I [Z*I 6 [Z h׭5 [R@Ҹ: [B^M$mkB~U5 `۶(BUխi0qZ+ II$R[Pr3XӔ|Xxp`$"I$I$|t$"A$H$|t$"I I$|t$"H I |t$"I$I$|t$"I$I$|t$"II$|t#`|mc`KZ-%55ə|0Oz= ҈>Ӕmkx^^-!?I$sMcWUU$ $N$mc,c" I$I Mc [!NB&AkJ!I$i4kJ IҶ-kJ I$I kJ!IMkJ I$kJ5,[HJpp`ݖϤHJ :t`i3bjz)!`$w$Q||WUU# h$I&1|s$"I I$|t$"I$I$|t$"I H$|t$!H-$|tꪪ I$ { l#P sR`g1nR 2FhAqNczzx$"H$I -c c" I$I$NkJ M$H$NkjJI $MkKJ I cZA$I$MkKJH$@; cZ @>ZIJzȍJNB710|r2"|r>|McV^\\$" $ $cb$&h*)Mc [pL-(B5:  ӔM*6"pL'QMc\^VW$"IIcb$"I I$cb$"I$H$cb$" $ cb$"I$I$cb$"H$Icb$"A I$cb$"A$I$cb$"I$A$cb" 5Mc(B``p/ɝdI\ќHR--))@$#>C'4|pxX^$"A I |t$"I$ |t#"A$ $Q|s$"I$ |t$"I$A |t$"H H$|t$:!|sJJh$L䰜Zח5I Ϥ==-@ @~Z/ x:ѱMc`pHIӶ-cZTWUW)IQlclJ66Lc [AlcRH  lcRAlcRH$$lcR lcR0,[(B``IlIn(B 8!af4Occ"h$M$0|s\VWW I I{ l%" $I&|t'"ФI0||UUU+"`q| UU,R3A-g۲|U+ ~h0I1|U.IR&IМPU"I$|>Q/+//)II0zj?#/5>Ҕmc`pxX   I$Mc [I kJ@kJI I$kJI$A$kJI$I$kJ!퐤I$mk,c UUU! -1Mc(B``HJ I$A Խq UI$Ir`7x:3acrh$h2A$$򌪮@$I$򌺪IH$򌫪- ꪪ AI$S|@6mҶ3Ҍꪪ /|XpI$K%Ф. %!Ptn " 5Lk`x Lk%: v`V!h$ӌWI$I$4R#^mӌ#PIӌ*)"`<4 Uu-"֒$UU+#DUӌx+i I4-ޠ&ڠ-s*;Iϐ׭%%%2"#'r'\\^V$" H 5q$" $$5q$" H$5q$"AI5q" ,,s````)iLk 6&,sccbc$"I$$$"II$5q$"H$I$5q$"HI$5q$" $I$5q$"I$I 5q$" $I$5q$"I$I$5q$"I $5qh&h&Lkܜ9IɑM77=8#h&h&֭3\\\\$"I$$t$"A$H$t$"II$t$"I$I$t$!i 43h&`%lk\XXX2ɐI-%'551!>u\\\X"P#&ӌ,cpX ΟLk-)>B&h׭- 4"C'?x^WW$"I$I5q$"A I$5q$"I$$5q$"I$I$5q$R#$H󌒄`#3 iҔP*O'4n]  N􌐌 -I$@$4R$$42A $42H1ӌs` Hlk) 61Ansh\$?}B'k,c\VWWA$kJ$HkJAH$Lc [h-:,[(JZX'Ĩ(B_W 3I|P@PgR2XMqMcx_>J7_4y$ks!;I~w{x/ @[QMcW1־QMc~UU%6m֯kZh~Ż ۬{iJ%57.SOF{ cpp``PZZXx梏NZ 5$Iw.Nk^X`$Кo?s c UW%msZ*U)3 Ԗ c $ Фk UUI'կZ / NpI'Ф|^Prv߱|U| /|/ IpP9أ%ҌLkppXX3I{----,&j"'\\\\I$H42HA$42@I42H$$424Rh&6ӌ , c` o c5%- 7 f*H'tB'ӌT^^_2󌳄$H 42)iӌ `ӌ%UUUI>' @Mӌ+5UnIJ' W rӌQ - -ӌ I @42I 42 @5ӌsx*:}䲌,cxW4I$I +k3`@/C'O$ӌx^WU@ $ӌXѐ `ӌkx|>k -%70xIDV>>4)'m׭󔽪^/6$ӌ_U&`'I$5ӌ_UU@"(!󌳄I$I$0|I$H$|"6IQ|@=j o,c'6 I\I{zb":X| [_^xxH$H$ [Z(6H & [Rh& [B^&I{9_-L@(JU Jk,I7%/.I6i-[I'p'q c4vA!CҔ0bˆ'"MҤH$0|tVTT$" $A|t#"A$A Q|s$"II |t$" $I|t$"I$ $|t$"I |t$"A$ $0|s"s&9|ZXɑI 0(h0Mcxx`" I$I$Mc [" I I$Mc ["!H$I$Mc [ I$kJ! @kR" A$I$Mc [" $I Mc [# M6$Mc [(" A$I$Mc [$ #*McR` JHJ %%1!C򜐔de+"}xr|WVT\$"I I$|t$"I$I$|t$"II |t$"I$I |t$"I$$|t$"I I|t"`|k`MJ oZ%'71!{|~x,"'xs cWV\\" I$INkJ M$H$NkjJ ض6bZp:Z)J~$$ZB~U:I$.)JUU- hmJU+}rdФB5 &II$1onbh5!=Qmc\Xxp$"A$cb# ,McIJ`I (J%% <)Av`Ҝ{cb*"?tlۮkMcTVVU$"H $cb#"I$@kR$"H$I$cb$"H$I$cb#"A$I cb$"A $cb$"I$I$cb$"I$I$cb$"IA$cb!=X&Mc(JxXX c,8$ќmc^^ Ivs,c*^# I-t,c$ |k $h۵m|s*$"I$I$|t$"A$I$|t#0tZ`Mɐ Z5% A$I$02,IIqx\^/>#',[xX\^A [R껻6$I [ZN,c [ @lcRI$lcR@$  lcRHlcRA$$lcRP9&,[BpxXXnHR7E/5>4|ppxX$0|mc! ؉|s$"I$I$|t$"H$H$|t$"H$ $|t$"@ I$|t%"I&I$|t*&!6mҶ0|tZZV &r'PR>?ɕI M /59">s'McX\^V *آ%Mc,[A A kJIkJ@AkJHkJI kJ@$$kJP5&,[B`pXXٔ P 1R  I$I$ԽqPP)IIr:5BpxxX򌪺I򌪪I A$Sr|@ ASr|H$Sr|@$ASr| $򌪪` 3Ҍ~ch/^xI$K>Ϥ.-PC:cmk^^gks" 7OR5b`pp(ӌHH42H$A$42  m$ӌ $Aۖ$ӌ!۴A$?ӌ$ J#,Q@H͝܏Lk755> @9C׭M ."'{?UTTVV$"I$H5q$"AI$5q$"@$H$5q#"  5q# -,s```` iMLc 6%s0r,ccbb$"I H$$"$$5q$"I$I$5q$"I$ $5q$"II$5q#"I$I5q$"A$I$5q$"I$H$5q#؊mۺ!h&x$p,c8ɑֵn5774#h&h֭3\\\\#"I$@tq$"I$H$t$"A$A$t$"A$A$t$"H$I$t"9P5lkXxxp/ɑIdt===2 5uMc`pɟOLkT5-<IA / ="P/'׭px^W$"H$I$$"I$A$5q$"I$I5q$"I$A 5q$"I I5q$"I$A$5q#dB2$AӌZ*$cIӌPWIs5NGW0SӌUWx M&@ӌ@-ӌ0|`#&|䒄,c`XV3y5 ѕ.``!9I$sP`"l`{McW__|I$I$kJ`5,cRh$,c(B^)~(JU 2 hq*k) 2*u$qMcx_U h6mmk,[ P@,cRx`.R %.(՘iPmcx^~| -c,[miv-c,[E -$Mc [{>rlsiJ7(v@AMkbbCp cZ~# iZRpN0 R %5!DAS-cUV\pm6m6-cZIIMc [ $I$kJ 1P5 [(Bppp0ϕX*k+)--2 s^"IR?*3N~^В$o|WȢ`'N~lk^ר7K )ڳTWI42H42 $A$42I 42@$I42hR4h$QtP9`&,cpxX\-IdɑSKs9)+1P>ӌpxX\A$@$Q|󌳄@A 42A 42$A42@H$ӌkXhӌ p Ę{ 1/ -4Hӌh=>ӌmc`^$Io,cXW8I9AJs/4;ַ'$I$Uӌx_UUH$42IA 42@Sж42#:XѳkXx`II$Фs+ (hUࣁI$Hӌ@$$42 ӌ@I$I |I$I0|A$I |X mcXp`dea+k-#Hې [zx\PiJ: [B_8>OsB_-IWN9-)I${s"+ISiФs_+hc]qMc~U*<0 [~UU"xsk [h}}LJ niJ%%5719IҜn'/"}'r|WV^\$" H$|t$"I I$|t#"@$|t$"I$I$|t#"A|t$"I$I$|t$"A$I$|t"P sZp``!!Z 0B1Kk~x%'kMcUWTT @-$kJ 5Mc,[I$I$kJ$ Mc,[$Mc,[Mc,[  $I$kJ h$I$kJ!B2,KMc,[jjL>j&NiJ51\In->s\\Xx!TiI$|k mm$|k!m$|k  f|k!۠M$|k!h$M$|s!mô$|sr&X9{RX2\IФ._o/bX9{Rx: cB^ $bB_['I$.BU HwzNBU "I$I oHR0I0_/In is_/ 60Zzڻ؎IJ %8hhikzxj$"A A cb"4=Mc(B`pxX qv(B <Z-Ҕkb`px$"H$I$cb$"$I$cb$"A$ $cb$"H$A$cb$"I$I$cb$"I$ $cb$" $ $cb$" Icb$"I$ $cb$!M$H$Mc [hzs(Jޖ$I$IRn ;4I$2k^^$I:郎{z p+cWp$n,cW`ɟ$NLcUW Iws,c*_# It,c#5&sR`pX^I` ҽ k)+  0|;pQlj#/?{'| [\\VW $I [RIA4lclJ tK,c [H lcRIHlcRH $lcRlcRH$lcR`zsBޞ3ɗ4n5'3sX\^V1|mc II$0|mc! $|s$"I$I$|t#"H$|t$"H$I |t$"I $|t#I )sk@H$L R75;9C!tAҔJb."x'$sMc\VWW#dڭMc [ A kJ$ $kJ $ kJIkJkJ $Mc [h"'Ko(BWחi-Ϥ/ Խ/@5ɕ ֵ6/&4>'֭\\^V I򌪪@Sr| $Sr|I$I$S|IH Sr|$Sr|@@ 0 mӶ@mn/`&Lc>XXmio5-IDɑ<>5>>xX\\@ @ 42H$ $42 I42H@42A $42 42!nfӌ+# ,s`` 1Lk%<1B!BM("p$J$$"I$I 5q$"I$I5q$"I H$5q$"H$I5q& "/s````qonLk - 4 6hi$"A$I$$"I I$5q$"I$I5q$m9􌳄h$@T;0|~# 'sW"Hc$ӌLkU! m$ӌLc_U6I,c~U+Mt)PLc5 6IխФ4">֭3\\\\$"@I$t$"I$H$t$"I$I$t$" I$t$"A$I$t"P1lkp```_Мs )) 2#&tR'4LkpXܾ=I{/;" И׭`x^&"@N'$"II 5q$"$I5q$"I$H$5q$"A$I5q$"I$I 5q#"H  5q$" $I$5q$!I)ӌ~$ k# iP^xI4':| 9ӌo-f-:t䳌Lc`X^*I$I1+c*/#]۶r|x~}>ѐs-x! ɑĎkVRj h 5mcIJx&N{(B~_%3Iup'J)"0)0qk `^-O?$0Mcx^UUh&mkJIA$kJ$$Lc [ꪪ k:PmkR^^z(1P.R"|k,[V\xpII$-c,[Mc,[ꪪ5,[HJX+K |{ˉ #?kZV^H,[ZU  [RxѿuR꫍5  McUW^xv8Mc [I kJP5P5 [(Bpppp. k)---/h&h&\\\\m$I$Tp|"ÒI$3UU!` 3o^"I' 4nW#ON}pЖ'sWx Pnv۳{/_ ӌ|+ذmtӌ-$ 42( ӌ -ӌr`hLP cܔ7- 1BN% *h>vӌ\^VWhҶHQt󌴄  42A$H$42H 42H$  42Ь9,cxpɝoLc% 6Iok '+!ɐUM 7$l+X+?5ӌWV\\ӌ  ӌA$I |qIӌߵ  $B ӌmkj\S%0|@j 毜Mc%7 DZ1{xNHJU*Iܯ@p*k-)y5pmc_,&$q,[WU Os [WUU; [Z MФm [Z(( >C,c [奥 s&b9sIJ+ɑIМ 4#j>CӔ|\Xxp$" $I$|t$"I$I |t$"H$ $|t$"H$I |t$"I$H$|t$"A$I$|t#" H$|t# |mc`ˍ܏Z5, ɑd/zpzr,|"'>|McV^\XI kJPMc,[$ kJAIkJIAkJH$kJ@HkJ@$HkJI@$kJ`9P5 [Bp` q{Ks -:Ҕ|Xxrb$ ssI$I0|nc@ 0|ncA$ 0|ncA$0|ncIA$0|ncH$I 0|ncP5sRxp``&qr!rZ !M: B~^ INBU,[ NiR-1I@̯_0ImnkW1$Q-c_U.${ c~UU$`mINk cpUUU(I cZ`jLJ'n)J%554!C ||zrr*"}{;sMcWVV\"`&r$s(B^ޞ6IdIќ )8=">mcxxX\$"H$I$cb$"H$Hcb#" H kR$"AI$cb$"I$I$cb$"I$H$cb$" I$cb$"$I cb$"I$I$cb$& ,McR@H (J75%=T`4|p5#ɾO$Ӕ|UU-"Io䒌tU, I1|*U-I oS|*+I$ qU,ɟ$~` _ I:KkW* HYФZU"IIm *$@$r h:!Zќnc``McRw [RA$HlclJHIMc [AlcRI lcRA lcRIHlcR ),[R` H̝-(B55%2C1b4N$pKrs\VVW1|mc1|mc 1|mc 1|mc1|mcI$I$1|mc II{ l$ 1|Z` ɝqNR% : f(kb`p%"H$M4mcMcTWVu k&h&Mc,[A kJA$IkJA kJ AkJHkJ  (,cR@ Hɛ1HJ5%% I$H$Խ0Oln6C)a֭ '/?TTTWW@ HꪪI$H򌪪I$I$S|!Aӡ0T|@ @A$Sr|@$@$ࠨ 8҄`h=&,c^h$I,c^W-iѢ-Z6 Ϥ?&&-/&'ӌ\\^^$I$42@ 42@A$42@@$42 H$42A$I42"IdI5Q$5P5ӌLc``pp1s <a`׭n%"H4M$#" $@5q$"I$I$5q$"I$I5q$"A @5q" ,s````ilI ФLc--- ,!Id4 7)ibM?Lk^" $ӌLc_UILkU'IOLkU В$Lc_U IQLkUIrsUIӶmm- I$ӽϤu"I$I$ӽ0?5IDI5">93XXXx$" $I t$" $H$t$"H$ t$"I$I$t$"A$@t" ,,s````I IϤlk 5$Im?:P@׭ ."w$UX^_U$"I$I$5q$"I I 5q$"I$I$5q#" @$5q$"$ $5q$"H$A5q#"$$5q$"I$ $5q$ !H5q$!I$M 4r#R ӌ|V\p` Mؽs/%O'I1s(7A׭%  H$ӌXЀ@ӌtx棏Ѱs -7CiJ^ 3'@pZ 3ѫ'qMc^W%]k,cxWUUH $kJI kJIkJH AkJ,cZp@#-`&̃iJ'W fi.R~\X жLkiJU Вɟ$,cJUPC>m>Z(Bpz_'?WOZ" bK?kB^m$ [(BW4IKcBU+ X$.HJU9|$kZc H-[W_~I$I$Mc,[P5P5 [(Bpppp/ k----.j&p'\\\\  $Sr|$򌪪AASr|!鐤I$3 !nq3󌀊 l M~I$X>Мs( I?{Uz$s\ 7ӌ{+ @Jӌq|- 0ӌ,c` ϛynLk5%-2f(HڴM۴󌳄H4h$Qt󌳄(E42@4R@$@42h*1ӌk`hɟO,c\5%;Id B֭?/ 8Œ'׭x\V hӌ|XxI$|>Ϥ%7FM$M$ӌH$$42$ 42H I$42$$42 @$42  425 mkx`%IO'1s.)UӌXxpӌ" ӌjL$H$ӌV@A ӌ1tIm󌳄9&,cXXXX&!q탪!/yo10~X/`M?}',[^WWh$IMc [|UUU I [Z*I $ [Z*I$H [Z @$I$ [Z((DIDMc [P5,[HJxpp`'q皎Z 3fhaҔ0|rb$"A$A |t$"H$I$|t$"I$I|t$"II$|t$!@ҤI$0|s#A>|kz$ @V?|,c_hk'sRWxOМR5'1ncz.X-0Mcxxp`A kJ $IkJ$ kJ@ kJA$@ kJHI$kJA A$kJ kJ@$kJ ,[IJ``!1萏(J ,A)Qjh"MB' 1|sWWV\H$A$0|nc 0|ncI$ 0|ncA$ 0|nc$ 0|nc@0|nc  s,c``1 PR %7IPhz0 q'6Q-c_2$1 c_U+{ c_UU X&M6-kbhUUU@$ cZ$I cZ@I MkKJH$H cZꪺr&`= J_5IId/@s3 5|RxxHɟHJ5%<ɐ Ҝn '7"#''QMc\\^V$"A $cb$"A $cb$"II$cb$"I$A$cb$"I$Icb$"I I$cb$"I$I$cb$"HA$cb$"I Hcb" 0McHJ``5ɝќ(J--):#=&4|xXX\$" $A$|t$"A$A$|t$!M&m$0|s$"I$I$0|t)UUU)"I'Q|UU+"䖏mcpxXX$"@$A$cb h6C34Mc,[@ kJ@ kJ$I$kJ $kJA kJ 5,[(B``p(B $I$ӽ0=0m&mӽϤ`bnl6 vH֭Дpb'N82IISr|$򌪮I$I$S|!՚.隢3뫫 򌪾I6/|`k$Lcx^U Hqۚ,cW- iQ(QM * $HCO4K)B &5ӌ\\VVA$I 42  @ 42H $42IA 42H$ $42@$42I$I$4R؃%b&ӌLcXX\\I-R)> xhє$"I$I$5q$"I$I$5q$"I$ $5q$"I$I$5q$! $I$5q#1s````ii,c -I$IRp^z6~$=ќs^4I$Ӕ 6Ir I 1/&pRi /ԽPjI$I$ԽP3I$ $ԽqTAI$I$Խq@eI$I Խqe ?`r7#/9P5֭3xppp$!i$I63z#$I$:z# V?|_"I#'lkU#$lkWUS'Ilk`_U/)0`s-- :A%6#C'N$x^WW$"I I$5q$"I$I 5q$"I$ 5q$"IA 5q$"I I 5q$"I$I5q$"II 5q$҆mڶ$ӌV Æa6Ԍ$ӌr|W"$$0t 5u$ӌ,cx^WϤlk%-+6p׭% 4C?~$x^WU A42I$42  `ӌsXhOk6s/VmpOk`^\p!M$M&mk,cVUVXI$kJ $kJ $kJ I$kJ I(Mc [j͢C',[Bx^/N$I(Jյ+2Im +m IV(I Ĩ(IBր(Plk` nh؏iR  }?OZU+I$w)Js*(I U)I^N i//~& =qmcxziNmkXr !&IAsMcW__|P5X5McBxxxx/II*k-----p'p&\\\\ASr|@򌪪@$AꪪI$򌪺 HjzZZ 1ӌMcpHɝnLc% 7IdA )IB?+m5nzɝ$N9p `ry܏|-z(3>uQ|WT\\$$:|k~":tZ_! $tZ_UI/RU/И$IRUH$ZU I HZ qY-{- "I$I$rϤxH+vA)s^~|"ML' mk,cUVTT@A$kJI$H$kJA $kJ Mc,[I$Mc,[I$Mc [Mc,[ kJ"(`,cZ@@ˍnHJ%%571ɔ\񤐔tؓ/~2sV^\X vI|k IҶ|k Im$ |k m|k IҶ6|k m)I$6skx@:sZ~ JL-R'7757vijpsbzzx"t$` ' cR!uh cZI$I cZ@I$ cZ AMkKJ $$MkKJ MkKJHI cZ5ZBxp``nZ3%bB'0(BxXibHJ ;1Ba|hj+"?}?sMcTVVW$"HI cb$"I$H$cb$"I$@ cb$" $I cb$"A$A$cb$"H$ $cb$"I$I$cb$"@$A$cb$"I I$cb"5=Lc(B`pxX99gR)) 6"h"z?|\\^V$"I$I$|t$" $I$|t$"H$H$|t#"A |t$" @|t$"I$I$|t$"H A$|t" ,|Z``ɐ I Z%- $OB0r*2$1,jH$I$R~ݐ$I$HJU JUU$ iJUWIn [iJ*^ % [iJ H [R&,[Z5& [B`pxX$oR 0&spxX\4sk~"skU$IV,Ats***$ym |sU*$ϿiضI|sU*$"m$H|sU $M&M|sU$I.A6|sU X&j"'sRXXܜ5ɑəМ탹7X+'PR^$wMcZ f۵Mc [Mb,[U_-mLc [mRLc [1b,[W__kJ=`&,[BpXX] *k))* I$I$ԽqIIb4 ZM'Q|^ p mE򌪪 $I ꪪHI򌪪! S|@ @*:Lkx`C'IєKcx^եILk 8I$׵WW 6q&t+cm۶mQ}5 af H$L$ӌI@ 42  42$42I 42 $42H$H$42 ,ӌpK䏌,cܖ7  1ArsQ~#X?s_" id$ӌLcU4O$LkUS'ILkzWU*ɖVlk C thXuPcs7"O$Ӕ|UU/"fI|_UU("8qR|UUU"h"'j"'sZ؜)) +I$I$ԽqURI$I$ԽqTaI$I$Խq@TDDI$I$Խq I$I$Խq@QQU@4@\n36U>sbZ"I$ҌkkU$lkUH7KϤlkUիI~۶ms+/I$ t3I$n hU1( !53J9ќ]%i$"I$I$5q$"I @$5q$"I$I5q$"I$I$5q$"I$I$5q$"@$H$5q$"II$5q Mmӄ!ӌuNm`ӌr|W/1X$r|,c`XIϤZ 2I h׭5 2??'x^WU @ӌA 42@  42 @󌴌ꪪ  sx~R's`!@omcUUV\iӤh&Mc,[  kJH$kJ I5,cZp$ [(B`X4Oo(J 41`@{ x)O~sxVWU -Its 8I8|sUUU 15sR``ppoZ 5H[9tpx(sUU# I$Qs_UUXWǵ{sUUUPmskxj? 5 Z 7^ k^^j9#4mk(Bxxxx0IIխ k----,h&p&\\\\I$$򌪮A I$򌪮@ H򌺪H 򌪪`-r`أ&L䲌,cX\֗5II {/6 3?px^!hۤI$ӌUU 4Jӌz}M#5UUI$jM*sɝ$uM+}(m喒5PI$"ӌI$I 1t  󌳄@ $Qt ӌj 0&ӌLc`X^.I$I+c+7)``׭ *S'$Uӌ|^WUA 42I$@ 42ӌp36Z {x'A94 5#O?{ӌWV\x A42 I$42I  42H$42(mð6ӌ 6:ӌkz=s$ӌ,cxX^U+ɑDI$S{9=*:XUӌ\xp(1ӌq`h8:Lc^}$,cWX$}Ф,c^UIn+QLkU I۶mѶn=IH$Խ0 O$nb#P-Mc^\xxII [Z(H$ [Z"I$H [Z " I$I [Z" A A$ [Z y,[ [:Mc [kLr揜iJ55ɑI$1nXc#nrR~^X$mnR_U/I@nRU+ m۶mZ-6I$IR m3e 4I$/3IIp@~4-PU. :Ӕcz=۾qZ--.9 0|zrp*M$K's,cVV\\AHkJ kJI$  kJAkJH$kJHMc,[iMc [I Mc,[ꪪ6C Mc [ꪪrjIJ#II-1S:Ӕsxxxx!J2tncj" m?t [(W!@e?sZU m$sR~U$I{R~U-$Ir.RU {] .ZUI=AoZ-31Ϥ{~~x-"}zs cWV^\!JI cZ IҶl cZ vmH cZ v<&H cZ c;( cZ!vl$ m cZ!dA cZ$ # cIJ`yypϤ(J %`&IQR& I$I$_~5va$Z~^"InMciJ*T%$I%McR#McZ$!h"cb$" $I cb$" $I$cb$"A I cb$"A$Icb#"HA kR$!IH&cb!`&r',c(JXܜ: )B5̃ ,"p2?r|TTWW$"I$I|t$"I$H$|t$"I $|t$"I I$|t$"I$I$|t$"$I|t#"$$Q|s#5P9sR``ppqU Z ;fh(Ҝk`x,Ҽ/McU~h$ mcUU*I$I kU&I$ ϤsU'I$Ϥ{ UI$IoKkx.v&ohRW pvnIJU_ ` IJU~ `InBWՕ6ɕ\I4˃=?*+j>ꏑkX\\!I$IB|s I$I0|mc$ɔgm|s$"I$I |t$"I$A$|t$"II$|t$" $ |t$ -|shxLoR77mnֶRϜg dvZ^`篜RUWRUUWIwkiJx $%,[iJMcRIMc [a-Mc [hKo(Bח)nnԽ%5=;I$I$ԽqD% avnll|~X'Ϥk^I$sU`ɟ$s W @nvs*_ -s/| $lkXWx$ɟNKcV 7I$Iֵ˃ 8I&׭ 78}$_U!h2's2'+c {2}7oUC9bbrp@$Hӌ@$42I @42$H42#va5Q@4RH $42  ,ӌs`șx pLc5%% sn4ѢC'Lkx^:IqLc~U/$mۯlk_UI$LkUIМls""4I$IMu}4I̕N` -۰[Ϥs@$VC59U0|rrxx$"A I|t$"I$ |t$"H$I |th&h&sR)i+) I$[ض"U $I n" /n*$I ow$I-rn?1N^Œ0I$MnuW 4IܜM7 $mn4@ֵ3 W6#$$֭3WU1 -z簔k 6 RoN$OX$ 4 rP /$ 6Hӌ$" $A5q$"H$I5q$"@$ $5q$" $H 5q$"II5q$"I 5q mЮ1󌳌h&Lc`x^ Nع}olkյ)7 4ho5 4P&}$֭x^WUH$@$ӌH @ 42 H$42H$I$42I$H$42@mӌ#=,c.xXI$שּׂsZj!l`{McW_|M$I6kJ1,cR` 5l$ c(Bx^6I$IќGJ+ 9)ThШ| `X,Csx^WU$ sk ts 0|ncP9%sRxxXX'IdIKk!++29#>sxxXXII${[ $I${[@$I${[II${[Z5P9kRppppݐa0+k -7iJ^x`1IOTks-))++'\\\VH$򌪫A$򌪪 H$򌪪H$򌪪P>Mc`xXɟɟLc)#5!`Ao '''5ӌ\^WUI @ 42I H42 $I$ӌ c;ӌꪯjN/UU1bӌ-0M&ӌ/ Wu 吗ӌ0|+- ӌ)@Qt` 5ӌMcpHɟN,c֗ 4ɐh- 1'~$ӌx^WU $I42A @ 42b۰5ӌ>ӌmkz l$Lc`^U"М+c+% & h@5oI$I$ӌA$6ӌrx>ӌk^$$,c~UH?IP,c^+ pmN,cW#?@М+k *?2s5)v!tsjz'Ip,cW I6`,cU(1Фs (I$I2j-I$IBt (I$ tȷ%I$hv $h"'|!A)Мk|xzO<|mc [UWVTI A$ [Z"Eiд [Z"@$I [Z Iдi& [Z* lclJMc [j>5 [(Jpm1ks +=I$7W@T|6I IN[6+mPW7! m<|U6!F$|UU0 V糌tUU&(QsWUUh$I$|s~UUU*smk@ ʋR%%57.ɑDIOxzjz./90Mc^\XxII$kJ  kJ@ $kJ@$I kJI$I$kJ($Mc,[0M&Mc [Y?,cZ_ ',cJ_=k$,[(BX^i{'x1ܰncxxM;{ZzW$RUU ,I pZU 0. Ҕjs3I A 5ImӔ4yFӔ0|+U2 Z36ӌZ`zz0NoLk0>>{ c\\XX$"I$I$,c c$"I$H,c c I$H$ cZ$" I$,c c$"A$H$,c c$"I$I$,c c$"A$I$,c c$"( cZ@ͿJn)J%%7I$ $嵐-I$@$ԽQTQPI$I$BʂI$$sh ضǯIJWI$RUWВoiJU_"@NkRUX% 4 .McR"McR $4AvMc [+$"I$I$cb$,,McZ@HM(B7%%<vhF4b$" I|t$"A I$|t$"I$|t$"I$I$|t$" I$|t$" $I$|t$"I$I$|t#"@ $|t#&`&sRPXXɗФ{)<$b9#>Ӕmcxxxx%"H&Hcb" I$I$Mc [ &"$N'kMcUUU+"sMc*UU+"sMcUU/"@nsMc*U0m$ٶ|McU-~0Iok U,I"msUU(I$X [=9C)jUo,"#;8r|TTWW$" $I$|t$"H$A$|t$" $I |t$"A$I|t$"I A$|t$"A $|t$!M)&0|s$ 1|Z`L ФZ%%%-:IܯpI1Pz7I$msW+I'{U*I$Ϥ{(U$I${w~mNZ^ >RU^$ iJUD's(B_HiB5% I$I$Խ/5I$IԽqAE5Idɑ۾5~ІєWx!I>m+UU!I$@^UXI$IM2I${W ?ϤsUW8I$Iks/7I m 6$׭_U(`?$Uӌ_UUI$$42h&h&q,cܜ#I|ɑ3-662 X&1|^$ӌtU ۖӌ|Uۖ$ӌ0|U0$ӌ0| U"۰MQ*Ur*U@ӌrU ,5ӌLc``pzɐqLk-)) kϤ@|o~$IbMw,I$+unW/Ium4IL I 3]?_3F$WU).5Z5Mk`zzz%Lk )=!>#>4|xXXX!0M95|s!m$|k ð ۖ|kpp.R Rͳ? vh40|b1 Im$ӔtU1mmӔsU/$mm?ӔsU&Ј'kUXtB'OjJ89Kn 56~W0"X<3_UU'"C6I4T$"I I t$"A I$t$ ;4C83jjjjz.'p&lk9 ,/ -mUOxx9|5-^! x. /$0 N􌒄-$"I$$5q$"I$I$5q$"I$I$5q$"I$ 5q$ HD25q Z3&ӌLcpX HܹO,c5 5ɗ!@`׭M- 6P>|$ӌx^Wh$I$ӌ @42@@$42I 4242 42h*1ӌk``$NOLc\֕%I$I)!! ɕ﬍k^Xj!*1mcR`/&LsBz^55I$IGR*8!4hШT|x^*'䒌s\WUUA$H0|ncذC'ss6tsH$ts`&j&sRXX0ɕ=//+,>ӔsX\\\I$I${[ $I${[A @${[I@$sk&b"'kRXX\ {)+**I$I$n#OI$r{W${W^ @Nw|+V w/ @$$򌪪@,/|`hM,c\֗56IB % 6'׭x\^WH$I$42$A$42AA42@@ 42I 426h18ӌ`Z&Mcx^ `IФlk*-%w?5ФW~@Jo| W I$[?ӌmkWX'IpLcXV3I )`@js= 4P>|'p\VW6l+5ӌ` 6:ӌkzh$ӌLc~U&Ip,c^U-Hn۶LcUի@s 2ig')Hm C'ӌLc^V'IO,cWՊ#OKkUտ+.I$7%uks*-InNHu.+01Fv--*d:v`~̿ [ ''7ɓ䉕 W~7/IRHoU/ mU/A$k/U/m$ӌU2FUU%6Uӌ_UU]??_UU-hƱLc6#|Ϥ|~rp$>s [^\\XA$I [ZAm [ZH$I$ [ZI$I [Z*("wO,[ [P@Mc,[ ,[(Jp` HJ 8tijtqy' ~Q|UUU# E$I$1|s# IRI$Q|mk# I H$Q|mk# M$AQ|mk M$H$0|mc$A0|nc(-ZssKpR ?mx.-PMcxpp` @ kJ(h6Lc [$D?,cR~V?,ciJ_Hc$,[(BU4~$ [(JWIOHJUU+К$mHJUUK] 1(BU*IZO$ 1hR+I$I$0Uq;It SoX3-IЦ|ר^.1M粌| U00|WU/"|UU+"kr|UUU'"X$I$0||PUUU$"@$|t# |Z```nZ 3?-cXxp`!iնa cZ!mM$ cZ*!-cZ^^$I$I cZ$"A $,c c$"I$I$,c c$"H$I$,c c$"I $,c cj9ms)J^)iq   Խ/?Oo?IAq~=~mҜkW.O IkU-I kU-IsU.I$" n{U,$@oZ^!v{ORUzPnq?{RU!@nl?̓RUx!($Mc(Jj_Uɟ.(J% =$U5>40|ppxX$"H$A$|t$" I$|t$"A$ $|t$"I$H$|t$"I$I$|t$"I$A$|t$"I$I$|t$!@ӤA&0|sh"'J/Rޖ<IDɑќm 9##>j>mcXX\\$kmh6cb HI$kJ$!I M$cb$"H I$cb$"H$I$cb$"I$A$cb$" $@$cb$"IA$cb& \/kMcUUU /L.(Jޗ4!KҜ{`%I#|McW$$|k $҆AЖ|s$"I$A$|t$"I$ |t$"A$ |t$"$H$|t$@"A$H|sZ,@9sR``ppyr!uZ ;h:k`pp("p8I$kMcUUU)"`ۮkMc UU%4cۮsMcUU&PJɟ$s,cU)4I{McU'DMcU' hM/ncU$OB-oR _IdHdQ k I$I$ԽqMPI$I$ԽO|s3IϜ6/?#?v\\\\!$I$ӌ+UU&UU#`>moӌ%#I@J5^*4INmMU*6'~U,$I$vӌx_UUA$ӌ  42I$A42h&h&q+cɑIqSo۰Lk\ Im LkU$`LkU**$ۺmnMkU"($-InmkUU* $NkUU * 'k.McU nMcU P$n,c_U  61g@Fb.m$uU.D$vUU*XI$U_UU#@6I4ӌ #%#%ӄ# i&@$5q P59ӌLcpppx:Is-)-=8!>r"'|X\\\  -.|k $ 0|nc@ 1|mcrx珔R1!8Pcbbc I ss@4ts A{ l!I 6h|kj&`%sRX<@L֭-+"t3VTTT$" $$t$"I t$"I$I$t  $򌪪!?3h`&Ҍlk\\\2ɐ Tu- -'-.ڠ=?U\\\\hm􌑄~蠪O&-R$N~(  P ۶ $ӄ ۀ k$ӄ Iӄ"+6ӌLcxpɟNLcV5 5IpA-559'֭x^W@$A ӌII$42@42I $42 $ 42I$42 H1ӌs`P&M,cx^׵6Iɗt{?7:-׭ibx\L&b0| ?6iJ^XɖR 9Hɖ2/ x,'M$s\VWUI$I$0|nc@0|ncH$I$ss ts:CsshzsR1Iɐ M?- (h?'s\\^V{[ I${[I I${[h 1kZ`HɝR5 $Τ6II7/I2mМ}\#I$ZH3YoxI$I9M\8I$Ф|Z"PNw| Ux5l$ҌLc`x^W.I$IKs/5 F"h&M$ӌ\^WUA 42A  42I$@ 42I42$I&1ӌQ|`$Lc`^W HnLcW /{P? +X;ZxXWO":HN({_"++I2*"4 c]?s^$md$ӌLc~U:ILc^U h]n,c_/ n,c0I$[n 2IHnݽ5)/ ZC:k`zz(i.s)3TNU+-Iiv샷-@$uzU,$uӌWU%[۷5ӌWUUh&I$ӌ$B04ӌʭHİLc7771C9Cn *`=|Uӌ^VV($IҴӌ@42 A42  $42 ӌjj~R' 󌳄sjq+cܜn\J`+'9]s,[Xxx`'ILcJI$H6 [Z H$I$ [Z"I$ $ [Z"$ &i' [R @;,cRU]',[(JzW  HJ-%5%2)C9 oń* ڰR|WWTT" I$aQ|mk# I$IQ|mk" A$I$Q|mk# iI$Q|mk MI|k I$m ts!mm l|s`>9sRXXp1-"* .viJxx $,[(J_FI${(B_U+P$oۏHJUUI(JUIv+HJ IZ1{" r @  sΤ3?4|X\\^$" $I$|t$"I$ $|t$"I $|t$"I$H$|t$" H|t$"I$A$|t$"$I$|t$( |k@H䏜Z55: o4#h'r>'QMc\\\^  $H$kJ  kJ!ЉЎkJ$"AI$cb$" $ cb$"I$Hcb$"I$ $cb$" $A$cb$( !McZ@HܯHJ55%  aW h$I$Q cW,cUW`$М,cU_!Pr${Z"0Int c*U$ %t,c#|k# 6skj &r$sZXXܗФ{>$9>ӔMcxxxx$"$Acb$"@$I$cb -6-6kJMc [ @kJIIkJ A$kJ5P9,[B``pp RZ I$I$ԽqAI$A$ԽPKL1  ?6+p&'uӌ\\\\AA 42$ 42  ӌj I󌳄$;IӌH H ӌI$ 42$$42A$42A$42p'p'P c7 @׭n .mj<_W*OUU*UU*y#gUU*IfuWU+OԶuUU.hvҔU)@DUҔU# P9spX cN" 2#4B#5`ppp@Hӌ 424R!i I4R!#ӄIӌz" I I$5q ؃=X%LkXXXX;TI{=9_1Ц$rRW!$tRU ImsRUmsZUxMФRR! 1`aQ`@B@I$H$|sWWWV  ts I$I${ l$" $A$|t"؃=9|RXXxx6ɐIխJ{//--0"z.'p敥3V\\\$"I I$t# H4I$tq|$-.-T@R3 着`&`>LkXXXX.I.?===->ӌ\\\\H$@42i$Iӌhk@NM:,|葭 .ӌP V %$ӌ0|U@:ӌk_`$IќLc^W%5Id ֵ{/ 7 'x^$I$ӌ4RA 42I$ 42$42 @$42 H(5ӌk`P&MҔ,cx^׵4I$Iks+3!@@׭ *OUӌx^WUAӌrzs5Hq5WΏ=o I$I$q-r꠪r$kUWr 0smk VOsk)@tsII 0|nc6,-sk@H-R775.91Bo r,Qs\TVVmE{[A$ $sk A&:s [zP&t$kRpXVð1b 1I$IսϤZZ8DhД&] mkU- kU- fۑmcU-hl'PMcU$r.篜IJ*?5ɑDl>//4"r&:Ӕ|\\\X$"I$$|t$"A$A$|t$" $I$|t$"H $|t$"I$ |t$"@ $|t$"*|sjLJ䰜R'7759Kɐz|zz."}z>s cVV\\$"I H,c c$" $I$,c c!-cZjj$DI cR$"I$I,c c$"H$H$,c c$!Iڤ $,c c^" 1 c(J`p) (J----m&m&Ϥ`p< s````#"H$H$cb$"I$cb$" I cb$"Icb$"I$I cb#" kR$"I$A$cb$" I$cb!؃%X&Lc(JXXXiviv +8I\ɗ1h3` `&Ӕk^$ömۖ|s$0@R|s $"II$|t#"I @|t$" $I$|t$"$I|t$"A I |t$*Ȓ,|Mc`` ФR%%% > C9KќONh-"/?{sMc\TVV! c3c:kJkJ I$I$kJ$"I$ $cb$"I$Acb$"A A cb#"@H$kR$"II$cb% ,.-McR``IɐHJ%%%-A I$勞uH$I$]HI$@j#y@R2*,I$RW mQ+cUꪠy$0 cUW:NbۏRUIv)PrZ5+ ;IdɕR~[=">#?McxXX\$"II$cb$"II$cb!6B;c3kJ @kJ kJIkJ$HkJ=X%,c(BXXXX1ar{ ) A$I$ԽqPTTI$I$Խ/C0  6?+>>uӌ\\\\@@$42I$424R ll󌳄I$42H H42H I42 $H42I$42@ 42p'p'P c6 @ @ %#/4ӌTTTT $42 I 42A $42@$@42 4R!p&p$5Q H 42`&h撄,cXXIIn 2299xxxxI$H$42HH$42ӌꪪ!mߖIӌ$"I$I$5q" I$I$5qX&`&ӌLkXXX\'I$y М 3I$I.Ҝ _0I$ Ӕ ^,I$ U-H̃#_/МZ*:H$H$r)2A!Bhkll!M$K$|sWWTTI$I$1|mc!Ii4|s$"I$I|t#P50sRp```7ɑb-))-4"p>h&3\\\\" I$I$tq|" H I$tq| ؊[&S|$H$򌪪=9lkXXXx*ɑIt====.h>>\\\X A$42@ $42h-42 c@ӌPxI$0|7 x6sW^H[LcU Mlk)6Dn{z#жmn5| A4ӌ @$ 42IA42 $42I$@42`(6ӌMcxC'OLcxVյ3I$ISks* 4)P@׭N -_?vӌx^WU $@ 42I@$42I I󌴌 HӌpzI$PϤ#_m۶mRqsZr$QkUUZ 0 .smk V$Hsk (sMc@`dItNR%%%0!avhOac ؆m>tMc^h$kiRWOsR~U5 X$۶RWU-I1R5I$Ir P;ɐA& /??}維\^WU@Sr|`1sxXtlkx֕.B$hMk`%XڶmN c?WUUI2' Mk-UtI&{ 0nӌ|WW ӌ0|+Eh442I$󌴌iҨ5ӌmcxP&N䑌,cx^52I TJs+ 4P@&O 2XO?~$ӌ^WU@B&$IӌH 󌴄I$I42tm6- 󌴄ꪪ # sx` rs)%9BkМ .F~'~WW'm5WUU A$IӌI$I$4RRӌ#Mۮc4R",ӌ1|@ ʍoLc%77,vABvN I$L$ӌ 4R@Pӌ@4R!MѶimӌ. $!E$)&5qh&`&Lk\XX9Iɑ-/=55/ ږӌ^\\\ Aӌݪ I$Iӄ!$Idӌ Iӌ m۶i[lӌI$I$4R99ӌLcXxxx7)r{ $9SO,[```'ONiJ_Up-Yr(JU Iڶ+RիIZ@Q{*i;m۶rϤ5 II$?yI$Ϥ(uI&I*}-ɑId27"j&>|\\XX$" $I$|t$"I$I$|t$"I$I$|t$"I$A$|t$"A A$|t$"I$A$|t$"I$I|t! # s [`@) i 1Z --%9IɑrP_V9X >j2'ӔMcx^^%$I$sMc_UU#@$q$kMcUUU!@$IkMcUUU I$H$nk-cUUU mӶmMc [!ӶmkJ m HMc,[ Im HMc,[!IVaMc,[ r&`&s(B%IDIќM888#j>؃=|XXxx$" $A$|t$" $I|t$" $ $|t$"IA$|t$"A H$|t$"H$I |t$!M Iڶ0|s{.j&{R7\IФPplr4"r>>1-c^^\X$"I$,c c$"I$ $,c c! 0@4 cR`pp"! cR $ HX? ciR~$ ic' cJU 4N$Mk)JU=`$IIJUU  ۴IQb @ $@4j<zjk````$"I$Acb$"H$I$cb$"I$A$cb$"II cb$" $H$cb$"I$H$cb$"I$I$cb$"II cb`h,c(B؜ii/II$nbX[? [_^oۏRU`IZU_vpRU$@r$sZU~" Im$|RU# I-sZU" $$t cU! 1$sR`z !Z <Ivhќ|bb`("H$m$kMc\\^V -"6kJI$I$kJ IIkJ$" $I$cb$"I I cb$"I$Icb$"I$I$cb#"I$I$kR" 0Mc(J``` y(J > IJ$uz/ I IєQ*U/ I"I IќQU/I&IϤrU0IMqU.IU0IU/I񤑌V}U/I?c 1| zI$}'0 <ɑRp7"hr2'QMc\\\\$"I$ $cb$"I$@cb!A i$kJ  kJ  kJ  $kJ I kJ`&`& [Bؘn-)I$IԽq4I$$ԽPCps1II6?-p"?p&vӌ\\\\ $H42IA 42@$I42 ӌ  I$42 I42 H$42A$I 42@$ 42@@$42ppPLc8 @H  %r 4ӌTTTT  A42A$ 42 A$42@A42 42 42 $H 42hpP,cɑI3%29#>ӌxxxxI$H42IH42I$I$4R#t Hӌ$"I$ 5q"6a(?􌳌hr>qLk\ܔ8)Bi524$ӔsWU,TI$sUU'y'rs_UU#Vv:1|sHK䏜jJ7777@r3)B1C3dngd"K$H$1|sVVTT1|mc E۵mڦ|k$"I$A$|t"|Z````4_Z)---5">֭3\\XX! Htq|" I$Itq| kꪪI @ 򌫪I$H򌻪X5P5lkxppp(IDId3{-9=)0>>XXXXI$42IH 42 H42A $󌴌ꪪh撄+c R!g9IdA1p{+I">msWWI$LϤs各'Ϥ{W舢 )| $wӌ0| A$ӌ  A 42$󌴌ho,c^53IIu/ 3  @ +?Uӌx^WU I 42AH42 $42$H$42I$42@ӌr`t": Q| 5_ ɍ I$^ 'oQLkzP?QLcUWz:IZUUɚl0ФZ% )ZѮ [z^ $y۶RWU-IҭiR I$IM"I$拉|2O&֭М2'ֵx^WU@A$Sr| @1s`P&MKkx^׵1 !`@Qs+0' cx\VW@I cZi4I$-kZ@ As c/UU/>hn c UМZ" PNwҔ0|+W|[>Lcz^`N,c^= 2I`{/4$ڷx^)'UӌxWUU$ 42HA$42Mb ӌ ӌ4RHӌ@?9k7X/ M/=-|'r&UVT\\P@$ӌ --$ӌ$ӌU!$ ӄU!$ӄU!d `󌳄z/KrpLc/)u-  )3UWVVT$銭v5q$"@$A$5q$"I$I5q$"I $5q$"H$I5q!X=؃=ӌLkXXXX9IDI-56"h>>\\XX$" $ $5q$"H$I$5q$"I$I$5q$"I$A$5q$"I$H$5q$"I$I$5q"99,cxxxx1!{))N$On,I$?P _0I$ O*]U0I00]U.I0UU0Ir I{U0 II$msU/ mk"U0 % O6PJz~Qn(B 7!/9txxxx!A"I$|s!i$ $|s$"AI$|t$"A$I |t$"I$I|t$" $I|t$"A$A|t"|k`ˍܯR%'778ɑɑ\1\{^^6#p"'p&QMc\\\\$"I$I$cb$"$I$cb#" H kR$"I$I$cb$"@Hcb$"I$Hcb$"I$Acb$"I$ cb$"H$I$cb!؃95McHJXXXx _yФs )5##4|ppp`$"I$H$|t$"H$H$|t#"H I |t$"I$I|t$"I$I |t$"A$I$|t$" |t"j"&`=sZXIInMO6X [}:QMcxxx\# @:-cRz"Hc$ cJW+~ cAW'INAUh?ےHJU+IniR+IS0ksI+*"I$I$Խ/m&EҦrz;$0Go5k`ppp$" $I$cb$"H$Icb$"I$I$cb$"A$cb$"IA$cb$"I$A$cb$"II$cb$"I$@$cbpxHJ.Iɝs+7IbHRx.IϤU/I񤑌U/I'ќoS0I$$ MD-I$ @Mkڀ*I$I˃x(!$@Ks_* HoZUIФR*  R <xHҔs`b`p$"L$H$mcMc\^VW$ !*Mc [@!$i$9aMc,[d; @Mc,[$kv]cb$" $I$cb$" $H$cb$"I$I$cb$"I$Icb"5P9,c(B`ppp8Iɕ2Z)+<"S9>4|pxX\%"M$I&|t%"HI4|t$"@$H$0|s"p9>J|s(_(!0||UUU'"i4Q|UUU*"P~Q|UUU),1qMcjj 8q˻Z - %:  2Tw~u2"p?{2|Mc\\TV#" $$kR$"I$I$cb# M$i4Mc [( Mc,[AA$kJ$A kJH$@ kJh&r.lkB))-I H$ԽqI$I$ԽPO|2;-&vӌ\\\\AH$42AI$42A42 ӌ42 $ $42I$ 42@ I42 H$42@$  42p'p'PLc2 -  %r'x'5ӌTTTTA$$42AA42 I42$42$ 42 42 M"$B ӌHJO,c66%IDIT61=>XXXX  42I A$42!II5Q$!ҦI5q$"I$I5q  2􌲄hhpJLc4 haaa$IssAH0|ncA 0|nc2  sk ȋȋܯjJ7777I$M n 59C9@U#80|sTTTTH A$0|nc mfM|k$!h4I40|s"(|Mc```_ɗoZ--%7#99֭xxxp" I$I$tq|" I$I$tq|!i"I&T|S|$ISr|11lkppppks)))/9ӌxxxp 42 A 42H @ 42$ӌh&r'+c6I Ҝ- 8Ҍ'ҔMcx^W"`Yq8mc,cVUU![i$k,c*U@mcUU I$ k*+UnI9os%Prođ{ Vo Iw$ӌs U$ӌMc^U(It:*2c$׭Q|W&ɶmq| A 42A 42  $42 $42I$ 42@$42I 42Z#$Iӌrx3 Q%W_ IM&q +IAԽP|UI$IW3I$I 烙I$I 0e Ig?I@$浪3[I$I%I$̓(`.It ,@H֭-_+^WU؉ @1s`P&Mlkx^W6Id jk*5Ì9'r-cx\V8 cZH$MkKJ$I1bZphM'ZA^к&OJW-)ɟ HR*0IהhNWvѐk^.ywu˃ 4Êc'x^_"C'N$ӌx_UUAH$42HI42$@ 42@4R@ӌ4R$ӌ ӌkx`&Os=)+=#5vӌ\xxx@ 1t 9|p@ &8Nbr| iljcr| $IBr| q2r|`nu2>q|,c\\X*ɐtxT-%?=0}r|\! 􌒄 -/$!hI"5q  Iӌ/$"I I$5q$"H$I$5q99ӌmkXXXX19<##>>xxxx$"I$I5q$"I I$5q$"I I$5q#"I$I5q$"$5q$" $I$5q"P5P5ӌLcppp`ِQ{) =ɗ!BRP{="('Mc^W/"P?|McUU."I'sMcUU*"fOrsMcUUU'"$I$kMcUUU#!H$A$mc,c" @$A$Mc [  MciJ``ITlN(J 4S5Ӕtpp`` I$$A|k {$ |k!iݶm|s#! I$|s$"H$I$|t$" H$|t#"H$I|t# EӶES|sJh&.Z,ɑ\ɗoSl9!>qmc\\XX$!I4cb!Vh$mc [  ې$Mc,[ $HMc,[%$H$$McZW#$$McZU!$$McZU!$$McZU!mMcZU!P5c?,[A`zzB0 hҔs`bbbym;snc%DIKtnc $"I I|t$"HA$|t$"@$I$|t ۰2 |k$TH|s "؃95|RXxxx!`6Kk vZ^p `NHJU I~n[ niJ O {-*$I$I N/U*I$/0/U2I$w+rOUU2I0 U3I? mc _ I$K$rb H$Ijj8%ES0C#4mkpppp$"I I$cb$" $H$cb$"H$I$cb$"H A cb$" H$cb$"I$I$cb$"I$I$cb#$L "Mc,[HJ.(B77>I U/-5;#='|'|\^V'"4I40||UUU("IQ|UUU,"dvq|UUU,"Tr|UU,"Pr|UU."P<|UU1#Ē$|UU/"m䲌|UU'P=qZ(ZZy ɹ>##59Ӕmcpxxx$"I$A$cb! 4Mc,[jz$"@Hcb$"@ I$cb$"I$Icb#"I $kR$"I H$cb$"H$I$cb$"I$A$cb!&`&Mc(JXXX:I4---4"#?s?|\\VV$" $I$|t$"I$A|t$"A$A$|t$"I$I$|t$"II$|t$"I$I$|t$"I$ $|t$*|k` ȋoR%'77<C9COggm+"rsMcTTTV$"H$I$cb$"I $cb# I A$Mc [" Mc,[kJH$kJ$ Lc [HJN(BI 錄 H$H ԽqQQEI$I$ԽPH|1<<.p&h&ӌ\\\\H$ 42@@$42$ 42A @$42 42A$42 H$42@ @ 42IH$42$42xxPLc0 M &x'x?5ӌTT\\A$42A@$42$I42I$42H42@A42"̒",ӌ@@ ȍȫ,c77772ɕ\ɑ=51>&XX\\H @42H42!II$5Q$!I6M5q$"H$I$5q!b/6,Q|``` Έ-Lc73_B5|cbpptsA 0|nc 0|nc.)sk@ ȋ؊ϤR5555M4M4n) 5 @HT&'QsTTTT@D?sk ^ Y?sZ_"i$tZ~UL?IZWU% LJϤR6#R#4Dc43ppbb$"I$I$t" I$I$tq|!(13󌪪h$򌪪WذX$ҌW0#5Kc```x__Lk ) 099xxxx 42H@$42 42A $󌴌h'J$P,cܔ31C1BO$3k,c\\VV @kJH $kJI$I$kJ!mI$mk,c UU!ai$k,c*U MNmkUUɟ$- [ _IZn0Lkժ* -I&بmkW!MnkВ$osU`*Inӌs_ 唻ӌs+msӌr-H 42HA42I$A42 I42 I5ӌ|xk$ӌLcx^U}y}1lk%5+I$N9rМ!I2o'I$ttZ)I$I_*I$I5*ISI/.hɶ֭ W'XO?$x^UU{5lьppJO싱U~) @%p -0BX30|hP&Llkx^W5I$Is% 8 4ЈNkp\$}nk cTWUU$6bZ|hZ&ZA^к>OBW-,I}2(RU 0IShu{+2?ӌ_,`]'I$vӌ_UU iӌqpp`Obo0|%"4@O--mڶ[;ӌ@ @ 42@I424RIӌ4RI$I$4RHӌ#&@qjꀠ}hOLc.<* hAU.ؤqӄUU-@󌳄~,)ӌUW$|HӌUo i 󌳄iaж425P1ӌLcXxxp,ɑIdS{;;9-3>\XXX mӌ* hQI$4R I$I$4R L I$4R `ӌ99ӌmkXXXX!۱Ф{ 9=5z$A'|U# 'sU# $$sU"$$mkU# H$'ӌLcU" Im$ӌLcU#9v$,c`z_UPlk 9)C9C0~|~~)"8kMcTTTT$"IHcb$"I$I cb$"A$A$cb$" $Icb" I$AMc [*! kR!McR`KNHJ%%8 xi0|bbc!I$IҢ|s A$I$0|mc -I${ l $I${ l# I|sUU$ذm$|s(UU!)I$|s 4{˻qtsh&`%sRXIDIdN~Ar599,[xxxx &bomMc,[kv$ lcRMELc [eMc [O,[ZW(O,[RUI,[Z/M$ ,[ZI,[Z,[IJz``1 'B -aBҔ|`‚yI|kUj$ ђ$Isk h I${ l#Vj sk($0L<|s*U غ6|k ݐiv|k#P5,sRp```) ) 1 c  @IxBRr8 I6kW2" $0mcU0Z &0R_1`ma0Mc]U2"@|McUU2#Ժy$|McUU-"sMcUU( 11kR`zzz))(B MڤIzr`h9$B#9Ӕmcxxxx$"IAcb$"H$H$cb$"H$ cb$" $A$cb$"A A$cb$" $I$cb$"I I$cb# ɒ !Mc [@@ ȫ˻HJ555%8ɐn /"'璌|TTTT$"A$A$|t$"A$I$|t$" $I |t$!I"|t#"I$I$Q|s$"I$$|t$"I$I$|t$"I$I$|t"؃=؃%tZXXXX6II 1===#>&mcXXX\$"I I cb% -#McR```$ aMc,[$"I$A$cb#"kR$"I$Icb#" $A kR$" $ $cb$!MڤH$cb h&r"'mk(Jޞ6 9  -"x>璌|TTVV$"II|t$"I A$|t$"H$ |t$"H $|t$"I$I|t$"I$I$|t$"I I$|t$.|shjjh ȋ˼nZ55%5;1B)B/LKCH("-'3'kMcTVVV$" $A$cb$"H$I$cb" I$I Mc [Mc,[@$@kJ@$I kJ  Mc [jHȽn97777 ӽ9*I$I$ԽqEPTIH$ԽPO\S2ɑɑ.h&h&ӌ\\\\@$ 42 H42@  42$I42$I42@$$42@42IA 42H $42@ 42xxP,c0 - &'p5ӌ\\\\@$ $42@$$42A$@42  $42$ 42I$A42-"-ӌ@@@@ ȋȋ,c777715=.&p&ӌ\\\\I$42A42 4R!fCfkӌ$"I$5q 0ӌs``OOLk%-69#>spxxx!II$|sI$I$0|mc $I0|nc ,(sk@@@˴R55%5$I$!! 0L 1c`#:N{R|W М$NR_U-IĤanRU=Ib I$I=r++I$I$`1 X:|z#$LcU$lkUUĶI$lkUIolkWU"$nLkU X$Lc_U qФs .@4@4pppp@$ $42H42I 42!,ӌHʿo,c674)B!B{KHC!H$M$mk,cTTTVAkJAHkJH kJ IkJA$A$kJ#;2Mc [*jP&|sBzޗ74ɟts#h~?k,[_W!nI$k,[ b@ .Mc UI$nk UI&sW$sUpMv۲s+^ ݔӌs+ Aӌh&ӌ,c^X'ILcxW-)I$Isks+4 ho / XZMqxxzbOU+I1uO+*I'UU)F'UU!TWUUI$3pmI$@ 򌲄蠂 hHO҄/Uh( z 5n;oLc`xZɝ۶mLk% :AѲMkx-+'R_Uh]'ZA_к&I.BW%Iyq(JU*2IS@k{/1' xW-`]'N$vxWUU h$M$4RH42 $󌴌ꪪ*iӌQ|^x~ǣձ//0 O I$H$ӌ4R:ӌj  ӌ$ӌz$:ӌQ|x@:ӌLc^u$LkWUxۏLcյ ('UN  =$N$J&ӌ!II$5Q$# ڞӌUjUIӌU_$>ӌtz@Y?ӌmkWP5m$Lcpx_U_Мls)!,  Z=>ukx Md$LkU Im',cU Im$LcUmm$ӌLcUm$ӌmkUU&O$LkX^U P1!&Ispx/oLkUI@LkUIILkU( Ibv @nLkU ou IsU"""IB$ {  II$,5I$I$rr2'590Qx~xz+";sMcT\\\$" $I$cb$"I Hcb$"IHcb#"AIcb$!I$Ecb $I"kJ Mc [jjjj ˿ʍnHJ%5551ABpccKK!$I$|sWTT h$I$0|mc $I${ l $av$ts жm$ts_!F$'tsU m?sk_ m?skW؃93>sRXXX^_Ф{599Mcxxxx@kJI$I$kJkJI$I$kJkJ kJݺm[-Mc,[I$Mc,[I$Mc [(,1McR```j1 hJ%%%%2)C9K%QsVVV\$ss$ts($ts [ ۖ$ssU#e |k#d?tnk":sZ```^ٖvZ :!B1C0hz~z)"?K'kMcTVVT$"I$A$cb$`&`&McZXXXX A0IMc,[$"IIcb$"I$ $cb$"I$I$cb" McR```ilQHJ---% IDIrr:"P9ӔMcxxxx$"I$A$cb$" $ $cb$"I$$cb$" $I$cb$"I$A$cb$"I$I$cb$"I$H$cb$ (McR@ (J%%%%9915*";z?q|TTTT$"I$H$|t$"I$I$|t$"I$I$|t$"II |t$"H$ |t$"I$H$|t$"A$H |t$"I$H|t`&hsZX<Iɕ{#+B5 'QRW%$ McRU"0:McJ%F`ߖMcZ$6mMc [$!)$)Mc [ $"I H cb$"A$I cb$"I$I cb$M iMc [&pJ.(J7995M+"p;x?q|TTTT$"$I |t$"I$I$|t$"HI|t$" I$|t$"I$ $|t$"A$I$|t$"I$@$|t$,"!|k@@@ʻnZ%%%%6!aJx#mm$kIJU# %$MciJU ۖMcJU! ۖ$McJU,cR  ,cRU$,[RU:,ciJztItФ(B5%%I$I Խ/92I I$ԽqQEI$H$ԽqހE2ɑɑϤ.h&h&ӌ\\\\IA 42 42$A 42@ 42 H$42I H42A 42H$42A$ 42@@$42xxP,c2M '5ӌ\\\\ 42 $42I$A 42 42@ H 42A42))ӌ@@@@ ȍ,c77774ɑI=-%/p'p"'ӌ\\\\II42  42$H$42 ɖ`Iӄ$"A$I$5q 5ӌmk```p-_Lk---/ ZM'R^I$$sRUm$sR_UĶI$sRU+H?IМRUUI0R%%/O$Ir){~2I$=3nի0I@-V 0Ib m.U+1 yFӔ| W2lm;sU"hNR>75%A  2Isx #I$I"3{ի+I$ u-U+I$u-_*+Iu-+IRrIuU+I>T탯` Z1Lk/B#4C34pppbI$H$42 I$42$ 42*Ȓ)ӌQ|@ ȭ܊nLc53aaps@B@M$H$Mc,[$kJAH$kJAkJ A$kJA$ $kJ5,[(B`pOɝN(J5% 4d`k`pI$I$kJAA kJ$I kJ &I$mk,c UU "@`sMc+U MMmcUUI$j@k( 'sWʊPcϜkUx HwےLkU5I3 `(Ҍ ~/XO?O$ӌ^WU@Ҵm۶󌴌說@ӌP|^xOH'?7P % z.>iTX@$-2҄ꪪ$ UUUOD ҄AҌUUh ۶i9Ҍnkz&h$Lc^U lzФ,c % ;ɕ )diќs `3Ј'RB~WM'IJW-INA-{ 89 KФ56?'}$֭x^WW H$I$5QI$I$4RH$I$4R I$42I I 42A$H 42р@ӌQ|^xOч:ӌ-W_  Jo -I$A$ӌp)>ӌq|x A:ӌ,c~m$Lc_U$ɟLkzU+ I߶mLkU*.I$[T{.IM_+9X/T탿x\$$@C.  H:ӌsxic$ӌLcUOLk~U $mۏLc_UILkU(*'I-@3{ժɓ&1Nˊ.PМmkXI_ lkU*"I$I" {U$I$I"{U'I$3*I$ UNU)I$w `UMם?h." <!9º4pZ,@m$uU,m?vU/Mv$vU.mm$vU. Im$vU.$An$vU, O6Utj-۽k 5ɐ q|~~^."xxsMc\\\\$" $H cb$"I$ $cb$"I I$cb$"@$I cb$" $I cb$"I$$cb$[-۬Mc [ʯH (B771!bsjz 4$sZW@O$sZU@O'sRU"ԶI${ZUUж/ZUU PIbNRU$oېRU $vNZUU `MIZU {2SS5s0mcxxppHkJHkJ kJ kJI$I$kJkJkJH Mc,[I(Mc,[ ۾,McRjj``ɖtɐ ϤHJ%%(TI$0Pzb#ظ?/R^жbRU*dI ZUU?I-RU$INRU $oNRU $ݶnZUU*I$@ZU)  c ;9CKP~|||,"t'r'sMcVVTT$"I $cb!lMcRX$!A$Icb$"I A$cb$"I$H$cb$"I I$cb$"McR`@ɐ I HJ%%%%IdIrxxp<P Z=:McxxxZ$$ۖMc [U"$Mc [U$$HҖ$Mc [U$Hؖ$Mc [U$ ې$Mc [*U$$$Mc [U$Mc [ U" 1MciJj nHJ ;1B)B5)"z'Q|TTWW$"II$|t$"I$I |t$"I$I |t$"A$ $|t$"I$H$|t$"A I$|t$"A$I |t$"H$I$|thr"sR InRm cCФhJ~I$& HJU l;e]HJUiJUUp.IJU`I'RUUВɟ$siJU!I$McHJ_" nMciJ$$h];Mc(JHɝN(B755-:1C)B5N*"h?Q|TTTW$"I$A |t$"I$I |t$"A$H$|t$"I$I|t$"IH |t$"I$A$|t$"IH$|t$."(tk@@@ϤR%%%% xnk0{^ IBDnbWmnZUI$6lhJUv$ (JU$[no(JUmoHJUW `vMiJUU 2&߶-B_UK0 0(J I$I$ԽqDI$I$Խq@iI$H$ԽqT2ɑɑ::/>>ӌ\\\\A$ $42A A42@$  42A$ 42A$I$42@ $42HA$42A42A A$42mE642HHİ,c2ɐ M--/%(x"Uӌ\\\\IH42I@$42 H42@$@$42@$ $42$42()ӌ@@@@ ,c77774ɐ '+p''Uӌ|\\\H4RI$I$4RII$4R4R$!M$m45qP5X5ӌLcpxxxq3sm-LoRW2I$I bբ/I$.Ҕ˃%ɟ氜Lk>i-u9m6h4bpr:VU9u0|zz/$ӔsUU)?I$rs_UU"$I$1|sUUUHIss ɒ.(sMc@K ɐ R%% rHH8 d`H׭򜉂b,0~$vӌU*y$Uӌ]U(d'UӌUU$<5ӌ_UU"P'I$ӌUU 1#1ӌk````1 ؏,c -1ES0c4rbbbH42I 42IH 42)#)ӌQ|@@@@HKoLc%5%1 `vsb`bbH$H$Mc,[HAkJ $I kJH$kJ $$kJ @((,c [@&|s(B^^4ɗk # 8>|$Mcx\^W$H kJ@H kJI $kJI@ kJ@kJ $I$Mc,[*  ۸5mcZ z k/HJ*W I'y1Kk" I$O&Q -oəu$?:\Oӌxx H 42I$42H 󌴌ꪪ р@ӌ|^xE磃5|"ɥ @ M -#m˶R >x :s~$,c~UH'ILc_) HĮ[LkUի*IU$1ls*II|`7Œ9s?PIJ`X*-I$IJխ :I @ ս :$@ ,?u{^^5)O -(t۪4ӌ\ IҶm4R!$miӌ*q:IIӌݪ4R4RI$I$4RI$H󌴌ꪪ ӌ0|^x``Plk**%4f;Ҕkzp'IpLcWI$AQLkU+-I$IS{1I{@-1 $-0$_U+O$U_UU9P0ӌLcxxp`Lk hLc^W* IKkի 0I$1%u--0I~ hnU+1@[ۖ W/l:urzMc%%7d@V׭ќ,h$uU+muӌU+0y$uUU+$UӌU*OUUU* *dC6vsjzz ױNLc 3B#4B#4prrr4R ӌꪪ@4R 4RI$I$4R@4Rӌ|@@@@ ϤLk%%4  p\^\x+'p's-c\\\\ E$I$kJ!I$kJ II$kJI$kJ I$kJ#$H?Mc,[#hrMc,[Jz. (B7yI z(On W"I/ќ- I-nPE%I$ n$Ti+I$v ҜoGի-I$m ќp-I$$ nQU:,InPe+I`ќ1|jw>?Lc4jqmc````kJHkJ kJkJkJkJ@kJkJ@@kJ ,MciJ```ɐɐϤHJ ;IIsx47IBІm4PW^\,IB I샚,IB I -IB I.U-IB I.+Im IPU-IB IP*U-IB$kj ڨZ '%7 qz~X\/"z'sMcTT\\$I0Mc [` [2$k%Mc,[#"H cb$"I$I$cb$"H$Acb$"A$Hcb$.McZ@@@@NTJXHJ%%%%I$I$Τoc%9ФR^^ $m[ RUU mɲ.RUU %K RUU MsBz^55I$INHJ5 4`Amcx(#c=М [7WU{>Z #W^\p"vR'l 6ӌW^^x H$42 42m(42 9 ӌ|VXx~R?{*!+:tҔLcX^ xn,cWիIM4Kk*i۶Ŷm"I$?o m6I𤃿kV5ɟ$ tM`4Iz IO 3h$W2$~UU$`[ӌ" P sx`-O\T{%=-">X?U\xp`$"I$ $5q$"I$A 5q H$4R!I$m4R!IۆM4R$1ӌr`Hӌ|^X?ӌ,c_$ӌ,c_U:I$,c_U/ P$mێ,c_UI1ls*  tɟ$1b `$МLc~WX$i۶lkUUI@ϤLcUIb lkUS{]7ФsU( I ФsՊ mm {4)B@pJB!p8s1|sTVWW $0|ncH  0|ncj&`&sRX)i h6h6`hr2B#4B#4tppppI @$0|nc$I 0|nc $ 0|nc I$0|nc ,sR````)R IIrrj69:׭ӌxxxx@A42I @ 42 A$42 I$42H@42 ,(ӌs````i N,c 0,cccch&H$ӌI$A42II42,ӌt@@``XLc%2Z>p [x^,cZ $HLc [HA$kJkJ$@,,,c [@`&|sB^ޗ75I\I )s! 6>r'McxX^V$kJ kJI$AkJAAkJAI$kJ@5,cIJxP&N$ (J_W%5Iĉ o'B-7 )@hШӜkx^,'I$0Mc\WUUiIMc [zꪪZNR%W_ I$Is"*& &i@5蠂M&mӌI $42H$@42@ú ӌ`؏9mk>Xii)) IԽ0o>< ԽPL@'IϜ_4I9E//yE$1v?ӌ_U%X?o5ӌxWUU$4 󌳄v$Qtm$mQt5`ӌr`?sז' fB5O m$ӄVj`'6 󌳄f$C󌳄8tB:ӌ` m:mk^8:NĒLc^U!OLkU.4 @ / )+і`~ ss %5 hטo`!i5Q4R4R4R 4R$ӌ"- ӌ|`` y؋ܯLk 5-f`AvH$H$5Q$H$42 A42 A42ӌ0|@@@@ N,c%%. ``nд PӌI I424R4RI$I$4R --ӌk````i Lc 4sccc4R"ӌꪪ$ӌ$ӌ$ӌߪ$ӌ>)ӌ0|@@@@ 0Lc%6ITI𤐌^ZPr,'|,c\\\\I$I-c,[I$IR-c,[$+ALc [Uת!$$ Mc [U#m IMc [U!$$$ Mc [U!m$m Mc [UsB'k&ZB49k '$MmQkVV!$?yskUU!$skUU!l<skUU!$skUU#|/A|sWUU!|k#m/skUU 6#smcjjȭ܋NR%%%%1 `pk````ı-IMc,[4m Mc [着жm Mc [$IMc [$IMc,[@$IMc,[-дm`Mc [$IBMc [$IMc,[-,[R@@@@tt(B%%%%6ɑɑ3<.&'Ӕs\\\\81Mss$ts $Issi$Iss"Цi ts@@1|mcsk@@@ ȋФZ55556Τ^~R~/ph'0|Mc\\\\![2$R*iMc,[! iӎkJ$"I$H cb$"A$A$cb$" $I$cb$"I I$cb$")Mc [@ ȍܮIJ%555  RxJp9|̑k````$"I$H$cb$"I$I$cb$"I$I$cb$" $Icb$"I$I cb$"$I$cb$ÆڬMc [ "01Mc(B````!ФhR 9aapBCAB%"m$H$0|s$"H$I|t#"AI Q|s$"$A|t$"H$I$|t$"I$A$|t$"II |t$"H I$|t#*Ȑ.(|sjjjjȭ˿МR777%IdI1`oS<#>>McxxxX$!i6i$cb! B"Mc [@@@J!  McZ%%%%$"I$ $cb$" $I cb$"I$I$cb$"II$cb$"I cb"(McR@``` nHJ;4Pacaa%"i4i4|t$"I$I |t$" |t$"II$|t$" $I$|t$"I$ $|t$"I |t$"II |t",,|R```` !R ;kb```$"A$I$cb$"I$I$cb C-۲5Mc,[I IkJ IkJI$kJ$kJP5P5 [BppppNNQ+k I$I$ԽqAI$$Խq@I$I$Խq?pb1I 5mo/-IBIvW, mvU- ֶ,1du+U- I$vU.m<ӌU-0?vӌU-O$uӌUU)UӌUU&,1[vmk`zzz)qls)-1ɐ p''.(؆bM'UmcVu$LcWUX'ILcWU+ $֏LcWUI$I,cU"I$I2*0Iw'M].I~wHnW$?'k *I$I s@ 0I$w)]/IWU/IIvw+? ivU -y FW*5Umc`z h}۱lk)!9xx4/ccccH$I$0|mc  0|ncA 0|nc؃9P5sRXXxpݐ {+ )h&h6bz3B95spppp$$0|nc I0|ncH 0|nc$@0|nc01sR```pbrZ) #IDIsϜ5>>ӌxxxxI I$42@$ 42I42I 42@@42 ,-ӌs````iIN,c 0|̖ccccM4h6ӌA A42 $42 (,s````1 ,c- IRb c^Pr'-RUWPr샪RUW 0I.,cR W ,cR ,1,[(J`xΝxyN(J5% 9)a8sbp&?Nk,c\^WW $I kJII$kJH $kJ@$$kJh+6,[BxX$ɟB_5 5I9qZ- 5$XڲMcx^(_~s,c\WUU H$kJI A kJ@,[R`N's>J 5&!ɐ4M '*O's>UӌW^^x$A 42@ $42A$42P ӌLcx`ITlk+) $I$ԽqQSIxn9 4H(׭/x1~$ӌ_U#`?'ӌ_UUA$A42A I$42H@ 42I $42  42A$H$429P񳄮sXXp`' I|4{-%='|>>UӌW^\x I i;ӌj`86ӌ,cz(6M$q,cxWNoLkU*0I 2 @8q 0M$ӌ~WUM􌒄`說̿jOLc'6)9 UM $ڊ 4ӌW^T\I$I$4R4R@4R4R@4R, ӌ@LKoLc776/B) #u$H$ӌ$ӌ4R4R  ӌQ|@@@@ Lc%%%1AaN &ɐӌ4R4R4R@4R10ӌmk````  Lk - 5|̶ccac4R4R4R 42$@42 $42  ӌ0|@@@@ ,c%%%5II\XX\-h'h '|Mc\\\\ I$۶akJ$ɓ?6mMc,[4I &Mc,[!6I$kJ I$Mc,[  cMc,[}!4M&pMc,[`&`&,c(J899C5샍+"x$ʯQ|TTTT$"I$I|t$"I$I$|t$"H$ |t$"I H$|t$"I$I$|t$"A$I$|t$ҵE0|s N!skB@@` Z%%%%7vaAps@B@$ H mcMcVt\\ I$kJ I$AkJ I$-PkJ I$-ZkJ!I$ kJ!Nܶ0AMc,[ I$۰mkJ I$6kJ ,c [@@@@Ϝ(B%%%%6ɑ485/x'x'Ӕs\\\\I$I$1|mcI$I$1|mc$1|mcI$I$1|mc@1|mc1|mc ss@@@@ ʍȍܯJ77778ɑɑ𤑔psps4sڠ 0Mc\\\\$"H$I$cb$"A$I$cb$"I$I$cb$"I cb$" $I cb$"@$I$cb$Mc [ʭȍ܎IJ5555 $RJp@J;|k````$"A I$cb$"H$I$cb$"Icb$"I$I$cb$" $Icb  !Mc,[!&`I McR %11,[B````ϤR 5 x|`!T۵$tsU d۶sk!$tsU ۶tsU!dv?skU v'sk dv$sk `7$sk!J$M2smcj ФR5%%%,IDI1`Rl^7X+ՒMcX\\\!HMc [jUɚ [R/* "XMcZ5577$"A$Icb$"I$Icb$"I$Icb$"II$cb$"HI$cb%"-"-McR@@@`TItNB 8xsz# tkW#@$|k#I$|sU$Iۖ|sU$m|sU$E$|s*$ i |s$!m $0|s"01tR```p!Z ;k````$"I$I$cb$"I $cb 5C5Mc,[@kJI$IkJ I$IkJMc,[ꪪ99McBxxxx11rks ) I$I$ԽqUUUEI $ԽqII$ԽqDQ@ IDI$j:ЪS:׭xZ{%m'5ӌ_UU AӌH$H 42$H 42A 42I42I42I 42I$42ӌk```ILk -%ɓ$R`zHܖ,IvФlkU*М̃* 0I$)n}/IrwHn2 )2 '~U1y$UU':c;TH˿OLc66791KJ׭n1иN$~WW'VUUUU#f'I$ӌ@iڦӌH$I$ӌ11ӌ,c````Lk5xi0ccbcI$H$ss$0|nc  0|ncP0sRp```II1R  H$H$p`x3P4P4sxxxxA$0|ncI$0|nc1|mcII0|mcP59sRpppX!1Q+k 4I\ɑ;?75>XX\\!Ih&4R!I4IҢ4R!IH&4R I$I4R Im&4R!15s```` )Lk%/caca@ӌ $42I  42,ӌk````ɝ,c5 P=kxX% hm{McU!O2 k/U#$o+c^*Զ RU^*&-HJWU*ɛ_SoZ6ի$RWmwMc [ HkJ ,[R+UMcRU& [B`^hɝ.(JW% 7IxPA*k 5'Ӝmcx^W#?~k,c\WUU $HkJ  I$kJA$$kJI kJZ5P9,c(BxxX_GМ*k+! 43>>^XXX@ 42$42I$@$󌴌`(:ӌkx KLϤLc'7 $Ϥ hzz`-:uprccAH42@H 42AI42A42 A$42 $42AH$42IA42 ̀ ӌs`Q䰜mk-5$&\}?4s_(u䒄,c_ hyNLcW-*/0{/1 0q-4$ӌ~WU Xۤm4ӌA42A 429P1LkXxp' ɕT{+/9(Uӌ\\Xx@4R@ 4RI$I$4R4R@ 4R  RHH/Lc/19M % ؆`'5sV!Fnӌ| !Ib'&ӌ4R.(ӌQ@@@@JddNLc%%%%2aAM!5۔ ӌ4R 4R4R4Rӌmk```` 1nLk 6zacaa4R@ ӌ 4RAH42AA 42A42 ӌ0|@@@@I ɐ ,c%%2Iɗ1/hhb.cK?siJ^ I$$,[HJU I$$,[HJU $I%$,[HJU$$,[HJU$ $$,[HJU I%$,[HJU I$$,[HJUh&},c(B֕:9C9C샍*"x狽;Q|TTTT$"I$I$|t$" $I$|t$"II$|t$"I $|t$"I$ $|t$" I$|t$" I |t!-!sk`@@@R%%%%4!B!jsjjhz#Fs4mc [W$ 'Mc [#I'Mc [U$'Mc [U!?McZU!$I'McZU!ӖMcRU!$@ۖ$McRU $Iۖ$McRU`:,[IJzHt(B%5%%7I84.x&h&s\\\\H @0|nc1|mc1|mcH1|mc1|mc1|mc ۲-2tsjjʍȍnR7777:ɑɑo4#hh&QMc\\\\$" Icb$"I$Icb$"IIcb$"I$Icb$"H$I cb$"I$H$cb$)(Mc [ȍȭ܎IJ5555  1jHJ<#FO4R5mkpppx$" $I$cb$"I I$cb$"I $cb$" A$cb#"I A$kR$((Mc [@@@@"ɐMcZ%%%%"5P5Lc(Bppppِ c  *I$1kzZ$RU$oۯRU$m۰RU$RU $oۏRU$RU $RU$mۯRU$oۯRUI -1Z5% 1IIQ~~Z|;#h&h"'mc\\\\$"$H$cb,c [VVVV OIMcZ5555$"I$I cb$"I$H$cb$"I $cb$" A$cb$" $I$cb$,",McR````iɐB- I$Mcxx $]ۯZUU $um׎ZUU $mۯZUUoۏRUIoZU`IoZU_жIo [UU жI.ZUU$I1R_U*iv` c:k````$"H$I cb$"I$I$cb$HMc [` ɴM Mc,[$"II$cb$"I$I$cb$" $I$cb"99,c(Bppppks) )A$I$ԽqEEI$I$ԽqDqAH$ԽqHEU@$@$bj1 h`Á4R  42A$42@$ $42A@ 42 42@A 42A$ 42 H42ӌs`@ILk%%%8I ׵W -392id'U0$ӌUU'I$5ӌUU @۶I$ӌ8ӌUU$$ӌU`|;ӌr|j ȍȭ܏,c77/!Bju- ` N?ӄ||TT%42($ӌӌAA$42,ӌ,c```!ϤLk 1A!BҜq@HH H80|sWWWT@$$0|ncI$0|nc sZ``)i金R   rxh799Usxxxx@@ 0|nc@$ 0|ncI$I$1|mcI$I$0|mc!&cB'sRXXX\Z-);I׭77&74"h>r"'\\\\$"I$H5q$"I I5q$"I$I$5q#"I$ 5q!Nbm4R$ Ȓ*|`@븊nLc%'*fi'TPzZ! *a搗ӌ{+ IҶ􌲌- q=Aӌ-0ӌ,c````.Lk  8#qMcXXXX ImMc,[i" Mc S #"\Ik [ $  :kR_İ(B 7s- WIϤRW耨v RUUx PN${RUxVTFh v>|b>G>? h0CRCqr1:r1!>?rnr1UWr1r1:rr1r1:1ߗ_r1r.>nRRyrۣr"r1UU I$I$ H$I$R1 ڐr1z J4!Ir1 b r1^wLr1V ڢ&r_v<"r1:Gcar1!>? <"Ęrn c'r1UW&{Ibr15&Xr1:rDLtJr1 E1r1:Zk1ߗ_WNdr1 ۔Ҩr.>Oc ٓn SSLo9RRyqQkHrۣ  MŖr" `/Nr1UUf1Uwmm{R;ar Br1/{4p r1**)9 X%v#ar6zBRϤЀ R9R 2ǐrR+r1{:9퓵1ۢz*r1~YuIQr19 !Z3rr&VfJRzŊur1u baa]r=h(r1kr-r1[r1껻/I['͓>jBД 1m)/-+11gMې(ײr1n[Z Tr1> r6. &Xr1| 6.h0r(>:7Y.$1} natr1ml ;i]br^ʼn6r1V P1WU6RMȚ1 Cq$Zr1rŸ[NuWr<e7NO:r CF;1>UB]vVrܼ1e[`s8ܰm+\ ҶUM ]EQӽ*{ A6rԽL1ВrjKϤ  m ZI u 6 J!%x"1 1>Խ): ,Cb&L1o𤮏 -ܹ'.^Ekl𤵪~8i& {  G%iTJD".+ q;r c "eIs]JlФw&$ʒY;4HrJ:_n\eL)u՜.dj U z*J1Ux [QsUn(ł ߸&$2U)pKrϜ瀋m,!) v㤟* 8}>LtNr@ t#_$1\lrϤ,Fu哵*xh$M>O+ [VR]$AMԽW@5J/v$׏ uԽ1/W 9Jg^Y!EH} + @r, `5胳e̿#aМ -4[ȿ*hr~Tz7Ф=  [; Ф"YU.!RФ}jt9<Ϝ+P7дur௺W9"~  aKr516rФ{#:ɭdWm ]fXܕk#mݜy6sϿғ] Y;#UCǦrԷӺМTn _-H:7ѳМ:r`rw`X sМ nb5 C EUӽ>  BّS8ӽ"(".೽hj/ny7@ 8..T 5lԽ}}vD,Nr𤴏FL6>^k 8" =9uМ[T곽,8H(X ֪h𤽲-М{+@dDМk W/_:0ֳ OqcϤ` 'x=r* kKǮrU ;6llr}Ui/nМtIj ռ pԽ[=nqc ]kRӽ 6vmc_ ؀%UۺHKUHm /ZМvn P]f ؿw4mߗ~ i8ՓФMjerkaYkg;zrФBU D/5JrМ.| 2ɴ؏𤹐 8+ o/PnE`JUΛr \d𤩲IXj 3'jUDsE'^:`>bK)07rМ ݾ1, rМG ȃr: R\ܶi>𤘜<:ւԼ 𤪨 j<`MBII 򦶳IA OIOcr ʳUWs;r𤗫`)&"|Խ𤦔T 7@I'Mu6`#tͶN i Fڳb_ 4MAcqq`(" nQYqsk:МccK6ӽ*yy997niX6?Bmr==7 [֥1466$I(!Խ>6~AqXӽAc}]?8ФcccsAiacsm"rӽyc#kŷԽ.ԽIФ?{6 b5u4( $AH$IӽCCcc j"' dzccbb u۲6cc Ķ" II^dN>;)繳 ¾5r,U ü5 Фbz cМٱgФ C;)e]a ,? Iex׿;; h r>> trФAk DDaEӽscqqU3Ys[vcDӽ $Iې1UU  acԽ77& CH$IABn _ c=R QX_ ydeAۢ}ޓ f1쌓WU L2?UwӽМ? k$ض-1UU $:"@1U `` lӽrR $B-gUU dHZ+U K,2Мj E?mrМIލMWWfTĎ^uU]aUYmԽS,$>-u@,=? CV~.DМ?5 dIМ= l!r d  $@7bbU !B`ӽU] +0>_ *U w_=/ $HI $i"1Խ\\ m "P7 U%fbf )Ѩ@ԽU] c'sUU IKUU(* -a6"U5/ l6    1U c1 1BmɶӽUU ,P М#" HiUU >4 ϵtӽ)@r-;## ,~h4Խ1geIjٸ/_&"AmLȢ<"ԽФ}v|!IDBl>B0TIrf%ӽ߿ \ɵ]x#!! j'ӽk  v28Ӻuӽk` ԕ9Eӽ?+ fv]ӽ5 fqaӽ>>?RID哽WBIG+awU PZ Y]1acqp!~œ[[iv`Խ*k_xTGT^Lx::;ZlWqӽ= Cf['`xU $ՕӽiaqevӽS mI۶r8r_w @Z*E65>~eeRӽ c r ֭qrU4U^qzԽQ@INWU 4>묳U \ߖ-ц%a4JԽ1=}U `Lu۲͂q1BUUW 쓵М~a]ۤФQdIrU"`% dJ  Cݶ-15 DR96r1 UtPr ۟!Hr%7_x&mӽ|]u_&Q]a ԓ @N0IrФ@B Ք rФSVmӽu ^fӽS $I$rUR!GR*0 C~5;5eVmԽ= t[2 5 1)IRTT dD$ER14ZԽsZG$@sФ[.mМUBVԽ?5  fsl5 mӄmUU+œФSWԽUmlj] krYv&m 8ԽWov|M< T  Rh8u Ixg۷n ۶mIZ1UU* -4Cӳ1UUȡ<Ón &7Lʳ񤫠\ 1ђ@Bӽ1U@ط5 `KŎ{BZ')qW+}_U<$.=ó]o&i=ϤX+UU֤$:ooDHI p"(DҳWT K&UU ۦI&UVl֢1 v 6I`;UUc(&ϤX%m<ŏf:H;GGO再J^BOnrݖ#1ںɳl|7n3}cФdtt+nӽФi˭ j/ ʬTӽOK H3NӳO $i W Br~,/ #ҳ1tt :|켼 )6o0 dJh,7rMԽФ芳3NNnk RN,)oR 㫼ѳ䴸2Ф||儱ԽIfkpp$0HԽWMi p"k ۆ ˓~@ lbr߻<5 3:ìBӽԮ3.˻MМ & icӽ𤪨V ;cD8xFFk᱑U&pkq9擵Ϥ2Z|>9FiМ;l1MR>DOF0&< 7YSeRy{r[TqԽ ,uN}q 0H:?Ml𤾽ߢ6 ե>=R9tI^U|!_UuY᱙h> HT B?ƿ?ӽ*k|WI <{ Q7 øueМ_~ ]ޕ1i sR:4{cVu'+euVܳ1  BIL(0KI ZmRМ<: farФ۽:eRgԽQ8k7id]rX׳ФyVr3٫$re6RϜDiRϤ)fF^ʳФrBTm1UW.C%Խ}* loԽ13S65QϤZIr( 𤪪JoD$RF0 dfP:zrn0* ئmkr_U" I$rUUդ:2ӽj]fXQ=/?1} RY! UU МڧvМѢ(CrtIr B:?'{^?*G ucAri,@B1ϤA' DԽU͠ʓϜn`m]&i,#i뺡*㳵owi𤫨JKsr WV }%Ur𤈀&LԽG嬑xԽFFnМߣ oUQ "ӽw|9M;|Z+;q rϜ  r$)A1lԽМnzl& ;rU +tU3iUUŎ $ (kϤj`uj# HԽEewx aɁHvmNJJBnUW2!R_:?țМ4<:쬼%pФhVCР k &ԽEEMi Ih[eԽ1i Fk%fJԽgm 61- JS*ESӽ,,6 C[tEWd88>3:RxSF#1ӽ➻_ EFW^fpFRs.ӽ?'*TU\ԽФ*; Atӽ  n5r !rФА@ФUԽФok .85Ϥ8& BXϜ{.. ^]HϜ?/ ZrϜ>!qTBr A* Խ1 DYeQӽbb k:dacc Ŷӽ𤟟* Vy}x1SUTŴgsrМ f%mbjUUT ݐWAaci [1M)Rs[H$ -1U`ԏ!ԭ7 a%i17UU"@ @`_@Ar}\DUqfԽӢ4A$r_US1Ufںr  CDFT?7 AזФ9哵W 6rwUd]Q"ʶrϜjX]UU :Υ1/ Y&7'WU @ӽ,WwOP],] At 8 ؀auԽ1b,X$L]U( BmU u1ӽ5 15Ӿ15]U lМ  eZ$AƳUUOrCcu,SskA $IqMr1]_+ r' ڸ ³1Wu|| CT_rP &Ir XOēnBYLR$ $HmrUU* @Mr_ :Мovt!9+ܻ%(rUUu? _#ώ ݸzԽU] 2l2u  gr.jJQ Ymۺ^\dO   -iuR.yH HȐ$  ۲aK-UU4A(UU$q$̳1UUZT-C𤀀X)CJ𤺀U  yIU(b+Խ𤎎jfR+6aA#)HUO]U 5A:.$H+S635㲳Фttv9ԋyĶc :IVoS3rlJK yJH볽U v#R* Ҷ,rn(  B~ϓМt)Pbӽ(vfBIFz(rМOObK wԽGw jBwAU  $HD!<| >>.-ӽWV Ϥ  6umKK𤉍 ض-Ii & ɓ 7%\-r゙ J/?Фܶ NMڌ𤜜l S𤪨V 8i+М Oϰ $ r#]޵ӽ(͕[r>mxn2܍RϤz˿%KZpmФbڽ]IYQМ yМ ۅФiqĻ6Խ*ot9s)7tϜhCR(hF1rϜ^qi"]`D I>cU|ӽ*4~\1 Cm8> $C&44 B )``UCWmUcRbDXМTU{q82* 1myxuiӽ7 ()4vW rrМ¿ 9S%Ϝu٣ ܶNW i hғUUCV;'?7wӽМ9#D *'2BrϜviԽ {jӽМQG_lϜ"+ ]rUU CF5 [&SEr9r ˰*Br wDԽU]q5ԽS;rWU%W'U"X16e?ӽ?5 z9mr+TitS $)UU 4u^zůۣPk"DMr '*9=5 A[aМ?͛,W m'dJrUUXds𤒾 $H糽М m rU wr]  "w~| tp.֮arm IbϤ_;#ůeLl,9AarrU $XUWa83ӽv|%PKf* e rϤ r -$O;Խ#ӽ]_ 톭I$rUU  vSOrМ Z; !;JCМ\m UU [dur +UmϜmӽФ #QrϤ\ @! :QRji˵4bМ3,ruw ~\$ r(U?}#ȳz'H"?rNNJB $I|cu' -Crջ 뾌;ʢМ :ФnC=B¨v t8iHKМGOOk8 2سGOom mkU $3aڭr]<ͳϤnllnl;ۚ>ԽzxTI<MjJvبMnp6xМFJJ mLKUV :J)rU Фt -b۳eVvl:pu^yyp7vNN|$hrNn%;r^6 )1߉<`KK'n欬.Фt- cӽ mJp~zb}]*MGGOkm{?oФiq "|6S I;ӽ* VHQ??= \YE=r8: ljRМ: _ҴmbU Rdr lGVf񇒽Ж%Ϝ{:q<=Eӽ7SHDHМ>2*rv Qm`udGZQfӽj9yUTdyy 91ͳ{s\'A𤟕+ _;mrМ( v9H7 쁖NRМ:DeYdzUb^iVМ3ww^n cFE{ߓѣ Mӽ*l^UnRn8 )Jxfi1$ ;irZU GXiuԽ٣ 'Xr_ ^" $9rU qϜ? ]:4Hr; |": 9rUU r UU|mٶ^uU qМӢ ; I ! U @$QL*Խ17DH9ٳ?/__ k* nUW),᳽WmTMr𤒠VVޭԽ u)ԭr}G%ْWD&v[곽'% ٶ]HМ'/ L$]W ٶ$IR UU-YӽUYWӽӣ hN޺Ru( @5TrUUSBHֳϤ/ _F鶳Ф= 4cۂ$Ir NB$MrUDU !0R]f B64I1 1U "1𤮪 VoN81  TI1* C1 !1МjH kHT" d+IQ I ƳQ *^ T1 #i۳1  Hd1 Nм1U >ͳϤJ  1 I61}1* WN1񤺠  $RUU @ 1$ $1  B2R? C;rrJrw1<(%`۳rU $䳽RUmdR}Bji]䷳1 !1ԽJJj [nHnQ @#91~ Ъ5)1 p,R1 KuM1~ `I1QӖ1ߪ_ CQ_:7) ~ޱre ֳr_lkzI dUUy"HUU OФUU 𿳽ФU #"ԽN ]pRݪ -nMu1_ mIm1ߪ_ @DB&1 I$1 !i6DK1e #Id 1U-[~3RoynH;Ф]+ $鲳U 'ФUW Iۖ$nU I'ФUU I䓽ФUU I𼓽ФU  ۲Խnjj ⢢)RnH y"쳽ФU( HФUU y' ?$ #{U  +X !")1H` C=R(Фb`pP kk>2j N1 d[d81𤯪 I0 $RUW $I$@1 !۲-1J S/ Db``p ""1ФH8 i>ը\. Vr  䓳1U*U+H߳1U~ ۖ1 v8eʚ1J@j` @L* PeX%Ghh)!rמ>. $@$AR$ RU A$A2RU ]v1  !"1r?? \u[61@"铵~ f](3AUmؖWU o @糽 ۶M𸳽1* $IGo *Ȱr :SE`j iuM1ժnrM:R* m"@6RФ 0IRU IlۃFQ;>*.)RnJJj_;bj2RHh y"#ӽФUh /$U] ϤUU 'n ɣФUy,˝ӽ_`r )1H@ƹkМ`p0r#RJ?I'1XWU R گ+ `̦1* 1 >!)RjJj D= D``` "C=r X𐐐 L I01U -4 f1_ꠘ Nն QUZ+H1EMtr?*=pp 2B-Q Pejnlc)trz::l1U(x Z3z Kn - m$T![p #BMs PpppP 35mr? `FXEؐ  I$1U_ f eW1 / a1+ 3S;ٳ??? mUZ1```p mZ55 cEZ bppم_?5Խ1Uz 1UUvw1U5u ZМߠ 81=  ZXQ R˚jh𐐰 6`V,R I0I1Фb. 6IRϜ*-l=ݓϤ: r@bRhm`p"&rФz:N R,:ӽVx m@ +|nm6zӽo.CRڒT:EӽROrϜ:M]k~nx I@hRU 1 M1Ϝ  3=1}z ?4Er REb А 2C;r @Xn в1C9rnj:I$H$(( IU OOn_+ I}$GN "DMr P$Z 𐐐 9D&>[K𤘘d^z%q?.NLOm.O)0  9YC:1?77RNqМR ErU[3)dCМ? IGG[ 2,Rj Y靅I r??/ b1;P S8dR4Y55 5̴hPRRX CLМ?/'/ Z}[ #X%55%[mRU*$ P [yU&7'''ڤM0.X6q䳽М//.%R䳽U@X>7`0 И muV$R1W%|R$5 P C&dB$15% WʤlP)+5b!p¿EE>? Ӯ9ԽWzVtطI\HfԽФ m`rϜ 7XB b![zp GT[1f RhPؘ C2"1Ф_I I$RM::I$I$r bēn;?WHp )|5EМ?? !JlМ؜3xTJƒ: InY'_z IRrr- dGV\r> !:p KTE> 8L 7dC Ϝ?ps,ؘ m[1. 'dB?5 p(p' YdDE? 8 c>wӽ>&&l bZr0j )B+4BQ]\ I R  h$1'2h cP]UФ>>`:cԽZY?7&&h;c1^n )!H1- ʦVB\ P fj𤯯'  L0O mv ҬͳXX KlŔ/M P\(&I1 P i *$PXX\ l{Ф7''' ɣ# /VtvvOT'&&˶`;cZ"!ԽФ//1@p۳-$K`ԽФ %R'% ʴh,6P Z,ֳ'' @ Hr !F77' h BМ +'n]2 !М?76' `cQ, `{>.&&ƌFФW??&&2H:CttZֳФ/I$A$ФUI$I$MII$rn/.6 1r| Z蹇М.& Ȑh d6؀Ϥ?/. ̶` kV =41 1c擵М776' ʆK=VcМ [F>6&& @ c ZМ77'' ( cМ g|v// eQ񧳽 8c:cМ ۱gМ7777 c苓 %tBArhSpϤ6& k+M$rU v"I$rU )qېԽr*U+aAȡԽ,bir8K5BIrĤ "+rj ՐMr1Ww/r1} b(1ɉ f1^WVT nt -6 K }R𼓽1^-I$W0R糽 U V qr xp ؓϤ'-0rФtPcjr I 2R1( ۆ $r1uU 5I$R*Whs J  udIrZ*- zTTT  #۳񤥅 X @h?^m-ӽUU H' _6vR-pS˶L&&=CtArФ0SϜ=vkfjr "(2RjwI$$𤯜I$I$𤰜I$IRrm !?Il M 8' bmr o0 #1\ #泽_ iB$D&𤭠 )Imp۳1UO 'Ϥ ^.a?_WHaR &H$R $ IRժ 6@$1 I6r s-,-RUjۮ1U p\ Uo1U Nк))! -AДQ m.жQ_ #At۳Qu }h糽__I$$rФ IrnϤ_*lΐn; vh؍QМ! -CW1Z] [uE1UU #Ң$@1u} t1_  HS1 $Ia1* R q,R dI1H$@ R1 WRjIb/A1m1۹1}*ز-1МJ}HYIlԽ]#PUHֳ1 v,dq߀  I1x @J" ii@Q] md?1Տ Rjk ܠQI61~۶RisR vR'R  II14 l1М ($]71МJcZ)}B 񘳽=1UsrT۳_y @ֶ*$r* Iۺmr **2Q$H$1I$1P*$IRڂ  C:O1|࠿ II1 - A1z$in"RkK oHDU" _Wi-@Ф}U-tӽ I2\#@2{vкϤi&h킂 ~ 1 WR1 NPuJRU eRФH說/$Խ1U '1_v+I$1U/H1WUmҳ@M)Tӽ]Bb )r~ -ZQJHh$IHrA r1m$R".Ђ#r/:}czp 2;z::OI4  W #ӽUyX~n߰*,_Ɠ𤻛 XE`$^pp-dH155 gzWcV??'A4:2U 0sER] W8L1PXX\ )X!7''/ Cn1bpp$ (&1'@ӽ1r$Lxʰ6& 6dC1bP O dER' "ອbPRpФ%' ɐ 1ppPP 3Rf7'''zZGdz<<(S9dC6}Ф?s  C\::ZxLeEF:::kPؘI$ $1 @DH%'I$A$RppPP P"I'' -ؐҳppPP i4E3' `rPRc/''ڸ$;>Qr, tӽW+Pl$:MO$ڸ9 I$:I䳽]*\B::\z( c $A$R R'dY5 Xhf )|%М> x 7|%E %zp BCr5'' iK@TqQ# ִprRXL@1555Pi{pPPZ ;}S|? tp?\ 9}@'? bV(HP Ca$Q Ѝp? tKМ D8ұ?$ɔ ZW1%%% 8@:4C\\u<'% ;K1 غ6mR1~UZmrϤ4K-K [Zjw1%  + 1ظ VB!2$CԽQ  $A1 m.ӽR 5mԽ*!XܳQA-ФX'  vvA mܺڄ  ۰W\ mx1 Zh7''.''0ʨФ b,b糽.. 7%m۳1U k3w !?/& @ ج sX..6;kФ G R /KR Ònm[l1@$KҼ & z$IϜV ~I.IBIrvI&Ir7'' `>br𤼤dj1ӽ7' h Գ' C2C I  @2BK{ 5bI$VV*Nj21 ?I1 LR*U -NU5rϤ 2n   j۳1 1 !!I$IR\\TT` 0RjtHd@R"R+1˂ MrI𤭉 ) H$! l $ o081  Md'r tMFڳ׸Z/%QԽ1*"t8PʄK𤇇 =bJs8phФ fcI@I$RIHR @$R1+ * H Ȑ1 AA ڬ5R, tku\TTT km$ 3Ҷ6r^U &-?^ IӐ䓵 *U IM IN& 1wXR t̰سФ' 2ƂМ  Ҽ&1*_ %Fn1Ϥ* Om1Ϝ I̟ b1 L&-`B&r𤤤 ɰ𤇇 7[X峽Z]Q꫊ճ1 4FBAr K8% fCfJrФ dI@&Rw 1  I1 4K  hæ[ 0DB "m|mq1+. inkR d R1UHAR1ߪ  Rzb Aa  iW Vl1ttvv I.81#Or  9(I`xt ?0 %?1_ =f;0Kb'j'V I$r VQФ $R I6R Qz %1k)ܩ1$kȐ/ - ` 1+!! ~ tV޾/ #AT׳RU*(U /?1UU ~<_U ",c'_ U H1! %.!1z/rU5U H`Er] B "Rzo d$@21 %Ae1: : a8RU甒Խ)S߳1~MI۳1j`^f#V1{_?iߪU ij]\;𤃈Qs1М!fк1 i41 mfidQ ;` VRϤm Rw 5 1МI;2Ϝw BD 1 dB0I1 dA1?*< 1, $$1  :p1 R r !I$I2r &i)j H-nr  $I$01 m;&#ֳQx%=.1 @9 1J $ I1 R D1  &<5Q{ ɖ Űm1 -1 Km5RW Muf1  "RUok O>H9Ux +ܖ$ U @ܳ~"&1U]w1U/Hd1 -i䤳R vʲƳ1hx MtK 1Wn m61ת Z~ϱ1(.& cB6dQ $H2 0R_u l()1}} ` $1WU  *1Фzhjn o@UU MAfϤ IYBpkr* I$%Dr1)*j#Cnܳ UOԶ1Un LF <Խ 0HR1U] b$@$IR1ݢ I(5R{|[pjR  C01R.,I1Ф؀ iRU_)RФJJkDhԽФ h1UUV۳W @RԽ*( I8-wm u1mQ*~28AQ^* I۸mԽ1 2۲1 mm,r  e=i۳rb(xڭ r0U׸ 1A0-  ::@ $B" $C&DH&@ ,1=_1ªI@ R I  Rظ[ @1 $1 *"-R)vJJjz ʌ];rm,Խ1WvQdӽϤ  ֳR cȰDQjSQ}q,\Iy A 1R*z cQ$A\Vu-I4R  NZZ 9Rz 4mՖmr1UHH$R1(A r1~+*.)r1U`}j kȒ\Yx1lNjr階-Rl % ᳽j@ #𑳽綠 q+ r U I `۳Ri?a1/ v,KƳФ~@rz :#lRw?SJj```  MR1UUg V `R  CHԽ5 u"Ղ$IQsz^pպIRX , C7T%557djfФؘ 5x!557 pRXFIXФ???j%:p [;RUzS7|T^`0 C7\B \RLGR\7 OϤB3QX7i+IٳRp5%NL1ZPP^`X/61U mMs MD(15%%'W𤸸 EXUe??7% L %f)1%U_$BYӽ?"8l񤨘 rU{Ye1?=--j𤘘G|B(]М>Z{JKܼ @K rϤڛ*   ur+uM3 XIq?*rImϜ޸ƕH? }. 1Rp P1?5/kpX fTT 6$ÀmԽQ۰&⸒ )1=5' I Խ1 ;ySE17 01IeФ)I :x+MLӽФ7tҹEФC9|5E;;w8 ؘedښ:} _y,$IRФU  ))^=??'+ t@$7777 rL1pPZ%uj/ k3` ZW/-5K\ Mݶj+1. Z$%W7' hw˺˓c~wФ7'&.COМl s*C hZ* !ӽ..?uij% Uk:cZW77''k c[$FT/'''H C _D7''' @̊0I1 `rМ kpr ׶ kHd1%klϤ ePmQ15%%H:FP ǒn*)0I U(kcd&G[?>&&H! ׳R\<$X  18:&Nt(k$Q ӽ*Ll&b1VTT\ :lnR1 Zh1%' l6k1XXX\ r$ '  FCVoQZ [Z%1' Hk1\ttTF-ӽФ/$I?1"W$K3B Y &k `1 t$GDR% h Fc1\TTX` r𤞾"B j ,:R\u[ >.&.k6c[fRФ>7'&lcM7''` cZhӽ'' qH$Rv  c41/' 2$C+гTJT +BO(ԽФ=Rӽ1*]n@ж1U6v糽1U ,Zrttxs lФ' =b'ArOHXaQ N$1  B Q1 $ AR 0=b'jrФ䤦8HKФ5bI0 䳽𤏏C К1^+-O Č1 q{r% hAT 0O1 Im10O L1-6h!ir k2ЮRVU  IRɋ* mh%R1לWLKФ{VR $aԽrh AOԽr $Խ* #@QxM1( % Mܔ$1  #i1TVU 0،P) ͐tir" Ԕ Tk&Ғv `smk'Q>+* Xζ'\U ZmQ񤋪* K  bJ1 2%OH1 ,JI1脊ӽmT,Ϥzc-U𤫪*UIrn{TKbfR ~س@o',CmrФt4i } 0$I} m$@ 41OK  5ci Sճ lfmRФ I2R $ @r4+eR  qRZ2ؾ1񤋊 ;PC.bФ tH` RФ9P-ӽ u-߳\UOq?UUU䳽UUM?Խ+U p R +#! 5 tlfmRФ 9W0P1I$ $R &K1e ۶'R.U $AR*U 1J'0 1U/u4n,8 s"`۳\_pӽUUUUhf۳ ? * gRn.";9? tmvmR o.dQ LBRW_ 341 $1  Y ۰ r? `-1 MdMR;+831}} #rxU O.IжUIMU_  @; * WdPR!;0C mfmRФ  PIMRer~_ mscc [l鐤QI$RUU k{aR>* C=bϤ {Rn$ԽФ u?ӽU@۳1 I1$ `>ϤꀀI tM 1Ф^uƯ#tӽW}`۳UUUe <WU )"𴳽 +I1 [Q8 I"Hd;r I"@$r*a Eir M5weR1 aRh A $1 $ d$R l%R1u @uh R i;`R1`{RМxz?)] |nسϜI ۳Uu Q ӽФ8, I,r I f: H2r"j FM$R]$A6Rꊀ}-R+ ]4HMR #@R 0r ] ضmVZ m6жR"**捅ŏk+ӽ *Wn.XqdzФ_ U"aUOIW?ФU UسФUU:?ůmQ $R^_ 1 Æm1 `ڼ51 hR'Nw1 mmb1* ZR;o T}jRۨ "%'R U IR1 $I $R1*WC&!IR I$ $r1] [2 R1ۈ RФHH mT+Uu?Uu=ڳU]@pUU/I?(_.ŏjj v,R L 01HRשּׁIIRW** <Β)R} $A 2r^ $I$1ݠ d`f`r1; eBmQڨ qmdrUNM1_ v.P۳Ф_U_ JԽ 𿳽U}[/_@@ $.ӽ1] VZ 4U^ A1U @6)R !AR IIRU $I$R*  n~S7R1eMNn ]DR $h&z^ =`'1U5W&IӽUd+<ӽU$ ӽ "ԽФJj -Ӱr1Ul/8Я1  $R-%Q𤪀 жf'1 dۮI1ꪪ TqkA1࣑d 1^*7Y."RcHDnU?IڳI"i߳Un3ԶU=ڀDϤUzpӽv~`ӽW# "RHL`Ϥ} >Ϥ._Ф`۳v dwԽU-07yԽФ_`=R@b\kzpp )r1ߨn WRi,I@$Rڠ LH1 ?4 RJ RJjj?I``!,rH/@$ԽU ӽn((N,MpФv#Atdz1vrU5y,h&M1k@@ ,1? Y[$E 1`H r1jI $r1 L$R  d$@R1 ʨ@ HKr殮,")Rj@@`?B*Ф`ppP 0#3361&&'7 VlQ ӽj*  Z{-rTxmhzϤຽi;v ۳1 -+j@`p !-r1 9`p =NJ1+ I)A1R dHR Mm]r}"(R@@=e``p-RH@ 0m(.?UU'UU߳UUTSԽUv,9uԽ_r!rHHj= dФ``pP [/]ssr $  @&R ImtUW PRu^ gM`R.!mӽUU =؃)DФ``` IfrМR'FZ&𐐐 &@RQ7R  L R1/-0=r𤺲%QFnb=ۛZQb$2C;R` 22~ MۦWz糽UUWUw$Xۡn߰"B9r:Z^Фژؘ>U]RФe^ӽФښ hv-1类Pn1  0NdR1U&h;œ?; dՄ`_ *h1?77 !Xp"*1_I$6Խ1Uz$I ЖtԽU54AФղ2C;reЅYА8уI?? ٖM؆mԽ -"!Խrzʪ At? VW>(.rҧ!^9rϤ* ǞI 3l[;; Ib$_ ۳ (W-nԽ߰"=RϤ@⠰5F%r0۲S;trjz2kfrn: ݶa aR $C 01()I1 64C=Ф*ߛ¬e!А#5ORϤB`Ф"9tŏrO UIX1- LHӽ;Sb!Խ48۴I;ӽФS6E[]4X%]Фl)𤘘D2CF? "=(8X} 9D7?rJTI.+MR%1ݢ C8x7}М88>[Ϥؘ d6RU+[9|S6zМ?!zLФ7|7EМsW;o9']:::kLoܼ#B&drMR Aڳ}R䐳М]>&& ` `XW>6&&2ԳtvDhr]Fh>.'J*Ԉ,vRY:)'C2FPFX>l4Fc[ Խ..I`?Ф Wh cn[FϤ?>&&+Hj|$ >*&6%jӽ֨B&؅~m0>BFk I@$IR1*R)`?7&% O Ɋ14 $ dӽ @ӽ1`@@~bv'@Kذڋ"1dz..ܳ(˶h2c[^WϜ>>&&˶h;cZ6&&ʤC:c&X0c MA 1& @k6&K;0` ?7&&;ɏ̸BlH /'&lcfh(@.&k cϜ8LH=bir(ԓn rrm\ ɳ$qM (^DMԽ-*%dەrϜ 0%o8pj)r䦥 Ф&=fkfjr䄎@ @$R1 !"!Rj 肶nr18Oʴ5x)jrМ8 =fKIrpwƷr<$Oܳ1U1UU/qԽ1U ,DBAϤ۸j ӽ1%%i +l^oř xh,1𤺯 mR  ֶR1  5jn 5b/ir𤄄O0n/ 糽xUԽqg۳m dKArϤ 8K5bir0ȤH ꂡJr䄌  Kr1# ðm$r1UT kdar1u0O  vki  fCir;ȘM. Q^ y"<2/%MԽR*U,bIt8OȤK jvhRϤ ziI## B'Ir𤤤 IH2RVU mېd1]-hRj =b)irФBoVHRnHl쪯 I QRR#( r*rI1  (6R1ו5V$a MR#Fk-ӽ j P\I糽1UW-XФ/p P;1+*W p RФ*+*)kf fiJ0R𤋃sJDIR + I&X;`R1U D@R1 L$1_U mRANФ(*t p R*+!!F-ӽ #~ $n_ dɝ'rm m$U@u`RФ#!:C5 mmRФ ڶ֤Q d@@R񤺪 NHaQ (A'BR  i[r:+U c6ւ Lp r+)!!j$Խ𤏏 /Iij1 nԽr}⪭ MNڳQ @Զ1 m$r)(~ tMtMr1+ BVj1 j,C?R>j r+nOҲR𤠊W_6߶RUUcRUqIR(BO{ X1 򳽯c 1@۳1U~UC2п(M$Ϥ UtR #!mNk >U]UUy ܳUr`դm8-W(?Խ𤫪u Awqr$$r] 5]B4]r $@1r1 -:MR RkR/U  $JR1M)R jtiԽ𤩩bq xZ8 H߳1 I,I$RuMh1W~>糽WU @:;ӽ𤫪wuq&R𤡡# @;lÖmRW &R "M1 $k"`1XmiKRU&) R  nZkr1:mԽФ}/u'ФWU/'ФUU ?N]6$ӽm/Uw |;Խ𤊨uel6Lr񤡡H$@R2 0r1* !I$IR%I$RRP!C2IBrR着nHArRת(UAA$r1 $`G糽 }^n5Trޯ<. ~! mv1u$ 䳽1U- $1U-I1 _  h D dk'r U uгRwgkHrm 1ӽ@` JTR $ R2] hulRz i'R TA1  @$1IH1 H RG @B路 `2ӽrA m @ֳr_ /6~z ! ږ$q"U-\n .Խn"r-RJJ @hږ$U H O"IrM L,.w,9q!-nnnrKB F`` c 1Rj Ц>1𤪀 $;1𤀪 xR𤪯 $IBR )R`jzS'TФz#3 rji;ItK1- - TR/A:1~_~Uw:T7X".⢢rФHhT#R\Ф``Zuj.UW mڳU  $!@0Խ1U| $I2r1 R3 r F21 HhJ\e`z_ 2""RHȀy2MӽϤU /`۳U/Ф#X?ӽ_Ktw/v,9yԽФ]`rФHHhjP  "n$r1m ,+9Rk t,IR @)RW w> R甆) ,(r1:@b*pp "!")r1諸; =A$9r` nIR_ `'1aD!7 WϤ w.']zb ɚ-r?SF 0rKK $R @m'1*uc;1𤮀)yn@ R;9-1n@@` ]Z`bp"4/RⲲZe1p Ih R{ a$@Rҫ ! 6 ~ߟ%E؁а*x|M:k7~Ф#TݽRN`2 O&_ ?ij* $YӽvTUůcS;ߝPXА";;؅y mTcԽ1UW$A$1U HB2R1ߪ4RKur5EZА3M@А۲S=pϜz:: &nR! ~#xwU%nԽ`ڠ)Zz:S ЁА2C=rA]𐐐 v;R1_m7RXRR/-rSZ 2=rP ]А Bi rn* Iըm $1Ud`/TP%Ф1cR :u~  ̭341 'F`I I$r1 $$I Rz 0ض-1 HL:𤟟%EX <5M`e؋S3Cr:; l I51*r / '1U#sdzzn4dN۲`"C?RZI X,]n𐐐9ӷE:!JK؜3X%n:::O >UxRKԽڧE`М𤘘))|Ф: W:Lؘ DHT&EM: Kؘ?6Z?qߟ&gQ- v Z,rpnIXD4>HC(dB$]?HИC8R dJ4Gkb1 dur1c'dB$U?0l񤘘kZ??0P;B( 8 Ф C\D4E;? L$n{*Vppӽ. IC4E>!lФ؀7\%EФ8 𤘸3)YҒ:9W pr8. !I$R )dS07`RԳ1\oh^155 +R*P1 =x7Eӽ13_0HژM\6fԽ?d @5Ϥzuu0LӽNI\CH<)XR&Q HϜ E|Z5/b%8pФ M$1 C*P&f :1..&h;FkФ H2RhԽ>>66`;cR6& h>˶ c~糽o..}X1p`@ T@Խr! ke@7 R$.@&CԽ1 b^[?''& ؀ P$`Ф>&*h;Dk ꬳZcR1gwAV*ɘ??( 戓ФڡYb?// `舳bZk7''쳽brϤ*. I䳽Ϥ*Uc0n?/''`;c`./& R cn B%hRn:4 h=Kr (9)1𤊠 R М76'C;6cМZ7'&h[F{>>&& H˔rn Zr䓽/. 7@ߓ1%U 򘰓wpw1%j=欳tZ$Z/''&C3cZYh6&&h:| KIr+ZUW?*&'b cӽ8 %G 7.LhԽ( tX6Ȩ@ c[.h糽.& υ[JM?,,˓nRe[n6c 4cМ >vc/jr𤄌z&c2ӽ\U ?_NV+ĒM.((,VbAR  Kb/IRϤW8pФ6777=b!fjRϤ #4IRު - "ԽQJJBItSԽ0# )-$ILӽ1"AԽJƐϤ#DBJrФo2سФ 3d1\I,۳1U-qkiTJӽ) 𤧇 )Kr ˶oo)r𤤇 Y7 mr1R k52rziJr  87o.&+VbnrМ.γ񤦆 4Ƣ%&r l=<Խ-& h2䓽Ф\U I$ФUUQҐФ*U3bIR8PʴL  !fR oȴl vk!TI1 Mm I1ޫ_ [:*a vsd 1񤯻 0 ,T'Ir𤬤8W-bI񤤦o2Գc3fԽzM߳qԽ񤭨U+VBIМ No1' =dCI' @B#80PPP4bvnr I1 @c1Ф  ("m1ekoM&=c'Ir h5 4HL 0MR"r1 kB'R𤪠z mP1 ۮa1 X\;R#*20C>ӳ`HqR #! -rnz m &r`RϤ) j$Vb𤧍 !Y7R)+ MR)r1Wv IDQ1UU AԽ1U  aȀ!Խ0+ - `51 t r1W=o-Аӽn/l2<^UIUUdzz=`۳&M?) U!t r#! *H/,!Ϥi  M 2$C2~W 1 A$1 da1** IG2R>* cX ߘMRϤxc-揓М  }2@mQ(+rU l 21( z &Ϥ $ ?+ W xqu Q +#!= >ws  dhdmR! Hn$r誯w :R/pO1 @1 Av[R1"_Kҳ1 `@rФ ) =0<Ϥ r |2$ФVUMېӽФUU I2 ڔ$rN W ymn_ I` t p R +#!Mů-$ӽUn h'nW aůUIܳUUhfU l糽_ :R PPI1/ !&U im[۶R  #-9r_ PR(۶!RФJJclVWU=۳ul:ӽ_O UU yФUU -ԽumHMv"ԽФ@jj ) R1+v 6IRopiaR𤣣DieR𤪊$$ÄR1K뮵IH 1XW_U Ѐ*@1 )Rq^HƭԽ]N B Ϥm+r?|< m( UU/UUU>ů@jj-R{ AYARWW u1 m6haQ*U vEiIR f؉HQ  @$R vuRi[:1.r ml$s s 0;r~貳bQ4Q_ O W 颎ԽjaR߿+* ٶR 6mB9rU_  LHI2r_p 0R ` lR $CɐԽuN6rФnh_HFӽU*݃mX4Мss ФUUAФUU~ ӽN O䳽UUtU#ůjj.RHȨ~ n_/HӽϜy`۳UH`UhvU? O \)tW!.RФHH@ TZ&Dzxx MJ&r1Un$-ڂRx 2JQ @@ 2 1//'~*rKkC? dϤ`` ")RHq Խ (1[ 𸳽M  I䳽U&p  x59pɅԽrR,j 5Ф~z(mCۅ`}쿓,W O6~iUJU I2 mۭݚU @ ФhzzT?+@`.*2R-HHHhy.DԽ*䳽UUOl`۳UU=ֳU~VW?v:ɵ_ ڨl"R1W3?```p I$M,UWTT m[۶1UUm2ެ :4mU}IIQyY- "#""r߾:> #QФpx&>bRФn ԽUl޳U_~p ynn IwϤU y|c'N߰ ȍy1";P1ФА2CM[ۛEМАȀG1 $(d9@1𤾰" m&HR=DKr𤟳;P ФАP/"Rp2 Sm@Фқ 31?rz: ODr &r

> >۹}ФppzGqМ;@ UPFpd#Mm8:z  $U +- o9/,X.庳55'HӽRb.ngڒ2%ERp RD RW $$H1 !Q*/,rМcFt:~n ذۼC䓵Фߛ\EۥҐ2C;Rb2OI6Uzh'n_Caxon+ Id!ԽNorХ! B7t%1555 j Wl#B,RmR?Ihm+NVNӽب;*kX+֮9۶ 𤛝 X8hԽުI'М?zrԽɐɳ<1u^ aF* ϻKaڝUϤ::|xܼCG}T(}Ϥ:`v{Ф}%n[::/AړVpoIe5>s2L𤚜9|çe:tHpϤ4 9|R m r[x'Sؘ IYc+lR BE\\D::3״𤘘s6n>1:L9Peo;::!:𤘘/\@`U O NФ C(S5 !rUǧn:::p{ɔ 7|B]7 8PФ 6öM1 )eR0Z5 腛7nUE5%%'#1 Rp%1 Q5?*XN3X%Y;:>=UxRLԽ5|%_{t7Z&~>ɔФץnܦϜ>X5؜YgQ1(.?S7 ![8LМFhxUZ??/ p2%S X؀ 1%   C2$A1BԽ> ʦh J1\\ H@w IӽR /4")Խ0xp`j 1aIE Խr @0$Bӽ1hXYh?'&:*8B}Bk:8 7m䳽𤭨U ʴk'Z>>'`;FcXwФ>6&&C cМZ ?7'&@>6h> h\T C2$1 R %zR癩j^6 `K(BϤs'֓ @Orn фϜ/.' h 戳 Z.j!糽//  N @3B^^\ [fh1  !Խr 4HIr  4k6b&7''@;j 4RR]%VϤ>/@ cj 6&'h;clw7& kȫФ  ܳ'' $׳1* ʴKtk\\\V NQT% @ d H ˀ1  $!H1plԽϤ6&& #жrx .@rU_ mdzr >!^BnVW ö R !RhT 0 H1  6!FJP()R @$1UU Nē UUO o-n毯0SʤKМ=vc)brФ0 O2o-/ 䳽U%ENů+,VbI8hФHHnxH jcnr𤄤 htmۭR1T] !0 RU C2,1 @4bmr𤄆xKФ>cis𤤮`Rܳ.>.j>pԽ^Um'WIvړ%+ aITtV Hʳ {k!dIQМ欬 L&nϜ y'3(r ӚX)iwA[1 +H$H R? $Hӽ1  ,9#8Խr^ dIԽr H$1 H%w&׳ j"VQXHֳ1UyIrԽ,؂mr𤤤ʄLK xjr䤤8P˰O 4J*eߖrМ fI@ $Ȁ1 Ʉ1U 0k|=  Knm1 iYn1 d'BR$I$R1 I r2ת@$$r1KR1rZ ͚1  dm 14jس1 #A>1_muX糽m00 I䳽UU y"Uu݀M? Ut  R++#! 6BФ AP@R 0CDRvU I`mRU $@RU ڃȬR * IGar2*U DC6d pr--j$ԽФ -|U L_} O$UU ?__ ӽ *u p R +#! c6bФ LdhR hf{RM61𤺀 o!f`1 d( @1_  - $eQu $-]C i $ERrttt $1 #3-ԽjJj 9A`h  f(lғ0` $qI Iӽ: B"HR̎@$@$Խr $  @0xM[311w1ꨪvQ1տ? $ A1  Au]vR<( 4Ci  MVpR((+"4B:;ӽ } Τ q AhדR- * d I!Ʉr**" 2J\666/B?𴒽v Hir&*)ԽQJJvTӽ d Ӕسr $ Radz ZM糽0sඳ0 72 0`P R1@$R( .  !*MR@|1.qR $C$1 I01* ARUdMŏ+=<u $ФUU ܳUUȳФBBB )R dH&R +XQ𤪀  Ry W1/< uòkmRsf Q|LR*6i@FM  UB+s [FΤ<,nKr*+$ $1 Q4pLaԽU qvrH ؊hlQ !I RgA$H1 X2, 1 a 1 H 21 > :kdR1$@5R1uw ]Hr0[>0j`eIP1uy+IȲ 4-@SQ)Զ kYRGqF2jc]F.or: @&EZ М 2C91p0 Oϑ糽m,>%o_H$IUI񼳽N?RФػf`dz "0ƞ1Ϥ`2 |p&rnژ f1i1 N8# 1 ?. 1ת* dS6S-RZr O޼sM ~o 1N" j 𐐐 " roz:OI$ФUz=䒳UTSU.~!- 9r2P|А^U[r𤺛Pqp @u1 NxQ  PH0R1 C3lX;1777|,؉ٳ^XXx Q? $M$e1@@{_*RCr1?WU )ԗ -VIr $r$O?@@pZ RdzФ?7 [7]v@`b &I?777 @@@`` HRA HR $ &;rÿl'KrФ?: ]X  l60 ŧ`r P?77$;Pnoc In #䛰=q hijj{z'$Q* ri$Q''''jX;X-yig??5q.ֶr {QP ^Bddžӽ+z$ːԽ»ܭ zoo lZBn:: L 7|!?ks1S  !`і_]'dB4HФ7|%EФ:LϜ)Xr:*{| r fLC ??/  r 2吳2ppPX !P-$17''I 1\^[H H15' t1^PPP_㉅r?? Nj U I$1 vbY'% MV1ZRPXm" r_߮t 帓 C7t@V'' 2ȳpppP.RuT7%''m iҶ>1ZL CbМ _oМ C!X5E==75 XEv*rb`1mq5%䴶М[ hb41ϜتIL6М5/ m ktzpZ Lpr7' ]U zrzz\O$Ϝ/' CO$VV cI$Ϥ?+!OkW $$$1U FW777% М@ r>& ˴c;brФ bМ77'' ʦ` cl^&N>^I pߓn/8ӻcl~kМ7&& l< [>&& i_k8{>6&&|˰3Դ PR𤯫m^`5?>.'˶h;氓dY`>..& , S@5n>..@=cФZ"ӽ..$i/}c5cQN  Z^>>.&c cZ}S?7&&` ؃ ZZj'' Fk4Ԉ\ $$1RU ZguqS7' B**1X\1  HˎPE]5= @ C R, Ƴ1 @ijr h3j Rh gOBV^^\`S/ (+賽vgew/'';`h1 I$R着 An[RӢ" #$IRߢ [m' R  D dpR׿$m鼳 ?-e۳UU 'U H?ФU8r<Ϥ (UMd nMn}U'_]/䳽Uɯw 'Um\7u&;ӽU iD>Q# 1( M]1 MHUsjR𤶾3$ Rz*A KR  |܆1JQ"nِӽ)~dn^[ܔӽ *UOԽN($ФUU߳U۳UUl;Խu ATuR xon1 K x1  d&1u RE`4g1  I1_ $ ARߪ_ m`gR;utI׳#$~ - ФU @'WU @쳽E 䳽U IU  i$WC WnrФ cΓ*iUpRgٱQ*+  @KRU I@2RU #DP [R `1 V`R;mŏ#WUϭ䳽M((UU۳Ф$UU Hd;UU ?ԽФU A{iwМ fUr1+ u 1} [1  XI1 I2 $Ȑ @1 !H˫ I%18 $M-$10nRUm1UA)1 䖵$1U "!-n1耀 &."1@Hcn _!$ vu<ФuU IhUU I~˃(* I䳽UI"IijnUI>Խnuji=vR 7 FrRժ sNR* v&IR Ib-Q IM%1*  wr * a!RjJqnHխԽU۳UUMR"䳽nרW ?U ӽ*U<ԽФU*UU>γ@@ ڊRr,h1 퐤-H1Ф & I&" 4NijМ ݺm۬1* $1𤫪 k]"QМnjJ o D" a?ϜOϤUy M泒Ϥ %+糽ФU-ӽ 􄳽U.n  jR] dH@1H 1𜬈P1𤪂 `R?HQ  v[R1wU ^"1J @ӽ" I2 $UUmۘ_U3`UU I$W I2 $U ɯϤU"!k3no R5R51n@@$H$ФUzI I$UU yN$_ ɯϤ  w1U n,S7uФ{ -1Ф@@ "4ڳ擵@` 唩D1׾. uM1 kmTd7L2Ru Hj1 !2)RnJj TOC(d``>.RH~ӽФUh I@䓽ФUU I"@$UU  #`w I, N_ N")w_ T?m8|Фb`rp싞K׫RUw mf-t1/ VBVA1  M[51 -g&R*ᛮ)RHjjC=)eФ``p ##:RHh/$7:ԽUx䳽nU I:$qnU I2Rr#PqϤO*IdQnzಚ !.1HHȠ UC+d`` L ǤC2׸j [٫1 F,P$1 0!@  1;>"#B)RoJj2B |b`p[#0#4RzH$H$rn𐐐I$I$Ϝ481U} EVV 1" +0S+r y؉Ϥ [ӱ4xrz: Mʞ[yں &ÑSܓФ/ۛ  @9 p {2H'ӽФTU n/ y-Mr ZbАNDMred𐐘 I!0Q  $$1 $s?#h)*::IHP%RФ߰"?0RϤhjrmFar:3 Ou?$8Up O2h$ӽ88IB$U%IBI$Խn 'Irn_;Gf]%𰐘3C;rz2)fjf𰘘 !1 HI1 MӴC 2[34?rМI!а B rМZа&S6q_? 1d l糽 pW%yDn2C?rФz҇`^ @_31 PIn𘚚 kWLiT 1+ &l1  ڮ-/ ?0?Q K`哵-\MRdȆlА BT roz: I:ԽUz @ϤW O WФU5yDN߰39drҥ]Z C3/yФ O'II8IrN::> yĂ&" V0P 9|C&EФ Xؘ ']5E wl I|DФ%zP؜ I|LR_ 'dC? K\wn 9R$E> !8LAT>Q{ɔФSTfӽМ???1UM*O9|Se? C/ReRv@;S̵n666&{LsB%TR׺dSy?78PŻ[}Фx:O- >  @ؼ CR L@ФUz 07+瓽Ф7 k$< $!3l9SR2k12pФ?}\Xfo;> ?A:Ϥu {V8pn K÷E >'$n:? IG &Jr h |c  PreE]?J Z h?6&&|ӏtE~I>.'& {5bМ &,:&m1 М>&&' 8  ZМ77'' k<ƃМ n*..& c;cZ>hӽn.. 9i%U 88nCf眓n:..& ` c Z$WМ77'' ʤ@ cМxМ//''4䔳 -ڶ6Rb$^1S?''@:$tb03A 6& 301TTTTKK&&&H>&&ˈkȋ Rh>.& J"Kn8iyMBRk.q Ф7' OB΃JX^ NIQ𤥷Ջ IkQ𤼸 ܉qT' CФZ h糽. 䳽Ф-ULKZh>>&&CLݰn, XVOn 'jOCc$ZN ?67& ``r- 0 1 kW7>&' #I$I$M?.&& Iyrk"Orn>.& IcO& 9i<ФU ˦n1k?>.& ` c 8Ph掖r.mӽ /䳽ФUU M?Ф (U - 8 l =brМ ܒ&& 5Vjr I'1𤸊W Дm1М RҔ:I1 zȣrn& 6j1 P+' 4br 0O$MK$ijϤ(Um Umd߳1 "JnmP Ф  6dB!I1TTVV    .jIT.,,1@ H 1 $@$r*x Ф' 4brϤ8  4b'br 0s7?ӽos2dz\ IuӽФ( )+HԖ1 b뮳\$ b#(MÁ I$rWW   o1WsqT 4I1U еۺ:1_ P5s1: ƀ5Xr NƇ rN&&& =b!rr 8p<Խ- ˣ$  I"<ФUU 7%IԽФU>jr y$$r,&&, R Htʠ&& ?C'vn1  #۰1 $I1 1h1Kz Pn =b!Ar֏>vc vHdR kڵmU1 iVA1 n m1u*$I1}^b 1( l5VbФ !dL1 ݔ6 O5t?^I$rU I $ $$ФUU L$𤩨U  ǐQ1 #! @5b !wLpLR uҺP1~jy-U I JUW Y mUU Y 0`U 3HI1 # HTLrˀ Ȁp1 + v"$r$@z);dz W^ H䳽U qv׳Qݗ/!yqTIRϤ*" `%j Q qҴmRXR־6nB1  HyW1/_ne?1U +1) akrgir 4 Jس!! jѳ\I"IrϤU  IIϤUU 3@$ϤUU/F?Ф UmpqRn#!Bz !hlR I1 ҦD?1W Uuw1 * CA1 76aoR*y$6aϜ٘qWR!#،-𤍍 /^U MФW IФU IHdϤU 17$+(_Hp Rn+#!vrӽN#{"LƳФV]-`IԽ 糽UU?UU~%@r'n x< uL4i1М $LB M-:1 [/j1UU =@L1u1W m۶I1U k!i1𤻮o mԽ m?W `U_۳W @1UU @۳1 Iijr 9:r0j 6(&a1ȈˤTȅD1&,,< $H!1I $1 #@ 1?! lfl_mdM4IitIԽ𤩩#ֳ^ ϭ U/i䳽Ф #I߳1U m iR I&S J*4r:jk1m;- 1] N$/Quk I!I1UU mڵi1U iI ݚb1 ]mmR? MԽ] <ФWU I Фmr 0a0r Öڮr ɐL0r  rII$11(*I11 AdR ԽrkZh!1<,,39C341{CIQ . ֳRU@k߳1WI"@}۳1U3aij1]y2L3̃_ wR $IҤ1uK1 `ǶM1 $I„1 ۶m1 д]۶1 дM1 $I$1ꪮ ۶m1 lj%Z1? дm۶Q &mWo2 D&1 @;%J1 Dۢ1МjJ Ir- IBnU I U ImoU IU IBoU IBlrMU I² r.U IҶmr.U IҶ mr.U IB@r.U IҲ mrNU IB@rnU IIrNU IB @r.U I=#_ HHR $C2d1 6i) 0UU $I! 1 Mv,H1 II 1 $IL0UU IȘL R $I1 m#@1/ I$I1 I6 I1  [3`1 I$IB1: @ qq !!2jjjj vIDH1+ 0` ē U $MQ 4I#d;r] $0_  糽*W $I' @Ǔ U $ 'U $I'1U @ '_ $ A RpPP H(lRw  I1o k۶m:41__^ [Zim2UWU !I1 IȄI2UU [k1__T51/ mt r ݚm"1 C1 2a11 mۮmSlr$&I"r ]r Ҥ,ғ1 l0ӽ+0@*DBQ")".1j@L֖m1 ]m?W m糽2*U i糽U I۔$1U$I1U$Iw?1UM$U瓽Д  AI&@ x%E`pKMڤQ1VTVW ]nm"r ]v͊rۆPX}1 : 1۶R 1 mvm21 C2$ `1ު qk1* c;]I1 m J1Z 6ؐ(1W M0`2 AIW Cڤ@I1 M I1 b+*-R;? ]Mr(7@r*dֳ1_`1Um'_v$U$oU$-W6$rnU  $nU $NU $nU Ҕ$NU o $I$ &r R*Z&n یmQ [2$[51𤪪 M$K1 mv1 q'6-H1 萴-A1 kM 1 ĴM 1 $))Ar II1 kEj 12 m۶M 1 4$-A1z"& Q2: v?0M1mo7)1JJ@@iڃM1%$4` ֶ$U dɺP'_ #ɶ$ro_ j$N U@$ U $ U .$-U l$rNU $$rNU $$rNU $$rNU s 6lmӵsr @PnА I@$1 B5C#81̃@ࠠ IBnU IB0rNU IB rnU I‘mrOU I– MnU I NU IvmrN  Im IU IMU IMLU Im hUIGr틟 $I21 21B#4Rjz 0 نms dr Xۦm1u &@ v@1c`N>1 ֍]W1 `M aS1* [׶@R1UUu $`R1UU @$$1 $$ IQ $$DB&1 N1B#1Ф $Hr d!Ф @1 ,#@ I"qrϤU IBr0rФU IM@>rФU I2AĒФ} IຒФUIrԟФUI.@rФUMz* NmӰmI>Ha1 wNvD R IX!W1Zppp m۬Plr `B0C155 Xtú!r . `MKccs" RjlR) 9ڦi1 *$ &L&r$Lr ۰Y׶r$L$1  r ֮R1S[ жm-r жkӭ1Ȃ P/8ӽ Ҭr[4_"E1Xظ I1p"*Rb23I ФuIAФU3 iФU*Im$H I@HU I"IU I2*/۶ӽ -hֶӽ1u Iq֍1 Im$IQ ( qU`p I$I$q [3r57 ALH IRJD``pP $I1着 c1^Hm1 -H1.  I AiRU ' u_ m ARժ n' IRU $1( +]51 $]۵121#4Rr 0ӽФb4G{N $$I1񤪪",B341̋@ࠠ IrHnU I Ar.U IBrirNU IBrmNU I nU INU ImnU Ir IrNU Iz NU InU IBr@oUI4{틟 %d1j2)B#4RjrBS;| M.$1 Ѷy$1  A'1V $1Ϝ$I< nG ;1𤊯 m׵1 $I1 lm۶1 6i B1C#8RzRR ACmr r rn $Aqq 3B,rn r 'rox $$nU ܖ$U $U  qk$ _F $r- U &v$r U 4$U   -  ͐q,+* T Ф i0l1 #C>rn p )dzr ˰ro ]%6l1 ^uQ1  b m#) 1 N;]h1 Y 1 ]Y ҵ𛪪 dB&ar I 1 ! RKWw qq =C8eRϜ:: , r ȴ HIqq ?B&er X5-50hh + $Q x =.$r $ U @$rUw H䒵 Ue HҔӽФUۖ𤪈U  I?U H - !0$ꪪ PDK1PXZZ ڮֵѵ񓪪 5R71%%% Jbr@Jjj MͰ1SRZX -R.1HϤ ˺]R1 iv(HR1 ]ץ]7 R1 ۚ- l 0L mv,R1zZZ!$ r ]viۢQ1 ILBq ;ٓ5/ M$)m31O$Or1,, ]ۭM;B-C&D!r5Ϥz<U<UM$U Bu'U $$ u $U "'m$Ϥ , ܔ% J*䓵0(( Ҥ "LppZ^ $A%1__ +7G55'' MANX + XXmۑ"@1׀ mui1 Z1ItR%% chmR1_ [M R1 $H Ϥ LHR1ZZ дk:tr 늴͆r?X۴I&r/C7 غidr**/ :bФ H$ @eh>6 hum$r @rN غc1𤪪 [2sr8((#$ϤU I"LU I"IϤU I2'M_ I PJr  I" ] Ҵ U C4XR DB&$I2ro S6^؇^7'' @[ ӽ c5br 0C21 RE^?'' PB]Qxh H1n, 4ۆm1__ Цm&1 h3&mR1 4Mҵ𓪪 ]ۮr 6R1[_U -4ֶrd:~V1555%7mB h+A1X\XX LIr TH)Q1  زrj( L k&k;1 F}Y>*.O.LIUi$ФU #i HUIm hU IUv"ФU UFCTBӽ. mn6r#! `Z( 77 :X[ ˺˶ QJ h rR]V?77'#2*ۮrC1bR. H!Ir D*-r7Ӧm1, rA 1Ϝ@I$I1IBn$I1nIQ"%R.'6ϯjR0,4$ iA^X i@W/ CM1%%% ЦmZtԽUZHdC1\VVV  $H0rRXVn:*. O2?&a_蠠 I ۰mQn  IDnU */ضФUHmo_I" 7rUc?C1̋  ݊%mmrP`fQn p r%-+Jɐ4Vcr &L21Ƞk$F>>K"?$q1V~ ( I4 CQM $`2ߨ $1 ؐI2 ۦ&m1 ɆۦI1 Ir-;1XW~ D2 P&fhf>6 [ [eR**** `vcRN $I 0qq R hf66  [r.'** @crn HC1 @p'Q 8((I$I$1-U I$I$r I$隠rNU I nU I$`MUI$Pr-UIи1MU ɖo1  ro R(f`F>6 h r.// htcrn  $@qq pHpN.& [ h6r00@ )bIR Cuöm1 Q 6 11ꀠ k11ۯ/ dHA1 C2@JR  IRw8' mvEr dIH1  C&1 pʷrn&&&&$ɛ2r1U 1M 1m$ S8l&&& [ &^ 'U o'Ϥ_JrϤ 0 QQ* - Śvk5򴪪 .vbl1𤄎 1 w8L'' $ I 򴪪 .tjIR\^vv (n<1 T8's''  ؊z~J )1 2Ϝ mnòqq L01 C4)B1 6HH1  H %Ar I12*$@r w:1%% |Uڶm* TBi1\TTT 0 $r vJ1  d$ɐ***%`BHR H$1~0''' $@D$&VФU?ФU糽UI 1) $I0 r.atIR񤦧@ rW8l''' IC2 AI1cU $H"'1*prT%%%%!.ͳrJJJ)iIR`$LHr !C&$"1 `,1" ݺk r mm R1_$$11 BArpxt..& WJϬ$$$ @r`nk%đ+' uԳ %A R  6iR1jWzp.&&& B+mӶq ''QmX@ I$r- U  e$n U $U Mݔ :=̒r)blR  61zpJRM44&& _cr-AݖmRФ [#&]1說 [Hp&&&' f$M*//z{ )BHR IJ1' D -1 Hv(1 $HI1 )1jz* $J$TY PJ0񜯯 p\ȧXN.& dBL!sߟZZ )b!iRn E6[ro p|rn&&  h#r/WU )b)iQN I$ 1 ʅTrn,&M&}B'r0p I$r W B$rU 7$ @$ϤU *ii0tr0_޸!JI1n !R pXxn&& H4H#rO )b!HRn kgRן Ȱhn 2!1@vLfM)y' R1Օ* HМ I&Z r^ IN  ɿU m9R𤉫" M$R1+ * L<@1' (a -r`jAiAk2Ϝ i&%1𤺺::1N 7r !q N 1XeR??  X~!1BtupR# dBR1ݿ] B121 vVF1/>  4Kr ɭ%R#rEG ldL  THa1 C3@C $,)r i` 2 BڴE1. H*J -ҡr ѐ PϤ v[1 (BФ aIWIBUϭ5u tq1 M 1* * $k"i1  [R,]52  h1TVWWIar h*b1  1)rJItHR -˶ eR1": *0 .)1@lvms$a2R1 )QR1 ""%R1:+*Dk  &" RBp P 1IHIR1%$ ֊%  р (r wHVI11 S5,mQ1UUU 1@vlU12 c'HR:H @ . I UI"A$ U IAUv1 6NR77 ȶp` ԴΤmfmR [m K;@  $ !R JHtluR𤁁 [6aR1/Ȇkdk("ᒵckQ~a1|'R%1WZZ $I$1ﵕI$I$rA$I$HJ I$1N vt1𤸰;5 N-& )1@pfl1# lIv@1*  М :.!1@ HtL2 Ζter1Օ H r̃ IB4mrnUIB4nQ.UI$-"!0UII  { yw?qRݟ  Lrn -r@ LpHRN EeGR𤿿  rN %=1xI$I$1՝_I$I$1  I$I$q-jjI$I$ OI$15% 9By (/@@@J TH4I2М cU@N1 tcj " (@ Qip]1М +* N8Q:. yQn N6 QB$1NW -3!n$Q vi4@1 Sr1?? K!ArN  204rM@@ FnR $ARtDr𤿿 ϖO1BM  "0@@`@ xp'mR b AF2? CNn -B9r@@t,@"1Ϝ Hv * 4@J1 Ю):1/ko )NФ .")Խjj TII1М a{uך1 >C)J   0o@@ lMR &!2J1$s@ [$yojz b'u) 1W mҺ)RyVٵr !r ۰fۊRR_[ nmvR1A$ C2Ϥ Sյk3#QR AnR" ```p M8Q1UWWV +7"QR!q//?Ф```` H;r1 F$!rJtHTIФ "0 Գ`b` ۈ-rRZX ڴ!rJ IrY} I 4IϤ  $r 0 h` ، 1 $!(1ˊ ou1 S-Sղ1`` (,1 i#11*  THR --Qjjjj r';1[[  ),1 1yPIQ 5/b`p '-H1 $ 01m@1 m#1𤀊mߍQ~"jBC9ɟ1r{ 32koo 𤩩 c'ܓϜjbr I&d1@$I$1jJJtHϤ"0```` =;pr2 8"rJI`HNM HФ* IIr #R-`@pp lȊlR1]V $I"b"1 MAR 01`` u[u11 ۺ-"Q jLe S#9#rj`pp  Ɣi2Tk-"1JJ IyHϤ "1#ܓ`pp 6orRV؉m1 f'v[2_] .*RjJ   x'KrlxX =2 $2"2Мjjj AhϤ 4ҳœ`pr DK2QrOJ`Hd Ф>0ՓФ@``` 芶HnR  -]35R#rN I9Aoӽn}I$I$rUI$I$rI$I$QjjhI$I$𤯜I$I$nJ  1 Ir@@@` N 1 ( .!1bj   "=R"撵```z `tk𤠨 v#RoG qqlr  34#ܓnb s״h+R $6E1 舒 1𤼯 T)2JJ `) #4ē.`` Kʄs1  !RJJ Ho B38#sN@` bnR ڴ#""2Мjjj   \%[r@`>د5X91ϤJJ IK!a ɯ$m  JR ",B#```` 2 1 4!1МJJ @  [39C3ܓn``` M$j:R#<"2.1M@@qM )YEpp 6)rRT\:-RϤ@ mgYr0/ Ix[$YQbbjhLB&HR2 H$AR1LȄLBRRZ #")r1  hr" yppXP HkR1~W᛾)1Ф@@@@  $-//9y5Eph$K$rR!sФJjjj`41)}pP 0#ӲMr1z.!R@K&Խ d糽1*U $1 +eRD1rrz_ #)R1__ 1Ȩ ow Q / ii1bbhb bR B3S񤟟 i&E [[hh 0BҲΛ $JB.1o mԑQ =[y`pzz HH1/ 4MӶr [,9i1-21`(oB;r %XR1`ppP X(!8 ,"!1JfHTIQ R PFpPP `&HQI$ M@vltL!!TϜpH0L$r2.)R-@0ۓФUڔ$U L MXvӽ1z.' 2)!Rrx T $r# ;tP1```` 0)Brbѵ񓪪*>*1 뵐r1@ Rrpp  bY1^^__ 훲)1ФJJjj `1 ӻ@Xp r;2V nku 1 ڎ-1))2JJj ep0H {ʇr(qNؘ l5Rv !)1n@@@ hq dLZrФPPАY"4JRrJBdHGmR!# |B 躬kR1>)rNJEC5?uI$I$rUI$I$rNUI$I$R࠰I$I$ϜI$I$ JJJJ $I$r) \Ir `1W B2n@@ٖnr sZl8QZR n01 $N✢)QФJJJj VmDMQ @*@PPP ` MQ cۤ-Hѵ񛪪 [%],1]] )2,RnJJjI$Ir dֆZro {IR !"!RnJJJj `@@ @*@n Ȇn+nR !"!Rjjj tMTL1 cHPФzRP j,I1 -\/.n` dH$Ϝ] hۘ$ + $Ф U +[o  I1  "!2Jjjj q @:cFN Ȑ")1 ,B#4Rj n隤 '7[Ф AAϤ.-#RϤ`pp I-00-/  nbTϳr ω r߀ I2M RߠqqIR_ I7 4I1  M۶]WcFA Hr2]1ꯪ* 0k2ՕUU &a2__ $HI$qq 2,C30Rjr D&r0 {G{rM m[ R ?C:r ɐ r *:@𤼼 ݶa!R1 -@Qnm䳽1  U$'1UI$糽1U@1U$I?1U$A$1U<u*hA$@$r+'D::%fB!aϤ+ФԴ !IR1=+eФ $rr4O𤼴 ڶ QRZ 6]mϤh R$$ kImm #Š"mR1 *i붂 IR1  $  Ϥ HL&)ҳ1''% CeC 6h1^XPٖ?R1Z[ mfLƒ'''' an hdM rpp iڤɖ rn [+u78r?'/ $T;Q _ $_  ԓ(U ?ϜU $A$rU $rU $roU H̐r +P !1.&%R"%0@UrQJ Tr 001n~ QLLr!p$𤼼 1e;1- RQ mdHR1 $ADR2  )JCR1 4MmR1 [E;`R1^ &i۶R"~=T(XФ/ K -`r= H1ZZTTIIr B R d155z{p*PֳXZXP +jvj1 S'PC9r?/? I1} Ô$𤪠_ ;Z$r_ 4$rU $A$rnU ؖ$nU Iu$r-U MIx1J{((, D 1𤫫 3C.rҒ 20 RrTH  1 -ܷEn:: kr(( K m.]3l11* kXmR1_Z C՜1⪠L$tI$I$WUI$I$_U\I$I I$^*DRM:* $6 `r_I$ M66$$ ɛtI𤩭)) OC8dR::: `I2r. ʤH @qq =B*%r: ǓU ;U H$ _ ܓ $A$ $4-UH$I$rUII$R-II$М AY'Qn 'N r&' HIrn ɳ1U/w~Rn22: IHr   !I$ J*Ϥ iZaJ1 ڦi1W nM 1 $Id,H1 dH 1 #BRn: `Hr H@ I! qqS8fhFr>>6 X r**@>c𤤤 ,Ђ"&R1Z^ iwR )[uR2I$RQ mnRQ`$dȐ$R2$2!Ф @ۦiR1j ڵҮ12 $H"rR[>6 C=cr $C R1]R]V>, +ֶ햭Z#H IxyiiФUm0 $K i$AR q,Ir  IIr )Hr+JN( A$I$ 4䐶h2XXXSB,R ٦r'' ڶ@rQ P$`JrPPX A1 1_ k׶$1U* `'2 cN1 .  -$]vr 0$Ir $ Ar -]ۥr  )P1JP 1+ kh>&r.r1ܼ 1-HM$쬷 r>7&LrX@ФxN$IU y"rU I@roU I$rU I.UO"  U+ Ϥ)I$I1- `@`H**@5J1TTTT HI2r [R1%%%6QH $R TL&i1 @@&IB&qq ILH&1U $I1 6[1 ݐin1  Hr "ń 12 J4A1 6 H1 .@@1[8f_>6@R**@>. QQ * @rN mm1PE!>>>4 m[ڶr H Irp I&r_ Ib7 1nUI{rrmU * IҒIr-_ I"lnU IB irnU IBrNU Aro- Mmfrlcrn I$I1[Hp6&&& mvmڦ?cjR𤏏 k6n lR1\VU_ qwITR1%% lmWlϤI$H„Ϥ hu[3Ϥ ڭI;`Ϥ Mێ)Ϥa$dQRZ_ nM `R1 ]vM3r Lf@rToӽ6&MpHԽΤ.IIRФ $C BrSz?N...䳽UU U ې2C3Խ句  IeƳr 62rZJDr( (۳r 21 i-& $1 CҔC0R1ꪪ   )Sq1' JMQ[r A.A1\TTT@$Hr ei7 r  1 v I1  A!r 뺭I r YW]nr k͆mr mm r !I`1b%M1 rXTr&&(қ1rQI ) 1K$L$1WV I r-.dMזړHd?_ ېrn"&I'W$H$U$I$oUA<Uܓ$ 䓽I#QU  'R fn1TTVW 햮r )S H1 cM7+r訪 qS V\\ $ 1 mvY 1U B$1U ILȄ1U :fh2__U &j1I$r!$A11 l]6+1 $tP1 zniR+tJOМ& .A R𤏏 2$CR1pS0$N...UHU?U䳽U$U'U $J$r ۴M$Ф* U $ФU @$ФU $ U *9Kɐ *+ WKPФ'''' H$r .vBd2  !C"1W I$1'/U $H1/- L$ H2R1^ $I R1U ! 1$I$ϛ@$I$UUI$I$_]Z[I$I$1]I$I$ϜIIdrN&&&/[a"rQ )b)aR M;1~W$-... a*$rU H$rU @$$rU d$rnU6RL$QMU $r- U $$rNU d$n*U $$rNU %$rNU @$n U)b!I1 C"$I1ʶ3TC vlڂ$Q˪ Ar^ I"hrU ɻm r* + $ M cǕQ #4¸mR* b"HQ_ u mIW IҲ IU wCA_ IB _ IҶiU1bFn𤍊`zϤHdLr Br$I0r12IB&rÚ4M&R1zZZ u]r m R1?/'5TCBR d !&Ϥ$ R1 !!ZR888 r1 $$JR1 & QR1&$RϤT`$RϜU چMQϤ !aXQ/- aR|( yBuۄmRu.i 1U3I I1U~"i_~"ФU  _"H$AUI"$UIUIm UI&U y;Ir %r1@@ YLdHR N:m1WI911khLR B6R1 ZQgkUR1U_^ jvצR1 ,+R1Z Xt[nr v]ڶR1w 2 &r&$0r$A$r r ]ݺvrIr LN1  n\P<* {8wQ mSjIRv>rR^ ?MQ#iH1UY)I I}"I_O.IUI@UIIUIB6m_I@N *q[ @ ؾ-1@vdLrФ ˲R1 ֵmڶR1_ mKm1 4ۉm1  @ Ȁr [t]ۮr `#&r ҵ𓪪 l۶r ]&6 1 R,1諸 1 ִð1 #>19S 2@rϤ ai H1V  $1 #@1U I բ "  U vU I(")H$I$rϤUI$I$rФu I$I$rϤ_I$rϤUI$rMW OTπ Ϥ (. r@ `1 "-; 1 ִkۮ2 $: 1 @S1* $ 1 $"L2UU Z#H0X Dm* r1 UU жt1 `DZi1 m1 1 Id@2 $4R.>B$ fbz;rФ u $Iܳ*U  $$R H8Q 瓽QW @1U $  "!$𤀀I$A$rUI$I$r I$ $rU prW6M U 䳽ФU  $Ф@hU xmv1М!+  - 1 -t)11 ڦY 1 ni 1' I2a1 vR'I 10 fb'- l2c-1@J A* `KR  1 IB1 fOu$1*9'2* FNvR1?j ؊ R1\v ز$Rr fk1 * ֬[vr $$CQ2 ֶ6R1 `"ƤMR2hŤ=R1^\ڞ I$@1 um l1 `t1ꫪj $ I'1 `q$1* MZR 1-K1./.1МjHIrmUIFroUI.$U/I$ yHU ɯMA-I$iQUҢ1 ! $ӽФ I$r,u' rUU +AxQ adorQ NBIr1Z ҸTHr_   IҵmR1U CӂHR e$M2q nq71  0`ִ1* ivr K6r $tl[r$IBr $ r дƭS;Q ېm$ҵ𓪪6nذ1 ]djR &I1X>"2Фjj IaU I, 쒵M{ I>C=r]imldL2&lФU H& U HҖ_ IAnU I" IrU @mrФ-AI1U O.II1U/Q4IQ -I AR r v*t r@@ [&k&1ꂪ 20B1` H"%1 *&a$1 u]11뢠$11*  ۴mQN Br*{Ar I$A1 @u0t1@@ hvڵ1 PE1(( D1*  A1L!$1  1 I$H1  6+ֶ1 d$11* 0H1 " ` 1 [g4M1 * 4$IHQ1UU J6*Q wN1 - *L.!rj 4L2 Q&,1 *p $ږ$W Җ$U4a$nU $r-$U?U$۳Ф H䓽]$A䳽$H۔糽hh?_ iPqϜ* PIr+ S)1``xx cC2ӈM1cq$ 1a1Ѥ S1ꪪ $I1o H R/ kE׵rR  bqn1oO`j Ƒd 1 Ƞ1 yJ1{ DIH21 1* B,9B#t1 M$m1-.1_T wr :0`$Aԓ U&pX'_ m$$U@ܳϤ U H$ФU ?Ϥ U$ U *m$qNU 4$rnU $oU $oU M5 LB&L-}@PPP mvֶr"*1N` /@"HФU-m$iФUy2IUqm0L]ϣm4I1Um$H_ϿmMU/HU3)_- 0 $`!N k]vr"-R[ Mdkr> ttQXX ֑`R1 $2 ÀR1  R1 ֶiR1z@I$R1//% 6kRQ [eR2P 4ڦ1RpZI:`0Ф L@1 VLLR1 $&1=77 $ @R````  R1Z <=??7 vIIR"3 m#iIW  Hr  rФ -A$I]ɣA$IU~"m _I"I AUIHUIoUIg̋ m;1𤾟 2-C=1Ⱂ !ɐ r XfpN # I1VVn2  H;Iӓ ۤmR1 0LH&R1U V,mr ]r h21*qb;&M1 IH1W ^k1 * غMӽ155  H1 [mغ@@@` ]]6r J7576m>r &$$۳*$ ۖ* &l]$ =@Kl'r  @tҶRU-hn뷳1 Nk۳Q_~IumW v._tG Z ) * (B34Rj  6سޞ c   S61 䶵c0 ֎gw1 !Ѵ)r2 ÖMr1 -uR1Ú$I&rR%0L$$2H$R1 C&nR1Pd>1 =؀(1Ϥ&:2 ٶal5[ mmmr "B#ԓ1U 4IRU~"A_ yM0A I.mm1 Q;TrjSIRX |`&rzI I$QU* )KJ#U =q Iq0AQu c%XZZpX$I"mϜW 6SRϜ//;@y²r]~윳МR t'QZ 'y$1Ϝ$$1I$QIIRϜ_II2МU IW1Ϥ4HI1 $}?1  {1 fCQN M9<1HCE[@^:**y"UI" UI" @U*-I ФUɿA I1 I@ Ar 6 1 I5ȺR1_^ M 1% I$r 隶 L 1*  1Emӽ1 "A򠂀  HZXXX ĒI  ivma1 $-4#R !d𤫠 $IB dtl1UU ɶ2WUU R]%g'.77 ۶vr `xrФ P-X#1{zb.lr kU[ r1:* `CRn Iarn ["`f{:** IR rNU&U ԶrU?JƺU *жUI׶U~U 78$RN 1ⵇ777$ ddz(*b3H A 211R Z??/7 XmCd((0`=Vc $Ar R 1 @$A21  ]級 R1]_{k qxشR1UU9R KZQ  [l1 $`" hKKjh1@*x!?/77>Q*( $C C  $B2ѵ񛪪 Rh_NZ:*. I"@U Im6ϤU IB _IҎ@UIlLUIќ0IU In LU hdc  R1UU5'wo1%'' ktݲ6r*/vjߘmQ  q u]r $@1 ҴM R1 &ݶR1 S:ݣMR1ZZA Rx[866&& ˺ۊs(%AARI$I$U IrH  A 14ER1TTTK$IR ( @I1  $21 m:r @a$  6l%:5`K% AA9ꪪ & ZlR1UUG  |ӳ|DK/4\|  @:1* @H1 I  a 1\\TT ֮֬r $ r[01IA1# nm 10 []21 !I$CrpW8L&&&& ymd۳r"*(-Ǝۖm $]r1UWVUpW8l&&& 7wMwR^1bIQ  Xf6qWP&&& zqWr $@Ddz^$ФU $Hളr* l  AI1I€ $R\TT Q1]W^^ [`ڶ  ]$ۀmrzt^ Y]r E@  vm׀3ٳs I]3l\ mڶ# 6iI"L i$`1 ֐1 ND 1w 1 B)J  pȩr..&&I*-r1z )j1nX=; Ln6&& ɐ6r )bHR  0$qq x\HTrN.& AUfr $V $ܖ$ФU $@$$ФU HҔ$U 0AJ1 D!Q*Jq{ 1n) eH(I1XJp.& !HI&}.vj!1Ф Dv1(WK''''Pr;$dJ)R ԶNb;1 C1_ 1( jImoRU  ݶRU kvۢQ @0AQ1MSps  d 8/ jnm'{Uw hr''' aHqxr /vbi1 am5r wlФ&&&  ɐ$Iӽ ' ^ $U Hۖ$ФU mR$_ Mޔ[r -  j2rU1BmR ȶc1zrsʨФ'' [@.`BARIHR1?7p ی1 -P?$M2r1 }vl1&/2BϜ I.I$IU@u/(UvLTLRnMKmR&  &'' (()rJtMfqR $$r 4eK1  $H`B  BDYiГ1 Nb4mR1&Q"6aJr  9b&mRVTTTHA r1  M;iR1"ՐRpIdA  rs* *" n 71T|wB& R1_]nOQ L1 xr>B#ț ||fjWU  L1o1 Cv].ӽ** !$1TTVVI$Ir p, $1̀z1iB% /vLVL1imR1ח@;DK.!@HdLr 4 NX{R:?k ېrFb-1CBqR# 0 NzR1ߟ(@=`CF.!1@LfIR ur ֦]ۮ11ꨪ Ku1  1H$$1  ARTTVV  R1` - 1 H$1 bE1TTVVI0Ð1 A 1 4@۳s**I鶳 I$1(Ф س1 H&mdzrz v"rl1_u*ɳxpl1Ф lR?KlФ C 1zj``_kRn#~Κd1:. MlSᓵ1@qdHrnO^@R**Kh;Ԋ,!Q @ %mVlRФ ۶mQ1W .ڮ IFtHR 0H @% ,.)Jjj q1)))! [Rڻ ȶH `  1@ LvL flǶe2 h (> 1J pdLФ $II1 ($Ir y;IPI0+ m -ѓ* +0`rTTVV m ʶo C1  8ór@k1 ]ۦk1?? 3`C𤭭 !jh Huvr vdR1 ȤH @ < R@ ldp1 Цضmr DƎh1 9ڛ->1088J\TQ.%% !r1 ItL 6I&r k4T +eC.Rj`Hy1 L@ A1:> fBj1 .)")1@@@ VmVn1! RDE1B  IPI*r`I$ W*b; QeTIR  %Q`(R1pKN----,2.1@` fIR1Q iZar1UU%@&IR  M$#2 Mڔ$r1΋ DIR1R'ӶIO%@ *%!$4ar1@ HϤ Z,]aR1 sRxx dQUlR C$2r**** ɐ`2r1 !II2` mv]nb+HI'@(1쨪j 'rw$Ir "$m'r  ]5)4R1_] lۖ1
 fC16Q  ̢=60`{  ള// ;𤀀 V@&m1 q`AR1)vjI ," @@eqTKR𤡡 !$#R? ͖Kn) .!"(@gpԤmr ae[RQު*.I ."ᳵ@@@P $@R C&LQ1UUU $ɀ11 IQ ۖmnr$ 1A$rRVv E5ݶRj R,$" r #:.#+s ( [XR1W^__ $@B1j dL泽r im׳r * C%֮R ɖ`n1  Rr h 絛'$W'jqRМV7yb'1 /$$rN $N$@@@$I$I$I$Ϝ / *I&I$rn $v$r@@` א1)* u0KT{R16BI   Ф`` n\-R dBQ1 I$IBr aF%R1u .d    @ pps1Ϝ ++ X[2 >c)B  ,@ uq$I1М E$A2 ?c)A .("-`` UMm1Ф  krn&dB!r hB1BQ mm״򴪪 LM&rz $"$Q IPr VI ۾-@@ [Xn1 v`G$1 6bѓФ 2!$` d$2Ϥ $R** .I$ .(I<@jj TM$I1 $IR1U aB&IBR벢 Z1𤸺 H1B 2  jb` gp&m2Ф Cm׶ӽМ 9vKJ1   ɐ, 1JJJj THI1𤡣 )ђ,!1. R "-#سjj $H1 %"12oo`P1.-+`` MR1 M%R1 d$R1|U_W $L*1𤀀@ !IDMr-)20]Rٳ`bjbH$$s_ m؂1uuu vn4jӽr  2[5r@@dLH"R 6HKr1:/: aۃ=ٳs 1A0 s !&Lr1H$H$rRߟ vlS EY 򫄲Ԕ ivk 1 dݳr@H 1# 2$ r ε2ósY_iroOPK𤩯pĉ$1~ߟAAr hu]5qj ]i1񤂣# 1** dRiBr}N "MSrzzb` mfmu1  #TJoѵ񓪪 Ir l5_#QpP  ````9Rz Y.R.1J !AtHn  35C/ܒN@ KjvR &!R*bKOpVI "Ф```` M R1_u -"Ro)iH@HФ  qdQ DBr * H s [Ņ׵r$H0R1 IHr1ښ: !Is m6]&rȈJ d$1 &"R =ԫ dzX [[;41 öm[% !`02 ֭ nr <01``` ]ˆb1U[ m- 1Fq2 c93<@@I$I$rnI$I$rm```I$I$WWWVI$I$1oOI$I$rI$A$rM`` IQԯ1𤿮.F!RnjK`"ԳФ```p sr1 &<"1𤀀 IMp I  !$H Ar -#Ϥ@``` tL1 D$*1МJJ Ϥ 35#䒵@@``  2vv"RJvHmϤ  #/ٳzz Nך2 І Ϥh!iQ) TCw0 I$I$1U $AI1 R"@&1*&1P  I$ @#5I$zz I$Ϝ $I$njII$QI$I$QM`I$I$Ϝ,,$I$JI$I$QI$IrФ`bpp L$H$R1UW H#L"QJJ Imln I'x ǒnW   IQ) 2B-ԓ```` N81 H$I$%%% I0 H&  "R/@@@` L$H$1 )-R `$ B*ҧ}``pp H$H$1 **!2?? n+0r nY[vV1pppx ($R1^ X7uR1z L0 R1Wں)RJ Sr0Z{ 5ErϤ @Q2 .*2Jj }]-hrY}$Tg1𤂊 D [ I$I1 [6C;t1 h$'1آ ɟ$i1) ɓ$[`z $1_U O$ 1jo I$n2*I$IZZXIIbb1WW I$I"!1njj@IIڅ)#" Ilr ȶnXR ,)1N@ V@$ p {$L^ $ U ;|‘Фpp 0)i1ר ma' $ `0 S:ec1xxxx H$H$1 ",/R??/ L0`„ bDZkpxZZ $Id$1 ".R? $q5l 24UۭR` Im$I1U*ym4 Im$A_+ I marzꠀmFgrrϤظ P i{R1 -*1=? C1 X$U!UR@```I& 0Ϥ X3,ú2% $iArI$I$Rjjbr$I0QR__ L$Ϥ ț1RKp R/ A1( @"$I1* /9Z 1` m>% @r?/ - r N$I8jjzpMI1חL,77.`?6kr+[} u꧳jjz qS1 (P;51 &L* @ðr #a HQz'Wy2۰mФ y'  $A`!X"I1訨 "-#1Фbp @[ Ф e۰m1"-#82bⲲ !H`'~j𤐐dȐ Ϥ!IϤ vmR1@$ R2 ֮֡R1ꪪ XmYR2 H$R2 [-X177 @  Av6@@@` tڮr $I&C&55 )d"% "ENL@`br DB& 1 2$I55  $ r Mr. I$I1^ ɿDJU a$I] IZ V\x`ٔIJr - 4MIr u*RmQ I // "md[__ [bPPPX maqq ")#1Фp L"'Ɠj XFpn $@1  2)TC4Q Tkr `r q  Q1ŕu Q1W]W `Z%1XX  6I1 Ckq `k1 " "(*r՝ ![ b1XXXX C1h #+7'%' m:6dC* pJr m횶rn 't%R*** U  ?$< U糽UHdz I䓽U(M$1Uh<\\ H$&1 **^6H///% ڶm$q$$1`P ҶI$R1  PIij1@K + a$ I"RrrRZ$$ R1  úf]ӦR1  ?>RzzKTK1   1 Km 1 AI1񤪪 B#%%'% dB $ @&h"?PX\V xI1%%P"ؙr'''d( 6!ӽ񬪪NTNlrppPX PN 1񤿯*)%//?I?1U$A$1UI?(糽 a$r U$?]UNo ɐXve{1 * *ͽB*rϜ::  rʦl I$I 1=C(drФ Xeku x  ka MM ݐuY;lϤ 0LЬ $  ɐR2*p  R1 @u@uR5%%1 a2p mWmmR1U I0I'' )Ē-ٳ `H& rrRR I$ 1 "iQB($%%% $$R* $M'rU $Hr1z $rϤ~ #$rU $A.$rU $ -$rU KT͐RN<< ]S$A1몪I$Z$, w 0*+- Ƞ@ [8m0iФ ]3B6R @=딓rxМ v'1ޮ m6RغkҤ0񤯯 hm+1 SMf) 1 r41 ݶ&@1 $B 1: Q/ Lr CIQ1}K@&Dr $s2!H𤜜 !rM'r::: IЖӽ1 d'QhhU kr** A  f;R"}A䶳1 nD'_ rȔФ I Iro /SJR: PɹzZ K M ݰm麶ѵ񛪪 ?T:r ht[m~vv J Ф q 1 K&mR1U HL, r P"%R$RZZZZ谶ha1 vYֵ1 hi1 -TLŒ// L$ sTlXXXX ݖam1 e\R1%%% Ҵa L۷,m^^XX vB; `SIزΛ`O 1%' $$r &k Q1^w ɐr &84R1- Х[fR1 `tDQ2 [ӭV R1 R/5 1 pS9P%%55 @@$$@  ӽ1ZX $I R1 I&!Ð 3Ѳ  Ф -4  %)Ƴrz^ ,e:rXXzz n-/ " Br  dHR$I*\BB-Գr P[ur $HjmQxWW08-61ФtffI$I$)uDI$r%'%5$$r N KrTV%E1/@Ar!$$1$$r1UUU [n5R2 º9cR1^ ֦mѵ񓪪  lr tkvr#K-IQ#51rr@\Y?7' a$@=Tc I$I$1 R7' $ɐ!`#ix?mIU~m IUO, @U/N$IUq @R  NvC;r  -Pr  $@Ar  A1 kv-1 H`$10 $j ) ɐ PPXX $Aaqq H @qq L!1U AB& 1U  ,k$1( iKa@Λ m  [un0_UU  $R Mغ c&j1-88( 6˩yr0% @kR +lrn Sh G? Nm:R ~ v8rx I")QnWIߛ$rNU IRIrM IRN&UIHՀ I‰@U IM @Um&a𤵪TJAQ//  c4Tcr ֶ[511R]ZϜ>6 IIs**c=Vcr@Hr &$@R1[]W  I1" @4[۶Q1UUUp1 P`1 d&I&r@$@11 Z7J H2ɐ1 $H2$C2rn BehrМ>6& [Ndr/ MTR- ͖bm5qq B&fjF66 Mضms h`Hx I nU ImU IB} I%@"$M_IRrU II$@Ϥ q;i$ r 1REQr DC6r+ CNX I$ 1 crHs1  k* ]4e9\\\ [- 1 sZ1// $R1_U m5]R1U mZl]3`d„IR1!&aB0R i׶km 6l[ R1_ 1Rz ?q%%-- @@$ꪪ 1\t $I$R1ښ H$1 vzs*VK-س @&r H4m4r^WU 5XmrQzr I$HB2r0XM瓽0 +U Ii'0mf?_ иl<𤨪U 0Q\Yr 5ϤꨪI$II$I$r%%%I$I$rQ*!&!ϤǮnM1'  @LBҵ𓪪 $ QNr1 (R1  $ڒCR1_ M1-r uZqѵ񓪪 vM r \5p[s1  )i Y1#0 1臿H 7 i 1PQ 7tBA1𤆏 I2$I1'w8r  ddz_Ib$_ U<U䓽UIҔ瓽U$I糽WI +0A'1* U 4a1 #m4ᴳr  $1X ڶEӵr1UTɾh  b1֍﫫 mVl\\TT @@1U  I1U  1U [C1 -ۢ#𤂪 뺉 Λ  IH1 $Id,P1 Im1 !0 1 CڶH1 pL&./ Er4r0VT )JI1 $DH1ꪪ pH$rˋ,,,v$QMU jCy$QN  Ė$rФU$9& U 𸓽U 0۳ U?U䓽ФU?ФU@'ФU0ؓ &IIRn C"$H0rw8l6&& $@ I0 .tBTIQ񤇇!0aBra„Lr 0a1 "mӎ r->h 1 h 1 0] r II r&]1 ۶mi R cۉ-P1 HФ7'' $@2~ i ͺXe1 $... $oU $$nU $oU "j$U $U @b$r  $Ф 1 [mӐēQ $H$R 따Q  Vnb1TTVV  r 8o0o1  ]]." BB r IB$ l#(mx W*R蘆 uUOQ  SIR}I"1UI i:dR1  [5ضR1 !I$ R1 趵iR1I I$Ϥ muhѴR2 JlGwxR + !DB$H u$mr說 IPHrת IM Q q"MmQ (r1^|IJ4 rU* +I$ 1U v@_ IMIW I"MAU I@U I2H ϤU 4M   `#:9qϤhh m`HRn Y&@1뻢 Mk1𤮯zju𤬨 IJ1 ª.JR~/- $Q `Mr14IҤR2[{ @צvr1__^^ $Hr $H@H0r [nmr /NvK1  ]t].Q1QUUU [{uTR1յݝ =kK  6bIR*k l^ OlU/H@UD 1UCb$1}l +Ϥ^]m6lu! Г~IUImLϤU IM$ I7 ФU 鶑1-* ۸ 1@ ȁzh1 @2𤪪tцv1𤌊 &61 uC0 dB$1 $9 iR1Uu H:lR1] Xb 1Ϥ00 hM4R1vw t6R1U ͚X2R_ @ 1U Id1 $hvܺ1   R(1 AiR + $$1 B"8@ $Hd& X6 C6\xx $ ZW瓵 +U $$U 1(U ߓQU H[R $h[:qz  ۦr0x^ qN 0/ @@ ز5ڴr*** I$I$r1w $IR1} I$I$R1 I$ R1 J39r1_ In`R1 C6nR1" hn[׶R   AR1**_ DB! R1^XU \I1 $) 1 qb'&@1^P+1] ]7&IRO\IAR𤿢IRN֓ un+ ?UHФUhU@<Ui?𤪠U ۆ rϤU rU H[ I2  @nM1 &=a1zz klm Q1ե $M1%Aq `fhf1Ϥ8 + R1קu :h R1_^ a81 41𤪪z5v$1 (V#Ж$RU34S$1`B:ېM1 C 011* $A1*  i$k&1모 umd1( bZ1  㫥Z1 IR1+ X6隵1 $I 1  I,21 X$M1 v1e 1+* !i$ R1 I$ $R A$ $r1U_ mar II$r I$r [[r BX*urpR 6# r@A$1 !@`1 i[ mצ`s mBRaR vr$l^=I n)1_ iKM$mR] NMJ1b`` I2@1 A" @r CЦr öͶ.r [[ur بۢ1 k֦Im1* " $H$r $ & IrS1Zu1*8 4[ur ۤMҵ𓪪 :r1N7W1 , $m׶1 I*)QѤ IՆVrUIBM IQ I"MrФU I0@Ϝ O" lUϏM$HФ~" $M_*OϤW?N IU/ ФUya I$@1_ -H$A1 ImIQ a$rB˽1j``b ]%X%1Z $I1U $A$21U I$&1U $>1~I 1% NQnmY1* "3 1( $I R1U a2 q ж 1몪PDžS(1 n1 `'$I1 *5R81 Ni>#1МJJ Irln I2IU IZ9nU Irא(nUI0IQNU y;mشmqϜ In&lr Mqj1 IMۓ1_ l.7m_y4JUФUy U 3C"0Jn /UI>-ФU``` -Q1UTWVdIB0r I IR1 .tҦmR1$I0R1 V.R1 ):tb'1DR1UA$A$r $0 H1* ۖQ1}UU TÊ1Фb IS1- 1Ir ɐ r)RМN IMpN_+/I$IUФU@ФUO HU IlU ImiU IB0 U* q;Ir 8?I咵2$IrQvO Q] OBMi0j IbҰu0UIbI_Im$I1U @:)bҵ𓪪 趦-nr@I1 ( I@r ڡM׵1  0 0Q1wU@ 1ࠠO41  1] `1U P٭S;1𤪪 vvT 1𤪪 6mA1* A$I$R1_ AI 1 D2$I1 I$H$s IdH& $I $UU (5qx E[Xr55%$$I$1 $`Ȅ1 6 0lCt (`Vdzr 'a,糽Ri;1 # #%RIvfG&Ua1``bpHI$21 !Ir ir ?lDC1  mkr [#ٰ1誀 Ͷ `ѵ񓪪LIHr ] r=1𤠠 D11 THd ҵ𓪪 +lX1 H I1? I I$R1U- )")1` 2 ,Qcjrp m%Q廊z0M$QϤ U $Ie$rϤ U Rz;y-A#׺1UNM足1W ##:0x MImtqW* M@DU~A6nUI"uUI UUyI$IUI$틟 d"&11  #8RjrRR !I4Hq  ^j0Ф 5YۢRQ -k[lR1 XIQ1[UUU ۰u5r ִڭR  &:1R1__r_V1<()%TR v:mR1U P$ R1w H r 53ؓ???? !A*  Id@@``H r SR+%%%I2`  $@5Rp$?1UIҔRP)k&R P-Qp⠪b"Ir0_!Q0' ).Q/// ضmڶ nPl @$ $ppZZ AI$R dH$@H%%' I$Is  A1rRPX Z:1 5dC1 M[R1U 6R1 ֭iZR1jꊮ mۮm3r   r [۶ɺr ڮMar 2 r Pɂҵ𓪪C2T2=R+/1P s J=\ 8[1𤢣 $%5 ͺXv*$%2x ijϤ$HӖߓ1 $A'RU $ ИijRC.S峽D!Q4Ĕ *R Ib * (MB1ZX nX4R1zk $RR s۔ r0ַ T cr mtIR1* [vmqRuU__ R Hr1ﯯ M J1  AMR1 ]׶˺aR1 " $LR1I&dBR1** I$MQR^ m׭i r2]  IR2 =;r Vjr5 j7O L CKSLR R*erФ $Ar *B#8Ϥp ]ϑ  'hQ  Hڔ$QU 4IE:Q 4AfdzRUHa'1$ֳ1U(Ә2 6l]&r_ tK۰rϤX!a  ELI]r57' +To۳` rLO %I R1UUUZ kI-R1UU nN-AR1UUe mR1 CBrLIԽ1%  - i lۀmԽ .1#Qzꨀ 9rWV^|жkQLI$rQu DSr⫩ Ȥ 񬼼 !I!Ir -%D ivXu򴪪 1x >|$rnU I$Ϥ/ $U Ӗ$ФU  $U  $ФUUN - m[`CWLԴ C&-:R1]]_?R:eRm  Hr s oФ !Ϥ $ Hr2  R1ZZ. 4)q R1ݪ Ab12 Тm1j LdA1  €!&rMi11*0 $12 $I@r 'D77''d& A  1pPPP mXfr CvH   4XIҳ** 5`666ϖ0J*ֈ3آr &1+* KMR1 !@"$CR1 Nڒ R1W dB&R1 d!@S1UUI&1⫢ }br/> HIYrQڿ% ֣+Fb1Ϥ mڦR [@ZV55// @$  ;hFKR\TTV I$I"R1 Re޿..OmQԽ1U**iVBϤ =MU FL&mQ!0I2I$ $ 35?r j\5 rUFQϤ (<`1Rr1 + `=Tcr ېnm1 * P?/'' L? 3ɨ v~ XI1𤾿? !1 $I$ѵ񓪪 &m6Q A& R1UU P R1 4ЎR2 fj~>>6 Lb$Zr**** `=Vc$ Xk];R1zz^_[8gQ<< ֤mfrQ*>`kR  m6R1 PE:>,&iU OH$mrU hq_ INn4rU q+I+ $IU y+A 19PC3TCr𤧬aB2I$R1UU B$YZ1%',$ @0!0 !1PPPXH$$r htK1 r賽r*fBmr𤬬aHd$r @S1^̫1 mڵ[ l1ꪺ  H1 LB 1ꯪ I$1 #%2l% 6lФr AI1\TV I$I$R  %0P * :֜R\\ 1𤯫 ˹H1%%% I,X;rꪪ* &A$>Фx  䳽ϤUdzФ*U 1  D bmR𤆮 [6-.rKV(n.."$irگfBmQ. @B1h ''%% R!iW۳r " @A' RϜ=mQW  IM;$ 1 Vs&A1.CaH&rA IR1I$I$R1 b/1 1S2p1-  -&M$r C%ӳ1\^WW MS4Q_ gw0 1% 0 1 @R1U)Wxp7''' 0ХI>^ vm$r*W$uФU $AHӽrI$aԽ*/a&HФ a"(1U0 6&  mm&(**1biR  S==i1rW8L&'&& -mֵ.fBH1  S=9ڈm1P nЎR1w nR1 k&R1 @"%MRr 뚬M1. n1Ф''d±$Arի.}pi1𤌈  IB&q1 O%// I 21 aٖRTTVV IAR1 Hdɔ1''' mnmvӽUU:&@糽1U$Hӽ1(5I I$Խd $ #5M=UiӽT/ 36r_ rH!rϤ' wVQ /$hӽ1wU i w覐' ֦ .|Rhn a$Ar1?? I$mR1߯ Iح- Q1UU[ mҦI Q ƶ R1W% vg+tR1 K4ҬϤw8lФ6&&& &,r*x.fBHr !c;LR1]g{ů& I@r1 lr ЭmtRpwzrn,, &hcB6r0_] $$QϜ ^FnrϤ* $Ϥ$IЖ ibQ  Ȑ ɐPAlQ d $R1UU#nL1  I 1i I1\TTT I!Ar H4P1  52  qglr1vVWW ]mڦrL3J (1] I>r4i1 í:ѓQU @dH1 "P21*,$ &k3K &a )Q` pp1Ϥ IdI1**/ 4CH !q J kQitϤT@ 1 *`4D  ( !r@Ltl1 ۶&X ҵ𓪪 6q1/  6W]R1 PC  ,)Q@vLvlQФ meR1ȶC4`  <28rXi1# a0Lѵ񓪪Hj&-jjtHp1 muMR1p.+VC𤷯 yM1-hI1_ C(1 HTHQ1UVTW \:\;R1_Wo T-Wr% (СB+Qj IQ!! Q1VUUU ;YUR1UU Kn1)"-Q@r1 )KȴLR1&H24ӽ1  l6% R*IƯ Œ9غz t t1 **U "Mf(ԽRITC $)RHHvltHrФ R٪fr1⺿ b@R Ј. R@@ tL #GrqR;?? CaL.1JdwqRϜ ~1(>. x ֐Qn -UmQ m$rU** 3$@Фo'GrI?1**("$Ф h䳽QViR𤩫 qR1UUFS#1-) c4J1 /MAs1Lq qR__ ȸL3b1  ["`r!UHrZ 4MJR_ аfo155uU $Lӽ1  M2錳1 I*!r4'𤪪?]H$ ܤMܳQ**$,C $AԽrw  &LԽrP ƬfR  (I-)r hR2}} A[%Q*>H KФW 3IUФ5#`&a|@HTHrn kvmr1.* J Z;iR f @@ &MvD18OK&,!1JyflQ CeX1**:8 KtQMe?6}w$gmR-1 q1!$N4M1 Dk  >1R{w1#! M۶[fr hVo1  @, d r v1 j!1 *-1Q &(1" [0lѵ񓪪J'J R=C0r ?W (' DHDA1񤫫 TӴu1&* %`𤉉  @ !tC=@=} vdvd^p .`!Ф .!")Ф@ Yn&A1Ф  .uT1++*A  (@ hɍQ𤣣 C۴CR{? #t"1 vR?.ttA ,")Ф`@TL4MR𤡡 udWR1_&BI ,!@@ i4l1 v$P@ r6JI𤉩 "!"蒵Ϥ@@@@VLMR𤡡 hR1$pj  ضJZ;- $I$1w*?𤀀 iP&Er 3%C9r  1Q")(a1Zp !U0R+ !R1 IٖnR  .)Q@@@ABRФKR1%aI *(,ɳϤ@ Qgl]qrY 2ú R1? 6PTH1 mayr1//?BIϜ ,.)Ф@@`Ak]r! uf6Nr1'7%- I01, ",@HtHsϤ kUWwR1*r`In (೽@jJ@Yy6lrФ"tQ1 bPrϤ  v\ir0 KฒФ* %ɀHړ𬂀sirФ$6 RϜ $A $MbI$eR}իIrJ4IRUI"@$@⪪eC10rsmR1UU y MR1 ){@1 t9*ɳQ`:R 4P R1 Ymӽ155% H$ųU!2IԽZ_ >)1@@ EnR1t4 R ɵI4IQ-  ڼ-r l6lRUUUMmڦr2s] %A!`R..-Q@@ E4iRq2;RR1ޚ% JϤ  $mV2r?Wn;n q%9Γ) AELDR1 6B!rn :")B@Vp'MrФ vUwr1//BI , Ϥ@@AE%Mr{2>!N  .!Ф@bB Wp6mr kֶkQ1]]a$ r tHZvHrj!   !@@ s8=1𤡣 2!tĘ21BI  خ1R@ E r :<"ҵ𓪪mVNR##"" R1``` kn늴ѵ񓪪 a (1@idl /0:`bb $A2 1 BB$I1z 5m1:"1jj p "Bjj``˦lȆp1.$GN"2Ϝj `HԽФ ,B/ܓ``pp kRR1^V4"RϤJJ lr >,3brK$K4R1Vva!RJJIItH IMHU0qTO1)*'%"0-ؓ``` ;HR1T6#L"RnNLdHФ "#Գo``` -׈ R1TF"RJJJA`"+```` MR1jآRhhhIdH1.-.س`` lR1U_߾ vͶr$%1X&a'1~ 8tQ濫 =Eer1U%U $U  I"R1鯫 !`Jer"2>1@@1c1cR cR1DDp`1"=Ф````  Q1UWVVi!RФJJ Iitr y:0r l!r /ԓ``` cpr1~%H:"skoO@t@ C?9[˵` J& RW}  ۰!ӽn@P#Ф```p [pR1 tB;" vL$𤩉 #1B=ٓj`` M׬R}__~  R1+ HHR20 )"#R1kdIDIR *R@``` M kR1WX d$B"Q1Uu TIr+#" nXr~zM4Ҷq2 "%$(1rR__ A`Hr  (#Գ`ɐiR)1𤂂JdI@@o  5m1r*dLԽ.,R-``x t@KR1% $R"M!R1 TnMr Օ3سR` 붴CӶ $I -*Ϥd@dJr .@```L0R1 ۸!RJ PMVLrϤ);\%z  R1V 5SRp CMR6!rФjjd@n ",B/ԓ```p R1~v#:"RJtHdФ .ԓ@`` { r1  p 32||`" ԓ```` =ײR1v ۺ2!1𤀀mIPФ~M$i1 qȘ"AR*",/Գ```` B0jQ m*1p@ 5C1```` 躭htr!1𤂂 m$@Ir"@`pPP$Lr]$ФUR'uro$$R1V,)Rkj fmPkrBpp`$LH& ۸,)r1 R1IR \*RjpI1)}B$ -IR1vv.#RJD@iY1$泽߳1U+ydФ H I1<)1ª  0r"R+TS$ppp )qN1"R -泽"إFG Mۖr?RjzҒ mn*"I1pO U ?HU}mlU  * HI$[$!!S4E1𤺚 ",B#Rj ٶml Z  gm1:",/Rbr #9rꨨc.8 жi1 *r1eUUU ´ٍR1UUU Tx1:  %Kur ֥kۮR1uI$ "R1"/rjz ТuU|v[4F1 hYvr"-?Rb pkFs r>535R: $rZ_ S3h41O"m$UviB38UIµ$)I I1 e^Ӻ᳽r ZE 1ZZxX 6$)1 "(B1 dH  1x ]Ϥ+"ϫ>r17 $ rZ4k lI1** k6 Qο [$kۢR1U Ӣr1 ::hR1XZ Ú&[&Q1uW^ aDR1%",.rbb iҭͺ` fBV10<'JJ A (2,Խr*j Xmr// I IԽ eX ֶ #ӉiR`~q6@_ m$IUέIM1U ) 4I1  Jmҳ cFzXpxX kR1UU "0C%1 C%MڤrW_ ht[dr1`pPX dR1UU -C:r1 ۺl+[$^V mmuR1Z +K1ή nigr1UU )N'Խ1rx^^ ebHq M1+ r,.R 6`Ȁ*Z ^I C&R1,,,r1 !AH `$G𸘘 C IR113R@b qٳr # RXrQ, Ӗ@qnzOBJ _/I$IФUy%I Ф* qC29**f{N `r U]??rzš6nrl9M8)aRU C1`[[жI"L1 UZIZn $AÐqi'/??mNr) +]צX iAfq $ɐDB1 mmmbq)?R e E⪪`0Gs !r=C*drФ u Hr**(ʤKФI ÐR1{+t'RN"22糽ϤU U$I瓵U$Ҕ'$Atdz_ Hf?U H$ӽФU pHM C8B)_ R*ߘ l؆mJh I$I 1;TJro 0t,ӳr0  vBe i1񤪪 Svu1 e;vH1* 5e 1* ]Y r mۥ[r .͊mR12=Syr: 躮˚tʤho iu11-C8dR dЦԽ*! Hd@rB+- Ȑ$r((+L𤸼dL0R1B+R*1 P(s*{ ۰[h>tcRn I$C01RehG>6 dCmۓ.@xI"h oU I"Ar.U I qNU*I"$AUI@UI"I oUII IU - mu]V**`vKRo C׶m511" ZE_>6 mm((+-kcr! C&r C9]39R1__W 1A1* * 1$$L$rB(L)1 H; Mr MZ1 mfR1#! $I$Q2 maR1 @*u 1- L$r]Xc I$1UURE%IԽ1 H$ԽZ# xI"IAФUO"@ UI"AoUU#I ФUyH$@U ImHnU 91 $Ir-  ֦r+`4VbRNhіi1ϜREbGRo dZm r/@R-  m1 4HikRI 12  㐶iR1UW Mm6lQ  fhR$%HQ k&h1 ؉1 Il: H1*  mH1 I@2r `Ȑ  Cuk-* Kfc1\\VV I Iҵ𓪪;`z7' KI5r1 x iMrx NQ_ IQNU IBNrNU IB`QNU IniQNU I2 4AQnU -HIr - ҆MrƈcФ@$HR1 cƝb `@r(((*c `sФ@$@$Ϥ QaǶmr1 +`$HR1_ ڛڶQ  kv1UUWT &MI1 4k۶Q1]UU 6cR1U mR1U #m۲R1U $rSehG>< IaHr((*`=CRo-59RxT%>> A!` @xIФU( @ ФUy‘ IUhϿiI1q"qI1UmimФ_1M %*  !*:C C $0rpwL&&&&hKٔr(/AfIRФ k.+Q1UUWy r 6Ka11 k۴ R1 HR2   mڵۂR1舀5ˬ BR dbڴIBR1 d@$1 ]k1 Z/1ࢠ ʰ n.&& D@$0s)bI2 C$1ȧ$̋... ۖ$rMU$n U$oUH$n U Ж$RNU $NU$n U@$MU$MU A$MU $NU/tbAQ̋   .ҵrw n.&&& ]ҵ*7afIRФ [ۦkr =B"Q1UUU !! 1* [eݺ`11I$A1.6lmJ1 @"@,1 $ I1 $I$ÄQ $ C1 $I$H&1~ rXȳ1-)) mڶs v]YR .+RWr'/..f?_ږ'U@?UHϤ U?<U$U?U H$U $roU $rn U1!R{!1Ϝ Tr-4$&& M$Vb%r IM )B!R ]ۦi `1 md~ʖ1: 2IQ1UUU mעmr mnMbr MѶMr H$I 2꯿ qi-4ѵ񓪪Ia1  A$1(L2! p;ɓ  DBd*:( bmr @R1몪jVh?.'m:Ϥ~ $QU @r*U $? U&I$U i$rM_ @Җ$1.U $$rN U&I$roU &rN M$**U/AIQ  Ön]ӶR1hO8L.. @ r*%A`IR𤏏  [u[: Ia„ 9Y r $d2 m5[ 1TTT\ ;6 H1*  `HH@12  ڭYriӦIr 6mv, r C rWHs&&& mՓ7BhR6M1(Wx$...$oU$U䓽U ۓϜܓ$ UI'_d?Ϥ*_  $ UIϤ* U$H<ФU%AIRN  Cmӵr2BМ'' |K PjϜ^ I"mHoUI"IUImUI,I U-A- ФU O N#H$iФUy$HϜUI&ӽU IrN_ ` PQr ** #> @YfH)I<$'UTs#)@R vR1}V JN:RxI@1  I1 $ic1 4m$1I101@`1  @'6Mr `&IR1UUU  Q MAR1UՕH Cn ! rꪪ r ^I Uypp_/HAU?I H#I HU$'1Ri9iR Im$IR mMR Í0 R NM$mR d-Fr * 5rQo_r1~KJ m۶mRQ $dȐR1 Vt[r1[_ ڦHr Ф붵r uMnR1 v[vR1z 됶[uR1  mi5R1 m6R1 6]uR1 ִ( R1*  $IR1 RϜb96+52Ϝ*** Ȁ @QM EGɥrQ)? Ml n^ IB NU IBR$iNUHUIH IU/$Uh&_K DJ Ii$@R  -Q@r* Hn4Mr 6h$Ir ,0r vlTmQ1WZ_Y @H$ nR1ꪪ 8R1jzj ېmr 2(R1 VR1U ؐ]r mۮr B+h1 $XeR??  U K۵[7ӽpp@ ]ۦ[WR1Uw ͘$r nmkR1ȤkKr Ct]uR" b Ir\ I ԽU*/I UIRkcoU 4A In pm$HN\Im$INU I"IAr.U I"I HrNUI"A IU I oUI"HoU! :!@mhrn HtKd1 4dӱR1[ ذ]vr ,kuR1} Цknr$2 ɐr ֬nr $r 5[%1 8ңS;q 6[10 h Kҵ𓪪 5mvq@H&LȐ1#*  eZeR1ן.`J&< J$nWܓo?ФU'_<U'U'ФUۤ ۔瓽_ ͐I2U  I"IϤU ~I2mU M{IU(*II4JU(I.C=ْ- H[R1vv ڵMr ƳQ  J1 R1U -biڶR1 Cm ];v,TR1  0 E a$LHR1* l$`R1I:IƓϤ ^ݺ R2*(I&aBr1_ 4i Pr1. CAR1*۬ #21M@ dPHr朗+ &i$-r`?rUIU @)$"U \ m$W$& U$$oU$o U$oU $o U &Ҙ$r.U ۖ$-UHxn( ]mu𴪪;eSoА rr1WW VmZR ib,R1}U 붶m l1R Rr VUFbҵ𓪪 8 -R1_/. $m۶#BR1LBLBR1 ;S,R1P $I IR1im R1]U I$IQ1]U H$A 1(8" bfkR1 ",R EWt[ iZ5r Iddzr @Ƴ2 Tdz1 ?1I'_ 瓵_U$$U,'m_$UU$  ե“ dRА pزgr1|~ -Ń=_ k&mӽ1U ۰ X-r_6i1U   I ӽRUUWHaȐ CϤ 8BR1Xz ve{ R1uU ڶ[6R1L$!R1 h׬m A`R1 6 VR1 I$IR1 <钲-R1jjZ $  ڴ 6%R L:~I$rϤU  'ӽ𤢢U $U $U$U$ U$(U$U`瓵_ ۔$ *U HwФ m 񴪪 d% PА  Hu]r A`HR ںR1_W_ vlI2 ivvIr i۵I1 0lA; 1 M`1 I8C2 أ(1 c G1 * >qQ vsד&A1dR* ڛm1"!roJJJjVl0 𤩫M 4p 糽U 䓽 U$oU<Ua䳽U`$U &r _  ے   I? I'U At*5 ꪪ+|R$ ]vr"(.Q @ɳmؤIUO"mTHn] II&mrU* 0JrU IФU*OH Uy"IU"i IM#@ UON IU M IUOk>-8aVoR "4O$Qn`pZ dHDnQ.WG| $Ϥ kmktϤ XsVR1/5 &9P-R1ZZ ضtkR1$A2 r e'!mr 8mZr &?1wq1(@1 :,38RR !I[!n ڮir2-3Q`I"IInUI NUI& IR@@-2IUy۱U=m0In,@1U϶$A1uB 1UI 1"I^РM1_xpp  AR1 $C1c&R M+n%  E[p$SR`pppm$m$RQ $@R1 klr1ޗ HR1<EmR1[ZW~ ڤ]ѥ (5Ϥ VdmעQRZB9C6dR𤰰0 $ ɀФ fvϤ,,3rФrRArjk0n $Ϥ S<MӽR I$I$1br^j $ H2rVZIӽb II6mӽФU &irUMI0 /mUɳm 1Uw, IU -I 1U ^ް $$AR1 20TCr1 d0L* h[1zxXX غڵ];1ðe֮1 IO1 + жIQ1{ `$IQ1 :Mr [׶r д-rD2 $R1'% @0$@R1ન X"R1XZ(3RrRS ð ۵ R1V2-?81`I2& _IRN I"IIMUI" mUI"mUI"A nUIIIoUI"oUIHnUI"I IoUIInUI1̋888 $r",B?Rbr s%% ]׶mӡӽ1] 2 Cr ֶhr C11* !Hr hX1  $Ʉr -(1 VVO1  I1 +.mnr<-.R.ۛ kvCfr7s0 ֮YW11*;)ER IsVLжX糽ϤꨪU ږ$N *W 糽ФU<ФU$ФU?_RФ -I$I$"sSl𤔔 & zl$oU@$nU$oUHҔ$oU$ U$$U d1U&`qrR tm[`" 5On !!ӽ1UUX-'n:: 0͘m|_ʴHo< i[l]׵ӽ  MN(Pta0IHR1uL&IQ1UUݝ kͺӽ1UU YvmUU $R1 [f1 _e1** IȄLR @@ Iӽ1UU ӽ ˶Mer˴ -ku11*R[>> mz&(*4Cc k4 \%1w[R15 IdCr2I$RR^ ]]׶QR $B2R1'Fh_Ф>6 C6](( cm ]elR1Z]ZФ44 6lłe踪$JIӽФ $HR1^Re_ 8(,A UI2 U I"nUI" nU I"nU I NUIMҰMoU`=dc1˃  I0 $11ꢪR(f[r<<, aȄsQ @5fkQn bi6R1kR$]إzФ> 2 mdzr0@=cr :;1 vn[1 P1 ** ֭M'R1 u $@$R1  DR$R1* `R1 fbf1'/'' $HI1 h-hQXX aMmR1 ]e1//  $ `1 FcVkR\^TT $BH0ϤP}Z>*.ΣUm4@U#II ФU#iϤU3IUO" (((C=VcR.  P ,R1Rej^<< [m>>*htcRN Xtk-Q1%/UU먖Ф&& K6JԽI$I &Խo ]%@mRh` )m_?Q1mn^l??5% 'vlۓ1zx| @1RSSU .jR2 ؉:>6 k [e򴪪c=VcRФ6rR𤪊 B%t$rϜ q$WH1𤦦 $EN2* Rv_?. IIϤUIIqrU I>r *"tHU@U@ФUH@UC4VcR- @ R1Zb~  d$q1 @?vcR :4m341 R*`frM )%0<@?cR, 8M12  дIr&I$r -r-$M4R1_ R#i1М` $#۳WQh_Ư ]eԽ*N/ lCN 'M3QR&E`GN:> Ia&r((*h=TkR k66ӽ(!!!R}Z8,,I"UI" U&@$In  ÆmԽ  AStضԽr +mӽsc*-ȳؠp@ IjԽrA$Խ -ڮR [X 0K^U$ ?U 䓽B L04&&&6AIr R1ꪪTHl&&&& ivִ>+k)iHRo k낶11ꪪ8OHnAM&A$H I  S"T=$ 5 0~zz O\055 m۶m 1TTT 鐉` R1 ݖÊR1pФ.&& aL0* .tBIR𤎏 P۶1 'x¤1$I$Ibr O|IA1' H$IQ T 1%%' @ &i& ^ ۰m$r_ $ U$At? U@J  kaۺ!*.tbIRФ   R14$&& mֵlrQ )AR  N$MPR1]^z{8Lr$ ,͛)W^~h) mR-  Iچ:1( I Rꮫ knm3lr 6mҎr Mq,R1_ жM7R1WY múrWL6&& .R***/AIR  r_6666 fr/`AR I"$ӽ1pwl,$$ L0 @F?Vۖ?$HnQ  $ r RԽUU ۲Խqh⨪IN H H Խ1P&r8L(& a6Eٳ*:7bvIRФ I@Vr1Օ4+4b,#鳽2jJvlfhMIRՕȯC2B- IMW_IN ȡ_tHdLRN )ZaGr2??C3 qcճ1`0@ n Y[vӽ1Kӽ (*&MrʀtH$Iӽo mGIӽ2U #'  !@lgqr TR1U՟ Ð.ҮR1U duVr1տ?0@3Tc!@@Lflr M[tR1@ K (,!@mflrN NeZR՟ȠdN,ʵ"1JmfLr t&r1U՟ KMQj{Ibn -UI"HU UylflRM I!R1տ + ʶC(0Ф , QjqYP ,I1UU` pմkۮr/ жv$0  r1 v[7ӽ1U%ʤO4`Խ1-  :! sJMHМ6mlR ЮM׮R1 unQER***LkФ "i)JvLtls $% ar1KDCФ,!@@LdLrnIڦIR1וH coI H* $H ԽU [.+6ԽU ?¿崽z ۲5@mQx6a;t,'Q/^xIb\*UtIdHR Mtir1::f  0H liR jv1? LLC' ɒ R vmfLQ X R1U 0C4h ( r HHQ ۶5ömR1Z]] 8-R1^ $Xvdr1՗KkФ&)1JvHvmsϤ %X%Er1 ȄrJɛ)1Bvltls Ndr2?=C;PC 0jhjj Qir  $vqXQ:::HH;dC̃ IoUII IoUI`(oUldL1̃ nkwmfR1CDi.)Q@@flvHr ]v[R::ȠP ''//&,!1@@mtlro Cӽ @B &!@lvlr nݚv1/0I21W_] iaGrHT Hۮ-1@I`1N  @ $erՕ@:Ci!DMvlr ur1.tB *.)@mS+RФ!  $1Qyr1:7BiФ ,̀(0x`b 4c$M *U$-uiPGms񤱱 kx]k׳1'')ցöq𤍉 v 6Mr'LL2Խr dda[RE`@pФ(Ф@@ @uAWt1+ t`Za1_%db , .鳽Ϥ``AWl%qrФ IH1ESR1uU hNlHR1_ v`GqR1?tbI )")@@@i9RФ A[NR1-tA .!.ᓽϜJJ@@Tl4R uZxR1//vjФ B`@@MlR  Hr1: P-'---FAR95R`ФW $- QYR!IФm֤QR[tJA .)"-1@ Au[/// I„$B R ӵ MԽrW~ IXl0_ kr_Xrس// IPLڳr * @$DjԽK4Ir ֶmR1^ ڦ: R1 uչr2/bV ,")Jjwh9rϤ UXR16pb!io )2)@bbtl4mRФ deTvQ::.tAo Ө-j A r" [r*_&mj ڂ#rUP_ ?&nXB)ɓ$r JR) arRU TI "13&qn@`j Y5 1ϜI R 9ndLФ  8. @ TIIR+ dR1 .BtA) *)1bBj DHDAQ ]۵m1 h KR1?U] e6Ir1s jfr ,!2-rn``Af۶RФ Zn`{r1B o ,೽Ф@`` e9r𤡡 f`&aR&tpI ,.)Ф@@C4+r飢OGOR???.tBAM   H0 r+bHФW*?n QYUIR𤡡IDIhR1ߵ1B'  2)bTp7qRФ aGIR1UUMn/-)),!"(@@iqǑRФiifԽ1  =$bԽ<"!@@Um6mR𤡡 ]-R1_ IdR1WU A)1 .tBdI .)@Wp6mRФ agzR6tC!JN )"!@@iqqr$"!RФJJtHt.0-Փ```` M˯r2H":"rJJpPФ (.Գn` %'H1*(c2FJR mݤMR1(U@!*nжm Ϥ))=p!$L2 I!1%uP@2-.Ф```p "0r1$i*!oO@tHϤ# 0?r@``p t8 R1Uwv#i"8"rjjII`H͋I $Hn* $q׍R ",B?ٳ``pr *(QHL"RФJJJt@pH  ``ۊ혢RnIɝ'Rkv$Ф  ~$`pIvR$:"rNo L m $a&j z R1 $QR1隷 M'nR1 ,*r NHlw[>`` HHӽ/'/'!2I$I$ IӶ(ڶԽz  [;l1ZZPP d (rjo 4Ir 0ASj{ " Խ1 W <"rjnnI dh I Iՠ iJr1*"1S=r@@`` Mp oR1F>"rjjjLd@" гbb shpR1^( 丮J"rHfLP"-ԓn`` HԳ1Uڢ *N"JdPФ  0@/Փ```6( 1zZ $Pn1 0A*RJj1s1n S&\>qNjj gWOR1ח6 !snOOlgl "0@/ԓФ```` 2 ۊ R1 :"Rjj vHf .,Rٳjjjx 4 یR1Z $!Ryr P-I$I mHrꪊ"1RԳnjjp Ј Q1VTTTت-!RojjjP ԳФ```p JrR8#J"rHtIf "_򓽰```` dr2  RH ANM ),,Rjr pQ E qB11 #;MRȡ۬-1ФpHPrФ"```p ʬnRƮ!RooOmxh "(,гbbjj R @@$@ӽ' X.֎R,Գ```` kJR1^WW!RooOIitHr̃I!sФJjjjt$i1)XR6Y pMvQ Prn1UU HcrU(")rNJ`qFm0 R4ФАH$@$1(U&.!Фoj fMfR@TC 誮s=;r#!Q@@@ iDr!+}R ϤpА %"EJr1,.!-JD$U@< U $r  R신 0)R.")rnJf 4acU[8ϜZ*"4IԽU(IB铵jIi4I1I.PYФ P$I$1(U(")jjMMΤ / /Z }S8Y` XvKlr1𨠺 kum3QRU Ǧ-QRU<rBbBD_R [ypp Kl' @%Q Ҷm ]mna$ ӽP$.!z} `lن(HQ^ x@qؐ N$0 /#B.1̃@Dhޖ$NU Ж$rNUڤI$rn U;}RD- Hur1,.!Rn@fH4 @ xФ Pmr1쮮!RФ@@@@PDI1)}EФАȺ$Mڴӽ1 w (!ӽk iiԽr,[UpP j'hr1\S;R^ R 1 #:.)RMJJj  drΤ) T:ZRPP L`r1)RФ@@@@Q뵅DIQ=!PP 8 r1N**RJ@@@Y{@HqdνB7PPMI$JR1W>1@@UҖUږ U |aGn Ȇ r1W)rJJJTH H1 @ФpА ;׳r1)R@@@KQ%YФА )۴͘r1..)Rn@@@@ pq)+++ )DrPPа ۸vr1VV} H" P1 * k6Aѵ񓪪2)1J@  YmIIQC,XCPpPPh&m$R1v,.)RJJJJVA$H1)ePn vKWR1 `@1 -  ִh$r+x!E HڦMڤR1VWWW"!r.jDHՖ<]$U( ڔ$Uk신RI2nRМWI>R jj p@))+++d@p rHR"-3Rbr Y5X,Z$ +жֵR1b"?zz DP([Q @irpꪪII0-UI{ I-U* I0QNU IIN*  2@ ELznI$RҾrb 0`[5rzZ j kۮڡ2,Rb Ynۀur[ ^1 ]tٖR2 ֶ R1ʪ a;6crRU ]'e+R𤰲 M;Mr2W^ $R1"":Rbࠠ ]vK;  %k0 UU"->ӽx_ A `j0񤐘 I$R1"(4R```p  Ir CA$ Qb ϿMiW#IIU  ФUI C2؂Ib4ؘ $I!1 ضmm6ӽr0 I$ ]6m3,ӽ @&$ 1ZZbx.)O5r &&Ec6^М m9*R_] f۵1ԉ1 "ҵ𛪪 @R1$i%rRUUUA$2R1",rФbr Mnsꨨb0!Ф !Ϥ">rbr mc^j0 ]iR1>,?Rp I@  cm1` I"mФU.H@UOM_耠 I$rM/** P$Iqb [ fKR2  >,?rФjb kMt(  [4_Ф I$R1"rj A6ksF!𤐘 M; r1{k 붶R1 ]nR1$0I2 ЮmR1 IJBR1 v뵱mR1",RФ@ !Ȑb4^1Ф ֡nϤ.-C3Rb M4htXn VN1 ִ1  HI„r[ Ar -6]nq1eUUU u]ڶQ1UU Ц[׮r ,.Q1]UU A9$Q11""1@ 6IR51n@b n r(Z !o !r-C8erN2 2%R*((sSl𤜖 ! R1=9%ӽ티 8ru Iro &M'ro_ Z l$Q-_ $0*U&$- U$UW ln<<Z?Rh {R -:P1.zS˰ r$$ B$AR1*"+B(} )Chrjʀ  iۮK7 Ϥ $LBIȐIϤ mvmmϤ;#R1RRPP )ۤ Ф ڭϤ+BrФ8 I$Ar**H !IIտ-܂):: Lb'r( Ф M-2R1/=&RM $ArϤ  Ҕ$ U ۔ФU I瓽U<Ut;Ф*U̔HM A$Ir_; B,p iФ+ I"*ʴHФ BcR1 B'PB*drФ ڠNس( 7s𤜼 LNR1>1 &e 1𤫾* r 2**  i6IIH&I=S}Ф: m 0`s*rOʤl𤼼 $@RQ=;d:: 숳rjʰO !IR1=C%1{  $U&@Ҕ?U $ UU@$U ?$r <U2ʐH.(,, -!ڶR1ꊪ+S(|r0 P`kr((s˴H𤜴 !I$R2=C8d IKi r0 4  M] lr1 -' 1U] 6DtS1 `X1_ -1IR1 IY[lR1誾KҴMR1 ? 𤚚:* ۰n˶nr((J ` $2 IϤ=S:R000 0Sr(z;L𤼼 i"-: #8Z>&1 A喇 $I糽1U$'1UH?1U$' U$v'@v'HФ  Ar=C(dr:: Ҭkr((rLФ iۮhd1 X 1 1eQ&IPr  ڶm r ]m r Mq"12 * M 1R * )&"r؄p 2(>8 11MC6r: Hl؆m|_TʴHo< !A$r[(fjgn>> mzir((*" c=cR  ivh,R1 E˖ӽ1 жmr1k .MVlR1祯 $a'dLR1 X!R1] j): R~z&sOR  PjuR1 U HfLR1_}_ %$)1RREo>>, mj@vr**`=cr𤄄 ݂.벶RQZ^zФ>> P"XH@xI ФU ФU-UO"AФUln_/H0AФUO"@ФUq%M$A- mkv '* @;C m&k6R17F7_6 II$ c>CФ *-B#8R1jZ^ 1:.  DR B21 d„ C0R1W_ mdI$R1 $6R1$&IB2 mR_ ۰tڵ $IQ1E]]] I$ 2r? ۦmGR& mIt* : @ tcn $II2RS&eh_𤟗  򬪪 #AФx I2mIUIBBF-IP'Q,U _rM +O2A$ڒUHֶϤU/֖ФU1IdK-  ithu*:: Ccr   &R1 []؅^6 $HHxm II$iԽQ  IR{Z2mM1R(ORI_ 3 IU 5i$H1- :lXc. ж[ӵ" CVB𤤤Ш`5R iVv1*? )`[vQRIR4IR 81  C۶m r m r Ͷi;r ұ-Q1e_U!C&A$rZ]VФ>66 dLX C=TCr ) 21 TNPФA0L2C@xO2IU~. ФUI"U/HUq2eB&fM IQа rNW   n- Mvmh=dCro IB2rs$KP-.&&$,AQ 7$I|rn孪$# s*U t IsUը,Mr} v8IR/ O7aR1 늶M6l 5r1 I$L0.( n:Q1UUU "I%Q  m6MAr1UU/T2N&&  mݩs** .aArФ  r1zr%W0ijn.,,ܳ U?ؓ U;ФWҔU& ڔ$Um糽_@ܔߓϤ  䓽Up?] d'_4FbIrO $ RT8O&& d;/tTHR𤎏 qP,R1RR+A r2A$IR1  ݖ R1 `CR1_W )BR1 I$I:l1}} ]۬ n Y۶Iar $II1 xHpo7&& $AdH&r** J)bmRo $H"$I1ʹ$r( $nU $U $ U @ [$UN's$QmࠠUI$I$0- *U$aRI$QnU6@$rU4$rU4=$rU _%`Rn  $mMR1Wzp,,&& a&ۓr* /vBIRϤ kumar f `r ݺq=Hr m۶ir ڶm r ]uMar &itIr7{1&&4: I;-r Lr1 6] tR1ꪠxw%oФ66&' 銵m,((&AArФ 2$HϤh%Wx䳽N...$糽Ф UU۔ A1 ) L*r" M$ԽrARU Z1 ;r U f&Ry I#س1%TAIr HBI&rRT'''' $ 9سs*ӰEƍr1vV Xk41J` R// 2aIZRQ* ΃'ʣRWII"1UWU$I@1Ϝ.Ӗ$H1Ϝժۖ$O1U[$I)A1М$l1Ϝl1UpŜK)oФ'''^ur ?.vbnR𤦎 1)1$kn&P"J1cƎ1  I?Q @f?1U$U$U:Ф Uh$-_4I$r-  0M#$nU/$nU/B)aR .!& Rzj@ C' AH2$IsI@^IH@UɿM I"I$HUIoUAHФU ФI"MW Ibn rNU*+I  IU /I M0A &i,)Q@vmflRФL Ϥ h2mR1쀪$$dRRL$Ϥ+hkR1 ]uϤ$I0Ф [&R1(z X;NR'R1_wUU LR1'UU +nR1 Цmf nmӬ MۤiR1 %Wv4"R1*8$C<CФ  DB `~ Ir rmW**q-I IМI.I41Uɣm H1UɽmIQUͿ8lW #$ArU#@0Uy"I HФU* Im IU IAu 1 $ 1@ HdLQ! I$I$R1UU $$I$R1_ $IR1U D$IR1U ضMR1ZZ ƭn1 #i1I$s%0_W_II$1𤯥U D J1 ѵ񛪪 LDKR 6nRQ C۴ۀmR1  IaHR1>+*C:D ]%nr r^ I۴moUI$oU IOU I"HOUI@nUI" AnU I HNU I‡h0̃(( InUI"$AoU*IIm4oUmM1 $, 1@lfLR IHϤL$ϤH0Ϥ-&mҤqR^ZU]$$IRR iۮrRm}L$dR 'LA$r/ I6arRx $ HrR* CrR$$d$rR 붢MۡrRʪ $IrR [v͆rRc41  غU$Q~_ &Iq\ AQϤ  DRr * qATR ;h$Iv"I$I1U-QI1UO4I1Uw>IARU}q _INAUɳm IU6iҤ 1  (m rdLf1+ [&H1  ! '/'' E.۶ 1WWVT M-1 AC1  $6I;1 ЭKm11  Hr Eڔcҵ𓪪 X;ǭ$1" ۱dӽ1U &IR m۵21_ #[R㾯 WvR16d$  ۔$oU>$nUҖ$oUڴMϤ$VU'ϤU<ФUHܳФU*'M_ /ĒM 糽U'U$U,$@UWq9lr񤱡 m-HR1}i4IR1" mڱC@R1 I r1UhCR  ]׮mϤ 3R1Z -ь AR1^WU_ IĶ Q1UUU~ iM`ҵ !IIH21U lR1 +vmmR1 ڭm l& !R`')n U'Wn  HҖ߳U䳽1*U1U$A$1UI$_ Ht糽𤨠U0L$ *UU 6 `瓵ФU۴m?U $U"!<@U)lr𤩩"mKR1U 6i@R1 I$IBR1ꪾ ]v3HR1k I R1_WU/ mWy>HQ  Ibۉ#aR1UU @R $h1U Q𤫭 &`R]53HR* umaϤ mڎ I aSN$@r1//?' U'U$A$UMĖ%oQ $oU$ Җ$n*U $rNU $A$r.U Ӗ$r U H$rU`VI$̋U Ay$ U$A$ U$0=ӽr䳽U $hUm@s𤡡 MvRQZ HیФ 1m-AϤ ֵkR1 4e#rR mM RIH r $H@r. @rR殬I$!CrR`$ rR:z ֮rRU $ar1 * mMr1I &QR_ )$ʶrϤ_ ؖ N*Q-% vx]r1c-mrQ ؀m-r1h "!B2rϤzI*?Uh瓽UUU 䳽UӖU  U$U@'U $1U X#1" stu1*# aB//'' -t[mr dB&dH1* IȄ 1 a C11 뺮݂61ڸ$!q0O1Ϝ /?o" М??yR +׊LR1* (Rj`M@RФ))) ؈r dMR1 Ф^mR1]u d;R1_ hk6R/$I$r1hiR1 жiR1 0!$ UӦ5R1 Ю5RKJR  -R1 DǶIR1* d;MR1u"*"rJw`]/A@U "I IUI"U H @U @` y"¦rW Nm$rW* Ƀ UmHm$AU }2&IϤU MIrϤ Sr%rr I"IDAU* 35 Գ` ,ۋR1 F\:R1^_ pݤNX1*  $AR1 6kv@@$aR2說 iiѓ .kva2 um 9#r1zk kNr1 [R1  0I$rRUUU 䐤MR1 HJ"RmdIU#I Uw.I U#AϤU w @WI. @U i u?mФUaUu"$@_ IΖmQmժq PR /ϯI _ym UO2AФUw. o_jĊr2V !„Ϥ Ԯ;Ф avL1 ۱S; T%k; VeS'R1_o7RVRUU >1дж1 M1 "؉R ĵ]R `I'R Į^/rJ ItHrU O rU I@rU y"rU # rU-0Fඳ-*֒۳r4r;rm糽R_ r6jrU v, Q[(Ij)tKR  24 RWɣm@1U//``` M[!R1UU eK@R1 ֵlR1 k-۰R1 @,2ER1* $ @R1UU 4)ҵ𛪪 nR1uU ` 1 * д[r $ 2r&Ir t[;tr$&Ar ضmur H"*1 [21LrZ"HJ0  NA$HԽr* b $,U (@d$ U 6$QU$I%xr - I ɐ𴪪;R r1'*2,B#1̋@IMI-iIou(IHHnUyl$i]IImU I iQU I2iqnU I'@#IQ-U I'I 0 UIDH-O"HUI-88 $$R1R?RϜ` ("! a&R1 4R1_ Q MS'1@u31 ۲ ے0 dVZm` $r?/A$I@A$Q m]b1 " I$I@1  E۲Cr $iҦZr*-B1b ;P 1(/ M$m 21ZUUU v[1** <<1nz @ړrWwb@GNdNv!@2𤭩=R:rN blrm?ӽnx ۘ$r U $r U $Q i$n$\ =H;71 rzxDHNԽ1 $@"E.x˄IФ֠ $H1+)er H ,rOH !$AR1U &dR1WW ؂i `z*@$S;w0_ N6A1 Ia,1 -n] uU b1  !L€rH2B1 :]1+)Er Mˌdr(s1LФ cAR1u=S:rФښ H  AF'x$A㖼 X1 r"  &R*&Ag'1_d;u?ФUp?]ls𤀠 itI R==j!Ф !I$IR1-)dr200 h[ms($( MMڳ_ )%db1( (JlQ  I6 ItmנQr 鰶kRwXV ֮i QRUZ $A$CR1  QRZZ ۂ͐AQ2>lR C/R<1M  PQ0/Jˤr6 M$DR1U?C8}rҒ ˱Far(5|瓽U?U$UU@Җ?U mZ$MU0$n U$O- k;`֦ rH ֮R2 ;'er P#IQx* KȦ@rn66 R  mqBPR1jꊣ Ev@r15 I`BR1~ R1*{ M.R1WZ* nZ Q $M1 " n뒉bR1%Q$IR16 IB2!Ϥ =ӻœ1??? ؂%kbǓQx^_ 3@C16&& R1 MB:1??LH&I1&A61xd糽U&A'U AtdzW<U䓽UAU 'r W 0NrϤ  * ;HII$rS+'d1P-00xxx,NHR𤰰d&!R1 @'-TTT J1 $HH„1 I$ $1 $ LH1 km * ,I1T1+ "  +R1W_F 5+1h袪s%Cb'1 AtmWrtV OPNN{-1Se`go6 km&rظU` &CN m$퐮R1UUU It6 21U Md]۶r1UU ФmmQ1^UUU k.Kvӽ1UUU ÐڮӽU.p_eb^ӽ >6 hrD @kϔX1Z% @dCRo @ 21RhR8(( IRڂ ir.U I⻐$R-U IJmNU I2LU IR UIBjiUI" HU* C< vnr/++k=fc " HR1[]ڇ^Ф> aHDHr(***`5fkr  mۂ-8R1Z^Rnھ.. 0  $ $1 䳕&bRPK"IФVIIФU"IIФU-M ФU  c3VCRn =Rxpp` cFl RN< ivTQ* k=crϜ$LϤZe؇ZФ6 tȄ$**k kr, 2a$R1 6mR1 MZQR$I&ϤZR TQ. * $ҴR1Zz_ZE`_:6 ݺNm@>fCrN ڴ-ϤR$]ZФ66 `HDHs(**˸ 2mdlr1V DK%PBR ِl]-R1 ۩ehz255%% `BTK1$$ Ϥ$@$RQ $0 $R1*(/$A$ $r2ar ! L*r6M1E'77 ͆l* c crIIBrZbF??77 @"5 ԳQ` <4`K2Ϥ $ R Zh{޿77 I@I1U q2h H1 /mH1U ~_ I"AAФU I"0M^IB U* COxkQ̃ , 6&1耀ɓ'hGr8< $9r׿ Џ1- ي%h11પ{JprN$$$ qIԽrՕ;dC!A lXr kbmaR1]v 0Lr ]Kar "%R%@r m׶:4R1 1@@@:L6.&  */air #,P=Rz`p$ Mlѳ1% 7R,P1*/_TN6&& P]s H$r^ }$QnU Xrn*%  IQ dI綳r,H7t//-dnIRФ I-R1Kt&&& m[״ 6vBtIRФ $CR1wKs&&& )$ *: %AdAR ԓR1_p{I4Ir2w mǶ) HR1 ִ[;tR1 -6I:RR][ X-]R1Z^+W86& $B2.AIrФ I2HϤxzpФ6&&& ]7l؊. .dtArФ IR{8oФ6&& IPr/^Md'1"_ 䴳T'^ФUJ1) akPl .tB@rФ#==R`;On.& "A+.tjIrФ H"$ RQꪪt..&&iB/&AmRϜ +$=R1*~X h'IlR1U 8-R1U Ү6Qj Ƥm1ު*PIrR1 UY &lR_|PN.&& m -((J1bIr C R2 WHo&&& D @2.iIRФ X1`Ř-,&&& mr ?Ϝ^ 'ϤUۖ$U$ۖ'Uۘ1  hm60iIR $$q wz 𤶶& wմrիn`IR1 HBr1 pؓ1'- $e 6%;r /&dR aI Ϥ %vL Ϥ ݚ6lR1* mv(R1Z[ [צm[lR1u_ (#91 `„ 1h8L7'' ؆e؀%tB1𤄌  HrP'''' `BL2 iL1龜4iR*z/. H$ 4'^ $ФU $ϤU $U h LDrΜ<5 as7:*~7jIR k.M[t11ʪxȇ|Q-<4$$2`ðr+!)ɗ 1n-  I[t`R::: @rn!JJmfl mkgur1՟?JlHƊФ 훼)HvlRn IDQ * : H Hr Iр&ӽUI8ۘ0 _ I)r ItL1̃ dL6AR HN !@HdIn I[er1?K TC(,)1@vLvlR CcGr1_ח H`1-$ 6,(o!g1 $$ Är $ Q1ߪ ۶[1 K  -,"rQkjhR dQ1Օ5 l@1%  M -2r ldMSQ ڥnR[}O 3T 1 8)J`I   @@ ّ^Kr񤡣W_~R55-tB'Ф  . Ф@@Wpqr𤡣IN䤓RU  -0` i$MrФ VvV[R C)N P#>j$RΜzI I$qN* U 2 [$ I$QR mIdR 1B. ,)O@@ A 1^U nR1;յ.An ,"鳽`@wQr𤡡 vVr1 @ro "8@=QNh`a&RФ -MR1{zU [K;R1w vd[Ar  iФ `Z.1`` EYc?R1SR $ARdIR1aA1 *")R@@ i DR1 aGe1/UUVAn  ,ɂ.(@`Y[8qr vdR1>*> 'aϤ  A:-Qj$n_.($T 0R YvR1/tbAФ  ,"೽@@@ Tp&I  a[WӽU6B .-,l@k9U X5gqU>8 >C.BФ   ,@@gl]K1М)! $ 2 kvm2l1ꪪ ,ɜ(1:*  ˋ $!)@@gqqRФ nn6gR1=cBɛ-  !"&)nBBVm7mR𤡡$,"RJ@`"-ԓ```` tt R1 F"ФJmpH .,``p ֊ r1$v$RQ pX2IR12!JJjj@M.0-ճ` H-r26j:"rJ Ql# #4#ē``pp (lXR1UW ¢)1МH b)b B3<#䓵-```5];,BQ~,];?-Rhh ɔnm͋  #+(³qzz 1fC rQ_^ i Խr- Խ c'&CR^* DlVJr "4C?س@``pH0r1  (!rJIpH"S3Ф`` [9bs14N"RФH !B   Ȁ#ܳjb` -R1V6Nº1 mk6Q1 Ъ*s1oEe` +ٳ```r $ЈMӓϤ ۶!rJp`HԽ1"S-@@` Xth&R1( a,!Rhj `Խ𤭩"0=1@``p #95rQpp `!1𤀀@ vrTAr](I DR`S * ,@/Ф``` #=.R1H@~pR/@d@#Ф```p rr2(*"sJNC֝Ф Za$=ůjz  I1 4.!RJJ!.'QmI$abDq j 148Q H2 dB&1 $"RJ !  ,@/ؓn```` Jr {R1Tt۶<"RФJJHto#93ޓM@@` ZM R $i2"Rjjٔm b%c2&r-h`pI11 i$*1ϜJ ImLN I LФՊ !@Ar " ԓ```p p-1⠨ vɒr?$@ƳR#"1Z 1@```@ $R1* 8$N"RJpAd@"0?س``` " ۈ rRZZ9#L"R@tT`𤡩  rp 6R ۚ$I1 閵   "dIPIФ #`Ф@pLB&d2 !1oPIIԽQ#`p $M ۳Q  kb 0^xx BK- ,@/```` $h 2 A.!1М`J InH͋ I210nU 1A B:3M``` "MJRڤ!rJ  qM))B1S/ؓnBb` HR12)roJjjjiTI1B+xpP H":"#r2*njjdHdHQ+B$PPP =Kmr2 Hv"RQ ֶk QRZ)")NJJJjptI +x%А Hhr1)R@YD91 B(@А ˺nR1VVWU ,))1B@` )t [XnА Fk)oR ,1k{@ tH䒵- (I r#ޣQZXXxԽQ-  H$@0ӽ***I AԽr AQB,)drrrrHM&r1.$>ھ-RJ@@ IT R |pPА X%qRZZ_)rJj `H 1 @ pP 0-JLSR1 Ce[ `R1^ꯦ m#ט lR1!"1@@ ٙ'r0] B)|[rښ XtM4R1WU8-R豈jj erU]B'cFFpZZ C&$ɄR1R2"RbjJJd 0iQByХ`p :ur1^V#>!1M@ DQU Д$qnU  $rN ]C)xڕ- 3r1lLhj$J$N*QJJJd@H1B xФА p=ۋr2!sϜJJJJo?=QZ`*FNА lX2VW !"9Rjjy q-+ e\(rRPа H$͂mQ $Iv H1 $I 0UU )")rNjj M!)"=SАptR1tvw")rJJJjtlݴi P PEnА ȆnkۮRVV_ .!"!1@@@@ MWq1 X` N M_1 -01MJj d7$r  $U @ܔ$U @'Zd v$1 &lb*1 B붳r }\pPXX ۆR1#ᛮ-rJHHtIVIrByPEФ %4MrRTTTW)RФ@@@@fMI1 dPP hhuRt|^_vg1U 1//  knˆaR1Urjp@$IQ)]p ȶ[nRcjᛲ)r@@@ Mdmr!!" @ t%p H+1! @#R+iQx O tr %7 C:@ Ȋnk۶R,!")1@ fH&$NU l2_x"36Jjj  `) C* H7ϋ]R1TVw2-3Rbr Ͷض*c4 Ϥ-3rjrr ntr"`I@HoUI"nUIHMU IrnUࠨ JR /[$1[ @R1Wժ"-B#rjrB"ؒmtF!M )ֶi`r213Rbr6Hl1cFn ڶmr D" AR_ mؒ0Mr/ ci #@35Qpppp'tWQ %$H $@$ I B$!ӽIA$Ϥ2, rzr iHڴZ r Ф $I 0R12-3RФbr ֮t򴪪 @L$` I"ФU IФU H U mϜ蠀 !IIHR0߿d4b! $mR1U *?rzz{ I$h-Q Fz_rϤ dH1>(?RBr ( m;rZ_ҡrr Ivِ R1 붛mr1 ؚnR2  ۊ6R12 T[RpS7PR1?%5  QR1 1#4rjzrr P lq Z$^1[ HRQ"*rФbz @>T˴H $ 11 -C:Ro *T T1''7$< mv" 11( 2Iq,r mۡCHR1 Mڎ r 9 ƳQppx I M$s0'/ DI6XԽr +HB*x 6hfdzrl 0pe:R1_WB+S:R M]גQW(Đrn8< kWٖnR1=C:%Ro22R $U ߓ ܓ1U 'U Iܳ1U ,$_ bGQ0% ِarH I$ԽB.B*Qӽ𤘘 $r( zФ֨ Y۶늶QUU -EQo  XMr10 rϤ 1Yr'HR1  ؤ-H1_M$MRlR2  [uٶRU Z9Z rO[IeSR15%LȄC1RUU3 }rRҒ8 ȶhmrQ(x l<< 4 ]R1 =Sȅr2 PZ2qrZZ^ xٴn9Ld𤪪 cD.$100 Hm$NU $$r.U $$r.U %$r.U d$r.U m$rNU m$NUH̋(( I$H21;T(ero A KT &l&1 B3%C-r $۶m xH II R9119  $@&('z>r0tVVV K R n]1 $@# 1 )QvH2HJ𤼾X ˶nEmWU_6o_1ꫪ 6"-A1 ]n 1 0 A@r# **z˴Hr<< A!11+SEhG>> !I @&hӽo $I! R2  e'irQӯ 薴kvR1' XR1  6ukb'R1^W ډ1 86iR1 6 1 $k1 "h6-;Q @hR1UURehF6 !NH[r(( `vcRN $l1B(ejfrn a 6eǒ15#0IxI" IMUIH INU IIoU IA@rU $I I%Q q( 0@mr- Ar0 jc i$Ɋ5Q[8>. zI1ߪ ؈=XQnFR+// E&m׮R1 0$IR1 I$I$R1u} H1eR1_ $I01UUU $I1u I$ӽ_^ h X 0_Z{x $Q -$I$0fX^ӽ I*;@4c3 Rz @e`F1M8< NtMQ-c3z.ФU/I#IϤUHФ IMqMWI AN ?i$IUФ  t,%r > IZ$سr(( ` cr*\8fs0>?/ݻIr*Cr Ax-q ޖ\ 1U /IMQ m@1 @1WI{ASQU(( IIϤU 9!𤭪 v: s* `br  !I21*CFs(Ϥ?)dJ@Rr// c=cr  ɀR2 Ŷ.mur1~ @fm;R1 ZC$I$r1( \5CRzKR1  tk[r ֦[r 2Hr ڥm׶R1 $ 0RRe > $ɐL Cr_ &H"$- I1M* F$rФ+ U.ARN  !B"R1W8P6&&& [vmҵ VR𤎏 dMZ1/6( #IR1j(%ٖR-0R1j !I R1w d $&$C1 $AdH$ ֦[u #&Qx Hp0- $A AԽX6m A$C &aIR  2,:R1z{ȧ$Q̃(,,4ߓ ?ФUH'ФU;М U?U @Қ$MU $qm*  $U瓽U䓽U <U%HR-  R1WzHpR4$ B3%h x ,&&. $h!r /bR I2Hrド sܺQ? &|$r.V ܖ$rNU #$rNU $.U$n U I$Q싈W $$0U $Q-U &$rM*U$I$ӽ U ۖ$n u/Bi1̃  I$r;PC  ͒I @Ф^/ IU AH OhU I2 q-ת NRJ -W I"HNU IInU I"I IoUy"l&qU I"mHU IB rnU" Ϝ .!@mdl1n L„DH&1 ϶j2 &bLR1UUU [Z-,1 퐸1 i1.  $(r [mr Цڮr $nR1[>#91𤠠tKAR/  lmvR1""@ $Ϥ u[r1>C+T   dH ꪪ#^O"PճnW?HPU-#I1u"i IWImlՂ n4HR* 6ؒI* B $I N$ QWW\X IQ-   k;ۢ-rtLdHRaB$LR1r~Q Cg;]R1 0 1RWUI&I„ϤhI d/:R1XZ h[7kk1  MTAR1%ؚi$Ϥ дڶФ [Ϥ "6mӓϤE$I4r1 mwR1;H @ @#58xxppI$? q _ Irmr-U Ib@nr.U IҶ$mr.U I²0MNU InANU I2r HU IIU IMU IB0RWUIH@ФU M Խ2-"/"0vLfL1Ф @$r EI1" ؆kt1  hk1 *$@ 1R/R#<1{ h&k&1_ $A1U *"1U___  !ImmMM @:$M1 `):2_ ؖI1* $]U mvmvU* JP ŏ xn1nruE |Lrn^ I r.U I"I@rNU I"I$IrNU I"m NU I2m-U ImrNU IM IRNUI"M IoU I"I IoUI"$IoUO H4I !9=В ,)*rϤj flrn q$q q4AԽr7> $@&$Ir ؤ$1 '$ER1 41 %ojR-窋1( ݖ` 1*+ !2!r 0 ir 6ڭQ1UUU д통Q1]UU E붶Q1QWUU [wvfR1.dB'$ $'U@$U$NUA$ U .$ UM%- 5kY5Խ1p&Aۖ$nU<U$ Д$U H$U $U $rM $U  ے$JUvmT)LrФ񹫪 M&fR1UUV itI1 a IR1W S\?R1_W^nk71 1I,Ar 6CӉIr{R 'cS1 E۱-I1 1t`r𤩩 ֵM R*//dȄLBR1 ]k ArR^%ܓ ߓФUIېUX R>mz@ @ܳU$A'1U S泽QU  F1  v%سr ^ % D!R ҤM?R U`>𤨠U  $ U6Ϥ}*U hAr1]d&aBR1%YXTQd$HR1 ݺYR1i.I2tR1 ۶ R1 =LvR1TWWU OR1 )QRZZ k׵YlϤ $ۦM ϤM$I2Ϥ &m;6-r2 h۵mr1U n`GNR1vb$ "Ȁ$˃_ 1iN$rM U s$r.U  $r.U [$r.U $m$rN U $r-} H.$U ۖ$U Hۖ$U 4 ڐ䳽Ф UU 瓽Uv?* UӽMUL5HQ𤡡 ]e]1ynH1ߪ I$1(  H1*.@@ 1  B,u[,1 R iR1] A1U R9`,:1~ )a1 kR,t1_ 4ef,P1 IIa1 a$ 񤩩} ]fi1l c9$N UD$rnU $rU $U@$U$U$oUI$ӽU$U $H$rnU $ $Q $rNU$Ҕ$rNU $rNUS+$MU-B"$Q-dm&rФ Ht,R1 ?RR7 $I Irt $IN I1 ( 1 HH1 foFB1 [/11+  61#HR1_ 6iNIQ1UU~ mvmlr kbMr biur Au0nr 8 r [mr d7kur 4M'1( ؖ$Mf1߿ e&a2UU Eе]vr C%ӽ`‡ 8lQ" +k vkϤ 65;uR1(FcC.R1Z~n fnR 4R1Ī""rjj ImU IIU II IU /iUO"I Hn_Iz%R-U*((I IUI"AIU* InnU IBarNU I’rNU8-ItB, Ϗi I.@ HԽФU/ؓo_` S'K r10 I&R2 [ۭR1,(R`JLR  R# R1^ jRw 9nZR @ AR1**'$$dr1Z Mu]aԽ1W@ $R_ A0 R1Z ˺4K1모 IHR1Ae V\"RHsPUAtt-ߠ#iФU#@(ФU*OֶU yXrMIbo%`W, /@HU/I AUO.I$IUO"HUII@UI"I MUI"4?ܓ-U`` $_ ֓l'ФU &$-_MI$0 ܐ$* U$oUU$W <U$U$I @$I$𴪪+R$pP s]R1#1 hM@R1___IdKQ1U Ns%A1뮪mٶ#1񤪪 m m1 h#A1 6i R  IbےR1Umh+p1 P lMaRw жknRU MӎCRu -Ҷ1b".!Rk_ Fl%MГq AI5Q $1#'䐓R B3dzr &;rH:R(>R _[gR  ۰$V  I]봳rw& %gdzQV @'U pФ %-ޓ B @Epp Jtd Q^66MfR/ Eui`R* ڮmR1U* aA;R1C 9N1U U $$ӽU mצMaR1^ HJt,R1 M R1 S,#R jKIR1Z fhv"I1UU ڎ uP#0-_ר-^.RnJMT@11p'Ф%dKh$nV ۖ$NU ۖ$.U ۖ$NU$n U`$-_ 0-$ U $U䓽UAФ5x I2 𴪪+DBA$ r",?1-@IئmnU IҚ i UIB @ - I"I IUIA NUI"I$IoUI"IoUI@oU I"m InU IHnU I2pIFG q2,C38Rbr ڭ؂5Qj1!r LjkR*  A 0;$ Q1]UZP9&۳=1 c1 Pxv  ضI1 d61 EƤM:0UU -1 .?2𤏯<-S3سrS k.˂s[j [n $A 11")/1 @I>mIU yQ U* W+vrn.,,#IڰMФU*I'rU IϜ y 0 Ij&hrNL@WAU3jU 7B  5ݴ ֲ1>(4Ir* ٚ6ht*%G%R @+9[߳^WxJ1w + m I61Wz PvQ. IDМ  >T6鎳 8C1uU fk1 ڢmֶ1W H$ 2UU ذd˶RUUTh,(>Rr MvX-[r 6:ѵ񓪪 "1C#41J{`IBH InU I"I AMUI mUI"HNUIB HNU IҶ&NUI0nU y"@IUImU IiU H@U!.  1ꫪB,1Օ IY GFz $1U жi1 $۶m X`[1߿9P41 a" I&/ M,I1 :KsJ1 T - qw1'% + A$I1 $QP"A1 ,.,R޿? )ҫ%rzx|؇rnqv-4B1?? "*1N@ yH IUAUI"IU* InMUIHoUI"A IoUI"I UI" U I"̀*II nUI"I InUI1 888 Re%r1 21 Rnbb` Ð r) 5k n08 ȶi׮ӽ27UU )$ HR $H&$1 m[; 1  uf M1 Фݺr5R1x ئi1 jMnQ ÖmieR HQ1V[UU,1S?RϜҒ I6Ȇ[4F Yv]u11*;)Ф Xڼٓqx ܶm &rmx@ 䓵n Д<ФUU$ФU <ФU A䳽ФU ҔФU &i - kЀUQ88ȠL !$IR1=T8r #2IRzxȤH<< clR1 +I&Ir1 2 l&#r1ں C#4B42_{r Vm[Z[_ $E-UU IƱ 1 +nM`UU II1 泏JRn~x1//?-R8er MtKn*((zP h A I"11=)eRn lk =ox b$,8W$n] $U ?O$N U Ҕ$Խu$'_Ф- )v(8 R=T6eR$A-q N戓ܼ B"%c'1 )dc 1窪l$Z 1U s/gQ-)+ IEr1UU 鐶#rp m)r1? ֭i r1 mӶ# R1~ Mv R IЦI$1gOWOB(rn H <S l ZR71 C3C:R 򒒒 MKvQ) > z$U$oU$oUH$oUߓ'ФUHt? U&l-,I *N: IF6!1 B)Ud1 Pouc׳** \\~v iۮ݊m m&mZ1 mM[l1 aێ#I1 d d 1 Mq,H1 $Iv,H1 -"B' %qHQ+/ VRW*+ Hd&r1URR B+؜e15 ](ٗQ LA+ 𤞸J!tN1 =9۟  Cv4:x@'_ $ U$U$oUH$oU$oU*$ 'q- Ҧ L];*1Oh𤼜 @r1+ @(r0 "HHRrUs˴lr<,$ !ɀR1 iҎ1WU" ֮*A1UUUT IL@r C۵i Q1UUWL &R1__UO1ި --1__* [7 𤪥 P(@6M1 PIi1"#+;9er ̈́s((pL $I rRYZ77' $I& IL۴ڂs椬 PlǶ1** $`BoR  IQRUw ؖmnϤ -Ϥ IϤ CӵϤf`g> E[rh=cr I4mR1[eZrФ<< !r>?? c=cФ [ۂ-R1Z}`VsM8((v"ФU IB>@#0_ Is r IR IrNU IҶ InU IB@rNU IҖ IrNU {  ua{Mm𤫺B !o>> mumZ<* @=VCr C 11ZEjG>< $$Hr(*`=cr-&1`Js1"" + -4h 1(}WIT1.  PC91  N8R1cՕ ! 0R꯯'F^76 kv: @6 Vtmֶr hQ- ФI1dJrGr-><< X% rQ@?vkQN  wr .mnrÖIr $Hr  r ֬:tR1UU XCҵ𓪪Dž {7?77=:@ zڨ LC3R|m 1Ϝ  REbZ?777 AdH* tct 5 i?߿?7 m@U IlФU I"I$IФU I"@ MϤU I2nIФU ɩ`𤵪 4GX 0 sPKQ  IbHn_ rMr/'  Խrk$IR\P`aB1WǏS6fV7/ L[Es(*h csϤ mk׶r .P K1 /. $$r ڶr$$I&r e&mr)1@+Z:R*>< " r*NNCӽn  $ CRߕQܲ IdDR(h?vcRN S1 PejG̓8,,I"I NUI"I AnUI"I@nU Ir-_ IR0 U I$p,U Ib r,U @c  dJ)1𤪪R]:>>6 @mts((*k=fcr $Cr!SʄL1%%  m֥m" iAR1R 1ࠀ vNl1*rNR* @ILR1UU ۰nIҶR1*U $@ER1[ öȒ$R1(hzpr,, X!2.**.BIr񤇏 ]6XϤФ$$& [nФr/%IIr𤇏  $HϤW8pФ6&&&(0r #)@tHtHR $ [6dr1՟Ȥ茓n$a)1JJHR$ r1Օ搓(aL2@pgpR# ֹS1-x?1*// vdR1՟(ؓФ/ :>!QȊ lfl 6P R? +   ) )r@flVh1Ф Aɐrhj1 >-r@ iR2  mKnR20000 p q=qR00+ $AT? Waf7nmDMФ I$غnԽջ IpԽ1+3r)0 k{r0 A$rQ  &ruW* -CJ۶ r*  $)Q1 v1**.vB!p #-.!jj@@ D9RI$r%UU^I$IUUU əw4 1+ K! " 2(Ф@@ AuR𤹩Ppr1+*-/vtHФ  Ϥ@@YI$LrФ IL r1 ?!r "!"-r@``m$9R IF,ARR?*J Fi 0R`<W !$r-ilRϜ .RQ?*> ,೽@@` AyVrqDir1;.A М 39#4M``` mTIФ vƳU >Cm ")$!ФjJJ vl$LrϤ t6Rߪ* ;(B1( 6av 1?.  pqM .njXe˶R𤩩 2!1obM ,!"(@@wpԶmrФ R+Pr1 k1J  .! @T@IR!!"" @(X Q2 J)JrM  mˉ-rzlY糽1W  ȓ$1{ 1 idX7t1{{ 5bѳ1#'L$rmhhzz k)VB  M+$1? ?C W- )*S6Ϝ@` g)rМ C[2 >vC!a "!Ӳ-@@ uQ1М dBR I$IQ z1w >B 1%3r@`j i$ !+ 5o1 CIR " $@0 B+94mR  $R  A1   ))1@ 1IJQ UvfR17b!A  &n)R@$A$oW.$̋fӶqrФ ElTgr1?vC1C- .(@@VlݶmR𤡡!* [H9r1_ >C)o   )@h9R𤁁 d`YeZR͔@k )"1r@@['mR :b181N!VA1+ # vVmQ D tϤ  )b@ THI1𤩫  It1  7j)n .,.賽1@@ TT6IR  ()1dDI1 ,R@@$ dB&Ϥ i)R1R --.01``` KϤ$iR H0Iӽ1_w Үm׶ӽR .'a$ $ Z":Խr說 [:1 ItQ/+  1@"IJԽ ( ԽrpzI„Iӽ1p_8#:"RJHIdL 0S8```` D )Q񤺮 5)1@ IIQ+ Ii$ ($1 0?ܓ```b MHTR1ڨ!rJJJpHPHФ,?Ф```p xp rRԶ":"rФjjH`.1-ԓ`b`p M1М`I$i$0L +%Tbqnbjz 0)ĄQ 4L"1МjJ t "5/ܓ````  2 i!1МjJ Inh- I,i ֭ R ",lr1@@ (ҵ𓪪 $"Q*: Ies""( ڶkWԽz $A r3 QOƎr; E*("0-1@@`` X r Z"QtiT,,``` m؈-R1]vv ]nrHI&R1|}@:"Rnn)bB "S?ճ```` J+R1~V$ɢ*RhHHpHPϜ2-/Գ```` r5rr2 -O3!RМJBir]>Cܓ``` "J~)QJJʢtI r##"@,Rpp ]w[R1V $IIr l[mr"!)1@ 1-B+yB$PPP Hv:R,,>/#N$B"QФH@@BIDH1 X@$PP )ۊIR1>- Q@@@@ !&H1 C:TEp ` c62WWxL,n` `֖$Ф ږܳ1U HT?Q U B)xRG``z_ bktro H )R? blr d,t`G1```` Ä$r  915 M[u ݆m[R@``p !I QR__04RϤ``ptAT@ C:l۶r}.I$ 1_I I1U /Ni1U +Q$I1  s  ڤNXRX[?ԓ?9ppp_ BL2QLaBԽ__ Ar`r d@ Rzp"31^ؚ iۮ*ds0Ф $I R1 B&ArREUUU .R𤏇 dƶmR1UU $I$1UB MU pӽ( ӽp{{ YI$Zc1[Ф $R1",?rjr mvKtrZ! $I!@r",rϜb N\J3p/A UO"H HUI Uc mm[$Ϝ Ϥ"-RФ`pP ֭IP"%Z%n R12-C#8Rb $Hb  MńD R1~ [%[2$R1jZ ֤M׮Q1ܯ -M$Q1Z $dB2r b5Q1}]Y  0`&1S-CRФrp 'Ƴbb4^5 $!AQ2",B?r` A ZcF88 H!R1*Rj Pl ` I.U HHU ں5UzI`rϤU+ )AmWN0 A_tAPXXX HPb&1 Ȃ*R? [-4R-ѓQzpp {$GR i$R nC6S#1jb m lr0}_MdKDqmrI$N$𤊪: I5h0 & 1`1* *$`&rA$ $R10I„1***' KmԽUHI$Խrx Z=4}۳Rj xxcr&6'H$ Խ_DIԽRb IIr1_h"*s1Օ5 Vll RM L1`O"$IФW$I_IH$IФU H4MФ  M;6I@rZ !Ф I&I&R15>-,RrR ۆuktcФ @0R1-RBb 6IvhG'{И 9Λ  Od / @d@1v RIZ1u @ A 1U &DB2qq !$Iqq  <-r?57 I&L&rUU ENDS1jzzpIr dB0@B1%%%% Ʉ1 LȄ 1pIH&D„Ϥ؏R PIijQ 6l[$r dzr h'R_$If瓽1U$ $1UIܔR :SR Vx%eR-555 `ԽUUU hnȰ`RpXX$I$RUU ;=1/? kͺv2I1ܼI$MlR1  CvmmФ 耎jkR $Id R1]U $M9!)1 k&IQ1^{ dӎ21- }rФ8 HA (Ф<< !R1 `=S(}r ѐXr  ii1 -+%R 0$U $ U$oU$oU$oU($ UrL-8(,'A$I RQ+)dr Nb'r`'; ɐR1 /B(R2 Ⱥض쬬 o XmR1^ !i@R1ժ m۶]3`R1W fb'&-@R1_ kMR1* ڶKR1U )`Pѵ񛪪;S&yrФ: mmдjxrʴh𤔔 I IR1+)dr $$ $<rʴLФ !A$IR1;)%R 0A$M <U$ H$n_ &Il$qN #Gjؓy𤟿// hmmr  }&Z5ZZII𤵥/ J 1  i 1W1**+ mu1*I $R HI 1'' 1 kvi rP @B&!H2Q @R /  [-6 @H$ ԽrxH$I1z~x~ S*Փ17''% DK$r i糽1 aUq H8Qw$T; _ Ug瓽Us1SH !H$Ir-)eФ $L„s(h𤘸  $B2R1/)s𤚚 Ld@( Hp Ф ~.  iiN01_ @1U M l1𤪪 ۺ݊1U  1U @ I$1U X+>Q% TNQ% "d%rrPP &mɐh1  PLIG1 A$$1 6P2i1 $A$Ϥhrg2ظ mv!d0R1 CvR20$$IϤ@@$Ϥ 0!QR vۖR2  ,,R1 PٳݺR R$eZzQ%%%% ڭv* 4d1 $I$ϤR%rR55%% C 1R#I$H`/m$ ] #iU IkDBr, ImmU I2nIU IqU I2NU1$IФ* Iv]֦::Fcfcr I$H rRE_>6 Ad@.*˰ . I Ȑr EжڶR D&$)Q1V]UU $ضm11 Ķcr 6klr ڎmrj%_h$^188 ݲr1 ضڡrR &I$#ʓZ]ZФ>6 ݚn[** ϳ\r I36m;R1訨R}zФ>6 ۖbضmrb3Lx#IФU IU IV  I" U I" U I"m AϤU I IU $IϜ%  !I (**@=fCr$ 0HR1UREZ66 $Et@((*c=crndd ̃ ,R1"zz To1* nKn12 :1 кƮt0_Z 1'DI1 $&A1z 떴6l1U 0r C HR1UU m1%% B+ڥE0򒐘  TCfjr1XX\\ I$Hѵ񛪪 tPGuV1%%%% E;l֮ X#ARX ~40z IX  // 9)H0 N]JbQꀀ  $mr0%/. EJQra 0ӽ/Uuw IԽzUu_IIH$1 $ӽR #@r{`BI0Խ  $Aa$H2r0HI$ӽ1~_ ֶ]$r IڶS1M1* bB&DJ1꯯ I2ۺ1U -n1寯 $H2H11 I2 Ar $R1 C׮Ү21R]77' @dB**  =c1t I R1REb^??77 $Me-rpbRrx Ib0 i I q9R Iҭa򴪪 Mmۀ 򴪪 IB2 򴪪 H$@ '0X\\\ N0 4CJ XMuQ1WUյ iێ-³ I$ Խ^_ ! I2TH$I$R1;=R𤾷./ @R1 Үm7lR2A$AϤI00r1 ڮXӮϤ$@$r1  $CR2  [R1x^ I R1UՕ bVh1-/  MvktTAI1AIR1! 糽1-%/W$ ۔'u'U䓽U`Қ', VB$M ۘ$roU $rOU $UFn䓵U<U $U.tBIQ   I$rpWL6&&& Td EOR/ -i r 6K Q1UUU [vmmQ1UUU LێMR1__ mvLQ1UUu - -Ar [5I11 %Q ۖt]; R1  ki Ϥ +6m RQxts4&& ]m*&kG1 C %W0$...v;ФU糽ФU $Ö$o $W $U @$U ۖ$U &H$U $U$'U/BIQ   muErwP6&&& hv]v.7BdrФ 6`X R1 Т9R1_^U[ I C"0ں $d#1 ҈c,1𤸺s1 M9 q mm2 1ꮪ ۶Kn1 ۶mM1  ݶmMv1 * {H1% `4$ !dAdI1\TTT I&ɚ 11 s{1 lې4r %@гr #43&ppPX )pI $M% YH Q^~x .OQ - $@$1 k)a1 ͺm1 @R -Т nr翸 $IԽr + k6 kkr|( &Hvl'1rZWW lڭ1( # 1𤪪 M;`k֭1W IL1U dBd1UOK1/' muMmrI R1u  IR1Z i-m; R1?T:o'' DH$ .jI1t ؊6躶R1*h瓵& 'ΤɕQ***  1 I$R Rhۓ ö l $A r* -m[ֶ @A$ &\\\\ p S - .Y\TT h1  Kb1 $ Խ^wUU A 1 "!P@9 7p%- mMMr qۤ r MMr 6Ar 6I@Ar N,$Pr 4-ѐړQ~ tBAr_/ M0  8M0Ar  5ò-r melQ2Z!0L R1 2$$R12!$Q2$IB&Ϭ@I3R*"zp1&R} *!1 $ 1$JI1 ېmۭQ1UUU ִ[vr $r ]Ѭ6Q1UUU CvmR1y_ v(6aR1$2DФ'  A${WNM^(((I  UIAUI"i INUI @MUIM MMUI"I IMUI" IMI( _IMIӽU OHU.IU6 GA ()1@yWyR ݐtR1HR1ȀB 2l;R2U}$$L2QRZ__ CfuϤ HTlR1w @%ڴQ1\^ dB&r Ц6r n61 T1 D mq `I۴R1/u 6eR1qWu IR eR1ՕH䋳'k擽Q^ LrV IihrU ImrnU Ii@RU I"I 1UI߂ i0LU yM@ @U I2I HФU I2MU I"ФU  M r*+ ʤh c$ !AdI1TTWW  ۶mQ1UUU )6iSQ I& 1 * 6f1U X&r1 PqDI I$1U dHDH21^ %['2p1  ]۶ l1 R2%E%1 lͶR Id&1?- $ dHRr2u}AHr@ ԽUW $2 L„* m r d3'r_^ YmW r ~Pnr w$Ir Ar I4IQ_IIwI IU-@  $MR  $i !r@ yiQ1V^U] m3HR1 &$ R1 2#11r`$AR)ն * @$ ڵ1U H 1U "M2$D1U `B$1U iC 1U I$I1U 0/1 p @$ 1  1k B?鏳r  aH1 @,#50@@`pt tJ ۸Af糽 $+$r$ c鴳r $' l䳽r6?r ([:0_ )6e;ri%$1+ 6i䳽R UI'U n'W &mR1# M[M QR__ C2!R1  H$!0 CR1/ S+MRx"p"'1`S1𤫫+ m1tbC1  r 6Rlr m[r @ Q1UUWe X׶] r mPZnAr-p'$- $oU$ ((($nU,$NU -$NU$$NU$N U$nU$oU n$$N $U<U$oU.Ӓ$-U ytWR i1-B1 I6#R1U ڶR*  mq PR1U E)R1U #8& ѵ񛪪 mY6`1( m rWu\ H2!1  0B&1  kפv1𤪪U 0H R ! `@r I$@r et`577 >VC$r  U $QMU %$rU $I$Ф 6Ad' Ir i ?Q_ D Ϥ  䳽 ?𤀀 _  $U @$U dz1U  Q /amΤ  A۵Q쮪 I41 [C1 L$ 1 I@ 1 JM𤨾.  I"dC1 @[1?,B1 ٖ(1 6۪1 IA1  kKuRU fmvr hhrU mkwUU ؆eԽ  mvh&r  hVkںr hڳ  l6 mڮX$ &EphdzrX DƳr  $@$r ۳r$ d>r _ v?RU'R $ f;R(HF&Q_Rpx t/ @!ӽ1UU\ $AR1m߫ $I$R1 @$C1 =:1 kI 1 )sFaR!$aR1  faRQUݪd$ R1 Ir,"RHitU #IH1U~>m]#IB'b "l0U"@hU I"3% WIB   I脵QMU ]BJr>Ӷm IU/$IФU*HФU"UI0-ԓN]` eHr H1R8TsGw1& E1 mۮ1 $m۶1 IRr ېtm۶1 Фmtr vm׭r )8QJ TMiӽp5_ k6ڶ ېmr ekur22RJJ IJr̋U)  I2I r-UIiNUI2m NUI"MnUII nU IInU IB$IU s 6qů^ I@۶můU q>&MϜ ` IUɤI i[Cʓr^U ɖ6kr//0:@#nb` 1$ R1( $I21 nMr 0d۶rAIR1U_u B[4S;Q1U_UU V, R1u b5 1x t;1T&R IiR1]Z] ƓMQ1UZW nb1  @B$Aѵ񛪪,2$HRj:R𤩫"v.J  K$i IB6m [Ŷm *-0`  蘆-%  )H  Bs  A1 R(H1 #9#ɳ0x ɐtQ -% IųUUU mu[1 KȊ N4Hr 1*   0RU 1  $rLd&1 $1 CR$e1(* a0$C1 I1"" $$a&1$@$r$A&D11  uE.r1_[ tk6R1py L R1] % &)"R1 vmr mBAR* q" R[ 4c>_ SJ4 U*d"l$A__mrժ5 r1  Ӻnr*+ t,%A Z M ;Ir $8m1`h o / Ivar I.C;,ӽRJ $ CR1 $  ú5R1{`LR'1R7{ - DB1س1TTVW  h2R1_U ak&1 -:1(@k NTPO1*** $P$R1H IB2R2 H$I R1"I@R1>*R@@HH{U]r $@$5Qp ' U $U $Ϥ U $ _R"I$0 * I$Qn*U S @,$qn &$qnU &$RMU n$r-U $MU i.䒵n mQcȆn0ǻ?RWW -3R_Ue *51𤯿/* ]mI1 $I-H1ꪪ a$I1 $IR H1 m۶N6 1 knK lr ڶ^SAr $)@r i-1" kMr1UU mntR1U 9ҵ𓪪 )!RHJdIDH $ 9Ф p d$NU$NU$nU Iڔ$nU #$nU $nU $n U  @$ $U @$n_ "$NU IrN  @Jq +\RАH$v$R1Tv ڮ[`Q1UUUedȄIr :`i7lrI&Ir $Ia1 $I 2R Cm 21Z L6X1 eI1 - @lyfQ3 IR1W IMR1 $IR"r 4"¤LR/5P#1ߟJH  MZݺv1`IH1 H$Ar 09ppP !d $@Jfhr  nQs  $H1H1 TBؔ-Խrz d ǓQW^ @I r $L Խ%55 h$Ks=ٴ,Dk1H@@ k6H$r IH&!ҵ𓪪A$@1" ]mkuR1ZZ!$dr m74ݶ1* V]br C1( r M&Iv1 6 1(iIZ411* "I$)2Q1uU m5R1] MmR1 &ZR1UU^V+؂2Q1 DIU'r# ݴmس  Hسr** Q༓0 dr  H'r@&r*  \:rQ  rQ %  6iq U{?r *$hm䳽riJrz vZv0% H  hsꤳ1HH TkT R B1C1255ѣS&Q`z_ M4mnP_ 0Z rr0U ͖ rQ  H 𤪪 C%irQZPࣱArIJR QUN$N0-/ ImC r  @R^ !BϤ"/R@` E"B"% [0 &iڂIR1U[ @M:Q1] 5ˊQ1]Z_W X>wgO1 30,1rr O1$kWƒ$I$]]$$QU iL1ݫ K1`$I$Mr$IDQ0%ׯ NOȜQ 88 f[0_^39c'*{@ࠠIĉXq* * IҶAr.U IM$rNU ImNU IqNU Im nUI"I$AnUI"I$IoUI"I@nUI  IrNUIIAnU I_888 kܺ1-TCRMj ak rj$xN [Z -41 дQ1{WUU ۦMQ1UUU j I1-b1  mQRկ m'6IR1V e0nQ1UU P'1 ִm1-S38Rzrr &aJrQ Z4A mWivr"*1N@ y" UwHФU @ФU - @ y/I I I"I mRߪ ʲrϤZ v IQϤU ) IQ qkNr0  Ib `JR q$Ye1_PPX dIJ1  ,͛-5RA$H 1 ڶm:R@``pHIR I $R1U &p.0_ P I1 1 @$1 II 1I$A1" mumRժ+ 01 jR1*Id$%''' J {I LL@``` H$ r 6h6155 m;dðm*( dH 1 m2IR KRB2ųrNSCDJR^ iRU~B6m^  $ +AiRׂ i2i$1 = i뵳qU XsJ1ZpXX X%IR1V_UU *3R= M  r d,bbpp I,I-)1 .1 m5h$1U LB C2I&m𤷠 I1] N$ 1w u~ $$)1 3 Ld"I모 t057 `6I0 - iZ!G@@`` HPR *@%r1'/} `"$Hr1^WU M + Q/  RQ* IӽR i tж򴪪 X l򴪪 -D2r_Z tX&rQ j3ٴr *~4 s0  ]lMv /pSh1 H0Ϥ-'|rФ P P ٳ JH, ݀m)bR1U $@dBR𤊪 l -R x 1 D&Q1UUuV۳=b1zZX\H$I$_}WI$I$1oI$I$1𤗷% hm1 x2@"> $I01U vTvZ1:: [I;lr mY7lr BI1( I 1 " TO1.1 Md1 d& @, ӽꪫ 4M2倳1ppPPIH 0R1 DHdH$17''H0 C2 $* $ $ $IH:r LD;R ^d?_@Ф l$$ФR Fl$r ܶIM* - ]ڦ[% (KȄH IdB&ѵ񛪪 B,R(e=7 mm 3!ʦlxXX *,41񤾺z BdI1U ƀ-1_ ڪj1 m&۰a1 t80L1 `&$ 1} if0 1UUU !)$DA1U `ڦ1  I1* բ/:0 `_mr0- 33prRZZ 5TC0 R/ P9h9R1[ry ]f]vr0/? jvR [۵bR* @$@$1  L$ H1 @ I1 1  $1 :Mݴ1 fzr6 mIvq/;cls𤬤 kaے-R2p(Z]؅^><x隳 cro mmӶ1 Rj(r:*,I&h$Q-] O ˃ I EUI>> ) Inr/ cR 6X-R~z [hfQn8<5Q0W^L81M D1𤪪 @v1 ؐ$Iҵ𓪪 D,)1( I1 dM1  C1 jsQM8<u$l11 ,ɒ#1싆iJ$Azz[fk4o6 ۴ ,r?^{ ԈRN n: Z"hfr̃:(, IR$InU ImnUIBANU I@oUI"UIHUIhnUɔh?CQ ڶm!1PDeZ>76 Hۀrꪪ @>TCRM $I1 'F^Ф6 d@r((**H csϤ @M%r ]&$1z [%m1 6iѵ񓪪 Xk+AR1 !H AR1o mѶ.R1 b, 1 Sͳ0~z 6H$Z1 -ڮ1* 41%%%  `r( -nb1@$ $R1  X#:r Iɕdr?  @ ]6dKs  [6  IҤ֬ nۀ r ڵMar $5X 麢1 r.s + - I! * Kt͚  A$R1׽ Mv,R1 H$s !$PXHHR klk1  (tڭr$@ 1* &$$1UUU$v8 k1jm~`/7?7 p<ɗ @n0 x-1/- PN0 *%Bq &m8r} i'r_ 0I`r H:I$q i8qbqz^^  ID&  MմrϤ . -Nkor h˦h1\\TT$d$R1 vl  [nms !$1\\ Mr1UUU ֶ]aR1W ! AR1}Ua 11+ 4LS1: M$1 $H2 1*hWxl..& hmͺ&r 1bIQ 1Wh5Ss2׳'' mqK mFhR 7s1$M۳  D?ss  ;M1 ڳr $k'Lq NDZr<  $Qx Hn$0_mՖij $llB1𤀢_ I prn <5?ФJJ  {1-! @m$ 1ڿ T@q-& #6"-r j hdQRN C0dH1𤺺:: p Ln  @!jjPMtHӽ. l1{uU &M1VUU[Mf1T@n S-,N@@@@!C Rmu1*** C)bn 10Mh`@@ אM5R 4eS1 >C)An #)@@H IRМ `Kc[R ڶm r eR1u.tJdA *"2hhhhVpԶmRФ mTvfR1vB!A "-@@iqɍRФ R(AZR1 ?tBr  .!.rϤ@@@@WP R Q$er>JI  AC2  ڶa$r -ijr H R2tvUU $ ȐQ2z &lv$R (L!r:- IRB MR ndmr +6h%  A%vR1w__ v"Ǥ1 D )  6kL-r V݀ 11  жlrd rL C1 B1dr! (,,r@` d۴ar kuSr NeHr} dH02QZX  I1 n1ʀ aR! êӼ1r  M%-Qyvb1 6x/1  &Z;6r <ФW*? VmGhQ𤡣 R=qR =)Jn   ,Ϥ@@@ QyԆq1𤡩 GaF1 * `'I ethr: *VVT\N1'' [ TI1 lr+%@RmK1 c' 1^ mfu1 I7r_ &Ҿ)0z~ mkTz \>1zzoP1V%,*1 +4AKr~ @bIR1Ϥo fm1ܲ1S/hb` r&(1Y_ $1jn 9$  (P#`` IXR غm1 I 0 "A!1МJ lmФ 03ݒ@@`` $ofK24!Rnn{r DS8Orn`bb Iڴh$2 >"2J @ C#8#rn@` +{hv2WW d!RJ I2mQIiMժIx_$M1/ /ԓ``ppH1 ekL*1J IHrN C#8ēN```p hvˀnR  #!RJJ !A@n #8 sN@@`ˇP1𤶤$ ᚬ!RJJ i@n  B4CN``p$}N2֨S[r1⪧ $ 1"X>"RJjvlo 34/ܓM``p t0 r1WWVV[#L"RФnJJmvhn5-ؓM`` :R^^\^ -/"2JJ mvl "!Ӿ````8H$Q1WTTTi<"RФJJIItII  (ɳr "0=Qhh`b ԲR1wt6!RФJJHtH",B/ؓn``` l̺r R1w HJ"RФJJ`HTӽФ",ٓ`bbp -0R1_v 6͛!Qt dI1 *-91` ж[6R @@HR1?I„ RQ )R1zz..Q-  "B+R``L0$R2 I "R1_?? -n C%ۺ%R`dB&`$1  #1r --/ P#CճQ`` hˊnr CIR1}w vbM4Ir+ q,mr !I C1@@` $H011 $% L!1mؑQ \B;rx` [׶[,1 Nu1 AQ  ,31@` [*1/1𤀂VII1,1#rФ@`p N[`Q* -ֵr`d&Wo J"Jӽ} h ӽФ ’$d.䓽nb` Mi1> i!1 @prФ R7=1p Xr 9k11孥 eyjR!y1j$A$r$A$Q**:#Ԕ6qrXX ؍&rQ ! &IrQ"rjJ mr 1ZZ J -1~z[ 6c17R"$`` @VvR1𤨸I$I$𤯜@I$I$rFfq$rpppP $I$VwI$I$JJHj $I$QΜ) wGr`pzz:J^2u $A!1 u1)"-RJj qm1! S:[pp k-fK1,)RJJJj AC9r1 TJ\rp H$K1𤬬 ))2Jjjj vTI1 B*PpP HKvR .)1̋@ vL$0 U $ݖ$ U $rNU-SD ڴqR<"!roJJjQ[$dRPP`;ƣ;R ,!#B!RNJJjj tP@rϬ [bNА Ȁ R!")1N@@@i൓+e'pPZIRϜ X$Q𤪪۴Q񤪪<B6rnJJPHf@ ehǒ-𰸘ڦiR𤨨2rJJjjvMØB \@p h">RTV^ .n#/RMJjj wpVl}ԵА 0 IR,"11k{@D$-U$@$(`$]LenQ 4IR1"!rJJjtlնM+ -MR()rJJjjh81!#\6Фpp )͐R1~V,.)1𤀀 LFnr)c^1`ppp 趶M-R1W^U ڪR1UU C2R !ݼqu d@IQ Sr+ 0 @Jr  T9U1`p kaKmR1Z )R1ՕpkQ C}R4]1``pp $r  ((r far 4h$r"  6hgdzr  9yD1``p_`& 0r,")1ʪ" $S[ ^7eR1zzxr #)ѵ񓪪 :)1Фhb@ I)ǒr0  PϤP 1-ZbQJJi@A+S)@pPP lhr1W MNL R뿲a$ R8!.rj H$J1 @*@ HڶR1VWWU  ")1Ф@@@ h$Hr1RPErPXP  I4E q\TTW )2 !jVnriX&F1`xxp 2ar ,,!r1 PؓQ P,%`+rQX Mr1 %A` L w-.~1 =:r P.Z,Ƴh$K$QTTI$I$లI$I$rvI$I$rI$I$QOI$I$ϜzI$I$rzIIQ' ` N W I"iIФU I* I* m!`Bcf m:H1"(34Rjbrr 34mrQY]VWdFr $!1B1C3Rjz m:, r n m.J1 +%[vq1eUUU"( RzOT P1// `!`I1 .mQ18a!$r",?Rbr MKrbxM R(RH1 21B34RNbb ars{N &2-C#4RNbI0r" N&3:pIbrĖj-uI@NUI"I INUIMN y 8ir.LZrn8:Oܶqru(\,5+HQb$1  0 _ tCl-8R jak,Q l@R1N I Hr"("!_HI$rϜ1k T1Ϝ /:-/1 dAQ; d@r2,B#Rbr AH0rb !n ִm[ 11 2,/Rbr $0 sbp_n $HI$1 ,Rj sڢaA`IUO"I oUIH$IoU  Eֵ b !Aѵ񛪪 2-C31`В ClR cfФI@R B(NRɲ!TJ `^j1XXXX Km׮r m1( Xn1*K,01^ P h1/ @$1 d@ qq B341Ϥ R*ꓽrLDI$nH$I$1VVWI$I$QnI$IӽФIIrܼI$IBu^^I$ $1:::Ia$rUI$r廊 PI$U $I$Ϥ y$ФU $H$ФUHܖܳФUhro8 &R)1?C(dr  ǰ rQؠ{TLQ.,,, $11++9er Mr̐((0OФ Evi;lQ1UUU $  Q1UUU 01` ϔlQ1Ϝ *  . r [ڶkmr ڶi;r=B(}ro: XE*(( J Ho @$1 3C:RM  ) %Sr N   ?S,%R̃ 0 I#$nW Zs$r U1c9$ $NU$MU$NU@$._|P̔LR̓((('A$ r+S8eR H4-vr(*ʤH !!H1S3=dRnҒ  S0/ !OФ ؚMar"! @Rzj&H1)O@&A15X 1z H&r ]׶Ir-B*}rn: MrL꺺:˴ln !@r=C(eRn20 .k(*Ȩ4b1;9%R- I$U #$U r 8J t1*UN$i۳1(U$[۳1U$ U HФ@&lRzC y𤺹 A  OH1$ÄL0R1B+R*r::: GQ'//24N1XXXX ٚmIm11* aB$rAIBr kvm r!$ rI$H11 I! 1 T3^rߟ `nr"( $ 12;)dr:: 1 Qr**xȆh Iڤ1/?C>%1 0 $U$oU$n U4Ilo$nU'U ۆM+$U ̐Ln !$Iѵ񛪪 ;9dr  HФ  0CR G!=577 D4D 8L˴K1X\\\ h34r %! 1 ** DHqB |ː1( k l1[_ ۶mm:1 $1 ?C R* *-rꪺHI@-I$IrϤdJ_>>43ċc ;MR1W v mR[ .LҦi1] N i$I1 M:,ҵ𓪪 4i:q 8Μq `dl1 h;I ѵ񓪪  HR1gU $H"$C11REh_66 #%PQ  HcQ- -뒮11ꢠR]Z>> Ц]u HxI HoUI. $IoUI"A IUI2WI" @nUI" @oUI oUo- mf[s***htcRM  9#1zz RfhFn>> ARISr../ @RN P ݐl2Y fKQ"* #%R"%1ϜI1 Х[vQ1WUU ,ڶr vk21_ [mʚ1( 0`BR1FUw !HrPE`>6 []s** @=dCr $$21[]s>> NrB'r07\XX#0AxI"I$IoUI @oU IH IoUIoUI'v_((I"IInUI"AoU1%Io- mVm @=fCro $ &12RE_o>> Mmt> h=Vcro Bv1 ** A0R1___ I;I'1531 $I1o ڮm1W ȐIQ_ . $ 1R1J&iR (ֶݚR1 IR1~V~76 b( r((** ` @𤤤 H2$IR1؉؉~r><>6 VIڒQ:*m@IRz/I A1Um 1 ϒmR  M1_/u$I1U I>mRU q-H$`1q@JQ? d&I(***;C Cr -.Ү11ꈊRE_>6 ڶe,&`=fcro $&1 EY1 IM2rX$I4r 6mQ1~UUUhI61U ۊ[n1* mvK R1U ꈔJ1𤌮 $$ IQ I$I$ѵ񛪪 ZEZ?7'' 1m[6aJ4C$v [$1𤪢U T}$r.*/76$Q w $x @$rU y+$Ϥ  Қ$U* I$U Iժ I"hФ_ ImMU 1 LC#ɒcϘoRn d'c1TVVV{po&&&& knڵ/-aIRФ I4Mb &IBRʈ I r AAHr c3 Sr kѵ񓪪 IAѵ񓪪 !E@Iѵ񓪪L ra$I r9?RФr{HsN..&. AGm2s**1 Di1ʩ$̃*. Ҕ$U ۖ$U$U$oU$UX $r신_4$ "$NU䓽n UH$N U$nU)BH1̋  -8-1z p\tn6&&&  !ro 1!R 3r*.. KMA1 `OJR1uuU ZX1I1М  ۦM r ]mM r &mNBr k4ghA1(*(  ؆a`r ҶY[r8%O6&. mf]:ts**.tBIR !C$1r $... mК$  4&$  $U$oU@$U $NU  ,$ ((*$n U$n U $nU$NU7jIQ͋   $I2$CrWln&&& mu6,s*7tBfARФ 3dy1((  k4+a1* mI1** [S1 )dH1 dLM 1 mҶmR M6  ֫ Q1__% Dd(R1 ?rR1յUw[SϤ&&& ];`!%amR *XR1j^Ww$Q-( ,  $r U 䔼*A۳'1UAܓ1$I?1Wf?䓽Ulf?_0'Ϥ*U'U&vBi1    "v11ꊪWLn&&& I$Ar7BIR l>>c1舂 dd  2S-Ir ٺeM rI$LBra&IBr1u HDR  A M&AR1U nm;'HR1u u};6 R1עX&'' Yֵ %AhR ͳS1 [˻$M.. -Tr U #7$r U @ rU#@R' U҈u[$ ؖ$U ۖ$U Җ$U ml$U iu$nUMm$nU7jMr *+) $H2$"ӽ\;C ڭ`k. Ф^O.$ФU/$IU#I$ФUO"iIФUyHIU I.H AϤUO.U"IUHU2ك?M_ms;1 #L*HAkRn ! 11 $ 2UWW I1 d:"IJ1ꪫ Фk۶1* ۰h۶Q** 6mr5C1iJ1 \CN1 $3RW)P dR % ۱I11  RK|(@R˥\ERߟ?  @N l۶rﯪ Mm M I' U I@rMU I nU Ixr]IK! II$oUIAoUI" IoU I U #I UO. u$I @-&)1@tLvl1 BBB81,K Rί , -Ar,xuY1 D$R1 ]۶Q1yUUU Ðvڭr 6m6R1U__-W6eS1 */ imQ1YUUU dvhQ1UU "ҮR1U @6iR1U_ ڴ]ۮQ1QUUU n꺵gR1 C A۵@ lrA(^ IU, ((I"۶mU #ФU Ih_ I U IBU QBl&mӽS I"I IФU Ii0@ФU I"IU II Mr 4 I1 F-*Jdmj0R# JipR𤢩 4m%QU Ib'd,81 mvn1𤫫 T 斐ruuu Ц]nR_&aR1UW ÖvkbR1߷ ۶ir1UUU ж˶r ɘmRR`&L$r $ Q1UUU Ȑ@Q1QUUU zmR1TC vh𴪪t"I I^IH nU I&P5 U IbP.I"A$ oUIoUI 0ioU I U-ФU#I ФUϭI IUOMФU M4I1- a.!1@ Lf1 IڤIJΛklV *o 1 // ID1 6Ŷ ҵ𓪪751 `m[1 @tb1 I1 6i1 $I1 жC3t1 Ԥ[1  21 mӽ6b$̃  U?UUHU$U䳽U U瓽 _䓵ϤWܓU$U$U/“'nU Mۖ$U  Ӓ$JUU)MR" YL1𤯿* 6ii 1 mۮI Q m۶i1 mI1{ 4I$ Iӽ mumQ1UUU[" Q'K1fR𤫯 M]׉3lR1U c3Y!RߪyLD2, nD1 mfQ1UUW vzr1Օu ɘ$r- U-$nU$n U h$NU A+$Q U Ø$-UK"$r-U !$NU$NU۔$nU $nU UФ(UҔФU䓽U,;ФjUWG R𤡡 +nr=˳ 51. $$r1  &nn1  kvi;r --mnr ",#11 POD R￯ ڡm 21 ڮk3`R1U $mt(R1_U ILr u] Q1UUu mnmr1Օ.dB)$ 6M:oy`$N U $˃ m$nU d$U $U $U $nU 4AW$R @$U $U $U ږ$U #$nU @$MbU V2Gq qr U &iRq"^U_ f"1 HU_ T1 sw+t1 $JEYR1_u @!Q1ZUUu -m r kak:lr :,ҵ𓪪 J$Q ]vM 21_ -6IQ1UUջ lm3R1___ aGvIR:;>C$- U$NU$MU$nU P0$̋ P n$ U $nU$ U&I$o UI$ƏU$U䓽?U$U $U  $njU A^lv1М Iq 1UU I 2uUU4lt1﮺ )Qbr ڶM]#4R_ O<1Ф  I$1$1 @$1~ H1 6e I1 :4M `1lt2UUU[Ʊ-H1 bhQ 1 ɐL1} Mۭmm1  B"k'MQ# hڮ ѵ񛪪 !"!RJJJJ dLHh1 #<`HI$-**U Q$rNU $ -$rnU ,$nU mm$rn U ;$r-Ur4$0 U I?$* *  ؖ$o*U $rNU #' $r.U6v䳽ndK6q z+ldzn(R𤨨$I@1  ") @Q1UUU mvMaQ1UUU ms H1 IR1 kǎ R1 Ķ#R1뿪 ]vHR1Z vBۢIR1U $-aR1UU_ mvm: 1:  DB1R/_ Iצ1UU HR#)2*1Ф@@@tmQ0` J$U$U ic$ U $&$Q-*U &$$r U ݘ$r U $1-U $qN U $N U $NU۔$NUAn*$iR哽r+dR$EoА HسR1VW  Q1UUE =Ք#1 غi 1 u&A1 =m+ 1__ Mt1UUU mMR ҭ]:lR &I2: $IR$C1 I$1o FI21 $i&1𤮭3 KdIl $!!1J@@ tLDH0 *  0x ڔ$U L$U $r  U H'rU H>ФW 'rU ۖ$rNU $ ڔ$rnU$ U$U$x $$C𴪪 B&p =iR hZQ mщ R1U iq,r #)1p1 0 )1/)m1 $Iݖ ۶a1 Ylq "E)Q1w]Uz mnm4r \ R+R1wuu[ E빑1 $)2!2nJJJ flDI 8` #$U $U ؆$oU $U $Um+$U Hm$nU @m$rNU $$r.U $rNU m$rnU o PPu b P Y6[;4ro J'J'̋`ࠠI$I$rnUI$I$rnU$I$r-UII$rMU ImpHU IqHU I~"!Z-( ( I"@ϤU IU I"I lU I@U I4G1n  !1( 21C381Ф@` &iJ Ɠr ` z$nИa2dB^ &l[j Dm1 eIm1** &)R1uWw L% 1 tb;01x1.Ь5;1ࢠ ,`O1 )2-1 21C34Rr !,IHJ㣦|{XnT1 2,B/Q̋`I2mIoUI"I nU IIIrNUI HnUInUI"I UI"oUI"A IUI.A UOHϤU IU5%ZrM888 41 "?1``Ғ Z^"!j 0pB1XZTQm1𤠢 Ӷ K1 68M1 @1 4E1 4Dѵ񛪪 vmr Аq $;,Q1 $m12438RbrRR L$LrWvvcFrM88 x1**+"-S/1@I"&qn] IBMnU IBrNU IBnMrNU Im0U ImU I2HM_ IX$In IҶmrnW I$r._ IbHr-UIKXq{8(   1rP 1*ӽ{_ ;jcS brؘ ,,2UU "X6a1% $$I1 6H1 * $$$I1 .r %"!0 &i1 ͎N1 `CR1U iR1UZZ<,>RRR m׵[rc!n [֮m r2-S3Q̋@I"IAnUI"I$ nUI"$ioU IՀm_ IB/˃I$V  UI?qQNU Ir4jQN I_(QUI"uQUI2VqUId1888 q& 1 ",C#4Rjz V]%r bzn𐘘 6v1 6i1*Z(\1ꊊ $$"0UU .LQ﫯 tm1 6m0UU Ò4m61 t۰__ $I0UU &m6UU >0B#8RrR $A$PX #I (1 x'{&M0I$I$rQ(I$I$r-zI$I$r-UI$I$r-U Fv$rNU'I$NU $n((*u H$Ϥ U $ФU S1 % X1nӽ r!h𤘸 m&1 ?[100 $+K70_IQM<&ISD1 {6 2  H1 Iti r1UuU tK& 6L$1(Hj?1 lb.1š1* ۶mmbQ $ qq #B,rN 4 )r Jʰ i7$n1#S:RN2 50kSۓ* H=nx $rNU$oU$$U$U'Uږ$U$UA瓽m$rUss<ФܜVۦM1*ʅ -ULQN0  t$r0Uxp rn<< `v$XPZqLRМ SHѵ񛪪 k&؂RmR%RZZ4$1(w &X1 > mM R1U ֶbr NN2&$1^#v$r- miq  P0 1MS8Rn bٓ 'z $$rNU $$nU $$oU ܘ$U $U ۖ$oU $U H-  Z:mQ* TLprN4 4i1B6 ؆emtr./// @cRn ` DJ1 Bh>>6 m`=frn 0Ar dmr$$$r i9r @,)P1  (nin1U5~۶iQuNƚv..I$1UW Ijӽ. Y$I1[`Q Km 0*>.Kt 1-88WwVVGrdV :**7 hUr/HU O$6( _$$I IArUI rnUI rnUI$I$1̃ $I$ @ r 6Ir/ @=dcr B¢H1SehGrn<  TkȽrU `rn I0UU [-1 ж[v1 $I1 2DB&ZZUU v[:UU $$ 01 Ph?>6 dKvl r `rn DJ1 S(fh>6 aI'' crN{)1𤯫 d2ftV>>. IIU=nHUO2A U#i U (#II_ IHUIBR0MU* *@=c1  -6mrR(`n>  "r ` R- ֒c?__ bFjrN>> ؤmX;r1 H1- ɶxb1* 銮1/ $(l1 iQ1 ivUU DDC1 tn1 X*hFr:>6 r&Zr ɑX k61 RhМ6 $Ia[ `CR ]5ݲqq Z"hg:** IBnmU I@nUIBmU I&mNU IBinU IҖ Mr.U IқrNU*@vc1  I$I$1S&FjGr>6 ( EG<+;`=cR  I2$rp'Hro6&&I$I$rQI$I$1-I$I$1oI$I$UUI$I$I$I I41 " $1 C2 1 TPϤ''' @6t늡rRz)j!V.) q[hAr ȀФ7'' M.r}UJhQ HIQ pp6&&& d$r* $^ ۖ$U m$r.U $$rNU (`r {rV\1bnRM Ölm&1 TN&&&& $II!s )BmR ɐn1ﯯXJPN.&& )ur_7bIR nmr A$D2ѵ񛪪 ˊar (֬kr )Ţ% 1* $  AQ1UUW] $ $rTxSФ77''9r$/dAtARФ  2 I"rr*x$1< #WRr錄?--p IR ͳ<ȃ<a? 7'' $I &I' ^ 3$UI$ $rm Ȅ!$rUqvr I8IarUNq;I,I$@QUOX4PM''..M=1r**j/bhRn +6`r1Wl,$ [@ 0Q` )jmRN $Aqq bK1* m;- 1 $d1** 9m 2u' 4ۢ$@1 lm1XJp&&& `sjr**.AHr$[1X&&& Kbr+&tJvRФ :larWH''  [*>zh>I䓽  U 䓵oU IJ r067tjiR $" 011芨ȇt6&& !2rG j@1n d-A1__ |KtQN4$N10 11M Vi@1 ɚR NR 1ݠ @%il1 [mi 1* d&I$1 $I$1 pxTrn.& "ɒ.sQhࠠɑD1-&,a1J**Xʀn.& v{@5 r*/ b@RO1W({[xN.& ]Xr $o^ $n U Җ$nU  $nU  2!WF.Q)BIRn $C$C1ꪪ Ln&&&& d)-s*/JIrNqR1/;c3rI$I$r@@I$I$1-I$I$1՝I$I$R{ I$I$rM IϑU * I"Zᓽ HtLrN mm2ߟ ȶh h *.)1@@ q1) vHEQ1Օ ȶl C𤇇  1@@ lflR iVR?  @ ,!1@@ HtHr d;$AR1Uu $$I1 IbDR   b"=R1r``` ! $Ed@FRߟ N !r@@ MdH1N ɐ IR묓 a>"r@tH1 ܤiQ**/+ȏC*DBn /@ UФU#(UHtI1o ieR1ݿCJ #61@mVl1I IR1՟Lِ11i%ɳ1VlVl1Jp1\XK  飢!Q@@mvl1H1p}N1Ф ER*N:@C  8!1@xqdLr9L0 R?:`c.( @mflrM d٣5rr !1HYAi1. .fdIV1::: H Lr̃ IҶinU I nUIL꒵NUHdH $)%2 LLp $<1jO'1mI$1] I(@@@ !'1  A[I[1" 6 )b "!ڢ1`B` };R vXg{2/ 1B  (@@ IIRФ k r1-[$AQj " v2* An  ") n@@@@ S,M1 dU~8 2W >)Asn   "(@@ I6mR XR cJrn  2 (@@ tHԤI1Мvv1 AI  (6i3rI䳽1W 2~VlQ𤡡 q@FfhR1U-p!Ф .)Ф@@ gL6mQ! MB5R1 O rn--).!)1B@@ ՟˕Q𤡣ph1XXXAAn ," @@@ ב91L$I21NTMQW1&..iImR1U/vJI   Ф@`gpIqR𤡡 mlR16dB )")@@iHrQ𤱱 b@%QR 6B!Hn !",@@ gqC)qRФ d$ERH q- i-.1 4$W ")Bc4ӽN`bwpFN2 mR/41*j ?yϤ H$I$r@@@A&fϤ k i𤚚M$MfQϤ  d"<#1QϤ IƑ1М qM@1𤭯 CTI   $-@ H1𤣣 12? ؉f1  TmGQ*/.tB!dAn B0"( ```ipQ!# ndGvPR1.dJ!Ao 2-@``ePqrФ* mmR?? lɛ{Q- )n5n@@toGRPwR k)r  [ Ѵ0 $#$nW  %$r  tIմm1"|Ru՜R? >C)sM   "0n@@ ER$39RМQYy{$I$1Ϝ/I$I$r- I$I$rN@@ CH1 #01H$I$r- I$I$rN@@fj1 R/ m&m2l1 CMmR~ k1BQn "4#=Q-@@ IdJR".OR>>6B!Ao ."(o@@wpmRФ*1HH H  24#ܓo```p J1( -/RjJ !i!5ݳbrr i؆mQ LQ1gWU PB& $Q a!1ФJJ IϤ 1@n@``` VA1 $)2Мjj !IL "5/ܒ@@`` #ˈQ 0*.1 HH AϜ #93ܓ``pp 6k-Q8"RФJJ Inh I4mn 1 #43N@`` +1b3QJJ Mln 8s-@@ 22R 4!1J !I  353ܳjbrp  )1 ,!1KbjtI -ճ`$11몊 ؖY۵rH $21 cKΣ"1𤈈p`BФ```` Mn-Q1^VVV-1p n -```` kmHmr R."rJHwp "0Cݓn```p t;{ 1ח &ڂѳМ{` q! M))  C#= N`b sjmWUF>"RjJ mh L"QФHHdH4AR+P$Eppp " "-'Q  ">Rjjf@4H+ePep`p h]ץr``2nhhHQ!!ԫЩ]1pppp$HȄQ1VWWU.ɒ")1Ф@  ƓϤ8(8^ <W瓽U;hGo* htkv1U_U.!ӽjotITiQ+|А 4iR1V<*)Qo@@@@d 4AB,[(FpP  dR !!RnjJj flTH " ``rnPPI$$J2ФWW IA^1:_ؠm1:1jjsi b+rjh`` I?I1UU ɟ$$IrUUI(QﯠIbSzPjj`j6i𤯪/ )1 !FmR bP&rϜp i@ 1 ,"!1샀@ TH$N"U #$nU ۔$NU -P̋࠰ -Δ@Rᚲ)rJJjjAkEK1 @@ '-$RϜ <2 jjj ɛnΤ/// P$Z$0nsWv;)1.JJ@@sTm Nh ؘ 4تi1䨪 i;4)R1 k$i 1**#"!1.@H@ `HDl1 «[(F lR'#=1xI$I$@@@I$I$rI$I$rnpP O H1v&Ib32)1NJJ@@IVrФ IB`BrNpИIB2 $1VVWW !2 ̃@ v$nU ۖ$nU @ۖ$nU [ kDr b 1,$C2rNJjjVLFh P PnА  )RVVVW "0C34Rnjb hI ss6g{XN E  1-3rnj=sēr󐘸 ci@ s IBMU Im oU Im oU I$I $$Ȅr ` H䒵n ` 21C#8Rj D r kz [׶֦ro "4R#51nbrr `Mvr1 ' j xN vѸ1* 1ʻ m۵1 $)1 6M1* v1* 0 Hro T35R#41-bprr$R-UU JDNr- m𤪪- "0B351b Fr1 bz lX۴1 (B342Ϝ ڮٺw "I1jAAФU/M$IUOI IU)4  bK$rX ^k7w 4I41 &c2CRߛ ! cH%[1PXXX $ Cr`X%RФZZښHtHQ Q1pppX rH $R1e__ۯ1𤰠 +횴1" 2@;$ir [Q'mQ1=uUU Vlmڮ_7/"-,ӽ_[ ɶvm:lr+Z % ڶֵr"-?Rbb MfXtbFpn I  1/ "031` )$Hr  `I$ q-U Irwr-uɟM@UI  uҦ r [8Mz` m`mМ 6 (,r5$ >XՒ0^^X }G0 L$IRHr_?Y&KrQ󳪠 b r _Q Pɚ1  Cm1Ϫ m%2 ؉2 PwI'12Q+ $ryn2 21B34Rbzr $ sDGN-@Ҹ$1Ϝ :>1bbNnewr05 rL\rn imro 21C34RNj IHDJr X"B&ϜX I’ ArNU IҶir.U IҖ0i.U I^N n* Mضmr j$G;2!RjJI$H$1jrrI$I$r /I$ $rn Cx1 20C35Rnjbr UɵrQ {GLN 1j  q_Z 1˺ $;$I1* 8"I1 $IQ1: @$$R}W R [-,1^__ "011brrR J4 r㡣 brn -nm1 3B,RN $)p,rHo<  1 "?B*%1 0 I*$nU&A/$-L'U $nU ܖ$nU @$rNU H$rNUHtIJf𤍯* ?S1n IMǓrZ H hr HdK:𤪪%[&-AlɖQ0WW LTOLRN<<&, XN$׮ 0>1_ $1М il1񜪪 [ek1 Ikov;A2 S, @1 #$@ 1MҒ0I rWWI0-64$$ ) 𤭭 S&r۾č mR0 LTNL1M,,$& `ڤI&𤪪 S%1 0 In$nU Im$nU #B$nU $rU q Mr $r1] tK Q It+v1 nleE6E% Mn   H"$IrX"%S2%r?Mtlr!# s1s4sX r дmar -$R2ѵ񓪪 TA1 &c1IPQ1UUU 0IAIOL$IB1B>CRФ:: `c'QW njr<< жig1+-7eR Xvkfꨪ HHn ei1 A$1"" I$U'n_ 6g7$n U)KԖ1U$ֳR" r* ڊ어`pZ IҤX%ӽМ/ #D(ƓМ/  SRh)QX MV۠IrzrRP i۶mro Cْ-%' [#iAr T$Nr J@I   @ $ 2UUU  1߯  mڵ1U 5+𤪊 M41 #C ro:#9آ)rhJ@N ,1 m"$U2Q-Ғ 11r0* MML2 <4$$ $@S #C%1 00 m$r.U S:e$-U $r-U $m$rNU #$NU k$NU $nUK̔Lr((,'T *R𤊪&I'R,ښqU@I8Q//̧lrn< L 3B Rn IhR! rU J 1mӉMB1ﭨ -S#R $II1 $idIѵ񓪪 II1 $)Ҏ I1" l`1_ #%R1-0 IQ6嘓r K Hrn m۰mro Xfhfr6 dfr?Uc>vCRN  -9$$1 IQ c71 n0I1`:H1 N,I$Q1)Ю1 Xk۲f1 d];a1c"1-Ajj ZkFrn>> SqhR.*(( hbQ eK: kBhrM>Q0Wժ*L5$Hrn~I'&r-UI'@"'r-U I$I$r-U I XMU I{@JrNU IqmnU I inU GNIn- m۶ rQP lCRm I-1 PEhr>.66 [g۰ rި.. vc1N Iko61 f21 ۖ _ &$-_ JAr )Ir1UUUg Ih@1*( I1 Ib$I1( 1I 1 > L2 ѵ񓪪 cy1% - Ŗu+ h>fc1TVVV ]1tMrS2%@"$r//+ pHr l3N´mr* I&1#MI1W i&a_ = Mr *~ LU 9>bmӽE/H$iU yشMr- X rQ/ k5B1m  I 1RE_>> km]r**(*،vcRo jRW1 tql2 eQmTf1𤺺:R?8C.1𤠠 ds 1몧 ;̉$1 I1*  I1 h1U  ڴm2ݪI-J1 #YZ H Q*  DcjrXX I$I"1 [  HI RIHxIBi_IR0rQNUIҺ0JQnUI֒0IQ.U I$IrNU Ib NU IHnU I$o-+B+Nrʪ bR/B#1pnh_M>>< ycMr* ؀cRM dH&rn AJ!1 A 1 @6X%1z a&1 `1 dq1 2x1񤪢U ")1 (mۺ Q1G_UU2.,a1@q'I1n:<I$I$0Ϥ @9QnbŭK1 R&FhG>>6 0A2 j"l Ax IBnU4JM_ I2n LnU IBhr.U IB r.U Ib INU IB .U IhrrNL$0r1 hCRN 68I1 |Tr-.&& Mmrw1Bd R+ 6v 1  nک=L1  mDZ1*( 6C1 NHѵ񓪪 m")H1 ɖ6i2lr[<֛(A1  MҤXlr==L1 d q1un z\Hp&&& IB2 )b@R ,2lrn z\$r&. $$rФ U $$ФU  @b$ϤW |s$ aI$rUII$UA~$rU &H$rnU$U $Am$rnU H$ U )bn Xumdꪪ \6&&& @r )jrϯ hvL 1飯 &Mt, 1꿪* i4I1 v6]x𤪩 xoЦIԽ1 UI$I1@U$ ӽ1UU ֮ ӽU mۦYaӽ1U &M2tH1_UI$$1UU H([1%) kӚ 1bm1TTTT $r@$B<vLr# @f;r M[;r`'1zI'*U &A'r_ rU $I$rϤU $I$rU Mے*I糽* W/tiRФ iS4Cu_xA8L& [W]6r*#<1Ϝrz``@I2 I& $1$$r k1+ !@r 0Ir 8(ѵ񓪪 ؤ( ҵ𓪪!1@@ egQ Ðnm׵r XmMڭ2 mfr*@  I$$@k" ^ ImAU Im LU I2 0AUIm6LU yh$IՀ IФu y"p 4IQW ;MHq ImCR A򴪪 kmڶ[ 6m;,ѳr fMfLR  ro @ZvlS1 @d$1U öe۶a1U A&I$1 0I$2UUU $$I1 Öm1 ִm.1 n1 ېdm۶1 v 6mR dH A1dEr𤿿HLln iu۶ ӽ Mn^ I@.U IB$hr UIiQ U IRm1 UIb Ar-U IҒ r-U IBMNU IB{ RnU I2ioU IU I U !@ji 4.!Q pdHQФ!! 6lm&r `˶mQ1v}UU @c'Q1UU ж$Q1ZUu PƱQ1P_UU D$IQ1WU H*$R1 ې[ҵQ1 mMڵR1 uI$r1 ¶vR1 [R dkn1* ɖ`iUU ۴ [eR C$ D@$nU$U*B<. @$(U<Uڕ$ӽ-( @䳽U$@$U$U$oU$Җ$U Ӕ$UI$A$R )e$ U (\$r- wmT7L2М 41w $C&$ 1U I$$ 1U Ad$1U s pp 1iIPMahRz ՖuQ[HR dȄ R mӶm RO2߯ Nb7I 2 }۷-@1 ewI1?: v$ U @$ Aۖ$U $Ф U 䓵ФUq :.6Iܖ䳽ФU<*U0ӖФU$ФUHߓ U$A瓵1U$H;1U $Aԓ1 4]$r "2ۦ1,8 YvQ Öu[u1 #934rϤzzb1C1   ڴkm1 0Hr mu]r h;n11  $rI R1UUUI0D1UՃp"  Ф GiQiPӽ1U $aB1dI1Օ i0l1VVTV.fBФ I䳽WH'U`)l䳽*U$@$U 'nHc$U6n$ФU $U  ڔߓU $Hܓ $IR @C$er m].Գr w IĘ`r <-bדRzf!B2멥Ӷ$H1 vH1 3@1N"m 1* d>R Im1 m۵q 1 uu+1 I1* m[l1 $E R $I -R M$Im1񤺪 mҡ#H1 aFv$Aӽ𤟟/ vC9$. U ۖ$.U s$.U $$.U $r.U `d$r.U $Hm$r.U m$r.U ,$NU $$.U @ϝ$rNU l$rNU %$rNU m$U $U  [$- Ai;H1Ф#) m۶m m1* ۶mm R1UUZ I$IR1UUU iM`Q1UUU I$Il1 NAR1U 6lIR1 MIR_ [ŭ @QU $MNHR* ߪ 1IҌ-Q( mI R[ m -R "IHR m&R A I$1 H$I 1nM$1 $$1 I$1 I0$1`|B1~ ni$1 $H$1ꪪ mm$1 A6$10_ I$1 If;1 61j]@1 I$$1 ۆam$11 i I$1A$r$I$rH$$r@I$rI$A$r $H$rAA rMh% 1М֪( I$A$1 I$I1 qq I$I$qq &,!М@@I$Rn+ I@rU _ru I1U I$1U I$1U mۦ1U m۬r1U qB$r1U qU kqۆIU I2nU M%UI$'YФUI$$9`rU I$rU I$rU I$$U I$U I&rU IߒU* IrU IBrU a͍U w'HU I$ФU I$IФU I$( rФU I$(ФU I$-ФU I$&@ФUI$L'1N_ qq I$A$qq @qq A$I$1 @$1 I$H1 I$H1 I I$1 I $1 I$I$1ꪪI$$rH$H$rI$I$rI$$r öak&1$1 I$I$rAIrI$IrI$@$r I$rI I$rII$rI H$r $H$rA$I rH$$rI I rIA rHrI$I$r I)6R1Օ I$Irկ i $R mS9C5Qzb`tJ1  I$IrU H$H$1WIDI1տ* IMrU" ImRU I$Z RU I]+1W I$ m1U I$m'aU I$mm1U I$A1U* I$m1U I- 1U I$M1U I 1U M6X 1U Imm1UIb{1Uc$;aU {2'`%_!vФIm+HUyk;LUI&j U(I$AUyd7l1U*;aU e| rW^x@Hr $IrII$rA$IrH$I$r$HrH$I$rH$Ar $H$r m6hZr $IR𤯪 H$I$1 I$I1 I$$1 @$H$1 H$A1ꪻ I$$q I$H$qq mQm1ꪮ $I$1 AH$1 IH1 H$I1 II$1ꪪ $I1 AA$1 I$I$1꺮I$Ir$I$r @$r m&m1ޮ m6i1񤫮** 2&H1թ  iiѴrU I$h4rU I$MR_ I&mRU iҳrU I$`LӳR_ I$гRU I$41Wo, _ck9hU N$ W I$$ rUI$AroUI$u; rnUI$+ArnU I$e rnU I$& rnU I$l HrnU I$5) rnU I$d IrnUI$ RrNUI$o rNUI$w HrNUI$rNUI$rNUI$$ rnUI$% rNUI$u rNUI$ rnUI$d rNUI$I$QW_ I$H$1 I$I$1 I$H 1 H$1ꪪ -[ 1~ $!1 IAq II$1ꪪ HI 1ꪺ I$A$1 AI 1 H$$1ꪪ I$H$1 I$ 1 I$I$1 II1 I$H1 I$I$1 $I$1 I$$1 hH R I1u I$H$qq I$I$rn A$I$qq H$I$qq @qq I$I$qq I$I qq $H$qq  rn &<)@I$I 1N I$, rUI$$rUI$$ rUI$$ rUI$e rUI$$ UI$, UI$$ rUI$, HrUI$t#@roUI$m roUI$ HrnUI$~,rnUI$uHrNUI$ rNUI$rNUI$y rNUI$@rNUI$ rNUI$n-rNUI$vrNUI$v ArnUI$u-@rnUI$-rnUI$ rnUI$-rnUI$irnUI$ rNUI$I2 rNUI$e rnUI$I$W^ $I$qq I$I$qq IA$qq IA qq I$I$rn I H$qq I 1 II$qq qq H$A$qq I$H$qq H$I$qq I$I$qq I6mS4qq II I rn I$I$qq MmѶ1 I H$1 II$1 MM$1 A$I$1 iI$1 II$1 I4m$1 AI$1 mi$1 I$I$1 I$H$1 $H$qq I$I$qq ( @@ ---- IAr r  r A@ 򬪪 򴪪 MS4-򬪪 @򬪪 m6I򬪪 @ 򴪪 H 򬪪  A H@  A  $    @ A$ﺪ I $򴪪  򴪪 $$򴪪 @ I򴪪 H򴪪 II r I r I$ H A I꺫 I$$bfsr\\\\ I$I$qq II$rn I$Iqq II$qq  I$1 I$H$1 I$I 1 I$A$1 A$I$1 I I$qq I I$qq H$ 1 H$I$1 $I$1ꪺ $ $1껪 111I$H$rI$I$r $I$r H$r I$rI$HrHIrI H rH$I$ѵ񛪪I$I$rI$I$rI I$rI@rI IrA$I$r IӢmӶ1 m***H$@$Խ[UU P99Q``px MMr $ 1rH$r\\ I$I&rWW]'!I r* $ U$ IU $I M; 6i i `qM ۖ$I I"i $v"l $M $I &M ߪ dI&H Ú$mv X'd0rXV Ai@$I$s  $I$s* $s $Is*I$A s  A$ ~5FrHA rI$I$rI rA$ $rHA$rI$I$rI$I rI$Ir A”$1 I I$1 @$I$1 A$I 1ꮪ I$H$1 A$I$1 II$1 I$A 1 I$I1 I$I$1 mڦmZ1 A $1 AI$1 I$I$1 I$I$1 I$I$1 Emۤ1 IR4I$1 I I$1 I$I$1 @I$1 $ $1뫪 ڠA$r ]5+24r1 aسr/ + KX- H Is* $I sI$ $s A s "A$Is"* $ $sH$I$s $Is  I$@$s  I$ c2۶ar ;mr몪 I$- I$I  m۶ 6lI$r $I$ I$I$ H$@ ӽ  $I$ӽ񬪪 Hӽ񬪪 I$I$ӽ񬪪 I$A$ӽ񬪪 I$I$ӽ񬪪 A$A$ӽ I$Aӽ I$I$ӽ I$I$ӽ mS E6r L̄L1nؘ I$H 1 @$ $1 A$I$1ꪮ I I 1 m6m1 i[-P1 I$@$1 I$ $1 $$1ﮪ $ 1 H$I 1 I$I$1 H $1 $I1꫻ I$I1 $A$1 I$ 1 $I$1 H$I 1 I$H$1 dB$C21 bl1 H$I$qq II$qq I$I$qq I qq I$rn I$A$qq I$Hqq I qq I$ $qq ")"(@@ 9rФ i IH I A I  I H I$ IH I I I$ $ꮫ  @ӽ ӽ񬪪 A$I$ӽ񬪪 ӽ񬪪 I$I$ӽ񬪪 ӽ񬪪 A$I$ӽ񬪪 II$ӽ񬪪 ӽ񬪪 ӽ񬪪 I$I$ӽ񬪪 I$I$ӽ񬪪 I I$ӽ񬪪 @ӽ񬪪 I$I$ӽ񬪪 I$I$ӽ񬪪 I$I$ӽ񬪪 ӽ񬪪 I$I$ӽ񬪪   r MܤN1nؘ qq A$H$qq qq H$A$qq I I$qq $I$qq I$ $qq I$I$qq I$I$qq I Iqq $A qq $I$qq I$I$qq I$I qq Ilt;R nvR I$I R I$Iqq A$I$qq H$ $qq H$I$qq I$I$qq I$H$qq I I$qq II$qq I$ qq A$I$qq A I$qq I$I$qq I$H$qq I$I R "0#5``p II A@ @򬪪 A r r @򴪪 I$ $򬪪 @$I$򬪪 I$ $򬪪 I򴪪 @ r @$ I$ H$ I A򴪪 $H򴪪 H@򴪪 H$  򴪪 @򴪪 HI򴪪 @ 򴪪 I @ 򴪪 $@$򴪪 I 򴪪 Ar  $rꫪ @ rꮫ H$ $ ꪺ A4@S4rjjz LQФ I$I$qq I$I qq H$ $qq A$I$qq A I$qq II$R qq II$qq I$H$qq I$I$qq I$@$qq Iqq I$I$qq II$R A$H$qq 11I$I$rI$I rII$ѵ񛪪A$$rA $rA$H$rHA$r  H$rA$I$rI$H$rA@r@$ $rA A rH$I$r$@$r H&i&1555 AP4$s"  I$H$1 ['r2'Qpx 1гr $I$1b&b"&rXXXXHtI a6`۳s* I$I$s**HAs*A @s*I$I$I$As($H$sI I$sI$Is*H I sI$I$H$ s*II s* I$s  s*I$ s I$I s*I$Is"A$H$sH$ $sI$ $s  $I$s**II$s* A4H$hE_rؘI$@$rI$Ir $$rI$A$r A rAI$r I$I$q k۴ t1 I$I$1 I$H$1 I$I1 AA 1  1 4Mm1} I$I 1 I$IR -6IҶ1W @$IR @$I$R I$Irn ؖvm-1_ E$IҶ1 E$IҶ1w ֦m1 Cֶm1z $I1 m$I1 $$IB1 $$1 `q1 $IB1 :6d#r57 r ǵmr$`vBr `;9r?r `~Nr '?rr <mr ^ I$rФ I%U  r1U  Hu71 h4I$RU $iɦ1  Hk:1U жm$W m,^ ?$r(U ie$rФU (m&h'1* &!R i۶mѴӽ񬪪 -1pppp HN qq I$qq I$A$qq H$JN<$$$ iA6sr I$I$ӽ򬪪 I$Iӽ񬪪 ӽ񬪪 m۶mӢӽ񬪪 I$I$ӽ򬪪 m۴Mӽ񬪪 mmۦӽ񬪪 I$A$s $I$ӽ H$@$rjjxhCkq1MLrQ?= iIӽФ HS_   I @꺺 꺪    $ 11``pp JA I$qq I$A$qq I$@$qq HJ14466 TQ4HQ  I$I$ ,-``xp ) $I$qq I$A$qq $I$qq !11񤪫 $:c'q$@$R@$H I$0I$I0I$H 0 I$0 &a1  I$ѵ񛪪 IIR1w  I$R1ww H$ $ II$q H$I$18 I$$1 I$H$r II$qq I$I$qq IH qq pH1Ф66&&  )"r H@r -11```p !Ф  I$qq AA$qq I$H$qq h H1Ф>&& )-ZRH$@$rQ  A$I2rQ $rQ?W mѶI$Q R$10I$Q"}$Q R( ܶ $r(,W ?Ri HrU H۳rUrU$A糽r U$IJr $I0 M$ I I$s A@$s* H$I$sI s(  ò-[$r Ybir1\T\THIrI$rII$r A$ 1 I$Is m5C5r`` IivQ- ӓ1\\TV $r"$C1@pI)1  i6r $I$rI H$rA$Ir IrA$I r $A r I$rI$I rA$ $rA$I$rI$H$ѵ񛪪I$H$rH$I$rA$rI$I$rI$@$r$$rI$HrI $1% $d„Qӷ I$ r A$E$ .m6rbjz^ i rR.$ I$rR̯I$I r1 $A$rr,|r67' ٖ`ٖms $  0 r I$A$ I4I4 $I$I A A$I$ I$I 򴪪 I$I$r I$I$򬪪 I$I򬪪 򬪪 @$$r A$I$ жm" @Nij  qē -$ E A$I$r r A$@$ IIr1\TTT I$ $1 I$H$1 H$I 1 LLr A 񬪪 I I$򴪪 @ 4@"rj n)mR1TTTW A$A 1 I$ 1몪 I$ 1着 I I$1 $I$1 I$1 (I1 hѶi$ѵ񛪪 E6m4R1* I$R1$I$r1A$Ir1I$A$r1I$I$r1AI$R1ڠI$A$r A $1 I$A1ꪫ I I 1 I0A$1 I 1 I$I1 IR$H&1ꪪJH444 qr1  I ӽФ ؂-,r```` BIn  I I Q1UUU5 I$H 1꺪 $ $1 HHn<44$ HIDAQ  I$I$ӽ I$I$ӽ Aӽ򬪪 I$IR__ IA$ӽ I$I$ӽ A$Iӽ I$I$ӽ II$ӽ A$I$ӽ I$I$ӽ I$A$ӽ @$I$ӽ A H r Ar* @&m&ӽ M Pr I $ӽ I$I$ӽ I$I ӽ H$I$ӽ 211``p BIN  I$ qq $I1 A$1 xHd1<464 AiR @ѶE&򬪪 %Фp  Nn  жm$1* mۖ$2*U m]$2 ]vE$2 '1@&O$1}W 9&I$1Ϝ 0I$$I$1o[aI&QOI 𤪩m i꺪4@i𤪪[ G𤪾j iI0 I I$qq qq H$I qq II$qq I I qq I I qq A$ $qq I$ $qq H$Jn<444 Prq ӽ񬪪 -9r` 9!An qq A$I$qq II$qq HMd1n&''/ iir A$I$ӽ򬪪 ӽ񬪪 ӽ񬪪 I$I$ӽ򬪪 I$I$ӽ򬪪 I$Iӽ򬪪 I$I$ӽ I$I$ӽ Iӽ C[R```` $ Cq1iirQ*+ I$I$ӽФ Hӽ񬪪 AI$SU_   ꪺ IA $@꺪 H$ 19`hxx `@ I I$qq $I$qq @$I$qq HMd1n&&//  r m۶Mۢ P9Ѓ&r`  I$I$qq m6M$rn @Ӷi$R n)v1𤫫 $I 1 [ 1I- I$I$0 M&m 1 I$m&0I$H$Q 1 -Iѵ񛪪 I$I$R1_ߵ $I$R1 I H$ I I$ѵ񓪪 I$I q A$A$1 \WUU H$I$qq I$A$qq I$I$rn ȧXJTr'/// IIr @$r 11`hxx ` I$qq A$I$qq A$I$qq ȉXr%%- Z  rsc`ۊXq1 $I$q1I $ќIB$ rQ+ I2I rQ I" IQI"0Q* I"I$ Q m r I"I$AQ N $mrUImarU I"i$Lr] IҮźrUr A$I$ II$ӽ I$I"ӽ A$ $򴪪 m$i򴪪 h$mꪪ ;4C;rz~Z Air Ii4ѵ񛪪 $H$ѵ񛪪 A$M6ѵ񛪪MZR  EI$s* ,՛6Q` nQ r1TVVWI Ir *1@@!J2Ϥ A$H$r1I$@R1A$A$R1I$ $R1ڪHI$R1A R1II$A$IA$H$R1H$I$R1I I$R1⪪II$R1I$A$rII rI$I r $I$rII$r $I$qI $q II&r1%U LLaQ I4IR$r I I$ m6h&1 nfur1# H R~|__H$I$R1jI$ $r|Wr'//-II$  , rꪪ L Pr% I I$ I$ $ H$I$ H  $I Em%p۳r mѶhr $ $򬪪 I$A$ I$IR I$$ӽ I$ r H$ IR 뫪 N$ I$P 8DB&rZZZ II$r A $rj iiR1TTTW A$I$1 I$I$1 I$I1꾮 MФMڴr1 I$I I$I tb't"rzzzz lV1謾 I$I1 I$I 1 I$ 1 I$I1꺪 I$H q M$IR 1 IIq I$IR1 I$I R1 I$I R1}WHI$R1 $I$ϤHH$ϤHA$QRI$I$A  r $I$rA$rI$H$rH$I$r@ A$rH$rI$ $r ȧ|X166'' I4A4rQ  MIr% $P&Ϥ`ppx IA I$$1 I 1 I$1 HDKD16''' i$I$r ֶiۦSU mm۴RUU k7lm&r $r ijr $I8s I $r I$I$ I$ $ӽ HI ӽ A$I ӽ I$I$ӽ I$I$ӽ H$H$r~^^ II$r CkS mݖmӽ I$I$ӽ ӽ񬪪 I I$ӽ񬪪 I$I ӽ򬪪 9P&r``` n A$I$qq II$1 H $1 HNd1n&&'/ I$I$R r")$Hӽ𤪪I%`&xxxx IN  I$H1U IB 1U I$I1 IЏ1]I$a$I$I$PPI$I$I$I$I$I$0pI$6i__in)Rn i6IΣd=2iꪨLB&t -I$R $R mIqq qq I$Hqq H$I$qq H$ $qq II$R A$I$qqHdLD16''%  r @ӽ񬪪 =P%r``` N AI$qq H$I qq H @$qqI|rn----  @ӽ񬪪 ӽ񬪪 I5xN$rWfI$rnUPI$rnUI$rU@I$rUPI$rU@I$rUH'I$rnUH$I$1-U $I$1MU$I$QnU*'I$QUI$rU @JrU 4r$sϤU  |rФ mmR IB@򴪪 IҶr c9P9Фxxxx FI @  m۶i1ꪯ I I$qq II$qqI\Ir%%--  ӽ񬪪 mM۶ӽ X%Z"&xxxx `1Ф I$I$1 $ 1 m$I"`1뫪 mI$1񤪪 =C1 I$A$1* I1 I 1 m;4۶m1X* 1 r1𤯮 )i1 H$I$ѵ񓪪 II$ѵ񛪪 I$ $ѵ񓪪 mmۤ1 H$ $rn -m$qq I$A$qq I$I$qq I$I$qq II$qq  r%--- -P򴪪  r @<=hxxx @1𤩩 I$I$qq I$I$qq $qq r--- I$A$r{ 2;rQ\\\\b]&Qz~ؐI$1WI$QUyI$rФU@n$rU m$rU m$rU uu$rU 4nurU mmߒФU i.{rФU čom'ФU @U $?Uж䓵U ni$rU6-* k۶mr H$A򴪪 h&I򴪪 kӮC۶R m$-ѵ񛪪 H$ $ѵ񛪪 AI$q @ Iq II$r I$ $ `B:C8rZZZZ c:FB:r{{{z IrI I$r -")1) RФ $A$R1" H$R1I$IR1I A R1}I$ $R1_HI$R1WII$R1W $R1 h[E$R1A$A$R1I$I R1}I I R1 IM$1  M@$r h[ $1 $iҶ$R𤪪I$A$ѵ񛪪I$ $ѵ񛪪I A ѵ񛪪 I I$r1UU [q))# 1 @$$rꪪ6h31h ɐi4r1+I$@R^LI$H$rI$ $r~O---- M I$s   rjj P 1  I"'_ 0Mm$Umd$Um䓵Umm?U $U mI$rU 'H$rU N$rU $rU@I$RM_I$RNUI$RUDI$RUpI$rUP &$Ф  A۔$Q )Ҙ$0Z I$1 ip$1~ 0m1 $qq " $I&d01 rF 1 ۚi ر  1zz` imQ1 I$ 1  I$HR I$I$1 I$1 H$I$ѵ񓪪 $Nb'1𤢨 $Im1 -nR1? hS4HR1U HI$R hI$R H4A&R1 m m4R1(A$I$R1 ( hH$R1 iE$1 Ei$R𤪪 m6I$1" @$AR𤪪 Iӽ1UUUH$ rI$r m6m$1 H 1n---- A rQ+ $r l&X5xxxx dm^М $I 1 I$A$1뻮 I$A$1 ɕ\Irn/--- MҶmr M@۳r @>zӆ-t$rN_$I$RNUh$I$rNUI$I$1-(UI$I$R-U$I$r-UI$rNU @I$rNU DI$RNU @I$rNU @I$rNU>I$rNUI$Q-UF&I$rNU @I$rnU@JI$r*  A1 )- ӽ񬪪 ӽ񬪪P%`"&xxxx p0 I$$qq I$I$qq qqI\rn---- @ӽ񬪪 I$I$ӽ񬪪 Z%b"'xxxx dI$I I$I$q I q h6I$ѵ񛪪P@,%1آ_I$@$]I$I$ϜI$I$Ϥ "I$I$UI$I$0p6QO F-`K1𤵕 I$@$rn mm؆𤪪ZtB:M;𤪪UH??WI唸 *U @6$"u ֤1𤪪} - -$1𤪪_ IA rn @qq I I$qq qqIrN//-- r I$I$ӽ񬪪X%`"&ohxxx `  I$ $qq II$qq &,)@ IɔH---- A I$ӽ񬪪 I$I$S؃&J"'rxxX Hqq I$I$qq C4Iqq I$I$qq I$ $qq I A$qq IR m[6I ILdH着1IA I۶m[ϣ mhϛ nn1 I$I$1 ]-1hM'n -H$I$ I$H  #b Фxxxx  $L$2 @qq H$A qq & )@ ɐL---- I$I$ӽ񬪪 i[m4r`'J$rxxxZ  $I$R h&M$1 h&m&R (@@I$I1-) $ rU* #ϤU I#aUI$ @U I$#HФUI$ϤUI$rUI$I$0nUI$I 1կ Irۛ& rU I⶚rФu IU =U IҶrUI$reR_z I$A$qq I I$qq I$I$qq ź[-1jj J -- $r I  r  xxxx I H$rn H$I$qq @qq   1jj  J---- A$ rꪪ k6X5rQPPppI$I$0xXZ 1i$aΣ IM rn I$H$qq Aqq II$qq I A qq mҦhڦ1ߺ I$q IRh4ѵ񛪪 IMѵ񛪪 Mmѵ񛪪 I$mr i mѵ񛪪 I$A$ѵ񛪪 I$ &ѵ񛪪 I82ѵ񛪪 11  I$I$򴪪 I4I"򴪪 H4MR``` I$I$ѵ񛪪 A$A$q I$A ѵ񛪪 I I Q.* Hr I$I vb;rZ tB&d'1``xxH$I$rI$ArHHr!T@1𤃂 f r Ӳ&U ӲUS$IU ӶHФUS'@ФU&HU ]$@UNl$ U~ޒ&HU }ÒU v&UIҶФUϖ&ArФUҶ @U 1N_ I$I$ѵ񛪪I$I$1UUU5IA1UU6 A R  n& R- I P4s I$A$s h$h6Qn~j I$R r1H$H$r1TVVZ Cۡ-R𤪪1-  A$I s,2,rjjjjIDIQФxZ I"m۠r IEѵ񛪪 IRIq imѵ񛪪 Ih6ѵ񓪪1( 1h` V$1񤻫 Ib6`1  Il0`1I$Aѵ񓪪[5* 1z I$I  I$< U} I$]'HФ]"I$$ 1U*Ib;`1U߀II1 Il0^IR 0 IIQ_zh I2l1< IB1ꫫ IҶ-u1 I4 R1UՕ MѦI۴r-)-II s  $I$s* ޳1@xxz $IrIA$rI$Ir -1Ф@O BRn+ y2 prФUI$I61WI$InU ܔ@1u ybrU* IⶓU ӲU òФU ]rUyRIФU ?ФU IҲU IbU IbU IpẼ~ $I$R𤫪I@ rH$I$r(11@ 1---- MIr1*  IM r @٘rpxxX Il 1=0IIrI$A$rP11bN---) `&@Q``I$I$1UWI$I$1-xx I$I$UUI$I$𤯜I$I$𤯜I$I$𤯜I$I$𤯜ݿII 𤯜/ iФkiҶ IN 着 ]$H1W IL$1ժ v:tB'1~I@$1М IQ)1k I1 &,)@ r I$ $ӽ򬪪  rh$H$rnxxxX I$I qq I$Iqq I I$qq & )@ɑɐr---- ӽ񬪪  rh2'J$rnxxxx qq @ q I$q بڬ11Ф@@@I$I0NU- I$I$1nUI$I$-UI$I$-UI$I$QnUI$I$rnUI$I$rNUI$ rnUI$d roUI$@rNUI$N@rMUI$I1-UI$I$-UI$IMUI$I1NUI$I$Ф̃_ qq H$A$qq I$I$qq &*)@ ɐ ---- ӽ񬪪  rp'H$rnxxxx I$I qq I$I$qq qq ")"-n@@@ K r I$I$RW  rjjj JL1Xؘ I$I qq A$I$qq I$qq E&1 @H$1 IA qq m6E$qq kk6Σm QoI0 mm1}j I$IR I$A$1 I$A1 I$I$q ((1`j dN&`Br  ɰ,I%r* II$rI~crXXX H1 I$I$qq II$R ")"-@@@@ r m۴hۦӽ񬪪 m6QjH$ND1Nؘ@ A$Σ$H$QoڶQo"( @@@@ Ф--)) I$I$򴪪 I$I M$H$  $ ꮪ @$Ir h6M4r_zzzkhQitr0- )ir @A r  r HIr $$r X$FjrxxX I$I$qq I$I$qq @rn (,)1j tJ )   򴪪 -6 r r]rp @qq -жm1 qq  1jjz  ) I r [6k51h`I$Iܜ IرR I$I$qq I$I$R qq I$I$qq I qq mmѶ1 A ҵ𓪪 $I$rH@r $ArI Iѵ񛪪H$$r$ $r@I$r 22-r jR-) @ II$s* ]ڦmRzjhz $Ir I$rI$I ѵ񛪪 $H4r1 I$I$ I$mжꪠ I0I$Fh1xXXXA$I$r I1ֶMҮ1JXRBb)R) I$I$HI$A$I$I$@ $ H$I$IH$I$H$$ $  I$&  I$I$ IH$ӽ EE$j UG^ $H$1PPUUII$rI H$r,"!1Ф@@1o'fn H$Is* H$I E$A Rbz2 I$I1 Ppb i$M$Q1UUU MIr "("(R)n`j1--++I$A$s"!")Rjjjj IdI1A$I$rI$ $rI$ $rI$$r I$H$r  ѵ񛪪 IR$I qA$I$rH$I$rI$IrI rII$r@$ $r $I$rHA rӬ2,1@@@Mn1))-- X9[90P n)oQ+)  kdK1hzzI$I$rI$rI$I1UU? M;6iҳ1 I[r) I IԽi I$H sFp01xxX\H rH$ $r@$I$r !1@@1wSB- IB$I$r SrQp I$I$Q0~^^^  IQ0 )  Ir1 + m$I$r M$I$ nMӤr ֶI$ 5I6 $I$򬪪 A$I$ A$I$ $I$rjj zdKQ؜I$I$rII$rI I$r .-1n@@@ SQ---- 隶VlQ-+  I $s اEb rФXXI$H$r$ rI$A$r(1@@@@t Ф)  M i$ M6h$rjj r$KQXX؜ $6i1D2^1U `m1 #AA1꺮 I@ 1_ I۶-1 H$I$1 Mжh1ꪪ $I$1ꪫ A$ $1 X6h61~~$I2Λ  ]1 I$A$rn "(")N@@@ ɐLI r I$I$ӽ򬪪 E6m6rMK1Nؘ H$H qq A$I qq $Iqq "()n@@@@ Por I$I$ӽ򬪪 $I2$LғrJL1Nؘ $rn H$I$0 I$A$1 ()@@@I$I Q I$I$q1_I$I$0ꪠI$I$0*/**I$I$r1 I$I$rQ h@ӽ𤪪r  I$I$ H$@r t8$cГQ^4Z r0W_I8L0*.n&QIIN mI$R -rn I H$qq " (n@@ 9 r I$I$ӽ񬪪   r JL1nؘ A$I$qq @qq I$A$qq ,P<N@  rФ ӽ   ӽ𤪪 MDOn8< I$I$1 I$ѵ񓪪 I$Iѵ񛪪 ѵ񛪪 II$ѵ񛪪 I$I$1 &iЦ11@$I$Ii1 Mmݶa1* IA1 @ 0 @ rn )P)1 H$I$q ,R__ 11a1-)  I$I ӽ񤪪 mnZ4rok{[tRФ  $h1 H$I$1 HI$qq ,P#<n``` JKrФ -Ҵm$r~wWU(Z1rhzIIM $ R Ir۰I1𤿪 Ivm1 ,0`` ) @- I$ >۲! H$򬪪 @r뻫 r A$ r @ $rjj%r0^\\\nmvQ0== II4rQ )  r r A 򴪪 H$H$rjj r@r I H$qq I A$qq I$I$qq  1j nmR $r A$$r ARrXX\\ $I$rn E&E&1 I$ $qq (1  I1 Ir X5@4Q``@@IID IIqq I$Iqq I$I$qq I$H$qq $I$qq $I$qq I$I qq )4A 1HI$rI$I$rH$H rA A$rH$Ar IrA I$r 5r1 A)r)) "!4I>r( $H MM֬1``ppIrH$I$rH$Ir :;155 II*I$ $s H$ $lPxrI$I$r I$I$1꺺 II 1 "(QbrrR )j/rR-I$I$I$@H$I$I$ $ $I I$H$I$I$I$ A I$ H&I&񴪪 $I$ӽ I$ӽ I ӽ E6m rjjjuDXRФI$I$rII$rII$r"1/1@ 1k/nR--- I$Is** H $* ]MdrRL^W I @"Rb @$H$q )ִiq31R510 " qw R-+ A$ $s,,1`` I 1>I$I$r@ I$rI$A$rI$I$r A$I$ѵ񓪪 I$i&ѵ񓪪$IrIA rI H$rI$I$rH$I$rI I$rH$I$rI I$rI$A$r"-=1ФjzzZ @n1-- )I&PPPP D  Р Tr^ $I$1 $14m$Rim$s $H$s $A$sI$i:rʪj cV,r޾@$A$R1 I I$R1H A r1UVV(1Ф``pPqNN1-))  $I$񴪪 I$I&Q II$Q0hh$0*$AQ0= &a r1 / I$r * @   @򬪪  $r H r  ,1 MN1< H$I$1 H1"I1ꪫ $C1_ 26[%M``ppPəQ--- N۳r ֡Գrjk|lRФA$r I$Mr X6m1j "-1``` jPJ I$A 򬪪 $M"$C2rjjjz NOn< $Iqq $qq 18I$q -h۶1 A$1 @$ 1 AI$1  $1 I$I$q I$I qq C&m%1^[ 8٬>~`I$ ^𤪪 $A1 "1R#%n@`pP rФ II$ӽ񬪪   R` NDIN< I$A$qq A I$qq H$I$qq 0@<n``pp Nmr ӽ񬪪  241h NIN I I$rn I$I$0 I Iq (@<1`ppZ I` r lB&rQI$I$Q0VjhI$I$Q0?I!3r0IB:1ӽѬ#IIӽ񬪪baӽ񬪪 I I I I$ I$HS [*@Q^LB:mq1_c;000𤀠IIDNIΣ iIR -I۴qq (@<n@`` JrФ I$I$ӽ񬪪 @ @4R` NDIN<< H$I$qq I$Iqq I$I$qq R$R%n p 1 @$ -۲51` ɐn<,. $Iq I $ѵ񛪪 I$I II$R1oW mm6r $1 غh&1𤨪$$3Q i-1* IM1 I A$ I$Aѵ񛪪 II$R1 &iR1 I$AR1Z۽R !g r+ I$r .m6R`KK1<,6. 1b3'1 AH$1 $I$R @$P"%NАBnr Ҍm'r0Т9%QjzzID -6&& eHn rn IH1 I6mQ1B-1o)qr'gn1 I$I$ ",rj iZc'z 0rNܒ mD Io?U Iv$U'N$QϤ^W4$I$0ϤU TIpQ/  &r1 * -Mr A@ r $M22rjzzz 1𤜜 A$I$qq A$Iqq I I$qq Ѐ 1:::  )r 򴪪 A$@$rj  Kr\\\^ A$I qq  R I$A1 R51:*** !1hr $r C8C0Qb`Iɚ4<,, 11qq $I$qq H$Hqq A$I$qq mۢE$qq @$qq IA$1 I I$1 Iڦ$ѵ񛪪 m$h$rAI$rI$I$rH rH $rI$ $r C34[r1555 II$I$s I $Ȫ MdI1xXXXH$I$rA$I$r@I$r C&h&155%5 IH$I$I$ Fl3c3jbj|OLr $I$r I$I$R1U A $q 1ФА onrAA  $H4jHl:^m]<ФUmmǓФU I.ƓФU  Im$ФU m#ܓФU$Rg瓵U0n8U 6+ hir+ i&M$ C"C:r``` PPKR𤔼I I$r I rA$ $r@-А-10 iir--)I H$s @ $r`hH1WI$@$r1@XVU m%kѵ񓪪 $I qM%1*"*  r-) H$ $s",,鳽1``` ɐ 1Ф76'  $r@A$ѵ񛪪r iI$1 R E$m$1* I0A$1 iS$@41 E[m$ѵ񛪪 mѵ񛪪 EڶI&R𤪪 m"m41  ii41(/A$I rII$rI r #%R%  T1 =<PPPP @` 1𤸼 I$H$qq $I$R H I$1 @ij Ar @$  $A$rjjjj =R<& I$  I$ $ I$I$/Ր 1nvR  I0I$ fb'pB3R ,DK41xH$I$MWI$I$-U$I$1MUI$QnUI$rnU2I$rUI$rU $rϤ ACrq $r C2 C:R@``` O <4& A$ $qq I$I$qq mڢRX%Z2'MP OJrϤ- m"mS a;qB'R@p1Ф<44 I $1ꮪ II$1 M$m$1 @$@$А t VI1 I$A -"-Q@```  44& I$ $qq H$ $1 I I$ I$I$13_ -6i$1𤪪 I$I$1𤪪 ִ1𤪪 m[m$1𤪪W M[M$1𤪪 ֮m61𤪪U B1𤪪UP%~$ϤI$I$1oql&an𜪪 @$B2%nА JA I$I$ӽ򬪪 @(1`` X N<$& H$A$qq I$rn I$ $qq R%P"%nА ir  @ m6r ,r1@``` I -<.. rn I$I 0  1 B"$P%n𰐐 BTA- jX-𤪪I$@$r0xhI$I$0^A$I$rU$I$rU@$I$rU$I$rU @Q$ФU mI$U mI$rФ*U P I$I r M6iQ~9-rzzxIDIPN66&& Rn  I$R Iiqq B"%R%nА Id  m6E6ӽ񬪪  ,,1``` ɑXɐn>4& I$I$qq H$I$qq I $qq P%h'n< )1  I$ $ Z59Q``@` ɐ/R' I$$R1U I $q I$I$  1и(( ql$կO: rUI$I'0WI${Qտ* IrϤ IҶrU U B`r1Ф  m6ER1j a4ar1 I$A R%Pr166 )-r  L$I  u6Z-8Rzzjx.1   1 irn $I$RP&x$N)a閵1$Iqm%]2$1Ϥ`` ɖHɐN jB1񤫫 IҴq $ $rRX1 nnR  IKs X-5B5Rjzz $P.R I$I$R1Uw I I$R1U MҶEQR1U Mڶm۠R1UW hX1I) bvn1 'y r/  Ir -  $r &::R@`` KJ1𤴦 A$A$qq I H$qq I$I$qq PZR𤿷77 I$Ir @ $򴪪 H$A$rjjjz )R\| I$Hqq A$@$ϛ !A011 ЉPR7'%  Ir H򴪪 C0:rzzzz Ϥ& 1 R II$qq I A$qq 9yR_߿/ y~$U CU CҐ U _UOr#U6 U Ib'Z U KbR𤥮 I$rA r r -Z}15% $I I$ s*" I$H$ )1XXX\II$rI$ $rI$ $r CZ,r1%% MñMسI$ $s [6r``h5vOJRI$H R1 I$i$R1Z @$ $ @ dP}1Ф8<< ڶirH$A$ [3,[:R`h R $IR1ߊI I$R1HA$R1uꮯ II$R1 I A$R1 I$I$R1߫ I$ $R1w=sR1? ɐlٶm- $Is ( *вڳrbh`x`K6J1, IIrI$ $r $I$R1/Ƣ r7 `ór)  Hs*  @$r` L/KRI$H rI H$r I$h$q  R*1<<< $A6r -$I$s 2c1R``xh.t1A$I$rI$ ѵ񛪪 i4AP$rP%Z1-Xظ I4rnU I޶ UI&@US UHU IR)HU I> `U   II$r@I$rH$A$r P` amr1 <#=pppp t(   $$qq I$I$ѵ񓪪 I$I$U R6& &a!hr  I 򴪪  08Q` 5@ R&& +ֶmӶR1 $@I$R1um ۰mkfR1ҫ+RФ< ؉ÓR @$I$ӽ h*5` /tB1Ф,  1긪I1WivlD8C0_@I$I$PPI$I$? I$I$I$I$*: $I$r1 $I$ӽФ`$I$r`` I$ @ə1+ [Y1 k5k&ΣH$K$MИ< tJd   뫪 11`` 9 1Ф II$qq qq qq P` 1>> !!Q  @I$ -"퓵1````  II$qq HI$ѵ񛪪 $I$R1 Z"&`& Pظ8I$yO@rNUI$/hrnUI$I@RnUI$I,QNUI$I1NUI$I$1-UI$I$ UI$I$𤋃 I$I$IM𤻿 * P&x$N< P1 ) ӽ񬪪 -,``p  N I$Iqq I$H qq I A$qq P&p$N<`r1 ӽФ09r`` HN I$I rn $@$1 $H$1ﯻ P%h' 0Q  ܂mri&h%r`I$I 𤎜 +*  Λ 𜫪 𤫀 AR  R 42$C&1z P`R= ))r I$@ r 11rpp``H Hn@ A1 I$I$R I$I rn X"&j'n8< )`0`1   ӽ񬪪 ,,```` Hn I$qq I$I$qq I$H$qq H$H1n<466 !&hӽ𤪪 @$ -.-``p !!1Ф  I$R1/ I$ R1u} IB$@R1 rQNr&'. Si&r di(rQpp|~.I Q0V**  Q Ibغm I@ #l&irZjjz FIDHR1e Im۰mR1I$I$ϤA$H$Ϥ rH*177' M$A$ öm糽 8>1`p !m m6m1뿻 ih 0 H RH$H$M$0+۴ q1#5,rzzxx ɐJ n  .I1 I$I$r H$I$rp z1<44$ 1ór dKd r  -1hxxz !1Ф II$1 + R1} I$A$R1_ I $R1U~ h1I$Irn  ɐ 1 j {Q666&r2 IѦI$r/ -¢-1j !1𤧧 qq IA$qq IIqq h~xr5%   I$r  A򬪪 @6h6rzzzz AJR| I I$qq @$H$Λ TIT1뭥 hmr//-/ I r @򬪪 *rzZZZmVh1 iR I$Iqq II qq ਫ਼r555 I$Ir  Ar $򴪪 ٖf@$I$s* I$A$s*i糽rxxp^@RV I $1ꪪR𤪪II r hM1--  AI$s"*I $s  6CFh'j iv-r1\TTTI$I$rI$Ir $I r 'h1%%%% I E$II$s* c?6R``I R. I$A $A$Ϥ I$I$R1Z(TrФ66& ۱r+ H$I$36`51`hxx'pRФ I$ $R1I I$R1I$I$R1  $R1I$I R1ﮪI$H$R1I IR1r r6>6& $I$ I $s* [1`M:1x)tA1  I$rA$IrA$ $r HJdr7''' I$I$ +  I s m6m6rh`xx v IR1VVWVH$ArI  r t8cѵ񛪪 s816<4$ 1 Q) m1ó"/5`/21hxxx!r1Ф 0 1"- )$I$1 Cmm61 pHؤ144& !ӳr H  I I I $I  A$I$ ŒՓ```pKN1 ) $ 1 $I$1H$I$r zH1o<,$, 1a&r $P%pppp(-raaay Ji  h[h1 I$ qq I$A$ѵ񛪪 xr>777 )Z-Pr @ ӽ  ɒ,11``` !1Ф A $R1w I$IR1ߝ_ I$R1~}`rTQ,,,$ سr I$$ӽ Z55```p !1Ф ]5 1 M&h 1 mҴ[1"m1ꪪI$H$\I$I$I$I$𤽕uUI$I$M<<<4I$I$r1 ) I$I$rQ"*I$I$rФ```xI$I$N I$I$0p'I$1UUmіmL$H„1n66 a]1  I 1"1```p 1'/ qq -m61 IT1 xHQ66&& ))R $ ,1```p 1  I$I$1* I I$ѵ񛪪 I$I$ xH1<<44 )i4r1$I$rQH6I$rQUIƶm'q1D$I$Q1ҦZ&X&0````I8 ;wIah2&ꪫ  1𤯯 J$J$-<<4$ iTIr1 Hr 1R5rФ`` !N  I$I$qq H$I$rn @$I$rn H$H$N4444`0r1 m6mۢӽФ #15rpppp JIn  I$I$qq $I$1 I I$1 H$HQ66 rhvMfӽ񬪪J&X%r````II$𤏜 Id𤮪0RA Rn $IDJR I$ 1 I1?5 HB&$C21zHdHR77'   r  A$r﫫 11``pp JA  $ϣ IIR rn H$Jn<<,$ )Prq I$H$ӽ򬪪 "-#5rФ`` JAN  HI$qq II$qq I$A$qqHOD16''% )r $ӽ #5ң5`px tAP 1Ф I$mϤ$I$ϤI$ $HxKT17%%- 4hc'rjz H4H$rQ|\\W IrQ55=  )r++* $I 1A$I1 C;tB$rhhxx M` r1I$A ϤA$$Ϥ@$ Ϥ hm״1%/-- I$I$ 1"rjI$I$rϤ`` ɑɑ ) !@1 I$@ 1 IB8tB:1HKn4&&'iMܴ Q-/ In1+ k11rФx``` IDI  i۶m1 $I r H @$r ȥTKTR&''/ I$I r @frR1`` PR𤩡 I$I$  q I$A$R1uW II$ p$LB'1@(0 IIѵ񓪪 ȅVJr/// Mۦ-rk m6h&r0=rhx pP 1𤩩 I$I qq I$qq I$I$qq 8S Or%--- $r $$򬪪 C:c:rzZZ^ ٖm1 m[i61  `Qo I$I$.I$r- -- $I&r} @r $:8R````mІ 1  Λ I$I$qq I$I$qq 8P2pr-- - AQmPr H 򴪪 I $rꫯ m]vI$I$I$ $s* { hHR^hxx i@mѵ񛪪 Iiѵ񛪪 iSMrI$@ r vسR)-H$ s A$I$s $B#$B۳r 1r1TVVVI I$r $rI$Irtx1%%%% MشmسsII$s"/R11hxxLMR H$  I$Ϥ HW Sr6'%% ɖmٖ H$I$ #1hxxxtAPI1I$ $R1ﯪ $I$R1A$$R1I$I$R1IH$R1I$A H$A$P r&''% I$A$I I$s*+R51xxxxHd 1Ф$I$r@$H$rI$I rxpt1%%%- I$ $s  " $ $1 ٫:rxxxx MfMrHI$rI$I$rI$Irsܳ;r= I$I rQ* iIr+,/-Ф```AD1 I&-1 HM$ѵ񓪪 I$I$q H\PR7''/ i") HI$ I$$A((rj,K$rjVUD Jr $Z20n`` )I$N ۆmo1𤪨 m[E1 H$$1 HKxQ&'// mڶkr b"&9ppppY%A-1B p I$1 II$qq I$I ѵ񛪪 XXrФ'''%   A  -5r`` IvI1Ф I$I$R1] $@$ѵ񛪪 itH18 p pr&''' IM" I$I 򬪪 ,```` p `IRФ  C$$R1i} @[ѵ񓪪 I$i1ꪪ $1 i1蠀I$I$^ZI$I$1nI$I$I$I$Ϥ-&&''I$I$1=I$I$r0*UI$I$Qn``xI$I$nI$I$0pI$I$dI 1𤫫 K\R7'%- r $򬪪 5X5r```` IdH $$qq m6m1j IER 夊TR&'/- -@[r  59`hxx ItI I$$q Aq H$I$ѵ񓪪 HLn$&&'mmڶq1}mӶq1$I$m&mP1mmq1IĶirQUc"&`%qzxxxK)  M&m6QM-[몪 Mnb1𤯫HN1N6&'/Ar1 IIӽФ #&h"'RM`  I- @$I$R II$rn I$I$rnHND1M6&'' i)r0  ӽ򬪪 =X%r```h N H$I$qq I$A$1 II$1 HLdQ&7%% rhvm6ӽ񬪪X$H$r``xxi5YIA𤺪)IR ϣ I117 I I 1 I$A$rn $C2d&1zKdKDr5%%- -Z Hr -1`h ٔiVHМ I$@R )6-Pϣ   $rnHdL֤1n&/// r I$I$s =&r`` I n H$I$qq qq A $rnIDrn---- A  򬪪 P5P9Фxhxx d4 Q  A$A Ϥ$H$ϤAI$Ϥ~1---  h&m$Q`h H4I&r0 IRQ h׶mR _ M&1U Ԫij1U Ct$ !бiH$I$s1I$I$QR Hr1 MI1--  s*  pl0`;sdx``xIu A1МI( 2** E$)4r Mڴh&1LxI'%-- I6r0-/  I؉гr 5P5r``pp tl6M1ФH$A rI$$r -A"ѵ񛪪 r/--- "-mr   IXآՓФ`hxx i6HQ驩 I$IҢR1Uު I$I$R1 H A$R1ﯾ I$A$R1U H$H$1𤨨 2*U q Mti++ ASU I$@$rVV^ZZ=c5rxxxx PDI1𤩫  q H$I$1 I$I$qq  ---) I$r A򴪪 :'R```` 1al1 p&t'2 I$A1ꪺ m6m1 mt1--- I򴪪 @ 򴪪 C80R```` #)1vv~II$Σ Aqq A$I$qq vд1---- EE$  ijr F:rz^ 0IؓWDv?UDrU X6M$Ф_ 1&Lѵ񛪪II$rH$I$r $H$r R-)++A$I$s 0%J2%* 6k6Rzz $1I$1UW `;Ib;U I$UUː$I$r - I$rUU ?I$RUU P$I$rxz I$1]U dI$1 $I$Rw($I$1o ɐ ɐrn  I$I$ A$ $r ,rФ``px PRФH$II$  $A$R1 P4E$R1u MM$R1_@$I$R1 h۠)$R1uN>r--/ I$@ I$ 5X``xx n]aR𤫫A$A rI$$rA$ $r II1---I A$s@$ 1 k&m6Rhxx )M6rI$A$rI$Ir$I$r  mn1--- $m=2Q~^x @rr1 * 5v'r`hz M)g " 1  $1񤪪 mbid1񤪊  ---- H$A$ I$I$[9:1z l$r_ Im$QU v$ U P$w$R-xz_I$"%1N!y 1М Ib$ 1 I$[1 IdI r--%- bir 9#&xxxx:a$0bbj d TМ IIqq I I$qq @$ $qq OP r/---   $ P=R%Фhxxx ٖaڭ1 $I$ѵ񓪪 @ 1 "  Q1 P Tr/--- h2Ibr 6$IH򬪪 #&0Фhxxx !iJ R MnaR1甆I۶ ѵ񛪪 IҶE۶1 ɀ-QH$d$1I$I$wI$I$1nI$I$ϤM%% I$I$-VI$I$0+]I$I$-``xxI$I$𤏜 ! I$I$ϜI$I$1MI$I$1oI$Ir---- i6r Iԓr #5S5Фxzzz dH4AМ qq $I$qq  qq IXIr----   I$I ꫪ >`&r`px `I$IМ H$1 hm$2 6lۺ1^IIN//--H mfݶR0P%Q𤪪xE$I$1n_$I$QNU$I$QnUh$I$1 ~WL0n E[$@ Rm۶R𤪪 I$1𤫫 ITIRn---- I$$r  r`&j"'rNhxxx t M I$I$rn $R m6RIDɑRn%%-- I$I$r imӽ񬪪 P"&b'xxxx dI0I II$qq I I$qq I$qqɗ|Ir%--- A$I$Mhӽ񬪪H$I$rxxxxzФmH&뻯\NEPRnP AI$qq I$ $R dB$db'1{X r-- i H r 4=hxxx 1I1𤭩 m6-ҦR @R   $rnɗTIr---- ӽ  ӽ X%j&xxxx `I$A qq -ڶm&1 $")@@II$r--- $I$QY $I$QU`&I$r^ŶmR1] $ $R1I$@$Ϥ M4I"R@ J)r1 (&M$rQp|\_ M$IrQ5= IҴAдr1I I$QR I AI R1~I R1I I$Ϥ $I$Ϥ I 4`B;q2j gj7qrR---+I$s HI$s#㋺xxxxI I$rA$@ rH$$r <,1`@@0--/+ xq0-/  IM X)ФxxxxI$I$R1ijI$ R1A I$R1 6-R`@JP -)  M$H$s I $ꪪ XrФpxxXH$A$r2 $H I$I$Ϥ -Z4@6R@@ ?d ru+ I$K QWI4rϤ {R R  A 򴪪 I$Hr~Xrxxp1  I$q AI$Qꊿ $iZ#41`@ ɝܒ1-)-- EQI$񬪪 (ТI񬪪 h&@1``hh A$1 M&@$q I$I$qq m")61  1R H 򬪪 i mS 򬪪 @ @tr1```` h$h4RI$I$Qo )I4R   1ꮯiIA1-))/ )$iҶӽ@I$ӽ&K"r`xx I$IR1 4iIl1HI$r $I$ѵ񛪪 ii$r $m$1 6Ӑ$1 ?1 T r-- &H$j k糽 &mҖ$z Iq1𤪪 L$H$v\~ !D𤭯 IB&# ϜI$IrФ--)-I$ ӽФI$ ӽФI$I$rxxxI$ 1I$I$񤬊 I$I$񜪪I$I$@B r  I$A$ I ӽ X+rxxx Aq2H$I$A$Ϥ 8>-R@@ )e rU- CФUO۶$lФU r$կ  irI$ $I$A$ k6kvxxxpI$I$rI$rI I r C2$ 81 / ?wsR----I $1A$H1 d'C'1``$I$r@r r #01B J -)  HrZzI$H$rQpH$K$1pxxX $I qq  I$rn I$I$R 4I"((1Фjj N--)) $I$񴪪 I4H$r  9b"&rxX I$1_ m $1 61 m;l]$1  $A$1 mm$1 a&1 $h-1j ɔ ---) I$I$ P ՓxxxI$In@@ !I 1 I$h۶1 i-ڶ1 &>)@@ ɔ Ϥ----    X&`'rФpxXX CMv1( H$ ѵ񓪪 ifm1?;.i=iR@ `Ф----I$I  II$b:xxxII𤎜zޞ I$qq I$I qq I$I$qq ")(@@@@ )r @ @4M$rz~WJM1ؘ  @ q I@ѵ񓪪 ɔN)0@R1 RФ@@@I I$H 6; ' `F!rФؘI$IA I r I$A$r* !RФ@@@@ @- -;-ْr(I$I$ӽФI$I$ӽФI$I$rQI$I$rQWI$I$Q~I$I$Ϥ ؘI$I$ФI$I$MI$I$Ф?I$I$-@`II$r )--@ rII$𤪪 fDGl@RФXX m6h61znj Qo I 1   @ r ) @$I$RjV غm&r0~I$I1ܞI!A2QoI$ RI$I0 .( 1h@@@ 9O rϤ-) I$I r I$I$rj zdKRؘ I$ѵ񓪪 A$Iѵ񛪪 II$ѵ񛪪 I $q H@qq $ $R iR (-n@@@@ rN h۶mӽ $ r KM1X؜ h$@4R qq I$$qq ")")N@@@ ɖ ɐ r ӽ񬪪   r J¤L1X؜ I$Iqq I$H$qq I$I$qq ")")@@@ S r I$Iӽk̋ Փr~~~I$IQXRnI%]5ncI$2).Ϥ`hhjɘr @r  r  $I$򬪪H$I$ӽ  $ $$r bj4rФ I$qq I$A$qq I Irn "((@@  r   r zKQXؘ I$1 $I$qq I$I$qq ,@4n``` J  ې`Id ò-[%rjr𤜜I$I$rR@I H .0BR@``P $I Q1 IIrQ5 !`r MMRXXXXI IϤI$IϤH$I$I$I$A$I$ϤHI ϤI$ $Ϥ "45q2 IIr)) +A$ $s [2,[%bjjtD[ASRФI$I$rI$rI $r,1Ф`pp i 1/  11r H ;rj|RФ8<IIrRݗ $A$Ϥ $I$Ϥ RФ@`pp)N1-- )HA  h[4m6rh_}TRФ ϤI$A$R1A$IR1 "R``p )/nR-) 2S 077 I$I$r 򴪪 I򴪪 H$A򴪪   r tIr1pXXX I$H$R1]ow I$@ ѵ񓪪 [C14B01𤪸1ɔ1 )- Iir 1a NI`1pxpp (Ҷڶ1z $E 1 $I$1   555 m-r I$I I$I$򴪪 II````  C2R@ Rnm Rn (²11 ` ݔI1 ) mQI6r  I$rj s4tSR 1AIrI$I$rH$H rI$r A$I$1 $I$1  (41*** !!r I H$򴪪 $$ NNrp 𤮨 im+++R20@38Ф`pPII1--) I$I rM3$0ӽ𤪪NI1Ф  1 $H$1I$I$1I$I$`ppP) Ϥ  I4I$↑ LbFb'rjtT[TR<I I$I$H$ $I$ RФ``pp`1 I I$H$$I$I$񴪪 H$sI$ s* $ $ j ÚdYӽ1I$H$ӽRs H$1W  $ $R1 1100 1!r--- HIs** I$I Nkt1xppxA$I$rA$Hѵ񛪪 E&H$r.-Z1ఠ ))r1  H$I$ӽФ@ @$rQ@IN1 I "R mMϣ  $rn "("9Ф``P  I @򬪪 $i!rjjjj LMQ I $qq AI$qq IA$qq I I$qq @qq I$Iqq I $qq "1R#=n``p  r I$I$S_ h:j:rxhxx IIN6 I$I$qq qq I$I$qq 08n@`` pJr Xkڵrh r1 NI1<> Ķm1: " iۦmR1I$I,0RФ``)NtB1 HI$ C%۲mjjz^RФ<<A$I$R1I$I$rII$r,R`NtNR---- R.ܒrI$I$ӽФI$I$ӽФI$I$ӽФI$I$ӽФI$I$r1b`@`I$I$ 888I$I$ϜI$I$ФI$I$1MI$I$Ф,``ppI$I$r--$$I$1I$I$rQh u`QФ P1j Im1 h4M$1 #-#=``pP!Or -@mCӴq1P9K5QIDI𤎜m AΣ IӤmZR I$I 1 ,,1Ф`ppp IPA  $ A$$R LN188< I Iѵ񛪪 IIq A$ $ѵ񓪪 I$I$1 qq $C$MR mmR 8%-`I$I$rϤ- (4IӽФ5˲(rQ@@ IMN8<< @4 qq Pqq I$I$qq 08N@`  r I$I$ӽ򬪪 4R` NDIn< I$ $qq I$I$qq I$ $qq 1R#9@` ! D 2f3ӽ𤪪OI1 RKXII$񤪮"03%r JI1  H 򴪪 񬪪 i&hҤ򬪪 h$m$ӽ ) A$@$rjjj {GQФ $I$qq I$I$qq I$Aqq 08@`p SФ --- PE$r] `51j NIDQ -I$rn A$I$rn $H qq R"$R"%n  1 I$I [56rjhx4USLRФ<,,I$ $Ϥ ϤA$I$ϤPڣRϤ Q0 I섡Q%)  aB;L; K`RXXXX@$I$ϤI I$ $I$AI$$H$s1I$ I$A$Ϥ %Rr1:+ 1۳r I$Hs  m6h5r````3QR𤼼I$A$rH$I$rI H$rB/1ФА I $Q1 ֭vr $b¤c2rjjjj3 HRФ<$,&I$A$ϤI$I ϤI$A$@@RФp OAR-) H$  mӶE%rjjb`|QHRФ6..&A$H$ϤI$I r1~I$r1PB#R  ' LIr./ me{;1*U  U$1*U 0 $w1*U öm&1 mj1 P r1\^U H I$R1 I$H$R1_ "R#1 #81:* mfrQ N- Ir -` II1xXXX I$I1 ( $ $R1UyzX I$qq I$I$%% Iiۢ I  A$I$ I$I$ppxX h$M&R$iϣ@Q@Qo@9@B$1ߟIir1 ) @I$Q @$I$r2 JQ I4I$2%U mI$ѵ񓪪 aҶѵ񛪪 mӶ@&ѵ񛪪 Ih$1 m$H$1  EѤi1 " %RBrߟ? 1h1r I6H6 i&h$rjj ,AR1\\TW M$@BвΛ 66Rn$R[%@2$8JI1  $ ӽ񬪪&"ΓQhhɗd1Ф4 <>BTQ I$@ӽ񬪪Ю61`h  L1Ф P`1I$I$1I$I$ꮮ*I$I$ !J1 I$ $ꪾ c [3:R``xxtK7pRФI I I$I$ϤI$IIA R1I$I$R1ժ$I$R1I H$R1H$A$R1ϢIIR1 I H$R1" $I$I$I$ $A I$I$ϤI$ R1h'ګR::>6 -i$r &Mr Ir  r1^^^^ I$Hq $I$q h6I4q`:-Q1555 I I$R+ $IJr$ I$m"rU_zz `&1𤬬 m4h$qq i-R A$ R R X(f1Ф>>> iiR  II$S* I$I$r@ s2; rx ζrW NҶrU SU ֒U yҶU IbU IBUIiR A/ r -RM$qj 1"4QϤ``p @- Ii1 A$I$1 I$I 1 X`1n؜ 1!r1  I$IR* $51`` 4p)RФ' I$r I$rI$ rR Z1 ٚYR  $I$?4R`hxx/1@ @r $rIHrI R1I$I$R1R#1zK$H$1I$I$1]I$I$МI$I$М  I$I$I$I$QOI$I$0pI$I$I$I$ϜꪪI$I$Ϥ ؘI$I$Ϥ I$I$Τ I$I$z  m$RnH$QoڶIQoj"'J$؜<) Dr ٶ @rQ m-X-r1 91 iѶmqq I$I$1 I$I$ѵ񛪪 P` 1Ф<< IIr I ӽ  I r #@^ IbHrФW I(@rФU I$&@rФU I$IrUI$$ UI$`roUI$ roU I\@r+H$M$rQ I$I$A$I$r`` H Hn mS4-6qq ))qq I$I$qq P%j'n II1 @ӽ񬪪 ,1``p H@n I H$qq I$A$qq $H$qq @&`'88< `AP r1  Q```` $ RH @ hX۵ +  1𤿯 I$H$rn HR @@ 1{ @R@6R Ymb1 I$Aqq I$Iqq I$Iqq @$I$qq A$Iqq P%`'< DIr%-/  $ӽФ1R#4r`` H n R I$I$R I$I$qq HH166 i)"r A I$1 1zxxxpBRФ I$ Ϥ I$Ϥ t'$R1| eꉚ1 IYbr0--  I$I$++$I$1$@$1@$I$sI 1I$ $1I I 1I$I$1I$$1 I$1I$$sI s** II$s" X5زRpxhxII1I H rH$A r $I$rRФ6666 udKr0 $ $Ҏ5Т1hhhxJ RФ I$@$Ϥ $I$s1$AϤꉖRФ44$ ImrH$H P#9`'pRФ AA$I I ϤI$I$ϤI$I Ϥ   (rC1R IIQRA$I$Ϥ A$I$R1 س R1 A$AR1 IL&iR1;B$Hr1_z Ib R1W몪 LB2$ R1w qB:$M1- I$mr_z IrUuw I$I8rQ言 11mr1VVVV mvR1 $I$1* H$I$1 h۶M$  H I$ I$I$ @$H$r h-r\\^V mmӢR IIR  R XpR%% I$  r}HrU I$I rUW@𤪪 IA𤪪 I$I$ӽФ $ӽФ  H$ӽФ II$ӽФ A$ ӽФ I$A$ӽФ $I$r (&I$rU $I$r 5hx  m&m&1 dII1 = H$H$1H$J$1>&6&ِӽ𤪪@@$ӽ񬪪S=#>r` !i1Ф=X%1^zZ@$1I$I$1𤮯I$I$146&JJ1  1`ApARФ IA I$rQWVUA$I$ $A I$$ I A$H A$Ϥ $I$s1 $ϤI$I Ϥ mE6R1 $I$R1 I$R1 H&I&R1z}_}  xQФ..&& IA$ӽ𤪪 H$H$r 6;@bǒrj~ZZ bِmQ1T\WW I$ q I ѵ񓪪 I;lѵ񛪪 l<1%%- I$ r O r ؊ڦrzzzZ AdI1 h&M$R iirn @qq hv r𤷷// IӶr A$IS} IIS** A$S" c&;S( $ӽ𤪪 M[4HS ( mi$r $I$r 6)$s $Ir I I$ m'I&r H$I Qz~ R5Z%1`p N- Ai$1  $1 881 xHn444 m1++ A$I Ҍ```p  1  I IrA$rI Irh~x1$$$ imr I$I$  ,41hxxxAp1 I$A$rII r $ $rI$A$rI$Ir C:C81@H$m&{zI$I$1oI$I$QOI$I$QOI$I$1oI$I$QOI$I$0pI$I$I$I$0PI$I$MԔI$I$冷I$I$LI$I$mzz IM I$𤪪mi𤪫IvaRnK$K166&   @1+ I$ $r  ,`` !1Ф I$I qq I$H$1 I$Iѵ񛪪 p \R66'   r   $ H ӽ I@$ $ AA  @ 򴪪 ` LL $M&$MӽI$IR ۺ-2rI$H$r2I$I$𤪪I$I$rh !$N @ A$R IoΛ $AX1 H$JN<,$$ R  ӽ񬪪 -5rФ` JIn  H$I$qq I$H$qq @I$qq H$J1<46& !i&r     #1``px !1𤧧 A I$qq A qq h&h4R IMϣ iIqq I$A$qq I$I$qq mR$m۶1 R$ Σ I$I$qq I$I rn IH$qq I$H$qq $Iqq H$Hn<<$$ f 1  IrU S#15r```` Jn  I$Aqq I&mۢ1 $I qq HDL\Q&''' I$r I$I$s -P5`xxxdDRФI$HϤ &@  C;4$R1z~ZW p[16&'' Iv-Q-+  I I$s* **I$I$1A$@$1I @$1I A$1H I$1II$1A $1I$I$1I$I$sII$s*(II$s*I$I$s,-1```IdI1ФH  rI I$rA$ $r xT LrФ77%%u[>666 I$I$#`ppdAP@RФ!I$IR1I$I$ $A$Ϥ  ʴ rФ6''% iIIA$Š1````TRФII$ϤH$I$ϤAIQRI I$Ϥ.!1R1@@@pt AR AIr1rI$H$QR Ң-"R1bH iMR1* 1ډR1I IϤA$I$QR h6]ӶR1 I4I"R A$ $ IҶm_ I$M&Q A$iҴr1^VVV m&E[ѵ񛪪 @  R1_ H$1 H$I$1 I$I$r @ H$ X[6rxX AiQ I$ $R IA$rn I$rn H-- I I 򬪪 r I$r꺪 I$Ir Ir_ $I r I$H$rU I$A r @I$r $@$ӽФ A$I$𤪪 I $𤪪 $I$𤪪 IH 𤪪 @9%rϤ`hxx  hk&1 ٖbY1񤫫 h$H$1HI$1&''%MVnr01@ӽФb'`'rФ`hx I`2'`&1𤸮E$@&1~I$I$I$I$1&'/%JBQ I$I$- 5hxxxIdIRФ $I$rR]wYA I$ϤII I$II$III$Ϥ@ H$ϤI I r1 &l$R1(  4 f0R1 mI$R1WW $I$R1 II$R1Ϫ iI$R1/ I I$R1wU~ 0FSr'%%% m4$SW Iir N$DB'Rxz ybFlqI$ArI$ $rI@$r ɔה1-S#1zzzx 'l d-c8rzrz~ dfѵ񓪪 NI2 I$I$1 I$I qq J3rr- i$I$ @$I$ H$r I$I r_ H$I r| mHAӽФ 1!ӽФ I$I$ӽ I$I$r* I$I$S_ E$I$R I$H$r @4rQH$H$q1H$H$1nxxxx   I R I$Irn I$I 1HdLD1n6''/   r $I$r (0Ф`hxxAPI1 I$I$rI Ir HE$ҵ𛪪 P PR&''- 8 ló I$A$55```d DH1A$I$rIH$rr $ r $I$rP--1m$@$QOI$I$QOI$I$QOI$I$QOI$I$QOI$I$0pI$I$I$I$I$II$I$n''I$I$0I$I$0Ϥ_~I$I$MzzxxI$I$MI$I$￿qL 𤺮* IIRJdKR''//   r r -#5``h ItA1Ф qq I$I$1 ѵ񛪪 \r''/- )Pr @򴪪  $@򬪪  򬪪 r @$H$򬪪 @I ӽ @@ rI H$S 4@s MФms @ ES rH$H$r2I$I$𤪪I$I$rϤxxxxI$I$nI$I$0PI$I$М II==== HDL16''% ii۶r I$ $ӽ񬪪 99r`` IIo I$I$1 I$$1 I$ $1 HDR&''/ IAr @ 85`ppx P1Ф I I$qq A$I$qq hk61  I +ݐv1 m)qq  r81𤫪~~ Ic1𤪪 d2I$0 )m1 I$I$qq I$I qq II$qq I $qq I$I$qqHLd1N&&'/  ӽ𤪪 ӽ񬪪 9ң%Ф`xxx IIn II$qq I$A$qq $ qqIXIr----  H I I$ 55hxxx PlPlRI I$Ϥ hX6R1 h6M&ѵ񛪪 0WdUw1n//`r*UD6س1U i$1U ֮'1U hI$1U жi$1U @I$1U Vm1UVr?1Ua$WD81UVr$1U mm$1U4~$W "1lrz_ umۭ1I H$rI I r $I ѵ񛪪 LprФ%%--M7777 A H$ 15r```p d TI1ФAI$R1A$I$q2H@$q2  %-%- I $I$I$s-`` IaR $I$q2믪A$A$R1I H$R1II$Z1R```` pHR  )I$H I$I$rR@$I$ϤH$I ϤI I Ϥ  I ϤI$IϤ $H$Ϥ I$iR1ꪺ $m6r)+* I  q۳s* L'1$r` a$Hb&R1 I4M&R1ﯿ m$m$ѵ񓪪 I 1  $I$1 ++ hڶmӽ $AR_ i&H&Q II1 IIrn I Iqq I IqqH$r1 M$R U  m$1U 0Ikk'U I$ФU 0In<ФU 4Id;rФU 0l$rU Mc'rU m&rU mmI$rNU ɑ ..' I$@ 1 $I1ꪪ A$I 1R%X< )1 I$ӽ I$m"r@x #@rZ qArU c@QU AQU & QU ٖ AqФ* [ݶarկ IŊ1U Ivka1U IL,RU IҤ] RU m'LؒR @$M[RU $Mr1U L$ WMvUIiUI&IUMvM `US iWI$+rФUI$vHrUI?}.rUIw@rU y 4Ir/ 2ڲ-0BB@@1dKC ?ھ-1```71 $A$rI$IrH$Hr $IR1YI I r1_ MMѵ񛪪I$A$q H$R1UI$@$1A$I$1  I$1H$I$rI$IR1KdHD1,(((I$A$ϤA$I$ϤI$A$rRWv $A$ϤH $Ϥ"-"R```@ R I$A$ϤI$A$ϤI$AϤH$$Ϥ AI$ H$H$I I$ϤI Ϥ I$ @ $6R1z~ X&m4P $I$r0 IM$rQ?? q8r v'6Cҳr^ I&mRU I6mWRU iҴ(m1_Ona1U I$k;l1U Im 1U]8`1UyMUIUw%UҶ& ФUOޖ&@ФUҶ&AU yUIҶ#'U IҶUI⶚IU IқU ORU IU I$U I$ U I$-rU IrФ j;r2 I$$ ӽФ C& r`x` H91'' I$[;`1"H$i1~I$4I$I1] I$I$1]R  $$R1   A$R1 m @ R1U H$E4ѵ񛪪 IdI1/ I$ $R1 $H$R1w I$iR1Wj IR$ 41  IR4MR1 I4)1I$I$r Mm"r ISѵ񛪪A$ $1 $IrA I$ѵ񓪪I$A$qI$IrI$A$rI$I$r $I$rIH$rII$rH$$r ZZƓ1%%%% I Is $I$ MZE h6k6Qxzz I0 Q I$IrU KŒRU I$ RU* O$IRU NLr$A1W ϳ I1_ ?1U O")UmIj{ת֘(i1USۤ(HUO$) U OVU ւU^6HU IR'@ФU Җn U I<@rФU~I${HQU I$I Qտ* I$m ФU /%)  ĉ#Lr ҖlUr `h`hd .p RФ H$I$R1 I$A$R1W{ A$A$R1yI$I$R1Z MҴhФ1" IR)Ҥ1  I4h&ѵ񛪪 IӦ@ 4ѵ񛪪 i($1 Im۶1 I$ѵ񛪪 I6M1( I-6ѵ񛪪 I4m1 iR)1 M&H$q qێmq I$I1* I 1 IB4 1 Ib4l1 IҢEѶ1 m۶h۴1 I I$qq I$ $qq I$I$qq iRmqq @ $qq/&k>'QoIIQo6aaRnP%b1Фޞ !!Q) I$￿ A$z #1^ &U Oh1U nm1U IRIr1U v@W Oڒ$rU ՗𤵿 y~&U O$U I^U IҚrU I¶UI'S$rФ_I$I$rϤUI$I$RϤUI$I$QФUI$I$rU"I$I$rUI$I$rϤUI$I$rϤUI$I$rUI$I$1n_I$I$QMU*I$I$Q I@r1 IRӽФɀ0r`` ɖLHN II$1 I$I$1 I$I$1 HI2 Ii"2 MҦhڦ1] I$I$qq qq qq I$I$qq vL$Aqq C$Aqq I qq qB3$ 0ꪪmRlIB 𤿪**+ II1 Iqq I$I$1 I I$qq I$A$qq II$1_ d(I$ 1w I$I$qq II$qq i(1w qq mۢA1 I&I$1 I A$1 ȩ1N,,,$ m]nr AI$SU mI4S I$I$r I$I$r~ I$HӽФ I4IrQ IH$rQ" I$IӽФ Ei4r I$Ir @$Iۤ -M  hI$ $$  򴪪 H$ 򴪪 H$ $򴪪 H 򬪪 򬪪 @  r $H$򴪪 @  ӽ  ꪾ H$ @  ӽ ӽ-0Bbjj1C)  5Ф`'AI1 I$Ir $rII$rI$I q2I$ $R1I $rAIH$ $R1ꪺIH$rI @$rA$I$rI$IrI$A$R1ʂDN1,... $I$ϤII$ϤA$ $ϤI$IϤ  A$"(")R1jJAAR $A$ϤH$I$ϤrII$QRI$I A$Ϥ$%B%RϤpp $I$1Ϝ_ $I$1ϜWUW$I$1W –dI$1Ϥ = 1d@Q0 $I$q1/ r I& *I$I$I$@$s$ $sI$s*H s*I IsAI$s II$s**H$Is"I$I$I$ $I$ I$I$ I$I$ I$H$ @$  II  I$H$ I$H$ II I$ $ $ $  $CS  @$r I$Irq I$A$ӽѬ -"r` !1 I$  ѵ񓪪 I$@$1ꪪ  0i1𤫫H$M$1~z JR A$IϤI$$ IiR$R1 L$cR1z IIr A A   $R1I$ $R1AA$rI I$rI$ r H$rI$IrI I rIA$r@rI$A$rII$rII$r$I$ѵ񛪪 $I$r A rA$A$rI H r$Hr HڤM1--  $ @mѶs * Ib I s2wQ<]a IbI Ivk iҢisA$I s"I$I$sI$I$I$A$s*H$I$sH$I$sAI s*"A$@s (I$$sA$IsI$H$s*(I$A$sA$H$sA$I$s$A$s" A$ 說 v$c:RXh`` iI$rQ*** iѮir+I$I I$I$@$H 5P91`hxx'pRФ I $I$ $R1@$ R1ꯪI$I$R1I$I$r A$I q I r IA ҵ𓪪I$I$r $I$rI A$r $ $rI$ArI$A$r 'I$q H$I4q I$Iѵ񓪪 4MrI$$r I I$r I$I r A$I$q M۴ ڴ1 I$I$qq I rn m۶Ц1 H$I$qq ` 2H'1HƭS'𤮪 𤫪I$IRnp$H1Ϥ6666 I$r1  A r" / H r I$򴪪 H r AA򴪪 H 򴪪  򴪪 򬪪  $ r @r @$Ir Ar  r H 򴪪   $򴪪 @$R"$rzzzzI$I$rQI$I$rQ I$I$ϜI$I$rQI$I$ϜI$I$Ϝ IɕTrdB! r~N$NrQ !irq%  y; ArUUj ir @ӽ𤪪00r`` 9JI  II1껺 C0:1 I I$1 A$I$r I$H$r tB't1 IA 1 AI$qq I$ qq I$Iqq A qq $I$qq HA$qq ihrn I$H$RI$H ΣI$I$Qo iI$Σ  ڶiR -4I$R qq mM6qq IA$qq II$qq I$I$qq AI$qq I$H$qq I$I qq inn1 I$$ѵ񛪪A$$r JtJPQo&&'/ I R4r I$A0S I$I S I$ $r $I$r I$Ir I$I$SU I I$S A ӽ񬪪 I$ SW A$I$ A I$r I$ $ӽ I$A$ӽ $I$ӽ $I$R A$I$r AI$r @I$r $I r @Ir   뮪 @ ꪪ A  $ @ $S H$@$ӽ񤪪 R"퓵0@BJJt `j  -Ф```x`HD1A$Ir $Ir$ArA$I r1H I$r1]A$I$rI$I$rI$R1I$I$rI I$rI$I$rH$H$rI$ r1p{R mHI$A$@ AQRA$I$I H [5[mR1z~j* 11iR1I$I$ϤA$@ pLtHR1>I II$I$I$Ϥ @08Rp``xI$I$ϜI$I$𤯜~"I$I$]U IIl0Ϥ )vv I$H$p1 A$ rQ=  A$r $I&I$$s $H s $Is*I Is*"A$A$s $I sI$H$sI$IsI$A$sA$I I$  A$I I$H  I$I$ $$ I@  $ 񴪪 H$I 񴪪 i &s -A$r H$Iӽ H $r $ $r3 I$I$r I$IRWU Z#5Z5xxxx I`I q I$A 1 v$t$1V 1H$M$1IAR I I$Ϥ I$H$IR1ꪪ I$ R1꫺ IH$R1 A$H$ I H$ ɐeId iMqH$r$ $rI$I$rI$I$rA$I$rH$ $r rI$I rII$rA$A$rI$@$r $I rH$A$rI I$rI H rH$I$r HۦM۴1  $@$s  MڴE6s ii ` Iv蘳rI$@$1II 1  A1I$A$sI$H$s(IIs*" $s*A I$s"* 峽rض 糽*$S"@ A$s$ $s I$ $s $I$sI I$I$I$sHAs(*"*I I1 AI s(* $C"rzz @$HrQ 1r  @tB'r [Ѧڮ򴪪 -$I$򴪪 -j>`xx ٖm1 ڢm$R1iU m$q I6ѵ񛪪 @I$q M4HR1 $I$r @ A$r $IrI$IrI$Ir$IrH $r @"m r mҤH$q I$I$q I%I 1UUuA$I$R1 I$@r1}I$Ir1 I$I R1w I$HR18 H I$R1(  ɐ 1 I$Iqq m۶m1 Ia$i1 M5C31 X5k&1鄎𤫪L 𤪮*H ϛȇ\ QФ7'// i$irQ  I$ $r? A$I$r $Ar H򴪪   򬪪 I$ $򴪪 I$A$򬪪 $򬪪 A$A򴪪 @򴪪 @ 򴪪  H򴪪 A  r 򴪪 @$I򴪪 P$@$rZzzzI$I$rQI$I$𤪪I$I$ϜI$I$rQI$I$rQI$I$rQ b Br)=  A r 锢0IQ7 Ibbr I6A6򴪪 I$$rꪪ M6h4r #9҃9rФ````  I$I1 [6E51z{ I I$1 ڡŚ1 @$I$r II$1 H$I$1 I$I$qq H$Hqq I$Iqq I$I$rn I$@$qq $I qq qq I$I$qq I$@RM۶[ QoA$I$Rn$I$Σ M$R  $R I$R Arn HI$qq I$I$qq I$ $qq I$I1I$&L1 IA1I H rAI$rXN~' / m$rU huirU 4mm;rU qI$rU Iu$UM-rФUmۓФU $A%r m;U DmrU @L$U m$r vq$U Ӿ-U ]8rUm6rU I'rU0mϝ$rФ UI$rФU@I$rФU@rI$ФU QI$ФUm~$rФW0I$rUI$rUI$rU>I$rnU$I$RnU 2I$QnU pb1$QN #9}$R`xU Iٔ1Ф @$1  m$61 MӶh41 @1 A6M$ѵ񛪪I I$1"@ I1  $ ѵ񛪪 $$ѵ񛪪I$Aѵ񛪪A$I$rA$H r $lm;R1 Ixl1.* A4I$R1 I$ R1* i$ $ $IR1A$I$R1 I$A$I$H $H$A$ IҤi4R1J H6@$ Aۆ$ -Zm$R1 #0m1@` IXH1% P,/]1 I$mr IHQ* I$M4 I M$Q hQI&Q_ vM$rU i&Um$U-?U7$UԶ8UV?1U$UF5?Uq'Um?U 0im;ФUmm8UIe$U 0M-<U il$Um$U0m$UM$oU $nU 4$rnU Drw$rnU i$rnU m$rU@I$rU MI$r*U $U 3'I$Q~U t 4I1Ф A$$1 I$I$1 h&h&1VP@##H$H$1𤮮IR )I$ $R1I$H$R1IA$R1I I$R1ꪪ I$-R1꾪 $$R1 A$A$r h1 iI$1* $ $1 4h$1  mS4I$ѵ񛪪I$I$ѵ񛪪 $I$rII r$A$ѵ񛪪I$I rI$ $rII$rA$A$rH$IrI $rI$I$rI I$r$r mۤH$R)) PI$rU -6I$rU !]&z am1++ hvM&r*U  I$rU Ö$ɒdrU ÖdI,r} $iv$rU hI$RU ڶM$RU -ڡi4RUH$K%rZI$I$QϤUI$I$r* ֶi41UR1U &'U im$U `۶$U mU жd'U TlU P$U dck璵U$N$Q_I$Q*U @I$ϤU $oI$U mI$UP&I$rhz_U I01Ф 1 m[(41 H A$q )ڶ-ѵ񛪪 A$I$ѵ񛪪 6&;1 ֶI$1U  x1U MA41r MҠ $ѵ񛪪  Ӵ81 $Lئ$1k m6$1 I$I1* i$r1-I$A$H$A$Ϥ I$I R1 H$A$ I$I$R1 I I$R1 H$A$1訾 -i&qqɖIt1@$A$r (Ҭ11񤪪lЦm𤪣_qT𤪪  Σ I R iQФ - *kZrU mrU InrU A amӶ1U I$1 i$RU I:v$QU $Aq$QU  @81W 0m$r1U I]צ1U  il璵U 0I$rU  ie?U IdU@%m$rUI$I$rUI$I$QUI$I$QUI$I$rI$I$r I$IR K[-r_ de=rUDM6Ǔ U m,k?U im'ФU J1ؒФUvmrUh'~ҼQФ`p~U !YМ I-ֶ1 E6m۶1p| I$I1ꪷ A$1 _ $ $2 ֢m$1<W I I$1} )ڶ-$qq I$ $1ꫪ $qq $I$qq HI$rn m&m1 M$I 1񤪪f $qq H$$1 M6h&𜪪$$𤪪m$𤪪U(m$𤪪6( } (P-𤀀 I $rn A$qq I $qq A$$qq Ns1𤯯 MҶm$1 Mۢmr $$r "i$R𤪪 M$AR𤿪 Ib$Aѵ񛪪 I4m&1 $I$1( AI1 I&iӤѵ񓪪 M4A1 I-ѵ񛪪H$@$R1 *I$IR1ݪII$R1II$QR߿ A&ڶ Ib6lR1]U)"R1~nj I4hѵ񓪪 IHq I 1着 I 1磌 I 1 II 0뻿I$I$11 1~$ϣ R@@$ϣI𜿪 IҶm𜺪 A1﫫 Yn01 m͓!1Ф@J I!U- IBvU I^U IҶUIҶ& Uϖ&AUM@rUӶ AФU߶LrФUߖ$U޶(AUo$AUyk$ 1U I[% QU Im1կ I&hӶrR" I$I$r2* I$I$ӽФ I I r  H&m&SW II$rׯ I$I rW I$M rU !$ R 6lۖrR MҦI$rQw I$ r1 M$i$q1W  $H$Q1U_ I$IQU* Ibۀirտ I$$r1u먀 M$iR1U I$IPR1U I$A&R1VWZX q$v1 A$q I q qIq ILqI $rI H$rAA ѵ񛪪II$ѵ񛪪A$I$rI$I$rA$$1 A$$1 i[1" I$I$1  i Ҷ1 ImҠѵ񛪪 i (&1 II$1 IҤI"1 H 1* ImZ1 Ni1  ci1 IiѶѵ񛪪 I$A$1ꪾ I A1 I$I1 *ɐ)1Фjj I$ rU Ir?@U Ib۔ФU I$rQnWI$QnI$I$rU IOr$9HUӶ& U _$ФUS% rФU OUörФU õU O@rU I&rnU I\rU O\&ArU irryZ)Hrժ ]UIA1U Iٝ&L1U IbH1U Nb6aQU MҤmnRU mmRu I$( rU LrU IErU I8@rU IvHR`I$ $r H$I rIIr k&M&ѵ񓪪 鐮-mrA$IrHArI$IrI rH$rI $r $IrI$ r")I1Ф`I$I61UUW 1 I$@$rA$A ѵ񛪪 I$H$1 I$I$qq I$I$rn I$H$rn I I 1  1 I$ $ѵ񓪪 M"mӶ1* kk;1\6A IQ ii1 I$A$1( IڶEѶ1 (,(1@@I$Qu+ I$`rU I$$)`rUI$U I$HU I$MUI$$ rUI$$ U IĶYUIB&U ӶU I֚HU I$rU IrU Ib$U ݑФU$ $AU _(UIb1U*I31U #aRU I61U OB`U IܶjU Oٶ&U I!Uꪀ3&X&rϤ_zI$I0U*I$fArU IUNXrФU~z Iۡm1 bcy1ڪ I @ 1 I1 I$H$rn I 1 I$I$qq I$Iqq @qq I$ $qq Ii1 I&I1 IBӶ2 I$ 1 M[M۠1뮮 I$I$ѵ񛪪 I $1 d&$C21_CA$Rn [-ز-1{I$IМ  ɕTIQKФ'/ 1 130 A$ѵ񓪪 H$@$1 MIq iirA I$r C:01 ٖm1 I I$r `!1jJ ~w'qrU nCФUuRה ФU IU vRےrU IU I&ArU I rU IIRU I?U I;@U I$`rU I$6roU I$6oU I<oU I$% roUI$n rnUI$~irNUI$I1-UI$I 0 UI$I0-UI$I Q-UI$I^QNUI$+rnUI$1)rUI$$ rUI$$ rU I$ rUIR& U INwUIҲ)AU IbE1._I$I rI H$rH$H rA$ $r I$A1I$A$r $$r@I rI$$r1H III$$I$H$ Ϥ HI$q2 I$H$R1 I$A$R1 I$I$ѵ񓪪 @rn I$@1 I$I rn H  1 i&m $1~$i$  @m1w $I$Rn $I$Qo  R I$R IR I$I1 I$I 1  (@@@ NNϤ---) $I$ h$I$ mۮb򴪪 MI$ I$H  $I$A$ sIA$s*IIs"*A$Hs*I$I$s@$I$s @I$s( Ke2l H$I$r I&I3r I  ӽФ H0I$r]U $A$rU (6I$Q AIrQ Av$Q( mö$rQ  I$ $ $rQ $AМ $H$ IIrQ* M$iQU* q$cór I$I$RH`@@ $IR1  II q2 ImѶR1x L$Ib$q II$q i$H$q Iq Aۦi$q ۖ[$ѵ񓪪 A I$ѵ񛪪 $I$rI$I rI$ArI I$rA A$rI$Ir $ $rI$I rI H$rI$H$ѵ񛪪 $i$ѵ񓪪 I$i$q II&q H$I$q =1z $It$1 A1 )E4r II$1磌 IHq I$1 (@@@ NJ- ) A  H$$򬪪 X%X&0\\\\AirqH$L$r2 BBrI$I$ $I$ I$H񴪪$Is.$P/5rzDqr AIB򴪪 @۶Irꪪm$Hrw A$I$ӽФ $I$rQ @I$r0  iI4r A$I$r I$Is*A @$sHI$s(*II$s* $Hs*A$I$1I$$1I$A$1I$H 1H$I s m$iR````I$@$r I$I$rII$r H$HqI$A$rII$rI I$rI$I$rI ѵ񛪪II$rA$r I$rI$I$rI$I$r &I6rIDb$178  A ѵ񛪪I I$r I$H$1 I$I$qq  I$qq H$Iqq $I$1 I$H$q A $ѵ񛪪 I$H$q h4@1Mی  2 I$$ѵ񓪪 ѵ񛪪  (1@@@ q --- HAӽ A $ $  @@$ H @$ I$I$ -ڴm۶ I$I$򬪪 @$I$ E6i$^ I $r I$H$r( I$Irݽ I$A$I$I$$  sI I$s*I$I$s* $I$s I$I4s*A$I$1 A$A$1)E $r"II$s* H$I$s L:DB0QzzXqQX IZN0 r/+ [FHrս I6-6 mk1Xxxx H$Ir tLt '1000 H1 I$ 1 I$I$0 I$rn  IR I$I$qq IH$qq I $qq I i$1 I$H$R1 I$I$R1   A$R1 MtMtq A$ $R1 I r ۲5:`1 I$ 10 C;C 1z 1 жM61 $ѵ񓪪 $H$q A A$q Hѵ񓪪I Ir $H6$10&$1 vm۶1 $I1-2jI)J1---) 6lۆs"*I$I$ qb;6bسꪢ I$ $ I$I$  ӽ I$H$r I I r A$ & 6bضm IҢM dB i ڵr IҶ躡r I M2`rW I$H$r1蠠$I`q1 wJAq1+ tLrarQ IIr*  r  ӽ ӽ ӽ IM I$I$ $I  h$M&s '^RA  rIA rI$ $rI$I r II1$IrI r $I$r $@$R1$IR1H$A$II$I H$ $I$ M$m$R1 I$I I$A$ѵ񓪪 A$A qq II$1 IӠmۢ1 @ 1 M&h1 [[ RI$H$RnQoI$IΛ IAR I rn qq I$ qq I$I$qq ,5@` Ir A @ II$򴪪II I I$H$I$H s H$I$sII sH$H s $I$sI$ s*H$I$s*I$I$s ꪪ I$H$r II4Q 4H4rQ mI$rQ mI$r0 mmQ0U FbIQ1 61 QQ뫪 nirQ $ $Q m$IQ I4M"rU M$m۶r I$ ۳ I$A"s IIRh`ppI$ $Ϥ$$:Rh $ $$R1RjR_m$1$l1۪i$1_ E-$1 mX$1U 0H?1U $I1𤪻 ؜'R U$$1UAs$1U I1-1= I$A$1ꪪ @ I$1 M&i$1 H&i$1 I I$qq @$I qq M$I4qq I4Iqq I$I 1%@1Мp I$I}UU $I"I A*I1 }2𤪪 I1 $Iv|1 (34`pp  H$򬪪  h9:0\\\\ѰmDMӽ𤪪H$H$r2r$HI$I$I$A$I$A$ ۲m۶ H$Ar II$H$I  MӶ I$H4r~ I$@$rU_` I$I$rQ*" I I$Q $ r  II$r ٶ`ɒl Ai&s*HI$s *  M[4IӴ1H $1 $1I$I 1I I$1A$I$s I$I1````H A$ѵ񛪪I Ir C 4"ѵ񛪪 IIqI A rI@$r $I$rI$A$ѵ񛪪@$I$rI I rI$I$rA$I rI$I$rI$I$rI I$rA$I$rI$@$rII r mM1 mh1 m۶-$1 t д1 E۶m$1 $I$$1 ; h۶h$q $$$q  `;ѵ񛪪 и61  1 `$1  @$$q (2=1@`p O)) h$򬪪  $򬪪 ӽ   ӽ I$I ӽ I$I$ӽ I$I$򬪪 mh&r A6Mr I I$r I r I$A H$H $L$I$IAI s*I I$sH$I$sH$H$1@ $1 $I$I$  s* X%[$r X6mr0xx I$ $Q0% iIQ+  I&I I$  vL1XX\\ I$Iqbm1Inj1ﯫK6 1 v-1 H$rn -M۶R  $R qq I$I$qq II$1ꮫ $R1/*H$I$rR H$ Rw I$ $rRu? IH1_\\\ A$I r I H$r t C210|2)-1~ j1 hڠM41 IH$q I$ q IM6q Ii ѵ񓪪A$Ir Hh[1 $I$qq I$@$qq II$1  M:2>; rA$I$s* As"I H$s I$I$ I:v س II$ $I$ӽ񬪪 $r uu$r  mdr I$I$II$$I$ A$I  A$I$ I$I$񬪪 I$I$r K͸rQhh$IdHq1   rQ  I4iӠr몊 I$I$򬪪 I$A$ӽ I$H$ӽ I$I$ӽ I$A$ӽ II I$A  I$I$ 6Фc;rjjk;A1<I I$rII$rI$HrI$I$r m[E$1$A$ѵ񛪪I I$ѵ񓪪H$$1 I $R1+*UI$$R1nU@$H$ѵ񛪪I$I$R1 } $R1I $II$Ϥ I$r1A$I$R1H$H$ѵ񛪪$$qHI rH$A rH I$R1] H$M$1 H$H$1ꪪ )R)1 I 1 $I 1 I$I$R𤪪I rI$$rI$I$rR 1Ф8 I隵R-) ؉۳) H$ r C4R ^4m$1U i$(U 0auF>糽1U `ij1U PUY8R"U $L$RU ۰amRU k[I$RU 0IijR E$R -жI$r U 8q$rU -"m$R^ $I8Q0U$1_l$0廊U Frd$0" IQ vrr0 jVlr2  IIS]W MI4r Hvr ir I6 IBҳ (nIn1pPP $hIlR1hҦe۶R1\ IҶR1^zRV Ivm1 Ib4m1ꪫ I&h41ꫪ ME׶1 I&hڦrn Im6 Ivֶ1 i7u$H1/* #)1W0 I 1UUq$)H* iv1 -$H$ѵ񛪪 $ $q $1 H$H$1񤪪 I I$1񤪪 Ih$2 I I 1 $1w M-&R𤪪 4E&1 @$A$1 ad$1 $A6020nm1-m'1˯ 1 #$B2$ pJI1 $򬪪 @ h6rjz X&K$r^-$I$rUI$I$QnU K rN  $䓵ФU $m-䓽ФUqn8ФU  Im6ФUm,ФU m-U6l<Umm䓵ФUFro'ФUmmޓФU 4lrU TNb'rU ضm$r𤀪U IdqU  r*U  ۔ 4$Q U  rUۀm{$r (^U$I rH$ sAA$1I$A1H$ s i 1pppPI$r$Hr [6E&ѵ񓪪 Iv)nѵ񛪪 ArI$I$r $Hѵ񛪪I$IrH$I$rHI$rI$I$rI$I$rA$I rI$ $rA$I$r@ I$rII$r I$r m r $ѵ񛪪 I 1 I4I$1ꪪ I $ѵ񓪪 I $ѵ񛪪 IM$Q I I$R1_U II R1wVU v:C21蠠 IH$rn Iۢiѵ񓪪 IA$R1ߥ 8/%1ФP d NR  I m$ I&M4rj "@):rX$he$RW&II$QoUII$rU II$rU I$rU 0rI$rnU mI$rnU 0n$rU@nm$Umm$U4i,Umd<U @N6ԓФ meU6}?U  zǓU IijUFfUm8Tr䓵 PI$1U O?rϤ_ 4~20W FSQ+/-% Iir)+ I H$s c'p 'hjhh Lr1\\\\I$ $r Z i1 i[4hѵ񛪪 $ r 1ꪮ k*1_ i۶h$R  I$R h6rn $E 1 iA$ѵ񛪪A$H$r1II R/I$I$rO M۶+ڶrAAU H$I$1^\\\ I$A$r a۶$1 Ҍmk&1_ -b'1 mֵ M4I$1 $I$q $I$q IIq I4I ѵ񓪪 AA$q H$I$1 H I 1ꪫ H$I1 I$1 pQ155  閤r ۖ 6lk$rj '^ $Mm$U me>U c:r 4I$rU @I$rUpI$rU mO$rU $ӒФUmk$ФUi$4ФU Hۖ<ФU$m$rU $U D$U$I$QNUݐ$I$QNU NI$rnU čI$rU mI$rUPI$roUI$roUкI$rU @fI$r*U !!N* I$H s I I &"5R` 1<,,I I$rII rA I$rУ% 1NX(&UOФUI(@ФU ߵФUö$AФU yζUI$' U$)U$ տ* Ib{Uwr$9lUI&I1US$ iWMIUӲ'HU CU MܖUvܖ$)HUS$'LU v IQU z$QU ۶&ФUO rWꠀ d1N I A$r I$rH rX,ښ+R>>> ;cڳr r +. @$@ r` ɖn͖br1III$I$I$I I$R1wI$A rI$ R1 "I A$r2UI I$R1$I$rI$ R1/-. @$A$QR$I$ϤI$IϤ Ib#CRꪪ k$h&ѵ񓪪H$X5VzzII$1oI$I$ K1C1 Ii0  R1==I$ $I$I$r1 i $R%%  $Is* HI s(* mMs IIRXXXX M6ϤI$I$R1蘨II r d&tHǓ1  i&ZrU" I$mnR_ӒA1U HU HrU # `QU IQU I qФU* ӖrФU N꺔&HrФU I&rU InIU _rUIbHU uФU I<U IR&@U IU IRUIB& U IRUIb$ U I$0RNW l` @ Rn1???0 @ hG1< 1!R  I򬪪 (``ɖ @n, I61 L2;М 1  IФAЦR*A$$R1A$I$R1A$IR1ݪ $I$R1H$ $R1ߪI$$R1} i$mѵ񛪪 I4m$r I 1 Ii$1 I$lѵ񓪪 Ҧk;1 I4h1 IҶm ﮮ I$H4 Iiqq II&1/ I2Lnѵ񛪪H$AR1UUUI$A$1  $H1I$I$1I A$sI$I$1XXXXI I$rHI$r m&M&1 1m۳1 @Is $s H ꀊ N8a( H$I$ Iۤ 4( a$A$ I$I* I$I"* A$I$] H- rW q$0 ³rU I$EۢRU I$m;RU Ib[51U I$mnRU MҶaRU IڶEQUa1Uyn,aUڣ$ U M4HU Y6&rUjtK)t1 I6h&2 61 dB2&B21 c`,1< )GADAQ   @Q򬪪 [5[341`` = 1Ф, I$I$1 I 1着 I I$1 I$A$1 H$I$1~* iҴI$1  I)RU  II r1U ii"r1U IӶHr1UI$I r1Uߪ $I$r1U $A$R1H H$r2WI I$R1/I$I$R1H$IR1I$$R1H$I$R1 IЦI6r v"tbѵ񓪪 C'L:1~ Jz"'Ϥ 9C&^R???7 رr I$ $s  m6m6rhbx k7cr1VVWWH$I$rII rI$I$r X/:b=r1U%% I$]RU IR۝6 RU U Ib6HrU k$'r* &Ar1U 8m1U Ij1 I] r5* q€MrW2-쳽rA i6A4RUڒIr1_I$I$rWI$I$QUI$I$1U .o$HrU I8mrU Iarժ 0& r I$m[1U I$M[QU* 1 r1 $I$1^^\ I$U I$U $I$U @]ڥr?--- I$Ir I$I$ @  rjzzz  J1𤨨 NN1 I$Ir1U m44Q %Σ $1 h$1ꀪ]4`I$1m D I$1 $ I$1Aۖ$R U$ @2Q f ]vh$Q S'Id1_ ۪aVj Mt1u ImQ1WqijVa1񤿪 Ib30c:103 I$1 I$I 1 I$A 1 IҶm 1񤯪"  $A1񤽪*Z1Ф*8 횵)ڡr $m- (C1`pp `1IA$r I$rI$ $r xr𤶶7' im۶r) II$sI$A$s*I$I$s s *H$I$IA$I $I$ A Is"*II$s***I H s*II s*A$Is*I H$sI$II$ $ H s F6b; M$E$rQ| Q-- I&m* S61Rpxxx&dItI1 $I$rHI rI$H$rpx[r7''/ L$A$룪 IAr h&mr JiRQdTA@rI$$rRoI$ $ϤH$ ϤH$IϤ ϤI$  $I R1H$I rA$I R1 I$$ϤI$IϤH$$Ϥ$I$  `->1𤨨M۔$-R%I$I I  IA1𤿫 II1 A4IqI$IAI$R1*II 1 I$s*(AH$s"AH s  MAR\\^T@$H$r1I $rA$I$r H$M1-  $A sI I$sI$Is* @ I$s ˲$[2d IE6rW_z i&HR$rQ I$A$q1 a$rQ" I A$R Ii$S I$I$S m$ $ HMR4 I$I$ I$I H$M @ IA  A I$񴪪 I$I 񴪪 HI񴪪 ,1Ф` BIN  I$m10 m6m11𤨪HK1$6&& r I$ 򬪪 ,1h`N H1 I$1 I 1I$H$rI$IR1A I$R1 $ $H$I$r@$A rHI$rI$I$rII$r$I r@A$r$I rA$I r I$I$ѵ񛪪 I$M q I4H"q $I$q Nq I$N$q ۤѵ񛪪 M$I1 HI$1I$A$1$A$s A$I$1X\\\IA$r HҤh4ѵ񛪪 H4Mq $$1 ) M[$I$rFrֶI$ i$ I$ жI$ mqڳ I$ $$ $H$ p&I$ ]v @$I$  @r 1av$ $I$ $I$ $I$ @6m i2$Iꪪ n6n p  ,5R```` `b1 C't&1 $I$1 EI$1 JH144$&  iR @  /19```p )B1 h۶E&1 qq  H$qq @R A I1 IIѵ񓪪$H$ϤI H$QRI$I Ϥ $H$rR~I$HϤH $ϤI$$ϤA$H$ϤH$A ϤI$I Ϥ@$H Ϥ$I$ϤI$IH$A$r h4M$1 Hb'N&0 d"%% 1ZZ: jHdr7777  HH$s"( 2 2rxzxz i1 I$H$r $A rI$A$r HH1--%- I$Is**A$I$sH$H$s m5ڶr I r I$I$ꪪ I$  I4i$* AIs***I$A$s II$s I I$r Z%Z9rz^_I$I$rQ|I$I$q1I$I$q1 IiQ* I&Lbr IAr I0I$r m& Ҷ򴪪 i$i$ꪪ X#Bͳrzzzz I$= Q\V\ I$q МUY" I$I"МUU I$I +Q$ISRϜ / &$$)HrU $$-HrU $O")1`zx` )$9Ϥ * ې?m1( Im1 %Im1m$I&1UU $I$*I$I$0pI$I$𤯜I$I$Ф"I$I$ϤI$I$Ϝ(>H$I$WWUI$I1MI$ 1М I$c1МI$I"  Kw+A(  $Ib2IB1U I IW p 1𤪯 @ I1 _IR xJR66& Ilr $Kr~^ ` xnj| 1Ф $I$rII$rIAr HTr''  I$ $+A$As*@I$sI$Is**I$A$sII$sI$ $ A$ @$I$I$ $I$sI$I$s*I$H HHs*"*A $sII$A$H$II$s** [-[%r M$I$q1  PQ-+ $I$-hhxh`AP1Ф I$I$r$IrI$$rrT|Qw1%%-- AI$s" $H$r E6m%r iQֵrRLDR>6.<H$Is1II ϤI$ϤA $s1ᆵI$IϤHA$rQWUYH$H$r1 $I$R1 $R1AH$ϤIIϤH$I$ϤI$A$ X >1I$I$𤯜8(I$I$М+*I$I$񤪪 @BI$1𤫯W I$1𤪪 uI41 m۵iR1jU I$H$R1 I$I$R $$ I$ i4I$* A$1VV IڢAR1A$I$r$I$r I0IR H$I$s $ sIA$s*I$I$I$A$s i&Azꪪ I'Db;r_~ HҢhrQ MI$q1 1 rQ + $Hr/ I$I$r H$I  I$I$ I$I  II$ A$I$ II$ I A I@$  I$񴪪 IA񴪪 P5أ=r```` ٖmn :4K$1 $Rn@RnHI1n&''' DA r I$I$򬪪 =Z"&r```x I - A1 II$1 I 1I Ir $A$rI$A$rA$rI$IrI rI I$r$I$rA $ѵ񛪪I$ $rI$I$r $I$r $R1I$ $R1A$H$R1 I @R1U A I$R1{ I$  ѵ񓪪 &M$q H$I q HI$1 +I$I$s   I$1I$I s A$I$1TTTVII$r H$$q M$I&q I$I 1 @I R H$I$ӽ𬪪 @$R R* $I$r -ڤI$r mѶi$r  I$H$򴪪 A$$򴪪 򴪪 Ar꺪 $r r껾 A 򴪪 $򴪪  򴪪 @򴪪  $򴪪 򴪪 @ 򴪪 H$򴪪 #9`x ITI1 dB:81$ QiIrnHL1&./' iӽ𤪪 A ӽ񬪪 P5P%rФ``x  I  I$1 A6M&R I$RIR II0 Dhdh1" :I$A$ϤI$ $ϤI$I$s1AI$ϤI$A$I$IϤI I Ϥ $I$ϤI $Ϥ $ϤA$$ϤI$I$Ϥ $ $ E6h$ѵ񓪪 ("mR$1 I$i$0 I-vq 805Kr''%  I$A$AH$s* ?C:1x  R𤪫I$I$rI$I$r r &{1--  IM$s*(H$s*II$s"AI$s( qbڶ ó II$ hM$r H$I$r I$I$r m6I$ I$Hr I I&r hm۶rQ I$`2rQI$I$q1* I$IrQ  $A6r M$I I$I$I$I$sI$ $ꪪ $H$ 2tk۶r i8C8R||~ -I1 I$I$1 I$I 1 HdKtr/ I r @$Ar P ,P51``` tIdH1" H$H$R1u $IR1 I$R1 I AR1w #I$ r1^ IR1000 I_ I"1II$IRU I0RUIB42UH$I1 H I$1 `&`'1 I$IR   rn I$ 1 I$ 1ꮮ I$q#1 I$I$1 I$I$1 mvmt1H$I$1C{U HPʰOr&/// m&a I$ h```dP1ФI Iѵ񛪪$ $rI$A rr&R%--- I$ s IH s"  ڦA5rx^'_ -7Um<U M$U0-'ФUi[ܓФU IlФUmd'ФU  m?ФUil䓵ФU0mmФU@$UD~ēU -瓽U m-:U6mr] ۰mtQ(*+- iir--))A$I sخ5``ph Yt]WRI I rA$IrHI$r aWU1--))I$A$s H$@$r m&ir{ )6Iq2 OOR?7H$I$ϤI$H$ϤI$IAH$Ϥ$I ϤIIϤ $I ϤA $H$A$rRA$A$ϤI$ $rR~eI$AϤ i4m$R1 -ڲ#1~I$I$Ϝ88(I$I$/I$I$0pI$I$_]iI$I$  i&1; )iR1 A$AR1 I$I A$ $ H$I$ @H I$Ir1VW^ Iir1~IH$rI$I r I ҢrH$I1@$I$s  I I$ -ڶM4rW mI$rU 4hI8rU Hē1 @ h$r1~W m'NQФ bi$QϤ*U TL$r*U PmؒUTN$1UdzU 4l${瓽U 0 ēФU mm$U $Qd$U $Ф* mvR/- II$ A  @%P1ro```` 0R Rn @ RnI$IRn---- 'r] $6r `2&`'rNxxxx r1 m&kR1 ۖm 1 _ODvN1mq&1_D&B1 Ңi1*" M[$I41  "A1  $1  M[M$rI$H$ѵ񛪪I$Hq $ѵ񛪪I Ir $I$ѵ񛪪I$A I$ϤIH$ϤII$ I$I R1* I$iQ A -Rq I$I$q I$IQ ːeK$r  (6A$$I1I$A$r1TVVV tl$H$ѵ񓪪 IH$q q Cѵ񓪪 &M&R H$H$ӽ񬪪 H$I$ӽ𬪪 @IӽФ I$A ӽ𤪪 @$@ ӽ𤪪 HA$ӽФ @$I$ӽФ A$I$R @m'1_ 0I,ؓ1U A$y?U M]k;r] 4$U mI$rФU  $U $U I$rU 0Mu$U I& mѢir H $򬪪 H 򬪪 59r``p !&m1 t&C;1  QI$I$QIId1----0rQ"*  $I$ӽФX"&J'rhhxx P`0М I$I$1  rn AR II$ A$1껺 d@dh1"" $R1(} mI$R1" (ҢE$R1 H$I$R1 @I r2w$Ir2]I$I$R1$I$R1( HIR1*I$H$R1H A$R1 IA$R1 &m0l;R1W [۶h&q I$I0 I 1 !رmѵ񛪪 w---- I$E$s I$I$s1/2``px iQtuR𤫫IA$rA $rI r ntiT1----I$I$sH$ $s  Eۮk&rxX4d:W u<U䓵Uq'U ЮI4r @N$U ڴA1 @ۦ r1" ڶm$r1W pq$r1 ()=r1h廫r1 *i lrQ mirU $iijr *U mHr* iIs**I$$1I$I s H$$r X 1| mvi۶rn )1 I$I 1 LɐL----  򴪪 I $򴪪 ,#1```p ii1++ . $I$ II$ A I$R1g]} H$I$1( IH$1 II$1( I$I$ѵ񛪪 -Z-&q I$I$q  I1 A1񤪪 H$1𤪪_ 6k1𤪪 XZ1 I$6a1 I$i&1 $I$qq II$1 $I$1 H$I 1 I1DJ$I1 AA$r  P Ф%%-- M$$A$s*#xxzx !iR𤫫II$ѵ񛪪$A$r 6-R7JߔM-  $I$s* I$I s* X&hxxx IIѵ񛪪 I4 Ҷr I"mѵ񛪪 MӦ $r IӦ)4ѵ񛪪 Ii6ѵ񛪪 Im41  I$I 1  I4H&1  IM$1 M"hZ4r I M1I $1  IҠmѵ񛪪 M4M $-11Ф@` Q++-- ۉr  $I$s h%hxpxI$I$R1I $rII$r I4 $r IIr-)+I$Is* C"C2 I$ArR@I$H$r1 LDM$F1.&A$IR1* -"h$R1*+ N86rU* I%۶ rw Kdۆmr IҶkۢrU v$ar  I EӶrU MҦ][rU i4mrU m&m rU I$IarU :ۂ5r]jj` 36q0\ I2+ r蘆/ I$H$R( I$I$rUI$I$RH@I$I$ T1U &h6R1 I$A$r1յ I$I$s :pb'  Ir 1rQ m1 mql1 L1+ h۶I$q IA**I$I1@ I$1 E$m$rhhx@$I$r $I r r A$R1 Ibؠq M&[61 MI$1 11* I4I6ѵ񛪪 $I$ѵ񛪪A$I$r I $ѵ񛪪 I"m62 A$2 IӴ)1 [--1Ф€@dN+---I$I$ I$I$** PPxxxx H$$ 0CIڲΛP-ΣE R 𤏜@ IIn---- I$ $񴪪 c3`$rnz~ X&b"gQNxxx  1 I$q m&i41 D\!1Jj I R + IU IҒU yҶUӺ$ U CU ϖU*MФUC$)@U =UynmU Ii1ի I$KarU I8mr  I I$A$r`I $Ϥ I$(&r1 II$ѵ񓪪 I$iҢQ>/. I$I$r I$S_ I$$r EH4rJo $M۰c'ѵ񛪪 @$I$q MIѵ񓪪Ir1 is L$Hb; M&h M&@ r~jj I$I$0 @ R @$ R H$I R   R hZR iR I ϛ I$H R   R I I$1 mh۶R m@rn I qq Imqq m 1p `  򬪪 $  rZ%`rФppxx I$$q 2C:1I Qo 4@IĉQ---- $rQ4$ rQ H$K$Qnxxxx R I$ $R  $rn &"!@@I$I1̃+ I$I@rNU I$ rnU ~޶IU yRAU ]rФU O޲ФU ۺ& U SUqN(AU yU q"U IU CUInIU FXeRn_z C&Hҵ iI1 iIq ڭł!1.Nd-)  I$Is I$Isb xxxxA$H$r H$rI I$r kۡ-.R𤪪1 1----I$A$s* $I s -Ɠxx IS &q I6Iѵ񛪪I$I$ѵ񛪪 I$@$1 I $q H$A$ѵ񛪪 I$IR1U I I$R15 M@1  ILѵ񛪪 I$ 4ѵ񛪪 ̿؆m1 I ۆm1. Ii۶ҵ𓪪  $ѵ񛪪 $H R1 i$I+)I$ $1 $ s( M&m$rhxzz fB;6Bѵ񓪪 $1m1~DI$I1 I$I$R1wU OiN 1-) qҮ4@ Ib;$ꪪ R9 }`xx 1 I$I$ѵ񛪪 A$I$ѵ񛪪 ,!1Ф@I$IRnU+ I$ArU I$@rU I$AU I$ФU I'&AФU I$lU I$ rU I$U I7ArU qHrnU Ir$rnU I'IrU I$) rU I$oUI$K1 _~Iڦ6l1 $I$rI H$r (!1@Np ----A$I s I$I$s-~xxxxA$A$rI$$ѵ񓪪I$Iѵ񓪪 :ز11Ȋj 1)+ I$I6 A 4cFc^rx $HrI$IrrI$I$rI$I$rI $rH$H$r$IrII$rI$A$rA$A r I$I$1 II$1AA$r  풂1@@ ) r---- ضA۳ $I$9gAG1x^H ӽR 5UH$ $1_p$I r "r1 Am A$1 m6M4s mE1xxH$I r kh1 r I6i&r1 AII$$1 $I$1A I 1HI$1I$ $1@$I1I$H$1I$$1I$ $1 ?8Q``p H$I0<>> q1“0 H$HrI$IrWI$I 1j`@I$I1oI$IМ@ 𤻫 д=5= -ڶE$s 񬪪 ӽHh $@$@R R [qD .*. I I$r?=7I$I$s*** H$I1I$H$1 H$IRhhhhI$ rH$I$r $ rA IR1$$r dB3:ѵ񓪪 I$@$0 11*++AI$rI I$rH ArI$@$r H @$r $I$qI H$r1@@/% I$I$ I$I///K$KE\Xؘ v`RUZU i$m 𤮪 Mڦm 𤫪h @4N@@ II --)  (6I$s L:C3rQ@ p(Gs4Nؘ I$Iq $Iѵ񓪪 24--1hn"1BBBdJФ--  I$I I$I$ I$I  II$ I4I&H$H$I A$sI IsI$I$sH$@$sA$I$s*@I 1A$I 1 @$1 I$@r``@`II ϤH$Hr1H$I$r A$MS 1 IR$ s( A$I$r I$I$S i$m$1@` A$I$q I4iq Ihѵ񛪪I$H$1H$  ԽWU~ I$H$ I$H$ I$I$1@@@ I$I$qq I I$qq Iqq I$mrn I$HR @ @R @$IR   R   R A$R HR @R A $R IR II$R (")1jjj JJ -- m[Mr @ I$rk`fsrФxX @$H$1 جkR0 ` 񤪪R R,n@@@TIr--)I rQ*  I$I r2 MҤM1ؘ A qq I$Iqq I$I qq  (n@@ ɐ r ӽ񬪪 N퐳r ´ Rœr*Z mR1_p E銶R1ny]V @X1PA&`  A$A  @ @"rjbb4rIA$rI$I$rI I$r ]%[215555 II+I I$sI$H$s I I"1xxxx $A$R1 $I$R1I$I$ $A$R55%%$I sI$I$1H$H$1 ۶m2, ۆmI%r( $I$r I I$  II$* mÎس  I$ '^ ~vsr555 I A  A$I$ $L$ mm61ppx m;mR1U I A$R1j lЮR1j Ibh1-%%I+  Xٳ$񬪪 1pppPkk51P R1* A$1 h)1%%%%I$I$s I I1 $ $s mi1ppXXI$I rII$r@IrA$rI$Ir m&@ r k&h&1u t1++/I$I$rI$ $r mд$ѵ񛪪 iI4rH$H rI$ $rI Ir#41Аf 1 +  E$I4s -жm6r zzI I$1UUA r1XVUUI$Ir 1А)Bf1  L$I$Q ))0r1@`L166&&I$A$ѵ񛪪H $ѵ񛪪AI$rR9R,1pАNpI1  IIRӽ -Vm6rzId?^4m%ܓU IuФUDmߓUD. ij1 iq$rU Eѵm&r mHI$I1I$I$1I$$1H$ $RpppPI I$QRHI$r1~II rH I$1%%%%$IsI$I$1I$I$s S7!1zxPP H 1 +  $I$ѵ񛪪I r $H$1%%% H$1H$I$1 pB$I Iֶ1rppP IBI10 Ib$I10 I$M1 I$$1 I$m 2 I$IҢ1 I$I$1 $I$1 II 1 H H$1 1ꫪ I$A 1 I$mR1 I$I$0 HAqq  1 lQ   11``  I I$qq I$ $qq I I$qq @ P1Ф iiQ  r꾪 ؊-X5R``` tKB1𤬮 A I$qq I$I$qq I$A$qq RŠ+rյ%kMr1UIbw rտ* I60 1 Il;$IR I&mۢrU mn6rU i۶A r} I$ $1ZXX\  I$q I$H$$ - r15%%%  II s( E66r``h ɖɚlR1TTTW )m۶1믪 A$I$qq II$qq P 1.>.. I6R IM6𤪪1r1`pp K1Ф'' IIR1u^_ I$@$R1Ue] H$ $R1v @ P 1Ф<<  )R $@$ӽ C:R``` 1  I$H q I$I$q iҢm۶1 I$ $1 iZm۶1 ݂غ1 M$M$0X&x$8ILQ0 )% IrQ +++ ,-"5r1`` H  I$qq I$H$qq I$rn Rb 1>>6 iir M[$m$(lh;Rz`K?1, I$r$H$R1˫I$H$r1 p,Jr17''' I ꪪ [ ,X5Rzzzz tJI1*+ I$Iq  1 I6I1jzr7' $ r A A$r I A$r A4I4 I$ $񴪪 $I$ X5@61hz/HR H$ $R1/> RzDi&iR1nz h x1 n)n1 I$I$ X-Rh'JIR I$rI$@$rI$A$r HKڤ1---- II sH$I$1 M@$s A RXTTT IM R1H$ I I$Ϥ c;M۳R  >rꪪ$ rկ  A$A1H  R\\\TI$I$ϤA$I$r1$ $r1ꪫ I$ IϤ @56R1b H$H411uK--- I$I$1 m$ $s I$I$s*II$R\\\\$I$sRU5UI$I r1I$I R1꺪AA2 II$1XH\\\T@ 1U1if1U A1U a!1  AI1 I$1 m&E$1 MI41\\\TH$I$rI$I$rI Ir &M1  I$Is )6M$:0xxxx NIrQ mir ++)A Is* ,5B.1`)JJ1 I$I$r $I$rH$A rbx1$$$ 1۳r+ A@$-/1``!A1  $I$r H$H$1 A$q pH1<<44I q1 I Q-// -` )J 1  I R1U I$ R1U $A R1U} hgHTRϤ4$& iiۢr+ Iböm۳ꪪ1`JtI1 A$ $ѵ񛪪 I r@ rII$rI I$rI$ArA$ $r H4i$1 I$ $1 I$1H$I$1A$I$R\\\\I$IϤIA R1A$Ir I$h$1 I$I sI$A$1IA$s  [5mS41\\\V nm1  h @$r $IrII$1 I$H$1 $I$s E&m۶s $$$I\\\\ II$1 $$1 E$1M$ и mѮ6 @@HH s*I$I$s*A$s*=`O61`x&P1   I$rH$r$Irh xRФ6666 ɒ`ْlr I$m R- 1``J1 I$M$1 I$I1 IIl1 hptQФ66& Ymۢr+ M$h$,#ѓ```! I1 H$$r hѶiѵ񛪪II$rhp1<44$ 6r H A$񴪪P)@Փ1`p !ah1Ф  I$I$R1ug I$ $ I$I$R1w] I$I R1i I$I$R1 A$I$R1]wn I$Iѵ񛪪 r wR6&&.  r A$I$ӽ 4P9Ϥ````   111 + I$I$ѵ񛪪 I$I$1 HH1666& I$ R   "1``p J!J I$Iqq I$I$qq I$I$qq pH1>>&& )iR   *"͒`` Ф  $I$qq I$I$qq @qq HKڤr%--- rQ mIQ//// II$r I$I$򴪪 I$I򴪪 I$@ @$I$r   r| I$I$qA$I$I$  Jdr1- -- i$ $ M"m$ #=,6Rx&DA 1(  I I$qq I$A$qq I$I$qq `x\r𤷷5  I$r I$H rW~"5P5rϤ` ) I1 & ѵ񛪪 I$I$r I$I$ x HQФ6>6& I r @  11`` !1Ф  II$R1} I$I$ I$A$R1 I$I ѵ񛪪 I I$ѵ񛪪 m6@&1 tB'H$J$n44J Q ) I$IrQ+  -"-r```` )  I$I$qq $I$qq I$I$U h_x\𤵷 r  񬪪 ,P#51` AI1𤮯 A$I$1 I$I$1 H$H$Q./ 0L 1%%- A  @ 񴪪  11``x `@1 # I$I$1 I 1 I 1ꪪ xJr'%/  I$i$s A  򴪪 I$I$r I@ 뫫 IH$ I$I$#=6c61```pIT 1Ф II$R1 I$ $R1 C8c;R1~~__ HʡX46&' ) Q)))H$I$P51``MDR  $rI $r $Ir ČɐR-I$ $s $1 I$$ 1$hRTTTV M$I&R1⸪ II$R1**II$Ϥ@$I$r& q Im۶s* $I$sN$@1I @Ϥ$ϤAH ϤH$ rR$I$Ϥ [8R1hxzx M4I$1𤾮 1JJ1 I$ $1 I $ I$A$A$I$RTVVVϤI$I$R1ꚪ $H I$I$RI$$1 m&m&sH$@@rTTTT0 r$EW 1RI I$1H$AR I$h"s  1TTVVA$I$rI$$rH$I$r ˲$Kd1 A   m"MR$rz h&k$rQ\\\_ h$I"Q0? 1ar A$sB5RhxxxdIP 1I$$rI$IrI$H$r P 5KR&/'/ i4I I$I  1``pxpP1A I$r I$I$1 EѶE[$ѵ񛪪 HL4&&' ۱rQ== Ir 01Ф`hh `1 I$I$Q/. I$I QR $IrQYYUe 00r&'.% A I$I$````tIT1$Iѵ񓪪H$Iѵ񛪪@$I ѵ񛪪I r H rA I$rH$I$r hI$R I$I$1I$A1$I$1 $I$RTTTTI$I  I$R1j$I$rA$I1 $@H$1 $@L;s ҶmZ4r1TTTT m)$q $I$q 6q$1 m سR )I$I1A$I 1 tB$B; @$TTVV I$H$qq $Iqq IH$q M"1  I$I$򴪪 $ 񬪪 6H 2  ID泽_ A%'r $糽r $Фx`1Ф$1"  I'10W X1 X I$1&''% 6I$QкI$r_$I$r`xx$I$NИ$I$0p@$I$$I$H$I$1'''%$I$R $I$rWuX$I$r`xx I$N1H I$rI$I$rxtRn&.// $I r I$I$#:`ppxbZRФ EѶmR1 I$I$ H$I$R1] I$H$r I$I$R1u H $ $I$ T:r'/// IAs I$H ӽ =9r```` 111#+ I$I$1舀 I$I$qq HdMxR&''%   Ir  ꪿ 9#9rФ``` AI H$qq I$I$qq I$IqqHDKXR''''  $  r A 1"1`hxx IPH1Ф I $qq I$ $qq @qq * nr----H$H rQ IIQ I$I$򴪪 H$I$ H$I$򴪪 A$I$ꫪ H$@$r r|tv I I$qII$I$ $ R*L--- 6P﫫 񬪪 *11`xx  ` 1񤪩 I$I$rn I$I$qq II$qq HTJTr5'%%  $r  5P1xxxxp II$q   R1~} A$I$R1_ P Pr&''% $I$r I ?&`x @1Ф @R1 I R1 H$I R1^u} I@$R1 I$H$R1VWVU [5[51Њ=1H$I67'' iMT r1-  I r) 11r``` ` I I$qq II$qq $I HP8%Or$$$& AA񬪪  񬪪  .-1xxxz dID1𤩩 A H 1 @$I$1 A$I R1  1---- $H @  "͓1xxxx !&i1 H A$q H$I1 I$ 1|y-- II s* I$I$ [6rx^k'WFR$U.<U orz_ I1 MM$R1 H4M& E$hR qH'%-- kzQ- $I$sXZٳ1xxzz mRI$H$rII$rII r1 KtI`R----@H$1II 1 Fb8c$$I$sQv M )4R1ࠨ R1+**H$IϤ P@ `$$y>@UT$H  I$rR^I$H$ϤI$ $ϤIIϤI H$ФH$Ϥ`?[3R1||_\ II1𤿯. AJQ II$1 I&I4s A$I$@$ $r1~I$$R1۫AI$R1I$I$rAI$r I6)r%m۳@@$ $RTVVU𤮪X,1I$1)RQ) II$r EI$r m3$r $I$r1TVVU m $H&ѵ񛪪 @$I$ѵ񛪪 i$I$ѵ񛪪 HдIr &L$r c't$Q~ h6h4Qz  Ip$0W Prkr  ж$1UX?6snz m1 $A$rI$H$r A$rt?SrФ--  II$ A$IX5X#6hxxx MPI1Ф I&M$1 I$I$1뮫 h4H$1IdIQN//--  &HQ-+  H ӽ 9X%rpp P01Ф I I$R1U @$ QR HA$r1 Op %%-- I Is*A$I$s""*/#ђФ```p II1ФH$H$qH$I$qI$Iq H4ѵ񛪪 I6mr $A$rI$I$r I$I$r I I$1I$I1 $H$sH$H$rR^I$H$QR $H$A I$R1_ I$H$r$ $1@$A$s H$Is I$I$r I'L3q  I$ѵ񓪪 I$ 1. HA$r I I$ $I$ H6M$ I$I$1 @ $qq I$A$qq II$1 A I$r I I$򴪪 A򬪪 ((&rz I-r^I"A$$rUIBm$RUI&I$1`x_ IB  I1МꪪI(4ukI$I$0pI$I$QN/---I$I$ӽФI$I$ӽФI$I$rxxxxI$I$𤏜I$I$I$I$ϜI$I$I$I$Qn----I$I$r2I$I$ӽФI$I$Qn```xI$I$o IVJ1𤕽 $H r $I r TOr'--- A$ $ A$I  5Фxxx A&IR I$I$R1 I$H$ A$I$ $A$q I$I$q I$I$q I$I$r TO %-- A$Hr  @$r $&r```pA Mt1 / h۶iQR I$I qqXIr-%-- I H$꺪 P%X"'r``px dI М A I$qq I$I$qq qqTIr----  H$ X5Z5xxxx mڭ1驫 I$I$qq 6m$rn $I$RH۠Iq1-I М iir0 @  H$r I$r I$rW H$I$Rj II$1 HI$1II$rI$@$ѵ񛪪 KO---- $Hr  @ r 1Z5hxxx !!a1𤫫 HI$1 I$H 1 $1~ TOrФ---- $rW @m;rWU P9N$rxzFh$1𤩩U%I$_U $I$1} $I$1wI$I$Q/---I$I$rQI$I$rQ**I I$rФhhxx D 4I1 II$ I$I$ѵ񛪪 @ ѵ񛪪 mѶh4R* mE61 =/51j Ĵ(*IdIr%-+ I$I r I r 5P5hhxx mP1𤩩 I$I$qq I$Iqq I$I$55 N섈 RՕ 񬪪  񬪪 ,1``px !i1񤩩 I$A$1 I$1 E6h6q ivi1) A H X%Xhxxx I$A$1 @ I$1ꪪ $I$1꫺ -ڢR 1@7I1--)+I$ s* H$A$s*@%h`xx M-ѵ񛪪 I6)R1ꪪ I A$R1 M$i$R1 iM$R1 I$I$R1[_ I4h&r C[@"1@@ -)) !IrQ 55 DJrbZxxxXA$A$R1jI$IrI$I$r (ҶE&R1 qgwr----I$I1H$I1 X,[drhhjAI Ϥ $ $ II$R1 E4A&sQ I I$A$ $@$H$sI I$ϤH$I$ϤH$H$ϤAI$rR5 I0I$r  i$  X&xxxx IdqXr5% --Z I$ $1 2)2-r  I rhjIH$rI$IrI$H$rI$I$r1  I s"  ("!rI$ӽH0R@& 𤪪@%m$1~ $I 1 ɔPɐPr A I 򴪪 @$)&򴪪 $I$R@ I I$q I$I q I&I$q m&Ҷѵ񓪪 IIR/ H I r2 E&IҤq1 hӶmڶ0 I$M$1 1 KeIdѵ񓪪I r rHrH$$r C6;1@p 𤭭--I$I$ a$H$ XdxxI$A$ѵ񛪪H r  0$2 ,!@@  rN--- I $򬪪 I$H ӽ `&r"roxxx I$ 1 I$$1 AI$R1 ۶!r𤊪j ` r  aسs**I$I$s PФxxxx IEӤr $rI$Ir ضò-1``! rФ-  q6IR  I rU*  r*  I"s** I 1A$ 1 M$I$r`HI Ϥ $I H$HI$ r1? I s" "* $A$sI$H$s I$i&rbbI$ $r $Ir I$@4ѵ񛪪 $I2R?* IMr I$H$ I$I$ӽ H$I$Q@ $I$qq H$I$qq I $qq  1??? IIr @򴪪  Ar h5k1hxx Iqq I$I R I$ 1 I&E61ߺ m۶Œ 1o R h61 Lr<I$H$𤏜@@I$I$rn---)I$I$ӽФI$I$r2I$I$QnxxxXI$I$1oI$I$0pI$I$ϜI$I$𤏜@I$I$r----I$I$ӽФI$I$ӽФI$I$Qnxxxx I$I}.D 1***I$I r :2)1М@@  ---) A$  I$I$ Pѐ)~rФpxXXH$I r1 H$M$R1  ۺۂ-1𤀀@I$ r+ I$U IbU IR*  i$@Q  A@򬪪 @$@$r X%b"&r`pxx `1!1  mrn *(М@@  r- )  $  I$`&z2'rxxxx I$ rn qq II$1꾮#î-1Фjjj I! r- IҶ-ڶr qHr jErФxxxX ILA1 I؆m1  ڄC'2[5𤀠jm 鐴1 dhq1 vmצrQ= -mrk} I$I$1 $I$1 IA$1 I$H$1 I$i&1 vf&H2I $r 24C:ѵ񛪪 䔓1--)-  $񬪪 Id;rj&h$rФhxxx @6 P׮$ ڶ$UE I$𤯜bI$I$Q )--I$I$rQI$I$q1I$I$1pxxXI$I$I$I$ϜI$I$I$I$𤯜hI$I$Q---)I$I$I$I$I$IQФppxx I$I$q I$I$ѵ񛪪 I$Iq  1ФJI$ɖ Rn  I$&@ФU I$[5rn_I$In*  0-  AAr  r ЋFrpxxx i۶hqq I$qq I I$qq  I$I$ I$I$ $񬪪 X՚}xxxx I$I$1 I$I$1 $1 *ɒ,q 1R  I  񬪪 'frp I$I 1 I$$1 I$I$1 ò-۲51뫺. !esnR)/+ A s( $I sjexI$H$H$I$ I$M$R1 I L$R1~ I$H $I$ I I$q "1Ϥ@@@ )N%Iq IIQ0 )** I rYu&xZH I$2UUU H$A$1UUU I A$1U 2,]ӭRUUU imr)-  $H$Խu_WjI$H$s MФIRhhhI$ A$q2 K%2$R1 iM41???=II1 II I&H s*I$ $R@I I$ϤIH$ϤH $ϤAIRA$ 1I$I$s/x|\^W05% $I$sI$$1 A$1 IRBBbb rI$@$rI$ $r MS4h61I$H$s*((* )"!r@ӽAH1@@@@$ꫫZ ,𤪮H$I$~I I$r𤕕 r H H$ I&A$򴪪 IH1`` I$Mq I$I$q $Mq C;c8Q1 @$Ir  M&Ir\r $f'rQꪀ hҦm Qx I$1 I$I 1 Mq A)$ѵ񛪪HI$r $IrH$I$ѵ񛪪* 1@@@@Md-)-)I$I$ I$I$ ڇZ rФXXؘI$I r k61W\ II"R  "!n@@@  r I$$򬪪 rjj rLQؘ I$I 1몪 $1 I$I$R1յ (ɒ,)RФ@H @- A  I$A X~[4rФؘ@$Aq2I$A$ $A$ " -R1N Vo)nR  II  H$I4I$I$s *H$ $1H I$1 I$1 IArH``h@$I$ϤI$I Ϥ$A$ $I 1? $I$s * $I s I$s i4I1`H$A$rH$H r I$I$r C8c2r1 -$rꪠ H$I$ H$I$ӽ Hr1@@@ R жM۶R $HDFR M[4m6r5 IAr A$I$򴪪   rꪪ XYR$Yxpxx I$I$qq I$I$qq $I$1 Zm519I1 5 .[51CRH$M$n@@@@I$I$rn)+ I$I$ӽФI$I$rQI$I$1XܞI$I$1oI$I$I$I$ϜI$I$N@I$I$r--) I$I$ӽФI$I$ӽФI$I1nؘ$𤪪 !q$1 @ 1 *)1@@@@pNd ---- I  M&$jjj FbrФ؜ ڶm&R1T^] $I$R1 $I  1Ф@  Aӽ $ $ӽ A$ $ 򴪪 @[$"`JdrϤXXXh$i&Qo퐶m1 -iR 2)Ӳ-@@  rϤ A$I$ꪪ  rjjjJKQX I$A$qq @qq $I$1  n@@ NnrФ -) 0iL$rWU +m&Q~ X$Er41؜ $I q HI$1 Э9𤠰 ,R @@ ĉ0 )-)iQmI$Q0 * mIr1@j{ I I$qq H$A$qq I$A$qq I$ $qq I$I 1 I$I$16 > 1BB $I$E$I$r H$I$r1 $I$r1{I$I$0pXI$I$ϜI$I$Ϝ_I$I$𤯜I$I$njjhI$I$1 I$I$Q1I$I$q1I$I$XXI$I$ϜI$I$I$I$I$I$𤎜@@`I$I$Q) I$I$ϜI$I$rQII1Фؘ I $R1  H$H$ѵ񛪪 .)")1@ ! I R#9P#1ppppIDIQ I$Ir H򬪪 A$r Ejrx I$A$qq qq I$I$qq I$I$R H$ $1 $ $s @ $񬪪 ]X rxxXx A$I1 HI$1 HI$1 "-P#9ѵ񛪪 !!ir  @񴪪  @ r srX I$ $1 I$I 1 I$I1 ۂ5C5ѵ񓪪 i-r--/ I$I$ 4c#4C$r mr1A$H$I$I$ I$IR1 II$ $A I@ I$I R1[k-0r z Ciۮq1 M$HQ0 i$ $rQU4r𤘞I$I q2I$I$R1H$I r -Z-r1?= miۢr I$A$ԽjU]I$Is LIijRxzzxI$A$ӽRUU@$I R@WuU C8m;R1ࠠ I$I15555A$@ 1I$H$1I$ 1I$ R@```II$ϤA I Ϥ I$ϤA A$R555A I$1 c8 &r` pB't8q^^^W7S0--- H @$1$I1 H$ $ iI$1``pxIAr I&($ѵ񛪪 M"mФr EE$555% 0m4&s*(*"-6Hӽ$!A@```@ 𤪺X&I$zV^I$IaV,55% 9rH$H$s I"h4ꀀ II1jxph I$Ar I M4r I$@ q c3c8155 I]r" ɶ$ضm I$H"r LȄ1^^XX M6mq i$H1 $I$1 )Mq ڤM$ѵ񛪪 A$rI$ $r-1`pp O)B1-+ I$I$s* X-[%hjjj|}RФ @ r /11j Hhrn ",0@ ` I$I$򬪪 m6m6rjjjj LM1< I$I$1 I$  1 AHq ,,QФ@` Q  I -6@6rh}Tr𤘜HI$Ϥ $IϤH$A$Ϥ Ҳ12R1z 11r)+  I$I s I$A$ I I Is**A$I$1I I$1 H$IR```pAI$QRIHϤ $ $ M&i&R55 I Is*I s"I$A$s*  hI1````H$H$r $A r I$I$r M$M$155 A I  H i6hrꪪ HHr@@`` $H$R R R $I$r5555 I$r I H$򴪪  I2$Cr sTTrppxx H$H$qq H$I$qq m۶mQ41 E.mv1jI$$ H1М m6@61o RE&@$𤏜``pI$I$rФ I$I$ӽФI$I$r1`I$I$N<I$I$1oI$I$I$I$Ϝ I$A$n``I$I$rФ I$ ӽФI$H r1IdI1n𤯪 R tI1,91n@ nx H h;68rj` MD1<< h&k&1 I$I$1" I@$q ,01`pXX 'J 1   $  AHӽ I Aӽ @ &rHMDQ0 ҰCQo ܴ$1𤪪 Iܔ;o "-R3%@`pp  nr E-rU a-1j NID1 $I$R жmR iI$rn (4N@`` Q I$I$ c';q1jj K << I0Iq M$ 6q @&m&"1R#4``Iv1 m׶kQzA&1? NS1 II$qq I$I qq I$I$qq A$A$1ꮫ 1 $I$qq  1jjI$H$1U*I$I$r +I$I$rQ I$I$rQjI$I$1ؘI$I$0pI$I$0pI$I$0pI$I$𤏜``ppI$I$QϤ I$I$QQI$I$r1jzjbI$I$𤎜I$I$I$I$I$I$PPI$I$n@I$I$Q I$ RUU) I$u hRUUj@ IN1<< I$I$q H$I$ Iѵ񛪪 ,01Ф`ppp   H@ ӽ 00ppp`IIDQ  I$r 򬪪 - m6rj z$r\ A$I$1 I$I 1 I I 1 @ I$1 I$A$1 $@$1 I$H$zxx |}QWr1\\\\ I$H$1ꪪ I$I$1 I$q X%X&r1 I r  񴪪  @$r M R1\\\\ II1 I$I1 I$I 1 R'd@%R1 Imٖ r AH$s" A$@$r Nt=sr1\\XX i6@$R1^ ز$K-R1WU $I$ &Ir I4A$ MIR1 IA$R1S;Rښ0  I81LR I$m&rQW_| a;c'Q4eS6k1Ϥ,..' 4R1@ $R1 I$r h%h2$r1?5?- ¶۳) H$I$1A$I s iHRzXxZI$H$ϤA$$rR]W_H I$ Ii$1%%%%  1@$ $1I$ $1I$I RppppϤA$IϤII$Ϥ$IR%%%% I$s 5R#ԳQ``x hm0𤨬 dCk0-  6IH'W mI r $I$r} Il1ppx^ I"m ѵ񛪪 (жHR $I$R I&Cڒ%%%% i  H$Г$0SM rpppP&ݲ5oH$I$𤺾Iɚ1ﯫ$ $%%%% uGrI$I 1H$A$s ːeɶl1xxXXI H$r $H$rI I$r Ai$15%% IZIs*"**I$A 1 A i$s MۤmѢ1ZZXX H$m$ѵ񓪪 I m$1 I$I$1 I$1 mmt1 a۰$1" m@41ҽRښ:* `!r-) II$s" m6mr``h4OP R𤜴 &L:t$ѵ񛪪  - 1j IҤA1 @<@$1ФZښ ٔ R  H 򬪪 :C2Rjjzj 1<,& I$I 1  A 1 I$H$q @$RϤ nR AA E6m6rjjh|a R<,,A$$rRAI$I$I$Ϥ ã=RФ  I uv$RU +ڶi$RV hWiR  mI$rU ۚr *U Ir* mRxxzZI$  $@$rRwWA$A  I4HR%% M$I$s A$s IIsI$ 1pppP$I$rI Ir  I r M$I15%%% I $ I$I I I  H$`ppp I$@R IAR m[mڶR @ $r5%%  ӽ𬪪 Ir @$A$r  rxpp m۴E1 AH$qq 1 ۱01ꪪ IM$q hm&1j IжQo d$P1Zں*I01- I$QXII$r𤀀zII$-<(.IlI$UII$UI$I$𤯜*UI$I$nII$r1  A4rE$@$r1@@II𤏜4$𤪿Eϣ 66`1𤯯 $X%n𰐐 IT1 n!fnr h6rhxrz  <$, t'C81| $ $qq I$I$qq $P$NP I$rU mI$rU @RI$ϤU PR$ФU $U m~$ФU:6I$rU lN(.'")ڢ51jjj~I$I$1MII$Ϝ*@%_&N9Kr)ېmrQUU,3;qzIə N<&&H$I$RnhQo II$ R%B"%-А Nr𤭭 I$!arQ  i$m6r1jj` P 166.. imѵ񓪪 N$iѵ񓪪 m&@1 #=@"1Фښ q4Ar1  lr0I$Q~~ɐIt0𤾿 &1R @ II1* 1I$ 1 II$1 II$1 $I&1МN$I$1ח%Ir1+  I $HQ I%iR I @QФܸ #I$I1֪ i+H@1 -I 1٪ b8@1ФZښ 㩔0   I$rUI$J1zzx`I$I,I$I: 1UU* I$1 I$ 1_] I$l%1А I$IrA ɛIR*ҵC,1 L1Ф466& I$A$ѵ񓪪 A$H$R1{u} $I$q @$@%1oP oI$r u $ФU"9q$rz_I$I$M * @Rɝ$rФU $Iv$U  $rU  1Ф(<'% I$I ѵ񛪪 I$I$q I$  1訨 I$A$r A$I1 I$A$s H$@$rj M HR1\\\\ $A1 AH$1 I $1꫾ Zhr1%%% I A  $ @$I$rzz  1Q1T\TW I$I1 I$ $1 AH$1 ZZR/'// 1!س $I$s H 4s m6kҦ1z M4m;r1W I4]rU I rU I UI$m+ U_#'HUò&AU IlI1  A$Ir I4mrW~z m&6r~zx tC!j1Ϥ' iѶIѶR1? miR1 $I$ Xh1?/'- I$Is I$I1A$@s  IRXX\\I$IrR}I$ϤH$I Ϥ YdK-2  his I$I 1I$ $1I$ $RPXXX $ $QRI$I$ϤA A QRI A ϤI$A$Ф"`3R1p||_ I1𤾺 1RH$I rI I$rI$H$r H$r HӠAr LB&d&1  𤻻@5hr Yӽ񬪪ӽ񬪪A$m6ӽ𤪪 $I$rXXXX $I$QOI$I1-I1뻺@ 8 nnr c;UUDcr~iX^ۤ I1ߟ&mID1?7 $I$r fLNB&1%---A s"  A$sH$I$s( qb'pbórz Ll;$Rת Nb'P=l1_ %$ir m'kAqU_ OX$HQФU* ]$rФU Ol$%LU9n m+ i&I  $I s P5:r`xxxKC1Ф,  m%h&ѵ񓪪 [5[1 im&1 P` QФ m r A 񬪪 ۊ5C5R```` 11Ф I$I$1 I1 IH$1ꪮ @` 1<< !!`R $A񴪪 ]35:ٳrjjxzɔOR I$ϤII H IϤI$$ϤAI$R1  $ $I$IϤ II4I$H$I$A IH$$ϤI ϤH  ϤI$I$R1ꮪ vh'pl1  I$Is* @$I 1II$1I$I 1PXXX $I$rH$I$r I$Ir @$I$1  I4H$s I$H$򴪪 H I$ pPXX I qq I$I$qq I$E4rn @H$r I$I$ӽ񬪪 I$I$ӽ񬪪 @  r A$HR 3@1_ ÑU IҶrU _&rU CsHU O2ZIФU Iܔ$rФU Tr*IѢiӽ𤪪H$H$1xI$I$1`hI$I$ I$I$PlI$I$I$I$-I$I$ФM:>I$I$r $ rꪫA$@$r``I nI𤪪Pϣ dKd1𤯯 P%`<  mQ  ii򬪪*4R)R`hxx Hɖl c&c:1 I$Iqq I I$rn I$H$qq II qq II$1* I$ $ѵ񛪪 @#1 H$1 n4I$1𤪪_$I$ϤI$I$ϜI$IϜI$I$𤯜I$IϜi'H$-И ؉0 AC&[%1Ϥ`` N@QoI$IRn IĉR ZXnИ< !gD  Nirׯ .X5RzzzxK 1H$ r $ $r [2$[%1p P XR7 IAZr "IrW_~/Ђr0^xI$H&0)Q+++ HrQ Igw6 R i I&rU m$h R Mڶ-1I$I$rU I1+ I$I$ӽ  @ ӽ E6E R dKp1쬬 Iqq I I$qq HI$qq @%X&1Ф 1mR I $ (,``H II1/ I I$ѵ񛪪 H$Iq P`18< i R  @򬪪  .-1``` 1 I$I$q I$I$R1o @ѵ񛪪 I$H$R1W I$I q Iq ɀ 1II***  A 1* I $ѵ񛪪 I$A q M۶mѶ1  I$A$ѵ񛪪 I$A$ѵ񛪪 H $qq @`r5% I r $@񬪪 E4@6rjjjz dK1JQ1\\WW A$I1 I$$q I$I$1ꮪ hhvr1%%-  H$I 2C;Rp i1쬼 I 1ꮯ I$I$1 I I$1ꮪ r r-/-/ !ر۳r I&m ꪪ i I$򴪪 IH$r IA$S I$A$r ıaó*I$As" I$I$sI$I sI$Hs*(II$s* I$Is Y$2drꪠ3X1zhx` TI$H1𤥭 $r iIR1IR1 LtijR%--A $sI$I$1 M  s 1AR\A$I$ϤI$HϤII$ M$M4R AI +A$I 1 $IԽI$IR\\\TI$IϤ $IH$ $ϤII$Ϥ i6I$>1 II1𤯯. ar $I$rI$ $r $I$rAH$r hR@Q4r mӶh۶1 N"I$I1 }MЄMr   $r m#$Irꪪ ;rjzq$H$RX\\TI$I$껾I 1𤭽1 p8 D@A S_SU_ŊX%ӽ𤪪  r\\\V))Σ Iit1H Ir tLij1--I$I s I$IsI $s*I A$sI Is*H$I$s H$M6rꪨ $6C$Q A$I  ǒQ ++ MI&*$I$sI$I$I I$sZ?41`JpA1  m%mڦ1說ܴ=1 I$I$1 hHdQФ6666 )mѶr  $񬪪 ",41```` !1𤥥 $ 1ꮺ I A$1 I1 pJR>6&& )ir II 򴪪 S :Rpxxx/t tR H$ $ϤA$AQRIA$ϤI HQRI$A$ϤI AϤI$I I$AϤI$I H q2IA I I$$I $A$@$H$q2 A$I$1 A$ $sA$A$1$H$1$I$1X\\TI I$rH$@$ѵ񛪪 I I$r E$M$1 I H  I$H$ I$I$ !iiX\\\ IIqq I$I$qq A$I$qq H$I$  I$Ir H$I$r I$ $ӽ񬪪 $ӽ񤪪 H$I$ӽ񤪪  S_  S_w I$I$ A$I$ H$I$ $A$ h;[&r_ )ֶr} @`&IrP_UI$X%rϤzx`xI$ In I$nϜUI$ ϜUI$I$𤯜ݪI$I$-646I 4r1 LB$mӽѬR9B"%r```` n H 𤪮-)ϣ e[v`[1𤿿 xH1<44$ Pr I I$򬪪 *1` )   S35B51jj I$I$rn I I$qq II$qq I$I$qq $"I1 + (Z-$q N5h1ꨪI$hm1z I$Ϥ ? I$m&1I$H1I$ 1I$@0Il$QoJ$H$N44$i]6Q m4m Q0*d==Q``` K)AN  I$IR iҴE$0 Ii1 pHx1444$ mnr @$$bd>1hxxx'I1Ф I$ArA I$rk%[&1  xr77'   Ar EmQr vB& ҒQx蠀3r_^~xivIQ/ $rQ ) Ir I I$ӽ I$ $񬪪 4C2$B2ӽI$I$q1I r dB҄$ IIr k.X5Q`` II2~ I$ $qq H$A$qq A$I qq hH|QФ66& i&ir @  "15` l   A$ѵ񛪪  ѵ񛪪 I$I$ѵ񛪪 pH1<4$& iiR ӽ ؂11` ) A1  I q II$ѵ񛪪 I$I$ѵ񛪪 $I$R1W I$I$R1m}Ww I$Ar  1I$I$:>1 I1: I$ѵ񛪪 m۶Mжq H$$ѵ񛪪 A$I$ѵ񛪪 I$I$qq j&{r---   򴪪 @4@6rzzzz )I 1 H 1 m&Eж1jں I A$1 ͘1-) @񬪪 I$I 򬪪 "1r1```` l֭1 HI$rn -I6rn $I$1 Ttr---- iI$r I$I$r I$I$r II$S} I r  I$A+"(A$IsI$ $s*I$s"H$ $sH$A$sA$I$s"*II$1 I$Is P-ٳQxxxx Y۵Vl1 I$hr PIѵ񛪪 mѵiR1 M۴IR A$ $1I$ $1A$As  ihRTTTVA$II$A ϤA$I I4R i ڠ+/H $1 $I$ԽI$ $RTTVVH I$ϤA$H Ϥ I$AI$ m$vb&R1 p8$1 Iqd1+ imr@$IrH$I$rH$@r $I$r h$M$1 A 1 @ I 1 HM1 II 򴪪 I$$ ؂51hH$H$1TTWWI$I$=P-1- 1꺺L̐r@ӽ񬪪  ӽ񬪪 0:R1|i&-Σ II1I Ar N1 IIs*"I$A$sI$I$ H$sI$ sI $s* I$I s M$E&r~zj I$I$rQ @@ rQ** iiA$Is"I$H$sI$H$s:?21hxxxah1Ф i&h$q ѵ񛪪 H$I$1 TKPr'///  r A$񬪪 1`` tATI1Ф I$I 1 $I1 II 1 HTKTRФ''%% I$r I򴪪"Z/21hhxx` dR@$@$ϤI$IϤI$ $ϤI$ $ϤII$ϤA ϤI$I$@$A$I$H$I$H A$I$q2 $I$ A$I@ $I$ I$a$2 H $1I A$1I$ $1 $1TVVI rA$r I I$r I$H$R I I4s $I$ H$I$򴪪 $ $rTTTT I$ $qq I$I$rn H$I$qq H$H$r1 $I$ I$$򴪪 I4iZr  Iӽ񬪪 I$IS m(6r Ңm6r I$r I$rW A$r_U @6m4QA rQ$I$rQI$ ϜD%`&Q``HnI$I Λ8@@ꠀI$ &WWI$I$-6&''1 rQ I$ ruI$x"8rϤ`x`` ٘n m6۰uRnH0`𤩮$&𤪺 HXR7''% I$I$r I$I$ӽ 1P5xzzz  ` C:$C81@C A$I$qq hۦM$qq $I$R h&M$R h&I$1 m0@I$H1I 1 z.I 1߫ I$i1 iӴAQ1着" ih1 I4m1 I$RHM17''&irQ=Ir0* >`&rФ``px n qq I$I )bɰn1 Ht TR6''% I$I" @$ $1```` P 1I ArH I$r dB&C1 L % r'---   @@򴪪 H$@$r k6X3r0xIH0/.MpNr0 /-- iIӽФ I$A$ II$ H$I$񬪪I"IIrU $I$I @$@$  Hr -#11```x ATM1 $I qq $A$qq I$H qqȅDXR&/'/ 6@ir $I$SU P%Z&r``xx  1  I$I$ѵ񛪪 IH$q I$I$qHDK\Q&&//   ӽ Hӽ #99r` 1 H$I$ѵ񛪪 IA$ѵ񛪪 A$A$R1W׽ I$I$R1g IH$ $A$ 2$C21I$I$𤾶P@0I$1 AI$q E۶I41  $1 H I$q A I$qq H1-- I$A 򴪪 I$򴪪 @&h6rzzzz !! 1  H1껯 I$I$1ꪪ I$I$1몪 MI1) I$I I$I$ꪪ 5Zr1```` A$ R I$I$R $I$R I$RZ$1  urU -ڶI$rU+ֺI$U jerUԶU@R$U mm4U@eU4qvؓU  - UDlUPiI$U $1U u$1U Bֶ$_6hd'R1}U tB;pB'1 0mO$1*UU w1 4AwQ ) ö dzr &lI$r $II$ $@N$r1WW 4i?R1 }  I$R1  H$I$R1] I $r IM$r (I$s*I$I$1I I$rR|H A$ϤI @$rR}I$H$Ϥ $I$ X5h6ѵ񛪪PJ1 II1𤯫 &a6ѵ񛪪I$HrI$IrII$rI$r  I q I$I$1 A$I$1 II R   A񬪪 $A$rz  9rhxM$I$0pI$I$?' I$1𤯫IA 1$Ir1  @ӽ񬪪 ӽ񬪪a'HB&1xAE[1 itmT**:. ItI1 Hr $aN$ +đ:1U ֶm$1U@Qdz1U ҠmIl'1U @1$1U ¤v$2U @q81Uն$_ h֋m'Q𤀨U йI$QФ*U䮩$ ek;U@糽UDēU *c~_ TiP`1 $I$q )Iѵ񛪪 A6r  L r%-- A$﫺 A@񬪪 11xxxx l 1𤩩 $@$1ꮪ I$@$1 I$A$1 P rФ-%- A r R#2b1xhx AmR1~H I$R1A$I R1II R1A$I$R1wI $R1( I$ $R1 I$AI$IH$H H$I$ϤH $Ϥ $I  HI$R1**I$I $ $Ϥ I$Ir AI$1@ 1II$1H$I$sRTWWW $ R1z $ r Aq $Ir I$I6s I$I$ I$I$򴪪 Rt H$I$qq I$A$qq I$ $qq mѴM$1 -жM$RU  @$RU  Mۖ2  Iv$2 $HIr1 AN;r1UIm;rUv$rϤ_@N$qWfI$QU$I$QUI$QUI$QϤUI$QUh$I$1Nhz_ dID  IbI`;1 I$;2NB'C0𤪪I$I$M%%--r0 --  ;r 9R%r``xx `I$I I$I$qq $I$qq H$I$qq Lr/---$M r@&I S`$I$Фxxxx IФ Ҷ@61n Ȑ$1𤪪 N$Σ`h'ض[$𜪪I 1IrnIH0 Mmm1 II1 IIѵ񓪪 Aѵ񛪪 ѵ񓪪 I$H$1 I$@$RIDI1%- mm6rQ*** )J0r k%P=rh`px!$1 I$m[2 nm1뮪 m4M4r  %--- I$H$ II$ ,rФ```p Hi1II$rIIrH I$r 3PYr - 4I$֓  I'1U mI$QU 4$rWr K$1Ϥ^WL 1 / nqr*U E۶m$1U MI$1 Vlm4R*U $i $1U m$RU (#K21U i^;U %}rФzW !!i1𤫫 I$I$qq I$ $rn mM$qq  r---- dAfOr A r`'h'rMxxxx dADI1Ф  I$A$ѵ񛪪 I I$ѵ񓪪 i۶m1IPI r----  ӽ I$@ ӽ X5X1rФ``` @ 1Ф mѶM$1* m۵m1 $1 $ѵ񛪪 H$H$1 II$ѵ񛪪 貭1ȨI$I$1o$$R$P1AI$0 iI$0  I$1  $I$1 H $0 MIжQ @ I$I$ h6h&rzzzz im۶1ꨨ I۶-ڶ1 AI$1 I$ $1*** Iir IIڴs m&I4s `:ڒ1`h`` I$I$1 I$H$RI$I$R $I$ϛI $ I I$ i 1 I$Mq I ѵ񛪪 I-$ IM$ I hڴq iҤA" I6irII$R1ժI$ R1u I$I I$r1@r1 I $R1 A$A$R1n tB;21訨tL'p'1𤪪11 !1Q)))) I$ II$ H$I$jj I$ R1ꮪ II$R1 H$@$R1뻪 A$I$r1  I$s H$I I&$ m۴-$ i۶m$I$H$s(A$Is" II$ꪪ A$I$r pL'fB;rQpp| `$40 MI07.*  1Q+++ I$I$ I$IU* I&I } I1mسU I Ҷr_ I$I rU IErU I r $I$rz  H$Qz~PjQxX^^H$N$0pI$I$UI$I$** "i$𤯿IIr1 MM$ӽ񤪪h&I$ӽ񤪪I$M$r`ppE P '$$A:* `1' @IrI$ $rI$Iѵ񛪪I$@ѵ񛪪I$I$rI$I$rI$ $R1I ϤI$ 6C8tlR1bz~ H$ $ѵ񓪪 II$q mѵ񓪪 HҴIPr IE1I$I$ѵ񛪪 æMsX1II$r L$H;q m$q 0i268R &`)) H񬪪 $@ P9ZФxxxx I$ $1몪 AI$1 I$$1 $M2$C"1j p---)  񬪪 I$I Nvbrz ~B$)l_I") U MU 3Um+AU U ۶U I$h U I$a1U Ibwj;L1 I& R I'IhسrU I$flórU I&M rU^ I$ٶ rի* Ir*I$H$s I$ 1 $H 1H$ $sI$AR1jII$r$I$r m׶m61/:*: ֶIs I$  @@rjjj I$I$1 I I$qq $Iqq H$I$qq I$H$1 iZmۢ1 I I1 1 Im۶qq I$ rn H @$RHI$Λ@ QoI 𤮪I( I-P I 1ﻫ I$ 1 M$qq Iqq $qq mҦMrn M6Z1 ,!@I$I--) &baQ0 6`#rQ`&M$rxxx $I$rn I$qq I$H qq $М@@ ɔ  r- Em򬪪 A$I$r MIrxI$ZPQ_ q'@1n_I$m1UI$I1nUI$I 1NUI$I QNUI$=rnI$)rU I' U I$@U I" ФUI;ФU IҶlUIb @rU IbEФU I⛛r )I@r IM IQ+. Yv򴪪 P؉}rpxxx i4hrI$ $r$Ar :!1Ф@ / r  I$@$ A$I Xxxxx @rA A$rI$I rI I$r I$I$1* I"I$1 MIӦr$I$ vBMے m6k1_  M1 I1* IHѵ񛪪I$rI I$rI $rI$I$r C0C:1@O rn I$I$rn $H$qq A$I$qq @$I$rn ` М@ ɐ rϤ-- Lۺ-r I$I$rx$J$r-xxx qq H$I$qq I A$qq ,)@  ---- hӠm ӽ $ӽ H1x I$b IrWI$n rnU I$ɶnU I$$'rU I$'HU I4s%Ar I$ Ir] I$*@UI$I$ϤMU*I$+QUI$[ qUI$ rϤUI* qUr m;& r1 I rQ-  II$S* I$I$r 1۶س M&@ЦRhx I"$I1 I$@1 I$I 1 [6ز5r1 Mr++ I$I$s*I$s( t`džiRxhhx H$1 H$@ 0 i$h41I$I$RnI AΛ mIϛ I ѵ񓪪I$H$rI$I$rH $I$II$@ A A$I$I$ $R1AI$III $I$ I$$ IH [Xѵ񓪪p'p'1II$1𤯯 Q-)-- I I   I$ I$I$R@`` I$I$R1 I$H$R1 @$R1 IH$1 I$$ HI񬪪 LB$'ӽ ڶ$򬪪 ٶvr @$ A I$ -$I&r H$I$r_W M M$rQ|I"i&Q^~ II&Э𫪪 im0 + CIr" i AsI$ $1I$I$sI$I s* M$E4 I$H$ I$M$r @%XQ ㊭q1JdK1ϤxXH$H$VVV^I$I$0pI$I$PPI$I$0pI$I$r )--4I8r*u@8rUI$IrxxxZH𤪪$@  *+ɔlٖb1H $rI H$rA H$rAI$rHI$1UUU=H$ r1I$IϤ E[$I$ m$m$R1 m$i4R1oWW IH ѵ񛪪 Iѵ񓪪 IirI$IrH$A$rI Ir5nF1껫 $I$r A$Hѵ񓪪 m4m&qqᓢ1bb` BtJ A $򴪪 $@$r b6fcRXXXX $I$1 I$H$1 $ 1 *Ȓ,)1jj IA1--   񬪪 II$I$H$H$I$@$I$I$@$ $ I  $A$H$I$HI$s*I$I s$As*I H$1I $1 m6E4 H$I$rI$ $s I$I$1I$I$1 $I$1A A$1I I$R@H$H$R1I$ $r $I$r X5[5r?? Iسs* $ @$ I I$ H$A@@ I$I$qq $I$qq I$I qq qq I Iqq I I$qq I I$qq I$A$qq qq kX6rn H$I$RH m۶QoIRn IiΛ IHR I$R I $qq II$qq I $qq I$H$qq H$I$qq A I qq @qq )(@@@@Itɚ1-  mV̰mqamq1LO1؜ EѶI4R Hm6R $@$rn  ")@@@ RФ----  $I$rW ۺrQ$I$rQ_UB$Yq1 @$I H$H$q1][1rQU? i۶ݶrQ I$rU I$I r I$ r I$۶ I$ IB򴪪 Iۮ0 r I$I$񴪪 II۠񴪪 I$A$񴪪 AA$ M4m6rzzzz IIijr ɲ%ò%B@ ڥZ r $I$rAA$r $I$r,(1@@@p -  II$ $I s ڧE!rФXؘHA$rA$ $rI$$rIIrA$$rII$rI I$rI I$rI$I$r 1 Ii0 i۶͚qI$I$rI$$r$ $rA$  rI$ r [4C!1O@ A$I$qq $H$rn I$I$rn I$I$rn H$I$rn  (М@@@@   r I$Ir* I$rwJ'JRXX &`J1𤫯 I$A$qq II$qq ")-n@@ r I$I$ӽ򬪪 I$I$RW I$I$s I$Aӽ񬪪 A$I$ӽ򬪪  r I$M$ @ Hӽ    H$ @$  I$I0洛 im𤪪 i6m r+ m۴Er mӶ@ r_ $rUW I$A𤪪  ӽФ r A S  `Lt 1hhhxA$ $rI$H$rI$Ir m-E6r15 óA$H$s m s* mtMt1hxxz I$I$1 I$I$1 M&H40h$@ϛI$I$Qo-IΛ iufwѵ񓪪H$H$@$I$rI$ $$I$$II$ I@$I$I R1II $III$IH$ $I$R1 $I$R1 $@$R1^^^_h%h&1I$I/񤿿 11Q---- $H$ I$ $ I$I$1```` I$I$R1뾮 II$R1 @I$R1 I$I$15=55 IA I$A IB$@ IҶ[u I$  I$I$ II$r @$M$r{_ II$𤪪 I$IrQ qbǶ;q1~ I$ $Q0UU iM$Q0 ) -ֶitQ * II$r $I$r* E$I$" II&* 08I$Z $I$r_ E$I$Q m 4rQ A I$QQꪪM\ 1ϤޞM$J$VVVvI$I$I$I$QOI$I$I$I$r1--I$I$rQI$I$r1IIRϤ$I$_ me o`@m1) * A$I$r IrIH$rIIr1A$ $ i$H4 6l$R1 $Lض$R1 -4I$R1_U M$i4q I$ $ѵ񓪪 Iitѵ񓪪H I$rH$ rI$Ir II$q I$I$1 I$I q I I q M&m$1  Ȁ 01zZZZ  q)- @A$r H$@ rjj s_LQФ I$I$1 @ $1 $H$1 ,1j nbR H򴪪 III$I$ $ $I$ $ $A$H$H$I$I A$I$A$I$I$I$H I$s*H I$s( H$I$( @$I$ I$ $ӽ I$Ir $M$  @Is H$I$1IA$1I$H 1IA$R```pI$I r1A$ $1UUW\A$A$r19555-  $s* ڀؠ I I$ II@``` I I$qq A Iqq $H$qq II rn I$@$qq H$I$qq I$Iqq qq H$I$qq MdB:RH$H$RnI$IQo Ii6R I$IR I$Iqq I$I$qq I$I$qq I$$qq H$qq A$I$qq I$H$qq I$A$qq I$I$qq ",P#4@ppjTr ؍H,QP"QIDIn<6 R I I$R Pm6R "-#%n``pp On- h۴M$rQW@6I$q1WضmifQ0UR6 q1 I1ÒQ 3Z UQ" I6 3rտ I$ r  몾 @ ӽ -vn򴪪 MH$ $I$I$H$@I$$I$H A$A$A$I$I$ K%K2$rzjj Iijr u5rjLRФ@ $r@$IrI I$r(1`)jv  I$ $ c@b;rªjlt RФA Ir A$r@$r $I rI$ rI$I$rr I$rI$$r 5,41蠠 IH$rn ma1* +@ rI$ $r @$rIHrI$r۾21 $$R I$I$R R A I$rn I$Irn 00`࠰ h` @$ A$H$R JM\1 6S|x1 I$Iqq A Iqq 08@``   SU I I$ӽ򬪪 I$I$ӽ򬪪 I$I$ӽ򬪪 ӽ񬪪 mnm X&X AAӽ $ӽ Aӽ "m rOII0Τ?=5 IM۶r I$I I$$r m6-Zr I@r mmr I$Iӽ񤪪 I$IS*  IS* AA  MM1xxxxI$I$rH$I$r$I$r 39Z,r1%%%% ۉA+*A$I s" m$Es* Čm1zxxx A 1 I$ $1뮪 I$I 1ꪪ Nb;C2rnNB'81II$ * ޔmqt1 + Ir$I I$H$H$A$ H$A$I$I$rII$R1 $A R1A$I$R1A$ $r1I$A$Ϥ $HR1뫪 $I$R1  2C;ѵ񛪪`$pB'1II1/// 1!aQ)))+ $I$ I I$ I$I1ppxx  H$R1 I$I$R1ꪺ A$I$R1} @$R55 A$I$* I$I$s `Hs I s MҦI$ MH$r @$M&rW H I$r m$I$r_ A$ $ӽФ I6A rQ耀 hӮmrQU_ i$IR$ 1I$Q0 *U -I$r0U mѦi$r1U @I$r0U XvI$U $ mrU $HI$rU a8I8QU -жIҢQ* m2a8QB1Hع];~uIi𤮫I4RѤI$A&1՝I$Ir1-)+I$I$rQ€I$I$q1II$1Ф@$ $QO Oɔl1𤯯 IIq $Mq $I$q @ѦE1 Ih$R1  mq$R1_ hI$R1U +k$R1W m4I$q I$Iѵ񛪪 I$@$ѵ񓪪 I$Iѵ񛪪 IiqI$ rA I$1 Ƥc21 I$i$1 N1 m$@$q H$I$1 db;F$1 B#@ 1ZҘ* !Iir1 I$Q / (66rjjz{ 1𤔼 II$1꫺ I$I1 I$I$1 @4@91X I/r  i$?U  I$嘓U  i$ UD:UqkǓUMǓ*U m,U d瓵U@$U N6ijU a.}瓽U0䓽U 0am8U M瓽U @ܒU @$rU $aĒ1U aI$1U vi$1  E۶I$rU mM$r AI$r  RpxZZI rRߕI$R1ZA$I R1 ",21% I$ $ h( hӶm6򴪪 IIpppp I I$qq I$I$qq I$I$qq I$H qq qq H$I$qq I$I$qq $qq $H$rn@ H$Σ !QoIҦAΣ iR II$qq H$I$rn qq m۶m$qq qq $I$qq A$A$qq H$qq m۶4qq h۶mqq $@1ФZښ>  P1 1؏r0^XXX&C&d:0I n66&&H $R I rn I rnB$R%신PI$1M U$I$1MUA$I$MUi$I$N UI$1 $rФU JtrU жa<U IrФUԒukrU 0U #N-?U m8U me>U idǓUmn{糽ФU  I$ؓU 0Mlk'ФU d瓵ФU  MlۓФU 6`l?rU0nr*U 0lrФU= C1N(,&I$I$rI$Ir$I$r@#-1𐐐 6 qR- ) I$I  6$6dzr`MUS5BR𤔼 $I$ѵ񛪪I$ѵ񛪪HIѵ񛪪I$I$ѵ񛪪I $ѵ񛪪HI ѵ񛪪II$ѵ񛪪I$@$r $A$r @429ѵ񓪪  I$1𤪪 n1 +Hѵ񛪪 mIr a۶a&ѵ񛪪 I$H$ѵ񓪪 $M$1( I4I$1 $$1 I$ $R m۶R IR m۶-qq $@.1ښ/ m1  H :Ê5r1@ MT 1 j(𤸨 DIJqq I$Iqq @"%@% P I$r +U mI$rUI$roU`I$rnUI$roUзI$roU VI$rU $U 6I$rU 4I$rU mI$U 1I$RnI$I$ ** @Jy$rФ U  ImĒU  I  iI$1W  Љ$1 i$2 -ڦI$Ru mI$1 I$2 &h;rU 1pxZ^I$A$rI$I$rH$@$r [h1%%%- @$H Is** IsI$H$ MҤhrת Ir I$Hr I$h rUz l3" r~蠀I$k0U Q/++ I$IrU?  ImRU I4mRU i$ZRU I6Um1UOb8 1UIreAU},9`U_5`1U I I1U i4:lR}  MrU I$H6rU I$$rU~nzh$@&r0zzx~t$Nl0* yysTr0- IM A$I$ H$I$ I$I 1XXXX I R1ﻻ I$I R1ꮫ H$ $R1 A$IR1*/W $I$R1~ II$R1 A I$R1 Ϥ IH$R1 -ҢM$R1 H$I$R1 I$I6R1 II$R1 vbcR1 I6EӶR1ꪪ I$-ZR1 H"mR1UW I$H"ѵ񓪪 H$I$q AA$q i6I$1 $1 H $1 I$H$1] I$H1*  IIR1U} I☶a1* mR 1$C&@1 m#I 1_ M[IQ f"&RQ7/// qZn0MQ 3$HrU C26AQI$(r^I$I rU  r o) rU I+7 rU i$'hrФU S HrϤU It[lQФ I&ZQU i&mQФU I4m QϤU Im;AQϤU MڦQϤU $mQϤU I$aQϤU* }1rϤ w^v U\$) U϶ФU I$U IۜU Ib#MФU SIU C@U I4m t1տ Ib'C8Q I$I$М ۺ6r1z KJ1𤤦 H$I$1  $1 HA$1 II$1 I I$1: II I$I$R1/I $R1  $IR1I $R1I$I$R1"II$R1I$A$R1:"H$I$R1 I$ $R1 I$IR1(( 6b#68R1 I"mR1_ I6M R1U I R1U 4 r1 I4m M$MR1 I)4R1 iڴ@R1*H$$r2II$ϤI$IϤI$A$I$$ϤA$I Fb'v$R%%% I I  򴪪 A$IrZꪪ I&mRZ mm$Qߪ I$iRU I$QW I$-Z1 Ib& QU I 1 Ib'r1k6 lq1U_M$M 1I?*rU I$AU K1U Iҭ1U OU Ibߒ@rФW I$ФU IǔФU IǥU Ib?U I'"@ФU I$#7ArU( I$$'U Jr+ IIr p"'J2'1\\XXp&p$0ФHN I$I R oT1𤯯 I$I$rnhRhZI( UIhW0IU  ݪ** IbӶR iRA1l*јm1ꪪ I 1 Imѵ񛪪 iҶiP$1AIr1$ $R1(H$H r2 H$R1 Iiѵ񛪪 IҦir i6ir Ih1" Mmѵ񛪪 i&MѶr IB04ѵ񛪪 IdI1** IRi1  Iڴ@Z1+(H$I rIH$ѵ񛪪 $A$r PX<<4Iԇr $򴪪 I$@$꠪q(Hxy޲& U֓& UmAU&@U oUMAU I$+ 1U I$6QU M2S%L1W:Z/Г_z u죨a0Wqk  I6Em1U IҦC `U $7."(rWꀀ DHrU CrU I( rϤU IsϤU I$ rU I*ФU I%ФU I$ФU IN-* II$  $ (Т1```  X 51z JO1  H$1 @1Z in)n1񤹪 II 1񤻪 I I$1 IҶ-ڴ1ߪ I1 IҢmۦ1_ I1  $@1 I$I$q 1( I$I$R1Ug ."!1jII1Ϥ?? I$I r I$Ir I$H$R1տ I$ $ I$H$R1 I$I$ѵ񓪪 @1 I$1 I$I1 I$I 1I I$r HHڦrI$I r$Hr tē1-- IIs* *AI$1I$I$1I$ $1 H$H$ I I$ A A   m&mSrZzj  mr0^~xx iiQ= ֐Q+/ ٶ ˖d* $A$s  A$sI H$sI$Is*I$A$s I$s* $@ 1A $1II1 Hi$s A$I$~ X6Qz^'t$Q0hZVVIIQ0) IIQ-  $H$ I A I$A$ I$I$1\\\\ A$R1 I I R1 I$I$R1 I$R1 I$R1 I$ R1 A$HR1 i$iR1* m&m&R1 Ei$R1 $IR1 I$IR1*A$ $s1A$I$HI$ϤI$H M R1z‹  I6mZR1wW_ c'mq I$E4ѵ񓪪 I$H$1 I$H$1ꫪ I$H 1 I$ q I$ ڴR1 m0,R1+o $"L$1 (()ѵ񓪪 q  I$q i۶1 `KR//'/ 6Ƴr iӽ -PIr  I ӽ vwir I $I i$I ꪊ vB&_ $$r I8N 'rU H4MR rQ I rQ A$A$ I$ $ @I$ M$irQ A$A rQ I$ qR* Iir))- $I s  I$I I$ I4I$ @ MdKvr I$H   I$)$ h&hrzꪪ I&M4r0 1P#5Q`` 1Ф II$1 H$A 1 AI$1 A$I$1 $A$1 A I I$I$R1 $ rR_oI$$ϤA$A$I$Ϥ@$I rRW $$A$r1 E$M$ ضdY,R1 I A$ I$R1 I$R1뮫* MR1몪H$I$A$A$q2 A  I $R1 I$AR1 I$R1*I$I$ϤI$HϤ H$QR@ H$AI$?b.&R  II$ H۴m[ $I$򴪪 I$I$򴪪 II$򬪪 $I 򴪪 A$I$򬪪  $򴪪 @ 򴪪 H$r H$I$r $iҺ6rQxH$I$q1IMrQ5 ? i6mQr- + I$ r Hr 򴪪 $Ir몪 $$r Ir꫺ H r H$r $H򬪪 @ꪺ I$I IHꮮ $ I 򴪪 p'q'rQ\\\\t$`B&0Ϥ`ppp n  I$IR II$1 Mh۶1 I&@6R I$m6R H$m$R 񤫪IIRn I I$R mn2H$I r1A$I$r1z$I rI$H$rA$Hr1I$$r1I$$q2H$I$r1zHA rA$I$rAI$rA ArI$I$rI$ $rI$ r MTJ4G1:. $IrI$rI$I$rA I$rA$ ѵ񛪪 hxR>6&& I-vr Im$I믪 I$  '6l $A HI s  I IA$$s AI$ s I IsH$I$ 39#'Qxzz^ H$I$p nnQ  A$I$s I I 򴪪 2 2ӽ𤪪DI$Iq I6mҢ I4i 򴪪 A$r    HI$ I򴪪 dH򴪪 i;0r iÆb򴪪 1` )! @4 1 1𤭭 hh۶1 I$I$qq n1뻫 kk1 H$A$1 A$I$qq II$rn I qq I$I$qq I$I ѵ񛪪 @R1W I$I$R1UeuU r ,  1 ID15555 IAR1Wf I$I R1] I$ $R1w mm6R1ꪺ $I$R1 I$ $ѵ񓪪 I$Iqq I$A$qq I$H$qq ii1 M$)$1ꪯ $ERI1ꪫ m۴E$r $1D IHA1A$I1H$I11 I&i$s I$I I$I$ H$I$ I$H k l1xK$ۂ-Q^~x iI4r0/- ݐiQ - $I$  I@򴪪 H򴪪 A$򴪪 @򴪪 @ @ II$ A$ $ $~ [mӶQx~h$M$Q0hZZIIQ0) IIQ/ I$I$ AA$ E6m& A$I$1T\TV II$R1 I$I$ I $ H$I$R1뫪 II$R1 I I$R1 A $R1类 i4IϤ H$H4R1 i$IR1￿ 4IR1+AI$A$I$Ϥ@$I$I$H Ϥ $I$ϤI$I I$A$R1 I4Aq db'Mq ab&Cq I$Iq i Iq I ڴq $I$1 I$m[t1< I$$ 1_@ 1+ I$I ѵ񓪪 c4R1UUqlQ N$:𤵵-$)r M Ix҄IrE@ %I$I$ $ 6lذm;sI I s* I$$ꪂ &H 8 q$d0r__~~ I$H$rQ iIrQ* IArQ*" $H$r2 I  ӽФ H@6rQ $I$rQ )Ar--I$I$ $I I$I$ I I$ I$i I$I& I$I  I$ $ A4I$ H$H$򴪪 h4 r~z R>=rxxxx ApI I$1 I$I$1 I$H 1 H$$1 I I$1 I$I$Q. * I$IR1UT=A$$ϤI@ϤI$@$ϤI$I$ϤI$IϤH$I Ϥ M&A$ IB&R1 I I$R1 II$R1 IIR1H$A I$I$Ϥ IQRII$ϤI$I$Ϥ i i  I $R1 II$R1 II$R1II$ϤI H HI@$ $ pH'pB;1 򴪪 A$H򴪪 I$A$򬪪 򬪪 A I$򬪪 H$I$򴪪  򬪪  򬪪 $r mmZ$r^ ؊kӶrQغhӶq1I$IrQ5 I r% I r @A$򴪪 @ @򬪪  H 򴪪 @A$򴪪 Irꪪ @I$򴪪 I  @H  A$ $ ꪮ $ $Aꫫ  IA"r .25rH6h&r0x|\|d'H$0``   I$I$qq A$I$qq H$I$qq @$rn M  0zo Xӵ[ m۶HQo@JdDRQo I$Σ Ij1񤫫 hI$R1 /_ mӶR1hHUI$ $rA rH IR1)+ I q2 H  $r1 I$rI$I rII$rI rI A$rI$$r@$ $rL81>>H HrI$ rI$rA$I$rH$A$r  %SrФ'''- I$IA$I$sI A s* $@$s$I$sI$ sI$I$sA s"*HI s*I Is**I$As*II s** $L'pL3rj mӦhr0xx Iqr0= n.r I I$s A$H$ H&iӶӽ񬪪 AA Sw I$Ir I$ $ m&-r I$(P򬪪 I$i I$I ݐtir $@I򴪪 i7:r  I`dzr Ѓ16`p`x p C:$1@ 1-* HI$1ꪪ m6C1 I$I41몪 I$I$1ꪪ I6 Rt“ i1~ IbӶ 1 I$I$1 I$I$qq H$I$q I$A$R1_ H$I$q A$I$ѵ񛪪   1@@ |IT1555% I$I$ @$A$R1} ؆[R1n hӶq  IR1 A$I$1⨂ H I$qq I$I$qq -6m&1j 111 %)") 1 !`& '1 ) 1ꪫ ${$1VWW JDI   I H$ H$I$ I I& I$ $  $i& I$I r $I$r Ir @$I$rU $I$Q_ZkQz l60ϤWPJrϤ U Q%*U im$1U @nu瓵1U mm$1U  In$1U  mr1U I$R I$r*U $ $rU غm6QzW $N$r0~_UرiQ IirQ= ? I$I r I$I$ @ I$I$ I$I$ I$I$r1^ H$HR1 IA$R1 I$H$R1* I I$R1 $ $R1 I$H$R1 A$R1 A&q2 'KR1 IIR1I$A$q2II$rRW_@I $A$I$R1I$I$R1k $I$R1UUII$rI$I$r H I r I$M4ѵ񓪪 M$I$1 I$Iq qqqA$Ir@$I$r A I$1 I I$R1- @$$R1 $I$R1 $I$R1 M6r /Um?_ ae;U  i?ФUMmФU A%ФUDrd$ФUmؓU  i#ۓU  HdUD}$U I#:rФU  rϤU 4jrϤU  *?rФU Dv$rU mmrФU I I$ $* I$M"sA $sI$AsI$I$s$I$s I$ 4  I$I$ I$I  I I$U I0qbسrW  kRo$iR_ꨀ I$ 1U I$mۢrUIUAկ* IҴ݆ RU Il;6lRU IҶ 1U qn$1 I$MRU I!iRU q$ 1_zxx AҦmrIH ѵ񛪪I$I$r ih41   Iiѵ񛪪 I4M[1 q @$r HI r Im ѵ񓪪 Ihѵ񛪪 qB$31 1} inv1ժ* IBl1" I$ѵ񛪪 I4HS4ѵ񛪪 Il#M1  im1] I I1*+ IMѵ񛪪 M $1 II$ѵ񓪪 I  2몪 kӡm61 mmm$1 mm1몾 II$1 I$ $1 I H 1񤻪 I$I$1}ﻪ MC 1񤪪jI$q RU I$uQUI$q+A1ժ I$% QϤU Ir$ rФU I֚rФU Ir$ rU In$UӶ' rФU߶%ArФU I^ФU I$mU I.U N rU rФU&@ϤU OU mLU ]Фտv\$Uqݶ U*M%+h1w $MRUw$) ߪﻜ4h I;aRU qB$ R_ I&mQ HH$rU I$ rU N&MrU~ pb' ē1~zxx  $Iq I$I$qq mRmqq 1 I$I$1 I$I1 MҶE۶qq I$A$qq MSm4rn @[@&Rh&M&!M M1U qb$@1_* $Q񤯪 I I$ѵ񓪪 I$A$ѵ񛪪 I$I$R1Uo I$ r I$ $q bU&M10 I-P1 IҦI1* i$M&1*  nn1 c:1 qq I$I$qq I I$qq [ 1ߪ ;081jj,I IW ȁ !R  t;pB:rQppppA$I$Q0~I$Q0UUI$Q0*eU(iq1 -жirQ  I$rQ( @I$r0 m$r+U )R4mr I$IS I6I&r II  II  $A$II$ $A$ $ $I$I I$I$s*A$ $sI$I$sI$Is*I Is*A$Hs(I$I$sI$I$s* I4A )&m$rz ؓQ */_rܞ I$ $1﫫 I$I$qq $ $qq qq I H$qq I$qq H$I$qq @$H$rn&Z8z^I$I$𤯜IL1𤵥 I1 I$ $ѵ񛪪 I$I$ѵ񛪪 $A I I I $R1 H$ $A (6@4q I$I$1 @$A ҵ𓪪 I$I1 )ڢ$1 AEۢ1 I$I$qq II$1 h$1 +֡mۦ1 XZ1 IIRn (8` !`B&` (@$r (6Ir @$ r A @r ӽ .m$ I rI$@Q IIrQ I$ 4r0* I$ $rU] I$abĒRꪠ I$ArQ A$rQ I rQ I&I$rQ* $I$rU mQir I$I$ I$I$**I$ $I$I$sII$I I$s* $I  H $H$Q\X iYr)A$H$sI$  H$ 4j|[ۃ>1𤪠 ]a1I$I$rI$@$r IҶ $r cf$1 $I$1 H$I$1 I$I1 I$I$R1 A$R1 I$A R1_ B%%R*> I I r  ::1z~h۶m$0&m$0鸞^0I$ϤUI$0ϤUI$1ϤU`'I$1ϤU 4i$QϤU m{>QϤU Fr?rϤU FrU D;ru yrc1UD瓵U MfߓU4r?UQm瓽U mmU Aeߓml糽U ֶ隤1 $R U $hI$QU@mm'_0N-UƎ'UW1* IP$I* C[&rxXZ^ i irQ }U=L1(( h@ 1 Il6i1 I$I$1ꫪ H$A$rn H$A$qq I$H$qq H$ $qq ۊ[&R"Iq𤈀I$H$𤯜 H H1𤥅  $1 I$I$ѵ񛪪 ѵ񛪪 H I$ H$ $ I$R1]_} A$H$ AIR1U X-R41 i 41 EڴI&1  $q M&H$1 A$I$qq $qq I$ $rn I$qq ò[R Xk6Σ 1 $@$0  F 1 @@ r $$~ @(>^ 0um$U  Ii$U  im$U m䓵U'rU MrU Tmr 0hI$1U iIr1 8N$r1U ڶi$r1U $I$q1u $Af;Q u$QU Dr_ 1`r  DqܒU @I!֓1U am$1U vm1 $AI$QU I$RU $8R U kI$RU 68R mѶir I$A sI$I s*A $s  I$I1xxXX  $rII$rI$ $r db'`ē1%  I4m$U I4Iu* m$A$ m$I$ mӶu  iڶw I$tbór_ IbMrU I( rU N2;[QW u: ir~I$m0׺viֶ0/**i$QI$I$P1uU@&mQmmе𛪪 Im r0յ/ 1iQ/ I$rժ I$r I$I$ @  I$I 1zXX\ IA$Q A$I$1 $I1ﻪ IA HI$ @$I$ @I$ $ $1XXX\ $I$1 A$I 1 $H$ѵ񓪪 h&M$1  ѵ񛪪 !mR1 ++I$A ФI$I$RRA$I ФA$I R1I$I$r$I$rA$I$rAI$rH$$rII$rI$IrA$HrA r H&mr AB;4Cѵ񓪪 !11* **AI$r z 'p'r%%%$I r lqr IIrjj KKr1\^TVII$rA$ArI$I$r#%`RZ>.C)HU*ͺ$ iU I;ФU O޶ФU ܮФUIӶ$)HФU γ QU&rIb'm%AUo8lUS H1U I6b1U cmA1U$7mRU( N2]HRUc5 ^xO'tJ  Ib7*l1U^$iU CU NlU _rU yN6@U 7K)dB1Ф' I$I$q I$I$R1 I$H R1 Rjur15% I$Ir{_ h&m$r0xZ^i$$0xzzs  I$m1𤮪* I$A1* Im1 IBH1 I4H$ѵ񛪪 $I$r I$Iѵ񛪪 HHR1* I r1HI$RUU$$rRϋ $@$rR HrR:.H$I$r1ꪪ H$rRUI$I$rRU$I$rRUII r1ߪII$r1ꪪIH r1I A$r1 I r1I$H R1蠪#`r1/? 1;;r @$@$r^WWU Ii6reMk`dKRФ  -HR II 1 I$1 %X 1Фڞ>. ɟ$U INU I֕$UI$p9Q~I$I0U*I$n2$rUI4rФ IrU ˒U q˒4@ I4m RU* MҶk `RU IĶ1ժ IҶma IҴk 1U C2 a ]&HrU K ժ~#aU ~<IU ºU IR U IR'Z r_ꠀ @9CN  ɒ+9RH$ $Qo  1R XX 1Ф>> I)Q H * 5Q` p1  I$I$R1U]{_ HR1Uַ I$A$R1U{w} Mڢm۶r I @q IIۦR1u I$IR1 I$mR1I$ѵ񛪪 IRHѵ񓪪 I#4 R1 M4 R I$۳Qh I$Ir1|= I&Ir1_ $M$r1)( $I$r1s A 61} )Rh$1|W I$@$R1 IM$RUU5 I$H 1_\ I$M$r1U"mX 1 I$I$RA$I$s m6:4rbbd %R$ $Aq2A ϤI$@$Ϥ R8Prں*. Imm1U I℀M1U I6ha1W M4-m1U n+l1UNb'k֒1U % a1Ϥ_ 3&0U* v$rϤU* mAUOb,IUӶ$)UvNIU IҶUNܶ&AUIҶ)HU IҶUI¶& U ONUӲ& U ÑrUIҶ&AU I&lUK1A1  H$Iq i&I$ѵ񓪪 m4E4q P.` 1ؘ)Rp Q--  I$I$ &Z91h JRAIR1:$I$R1I I$R1  $I$R1I$I$rIѵ񓪪I$1A$ $1"I$H$r1I$I$R1_I Ir2ת mm&R1_j ['uR'1 )tB'pA1 Idɐm1" i۶lR1Uj IbmR1U Im۶R1uiV IE[R1_UU IP &R1jI $rI H$r A ѵ񛪪 $MpLǓ1--% IH II$s(*( A$H$s( M4I1XXXX $I$rI A rH$@$r M$M1- ))I$ $sI$H$1H$ $1I$I$1 $ s A s IIs I I$s*I$I$s H&h4ꪪ m&Er^Zz vB'2r0^~I$H$QI$I$pѭ﫪I$IqiIQ0)* innQ-  I A I$I$ H$$ I$H$ H$I$ I I1\\\^ $ R1^^zr II1 H$I$1 1 A$I I I$ @$ X\\\ I$I 1  H$1 h&I$1H$H$rn qI2 AR1+ $I$QRI$ ϤI I$ϤA$I I A r$rI$I$rA$$rH$A$rHI$r IZ$i41 m mv1I$A$rA$I r 2 C"ѵ񛪪 I1IHѵ񛪪 J$J$r//'/I$@r ++OW  rzzzz bmR1VVWWH I$r IۦiR4r I@r {,Hr'''/ 1۳A$I$s*II sI$I$A$I s DB;N$rzz^V mIQ/+ I$I *@$I$1I$I$sH$H$s $A$s Is* pgsسr mM۳s" [[3̳r```1?p0--%'I  1 $H$1 E6m4 A @ :,:,rzzzz )R1淶 I$$R1 H R1 $A$R1뫫 MM$r1/ I'v8rQ|| H$AQ0|^_ I$hҶ0 1 1  a0 LR1 IӶIR1+ I$AR1 A4E۶R1ꫪ ab6R1 H$mR1]w~ I$H ѵ񛪪 iiR1 IIR1 + rRuA$A$q2I$I$rR[I$$ϤI$@ II$rRI r1A$ $r1*I A rRUI $rRI$ rR; $ $rRuI$A$rR]A$I$r1hKr.&6& c&vijr{{_ aaR)) kӶk4RzrIR @$I$ $I$r I$I$1 )r777 I r @$A򬪪  @$r3r0\\^^` ` r05 Sr IA @A򴪪 򴪪  A﫪 II   IIs** H$I  I$I [3,.⢪ imn I$H A$I$ H$I$ A򴪪 @ r  11``p I1𤧥 &ڸ1Σ$$AQo I)R ` r𤷷' adBr I6 Rzzxx JTIQ// H$Aѵ񛪪 I@$R1Ww I$H$ R1~} R1U}w mkڦR1ך $A$R1H AI I$R1I A$rA$I$R1 $I$R  I$H4R` [,6,Q I&rW I EQꪨ I$I$rQ* $"5rQbz I$r1XR^^ +$I$ѵ񓪪 Ö4I$1/ a;q$r1 $$I$ wQ- -4i$r  h$I$smR`zzz `BAR/  ($I$R1^~ $I$R1 @$I$R1뾯 9˻r17%%' ضس m$I$s* h$I$ $I$ ֶm6rz S?0~^ ۷cQ0VU &1r0-+ i$Ir &$I$ h$I$򴪪 $I$򴪪 0$I$ 0$I$ $I$ `OOr I$I񴪪 I I I$H$ I$I$ AA$ H$H$P/(/5`IA1  @$A$q i$I4q N$L$q `JN<<4$ nvQ ))+ I$A-R-1hhxxR  $A$I$H$QRI ϤA$ $R1A $rH ArI rH$I$rI$A$r$IrII$R1 ,#71 I$I$1 j1񤫫 ۱1ꪺH$rIHrI$I$r $I$rIA$rI$I$r $A$rI$Ar kH1%- I$ $s*H$I1 R$M$s I 1\\\TA$I$rI A$rHI$r L$fR) ) $I s **I$I$1I$Is*H$H$s(I$I s**IIs**A $sH$I$sA$Is* I$H$ I$I$r M&h Qz I$m&r0IҶh Q0UWIII$I p1 iirQ5=? I $$ AI  A$I $I  @ I I$1TVVV I$R1zZ]U II1 I$ 1 HI$R I$I$ H $ I$I$ $Is1TTVV @1 Êh50 @&m$0 ۱m0 @$ $ѵ񛪪 i۵IvR1I$II$A$I$ $I$H$rI$IrA$H$r $I$rIA r$I$rI$I$rII$rI$A$r@$ rH$I$r M$M4r M;l21 -vmvѵ񛪪H$I$r-%--I$I$r mTmPwr  H$R``hh lٚ2 M LR𤪫 kvh1 I$I$1몪9[W1%%% IM$s"A$ $s$ $sI$I s -۲%jz M$h$rQ `r%) H$I$H$I$sI$A$s I s*H I$sI$Hs H\Ir mY  I$H ࠀ NĒ0'66 I  sH$I$1 M$6 @ 񴪪 A $ m$h6rzzzz ِmmR1 I$I$R1 H$I$R1n I$R1}_ q1u (&H$Q0hx^W I4IQ0) k&5q1zzz ia1 IM4R1 I$ $R1H$I$I$A I$i&R1** m&XӶr1~ A H$Q1WW_^ I$$ѵ񛪪 ˖aIdR1IA$QRI$ $ϤII$rR{I$$I$I$I$ϤA$I$I$I$s1 $I$Ϥ$AA$I$II$I$q2@H$r1 8P8Rr&''- $A$r0 * IIr?c3ڳ1`hxxmdHR MҤ um״1 I$H$1 r5%%% A$I r  r @  rp'p'Q0XXXX IIr0---- 'E" r $ 񴪪  @򴪪 IH H I$Is*  im  !,ɳʪ I4i IH$ I$I H$h& @ r I$H$r 0R5rh ItmФH$IQomݐ Qo I4IR PJr'// A$I$$I$s #:3:Rxxzz KXQ񤫫 I$I ѵ񛪪 II$ѵ񛪪 I$A$q I$ѵ񛪪 I I$ѵ񛪪 mڦhڶqA$QRI I$H$I$rI$ rI @$r1I$ $RI$@$@ IԽ^j c#г &c۠Mrꪨ ImҢrW ͐ 5rQIH$q^^Z\$@dHrnA$I$Q/$q1 A$I`&arQ =   r** I$$꺪  њ1`` THPiR I$ $R1WVWV IH$ I$I$R1u_ p;7Or1%%%  A 򴪪  򴪪 H 򴪪 $I r ,51xXk$Qx~^WdIQ-+ 6AQ/+  ТEr A I I @ ꪪ I H$A$꾪 I$ $ I$I$ 򴪪 I$A  HI$ A $ I $ IH I$@   P5`ppxtTH1oI$H$r A$A$q H4I$q HK|N$&&' ibi۵Q ++ II؊1```tP@RHHϤI$I$ϤH$A ϤI$ $R1jA @ R1몪II$rH$A$rIA$rI$H$rA I$ѵ񛪪 $Ivb'ѵ񓪪 k&XӤ1 II1𤺻 !6@1* HE$rI$A$rHArA $r A$ѵ񛪪H$H$rI$I$rI $rI$I r LNL۳1--)+ $I$s"**A$I$1 $I$sI$A$1TVVVH$I$r $I rH@ ѵ񛪪 I$I$r))+ H sHAs(** E$A&"z  m6RW ֶI$1U ä$1U ڠmv1 Vi$RU ۆiRU kM$RU Hq$RU @$I$R I$I$r1I$H$q1W IP1Uq1  IrQ + 4I$r* II$ öm" $IH $I I$I$ $I$1 I I$1 $ $1ꮪ I$1   r IH$ I$ $ @$H$zj $I$1 @[m41 M;c'R@$H A$I$q I$ $ѵ񛪪 I$R1U 1R1 + h[ )$ϤI$I$R1I$ $R1A$ $1  Mm$ѵ񛪪 H6M1 h6Ir iҤHѵ񛪪A$ ѵ񛪪H$H$rI$$rI$I$ѵ񛪪A A rH@$r k&ѵ񓪪 M1*L$H$r--)-I r mmTrf҈;hxx a۱1 I$A$1 I 1 I$I$1 N-- A A$sII s* 6h6rzuu$_жorϤW @?qФ*u$1U ֶi$1U I$RU I$RU $iƳRU H$RU $RI$I$r( ɐL$1:U @$rUhjLr8^Fn dzR Zir I0 $ ۢ6 ꪪ* NUsr~^^z ih۶R1 $@R1 m&h$R1^^^ @6m$12Dr&v0+ IIQ0U5- MtMrQ? k 4 r1`` ivE I$ $R1 & R1*II$QRI$I A R1 H$m$QR tB;;R1zV $H1 !1 hI$R1A$IR1 *A$H R1 I$H$s1H$I$R1nA$H$R1I I@H$q2$I$R1("I$I R1 I$I$ϤH$I$I$ϤI$I KtΖtr/- I$ER)) $I$- 1``p ITiRA$I$ II$1 C281@@@ NTɐrФ---  r $r $ $Rh|>h$1^ QMdqϤ* @$ Q6r1U 0m1  iv$1 $hI$1u I$QU m&I$RU @ѴI$RU A$RU -жM41u mm'1] @n&1U M$UFߓ* E۶m&r I I$r H$I$r_UPC%z2'rϤhxxzmm𤩩i׮ 𤫪*I R iIqq ˴j --) P) I$I$ :XՓ1```` ۩0I1# HR1u cIѵ񛪪 I$ R1 I$hQR1uU I$Eq I6"R1u~U vM R1/ $R1 m $ѵ񛪪 m6E&ѵ񓪪H I1յ5II$I$I I$I$A$I$HԽUZ h$M6 3-ѳrWZ I$H$1^VTPmX 1I$@$1 $I$II$q1/ 6a1r Ar #1Ւ``px ٚmaR)) I$I ѵ񛪪 $IR1]} I$I$R1] O--- 򴪪  򴪪 $H$rz^ $hZ='r^ `o'I$1WI$I$UTI$QϤ +U 0I~$rU I$U mN$ФU mI$ФU0rI$rФ(U m$rФ U$rU0rI$rФU I$ФU mm{ƒФUDtU IoT* $!rI I$ I$ $ --Фxxxx pID R  $R1  @4 RR1_U H&I$ѵ񓪪 Mɐ 1%%-- HI$rQ +* I$Ir rФ```x P`RII$I ϤI$I$Ϥ$I$R1H$A$R1n $R1}I$R1 mM$R1 횤1 X&i$1U  481𤠪 H$I$1𤪪 !0 IH$1 ۖ [$ѵ񓪪 AI$ѵ񛪪H$I$rI ArA$H$ѵ񛪪A$I$r$ ѵ񛪪I$ r@$I$r ɚMR-))+A$As"*"( $1 D$I$sII$rI$I r $ $r m"M6R1Օ IEH$I$s s" * kh&RxxzIHѵ񛪪I$A$ѵ񛪪I$ArH $RAI$AI$ I$H$q I$I$1 A1 I$@ 1 I$ rn Arn  rn 0 I I1  A"dB31*+>* I$I dI$I II$ @$I$rjjjj I$I$1 I H$1 $I1 A$A$Q1 @  I$I$ A$I$ $Irjjjz  H$1 ؊[61H$I$ϛI 1 I Q/ Ih rU I$tlrU Mhr1 $hRe c'm1WI8j HUc$MUR' UI*HU$@Uqb$)UI$)@U_$ lUkmU mڤkr_zxA$H$rI$A$r I&(6r 'x&М|pI$I$r @$@$r꺪 A ӽ񤪪vHr``p $I$1I$ $r I$ 1 mӮ51tJ1----I$I s H$s &p&px mSE6ѵ񛪪 I$i1 Iڮѵ񓪪H$A$ѵ񛪪 $I$ѵ񛪪A$  r$Iѵ񛪪A$A$rI$I rH$  rI$$ 1МתOlH1WߪH Ir ["1R &faNR1  mӢm6R1 m%)R-- I$@$ A   pB'LBǓR```` A$ R1o $I$R1_~z h$M$1 *=61j N1Ϥ-/+ I r0+  IHѶr kkڦr1```` I$I  I$ $R1 MA R1 <-R@ HS rխ- SU IUݍ'AU }^[ mrW q I1կ 1R$ rU ۲U_8AUO^mUIP%IUS UIl @UIlUc$IU k^R_I $R1H$I$ $I *!R@ `NQФ--  r A$H$ R՚fФxxxXA@$R1I I$ I$H$1 (,)1Мbj Ф--)- IҶ:lr IҶZl  Xrpx vBpB31[ꪪ IM۴1𤯪 H$I$ѵ񛪪 I$R1 I$I$R1 IAR1 I$I$R1 I$R1﫪 I&MZR1 I$ $R1 R1 I R1ego I&H&R1UfVb閮1+  1 mvC61j $IMr +)@$H$rQ@$b2&`(FQϤxxx m۶hI Λ I$I R A R )/p1----I$I$sHH1 :ƳRxzzx $I$Ϥ II$A m[k-RB IxrФ IbaU֛AUyv,E.* Ib@Uy\$9Uݲ&AU ɚ A1 I$IHH$@$$I$I$ $I$I$HZ5[%ꠀ XXPx M&m"1m5ۊm1$I`1/` 1BjRXQϤ --ې mvrQ? (жIrUU brxxX  ѵ񓪪 E۶I1 I$r 1 J  $@$򴪪  򴪪 1)pxx $۠81h&k1^yp 1𤵯 Im1;* I$I$q Iڶh1 I$I1( II 1( I$I$18(* H1  I$I$q I$I q IR1U* I$IR1}*A$@ ")R@@dR  I  A$A$Z֢+fpxxI$I$r1 i8c&R1 H I$  01@ ɔOQ---- i $rQ @4I$Q Юڧrxxx^ I A&R1*I I r1H$IϤ ɐ)R𤀀@ u r+ ͶIUSIrФU IbHU Im rU I6CqФU f^I0U m$$9 0U $%QU G$rտ O$)bU I6rU}4U Im5 iҶh 1_ ILr_zH H$rIA$rI$Hr )4E6ӽ1UUU\ I)r--))AA s" i6I4s p0$rjjj ѵ񛪪@$r $Ir $:C;r1 ɖemIH s ( $A$s hmd1xpxxHIrI$I$ѵ񛪪I$IrI$I rI$IrH$Ir /1 H q H 1 $1   1  1 I$I$rn I$rn 1 4bҶM;Q??7 i۰ I$ $ I$ $ H$I1@`` I$1 I$I1 $H 1 @"h6r?? I  I$$ I$I$ [vX1```x @$H$0@$I$RI ϛ i6 1ˊ)rWb1+ $A$ru H$hrWW AI r7  $r $L$ sI$@$HI$AIII$IIA$A$sI$I$ I H$ 'f`0rX Ir A$rI I$rj&h&1hhhI$I$rϤ   $rI $ӽ𤪪 i)rxzI$$ѵ񛪪I$I$rA $r ,2-ѵ񛪪 KNR---)I$ s I$I$s jڢI1h$'J1 4i6r $A$r@$A$rI$IrI rI$A$rI rI$ rI$@$rH$ rI$Hr 34S3-1 r1o1+ ++ 56R1UՕ V Vor- - I$ms I$IR4 MڤM1` $R1{{ @$H$ѵ񓪪$@$0I6m"1j Ivr0-  1r/+ I$hs MҠHRz(~ I$M"RU.U A$H$1* AI41UU  ,1u})'N`N-(+ $I$s* $ $s I$H$ꨀ mR$m6r_Zx~ I$ $rQ )vitr EA+A$H$s I sI$I$s*I$I$sI$I$ԽVkUI$IԽUeU I m st*iП^I$A$RuUA I R}]A$I$R] Qd-(  Iۢ-жr I$$sk&I4U^A A$Roz $I$R1 I$I 1 "!")@@@@  Ф)  I$I$  $s`ZrФؘ [9ѵ񓪪 I I$q dvh1:: I$IR1 I$I$R1 $I$R1 A$I R1 IZ4mQ4Ϥ I$I$R1 I$I$R1 H I$R1wU II$QU5U m; $1@] m6I$ѵ񓪪 H&I&q (ɚ>-1ФjjjaaQ) )  I$I rQꪊ cH^QX I&ES$qq IHR -PP$rn 61/5 !tJIRA$A$1I$I$s hڦkfRxzzZI$H ϤH$I$ϤI$A$ ,.-r1njjz 1v R-)@I$s( A $ʊ MtMФ077 I$@$s"I$I sI$I 1I$H ԽU}A$I$I$ $I$H$I$H$$IH$I uu 1 MڶE۴r H@RWy M$m&1UZTm.[Q(۪-.)QϤj LQ+!I$aq1$A ȐrQ s6Fj$Qx I$ѵ񛪪 I Iѵ񓪪 I$I$ѵ񛪪 ("1J` I1 @$@򴪪  $A$򴪪 EZ$rxXX  11M$H&񤪪 N 1-- R1] I$I$r A$H$ѵ񛪪 A$I$ѵ񛪪 @q I$A$2* $I$R1  @$H$R1 IIR1+ I$I$II Ϥ R@R I$I$ $I0 XrФX؜ m0c'R1  m$HR1 A$I$q .!1@@@@ ٔ  Q)+) I$A$ II$rQ// ]`FQ I$A$R1 m۴E$R1* MI$R1,)R@@ pJ  M&m$r p$t$r~U -"I4Q c3a;rQW $I$r0 L$IbQ0W+ I r0 MIQ+  $A r A$򴪪 I$ $򴪪 HM 򴪪 HI$򴪪 II$s jxxXZI$ $rI$  rI I$1 mm5R q؉سr I$ I$I$ iۤiR@@@ II$ѵ񛪪H$H rI$I r (5C5r1555 I&i) Xۦ ]ѭI$ Z [rH$ArI I rI r$Ir I$rI$I r @$@$1 I$I1 mm1 @q I$H$1ﮫ $@1 I$ 1 I$I$1 I$1 ۺ[;4Q7=?7 IijrU  H$I$ II1`xxx HH$1 A$H$1 A$I$1 C:C:r???= II6r H$I$򴪪 $ 񬪪 HMr`pxX h6m$1I$IΛ Ii1𤪫 j5=5r1UՕ $r I$ $򴪪 I$I$rꪪ iM4r I$m$R 4I$r* A$I$ H$H$I$I$I$@$II$I$A $I  pbc;jbjr@ARФI$ $rAI rI$Irh"5,1x I0𤭭 IҒ rUU ɓ$ruU  AQH$I$r iI$1I A$r ,?12  R I$ $s $ $jj sMXr I$ $qs01v" I$4 1 I$H1 A$M$1 I$I 1 I r @$rH$I rA I$rI I$rI$I rI$Ir 2 B2r inֶ1  $C2r155 qسr + I$H s A i&s hI$RxzZ^ v'$ѵ񓪪 c'L$Q1UUE i$IQ1UU] I$R1= ֶibQ/+  M$I$s*  A$s mKtRXXXXAI$ I$H$R1~~ MiR1 Rbzz  R-))) $I A H$ I$i$񴪪 m$& r^^ IrQWW 피"AnrQ5?? rI$A$sA$IHA$HI$ $A I$I$ ۶-%sj|}trФI$A$ $I$ -4mR$R1 ,01`ppP)Nt --) I$ $ m66rj Lϑ1<<I$I$A$ r A$I$1 (0@`t @   II [-[-rjl[tWRФ M$ARѵ񓪪 I I$q RUb}1 I$q HI$R1 H$I R1 $AR1뺮H$A$I$$ H$I$R1誊 I$I ѵ񓪪 I$1 h$H$q I 1 $I q ` )dJr  ؆ar߿# N::Rꂀ}\R𤘘 mҶEu1ۻ m& 1W I&M[1  1??// qbr) I I 1H$As mMRxXxXH @Ϥ $I$Ϥ $I$Ϥ 0r1ۛ !!r--))I$$1I$ $1'-0\X E)r H H s$H$sI$ $s$I$ԽII$I$I$ $ $ I HA$ m&m6 [eMd1PPZ^ II$q M$h$1ꨨ4C "10B4Ϥ``ppyWQ-)+ I$IrQ?I  r2 _MSrޞ  $R1  1 ѵ񛪪 "11*: aR  H 򴪪  A$r K4|r /1P11pH$Qo Nt1-// II$R1ݽ I$Iѵ񓪪 I$$ѵ񛪪 @q I$I q I$I$ I$IR1]U I$I$R1V} II4R1 $@$ $I$Ϥ(RФ``p7)g1--- H$  ۲%C-rj !k1 @$ $R1 I$I$R1 H$I$R1.#,1@p @Ir- I$M6r0 k۶k5r0 ` @^r II$Q1?U -дIR1UU I$R1,"11@`pp Ir $I$rQ $H$rQ_U A$I$r0 I$I$r0 IIrQU? 'arQ? I I[r M r $H I$ M&I$ꪪ A$A$ $I$ M$I&rj|{r mI$ѵ񛪪 I$q I$IR1/?? vb;Db&r1?7 II۶r A$I$򴪪 I$ $򴪪 I$1```p M$ ѵ񛪪 $I$rAA$r C'Cē15%%% )$I$+I$ $s* ؃%Xrxxx`I I r^^N$$l2A$IrI$I$r L$I$1 H$$1 [9m1[ 1I1 I$H$q IA$q A$A$q I$I$1 $I1 I$I1몪 I$I 1 A1 [5X%ѵ񓪪  r2 I$r? Zm$rU MtMlr1PPXX I$I$rw/ A$H$R1ժ I $R1{zzw C&d&R15555  r 򴪪 @ $r l˺r|@hS$Rn II1 Iѵ񓪪 ;r1Օ 1r- H$I$s II  DB:1Z 4m$rФW DRmrϤU 0Ilr*U I-rU0mm'ФUmmܓФU  -Ф* +- I&I I$I  mS46rbbhj =pR𤔴H$I$rI$ArAA$r-4 1𤰰0 ImѮ1  I$I$r c;6;rjjjj}T6LQ𤸼 $aڶEѵ񓪪 aۉѵ񛪪 AҶ@r S/1::: vUr -)  (1Rjj  1 mIqIAr $I R1I$H$rHA$rA$Ar $I$r H$rI$I$rI$ $rA$ $R1ڪ$IR1I$A$R1oH$@$r IҤH&q [k&r1 I&Ir + HI$ C-ے,rj MI$1xX^^ m$H&ѵ񓪪 I$I$r I&iѵ񛪪 I&iR$1%- I  I$IԽZUU$I(-p $1_I$A$q2 N$H$R1_W i)4R19ZR )mnr)) I$I ضmY$sLL;^ m$?U %mQ^U Jɝ$QU Mwr*Um$ФUmnk瓽U I$֓U i ӽ2 I$$qI$I$q C4IjN$IӽI I$RuUP@H A$rR :pB'Qr| 3H-_ )tnmR AI$s( $B:dB3rjjjj IR>>&&@$I$AI$ѵ񛪪I@$ѵ񛪪P/-1А)JfJ1  @$I 6B:C:rjjzz=1Ф<4, i&M4r NL'01 I$I q 1 ;r ivi$R1U 6lI$R1 lv$R1U a$8R1+ U $@6$R 0Lѵ񛪪 M'ѵ񛪪 I$$1 I ѵ񛪪 I$I$q I ڶq R# 1ФҐNMR) i4M  m6@6rjj``MTHR𤼼 I$rI$I q 6vlѵ񛪪 [%C%r1 ii׶r I$1 m"i$s IIRXPPXI$I$$ $Ϥ $$r1 X%[r1 iѶiѶr)  $I$1I$I sX[6xxx`N1  Pv$1UV'1UmgǓU C1 I$I$II$H$I$$I$I$H m&)$s }t=or1( m[M QUU H&m$1WU A@ r1UU R#&r_ߊ O @1+ IiQr I$rj* NL 1W I$I$QU II$1%< H$H$1_L0 @ 4@%r1՗ $I r $  @$r  r1^ `&81I$H$   1+/ A$I$R1_ I$IR1 I$I IҶ-vѵ񛪪 Ivֶѵ񛪪 IҶ۰u1 Ib Iѵ񛪪 IҶضnR1U IҶ-ڡR1߫ I׶ڭR1A$I$ϤA$A$ϤB/Ԑ-RФА /rR-)) @I$ X91zz H146& I r $  H$AR1 䓽  ` 1)  I$I$r vb&"1j``` NL166&& H$I$ѵ񓪪 h$ $q i4&q 5%1N IjQ+ H$i&Q0h6m&ѭ﫪4mR'0ФZTnI$1U A$rϤU4I#2rФ} $II$r $ϤU$iĒФ  I璵a.v1  I$ $ H$I$ C۶E.rbjbj< R𤸼 Iq A$H$ѵ񛪪 H$Aѵ񛪪 X3[%r155 IIڴr I$I  I$I$ 61ppxX $I$r $ rI$I$r k6k1%-%  M 4sAI$s"( Fb36c$bjjb ɐnr1\\\\ $I$r $ $rI I r/=hRФں>*IaU慠IRAU qHU Ib$ 1U IҴ 1U Ib$1U Ib;r1Uj 6tKJ1𤦬 $A$1 EiS$1 @[1 P XyQ1555 R I$I$ӽФ $ rQ @ 1𤠨 A$I$1 I$A 1 $1 @hr'-%7 r A $񬪪  0 C:rjjzz24c$AR@HRn` A1//++ IM rZ `r?7?7 $I$ s* 8rhjz? R𤨮 Lb$ ѵ񛪪 I$I1~ m$H1 I$I$1 1 *$I$1I$I$rXRФ*:>6 سr+$I$ S [35R`p.1ФI$I$ѵ񛪪II$rA$A$r R6 iv6lr K%I%r 66R`>JJ1  I I$q I4M$q i$A$ѵ񓪪)+R:  r  $s+" 5x t ) ɐlٶmѵ񛪪H$I r1I $R1Pr_߿7 I0* Iڶ1U N[5LRU I RU IڶÆa1U MҶ-RU I$C01] lor1UWVVI$I$rI$Hr M$MZ$q ` t@Q1555 IA$r I I$r 8q$Qz II$Q1|TWW i4Ir Iڶmѵ񛪪 $Iѵ񛪪 h$M$1-% imѶ I$$@=%Qxxx pN r1 I$Ϥ ]&hR1^^^^ I6AR1P,`*r6 r A$I$ -5m61`11Ф( IҶ1 Ib$R1U h$M $r1՗ ᘉ'Q* mɖlr H$H$I$I 4 65Rp 튮mI I s ò5rzbz ФI A$RpUUU M")&rR?^ H$q$QԷݼDE1 i$HR+I$H$ X-؂5R``  R&H$A A$I$rII$rXX1 )md R  IH$ [)ۂ9R`hhx n1I$ $r m5hӵѵ񓪪 I$I$q ⭹1Xظ ma1Ϥ IE Q I$IжQU IMQU I$IQU im[Q* M$m-qФ_v 1  IEѶr IIq I&Hѵ񛪪RR R𤞞>> 6r-I $s 6m%rhxhppO 1 , I$I$rA $ѵ񛪪I Hѵ񛪪 d'p'r155% Imɖr //'I$I$1 E$M s 鐉RXXXT @Ϥ@$I$ϤI$I$ /k I$ q M H q ⭥r1%%%% m lسI I$s I$I$h ɖ nr1PXXXA$  rI$I$rI$I$r `ē1   s*I$ $s* pb3@b'r j)Ar1VVVVI$I$rH$I$r a$I$ѵ񛪪 r,Hr155%% A$ I$Is* m&iR$ꪪ  򴪪  񬪪 񬪪 h&m&rzzzZ 1 I$I$1 ER$m&1p| I$@$1 hfdr//'% Ir몪 I$A$rW *1r1`p NϤ A$I1ꮪ A$I$1 I$ 1ꫪ br//'' I r H 񬪪 */11`p i`Ϥ I$IRn II1 II&ѵ񓪪zxr'''' II + $H$sb-R`xxx%p1 I r & r I'fL$q $A$q H$ q m ѵ񛪪H$Hr`x_RФ666 ii۵r)H$Z5`1Ф  $H$r Ir $Ir`vpTRФ>66& ɖ ɶmI$I$ 2,6RzxJt1.  m$I$ѵ񓪪 I$I$q I I0q` R6676 ֢kѵr @ r  ج5`xxxB1 $ $R1 hHr1AA R1r.//' I$A#I$I$H$I$s I$sA$I s $I$s @(6rh ar1TVVVI$I$rI$ r H$E$R1WUzw M$M4q1 0Ir0 $I&rQ [.]&r0zz I Ir II$ѵ񓪪 I ѵ񛪪 I$IR1 M$H$1 I$I A$I B"$B"%Q```` I r1\~I$I$Ϥ $p'R1^ZZ AI6R1뮾` ӽ15 RM IM"s"  ӽ2z! IӽФI$I 1U m&I$1 v$I$1V I$I$r1UU )I1 U I$RUUUI$I$RUUU`{RФ664 -)PrII$ *5`&RФ IA$Ϥ Db'L$R1z~ $Ir1 k1>< ۳ II$s63```1!R  I  I"I$1I$I$rh|1<4$$ &Lӳr II$򬪪 1`` !  $I$1 M'tB'1 HI$rn`H<,$ -ֶivQ0 $I6q1* H$I$qQ I$A$rQ+* I Q $MR 17MAR1u$I"r c1I$1I$rФ*.@I$Q qI$rUUi $0z !1 % $R `;Ru$R*ڦM$1--  r6UI A$s @$E$ࠠ ininRXTTTI$I$QR $ $Ϥ$I$Ϥ pdKR%%% A$E$   A1 E&mrhhp )iR1ddV ́1* A$ 1pA1 A$A$qI$I$R1&$I$1?U $1? Hd1 $I s I$I s&"mR``nyi1DI$ UWI$ AI$r0 I$Q +U Amr $H61I$I$$ RI $A$I$I @$r4_W hMڤR//- A M$s I H$1 m&E&r`xTnIR1*  ER$A& I$Hѵ񛪪 I$q YrTRϤ>.66 r+I$@$sI$Is*$ sI$IԽYwI$I$s"  hmS4r H`tJ'IrII$RI$ $R $rR ߲r𤼴 4I$rꭿ A$Hr/ .1H8JAr  $I$rRI$I rRI $rRtR,<4$ 6r+I$I$"51hxxx1  M"h6R1z H$M$ҵ I$I$1h$Hd- !jr+ I)Q+ 6¢51x``pI1 )H1$1{ @1 R𤯪H$rI$IrII$r`r7'7' 1۶M۳I$Is* :C&RhzxxdJI1 w1>>>> I rII$rr///' II+*I$ s @$$r )`- r1XTTVA rII$rH$  r HڤM1 A$I$sI$I$s* M۴C$r`x !!R1VWWWH $q $I$q c$vb'ѵ񛪪xMxr-- - ôóI$I$ A$A$ꪪ  񬪪 @񬪪 񬪪  11`x tIT1񤪪 I$I$q h&m1 I$I 1 0S Sr///- I  񬪪 #.1hh`` RZФ)))) H$A$U I$A$U I$IUWTU P r'%%%   񬪪 P5`` hT@1Ф Ib'1 I$1 AEq KSr''%% I$L$+I$I$s*1-``` t1Ф@$I$rH @$r i& 4ѵ񛪪 Y$[6,q I$ q $I&q ؉ѵ񓪪 T R&''/ A s @$m$-XФ``ٖaP 1@Ar@$H rIr 8 Sr&''' )$A$I$H s**  )`` M1I$@$r I@Pq I$I$ѵ񓪪 8T r7'%% I$I$ӽ񬪪 I$I$S P 5P5Ϥxxxx D1A$I$R1 $H$R1XX@$ $R1ޮJr'   $s*"$I$sI$$sAI$s" AA$s(@$H$s k5krxxX HArI$ rI$Ir E$H$r I$H q1 vb:pb'q1@$I$P1_X%[50ࠠ NT 1𤫫+ Iѵ񛪪 I$I R1u I$I$R1 MMR II   I$ B%@5Qxxxx!!PR)*)%II$ m@&R1XXZZ $$r1VTVV8o 1sr/  -&E$sI$I$sX5xxxAPHRФI$@21I$Ar1+ h6k۶R1 I$H$Q1UW~W HIR1 HI$R1*I Ϥ p; r&'/' ۱سsI$ $ Z5hxxxp ` RФ h$I$ `8$R1WWW I)1-RĒ1A$I s$ $sغ11``` 1NI$I$HH$rH$$r HT pR6'''  سr I$H$ 15Ф```x H` I$ $1 tB'M1  I1𤪺Hd1Ϥ67''I$q1 N$mr0 N$aq1 I$Iq1 $1irQ) I$r :Z#1h$IBIRϤ ] $I1 I$I$1ϜZI$I$Q]U>I$I$QϤ/- I$I$r1I$I$rQI$I$rZI$I$Ф*I$I$1I$R_ݿ I$$@R} I$  I$$HQUW  r - r1 I$$I1)  I HI$ԽUUU -mӵrh &RWUI$H$R_UUI$IӽR?UUU $q2 ktдR--I$I$sI$I$1 B---Rhxz ATlq2ﯫI$Ϥ NBDB3R1~~ i$Mѵ񓪪 R PQϤ7'75 iIr) I$A s*A$I$sI$ sI s(II$s(ѳ1hxt p@RФI IRUU $ $r1 $L'N;R1 x|Lt1,&'' Aۦi"r2 iIr/  -rФ``pP@2I H$I$H  I rRUU K LrФ&&'% I AP$$I   1```pTADR I i$R1肢[&[%1 I$I$rn JDLM&'/1Yjd 1-  I$ $r5`TIPIRФ I$r$A$ H$rHI$rI$I$rI @rI$ rp$H r$I$rxI t%%%% M$s*II$s( ]6h6r`xxx mvR1TVVWI $rI$Ir@ r MѴI1--)+ II$s* I A4 C`B'Qhx ۴Mѵ񛪪A ѵ񛪪I$Iѵ񛪪 II$ѵ񓪪 MI---- $ij+ I$s* Ê@5rz^  Mc['W  M$'U  Ii?U .5v$rz_ !!i1𤩩 A$@1 I$I 1 $H$1 O Ф/---  񬪪  񬪪 -1h`xx l`9 I A$1 I$A1 H$ $1 P9rФ---  򬪪 H$ 򬪪 @5=rФ``px m4@1Ф IbDq $H$1ꪮ I$1 NΔJr//-- ٶl[% $I s /ѓ`h`x li[1I$H$rI I$rI$Ir E&h$1" q$p$1 IZ m&1] mѶm1*u  )r---  $I$ $ $#11r```` MFm1Ф $Iѵ񛪪IH rH$I$ѵ񛪪 ˰ r%--  I$I$ I&,@5Ф`hpx @$I1HI$rI$ $r $A$ѵ񛪪 ΖTIr--  I I6rꪢ i$Ar X5rФxxxx AFl1I$I$R1 4I IR1ZI$H$r Mi--- IL$s*H$$s 6tkW4rzm$1U4l$UF$U R'I$_ !iѵ񛪪 $r$I$ѵ񓪪 N$p$q tIq k۶X%Q0H$I$q-1QQ~ m1 " im۶R1] I $R1 I$I$R1 IIR  $I   I$ R59QxxzzITIDR%-%H$I$Ϥ X%@R1XXXRA$I$R14QS.R---) I$II$I$Ќѓ``x fi6iR $I r1I I$R1 c6;R1u R m$1 $1  IѦI$1 m$R1*MuW`Nr%-  I$ $H$A$ Ф``xx ZR I4h$R1 M&IR1 I6I$rR/MeAd1'!I A s  $Hs(" ,)xhhKBRϤ H$H$I$I$R1I$A$r1 @P r%--  I I$s I$I$ 1ѳФxxxx a4HR M H$R1* H$M$ I$I M`͐r𤥥- M&I$rQ M$I$rQ ڡۊ.r0x ´m$qФW Inr U ֢m& C'I8z !ir1 $A I$$s1j Ar2 * I̘R% I IM4{"ih1~ I,R*NI @RAIR1 $HR1 INr-)-- vb'&cسrx` 0r-  Mv$r i4 r1A$HϤI$I rR_H$s1 R--++ $I1 I$1 X5X51` !hR1!!j%$1 joѵ񓪪I$A r I" $ѵ񛪪I$ $ӽR @$H$I$I$I$A$I$ ԽYV}ZA$I$s61xhxx )i4R1y}} IIR1 I$MHH$ ER-)++H$I$1A$I$1 m6]&rhh`h A)"ϤI A$QR  I$q2A$I Ϥ qlR----I$I$1H$I 1` #O:Qxxxx mR1)I$ $QR IR$E&R1ꢪ $tB'R1UW^~ R5H1//--  ĒQ  mM$s ]'r^Mk'_ @$8UqmU l^roz_ t]R h$m$r1 t 'N$R1 $H Q = Q-%-- iir I$m4r 1P9xxxx t`DH1I$HR1I$I $AR1  ---- II$I$$ 15``hx vi4IRФI $j?6>R I$I0 OPɐ rn%%-- i-ڢr $I$ 5Фxxxx `ITmR)A$I$H$@$I$I  mh$ѵ񛪪 $HrA$ r i4h$r MI1%--  $ s  $H$sR#5`#6`phx !&i1 HdK1 iI4rI$I$rMwK---  I$I$s*@$H$s (;3Rxxx !$r$HrI$A$r غ"r ٖ mR- II$ $I  m%]r1````I$I$qI I ѵ񓪪I$A$r ]C-1  inI --+  IH r II* 6ْhxx I$$1 I@$1 I$H$1 N$ H1W im1 ڴm۶1 A A$1 ۺ!1jj  ---- 񬪪  񬪪 P r`ppx ڍ1 Ai1 $I$1 & )М@ OФ---- A$H$򬪪 @I$r X%b"rxxxx AMr M$mѵ񓪪 M&mq :-1@ ssr---- I$r H$I+@Z;ФpxxXI H$rI$I$r@I$r 6Ү)1Ф@@ I1. IҶAU IR7HrU Izrտ J$ r-  Ir H$m PXerxxXX Ii۠r $I$rH$A$r -1Ф@@ Ф---  I$I$ I$A$ P PerpxxXI$IrIA$rA$I$r < 1Ф@pNdJ-  A$$s I I$`#Ң Фxxxx I$ѵ񛪪I$I R1 tLIR1ؘj 0I"4B:R𤪪/r)---)II$s  I$A$s &pǓ1pxXAIѵ񛪪I I$ѵ񛪪I$@$ѵ񛪪I$ $rI$ $rI$ $ѵ񛪪 2N&ѵ񛪪 &D'1 퐉Q-+)) fb$N$I$ P1 N줭 r1UU+ 1UU I$I1Uu\@ I$@$R1 m6-"R1ꪺ II r/ AI$ I$I$R"0#11``hh II1Ϥ5557AI Ϥ Z%Z 8r $M0c:R1~j^ M---) $As "" I I$s⋶ФxxxxH$rI$H$rA I$r(-1М@@ I$   + I$(HQnU I6@Qտ* IiN$rФ  DjmR  I$H I$ $z X؉ФxxXX II R1 A$I$R1 MivR1-+ *-RФ@NpJФ I$I$s* I$s   ?8ZR ɖ`nr1寧I$I$RUUWH$H$RUU <2!rjB  `-- I$I$ II$ PUP xI $R1+ [eH-R1 I&H4 m6"1@   rФ-)  i&I r] I$M$rW k6krhhx $A$q I1( $HR1驩II$ϤI I$ϤHI$q2A$Ir1 &M26B3R1jj 1 H$I$1I H$1 C'tdzRxxxzI$@$R1A$ rI$$r i"i4r mr-)- i4 ꊊ* II$r @$A$rjjjzA$I$ϤI$A$ϤI$H$Ϥ )R i  r-)H$I1 @ s h&h1xxxz@ $rQu}U X"Œ#-R ON1++++ ڡk.1@@ } r+ QDӽ1# H$q M6mq$Iq* ԽyZZU I$s** ٢=ƓxxX I$I  I؉iR1/ I$I$QR M"Ϥ IѴڶr-+ + I$1 $I$s h&mfrhzzzA$I$Ϥ $I$Ϥ $I QR I4M$Ϥ qtq r- I$ $1I$ sƚ'ٓ``ppI$@$r1+I$ R1*I I$ ?)R@ ?opB1- &rQ ?? $r U غ6krxI$ R1+"I$I$R1H $R1u H$I$R1 L$I$R1 H$IR1 A$HR1؈:(1Ф@ ---  I $񴪪 I$I s ؃Z,rxxxX AE"rI$IrI$@ R1 )"!R@j  ` Ф---- I$I$ꪪ I$I +rpxxxIA$R1A$ $Ϥ h&h&R HM41ФjJO ---  I$I  I$ @urpxA$HrI H$rI$Hr hۮۂ5R v rФ q2U;1UC$M1U]wF 1տ mÆ r" I$As** @ IsƓxxxxIIѵ񛪪 LbHѵ񓪪 رѵ񛪪 $B"R7S6----I$I$A$I$s h$h$1xzzZHH rA$$rH$ѵ񓪪 2,4ѵ񛪪 ڶmR H$I I$H쇆z1xxXXI$I$rH$I$ѵ񛪪I $r>-R 1doR @H$r I&rkx A$I1ꮪ II 1ꫪ I$H1 H$I$1 I$I1 H$$1 A$I$1 *")1Фjjjj `) 񬪪 $$r X&Fj rФx <@41 HA1 H$I$1 ,)(@@@  !-- H I$򬪪 A$I$rjj jDJQؘI$A$rI$I r L8pb'ѵ񓪪 , 1n@@@@ NQ---+ ii$rQ * -6@r}U `)FlDrII$rI I$rA Ir "!1@@`NpJ---- I$ $ I I$ I$E&r_zz I$I$rQ iivr) 6A&r 'j$R؜H$I$r I$r$ $r " 1@@@@P ---- I E$@ jjj`fk&rXI$ $r $H rA@$r 1@B`----I$I$ I I$^GrpXH$I$ѵ񛪪 I$R1 II$R1Zjj ,R1nJ1--)+A$I$s* AA s ~5rppI$I$rA$I$rI$A$r A$ѵ񛪪 Ҳ2 PI$1𤃽W $$$1U 1I$ II$Q狼+ئmۖmP1  VqQr1WU I$ $Q?5UU I$I$RpUU I R1 $2C:R1+*>* ))Pr))++ I$  "0ѓ```` II1Ϝ/.>' H$Ϥ Z%BR1XzPX :,Rbj `1R--- II @ I$ %Fb$rH$Ar $I$rIHr*")1@@@ pPrФ--)) I$ rQ I$I$rQ* II$ӽФ $r A&i r m$H4rjo Xe`Rؘ i'L$R1_ Ir1¢ I&R1 *)R@!P'p )I$A$s I I$ ̦g1Z !1R3I$Ir0<I$I$rS$ (jb!O1-+-)I  ;c$j YXrФؘ L'v$R1( I"A&r1 I$IRUի 2-4I1UM$ " Iضm I$I$r mmrؘ I4H MM&q I$I R1A $ϤI$H$ϤI HϤ$H$R1 ҂-ӂR1h ٖbimr--)$I 1A $s h[vRxzzzI$I$R1A$I$rI$I r 4#0C0r1 !ñar I$I$s I4MRr IIRjjzA A$q2믯@ IrQYyUϤ C; k6RR iYr--) I I 1 IA$s;gs&  Ϥ  lR xZ1+*<)1ФBbJtI1---)I$I$I$As"* @$s**A$I$sI $s E۶m6rx 7[rx i$IҠR1=-- (&r1$Hr1 ."q2 iIr) ) $A$1IIs ahRhzzz Ir1I$I$A$@$Ϥ k!5rR 11r +++A$ $1II$s rܦpVGxxxI$A$R1IH$R1jI$A R1,,R@@@@ .S)ir𤭭 I$I QQ -I$rQ j1 I I$R1  I$I$r1U $R1U ;$q A$H$q I$I$q I$ r 1@@  P  $@񴪪 m$IS$rj j(Fp$RnI$A$rI$H$rI$ $r  1N@ p )  H$I񴪪 ER$I4rjlRXؘ $I I$A$Ϥ3>R1|\\_ m۸!1JJ p H$A$ ۶m-j9fcRؘ$$rAI$rI $ѵ񛪪,.)1)/n1--)) $Is*IHs($I$sI$I$s Is**  A$I$ '^Z4r HI$ѵ񛪪 I&Iq 1ۉiq*.(1@)s`r1--))I$As* I$ s%eh$1XXX\I$H$ѵ񓪪H$ $r II$q (,41**:: Yv]vr- I$I$s $$ }N`r@I$rH$I$rI$I$r,#41 ivibR- I$I$rꨪ h I4ro~e[vrH$A$rH I$r Mmѵ񓪪 I$A$1着 I4m&1 I$H$1 I$H$1 (01Фj pJ 1 @ 񬪪 @ $rjjj {QФ #1-1 pR  I1 0#5``p II I$I$򬪪   rjjjz KN1 AI$1A r ER EQѵ񛪪1#01``pp 0qФ-) I$q1 ֭6q1jz 1 mI$ѵ񓪪I$I$rI$H r,1`ppPJpM  A$I$ I$I$ h&Mrzjn~ I$I$r1( A)r m;c:rjjjt1I$A$rI$I$rI$$r,01o@`JTB  II  6b; ;rJjjhs1<I$A$rI$ArA$H r,"11``p !P 1----I$H$ m6h.rh1 rܜI$ rI$I$R1A$H R1.)/1袢: /QR--  I$M&s* ۶- $jjt@_rؘ i$I r m1 fȘѵ񛪪 Mm$ѵ񓪪 mӶmq #H$H1 I1 I4*1Ф_ IFQ m Iq1$A X1 ( @R1 I$I R1ꮯ $I$R1↑ $C::r17?=7 Ii I$I$ A$H$ @  1ppxxIDIR5%I$H$Ϥ k:$k&R1XZXP23R1jb ijir--- I$A$s 63;rhsZRФII r $H$ѵ񛪪 HAq",#-1``pp n rФ) I$rQ I$A$rQ &i$rQ " I$ӽФ II6r E66Qz {T16 $I$r1UU 1I$I RUTWW(RФ```pJdJ H$A$s( m۶h6sh dw򞒾 !!1 A$HI$$$I$A$H$HI$Խi vb 8j JPM0𤜞 I$ $1 I$I$R L$I$rI$I$QI I$ԽUI  ԽUZZZ mۄCRs_c5޸ I$ER1~ HAq II$R1 I H$  I r1I$H  ۾1[5R1 mir- )$ $1 H$ s MФmdRxxX~ Ir1zz $ $rI$H$r &$M;1555 IA s " I$ s 4BӦC'r vIr1p`x PM HI$Ϥ $I$Ϥ 5C9r1 Mir+ + H H1 c;6bس g~tܞI$I$Ϥ k34[nR1xxxh I I$1 ((,1ФhNdI1-++ I I$s$I$sI$A sI$I$s I$A$ @&@$Rxh_1Ф !arA$I$R1I$I$R1 в-Ң9R1 vr)- -I$I1 m;i; KMv1ZH@$ $IϤI$I$Ϥ ]Sk5rR77 سr H I 1 c;c#tFtAWr1XI$ $H$H I$I$","RФ``p 1- I$H$rQ_|| m[m6Q0jjz n6 $Aq H$I$q HI$q A$I q IIq IlI`ѵ񓪪 i$Ir--1`pppJtN  @$I 񴪪 c;C8rjjjz{1o<A$I$rI$HrA Ir,01n`NIФ  I H$񴪪 m6rjjjsT1 $I$I r1h%1 2,@p p%p II pbpb'rj@|1<<I$ $rI$I$rIH$r,)-1` !.qR---I$@$s"I$  s I s* I$I$ I$ $s 'c'rlD,EWr -$Hѵ񓪪 I&H$q II$ѵ񓪪-/1 ionvr---  $s I$@$j}_rA$Ir A$I r Mm1  @-18:: i۶ r  A$s 6m$vb$r`, R𤸼IHrI H rI$r- 1Ф0 vkr- -  H$A 誢 C$гr~jnQ񤼼 m0r h $ѵ񛪪 hh41I$$1  h4m6ѵ񛪪 I$ $2*i -6h$1 ؀ 1ښ:*  R  񬪪 mS4@&rjjzz 1𤔔 "(.1 p1  A H$R1ڪUU @$ )nR A$A$򬪪  4Rjzzz Oɐ<<$ A$A$1@I$rI $r@1АxJ 1 hE&Qz ?(q`` ɐN66'' aI$q ٖ Idѵ񓪪 M$I$rR8B"%1틠P PNɝ$ro+U 0l$U $rU ضmI$rnU I$RnU mv$oU &$oU͐ɐ1...'% @rI$@ r I r@ 1А1  I$I 񴪪 [6m6Rjj 1>$&&I r@$A rI $r@1А 1mmR-)-  I$@  mҶrjbz4 PKR𤜴I I$r@A R1 I$I R1 3T2>Q1 i)r I &򴪪 i$i6rj21@ mm$UƎ䳽U жm1U ZM&r SORФ I$I$q I$H$q IiqC-R iۢ r  As( v 'v;rTLR I$H$1  I$1I$A$rЋ+R>> Yiۢr A s* 5ڳr``pxd J1 H$I rA$Ir $I$rX1Ф<4 bnrI I$s* K2$[-zj#mz ̒$%HrU +RUc$ Uv\& U CU SU vФU 1E + I@ r A H 񬪪 $2:R```` 11Ф ")<1 ) 1𤯯 I H$1 @`18< !`R  I$A򴪪 ,Ү11``p  $H$1ꪮ  D1/?H Ir@ X 1 ib R+ E&-Ҧrۮ-r```` H  N )$I$q )I$1 AۦM$q i I&1P Ii1 Im&1 IS H1 I Mڴ1_ I1 M m&1 M6iQѵ񛪪 IӦmR𤫪 $$r $IrI$I rZ b1 Ю閶R I$A$񴪪<-1```ob1@$I$rI$ $rH$I$rBZ*1 ivi r) M$i$ ڪ5R#4Rhxt /K1Ф A$I$r $I$r IR1≽cQ?>?7 $r A$I r m Iӽ񬪪 fB'4Mr1x S"MW yO$) rU o$ hU s$ iU yM8U I4h;`U Iի I+ڵR IIr着 I$1'r_ H  Q~  )Q1WWWT IIq I$ѵ񛪪 H$ $R1 pB'p$1'%%- A   H  zjz kr1I$I$ϤII Ϥ m&m&R1\^ Pker17' 1'r  ض-ɲ$ Z5kR'1zz 1 I$ $q I$I$ѵ񓪪 $I ѵ񛪪 I$1z" I6 Ҷ1 MAӶ1 " Ibm1"" I44R1?? Ib'r1 ҢmR1U I$Ir mI41 $Iq i)R1+A$r1P` R؜ !wnnRI$I s* [͘ٳr`Hhv17 mٖmRI$H II II$I$H$ @$M$` A$I$ I r H /+ I I$I$ $A $I$H$H$ Խj II袪 Ò" 2zq9,a1U qb/& U I$k lrU imrU q'IrU If:1U c9 1U* u4IR  I @+ I A$1 0l'3h I͖r1I$ $R1ꪪI$ $R1I I$r hڦm1%%%% &i!i۴ -&m$r tB0L&r`@hX mir1\^^^ -M$ I$ $R1믽 iI$ B&j"r1:/'' i$I$) I$I$s mӶmR,rhh`ϐcjR&&I$II I$R1zj MҦM41ꪺ I$I1ګ H$I q $ $1U5%I$I R` H$I&1U\TU I Iq iM1ު I1* I$H$ѵ񛪪A$I$rI$ rI$A$r R>> i)еr +A$Hs" 6E&r`h`x otoR,I$H$I$ ϤH$ QR B(kr1>>66 6۳  $I$1 @ 4@4rhh pOR$$ I I$H$IA$H+R𤐘 61r H rz M$mQ I$I $l)qW h$)AqTU ݘ$)Qժ v<Ar]ժ $rФUU ]rUI$ IФU r$  a`ڱr+ H$I$񴪪5?91hxxJ" 0 $rWHD>R_t$10 %䳽1 [X$j =`xɖ$n$A$R𤈢U ۜ$R𤀠U H$1ϤU @X$n088 DI$r 瓽rU(1`zopn1H$Iѵ񛪪II$r MI4ѵ񛪪 I H$1-  I$ $$ H$I R@@@@ H Iѵ񓪪 I$ ѵ񓪪 I$A$q Ii6q q I$ $q IA q I$I$qPhR1 ڳr II$s* @-[ڳr`bxKKR𤬦I$@ rH$A$rA$H$r RФ..6& !!& A۶I=`?61hxpJ 1 A I$ I$H$ RФ666& sA I$sI$A$s ab&fbسr A$ASw} A&II$I$H$I$sI$I s*  HҤI$s II s ]Eꪯ I$D$ A 񬪪 5R51xzxx !1𤥥 (&mӶ1  r5 $I$R1}ZZU pH|QФ&& Air A $򬪪 ,-#1`` )  $H 1 I$I$1ꪮ M& 6rj|14444 11ڳr A I񴪪-؎1Ф```` J1o I$m4q I$I1 hI&1 II$q H$Iq I A$q A$@$q qѵ񓪪H$IrI$I r $I$rI$H$r $ $rA$@$R1멪 $I$R1 14444 bur A$H 񴪪,ѓ``J1 I$ $rI A r@$H$rhp14444 aЁr) I$I"cS51`xxpp1 II$rI I$rI$I$r R.&&& M I$r `$I$R iIR*  I$H$S}w I r I$ r* II$ ȯJijrVT TI+ $I$sI I$s*$I$sII$s(( m&m&rZzzz  1r1VVVV I$ ѵ񓪪 I$Iq AI$ѵ񛪪 h$M1---- I I$I$ ES4E"rhhhj jvHq2 $ $ϤI$ Ϥ HB`L'R1Z zr1''75 I$  I$I$S"53֒```pIpI1  I$A q IرMѵ񛪪I$I$rIA$ѵ񛪪A$I$rI$H rH$@ ѵ񛪪II$r15խ i$I R1 Nb: &R1 M$E&R1_ h4I$q I q R1I$I 苞zxR<4$$ a۳r)+H$$s*** 1#6R `x  AisI II I$@$IIIԽZ FL&N$r I$H$ IIr+ H$I$ԽIA$ @R I@$I$A$A$ԽjjI$I$s *$H$s $Is I4I ꪪ AI$r I4H$rȈ AI$r L'r $I$򴪪 I$s  I$I $i6 k5h6rhxZ t vnr1TVVV E$I$q I$I$ѵ񛪪 I$ѵ񛪪 H$Mڤ1---- I$$SU I $r cc'rQ 1Q1VWVU MФI$q hiq ɖ Y$R1 `$t$r1%%55 Mش   $I$1 5<9rxx`x hR/ I$I R1z I-$r L$H$1 I$I$1 Ii6q )4i4R1?= $0Rpx{y A$I$ѵ񓪪 mi6q II$q ѵ񓪪A$ $r$I$ѵ񛪪I$I rI$A$rr,߈RФ>.&& i[is+A$Is"** =XM5RhbٔAR HHR1I$I$ϤI I$QR j{w177' A A *I$I$s* =c?21`'d  R H$I$I$ $ϤH  jRФ<44& Yi۶r (1# r h$M Qz I$H$rQ Hq1 IHrQ** II4r II s AA$񴪪 I$A$񴪪 I$񴪪  I$񴪪 $񴪪 Ii$ 01Ф`p1 I1 IҮmW11] Ogȉ|1o4$$ yE 4HR- Is/1X#```I1  IIiR**v"iRv I"I$ ϤW I'KM<,, I  IҶ$I1ת I$Фzz ɐO I$H$qI$I$q$I#1`m</ 'r I$I$r** I$I$r` II$1UUU\ )"I$q i$Iѵ񛪪 I $ѵ񛪪 I$mR ѵ񓪪 I$A$q I$Mq $I$q hhr777' ۱)H I$s X4X5R`xxxpB1H$A ҵ𛪪rI$I$rw;!sr77%% I$a$r I$I 򴪪 Ь5``hP@P@RФI$A$H$ A$I H ;Jr7'%% ٖmٰmII$H$I$I* I&H$r A& $ I $"I$Hs* I$s I$H$s A$I$s Iú V'*  I 񬪪 5`ppx pP1Ф H$I Q*  P<5SU77 @$I$u HDXRn&.// II$r II$򬪪 55Ф``xx po $@1磌 I$I$1 I$I$1꫻ T TR&''' !Amسs AH 񴪪 1rФ````IT@1o I&mѵ񓪪 I$Iq @ @1 I$I1 $M&1 I i$q mڴIq II&rI I$r $@$rI$ rH$I$rI$HR1A$H$II HX PR6''' iAs H$ $񴪪-5Ф``pxdIP1I I$rI$@$rI$$r T PR6''% )$$ i&I R-1`ppIv`1ФA$ $rI A$rI I$r Owr75% I$I$r HHr+7 I$I r I$Ir* I$a$ I$ $$I(b` JDMrI$I$s*H $s( @H$s* $H$sA$Is#)*A @mR4z~~~ Pr1VTV I$I$ HHѵ񓪪 A$ѵ񛪪 ͘r1-%-- I$r   $@$rzzzZ MT@r1I$I Ϥ h I$ Lb&v$R1^^ HKtr'//- I )RSu @$IS_ ЬrФ``MDI1  I "rI$H$rI$@$rI$A$rH$ $rII$ѵ񛪪II$rI$ R1I$I  $A H$MҶR1 ffB8r I$I$ѵ񓪪 )PIR1 HRI H SrФ''% ض $I$њ 1` ۺؚQB@ I$I I ԽjzHH$ԽZWWI$I s h$M$rZZ$I ׳r++ h$q Iq*I $ I$H@$I H$A$ԽjjjjI$$s($I$sI$@s $I$ I4I񴪪 vl&vb0r I$I ӽФ i4IҦr Iسr mA$r I$$r I$ $r h34m1 iEѵ񓪪 M)$ѵ񓪪 I$I$q M$I$q HMҦr1  I$ $S I$@ӽ񬪪 4C80C;1 m!q IIq A$$q AI$q pS Tr'''- ijr* A$I$#51hxMR𤫫I$H$r  @$ѵ񛪪 &f$q I A1ꪫ I$ $1 mѶI$q1U5  A$I$1@yzz Z$I$q $I1 A Iq IIq I$qH$ $r@$rII$r {Pr''%% ۳H$I$s*#?d61hhx mmR $I$R1I$ϤA@TT17%%% E$E$sI $s ,-`HtHRI$Ir1 $H۴q2$hmR1^ڪ MʄR.&// ƔIir I4I񴪪 Imˆmr I$I $rW_ I$"Q H$IrQ*  $M4r I$I$񴪪 I$I 񴪪 I$I$񴪪 I$H$ꪪ II񴪪 $I$񴪪 I $񴪪ڢ1P5r`P1oH$H$ѵ񛪪H$ rI$I$r HtKTR&''' IIr I$I$񴪪 Z1Ф``pxITA1 Cm׮R Z#4&r qI1* ȅTK Rn6''/ iIr IA$  11r````` DH1H$A$qI$I$rIA$r M&P$1%)$IR 0VT I$h1_]_I$I$1UUI$I$r1XVUUI$H$rI$Iѵ񛪪 I$r A ѵ񛪪 I$I$ѵ񓪪 I&h$q H$ $q xt{r''/- H$H$I I$sB#Т91hxhx dm1@$Ir $IrI I$r -1 I1-) I$MR rQࠀ I$A$q1 H$Ir0 H I&r0 IH$ H$A P1 IIq1 I$$r0 II4rQU I&HrQU I$cr0 M$I$Q0j I&H$ $I$ $I q1 I$L$rQ I$I$rQ   $ӽФ $I&r  E4@"r HI$r h4H&rjk{[6~5rФ (@R1A$I$R1A ɒ!R@@ 1---)I I$ A$A$ X^b rФؘI $  I$Ϥ $I$ϤI$H$ϤA$I I$I$I$I$rI$I$r1H$I$s @$H$1VT\P I Iq I$)qA$ $rA$I$rI$A$rA$I$rH$ $rI$@$rI$A$rI I$ѵ񓪪I$A$rI  rAH r (1@@@@tNpr  $I񴪪 hnX5r XF`RX؜IA r [66R1j{{ H$I$r ( 1@@@@    I$I$ I$H$ I I I$ & $I$I$AI$I$ $s $ $sI I$s*I A$s*I$H$sI$I$A$A$s"H$I$sI$A$s* m6&rhz I$H$rQ I$IR%) I$ir**A$I$s" I$A$7~k6rpxX $I rIѵ񛪪II$r"-"1``pn1---- "-C% )4-4rjjtt1<H $rA$I$rI$I$rH$Ir@  rI$I$r $H$rA$I$rH$I$R1I@$H$A QR m"M M4IR1 $@$q EӭE[lR1껫I I I$I R1 I$I$r A$H ҵ𓪪 A$ $q I$H1몫 hR$h6ҵ𛪪 M&H$2 ")#=@`p   $I$򬪪 m6(6rjjjz KM1n88< I$1 II$1 H$ 1 "15``pp Ф I I$ӽ I$I$ӽ I$ I$I񴪪 @$A$񴪪 $ H$ $sꪪ pb&Iӽ𤪪 II$rQ H $rQ*** (ir? IH$r I$I$񴪪 I$񴪪 I H$񴪪 $H$񴪪 II񴪪 I$I 񴪪 I$񴪪 I$񴪪 I$ 񴪪 h66rjjjz|@1N8< $I$r  $r$r"-01``pP!`B`  I$I$񴪪 C#c3rbjs0{ 1<I$I$rA H$r $I$rA$I$r M4Hѵ񛪪 IIѵ񓪪I$I$rI$I$rIIrI$A$rA$I rI$ r JhD1<,? $I$r H$I$1 I A$1 H$I$q A$I R1 A I I$I r $ IA$ A$I$ $2C8r155   $ I$@rz蠠 MKr MtIѵ񛪪 IHR1 $I$r1 #1R1^P qYnr--)-I$Is*$Is I$s*H A$sAH$ A$I A" $s* A$I$ I$A$ꪪ$I$ Iꮿ II II$I$I$I I$I  H$A$r~ hR4HӴӽФ I$I$rQ I$$rQ iMrQ *( 6H0$ "r1@ MO\N6 2-#11Мj ITϤ//'-  i&q "-"11-``pp Q  r-% ج6k:Q` MIn I$I1ꪯ I$1 A I$1 $I$1 ɐ1II rA$HrI$$r $@$rA$I$rIA$ҵ𛪪I$I$r $A$r h&m&q $I$1 Ivmq  ѵ񓪪H$H$rIHrHH$rI@$rIIrI$A$1U}CA S5r1 ˖aɖm $I$s ۶i;t^r $R1I$I$R1I IR1jخR1zZ r) 04c;r~~ $(6rQ| $q1 I$I II$p1 I MrQU? N$ rQ  I0$CrUu I$I rUտ I$AжrUz I4 6r0 tB&v ;rQ~ I  q1 H$I$q1 AQQ m4I"rQ II$r. I$I r I$@$r $Ar+* I$I$r+ m6RjjL1 $I R1 $$R1꪿ I I$"R``pp)r/aR--- I I$ ;vb'rjk#RФ< AA AϤI$IϤI$I$QRII I$I$R1nm]A$$ѵ񓪪H$I$R1 H1 I$H 1PPpp I$i6q HI$q )I$q a1r I$rI$IrI$H$r rI$I rII rH$ rI I rH$I r"(01N`dI  I$I 񴪪 vb;B8rjjjz|GX1oI$A r &h&q I$I r  (1``ppJd Ф  I$I񴪪 $ H$I$ H$I  I$I& I$IP$I$H$@$I s(IH$s"H$ $s H$I$s(I$Is*IH$s"I$I$sH$Is I$  Ųm%rzZ^^ I I$rQ !؉Q ++  I$I$I  m'Fb'rA[}RФrI A$rI$ $r 1 ٔjR--  ,rꪪ ;1:rzzjz RФ m6m$ѵ񓪪 @$1 EE&1 )дm41 &81 z AZh$1 mM&1( Hi$1A$ $R1U h[H$R1 Hڶm4R1 A$I R1 @$i$R1訠 P+R1 1L0R1*} E A$R1I$R1U -$h$1" i$1 m4@$1 MZ-41񤪪 H&m$1**: C&d'1𤨪@"$P%А 1 A$I$򬪪  4Rjzzz Nɐ46& A 1 $I$1 I 1 @$@$틠P I$Rn U @I$rnU @I$rnU  II$rnU mI$nU m$oU mv$U 0i$nU @n$rU MO$RnU I$QNU 0jɓ$rNU iI$rnU D$nU Ao$nU @$nU ͟$nU m$nU m$nU 4i$nU m$nU m$nU $i$rNU 1..'%A@ rA$I rH$H$ѵ񛪪B#=/%1` v1  $A$񴪪 m6kӵrjjjz  1Ф4,, 4 41  R4($1 I @$ѵ񓪪 $A&$1" MP$M41 ii1 "II$ѵ񛪪 @$rI$H$ѵ񛪪 mI$ѵ񛪪 Ii$ѵ񛪪 ' M1IͶn1=? $I r H$H$1 H $1 1 @$H$1 @I$1 I$ $1 A$$1 $1 @I$1 @$@$r1%%%  $ I$I$ ۶i8 NtN`r1ب NLR1I$H$Ϥ HϤ9R𤠰X ni$ UM41UD䓽UmۓU{ǓUDmޓU0imk'UDm{?ϤU HfrUmm&ϤU Ib$U I$'Uil'UMl8rUmm?U 0 $U me>U mrU HrU m$rU I8qU I$QU }$1  Iɐ̃..' B=#<1`` IDI5 II$q <@$-p ސIAQϤ Mr C:C:Q``` ɑ 16.( h$1񤪪 $1񤪪 @$1񤪪 $A$1񤪪 i$1񤪪* -$-$1 Ҧm61 mm$1 A@1 &M01  m@41  Am41 M $1 MҴH$1𤨪 M"I1 ؎ѵ񓪪A$ $rI rH $r $A$rI$Ir $I rAA 1aAAA k%C&15%% I$I$s I$I$jjb=PrI$I$II$I$ $,قRФ  PIb'1 Uȶ$W \:rϤW i$1U 4y'QU q1U 6m{;rU IrU mk$rU Il$U mm$rU 0m$rU F$rnU @I$1NU ֒I$1NU @rI$QNU ɟ$rnU M$rU il'UF1x 0m]UӶU yUI&AU IU IU IrUIҶ&AU]& U~² U ~қФUIҶ$aФUiO& ФU N$r%rN_ @rUNϖ$ФU ÑФU@rUqҖ$rU IҶIU IrU I'(lrUI$u1nUId. 15+  )Q /- @  1```p ɔHɔn mǂ I1W -'hUUzp $IR  ;1+ M41 I$ $R mEvr I$i&Rz iE q iӤh1 i 1j I)ѵ񛪪 Ib&1倊 ivm[1ߨ C$ 1W H1W IR4m1 I&I$1 I$I 1ߪ I$H1} @ I$1 Im1*  II1 qbl1 II 1"  Il6l1" I$I$Q I A$1 A$Iѵ񛪪 $H ѵ񛪪I$@$q@X 1n )m鐮r1 I$mӽ I&Hrj&A^ IRU IҶU y޶U߲&AФU I$ 1U qYr$rn$)aUR$HU $) U}ܶ%W On#'LU iҮ `1U ۶ض$1U  $dRU * Ib& RU I$mRU I$i RU Ib$RU I$i[RU I$-RU MҶ:lRU IDŽMRU I4m rU r*  I$sA$ $1 c86c;r ɔHbr1 d p:R1^^Z iiжH$ $Ϥ$I I A$r1I$ r1I$H ѵ񛪪@ r I$ѵ񛪪I$I$r$IrI $1  IEr1UII$R1I R1W I4IR1}II$R1ݪHHR1(I$HR1I$H$R1( I$A$R1ժ I$m&R1U ImR1u H$ R1U IımR1 IbۆmR1U IIҦR mۆaR𤯪 41` IDI=+ I$Eq Z%`&1Mܜ A0AQ ! rQ +  $ $r{} t"6rФ^ I$ rnU I$+rnU I$e+rnU I$% HrnU I$&roU InUNR U I֒U U IBUO@UÖФU" IrU I8 QU {6r y&Hի Im RU I8 ARU MҴm[rU" Iҵm[rU I4-Ҷrժ I'ArU Rk׭rA (r I$I$s* $H$s vb'v$r` J?dOr1TVI$H$H $I$I  I$R1$I$R1@ H R1 ]ӶE6R1_z{Z IA1 I 4ѵ񓪪 IMr i$HR1Uk I4m1I$@ r iZ$iѵ񛪪 I Ҷ1j*  I&M1 6L1 ibk1 I"m1U I$I1U IIrU IIU+ ii6ӽ1= I$h1{ I$MӠӽ1UUWT Ibôm1" IĶm1* i۶E1 HҦiR1Uם II$ H$A$R1 @ ؉18< r1 -&I$r U IIӽФ "ɒ rx I–'ArU I\U IҒU SUNLAU I$UrU I;roU  n/*I$I 1p I7oU I$# @rnU I<(@rNU I$$)rNU I$$ HrNU I$ rNU I$'rnU IQOU IR;oU I:&oU I$oU IoU Iһ U MФ  ibhr I$A$񴪪=51```pH9 1N m(6ѵ񛪪 k%XҤ2 II1 IiR1_ fH$1 IE1 IhҢ1j  IAӶ1  IA$r IHѵ񛪪 mmѵ񛪪I$I 1 I H ѵ񛪪I H$rA$A$ѵ񛪪I$A$rI$$rII r $I$r @$@$1 v$1~ h&I&1_ I$I$1ի I۶iѮ1* IA ѵ񓪪I$1HH$1IA$R𤯪A$I$rI$$r$ rh1<<$$ )I r)  , rꪪ I` $I$ I$I$ $$H$I$$II$$A$ I$ $I I$I$ $I$H$HI$II$A$I$b"&x$QZZߖ 􁓽r )A&r M&I$r I I I$I$r m;m;r жM۶ӽФ 82#arQਈ I$5r0$IA  I$rQ== I $r + ( 1``x JI I$ $1 I$I 1XR\V I$A$ѵ񛪪 MҢТR1U IҶR1U0 ж@Q R1z_ EѶmtR1_ ($h R1^V^X if$1 i1$1 1( m]$1 Zm$2 ۆk$13 c#v81뻷&Ӻ1 I$I$  II$1UU $I1U I1wwM1} r1k1I$AqH H$q $qI$I$ѵ񛪪 @$qI$I$qI$H$qH$H$ѵ񛪪hJ|1n<<4$ $EH$R  I$I$ӽ I$MR$ӽ IIӽ I4E$ӽ A$A$ A H$ I$@ I$IrQ?5 I$I$ H$I$sI Is"A I$sI I s*I$I$s* I$A$sL'")rV~ Id#r $I$򴪪 A$ $򴪪 I$I򴪪 I$I$򴪪 򴪪  򴪪 I$򴪪 II$򴪪 $I$򴪪 AH$HP/I$I$1 mS4m.r 6  r1 hƘ9R1XXPX ]עR1+I ϤI H QR I ϤI$ϤI$A$rI$Ir@ I$rI$I rA$I$rI$I rI$ R1 $@$R1*I$Ir1$ R1 $I$ i M$H$R1 ( EۦҤR1꨾ @&I$Q2 I R1 I)R1 iR$I$A  $A$R1I A$R1jH$I$r <$1pprP i2&Λ 1&11 hH1N$ ;r0 Ii4rQ  I$rQ + I$I$r I$ $ӽ I$I$ӽ I$ $ӽ I$I$ӽ I$I0 I H$񴪪 I$A $I$ $ $ $I$ I $ I A$ k&m%1 I$Iq1/ i۠)r) $I$s$Is*II$s**A$@$sI$$sI H s*IA$s* "$I s $ $1I$H$s(I$Is(" p$fb'r`h hr1II H$ $A$H$I H$A I I $ h&h&R1~^z A Hq INr I$R1A$I$R11 I$I$rIA$rI$H rA$I$rI$I r $I r I0pbq I $q $15UUU Ei$1UUU$$1+A AH$ӽ1WT\pAr $I$rAI$r1)UUU A$M1|UUU I$I$R1 I$ hp{1<44$ iiעR I $ӽФ I$I rQ )$IҤrQ*( $I$r0  I$r I6 $r A$M$Խ H$M4Խ `(JR MIԽ I&E4/ IA$ԽI$Is  H񴪪 $I$񴪪 H&I6sꪪ I$vسr $@$ӽ񬪪 I Ir2 II$r": I$ r Ii$r M I$r I& $񴪪 I I$񴪪 I $񴪪 A$ 񴪪 II 񴪪 I$I񴪪  1Ϥ`!I1N  [:S'ѵ񓪪 p 'Nb&0   1+ )AR1/=-@$I$R1A$I rI rI$A rI$I rA$IrHAr $I$rA $rA$ $rA$ $rHA$r@HrI$$r I$I$ѵ񓪪 h۶m$ѵ񓪪 mR$E$1 $A$1 I$Iq aq lۖeѵ񛪪I$A$ѵ񓪪I$Iѵ񛪪A$I$r A$rI$I rA$ $r 8P LR&/'/ AI B0rD@!t  A I$ II$I$A$II I$I$H$I꺾I $$H A$I$몺  $I$I$񴪪$I I$H$I$  H$H$rTTTTir I A$ӽ񬪪 I$H$S I$R} HR I$I$ӽ񬪪 hHrQ(( I$IӽФ h6hѭrQz ɶ &Mr0  I$QQI$K$r0/Ó$I$rzz $I$1 ) $I$U $IQ $ 1U u$n+@1Nl; R8 R1UU  K$R1u IA$R1^VVT Im:l2 Il$ 1I]7 1ߪ IҶ]ۢ1 I I$1ꪪ II1 I)r MҦmѶѵ񛪪  $q I0I$q $ q I$H$q жE[q I۶mѶѵ񓪪 m1 "AI$q@$HrI$$rArI IrI$ ѵ񛪪II rI$I$r P Rn&&. 1mór I$H$ӽ I$IԽ I&IԽ i$A$Խ I$M$񴪪 򴪪 II$ӽ M rQ I$IH$I$AA$s"I$I$II AA s  I$H$sԖI$QW PIQ II 򴪪 $I$򴪪 A$I$ HH򴪪 I$H򴪪 I$I 򴪪 H$I$򴪪 I$I$򴪪 I$I$򴪪 @$$I$Ir '!@r  [5C"rh`h )vi r1 Z#؂-R1br`` )nR1 ) $H r1I$ $A$A$ϤI$$r1A$I$R1 $@$rI$$r$I$rI$@$q m 4r1 &IҤR1 H$I$R1 $I$R1 HI&R1 I A$R1⪫ $I R1꫾ I H$R1 A$I$R1 vB;vb$R1ZZ M$i$R1 I$IIH$I$ϤI$I H$$R1jH$I$r&`1|\ 0R !11 HxKl16&'' IiR뫪 I$irQ글I$I$q1+ MIrQ r I$I$ӽ I$ $ӽ I$Iӽ I I  I$A$񴪪 I $񴪪 I$A$ H I$ I$I  A$I m6 $rj H'N$rQ|\\_ rQ5=  ɐmٖmr+ I$I$sI$$s Is**I$I$1 A$1H$H$sI$I$s*I$ ԽiiuH$I$1I$I 1 $1 539rxxxp iR1A$A$ @۶@$R1 hѦh$ h$R1 Hm&R1 6)6R1 k;C&R1z~^U I$I$q IiR1} I ($R1"R1jeMI1ַ/ II rA$IrI$HrI$I$r $IrI H ѵ񛪪 $IRr HҤM&q I$$q IA$q $IR1;/II$RIAR@`@`H$IrI$IrA H$rA I rI$H$rI$@$r JP Pr7''' 3a³r몪 I&IR4r I4I4r_n I@$rQ I$HR$rQ I)$rQ  1$R** H&M& I$IԽ HJdR h$ I I$  A6I$s A$ $s I I$񴪪 I$H$񴪪 I$I 񴪪 I$I$񴪪 i$M$rꪪ I$iҶr I$H$ӽ𤪪 A$@$r $I$r I$  r⊢ FIسr @$I$񴪪 H$H񴪪 I$I$񴪪 $񴪪 $H$񴪪 15r``` `P1o hҦM$1 M$E$rn I$0 IR1=  0áR1w i"I$qHIѵ񛪪  I ѵ񛪪I$ r $ $r I$ѵ񛪪I$IrI$Hr@$ArI ѵ񛪪 & 4r !$I$ѵ񛪪 $@ ѵ񓪪 m"I$q mRA$1 I$I$1 H$I$1ꪪ I$$q  Iq I$Iq II$qII$q $I q@I rIIr$I$r PNl;1 *m%$UX&q$rnU M!$Umm$U @㖺ФUDn'ФU m]䓵ФUm\ФU m$䓽ϜU$m$餓ϜU I;rUm$ǓU IēU0Mm8ФUi+8ФU M$ФU AؓϜU H$M$Rn(W a!?rU i$rU $U IrU In$rU mv䒵UII$rU 4$rU N$rU 6I$QU 4I$1nUHB%I$1nUH$I$1n`xU V  I1! Ib6R_ imvR iI"R1u $$R1IAR1I$$@ $R1$$r1_ MP$H$1 $I$1f Ii$ѵ񛪪  1 H$I$1  AڶH&1  M$1 Hh41  IH$ѵ񛪪 N'$1 I$I$1 A$H$1U q81u N$1  i 1" -4mR𤪪 mS$1e Hm$1 @$A$1 MM41  HM$1 iM4R𤪪 H @$R𤪪 I$RN/U &$U m$U I$U mu$U 0m$U 0am$U mm$U v$U wI1M*- I-U@$ФU  I%ۓФU@mUDvߓUčf߳U m'1U K0Ir1 I4m1// жI$rU ( M$rU $ $rU $I$rU h۴M$RU (6I$RU (ڶi$rU EѶM$RU @۶$RU  aN$RU PH$r*U $it$rU 35v'Rj A"I$Ϥ XS4-ڢR1 1vwR1 %I$R1 m$AR1* m $ &i&R1 8R1v~ I$H$ѵ񓪪 6: $ѵ񓪪 I6I$ѵ񓪪 I R1? $ $R H$I$R1U $I$R1~U  m$r -iS$R1U @$A$R1U ҦI$R1 AI$R1U I$I$R1I;%Q𤠠 R1 II$R1**HH$R1""H$HR1(H$I R1I$I$R1*$H$R1"`,:-RXX `IOR !!1񤪪 TO$ . Dn$roU ҰI$QNU$I$1 U$I$Q UI$r-U `I$rNU `I$rNU PI$rnU qI$nU M$U mg$UMn$UMm$U IۘUm$瓵ϤU irU DRQU mwwrФ / @I$1U mRU kiR EIr U -k&rU $r mI$r_ mM$r *U A I$ -vI$rU 'rU EI$rU м9m%1`z_ R1iU E6I$R1fU q II$q  q I$$q I H$ѵ񛪪 h&m$1 II1 IIѵ񛪪 IA$q !Zѵ񛪪 nֶ131 @$I$1 $ض$1( h(1" E 1  II$1( (j EQi$1 hh&1  & &1 I$H$1 II$1W vm1* m&M A$I$ӽRppPP$$R1IHR1I$A$R1UUUI$ R1UUUI$H$1 @ 1(k tO$Qo/Umn$U 0@u<U $$rU qO$rnU I$1NU I$1-U @nI$Q-U DI$rnU m$nU H8eI$rn(U A$U M$nU Im$rU m$U m~$U a$RNu 0in$oU 0h$oU m$oU 0Iv$oU M$roU i$rnU 4I$rNU mI$rNU 0RI$rNU @O$rnU Aq$rnU D$nU I$nU $rnU 3&I$1NhUWg1 -&H41𤪪 HҦA$1𤪪_  1𤪪U q81 mI1 -i&1u I$I$1 I$I$1( M"I$1" m6$1 mѶm61" 6M$1  m M61( I$I$q `ۦ$1  m"I$1 h5MӤ1 m'I$1 041 I$I$1 I$M1 MI1 $A$1 I$ $1 II$q H I$ѵ񓪪 1q$1  m[ 41 &l$1  0a61  (6 $1 MHҦ1  IS4h&ѵ񓪪/ś=1_@i Zl1I$ 1HIR1 $ R1* $ R1 I R1 H$IR1"I$A$R1 I$IR1 I$r1HI$R1w I$R1A$A$R1"(I$@R1 *H$I$R1W H$H1Լ II$R1ի" i R1U I R1U I R1U I HR1 IZ 6R1U IҦIR1U  I&I4R IL0lR1U I$m61 i$($1 I$E&1 ۶2 1@I$IQn- I9 rU OҺ&rU I¶U Ӷ$)ФU}R$ФU MߪФU IRФU rWI$ IU IҷU IRU IbU IҖU ObU IBrU IҶU IRU I?nU I$rNU I$$QNU I$$)@Q.U I$& QNU IrnU IRNU IrnU IboU IrۀroU IRoU InU IoU I$| 1NU^x iE1i  IRE&1 I"Mڶѵ񛪪 IH&1{ I$q I4i 1  I& 41 i4m۴1 MR$IӢѵ񛪪 II$Q% IH R$A1" I$I1I$I$ѵ񛪪A$I$rI$I ѵ񓪪 I$rI$I$r A"iҦѵ񛪪 I$I1着 I$H$1UU- I$H$r1UUVX I $1 I 1 I$ $1 I$1 A$1 I$$1***/ II$R1vVI$H$ϤI Ϥ HiR Ϥ L1RW+ e u1ꪠ ii[lr/ q0MrQU I8IrQU M$iQU* I$QU MҦka1_Ib/Z 1U I'U I$m!HrU )`U vR ФU v")ArФU ybrU I–rU IҶ@US&U IbUӶAU~Ғ& UN&cRM_&AU iBU CUyҶ&U yҶU IUc&@U I'Z5rUI$IR-UI$IQNU_ IҦEr M6MR1U L ;Mr1U] I&hӦ1 Mm 1 I 1կ 1_ II$Rw I$A$1U iiRU*" I4@4R1Ux I$ESѵ񓪪 i$H"1"  I6Hѵ񛪪 II1  IR4m 1  L'c1 ĉ1 Ivib1"" I $rIrH$A$rH$I$rI$ $r H$I$ҵ𛪪 @ I$q $I q A$ I$IR1 I$R1UII [h6R1^~ I 1U- Ib;r1U Ib r1U Ib 1U Ib' r1U I;$r1U NR;hrOR?# IQϤW &I rϤU* ϿHU IU yR U* I‘$HU IR$IoUyB UI"aHӽUI ӽU(/I$ӽФU AӽU# @ӽМUI@UH$HФUAHU  4h4R M&s ӂI MQ@ 2mIQD"H$IӽФUФU`uɏӽNU<( I$H 1U_ MMж1UUI$I R1UI$ $R1_ iH[$R1U MmۢR1W Nb2Hb'1W I$I1 Ii1  Ii41 Mڴ1 MҶE1 A 1 Ih1 IӴI1j  Im[1 1 Im&1~ I 1 IMӴR𤻪 iR$I1 i6 1 IA1j( Ib$l1{ IӦm1w mh&1 ض:x $I"IѤ & 1 ۖٶ1 I$1A.)1@I$I-U I$v+A1-U I$ I1-U I$/1 UI$IOH1- I$QnU IǤRNU I8rnU IR?rU I9 rU IrU I~rU yvrU SrU I޶8`rUIM"QϤU $IQϤUm$ $U  Ib$)A1U q#'@1U* I|&rU^&HU q%RU Ͻm IRU IbےrU~n$rU +QmDrU* Iܶ rU Iܲ&HrU IҺ(@rU irEN_^H$I$r 1` mmR1 A$H$q H4I$ѵ񛪪 I IR1+- I m$R1* AI@$I$I$ $ϤI$I$II$ϤIIϤI$I ϤI IϤ$H$r2I AI$A$zGxGR𤜜< $I @$H$ϤI$I$II$A$I$I$IϤI$AI$H$ϤIIϤ A$E$R1ª IR$m6R1[z vb'42ѵ񛪪 , ")1n@@@  1 II$rQ * E$Ir2 IIӽ񤪪 H$I$r H$I I$ $ӽ I$ m$I4r mMسr ,$rU$I$$rU  Hؒ AI$񴪪 I$$  $ I  I$@ 񴪪 $A񴪪 I$Mr i6mr~ꪪ I&i$rQ I I$rQ * @I$ӽ𤪪 I"Mr $I$񴪪 I$$񴪪 A$$񴪪 H I$񴪪 I$H$񴪪 Ҡ $r j&FjR؜I H$R1z $I$R1I I$R1$A$R1znHA$rI$$rI$IrA$I$rI IR1 H$H$r 1iѵ񛪪$I r A$rI$H$rH$HrA$I$R1I$H$R1 I$R1몪I$I$R1 I$I$q I I1 I$ $1\X^_ H  q $I r I H$ $I $I$1먨 I$I1..:* II$R1vI$ $ϤI$I  ,[5RQj)% 1 r )++ H Ix~ I$ r I$I I$ $򴪪 I$I i$A I$Ir I$ $r @$@ I I$r I$(ж ILسr L2 8몪 I6m a$I A$I 껮 $I$ I A$A H$`&h ۴ $I$I$I$I$I$A$I  H$A$ I$ 񴪪 - (rzzjjH$IR$rR zLRI Ϥ$IϤA$IrR[]w H$HR1 M$m&ѵ񛪪 I$A$q I$I$q $ $ѵ񛪪 I$I$R1 I&A$R1*@$H$R1jIIR1IIR1骪H$ $R1i@ A$r1} m M$R1 DL'$ѵ񛪪 M1I ArI H$rHIr1WII$R1oII$R1ꪪ  R1 H$I$R1vu $ @$  A$r1 I$A II$ mASR1 ڬ؂1r ɐnR $񴪪 @@񴪪 񴪪   񴪪 @$  4h6QH ќ IIQ @񬪪 I$I$ H $򴪪  H$sHI$H$HsI$$s$I$ I"I$I$IA$I$ IҤMҢr~ MS$HRrQ  )ڶMr@$I$ $ I$I$I$I $ $ 6b$s bbRظI$I$rI$H$r H rA$AR1I$I$r mR$&ѵ񛪪 pBH1 IM&0 imbѵ񓪪 $A$rI$@r I$I$1 MI$1 HI 1 HI$1 I I$1 H I$1 AI$1 $I$1 i$ $1 I$H$1H$rA$I$r I$H 1 IA$1뺮hm&1z vBЉ$1_ ak1 ku1𤪪 I A$qq IH$q   1N@@@ 9 Qn- I$v rQ a$IrQ I$A r0 aضIÓrUU M& r_ I$I$r߻ v8IbS N$cr A$I $I I r6Qm;r~ $HIBr ۆmImrU Ҥ $HrU݀ I$6 ےRꪠ }m r0_ꠠ I&*aQU I$$HQU I$mr蘆** I$$A0I$&HrUUI$(AQ_ I$m QWI$m+ 1 I$IQWUIIIQ I$Mr I$I$r I$ro~ kfkQؘH$H$rI $rI $rH$H$q M4 ѵ񓪪 $8 d'R1 iҁR1* II$R1**A$H A I$ϤHI$I$ s1I$I$r1 A I $IH$I$I$ vHdHR1I $ϤH$IϤI$H$Ϥ @ q2H$Iq2H$Ir1IH$r1HI$r1 Ϥ A$I  m4m4R1 vB3;R1Z~^Z -01n`pp M1Ϥ I I q1 $I$rQ * I$M$ӽ𤪪 I$S I4I$S H$H&r I$I$S &Iۤr IҶۆur IҢ@ӽ M$h&r  r I$I  A$I񴪪 @$Aꪪ I$I$񴪪 I$I$񴪪 I$H񴪪 H$ 񴪪 A$i$r N@l#rz $IrQ I$A$rQ" I4I&r Ii$r $I 񴪪 A񴪪 I 񴪪 I$ 񴪪 E۶6rjjjzt_1o<I$I R1I$IR1o $HR1kAI$r@$A$rI I$rI H$r  I$rI$H$R1 H$L$1 hݖjѵ񛪪H$ $rI$I$rA$I$r@ I$r$I$@I$@$II I I$ H$IR1 I$H$R1Z  H A I I I$ I$ $Iq  I$1+*+. I$IR1^t^V$A$ϤI$I [!mS4rR=?= ,ɒ-r  Im$ A۳ I$H$1I$A$1 $I$sH$ s I A$s II$s IA$ I$I$򴪪 H$I$s*I$I$ A A$ I4m$s*I$I H$I$I$I$ $IA$  $Ir,r ܜ I$HI$I A H II I$H$I  II$񴪪 Rr vB ҳrojz M18< $H$Ϥ I$ϤI$ARUUՍ I$I1UU? A$H 1UU I$@r1UUZ I$A$Q1UUUs II$1 II$ѵ񓪪 $ $R1kYUIAH$$Ϥ A$ϤϤI$I [;4kR1z~z I$Ar IIq  $R1 $A$R1תI$A$R1+IA$q2$I$QRI$A$ $HR1 $I$R1  IH I$H R1 I$I$R1 I$I R1 ."R1Z  Ir @񴪪 I񴪪  񴪪 A I$ $rj @h&rQ@Iќ  )r- @@񬪪 H$򴪪 򴪪 @@ 򴪪 II I$A0A$I$I$A$I I$ A$I$몪 II$H$I$H$ $ I I$ꪪ IӦH$RjZh` i$I6rQ** Eѵ)r" $  m$ $L$ I$I񴪪 m;46rjjjzt1N<<< $H$rH I$rI$ $r $I$rI$H$r c:v;ѵ񛪪 mSMS1 II1 4qI$I r M4 $1 I$ $1 I$I1 $I$1 I$$1 A $1 H$I$1 I$1ꮫ H$I$1 I$A 1 A I$1 I$I1 A4I41 2$XaR IډM1 m&m1 I$IBgv( 1𤿷 I$Hѵ񛪪 IH1ꯪ H$@$ѵ񓪪-"11N``` IrФ-  q'LBr 8mr I$Ir I$I$s M I s IM6񴪪 $I$񴪪 I$I$񴪪 I$I  A$I A$I$I$H I$  I @$ i$H$ cMг_ iR$-4r_{ i$M$rQࠠ I$H$QQ NĉrQ//  i& $@$ $ I $ $I$ H I I$I$ I$H$ I$$ I$Iꪪ I& "r~~jjltW1<I$I$rI$I rI$r mR$ $1" N &F1 A&m$q I$M$q -$r m$r $iq$R1U I $R1 u @$I$R1 M6R1  i$I4R1 $ $R1* II$R1@$I R1**AH R1" II$R1  A RbI$HR1  m۠I$R1(*I$HR1w $I$R1 *WI$r1UA$I$r1UI$I$r1]I$I$R1- I$I$ I$I ()r #%B"%M NAQ-) M$IrQ+  IA&r2 $H6r~ mrФU mdU mmU @#iǒU @R'rU $rUֿ$rUI$rU `SI$Um$䓽U mo$Um$oU m$oU `$U i$U m}$roU M$U A$roU qI$rNU аI$QNU ĒI$Q-U mI$rNU M$nU0rФ + nr I I 񴪪 :X5R@@@ 166&'$A$rI$I$rHIr M"M&R𤪪  M$1( m $1  HӠHۤ1  -дI&R𤪪 AФE$qs$r&1𤨨^ 1* $1 I$rA$@$R I$I$R1vI$I R1}A$H$R1A$I$$ II$ A$I$R1 R1 $ $ A$@$ IH$ $ $I$q I$H$1*.** I$IR1~~I IϤI IϤ fB'pB'R'- I$I&r Iaг/ A$I$s m6M&r $ I0rU E۶I$rU ж $RU övn$RU жM&RU ðv;1W $1UFt?UMm[?Uid$U$Im䓵ФUme<U m$?ФUil;U4m$'UmeܓФU mmФU h'gM$Q-(8 m?U4mm$Um]'U I$7Umu$U0 w + Ir(!rj  8&R@``` IT 16&&H I$Ϥ I$q2I ӽR I$H$1 H$1 I$I$~ I$@$QԠ I$I$r1^   r1 ٖmɐdRU *A$I$RZH$$RUURpHA$R1(A$I$ &@8'R1_ k6h&1 qI1"  R1/}$ $r1wIHr1I $R1A$I$r1II$I$I$ @$ $R1_ I$I$R1 II$R1  I$R1 I$ $R1 H R1ﺿ I$R1 @4@r1ם I I r 񴪪   @$Rh жm$1W $icm;r_$O$QϤUqɓ$QϤU IwU md$U J$U $ФU 4i$U MI$U 0 u$U i$U m~$Um$U $M$U iu$U  I5$Umm$U IiǓФU e$rU 'QU @r$rU I& 0 w* mIsI$ $s  h&mrhhj  𤗷I H 1UWW*A I Խ1UUUI I$r1 MӶ)$R𤪪 MM$R𤪪 :$1W A$I$1𤪪 I11 M6h$R𤪪I$I$1" E$M$1񤪪 I 1񤪪 II$1 HI$1 H$H$1 II$1񤪪z ii$1_ E&m$R𤪪 mi$1 I$ ѵ񛪪 I$A$1 w I$$1  @ R𤪪 -M$1jI$I$R𤪪 H 4E41  I&)$1z m&IR𤪪I$IrI$I$rI$A$rP#ФUm-璵U $Ql$U In䓵U I +  HI I& $ C: C:R` 1<$.$IrI$I$rA$A rR%X1.Pظ NےrU o޶U rU I$( QU q'@1U q1U IΚ܈arU qU &rФU* ϒrФU* ñU߶IU ϤU϶&AU]$HUI$S Hrn_q&AU ORrU I$UqN&AU ?U yΒrU OC6hrNꠀCtBRN $@PR16M2R1jb /z61P%h$n I`r) $Iru r1@`6RФ. I-4R1 IAZ4R1  i$mR1]  I$R1W Iڶh1 a1R1+ I$H"R1U I$I$1 aӤmR1UI$IR1U IR MҶ R mE1  II6R i6MR I iR i6m 1 IH R mҶE1 qb#vL1U I4M"1 qb11* 1ժ |X1(8 4!r II񴪪*/41```p11I$A$rA$IrI I$rR%b1Xظ I&nU InU Ib@nU Iۛ&@nU IrnU I$k1-W IQ. IҶ(HU϶% U I$r mrФU( m4ФU MRIrUm$)AU# Uo# 1U [I1U Ij+H1U I$ 1W o-m1U IbIr1U I$m 1U IҤmRU* I$ml1 o r1W_ I$$R1IA$I$ Ϥ pB'DēR  HI  II$  6l۶C; mRXZ^VA$I$ϤII$s1 $IϤH A$q2H$Ir1zII r1 H$iS4R1蠠AIR1+*IIR1W I6m1y  Mۤh$R1ի MH4R1ת I@R1 AR1 I Rr1u A R1(  AR1 \[R>>. MmR1"  ISi R1 IR4mR1߀  IҠ-R1( IR1UR RФ8 퐶-r "("%r */1` 1  A$ϤH I$ϤI$I ӽR 5 I$H$1 I$ $1 I$I$1 I$$~ I$@rUW^ H$H$r\ AIr I$M$*+hlФ|<HМU OФU ߶`rU q$[ I1U T QU* OФUy֜AUqN#%HU Il&UN'& 1UI~%aUI61U IҴ1U I4 1U I6 1U dKB1 A$ $R1 H$$R1 I$IR1 @Xr15/%'  $ @   @$rj  隮r1xx\V m h$q @$I$1IrnII1  I1+ I$I$R1U q I$H$R1e_w II$1 II1񤺪 iIР1 Ih۴R着 IӦiR I@1" IR$m1  IڠA R I"m"1 I(&R * IR4 R1U IڶHҦR MҶCR^ IҴE1 IIR1?uXrФ* -ir @I=c5R`zx )JRI I$R1I$I$rI$I$rR%Z"1 Xظ I?$@RnU I$di1-U I$ 0 U I%9rNU IrnU InU IޛnU Ir&nU InU IbnU InU IҿroU I@oU IoU IoU I oU IbےnU IoU IڒoU IoU IR&nU IoU Ir' RNU 91 A$A$rA$I$rI$I rP`,1 f$aR $I$񴪪C#.1```>B1 I$m[1U I4i&1UW iZ MrU I@ R𤿪 Im&R Iڶm1( IӠh4ѵ񛪪 Mm1  IҦE"1 ii1 iRiڶr IM1" I&HҶ1 I6M6ѵ񓪪 IB۰a1  I5k1ժ I 1ժ M)ѵ񛪪 IRI$R IEТ1 I6mR𤻪 iRh1 MM&R𤾪)r/ ór I$ $=:51`xdKB1I $rH I rI$I rhxr6 mr# $I$$I rꫭ Nb;MړrUWz @$I$rQ_| I$I$r0 HM$rQ? I&r-% H I$ I$ $  I I$I$ I$  I$ I$ $I$I $ﮫ H$ I$H$H  $5` $1  t" 1.> -&A&R1jZ^H$J11~^~I$I$1M6& !$71 mM;r  1```IAR I$Ϥ$I$ϤH$H$ϤI I$Ϥ m6m6R1z iIR1/ H$I$ I$H$R1]yA$ $I$@ R1A$I$rH$$rII$rI $r A$rI$$r ]$1~ źm$1} I10 ڶIu1w hgv I1 H I q 0I$q hHN<44$ 1lR I$A$񴪪 1Ϥ`!I1 I Ir $rI I$rpȫ|1o444$ iumѵr I񴪪 H$ $񴪪 IH񴪪 ER$ s t$L$r0\\\\ ɐtɖv0---- II$ $I$  ImӶ񴪪 Ib۶msA$ $I IH$$I$I$sII$1I$H1A$I$1$I$1 $H$1 $I$1 6c80c' ibmr1XXXXA$I @Ϥ I$Ϥ H„L$R- II$?/I$ $s $@$h inibrRt $I$ϤA I$ϤA $IAI$I$R1n@r1H$I$H$A r  I rI$ $ I$I $Ϥ$I$Ϥ $I$I A$QRII$ϤNS~SR&&%%I$I$I$ϤH$I$ϤIIr1 $ $h*x1<<$$ mr)! rں 5Z5`ppp I1o I$ $Ϥ $I$Ϥ $I$R--7 H&H$1 $A$1 H$I$1 I$I1 I4H H$-R4r~~ $I$rWX Ii$r I I$r* M$Ir $ $r^ H$I$rQ|\ I$A Q0 1Q I$I I I$sI$    $ III$ II$s* $񬪪 $񬪪 -X5Q`` 1  I$ R1  AR1 IIR1 HHr1'''  A  h4@&rhxxx 6!Q1_WW m$h$1$A$0H$H$rn  rn 1a1*  ѵ񛪪 I R1 II I$I1 I$I1 $H$rH$IrAI$r H$rI$I$r $H$r@$I$r I$r1I Iq2AIR1IH$R1 I&X6R1 II$ `fx1<<4$ r)I $c=6 C2``RФ IA$r1~$H rI I$rhH1N<<$ !l:&rQk I'q0vWW mI1- r A$H$񴪪 $I$򴪪 H$I$񴪪 H$I񴪪 I$A 񴪪 I$ $񴪪 I$I$񴪪 $I$񴪪 I$@$񴪪 I$I񴪪 I I$񴪪 II$񴪪 I$ 񴪪 II$񴪪 I$A$񴪪 $ 񴪪 I$I$񴪪 I I 񴪪,/-``` I1o H$I$rI $rI$I$rp gȇ|1N<<,$ imۮr H񴪪1Ф`J1 I H15577I$@$I$A 1\\\\A$Ir $H$r $I$rII$rI$IrI$Ir $H r  @ rI I$rI$I rI IrI$Ar h4@ѵ񓪪 H$H$q A rI I$rI$A$rI$HrIArH$IqR6$&& )4r ) II -1/0`!  1  @$rH rA$I$r TJLR&''' Ii4,)IsꪨɐDIr  I&I rꪪ I$IrW_ a$I$rQ_| I$ P1 A I$rQ = ӽ񬪪 I$ $rH$ I$@$H$ $I$ $I$I H$I $IIA$A$ꫫH$I$I$H$I$I 5hxhxdD@R AҴI$R1 h6MҤR1^^~ I$Hѵ񓪪N Q&/' 1r+ @ 5``Ip2I$ ϤI$ $ϤH IϤ $A$Ϥ H$m4R1ࠀ H$I$R1 ]ۮmbR1 AA$R1I$AR1ꪪ $I$rA$I rI$A$r A$rI $r $I$r HҦAۤr )IA1 I$IжrI$rA I$r I &r M6낶q IH$q DLDN&&'' ]Ir0  I@$,R#ՓФ`ppxP1oI$I$R1A@$R1++II$rRU  r6&./ I I$I$I$I I$ I$i ER@S$rz H$m$r0\\^^ iIr0-%  سr H$I$I I$II$I$I$H$I$I$I$I$񴪪HI$s*I$H$1 A1I H$1H$I$1I$I1I$I 1 c' 0 mr1\I$A$q2A $I IϤ HhR)) I$i6+ II$1 m6hr 11rRtI$@$H$II$HϤH$AϤ@$I$r1~I$I$r1I I Ϥ @ I$IR1VVVVI$ $r15$I$I$A$I$$rR[II$Ϥ I$ϤHA  M2c"R1 ɔ R%H$I$ϤIH$ϤI$I$ϤI$I QRI$I PJPR&&'' A$r I$@$񴪪 X=%r```II1NII$R1I$I$r1$I R/?%% L$A$1 I @$1 A$I$1 I $1I$ $ԽVZ qb&C۳rꠠ i4-r_~ H$A 𤪪 A$H$r"] M$I4rQ H$A$rQ I$ $r0 MrQ5  Il سr*  I$I$ $ $$H$H HI$I$ M6M6񴪪 򴪪 A򴪪  ,11hzzz tATI1 $I$R1믫 $I$R1﾿ II R1 HȄɘ1---)  A $ X5[&1`x A61@$I$0 $HrnI$I 0I$I0A I1 A$I$q I$ѵ񛪪 q $H1  1I$I$rI$H$rI$I$rIA$rH$Hѵ񛪪H$A$rI$IrIIr1?A$I$ϤI$I$ϤII$Ϥ M6MҠ L0tB$R1UW^~ ȥX\1n&&'' Ю횴r $i$r  1``hxA@Rq2I$I$R1 )$A4R1w ȧpǜ1o&&'' hR$ &Q0jj A A$ѭ﫪 1aQ%  A$H 񴪪 H I$񴪪 I$A& I$$񴪪 I$I$񴪪 I$I 񴪪 I$A$񴪪 A$񴪪 $I$񴪪 I$I 񴪪 A$@$񴪪 $I$񴪪 I$I 񴪪 I $񴪪 A $񴪪 IH$񴪪 I$$񴪪 I$H$񴪪 $I 񴪪#5o`PA1NA$I$rA$IrH$I$r ȧTT16&'% A )r A$H$񴪪Ү5Ф``pppP1I$ ӽ2I$I$A ӽ1\\\\ $A$rII$rI$H$rA$ $rA$I$rI$H$rI I$rII$r A r@$I$rI$I$rI$A$r I"I&r I -$q mOѵ񛪪I$A$rI I$r r $I$rAA$r HRLTr'/%% I$A AA$1Ф```pT 1I rIIr m-4r O r/--- A H$I 8nc6rz^  ic;WidФU m8rϤU D80W rI$1nU m$rUmm?ϤU@-$ФU m-'ФUm\瓵ФU4m$ФU I#8ФUmdēФUm%瓵ФUmm$U I%Ф  mѴIR *I$IH$I$ rФ```p YYR Z4m$R1 `B&q; II R1׿k  %rФ%--  II$ AI$ 1Фhxxx `iF`R$$I$@$ϤH$ $Ϥ$R1@$I$R1  LB;DBR1z^ 6R1? I$@$R1UI$I$R1U E-41 M6m6R𤪪 (A&R𤪪 I"M41 m$h1 H$ R𤪪 &m$ѵ񛪪 Ei61 m6)41 -i$R𤪪I$ r$A r I IR$ѵ񛪪 IS$mӦ1 NX1n%%-- I$i4rQ # $r+ 5X=r`hxxpH 1II$rA$H$r1H$rR  rФ--  I $IH$°c:1z i'r_ q$rNU I$Q-UWI$0-U 0mI$rNUD$U Im;UDm$ФUmlФU  ,iU meD$U 0H-ۓU $51U ֶtR* Is ** I$1I $1 m&mZ$rA $rRI H$ϤI$I$AA$ mгr-)+ I I$1A 1 m&mrhhhx A$Ir1I$H R1 $I$R1 $ $q2I$Ar1W@$R1I$$R1_A$I$ I$R1 II$R1WI$I$R1+}I$ $R1 $A R1*"IH$r1ꫪ]A $R1AI$R1 I$ $R1  <ڎ1RCKR - $IR1wIA$Ϥ $A$ϤAI I I$R1j r---- M s I X%X%nxxxxA1A$ I$AR1/*A$$R5 I$I$1 I$ 1A$H  IH$ $ԽVZ I&A$z I$@ rW ۪-r𤀀@ moQ 4lQ iэ)QLFN HhˤW I$䓵ФU im?ФU  I-ФU a%ФUif?UMm ڭiR 򴪪 @򬪪 15hhx !&i1 H AR1 $I$R1ﮪ I$ R1+/ mmR @$ -&m$r~_  R3rxx^$A$1I$ rn II1 Iڶ 1 I$Iq i6@۴1 1 iI$1  a-1 DI$1%U IIR1U*H $R1I I$r1I$A$r1H$A$r1$ R1]H$Hr1I$@ r1UUUhI$A$R1I$I$R1 ~ H$ϤI$H$ϤA$I$Ϥ tB2 :R1zzjL 0%%%- A$i$rQ? $$R"e  -Z1r`xx mFRRФ $Im;R1 m I$R1W -5m&r T0N//-- I I$ѭ﫪 ZMѭ﫪 鐭i$r1_4m$$r_ h$oU m$oU m$nU @$oU m~$oU I$oU m$U  $oU $oUMm8U mv$U d8Uqy{ӽFӽUԎ  6 r M6Iжs I6Hsc36 xxx0IӽФ $I$1UUI$A$r1UUA$I$r Ar-   I$H$s $@$񴪪 5X9xxxxPHD1МA I$R $II$ 1X\\X I"H$ѵ񛪪 ڴ)$1 &-$r (4I$1 h6h&1 m&h41+A$$R"I 1UA I 1UI$$R1@$H r1UUVh iQH&r A iѵ񛪪 m65ѵ񓪪 It1 +/@$ $R1AIR1$ӽ1U I$A$1U; $I$ӽRU A ӽ I&M  I $ 11r``` I@ 1Ф $Ar I$r !1Ф@@N r  A$I$ AI" /xxX IҦMr2~ iҦAӶR1  IB8mR1ݨ MڦmbR1U I$I$1U I1 * IR1* I(&R1 iҠ-q2 mҤi R1V  I$)4R1 Iڦi&R1  I)r1u ImR1(  II R1U  ۬-R𤪀@d I+---I$$ II ةerxx i4m$R1zn $H IIR1 ü,)RJ@  ----I$A   꺮b3X`ФxzI$rRȠ $H$H   ͚<)RФ@@ O9 1.  yϑU I>U IrU IRU InU IoU IoU InU IһoU Ib&nU InU InU IoU IoU I$s f_H$I$1 I I rI$I$r(1@ 1 )Q-- IA$rQ II$rQ * 3&cQnpxx I$I$R1/ MI$R1IA$r1 ڮݲ!rhbMP Ф--)- I$$ c;$s frФxXX m"M$q NL$tb'1 dB3Fl'1_ Iر1ժ I؉1 II 1 iѶI$1+( * IIR1 I4A$R1" IAH I R1"(A$I$R1תI$AR1 $I$r1HH$q2 MҀC8Ϥ &`!r+))-II 1I I1 [%K$rhhhxA$H$r1HϤI R1 Ai4rR ĉr)++*I$I$1I$A$1 hhrxzzzI A$I$IϤH$I$Ϥ $l0C:r1kk{ TrU w" Ucے&HUo$) Uc% U ͶrW wZФU~^@ФU}RHФU y¶ϤUCHϤU_$ UӶAU : rMꠀ PRM  b]1oU^IA R1H II$A  Ȑ-RФ@ J ---- H I I$I$s X"&b"&rNxxxx II1뫪@ I$I$ r1 *,)R𤀀@,̖ɳ I$I$1 AM6Խ $I$II$ $$A$$Խ^Zzj h$m&rꨠ I$I$Qjjh ISEP$Q1U? II4q1Yv I$H$P1Ve] ItvQ--  I R_{ MR ڦR1U I$IRa9- I$I$R1U M I6R1H$I q2 ۺ!R @ @ +--- A$򴪪 @$ r ҃XrpxxX I$H$R1 $A$1  @$R1  R1J 1 R - @$I$rz^W h6M$rQWX&J<'0hxI$I0 iڶm[1 I ѵ񓪪 @$1𤪪~I$I$QФU/ I$I$QϤWI$I$1UI$I$UI$I$uI$I$0U* ID rUI- U^&UyҒ& U IRU N²ФU _ФUӶ&AU }>U vģEQN_ZH$ $R1A I R1A$ $ B3,"-RФ@ OJ0- I$@$q1 AA$q1 #X(1pp $mR1_] HI$ h$I$ѵ񓪪 $-1@@I N--)- A$A$p I&I$0 * (tH1`zZ ISEѶ1 IhR I&H1 Nl$ RI$A$1 IҦ)R IH"1  I$R H@[1 IҴ RI$IR1UIH$1(1 $A 1 UUU $I$ӽ1UUU I)+ nӽI$I$ӽ$@$@X)bƳX__I$A$r1XUUU$I$r(<(1М@@  n---- I$ $񴪪 @I 򴪪 PZrxxxx i6I rI$I$RII$ ڨ-ӽФxxxx Iv Q. ObU ӲUIҶ&U IҶUqf?* CXnR  C-hRÈ RhmӽR@ n4aR  M6]nR.i1M #H aӽRU2aL9$rrϤ(( B4m4M1AI I A$I$I$I$H$H$I  $M s I I$ Zrpxxx A-r$ rA$IrȐ.)1@@p ---- I$I$ h $r X&FjrФX؜ I$Ϥ$ $A $Ϥ 6C$Mؓ vB; q $I$r PolR1 H$A$R1꺭II$ϤA$I ϤH$I$Ϥ I$ϤAI$ϤAH$ϤI$I$ .)R@@` ` I$I 6b;68zs:&`Zz h$M&R1 i$  I$IR1 (R@@`! ` IA$ HI4 HD@^I$Ir1I $R1I$ R1 UU()R``IpBФ  I$A$񴪪 I I񴪪 I$H$r I $r $@ 񴪪 H $񴪪 II$񴪪 I񴪪 I$I 񴪪 I$I$񴪪 I$I񴪪 II$񴪪 I $񴪪 "s `FpRnؘII rI$A rII$r  1@@@@  `r  A H$rZjj t'M'rQ Fj!1 N'r1 I $r1 H$I$RQ*ZV*R@d Mr  @4I$r C2c'R X6gsF1ؘ m i&q  A$1 IB$I$rn I$I rn EI$0 i $1 I$1*** $I$q I$R1U $ $R1 mIR1 aۉ$R1"* $I$R1 6hR1* mA&R1 8>0R1j nr )) A$s*H$H$s kvhfRhhzH$A$ϤH$I$I$I$ i$$r1>?>; ñس+ + $I$1I$H s hmڤRxxxzA$I Ϥ  $I$Ϥ.!R@ 1 1wrR---)I$H$I$ $ II$@$ MtL򴪪 I$ $I I$ $ $H$I$I$I I II$#Z1hhxz 1ҳ0 XF`RؘIH I$$A$H$*.(R@@@` Ф-  I$I񴪪 I"A&r {K1nؘ I$I$1H$IrI$I$r 2@mɚm1 II1I$I $I $I A@A$ IRm$Q I$A&RZzp M6h$q1|gSkhM$Q mI$0" 1 1 A$I$R\\\\ II$R1 A$I$Q UU A$ $R1 $I$A$A (RФ@@@  d - @ 򴪪 $H r bfk4rXX II$R1")")RjBH@ Jɓ$1 FjI$1z mI$r $II$rW mI$Q鸞MI$0W4 $1𤪪U 1*(7 I AR1߽ ɣ),1o I$PM1 I$QI$1I$ r0I$ZHr0UI$IQ0$I2IrQu?DI@Br I$I 񴪪I$A$sH I$A A$$IsI$ $ 8c$ %Eb$rؘI$I$r1H @r,.(R@@@@ &&`QФ-- i $QQ I$AӦq1~ {GLnظ $a$q I$E q I$I$q >؂!1N@@@@ 0n--) I$H$p І;0 }ȄNN MI$rH$I$rI$H$r $Ar $A$rI A$r $I$rI$ArII$r$I$rI$A$I$r h1Мظ  iA6rH$H r )1N@ pr  I44s  4l;c3shfk\@" 1P I$rI $r((1@@@  ---  $I 񴪪 4h&s bb FRn$rA@$ӽR@ I$ )ӽxxxx)p` --) I$I&s $I s II I$  s@ I$s*I$I$s* $@$ԽUI$H$ԽkUI$I$ԽjI$A$ԽjfI$A$ԽiiI$I$ԽVI$IԽifYs,'h90\x e] Q:3I$A$ I$H $I$ $$H$ӽ AR$HҤs @  sbfjrXI$ $rI$$r MR4i$1 "("1@``/Nn---) $I mm6rj L4|AQФ I$I"R1*H$I$QR $I$@ H M&m6R1~z $N:r R1= IM$H$ $QRIA$I$A$$$ϤI$I$ϤI$AϤIH$",1R``p1N  H C8c:rjjzG1N<< I$I q I$ R +HI$R1  (RФ`xp   $ ڮh6rjjjtT1<I$ $rI$H$rA$ r"-#01n`` TJ  II$񴪪 A $񴪪 `3c:rj I$r I)$s A 񴪪 $I$񴪪 I$A$񴪪 I$I񴪪 $A$񴪪 $񴪪 I$I 񴪪 I$H$񴪪 ("k6rjjzzM1H$r rI r-#01``pp1  I$I$r m6mS$rQ` T˴1<<< A$H$Q1 I$I$R1 @I$R1*> ȀR```p nr AH$ӽФ ph;c'r1 cL 18<, $A4Q1^WUv I$A$1ꪪ @I1 I$I0 II$1  I1 AI1 $I$q IIq A$q I$@ q IA$q I r I$I$q m I$q (?,RzZq1 ) mI$rU @۴H$rU ۤ1`^ ۉR1 i$I$R1 HI&r1 C"6l;2?-%? II * I$A$s"(H$A$s qI1ppxI$H$r1IIs1IA$r1 (",r1z_U ^for)-I$ $I $A$ $IIs* A$I  I$ $rII$A$I$H II$$A$I$I$ jj'0`p A׮4QtD_sRA$IA$$HI$",0R``ppAФ  II$񴪪 ź.C.rjjjLD1N<< II$1몺I$ $rH$A r-#41@` !tamR   I$I  $ $ $I$III HI H$Խj a8Nb8z I$I$Q~8 Q0^|xx q NQ---- I$I$QPPPP I$H$R1 $iR1 I I$q2 $I$II$Ϥ"RФ@` n1 򴪪  @$rj sD[<r𤜜 AI$R1  QI$tA1۪* I$w(1zzI$I$0𤭩I$I$0*I$I$0* I$I$0Iܹt 1} A 1=( I$ $R1 ","5R1z 1!hr @$򴪪  񬪪 I$H r I$@ r_| I$A$rQꠀ I$IIJ $I IQ& I $r IM$r I$I$I$$I$I$I$I$ m.6rh{ R< $I$I A$R1꺪A$@,#1R``pp `JTMQ II c' &q1zzjjL T1n> I$iR1U i@ҴR1u I$Цq"-#-1N` MIqФ) N۴ Q0VZj *.0Ϥh` IIDM mviѵ񓪪H$H$r II$r@HrIA rA H$rII$rI I$rA$Hѵ񛪪 $I rI$I$$Ir I r $Ir Hr",1`pN`N  I$H$񴪪 02b;rjjj{@t1< $I rA$H$rI H r-#01``pPJϤ  I$ 񴪪 "c;rjjz|1<I$Ir $A$ӽ1 HI$,0ӽxxxX/Nv1---- @$H I$I$ H I A$I$ $s* I Is**  $s( A$ ԽkI$I$ԽfIIԽYI$HԽejI$ԽjI$I ԽZ ѳ0xCOV 7?A IA$I$HI$i*9Pr-nӽ2 II$ b#0c;rhjk0{1H$A r @ h&1 $ `$1z #$B2$АM%PJ1  I$I 4۲5rj`jj = RФ4&&A$I$ϤI$A$QRA I$I$R1  I I$R1u 2tb'1Z Ii1** m-R * i:$R1U@R1  M-&R1U m4i4R1AAI$@$H$H$P/ 1𐐐 1  $I$ вՓ&1``p n46&& iIѵ񓪪 )mR1/+ $ $q2R/ RФ )) R  H I "4۲5RjjzjM166&H$rIrI$$r8@1pbN  HH$񴪪 mSI$rz I=rz @M$rNU I$rNU mo$nU @Rw$nU $nU Mw$nU m$oU4IVФ + i۱r I 񴪪 <81Q` 146&& $I$rA$I$rH @$rB8/1Аِ 1  pb2fb's<61`M 1n<,&' M&I$Q1]U I$A q I$I$Q1UU#0#%1n 1Xr $ ӽФ 6[6r1``@ K 1n>.& Ä ؑ L$tH:ѵ񓪪 I4I41 I $1𤪪Z m[m$1U mn]1𤻯 I$I$1** I m1 I4A$q H$H$1 I$I$1 $$1 II$q Hq II$q #81ϤА !q1)+ I H$rQ* -$ 6rQ uhlQ I$I$q Iq I$ѵ񓪪 &i&1- jn^r* hI m&m KtM 1XXX\ $A$rI$ 1U5I$I$r1u-r1Uߚ Iir) H$I  I$I0\:^  IēUmm䓽U aeU 4IuēU 0ēU l>U A]瓵ФU@N.w + I$I$s X'r\'QXXXX A5i5RAaaLLR66&&H$I$I $ $I$@# RИnvn1  H$I$񴪪 <)5Rhjjj PH1o666& I$I1A$@$r $Hr @ 1А vR  $@A$I$A$I$I$H$I$I$I I$I$  (6m&s @$@ r^^Zz m&h&r0zI$I$ѭ﫪 1 0---m $1TU I A$R1?U I$R1 $I$ϤI I$ϤI$ r1B/ RФА IIR  @ 򴪪 hS4@&rjjzz 1Ф<,, @$I$R1o H$I$ѵ񛪪 h6M$1@#$R"&I$I1 I$IQ0UU*I$ r0 I1, MV&i1/ q I$I$ X%[%r1 II$r A$  I $mZ:1~ Im$rWmk'r~UQI$Qu I7QU iqU  n{rU6$U0I + I $I I$ 34[9rjbzz<P RФ66&'I$I$ϤI$IϤ $ $41А )g`nr-- I$I$rQ( E.]S4r1 16&& I$R1 M$  M$I&R1R#2PА f T1)) Ib'tBؒ1~ ڮ"0QϤxpp` ɑ| P1 77'' &1* II$ѵ񛪪 II$r M$HQ$R𤪪 m m$R𤪪 "M41 @ۢhR𤪪 IE$R𤪪 MSiR𤪪 )ڴm&R𤪪 mI$1o hi R𤪪I$rI $r$I r@<#1Аn/`I1  I$I$񴪪 ۲6[:Rjjzx 144&I$A$r@ r$Ir@8$1pJtԽ𤭭  i6I&s [4Xrzjz r  H$rI @ӽ1 A$A$#ـ-ӽXTNR--)  H H$ IA$rj[M'^ md$ФU@]Mkԓmó1 Vm&R  ,RD J/RD C I4r/ I $s I$I$q [5Q`$ARl ** iI$R=I I$ԽI$I$1UUЀ  JR--)  I  4@6rjjj L0 rIH r M$i$1 I$ $qoʦpZR< !`r E&M$򴪪 *49R`bz QI$I$I$I$I $Ϥ-X,RnXظ8wl&@U I6hQn_N$\ 0NW I0QN ےФUߒ& ФU 6UC) 1.  $  I$ $P XRؘ inlr 6$cڳ#a`xH N 1HI1UUI I 1UU $AR`Uӽ< Ym r@$A$ c?6Rjjx%`RФI$ $R1jI$ $r1H$ $R1Rh~rޞ< jm1  I$h$񴪪 -11``p4/1 I$A1 IH$1* I 1 II1j Ih6ѵ񓪪 I@RI$A$1 R`1  Ei׮r @$H񴪪[?Ӳ51``p11A rI$I$rI$A$rP`1 !`jDnR  i$Ir ?0ز1```` @91N I$I$q A$Aq iڤI q PX1NؘtnFA1-  I6I6rd511````ɔL1J1 $6ѵ񛪪 i&m6ѵ񛪪 a$pB&1 Z&j'PI$I U* I$o)Q-U I$rNU IbU IܺU I^U NR> hUdK)1n  I R1_ i$MZR1UW H$AR1UU + 1Ф, imar1  IӦIQ h$h"r1  c1 I$ $q H$A$ѵ񓪪 $@$q @ 'f$0 **& $rQ  I$Q* mQIr lwr1I I r1II r1I$I$R,+r16 r A I s [34ز9R`4@dKR,I$IR1 i-R i$IRR1 IR1UI$H$R1תI$ R1_I$H R1ZrФ: 횮ir H$I$rQ E6m61bj`)1H$ $IA $I P X188< i R) I$A񴪪-Z11```p91NA rI$ArI$HrX`,1o ]r I$H$I$I$I$I  $I$$H$I$@$AԽ m$E&s I$H$rzz H$H$rQ|pI$I$Q PSr//_ I$- rU I'RRU Q. H$I$ϤH r1A A r1PXRФ8< $Ir 򴪪 @-k5R``` 11Ф  H$ѵ񛪪 &m$1@$I$0Z"&xn8 IDr) I$IR* E4@4R dK-q $I$r I$A$q I$R1]] [hr15=%5 A r @$ h4h6rjjz Hr1\vw @q I$AR1] Imq I$tBR1U I&- IIq II4R1mR)RϤ(8 `or) A$I  X9#36R`hhx P&pRI$A ϤH$ $ MI4R1 P P 1И qNr1)  IIr=- C6؂1``` /`RA$I$ $ $ϤI$ $R1ꪪZZ(1< j R) H$ERr^ - 0rϤx``` l@  q0 iIq i4i1"R%b" Pظ( I6oU IbۛU IRU IRoU IUIbAU I>oU 11  I$I rII$rH$A$r ` 1< 1ڳr I A  IP9Rx0 Br@@r $I$r $I$rP`1Nn  I 񴪪S51```5tCrI$I$rII$ӽ15I$I$P,P 1$r $I8B-1`@9B1  IMrI$I R1(*I$R]UA H$1__ $A$1UUI$A$r1UUII$1UUXԽ kvinr )  HI$")S381jzz ɐL  ِlI,R1 } II$1@wUUA I$ѵ񛪪PZ 14 i ٖvr) I$H$ =c?:Rhx +ӽФI$$rI$I$rA I$rzzt1<,$$ i۶mr++ H6rꪪ ۾퓵````I R I$I$I$I$ϤI$H$rRhRФ444 ii۶r c2C;r~zz Nl&N 'Q0ZXXh Intr0/--5 mi4r m򴪪 0`R I$I$A$I$AI$Ϥ){jtr666 Ymѵr+ E4@$r M[HR: Iځ۳r+ AI A$I$$S,iLӽ1 m&mAA$s A6Mr` 4 4mӽA HӽRUA$H ӽRUUI$@R]Uˀp({ʫr666& ÎóII s +5"#ֳhhxx! m1  I$ I$I$r )i4R1ݽII$R1H$A$R1z $I$R1I$I R1h|1<,44 гr H$H$񴪪.1```` 1n I$I$rI$H$rI @$rh14444 !!ۓr -) i$I$s  1r```M 1o  M$I ѵ񛪪I$I$q$A ѵ񛪪jJ1444$  m۵Q  I$I5````BI1 I  Ii R1 ^%:q H$H$M )rrϤ-) ivr I$ s*I$II$I$꺮A$I ªZ61`hxx& IRФ IH$II$r1 IIR$R1hr𤖶6& 1lr  N$Nór m6Â5Qzx1Y'I? I&6hQ Il;B³rUU N'cr1P vBäMq1֪ I$ $q1 $I$r0 $rQ r1@  ii&R1H  R1++I H RW s;k1  IФA& H$A$s I6mR`)  (II$RuX|p fR $I$R1H$I$R1I$I$ M-  EIR1`RФ46 ) A4ry I$i4rQ -1r`' R  H$ I$R1w EIҶR1j1<44$ i)ڡr I$I 񴪪ЮФ``!A1  $IrAIrA$A$rhgx1<444 ۳rA$I Խ}II ԽuH$I$ԽUU@ IԽUH$@$ԽVU@ H$ԽjuWUI$s H$I$ @@$r I$I QM&h6Q0ZhhII$Э𫪪 1 r0 +- Т1`hz p RФ I$A$I$I$Ϥ I$Ϥ`vptRФ4444  r @ r 1`xx !Ai1 h6M$1I$I0 II1 JH\1$$$$ iu Q-  A$ r [5ۂ5R```` pq @ A$R1w I$I q Xzdr//77 I$r   2C:rzzzz `Q1 I$ HI$ I ѵ񛪪 H$M&R1 i$MR1_ I4MR1W_ I$Iq XfX1<<44 ! 8R# HI$rP?6p'J R  )$  I$A$ iM$R1 h144 Ii1+  I$ R$r ?2S#1zzzx& R II$ϤI$H IA Ϥ x1<<4$ irH$I ```` bI1  I;I0 q$q bmvqp x1444 1iҁسr I$ $񴪪 I Aﻫ II$ HA$ I$I121xxxx!p1 HI$rA$ $rIIr`rwRФ66 ))r I$+#61xxxxI1 I$r@$rI$I$r 144$)Ad1  I$ 񴪪 ѓ```A1N  $I$rA 15555I$I$Xb )v-ڶr I$I$* (`A1 I$I rII$r@$II$R1I$H$rII$ѵ񛪪I$r艖14$$$ ;I$r I$I$ +1hh n  I Aq A $q @$i4ѵ񓪪X1<44$ ۳r) I$* ,```p I1 I$A rI$HrH I$ Pr&''/ $A$I$I Ф``  01 i$)$I IϤ$I$r1 Hp˴r6''/  6;6c۳r說 DǠ:r0xxp IIQ05 &h1C'Q+m=dzr )Ф````I`@RI$ $I$A I RUUU ȄrФ6&'  m;pB'r I$D$r ór/ I$I$rI$ IH$R2II$ӽR3p|p( ӽ/I$I$sI$A$s( Hb6xx 4@i1(H$IruHHRl $I rR (!SʴJr>.'% I$I$A$I$ 1Ф```` pP1 M($ I  I$H LI$R1HI$R1I$I$R1oAI$r | R67'' :-ֵr $H$񴪪 ,5``hP1I$ $rI I$r EHr tKPRN&&./ i-r I$I$r 1r```HTA1nI$A$rA$II I$r HTʤLrФ67'% IZA$r I$H$r ,1Ф```h`IDI1 $I R1UI$I R1( h65R1[zjH$HMMd--  M$I I$A A A$I I$I$I  5````APRФI$I$QRI$H$r1 $A$wRrФ&/// I$M$+* I s * XX5Rxx phdaR1 $$R I$Hq I"mQRV Ib6BrW iҤMrUW I$!3rQW I$A$r0 I$I$q1*o ѵ񛪪 жiR1?uU жݚ1- Ȱt R 4 I$1  I$q -Ҷ1  @IBR<I$I$r]}I$I$R1I$I$R1ꪩH$I$R1H$I$H$$I$ $ ʴ R&&'/ i&h&Rbhj i$I$qQ** 1r``dAP 1nI$H R1޺ IrA$I$r TJTR6''% Mڳr AҦI$sb#6``hxAP 1I A rA$I$qA$I ѵ񛪪 HT PQo&&'/ iIr +  I sI$Is AI$s** $I$s **(I$A$1II$1H I s @6I"z I$IrTV I$I$ӽФ pB: 2r0|zI$h&0viQ +#5C&rjz HI1H@ Ϥ@$ ϤI$H$Ϥ P*Sr&'// $I$r $I$Q~ %j&Q`xxiіmI$I0 IIL1* Iiѵ񛪪 ʥ\JrФ'''   r I򴪪 (+1`x AdH1 H$A$R1 I$AR1u @$@r 0WʴSr'/'- II$r   5Z#51zzz  dIQ+ I$ I $R1_[ II$1껪I$r$IR1 /k I6CR1 i$m4R1 ȥPJL16&' i &rQ+ I$$r2* 1rhdI1 H$I$R1 (&MR1 I$$R1 \K 1&&& Imr I$  1Ф``p TR I$ϤI I$QRI$I$ 0L4Or&&'/ M۱ I$ -```hfhD@1 NB$01ꠠ A $rn mId1* KRn6&'' I$Ms @A I I  $H  I$I$ I I$-.-`pppd@P1 $H$rI$I$rIrxPzRrФ7''- i$hs I$H$Ҭ1`dATH1 I"I&r $i$ѵ񛪪 m8!ѵ񓪪Ȼxn$&&/J.N1  @ I$񴪪 1r```@P@1I$ $rH I 1555I$Ixӽ I4 AI  ,Ф````p@T1IA$rIArI$H$rH$ rI$$rI$ $r H$i$ѵ񛪪 HtKtQ&&// H$I r H$H$ӽҮФhpxx@1o $@$q mi$q )$I$q H\t1&&'% i6A$r I$  1Ф```hpAT 1HA$rH$I$r -ڴM6r  r-%-- I AP IA$ 1P5r``p l`0I1Iҵ&LR1} I$I$R1 I$I$R1n P rФ%--  I$A$  ꪪ  1xM$nW7I$qNUH$I$rnU =I$RN~U ATiRФ$A H I$R91  R p$$r\^_ Ir/  i6qA$Ar0 H$@ H$r :ɂ)@@h$I$nWI$I$-UH$I$Ϥ싀_ Mdn1Ϝ  I I$R1* II4 M$IҤR1 r/---  A$rQ Xk6Q0jZH$M$0n`xxxI01))  Ii1*  ɒdٶaR1* IiR1 Ф---- I r  49`hhx !!a1 HI$R1 I$@$R1 R1ww{n  O r// I$A$r iIr  )#ѓ``hx !A1 I A$ I$I$q I$I1I$I$ѵ񛪪 m$i$1I$I$R1 % HR1g K)UrФ-+ M$ErQ I$IrQ P#=P%Qn`hxx I 1Ф $iq I$ѵ񛪪 II R1}U  r%--- q1`óI A  1͓Фxhxx dI4MRI$I$ϤI$I$ϤI$IϤ L rФ%%-  IM  $I$1Фh`xx m@ R 벵@R1^z~ m'0C'1  m$1  rM//-- ۺmur A4i 6M&1z  m'ФWil{ǓФU m$ФU 4lr~U  M1ФI$H$rH$ rI$I$r  U=Or%--- l&I8r @6E r 0P#=r`xxHTH1Ф H q I$H$q HH$1j M Qo----  Q- A4I[ 1X1hxxx P@1$$r$ r1%%%%H Rȩ_ Z1Ԕ I$I$ I$A#5X#6r```p vA 1ФA$@ rA$I$rA$ $r ð$1( 6lv'1 E$$1" @$m$1( O- rФ%%-) HI$ I$H r #5#6r```x mFL1Ф I$I&q I'I&q I$I$1 L PQN//-- MI$r H$IP5X5hxxx  Di1ФIIrI$Ar 8-1@J--)) H$ $ II$ +xxxx H R1ꪪ i&iϤI I Ϥ !R@ !d r I$I$񴪪 A$A$X5ثФxxXX iҤH61 mI1 $# 0IRuIN۰mRժ)@R1 AI$ϤHI$Ϥ ؠ ۸1R5UҦMQ I $r+  !ۡӳr  @$I I I I$R0@I$A$RUI$@$r_5dN----I$s  A$I$ b-ФpxxxA$I$A$A$r1I$ rR/ &-R@ ! Ϥ---) )ЦH4r E6ݲ6rw XErxxx $ $q I4E M& Ҡ:܎!1Ф@@@ I$ 1 IrU IrIrnU IOrկ igsնA1-+  I$ I$I s b,rxxxX I$A$ѵ񓪪 @$Iѵ񛪪 @$Iѵ񛪪 3.1@  r-)  I$I s I$I$ Prxxxx I6i r ` 61XXp0RiҚRHB Ф-- I$$A$I$ ֢;xxxx I$AI ϤI$  Ϥ( R@@I$In%%-- dNT0  I$m6.c/=Izp I$m[1Uu| IҶh[R1U I4h[R1U I$mۢR1U* $CR) R1 m۴-ڮR1I Ir1ﯿ m&C"r1jH  P- E6m$I$A$ X6@1xxxXA$I I$I$ӽR $A@$$I$A$$I I&)&ԽUZ I$& I6mrW ILѵ񛪪 M$H"r mm6Q/ mIrQ?U IĒQ+ mѶɚr  I$ H$I$@A$ $rDOH$H$r1^ !1@ I Q. Iܲ$U IҶU n@տ I۶k[r1- H rQꪪ I$A$rQ  ccRxxx IҶA۶R1 II$ aI$R1( )1@@ ---- L$I$ )$I4s urxx I$@$R1 I$@r1UU $I$R1 " ۊۺ-Rj@  `r-  I$ir M& 6r #ګrxx M&R1I$H$R1ꫪI$A$R1 ͚.-R@@ Ф--)) I$I着 I$$ rФXX @$1@OUU I4@1 uRi1WIM6U3 tI0 A6-$r -$IrJc.1@Lɔ1n )- @$I$Q0WUH$IQM$I$Nxx i۶1* I)R1emI$I  :-R𤀀@Nt---- A H$H$򬪪 -rpxXX I$@$R1 $IR1 A$I$R1类 I0$B2Rb  ` -)) @$r I$I$r@ R(r`xxX I$H$R1麯 $A$ A$ $ $$M21  r+ ϖ& U ӶUO$ժ IbR im$r IZ$mR4Q Zc1npxx A$A$ѵ񛪪 H$A$ѵ񛪪  I$q -2 1@ rn) I$ I$I$ myrФpxxXI I$q2鿻HA$Ϥ H$rQ՗Uv ͒)R@Ntr  I$I  ;m; P ةerФpxXXII$q2 MM6 f8p&Q1O :0@@ ɐ QM---- I$r  I$r Њ rФhxX I$H1" IҤH$ѵ񓪪 I1  I@ѵ񛪪 -&$r h[H&ѵ񓪪 ؒ-Kdq R-1Ф@ rФ-)  I$ӽ񤪪 I$ $r Xerxxx m$I$1 I$I6q $H qڼ-1@ )S ro--) I$IrQ((  nֶr ڏ=XrxxxX $rHI rH I$R1*++*I$I$ӽR HKR HI$ A$I$ P؉}rxxxx $@$rAA$r )4I4qO21@@ I$ɔ Q + IߤIrU IrU Ior aN$H1* H $ A$ $ }xxx im"rH$H$r @$I q#21@@ P Qn---- I R)))) iM&򴪪 PXrxxxx I4 rIHrI$I r !1@@@@JIФ  I$I 񴪪 mh6r 'ZbRФXؘII$ϤI$H$H$H$QR*.)RФ@@@@NAФ I$I$ I$ $j P&~b$rXؘ @$H$1 A I$0ꪪ 4R1յ iI R1~I$A$R1II$R1* i$I&R1(ɒ -1N@ BrϤ-)  iir- $I$ukFA$IR R@@CI$ $$,(ӽ odNd 1--))I$I$ H A4 PXrФؘA$ϤH A$ϤI$IR1 (R@ rФ  @ҤI$r_U $I$rQ bG{1؜ Iر II$R1_ I$I$R1**)1@@@@ p&rФ  II$r뻺 H$Irꪪ M$EڠS mI$r IA$s h6m$rz Z&Gr1ؘ M&I$q A$A$ѵ񛪪 I Iѵ񛪪 )1@@@@ pФ-  $A$ D$I$ c8vrФXI A r1``I$I$1% 0I$1BJjBI$rФ - I$rI$r]np$I$Rޜ `׭1 : ! aR1I$I$r1*R@@ɑ ---+ .nuQ) A$$j7@A sRTWUUH$AϤA H$r1I$I$Ϥ I$ϤH$I$ϤH$I$q22-R@ ސ ) Mi&򴪪 ۶ m$r XY!Fr $ $R1i m"MRH$I$I I$I$I$H$HI$@$ $Խj I$iq M mR1~\* iER1U__ ۸"1@ n1Ϥ  I"M$Q0 $aIrQuUfzrޞ Eiۤr1*U ñr1uj Ir1TVVV 1@@@ Ф)  H$I$ H$I$r EM$r_ EҠI$rQ i4mrQ*  I$Irm Z6FkRܜ M $R1I$I  $I$R1*"(1@@@@JP r  H$H$r q&4l3r b5fZrФؘH$I  $H$I $Ϥ R@ !p A   H$A4j Xb RؘI$I$RU=IA$R} H$IR}*)ԽФz~z/I--- I$I$s  b;6b'J@@ X` Rؘ @A$R1W I$A$q I$m&q m&k1 !i1𤯾  $I$1 &ha$ҵ (1M@` I ---IIQ0U)IҶ-ZQ0 NdM1nؘ Imۢѵ񛪪 I4I6R1)I$A  *)RФ@@@tNpJ I$I$򬪪  @$r bFrRФؘ I$  R1 A$I$R1 I$I$R1  1@@  ) H$ H$$r~zzX$Fj0RX  R1uu I$ R1 I$I$R1 ` 1@@@p1--))I$$A$I$ $I I I$ I$A$ 4I; Cr~zz jFj1ؘ A$A ѵ񛪪 I$Iq IIR1׽**)1@@@ - II c;c$jj R]brФ؜I$H$ϤAI$s1A$A$Ϥ*.)R@ِpN L$򬪪 $II$r اE` rؘII$ϤI$I$R1**  tB:$R1x --1M@@`I ɔO0n---- - r0 - 4I4R P1И H4I$ѵ񓪪 m&Iѵ񓪪 I$ $ѵ񓪪 I$I$q A$E$ѵ񓪪 I$I$q I I$qɒ")1Ф@B@h dAr  $ $ӽ񤪪 I$rhlc1ؘ M$ ڶѵ񓪪 I$Aѵ񓪪 qb0hѵ񓪪*,)1@@@pNP Ф- M&h rW_^z I$rQ eb$Rؘ$I$rHI$rI$I$R1:+/* $@R Kkr @ A$ H6i @@ Z&FbRؘ )& 4ѵ񛪪 I$@ѵ񛪪 I q "(1n@  Ф---  I$H  $I II HI$ hm$ Ias[Fk6R@IrH$I r $-R$rڬ-1n@@@@  Q---- ! ۓr A6sꪪ bFbRXܜII$rAA$rI$I$r)"11n``mvn  I H$񴪪 0mдc:rjjz;PR4II$I$ $ϤA$ rR ( R``pN1-)-  $A 0m3Fb'rj 1+ rФ L8d$Q0VXXV H0** Yir1-U hI1| U AI41UU &I41UU A$I$1U xU "#1rnjz !DϤ-  I$ m[6rj@(I$I rU(UA$A$RUI I$rUU>lێ5 ^ rwR(I$I$s  6: 'rl@dRФ(0<I$I$rR E$A&rR Xl˒$rQU~gU ,1p @ r ) A$I$rQ* H&E"RLG18< M&IR1 $I&R1I R1뮪"-"-R``pp)j`N  I񴪪 I$ 񴪪 I4i4S I$I$ӽ񤪪 Ir 24m6rozKDX1 I$ ѵ񓪪I$A$qI r,#,1``pBФ  I$  pb'c;jjjztW IA$R]U[%[ RU\UI$ H1U I$ȓ" I$8 𤭫 I$@rUUI$rUI$EФ>Ir0 1I$IRU/I$IR0"1j€z0Ϥ-- wqr - Fb۳`juzvx𤜘I$rRkUI$I$r1A Ar1I r1 I$r1 I$q2I$ rR} ,"rjxz)r'rR--- @8C0򴪪 гrj Mr0rܸ IҶh۶QUU I1 )I1I$ $$H$I$ H$I  $HI$I$RW i$m6RU¨  01:_ k-ArQ 8 ;rQU I$A$Q0x + ,tQϤ< EI$q1+ &aQ  EiR1W (,1@`ppNI  R$I$r c;I$r_W &I$rQ @ !ıؒr! 1mvl&rs[}18<H$AR1I$I ϤI "-11@`pPd  H$I$񴪪 [,[%rjtRФ<I$H$ϤA$A QRI$I$Ϥ ( RФ`ppp!NdN1---)II  [-[%rj|RФ4I H$R5= HI$I  $I$ $A$A$$I$s( R\LФ I$MRr1 @R1uW i&hҶR1WZ I&h1ꪪm۶k 1 I$I 1𤪪 I$H$1𤪪 "(#=M``ppI|0-) &@r0+ I$A$RUijB M1< A$I$R1 iӢϤI  Ϥ.-RФ`ppppNTN M&i q8c:rjjj {K QФ I$I$R1ﮪ I$I$R1 I$I$R1 "-Rhz` ITQ  I$IҠ kӶۊmrjjj l_tQ𤘜 I$Iq -i۶R1U I$H$R1wߙi"-,1@ ٔMAR-))  I$ $IA$H$HI$I $ m6mS4rjjjb |1< I$i I H ĉR1-.RФ``ppRqN1--) A$I$ [e[2$rbk0sR<<@$I$Ϥ $H$ϤA$IrR{( RФ``ppId1-)-) h r IڴúrjnjzlDW|WRФ4I HϤII$r1 )&HӴZ5P#51M````O)) + mr0 - &C'r1 L118 E$I$R1UUU I4 &q Iiq AI$ѵ񛪪 A$@ q H$MR$q i$i"ѵ񓪪,1hr!kr`J1+  I8m" i -"rhtD[lARФ rI I$r $I r-"-1`ppppJd  E:r k6]4r1`}T1I$ $rA$I rI $1I $r  $Nh:r< H I$ ҵm6r`jz~ c0{11< I $ѵ񛪪 IIѵ񛪪 I$I$q-"01``pII  Iڢ A$  H$I$ I$I " jꪪ XB&1 p`{I$1n88H1R𤪪 bڶC'ѵ񛪪",5N``` ٔQ  I۠Ar 4c;$b;rjjz|_X1N8<<I$I$r $$rH$Ar  IHҤR1U IMR1W~W I&$ѵ񓪪 I$Iѵ񓪪 I$I$ѵ񛪪 4-$q IH$ѵ񛪪BP.R* ibvr- ) @$I$s mӶm.rb`` U HRФH I r $I$rI$I rP#1АJPL1  A$I$j#,R51zjx` ϐ1667' i$MrI$A$r $I$1II r  @ M$r I I E5[1 U H1<.6& I$$ѵ񛪪 II$ѵ񛪪 M$Iѵ񛪪R#5R1틠 Pny$rN Mm'U Hu$UDm$U I䓵U 0@m'rU ["hd$Rn_I$ɐ1 '%Ib'$ I1МI$&H1М $[H1_UZ I$I$1 J r  I$I6r Ì՚9Rjzjj 166&& $A$rII$rA A$rR`*1o )mR  A$H$񴪪 2,9R@@``/RH @I$q2I$I$@X 1< !1Q $h;IēRZU 6m&r0z~= M0xI$L2-WI$IRt-UI$I-U*I$qSMU* I$X I0NUI$d 1NU I-) QNU Nr/  mr H$I 񴪪Ȅ1``X`CRФI$H$Ϥ $I$$I$ϤXR ))r I A4Њ/-1```-pC. 1Ф F$L8R1 I$I$q I&IR1 P 188D 1  I$-$ T?c2Rjbhx d RA IIA$I$HIR1Z I$R1ժ I$R1uIAR1 $iЦR1w a:4MR1U1?**(II$R1U I@ҴR1* $H$R1I$ $r1I$A r1RXuR( iѮr-) I H S39P&1hT BRФ'I I1/UUUA$ 1UUI$H ӽRppUUЋe RФ<< )ڠmr+)I I$ X5[3ٳrhzzzd pBRФ $I$r1I$H$QR M4M @$X&1  0 Q---- Iڤr%% A6Irj&A1Z8 Wwb#)U OҲUö&HU߶IФU ϒUo&HUi=  II i4-6񴪪 C8C:R@` .1 I$I$ H$I$1% IA$1 $I$1 H$I$1 $I$1  $1 H$I$1I$H$r@ II$R1 m MϤbR r))+ h I$ꪪd3SRzzzxdK.t1 M$HRѵ񛪪 I$MP HI$0 II41𤺪 i$1 HA$1 H$H 1* I 1* Ifr m$iQ4R1ծIH R1I$R1I$ $IϤI$I$ X R< nr I$I$ 6=6R``bx RФ $H$Ϥ $H$ϤA $PةRФ< i)r  =#21`h` .BRA$I$HI$R1I I$R1X 18 noٖbrIH  vb$qbrꪪc3Èmz IФU ӶUB$ U OU NB;rUI$z1MUI$I-U IT 1-  D 0+  @r  ҂1``` ɐ 91 IIR1A$ $Ϥ$I$Ϥ ` RФ iۢ)ڶrI$I$ .2:R`hhxJ1RФ@$Ir1A$ $QRA$IQR کR<< )ir +  $I$ [5C:rjjrzKR EE&R1ꪪ  I$I$R1 H$iR1 IIR1۫I$IR1}AH$R1wI$H$R1ݪ $$R1WAI$R1I$R1ݪ @ R1 Mi I$iR1 a$I$R1H$IP ؉RФ iir)))H$H$ 6:R``p`Kt RФI ϤHA$ϤI$A$Ϥ@ PRФ8 iQ-rH$H$ c;`6Rhhx P'RI$IϤ $HϤIA$ϤX&c&1X!I$mϤ) IIDr%%%% H Ir_* mҮlr1ZO$ U, AUmU OC lUyB$ lUc$@U9u$l1* I& $II$s" 25=9r``xp 7J1$   I$rH$I$rI H$rP `1<< iir-) I$I$(/퓽1```` C9 1 )ѵ񓪪 A$Iѵ񓪪 m&i$1 6e0jR m&M$r A$ $rЊ)-51``` )1 I$A[$ѵ񛪪H$A rI$Ir mE$1` I)"1 1  i-6ѵ񛪪 iRMڴ1 I$Hѵ񛪪 ME61* I&1  M41I A$r M$H$ѵ񓪪 8Y;1𤪪 P%X1NؘxyJ  H$I񴪪/P-1````91I$I$rIIrI $rh ȉ|1o<44$ Pivr I$@$񴪪@1`pxpR I$@ϤI$R1; @4I$RyC `|1<44$ !1rQ I $Ϝ H$A$q1 I&H Q_ I4EҶ0 I$A$0I&I$ IIl0?? A&I$Q i q1 ImrQ:/ 쀉iӳr I$I$񴪪 H $񴪪h" p``` !n1  v8R1?UUϟR1UUJR1 hx\RФ<,$$ 1Á0r FlNijr_Zr``hJA1 I$I$R1WU i$H R1 I$AR1뮪j RФ4$ -ڶr)AIP՚9`!RФ I$ $Ϥ $$QRA$I$I$  r1I$HH$H$ϤI $ϤI$I$ϤII$ϤNDTҵ I$ϤH$I$I$IϤA$ϤII$){RФ<44$ I؉r I$ $ھ561hxxx!1 A$ $1UU A$H$1UA$Ir1艚rr666 a۶s+"I$I$ h51`` `IR A$I$ϤHH$Ϥ bD$R1 `氽1 irQ-/+ $I$𤪪 I$ $S__ I$ $񴪪@$A$H H$A A$I H$$I$I$HI$$I$H$sA$ $   ,11``p !1Ф I$I$ A A$1%% A$$r@ HI1 I$I$1 I$I$1 H$I$1 I I$1 i4A@ AI$RTXTV I$i$R1腞r666 1 $A$#2X?Rxxxx'  R  M$mR1 I&hѵ񛪪 $D 1 I$I$1 A I0 I$ 1 I$I q I۴IR1H   II HA$I$ $A$ϤI$H r1@$I Ϥp*rRФ444 im۵r!II$ c9=1``xx RФ I $ϤI$H$ϤH$A$Ϥhxr𤖖6 lۖlr$I 1#1hhxx R I$ Ϥ I$R1j$I$rp14444 )YrH I$A$I$ @$ $ I$I$񴪪IH I$HI$I$񴪪 'b;zz p:9rxxx`H$A$菉 qeK r-- I$Ir H$ 򬪪  #1` JA1  IA$R1I$A$Ϥ $IϤh xR<444 )(rI$H-6Z51hxxx!RФ I$A$ϤAI$ϤI$$Ϥj)r6666 ٖmÖmsI $ P?c :1h&`R H$@$rQy IR$m$r1ZZ H4H$R1 $I$R1 AI R1I$HH  $I$I$H$ AI$R1 H$I& I$R1 qĉR1AI$R1H$I$h RФ444$ iY۶r+ $I s)X91````'tB`RФ H I$ϤA $ϤI I hKdRФ<<46 1۱r*H$I$5@#)1````%pR  $ r1I$HϤ c:Ab'R1 `&x$1 B)N0Ϥ II$-// MI$r I$I$ A$A$s"$A$sI$I$s*I$A$s"@$H$sA I s"I$I$IH s (A$I$sA$Hs* c`O6Rhx I1 A rI$I rI$I$r`'RФ66 ۳r) I  ,0`I@1  iI4q $I$q )$H$r1 &ir I$A$r I8Ib-1````1Ф A $r$I$rII$rI$ $rA$I$rI$Ir$ $rH H$r $I$rI$I$rI$I rI I$r $Ir%{1М I$y AUU M$HN444$ nR H$A 񴪪1Ф``JI1o II$rII rI @r HxKPRn&''' I4ir II$񴪪 4X`hxpPHRI$@$I$A$R1;? I$I$R@PP tKLQ6&'' ӆm’rUm $4iRYj I$AӶrQ q'IhrQ I$CrQU I$M&r0_ M6mQ_ Im60 EӢI0浪 ر$Q+ I$rQ =5 I4r H$ $ I I  -`tTRu,ǘ-,R`1>)  mR1 8p pQФ&&'' I$I$r]U h$I$rQ آ1rϤhxxx tId1 IIR1 i4$R1H$H S rФ&''% I$I$I$A ,R1``APRФI I$ϤI$A$ϤI$H Ϥ $II$A$ϤI $ϤI$IϤI$A$I$I$Ϥ NHHҵI$A$A$AQRA$IϤH$ $ϤI$A$ϤP 1OrФ&&'' 'ós H$ $񴪪 -Ф``hdT1$ 1UUI$$1I$Is18P:Rr&.// A$E$I$A$ 1``tHDIRФA $r1I$H$ Z9Z9R1z|Z^ hdJX&/ !r--+ I$I ӽФ $I$r. A$r I񴪪I$$ I$@ I$I$H$ $I H$H s*H$HsI$I A$I$ --``x  dH1Ф A q II 1 AA 1UUU t+Ф' I$I  P5zzz A`I R1I$I$ A I$ 2Rr6'%% $II$I Z#hhxx IRI$H Ϥ Ңm[R1 m[q HR4h1ꪪ I $1𤯮 MI$0 IIѵ񛪪 ؉R1I$A R1I$A$II$I$H$ $AϤII$H 0rФ&''' $A$I ZhxxxPP@RФ@$ $ϤI$ϤII$Ϥ ȆS0r&.// R$I$H $ 1``T1H$I R1I$@ R1w I Hp PR&''' m۳I$I$񴪪 I$ I$A 񴪪 H$I$񴪪II$I$H$AI $ꪪ#35خ0x`` M&I$/ndN0- $I  H$ 5```x`ATRФI$I$Ϥ@$H$r1@$ rRWm 8PʴOrФ67'% IIII$5```x`RФI$I$ϤI$I$ϤI$Ϥ8P35OrФ&&'% L$I$I$I s b-6`tmRI$I$ I$rRo HS$h&R1 $h$R1 iHR1 AI$R1I$H H$I$ )$mҤR1 H4M$R1 ii M A$R1H$H R1@ ϤAH$xp;nr6'' II$+I$I$Z91xxxxpH@ R@$I Ϥ@$H$QRI$ $Ϥ Hʠr7'%' A$A$I I$55hhxx`TRФ$I$Ϥ E mS Ϥ Xk&R1zz~_ HKn446& wr--n"$HrUo nܶmI$I$s* I s* IHs(*I$ $s*A$I$sI$I s**I$I sH Is(*HI$s $I$s*I$H$sR--1hhxx`hta1II$rI$I$rH$ $r WʤHR&.'/ II$ I$H$ -`P1 I$M&q I I$q I H$ҵ I r+  L6@۳I I$-/5``IdI1Ф $A$rH$ $rH I$rH$I$rI @$rI$ $rI H$rI$I r@$A$rI$Hr )2Jjj@A 2) ("A$r E&hq I$i1 ȹpLpRn&''/ I$ r I$H񴪪ڂ1Z/5Ф``ppAP 1I$A$rII$r M-&r P9r%%-- I$Is I$ $񴪪 5/2Фxxx tIFLR@$$Ϥ$I$r1I I$RPPPP vj1. + 4IerU mr_ mo$rU M8U 0m$rФU $rU $QU6I$0NU$I$ U$I$ *U I$1-*U mq$nUDm$U m'U /1}z_U mR Rby(0RjhDIiR 3LUOQ/--- A$I$rQ"( IHQ* 4rxxxx tmR A$I$A$H$I$R1  Od Ф---- I$I$H$I#-``` f mR H$ $A I$R1H$H$R1 II$I$A$R1 $I$I$I$R1 I$R1I$I$R1 LH$1(( I$R1 *I$I$R1 H$R1" @$H$R1 II$r2  J@Jr%-  I@$򴪪 iIs* *1xxxx  Dm1Ф $rI I$R1.**+H$I$OФ//-- $ I$I$.Z#Ф```p a&mRI$I$Ϥ m;C'R1 X6k&1hA~M_[n./ PbyQϤ E۶I$rU ؤnvrU @7rUDrФU ad瓽U i瓽UFr'U4n-U  M$4U m踓Ф  mrW  c;ФU4mm?ФU &I$RnzW I0I1Ф I$I A$ $1U5 I $1 $I$1 I$A$1 H$A$1 9`&xhxx `I41Ф IHQ/ H$I R1 I$$R1 1 rФ/--- @r  1͓xh` mЮR" I$I$R1U I"m$R1U iӦE$1 Z::1 M$E$1 I$A1𤫫 1 * MR IѦ $R1H$I$R1 $A$R1A$A$R1_I$ $R1"(  $A$R1" mM$R1  WP%--  I$$HI$s*/xxxx 閡mnRA I$ϤI$I$Ϥ $ r1o gO Ф---- $I$H$H #-1r```` M4a1HI$rI$I$r IH41( I$ +mn$Umm'Ui5ǓU me$W m$oU am<Uqd$U0m-?UMl$U $r{Uh$I$ Upy$R-m&$U  I$$*U 1}r.z t RI$I$ϤA$I$ϤI$H  LrФ%%-  I$A$ I$A$ 0Фx`xx mDIRI$H$ϤH$AI $q2 Ф%--- E II$A #,`` A]׶R1)+ $r1 $I$rRA$s1 I4M"RUU A$I$QUU*  ǓRUU @$A&RUU $$R1 I$I R1 AI$R1 I R1zI$I$R1I R1uI$A$R1 I$H$  5 %-  I$I$I I$X1xxzx  &lR1I$H$ϤI$ $ϤI Iɑ//-- I$I A$I*1```x ٖV RI$I$ C;v$R1z&u$1zHI$-./ @7wrϤ* bi$ u$l$1U i$1U  i1U TI$1U@1UD->U $UD瓵*UFr;UDRm{瓵UDR68"UDm瓵U :u?rz_ ٖ]uR𤫫A$Ir$I$r $ r S>rФ%--  HI  I$H$5R5Фxxxx t`I1Ф H &t'ѵ񓪪 I$I$q IIѵ񛪪  I$IsI$IP5`` m1I$I$1 I $ѵ񛪪 $I$1 $H1 I$ r iI$1" iӦ$r mڦ)$1  mI&1  h4m$1"(" (2jBkIH1М +  m׶h41 v$10W i1 r%--  I$H$s I$I$ P5X9xxxx M$I1H IrH @r :̀)1@  ---- H $ I$I$s)rФXX$A$R1# ""I$I$ϤI$I r1?I I$RPpP] MҠm R1רI$A$R1 *A r1_zIA$1"  IҤ@4R1U Iۦm"R1 I@$R{ I6-ZR IRS=1Z sh-1W IЦm61U 1  m۶mR K2lIdr1UU I@$R1 I$H$R1 A$I$R1_ @I R1U A$I$q ][.1Ф@@  !Q-- H$rU寫 Iشmسr brxxXxI$A$ϤIA$A$I$ )"-R@ ---- A$I$I$  #$ rZj3v_y>ФU NbФU IJФU ߲ФU_ФUI&AU ÚФU ÒФU NJ@ФU 'jI1U o6rФU SФU}NФU߶(@ФUInկ" ɖ MR $I$񴪪 I$ .... xxxxI$IR1I$I$r I$R1*+. m>)RФ@dNJ--- IHs I$I$񴪪 P+ФxxxxA$@$R1+I$I$R1 @֨:R1~{~V h&i41 Iblj1*  I1 1 mֵ-R I$iRr I$aq I&H$ ɖ ɖlR1A$$R1]I$A$R1I$$R1תI I$R1 H H[$rRU i4irR IMR1ߪII$R1ת A1 I$I$q A I$1 A$I 155 I H$1 I $1 I$H$1 H$A$1 Z&j泽xxxx I 1 H$H 1*/>* II R1 :!Q@h OФ---- A 򬪪 I$ k[mR` NBHФ_ I&U I$U I$m nU I2@U I$h1MUI$N-U I7%0N* q߶rU ҶU]@U~¶IϤU ~^ФU öФUSIФU qIrФ )Vlr I$I$ II$"#ڐ-Фxxxx $r2I$HϤ$I$rQuUU (¸)R𤀀@  Ф-- I$ $ HI$X=>꽦Խx^^^ AArA$IrH$ I A  IAR mAR1uꮻ mR 1 iMR1Uj IRm6R I(6R*AR1 M@R1 I6IR1 I M"R1^ꫫ kCn1j M";r 1W/bBR  IڤiR1U IZ IZ4R1U Ih۶R1UA I$ϤII$I$@$Ϥ ۄ!RФ@  Ф---) I I I$A$ X/+fФxxXXH$IR1 *$HϤA $ .-R𤀀@p ---- I$I I H$ ۆrzz~")AWcAUII1U NV 1} ImۭrU3 r $Ar1@ A&I$r iW Imտc( U#' U)LUOIUy^$AU M%7a1տ Imr+*I$H$ @$ $s#=xxxxIH$ϤA$I$Ϥ $I$Ϥ ڮÂ5R@ 1- I$I$s$I$ hhxxx@ 6 ڶm'R1 ò6m6ѵ񛪪 H$ 1ꪪ I4A1*  ImR1*I$@$q2I$I$Ϥ $I$Hr1?I$HR1I$rH$Aѵ񛪪 $A$r I6Iѵ񛪪I$I$ѵ񛪪 Mѵ񓪪 IHѵ񓪪 Imѵ񛪪IIѵ񛪪A$$rI A$rH$A$r ݊6݂61@J Ф- )  I$I  I$I6񴪪 PX]xxx Ahr m"m6ѵ񓪪 IH$q M,I"1J IIQII$s((I$A s $ r^SS MW ~$UIl& U fBU Imrժ ޶ϤU CФU wNU޶U ߖUߺ$AU SU I܉Qn Ib' @1nW I$ QNU ɟVrn !Un$ 1-  I$H$񴪪 $ $s أ9ZrxxxX $I$rA$I$rI$I$r (1@@@@NIr  II$񴪪 I$ r fj4RܘI$R1A$H$I A$q2H$I$rQTVUU$A$rRy] $I$ϤIH$r1ZH$I rII$@$ϤII R1jI$HR1AI R1ꪪ m6CR1UV{ ]k1z HH$1𤪯 &1* 6I؉q 4I' Im$ iI$r H$ ѵ񛪪 A$I$q*"1@@@ ! @Ф--  I$A$r $I$'^b rФؘH$I$Ϥ@$@ ϤH$Ϥ , RФ@@@N $AI$ @$I H$H$H$I$II s $I$I I$I$I I$I$I$I$I$I I$I$ LBH$rQ iir $H$I$I$H$I$ I I$I$ H$H$ I$I&s*`(f`f $I$rIH$rIH$r1,)1@@`NP  I$I IS$m$j jFjrX؜I I$I$I$R1~ &h$ҵ I$M0 q ѵ񛪪 $I$R1 I A$R1 I$A$R1 I&MӦR1 I$H R1 H$i$ mIR1I$A$R1I$A$I$I$$A R75=HH$rRI II$A$ H$I$ A$A$q $H1 $A$r/5   $N) IA$ I$@$ӽs `dJX\ AI 1 $A$q  $R1 )")1@@@ !!- H$򬪪 $$򬪪 A 򬪪 @򬪪 򬪪 H@򬪪 vݲvr Xr~{_W &CQ```(&I$^\vI$1 += mr0 mikr0 uI$rUU ֶI$r]U mvسrUU mmr [ѶI$r mI$rW I$ 0 H I& I$I$񴪪f7rXؘIIH$I$IA$ )RФ@@@  I$ Fb;6b'@@ j(fkRXܜ$I$rI$A$rA I$rH$I$ѵ񛪪IIrI$I rI I$rA$I$rI$I$A$ $rA$ $r  I AI rI$I r '-'1t IR H$Ir1A$I r1H$H$H$I ϤA$I$ϤI I$Ϥ R@@@tNAФ  I$ 0b۶c;jj %Z`rؘI$H$Ϥ@$ $ I$ (R@@t !`J I$ I I$$I$sI$III$s I$A 1I$H$sI$I$ԽVi h I$q  A$I$r I$I$r I$Iڢ II6/** $s * A$s"I$I$s*I s*I$I$s I$sII$s I$H$s I$IZkXXI$HϤ $H$r1 $I ۊ-R@@@@ 1 As** I$H skJtVr1PXI$I  &k&R1x^ Db'p$1 I$ 0 Ivm1  Ii HѴi&Ϥm}$RU q$R *U$ $$R"$$?RfU I$$11 I rI$ $rIH$rA$ rI$IrII$r  rHH$ѵ񛪪 $rI$ $r)1Ф@@@@ A$ I$I$lȆjrФXXؘI Ir tB2C'ѵ񛪪 I H$q:21Фb $I$ *$5r ر;s dr*H$H$sH I$sI I$sI$H$s(I$I$sH I$I$A I H$sI I$HII$I .)"-rhjhj @q1 HrQ= irq I&$ 0Ф I$I$񴪪 h[ h-rjjjjs1n<< I rI$I$r 8,1r``v8B.1nZА1@A- -i$I [,`` I$ 1N(o 1M$ARUIҶRIҶRתIR$IR*(Imr1U hM4r1U ҢE$R Mm$R i"Iq IH$R1 i&-$R1 H4R1 h[ 4R1 K2l[lr1y 691𤠀 HA$1𤮯 I $1" A&M$1" I$I$r I I6R1e I I$R1" I$A0rRﮮBUđnēU M1U u$ {Y$Q(T c;r@ 8Hijr< IA6"*@ $hұr m$RU h۶I4RU $1u a;I$RU -6I$r*U PH$rU ֢4R ڵM4Rw IijRU 1Y>r<6I I$rR"I IrR, I I$rRCڽR n)nr )  I$I$s*  2l˒$r mѤI&r1\\X Em6ҵ ES$I$1𤨪 I$I$1𤪪 1 iIR1I$I$Ϥ$ $ڣ%ZRxXXIb61oʀIr& 1Uת I1U" I1U]Iضm1UIm 1U IB I1МIr?$@1UI I1М I1UUyi1H$I1w I I1 IA$1݀ I`ֵ1 [؀)qRФ_:* )II0R mn09D@rLr@I$r &dB;ѵ񓪪  I$q ##1PXfl  ؆Jij1T  1U I„ Ir1( V`ݒ&1U vi&1(U m$1U zi$1U m$U@ 瓽UDrm}瓽U@v䓽U 瓽U ܓU I]?ФU m;rU 6I$1NU PI$1N 0I$rU 6I$rnUmI$QnU 3I$rnU $6I$Q  Iɐ(.'A$A$r $  rP@ RP` 1 i)m1  I I$񴪪 i$$rꪪk#H^ IU IbUͶ&HU ˑU ϒФUIҶIU IbU IRU IҶUIB@U qBUOIФUIҒ&ФUSHФUgӍ@Ϥ} N2' `Qn_I$vq0-UI$ 0NU I$#1nU IܛrU sU ~ܲϜUӲ$@ФU*1gn$@+  I$IH$I$ C624R`` )BRФI$IϤA$H$ϤII Ϥ $R1A$A$R1ߪI$I R1(H$$r2_II R1  $ $ bR1UA I$R1(I$IH$IR1 II$R1(I$I$I$H$R1 ҤM;q2 C0c'R1u^W I$H$ҵ $I$q II4R1/ I$E&R1  I$q2 $I$H$I$R1IH$R1I$I$R1}$H$R1I$I R1ڪIrQUUU%H $R1j QФ< )irII$ I$ ꪪc3@1^ 3)rФ_}'b W q&5 1U*$ ro) UIbmU$i1U ӸjI1U ik 1U Im 1U IҶCm1U"uB#a_ I4hmrU MR%ArU dn rU $%AUS U OҲФU ]ФU I$U I$U I$IRnU I rU YN$𤵯 I R   򬪪 *͓1`` 1 H I$Q I$I$q I$I$q I$I$R1_ I$I$q I$I$1 I$A$1 1 I$I$1 I$H$1 I$H$R1_ I$I$1 I$I1 vB&1>)1{I$H$U|pI$I$1nII$5iv1𤻺A41𤿪$C1i 1ݪI1 C3pB:1 F@1" IIR1U A$I$R1U $I$R1 H$A$R1 I$ $R1 A$A R1P1<< )Ю2  I$I R L$I$r[Ir^ Ib$ U*Ib$UIrUIroU IoU IIroU Ib&AoU IߒoU I&oU I7nU IRoU I8oU InU IroU I?rnUI$LWI$I* I6ArnU I&&HnU IoUIRMӽoU**Ib$ӽoUOΒӽU9@𤭫 ڌMós)$I$-#R``xxp RI$IQR $I$ϤI$ ϤH$ $R1 I$R1 I$HI$ R1 $Iq2vH H$R1 I$I rRuII$rR I$@ rRH$H$rR I$ $rQM I$Ir?H$H$r I r30AA$rRI I rRꯢI$I$rR2IA$rR>H$HrR+I$H$rR(0 $A rRI$A$rRH$I$rRI$@$rRA$I$rRHA rRA$I$rRIA$rR{ҫX r17 i$I$) @ I$r m;f8rz~_W tB'p$r0xx k4m0^ I'M0Ϥ I6m;l0U IİIQտ iIr1)  IhRU  I:킡RUL¤#9W 8jm1U q8Ua1UI7 1UI&H1U Ima1U I$m;l1U I+m1U Im5l1U IB$1U MS+H_OҒ$) U ÖU_U϶$%HUS&HU I- M1* I$L I$A$ m.m6r``x ɖkRH$Ir $$v&ѵ񓪪 I I$1 R1UU I$AR )4I$1TTVV I6M&ѵ񛪪 $I$q I$I ѵ񓪪AI$ѵ񛪪 I$r$H$ѵ񛪪I$I$ѵ񛪪I$A$rI $ѵ񛪪I I ѵ񛪪IIѵ񛪪 $A$r $I$1 h$hZ$1 IH1 Ibmn1׊  IҢm1UUU5 I &rw i)$1  im"R MM$q I$i1I$I$r $ rII$rh 14444 !±ir I$I$񴪪 I$I$񴪪 IH$񴪪 @ I$񴪪II$I H$$I$$I  I$A I$I$񴪪 I$I$񴪪 I$I$񴪪 I$$ A$L$H$I II$I I$A  m5mS4rzjj dB8p&Q~|xx Ii1 555 IrQ55=  IIr* ) I$ I$  H$I$@ A s$I$11```pA RФ A$II$I$ϤA$AϤA$IϤI$I$q2$I$ϤI$AϤH$IϤII$Ϥ `LDHR1I$A$Ϥ $H ϤI IϤI$A$ϤI$A$ ۆ-ے%R1 ´$R1__ I$H$ѵ񛪪 A$I$r HI$ѵ񓪪 iI$ѵ񛪪 iA$R1 i $R1$I$I IϤA$I$I$A$ I I II$I$ R(Jh ztRФ446& 6۳s+A H$I$I$񴪪 I I$c ,>0x HIЭ𫪪wqV0-/  i&A$IIs**A$ $s" I$I1H$I1 $H$1A I 1I$I$1$Is C'$Bҳrꨠ I$A$R I$H$R* 4Iسr + H$sII s*A I$ 򬪪 HA򬪪 򬪪 @$@򬪪 @  򬪪  A 򬪪 򬪪 ,1`p AI1  I$I$R1 I$H$R1ꪮ $I$R1 H$I$R1 I$R1 I$I$R1 I$I R1磌 $I$R1 I$I$R1뮮 H$ $R1 H$I$q $I$q $C1Ȁimۺ1I 1ꪪ3 1_I$I$W\rI$I$0pII$ iND2 ѵ񓪪 ѵ񛪪q @ H R1[_W ivmR1H$I$ϤI$I$I$I ϤI I$ ME R1 I&AR4`T1<4<$ iYbr I4I$sﯯ I r I$ ӽ H$I s I$I$s  I$R I$I$S @$@s I$ s IIRU I I6R_ A$I$r A I$r A$I$s mm$r H$@$s I$I RU b&6&rjjz h&R2'1XXXXii0%5 1ē0 + A$ $r A$I$񴪪 A@$s**HI$A$II$I$sH$ I$A$ 5`ARФ H$ ϤII$ϤH$I$ϤI@$Ϥ ϤH$IϤI$I$Ϥ@ H$rR $ IA$r2 H rRI$I$rRWIH$rR߽AA$RI r0 ? I$r3I$I$r3I I$rRH$rR"H IrR:ƒI I$rR:A$H rR I$I$rR:$ $rR I$H$rR.I$I rR;HA$rRI IrR;ˬ+IIrRI$@$rR30A$$rRk br17'&'  v$r{ @4i&Q~ `8Iq1 A$AQ0z_ I$HQ0UU I$aQ0 I)ڶq1 m$A$q1 &rQ / iA$r* I$ *I$ sI$I$sI$I$s*$H$sIA s  $A$sII$s**@$A$s I$H sA$H$s $I sA I s*II$s I$I sA$I$sA H$s*A$I$II s*I$I$s** k:6rxxxx I1   :C'q DLp:q Miѵ񓪪 I&i&ѵ񓪪 I$I R  I$ $1TX\P I $ѵ񛪪I$I$qH I$qI$I$ѵ񛪪 H$Iѵ񛪪 IIҤѵ񛪪 A$i$qI$Aѵ񛪪I I rH$I$rI$I$r  &ѵ񛪪 p0$q cf$1 I$I1 ѵ񛪪HI$1%%I$I$r1TTTTI$I rI$ $rI$I$r I$A1$Ir@1I$Ir tJPR6''% r I H$ I `䳽r^W I$I H$A HI H$I$ $M& $񴪪 I$  H$H$򴪪 H$A  II$ I I I $ A$I$ A@$ II c8c:j >/>rxxxx MM0//// iviQ)  I$ $ $ $ $񴪪 I$$ I I0 IA6 H$I$-5``x DRI R1 R1I$ $r1HH$R1 $@$R1A $r1wI$I$r1I$$r1]I I$r1 dL&d$R1VQ  $rRII$QRIA$ϤA$I$ i;I$R1 E$I$R1_W ($M$ѵ񓪪 I$I$r $ $r $H$r I$r MI4ѵ񛪪 H $R1 lɒ$R1 I$H$q2H$I$$H II$I$ $ R10R1@|S  rФ7''- II$I$A I$A$ mӶh4rhj pB'N$r0xx^W I$IQ/// ivmbr-A$Is  I$sI H$sI$Is *I$I$1I I 1A$I 1I@$1H$I$s $I$s MR$mڶr I$ $r  $ r Ir + I$H$ I$I$ I $򬪪 I $ I  򬪪 I I$ II$ I$򬪪 I4h #1```x ITH1 A$I$R1 I$I R1꪿ H I$R1 AIR1 I$A$R1 I$I$R1 A$I$R1  I$R1 I$ R1 A$H$R1W[ I$I$q I$I$q $AR1_UA1Hq"hH1ꪪsR9X L1I$I$UW^pI$I$UR1+P )1 ѵ񓪪ѵ񓪪 @ :ѵ񛪪 uٖR1I$AϤI$IQRI$I$ϤI$ $ A$zoKtrФ&&'' Ylٖ% H$I$ꪪ H$I H$Ir I H$ I6IҦr @$ $s A$I$R IAS I$S AI s $iS I $ӽ񬪪 E$I$S E$I$r I$I$S I$i$r &m$ӽ𤪪 h5]$r0zX4k61\^^W綠U !r/ N$Q  @I r 4i$s$I$H A A$H$qII$ I$@& ,`p@RI$ϤA$A$ϤI$ $ϤAA Ϥ $rRwI$IϤ $IϤH$I @$I$ H R1"" I I$rRI$I$rRI$ $rR+@ r$r<I$I$rI$r<30I$I rRI$I$rRꈫH$I rR*HI$rRI I$rRI$I$rR+@$I$rR:/I@$rRI$H$rR+$ $rR+I$I$rR";I$ArRI$I$rR껪IIrRXr1'%% IЯ9rz Іmޖr I Q0/ i4hrQ? IZi$rQ" KrQ< i$@4r0 I$E$rQ I$I$rQ/ I4Q R($R"%Q [ I$I&r $I&H$A$s( I$I$s @$&s  &s  I$I&s I$A0s H$IҤs( $A$s" I$H$sI$$s* I$ $ I$I$s* $I$sI$Is"HI s( A$H$sAH$s" B53-Rphxx PIR𤪫 @6]&ѵ񓪪 H&I$1 Iiq I$ $ѵ񛪪 A$RII$1px@A$I qI$I$qH A rI$I$q I$Iѵ񛪪 I$I$ѵ񛪪 $ѵ񛪪 $Iѵ񛪪 I ѵ񛪪 I$I6ѵ񛪪 I$i$ѵ񛪪 MR$I$q $321 $ $0 0'1**V$IR$1М$$М жI$W'1М*-I$HrI I$rI  r(!.2jjb111%%%5 I$r I$1// @ɓ$roU D$roU I$roU HDq$N(U DR$roU $roU @$roU6$ӽo*U6rӽ m/<R i$U  Iv'*UidkrU  ؒФUm-ߓU q}'UD$ФU@V$ФUDnФU  he?U X;'M$1M~W䐄I$-* 0 rU 0le{'U$RuUD릓U I$U A<U Iv8UmmU 1mrrzU MPrI$I rI$A$rI I r $I$rI $rI$I$rI$H$rI$A$r@ r hR$]&1I I$r1H$I$Ϥ $I$ EӶm4R1ʪ h&I$r H'L&ѵ񓪪 I4ir IҤmѵ񛪪 I$Mѵ񓪪 I$M"ѵ񓪪 I$iѵ񓪪 A$I ҵ iM$ѵ񛪪 6I$ I$I$R1 A IR1 $IHIH$I$I$ $ 01ppΐPIr/ 0vؓU@m瓵U@?U $rU ESs'U "@eZ1  k;*UI$U I6U жI$1UPmu1U ж81U Զi$1U ֶij1U vIij1UдmN'U0<U8U IrФW rU @nrФU Mv瓵U$}?ФUDRmԓФU@m<ФU@'U 0 l&U I-ܓUmmU  I'U =1Rh~U )v]R I$I  I$aR1 L8 R1 I$$ R1]* I$I$R1꺪 I$IR1 I$I$R1* I$IR1 M$IR1v I$Iq i4m;R1uu8 QﮊI$I R1uU I$IR1_[ I$$ R1_ InmR1U/ I Q1U| kӶ[1蠀 m+1 II$1+ YR1 I R1 * I6AmR1YȊ(A R1aI$I$Ϥ $I$ϤI$A$Ϥ ϤI$AI$H$Ϥ St1/U  Ae$Ume[ǓU M$rU Io$U mv$UD>ӽ*E 0`$rU $rU 0$roU I$rnU Qy$rnU @I$rnU mO$rNU I$rNU mI$rNU 0rI$r-U @I$R-U 6I$Q U$I$0싀UA$I$ϤU $I$ϤU$I$U I$1 U PI$Q-U @rI$r-U6b# I|ӽVMv$U I$U  m\'U @36rzU v@0MRH$I$Ϥ $IϤ  $rQeU]H$H$I$IH I$I$H$ @$A6 I$Hq2 $ r1 H$H$rRI$IR-I$Ar30<0$I r $I$r   r0I$H$rI$I$rRI$I$rRï. rRH I rR(I$A rR˫I$IrRI$I$rR@$I$rRUUI I$rRUUA Ir1IIr1$I$rRUUI$H$q2 h&M$RQXXee $L$1 W m5rQϤU I"8 H0"+ W4Iq1 I$rQ  MI4r U H @R<  H$IR I&I rQ 'ab&r1^  2L8qU P$c%rϤ_ ڮI$UԲ'rUĒ?U Um?ФUDmܓUDߓU qؓU m瓵UU @r䓵UFr?U mI$U жI$Uе$Uԭu$UȭdzU$$U I$1U²:I'rU ڡ:ѵ񓪪 X%m$1 I$@1 Aq m&kZ`1\ A$H$1 H$I$Rp@CCI$HrAI$r $rI$ $ѵ񛪪 i &r I$I$ѵ񛪪 I$Hѵ񛪪 I$I q A$E$q IH$ѵ񛪪 @$i$q I$I$q h*(1𤪢h x$IϜx IϤ߫*+ Fn1Ф Ib3 𤥍I$I$rϜTTV\ II=/*IIrI$I$rA$H$r-X51Мh p91%%- I$@$r$A$rI$ rAA$r $IrAH$rH $qH I rI$I$rI$I$rH$IrI$@r1SUU $A$R1I$I$I$I A$I$II  A$A$A$ϤI$A$q2 $I$ [-H$R1{_ j2%XR71 Iviv1++* 11IR1  I$R1AIR1I $R1kA$I$rI$I$rI$A$r@ $r1} (,-R@B =t R- ߶U OU uU q̪U ^U U y޶U IⶔU IUO)ФU YݵIr q$:lrU M$hmrU u$ 1_ I0U ɝ@QU q$%rU $ rU )ФU $)aФU N$@rU M&h;lqФU I$hmQϤU Y-6l1ϤU 隦m1Ф M$-rU* MҶmrWI$Z`Uo(HU C`U ل`yR_~I$A$R1I$H$A I$R1 $ C'R1~~37]\'1 I4)0ꪪ IviR1I$IR1I$ $I$A$IAII$A$ $I$A$H$I$ $I$ $I$I  $A A R1ꪪ N' brR]Y @$H$r1[WV iR1A$q2A$ $I$H$QRI$H$ϤI$A QRA$I$ϤIA$H$A  ӊ-ڢ-R𤀀@ wrU- CUy^MU ӶU ߒUm&@U ݖU CփФU IArU ~&rU IrU*I"% U IUiڶ$)HФU MФU }^ң( U I]UI:lU HФU }' hQnW$ inU- * nQФկ  I&- U I$E U qU I'UI( U o")AФU c ФUR&HU gDbE1o $ H$ I$A$r1I$I R1꿮A I$R1I@R1A I$1I$ r1I$I$R1 @ R1nI$ r1A$ $R1 $I$R1 I$I0R1 I$I$1UUWT (&E$q @$I$ѵ񛪪 M'I$Q1UUUT &I81 @&M$0A$I$Rn $I RnII$Rn MI1𤫯 H$I0 A4I41 m I$r1]U 4@I$q  I$r qR1u II$R1(.2RФ@ lrU- SrU v\$@rU ߶rU #)HrU ?$)@rU rU ܾ&@rU L$)ArU cۓ$rU # `rU 6 rФUiaw, Ф= MZtMrW AIbӳr3 ,iڶrL @Ѥi$r> -$Ir I-rU Iؤ rU m5[ RU I$IRU I$mR I$I QUIljRU* I$m rU IҤH RW I$RU I;kl1U i$(a1U m;l1U t' 'r_xx DbƉ$ҵ I$Ir mVlR1 Yd۶ R1I$ R1I $A$II I$@ A$R1 im۶R1 M Mq i6q @$Iq I$H q )i$R1 4L$r1UUVX MI$qAI$rI$I$rA$I$rA$I$rI$IrI I rI$A$r $I$rI$I rI$I r $A$r@H rA$I rHA$r L2&C2ѵ񛪪 mӦmr I$I0n 0 rU+ IҦm7l1U I$a1 YmnR .(ֶӽr@ MhvRU $RU I h[rU愈 I$(rU IB'$MRU IiRU q0$1U Nb'X7m1U I'M1UNb;C+mr1U S&HrФ_ ~ZrϤU & h1nI$-`NUI$'MU I$v) 1NU In J  rnV I;$ rnU IroU IroU Ib&HrU Ir&oU IroU I$Le W^I$IrI ArIA$rI$I$rHI$ѵ񛪪I I$r$I$rI$ $rI$IrH$I$R1I$A$I$I$I I$I$ $I$ I I$H$A$I$AI$R1 &h;f$R1~ )6ҵ M$H$1 {11///+ ))R1멫I$ r1I$ $R1I$H$R1I $R1I$A R1몪IH$R1I$A$r Ȃ"(1@@@ p `Ф-  I$M** I A$ I I$ $A$ I$I  I$I$ H$I  a$ $ I$I$ E6mS4 ;6$r^ -ZE$R mM$rQ I$iФq1 MirQ? I rU* IضMr NhƱm i$I$ $I$ Y-[! a$I$r{ Ib&CÒRꨀ q$L;rQ_ I&I$q1 $I$rQ )$Q  hM$r $0򴪪 I M& '^rФII$ $I$R1 AF0R1z_ h6mӦѵ񛪪 E&i$0tv 1+*  IR1I$$IA$A$ $$I I$A$I $H $ $II I H I I$I@ I$H$ N$pB"r1[Zz I$I$R1I$ $q2I I H I$I$H$ϤI I$ϤI$Ar1 $I$ $IϤɂ )RФ@@@`N  I$H$ M$H$ I$I I H$ M$  iA  m$I4j I$Ir IIӽ񬪪 L۳r I$A$ II I$I$ I$I$sI I H$$I$  I Iꪪ mR7[ճr_~ M$mS4r~ I$I 0?* ֢ir0/- ېIr I $I$II$A$I$  I @ i  C$Mڳj}k4rФؘI ArRuA$ $Ϥ H$ϤA$$I $II rR׵A$A$I$I ϤI$I$Ϥ m4E$ (4I$ 'R1 -ڮm&R1 @&i$R1_U @&I'ѵ񛪪 &H&ѵ񓪪 &I$r  $i&1𤢪 H$$1H$I1A$I$1@A$1𤺯 I'I1 II1 I$I1 I$I$q $H$q I$I q $I q I$I$ѵ񓪪 M;!0ѵ񛪪 .(1N@@ NٖMQ ) I$I$rQ I$I4rQ @I6rQ* I IrQ H$$ӽФ I4H$r i$Ar H IӽФ H$  ӽФ I$I$r* H$rWUDm߳r `O>-q I $rQ $CҤ Q0& Iĉгr-I $s*I$I s**H$I$ԽeI $ԽjI$I s*H$$sI @ sI $1H$H1I 1H H 1II$s I$$s I&I$s M$I$rꪪ M-R$r vb'DL'rQpppp I $ I$$q IIQ0U )ֵir0 # mHrQ IM4rQ  HM$ӽ񬪪 I$H$ I$$񴪪 A$I$ I$M"rjcftQoؘHI$rH$I$r $I$rI$H$r H$rHI$rIHR1I$I$R1I$ $R1@$A$@$I$A$IA$ $H$r1IHrRw$ $rR}I  r1 4 vL'r1뾮 @[h$R1ʪ C'd$r C&m&1$Qo7S1/ +I$ $r1I$rReI @r1I$I$r1 $A$r1Hr1 $I$r2_I$$r1.R`d +  IH$s I $s mHs * II&s I M$q I$H$s iڠHs* IR4Es $I&s C88r h i4Q mh&qQ IArQU? Q* IhQr* Ihh۳ I Hs* $I$s*II $$sA A$s" I$ꪪ E m $H$r__ a$vB8rQ_| I$I p1 )&I$r0 iIrQ3 EI$Q $m8$rj]UA[tTRФ 6`;N8R1 E׶]R1}u [[k6ѵ񛪪 t'N1 II1 tiR1I$I$H$A$Ϥ I ϤI$ QRH$I ϤA$I A$A$H$A$H$IHI$r1I$H$I$I$I$H$I H$Hs1 $I$r1 I$IR1II$R1 II$R1I$I I$rRUUIH$rR $ rRA$$rRI$H$rR(ȀrФhr&a1-)+ I$ sIIs(I$ $sII$AA s$@$s( @ @$r I$I$S* HIr*@$ HI$  $I$@$ I$ IH$AsI$I$$I$s I$I$ꪪ mӦhS4rW^~ M&k;r0W^z H A0 * iѶI$r0 +- q$r I A$$I HI I I @@rtT[RФ< A$ϤII$ϤI$I$ϤI$$ϤI I$A$I  h&I$R1 ۶ ɒdR1 0I$R1 mۦH$R1_ h$M$R1WU hR$I$q E$I$ѵ񛪪 I$I$ѵ񓪪 I$ $q A$I$r MIr q$L1  $I 1 H$I$1 I$I$1 II1𤿯* ǎM1  I8iR1U ihӢR1 IĀmR1w IHR1W I$IbR1U_ Hr I$I ѵ񛪪 IH"q 1X51M``pp B   I$Q mI$p1 i$irQ= A$H$ӽФ Ir/  I$I S A$H$ӽ񬪪 I$I$S AI$ӽ𤪪 i&Ir*  rQ  A I$r I$r Ar H 򬪪 򴪪  򴪪 $򴪪  򴪪  򴪪 II   @$ 򴪪 IIs*  H$1I$I1I$A$1A$A1H$I$1 8r`x p:Kxr 'ҵ ImѶR1-I$I$I$I$ϤI$A$ϤA$I$ϤH$I ϤHH QRI$IrRUII$A$A$ϤI$A I$ & I$H$R1ꪪ I$H$R1 M$i$q $H$q iI$q ِl[dѵ񓪪 HIѵ񛪪I$H ѵ񛪪$I$rAI$r $$rA$rII$rH$  ѵ񛪪II$rI A$rH$I$rA$I$r ,1.r1Օ 1$d 3rQpp I$IrQ55 qr +  $$s A$ $sA$IsI$Hs( $Is**@ I$s II$s*I$I$s"IH$s (I$I$s I$s*@A s "I$ s *I H s(I$As* I&H r @.k5r0```` @$$p  A$0꺺 II$0  $I$p A$I$Q* I q1 mtڤQ+/ A$I$ $ $񴪪 $I񴪪 -ڢE6rjjjz|X1o<II$rH$Ir $I$r @@&R𤪪 @A$R𤪪 @Цi$R𤪪 i$I$R1_ H6H$r1~W H $R𤪪 H $R1U )4A$R1U m4m$R1U mP$M4R1U hѠ)$R1U $AR1U h&R [E$1 EѶh&1 E&$1 hi&1𤨪] m M$1UI$I𤪪U1qK/V1 = h4mR1U I$M&R1U $$R1U I$)$R1UI$ R1H$I I$I$R1A$I$R1 @ 1𰐐  R  A$L$ m'mdzz6#K6Zi$$ФUIc?ϤU mmēФU I$>ФU  HUФU m-rU $M$rU I1U 0 0 U mQФ*U DQerФ UrU m]븓U @$7U mmU l'U0m6<UDRu߳U0R$UD6dz𤠪U$eY;U 4r$4rФU $a'0U "A%0+ A I$Q0 A0I$r0 A2$c'r0jz 1<..' E$I$ѵ񛪪 A$I$q '1  $I 1𤪪 MI1*** ɖ`ɖlR1uA$I$R1A $R1A$ $R1 $R1I$ R1_I$I R1]A$H$R1H $R1HA$R1$A$R1I$I$R1 $I$R1I$I$R1H I$R1 M $R1*** -MR1Z i iR1ꪪW $r ڶR}  $R1? -$R1U M 6RI$IR1껪@$I$R1k $I$rP/R1oАvN&`1  I I 񴪪 hQ &rzmں9Ф^ `ۛ$U .$U 0r$NU mI$rU @rUMl$Ummi-ǓМUm$ēϤU m$<ФU 0mmy'ФUm.?ФU  Ig䓵ФU  ǓФUmmФU4mvǓU $%}瓵U жsqФU )nWrI$nU mrU DNēϤUFv$U0 l * I"I$I$A$ C:C0rjjjb< 1,,,I I$ ii$ $I$R1* km6R1*^ EѶm6R vk$RW $a6$q m4I&1 M I$1 IA$1 I$I$Q𤪪 I$A$1 I H$1 $I$1 I$ $1 A$@1 M$Eѵ񛪪 M$m 1 M&hS41𤪠 A$I$1𤪪W I$I 1𤪪} IִiѶ1* ? I؁R1U H$R1 { I$m$R1"  HI$R1 6mR1"~ Hh$R1% I$MR1ꪪ ME"R1 IĶR1]_ %P$1nPPP JdI0Ϥ A$I0** '4$0h I?QФW I^rU Ju璵U i-rUD-r U 4Mm$r U mm6&& mc1 HHR𤪪  rP%`1Pظ INU IoU IrUHb(moT InU IIoU IrU I$$ rU րrU C& rU I8AQU I)1U I$[+@1UI$0nUI$ItMUI$I$-UI$I$ I$I$Ϥ,U Ir-+ 3U qBUIҶ&HU I2 hRNꀀ)!1. II$AI R1ꪪI$I$R1 R18< i iR I$A$ # :R@@`,-1Ф IR1:AH$R1 $I$R1 I I$R MI$ѵ񛪪 H$I&ѵ񛪪 I$H$1 M1 I4iѵ񓪪 ɖlٶ R1UU5Rbp2I$H$R1I$R1A$I$R1ݪ@$R1}A$I R1$I$R1$H$R1٪H$H R1WAH$R1ݪ N'C#R1_ H& Цѵ񛪪 e 1Ф mIq1 I H$q1 <1/Qjhhh ɖcn1 $I$r $A$r I$I1 #%R1MXظ ɟ6rUݶ6U S@U IU NbUI IU ӮU ߶AU _$IaUItk!@U imm1U I$a1UNRI1Uv)HU IbU SU mZФU S@r_I^&U qB@U Ib@rU qҏrU* IR6 U1)`1.  A$ $ r1*I$I R1湫X*X1< ؉ӳR I I$ӽ 5`=91  I I$ѵ񛪪 Nb۶m1 M@&1ߪ IPm1_꺪 I$i$1I$I$1H$A$R1*..IR1I$H$R1II$R1ݪI$ R1A$A$R1*I I R1 (I$A$R1II$ϤIH R1 I$AR1 C; R1_蠪 N8 R1W| M$M&1 qI$1𤿪 &a 1  HM$R1mZ'rФ*: I0r $I461hjz=.B1 ۆk6R1 (I$R1 6$R1 P%R1-Pؘ I$8 1U IR'$)HQnU I$$9QnU I$#)QnU I$m QnU I$QnU I( rnU I$&hrnU I4rU IUI$) UIҶ&UIRIUIҺ$U I'hnUI$}H-UI$=MMU I6rU ӖUIҮ&AU~Җ&AU NRU N:rW~1!RNA$IϤI$HϤ H$H$R1ZXRNظ i-ZlQ I$I$0 &i.10ϤjzΔ 1 iiR1*A$I R1 $H$R1(A$IR1WH$I$R1WI$ $R1W )"Rj I6m1( I$A1 I$I$1 I$A 1 I$ѵ񓪪 II$R1U I$ $R1~ I$ R1_ I $R1 I$I$R1 I$I0R1i H$I$R1ڮ I$@ R1߮ R1m/'I$ $H$ $Ϥ [k1//7/ M$Is  mӦ $z 2k:r0`pxx Ikk1𤧦// ]bR1I$I$I I$Ϥ r1ޞ.. I4m[lR I$m rU I4rU  M$mڢrU I8HLrU IڦmrU( I6mrU* I℠MrU I& rU c$7RU IҶ1U~B(AWwBФU ӶrU NnArU ɓ$ QU I QU qI$ rФկ IRU IC rdKpUImAU : rФ~耀o`c1 I$I$rI$I$r $Ir &j:1%%%% t$:QXXP` II$rQ55 II$r I`lr1PXXX@$ $r 1555I$ 1XXXI$IR1  $$r1I $rI$H r $I$rI$I$rI$I$r@ @r$I$rI$H$rI$$ѵ񓪪I$I$r5R&1Z $=.I1z Ii1* IB& 1U IҢh 1 H$-1_ Mi"1ת O$1WV ҇I$1n(8 0!Q iҶr [36``x ɖlN iڶmR )1A $rpH1N<<,$ r 񴪪 $A$s H I񴪪 $I$񴪪 AS I4s mQ$I$r_ hۤH$rVU FL&I8Q I$rQ H$q1 A4I$q1 I$ $r0 I AҶrQU I$qrQU_ J"HQ^ I$)0ꠠ]冷  I I$I$I$I I$I$1/51hxxx'`R  $I$I$I @$ R1bw1<<$$ !۶Iҳr i$I آ5`pII1 I$ $R1HI$R1ꮾ @$I$R1 hR$M$R1 $I$q H$I$ѵ񓪪 &I[$1 4HԤ1𤪪 $I6$1 &AI$2ֶI1 жI$1 ] $AI$1 öI$1 -1ꪧI$ $r$I R1II$R1I$I R1@ R1H $R1 6B#C$R1~ II$q ؋f1<44$ Ib`rQ I$ Q ؎rh``` p1  $I$11p I &ѵ񓪪 i$H$ѵ񓪪 jrpv144$, Iir H$I$񴪪 $I$I$AI$I$I$I$񴪪I$I$I$Is**A$I$sA I$1II$1H$$1I$I 1II$s $A$I$I$HIs**I$ $ $I$񴪪 M&A$rz H$H$ӽФ IIr 1`&pR H$A$ϤI$I$ A hx1<4$$ iWtmur H I$򴪪@/B#````JA1  I I R1Uu H$I$r m"m&R M R1uU. $ $1UU=  I$H$1U/  I$I1 H$H$RU I $RUI $R_I$IRUV\sI$A Ϥ $I$ϤI$IrR I$ I$ϤA$I ϤI I$Ϥ IR4M$R1ꨪ M6k3q  $@1 II$1𤪫 01 p1<44 ِI$rQ= aI$Q  #1rϤhz ! 1 -$A q I$I$q $I$q bx1n Iۮ횢q1 H$rQ I$IrQ I ZQ﫪 $IrU] I$I$r  r I&$r M$I I$II$ $  I$I$I $ h3,krzzzz H$HQ IMr0յ5 i隢r-H $ $I$I A$ H$ 1"5``` R  $ $ϤA$IϤI$A$Ϥ`p1444$ i$AQ{ M$ 6r0W^~1@=``m1N   ۓI$ Ϥ@$Ϥ A$R1踸I$I rH$I$ 4 4R1eY A$I I$I I$H$ѵ񛪪 I$I$q Aq A ѵ񓪪 )&i4q Pi4ѵ񛪪 H$ $R1i I$I$R1 A$ $R1ꪻ M$M$R1 1R1I ϤH I$ϤI$HϤ sJdR%%% $I$s  c'$r`zz^ C'c'Q`hhh .q1)  ivmvR1++I$I$Ϥ$IrR_ hKR%%%% M$I$s  I$I$1$ 1H  1I A$1I$I$ԽUUH$HԽWU $I$s (H$$s(A$I$1A$ $sA$I sA$$s E$mѶ I$I r "ȀH1jꨠ $IIr0 AM$rQ** II$r $I$r mAꪮ A$   [55R`pJ 1 I$A$ѵ񛪪I$H ѵ񛪪IIr sK1%%%% &9Qzzzx i$irQ $8riy ) Ir1VVWVH$I$rI$I$1?I$H$1PX\I$I$r $ $rI$rII$rI$A$rIIrII$r$H$rI$IrI A$rHIr Ir h&h&2 iI1 Iiv1* ih۶ѵ񓪪 IB:Mq N$v;1 II0 {2$R251^ZZzH$N$N444$ Ar1HӽѤH&m$r` N ?1𤿿/ II$1I Ir XPQo&''' I&Ir I& $񴪪 E$m4s @ i$r E$I$r_ m$Ir(_] H$I&rQ $m&q1 I$$q1 A4iq1 I$ArQ* i$ rQ  IĆmRU  I$I4rU IIru I00HғQ~ꈠ m6kr~zpb'pB'_^^\)`0 I$I$ $H$IA$.``pxtP@R $I$ $I$R1H$ HrФ7%% mñ񴪪 I$A$ ,1`pHDH2I$I R1I$I$R1 M$A$R1z^_ @I$q M$A$1 h$I$1$H$rn)1  q I$I H$I1 I Iqq I$ $qq qq I I$1I I$r $I rI r@$I$rA$H$r $I$r ۲-ز$ѵ񓪪 iH$q x Q7''/ I$ $r? MҤAR4rZ 5xhx`tDA1 mm[R1w N$0R1_ I$AR1w J SQФ&'' Mr A$I$񴪪I$H$sH$I$sH$Hs*A$I$sA$As*II$s*I$$sI I$1I H$1I$@$1I$A$1I$H$sI$I$ $H$I$Is*I$ $s $H$ h&MҤrxz^^ I $𤪪 Ar  -``p` @RI$I$H$ $R1ꪪ $H$ 0ʠ rФ6''% [-Amr I$I > 1R/zzxIdФ A$I$RUU i4m$1UU I$H$1WU h۶$1 - mdzr I $1 I @$Խ I$I$Խ I$I$Խ $ $r]I$ rRAII$I I I$rRWIIA $$ϤI$H$ϤI$A$Ϥ h4@ R1~ m&X;,1 H$I$1  $I 1𤪯 HLM,.&' )ТEQ I$I q1 0#11`` IPH1 I$I r I$M$  R1U} ˇP Q&'/ mJR MM r NL r* I4M  M$A$I I$H$I$I H$ $I$ $II$H$ $ $I$A  I$H hӶm&Qzz M4I$Q Ir0--  rII III$ $I$I  -Ф```pPRI$ $ϤHI$H$I$Ϥ HOʴOR&.'/ A$)6r몪 u";v1 >j%qnzzzx ٔAِm1M VtYR1I$ $ϤH ϤI$Ar1~H$A rII$r1 0c36C#R1 I$H R1 I$I$R1 I$I$R1꺿 m6h۶R1w[ I$H q $q   1  I1ꪪ $I$ѵ񓪪  R1 I$$R1 tb$R1*!@rH$  ϤI$H$ϤI $Ϥ ɘɐs2  m$M$rz 'N8rQp|| C$'0 1  R1*++I $Ϥ $I$Ϥ Hthl1%---I$Is I I$1A$I$1I$H$1A$$sH$Hs*A$H$s(I$I sA$Is( $I$1A$H$sH$I$sI$A$s $s(  H4H$s i$m[$rz h$M&rQ I$ $q1 Q  I$IS I&@ӽ I I P#591`` MF R𤫫I$ $rA$IrI$H r 4I/  m62rzzh I$I$rQWWT -" $r1 !!r I rI$I$r1 $AC;1\\\\ EI$1  XI1 I$1 I$1 A$I$1ꪪ @$I$1꺺 $I 1ꪪ $1 H$I$1 H$I$1 I4I$1 h$M41ꪪ $`$0~ ɚtM2 I$Aѵ񛪪 $Ir $A r M5mRѵ񓪪 $v'1 3( 1zjI$I$1-6'''P-Pr2ӽѤh$M$Rn``` N gm1/U )6E$r m& $r T1rN/--- &I$s II$r:/l 5𤠠p 4l$rN_ 4rI$Q-U I$Q U@I$1-U I$1-U DrI$1n*U uΓ$Qo*U 0mN$rnU 6Lm$rU Am$r UmԽIھ#H1WD1U (lW 'I0nWPI!5  m۶ibrH$I$s Is1ӽФzzJ VAԶII$I$QRA$HR}H$I$r1 r/--- 1سI$>r^/-$r``x iV R H$ $R1UUI$R1UU H$I$R1WU h"M$1 H$ $1𤪪$1𤪪W$I1Мڶ햴𤪪*U iE1"* A4i$2 $$1 $1𤪪 I$1𤪪 $I$1𤮪 H$I$1񤪪 mm$1( ARh1 HѴ(1 ) A$1R.H$I1 )A q H'L$q A$ $1 5p r'--  IIr* I$ 1Ф`xx vimr𤩩I$@$r1 $R1 M R1  E Tr%%%  I úuk:rz~ @q$1_WFƓ UqG1*= 0iKIRA A$ӽ v˂ӽrt `$R.U ֢[61} ֶij1 @a$1U6um?] 0mm'U m$?ФUm-礓ФU %ܓU4mФ mnMr1+ I$I$rQ  r 1Фxxxz FHRI$@$ϤI$I$ϤIIR1  6 rФ%%%  I I I$I  rФ```p PR I$$R1jj I $ @ I ѵ񛪪 I$H$1 mI1 @$@$1 I$$1 IH1  A$ԽI$A$rquT hm$RzJ__ EӴm$R1j I$Mr1I$ $R1 $ $R1 m&I$R1  mHr1} i$MR1  Ц@$r1WAq2 k6XR1||p mҤM 1 AS$A$1IIM'--- AiQ+ I MQ0* #9 5rzzxx!GnD 1Ф I$IR1慠 I$A R1 II4R1 E r--  I$II$A$J:1z I8?ФWm,?Um,ǓU H$ēUmm8U A,'U m%$U m-$Umm7UmmU m%$U FI$rMW ƖI$NU Pnɟ$rnUm$U -  DJ%R1  H$I I$ -P1`xxx IPAR*I$A$AI ϤH$I$R1"NNr---  I$I$몫 I$E6r~ R%X5rnxxxx m6A iڤѵ񓪪 R1I $R1 I4m$R A1 I$r1 EӶm$R] A$I$r R1u H$ $R1U $A$R1U @$I$R1U H R1_~~U I$H$1 A$1" H$1 II1" a$I$R1* hIR1 HIII Ϥ  Ϥ mh$ $ 1 )- @"M$Q~ M$I4r0 C2pB;0` im۵1 6H4R1"H$H$ I$ itMR--I$I sI$1 h۶m&rz6\'1W$imy?UF6$Um%@䓵WAߓU@m۳Uv<U$m$U0QU0i4ۓU0mmk;UȮ<U $ql]7rW ͟QU D7rϤ + A1R /- $r H H$?6# :``x YnmR𤫪I I$r $IrI I r NlI1-- hӮڶhj q$`$rQ\\pp h;m&1x 関mѵ񛪪I I$r $ R1 M$H$1\\\\ II$qq I$H$1뫫 I$H$1 A$I$1 $I$1 A$H$1 @$I$1 @$I$1 $ $1 H A$1 $ $1 [61񤪪 M$M&1𤪪_qrs1  II&ѵ񓪪 i4@4R𤪪A$I$r MҦm6r N LL14 ښ$1*UI$I$Q-%%--ӽѤ ӽѤH$L$rNhxxxvn Ii۠RPB1 (>-1@ o---- -Z$I4R I r#=Rƒnppx I  1] I$AR1U Ib$I1U I! 1U I6m1ժ*  qB&Ir/ m6hR IIR41 IM61  IҦE1 Ii 1%UI$ $R}I I$R_ vB:&LڳRU r2'pr\\ AӽФ+ NФ+- $Ms $ 8 :sc,R@@ & Ф---) I$H$ I$I$rФhpX IIR1 $ R1I$A$R1A$I$R1H$@$R1"A$IR1I$r1W HR1" H$I  AE$R1 'Lb'q H$H1_ iW 1 ۱IR iR4Iq $;2!1@dJr  II$񴪪 I$A s أ%`.rxxXX $AR1H$I$Ϥ@$ $Ϥ -RФ@) dJФ---)I$I  I$ $ bb rxxx i$m6ҵ $I$r 6!q &)1@ I%RNU  IoU IrU IRUqܶ IФUO޶ۈIФU N^U޷(U߳(AU uӲ)U vښ&@U I4rϤU I$rU N\ U e[`yQ_ I$I$ $I&R1 A$I&R1ʪ [[m.Rh vqWr1 -- p$I8rQ|__ H$A H$A0 )mr 1$q8R1+I I$ 6lc" i ِ1)+++A$H$1I$I$s %Ɠ1xxxI$I H$ $H$R1 I$H$Ϥ $IR1H$I$R1 I$A R1I$  rI $rI I$rI A$ѵ񛪪I rII$ѵ񛪪 ]&m6ѵ񓪪 h$A$1 I8101jj I!p )  H I$ $I$s X,epxxX@I$rI$ r $r kҵ1h. N1----I H$ꂨ m6k6QXh`` P%ehE0xX\X ivIѵ񓪪I$ $rI$H$rj6h6|Wu rФ+ IҶ1U Iڶ1U I$1U Ib;$ 1U Iڶ1U IҶ[1U CU ӶU IФU IBڒ@rФU I'rUzI$z NU I4U IڛU I$r  _ZI$@ r @01r 11𤠀hiM$I$-@I$I$r ----IӽФM$AӽФI$I$Q.xxxxA𤹻I @ 1I$Ar (1N@@ Nr I I ӽ𤪪 A$Ir2>?> X XDnX i$ q I$Iq ҢHڶѵ񓪪 I$IqI$ $rA$A$ѵ񓪪I$ $rI$I$rI$ $rH$ $r $ $rAI$rI$H$rI$I$rj/1JB(1N@ dJФ-  $I$񴪪 M (&r Z&fjRn؜I$I rI$I r۲=1Мj  I$싀jj $I$rN H$I$1(DIjri kf{1ؘ$I$rA$I$rA$I$r ")1N@@@` BiQQn IHӽФ II&𤪪 I$ $rQI$@$r0 iiqQ** 6I$rQ ) r +   II   II򬪪 H I$I$A cc'j Fb$rФXؘ H&E$ѵ񛪪 I$A$q vl&Iѵ񛪪*.(1@ `$P I$I  MҤm;jjfb4RؘI $r@$rH$I$r,.-1@@n ))  I$I 򴪪 M6IS$r bZr\ H$R1યII$1-UUH$I$1UUUI$A$1*UI $sR?UUU $H$r1IA$II$II$q2I$H$I$ $I $ $ $ E$I$R1ꊂ E$M$R1 (*(1n@ )JpBrϤ-)  I$Ir* 1#6b' ؇]j rФؘA$I$ϤH IQRH I Ϥ*.(RФ@@@@p  I   X$c1rA$I$Ϥ I I $I R1 ")1@@   --) r I$A$ $I1 I$I$1 $A$ԽI$Hs I$A sI$H$@ AI$H$@$H$I$$ 4ZF%rФؘI I Ϥ C8R1 H$@61 .(N@@@  )r--)  Mir aB6b۳b$^b$rؘϤH$I$ϤI Ϥ .)R@@ft- IH$ #c'jj %F`$rؘA H$I I$$I$I$A$$I I$I ϤII ϤI$I$Ϥ m6 $ @]6ѵ񓪪 ڈQv1 v$Nq iIR1U IiR1H$  (1N@ r  I$I$񴪪 $i"rj bFj QoؘI$Ir1IH$ϤArRWɂ. R@@@p ) A I c;6;jj `` Rؘ M$m6R1^^~ i$MR$r  ҵ ( 1@@tNpФ  I 񴪪 HI 񴪪 I$AH$ $I$I$A I$H I I$ $H$ $H$II$@ Nb3m۳ Юmr c;4b;r FQФ I H$R1 )@4R1 i I&R1o_#1@@ mviaQ )) A H$q1 I$Iq1* IMQ H H$R1 IIR1 M$M$ ،-۲) IIr--- $H1 I$I$skf[41XXXII$ϤI$ Ϥ  ϤHIϤIIϤI$@$r1 I$I$A$I$r $Ir r$r @4E$ѵ񛪪 h6]&q I$I$1 *!"!1Фjjbb'N )  I$H$s H$A$  ~`4rxAI rI$@rHIr<Ӣ!1) BQ----IIs(  @6k6Qxh ڇu%G1Ϥ؜ miqI$I$R1IH$r1 r~|~ @I@1) I H񬪪 @I񬪪 񬪪 @񬪪 IA 񬪪 H񬪪 H񬪪 I$I$ @ӶE[򴪪 0ppxxل ڔ$0Ϥ+**/  jQ II$r M$s1NXظ8 H1% A$r @B8 ;ѵ񓪪Ҍ-"--@@@ ɐ On---- MҢk۶r I$&rUz^I$I$1-ؘ 1-% 66A1$I$r-R41N``` prФ $ r+ I$Ir?Zn I&Iq I$I6ѵ񛪪I$A rI$H$rI@$rI$A$rA$Ir I rI$I$rI$H$r $$rI$I$rHI$rI$A$r#X1B,BRbbb)N`N I$I  :4m6rjjj|@|1(II$R1I$ $r1 P$R$QФzz`I$I$Ϝ ```I$I$r I$I$r1* ֶ[rojj KMd1 Hf$1 $I$1TH1# -#91N`pp   r I$I$s s I$ r_ MҤmQ I$I$@$rQ? II$rQ +  $I$r*  Aӽ  򬪪 $a4$򬪪 $Lڔ$r   m۶m[4js@_4TRФ XmI$ I$IR1շ IIR1",RФ`)MdN1-+ I$ s* ۲--r`k J1<<I$$ѵ񛪪@$I rII$R1* RФ` 1ajR--) I$ $E&s KR𤜜 I8R1*/IA$r1 @$R1YI$I$q2$A$ I$A$I$I$I$$ $I$r1$I$r1@$ rRU I$I m$I$R1 H$H$q "(1``` d  M& $ c3Fb;rjE_{RФI$ $ϤII$ϤII$QR(RФ``ppiON I$I$ m6h6rjlD[tASRФ<IIϤ I$@$ I$@R1"-1QФ``pp tN  I$I6r iIr .. I$Is( I$Is(* I$s (@$I$s*I$IsI$I$H$I$I$ IAA H$ $ 0Fb$jjjjc| RФ<IH$Ϥ E$m$ L$N$1 2,ز-@`pPP Ϥ  M$H$ ò%[%rjk0lRФAI$Ϥ$A$ϤI H$Ϥ ,0R```p) `N1---- H$$ 4$rjj|R8< I$r1 Hi&R1چ ]$R1_ahR1_ $6$R1w C۶I$R1~ жI$R1 жI$R1WU H?1 ۸11𤠠01𤪪 R1 $I$R1*  R1 m4M6"-"&1o``px rФ  I$I$񴪪 M;c0rjjjL1N<<I$H$r1I$H$I$H$Ϥ"-R``p1eOd H $ [%[2,rjbE[sPRФ pB;mR1{ N\'6ѵ񛪪 I$I$1 "-"51n``pP   IA$񴪪 $H 񴪪  I I  $I$II$I$I$I A$I$I I$I I$H$I$A$ I$Hs* I4 4rjjuD_RФ<< IAҴR1{ i I4q I$Iq  ,Z1Ф`` ibnQ A IrQ I iۢR Lr1\ IIR1 I I$R1/* I$M  1X 4R1* 閶ir mIr m#c s1 AϤA $ϤI$A ϤH$@ ϤIA$ϤIϤI$I Ϥ $I R1I$HrH H$rII$rII$r )(*q m $M&1 I4I1>)/1hrx` 1--) H$$s* vHvb3jjrܜA$I$ѵ񛪪A$H$rA I r"#01 )R--) H$I$s K%[erj b$W % QϤܜ IdI$1 1R1H  111 t d Q @H񬪪 H$񬪪 񬪪 I 񬪪 $ 񬪪 @  񬪪  񬪪 @񬪪  I$I$ =xxxXXIWQ錄??- iPr ֮݊5rjjh|@1N8<<I$H$rI I$r mh4r#1R91-``pp 9 q---- nr#! iR@@@@IdI-< mmѶ>/H $r $A$r%R%1Np d Ir  I&Ir $C&r?>_[ nII$rA$I$ѵ񛪪 $I$r @i&R𤪪 MI$R𤪪A$I$R𤪪 hA1_ (ڦh$R𤪪 &m$1" hҦIR𤪪 &@'1Y E4R𤪪H$H$rHIrR%B%1ES_1Ғ 1nR--) $$ [3439rjbrr, R>6&&I$Ϥ R1b @$H$1pXXx IAJ1[I @I++ IA$r -cC>R@@`` TL1<44$ HI$1 I$I$1꿿 I$I$1P%P%-А tJ  I$I$ӽ򬪪 mѦm&ӽ𤪪 $R'rZ ĎI$rU`I$rUH$I$1nU$I$QnU ݔI!IrϤ% id Q* $&AR\ 8IBR  imڶ򬪪 X&rbjxz <1Ф444 H R1 I$HR1 H$H$Ϥ-RА ٖ r)) I$ 4E6rh``j@RМ.IA$R1^I$I$R1jI$ $R1#-RА 6!r) $A$ mh[,rj`_4A$ie2Фom-?Umey瓵ФUm-ФU$I&s+ $i$I$I m.m6rjjh5LCRФ46&&I $Ϥ 'Fb'R1j H$N$r DC+1PА)rg R--) H$H m[m&rjbjj URФ66&I$I$ϤI$I ϤI $ϤP/RА )a)1  vI  rjjjj 1<,$ $IR1z i[@R1 I$I$ $I$1 -Zm$1? I$A$1 mm$1 I621 ):1𤪪W(ҦM1𤪪UIv1𤫪 i$1 I$I ѵ񛪪 ѵ񓪪 mӢE۶1ꪪ B$P%nА p P  I$ $񴪪 ڂ5[5Q``` 1o66&&$A R1I$A$H$I @@ RФP)&WrR-)) @$I 2[9rbbzz HRФ667&I$A$R1 pB;$Iѵ񛪪 f$tB81 C%[%-pJrϤ -Fh۳rmv'r @'^  Iܘ$rUe$rU Iu$ϤU mm$ФU }$U I7$ФU Iv$U I䖸+ úmr I$I jjj SKR44$ H$H$R1~~z HI4q I I$q #9R51А0Ii 1+  I Ir I)4rꪢ Itmr1IH$I$I$rRg-H$A R1 ۿr1߿ ۡmӓr A$@r 4Hf$r{_%eO`KR((,I$$ $I$ϤI$A$Ϥ $I$IA I I r1II$R1I$A R1W I $ѵ񛪪 m 4r mE$1 AI$1 M4m&q H4I1 Nq[/-1Ф𐐐 qwQvr--)@I$s** Z4m5r`j`< RФI$IrII$rI$H$r=P1Ф0 f ir- - H$I s m6m6rhh` HQФ I$ $0 vI1 $$R1 Ԑ 10000 1R  񬪪 $@$rj H(:^ $ФU $rU $Iu$ФU $i$ФU I$ϤU 4iO$rU @R$U&O$rU 9r---- ))r E5m6Rjjj 1n<..I IrI$IrI $rP%@$1NPP ! ! 1  ۓQ )) m6mS4R@@@`NΖ1n&IJ 1 I$ $rI r P&` 1N I`H  I&I"ӽ񬪪 2261``pK9B.I$@$rIѵ񛪪A IrX%`1Xظ I$) NU IoU IRoUI(oU IoU IboU I>QꀀH1. HI$rA$ $rR%R"R C8Te1 I)rA$A  >6# :R`hhxHBR$Ir1 5kR1jjMҦRV @h$Q 11R  H@$򬪪 ` 1' II$1* I$Aq I$ $ѵ񓪪z$H$  @@ 1  I$I$ӽ򬪪 4``  I$I$R1 mR1] H'C;1 I$A$Q5?&@4AqR * -ir ? I$ I$I j Llжaس( I$H AI$ $H H6I1W A$ R1d $P RФ88< iiۢrIH$ ò5.rbjrz7JRФ  Ϥ $H Ϥ $I$ϤP,b R mir $I [-:rjjhxvKKR& IH6R1 $H$ѵ񓪪 qP5P 1Pи(s% UӶ$'U IBФU wʍФU wҚUݲ$HrФu I/rФUz %$R   $R1 r1 Ir1 ey1Ф< iir)A "Z#ԳRbjzz7BRФH$H$QR A ϤI$ Ϥҫ RФ<< Iۢi۵rH$ $ R`RФI$I  A$I$ IH P )RФ8< )r $ $r I$H$Q~KJr' I r1, IIrR.I IrR "H$I$rR:I$IrRWH$I$r1]I$Ir1ݿb,r*: ÉسrI$@$ 4@5R`` P-`RHI$Ϥ Xh5R1zxzz I$H$r xP\1Ф i)r)I  c;P36Rh`x` . RIAϤA I QRA$I$ϤP P RФؘ 11ғR Iжm ¨c6`` Hɖl1ֶI$1 H$I$R1U $I$ @%h'1(I$qI roUI$$ UI$샍rUI$I&NwI$I$-UI$I 1MUI$I",qNU  1  I$I$ѵ񛪪 @1 I$I$1 R%p$N< ND1  $I$񴪪 @4@4``@C1oII R1 I$r1I AϤP}RФ mnr-H$A @-X5Q``p ` BRI$ $R1 I"A N$pB:ѵ񓪪 Z%`%1-ܜ! 1Ϥ qM$rQ + .)1jz @1 IA$q I$ $q I$I$q I I$r I$ $q Hq I$1 XR/ I rI$I$񴪪 ۲5[:rhjjxODJR&&/ vĴC R1 II q I$I q SfkR𤚾>. v r I$ $s  i6m"h OsQvH$I$QRI$ rR.+$I$s1 c⍾r1??&& I&qbسr I Ir￾ E661 J1Ф A&I$R1* h" $r1I$IϤ@X RPظ8%%HU O"%hU m{&տ Od IUIҶ)HФU϶ФU ~6 ФU .!1N H$I$1 Imq II$ѵ񓪪B+1Ф<4 i۶rI$H$ #=[9R`x` ?1Ф  H$rI$Ir $ rP`R i-r))I$A s" X6rbxxx 6-B1Ф Hh$0 11 Iiѵ񛪪 @PR>>> iIr 񬪪 ؊[5R``` <)RФ覦 I$I$1ߺ I$I$1 IA$1ꮮ II$1 I$H$1 I$I$1 i6mS41ߪr'J$M J Ϥ-- $I$ /51``p1B1A$ $r 4Ir I$I$1X&`&-И 1Mm0 !i rQ *51```p 1nII$rH$I$rIH$rpJ1N4$ )֭]nQ I$$ӽ񬪪  1```x! o--H I1UWppI$I$R1^I$R1+h){1444( !@!ir A$I$񴪪 $H$񴪪 I$ 񴪪 I$$񴪪 I$I 񴪪͐ -```! A1 I I$R1廒I$ $R1R"=#R \6fcP1666& rII$1?8`R I$Iq2I$I Ϥ H$I$R1꺮 HH1<<44  ir I@ӽ 15pppp JI1  I I$R1w][ I$I R1 I I$ѵ񓪪H$H<<44 PR  I$I$ӽ򬪪 1P9rФ`` CIn  II$ѵ񛪪 II$R1 M&HӶR1~ I$@ ѵ񓪪I$I$q1A$I$qQ* I$I$Q * r I$I Is* A$I$s" I $I$s*  $A$q I$IQT< II$R1jvr +r66& ہI$  X5X-1``B R A$IϤH I$r1p,r666& ۆm۳I$I$ ;.X321h AR m6mR$R1Zjj I$H$q I$I$q `zRϤ<66& ٖmٰ$r+ AI$I$I$ H $ H$I& ( mr 1r``` A1  A$I$Q1 I r1? IIR1j {r666 6i1hr+ $I$5Z91```pRФ  $ $ϤϤ$IϤb*xr𤖶6 ۶۳sI $c?6Rxxxx'ppRФ IIϤ I I$q2 I$I h{r66 A6A&r @$I$R_ ۬9Ւ1p@ `PRϤ   )$i$r1 IIrR/ $A$rR(/IH rRI$I$rR^UI$I$r1I$r1p,ǺRФ<<$$ 1ڳr+@$I$/R1`hxxIt R @I$rR]_ 9h&R1|||\ IIҵsRФ4<4& ɖllr$A$Z6`pRФ A$ $QR I$I Ϥ詚ppR<44$ ֭]-r H A .,1Ф` K!J1  $H$1 I$H$q H$I$ѵ񛪪 x$H1o<464 )iӽ𤪪  $I$r__ ؊m&r0~:k$0xiiQյ/ I)PrQ5  15rФ` KI1n I$I$ѵ񓪪 I$$qq A$I$qq H$HN<44$ !Q  IH$񴪪-#ȓ````!II2 H$ R1I$I$q2H$I$hgTr& )]۵rI$I  .5``!IIR I$IR1A$I$ I$I hH1N )C0  I$rQ =5 ,-5r``zn1  I$M6R1 I@$R1 HI R1u @$I$R1} R1 I$I$ I$I$q hHQФ66&& ɐIlr H$ S6Rx'pJ R  m5hSR1 $Iq I$I$ M$K7/ ɖlٖa) A$I 1 mS4m6rh NarQ_W_~IIϤI A rRH$@ R]_Psz|r1776% &i뫫* I$Mr$c6`'bI1Ф  )$&R1 AH$R1 I$I$R1'tr666 1ósH I$H$I$I$I$ H$m ii$ *Ф` m1 aI$q Ihr1UUUR Ii$ѵ񛪪r|RФ6&66 ۳r+ H H$1`xxxp1Ф I$I rI $rI$A$rhHRФ6666 1lr)* I$  1` 1𤧥 t::1~Omt𤪫 &`11 hHQФ.... I Ir $@  /1` !1/ I$$1 A A$1 $I$1ꫪ H$I$1뺮 @$I1 I$ 1  @41H$J$싼 pϤ $IҪ`` A1 II rI$IrI$I rhH1n0 + Ilɖtr0--,1```p! 1 I$I$r $I$rI$$r HtKT1N&.&/ ;lr II $ӽ񬪪1Z1r``` `1oA$I R1 rA$$rHtKTR&&'' ir H$I񴪪 I$ $񴪪 I I$񴪪 $Is  i$i$sڀ`@(8 IӽoI$I$1 $H$R1-#5RPPPP ϐrN///- !۱ۓ  $I$ ؂5`xx `HRI I$@ Ϥ LHR1 H1o$.  Ir  I 5У%r`` 1 I$I$R1 A$I I$I$ѵ񛪪HDI1 6667 EPZr I$I$ӽ򬪪 >`&r```h AI1N I$I$1* $ R1i_ H$I$R1j @$Aq H$H r1 I$I$qQ I$I$ ؒQ Ir I$a r IH$r*I$I$1A $ $H$r@@ I$I$R1zfd t Pr7'%%  r I $X51xxxxP P@RH$$ϤI q2IArR ȆS&Kr&' I$II$I$PP91```p f R H$I$R1 I$M$R1V_vZ I$Iq 0lKQ&&'' )r I"M4 MQ$hr A$Mr H$i$r_ E4i$r[W "5R#2hxzz IT 1 I$I$Q1 AIr1#/I$H s1 s r7''% I$I$I$ PP퓵````pAtRФI $Ϥ $AϤ HP: r6''' ۳I$ $11hxxxpPRФI$ QR I$H I$I xsHwR&''' i$Iӽ𤪪 I$Ir+6C91``` Yr1 $I$r1 i$Ar1 ˶ ˖lRQ*)UA$A$R1I$H @$I$rR~]wI Hr1 0$O7'' I$I$񴪪II 6b/6hhxxITRФI$I$ hm6ѵ񛪪 ItMR1=xLprФ6''% I$M$@$I$ 5P```PRAA ϤI$I$ϤH$ P Pr&&&' :,C;r뫫 @ 9#&rФ```` II1o I$I$1 I Iqq I$ qqHID1N&&'' A r ؠC'rQp\H#'$Qxz^WI$0- Inir0- IIr 9&r```x IIN qq I$I qq I$A$qq HޤOD1N&&'' Iir I M$+ *+ 4 鐳I$I$ӽR@@@I$A$R1ꪀI$IR1 R1 HTJR&7'% 1۶۳s H M$ -Ф``h@dRH H$r1 $$I$ xHL1o&/ I$IR$q1 H$I$Q0?_@%r$1hxJN1hR@ I$A$R1 I$HR1vW I$I$R1]~w I @$ I$I$R1} I$I$ѵ񛪪 HtMPr75%% itIѴr*I$I s 9=ҳRxxxxd R  $H;I8R1 @ I4i&R1ɘ;w1%%-A$I$sI$I 1 ;[;6rhxxX fmlR1I$ q2H I$rRIIӽR@ JxJL1,/ m$ sI I$s/,```mV RФ IH R1ꯪ I$H$R1 M$ &R1 0%OʴRϤ&''/  Ir  $򴪪 I$m$ $I$ I$ $򴪪 M H4r~ 5 3:r`xx  Pn Iıq 1iѵ񛪪A$I$r 0PȠ rФ7''- MI$I$A -Ϥ``01II$rA$I$r rHtKEsr&''/ I$I$I$I$ 05``x P1Ф :0M$H&Qo ݐivTPRФ''%-   H 򬪪 19Ф`px P I$I$1 H$1 I$1 A$I$1 A I 1 H$I$1ꪮ @4@51~~H$I$Ϥ 46&' tIDI0 I$I0 1r```pP1I$I r @rI I$rHLʸN, I&& 0𤯫 NTr---/ #1#5r```APH1I H$r I$r m"A4r Lɔ rn/--- I4AҦr II&r 5 񒵯xxxx PjRФI$ $r1R1I$A$R1@ Sr%--- IA$s $I$񴪪=:x m$'rW@RM$WUF$ӽoU"AI$ (~W $!`$ $1VUU$Ir1B#5B4Rx ɔOR  񴪪A$ $ 5Фxxxx vhRФH$IϤI$@$Ϥ I$q2k T rФ%%%- -"Zӽ I$@ X%j"&xxxx @ 1 A$H$ I$ $ѵ񓪪 I$I$ѵ񓪪IDIdr-777?   A$ H R%Z&rnhx I$IRФ I$Iѵ񛪪 II$R1 UU H$I$R1_UU $1 = H$Q I$I$Qꨠ I$H$ I$I$q1 A $Q H$I r I$i$+++I$A$Խ $H$I$ R`pH$I$rR 6 1#! $I* I$Is* P#5b6xxxx APiRHH$QRIIQRI$I$ Lɐ//-  II$I$IX"5``p iR I$I$R1 A$R1k I$I ѵ񓪪 P5Qn///- I$I$r I$I$ӽ񤪪 ҆a961x m'r_ 0o'rU iQU&I$ z_ ہm1Ф I$@$Q17 iIr1/+I$@ R1SMrФ--  I $A$I$-X#Փ`xx MMRI$A$ϤI $r1H$I ϤLywO/-- I$I$A$A$#4Z#5```p hmRI$IA q2 M$R1 ``x mֶR h6m$ѭ񫪪 mmR1 IM4R1 Ii1%--I$A$s$@$1P9#8Rxxxx ) R1驋Ar1I r1A I$r1=QW?w%--- A I$A $  )``xx IR I&MѴ I$H&R1 I$H$R1h  Swr/--  AR A$r IA$S_ CۮX&1z @P=r_ m~$rnU I$QNU`$I$̃~_ m 1  ،MqH I rI$H$r  Ф---- AE$ I$ZP5xxxx M0 R)I I$1U(II$RU*  $I$ӽRUϩ4aӽI$A$q I$q R#Ix Vl۶a" MR$m61UIB'p8rUIr0= JTJP A$뫫 A  򬪪 '`&hxxx ` М I$Iqq I$Iqq  I$1 $1񤪪 H$I$1 II$1w  91WI$I-55-- 1iQ I$I 59hxxxvI 1I$I r $$r (i6rI$I$N'%- Iipp  r0--- 9=xxxxI@I1I$IrIHr 4҂1@ !  ---- I$A$ $r X rxxxx A&A$R1 I)$I I$QR (ڼ-RФ@@   r-)  I&I 񴪪 6bıc;񴪪-: rxxI$Ir1UH$I r1UI$H$r1UI$Ir1U@$I$R1뺪II r1HH$R1 -R``` r  $H$ $H$ X+rФpXXXI$I$r1I$$q2H$A$ * )R@@  r  @ӽ @ ӽ`'j'rxxx I$I$1  H$A$ѵ񛪪 $I$R1 $.(RjjjIIrN5555 I$I ӽ񬪪  rx$K$RNxxxx I$I qq $ C1 KpM1  $,(1@@I$I1틽   A+ H$@$_~ m$h4Q~ MmQQ I$H$rQ mMРr M$Ms I$@$I$$I$I$r@p $ Ӵi;r2 H MjR#  $ $s(I$ $sګƓpxxxI H$R1*I$H$q2I$I$Ϥ C--R@ %!p I$I$$I$ R)~pxxXI$ $ I$m$R1躪 $I$R1 (ɒ,)1Ф@@@I I Q--- Ir  ӽФ ЧErФxXX I$-R1U* I$H$R1U꺾 I MPr I&E$1 I$Q1 H$I II$R1 65R@ @)/-- I I$ I  s 9 exxxxII$QR@$A$QR $I$Ϥ mE-R@    $ s H $ Xb xxxx  H$ϤI I R$I$ !-R@ DJd r---  &ar*H$I$s"R%r pH IrR" pb'vb'rQZW I$I Q1 ڶ@61@ )q 1) I^ArU Ӓ&rФU Fr+ Iu]ur5 II  Z⽥ФxxxXI$I$R1  ]5h6R1zh I4I$r 1!b"Rjj ----A$H$ ۶m۶! @P EФxxXXH R1*(I$I$Ϥ$H$ (,-R@!J$IФ-;yhTr i6-ڶ k2'"zz@ I$A$ѵ񓪪 I$Iѵ񓪪 A$I$rn $.!@@ɕI|Qn----+ңO?r~_H$I$ꪪI$I$NxX im1 Im۶1𜿪 IIд1񤶪* I$ 1 $I$qq I$@ qq I$R &,)@ rn--)- IIr H$@s X`.rxxXXI$A$rA$A rI$$r(*!1@@  ---- I$mۀ?r~ X"&j'rnxxxx mI$1 IA$1 H$i$1 $*)1@  Pr- ) Arꮩ #9*͒0zH$I$ xIni* mI$R Irn ,)М@@I RN I?@ФU IǢФU I^sIտ inݺR) H A򴪪 AAr P -xxxx @ $q H$H$1 ,$Ir1** mۭi$1UU% snR--# I$I 1A$I$s P&k21xxzZII$R1AH$R1I$I Ϥ ,-R@ p ---H $s $I Pb)ФxxxX A$r2I$I$ I$Ϥ m[4۲.R@@ tN&IrФ  I$ S @$ӽФ `9rФx^ H$I$R1UU I&I$1ꨀ I I$1 imҤ1 Iѵ񓪪 II4RIH$R1UUU )" Rj`JT Ф--)  I$ $A$I$s ФxxzH$ RUUUA$I$R@$H$R_ H:R MӶ6qӽ1-A$ԽZY I$$s MKų1Z IH$rU A$@$1 m&X1xmvkQ0ȠJr$&&& )EQ4 $$r X"&b"rxxxX qq A$A$qq II$rn &.!М@@I$ə 1 + I$$ oU I$$ ArnUI$J&0NUI\ r=// I I$s 0ؖ6r X"&j$rnxxXXI$A$rI$H$rI$Hr(,-1@@I$I. ) IIQ= WArQ  X%`frxxXX ! 4rH$I$rI H r*Ȁ")1N@tN` I$I 66b'jj X$F`Rؘ N`b3R1 I$R1 Im4  R@@ݔ Ф I H c;m's Z&FbrܜI$ ϤA$I$Ϥ I$HA$rRwA @  ϤH$$Ϥ1-1-@@@@ Kr- I I$ m8'jj b rФܜI$II$I$ϤHI$Ϥ )R@ !!Ф- H  $rjjJ̄KQ A$R1~w I @$ IHѵ񛪪 ")"(N@@@ IDIDr5557 H$I$ӽ򬪪   rL¤L1Nؘ II1 /@M1 "H$A ))N@@ 1 r I$򴪪 I$A$ I$@$rZz I$IR$rQjh I$I$ќ qrI Խ  I H H$Ir||\ ۊ-+uR}  ]nnr!--I Hs" $I sEbrxؘII$s1 rRA$ $((RФ@tKpC1---)I I$ I$I$'~j4rxؘI$A  I&)$R1ꪪ I$$R1   1@ 1J r) I$Ir A I$r jgzRؘ I$$R1} IR1Wz I$ I$Iѵ񓪪 I$@$R1 I$$Q1տ $I$Q1  ɘ<-RϤB 1Ar   $r mڴ$r %F^r ES4I H$HHI$,>,R@@` 1-))+ $I$ m6m6%F5XX\I$I$ @I$R1 A I$R1,(1Ф@@&dB-   I$kFr41ؘA$I rRꨈ HZH&r1  $Q1*+ $*(1@ I Q-)/) I$I rQ mI&rQ* Ar*+ 4I'r* $I$ $H$ `rФؘI$$ 99R1xxxX I$ r8<)RФ@BB dI I I  cÆc'j b$FbrA$I$A$I$I$A$ ")R@@@ Nn-- Xr(. $I rjj $L̤ $@K1 I$I$1 II$qq !(-@@@IIn H$I$1__Ii1IINؘ I$A$qq $I$qq I$I$1 I$I$1 II$qq I$A$qq $I$qq  (N@@@ ɖ ɐr-  AI$rr6gs2nؘI$ $rA r $I$r "(1o@@@Jt Ф-  I$I񴪪 99R NL1nؘ IҢE۶1 ImѶ1 IҢm۶1 ")"-n@@ ɔJr )ڶm۶rꪪ 3'm:1I$IMؘiMۤQoiRn I$R  ")@  Jr $ @ ӽ H@ ӽ A 򴪪 򴪪 H$r [Eb4ZrxXX\ @$I$ѵ񓪪@Ar I$I1/++ ,(R1}w 鐴Ir-/ A䤳 I$@ s;gU1XXXAIq2A$I$R1&*,I$ $")R@@@p1----I$ $s A$I$7~rФؘHIϤI I$ϤA$I$Ϥ Ȁ,(RФ@@@)NpB-  M$E$rꪪ C:$B:r_nj k4gk1 I$I ѵ񛪪 I$I 1 A$I0 I41 I r1%UUUA$I1uuI$I$R(UU ,)ӽ"u )R1 --I$s I$I  qtHg A H$ $rH$H$rR&.(R@@@ p 1---)H $s  IA$ ]Pr؜ I$$rQhUU I H$1 `: rZzhH$A$Q0ZXh`T|q&666 )Ir @$H$rj rHLR I$I$1 A$A 1 IA$1 ")")@@@@ 1  Ф--) AIӽ I$I$r :3'rXx^^ 1Or---- ۶a֦ӽ ۶ۚ4rjjHKd1nXؘ 횶ɚ1  $IrA$I$r (")1N@@@ɐ 0n---- Ii r0-- 80r `FbR؜I$A$rI$I$r@I$r,#11``pP)J H I$ hӶ6rjk<R<< I$MR1ꪠ i6I&R1 Ii4R1".5RФ``pPI`J A$ $ m&-&rjjk t1<<H I ϤH$@s1@$Ϥ A$Ϥ I$ϤA IQR $I$1#=R-``ppON A $ mm6rj1 R<<I$I$ϤIH r1I$I$Ϥ(RФ``pp t P  $Ir뻯 غ-ӽ𤪪 LN1 I$A$R1_ H I$1 AH qq ,@$N@`pIIDr5577 ӽ񬪪   2 NIN< I$I1H$IrI$$r ,@8n@`pp 1  rФ  I$ $ I$I 蠠 m&h6r^^xx H$I&q1 IiQ=5I$ ԽA$I$@$HI$ $r}}I$A$r I$H4$(II$s $At@_XrФI$H$r1I$IR*UUUI$I$,#R@``p ِ 1 H$I$ c c;rlr𤘜I A$rQUUYU A4A& @ ,01`` !p`  @S h4rjjj {RФ $ $R1 I$I$R1 I$R1~ IiR1U I$N'R1 I$M$R1 I$A$Q1o (.11`p mr0) 6l$rQ [ۢk&r1 k|1> 43I8R1 AI$R1 ض,I,R1*5RbpR nR-) aۉ$ $jd|xr𤘸 II$R1 H&M$R1 $IR1"1=1@` 1 H  6h۶ '`Q[Xr𤸘 [2,K$rR~~ -ҦEҤR1~z I$ 1@` B` QФ $@$q1  $QQ I$rQ* !I'Q + I$r m"$rktD[WRФ<IA Ϥ Z+6 :R1p|pp IIФr2>1@ 'p1---)A$I ڶm4r`k@tARФ@  Ϥ $I$ϤI$H$Ϥ"-1R`` AP DJdr<<   R@` ODIN IIΛ I$I$qq Em&rn =R"% ```pI$I$----II1?/*6&& I$Iq I$Iq m۶m21 @$Z%NOq777 ڢm  51``` ɑɐ1n66&& II۶1I$r H$r P"%R"%̃P I$1  pIN*/ $IA $I1 c'pB8rh` mN$rQW_\\ itIQ%%%%I$H ԽII  $I$ ARIRA$H   $$A$@ @ӽI AϤII$Ϥ  Ϥ#PRФ 1r)I$A  m&h6rjjhjP RФ<,&H$HϤ -R I$R1Ȫ R1 @<@1ФА n-R  @ 򬪪 @6@6rjjjj ̰QФ<,(  A$R1V ڶ4R1]  IФi$R1*U I&-$R1 k[ۮR1*j M$-$Q1Z\] #􂫽1ФPP 6vQ  H I$Q0 m8c&Q pK166'' A$I$q $I$q M&ir  %1Ϥ $@1r1 I$I$r U c;v$Rjz}>pQ<4 I H$R1 I  I$@R1# RИ 1$`r)$I$ C5[:Rjz0 @RϤ,,4& A $R1z i6iQ1Wu M Q1? 41nP `qh'Q U DuQU i$QU @q~$1U @AɝQn  N$rNW 4imrU` 1n(.'I$I$Ϥ h6@5R1XXXx I$ir .+1𰰐 ِ)Q I$H$ m6E%rjhrp RФ66&I$ϤI A$ $I$Ϥ P+R )nl1  HDHڤr ,R,1`` I N>6& I$I$qq I$A$rn ۊ6k6RP%kR'˃I$I0- 1go r0-/ vb2Lr1 I 1. II$1𤪪 $I$1𤪪_ I$A$1񤪪 I$I$1񤪪 I$H$1𤺪 $1𤪪] mѢm$1𤪪 @$P2%PА0 ID  ii :X4R@@@ 166&'$ $ѵ񛪪II$rI$ r@#8P1oАn@B1  A$A$񴪪  -b/61` ɑ n6&& $ $qq I$H rn I$I$qq P"%R"%n𰐐 P I$I$  "-``IIN66&&m6mQo JdJ1‚ڭ@"%S% )$I$1vI$QϤUD҉$rU0$rUЍI$rUM$rU$r𤀪U ɖl1((I I$0I$I$0 MIѶ1*  +)R** &&Ar I$򬪪 $I$rjzzz OKQ $I$R1  OCR1 $H$Ϥ#RА bwrI$A X=,؂6rhbhh4 RФ<4&&IA$QRI$H$ϤI$H Ϥ/ؒ+RФА R I$I$ [%۲%rjhj0RФ<, E&m$1 C$$1𤪪 IM1𤪪 iv+1**  h6h1 M-1  "M$1@@ 1ФPА0) PI1)  I4   [C-rjjrj RФ<6&&  I$rR IIrRA$IrR-R-r𤰰 1!r-)) $I$s( @6ES$rjjj  r>& $A Q5 @&I$rA I$I$ 8 гQzJ, ;Q Ntr0 -  61` Nɐ<<$ $I$1 $I1  $1ꪮ B"%P"%̋P I$rn U DI$rnU H6I$1 _I$I$U)I$1I$rnUl'I$rNU TɔL1..'% dB 1ڿm@𤺬 )i&1 P"$[& JIQ--)  Iir <81` 166&'H$$rII rH$I$ѵ񛪪P` 1ؘ Iv)nR I$s #=61``x 7R$I ϤA$$ pb'CR1ꨨ PX1И in  I$I4r I$I$rꪪk3 z IoU IoU IroU InU InU I֒nU I?@roU I$m0 pn%WnrϤ--// mñƳr"B#91``p )1oI$A$I H$I$I$P `1 ) R  NBI dªѓ`` ɖH 1n' iA I$r  rP` 1o ᘎr7 A $sڼ321```p91NI@$rA I$rII$r Nb'6l1 I$EҶ1{ I$A5? I$IR I$ 1 A IR$s H$8rQ\\\\ IQ%%%  q I $I$A$H$I$ II$ $H$I$I$I$-Br𤤦H$I$ϤI ϤH$IϤ Z*RФ88< )ڢrI$I$ <26R``x@1d RФI$$ H AR1ꊪ R1u P*%X 1Ф<  ir @ 򴪪  rꪪ #z IR&AФU I$U I ФU Iҿ#% ФUOrU Oʒ%@rФת #ҐHrW yI& QϤ I4 $Q I$IQ0/ h- rzz K/1 @I A$I$ I$L$q ڭ 1Ф ֢k r1 II$rQ* ]6E6r0zz~ ,@JJ1Ф iIr I I$ aR1؉}R & lr @4i$  Z91``x - %J1Ф I$$Q1 IIR1* Imr1 I$Ɇmr1ھ CҶaR I'AR1U Ib' R1U N'6cؒ I&m6ҵ $I$1 miѵ񓪪 A1R1+*I$I$Ϥ X5XR1zxjj iH$q P b*1 AoQ) A SS61`xP RI$H$ϤI$I$ϤH$I PXRФ؜ A6 R H$HӽФ (2-``  N mmqq ؊h6RШ#𤪪H$I$؜ITrϤ-) Iirյ  rꪪ L2&HrФ^I$tIrnUI$ rNUI$n+rNUI$m IrNUI$w+rNUI$-rNUI$v rnUIPr+  sr i) +11```p11oI$H$ѵ񛪪I$I r@IrRX1 i隶R A$$񴪪 1`` n I$H$qq I$I$qq I$H$qq X&`n88< !R  @$@ r19r```ɚHnMdHQo  $I$RH$ARvL$Amm0`𤫪m( Q7m (I @$I I$A I$0$$@2 c EI$I0 I$I$1+* 'eRQ>>>6  I$r A Ir @B&c:R@` ?1  R1 $I$R j,RФ8< mir))A$ $ ¢5Z#4R`hhxt BRФI$I$II$QRH$A +RФ !1r$H  [eX-z#&AZoIr_ I$l l1-U I$ G 1-U* IrUI$ IU IbUIҲ&U 1aR𤵯  IR$i4r A I  "4R#8R`hx`K.BRФIA$rR�I$I$1WWI$IrR+੦r؞ Ir $I$ -X%Rjzz  %R II$R H$ $s @ I$ [ۊnrxz"'>rv~\ Nvor0-- .(1`bjz H @n I$I$1 I$qq A$1 I$I$1 I$I$1k I$$1Y 4P51zIҴI1o D01 I Iqq I$I$qq $Aqq A$Iqq $I$rn V ]۴1 Z"&p"'- O rϤ-- i$Ir +0`91oH$I rI$H r $I$rp |14444 Y隶rI$@ s1Тѓ```! RФ II$ϤH Ϥ@I$Ϥh x14$ irQ AM۠r II$񴪪 A 񴪪 I$A$񴪪 AI$񴪪 I$I$񴪪 A$I񴪪 I$I 񴪪 I$I$r 9ub'1z H&M$0 iIQ55 iIQ +1#2```pII1  $I$R1ꯪH$IR1I $R1j*1<44$ iir A$I񴪪  Ȁ (Ф``IA1 I I I$$rI$$rrJ1n<44$ M4I$q1 &Ir 1````)1 I$H r@ r $IrA$A$rI$IrI$I$r1 $I$rI H$A$I$q H&h&QXXXX IqrQ5 mIr -H$ $ԽI I$II$I$H$H @$H$@$II$&KtIR '   $ϤIH$I$ $ϤJr66 Mر턳 A$ &`?:1`zxz'RФ  I$I$ mے- @ h˩dRФ6466 )A[r 򴪪 $@ 򴪪 @$򴪪 $򴪪 @ 򴪪 򴪪 II$򴪪 I$I$s cذ$s( M$h&r~ h&@&rQ\\p| M$i$ iirQ55$C 1{ N$A Mr1 I4H$rRUw} I$cr1UUkb vr֖& i$IQ髪 m@&Q Cc/1qh` tJtI1Ϥ Iѵ񓪪 &M&q  R1jfQФ<<46 ڶ隴rU m I$r~V ,-rϤ`x !1  IIR1U IdK R1I$I   $q2뿯I$I$Ϥ@ AϤA AϤ &cضmR1 I$m4R1 I4M$ҵ I0N$r !1R1*/)I $Ϥ tB8cR1蠂 I$E R1UUW~ jH1)jn1  @ I$r  5``'IR I$IϤI IϤH$I$Ϥ苖RФ4444 ) R rIH$ӽФ <(21r`` !N  6i$R بsO>Rn`I𤪪I$H$ 4$ t @ r  A$I$ӽ򬪪 ӽ񬪪 I$I$ӽ򬪪  ӽ񬪪 ӽ񬪪 I$I$ӽ򬪪 I$I$ӽ򬪪 I$I$ӽ򬪪 ӽ񬪪 I$I$ӽ򬪪 I$A$ӽ򬪪 H$I$ӽ򬪪 P*1Ф`` 1 I$I$r@$I$ѵ񛪪$Ir` 1N<,,$ r I$H$񴪪 1X5Ф`` n  AI$qq $ $qq qq HH14466  A$R H$I$rQP=؃=rxxxz  I$IΣ I$$R I$@R I$HR I$R I$HR I4mΛI$ΛI$H$RI$H$Qo$$Qom6I1$$1/II01#? h JQФ>>&& DIDr)+ A$I$ "-`` !1Ф ) I$I$qp|QR1.I$I Ϥj RФ<4$$ i$I&r*II$/"1``! RФ A I$ϤI$H$Ϥ$$Ϥj RФ444 iYr)I$I$H$ $A$I$ A$ sꪪ 690xxxx Tɔ05555 $H񴪪 I&H񴪪 $񴪪 A$ $񴪪 $A$񴪪 I$I$񴪪 I$ $36SC61hxxzR H$I$r1A$I R1I$I rRrr.>$$ I I$I$ -11xx r𤍭-) I$R== I A$rUAU I$I  mS4-" XՒ0^\\\IIQ05 ",¢5rФb )n $I 1 A$A rn II$1 I$I q II$1 $ $1  R51I𤯯 Aqq I$I$qq @qq II$1 I($1  $C'R km$Σ H$J-/t   I$I$ꪪ 1`  1  $I$rA$rH$I$r Ht tRn&&'/ ɖ`ٖlr+ ++ I$A$#6`#1xxxxp@1I$A$R1 I$I$I$P pR&&'' imr Ii۶r  H$Խ II I$II$H$ $$ @$H$񴪪 A$I r Ck$Qz 6k$r0xx^_ h6I$0꾪 II0  IѶIrQ =5 5rФ```xPRA $ $Hq2 TJPR&&'' i$AA$H 01``hT1o I I$A rI@ rȷL166'' I $q1 ڶ-r 1r``P1oI$I$rI$I rH $rAArII$rI I$R1-.:;I$ rH A$ M†C8s C3pb'QXXXX I$I$P1 MQ +/ II4 I$I$ԽI$$@  V$rI HR 0Aij H6lRTU\T i 4 iN$ h&HR1 (%sJTQФ&&7% $I$RU $ I$Q  5rϤhx P1 H$IR1 ْ,˲!R1ꪪ R1 Hp LRФ&''  Ar @򴪪  򴪪 򴪪 A򴪪  $򴪪 򴪪 I$Aꪪ  򴪪 I $򴪪 Hmr #5IdT𤩿 A$I qq II$qq I$I$1몪 dB I$1p  @&1_ mRC;1zb1vq*HLd 4&&'fn' 1  I $񴪪#5r``tT1I$IrI$I$r EڴH"r  r%--- II&s+***I H$s 1ՓϤhxxx iRA$H$rR}wA$ I$ $ HM,1N 4nФU Mr*U m$$U imؓU mn$U Iv'U$nW m͓$rNU I$r-U @I$Q-U$I$ U8I$ U "I$MU @rI$1N*U B&I$ zWvbXRФH@q2I$I I$I$;N/--- A$I$ A$I$񴪪 P5Ѓ9xxxx іITA1I$A$rI$Ar i 4R1j{ Qo'--- I$ $q1 IiQ++ 0r`` іiPR1 EQ4-$1"  I4(41 A m$1I$ $1  ڠ 41I$I$R1:>I$@R /$$ԽjZ~U M8c0r pBc'rQp H$I$Q0 AI$rQ 5 iѦM4r $r j ۰m˖dRUW K@Br%%-  -$ir vM4rw 45r``xx A1 -I$R1_] -6I$q h$i$q P 1/--- I$I$q1 mER$q1 R=`"&0n`xx d n1Ф+ II4R1 i4A$R1 mh"Q MI$r/ 4I䒵U Im'U i!U I$U M$U ui$1U @Il?W 0i'U  Ik'r1U  Ie1U $I${;U:w$rФUhhQ1Q0))** -ir )- Avֵ1I$I$H$I @ӽR@0|4aӽ1 A$ "s @$ $ Pѳx xx $c’1]} fb'dq1UU A$I$q II$Qj )AMQn//- A0I$q1 i$M qQ* R#1r~zx` ٖATL1I r1IA@ $R/}UI$H$RpWWUH$IR1uI$I R1(I$I$R/eH rR z ].E&r1Z  $1𤠠 II1 nvR1/-) I$R1$I$R1 IR$I$r1 PRϤ%- I$AҢrQ m4I rQ =[3&Q`xxx F1Ф &Ɖ$R1 A$I$R1 iۦ8R1 < r/--- ];,]ۭM$$Ar~U\U %`'rn`hxxiȱ-'N$QoIɔ𤫫 naϣI$I$//tI$rNUзI$rNUI$rNUоI$rNUI$rNUлI$rNU`I$rNUI$rNUI$rNUpI$rNUI$rnUPI$rnUI$rNU nI$rnU X%O$1 zWpi1 $ $r $H$r i6 ѵ񛪪 ? r%--- iI  I$I$ hhxxmDm1 i$I$1 H$1 H  ϣIDIdQ%--- ii𤪪 Ir #9rh` D@ H1М I$I$qq A$I$R I$I$qq H$I$qq (m&qq I$H$qq mm&qq mm$qq @R h6 4Rkh𤪪VII𤪪 AΣ  R I$ $1M r%%- i r I $rЃ%X%rϤ`xxx PI4IМ $I$rn II$ѵ񛪪 11R1kmuФ%--- IIr I$I$ ,r``` D 0R H ϤH $ϤI$I$R1(" :LN<1N /im8ФUm,瓵ФU I#'ϤUme$U I,'U *5O$Q _ I$1 * m7$oU M$oU m$oU 0m$Um$oU m$U 䓵U 5}RNz_ ti mR$A$r1IH$r1  rR DS%Ir/ 񬪪  񬪪 01hxxx !&ir* I$H$R =5 A$r I$A$  I$r X?r0x\||qL10k&h%1`` 0I @$1𤪪 I$qq I$H$1𤪪 A$ $1𤪪 I $1𤪪 A$H$qq >j"'Ф^I??? &@&1𤫪 ۀnִ1𤪪7yn&1ﻯ} vBЄ$1U $ $$1𤪪] #иq1W I"I$A1Wu Idɕ1M5%-- ۱r A I$񴪪1X9xxxxTa@m1МI$$rIIr$ !1@  r  I4 $+***A$I q( /P*ФppPPA R1 (I$I ϤA$I$ϤA I$Ϥ Ii6r M6IҶR1U" I i R1 I$ $R1] I$ $R1U* II R1U I$I&R1U I H$1t I$ $1 $I$1_ IA&1U Nb4L1U I8m1U IH 1 A$H1ժ I$I 1U* I i$r hہ$R1 $I$R1 &2(RФ@@ ---- 񴪪 I I&񴪪 У%X.frnxxxI$I$rI$  r $ $rL21@ SɐO1N M$I4 Ӓ1 +/ L:cے2xM&HW InU IۛnU I&nU InU IroU IւrU Ir rU BcmrФ * $LI$r0 @ H4Q\ $H:1 FoqW+v]rO OJ1Ϥվ  Mr1 iI6rQ ) i$rQ 3=B;qppp I$A$ѵ񛪪 I$Hq @I ѵ񛪪 4M06c01Ф@@ dK Q--- I$Ir0 I Iq1Xj0Nxx I@$1 A $ҵ ӁR1뫽 A$I$R1z I$IR1? I$ $R1U I I R1U I$$R1U I I$R1 I R1 I$I$R1U I$IR1Uw~o q iRM۶r1 r1ᄏ IMѶR1m M&m"1: d5 rQ]qp$A!Q0 ۔MTQ -- ۱ӳs A$I$HI$ ڭ.` 9Jӽ $I$s $ $s BZ,ppxxI$I$ NBtHR1v Nb'LB8q $-1H@ IO1n---- I$irQ= I$ ҤQ  m6mQ~* t,WӶФU&AФU KϤU _ФUM&HϤUI¶&AϤU y޶&AФU!>mMX O? @1nWI$- NU I$&I1NU*AUIܲ&U ͱU YnФտ* I[#[1 6hr N'LlГrVz PX QxXxx @6r H q $I r &-1@ Nr---- $I&-rQ &mI$rQUH$M$1MxxX^&M$𤫺I$I𤮯 IW Σ Iiqq IҶh۶1ժ ImѶ1 IҶ@۶1ժ I$I$1׫ I1 I$ $1ߪ I$ 1_ IҶi[1w I$ $1ꪪ I$I$1_ IRm۶1 I$I 1 IҶmۢ1 IҢmӶ1 II i$I[RHH$rH$I$r @ r :)1@nN---) $ H$ $ @ XerxxxX A6m$1# H$I$q & I1ꪪ & Ϝ Ipr-- Im;r I$IR tB;CrZz C) _ y޶U \Hժ* M U( ymr1U IMv$1U iݭ&QU mʑ$ QU ueH1U Ñ1U w@rФI$M0WI$I0U*I$&rU I$&sϤU w$Ф I 2- A$H RU  $I ӽ򬪪`&r$rxxxX I$H$R  1  $I$1 .* 0@۸-RϤj k rФ-   I I$ )~xxxA$I$I A$I$H$ $A Ϥ i$@$r1u AAR1 MiR1  M6)R1ߨ I6Ir1 iIR1U#b;1~ Iml1** q1  Mm1  I6HѠ1 I -1 I$ Ҵ1  IMR I4IR1(" I MR1UI$I I$Ar1I$Ir :")R𤀀@ '`)-) 򴪪  @ -xxxZ I$I$R1 I$IR = @rUU $@$r @H&r~_WUX5X5r0\^~^M0 Q0=?? [#q$rzI$[ rWI$e rnUI$$ rnU I$$)rnU I$$ rnU I$$)rnU I$$ HrnUI$I$WI$I UI$q_1NU*I$-QnUI$y @QNU I$$AQNUI$@0-UI$I2  UI$I տ N4Q-+  -r H$I$s % erxxxx ) ѵ񛪪H A$rI @$r  1@@@@NФ--- IIs** * i$i$qB, p $IRu]@I$ $I$I$ϤI$I$ϤI$I$ϤH$I$r1 I$A$I$ A$I$R1 $ $R1W $I$ѵ񛪪 m A$1 I$A$0 I$I1着 i$I1 Iƶ q I$Iq IҤ@Ӡѵ񛪪 I4I$q i$h6q I$I$q H$A$q I$I$ѵ񓪪 )1N@@ J!Jr)  I$I$SW 4i2;r hFr1N I$$ѵ񛪪 4i$ѵ񛪪 C%I,ѵ񓪪   1-@@@ C0n I$A$ &I$rQ=U AM$r  $r i I$s MI&s A M$s ҤI$r H$I$RU ($I$r II$ӽ𤪪 mR$AӽФ H$I$rQ A $rQ I$IҠr0  $IQ II$Э𫪪 II$Q ZEQ 4lЉ$Q Ii$Q0 i4 4q1 ؆|FQޞ i$Iq I0 R1UU @$I R1U,"(1@  r-  $ ڳrU IbӠIڒR `(Fb1Xؘ M&k61 ][i1𤪺ڪ vWywR1==5 I$I$R1 IH$R1 I$ $R1 A$ $R1 I$I$r A$ $R1] I$I$R1W]m $I$ I$I$R1_ I$I$1U55 1U I$I 1U I$$1U H$I$1U C: 1騨I$m$rQUWW\)IrQ 55 !r )I$I$II$ .!!`@@@1wtO1----IH$ ~lF_rH$  Ϥ I$ &R1 v'C:ѵ񛪪 ,)",N@@ 1-  ImѬ1/+  Iir I$H$I$ H AI$AI$A$I $ $I$H$I$ C6r^ I3p$r0x~ IHQ0Uյ q 1/+  I$I$@  I H$I$IA$I A$I$ mӶE6r `6fcRؘ I& $R1w q$N$r I$I ѵ񛪪 *)!1N@@@  J0  2Q0_UI$I$1廊~~I$I$Ϥ I$Ir 𤫪 !iR I$ $q @$A$1 II qq I A$qq I$I$qq I I$qq qq IIqq I$I$qq I$I$qq I I$qq I$I$qq A$I$qq I I$qq qq i隢1I rA$$rI$H$rII$r  1@@@dT Ф)  @I$񴪪 L4&rjzz hfpQܜ IIq I I$q#?ò1 .(Ф@@@ J- $I$sI$I$s* I$ $s*I$I$sI$$s ۲mۆms O 6m* Iҵ[u $I   򬪪 HH$򴪪 @򬪪 $$򬪪 I$@$rjQ0TTXXT ] r055- I$A r I@$r   r Hӽ @$ӽ  $ JJRؘ H$Hrn mm۶rn  $I$1 "(")1n@`O r IIr ömI$r ڧjrФXܜII$ϤA$I$I$I$I$IϤI$I r1I$  q2H$H$r1I$A$r1@I$q2 #6$R1~~V pBNb:1 iIۤ2 $ѵ񓪪H rI$@$rA$H$rII$rI$I$rI$I$rI$I$R1I$I H$HR1I$I$r*Ȁ (RB@B@ @ M @򴪪  A `Fb rФ I$I$R1 A$R I$A$Qz (Z4m&QH$H$rQZqMq1IIrQ= I$IӽѤ AӽѬ Iӽ򬪪 ӽ򬪪 I$I$ӽ II$ӽ I$I$iøar m6h&r^V^\ I 0+. I&I$Q0 q$$rQ? h$i$rQW M&H4Q0hjj I$Ip  Q Ii[Q0U* Iu-nrQ%)  I$Is M 4r hfcRnI$A$rI$I r $I r"-01``pPd  IA$ A$I*r^jФI$I HI$r1I$I Ϥ $I$ϤH$I$ϤI$H$ϤI$I$ mm$R1 &I$R1__ @ H$ѵ񓪪 Ii$r i$ 1 Im1 i$ q I ѵ񓪪 I6Hѵ񛪪 I$I&ѵ񛪪 Ib;mr 4cMq ab' ѵ񛪪 I $ѵ񓪪 I$H q IA$1 "9#%M``pp NKrϤ---- I$Q 5r1`` MDIDN6 A$qq A$Iqq I$ $qq 0$-``pp I 1n IA$P1 @I$P1 I8rQ = AI r0 I$I$r II$S H IS A4IҤӽ񬪪 H$i$r H $r I I$ӽФ A$H$ӽФ I$ rU  M$I$rW_ I$v:rQ @6-r0 H$I$Э𫪪 pl;t$0𤪪 $L$͓ I&IQ- iir0 I6m r1늀tD_,18< I„mR1 I R1ꪪI I RФ`Nd1--+ $A$ꪪ K-۲-rgMRФ< mӶXuR1W_Z I$M&1zٔV1 ++ $I$QR X6mӶR1~ IA R1 H I$R1﮺ R1}] H$I$R1_ I$I I$I$ I$H$ A$ $1%55 H$I A   $ $I$ @$Hz tb: 21mfr0 11r-IIԽIA$.!.ӽ@@XPNA1)+ A$I$ $jjuNxr𤸜 I$I$I R1ꪮ c$C;R1_{jj ,01n``pp  PQϤ---  Ir I$ I$I  $I H$@AI$I$ $I$I$A HI$I$ vb$r C%[$1~ m$HQ0^WW IIr0-+  隴MѶr/A I$I$$A$II$ $II$I  36c'rjj3R8<< I&)R1ꪪ I4@R1 M$i"R1 ,01N`` J 1Ϥ   I Q#'u$0ϤzzzI$I$ˋ>>>I𤽯 Pa𤫪*   rn qq H I$qq qq I$$qq I$I$qq I$A qq IA$qq I$I$qq I A$qq $I$qq qq IAqq I$I$qq AI$qq I$H$qq 111H$I$rII$rHA$r$Hr,"-1``MfB  hӶkڤr E&-$QtMT1n<< I$Iq I$iѵ񓪪 -r 1z::  `RAI$s"*AI$s*HA$s"A$I$sH$I$s*H$Is I$H$s C;4C꺺 H$I$ I$I$򴪪 A I$ H۶m6򬪪 $򴪪 @6m&rzz~z(Ӓ"9rQ0\VW Iv1-/+  r @$ $r $r @ A  A$ӽ !Zrjjz LDNR I$I qq MӦh۶qq I$MR 0$N@`p rϤ IIr 5E3,Qj|1 i$H ѵ񛪪HI rH$$rI$ $ѵ񛪪I$I$rI AR1A$I R1 4M4R1 I$I$Q IpL'q I$0 II0 I1* )Eѵ񛪪H$r  A$rI I$rA$ArII$rI $R1A I$A$A$rI$$R1%.+.-r`x  @@ꪪ  4H&rz~ tM\QФ $I$R1 $I$r1=5 H$I$r1A$HqRIIrQ*I$H$rQ( I$IӽФ  @ r Iӽ򬪪 I$I$s $I$ӽ I$ $ӽ I$I ӽ I$I I$I 񴪪 H8`;r\\\| II$0𤺪  $ 0 . @$IQ $I$Q0u A$Q0 M4Mr0}* I$ rQ I4AQ IIۦr I I$񴪪 6b0$c8rjjz|1I$ rH$I$r @ r[9ۿ1А)Jd1  II&ꪪ $C"CڳrjjjmPKRФ6.( i4($R1 I"M$R1 ] @$H$R1Y IR1( IM$R1 hm$r1U M۰c'R1W m۶X$1 'L$1 I$I1𤀠 I$ $1𤪪 i @&1  I 1** Iaۖ-R𤪪 m41(w iH$R𤪪 @i$R𤪪 MS4E$1 )$i$1* m۶h$1𤠊 m&h$1𤪪{  $1𤪪 FB;v$1𤪪} B"%P"%nPPаPr-) I$ $rQ -r``` IX M66&& A$Iqq $I$1 H$ $ [%C%PP )I$1- U vI$1-UI$0-U@I$0-U PI$1-U I$Q-U @nI$RMU mI$RMU 0I$QNU 0I$rNU I$rNU q$rnU M$rnU 0mrU i8rU mlrФU o>?rW&I$n_а'I$MWФI$N `I1* m.4QФU $m};rФU< p 1o(. I$Ϥ@A$ϤI$A$R//RФА rI s m6EӶrM45Or𤖾 M&m6R1 m&h61訠x vqWo1*++ ER1 II$R1I IR1 芶k5R1z H$I$R1 I$I$r r mE6R1w^U @R1{] I I$1 A$I$ I$ I$I$ I  I$I$ m6i6r^zzI$M&rQUWW\ ivQ-- M4)$ I I $ M M$s(I$I$ m6@6rb5Q(((A$I$I$Ar1 h&mR1 4@=1 PP I$0N Mwr*  I-ēФUmm;ФU mmk?ФUð}$ФUmeФU 0m-?ФU  $Y'МUm$ēϜUmd?U }$rU I$0NUyI$0nU @w$Q U 0`l<Um-$U %ǓUm-<Ui$U Hܘ<U-$U $id$ULɐ 1N(.'$I$I$I$$I$R1@81PP  Tr  I$mr0_^zxH$M$hhI$I$-77'.wФ* A*"U -6m$1U $1𤪪 $1𤪺 m[m$1𤪪w H$ $1𤪪 @$1𤪪 m۶-$1𤪪w I$I$1𤪪W $1𤪪} $1𤪪u I I$1𤪪} @$I$1𤪪 ۶ִ1𤪪 ESh$1ꪪ I I$qq $@$qq)j1 i$R𤪪 M)$1 Im$1  i@1B#Ԑ+1ФА( )MR--)  KK188< ]6m61 M46&& iIrI $rI$H$rZ1((  to1 + @[IR k7m$RU $ $rU ÖdK,r I$A$U A&I$  H$I$( `HtLdzr $I$r mѶmrU ڶm$rU ж$RU H21W &L$rϤ_kI1*/5@Nr$rT m$ФU mI$ФU mI$U @I$U dI$UXI$rU ɕT L (.' I $qq qq I$I$qq R"%R%N`r  II𤪪 &Bؠm0Rjrxj O16& m۴1 U i&$1 (U ڶm$1 -$1  $I'1 $ 1 [עE1 U $iҀ$1 u h4M$1 튶$1𤪪 IM&1𤪪 $1𤪪 I$I$1𤪪 ֶ-1* i81 EӦHR𤪪 hh$1"  I$1 I$1 i6IR** i&R1U Im$R1U i6i$r1#@,rڐ I$R H$I$S 2"5r1` T L1,..& Hѵ񛪪H$H$q?//7I$Ir1 ImQ* I$Ir 2'J$N\ ) 0 +))I$Is*A @$s $H$1A$I 1AI$1H$@$1 I$H$ @$ $I$s I$ $1 I$ $1 I I 1 I2L6mq I4i$1 IҢm۶1 m6["rZZxh H$M$rQ II4Q//= 6I + H$s  I$sI$@$s [342rxphx.dJtAR I I$R1A$I$R1*..)IH  [4Xѵ񛪪 xѵ񓪪I$H$r1I$I@I$r1 ϤA$H ϤH$A ϤA$H$H$IϤ M$@$R1 C6m&r $H$r I$hq ؎R1*I$H$ϤI I$Ϥ $HϤI$ $ϤH$I$I A$ϤI$ $ϤI$ $Ϥ$H$ϤI$I$I$@$r1 HrH$ $rrJ1N<<,$ )vr ]ҵh5r[zzzz"'x'Q^^\\II0蘆51!`r0+ $I!IrQ* 𤪪 m6m۶ӽФ ӽѬ I H r @ Ir I$rU mۢM۴ӽ񬪪 m۶Eӽ񬪪 $ӽ @  HHӽ A A$H  I  Hӽ )bin򬪪I$$s*$I$I$AA$I$sH$I I$A$MMT0491```ppA1Ф  IArH $rI$I$r hvm11 ֶ-ڴ1I$Ar II r I$ $1뮺I$Ir $ $rA$I rI I$r ``Ȅ1 I$I$1 I$I$qq $I$qq IA qq $I qq Ђ+Σ  1/?/+ A I \\\\ H$$qq H$I qq I$@ R_ $I$qq $ qq I I$qq I$I$U $I 1U I$I$1U IIRU H a-R  MarU @$I$rxj I$I$ӽФ I$ ӽФ I$IӽФ I$I rݣ AH$r m&M&S H I$ӽ񬪪 I&ir_ $I$roz ImÒrU $HrUW I$ ҴR I$IR$rUU I$IrQ AI$rQ+ H rQ $$r] )i$r II$s 4i$r I$I0 IA$ $I$s I  Ru $I$r v$H$rQh$H$q1أ=c291`` K1n I$Iq Ii ѵ񓪪 I$Iq I$IҢR I$I$r I$ $\\\\ I$H$qq II$1 A I$1ꪮ I$H$1 I I 1 I$I$1 I$I$1 I$ 1I I$r kں-ѵ񓪪 I$A$0 M$I1 I&`q A r@$IrH$I$rA $rI I$r$H rArHI$rH$$rI$rI$A$rI$I r HJPR7'''  Is I$ 񴪪 $I 񴪪 I$@ 񴪪 I I$񴪪 HI$񴪪 IA$񴪪 E$M&s  :fb&RbZ @& $r0^  $I$q Iرr0+ IIbr  $Ir A@  I$I$񴪪 H$@$񴪪 AI$񴪪 I I$񴪪 II$񴪪 I$ 񴪪 I$I$򴪪 A$I$ A$I$ӽ A$I$r I$IrQ IIr r I 򬪪 I򬪪 11rФ``` AdI1o H$$Q* A$I$Q1WW -$I$q II$q  1뾻I$ I$ i$I" vb'q A0 IN1 NMѵ񓪪I$I$ѵ񛪪I$I$rI$H$r$IB 1p 6 m$1ӆM$1ꪯئM]$1 mWm$2 $i $2  Y$1꺫 h&h&1 Ty1 IڴAR1@ r$I$r1 $$ $ $ϤI$I rRII 8 rФ&''' m1I$I$I$IA$I A$I  X-[ճrhj M&M$QWWWT)9S0- --I$H$sI$I sI$H$sI$ $s A$H$1I$@$1 H$H$ $ s H$ $1 $A1  RH $$ $I$  I&h d' Qzx I$ $q1* MIr I $*I$ $sA$I s X4X5Rhxxx M RI I$R1 $R1+*&/ $I kS4]6R1^^VZ qxѵ񓪪 I$R1 $A$R1IϤA$H$ϤI$Ir1I$@$rRI$IϤ I$h$ [ 4m&R1zx__ II$r Iaҵ I1hR1I$H$I ϤHHϤH $ϤA I$ϤAI$Ϥ$I$I$I ϤII$QR$I$R1H$A$r1uI$I R1 $IrII$r HJRo6''' )vCۭr II4r c1 QΤx E r蘆- II: Q* I$IӽФ Ir A $r @ r r A rIIrQA𤪪 I$I$r*U (Тir  $ӽ A $ӽ  @ A  !!򴪪I$ $A$I$I$ $IAI$$ #b۳ mIf0>>>X5``pxٖ  1$Ir $Ir i&Ir IҮm1w3Iva1II$rHH$r I$I1꾪I$Ir$I$r $H rI$H$r 9M1 I$A$1 II$rn I$Hqq Hqq H$I$1 h&HӦR 1/-/ IIѵ񓪪 H$I$qq I$I$qq I$A$1 I $qq I$I qq I$A$qq II$55% I$I  I rD H$I$1U b ii۶r멫4HJr AIs I I$ӽ𤪪 IIRr I$IS H$H$R}U I$I r I$i4s I$ $s IҦhs I$Is*" I$H I6@& AI$ I$4cسr M$AҢrw A$MѢr~ $I$rQ I$I$rQ* i Q i&I4ӽ񤪪 I$I$ӽ񬪪 H$I$r I$I S $A&S I$iڤs I r M$M$rQ|\WI$Iq1 5/1Q````tIT@1N R1I$I$I @ I$ArR*+ C2$C8r II$\\\\ I Iqq H$I$1 I$A$1 I$ $1 A$H$1ꪪ I$A$1 $H$1 I$I1I$I$r hҢm4ѵ񛪪 I$M$0 IڤI1 II$rA$I$r I$rH$I rA$ $rI$A$rI$Ir@$I rI@$rI I$rI$HrI Ar $Ir N81./ Im$Umm8U mm$U M$U 0m$oU m$nU Au$nU I$rNU DI$Q UI$ U I$0-U NI$QN*U4H@n II$ԽӽT mϝ$nU m$nU im$Ume$Uim$rUm-'U m$U mq$rU mI$r"U I$rUPI$Qn*U mI$r*U mI$rU mI$rU mI$rU &I$R`z_U dIDi1Ф A$ $R1U $R1~[] HA$1 I$I$1* I 1I$I$R1꠪W I$R1IHR1b C;'1 L$H$1𤪪  1 Ii1( Emڤ1  M@ѵ񛪪 iS 61 @$@B&2 H$H$qq -жm$1𤪪 @$1 I$ $1 I$A$2 I I$1 ِ91Z7qSR///%$I$r1zZ_ M&h$1  $I$R1+$ $R1 $I$R1@H$r1 MӴm$R1 1/ 0IϓϤ*uDn䓵ФUDtU mmܓU@J}U &mv$U X)K;0^W p 1r /D$U$i$1U0r;Ub$1U v$1U nI$QU ضMۤQU hQ)$RU [ 1 */ mۢm$RMؔ۳1A $ $H%p $ӽU$H 7(U†-U lrФU F<1U @ Q*UMeܓϤ*Q$W0iu{瓵=?~U 1r1U@$H$r1_UI I$r1U @ $R1U kS4XۮR1z~~U D1***7 I$R1I AR1 I$R1 I$I$R1 $ R1  H$I  A@$R1[ 8#->R_ k6m1𤀠   1* Im۴R1 4A$R1* r1뫮]I$I$I $R1I$R1*II$R1IA R1 I$ R1"I$H$R1H$A$R1II$r1zz^ &h1 i E$1 n i$1 E ѵ񛪪 ˰tI$1.//U I$nU 0I$NU $I$U RI$1- * H$rnU 5I$rNUvI$rNUI$rNU@I$rNUPI$rNUI$rNU$I$QNU$I$QNU$I$QN*U$I$RnUI$rU`I$rU@I$U@I$U @I$U mI$r U II$ФU iiФUiǓU 0`%[?U  dzU 0nmU6U ,?ϤW 0NI$Qn* j91xIa1/*/.I$I$I$I$R1ꪪI$ $R1j m&R1ny I$R1w IM$R1 IIR1UeI$ I$HHH$rRI$r1I$HI$ $R@ppS$ $R1jI$A 1 I$A$R1u vbô1  M&h1W I$@$1 -nmR15?=5I$A$R1証II$ -1@ ,m@ rU- I¶)ФU MUӶ$ ФU I±rU It QNտ* N̒ФU Ӳ&@ФUNҺ( ФU~–IФUÖ$ UIR6hU ö lU O$X I1nWI$- MU I%' rnU vUOҶ IФU~ҶϜU }ޖU IҒUOϤUw^ U yOUҶ&AU IҶUIҶHU IU I:nU I;nU I$nU I$sf1NU_x M6A&1 II4ѵ񛪪 c:C:1樀 d$ 1W?r)n1/ I6(1o  mM41 IAѵ񓪪 NpB:1 I$I$1 I$I 1w I$H$qq IBڄM1ת Ih 1U iZm[1𤷪** I$ 1 I1 I$I1 I$I 1  $I ѵ񛪪 II6q R1U] I$I$ѵ񛪪 1!R1/IA r2uI R1"II R1$H$q2 $H R1 vB4C3R Ii1 I c:1 nRr+ Ib1U iҶ(m1U I$m RU q؄irU I4-жr  I0IU* I$ $U 18m۳ M$ 6 I$s  I H $12mr ڶm:`r I$qórUꪈ I$ rU I$m;`RU e RU >H_zI$% QϤU* qLի ]J4] w2&P lU IrФW I$ФU I$'rUI$ rUI$, UI$ UI$mUI$$ `rUI$I$-_ I$A$1𤹪 I$H$rn  1𤭫 C۱m1~ Ib۶m1"(  im61(  I-1I $ѵ񛪪 I&IѦq I@4ѵ񛪪I I$1  MӢM۴r MI6R着 @ 1 I6 ڴ1*I$I$R I-61* i$MڠR MҶA4R I$iӤ1  ME;`1W {wX1*** I$A1"  I$hZ1  I$H 1늀 Ii1* Ila1ע IƆ 1ߠ* IMR4r H&m&1 A H1** :!1Ф@ IrU ORU IU IҶUS'AФu (I4H H$iN\I$N IrNU I$d-ArNU I$f HrNU I$&-rNU I$4 rNU I$e rNU I$ @rNU InU InU I:nU I$1 U I$) կ* I&rnU IrnU IrnU InU I$oU I oUIb$)AUIR&HU IRU IҶU IU I֚@U qjE1._^I$I r I I$@$rII$rH$ rI$I$r C۰c'ѵ񓪪 IN$1 H&I40 NI1ﯫ I 1  I ѵ񛪪 $ $rII$rI rI $ӽ1@CMUI rH$I$rI$HR1HϤ $I Ϥ  Ir1 I$I IA $I$R1꾾 ۲-X5R1s I ѵ񛪪 I$R1 I$AR1 @$I$R1 I$I$R1   1@@  rФ A$򬪪 h E&rzzz^ I$IrUՕ I򬪪  򬪪II$I$I$ $I I I$񴪪h%j&0|xxxxI0%555 A$$񴪪 $I$񴪪 I$H$񴪪 I$H$񴪪 ٛ9r ӽ񬪪 I$H$ӽ񬪪 @ ӽ񬪪 I$I$ӽ򬪪 I$I ӽ򬪪 I$I$ӽP5Z5xxxx = wX5555 $񴪪 I$H 񴪪I I 񴪪 H$  AI$ꪪ #;s `fj4RؘI$I I$I r1H @$I$A$I I$I$I IϤ>"Rx II1/./+ i)R1*+  $I$R1j Z$Iѵ񛪪 m&k1 A I$q I I$R1{{qS n`1I I$H$I$R1**A $r1I $r1IIr1zI$A q2I$I$rA$I$rI$ $ѵ񛪪I$I$r NB'DB:ѵ񓪪 I ѵ񓪪 Nѵ񛪪 A$R1I I$R1 (1Ф@@@NTJ--+ H$H$H$ $A$I c$6#ꪪ MtId17777 I H II $I  IL$r am۴ $qo6r_W H&r0x^(ql$0𤠨 D Q0%))   r I$I$񴪪I$ 񴪪I H$I I$H$񴪪 I$H$AI$I$I$ $I$I$A$H$ $ I$ $ I$I$񴪪 I$ 񴪪 i&I r hfsRnؘ@ I$rI$H$r Œ-[5ѵ񓪪 I$I$1 n-pr $I$r $ $rI$I rh6Ҭ1j A$H$1 I$A1ꪪ I$1 $I$qq II$1 M&m1** I$@ ѵ񛪪 IIѵ񛪪 M$A4R1 I$IR1 I IR1W i6m6q I& ѵ񛪪 I$I q nZtR1]fA$H$I I$A$I$I$ 0b;NR1 &$r Iѵ񓪪>-1@)Vr  I$I  I$s AI$s I$ s**II$s *H$A$1$I$1I$A$1 $A1I$H$1I $1I$I$ԽeUI$I$1I H$1 I s  $ $sI$I s X&k&Qxxxx IrQ?=7= 4i6  p&d @@$񬪪  򴪪      r mۤm[r I$H$򬪪 iۦM뻮 I$I$rjj JDJQXؘ m[$M$R h۶m۴R pJ1𤯭A$I$rI IrI$ $rI$ rHH$rII$rII r $I$r i"i6rH$Ir $ArI IrH$IrA I rH$A$rI$I$rI$HrH r IM1./.HI$r $ArA$I$1UUH$ $R1 H$I$r1UUVT$I$ѵ񛪪 $$R1{ M$H&ѵ񛪪 MIѵ񛪪:)1@@@ -  $ $I$A$A@$I$@ 8Cҳs @$H$r ӽ񬪪 $Iӽ  H$ӽ  I$ I$ ?? I$H$ AA@$$ iA4s A$񴪪 [@51zzzx Im&r05 -ֶir $A$񴪪 H$I񴪪 I$I񴪪 I$H$񴪪 A I$񴪪 I$$񴪪 $ 񴪪 $I$ A$  I$I$ I$I$s Z$b RؘH$ѵ񛪪 $I$rA$IrI$I$rI H$r 6,K$ѵ񓪪 h۶[$1 `3L2 Ilj0 1Iq iIrI A$ѵ񛪪I$H$r$ $rA$A$rI$ $rI$r A rI$H$R1A I$I$Ar1@$I$s1 II$R1 I& R1jj HR1  ,@4Qz !R1 H I$R1 @ H$R1 I$H$R1w} H$I$R1]] 1#41@`` I Ф $@򬪪 H$MQܞ I I$r-+ $򬪪 I$I$I$ $IA$ I$A A$ 񴪪?>360xxpp IdIr0%555 H$I$񴪪 I$@$񴪪 H$񴪪 I$A$񴪪 E&m&r I$I$ӽ򬪪 ӽ񬪪 I$I$s I$ $r I$I$ӽ򬪪 I$I$ӽ#4#1```` !mWr5 I$I$񴪪 I$ $񴪪 H$A$񴪪 I$I 񴪪 II 񴪪 C].rjjj{_1<I$A A$I$q2I$I r1H $r1w $I$r1I$I$A$A$s1 5R1pppp II$1𤿿  NR1)IA$R1檪 "k62 mΛ жMRn 6mӴ11 $  I$ $$R1++I$$R1:>9:II r1~H IR1I$I$rA$A$r$I rA H$r I$H&ѵ񛪪 L$00ѵ񛪪 M$m4ѵ񓪪 q$R1I $R1k.,R`xp .oirR----I$I$  $II$IH$ IH rQ777 6I A$I$I s H@ 򴪪  H$z~ X[&r0xX&M$1||Ig15? InrQ5  bIvr I$I$񴪪 I$@$񴪪 I$Hﺪ$  I$A$ I$iꪪI $ I$I$IHI$I$ I I$ II$񴪪 H$񴪪 m3"rjjj|M1n<H$I$rII r P#891 I$I1 iv)nR1H I$rI$I$r r ktku1 I$I1 II1 II$1 I I$1꺫 I$I$1 I$I1*+ H$A$R1w II$R1 I&I I&MQR1UZ M$AR1ۺ $$ѵ񛪪 !11" H$I$R1w I$I$R1 A$I$R1 l3I$R1 ض-[$R1 A$L$R1  A$R1_ H4H&q IIR1 2,@4R1 )nYvQ-+++ a'NbǓ 6ڶ @$ ĉē tIt @ ii& h$I$ $A$A$s I$ $s $IsI$sI$I$sH$s*I$A$I$I &j&Q\\\\ irQ5555 I$ ++I$I$1 I$A II  I$H$  H򬪪 0Lҳrꪪ ii򴪪 "S#5r   뺫 H$@$R MDND1 @$I$R I$IUUU- OJ1/ $R1 $r1UUU $Ir I$R1UUUH$I$R1UUU"IH R1UUU(I $r1 C$C%1UU 4i1UUI$H$1UUH$ 1UUI$A$r1UUZh I$R1HI$R1I$@ R1 I$R1I$H R1A$A$R1 Ntsd1.*,( $R1 I$R1I  15I$H$R\I $R\UII$1_ܼI$I$r1UU"( m&h&r__ )I1"("1@`)qn'wn H$I$I$IIH꾺HI$s I$ $s  Mڳ mۢmӽ񬪪 I$I$ӽ I$ $ӽ I$I$ӽ I$I$ӽ I$ I$H $I$񴪪  I$񴪪 $I$񴪪ڣ:1xxxx I$IQ0 IӓQ*+ II$s i&I$ @"I$񴪪 I$I$Խ HI$Խ I$I$Խ I[4 񴪪 I$H$ HI&񴪪 I$I$񴪪 @6m6rjjzs_1A$A$rIA$rA $r m&1  I$ $1  m5h&1 mRH$1𤪪 Im&1𤪪 1** Iaۖ$1* )Zm1 I)$ѵ񛪪 I$R𤪪 E41  i&E1 6m$1" ii&ѵ񛪪 -ҶM$1  mi$1@$I$1 ( i۴m R1U i$MR1U H $1 @&h&1 1 R /1𤀠X !&1 " I$I$1/ A$I$q I$I$q I$I$q P"%R"%1А ITI1 $$rz H$I$rQ< $m>Ф^ MM$Ui$U m-?Umm'U am$U m$U }$QNW |I$-*U io$U4m䓵U 0me$U a=䓵U 6&q$oUPI$rnUP2I$roU@I$roUTI$roUPI$roU DI$nU :-$R  I$*U mo$U Im$U4 RϤ + m4I4r A$@$񴪪 C۵C6Rbj 164&II$rI$IrH $r ڤ $R𤪪 )m$R1UH$@R1 I$A$q2 [ӵmS4R1zbh m$H$1&nR+ + H$ѵ񛪪(R؆E&@@&𤪫Hж1𤢪&'p 1 I$II I$R1zAI$R1* AI R1+.+ @$R1I$IrIA$rI$I$ѵ񛪪I$H rA$H$rI I ѵ񛪪 K&hr iI$q MIѵ񛪪 AIR1P 4P%RФ /NaR-)  I I$ $I$ ؆]$RX@<w m$QUMvr  M'U 0h+ФU M$ФU FI$rUh$I$0-UI$I$-UI$I$N UpI$rU pI$rU 4i$U M$Ummk'U i#4U ml$W in$UIm$U  Hl'ϤUMe'Umm$UA.$U0IܔrФ ar A $񴪪 R4k5Rbbjj H1o66&&I$ $rI$ $r:P1 I$I$1𤪫Z i鐶r Hh$1 E$1  @Z4i4ѵ񛪪 0C3I1w II$1ꪾ ) I1 k&[v1 IH$1} A $1𤪪 $qq I$@$qq IM$1 u i[4 $1 $$1*( mҦ $1 H$ $1 11 A$I$1 i;$1 $@$1 MI&1 m[-&1 E$I$1 A$I1 I$A$1 Iiq?Q? !&r H$ ӽ񬪪 $I$ӽ Xnk&1~ $ 1U Юm$1] H瓵1U XvI4RU X۶IRU EvI$RU -I$rU aL$r*U aL$r*U 0iJ2RU RU v?1U I$1 TN61 X٣>x^ 4Ir. $`i'rU ]$I$r Ib'1x nm4W $i$;U $I$rФU $u$ФU  I -)2ɳ @  X341`Α<4 & Mڦm1 IIۢQ I1 I$IRI$HR1UAH$R1U iж-$R1fU mR$m R1U Р)$R1jUA$ $r1U X34[6R Ӷ8*?U MSi1U m1U Ei4r1~U I6E$1  iRi$R IM$R1U m&ER1U  I$R1UI$A$R1U MK$1((( h$h$R1U A-41 H$I$1  iФA$1 I$A$R1juI$ $R1*%I$I1U k&[51U  $ѵ񛪪 ,1 v11 I$@$ c@$sj$H(6^4.ǓU aiӽ1$oT ĶI$rnU I$rnU PI$rnU DI$rNU DI$rNU @I$rNU PvI$rNU $oU i͟$nU i$oU 6I$rNUI$ U rI$Q-U mɟ$rU aw'rU 0Lr mr mm:rФUֶP  0m`;'^0IRr - @$I$ I$A$򴪪 -)[-R@@`@ 1466& I rIHrIIrЃ%X NPظ( I$)HrU I$ H1nUI$~i-UI$IN-U Iܝ$QNկIU IRU IҶUIڛHU Ir@nU IboU IU IoU IoU IRגoU IroU IboU InU I$HnU I$# InU I$$)rnUI$K~Q-W I$1   I$I$ѵ񛪪 I$I$q IIR1 P%`1 ِb) R  A$H$Q`` m6E6q1jj 491Ф IE$R I-ڶR1U I$@$R1U IHڦR1U MNB;1 lmۦ1ʢ 1 ,rI? - i0絛 $II1} `m61_ $A1 Ih۶1z I 1 Ii1 Iqq 1 IҢm1 IӢm1} ),)1j mnku1U in1* i6h}/Z `1 8 r A I$񴪪-?21```1I$I$rII$r $IrR%X1.Xؘ IUIl& U$au Ib@]I$Џ0NW VR IܖФUv6& r I$K=rUI$I rUI$I rտ IUoۤIU9$Hӽ I;&MR Ni+RWwnړ( U SUS'HUv^ UIb$ IU #U }N IU m8 M$h&1U @ I q1  6IQW ++`(rФ Yn.r) I$I$ 2ԃ39rjbrz @CR  IH6r1Zzzz چMڦ1ߪ 4IP1 + IA$rR [51U_Ȁ H$H$1U ҬQ`B$I0_** YN qU qh@М I6mQrU* vpMRI$I$r1U IER MҤA[4r1] i۶IR1U I$mR1V IR1U I-ҶR1U I$A R1U IR&R1U miҠR1U MҠm$r1^_X1( ]ibr I$I -1```-1N  $I$r &$vb'ѵ񛪪 k$m$1~ Z"&r'𤫃Pؘ I`QNU  InU InU InU Ib&HnU I$@nU InU InU I$[#HrNU I$&-HrnUI$n-rNUI$q HrnU I$HnU IRU INU IBUIҶ) U I? U Ib; rU I'mU i^rU crU o' QU -J%pn I$$1 I$I1 ؎q- r155 II4r I6I $ 28R .BRx  $Hrn I@rn I   A$I$1 *$I$1 $I$2 ېM1* -I1 L I$r m5]&1@pp I I@qq I$qq IM$1 9:1 IIҵ qIr1I$Ir II$1P MФmۦQR H6m61 I$I 1 0$1 )br/?? ".r I0rz 931xzz  M-R Iv)1 I$Ir 1oXظ( 㒛 rU CUòUöU yҖU yҶU I'hU I'&rUI& U ӶUO U IRU IU IbU IU IҖU IҶU I$ pQ-W IbnU IoU IbnU I&oU IR;`U1)R. I$I$R뺪 C!"퓵1j I$M$Q1j`b X%b'1n؜ )bn1  H$I  X;Rzx`CRФ i&@4R1 $IR +U i"Er\ )6h1o Ibۤ 1 IB۴m1 I'1 1 I4@۶1ߪ IR1 Im1 I$HӴ1 II R m6A&1  '1 I4I1U ii41ݪ i 1 ** IB1 m q I)R I$I$ Imۆmr Ibۆ 1(@ QФ: i۶iR M$H$򴪪 ؂-R@```pK 1oI$ rI$rA$I$r`xW1<$$, 6:c:r m$mrQ\|pp I$@$0 I$I40?/// 1 Q-I$I$ I$I$ II$ I I$AI$믪 I$Iﯪ H$I$I$A꺪I$A$ H$I$ M$I H$I $ I$ӽ H$I$ H$s L̄Lr0<<< 퓵`` )1  I$I I I$q I$I hJ1<<<$ )-r E&M6Q``hx   rjb`` J R  I I$I$H$Ϥ $ $QRA$I$Ϥ H H$ HI$ &C2 C0RKdH𤪪 TI rn II$qq II qq A$Iqq A$Iqq I$ $qq I$I$qq I$I qq A$I$qq $I$qq I I$1ꪪ   ѵ񛪪I$I$Qo vJ1  $ 1uUhT1N<<,$ !r H$A$񴪪Œ-```! 1 @ I rI Ar@ r r1<444 1؁Mr I I$񴪪 A $ I$I$ꪪ s&&rXxxry%%5 H$I$ AI$ `#2r~~$vH2rӽѬ $ %Jr $ s I$ I$A$s H$I  $I$sA I$sI$I I$@$ A   :RhxxII M&h5QU I$I&q1W 1 Uhm IR i$+H s * ma[&ӽRzz!H i[b'1U pB'N$qW  I$r1U U m-?rjU  ,[&rZU &id1~и'QmSd q-  !`r M۶"1 IsI$A$r@I$I$1UA$A1A$ $Rp]H$RU\UA$I$r1WI$I$ӽ2UI$I$RUH$I$RU;]I$H$RU\U $A$1UW I$R`1<444 iir)+ i4h$s4@#,````!A1N  6lئC;ѵ񛪪 B2F$1 I$$1 H$J$ tAm0  II s I$ $񴪪 @$񴪪 A$I$񴪪 II$񴪪 $I$񴪪 A $񴪪 I$$񴪪 HH4񴪪 mҶ+n v>.* 1Z,Ф``` IdA1 II$R1 I$ $R1 I$R1 ȅR&''' I$Ar I$H$RXX .-r````tIPIR  A$I$ $A$rRwH$I Ϥ I$r1 I$I$ II$R1of I$I$rnh&H$Qo pJ 1𤫫 I$A$qq I$Iqq $H$qq qq II$qq IA$qq H$I$qq I$qq II$qq $ $1 -m5ѵ񛪪H$@ 0')1 +I$Hr HtJR6''' i r I$ $񴪪 0r```pP1oI rII$r@$A$r HTJR6''' I I4r  A$񴪪 H$H$񴪪 A$H #ҘXXxp Nr%5 i"Ir A $ @&h&Mhӽ𤪪( ӽ𤪪  H򴪪 I$I I$I$ԽI $s I$H$ I I I$ I$H$ I$I$ A $   0````A`ARФ  'cR1{ I$a$ѵ񓪪 A$ q Hl LR6''% III$I$sb1hxxx tiF`1  @$ѵ񓪪I$I$0 @$@ !@0)1k-[ӶQ=_UUH$I$Q_II0  q I$ $1 UUU 11UU I$MӶWI$I r1TUUUH II$Ir1I$HϤ$Ϥ I$R1IA$R1 $I$R1I$II$  $H$R1j416. XKPR6''% I$ r II񴪪11`hxxI@I1N m5m4q C8c1 $I$rn HLd 4&&'  fwr0 )) 1 $r I $s H$H$񴪪 I$I$񴪪 A$A񴪪 $ $񴪪 I$H$񴪪 I$H񴪪 I H$񴪪 H $񴪪 A$I$򴪪 I$H$ H$I$ M$M& $I$ $$ A$H$ L$I  M&M"񴪪 (@ZrA$I s*Z ѓ```` y1Ф I$1 q1 R$I$ѵ񛪪 xx1%--- H$I$$s њ11xxxx iTH1𤫭 I$H$CCCC I H$qq @ qq A$I$qq HA$qq I$H$qq IH$qq n$1 $H$1 I$I$1 I $qq I$Iqq A$I$qq I$ $qq (i1 I$I$q1 I$MrQ * )Ir+) i RV[ I$@ RUU H$H$r1UW @$HR1UU~~ $I$q  r1- C'v'rzZZH IrQ3,rxz I@I1  amt1I$I r I rpt4Or75%% ۴ۓA$A I$A I$II $ I$h$   a H$I$ I$H$񴪪 IH$񴪪 IA$񴪪 IA$񴪪 $I$񴪪 A$ 񴪪 H$ 񴪪 AI$񴪪?:50XPPp )6r I$I$ A$A$񴪪 I$ 񴪪 #6`hpd@r𤉩H$ r1I IR+ IR$ $rR t"7S1$,*. II$r1 ++ Ai$r* 1rФ````P@RII$I A $R1jI A$rI $r $A$rII$rI$A$rI rI$IrH$I$rA ѵ񛪪 C6m$1 p$I$0 I$ rn$I$Σ $I$1 $I$ $I$rn $I1𤾞am1 #I IrI I$r L 5OR&''/ i4 HI$ 5```xPA@1I H$r rI$I ѵ񛪪 <'Ф---- L$ $񴪪 M&mҶr~~  1r~zxxN$W Jɟ$1n*UMvr U@mēФU I%}瓽U iUҰq'U4ieФUm$ФU i<ФU  dФUmm?ФU  AmؓФUmm$ФU m$ФU  䖷  itr c:'rzzz Iسr 5X#=Ϥxxxx @TIR!! A$I$R1 A$ R1 $ $R1zz ɐ r/-- I)6r I$I$r׿ @8P=ФhxxxiMR $I$I I$I$A$ϤH$I$R1I  r1 H$H$R1fu $I$qq޸/'W ` O1𤯯 I$I$qq I$I$1𤪪 I$A$1𤪪 I$H$qq M[m$qq H$ $1𤪫 m۶E$1𤪪 I$I$qq IH$qq I @$1񤪪 "X5ѵ񓪪@$H$RnJ1s1) h4 41(  r---- I@s I A$񴪪 19hhxxiFH1@$I$rI$H$r $I$r P r%--- I$$s H$I$񴪪$)91xmd$W 9m$Q-_I$ *U  ir- m$U 6$rUI&I$1NUH$I$rnU oI$rU qI$U DJI$r@n- č[=ӽ(S Ah;ФUMm$U %Ф* AWR  I$I$ Im  5X5r`pp Y`)ZR+ -&h&R1 K$m&ѵ񛪪 I$I$1h Q/--- mM$Q @$I$ Т9>rФ`hhx A6i5R𤡣 h6m$qH$I$01 II1pI1ꪪIu\W URpW1𤵯 i 1+ + I$I$q 1I$Q*I$II$IR1ꂪ AR$M$R1ZAI r1UI$I$r1U I4E$R1uI$ $R1H$ R1A$ $R1UI$A$I$I$R1I$I1P_UU @m&r r%%-- $A$s I I$񴪪X5ң=nhhxxTIDM1 hm$1 I$H&rn I$I$1N-%%%- M$Iq1+ iI$r)5UdM?1z^ I#$W m$oU m$U m$U I$oU m$U m$U mn$U4-$U 0M-UFm<ФUil'ФUD$ФU@NmU m$U 0 ܖs  V횶r+ m6k $h Ў1```p a$A$1𤩩 I$I$1 IIqH$A$rI---  I$Is* H$H$s P4`x !H&@1񤫪 I$H$BBBB H$ qq I$ $qq I$I$qq I$I$qq I$I$qq I$A$qq I$I$qq I I$1 -ڶM4qq I$ $qq II$qq I$ $qq I$I$qq A$1 A$@$1顡 &I$q1 I$r aۉ + A A$R $@$rRzd I$H$ѵ񛪪 I$I$q vIؒ1 -/ 'Q I$iQ+ R4 1h  Aq I`ِn1@IrI$Aѵ񛪪 UO.u--- 1m۳ AH  X5rz^0MlmǓ _idǓФUM,'U e<Um?U4m$U i$U i$U i$U 0m$U Mn$U m$U am$U Iw$U к9v$Q-_T )rN $Ar%1 + H$I$ ڈ$92 ''&rX iٰr1H H$rR뢺$I$rR  m4i6R 4TJr% II$rQ HMӤrQ" * -=r`hxx m'gNRФ $H$R1 /I$I$r1H$I1WI I$1U M$m$1UW^\ I (41( v I6 41 m6@1"  i )Ҥ1 ii$ѵ񛪪 m@$1 [[m$1^ X61𤨨 I$I$1𤪪 i$ 1𤪪 I$A$1𤪪]II$ΣI $𤪢 $I$𤪪 W$A R'iᖐ1+ H$I&ѵ񓪪 mI r TOr/--   A$ I45Фxhxx I@ 1I$I$rI$ $r ݺ6k!R ) --)  $I$s AS m6 ⍽rxxxP MҶk1~ I4M&1 1 + iIR1yA$@q2H$H$R1"I I$R1  HR MR1  I"m$R1  IIӴR1  M&m"R1( I$I&R1 I6h۶R1 I4mS4R1"  Im m+ڲ)R IJ -- EڤH$rzz^^ Iir ثxxx IӶ- R1 I4HR1 I$H -2,R@ 1 Ф---- I$I ӽ IA$rX֚;ФxxxXA$I$ϤA IϤI$ $Ϥ :̀"!R@ Vrn+ MCФU NR' hФUI$@rnUI$I$WI$I I$-)rnUI$o rnUI$ rnUI$MArnUI$N rnUI$n=@rnUI$m IrNUI$n#hrNUI$m @rnUI$I$̃_~ .m&1 H$i$Rn it1𤫫ƉH-1@J ---- $I񴪪 II$s #`*rxxxx IErH$@rAIr :>)1@K ---) I$񴪪 A$I 򴪪 9rxxX IA$1("\=1{ mMڤ1U )iv1  Ii1 * I6m1 "*1k1_ٔm1" I$$1 M)41 I$A$r1? I6MR1j I  Ih1ڀ  *2-1@@P IФ )) I$I$ I$I$񴪪  rpxxxA r )$A$R1- HI$s1TUUU ڸ#!@ 1n----C74rQ? I I rU}Jh$QxxxX 2vB1 $I$q I$A$r؊,1ФbjjI$IN+ I$i1UI$I$M_I$I$nU I$ rU I$HФU IUӒ@UӶ#7ФU JV Ir$oU IޚU ˒rկ IҶrU ֚U I$jE1.W^ $I$R1I$I$rIIr.)1@@ )---- $ $񴪪 E$M$rz P%h"QNppxX i'N;1 H$I$0 Ii0 i" @@ IP 1--- I$I$q1 iA$rQ %`1pxX iۢm۶1 AI$R I-1  IҴHڶ1 I($R Ih&R M)R1 I6i1 IҢH6ѵ񛪪 IHѵ񛪪 II41  Mm&1  IӢh1  I-&r I 2 ]ۮҢ1jJj!wr1---- Z mr  j ӽ P#Mr`ppX  d'R I$1 Ii۴ѵ񛪪 ۶.k!R𤪪N--)- I $s** I$Hs* X+hxxx c;C81kleA1CCB [ۮml1 k6].1 k rФ+ yζU I$U I$ФU I$ rФU I$$)LrФU* I$&ArФU I$&rϤU I$AU I$ ФU I ФU I۔ U ghr   q1  $I$q1 $a3سrU &H Nb$i1W|0 i @$Iҵ/۲1(8 1 r1 I&Mr__߿ IضM N$Nrzz IM&RUׂI1UI$H1U Ю[.R1ij@B ` -  I$@ s I$ s X&h&xx ih&r I$-1  IҴhR IӴR1񤻪 I1 NB1z  H1 IR$AӦ1 I$iѵ񛪪 m4M1 I$1I 1 I"M6q iҦm131Z'i!1BG ɐrФ+)-- жi `,RB$IQpxXI$Ir1I$I$rR+ʫ*$A$R? 4H R>kx [%HQ M$IrQ IIrQ b"&j 1nxxXX AI$1 A&I$q H)&R1 (ȓ)RФ@@ Iɔ Q.U) IoU IrnU InU IoU InU IbAoU Ib HrU I$ h1NUI$O2l U I$ 1 U I$) r-UI$+rMUI$I"BrMUI$Itr-UI$I$𤬃_IRn Nn1𤪪 A$I6q &8(1Ф` t Ф----I I$ I$A$#R*ФxxxxA$ $rI$I$rI $r¨͒!Rє 1))++H$I1 A$@skLkXX M6mR1W^~ H&m&1  I$rn -vi1 * ֶIvR1 i$I$I$I$QRWI$ϤIA$ϤI$I$Ϥ@ $ϤH $ϤA$A ϤI rR}gI$IϤ RϤ@` ِ Ir E$I$R $r b&^`rФؘ I$I  A$I$   RФ@@` I r  II&r i4A$rڷ}rФؘII$Ϥ$$r1H$A$Ϥ,RФ@@@d &` ) A$A :0r -6m rz&Q\T\\Sytr/-  Ir I$Ir $ r H$ $$r @RU $ $@r @6(6rH$JD1XX *q&1zH6E1 Ii1𤯯 ( 2!1@@@ t Ф---- I$ 񴪪 v80;s `&fhRXظA$IrH rI$I$r !!1@@@@p Ф-  H$I 񴪪 0&c#r j(fkR؜ $I$r 5Z#41 I$I41 ivI1 6ۉѵ񛪪 (2!1 I$I 1 M6m&ΣJ11 I$Ir IҦH41 @$I$1 I$A$R1e I$I$qA$I$R1* (1@@ Ф  I$A$ h E jjj Zfb6Rؘ a$ $ѵ񛪪 MI$ѵ񓪪 I$Iq ."(N@@ I1n-  I$r0 Z -&q1KDL1 @q  H$q  q ")(1@@@@IDI 1 [[Q0~zzI$I$0II$0/ `Jޔrr0 - A $r Iӽ `I۳r жIҶ mmm iIbے 4iNm $mvm mM  r bfrRܘ $rI$IrI$H$r,"(1N@@  `Ф--  I H$r X.h51` xL1-ؚ II&0 I A1 I4Mq)(1N@@@@  rN)+ im6r2 Nb';r1 {dKNؘ !I$q I$ѵ񓪪 $ $rI$A$rI$I$rI$H rH A rI$ $rI$A$rI$I$rI A$rI R1 IR1z $I$r H r*.(2Jjhj f&f1---+I$H$s* M$E r X!1@)rpb1-)--H$I$s* I$H$;tFrp ii$rI$A$R1JII$r&,(1@@J 1---- IA$ I$M&򴪪 A A$H ꪪ H$I$ EڶmӤ I$ $ꪫ  I H 򬪪 @ H I@r M&m2rW_Z IhArQU| Ir0* *_ I $Qi  IQ  H$)$R 5ۈm1T^׳ ywwDMQ--  mӱmó * I$$Խ Nl&lJB I A rR+I $rR;HI$RRhLC ͐>,R1jjj y1-)++I I$s $)fb0^rXXH$H$rH$I$rI I$r I$ $1 iIѵ񛪪rH $rI$H r $I$rI$rA$I$r $I$rIAr $ 3)<1:L)1@@@@Y%A$r))) PPs R#=@#8Q` iID*: lmѶ1U E4iR<uH$HR "H¢mRC/K? FBNr I$I$r_ c3CВQz zdHNؘ IH$q M$q I$I$ѵ񓪪,(rohhhh  r  @$I$򴪪 $ 񴪪  I$񴪪 I @$񴪪 H$$񴪪 H$A$s m'fӽ𤪪 p$I8r0xX^_ I Q0յ5 1ArQ)  I$I r IIӽ Iӽ򬪪 I  rK$N1nؘ I$I$R 111𤫫 $I$q*"1@@@` --)  H$I$񴪪 A$I$j 'b rФXؘII$r $IrI$H$r-R ar--) I$A 1 $I$tFuEsr1ؘ M&h R1 vB'Cr i$H$1  $1𤪪 -i1 * N$R1U -ڶIR1 ÖmIdR1**  $R1(" m6@$A$I$I$I$I$A$ $I$ H$ ,RФ``pp wr  A$r2 i i6rkmRФ< IϤ I$ϤA$I Ϥ,RФ`ppp )J1- ӽ񬪪 m;0c;r{l0t1Ф@I ϤH$AϤH$I$QR ( RФ@``p/)qr1--) I$A$  0 гr 0M2'Qhzp$J$0II0/// !rQ @ Aӽ @ I@ӽ  $ $ӽ $I$rzW &5r0`xIdInH$I$~I$I$PPdIT𤿿 ")"9@`pP p!nr - $ $r [ۢEӮrjos0|1<< $$R1I I$R1w$@$R1}(,2n`t T  I$A$񴪪 $b:6C:rjjjtt1(I$I R1w  X-C3%R1_p A$A1 q1𤫫 Iѵ񓪪 m6I$1 I$Q1UU I$ `Qs MQ A$I$R1[ I& 4q I$I$q A$I q I$I r $H$q.,RФ`ppPpBJ  $I񴪪 h۶m6rjzz~tLr &i6R1w} M$iR1UU_ H A$R1UUW - 1`pI 0 I$I$qö5Q0m]] NDID<>  Aq I$Iq I$ ѵ񓪪 ,01``pp9R r- i6rQ_N:Q_~I$I$0錄^yQ - &h1rQ= -r* I$Ar H򬪪 I$ӽ ӽ H$@ ӽ I$I I$ r iӴ@4rjjz|@W|T18<I$AHq2 I$q2,",R``MN  4rj~U $<0rhzz MDI-6 Iئ1 I q IIѵ񓪪"1Z#9N@`p s1r II$r c:C"Qzjh` LLN< IHq $I$q :t]q I$I$ѵ񛪪 I$I$qH$I rI$I$rI$Ar mI$1 mQi$1 (i$1 EѶI$1 mI$R IR4I$R1UZVR h[i$1,31:: YiR H:I$ mR4m&rjj hFQ Q4ΛI$HdIo1U :q%1)I'A1-+ I$I$s** Fb;'rE}RФI$I$rI$I HI$r.-1@p )vi1  E$I$ `$I$ I$I$ I$I$ m۴m I$I$ I$I$  @  II$򴪪 ۆm6  [ *iZ&rz &lX?r0x #t18 $2 iZI$1 mq$1 c$6$r15  2r 6 $* 0lm$( ڄUijrzXJ ۰mk$rRU $I$$rRU &HR1 @&Cr1ߕ Iir--+)I$Hs  [-[-jjhr@GXrФ؜I$A$rI I$rIH$r $IrI@ rII$ѵ񛪪 I r rI$I$r A$r $I$rI$H$r$I$r$r Ь2!1 2(21@`` VR%TB0r)   -ӽ 8@41``` IDIn6 $Iqq AAR𤪪$I$r"-51``ppٖMMr  i&H&ӽ񬪪 m.Eۮr0KD1n< I I$q I$H$q  q (01N```tJd Ϥ  H$I$Խ 4H$ӽ H$IԽ H$I$s I$ $s @I$ӽ񬪪  C8p'r0z HH$Q  Mr0-+  II۳r I$A$񴪪 I$I$ӽ I$I$ӽ򬪪  M$C2ӽ𤪪 NI1 R IP1ﯫ IIѵ񛪪((1`!NdJ  MM&ꪮ [2$۲%sWmRФA$H$rI$Ir$I$r 9@"9r15 ɖmٖ`I$A$s* 6b;8r4SKr1TTA @$R1ꮫ K$ۂ-R1~ N8@&1 I"M&1_ )I&1𤫯] h׶m41*U i41" h$I$1* -жI&1 )$I41 Aq$1 @1 1I$R1w M:I8R1} AB'$R1]#Ւ1 j)ar1 I I$ӽФ ][t6RzLRФ<4.&I I$A H$ϤI P«RФ IIv1  A$I$S RE&R`RФ44&&I ϤH$I$ϤA I$Ϥ@RФА !nR)  I$I& mX5r1hs$r^I$I$-UI$I$-U$I$1M*UI$rnU DI$U PI$U `I$U 0IqrФ irQUm&r0_P9|'1Ϥ`hI$I-6&'I$II$IIdaO1 B#%$M NMq- A IrQ m:r1@j 1<.&' I&q2 iS$A$ $ $ϤBRФ R-)) I$H$ mS4h6rjbhhDOR<.& H$q2 Ҫ6R1|||_ H"m 1ꪪ IM$1𤫫Z 1a$1  I$1 ж@R1?U ݊&r1U 4Hö8R1U $`$R1U (Zm$1 E$I$R𤪪 I$Iq II$1** iIҤqP#P1N𰰐'V1 I$I&r ۆm51 1<4& $I$R1U i&HR1 I$I$R1 4 1ФPPА M:rI$I$Q0__~x 4X40𤀀 IPɐL>&&' MiѶ1 I$Iѵ񓪪 mӶѵ񛪪 <@$1𰐐 tJT r1  I$ ӽФk5@-r1~xH$M$0xI$I$NU!$I$1MU$I$QnU `I$rU @nI$U mI$r(U I$r(U ݖr  ٖvr @򴪪 6h&rjhhz RФ466&I$I Ϥ $I$ϤI$ $Ϥ@#%R )nٖvr 4l`0rQp_W @!,QhjzzT  6&& 6q IH6ѵ񛪪 ]5C-1z R"%R%NА ` H$A ӽ _D51`T1n66&& I6M$q H$Iq H$H$q m$1Z E$1 U &i&1( $I$1" vbN$1 @ $1  $1 @ @$1 $I$1 I1  $-U  $q (#1**:* @JAR  A$I$ӽ񬪪 ][4mQ`x L1 m 0 !0rn )Iѵ񓪪/ْ1А ٖbAvr- IA$s** (,,Rjjj PL1<<,& E$I$1 $I$1 $I$1ꪪ @ 1Фښ ِR @$ $I$rzz $i'rФ^I$U@I$rUI$UPI$U@I$U @I$rU DI$rФ Iݖn + I r I$$rꪪ Z9؂51zxxx16i+A1 IB$I0 IP1 IIr1555 vvr I$@$ I$I$򴪪  A1HR HI$rUU I R?? I I$R30 ddHr177' ɖlɖ`I$I$s m ,m6r` R𤔔H I$rI H$rII$ѵ񓪪 A$1 iIR𤪪 M۠m$R𤪪 i&E41  A$1  iѵ񛪪 hڦh$R𤪪 m$R𤪪 iIR𤪪I A rI$ $r k.Ңѵ񛪪 3=А ?- 1) r ۳- `1jjIxn6&,O1!@R𤯫I$A rB=R%1)wfn1-  Ii$s mX5R`@@@ML1n>..I$Ir $MSѵ񛪪 II4ѵ񛪪 <1PPPTBI  I$I Mۆ'r IҺ9rz @$rU 4q$rNU FI$r-U 'I$-UI$-U @ɟ$Qn U M h1ir I$  ,1```  C I$Arn H H$1 I$1 P X164  $r @ i͓1`` 1Ф&' I$Iqq I6@۶qq IR I$A$qq II$qq II$qq IA 1 Pr? A!ar  I򴪪 ,11xxxx Ϥ&AQ II1 Iڦi[ѵ񓪪 I$h1-%%- I$m  I$mvs I$$ II[Rxp I $rUU A$I$rP I rAUTU dp1%%'' I$L$ $ $s 02r``hxdKdC1$H$ rII ѵ񛪪I$I$r%` 1NXظ8 Ir&Uɳ& U IU IҶU IҲUIrHU I&*oU 11 II rI A$r MS$ R4ѵ񛪪 @F` 1R   I$"5R-51``` pB1&I $rII$r $A$rP X1n<7m1  H$I6 #1``K1IIR1II$rr@ ` 1n<vj&m1  I$A$ꪪS-5R3,`t91 M6-&1 I$)$1U I&)$1 I I$1U Iiv1*  I۶-b1 I&m1By 1Ф 8 iir M m۶  <,1````  A$I$qq I1 $IrZ b1Ф8< &`r)  $ $s "Z5rjrxxd &B1Ф&AI$rII$rII r Hk1%%%% I$I$sI $1 6h6rhx ir1A$I R1jI r1* 4C2 CR1_~n p'H'6Ya 0m YnP0/ Ivvr0 I$arQ I&IQ  I$ rU -r```` !1  $I q I$@6q IڤA q h g|144 i۶+q1 H I$QQ QϤ`x I1  1I8q I$I$q hI$q X1<44$ IIrQ $I rQ* -;1rФ`!I 1  I $q i&i&q I$ q hȉDn<<$$ A$I$rQ A I rQ%X%1````Iɖ- v't;𤪸I$I$I$I$𤭿 I$  hq$ֶI$1H$QoH$H$M44n0 I$iq1Ul"&X9qФzzxh K1  I4m1 I$iѵ񛪪 AQ1Uu Xzpw14$$ irQ H$@ rQ )(rzxx` J@1  I$I$q H I$q I `~1<<44 퐶YR + h E$rUЊX-5xx p 1  h&m$ѵ񛪪 M$M$1ꪪ II$1ﮪ j$JN4 1&Q+ i$@ҴrQ M$ rQ I $ӽФ I $ӽФ A$H$ӽФ 1rϤ`h !I1 $ѵ񓪪 I$I$1 1 xH-<<,$ !1ۓQ  I$Ir-Z1``'J 1  $H$II$IIϤr,ȍr𤶶66  rӳ=퓽Qzx'p'1Ϥxxxx 91n I Ҵq I$I I$I$ XgH\1Ф<4$  I r   򬪪 ""1```p J1 M6Eѵ񓪪 I$h1vB1ڤ-1A$I$0 $I$1 I$ѵ񓪪 hH1<<44 nir I$I$ZX?:`'A RФ II$ -I$R1--1 `I1M Iiq) IaLr1+  X1r``A1 I H$ $At@1?-خ2 H$H1o4444 Ii6ӽ𤪪 A$ӽ  ,,```pII1 I$I R1 R$-6R1z I$ER$ѵ񛪪 hHn<$4$ )Yۡr1  IIr5=/  $r I @$ I$I$ӽ @I𬪪 ;C2Rpppp !`1񤬮 I$ 1 I$I-UU I"h۶R cgr-%- I$I$r@ $rQ9b&QϤ``xxɐ In  I$I0 I$I 0񤯻 6 1 8\R>666 iYr))IA$ $(h`  A1Ф $I$qq I$Iqq $$qq pHRϤ667'  A6r) I$$ꪪ 01` B   $I$qq I$I$qq $I$0 A$H$1 A$I$qq H$qq $5? 1z pȅ|QФ66&& ))r @$r 9R5xxxx)Ϥ ! 5 1z S1𤪽 Ii1 M$I$1-  I4s ** I$@$ԽUUmU M$I$s hS4ZRhhX :p1 $I$1Vm $I$1 p 1/--- I$ $s I A$s l-ڂ-Rhzzx tI1 I I ѵ񛪪A I$rA$ $r {1<4$$ ڶMӳr) $ H I$񴪪 IH$񴪪 $I$񴪪  I$񴪪1-```pJ 1 I$A$r H$rH Ir {dHdRM6666 !I۳r  I$+1ѳhhxx! I1 I H$rI$ R1 A I$R1VZvz pK1444 1۱R  H$ /1```p !JI1  h2vB'qÖI$q $HI$q pK1<<46 Plir  iI$R -ܯ9r``p1  IH4q $M$q pb3fl&0 II0 ɖv)nѵ񓪪I$IrI$I$rh*ȋR>66& iAr I$I$ ..-` )JIФ I$I$qq I$I1﮺I$Irxr66'/ I$ $) I$I$s k6k6RhhxxJpA1 I$H$r@@ rI$ ʦa{1---- A$I$sI$@s( mS4m6r`xh A A HϤA$A Ϥ h4(RR1j hJ𤎜fn 0Ϥ-/ Ir0+  I6irս i&Mr IH4 I@6/mԽzzzPӽФ M$-Z1UUU II1UUu H$I$1U  `  ImrU] M$m6Q Irz  IQ A I$r1U * A I$r1] A$H$r1] mҮmr1 MIr  IAڴrUC 1z"$ a𤩨 I$i1U I$Iq I$Iq HP PQ6''' C'aLÒr A$r]" P:=Qn````iA- i1WI$K&ꨠI$I$I$I$PPI$I$PPI$𤫫+ I 1MҤI17'/ IuP r0  IirUի* R#5R9rФ`` p1 I$I iѶmvR1I$ $Ϥ HrФ67'' $1r I&r Ќ1rФ````tHT1 I8aR1W MI$r $$q \H1n&&&/ $rQ II$rQ 19Q`px @T@1 H$H$r I$ ѵ񓪪 Ќmq J\J1n&./ 閶mnrQ) $arU I&H4r $i4r I$I$r I&vۓrW Z5X5rϤxxxx lm1n I$I$q I$I 1 IA1 ȥ\ Q6''/ 1Ir I I$  1Ϥ`TAT RФI$H$Ϥ I$ϤI $Ϥxt;5Sr6'%% I$I  pB:$I2rzꪪj"'x$Qxxxx I 1n iѶhQѵ񛪪 q q HL\R&''/ $ ӽ 򬪪 11``xh p1 I$A$ H @ѵ񛪪 I&E1ꪨ" " 1zjVI@1𤫪I$I$rnI$1HʄNn,&'' livr1+ EIr Ь1`xp `I1 @I$R1_ m;IB;r ")"91`Jjz IdI1n5% it)rQ= i4ISr﫪 1Ф``hHP RHI I$I hS4C6R1{zyy HMd1&&'' )Ir 򬪪 ,#0`hxxtP@1I$H$ IR1 M&hR1_V_Z JDKt66'' ӱr1  I$MPr a'س I$H$ $@ 񬪪 $񬪪 m6m&Rzzzz ِmVl1 H$I$1 I $qq I I$qq 0s 7Sr%%-- @ $r{{z~X6r0~H$I$0`xxzIfin I$I 0  $I$0  I$1𤫯HXOn&&'5 i&r am$r 19``px AtI I H$qq $qq I$A$qqHDtR''// A$Ar A 1:r```` rФ I$ qq I$Hqq qq $I$qq A$I$qq II$qq I$H$qq \Pr55%% I$A$r @4@[r`xX1#6rxx||LpϤ! m-R q 1 I$ $q Nس1)))I$H$s I$I 1 M&i sR 낵:R I1? m6RV {LI1--++ I I sI$I$ڂ1xxxTHPA1I I$rI@$rA$$r xL%Or6''/ Ii& A$H$ HH$񴪪 $I$񴪪 I$A$񴪪 I$񴪪Ф``pxP1A$I$rI IrH$I$r KdKRM6677 )&s I$ #1``p@1A$H$rA$IR1 m%m$R1vZVVHDLD16&'' Ir $򬪪 1#9rФ``` I`I1 C,۲5R1zzzZ11H$IQ67''M1Zr@ӽѬЂ1>ФhhxxIT1 a&ѵ񓪪 Nb&Hb&1 E$M$rn Ia2 iiѵ񛪪I$H$rI$Ir $Or'///  r  ",1p`px @Ф $ qq I$I1 $H$rȦW3%O'//A$I$s"""A$ $s X4X5RxxxxtaV R𤫫@$ $rH$I$rI I$ lI1 I$I$s"$ 1 8:rxxxx AiϤI$H$@$H$Ϥ &c2:R1j|Ϥ$& yw/Rr蘆-- Mmbr  m۶m4rxF>1WD'U']ö~_ uaӽA $ӽRUU@Ar H$$Խj $@ ԽuZ H$L$s I4mrꨠ I$E6Q I$I$ќ I qQ/ -&I$rQ** II r7! II$r I$Ir i4I$ M$Ir  M$ s I$IR@|\\ I$ESѵ񛪪 I$m&ѵ񓪪 < r%%-  I$s I$H sZ1X5rn```` DH@@ I$m1 1I$I$I$I$0pI$I𤿷/1uN 1𤯫 I 1 . ɕT rФ5%- Ir $I ӽ >P"%rФ``px dI4I1Ф R1W_ It aR1IH$R1 PJФ%--- A$L$I I$ 0r``` dlaR II&R1 I$`bR1 I$M R1z Pΐ Q%%- M$IrQ $ rQ =P#Qxxxx Yn1 I$Er I AR1U I$ R1 r%--- I$A$ A mظ51x $r_ 4ik$U m-$rU P=KQ.z_Dm&h1Ф I$I$q Hq I I$q O r---  ٖmٰmH I$ Ф`hhx va6hRI$I$IA H$H$ P //-  IM$s* I ꀀ {$xrmxx  P* I$IRU II$1U II$1 I$AR $A$ I$I  88Фpppx IT@1 I $ A I$R1 H$ R1 [5[%1 I$@$q MҶm[1M&h61𤪪IIn%%-+ MQQ0)U mI$rQU =Z#&Qnhx !'1Ф H$A$ѵ񛪪 I$Ir #9R"$1zzZR IPɔr----- IAr I$ 5R#5r``pp diIRФI$I$A$I$ X34C5rIDIr---- AIӽ A$򬪪 P8=r``pmDaRФAH $I  M'4C;R1zzZz LTN1%%-- 1`1Q  I$R$ H$rz^i$W nm$1U $hI$1 @&M$1z_ I 1 $I$1ꮪ H$I1 qq 0JQr ڤ$1z4kb'1p|I$I$nxxxxqV@ ) N$c0 I"m1#lI$II$M-%--ARr0 -   $r* У%Z&r`hxx TI4HМ I $qq I$I$qq I$ $qq P rФ--  $ H #%X%`xxx I4IМ I$I$qq I$Iqq $Aqq $I$rn qq I$H$qq H$I$qq ͔ r-- I$Ir I[ѶQ u" hQx !) 1 Ib6 1u3 $H 1A$I$r  R-)+ A$I s $IԽ $I4 I6mѶrR0A$I$r\Lq I$i$rUVPV mۮ-rUQq MڬH۴r $I s I$I s?4Z-1xhhx i۶Ev1 "* $ArA$IrI$I$r RФ%--- $ @I$Z:1x ld'W i$oU 0i$oU ؂%I$1 z_ hM1H$IrA$I$r iI ѵ񛪪 LdIrn7555 A$A $  -P`xxxf 0l1$H$R1 A$R1 H&m4ѵ񓪪 I|ɐLr%-- I$  I$$r 9P5r```pM1Ф 6C'CR1w_zZ1@ 1IdIr%---@rA$ӽ񬪪&j'r`xxx aA1Ф $-&ѵ񛪪 tB'L &q HI$rn it1*  AI$1 m[-$ѵ񛪪I$$1 O r%- $ @A$r P5R5xxxx ma1𤩩 qq AI$1 $I$r  1--+$I$sI$Is**Zc1xhxx ]mR𤫫I$r@$I$r c4c;ѵ񓪪 I 1--)+I I1I$I$1 h$h&RhhhxAϤA $rR_}I$I rR}u]  ۺ!R@@MxV 冷& iusA--  II C6k1xx $I$R1"I$@ q2 I$R1ߪ A$R1ժA$@$R1&A$A$r1H$I$RH$I$ӽr $A$ I H$ ԽWVzj M4@ rzꨠ $ $rQ|| AҤI$q1 IҠAQ I$Ir* Ims**  I$q IA$Խj i;A;R@0I$I$ӽRH$ $1\w_]IH$r 6:(1@@  Ф---) H$$ I$A$ X%jrxxxx TADH1񤩫 I$I 1* tB'C1訪|'r'N@I$I$˃ I$I 0-U*I$!IrU I@rФկ M$ 1-  A  h&j&rxxxx I$IR1yUww I$I R1 $H Ϥ 4(R@ !p  Ф--  I  $I$Z ФxxxXI$I$I$ Ϥ $R1 ͂.)1Ф@@ )J r-  A$Ar M$iQ$ӽ񬪪 `*rxxXX IҶmR1 mR1 i$ R1ァ ۺ)R@ Ф---) $I$>X;zz~ P=brФxXX CҶMR1 ( I&MR$R1" IR1U NbؤIR1U I$ $R1 I$H$R1n_W MIqƍܾ-1@N r I I$ AH s3?KXxz"I$A RU(I$I$R}#H$I$RI H$R nI1(  $A$H I$Խj j&h&\\\\ p  H$I$1 $H$1 $ 1 @$A$1 I$I$1 I$I$1 @PXXX I$I$R1 @$R1 I$IR1;QH@@I$IQNխ+ I$$7U I$ @rUI$$ @rU' QumQ&h$M60`'znpxXX I$A$r I$I$r IIѵ񓪪 C$L$1`hhIDI$rM----DI&Sr I$I$ XثrxxxXI$A$R1I$A$II ( )1Ф@@@ ɐ --)- H ӽ I$I r P5ZrxxxXAHR1I$II$  (,,R``` l Q---- 1Hr H$I$cƓxx I@۶ѵ񛪪 I 1 I$I$1 I$I 1 H$I 1ꪮ I@1 I$I$1 @ rn `Ar1 -Ъj>;rz~_H$I$0ꪪI$Iz Iin i4mq I%kS1#͐ (@@I$I$M-- vI$1=`18r0 /`$M$1`pxx @@$R I$I$qq HI$qq  1Фjj J---- A @ۢ X&j"rxxxx I H$qq I$Iqq H$ $qq (,(М@@@I$ RN+ I$nAU I$&ArU I|Irկ {vѶR=/ I$Iӽ𤪪 I I ӽФ DB'd r1xxxx i$I$ѵ񓪪II$rI$I$r m4 Z$R1Օ i)r)+++I$I$s*" I I$ԽjuYA$I$ I$I r?<I$IrL7 I$I rUP@r^=\ H4MA $s IA$s" @&`Ƴ1xxxz $I$rI rI$H$r "!1@` --)  $I$ I$I rpxX iH1 IӢm&R IRIR I)&R@ r I rH$I$r )1@ RQ555? A$A$ I$  P yrxxxx I@QrI$$r H @$R1*ڢ)1Ф@@pdJ-)  $I II$񴪪 X񐋅xxxXH$IR1  I$ L$L'q 1ФJ`II---- ӽ񬪪(A4ӽ񬪪p$KRxxXX &hrI$Ar :#'1 p2 8@@ )R- ]ϤUOIrUOYr$AФկ 8(5R r뻺    r P Ur`p A$I$qq A $qq H A 1 i")61: InquR-)++I s(II s* X5[1xxxhI$I$rI$ $r@$I B" C2R1 nnr-- A$I 1I$I$1 tL鄳Rxxhx A ϤA$I$ϤHA rR_o."1R@@@` z<0Ϥ55 1vrQ--  @$I$s쩞1xXI$A ϤH$I$A$I$I$$R1.I$ $1Pp@I IA$I$rRII$rH I$AI$I$  E$@4q c$DڳQ~zx I&Iq1 r I$ + I$I$Խ $HH$H$s Xnfr\NNI$ArwCI$IrRW_H$H$r1UUTX1Ф@@`@ I  II  I$dڳjj hfjfRX )жmۢQ II$ѵ񛪪 mR$m6q 99-@@@I$I$M---- tJar- I  $ӽ A$I @$ӽ @ $ rgrRؘ m mӶR1j dHAR1+A$Ϥ ,(R@PФ II$ $I$ %rФ؜ $@$ϤI$I$ϤH$@$q2 (1@@ Ф-  I 񴪪 C818rj XF`Rnؘ ѵ񛪪I$HrI I$R1 .("(RФ@@@@) m6i&  @$r jGzRI$ $@ A$ϤI$H$Ϥ $I$ϤH IR1 v$4CR1^_~ $H$1U m0mФj)ӽ $H$ԽiAI$ӽH$ I$A$II $I$I$ $RI$AIA$ $H$ &h泽\\\ A IH$1 $A$1 IH$1 AA$1 I$I$1 I$I$1 @dXDФP I$@$ $I$R1W I I R1 ,"(1@@ av!wbrФ ii I @򬪪 I$ r_ I$MQ I4hrQW_k5-Q~zI$IM I$H$r I$I r IIR1J$H$1nhhhhI$I$1n IIr555 ,ْ-r bFj$Rؘ $I$H$I$I H$ ")"(1@@@  r II$򬪪 6c۰c'rꪪ bEb$rؘI$A$I$I $H$ (RФ@@@@ 9OQ--// Mir* I$ !Fb$rФ $I$1ꪫ A$I1 H$I$1 A$I$1 H$ $1 I$I$1 $$1 *51zI$I$1ϤWH$I$0Ϥ $HI$0  }*l\1^ؚ &1𤪪^ 81* u d)1A-$hI$I$-+ I$I$0n-Юi$0 I$IN MI$0 0`1 E۠i&qq (@@  r $I  $rGsRxؘ I$I qq I$Iqq A$I$qq   @@@@ r  $ $I$ I$ $r $I$r H r Mi$r uv:Gr1pp`II$ѵ񛪪I$H$r I$r 4C;:r1  Ș) $I$s **A$ ԽV}i AH$```I$H$r7I$H$r7U I$I$r_ EG H"A$r I$s( $I$s I$I$ t Nr1```` @ rI$I rI A$r.1@@@@tJT I$@ v ;cسj b$f`4RؘH$I rI$IrI H$rI$IrI rAA$r  I r*.(1@@@@ 9WvUQQϤ=??; i)R m&A4jjj `$Fb$RؘH $r$$r1 m$E$R1hx .!1@@ P Ф I H$뺫 I I$ ڧEb rؘH$I$I$A$ LB$ :R1Uu (",1@@`IɔTrФ)  ӽ񬪪 ql`rj MgKRX m1 I$1ꪮ +b31h%%n@@@ OJ iI$ AԲ H$I$񬪪 @@ 񬪪  r A$I r ؇Erxpxx $I$qq A I$qq A I 1 m[461:**? 6r) I$I$sH$I$s( At@1hpxxH @$r $$rI I$ C2 0r1555 I+ +I$H1H$I$s ɄIlRhxxpIAr1I$ ϤA$I$Ϥ 5RϤ``` 5SQϤ=-/ ))Pr  I$A$s M 1X $I$QRI$H$ϤA$I$I$IR1&:I$ $1UII$r1I$I$rR"A$H r II I I I$ A $Խj C;2rx``` I$I q1 r--- maX5rt A$I I$I$ԽVI$I$Խji mir^VV@$I$r17I rR;I$Hr1Z(.RФzz fKN1))  H$s m.m6rjklrФ iҢir1 Ii$R1 IҶhR1j Z#141-``IIn--)  `0  I$I$򬪪  $@ӽ  I ӽ m6@$r MM188< I$I R1տW 11R1m  Hr1*RФ``p1s/r1--) II  h۶m6rhE_sRФ $A$ϤH$I$QRI$I$R1-#01``pN!I  I I$񴪪 C:$C2r``r {1o<@$I$qI I$rAI$R1(R` '` 1---- i[4I& m6E&rjjjj MD18<I$ $H$A ϤHIϤI$H  $ $q2 m&h"R1 I$1UU &aDHR2A$I II ӽI $A $I$ $H I$I$II$IA$I$ $I$I$A$ h&p'\\\\ ItI0 I$A$1 I$I$1 I$ $1 I$I$1 H$H$ $rj B_T H$H$R1 II$ H$I$R1 ,01Ф`ppP Vf  I$򬪪 A H 򬪪  򬪪 I$ӽ I rWZh [# r1zh`@ IDID1N> ۶ $1 $Irې1  MiR1H$I$1-hxxxI$I$1 I$I$r1' A!riik01<I$I$I I$H$A$"-11``` !` ) 򬪪 ]6m6rjtD|TR<<I$ IH$I$A.(,RФ`ppp 1R!er55%7 II$ Xm۲%s s4LRФ IH 1 A$I$1 A$I$1꫺ I 1ꪫ I$1 I$I$1 (H1B%r$Ϥr`zZI$I$ϤW++I$IQU+ I  r0+ wDtQ1𤘘 Mm1~ Zlm1A I$r"-11ФzzM4rI$K1Wc;D80ϤIIM>>2)To@OIm𤯜 mI$Σ ",Z%p  Lr ) @ērU I&c'Q NN1 I$ $qq qq I$Aqq ,#=@ I )) I A$s( H$I$r_w  $𤪪 H$I$𤪪 II$r9  I$ r sdNr1ppppI$I$r I$r $ $r C;Db;1755/ $ +*** $H1I$I ԽjjA$ r``I I rETI$rG@D II$rTEDT 6-r-<I$I$QI$I1 h$E"s Mmr1````I$I$rH$ $rI$r.-/1 `K)J1)+ A$Hs  @۶m6rjkkRФH$ $rA$ArI I rI$ $rA$H$rI$A rI$Ir"-1` iEQQ I$I r (6@6rjzk0s1A$IrI$I$R1 *> E$I$R1_V(1@PNdN1--- IA$ m6m4rjbs@[4R<<@$I$ $I $MR1Viij 1=1`pppqRr  ASӽ񬪪   rjjjz MDO1< I$ $qq m6M$qq>sRn6ES4𤏜@  I r H$@r $$񬪪 @񬪪 H$@򴪪   r k0s5rxxxx A$I$qq I$H$qq II$1 ("-R4r?? AAI H  i$I$ IMt1pxxxI$ArH I r $ C`B&1%5%% I  **A$I$1I$H1 6RxxxPI ϤII$I$I ϤP=P6RxXXx )R`r5%-- ۱a۳s I$ s MUo1I$IϤH A$I$R1I$I$R1 h6i$I$I$R1+I A$rR] 9RسR ݿ $؉ór A$I s*H$I$s P&I1 c:;RU $H$q1U ivinr  )&iڴr h4m  IԽ E"Is ȀMrLt6I $rWI rRʬ I R_\[_RPRؒ io-r  $I$s h6@6rhj`h} E R<$H Ir1I$@ϤI IϤ@#58RNppPPɐ$I$Ϥ +mfϤU 4ϓ$U 0I$U DI$U @I$U I$rU IPɔLN(.' $ $r1 iar>>H$I$R @ RФИ NNR- A$I s m6E6rjjbb< RФ44&&$A$ϤA ϤI$I$R1ꪪB#I$QN ɕ1N>7'% I$I q  Iq R1雙I$I$MXXI$I$1 OrU4@6hRkb 14$$&I$II A$$ <@$1  I1 @򬪪 ASi$R@@1<<&$I$I$I$I$$P#4 RФPА X777? I I& [2l[%r  AJr H$I$1ꪯ $$1 I$ $1 $I$1 $H$1 m6m$1 X&1𤪪P&s$ϤXXZII 1來- im rQ5  I$IR4r}kzj , R𤸼 I$I1 AI$q H$r @ 1::: i)ZRi4Xr0_~m&M$0hIIM6..M&I𤪪4af񤪪$@$ɐQo@"$R%N s9Q)kvmq1UC6r ɑIP<6&' mI$R @Ѷi$R $I$R #%R%-PI$Qn I$rU 0rɝrϤU virU (֮Ir ]隤1  E $rU in1X^^_HI$r@$I$rRAA$rR m&A&R5--'I$A$ԽUeUI$ԽU $A$ԽjjH$H$r p`I$@$r H$I rUAD H$I$rUA M4Ar#-I$I$QAI$1 R$i$s M$ 1xxxXA$@rI I$rA I r< R ibYnr- $ s * @$$rMJr𤖶 iE$ѵ񛪪 $I$r M4H4q Im$1 A h1 MM4ѵ񛪪 $a'1*#R<1ФPА: IڦAڶr1 I4Mr 2C34R@@ 1Ф&&I$Iq i H$R1/// IMR1@4 1ФА)`Q $I$ 'p$rjhxj@1Ф44&H$A$I$I$ I$H$R1 [%@1ФPP tn41  I6] r I6X5Rjjzz Iɐ44$ -6mӶqq غ5[6Rh6mҤ𤺪i%E2$N rI$rФU @$rU Imr  Q$g1U H$1U  Im$1U ֭m$1U  pQ I$I$rn AIqq I$A$1 @r/'-/ IA$r I$A$r m$I&r IvI 1xPXX A$rA $rI$H pB'H$1%  AIs I$ $1I$I$s I $RXXX\II ϤI$I $ ϤX/>1PXXXytK--- I$A$1I$I$s -@rz I$$ RW I8Z5a1U IҤm7l1Uw^HU)lUInۥAUil$'@1U vbR+* A @$s $I$s $H$A  mq H$H rQTTTT )vrI$A @$I$I$AԽU E&M$s ؤгrpvI$I$r@_I$ rR H R__\OC Xr17 I$H s k6k34rpxxpP .R& H$I$R1. **I$ϤI I$Ϥ ۲6]R1P` dծ m2Fb'R1Ujyy I $q r1U II 1UU# I$A$1U II$1U I$I$1U ] I$I$1 U  єmRUAA$RUU e RФ ibbr))H$A$ 2:Rjjzz 7BRФH$ $ФI$I$I$IR1ZX*1 biR  AI s/؂5```ɔKJ1I A$qI$ $rA$Ir1Zb*RϤ 1!R I$I m&mrꪪ k#@^ N2U NLU M²U IRoU IⶂU IҐU tpǒQKVA׼ Iر۳r)*I$I [?5XR``xxd 'BRH$I$ϤI$@$ϤHI$Ϥ@ P2< qgoِnR+@$$ ?c61hH$I$  llr I$H R1 I$I$R1 PX18< 1!R 򬪪 (-Q```` 91 AI$R1 $I$ II$R1 AI$R1]v I$$q Iq iӴmۢq q I$I$q I$I$q vL$ 1 I$ ѵ񛪪 I$H$q q $IR1t 18< cnr$I$ c?գ6RhrxxC)BRI$I HIH PX188< I)R  I򬪪 :͂<11`H9C1A$@$A$I$ $A$+X(1Ф< I  I4A jꪪ kA^ IBۢФU U I¶U nU ޺IUC: rU~I$v0ϤU_I$I0Ϥ+ eN0r0-  tn'dr *,:Rjjz J1񤬬 4$pB:1z I$H$1 A A$1  PyQ??? Zlar[XrQ\\1P1Qjhh` H 'mۦ0RnI$@ Σ maQob"&h&؜if)P1 $I 10pB&`&0Ϥ``LɖmM&񤪪B$QoI$ݴ*EI$Rn@m$񤫪[.Qo Λ I$I0 aq iѵ񛪪A I$rA$IrIA$rI I$rR IrQ?U4IA$r I$A ԽI$A$A$I$Խjj $ $r HHrA m;4m&R|?_ I rAQQ$I$r   HԽeI$IԽUUAI$ԽUZ 4iRXX08I$ r1I$I$r1WujIH$r`< r7// س)H$Is(( A$A$⪢q1^3UҲФU NnФU OBnrUӖrФU Ҷ@ФU OSv$ФUI$!@𤵯  I$ir]] I$r>[#R@```P J1ФI$A$q I I$R1 IIR1Ћ}108< M-rI$I$ X5@5Q`` /BRФA I$ I I$A@ PRФ Ynr)H$I$ ,-``  $H$RX5K&RnNIQo il Σ AR I  rn @ qq I$H qq IHqq IE۶qq MҶmqq I$ $qq II$qq A$I$qq I$I$1 pHp$r  mIr )$Mr I$I$S M)r1PPXXA$Ir $Ir$A$ MM$1--)  sI I1 E$i$s I4I R\\VVI$AQRI$IϤ i$h$R1 hL1ϤNpB-- H I$1I$ $1I$ $1I$I$1I$ 1@ I$sA$Is"*H$H$s($I$sH$A$s(I$I$s** $H$1I$I 1 ivb;r 6iRWWI$I RUU M$M$r1\UU -ڮE1 h&M$I  ԽZuI$A Խe]e [%[% IH"r7I$A$r<@$I$rRII$RsO pJr177'' $A *A$ s  4XRxxxx` tIR% II r17I$I$Ϥ AϤ iR4H&R1¢ $v81 mR$i&R1i ѵ񛪪 II$1 II$R 35U I$I$RPP@ II$1 II$ѵ񛪪 II$ѵ񛪪 I$I$R1g[A$I$ϤRФ44$$ Ilr  I$I$?Z3ֳ1`xzz'IIRФ  $I$ I$H$R1 I$IR1jʻ1<444 im[sr $Ir ,11r```!JA1o H$A$rII$rA I$r1bpR<44$ im۶r)I$A$I I$ $A$I I$@$  H$I" II$񴪪 I$ $񴪪 $H񴪪 t?&0X E$I I & $I$X퓽``R A I$rRIA$@$H$z8t1<,$$ iirI  #Г``I$I$n !!r I$H R1 I $R1 xHd1<,$$ ))r 򬪪  #` !QФ H R1 $  R1 I$R1 I I$ @R1 I$$ $IR1߯ A$H$R1  I$@$R1Uw I $R1e Hѵ񛪪 @$$ѵ񓪪 IIѵ񓪪 ؓh*R<<$$ )ڶ)r @I$11`pR I$ $I I$r1AA$ ` gx1<44$  r I$I򬪪 (Ȓ-````'RФ  $A$@$ I$I$RФ<444IID0 $A$ I$II$H$ I$H򴪪 I$I I$I I$I r h&m&Qzzª5S'Q0|_WKҤI1W5= Iv r0+ 8r iѶ-0l @$E5R``` Pm1񤬮 @$I$1 H$I qq m(ڦ1t<ȫr7%'/  $I$r M$H$rQ),Q```` iِ I$Irn I$ rn I$@1 {{Q..  Yo$r1I$E rQU_s&C9qϤzzx`II𤎜 I$h$$I$𤪿@I$꫿`I$𤪪`:!iꪪI$IRnI$A$Rn I$I$1 I 1 IAӠѵ񛪪 I$rI$HrI Hѵ񛪪A$I$R1*I$I RUUUI$I$R I$I$ԽUUWI I$ԽU]I$IԽj I$r\L

&)mfN0 $I$1A$I 1I$H1A$I 1I$ 1 I$1$H$1@$A$s"I$ $s $H$sI Is* "I$H$1A$I$1 @4@&rhhxx MfMr1 EE$ HN$1 ٖ1 芴mr%I$I$1II$ԽU] H6I$ !mڴiRVHI$rR"HH$RI IR Mś1'--/I$$sI$I$s5P5Rhxxx  vhRAHr1II$ $rRY} $I$ t$t$1 @ڶmR1 I$IR1eu I$I R1eUUU II$q $H$r1UUU H$I$ I$A$R1 H$I$R1u} )6IR1k[ik A$I$ t SRФ&&' IA I$  -`hhpIdARФ I I$ I$ $ IL$R1 KPR6''/ I8aسr II$s #11r````1oI$IrI$H$rI$H$r1 H TR6&'' I$ $ I$L$I$A$I A $A $񴪪 II 񴪪 I$I$񴪪 I 񴪪؍=ݳ0XZZZ m隶r $ $HH$ 1```xT RA H$ϤI$I Ϥ@$A Ϥ 0 2 RФ&&'% ۄmr+ $ $ /5``pI$I$𤏜  ii۶R1 I$I$R1 A$I$R1 HtJTR&&'' A$A򬪪 $H򬪪 00``hx  TI1 I$ $R1 I$IR1 I $R1W @R1{ I$I R1Uv I I$ IA I$IR1Wٿ R1w I I$R1_  A$I$R1uu_ H$H$q $A$ѵ񓪪 MAR1 rФ6''% ۶rI$H$ 0```p`@RI$q2I$I$I$A$HTKSR&&'/ a۳ @$I$-5```hP@RI$$I$I$@$I S HRФ&'% IM0 @I$ I$I$ I$I   I$I$ Cu6Qx cf$r0^W H$IڴЭ𫪪 Iir0) IMQr IIr r  ,-1zxzz pd 1񤪫 I I qq H$A$qq EE1뮮 ȫɗ/--- AAr M$H$rQR#1#q1zzz dD 1𤩫 I$I$qq HI$qq IH$1 S$Jr'-/ I$r뫪 MӶm r R#5-zzxx IT@dR𤺪I$I$I$I$PPII𤯯Mv𤮫 I4IΛ I4I  A$rn IA 1 I ѵ񛪪I$H$rII$rI$I$R1I$H$@$$I $R $I1AH 1@$@$1I$ $r6 IR$I$rPT  R I4I6rTA$ $rHA$AI$$H ԽzI$ $rT|F $A$rRI$H$r1zzA Hr I سR-)) A$I$sI$Is*I$I$s*I I$s** @$ m$($ I$I$ӽ I I$ꪪ II$ ir m6  i$I +II$ $ )1```ppPI1ФI $rI$H$rA$ R1xl4rФ&''- A$A$񴪪 $H$񴪪 36S21```hIT R)#I $R1I$@ A$H$Hsr&''- ñ۳I I  5P5`pxx @hIX6M&QoIi Qo 1AR I$ R I$rn  R rn HH rn  qq @$I$qq qq I$Iqq I$I$qq I I$qq ݊kӵR c'N$q1 08r0  nQ++ + $I$$ Vlr @$mrA$I r@ IR1} I$ $r I A$1H H 1 $IsA$H$rR^A I$ϤII Ϥ ?[#2R1p|p|LI../ 18Q  $iv$r*U q$r_ mI$rU m$rU V횤rU æijRU 6 M$RUF6y?1U4mv81U ЭIjdz1U Jē1*U vi$RU iRU MN81j !aR1* 6X% I&I$r 11R1) MIR-)))I$I$1H I$s  c'c'rh $ $rRVA$I$ϤI$I$$ QR ɘR I$A sA$$1 3 γRx )]۵1I A$R1*(/ $$I$A$R1 iҦ$R1~ h&K41W H$I$1 I$A$q I$I$q $ $R1yU I$I$r I$$q $I$1 m641( 4IlR MH4 =eJr%-  II i$A4ӽ ZФhxx !`!R I$IRR1 IAڴR1 I$h4r T r%--- I I$s II 񴪪X5b5rN```hI 1I$H r H$rIA$r KTI$1 */m$U I$U A$UM$UM6$U I$Uiv$U A$oU m$oU m$oU 9u$Q _ my$R 0Mv䓵 H'U +2}7Q.z H0RI$IϤII ϤI A$Ϥ p rФ%--  II$ I$A$ꪺ 5ФxxxxL$J𤯜 $ R1몯 A$$R1 I$$R1k ɐr/--- A򬪪 @򬪪 8 ȓxxx  m1 $R1 II$1 IA$R1 $I$R1U m[m$R1U m۶h$R1u I $R1U H$A$R1U $@$R1U I$I$R1U I$H$R1U I $R1U A$$q iIѢ1 $I$R1  'P rФ%-  I $ & 1R#5Фpxxx IRI$A$A$I$HI$R1 r---  A$I$񴪪 $  1/5Фxxxx M4IRI$I$I$IH$I$R1 :HJb ZI$1N* m$Umm$U #'U Hn$U Im$ФU 4hco'U O$QnUI$nUÐ&I$0 *PN$r U md'rФU I$rФU Nm$rФU #>MrФ~_ !&I1𤫫 A$ ѵ񓪪 I$ $1 I A$1  6`1-- H$H$rQ@4h r1zz !&H1 I$I1 $I$1 $I$q 1-)  $몪  򬪪 # r1``@ !iH1 m6XΣM$M&vI$I$PPIvɐ𤫫&h1 I I1 Nqb$1ꪪ I$HR$rn a'I1 iѠiѵ񓪪A $r@IrR1I I$A$ $IH$rA$H$1H $1II 1I ӽR I$H$rQ A$I$rT IAr@P I$ sA$I$A$I$I$A ԽjjI$I$rSI$ $R|sI r1zzz $I$r H$H r m[$r_ ڵM$rU @uM41 ۆvI$1 vI&QU hi$1 谶I$1 $aa'1} $I$1U ТM$UDR}?U$lǓU m;U m,<U 5[ro f 4A1I$I rI$IrI$H$ѵ񛪪 $- Ф---- II  i&I sخ5Փ```x رMRI$I$R1I$H$R1A$I R1LR6---- I $ I $ ؃9Z5Фxxxx]6ФMڴi𤪪* I-1𤿿 I $1 1 qq $qq H$R I&i1 1 $ 1 1 I$H$1 $I$1 I$A$1  $&1_&WZdѭ﫪nrQ IIr I$H$r I1訨 II$1 $r@ I r1?= I$I+ AI$1II$1 I$I$r`I$ $ϤIIϤA$ Ϥ`#:?:R I1/.+ iI$II$I$Ϥ $A Ϥ $H$Ϥ I$I$I$ϤI IϤA$II$I rRU}A$I$I$$r1@$I$I$IϤI$ A$M$ B:M'R1~~Z^ H4Ir mْmR1" iIr---@ I$1I$H$1 @$@$rhhhhI$ ϤI$I ϤH I$Ϥ m6h6Ϥ jR-)++I$A$1I$H$1 i&A$ ~";l^IAӽФ ^&AU CU #ѐ@rФUI$M-W I$# IrUI$$ rUI$ rUI$$ `UI$$ U I$$ rU I$%) rU I$m-@rU I$&rU 풤HrФ  yVIbR  I%K6l򴪪 II$񴪪 Xyrxxxx $H$rH$I$rI$Hr )1Ф@@)N--)  A$  $@$򴪪 ؃5P%rN`xxxtI'JR𤫫H$IrH$I$rI I$r IڤI 1 im1 AH 1  IR@۶1W I4I$1 IӶHR ISmR I$HТR ImR IS)1 IҦ-ڤRb1?1~!ibn1 I r1տ I4-4r1U I[4ir1U $I$ϤI$IϤIA$Ϥ м-(R@@ ) Ф---- $I 8c# XX+xxX KK1  $Ϥ  <,R@@ttJФ---- $I$I$H$ m6br^z C_ yNФU kmФU Ib'U I;U Ib'rU IĶHrU I?AU I$U IHU Iߛ$U IϤU I;$HsϤU I'rU IFrU ksr*4M$ 1+ AH HI 몪 XrpxxII$R1UUI$H$R1 I$R1 &-RФ`@ J ---) H I$ I $s XګerpII$R1 I$I$I I$H ڠC'R{說 iI1** LQ II۶1 MҦhѢ1ހ  I$h$1( -h"1 4C3H$1H H Im1 Ii۶1 IҶ1 I$I$1ݺ I$H qq Iqq @1 ( $H$ѵ񛪪 I$I$ѵ񛪪 H$Iѵ񛪪 m&i6ѵ񛪪 R $A$򴪪 mrQ<<7 M$mr1 I$I$ѵ񛪪 I$I$q I$ $ѵ񛪪 EӶh6q BtNr I $ I@ A Hrzꪪ M&H1W ~UI$K'QW^I$I$癩կ I1U qϤ+ Kr$կ Il 1U I;!1 I$pB8r0_蠀 IH$Q0շ IѶilQ-/)- 1۶r I$A$s" $Is*I I ԽUUuI$I$ԽUUW $I$1I$A$1I I 1A$I$rAI$ӽR == I $rQ I$trPEWI Ir?I$I$ԽI$I$I$H$ $I$sII$r3@$ $R{{II$1pp__  H$rI$I$r$I$r $A$ѵ񓪪 MMѵ񛪪 IH$q H$I$1꺾 Mڶm I rn Ih۶rn I$ $qq I$ $1ꪪ IҶir iRmҶѵ񛪪 M6IZѵ񛪪 IҦH1 I4Ir1UH$IrI I$rI@$r Ҩ, 1Ф@`Jd - H$I$I I$s hҥk1xpxx II$R1 $I$R1I$@$R1 !RjjwR)w --)- $Is* [%X%rxP1rx|z~I$L0_I$y7 QU* IrrϤU [n$H IҶۺ 1U* I@RU mmrU I$ rU I$rU I$IrUꪪ Imr IAr  @r I Ir I$I P 5 r1````Hѭ﫪11r0=== IAr @$H$rjjjj I$I$1A I$rIA$r A6 &1555 AMs H $1A$I$1 I$IR@I$A$ϤI$I$ϤA$A$rR~>1 XI1/+ I$I$ $ϤI $ϤI$H$ϤH$I$Ϥ$I ϤI$$ϤA I ϤA ϤI$A$ϤAI$Ϥ$ Ϥ$IQR$I I$A  m[m&R1 C;tbѵ񛪪 iIr  R4r1 ilI۶r)/++ IiФsH$ $s  EҤMڦR````I AQRI$ QRI$I$Ϥ m!k5rRݟ Ii۶r-))+I I 1I$I$1I$Is**I$III I$II$I$ cQ`hxA$I$祿> N8t ےr $s (m۴ӽ $I$ӽ A I I$ӽ񬪪  $s ZmZS I4I s A$H$ I$I$ I )&I$jjj FjRxؘIH rI$H rI $r )1@@ -  I$A$ I$H$r ` bRXXX'I'R𤫫@$I$rH$I$rI I$rA$I$rI$H rI$I r@$I rI$I$rI$I rI$A$rI Aҵ𛪪 $$rI$IrA$H$r (,i1肠N!1 +@I r1I$H ϤI$$ϤI$$ϤI$I$I$H$Ϥ( )R@t I) I$H  c;6b8jj X rؘ HMڤ1𤼾 )iϤ@I$Ϥ R@@ ` A$I$I$I$ $I$I$I$I$ $ I$s I򬪪 I @$򬪪 @@B:_ i򬪪 HH򬪪 A 򬪪 $A$򬪪 A @    $ 򬪪 $ $rll I$IӽФ II$r A$A  ۲!۲%r hfbRؘIA rHI$rA$ $r ,(1@@@@ p  H$I񴪪 ]ѵm5r `Fj RXؘ $ $ $I A I$I$R1 24m6q vNbq I ѵ񓪪A$H$r@$I$r m&M$1*꺪 C3H$1 M$ I$I a1 I$I$1 I1 $H 1 I $1 I$H$1껮 I I$ I$I$ A $I$ ۺ-5q i r-  $B"rjjr0 mhr1```` II$q q $I$ѵ񛪪 M6m6r1Օ r))+ I$H$ @򴪪 H  A򴪪 I$I$rj"&h&rxxx|II0錄?? 01-+  @r IH$򴪪 18Iijꪪ t$Crzz A I rQ_| I&rQ== 11سr +$I 1I$$1A$A$1II1I$I$11I$I$1HI$R@A$A$R) AI$r  I$I$rII r<0I$@$I$I$II$H$IrI$H$r}D]H$ R$ $r1I Ir M I$q Ei$ѵ񓪪  @ѵ񛪪$I 21| &a1 I$I$rn I$ $qq I$I$qq I$A$qq IIqq i1 I r$I$rA$I$rI$ $rI$r1@ r@H$rI$$R1,.)1Ф@@tR 1-)))I$I$s*  H$H st1xxXI$A$R1ꪪI$IR1I$A$R1ø훲-1@@@@!`1---)I$$s :@$rhxxXh6m&Q0XZVVItiQ// IiQ- I A񬪪 H@򴪪 II 򴪪 $A$ A$I IH$򴪪 I$H$ I$I$ I$I$ IA$򴪪 IH$ I$I$ 99r0````mdHp P r0=555 AI r I$I1bjj I$I$1I$  r $I h$15555 $I$1H$ $ԽkieiI$I$1 I I$R```pA$ H$@  A$H6r1 pų$1𤠨aO1S1 I$A Ϥ I$ϤA$I$ϤH$HϤI$ $rRW $I$ϤI$I$ϤII$ϤI$ $ϤH$A$ϤIH$Ϥ$I$ϤI AϤI$I$ p;R1 C'NBR1j___ M$I4r IiR1յ $c"&c&r1??  r++++ I$H$s iI$* MIRxzZZI$A$ϤII$ϤI $QR -ݲ%rQ )r + )H$I$1I$A1 $H$sH$$s $A$I$ $sH$Hs*5P#-1hxxx II0路?? mۦhӽ H$ S ӽ񬪪 @ӽ񬪪 ӽ񬪪 I$I$ӽ򬪪 I$I$ӽ򬪪 I$I$s $I$ II$ I$I$ I$I$ c8&c:rbjjl|18<I IrI$H$r@ r(,1``pJt  I$񴪪 c3$dzrjjj pGJ%O1It R𤫫@$I$rH$ $rI$IrH$I$rH I$rI$rI$ $r$I r $ $r $I$rI$A$rI$I$r@ $r $H$r 4b;4C0ѵ񛪪H1//$ $rHA$ϤI$A$ϤA$I$ϤHI$ϤH I$Ϥ","1R``pp/NtN  I EӶ@6r`j r LR mMd1>>> I R1 I$ $Ϥ RФ``ppO/N1--)I$H$H$I$I$I$񴪪IA$I$A$ I $s   @$$ 򬪪 򬪪  򬪪 򬪪 򬪪 A$򬪪 򬪪  򬪪 AI򬪪 IIrhx HH$ӽФ I$r H$H$ ER4rjj|1 $IrI$Ir $ r-11N`JIФ  A$I$񴪪 c:'rjjz|GT1 $A I$II I$R1 ò%˲$R1 puc'ѵ񓪪 I$Ir iI1 &I81 (4I$1 [۶61 6m$ iIR Imb1 I۠iۢ1 I$I$1 A$1 I$ 1 IA1ꪪ IA 1ꫪ I$I$ѵ񛪪 I$I$q I $ѵ񛪪 I$I$ѵ񛪪 [5CS4r1Օ I)r  (P#,1```  MM1``xp I$A$q I$ $q II$ѵ񛪪 $C;C2r155   r  II$ $ $ I$I$򴪪 &m6rh"&r&q||\~IPr蘆-/ IIr I$I$򴪪 I$$򴪪 A$H$ iӢ)rꪪ M&h5Q~ Ii&q1. 鐴ɚdr  $I s I$H$1@@ 1H$1IH$1H$I 1I$I$1 I$R@``` $A$R=? I$I$r\$I$r\4A$r$4AI$H$A$IA $H$r@@@@A$ rs I$R?oW$H$r1TVUU M$i$ѵ񛪪 I$A4ѵ񛪪 $I q XX1 IArn Aqq I$I$qq I$I$qq $I$qq I I qq  qq li1 I$ $rII rI$A$rI $A$H$R1jjI$ II$ H$R1.)10 nlR II$1 IA$s Mfit1X^IIR1I$H$R1뺮 HI&R1-51`` iu隢R  H$򴪪  50`ppx@$H$p9Rdr055- I r 򴪪 H 򴪪 I$I򴪪 I$I$򴪪 I$I$򴪪 I$I$ I$I  A$I$򴪪 $ $򴪪 I$I  A$A򴪪 H$I 򴪪 H$I  9P51zxxhESE&0訨`SQ0%%% -ir AI$@``` kui61 @J1#  $r E&m1%%%%I$@ sI$IԽiiYH R$I$RppPp $I$ϤIA$Ф c:m"R1b h4M$1rnR15 = I$ $ϤH IϤHrRwwI $ H$ϤI I$ϤHA$rRH@$r1HI$ϤH$I$ϤA $ϤIA$Ϥ H$ HA$R1 hӦI$R1~_ t$ѵ񛪪 $Zѵ񓪪 ĉR1 %[Rr1?// iR$ A$I$s i j KI 1xHI I H R1 $R1 R3>>> iiR1++ H$ $Ϥ09RNP i9'rUmu$Uml?ФUiēФU mm>ФU 0iǓФU I%6ФU Iɝ$r U mɟ$U 0n$U Dr$rU Γ$U Iɛ$rU $U q$U @I$U @ϓ$U ~$rU 0vI$rU qrU m'rU MU$U 1 ..'%H$A$r I$rI$I r@1АB1  I I$񴪪 cڄc;rzjjj  1<, im4R1U c'R1꿺U mM$r C'pB;ѵ񛪪 MH$1v A1𤪪 A A&1𤪪 HA41U M6A$1W C[]61𤪪HѶI$𜪪 q 1%J R1 AҤ $1 h"-$1 A$I$1 I$ $1 kMҤ1񤪪 $I$qq I$I$1 H$1" mmۦ1(" I$I$ѵ񛪪 Ā r155% r ,``pp p P  II1pPpP I$Iѵ񛪪 I$ $q  IC2R nƒ1%% I$ijr* Ei$rU $I$rU жI$rU $I$rU ú]51jH$I$0^ 9Sr---- mmr  r E$I$r $Ar $A pb&dzr^^^{ H A$r0 1AĒ1 / AI"I$I$sI sII sA A$sIH$sII$sH$I RppppI$@$R? I$I$rOII$r=GII$r/%I $ԽH$$$I$@$ rp`I I$rEGqH$A$r1zz I$ѵ񓪪 Iѵ񛪪 H$H$ѵ񛪪 iҤHq h @61 A$I1 I I$1 H$I$1 I$A1 I$I 1 I$ $1 I$I$1 IirI$H$rI$Ir$I R1*@I$R1noI$I$R1j $I$rI$ $AIR13r1Օ5 iY۵r) I H$1 $I$ ~S<@r1|IH R1 A$H4R1 H I$R1ꫪR/#1 0P @I-I2 U I-U P/&L$rϤ~WH$I$UTrϤ* 0i䖰  I$2 0 ׸RU M$RU жI$R h6m4rU ТmrU Ir A$I$r $r I II$ II$ I X34X5Qxzxz&N$0𤨪Vd1?=5 - Q   `ppP I I$rn I$1 $I1 i1%% A1I$I$Խi[UgI @1I$I sA$Is $I4 d[35Qz``` $ 0.. qj1  I$$_ I$۶ar MҤE rU M$HڶrW 'MrU MirU IdYmrU ]Ӷضmr] I$rժ q'mr] iҶEr] IڶmrU M&hҶrU IH$rQ A4mq1W~ I$iqU׿ IZrտ  In-a1 m{n7lrտ* cضmI$I$s F ;c'r` ɖ `r1I$H IA$R1A$A$Q2A$IR1II$R1AI R1I$H$R1"II$R1 I$I$ IR1UIR1/ &h&R1U} ࿺1^ Ii1 v&dB$1w IҶ-ڶ1ݪ IҶ-ڶ1 I&I1ߪ I-ڦR I4Mѵ񛪪 Ii1  iMS1 IR i1 IM1 IMѵ񛪪 Ii41  IӤM$1 iRR𤯪I$Ar $ rI$ArЋک}1Ф 񖶮 ӽR I$i i$ &sꪪc1#̓nzh IVnU IU Iһ$oU IU IoU I&nU IbגnU Ib@nU InU IbnU InU InU InU InU I nU*IbIU IK1 վ( IUIҶ& UIN@UIҶIUòIU NU )5J  ImlsI$I c9`=9R`hxxfC/b1 II1.??; 1R1 i $R1I$H R1  I$)ҢR~ H HR1U I4hr1U ImPr1} IZI"R1  I"mR1"  MI"R1("" IA q I$A$r IA$  @1 I I 1 I1 I$ $q I$I$q I Iq Hq IR4m&ѵ񛪪 HH1 iH$1 II$1 q¡r II$R i R𤯪I I$r I$rI$I$ѵ񛪪@ X1 iv1  )$I6r &o?rxz_U 3HLrz &rU ݿQU 4&HQU I$$ l1nU I$j%A1nU I$<I1U I$$)L1UI$$)1U I$$ I1UI$KuMWI$IMU* ɝ Rկ  OUO) U w@U Iښ ФU IRФU I$[&U I$&)@rU I$&rФU I8&ФU IU KN$  i$AQ* I$ $򴪪 =ڏœpPX iڶr na1XXXX A$H$ѵ񓪪 I$I ѵ񛪪 mӶm m50`q Ih I$I$q I$I$ѵ񛪪 I$ $1 A$ $1  [51H$I$ tJ1 I$1 $I$1 I$I 1 m-ڶ1 I$I 1 I$H$1 h6I& -m )IqI$I$rA$I$r$IR1UUU AI$1 ڶ@&1 H$I$R1} $I$r1 I$rU $I$rR>}U mۮ-rRuUIHR I$I ԽeWu@ԽUUI$ ԽuwH$H1A$ s m6A$z IH$r I$tr*  H4m_ I&m$rU [-ҲrQꠀ   rU m6 r H$r I$Ib I$IB_ Ilj r I$I rU iҶ:r_ $ZRU Ib6 QUoR(l_I%HWO$mU OoUm& ժoU; * R* I $+ I$I 1 @ r Ζlbr1\ H$IR1 i$iR1 I$A$R1﮻I I R1磌 )R4m6R1ue I I 5`-1zIIiRn   R A 1 M۶m1 IhѶ1 I$I$1 M۶m[1 I$I$1 A$H$1 I$I1 I$I1 I I$1 A$I1 H$I$1 IA$1 C& M21K$h&QoMI񤪪 6!0 1 I$ $qq I$I$qq H$A1  I$$1H$I$1A$I$1I I$1I$I$1I$I 14-0`px IIQ55 A[t-mrI A$1 $RI$H$1I 1 $H$1H$I 1I$I$1A$$1 H$I1H$I$1I$ $s EH4 -&M4rz^^ h&-$rQ_ I$I$r0 rQ+  NIӳr* IA$s* $sIH 1I I$1 mm6r`hh tBr1I$H$H R1I$A$R1I$A$A$I$R1몾I A$R1H$ $r1I$ $I$I$ϤH$I$R1ꨨ h&h$1 -֢m1 C&N$1 I1𤯫 #<1C I$I$qq mѶE1 dOC1 II$rH$I$rI$H$rI I rI$I rI $rI $r$r$$rI$ rI$A$rI$IrH $r xRФ4466 r I$A$񴪪 񴪪 1````mj I $񴪪 񴪪 H񴪪 H $񴪪 IH$񴪪 HI$񴪪 I I񴪪 I$H$񴪪 I $񴪪  񴪪 H$ $񴪪 $ $񴪪 $I 񴪪 $A$񴪪 A$H$񴪪 Jǒ I$ $񴪪 $I$IA$I I$  $I   I$ꪪ I$A񴪪 H$I$񴪪-1``` il1 IdI1/./* дM4q qR1I$I$q2I I$R1hA$IR1 $I$A I$ϤI$H$ I$ϤHA$ $I$R1뮪 I$ $R1U $HdHR1 $I$ @ $R1m}U H$I$r AI$R1{UU mi6R1YUU  I$ѵ񛪪 $J"I2q @6M&1꪿ I$I$q II$q A$H$ѵ񛪪 I$@$r IA$R1~w II$ $IR1oV H$I$ѵ񓪪 ö%[$ ` Hdn<<44 !MrQ Ҽ1rQt1CQr  ٖvrQ* A$I$rQ A$@ rQ" A I$rQꊪ M$i rQ" I$mrQ I$@rQ I$M6rQU  $I$q1 IIHH$0II$0錄qWq1--- I I$ I$I" II$ @ 񬪪   H$H$򴪪 A  몪 $ӽ ӽ H r @A򴪪 @H 򴪪 X*rgܜ  @$r몪 )ir1\\\T A$I$ѵ񛪪 I$Iq I$$ѵ񛪪 I$I$ѵ񛪪 IIѵ񛪪 A$I$ѵ񛪪 I$I$ѵ񛪪 I$@$1 A Iqq  591II𤾯 !!`qq @qq I$I$qq IH$qq I I$qq MۤH&1 I4i1 Mi&1II R 11 I$I$ѵ񛪪A$rII$r H$H 1 Mm 1* I$Ibr I$H$ I $r1 R1ꪪ !R1*IA$R IIԽUUA$H$Խ]WeIH$ԽUkVI$I$1 E$M$s $I$ I$Is**I A 1I I 1 (s I$H& IB$@r IvnIjiI $1I I$1I $1I$I$1IH$1A$Is"**I I$sA H$sI$I sII$s"H$I$s(I s*$I$1I$Is(I$I1H$I$1 X5&rxxz /vR1 a$I$R1AI$R1I$I$R1$H$R1H I $H$q 91~^~~)РhP𤫮m񤪪 -IΣ  rn i)6rn I$I$1 I$I$qq qq A$Iqq H $1 $I$qq I$H$qq IA1 m$m[1 hm[1 I$I qq h6MӢrn k2&&𤨨Qo 1h1R qq qq $A$1 I$I$1ꪪ I 4Q A$A1I$I1I$I$1A I$1 I$1I I$1%&0xxXX Itɐ5 I4Ir $I$1 I$$1 $I$1 $I 1 I I$1 I$ $1 I$I$1 I$ $1 i$I&sA$H$1 IM$ DB'$r~_ @"M$rQ|_ A$I$q1 I!rQ/+ Iسr I$I$ IH$s*IH$1I$A 1H$$s ;[&Rhxzz IMR1 !A$I$Ϥ $ $ϤI$IIHq2A$I$R1*I I$R1I $IH$I$@$ $$R1 t8$i2 $81h $I$1 ɚdM1𤯯 b"&l1 $@$ 1 I$@1뫺  n 1=I$@$rH$ $rI$IrI$ $rI$I$rIA$rI$ArI$ $rIArA $r I$rI$A$rI$ $rHLtR6''% Iis I$I 񴪪 A$A 񴪪P/9#10ppppMM0 I$H$򴪪 A$I$򴪪 A H 򴪪 I $򴪪 A$I$򴪪 I I򴪪 I$I 򴪪 I$A$򴪪 II$񴪪 I I$񴪪 $$񴪪 I$A$񴪪 $I$񴪪 I$I񴪪 I$A 񴪪c哽0\\XX lءrI$H I$I$I$H$I$ $ I  I$H$꪿ E&H I$I񴪪-P#5`` a6mn II1?/ M AQ1\UUU II$q I&iR1U M$I$ I$IҤR1 AI$R I$I$r1U I$I R1u $I$R1 A$I$R1 I$I$q m6h6ѵ񛪪 ѵ񛪪 H$A$ѵ񛪪 $ ѵ񛪪 @$$ѵ񛪪 @$ѵ񓪪 $@ѵ񓪪  A 1.* H$H$q@ H 1 II$r Iѵ񛪪 $H ѵ񓪪 I $ѵ񓪪 $I$ѵ񛪪 I&iҤѵ񛪪 0I$q II$r A$i$1 Jʇ\rn A&-rQ  24"5rQ mۦm n)rQ I4IRrUu" I$IrU/ I ӳrU I$I$r I$I"r I$M6r I$@$rU_ A$H rQ I$A rQ N$NQ^^~A$$qm nIv1 -- ĉг+ A$H$s  Im& I$I$ H$@$񴪪 ӽ I@  @$ I$@򴪪 $$    r XM 677 $H$r r1TTTV $Iq I$IR1yw I I$ @ѵ񛪪 I$I$q I I ѵ񛪪 I$I$ѵ񛪪 I$ $1 I$A$qq #&:𤨸I1O𤫫+ I$I qq I$I$qq $ $1 II$qq H$I$qq Eh1 d 1뫯 6c;4B;ѵ񛪪 K$m61 AM$1 ɖ Idѵ񓪪I IrA$I$r H$R1I$$r1uII$rRUU 8:rR H$I$r1 H$I$1#TU 隶i}@$I$rI$I$ԽUA$I$1H I1 @4h$s I I III$H$sI$I1I I$1 $I 1 I ES耀 I$EҦr  Ir & ij +I I 1HH1I$H 1I$I 1I$ $1IA$s*"I$Is**I$$sH$I s*I Hs**I As H$I$sH$ $sI$I$s $I$s X$Yd k.h6Q```` iiR1I$ $R1뾯I R1I H$R1I$I hm&R1 ¬9, q Z 21~h Qo- 񤪪iI$Qo II$R  I$R I$ $qq H$A$qq A$I qq A I$qq I$Iqq I$I$1 $I$qq qq H$ $qq $I$rn rn II$qq 95ꠠqI𤪮  R $I$qq H $qq $I1 A$A$1 AR)) I$ $ $4 AH&*( A I4*H$I$ A I&r ؂:h:xx^^7nwS55%5 i۶mS4 $AN'* II$r II$rU ڶI$rU I$r] iI$r* (I$r $cI$r I$r ڴM$rU hE$QW $L:;rW I$I$Q q8q1+W mvM$r1 Ե$RU 0I$RU 4t$RUmm'1UFm;Umli瓵W :ǓU v]ѶR1)  I$A$I$I q2A$I$R1  $I R1*** )ڶm$R1 $I$ӽRUUI$ $r1W I&R1  I$@4R m6$RZbM;1𤠢 @i$𤪪U II$1𤫯UI1 -$1𤪪u m۶$1񤪪  d1𤫪 m E$1 I H$ѵ񛪪 -m1 E I$1  I m$1 i[ h$1  HѤi41  H$@41  H$R𤪪 )ڶ-$1  mѵ񛪪 Mm1   H$1n PI$Rn/U M$U 0l$oUm$U &9~$Q _ mI$R I$nU ԶI$rnU ԶI$NU I$NU I$rnU @I$rNU @I$NU @I$rnU mI$NU m$nU $$nU m$oU M$oU m$oU I$n*U  5Kӽ m'o\ I$Um$U i$U0m$U4m,$U mo$oU i$oU M$nU 3:N$Nz_U ''1Ф mti1 * I I41 I$@$1 II$1 v v8RU i $RU MI$Ru I@R1U A &R] $ $1 A$m$1 I$I$1( $1 IM$1 I$I$1 ((6P $1 H@$1 H$H$2  $1*? hE$1$1U I1* I$ $1( I$Hr1UUu m6Ir1UU I$I r1]U $ $r1U Iir1U $I$1UV I$H R HM$r-W mI$QNUI$QnUI$QnU Ƒ$rU 0Lm$rU m%璵U  &8rФU Im$rФUmlrФ} mr m$U ֶI$rU z$rU Bs:1Ϥ_ԑO=_ @RQϤ U Mwr i$ vv&r1U $Mdk;U $I$?U $md&U @J$U H$U mm$U M,ےU  I41*U m&1 6B61j ͐ ɔL//% @$I$rU I$ R1VVVW I$I$q I$H$q A I q I I$q $I$q I$I$q I$I$ѵ񛪪 1 2;1p$J$ J.*  I $1 H$I$q I$I1 i 6 1着 I$M&1" ϏMæ 1I$H$r EEr tB';q I4H41 IqH$I$rH$ArArII$rI$ $j%k&r H$Iѵ񛪪  I$ѵ񓪪 111 HIr (I**I$$s hI$ I I$򴪪 I$ 4r II/ * A$I&" H$I$ HI$* ) i$U A$I$*u H$qijr I $R* I$MR* ൱ijrU mvm$r*U -i&rU EѶI$rU $a$rU EvirU I$RW mѭi$RU $&RU 6I$R*U $N8RU "V&RU ŶM&RU Vtm4RU C׶I$QU +M$QU hӦI$r1 бR1뫫$H$R1I$A$ $I$I$I$ M ۶nR1YV :3R1j `f1 -ɒI1ꪪ m۶k1II$ϛ A aQo -I$ϣ -I$R m $1 I$m1 $1 I$I$1 mۤMR$1 $ 1 -m"1 rn ۆmۦ I1] @$I1" #111ɑ\𤪯 II1 I$I$1 H$A$1 H$ 1 I$H$1 iI R1YgI$IϤI$RRI AϤH$I$H$ Ф [6k6R1 pB0L$1OuwqR--/ I6(&Ϥ HIR1  A$R1 H$I R1_w I$HR1 HI R1 A$I$R1뾫 H$q IA$q mSh&ѵ񛪪 h۠I$q E$h$ѵ񓪪 A$i$1 1* IbñaR1Uw mr17H A$HI rQUe I$rQUՕUI$I$q2 IHѦR1A $r1 m!R1HH i U+ IҦ U S'H1U mҶ1U SU I[UOeMӽ5}޶) ^ }U c# HU 2rU I¶hU I$z-WI$IB UI$I2 UI$9@MU*I$I"(0NUI$IQnU I$m 1Nժ NqrФUOmrU v$ФUݚ&HU]&AUL&ФUM&@ФU I’ФU I֓@ФU iCUIҶ( UIRAU I$b1NW~ IiЦ1 I4mS1  IҤh4R MiҢR @11Ф d dI1# II1 II$1 I$I1 I$$1 I$@$1 I 1 I$I$1 I $1 IҢh۶1W I-1ߪ IR4M"R IB&IR MM61 IA1 IڤmR t$d81/ qm1r- Im[1UWP I6HR II6R I"IڶR𤿪 fhI1 NH$a1 I$MR @$H$1( ,-N@I$IϤU- I$y Q U I$ܨ r-U I$rNU I$rNU I$rNU I'& rNU I$rnU I$$ rnU I8rnU I$#)ArnU Ir&@rU I$% HrnUI$u arU I$$ rU I$. IrU ")$A@ I$ U I$U I$HU I$ U IH@U IrI$HU I U ` mbInQU I$ӽ𤪪 I$ $rU II$rU 1C#$r着U ݆MmٳrU} @7^ Im;R[ qb&mRת* IhR IMڦR MA1 IҴ@1  IҴ)Ҡq IMq iE" IEq iiѠ I$M41 I&Iq qӴcR1]fv H$@1( NBҠ 1 IE$1𤿪 iI1 hMq H A R1v I M&R1Uj I$I$q NvbQ Im6ѵ񛪪 I$ $1  1 I$Iѵ񛪪 I6-ѵ񛪪 I$I$ 1𤀀 dJ 1   $I$R1 IIr* I$m} lM  I IҶmѢ ɿ&I I$I @$ I$Ir "-R#40```H$H$0 N-  @ iSm۶ꪪ m6mA$ $sI$IsH @ s H  s $iӶ vl'C³r^x I$@$rQW\p rQ==  ۉ +$I$ԽUZUWHI sH$I sI$I$ss2'p& I$I$ mӦIS 1!Irjjj $I$r@ I$R1I$I$r H4H4q I$Iѵ񛪪I$IrI$I$R1UUUArI$IrI$rI$I$r$H r@ I$r pb6ѵ񛪪 M$Iq II$q I&Ir $Ir H$rI$rIH$rH$I$rI@rI I$I$ $R1*IIr1I$$R1 I$I$R1 M$hR1 MIP$ M (ҤR1 I6b8R1* I$IrU- im rU i6mmRU Ibs; RU" :lRu NUmRU C':QU&i$Qw q$MrU* v$:U IUr I:&HrUI$QU wٚqQ* %SN0 r1U* I-R II$rU I$IrU i6-ZrU ImZr m&mR iHrmۦr Ii;` I$I$ ,͒x```II155 I Ir I$@r I$ r I4mr I8Fb;R@@@ iI R1Yu I QR $A$ϤHI ϤI$r1I Ϥ آ5R1zR~^ H$H$1yҵI$ $RUU I$ $QUUP@ $I$R1 HR1 @$ $R1 HI I$I$ I$$q $$q $H$1 hM$1 I$I$r Mi1 MiQѵ񓪪 m@$R1I$H$q2IA$ϤHI$ϤA$HϤH$I$R1j$I$I$I$Ϥ* (R@tO1---)I$A I $s*I$I$s*I$A$s*I$A$s"II$s* IѶm$ iڶh$ I $ HI r @6m&1 @ҦH&0H$I$浪+XI1狼 P#*AQ0{o} IӴlq1 JLrQ= 0I$R mm$rU  $r M[4AѤr EIr" II$ A$I$I$I I$I H$i4 $I$ I $r Zeb0Rܜ@$I$rI @$rI Hѵ񛪪 E&($r `&lB'1 tAtI1𤫫 I1  $1 $I 1 I$@$1 I$I1 I$ $1  $1ꪺ H$$1 $I 1ꮪ i$I 1I$ r I$rAIrI I$rI$Ir M&h&ѵ񛪪 IR1I$A$1WH$I$1W\rI$A$1UUU\I$$rI$I$rH$ r $Ir CLb&q (ڲ-@@ L 1M--- I1a1 + IҤ r $Ir I$ $s I$As A$ $񴪪 I $񴪪 I$H$񴪪 $H񴪪 A$I$񴪪 H  I$I$ @ A 򬪪 @򬪪 HI A$I$ II$ I$A I$A I$$  j E$I$r A$I$S H$Iӽ񤪪 I$Iӽ񬪪 I$$S I)s H$&s b&FkRؘ I rII$I$IrI $rI$ArrI$ $rI $ $HrH$ $r I$ $r I$  r H $R1޺ vb;MR1_v{ m&[6ѵ񛪪 I$H61 II$0 mM1 -i$ѵ񛪪 $I$R1veU I$@$ II$ IIr II$ѵ񓪪 I$I$q A$I$q Eۢ-  I R1wi #01 N R1?>?:r1 IId/A1A A 1 1II 1I$I$1 I A I$I @  Z9pxxItI0冷/// nmQ++ A$H$ $I$ mv]I$I1 $I$1II 1IA$1@$H$1 II$ꢨ MҦm6Qx $I&q1* !ijr II$sI$ 1$I$1I$I1k&k& A$ $ H@$ )&ARBBbbAI$r $I$r m$A6q I$I$ѵ񛪪 i$IrA$A$rI$I$rH$A$r$ $rII$rH$Ir$I$rHI$rI$Ir I$)&ѵ񓪪 A$ q I$I$q M"IrI $rI$I$rI$ѵ񛪪I$I$r I$rA$  I$R1+ EФm$r1uU hH$R1  H&I&R1^ HI$ I$IR1 I4MR1 :,r1 MiѶr/))+I$1I A$1I$I1I$A1I$I 1 E6k5Qxzz Mq1* ۉarUս I$Ir MҶr着 I4H r A$I rUW~ $I$rQ A I QOIr mh6r I$ ҶE۶ i- $I$ I$Is*I$I$1I$I$s ER I s [5h1``` mזQ Ir))) I A$ IH$s I&i$ I&M1```II$H$H$ϤI I Ϥ$ $ϤII$Ϥ E&M$R1՛:ҵ I$Iqo  r= 4$r + I I$QpPPR I$I$R1ᆵ A $R1 H$I$R1 IH$q $q $I$ѵ񓪪 @6M$1  MҶ'0H$I$ $Ir IIѵ񓪪 I&R1AA$r1@ I$q2I HϤ $I A$I r1I$ $R1 $II Ϥ.(R``p//wnR---- H $ HA 򴪪 AH$񬪪  񬪪 H򴪪 򴪪  򴪪 򴪪 H 򬪪 @ H r 3CrhxxI$I$/I$I/ Iq 1!jTQ0U) I$HжrQU cIq1_ IWrض q1 $A$rQ H$I rQ I$ rQ $rQ I4Q K$Q 0 mbےQ  IسrU uݚ6r  -r im$r @Ҷ5R` LODn< C۶m$14H1۴a$i1 M?1񤂪 h&K$1 pJN1𤫫 I$I1 H 1 I$I$1 $I$1 AI1ꪫ I I$1껫 I$I$1 HI1ꪪ A$A$1 I0I 1$$rI$I$rI$I$r$IrI$H$r m"I"ѵ񛪪 II$ѵ񓪪I$A rI@$15UUI A$r1I$IR1 I$ R1`I$A$ѵ񛪪 m;t$ѵ񓪪 ;t81 0#$ ``pp 9J r--)  Ib سrﯫ I$s I񴪪 @$ 񴪪 IР$ $ 񴪪 H$A񴪪 HI$񴪪 I I$񴪪 A$H񴪪 I$s* H$K$r $$  $ӽ I򬪪  H򬪪  򬪪 I$I$??? I@$ H$I$ II$* E۶MӦ H H$r H$I$r H$H$r2 I$I$rQ* A I$rU I$ӽ񬪪 $ $񴪪 mk5rjjj{[<1< $I r I$I$A$rI A$r$@$rH$rI$I$rI$I$rI$ rH$I$r I Ir H r I$I$r I$ $R1 $IR1 H$R1WW~kR'1訠 I @$ $I$ -I$1 * -6IR1oU i$I"R1}Օu I$HR1ZM$k'hR1WU I$I R1_V I IR1 I$I$ $I$ I$I R1jZ[y DB&Mq ہR16Z8r1557 `I I$1I$1I$A$1A$ $1A$I 1 $  IH  $I$rP9>rx\\^ISyr55 I$$r I$H$򴪪 A$I ɶn*$ $1I$@1 $I$1@A$1 1I$s I$6'rzzh N$H$rQ| 6ēQ// I +@@1I$A$1HI$Խ h&k&s A$ $ m[$m4 iI@@``$I$r A$H$r I$ ѵ񛪪 IMѵ񛪪I I$rI I$r I$R1ꊊI$ rI A$rH$I$rI$ rI$I$r rA$I$rI$Ir L8pb:ѵ񓪪 M4hq IM$q H ѵ񛪪@$ rA I$rI$A rI$I$rI$I mm$R1+ H&IR1 iA$ @@$R1 EE4ѵ񛪪 ۰I$q ÆmkR1 Ҳ!P=r1? سr +  $1 II$s* I4I$s* H$A$ I I$ m&K$Q`xxx MIrQ? Ӊór $$s I$IsI I$ I$ ꪊ i%mr{ I$H$rw\x I I$rQ II$Q @YDr) PMѴr  I $ lc I$ $s  mR I$s I$I$ E6m6Q@@ I$ $p t1 / I$I1 I$I$1 M$ 41 I I$1``ppII R1+A$Ir1I$I R1A A$ϤA$I$Ϥ Cm&R1~z hҦm41zI$I$1𤪪 AI$1* ЭIt1 ) mѴI$1PPZZ AI$r  $r $H$q @$I$q I$q $H$1h 4M$@$I$ϛII1𤯿 I)ڤq qI$H$R1U$ $R1I$H$QRI$I$QRH$I$ϤI$I$R1+H $r1 ϤH$r1@?RФ 16r- mR4m$񴪪 A$$r 4mc>1^  I$'U $I4$U I$U $ФU I$ФU iϓ$U I$rnU`$I$ UI$I$ U$I$- UI$I$n UI$1n*U ԺI$QnU m$QU $QoU I$QnU @I$QNUI$1MUpI$Q-UpI$Q-U $I$QNU $I$QMUI$QnU Ir*  DrQ mi$r0 (ھ11bzz  P-,,. $I$rn @$R -m[5R Һ=ФPXk$М  nФ mm$1񤪪 hѶ-$1񤪪  $1񤪪 II$1񤪪 $1񤪪 $1񤪪 I$$1񤪪 $1񤪪 H$ $1񤪪 I $1񤪪 mHФR𤪪 -i$R𤪪 $i&$1  HҦ($R𤪪A$I$1 c;81 ڢ)$1( m01" @M$R𤪪 A&A$R𤪪 iH$1*( HS$I$1/ @$r C5m$1 M&H40 #%P"%-PА Ϥ-  I $s ֭@ rj$m$r^ 4I$NU 0nI$NU mI$NU mϟ$nU m$nU i$oU m$nU $oU 42I$rnU@I$rnUкI$rnU @I$rnU`I$rnU mI$U  M$ФU mL$rU mI$U mI$rU 0I$rU t{I$rnU 4I$QNU PI$QNU @nI$QNU Q / 0h ВQ + AIr m66Rjbj=L1<4.A$A$ $IrI I$r IҶi[$ѵ񓪪 M&ѵ񛪪 i $ѵ񛪪 M$Mѵ񛪪 iM$1 IP&ѵ񛪪I$I$ѵ񛪪 mA$1 )I&q i4mR$q M6I$R1깫 I I$R1 $I$R1 h4Eѵ񛪪 M&h$1z II$1𤪪 IA$1* ж횤1* vmR1U ۖ ٖ%R1 hM$R1I$I$@A$ I$I$ I$Iѵ񛪪 A A$ѵ񛪪 M$irI$ $3Z+15%%$I r AI 1I$A 1H$ sI @s*H$I$s I$s* I$  s 4@S4rjhzp&J2'Q\TWW d p 5--- A$I$ II$ I@$I I($sH I$sII$sHI$sH$I$sI$I$s AԽuuU I$H$ M4m&Q~zx Iq1 + ir +- $A sI$H$sA$H$Խ p'pB&s II$ A$H$ H$I$1pxXX h i$r H$I$q iIѵ񛪪@$I$rA $rI I$R1UUUI$$I$IrA I$R1UUUA$I rA A rH $rIH$r A$rI I$rA$$r I$ph:1 I $q I$1 * h) rIHr $H$rI$I$r 4L;$ Ȓ-ɒd H$I$ iH$R1 IA$R1몯 mS4m&R1zY~^ HIѵ񛪪 m8[r1 P ^dzr)))  v$ uس @$$rz  $rU $$rU M?^ Iqr0 - m1iӳrU ֶI$rU  @I$rU $8rU dzrU $@$$rU $H´$R ЄmF6rQW 0mq1 жIrQ I$I$Q I$I$rU r $AI'r @I$r X۶I$rU a͐ r cñc'rjjj I$H$Q0WV\Vqؒ0/-- mir *+I$I$1C:M$ ېIvppp I$I$Q1UIH$R1ꪺIA ;DbdzR- ES4m$rꪪz C&p8rQppp\ H$H$0訠 I$H$0U* A  0ݿ 0r0-@Aq1 $I$rQ* $I$rQ @$I$rQ I$I$rQ 6i4q1 :-MQꨠm6ۊm0I$4 0_ID޴ 0  I Lqտ. I$ rU/ IҤm R I$ArU I'CrU Nb*RU&XKp R @@Ф $ $I$A$Ϥ@X R𤐘 !$r $@򴪪 :[-R@`` 1Ф I I q I$A$q q I I$ Hq mm61  5Zkk$1o IY1ժ Itb1ժ Ii1U #'h&Фj $I_? $d!}@?$I$1oH$I$ $I$0p4I$ fIP+  I6m &C's\ $[$I$zWUp$I$M 8I$I$0I$Q0 h$I$QϤpx H N  A11 6M$Σ@Q4m$RnX$J$k{PظI$I$UI$I U I$i+ rNUI$-ArNUI$$ rnU I$$)rnU I$f @rnU I$d rNU I$d)ArNU I$t)rnU I$%) rnU I$rnU InU IoU IoU IoU IoU IrnU I$HrNU I$rnU I@oU IRnU Ib?Rꠀ 11 @6m$1 h$H$2 I$I1 B%X-< I1  AI$񴪪  ,`` n IҶm1 I1 IҶ-Zqq I$I$1񤛪 Im$1 Im 1 @ Hq MҴ1 ##͐&m1j I$ $1j I$I$qq I$A$1k I$I1窪 I$ 1 ( I I$R1jZV I$I$ѵ񛪪 I I ѵ񛪪 II q I $1ꪪ IlN1ު I&1U꺪 M$ڴ1 i $hӶ1ꮪ c:`>n0 mbr+) 1&'R +=[1`p/1I$rI$H$rH $r@% 1oXؼ($ U N̶rU Krrժ [rUҚФU]& U IΖ$) U*I~e9lU ]w&HUim;A1 I&mRU Ib' RU MӦ[  M$QϤW 4m(l0ϤU i$ 0ϤU im0* I$1/  I؉r1կ+* I&I1}* NҶiRU* I6m7lRu몢 I$CГ1Wꀀ )nQ imq iIrI$ vl3pijR%%I$I sI$I1I1A$I$RPXX\A$A  $H$ H$I$R1z IA$ --1{^VH$M$𤺺  P 1𤫯 1 $I$1 I$I1H$ r $IrI$ArI rI I$rI$A$rH$I$rIIr pB8"ѵ񓪪 II$1 &q IIrI$A rI$I R h%X5s I$I II I4i1X\^^ H$I$ѵ񛪪 II$ѵ񛪪I$I$q A$H41%-  I$* i$I** II$s I s I$I I$H& H$mҶW I$Ib8r Eh R_* M2'$RU IҦmRU I&Em1U mҶ _ I8[ `U NǪ rU^ * I$IRU IRU IMҠ1_ ÐM1ծ I4I1* q$IQU  c4 rUujΖ@r1V H$N$R1~} I I$q I$ $q @Xr1555 j'r :r M6@6rI&rxXX I$I1* c;1b;k @1 gr81* I$I 1= I$I$ @ iR I$  Kw IR m&Rm&Zl𤠨"d=2hM𤪪 m' N1 jn1 E$I$1 `۱1 vm61 m۴1 ݺm ֶ1𤪪   1ꪻ `𤮪-m60 + ܔ&R1 +/ mm" E$I$ $؉PXXX H@$1I rI$$R1 t0$R  m&18Qz h6M$rQ\_WU I$A q IIQ0Uտ+ ۢ,8r0 IMrQU? I rQ 𤪪 m۶mӽФ I$IӽФ I$I ӽФ I$mSrQM rQ_ MmrQUI$AQ0Z DFQ0 MM$q1+++ Yir 6iô$ I$ $sH H 1I@1 ۲5X=-rhpx`)BR1 I$ $ϤH$I$Ϥ  A~RФ<<$$ ڳr++ I$H$  -#1``p  I1 A$R1 A$IR1wuw I$H I$I$R1} @$A R1_}   1訂 X5&1I$𤪾 11 $Ir A$A$1 `"&`&X ɑ$I$/}w $I$WUI$I$1oI$I$QOI$I$QOI$I$U 1!1𤭫 H1 #901I$I$.I$I$WI$I$-<,,I$I$QI$Iq1I&h$QϤx`ppI@ N PP1𤫪$I$R&C:QoH$L$-I I$0Ϥt r-= I$I$r I ӽ IH$S}u M ( ӽ IHӽ Iӽ I ӽ Iӽ I  򬪪 I  II$ I$H$ I$A$񴪪 H$I$ I$I񴪪 M$A r I4I$R $i$r H$񴪪 I$A$񴪪 1```p)jm1N  h6m$1 I$I1 1 zHd1n444 ٴmr I$ $񴪪 @4@<Ф```` BA1n $Iqq I$Iqq I$I$qq I$I1 $I$rH A$r $H$rH$I$rH$Ir $I$r I$A$1 I6@ѵ񓪪H$I$rA$IR1II R1jI$ $rI$I$rI$r h$H$q $A$1ꮪ M$Iq II$q I$IBq hH1n iEۭQ # IMrQ===2$C6r` A1 I$H$rI$IrI I$ѵ񛪪`~ RФ>66& )ڶi۶r $H$A$ $A$I$A$H$  I$H$ II$ $I$s * I$I$1 iM$ C'f$Qz MR$H&Q0hhhj I$ $p I$A$Q i4M$Q I$I$p A$I$Q0 * IrQ? N$rU ۶ [d m6M&rjzz^ 11Q1\\WW m5l1 IR1I$I$ N̄LijR----I$A$s H$1I$1 I$I$R\^VVI$I$I$I I$I$R1zw @$I$R1}u -Z#1II𤯮  )R I$H$qq qq II1H rAH$r $ArI$@$r H$rII$rI$A$R1ꧮI$IR1r vB;4 ѵ񛪪 'dB'1 I 1 ѵ񓪪HI$ѵ񛪪I$I$R  E6m61 I$A1 I$I II1\\TT H$HqII$r@$I$r M$M$1 II$s I$1A A$1H$I1I 1II1AI1 Ii I$IH$I$s*HI$s**$A$s@$ s  hI I$I$r H$ $ӽ񬪪 lmnr $I$r H$I$r $I$r IIյ H$I$ @4@&rhhx ɐnR1TVWW A$I$ѵ񛪪 ѵ񛪪 I$H$ѵ񛪪 j,xr77'' r H򴪪 h@6r 1!r\\\\ I I$qq [6h5RhmQQo I1R mR$m&1p H$I$R I R H$A$qq I$A$qq I$I$qq m$mR$2 I$I rn H@ R Im1mmtΣ  I Irn i[ 1 I$M1𤿻 m6m1UI$IΣ IS@"R kڶlR ,C:1oIm&0𤯯,ɐTr0- M)r mh6 mIr\ A I$1I$I$R1 M&I$R1 hIl:rQ MA$rQp_W I$A&P1 i& rQUU= I1hrQ? M"Q IMۢrUկ I$I r I$r I$ r I4Mr I$ r I$r I$@r I4mZr_z I$hZ4rQ ImrQ0 Mm&q1 I$rQ ** hIr i I I sI$I$1 39RhhxxpL` R H$I$Ϥ  IϤI HϤ (PrФ6''' Ai I$I$򬪪 P9X%rФ``pp I`I1 I R1 I$A$R1 $IR1뾮 @$@$R1 I$A$R1  8C:1X's$𤪪qΣ Pѵ񛪪H I$r -۲-1 H$L$V~I$I$QOI$I$QOI$I$QOI$I$QOI$I$QOI$I$1?%?+ JJ1   I$@$R1] B#5R#1`I$I$1nI$I$1]I$I$16&''I$I$rQ I$IrQ/ k&h&rϤxxhxۑn &1 M&h1NB;H$I$Ϥ-$$&. $$0𤫫ivI1 55 &arQ 5 @I$r * ӽ H@ 򬪪 H򬪪 򬪪 򬪪 򬪪 iA$ I$ I$I  I$A񴪪 I4Ms I$I&s i$H$s h"@$Ru $r v qijr -У%rN`x IIN @$I$1  I1 iviv1 ȁtKRN&.// AP4I s $I$񴪪 X:&`hxx n A$H$qq I I$qq I$H$qq I$I$1 I$I$qI$ $r I$rII$rH$IrH$IrI$A$rI$ r H$r I rI$I$rI$Ir@ Ar c:c;ѵ񛪪 `b&'1 i$)1 رiq I$Iѵ񓪪 I$I$ѵ񓪪 ȉKt166'' I&Ir1 I$I&q1 ,؂5Q`x` TI1 H$rI$I$rI$I$r ( 5 rФ'''% II I$I$I I I$I$ $H$I$s I$I$ I$I$ I$I$ I$A$s IS I4_ hhR$Q mR$H4rQ|__W I$I$Q0 I4Hڦr0 i$)ڶrQU I$IlrQU I$arQUW0 $I$r0 II$Q0 I$rQ=U i)Q* CӮ-6r1 !;M4I1   rn AIqA$$R1 Klضd2) I$A 1I$A$1 $M$s A RTTTV $II$H$ HH$R1~ $A$ѵ񓪪 9#;𤪨ɕT9𤫯 iirn H$ qq I$H$1 L`1 $rH$I$rI$A$rH$Ir$A$rH$I$rA$Ir$ArII$r p81 II$0 1 1*I$I rI$A I$A$ L&Hs I$H$s I&hr1IAR1UVZRI I$R1II$R1j I$I$R A$ $sI$I 1A$I$1I A 1I$A$1I I 1H$A$1H$I$1I As*H$I$sI$H$sA$I$sA IsH$ s  pb;ióxꪊ $I"ro|` &`!`rQI$I$ӽФ mi[r Ir  򴪪   򴪪  5ҊQ``` ٖat1"+ HI$ѵ񛪪 q I$I$ѵ񛪪 8PN'%-- IAr  򴪪 M 2rzzzz PPR1TTWW H$I qq :fB'Rm m Rn iiqq `B2$C01R II$R $qq I$Iqq I I$rn @$@$R ER $@ R I$I$rn R I$IR I rn I$I$qq I$$1 I$ $1ꮫ I I$1 II1} q 1L$p'0##$IQ0% `J$S0 +/ Xh6 &U!QRr I$ $1I $R1ꪪ E4h&R1. d0N$rQW HIP1 A$Ir0 I$ Q+ miڴr    A r mѤm& $I$ ڤM6r I$r $A$r H$r IH$rU $H"I2rU @I$R~ -&I$r1 @ @&r1x^ ii$Q mפr* MQ + @$I$ I $s*Z9S1xxxx A֭R1 H H$QRI$A$Ϥ@ $ ~ɐLrФ--  I$A$ H$H$򬪪 P#=P%rpx laR) A $R1U HH$R1"U I$HR1}U I$ $1 ۶aX6R />1WH$I$ϤU J1𤯫 i 1  ih41 ,1ФzI$I$𤰜I$I$𤯜I$I$0pI$I$𤰜I$I$𤯜I$I$МI$I$1 !!H1 $IR1m $C $IR1z I$L$1I$I$1𤪪I$I$Q%---I$I$ӽФ  ӽФH&H"'rhhxx Fh@1М iR1U{ I$H$ѵ񓪪 m1~I$I$n---C0ꠀI$I$ppfq$1ϤzI$rUЗI$rU TI$oU DI$U@I$U II$U mI$sU I$rU ЍI$nU жI$NU `I$rnU @I$rNU @I$r-U dI$r U I$Q UWI$Q-* 0I1rϤ* ;r0U $i$r0U`$N$ `pxx&nm$𤪪u0쐜"* @1] IIpRn%--- $A;r m]$ `"&c&oxxxx `I4  $I$qq I$I qq I$I$qq I$I$1񤪪 q$1* I$1񤪪 $I$1񤪪 Eۢ)$1񤪪 )4I$1  h6-&1  Aäm&R𤪪 Z$m$R𤪪 MH$1 H($1 -P1  m$41 A$1 [61 ~ HA$1𤪪w IMQq IHѵ񓪪$I$r mRm$r L6r---- I $r $f$rQ_\ P%P&1n`hxxA1 iH4r@ I$r@$A$ѵ񓪪  Ф%--- I IA$I$ hS h$Rz0m瓵_0mUDRuߓU DRn*U AǒU $U F;W H*A$I$rI$I$R1 c0&c:1?-/ A$i6Q I$HP q1 Iۤ rQ?? vWGx1`xzzI$Ir I$M41 A A$R1 II$ѵ񛪪 ѵ񛪪 $I$ѵ񛪪 H$ $ѵ񛪪 $Iqq H$A$qq @qq I$Iq ?$MR i&H&q I$A R1{[I H$r1#1 ba1)  IH$rW 0c8C:r1 M1 4I$R1%UU I$I$R1(u A$R1,.1@`t 1---- A$I$򬪪 $M2C2Q@ NDO1n I$ $qq H$I$qq $rn "9#%-@`Hɖ1Ϥ h&M$1p|__I$I$0mIId0%%%% Mgr $I$񴪪 H$  񴪪 x%X `rV^^I$u$rUU_ZI$I$𤪪I$I$𤪪I$I$𤪪I$I$𤪪I$I$𤪪I$IrQ II< H$I$R1 @$A$R1 A$I$R1w{ (01``p P  H 򬪪 بRIDI1<< EI"1 @&x 1ؼ $I$q ,91```p Nr--  :rQꪪZ5Qh```II-6h4M$ꪪI$I$Qoiv1I$i0 I4M[41 I$iۢq I$iѵ񓪪 I4mѵ񛪪 m6k%ѵ񛪪 I$Hѵ񛪪 i۶m1 !)R$H1 I$I$1ꠠ I$I$1 IEqq 5#$N```p j r) I$MrQ#1,rzzh`II-6 ӧ㋑pv?m Iz#H𤿿 c&F$-``pp p r kӴ[ r f&@r1``@ IDIN8< m۶a1 I$h۶1 m۶mR "-B#9n```p rФ A A$I$ӽ I$I$ I$ I$I  I$I    I$ $ A$I$ꪪ I$I$ II 񴪪 I$I$񴪪 i$IZ$r k6h6rx|x~O1 $ rI I$r C2 C1@ "-#0o@``p p   HI$񴪪 C۴M"rjjj[1< I$m$1ꪪ I$1 iAq"-"-1``ppv1---- A$I$ ضe۲-jj|r𤘜 i$I&ѵ񛪪 m$I$q -$I$q ($I$1 I$ 1 Ii[q Iıѵ񓪪 IaR1U I $R1 I$IR1H$H$H I $  I$ $H$I$ ;c8R% I$As  IIs ];k&rZ^~X NqQ0_\\\ I&I$r H$I$1 A I1 I$i$ҵ 1q1++ @$A$Q m4I$rU MЦi$1`rz ۶aɒ$R1 '6'R1} mM$r P-5Z1****$m':0I$I$PnqxQ--5 6aĒQ  $r IIس*$A$sI$Hs hhs iR4 s h4Is h4I$s ж $ E$m$  h6m4r 0H4ᄒ1`xz^ $Bth'1 $I 1 I I$1 h'v$1 * vٚv1 +- A 4r" I$s MI$2```pH$A$r A$R1ڪAH$r m$)&155 EڤIs (*IH$1I$@s  II1```pI$A rA$ $r1)UUA $rH$I$R1 IR1I$ $R1ꪪH$I$rAI$rI$I rI I r$rI$ $r M$N8ѵ񓪪 H$I$q I$I$q "-1Ф`ppP  !N H$M$ A$@$rjjz LDQФ $$A2ѵ񛪪 $A'1𤪪z_ $I$1М ,51ꪺ  R   8 m$ ur $$qq h6h&1 iI I6@&55=7 18+*H$A1I$I$1I$I1I$A$1 >-.೽r I$I$򴪪 II$ AI$ m&E& A$Iӽ I$I H$I$ I$ $ $I$ H H$1```p H$$1 @ 1 ڶm$1 C;t81////I$A$Q0I$ q1 I rQ  II$r1@ppp A$I$1 $ rHIѵ񛪪 0c$C'1%%%% Ih$rz I$@$Q A$I$q1KITQ1p_WW I IrI$A r I$I$1 I$$qq I$I$qq Eh&1 Em1m&hv1z I$H 1 I$ $1 I$I$1I$I$r Emۦ1 II$1I$IrB R+1Ф000 ibbr I& &rZ#4R1 166&' I$I$q AۤM$q A $q 1𰐐 ))1- ) I$$򬪪 Ê۲51` ɐHn<$$ $H$qq H$R @ A$R P"%S%- $I$0ϤI$I$I$I$Ϥ@pI$I$0M*_ VI$rnU in'U ml$UD$U X$I$rNUI$I$RMUI$I$RMUI$I$Q +I$I$rQ I$I$𤪪II$r@ ITn4$$ ?1 $$1 $$1 @$l$1n $1 m$ӽ𤪪 M$1xz ɑI$N,,&& I$1𤊫 P6I$1owI41𤃯 X"$[2%1P JpIr  M۶@[𤪪0,rx```II$-66&' I$Pp~p1 in0 1߯ I- 1Z I $1𤪈* I$ $R𤪪 I I$1 I$A$R1U H$I$Q  @$1 I$ $1 $@$Q I$I$1 I$A$qq qq @$@%NА p H ӽ񬪪 .-",r```` ID -66& H&I$ I$MҢI$RI$R%̃ذ KywϤ- &i1rQ) :461` Oɐn<4&& $I qq H$I$1 R R%R%nА ! I$I$ m۶E6R H7Ф~ m$U M mnD $I" RUUeO.A1UFr+ 0Ф`  ImԓФU $r +  I$s c;p$rzzz -"5Qhxx 177'' $H rI$ $r mӴi&r@81А`JdJ1  $I$񴪪 +24h5Rhj 14&& H6h ѵ񓪪 1 ڠ $1 8@.%1 b1  !ĉ$r Vm&r *[ L $I R -&A4q @$I$q IR I$ѵ񓪪 iHq MIR1- I$I$R1 $R1 @ R1 I$I$R1A$A$I$$H$I$I$ m&hR% I$Is I$I s &DBƳrZZZ^ رɘq1^^^^ #1p $Im1  gs4 1𤮯 I$pBq1UՕ IIдrQ? $I$qR A$I$rQ q1zZ^_ iH$q ;I'ѵ񛪪 m$I$1 C$tb'0*. IA$p I"% I0$LL0**mir0+U &$r1 4`ؒQ (I&rUU $I'rUU 'I$rUW I rUU $I$rU M I$r A$$S I4h$R h"m&Q $I Q1\\\_ I$iТrn I H 1 I$$0 vb$tB YvQ ) M4 r*% I$A$񴪪 II1pxxXA$I$r A$rI$I r mi$17%%% IAs  I I1I$I$s  hIRppXXH $r hSM$ѵ񛪪  $1I I$rI$A r$I$rI$$rH I$rIIr A6m&ѵ񛪪 mעm$1񤪊 C;H$1𤪪 MM$1 I$H$q I4 ѵ񓪪01 mr1 H$H$r7W M0$c;rzz{] 1Ф mҶ-ڶ1 Ih۶1 R,H$ 1Z \ ْ-1::::y$s"RɺB$ӽIRErjj  ^^^x Iжm[1 d:d'0 II￯ ]%[S$%%%% )I I I$I$ $1I$H$sII$s H I$ I$H$s H A I$ H$I$r^ &a&Ʉr 'r$rZZ^ $I$QZ $I$QU $I$QUU I$ϜzZ D% 6U9𤊸H$I$0pI$I$0𤵥%I$I$Q0UսߔRrQ= I I$ӽФ I rpp A$1着@$I rAI$r A$I&1  MH4s M&r^~j m&[.r1xp`py1,. Aiѵ񓪪 Aѵ񛪪 HI$1 @ ER7 I$I1U  I4RU ImRU* I$irU I$& RUꪨ M$-RU 5kꀀCJ1Ф% AҤI$1H I$r $@$r Ї1Ф mir) $I$ꪪS?".Rzzxx/1o i$Mq I q &i$q P%Z$  1 I$rU )R#5r` HHN  @RH$R(6m$Rnp$K$-ؘI$I0ϤI$I$0I$I$癩`II$M iiv1𤵪 I1 ( I$iq I$iТ1( r٘Ф|I $МI$I$МI$I$N 88I$I$r1 I$I$𤪪I$I$r`` P @n $sjh"H4AH$𤫯H$H$NI$I$r I$I$rQI$I$r`hzzII$-  IڿHH$ I$𤭵\2'J$-8< 1 H r #5R9r````I$ II𤪪 ivϣ IR R&r$̋Pظ8I$]ArNUI$ rNU I$t rnU I$e rnUI$I$rNUI$I$RNUI$I$1-U H  $I$1  I1  @$1W Z&h$1N 0s1 $Hزs 1X$r``p $M @L1𤪪 HN1𤪪OLVI$M$ ؜ IQϤ A$I$q1. &-R#5rjz N IA$qq IA$qq M$H$R P%h&n< 1 A I1Qz 0Ф% I I$1U MA1  IiS41U I$ӽR@PQI$I$R]  $1r_UU IҴh[1 Ru 1*8< mr 5C3,Qh . #60```p 11 I$A$rI$I$r $I$rP`1  R)+ H$I$񴪪)R#51```K1 I$Eѵ񛪪 L$:q I$I$q P"`n )Yvr1 ) 4I$Q (=6rxz KJ A4I$q A$I q I)q?ƚ QФZ>.$7  Ikl1ի I$mrU Yd6lr I$Ir I$H$r直 I$ö-r II$RZXXXI$H$I H$r1 I  pB$p$RII$s i M$x 6&f$Q ؉Q1^VVV Ib' cr I$Ò I4IR1W m&h1-  ı퀳rU A$HrU_ I$LǒQ iIq1WWV^ HHѵ񓪪 I$H$1 I$A0 mS$m40/ H$I$q IIQ0UU I$H$Q0UU I 0 I I$1 $A$q I$H$q A $q H$I$q H$Iq I$ $q a$I$r1 I$I&r @IR m$I R MQ1\WW\ I6R4q C2NB1 Ib'v0 jϤ< 0 *+ ar0 + 6lv;r ۰lɖl1PXX\H$IrH I$rI$I r @$H 1%-  $A$s  $H$1 M -&s -4 1XX\\I H$r $Lv1 6i$1꺪 d;t1ե- I$A[rU I⦪ RU IҶm RU I6hm1U)aU }$ rW M: Q 7!1   I$I$q I4 $ѵ񓪪H$IrXX,18< 6l0r1  H$I$rQ&4rpp   I$I$qq I$H$rn I$I1 Z*R>.& IIr++ @ @ HJr1TTTV I$I$qq h&m$ Yvi1[%k&1%%%% I$I  I$1I$A$s  $1PXXXH$Ir $M:"1o 1jj-$I$H$I$UUUH$I$I$I$I$I-% I0rU IbArU I"I$IQZ I2aMМZIHm𜯪9ڼI$I$0pI$I$Q𤵥% I$IrQ  4Mr   I$r  Irp $ $1A$AR1H$Ir tNij2---)IIs**" m&-6ꊢ5Z51zzzh )b 1 H$I$ѵ񛪪 1 $R1 $I$q `wr7'// I r  򬪪 In  4i6 I$H$ SR38rzzzZIߖ2 H I$UU i$I$1UU5? H$I$1UU* X^׷ )m۶r -$I ª1-I1xzp !j$Ф @$UU $H$UUU I$I$QWH$Hx1IIq1@I$rQUP=Z2'Qx HjN hRn RnI$I QoJ$J$n44QIB'iQW~I$I$0zzxxI$I$- WIx1𤪫 II$R1U @4A1UUU  R1 MҶk[42,HP1 -`{1j; O$$N4,$IRBQ  IBrU [ӽz:z 1JI -%$MU I$I"$UI$I$UUI$I$rnI$I$r1I$I$I$I$Qn`I$I$- I$I$0pI$I$1o!s۶ *H$H$N4444 TIDIR  ӽ񬪪 5=rФ```pI4i4N IX9𤮯 IIR I$A$1 H$Jn<44$  iR + mӦr жm6SU$@$ӽ񬪪-ӽФAӽФM$M$r`h )-  @Rn Rn 0H$J$N444$Ar1 rH$H$rn``I  ] 1Imϣ m۴u1 K$HN44f`$q1@  q1%X'0``  -  Arn I$Iqq h4hR HHn444$ dIPIr0 I$I$ӽ -1`1 I1  A@$r1UUU II$1UUUI$I1UUU $A$r1RUUUA$I$r@$Ir $H$rhg|144$$ ҁҳr h5k&Q```P  #61`II1 I$I$rIArA$ $r ȧ1<44$ )r I$H$񴪪/)R#5``!J 1  @ѵ񛪪 vb;Iѵ񓪪 I;L'q j Jd44 &Iq1 I$I  .)QϤ`` J1 I$Iq IMڦq I$Erk:r7''' $I$ $ sI$I$sI$H$1$1H$ 1 A$H$s IAR\\\TI$I IIr1II$ 8NгR- AI$ h M$r M$ rQ inQ1T i1iR1 I I$R1I$I$R1 KdXlR  i$I6s M$H$s C۴r~ Imr1\\\ Ib r I$M1 I$I$1 H$M$0/ A$Iq1 I arQ? AEr1ꪀ IiQ1_T\T I$ 4q Iĉiq I$Iq A$A q I$Iѵ񓪪 I$Iжq q$!mѵ񓪪 H$m1-  I$۶ r* I$Ц NtBr iwir1VVVT ImѶѵ񓪪 A$ѵ񓪪 IIq kb1־, iIЭ𫪪 aI$Q0U i rQ Or1XXVVI$ rI$r$I$r M4H$1 I$H$sI$I$1 @$H s 1\\\T @$ 1  1  I& q mM1---- I$A$ $H sI@s** I H$ $I$r I I$R .0R5r@``` p1  i$I[4qIr ݊M&10 hL1<466 4$I$r} H$RVVh8`=Фzxxx  I Mm۶1 iI$q I I$ѵ񛪪 ʤLr%%%% Ir  򴪪 I II$|||p X[&RHHRnH@ 1 (G-1---- IQIBR @R*v"I$IW a'I4 rt &H$ 1 ۶$1^ I$I$1 Iqq @$A$R   R  $rn I$Q E$I$ m$r X[6r0xA1I$IRn mP0ypL$NrP SW__ S݊uX6R I$Ir1VZZR $1ꪪ $I$1 +ڶi$1 ۰M䖓1 -- 4Idz Cnm$ о9`hx Vl61𤫫 Xk&1 ($I$ f`$R K---- A r @ 񬪪 nֵrZ 81_ I$1U mO'U ,5mrФ_ Y ]uR $I 1    1Os RIIr---- )r $A$ %X"&xxx m h mIҶBU i&I1 q'1II1%%- I$Iq1I$I q1H'p$n```` єI0 IڦmR  R I$A RIIr--- I$I$r뫪 ASh%p&rxxxx Xi$HNlΛ  $I rn &1 Plm1 `&J$WI$I$МI$I$МI$I$1n%-- ɑɑr I$A 񴪪 4@9hxxx iմMМ H$M4rn mm6rn I$I$rnIDIQ-//-- I$I$ӽФ I rZ%`&rohhxx tM4I I$I$qq AA$qq II$qqIDIRN/--- I$Iӽ񬪪 ӽ񬪪X2&h"'rnhhxx S$C% K 1𤭭 H I$qq I$ $qqIDIRN/--- I$I$r I$I &ڂ5xDI$roWжI$rnUԶI$rNUx$I$1̃z_ dI0I  qq I$ $qq II$qq I\rN/--- Ivmr!$A @r%#&nxxxxdIDI1 I$A 1 I$I1ꮪ II$1kɕIrn---- I$A$s뫪 M&mr_~b&j'rMxxxxI4Hn &IJΣ IѶIrn )+01z ɕXrn---- ӽ񬪪 I$I$ -P5r```p!g 1М I$I$r I$I$q I$ $r m$M$1 ڶ R𤪪 Im$R𤪪 H6m$ѵ񛪪dOTr%--  H$A$s m%m&r0x X-50hhhx M@m1МI I$rI$ $r iڦAS$r  r---- A$I$򴪪 I$I 񴪪B5Z#6pxxx MM1I$H rH$Ir &I4r  PrФ%-- I$ $r I$ir 1X풵Фxxxx VlM1Ф  $ѵ񛪪I$IrA Hr XN---I$I$sI Is*( E$A4 m۶H$rV ۶ I$r*U hm4rU -&I4r~U IiA$A$I$I$H$I$R1 @ I$r0* I$I$ӽФ MIr C; :rzzzz II4R1A$$I$ $I  ˶m lr)) + $I 1@$$1 I$ $@I$r1~I$Ir I$E$ѵ񓪪 H&H"q 1Q)) 6r I $ m5h&rxx I6iR1VVVUAIr $I$rI$ArA$$rAH$rI$ rI$@r I R)) I$I$sH As  8CƳrxxX^ m1mrI$ѵ񛪪I I rA$Ar )РIr1  I$IR rQ蠀 vh'c'Q0j H$$0 I$ $1 -ֶI1 6$ѵ񓪪 II ѵ񛪪 I )$r)   $A 1IA$1 Ck5rhxx im&R1VVWW @$ 1ꪪ II1  Im6r N 1-- I$H4 ۆ%I%r AC'R z  H";?rW  IlrФU i-rФU ,5\roz_ A1I$I$r$Ar1ɗtIr%--- II$ӽ  ӽ #%Z%Ϥxxxx I*A1ФI$I$1   1  q O r-  $ H 򴪪 IHr>> $ ppp@ h&M61I$IRn 閮i1 ɘ鐓1-++ I$Iۿ9i '[-rzz~ $$&I1 ]$m 10 I$I1꺪 I$I1 I$I$1 h6i61 HH$0  (mR $@$r HӦi$rQ5Z9Q`hhh]m)0𤪪 I R I$Irn H4m$Λ4$ 01 )  r@ S.Z%1x !ے\\ A I$q $Hd1ꪪ @F:1𤪪 @1---- H Ar  r P4Er```p  qq I$I$R I$@$RA( М@ Ф---- AIr I$$ $Zyxx I$ 1 mMR𤫫 LH$1 I$ $qq I$ $qq m6mѢ1j c:c21L@L m-h,!1jj   Ф---- I$H$ @ӽ X"&b"rxxxx  ɖt1A$A$rI$I$r 8-1@@  Q-) ۲%X-r1a&r0p$H$Qnxxx i-rn qq $I$qq &,)М@@ ILr-- ӽ ӽx"'J2'rxxxX $C R IM0 I$H$0 ۪!@@I$I) I$L"Q.UI$IR-UI$IbrnտI$Ir+* I r I$hs ؃c:rxxXx I$I$1  rn mm۴rn &, @IT rN--)) Ir m۴h[rp$H$RNxxxx AI$qq I$Iqq I$A$qq $i.!@@ rn---) ӽ񬪪  r `"'zrNxxx d" 1_ i1𤭫 I$I$qq  @@Iɐ rn---) I I$ӽ񬪪 fnr %r'roxxX Ih1 I I$qq I $1񤩪 Im I$$M10 I Ʉ1 I$I$qq & )@@@ \o---- I"H񴪪  $s `&jRnxXXX  ѵ񓪪 I&E&r I$H$1 ۸ 1B` pɔ ro-- I$H$ I$h[s {'j'rMxxx M&K6 I$Qo ᘉ1 (@@  ---- m6mۢӽ񬪪 I$I$ӽ  rxxxI$I ѵ񛪪I$A$rIHr ɛ!1@ I1R.ս) I@U IbUIꖛHտ*9Q6 1* &c:c;rj H4M$r0|\~~Z`(F0xxxI$H$ѵ񛪪I A$rA$$r8 -1@  ) ---- HI$ IH$s PrxxXx A)Р1 I$IrA$I$r ä*-1@@Nd Ф---- IIr M"Hr뾿 X#+rФp`xx IHr $IrIA$r 趶Ҷ1/' 1--)-I s* I$Is* `b:f$RhxI$I$I I$H$I$I $r1I$ $r1I$ II$ X:R1~_^ f۱r1  iIr]յ ےd6l m&m&RhjzI$II$I$IH$I$H$r1 I$I$++++H$@1 $I$1 m&MrhhAr $IrA$Ar 2ѵ񓪪 IMQ))  r)+H$I$ mmRxxz@$I$rI$H$rI$Ir H$@ r v؉iRU NĴArU ImrU Im rկ I$H$sII$s h&m1xhxI$ $rA$I$rI$I$r &3 C#ѵ񛪪n 1 I$@r I4I $rQZh HhQzxp II$0 I I 0 0i1 -жIѵ񓪪 n-r A$H$sA$H$s X&kۦRxxxzI$I$r M4 $1  1 . [ۭ ,1@ n1 - M$i&r A$A$S &s&rxxX I$I1* I$ ѵ񛪪 $Iѵ񛪪I$H$ѵ񛪪IH rI$$rI Ir !1@@ L r-- $ M2r }$rUX&I$rxxX^ 4$1 '1𤪪 IѶm61  1b rФ  S_  $SU_  5FQ @Ӷm&1@@@`H$H$Σ IIΣƍ|21 IIR   A$I$s m%hҦRhxxzI$I rI$H$rIA$rI H$r I$I$r N'HbҒQ R 5rQI$I$rQ*I  rQ(@$I$rQ Hq1XX Qzzp` I6MR I&iQqq I$I$qq @ 1IHf 1+ ӽ񬪪@$Hӽ񬪪I$H$1xX\\ `I1 $H1𤪪I$(P_I$.Ϥ@ ɔqK- ) @@񬪪 @$ %FbrxxX $A qq &i"!rn (M$j^W@$I$n@@I$I$1 -- IĒ1   X&fkrxx H$ $1 4I1ꫮ M1 A$ $qq I$I$qq $I$qq A$I$1 .)")@@  rФ I$I$ $ 2$M:r KLQؘ ِn)n1I$ r $ r (1@@ tt r--))@$A$ rQ LdK1ؘ qq $I$qq I$I$qq !(n@ Ф-- ) I$I$ӽ  rKK1Xؘ I$ $qq IvVl1 Nb31 ۲)؂)-@@@ ɔIlQn--- 1I$rQ 5 AM$r $IҤs Ii$s $I$R $ 26b;r~o jz1nؘ =:=1 $I '0 A$1_  -.@ --)- I$I$ӽ򬪪   rLL1Nؘ I$Iqq $qq H$I qq  (N@@@@ ɐ r- I$I$ӽ򬪪   r LDL1nؘ ح1t n1񤋫 ڶhv1ꪾ "!)N@@@  rN mѶhӽ !13rkk K$H1Nظ I$ 1 ē&@1Ii2 i$IZѵ񛪪I$ $r @&-"r I$1")")N@IN o-  I$I 񴪪 늶زrjjLȄM1nܞI H$r$H$rA$I$r (1@@@ r  I$H$񴪪 I4E&s ZFj4R؜ m$hS41tL':Qo Rn ,2,n@@@ )r I$I$ӽ򬪪 m[m6rjj jfkR؜A I ѵ񛪪A$A$r H$ѵ񛪪  1@@@ dJФ  IA 񴪪 A$A񴪪 I$I$񴪪 I$I 񴪪 &c8fb$rjzzz h4I$q1v~_ s6f|1oؘ I$rH$I rI$I r  1@@@@dJr  I$I$񴪪 Ai&rjbfk4RX؜@rH$Ir r 1@@@/npNФ)  I$I  6 ;8rjoX'ZrФx؞H A$rArIIr*.,1񤀀 iR---)I A$s I$ $s* kem1`xxIA$I$I$H I$I$I$ $I$ $H$ ;p8R1 ]6E6rZ[N1/++ q1ór) I$I$s v@ǤR````I$$H I$I$H$ E6HR4sR I&I ++*  $I$1I$H$s humRhhxzI H$rI$I r $I$r آ25ѵ񛪪  Iq1 ڱó+ $I$s  kKd1xzzzI$H$rA$A rII$r ]!-r1 r H$H$s $A s"I$AsI $sI$ $s* H$I s( h gs&G1ppxxI$I$rI $r@ I r ,2-1 !ړ1  M4I4r I rjʪ Mfmrzxxx I$M1 I4H&0 @$ 0 -I$1** Yr1 ) EI$r" II$*`'zR R1xzZ^$I$r $I 16a1/*#)1@`J ֔IIr1 )  A$ $R ($ &rJ kQФXؘ@ $rI$ $rH$ r@I$r$r1I$I$1WpA$@$1U"ɒ$Hӽ( NФ- BHr mahr_jjIMQظ #94 1r* A1'/" $ѵ񓪪 <)-1bBjhk!r ) mmۤӽФ $I$ӽФ 1kf ضr@@`@$IRn 1𤿿 ۺ-241>+. iR  񬪪 1! GtD1`pxxII rI$I$rII r  A r1 I$I4򴪪 E$Er kP+rQ IHrQH$I$I$ rQ뺪rQ  c%Vcrzxxx $I 1磌  . $I1 "1 SJS:ᒵ2+++ D lӽH$ $ӽI$H$rϤ 1 𤪫kI$I$0pI$I$𤯜ࠠ I$I$r H$I$r*j--1```M1N>> $A$rH$H$r $I$r-"11``p dJ  I$I$񴪪 R4(4rjjjtL1 H$H$1 &C2ΣNd6r񤪪 #0B2$n``pp  ӽ񬪪 :ۺ5Q@A1AH$r$I$rI I$r"-#11``ppIt  $H 񴪪 APr I$I$񴪪 H $񴪪 B69Qph t8 B'MD1II$r$rIIr",#11``ppv'P  II$񴪪 c:c'rjjjzt1H$IrI$ I$I$"-"12``p t  IR4M$򴪪 cm;rz~~~A,RФA$ r $@rIIrҲ1108 R I Is I$I4 gXrA$ $rHrA$rII$R1I$A$R1 84$R1_ MIq*,"4Q1_ nQ-- I H$1I$A s mdmlRxxX~  I$ 6M$R1WW iR1  C8r1?/// ۳r   I1 I$ $s MdMRxxZZ@$ R1I rH @ r Ү-#R1յ Iiq1/. 1ñس $I$s l61XXX\I$I rA$I rIH$r m.E-r1%% !r * I$H sH s  $@$sI$ s*I$H$s II$s MfGK1xXXXI HrH$Ir $ $r<11(( A۶ir I$IR *  M$ r mMr1XxXX iiq M&i[$q i -1 24]341zZZ /Uqr)- m$Q * m"Ir]^|r I$I ѵ񛪪 i&$1 I1𤾪 ,1ФhppX1r7rr  I$ $r IB;!B;rjLRФ $I$rH 1UUI A$rI$r I$rI A$r1A$IR10ӽФ__ TJDJ1- II ӽ @4A6R MDN1<< I$A$ѵ񛪪 I$A$ѵ񛪪 $$ѵ񛪪 (01bpxPpr1 @$@ ӽФH-rQjhL\QϤ`H$Iq`hhx  Rn R (,1???? !!R   񬪪 II&r NMD1xX\^I$ rH@$rIH$r C:c3155 I$I r I$I ӽФ @5[5rQ H4QQI$@rQ I rUu+ r tZtErxxxX x$I1^ I '@  dIqq ,1?? &l"³RIӽ񬪪 &[SrjjIIQϤܜ '|r&1xI$I$QOI$I$1oI$I$𤯜00I$I$r1 I$I$ӽФI I$rR@@@I$I$1ФI$I$QOI$I$QOI$I$QOI$I$𤎜I$I$0 I$I$е𓪪 :qq1ɐp1𤜜  $1=M1W qq A H$qq I$A$qq $qq II$qq B"%R1ФZښ: IPI1 A$  $C0$:r1@ ɐ44$$ II1I$Iѵ񛪪 H$ $ѵ񛪪 4%1 n'fr-@$@$ &:6;r1 Oɐ<$&& @$ $qq qq A A$qq R%R"%А  pA I$I$ӽ (1` ɑn<,$ qq nb1AI$r @4@$1P(I$- UԐ$I$ U I$1 U DI$qNU I$rNU m$rnU $Q LɔH1..'%I $r$I$rI$I$r=@.1NBDN1  II$񴪪 ۂX#51` 166& I$H$1諭 I$H$qq I$Iqq @$P%. II  ӽ񬪪 Ȁ̓1```  N<&& h&h&1~^ dIdH1 I$A$1 @$@$NА Pm I$rU @$R@`j MI$4, I$1U'?1М?1U<1Фw @'1Ф_$1ФU$1U@#$1PА   -ڶk$ 1&```xII$1-..'$Hۖ$1U$I1 ?1U#%R&NI1 - I$I񴪪 2@)Rjjzj 1446& I$I$1꺪 m&m4RmkQo@"$C%N p I$I$R_ m&m&R``` 14>&&H$H$rI I$rA$Ir#6I$I$r1I$I$ӽФI$I$r1``I$I$ФI$I$QOI$I$QOI$I$QOI$I$>I$I$q1髫I$I$QI$I$QI$I r_+I.E rw MU CrU IҶrU IRФU I< ФU IФU {w$ * I $r I$H򬪪 -51`` 9 II$1 C#6c;1 H I$qP&b.1؜ )ir0@  ќ 8<1r1bbj{ n H$I$1 II$1 H I$qq X%h' !`R I$H$ӽ Ȁ 1``p HHn I$I$1 II&1H$ $r m6I1 MҮka1] ۭ&`51W^ZzI$I𤯜:. JPA1  Ivm1** cð 1 Im1  IZ4HR𤯪$H$rI$I rII rP` 1 閶i1  I$I$񴪪 *1``` n I$A 1 II qq $I$qq @&p$N !IDI1 I$I$ӽ򬪪 (-```p N h'1 ml1 -Ҷm1 c&h'N< m0  mlrI"1#Rj`I$I$1n^ I$RW IrR-U IR-U IR.U Ir$nU IHR-U I$'rnU Ir r+ y;HHR I"ir kЪzxxxɛ11N#@ UIR_ I"a$ U cXl߾ I2 ̳1 '9r B#9)Rjzj` I$H$1UU H$I$UU 9ZrUU_P$HQM I4   I$Ir [5C5``)1H$$rI$@$rI$H r pX%1\ZI$I$I$I$Ϝ* I|IdϜ=/?? IRm1( IE1  k&Z'1 II1𤿊  I$h1 $Ir   rH$ rP` 1n Nِi1  II$񴪪++1`9 1A$I$rA I$r rRX 1 ivֶR  $I$ (``` I I$rA$A$ѵ񛪪I @$r@`R:>>6 iiۢr + I$I$ H$H誨* 3ٛlR^d UC$9lU k+r Im;lU I4-mrU I:[+r]5IBr/  r/+*$I$s I A$1 8m;r Mɚlr1H$H I$$ @m&R1 ثkr15555 I$A$) I$I$1 ۲%[2$r ` br1I$IH$ $rI$ $r [ k155%% M&H$rQ lٖl H$I$jj ɖ Kr1XXXTrI  rI r $I$rH$A$rI$rHI rI$ArIA$r $A$rI$H$rH I$r $I$rI$Ir $H$rXb Q155 ImQ  I i6򴪪 HmҦj ɖr1\\\VI$I$rA$Ar H hrX1𤜞< qBmr0 I&H$Q0Zj  10Ϥ`   $H$q @$I q NHI Xe1؜ 鐶)ЭR)  I$I$ M&HsꨪR#HФzIҶ'AUIº&AUqR U I޶U IbUOR U IҖU )EI+ Aۢi۶r H@ӽ Ќ-1``  1 I$H$ѵ񛪪 @ѵ񛪪 $I$ѵ񛪪 R %` 1Ф<<  ir hӦhۢr [5@341 H Ϥ I$IR IAR ))qq ePR=577 )P Ar iE񴪪 @6-r`` lfCr1TVVVH$H r IrI$ $r m4c'q A$H$q I$q I1q U5",1{mΛ Ii1 I$A$qq I$A qq I$I qq I $qq t$1 P }1::>>  r@@ӽ0&`'``II,' I$H$1I$I$1oI$I$1oI$I$16666I$I$rQI$I$ӽФI$I$r`hpI$I$𤯜  I$I$QOI$I$QOI$I$QOI$I$1Ϝ7''I$I$r1 I$I$rQ_\I$I$Q IHq1/  dIQ // II$r  rꪪ $@򴪪 H$Ar @Ar @Ir rꪫ I  A$,Ҭ11`xxznm1Ф  mҦ $ѵ񓪪 I$Iq I$I q hx1n iiq1 A&I$"11Q`xxJ n  I$I$1몪 I$I1 I 1ꮪ JJdR66 ۱ r I$I$ 1``` B  mvi1I$ $r$I rI$ $r H$m&ѵ񛪪 1jI$I$Ϝ*.*( `01 aqA H$rI$I rA$$rI IrA$I$rI$Ir`x1N<<<$ ۶r II$񴪪 15Ф``` JIn  H$I$1 II$qq $qq H$HN4444 1!R  I$I$ӽ򬪪 P#5=r` IN  ȃ9W"I$I$rUU~I$I$I$I$0P 1 I A$ѵ񛪪 h&k$1 qn1+*IA$rA$ArI$A r$$rh 1N<,$$ Yti׶r $I$񴪪 -Ф`!1 IArI$HrIH$rhg|1444$ ór II$񴪪 -#1```` 9MN  II$r I I$r A rXr777 ِmɖl) M&E6 I I$ $  $ mP$i&r $I$S IA$Sw &ӽ𤪪 ۖ$rU $AVr ii$r * I $s I 1 Æ)[=8r` IAr1 I h@R1ZV HR1]e Qh&r/'77 q۳ +I$I$1 C9:r`xxx d@R1I A  I$I$ r r1%%% m4M4r0 mir  mҦmR$jzr )nr1TVVVI$H$rH A$rI$I$r A$rI$IrA ArI rI$IrI I$r $rH$rI$A$r )4h&r iH$1 I$A$1h'xQ1 隴ir- i&A$ m.h6rx mR1VVWUH I$rH$I rI$@$r㋞xRФ>>&& I$córU} NCrQ R 4Z4qzxx  M  ISA$1  Iq q hx1446& i۶-vr AI$񴪪 A$I$񴪪 H$ $񴪪 I$I$񴪪 I$A$ꪪ $ $񴪪I$Is I$I4 H$ $ $$񴪪 I I$ mۢm۴򬪪 II$ 11``p !1 I$$q $H$q I$I ѵ񛪪 hJdQФ66&.  A$r $ r몪  21``p Ф H@R I R   R  tr55% ɐ P rI$I$ PP39rpxpp b1 H$HrI$ $r ii$r E&Iq I$I$q H$Iq I&I$ѵ񓪪 C5[&1pC mE1 I$I$rn $I$qq I$H$qq A$I$qq I$I$qq I$Iqq hH1...& I $R  (rq'p$r```I$I$n I$I$1I$I$QOI$I$1oI$I$1''%%I$I$rQI$I$ӽФI$I$rϤppI$I$1"I$I$w@I$I$QOI$I$1oI$I$QФ%%% I$I$ӽФIIӽФI$NrQ\pb-:q1 /` JrQ== I$r= $Ir  ꮪ  񬪪 H  񬪪 P Im$ I$A& m M$r,5r```tAdH1 I"I ѵ񓪪 I$Iѵ񓪪 I&I q ȇx P16&'' I& :rQ I$IQQ )X#=1``d1o$ rH$IrII$r HzPR&'// A$I $@1ڢ1Ф```x P1HI$r $ $rI$A$rI$H$rI$H$r @ X'1XtI$I$Ϝ.,** Iɖd1 IҤAѵ񛪪 $H$rA I$rII$rI$I$rI$A$ѵ񛪪I$ $r t TQo&''/ AIQr I$ 񴪪 b#:#&r``` IIN I$I$1 I$I$qq I qq HNd1n&''' iiۢr ӽ񬪪 %P'r``px AINH$J$~~ P1 I$ $ѵ񛪪 HDJTRn&.. Ir I @&h&I$I$rQIIR//?/ @$I$񴪪 I$@$񴪪 H񴪪 IH$񴪪 I$H$񴪪 H$M$񴪪 H$I$񴪪 I$I 񴪪 E6m%rzzZZ Q```pP1N@ r I$rIr ˴PR6''% I$is I$I$񴪪,.5Ф```ppP1 I$H$ѵ񛪪 @$A$1 I$ 1 HJDN4&.. iVr- 1؉8r1`p T1$I$rA$I rI$Ir$$1RXXX I1\Ibo0B1 Im$I1М}PH R𤯫 H&mR$r `f1 BOѵ񓪪I$IrI I$r $I$rI$  r JPR6''% A$Ar I$A$񴪪1X1r```tIP1oI$IrH$I$rHI$r PJLR6''% Air IH$ 1#4Ф`pxx ِ vln i Iq I$A r AI$q 8p pr7'%%  I$I$ I$I$ m6 $r I$I$r m6rU $ DrU m&Er_MR2 rUI$ArUODI r I$@$ 6h$سr *A$I$1 ؊-X5Rhx hiR1 $@C'R1v]DN$1mߖoR  { sr''%% I $ $I s# c:1hxtLd R@$H A$I$HH R1rLIr I@$r0 Iir) )- 5&rpxx ٔirI $r$@rI$Ir$ $r I$r ArI I rI$ rA$I$rI$I rI$HrI$I$r A&i$1 I$I 1 I$  1 JHQ&%%% I]Ѣr-) $I sR11h HdMR𤪫I$@$rH H$rH$I$r LrФ'''% I6ms* H$m&r~ Z55xxxx I`M MI$0 A I$1 qѵ񓪪 HdJ\Q67'' iIR IA 񴪪 H$I$񴪪 A H$񴪪 @$I$񴪪 $ $񴪪 H$I 񴪪HH$q I$  I$A $ $ H$$=۰=Dz HI$ 1X5hhx IdI1 I I$q $A$ѵ񛪪 I I$q HTKLr7''% I A$r $򬪪 1``` tIP1Ф I$H$rn $R II$R JT<1%%- I$I$AIs*" %k%1h mvh1I $rII$r $H$ѵ񛪪 ѵ񓪪 I$I$ѵ񛪪 )$Aѵ񛪪I r H$I$1 @qq I$ $qq I$I$qq I$Iqq IHqq qq H$H$qqHdKXR&''- IA r @R 6rX'p$r``pxI$I$nI$I$1XXXPI$I$QOI$IWWzI$I$Qn----I$IӽФI$IӽФI$I$rФhxxx I$I"1МI$II$IU]I$I4ujI$I$1 -I$I$rUI$I$rUI$I$r𤀪UI$I$QϤI$I$0ϤWUI$I$QI$I$RϤUI$I$rU$I$rФU$I$ФUI$rФU I<ФU i$rФU @rvrФU "(^{Qoz_ !m 1Ф I$ ѵ񛪪 I$Iѵ񛪪 iI ѵ񓪪  r%%- M&hrW~h qb&I'r1 `&c2&1Nhxx Bm1A$A$rA I$r$I$r Or---- A I$ H$I 񴪪 1 rФ``` H1Ф $$ѵ񛪪 -m$ѵ񛪪 &l81  0AҴ21j h$&1z rm2 Iq&1ժ_.aw1** ) &1  ARE$1" E(&1 M:1 iI$R𤪪 m i$R𤪪 $A$R𤪪dSdr%--  A I$s II$񴪪 X"&b&oxxxx dI0I H$I$1 II$qq I$I qqIDRn%%-- I$I$r $I$ӽ񬪪 X"&j"'rnhxxx p H$J$ iiqq I$I$qqI$  mI$rU @nI$rnU :&I$rNUI$I$Q UII$1 * ln$oU mN$nU im$nU m$nU i$nU m$nU I$U Im$U 6O$rNU IAR1_ I$AТR1w@1 IФ R1 HAR1 I$ I&A&R1VZ A$ $ ۲-1@  p----I$  $I$ %ZxxxxI$H$R1I$I$I$I$ ӺӲ!R` pNdNr )+ I$rQ Q // -4H"rjꪢ NR;[ RW  a1U^"1U_$i1U I 1 IhvR I6]RU* I$튢RU I&E 1U ]%@1U im 1U IҶEm1U i:`1U I4A1U I6Ca1U Iڴmr1U qmQ--+ I $s( IH$s @b*Ф`xxxI$ $rI$I$r@H$r )1@ ---) I$I$ H M$ XrxxxX i6h۶q h$-&1 $I$0 vi׶q IҦE&1 iҴ1 M4mR I4A1z  II"1  I i6ѵ񛪪 H1I$I$ѵ񛪪I$I 1@]U] IZ4h1  M6M1 I&M61  IӴi1u&C%1 IR-qq Mm1 * II$ѵ񛪪 I@$ѵ񓪪 A$ $q Æ"1@ --) I@򬪪  r ِ xxxx II$1 I$I 1ꪺ I @$1 -Т@ 41 ` I)))) $ $ M&s* dB2ҳrxh 3Ir~  rU )irФU $rϤU &Uc `Uwn"I]( MU ҶU IrےU IrU IrФ_I$ФUI$# UI$% rU I$ r T$I1-+ m6m6򬪪 d۰rz޺ IX eRXxXXAH$R1+*$ӽ1PPPP m&)6r )1@@@ !  I$I A4A6r frФX؜$$R1n $H$I@$I$I$$I$R1jIA$rI$A$rA $rI$I$ѵ񛪪 iZm6ѵ񓪪 MR$M&q H I$q $H$q HM$q $I q $Iq I$M q I& $ѵ񛪪 I$IqA$A$r $H rI$I rI$Ir Ȑ(1@@@@ )  I񴪪 Nb3pb;r~zzrDHMؘ Iq$1 H4Iѵ񛪪@ Hr*ɒ",1@@@NI---- II$ II H $ I$ $񴪪 I$ $񴪪 I$񴪪 I H$񴪪 I$I$񴪪 I I$񴪪 I I$񴪪 @X0p`` I0+*./ ٚir A$I$񴪪 A$$񴪪 A$H$񴪪 H$I$񴪪 I I 񴪪 I񴪪 I$H񴪪 I A$񴪪 M; c#r HL1nؘ I I$1 I$I$1 I$ qq  (n@@@@  r- I$A$ӽ񬪪   rJL1nؘ A 1꺪L$L$Qo R I$I$qq H$I$1 I$I1IHr h$h&1pM$H$H1 I HrA$I$rI$ $rA$I rI$I$r $H$rAI$r 6B;Mѵ񛪪 MIqH rI$I r@I$rI$$r Ȑ)1@@  PФ-  I$ IQ44r j&fkRؘI$I r I$H$1 A$I$q ,!"(@@@d  r f'tB'1zxx I$I$Q0 viQ*+- IҠA$񴪪  $񴪪 @$A$񴪪 I$񴪪 I$I$񴪪 I$I$񴪪 HH񴪪 H$A 񴪪 II 񴪪`?/:Qxxxx IIr07-'/ I$ $s H I񴪪 I$I 񴪪 I$I$񴪪 A @$񴪪 I I 񴪪 I$I񴪪 I r jFbR؜I rH A$ѵ񛪪I H r )1N@Nto  I$I$ꪪ R4IR$r jfhRؘA$I$r $$q 61ѵ񛪪 i$r I$A$ѵ񓪪 AI q I I q I I q ]5@`1ﮪ I$$qq I I$qq A$H$qq I qq I1 I$I R1 II$ѵ񛪪 I AR1 E$&R1 M$ $ E"iR1I$I$R1o A $Q A$ R1_  1Ф@@@@N  I@$ i;c;ZyZ$rФH$IA$I$I $*Ž-1Ф@@ W1or-- I$ Ϝ IM$r0 ** Ir / I$sHIs** @ s*AIs**A $s II$s @ I$s *A s** s* As"H Is*I$$s*A$IsH$ s  ۲%C%rx $Ar=% i$I$+ $ $s $H$ fb4rI I$rAI$rH $r (1@@@ p Ф-  I$  񴪪 ("IR$rkfs6Rؘ tؤMr M&mq H$I$0 qWq1 EЦm&1I$rH$I$rH$A$r@$$rH$I$rH H$rI$$rI$I$R1 I$r $@rA$H$rI$AR1 C%C%1 I$I$1 H I$1. I$I$q HI$q I$Iѵ񓪪  1Jh` d ` 1 I$A򴪪  $x$K$rXXX\ pI$1 @I$_ I:𤨯w;I$𤯜@`!$I$r --- $I$RUUI$Q @I$rQ 0I$1 @I$rQWU 6I$r0 pI$rQ5= 0nɟr mr 6?r #QO{r @v'r @$@rꪪ A Ar H @ H I$ m۶)ڶ I$I ﻪ  &m򬪪 @d#hrj~~z j$I1Nظ ݚ)ZrII$1xpppI$A r"-"01``ppPNdJ  H$@񴪪 1'@b'rjk0{RФAI$ $I$A$ $H$A$H$I$RA$ $rA$Ir I$rII$r $H$r IIѵ񓪪 IҴA&q iI"q I$I$q I&Iq I!q I$4ѵ񛪪I$@$qI$Ir I$rI H$rI$A$rŔ1М(&.,"-1```` Ф  $H$񴪪 C 6b:rjjjj K˱ n< -жm$R bm1믯 I4I$1 ,#4@``p IФ II$ &I$ I$I$ I $r I$I$ $I$񴪪 H I񴪪 I$H$񴪪  I$񴪪 HH񴪪 38ZɓQ`` I$MҴ0𤾾NR0  H$I$񴪪 H$񴪪 I$ $񴪪 I$ 񴪪 A$A񴪪 񴪪 AA񴪪 I$I$񴪪 ۦC$rjjjz LDNn I$I1 I$ $1 $H$qq 21#%N@``p r ӽ񬪪  4R` NDIN< AH$1rp𤪪 RΣ mӴi"rn H$1 I$Iq Ir h&k61pI$I$МjTVH 1М-/I I$rA I$rH$H$rI $rI$A rI $rI$$r c8C;ѵ񓪪 ѵ񓪪 $@$rI$I$rIA$rA$Ir")"-1``Nd--)  AI$ +ڭ]-rjs z rH I r I$I$1ꪻ I $1 "1"5n@`/Jp   m&h6Qz I$HQ0VVXX )Ir0 -- E$Ir I$ $񴪪 A$I񴪪 I$A$񴪪 A$I$񴪪 A $񴪪 I$H$񴪪 $H񴪪 I$ $񴪪 k$m41xxxx Mtm0---- $A$񴪪 II񴪪 I$ $񴪪 I$I$񴪪 @ 񴪪 A$񴪪 $$񴪪 m[h,rjjjj|1o<I$I$rH$I$r I$r"-#11``ppMM  I$a$ C;C:rjjz|DL1<I A$r db't'ѵ񛪪 6$ѵ񓪪 F$q$q A$I$q I$A$q IIZѵ񓪪 MRI r @@1 A$ $1 II$qq $A qq I$ qq I$I ѵ񛪪 I$ѵ񓪪 I$I 1 $I$q$I  vb86Iq A&i$q H$M$R1   q I$R1ק "("01@  &P I$  ;c$rbARФ $A$ $I$R1 m;FR1z ("11Ϥ``pP iqQ A$IҤ IH$rQ* ijr lɖmH I$sA$I$sA$Is(A$I sII$H$I$sIs * Is (I$@$s I$I$s*I$I$I$H$sI $s  C;c'rhz^^ iIr%-II$s*I I$ 6m6rjhRI$IrHI$rI$A$r"-",1``ppJ`  I $񴪪 C5R4rjjzk1IA$r m6EӶѵ񓪪 aC'1 I1 mI1I$A$r $rI$$rA$ rI$I rI$I$r $I$rI I$RH$Hr@$A$A $  `B'tBq I$H$ I@ I$H$ H$I I$I$  1 i` 1 I I$򬪪 H H rjj {Z4Rؘ IҶmQ1} IҢh1 m lضm1׮ ,-Ϥ`` Ok dIr Mۺ5rQ* ömYѦrQ i5XrQ :%U,HrQ} Hb;I۲ IرmrQ* NL$$BQ?++ 4 r 6l۲᳽ M r Vۆ I$A򬪪    A꺪 I$ I$ꪪ I$r öI$8r mv+$r ۶addzr  $ 2$c:rjzzz|\1>$I$155II$1ppppA I$ѵ񓪪P<#1oА`B@N1  H$I 񴪪 m6m6rjjj PNRФ64, i4I&R1 E4 $R1$ R1]@$A$R1I$I R1jW MPM$ѵ񛪪 mm$1( mM$ѵ񛪪 mдI$1 I@$r M-$1  H  1 I$1 I&Mq I0'1* IH$1"* EM&ѵ񛪪 (i&1  4h6r ڤm$1  &E$1 EڠI$R𤪪ȁH1,,<@#-1 bfb1  H$I񴪪 -ڂ5Rjjh H1466&I$H$R vI0 IA 1ꪺ @$@$신P sI$1  mI$rU 0rI$rU mI$rU I$rU @I$nU @$rUD$U I$U m~$oU $U $oU$I$ W JI$Q  m$oU m$nU m$nU M$oU H$nU dI$.U 0mΓ$nU i$nU w$nU ɐ1..'% I$I 1 H$I 1 H$H$qq R"$R"%NА Ad I$I ӽ񬪪 dB:0C2R```` ɑ 16,( @I$1񤪪 :j&U PN?U &a&$1𤪪 m۶h$1񤪪 II$1 @m$1( h&k&1]I$I$𤯜~ɐ D1М/' 4i&R𤪪 $R𤪪 hڠ-&1  H6m$R𤪪 Mi$R𤪪 EۦM$R𤪪 I6E41 ;$1 I6 &1"  I4A4ѵ񛪪 mҠm$ѵ񛪪 H)$ѵ񛪪 i$ѵ񓪪#Я1ФА0( bIR-    k5[Srjzzr014<$&I$Ar A$I$1 A I$1 P"$R"%신P `n$ U 4mf'rU 8N$0-_I$1-U m$rn*U i$U a$U M$oU m$oU I$U Iu$oU 0m$nU m$nU I$Q-U nI$QN U M$oU m$nU $oU i$nU m$nU M$oU D$nU N$NUɐ1..'%I I$rH$I$rI$Ir@<@1Аmfj1 I$I  @4@4rjjjjMJ1Ф, H4@$1 m6($1j mvM1 * hI$1U h۶@t1 vhIѵ񓪪 I&$1 AE&ѵ񓪪 m&E$1 I$I$1 I I$qq I$qq I$ $qq I I$R A$I$1U H$1 A& $1w EQ$(6ѵ񛪪 H $ EM$ѵ񛪪 ɐdKdr ^21 A6m41 B#@ 1А8 BTjR  AI$ Ì5[5rbhzj <1Ф<$$ AI$R1 2$K$R1z m$i6q #4R#1NPP I$1U 4mI$1U $RI$1U @M>QU m/r @Jw Ug糽1U Юi&1U ۰M$1Um$1U жi$1U ֶm$1U Тm$1Uu'1U0u? WDo'U@g<Um#;ФU IrU mm8ФU 0i$ǓϤUFm<U $U=ɐ1-(.'%I$I$rI$I$rA$ $r@#9P1Аj)a1  II$񴪪 c:c;rjzzz N14,  41 @$ 1(" f0$1𤠨 m4E&1𤪪W &a$1𤪪U mӴR𤪪 4hۄR𤪪H$H$R𤪪 ii4R𤪪 6I$1 E۶E$R𤪪 ҦM$R1* U hAѦr1jU Ai&R𤪪 )4-$R1} Mm&R1 E4M$R1 I$R1W Mh$R1 IҶM R1* IA$R1 Iڶm$R1 M$R1BR+Q* 11逓R  A 򬪪  2$:rzzzz 1Ф IH$qq $H rn H$I$R /9R"%nPPI$QUPRI$QU m6'rU M?QU 0MwQU HQU @v1W1wS51+*+ Ii"1  IZh41A1h$1*W6I$1WU I$**]W$I1!I$ $1  IHZ1 I$m$1 hۮ+61j HH 1ꪪ $I$qq P%h$N II1 ӽ񬪪  rzz s9HrZ I$# rnUI$M1 WI$I$ UI$I 1-U*I$7 rNU I$$9] InU I$c NUI$I$1 UI$IR-U InU IRHoU IoU Iߛ@oU IRۓ&oU IroU IoU IrU qҚU IvU IB$@U i>UI&AФUqr&A+ I$I I$I$ c [ 5RhhxJ.1I r -4A$r I1 A&m&1 IM41(" IEѵ񛪪 N:1袪 C'HB'1 !1 I 41j IIR着 MM"1  I6H[1k(( IӠiۤ1( Imۢ1 IMЦ1 m3k61~ MҤM$1 9d1U+  I4i1  i(ڢ1( IӴE1 I$I1z IE61  IRm 1  I 1" im1I I$1A$I$rI$ rI$I$rPX 1 j R  $I  vl3m;sꪨ Z^yҶiU IR6HU I? 1MU IrU I–$U OmrU w>rФU IrArU I'#IrU I$UI$$ `rU I$$) rU I$)HrU HIФ I$" rW IU I&ФU N)ФU Ir;ArФU I$U I$d IrU I$&ArU IrФU* Ir- I r I$򬪪 M11h<@-RФ @۵m4r1U $hItR E$iQ1v~U I I$Q_( I4i61ꢀI$(R1I$@ 1 Kd 1𤵯 II$1𤯪 i1* I4Aѵ񓪪I r@I$ѵ񓪪 Iѵ񛪪 I$ѵ񛪪AI$rI$ $rI$$ѵ񛪪I$I rH$ $ѵ񛪪A$A$1 h6k&1꠨ II1* I$I1( IҢi 1  M I1  M4m1 IQi4qH$I$rI$IrI$$r@ X1 qn-MR I$ $񴪪 rꪪl3ۈi^ IU IboU I$ IrnU I$A1-UI$I-U I$) rNU IU IbU IU IoU IoU IoUI&AUIb)aU _U ONФU O_rФUIl ФU~Җ&ФU ҺФU iKU ֓IФU ]U DJ IA   ,-R@``` 1Ф H rn Am$RI$ΣM4𜺪M Σ RL1𤚺 IIb1 I$I1u IiP 1ߪ AI$1몪 I$H&1ת I& $1着 & ҄C:13O I$I1 I$I$1 H$$1 II$1ꪪ I$I$qq Iqq I ڶqq Iqq II$qq I-61 I$A$qq I$A$qq I$@$1ꮪ II1W I@$1I $ӽ1555 H$R@@WUH$I$rp*ȩ1444 iir A$I$񴪪I$I  $H$I$A$꺺I$I$I$I II H H4 $I$ H$I  I$H$ A$I $i$@$H M$E&r $I$r iI򴪪I$I$I$I$$ $I$H$I$I $ I$A$ I$ $HJr $I$ $I$ A i$-:``pp 1n pB'`81 A$Λ  I1 A$I 1 I$$1 I1꺮 I$Aq  I$1 IH 1 A$H 1 I$I$1@$I$r1UUUI$I$rIH$rH $rII$r:`519ww1++/I$A$r $I$rA @1xI"I I1_IR7,1UꀀI$I$ФUWW1 - $IrIr(R! 1 I$a$1 I$I q H$H$N<<4$ PR  H$I$ӽ I$ I$L$ I$I$ mX0zIB۴Q0UW^ZIIQ0 IirQ+; Iá8r & $s &L&R@PXPI$I$МI R+  I$IѠ񴪪 I$ $񴪪 H$A񴪪 I$H$񴪪 I$I$񴪪 $I$s @$ $s M I$r I  I$I I A$$IHH$$I I$A$I$#ճ1hxxx'`1Ф I$I r $$r M&M$1 C8&1 A4A$1I Iq tB34Bѵ񛪪 L$d'1 AI1 biѵ񓪪IA$r I$rH$I$rI$I rI@$rI$$r t'Db'ѵ񛪪 I I$1 in)mѵ񛪪I$IrI$I rA$I$rI$I rII$rH$ArA$ rHHrII$rA$ $rI$I$rI$Ir`Hx1o<44$ At)ڶr@I$ I$A 񴪪 $A񴪪?R峽r X6k&0xx^ 0-- I$I$r I$I$򬪪  򬪪 I$I$ $A$򬪪 I I򬪪   I$I$ꪪ II $A H$I$  I$򬪪 H򬪪  򬪪 @$򴪪 I$򬪪 I$Ir I$I$r AI$S_ AI$ӽ @$I$ӽ HA$ӽ҂`` H1 )P&1@@`X I`)1𤽥 I$I 1 $I2 HN1 I$I1* M4m61itI1𤪫 HI$r -I4ѵ񓪪 $I$1UU3 IM$R1*I$R1 $I$R1I$ $R1 @ rI$$R1I$I r1UUI@ rH$A$rA I$r H$I$ѵ񓪪 r1UUUaA$A$r $H$rI$H$rI$H rI$Ir I$r rI$ rj144$ iڮr I$񴪪 H$I 񴪪 A$H$񴪪 I A$񴪪 IH$񴪪 iA"ru&ْ1zrb&0*( `nsr0 -- I$ r A$I 񴪪 I$I񴪪 $H$񴪪 I$A$񴪪 I I$񴪪 I&s i"I$sIH$  $H$H$ $I$H$ H$$I$H$I$I$I$ ضtͺur A$I  $ӽ #1`p !JI  H$R h4i$Λ()ZQoI Λ mtbR I$IR I%ɖaѵ񓪪 I$ $ѵ񓪪 M4)жѵ񓪪 IM6q I$M"q IҤH$q H$I$1 )֭[Ӧ1 $@1  Hl'I$1 m۶-ڴqq I$ $qq $I$qq I$I$qq I$I$qq A$I$qq I $qq Iqq I$Iqq I$I$1 II1A$I$rI$H$ӽ1I$ArRHI$r1~ H|xQo&&'' )$i$r I$ $񴪪II$A$A$I$I$ I I$II$I $I$ I$H A񴪪 AH$ $I$ H$ I  c۰cdzr I$ r I$I$IA$H$I$ $ H$H$ $I$ I$ $@ I$A$ Hjr I$@$򬪪 I$I$ӽ A$I$ӽ 99r``` n ;C1H$H$1 11𤫫 I$ $1 I$I$1 I I$1 I$ 1 A$A$q I$1 I$I$1 IIQ1UUI$A$1`\ I$rIA$rI$Hr $H$r#1xx qq1+I$IrI$I$r ArH Ar"5:I1 I$H$wV\\ II+ //A I$rArI$HrAI$rI$I r $I$r HK1n6''' r $I$ӽ i)$򴪪 I$H$񴪪 I$A$񴪪 m&m"rz Hb'rQ|p i$I&p1 )$M$q1  4q$Q  ֶkӽ𤪪 X"&$Ir0 I$R IR  iM$񴪪 A$I񴪪 I$A񴪪 I$  񴪪 H$I$s H$ $s I$AS i$Ir IA$ I H$ IH$A$@$I$I$I$ $I $ +1Ϥ``A@1I$I$rH$Hr@$ $r [%[$1 I i1I $rAI$ѵ񛪪 ##(1 II 0 IIqA$rH$A$rI A$rI$I r$H$ѵ񛪪II$r :'q I$ 1 1iq $$rH$$rI$I rA$A$rHA$r@ @$rAI$rH$rIAr@ A$rI$IrH$ r pʴPRn&&'/ i4ir I&I s** H$I I$񴪪9rzzXkڤr0\ )ֶQ  I$Ir I$I$򬪪 I$H$ 򬪪 @$򬪪 I$򬪪 I$I$ӽ I$I$  ꫪ II$ mm H$H$ H$I$򬪪 M޶9r II$ H I$򬪪 II$򬪪 $ rꪪ A $r II$S $I$r  H$r $ $rU Irx@(QKlPQW F r M10u IҤMRaTU I(U I @"UU MڵrWWU  ݖi I$H$r @ I$1 I4ѵ񓪪 ډ8R1UU HI$R1$I$r I$rIH$rI$H$rA$I rI$A r Ar ۲-ز$ѵ񓪪 I4Iq $ $r A$r $I rH$Ir@I$rI I$r@ $rI$I$rIIr Hd̷d1o&&'' I )r @A$񴪪 H$I$񴪪 I$I$񴪪 I$I 񴪪 I I񴪪 IH$񴪪 H$m&r^~~ j"&`%Q^XXx pN'rQ /? 6r A$񴪪 $I$񴪪 IH 񴪪 I$H$񴪪 I H 񴪪 Mms I$H&sH$I$I$I$I$I$I I H I$I$I$I$񴪪I $ I$I$ 򴪪 I$A$ m$M$r 9#&rФ``x @M@$I$RnI$IRnI Σ I$IR I$I$qq &C0 C01{ A A1I  rI$ rA$I$r I I ѵ񛪪 Ҭh;1{ H1  $1 H$I 1 $I$R I$R )M$R I$I$rn HI$qq I$Iqq IIqq I$I$qq A$I$qq I$qq  1꾫 II1ﯻA$ $ѵ񛪪$A1- $H$rR $A R1Xx I$ / mI$rnU M$oUmm8Um-$rU m$U$ml<Um%;U mdēUmd䓽U M$UDm$U4mm'U$m,8U@u䓵U4Ie4ϤU im7rФU m&$U 瓵ФUMe䓵ϤU0Ml?U  Am'UD$U m$U0re$U Rm$Um-$UH$I$rnU mI$rU mI$rU 0I$rU P'I$R`x_U @ @1 I$I$ѵ񓪪 t'&1&a1𤪪 v햴1* A$q I$H$q A$A$R $ $q $I$q HI$q HIQ;: H$r1^~UAI$R1 i$ѵ񛪪 M&($1v I6)41(~P5PS'1^ II1𤿿U 0 61I$ $1(  m4H41 iM$ѵ񛪪 i&@$1(H&h$1\XXX  H   m $1  $1} H?1 M1 H R𤪪 M$$1H$I$.//UqI$rnU0vI$rnU M$nU m$oU 0l$nU i$oU O$rNU DI$1-UDI$0-U `nI$Q-U DI$Q-U 0I$r-U I$R-U 0rI$rNU my$rNU mO$rnU @I$NU i$rnU @O$rnU I$rnU 0y$rU m&@ 5s bzDQoؘ I$I$qq A$I$qq 1𤪪^ $$1 I$R𤪪 $$1 ._ $M\1? $@$ A$I I$q I$ $1 I$A$qq II$qq I$I$qq I$qq A$H$qq m4m6qqTB%J1ﯭ H$$1꺪 $I$1 kӵ-ڶ1ꮮ mi1믪 A$H qq II$qq I$Iѵ񓪪 I$$ѵ񛪪 AIq HHѵ񓪪 A$I$q I$I$q A$I$q ,41`` II ӽ A $ӽ#>=r^\\X q$0* &` r0 / $h:I$R ֬r$$r IISW II$r iqijr 4mr_W F2eֳr_U mr0 (rQ|_Ь:kR'Q~~`BtL'0I$I sFA0 ) I I$ӽ I$Iӽ򬪪 h6mڶӽ񬪪 I$I$ӽ񬪪 II$ӽ򬪪 I IB$a Im r IaAr Im6hs $:fB:rjjjzJ1I$I rA$Ir  r$I$rI@$r $I$rI$H$rH$ $r A$I$ѵ񛪪 I $q M$IR1 M$R1ᆰ@ I$R1j I$IѴR1 i$MR1 i$I&R1 i"mR1 I&HR1 M&H$R1 IҤAӶ $$r I$A$q I$A$q I$H$ѵ񓪪 II4 $I$R1+U I$IR1 I$I1UH$IrI$I$Q2I$ ѵ񛪪 1Ф``pr)qr1)-))I$A$ II$ I$I 9=гrꪪ I $ HI$ $I$ @4hڴrjz^_ h6k4Q I$I Э𫪪  $I4Q0 I"I$rQ? I$ $rQ A4I$rQ m"I$rQ h$I&q1 @Iq1 r0 AIrQ *+ EHr# 1I8S I$IRU_w I4I4r I$H$񴪪 $ $񴪪 $I$񴪪 I$I$񴪪 I$I$񴪪 @$I$񴪪 [[ R,rjjjjK1o<H$A$rAH$rH I$ѵ񛪪 I$qI$Aq M$H$1 I$Iqq mSm۶qq I$ $qq mݶrn I$H rn I$I$R HR  R  R @A R IR @$ R iM۴1ʊ $I$rn qq I$Iqq IIqq mm&1[ $Hd$1_ $Id$0 lmڤ1 hҤm$R$@RI$ R Mv 1 ",8n@  $I$  $I$ӽ   I I I ~@ $rQ IIQ H I ӽ񬪪 Is ۄIn MҴ-$ I I$rWn| I$A"rQ $I$rQ I$H$rQ h rQ mA$rQ I H$rQ A$I$rQ I r% ) ir HI$񴪪  $񴪪 I@$񴪪 I$I񴪪 I$I$񴪪 I$I$񴪪 I$I$񴪪 6c: 0rjjjjKG1N<< I&M 1 II1ꫪ I$M41I A$rI$rH$I rIIrI$I r i$IR1 6I$I1ﺪ k6ۂ1訢 $I$rn v$0 i1* ۖaɖdѵ񓪪 A$I$1 $Iq I$1 I$I$1ꪺ H$A$ E6m&q IIq H$A r  $ IH I$A $I$R1YUU>1r )1H$I$RnI$IQo "5%n``p q r I$I$  ӽ @  I$I$ II$ $ :t$ I$ ӽ ӽ mۢhӽ imۢ II$>r H$ӽ I$@$ӽ @ ӽ񬪪 I$ rzI$ rQdH rQ I$rQ  I$ r ii[r @ӽ񬪪 I$$ӽ򬪪 I$Iӽ I$I I$I$򴪪 MhZ$  - ,R@ MO1o< I$I$qq $$A1 L$x'W^x\I$I$1I$I$1謹WI$I$1IZ I$1𤮪w$I$1𤪫 $I$1U I$U @I$U 4М= I$A$qq $qq I$A$qq m۶h$qq ۺ-.qq B)K1𤫪 Iж1ת IҢ(ڶ1 $I1 HI$qq H$A$qq $ $qq I$H$ѵ񓪪 mӶ-ڴ1 A$A$1 $ $ѵ񛪪 I$I$ѵ񛪪 H$Iѵ񛪪 II$q $@$1А  1 @$@ E6RX&K$rx^I$I$-UI$I$0-UI$QNUI$RnU8I$rnU TI$rnU I$rnU I$rnUdI$RnUPI$QnU I$QNU hI$1-Uv'I$-UI$I$ U $I$ U JI$Q  3i$roU I$roUI$rNU DI$rnUI$rNUI$rNUI$rnU @I9rФ/ Ei&R$rqP $z I ,, @?11mۖ$2 HRh1  H$iѵ񛪪 $i41  Mi$ѵ񛪪 Z4H41" C-۲-1 IH$1* $I4R Ii$R1]I$H R1I$$R1A$I$R1}I$AR1WI$IR1ꪪUH H$ѵ񛪪 A&m$1 H$I$1  I$I iҤ@R ѵ񓪪 I$M1 I$I1 I$Ҥ1 6I$1 hI1* ۖ I,1   &ѵ񛪪I HrI$@$r@P1Ф qwqvR-))  $I$ @ $sm:^ y$U @rI$Um$U 0i$rU $I$QNUƶI$-U I$-U I$0-U VI$1-U`I$1-U TwI$1-UĖI$1-U dI$1MU 4I$1NU mI$QNU @rI$QnU @rI$QnU 4I$rNU mI$rnU I$rNU mI$rNU @I$rnU M$rnU Ar+ m1$r $HI蘳r X6m51` H146&A IrI$HqA$H$q I$Q񤪪I $1  p$N$1 Mۢ-$1𤪪 A$I$qq I$I$qq @$qq I$I$qq I$A$qq I$$R I$R I$H$Σ Z-&ϣ $  $  $R - -ڤRUUU $qq E6M$qq $1񤪪i @R$1𤺪 I'Hb0 h6m0 MI41𤿯Um۶h𜪪I$I$R II0 1?+.; R"$R"%1 p@ I$A$ I$I$r IZ&^ FI$rU PI$rU >I$rUI$QnUtI$rU TII$rФU J$rФU $I$ߓU  I$$rU $In$rФU Q|QФU MQU $QU mI$QU 4ɓ'QnU y$QnU @rɓ$rnU M$rUm$U Mv$U m$U m$U0Ir* i4ir I$H$񴪪 B:$:R@@@@M166&I$rI$$rA$$rI I$1  M4&ѵ񓪪 HڢM$1  --$1 k -h&1 @ @$1 E6 &1  X#4X&1] I$I$1𤪪 E$I$1𤪪U  1U Dr$1𤪪U $@6$1𤪪 $1𜪪 H$1 @@$qq @I$1 6h&1  1 I$H$q q $ѵ񛪪 H$1(( &I$1 ,ڲ-1A` 1𤫪IIQo I4IR ["$R%PА IT  I$A$ӽ  ӽ𤪪 m[$rФ^ TI$rUI$rUPI$rUI$rU@I$roU mI$oU@I$rUI$rU DI$UMf$U I$oU DI$rUI$rnUI$rnUI$rnU$I$RNU$I$QNU$I$RNUI$rnUdI$rnUdI$rnUdI$rnU PrI$roU )xrФ+ AI4r HAUUU Ң,r1@ ɐ1<$& I$qq A$H$qq `<<x`I$I$Pظ8I$I$QnUI$I$rnUI$I$rnUI$I$RnUI$I$RMUI$I$R-UI$I$RMUI$I$QNUI$IrnUI$$ rUI$$ rUI$- U I$$3U I$9Ar-  I$$U I$)AФU Iҷr IҴ@rU IҶU IRU IҶrU IҶ$UI'RrФUz LK1N ѵ񓪪 I$H$ѵ񓪪 I$ $1 P"&b1Ф !1Q  I Hӽ ͐"-``I 0I $1oIA$U?mf ( $I$1 I$I1I 1U I1} M o1 * Ibh1 I4-Z1 c1ע qb8A1ߪ IB$M1W Im1U qb4 1Uqs1*** Mi61"( h%[51_ I1 C!M1 I8L$1 imhm1 II$1 Z%p$1* - P`R dB$ ӽ Ȁ 蓵1z`px ɖ - !A!1A$IrH IrP%`1Xظ I6RNU I$ oU IoU Ib@nU I' lrnU I$ۆrNU IrnU IoU InU IU IbU IU IۛoU I·oU I▒U IU OUIb IϜU v–ϤUw^IU S@rU ~^QU & QU ` ` 1n II$q Ii4ѵ񓪪I I$rZ ؉1Ф<< m)br AH$ 2[9Rhxx,P)1(.)1jVh$$1М"]II1w v 6c'1 H$I$1 qb1] IbDZ 1 i$I61 Ih۶a1 I$ 1ת I$I1  1* ImQ1u IB&I1 mӢkm1U mR 1U* IRm 1"  IbdžM1  ֶh 1U I$I$1U I$A$1U MҢmӶ1U im1U P&h'1 1i1irR I$I$S* ҈1``x 9C1n 6lɒ%ѵ񓪪I$IqI$$ѵ񛪪Z%`"1 Xظ I6R- I$# HrnUI$ rnUI$ rnUI$n rnUI$n,rnUI$ rnUI$l roUI$lrUI$$ UI$$ rU I$u IrUI$$ rUI$v@rnUI$rnU +mrI$ HrnVI$ HrnU I<$+HrUI$OIrNUI$IIQNUI$IQ-UI$I$0 U @̃ II4qUU]q I1?' I$I$1 (, @%`1< 1!Q  I$@ӽ *,"51` 1 I$I$qq I6MS4qq H6M4 m!h1 IҶ)Zrn Iqq I I$1 I$@ I$A$1 I4i1 NlڦMѵ񛪪 H @ 1 c3C1U I$I1Uꪪ H$I$1W I A$1 I 1** Im۶1U I$ $1ժ I1(* I$H$1" Ih41w " Mm$RR` 1(88 mr I 񴪪,11```p11 $A$rII$r@$Ir@%`1Pظ I6AnU IRדnU InU IoU IRoU I@oU I$" a1NUI$O3 UI$I UI$I$Ϥ UI$I$-UI$I-UI$INUI$I61NUI$Ib1nUI$QUI$$QUI$fQUI$m QUI$fB1UI$s @1UI$i1UI$IR$nUz `ɖ  ٴI$1￯ Q$ R I$ $qq X"&j'< PP1 I$I$ӽ ,`  1 I$I 1 I"mۦ1ꪪ I$I$1ߪ IRm61񤫪 I4A1m5X%1~ M$I1 ImѶ1 Ii1着I$$ѵ񛪪 I$M$1[ Im[1 I $1 IM۶1] II$1_ 1W I HU I$I1ի I I$1 IE۶1_ I@1 I$H 1 I$ 1񤿪 XhQ: ֶ)R I򴪪>#Rjxhx 1o I$@ qq I$I$rn <#0x`I$I$N<$$$I$I$r1 I$I$𤪪I$I$𤪪I$I$𤪪I$I$𤪪I$I$𤪪I$I$𤪪I$I$𤪪 11Pr I$I$ӽ    $I$ ز!@50@` /I0 I$@$  H$r A$r꺪 @򴪪 rꪫ @ A$rꮪ HH򴪪 @򬪪 5.51`` 1 I$I$ѵ񛪪 I$I$ѵ񛪪 I$I ѵ񓪪 pJQФ666 )R  $I$r #9ң%r`x I&M A$IPpq$mꪪIMQoIm &$I1 IҤm1 I$A1 IIq [dٲ R1_ I ڶR1}j I$I$ѵ񓪪 I"Hѵ񓪪 I$-жq H"h1ꪪ A$I$1 mi1 m1ѵ񛪪 @ @41 $@0H1 VlŖ1 H$I$1ꫪ A I qq I$I$qq H$Hn<444 1 iR  I$A$ӽ򬪪 19rФ`` 9 !N Nt2I$I$rI$Hrjʩ1444$ !ihr $I$񴪪 @ I$񴪪 I$I$񴪪 h&H$r~ IS I$A񴪪 A$I$񴪪 I$A$񴪪 $I񴪪 H$ $񴪪 I H񴪪 I$ $񴪪 I$$ I$ $ I$I$ I$I$ AR$)&  I4  i6Irꪪ IErW c۲rpppp dPI1 $H$q $ $q @ q+)QФ6666 )Ir I$r,#ٓ```pIm1o #0U51М`jI$I$𤯜UU B)JМ I$i0 i@R1 M$Ҷ1 I$I$q H$ R q A$A$1 I4I1 H$I$1 I4iq I$Iѵ񓪪II r A$ѵ񛪪 $HrI I qA$ rA$A$r I$Iѵ񛪪 I$I ѵ񓪪 I4I&q $i"q H$HN<44 11iR) A$ӽ񤪪 1r```p 1N  m]6q I$ѵ񓪪I$I$rhʩ1o<4$ )nivr H$I$ m6hr I I$ӽ񬪪  ӽ񬪪 I$I$ӽ򬪪  ӽ񬪪 II$SW_ mѴm۶ I$I$  꺺 $i۶   ӽ Hr_ @ r ӽ򬪪 r M[mӽѤ@$H$𤪪HE rQ~jh'X'Qhhxx CQN ӱ1z U I$I$q H$H$1 -i*Ѐ II$R  H -#1`` BI  I$A$qq  0&R I$IR  qq A$ $qq I$Iqq I$I$1 $I$q $I1 I$AӤ1ꮫI I$r ER$I&q H$-6q I$q $ $1ꪪ I $1 M$iq I$ q I H$R1UU I$I$R1 I$IR1ʊ $I0ѵ񛪪 II$qhH1n<444 )Ar I$I$񴪪 ͓```` 1N H $rI$ rI$ rh H1o444 ir I$I񴪪 AI$񴪪 I$A񴪪 A$I񴪪 m$Hr^ .m&rQ@p\\ H$I$ѭ﫪 IA40dB&@ qmNdoqII0//; A$$Q0'/?+I$I$ A$I$ќ,)2)QQuYq1(i&Q0W@q$Q"m$Q Hұ$QUBR%]b'```  !I-  10 Irn I$@$qq H$JQ66 ))Psr mڢmӽ 11`` 9JIn  A$I$qq qq I$I$rn mS-1 ]ѶY1 h6h&2 AH$qq I$H$qq єi 1 ## A"r $I$1ꮺ I$I$1 I I$qq A$A$qq I$I$qq I$H$qq A$R  qq I I$qq I$ $qq I$I$qq A $qq I$I$1 HHn<44$ !iR  H$꺪R```` KI1 IҶZ1 IB I1 041^z_I$I$1N&''/I$I$rQI$I$ӽФI$I$𤪪I$I$𤪪I$I$𤪪I$I$𤪪I$I$𤪪I$I$𤪪Hrmkڶsжmr~VO$RVV hr1@ p0rQ ӽ񬪪 Цm۶r  r @r뺫 @@򬪪 A 򴪪 A򴪪 򴪪 풵``` `IDA1 I$H$ѵ񛪪 II q $ $ѵ񓪪HXKdR&&'/ i6r} CrQX'r$Qn`xxIiMII񤪪Iv I۶i0 IA1 I$ $1 IHq I$Hѵ񓪪 IIqI$ R1II$R1A$ rI$Ir @$mҠr M"hq I&m$1 AH$1 .qwq [4۲51L@s I$I$qq A$I$qq I A$qq $I$qq H$I$rn HN1N&&'/ )i[r I$I$ӽ򬪪 %X%r```x IIN mڢТ1 ضm1 A$ $1 HT1N&&. cór iI$񴪪 I$$񴪪 I&E$r IIӽ𤪪 @ $r I$I񴪪 II$񴪪 I$񴪪 I $񴪪 HI$񴪪 I$I$ A A$ $I$ I$I$ H I$ HA  i$I $I$H$@$  [%[a "9@5h``` fiD@1Ф  I@"q IH1 I$Iq X 1.&'' )6I$rQ* p$v$RZU 1P9rhxx fm1 " ")М@@@@I$I$ H H  !1 ' q IIҶѵ񓪪 I$Hѵ񓪪 A$MӦѵ񓪪 M$mRq m4$1꺮 !؉1 IڤHѵ񓪪I$ r@$I$rA$ $rAIrI$H$rA I$rII$r Ir$I rH$I$r $ r HKd1N&&.. ccr髪 I$Ir -0r````IT 1n pL''q $ q 0Nѵ񓪪 T PR&&'% i$ r HH ? @$@r ӽ񬪪 I$ $ӽ򬪪 mmۢӽ񬪪 I$I$ӽ򬪪 I$I$s mmӽ I$$ӽ A @ I$I$  ӽ I$I$ӽ S H ӽ I$I$RU I$I$rꪪ I$H$r_} I$rQb"&H&1n``p` HٖmN I1 $@I1 m6I$1 HĤMXR6''%$i rs #&9r` p @۶m&qq h$M4R IiR $I$qq I$I$qq II$qq  I$q I$H$q I$I$1 Ir $ $r I&h$q H$I$q I$A&q H iq I$$1 I$A$q iI6q I$I$q M$Aѵ񓪪 I$I$ѵ񛪪 $I ѵ񛪪 IH$ѵ񛪪 Hxp1o6&'' I$Ir) II$r -P9r`h`A1n I$I$1 I21 $I$1u HdId1N&&'' Ai۶r I$A$ӽ I$H$ӽ mAr m IrW hE$rQz  R$I$q1 I$IQ0W߿I$A$QdBAQ*I6Iq1UIڦ r0U I$m rQU I$Ir1 I$I rQH HrQ")r0lVq1I&mQI$M$0𤪺I$I$ꮪI$A$豈 *@$I$-hx s- %RD 1믫 I$Iqq I$I qq Hd׸Q&''/ r I$I$򬪪 11rФ```` AIn mm1 I I 1 I$I$qq II$qq ib1 k2X%2 I$I$qq I$Iqq hm1  4R I1 A$I$1 I I$qq II$qq I$H$qq $I qq $H$R ))qq I$I$qq A$I$qq A$I$qq I$Iqq II$1 HLXRn6''' I"M"r H$I$򴪪 -`` AP1 $A$q  @41~@ 1{I$I$1n%%--I$I$rQI$I$rQI$I$r^I$I$QNWI$I$R-UI$I$R-UI$I$R-UI$I$RNUE$I$rNUI$I$rNUI$I$QNUI$I$QNU $I$QnUI$rU @Iϟ$rU@I$rUM$rФ"U J~$ФU 4I- H1r  I$ꪪ $I$ 1#Ւ``xx A[1 A$I$q h&I$q h6M$1MI1 дm'rQUiҲQ0ZVH$I$MhxxxIAnpT1𤿿 I86i1 i 1* 1* $H$1* I$ $1 @ 1 II1U L$N$RP@@ mm$1 öI$1𤪪 ֭I$1𤪪vI$1* $m1𤪪 X&i&1ꪪ+Z?WI1М  @m41 $I$1𤪪 I$$qq I$I qq I$I$qq I$A$qqIDIRn%%-- r Aӽ񬪪 X%b&rhxxx `@0 $Iqq I$I$1 A$$1 IXI r%%-- I H$ I$AӽP;6x $l$rW 4I$rnU mI$rnU H$U &$U me$U$rm$Umm<U m]<U I#ؓU $U I$RU $U id$r-_ M%$rMU $rN  Iw$*$d$Q"U$$Qw ̀$~0H$1U $Id1𤪪- i1h ͔ 1 JI0n'5 1I$Q0UU )$I$Q0ZU P%Z%0Nhxx Y )˲!K$VI$I$ 1  I$A$1*" I@$ѵ񓪪 IM$ѵ񛪪 mI4r IR$h&1)®11zA$I$𤯜 WI$ФU @y1𤪾]U mm$1񤪪1 I$1 iM$1  6h6$1  ҄$1 E۶h$1񤪪 I$1$b$1М^T7I$1U $I$_WI$I$1 /---  Q  A$񴪪1Z9xxxx via1 L&tѵ񓪪 I$`$q I$$1 PrN//-- i$Is ӽ I5z$I$rWжI$rnUI$rnU`I$rnU`I$roU@I$roUPI$rUPI$rUPI$U@I$UPI$rU@I$rU@I$oU@I$rU đI$rU Qr   1 +-  r iڦm 4r]_h$H'rNxxxxTIn  I0 A$I$1  $1I\Irn/--- iӢm۶ӽ  ӽ X&`"&rphxx dA0iМ  :C'R I$IΣ qq I$I$rn qq I$ $qq I$1 $I$1 I I$1ꪪA$I$rA Iѵ񛪪 HҤM&ѵ񛪪 $1 A$I$1Z II$1 cp$1 v`L$1U m۴$1 I$ &1* a$I ѵ񛪪I$I$q II&ѵ񛪪 I$A$1 IRN//-- I$I ӽ񬪪 I$Aӽ񬪪 ڃ%Z%rnhxxxMdI1 A$I$q -[341  IIRn%%-- A$I$s A$I$r i,>rx I$rNW DrI$Q.U I$1-UTI$0-UTSI$0.UDuI$1-UŖ$I$1MUI$QnUI$QoUкI$rnUI$roU@I$rUжI$roU6I$QoU?I$QnU$I$1*f !1 I$L;1W_|I$I$冷I$I$ `hxx !Jt n II$qq H1 AH$1 l r/--- A$Ir H$I P#9ң%r```` 0I1)  N$i1|0 1H$i1 A"A1ɒj1﫪} i0$1 C'@$1 II$qq $qq Ai&1 km$2 I$@$1񤪪 I H$1𤪪 A@$rn I$I$qq $1𜪪 mi$1𤪪 [hӶ ))4qq II$1𤪪 I$A$qq I$I$qq $ $1 I$I$1 Iɐ rn---- AI$s I I$񴪪  5P#5r``x֔IƶMR𤡡 A $q 4@1|p0 ((@@I$I$QN----I$I$ϜI$I$r1I$I$1nxXXI$I$ϜI$I$Ϝ I$I$𤯜I$I$𤯜IIМ*`F(UnIM$0pI$H41oI$H$𤯜 K? I$m1 ʯh1W~~ $1 IҠI۴1 Iqq E6m 1𤪪 `  1 ))-  S @ӽ񬪪 ۭr`pxX E۶M$1 @ I$1. E۶M$0>11jII$0--)  Q0~_8fB:0@I$I$-xmvͶ 1 10 A$ q ݺ۲m I$U I$$AU* I$$IU I$$HU ID$I? I$ I$# rUI$u-rNUI$= rnUI$@rNUI$ rNUI$@rNUI$I$UI$I U*I$cRNUI$I$𤬃_ I H1񤫪 I$Ib01 $I 1  @ rn--)) I$A$ӽ񬪪 @$I$rp$M$Rnxxxx I$ qq II$qq II$1ꪪ &,!@  r- I$I$򬪪 I $r =P.rxxX I6h1] Im71 c'cR i$ &R Mm1 ImS1  Ii"1 IA1" II41 IҶhѵ񛪪 Il1 IH1 qBҳUM"@ 1М I"I$1ФUI2"i1UI$I rϤ I$I$r1I$I$q1 I$I 1xxI Ϝ- IA1- iҤM"ѵ񓪪 [6,51Фjh XP---- I$H$pp I$ $0ꪪJ"'KNxx i۶m1l1 I$M$VVVTI$I$-)C!b1I IQ. CU OU IR0rU IB@rU" I&@$Q.I$I$Q UI$I$ U*I$I$rUI$I$QUI$I$QUI$I$RUI$I$rnUI$I$rnUI$I$rUI$I$ W^I$I$М €(I$I$М^vVI$I$ϜI$I$M@@I$I$Q ----IP r H$$򴪪#b,rxxxxI $r I$H$ѵ񛪪 m6hѵ񓪪(*-1@ p rn---- i$i6r I$ $rX&z$rxxX i qq II$1 II$1ߪ I1} I$Iqq IҢm1ߪ IRmѶ1 I$A$1 !)I%A1 I$A1 I$I$qq I6-Ц1 m 1ߪ Iqq I$ $1  1Фjj ɔ rФ I$H$ӽ M&mӢrj`&r'rnxxxx I$$1 II$0 rn *)@@ IPɐ---- I$I$ӽ $A$I&򬪪p$K$rxxXZ 4u[0 $I1 I)1 ۺ,1jjj I ro+ I۔U IBU _U Oؒ& UIl$' UcےUI–$)aU L)ArU & rФU öU # LrU IR'$ lrnU I$m+A1MU I$ rNU I${e_I$ $R𤫪II$rI$r 1@ ɔLɐ rn--) I$$S m-$ӽ𤪪 Z&r$RnxxxX &@6i'1  $1 hSm$1 ,"*o@ IDɔrN---) A$I$r E6m$rQ`$K$1NxxX Mv1М I$A1 I2Nh1 IbӶa1 Ii۶1 iM"1(l1 I 1𤝪 IҶEѢqq  )I$H1 I$A$1} II$1񤮪 IҶZ1j  1_ C1} ,)@II r+--- r0_zI$I$0I$I$Ϥ xxx  d  I I$qq $H$q ` М@@@ IL r- I$I$ @$I$`&J'rxxxx R $H$qq I$I$qq $*)@@I$I 1 I$o rUI$% rUI$m rnUI$, @rnUIFU I$rU I$$ oUI$m rnUI$ @rnUI$m rnUI$-ArNUI$m rNUI$MQNUI$y+QNU I$I$̃_ A$A1뮺 II 1 $A$1 ,!М@@  ---- I I$񴪪 I$A$s XErФxXX\I$I$R1I$I$rI$I$r ")"(N@@@I$I$Q- I$I$I$I$r1I$I$ I$I$0pI$I$PPI$I$0pI$I$PP 4I 1oiZIQoII𤯯I H$QoM$I$񤾪 !1/) H$I$ѵ񓪪 r؂$I1 !$1 I$ $1 I$A$qq  1М  r HH S mѶMrn{PDFhrxz!ز1z@$I$qqT^) rzjIx r&q1n%*@Q0ZZjI$I* QnIIR 1r I I$ѵ񛪪  jj  I$I$ I$I$ @ I$I$ m4I۶ HA I$H$r I$I$ӽ򬪪 H$I$ӽ񬪪 ӽ񬪪 @rꪪ c" r0\x`I$I$**I1r0 KN1NؘAnd1H Ar $Aq "))N@@ ɐ  rn -mۤӽ񬪪  6m6rHK1Nؘ I$I$qq AI$qq I$I 1 ")")n@@@  Ф--- I$I򬪪 m3'rjjh hFz1nؘ LIѵ񓪪I I$rH$I$ѵ񛪪 iI4ѵ񛪪 $I$rI I$rA$I$r $I$rI$I$rIHr I$IrI$ $rH$ӽ2 uU $I$rI$I$r ,(1Ф@@@@ P pr^֧ImrUꪪ Q!rФI$H$ӽ1UUUA$I r "Eѵ񛪪 Ȁ(1@@@@))++ A$ $/ I$A$0𤫫 MDMnؘ I1lq J$H$t\\xI$I$Ϝ{))#1IIII YApФ ) IBrU IҶm -i$Ir ImrIruꪪI%$^xxxI$I$Q??7?I$IӽФII$ӽѤI$IӽФI$H ӽѤH $ӽѤH$ $ӽѤH $r0I$I$1XI$I$0pI$I$ФwI$I$Ϝ_I$I$ @@@I$IrM---  r A&m$s bFdDRؘII$r H$Iѵ񛪪I$H$r,()1n@@@@ !Q H$I$rQ )$m&rQK̄L1Xؘ $I$1 II$qq I$qq I$I$qq I$I$qq $ $qq II rn II$ѵ񓪪 I$H$qq I I$qq H$I$qq I I$qq I$I$qq $I$qq $I$1 "(")@@@@  Ф-- Ib;&lrꪪ m;*rjK¤L1nؘ Nb'v'1 I$I$rn )I1 ")")@@@  Ф--) A$I$򬪪 8 HR I¤M1\ܜ H1 !gs 1𤫯 m1 ۬-1Фjj 9wN - In$I I4c H$s*I$H$s*I$I$s mmӦrh IIr A$H$ $I& I$I I$IR$qzz $tB$rQ_\\  Q bhR؜H$IrI$ArI$I r )1n@@ ---) A  ӽ 99rzzzI$INXؘ   QI@$QhӶM6ϣ , @ tr---- I];rQ&rn~I$I ۰mI6 4i i&@Sq I$ $q H$I$q II$q!R)1j ڶi1 I$I qq I$I qq I$I qq I$@rn I$1 m-ڶ1 I I$1  (n@@@ ɔ ɐ r) vB;MғRZj3>c5rzzh`I$I$ؘ & OΣ $I$qq I$I$qq "))@@@  BФ-- m[m򬪪  rjjjJK1ؘ II$qq HH$qq I$H$qq  ,o@@@ ɐL Ф--- I$I$ӽ A$Iӽ $Iӽ I$H$ӽ򬪪 $ I I$ӽ II$ӽ ӽ񬪪 I$I$ӽ򬪪 A$I$ӽ񬪪 ӽ񬪪 $I$ӽ򬪪 h&h$Qx  I r0 JdK1o؜ A$ $1뫺 I A$1ꪾ $@1 ))n@@@ r  A$I$񴪪 A$I r FjRؘI$ $R1jAI$rII$r "0#1n```I$I$rФ-) I$I$rQI$I$r1H`@`I$I$-<I$I$0pI$I$PPI$I$0pI$I$PPI$I$~I$I$  $I$1I$I$QI$I$Q  R𤯯 I$A$q I$I$1 I$I 1꺫 $I$1뾪 H$I$qq (4Ϥ` P1- @S m4m6RJMD1ϤHRI 1? I-Zr1 U A0rФ_ 6mA1 mڶ@r_ &c:$ 2rQ@Q$Iq1*y_U  IQ1s]UU H$Iѵ񛪪 1#51``p  - ӽ I  S Aӽ  ӽ Iӽ $R A$Ir ӽ񬪪 @ӽ񬪪 -ڴm۶ӽ񬪪 I$I$ӽ񬪪  : QjM2'r%QV^^x-I$1} IDIDN> A$@$1 $a¶$1 $I q "5P#=n``pp  rФ I$I$ӽ򬪪  R R` NIn< I$A$qq H$ $qq I1 (@<n@``p   I$I$ غ[6R| sn<< E@$r $I$r $$r IMѵ񓪪 II$ѵ񓪪I$I$r $I$r@$I$r@ @$rI$ $r $I$rI$ r $IrH$$rI$I$r.#1Ф``pp!n)w1---)A$H$ @b3c3rj}gLRФI$I$rIH$rI$I$r"-"-1@Nt Ϥ-- )  IQ I$E4Q0ee XMW1<< I)rH$H&1\\\XI$I$Ϝ_1.3Cp `J  I$$ $I$ HH򬪪 @"E m-Тӽj#6X#50xxxhI$I$15 $I$ӽФ@$A$ӽФ ӽФII$ӽѤI$I$ӽФI$H$ӽѤI$I$r1II$1nI$I$0pI$I$ϜI$I$I$I `ࠀI I  A$ $񴪪 ;6C&rjjz|1I$I$r M$Aѵ񛪪A IR1"-"-R`ppp  PФ) I H rUW~h *ɒ -r1jjh IIDn mI$1 I$Iqq I$I qq I$A$qq I$I$qq A$I$qq I$I$qq A$A$1 $I qq H $qq I$qq A$I$qq A$H$qq II$qq A$I1ꫪ "-9n`  ` I I򴪪 ڶC3rjjLVtr IAR$ѵ񛪪~&& II$R iI$qq I$I$qq @$I$1𤪪Z A I$1𤪪W $qq I I$qq $1𤪪 H I$1.* $R I$ $1񤪪 I$I1񤪪 I$I$1 A$I1 A$I$1 #%P"%  1 A A񴪪 +2424rjbjrP1<<$A$I$r "(i1 iI۴rn B"%R"%А @ Mm I28Rzzz k1Ф IҤiq I6mr I rҿ=[R𤚺:: YYr)) I$@$s* I$I$* ذm%R^ 0m$WDt{;U 'rW mv?rU 0Ie;rU0n-$U0m,ēU0mФ+ M6M4r9 50pp`` -x 166&'A$I$rA$@ rI$I$rR~𤪮 &"11 єaL1 Z$@%nаp 1  H I$񴪪 m6m34R@@= 1<4&&I$I$r P#1`ԶI$1 $S%nА !  H$H$  $ӽ𤪪 $i$rФ^PI$oU @I$rU mI$nU mI$nU 0I$roU I$rnU DnI$rU TrФ+ h4ir m$M$rQ&i5q1jzz Iɐn<&& II$1 II$1 I$A$1 R"%R%nА!II  IA񴪪 4[5Rjzzz 16&&I$A$R1I$I$rI$Hr@P1؜I4M$r1 I$I$𤪪I$I$r```I$I$-I$I$QOI$I$1oI$I$QOI$I$𤫃(I$I$1NUI$I$RUI$I$RUI$I$rUI$IrU* Iؓ&AФU I$[r_ 1N I$A$qq qq I$$qq P%h1Ф !!ir I @ꪪ (`ɚ ɚ, T I1 I@ѵ񓪪 I$I$ѵ񛪪 P X 1Ф8<< )isr @ *"-1```` H$0 II1 I I$ѵ񓪪 R"&`&1 1 1  ӽ ҂11``` 1  I$HR MA۶1 I$I$1 I $qq MIqq Iqq N L1 [j$ 0 0R X3 r0`I$L$1jhxx LL-  rn IH$qq I$ $qq Z"&z$n Ida1 ӽ񬪪 ,``p @n $I$qq I$I$qq I$I$1Rj1`ITR $H$ӽ𤪪 5-r1@`@@ 1B1I$IrI$I$rI$H$P=X1Nظ($%HϤU y_RФU qBHrФUIӶ" AФUOҺIФUyҷ(rФU  hrФU)JJ1o II$rI$I$rI I$rP 1Ф4 !Ar I$H$ $@h1x`, P1  @ I$rI$ rH$  rX 1 IBIDA0Ϥ qeW r--+ ]38R`$1A$Ir @4 1p`I$I$- adI55 )nir) @ H  29Rxx$-1Ф( IҤm1 I6[ l1 m&1U IPKϤ+ ym1U IB @1Um1UN2vyR?>&I4 r+ Ib' 4[:1x tB1kMm1zIM$I1*H$IrP`1 i-R $ 񴪪 R#5P1```H1n AҤMѵ񛪪I$IR1 I&mR$R1U]PP2&  n1 & 11```` H NI$I$R mm۶R  vR P%h'Pظ8I$SHrNUI$- rnUI$ rnU I$%)HroUI$- rnUI$ roU I$-rnU ̋ AI 1 I @$1ﻮ I$I1 @X&8<< !!سR @ۿ䳽r~N$1z^ $1 ۖ$1 "U @ۘ'1𤀨UېM$wX&J$𤏜88< A$r1 miǒrU &d3>zz HI i1 ֮I$1 h۶i1'q7&R?? -mr  $H$B;r`x3K7rA$I$ѵ񛪪 ۲!۲$ѵ񓪪 I$I$1ߪ Itm1 IR4P ѵ񛪪I$A$ѵ񛪪 IR)RZZ 1 8 imrc#,̓1` 1hvR羅H9B1oH$Iѵ񛪪H I rA$ $rPX1N< m) R) ) I$񴪪Z311```p11oH$@$r @$rI$H$rZ%b,1oؘ i)vq1 I$H$q1 #0rzzzr 1. i$Aq A$Ir I I$ҵ𓪪P%`Pظ8 I$(ArNU I$QNU IQNկ I$[ IroU I$$ QNU I$$ HrnUI$,rNU  I$qq 1 1몪 @&h'n Ji1 I$I$ӽ򬪪 (0```p @M' %𤪪 P1𤪪 $1 @`& iiR I$ $ (P1``h Hɖln@1 $HI$1 II1 P%p'n bm1  $ӽ Ш01``x ΔHH, IA1 At 1# I$1񤦪 I I$1 I$H1 I$I 1 I$I1몪 P`'1* i6Q h6M$rQ|.1P9Q`hx HHN H$I$1 $I$1 $H1 R&j"'n 11R A$ 񴪪ڌЮ51``p 91I$I$rH$A$rI$A$r h Hd1o<<4$I$x'rQ I$I$𤪪I$I$rϤ`h`pI$I$N I$I$QOI$I$QOI$I$1oI$I$N<4$$I$I$r1CCI$Ir0 I$I$ӽФI$I$ӽФ )9r  1r -`` 1  I$rn qq I$I$qq x$J166&& i)R @$ꪪ 11```ILɜ 161 @ѵ񛪪 I I q pHdQФ>&&&   r @Iӽ Ҭɐ1` JA1 I$I$1 I$I1 I$I$q HH1<<4$ )iӽ𤪪 H ӽ 0#1``` 1 1 $A$ I$I$ I4A6R1_YZj I$Ҥ1 I$N'1 @$I qq A$I$qq H$Hn<444 Prq h4 r^~z{'h&qnxxxxɐP p -IR qq $I$qq H$HN<44$ PR  I$I$ӽ񬪪 -5rФ` J n I$H$qq I $qq qq HHn<4$$ A$ $rQ" I$rQ (0r`` J   I$I$1꾪 611ﭯAIr [r7' IH iӠi򴪪 I$A$򴪪 H$I$몪 I I$ $I$ڂ5[3:1hxxz)nn1Ф  $ѵ񛪪 $rI$ $r RФ6666 ۳r)+ $I$"21hxxxJI1Ф I$ArI$$r @$-$r `p1 iib0/+  I͐1+ 99RzxxxB1 @$I r"-#-1М`I$I$Ϝ^Wv I1n/''' !r)  I$I-1xxxx pH1Ф A$H$rI I$r h`1w %R 0 Aiѵ񛪪Ir $ $r RФ6>&& سrI$I$R1b9`'p1 A I$rA$I rI$H$rh|1444$ ӆIr I $񴪪  铵```A1  h$Hq $I$r ҵ𓪪 HH146 D 4Ir0 I$I$ (` )Bo I$H RR$R H$J$N<444 ParQ @ӽ񬪪  ӽ I$I$ӽ񬪪 iӽ  @$r (-``p )  I$I1 I$@$1 A$I$qq xH164&& ֡ ӽ𤪪 h&x'rI$`$r```I$I$𤯜 I$I$QOI$I$1oI$I$I$I$>6&&I$I$q1I$I$q1I$I$1Ϥ```I$𤎜 @d$1_U I$ 䙄1𤪪U x$JR7''!&rH$ӽ HO21`` II1𤮭 $$1 h۶I$2 II1 A$I$1 I$I$1 )&I$1 A$I1 pJ1o<44$ 1гr i6 $rj v '1ϤTTJI1 IH$rIrIHrh H|1o<<4$ سr H$I$񴪪 ؎1``p A1o A$rI $rH$A rhH1n IiQ1 Iir1/+ *-1rppppB 1o  I I$r i&E41 )ڦM$1 pHn<44$ i I4R h M$q1 vQ%%%% H$A$ II$ӽ I$A$ӽ -1r```` An  qq m6mS41@ iڶ1뫮 HHn<44$ )PR  ӽ񬪪 #1#9rФ`` ɚ$a!NI$I$ϜI$I$ I$ I$L$N<44$$I$r1I$I$𤪪1$I$rФ``pp IN A$I 1 mۢm61 L$1𤪻UW H$M$N<,46D$I$r1 :I$rz}UUI$I$rϤ`pp .  i𜪪 I1UU M$H$1 H$A$1 I1ꪪ $I$1 A$A$1 HHN<<$$ m)r1MIq1P%X"&1` 1!  I$Iq I$I1 I$I1 HHDn<4$$ iur I H񴪪 0#1Ф`BA1o I$ $rI$A$rH Ir ȅ\JTR6''%`&p%𤪪I$I$𤪪I$I$QN``I$I$-I$I$QOI$I$QOI$I$QOI$I$N&'''I$1rQC 0 j ӽ𤪪 r  򬪪 H뫿 #5У9`xx IdI1Ф)  A$I$qq I$I$qq I$I qq HdLԤQ&''' i)Z  H 1X5``1Vn I)1+ I$  ѵ񛪪 I A ѵ񓪪 HXKTr7%5 6)뫫 I A ӽ 1P5rФ`` p1 @4@ 1HH0   $1HdLDRn&.//  r魻 @ӽ 99r` 1 I$I$ IR1UI$R1ꪪI$I$r h&m1^ m۶hf1 I I$qq HdKD1N&../ r m"hӽ b&`%QN````M )I1 I qq A$I qq HMd16''% Ar ӽ񬪪 =`%r```` IIN I$I$qq I$A$qq HI$qq HMd1N&&'/I$H$rQ" M-r @==r`  @ I$Aqq閴1 & $1 t{Pr'''- i$A" I H$ M$I$ IH  I$M $I򴪪 P5xhxxtIP1Ф $I$qI$Iq $I$r xS:PrФ7'% ڱ* IH$ ````P1Ф I I rI$I$r h6]&1 Ċd𤎜$4&' yqRr-- ɚ]Ѷr-)+  21hhhxpp@1 I$H$r,"1I$I$Ϝ^]WV ɐ Rn'%-  I&I  A$I$҂Z#2```hPl1Ф  $A$rH$H$rI$I$r $N$1 )d Jѵ񛪪I$ $rA I r H:JrФ&// I$I$I$$ 1Ф``` P1 $I r$I rH A$r HT R6''/ MAЦs I$H$񴪪"5Ф```xpP1 H$Iѵ񛪪A$ $r $I$q H|K|Q''%   r m-ڴӽ񬪪 P5=r```` IA1 I$I$1 I$MR$ m۶m&RH$N$N667' )I$rQ + @ r $s Mm۶ӽ I(P I$I 1P#=Ф`hxx n I$I$1 I$I$1  I$1𤪪HLR&//- $i$r h'I$rI$I$r`pxx I4ϤI$I$QO |CJꃪIIwI$N$'.* II$Q1I"@$Iq1I$H$1Ϥh` I$I$I}} I!A) $U$ RHdJr'%-- I$A$ӽ $ ӽ Ȑ:`hx P@1𤩩 @$H$1 IIrn I$ 1 H I$1ꪪ H$I1몪 I$I1 $@$r Ht TR6''' $E6r I$񴪪 x'h&QMxxP1NI$IrI$rI$I$r X RN&&// imr I$I$򴪪 ,1r``` T1oI$I$r I I$rI$A$r HL-$&&/ 6iQ1+ m퐴Q+ 1P?&rФ```` In Æ]$1 6lI$1 H$I$1HMd1N6&'' i6A6r뫫HH&r0\\  0----  $I$ӽ񬪪 I$I$ӽ򬪪 I$H$ӽ %P%r```p   N qq $C21 I I1 HDMD1n&''' Ir I$I$ӽ򬪪 %P%r```` I@oI$H$ϜI$I$Ϝ$I$_UI$I$-&&'/I$I$rQ I$I$𤪪I$I$Qn``II- iA1 mӶ@۶1j L$H&vxI$I$n6''%I$I$rQ I$I$𤪪I$I$rϤhxxxAn𤪫 111 I$I$1ꪪ I I 1몪 I$I$1 AA$1 H$I$1 HLd1N&&./A @$h"'J$1n``px - $I1ꪫI$I ѵ񛪪AA$r XJPRN&&./ I"I r @$I 񴪪1Ф`ppxP1I$I$rH $r ) 4r M r%%-- I$ $ mضMr I&r"'nxxxx I$q2n I$I"A] I$I"@ I$$ @WjI$IRn%%-- Ix&R PJ1i1 &)Z%x$I$rWvI$rU iI$UXB'I$1Nz_ VH6 1Ф " qq I$A$qq A qqɗTIr%--- A  %R&rn````i1))+ I$Iѵ񓪪 I$ rn  qqXr%%--  H$  #%Z%rФ``px I4 1 H$@$1A@0 AI$1ɗX r----   S_W $A ӽX%X%r`pxx ` 1 @$I$ I$IR1UA$ R1j $H$R𤪪 Aڶh&1  Z&2𤪪 H $1}   r%-- Ivضmr mҶk[4 z%@$RM````IHHn II0I$1 I8$ 1 ɕ\Ir%--- r M۶mӽ񬪪 P%b&ohxxx dHDM H$I$qq I$I$qq $(*qqIDIRn---- Iڦir? I$ $ӽ X"&`"&r`hxx tI4IМ I$I$qq ضm۰51 H 1 d ---- I$I" HH$ ۺk6r~@}'1W}<U m'U .1/rz_ 1I$I$qH$I$q I$Iѵ񛪪 S rФ%--  $I 4I$Z#-Ф`xxx dim1A$I r EI$q [&]&1j| n%--W)0--/  I M$-0-2```x I$A1I I rR5@#51``I$I$𤯜WWVV ɔLɐ rN  A$A  I$I  ͓xxxx LPH1I$I r rA$H$r L$1 t1* I$I ѵ񛪪I$A ѵ񛪪Nw7UN%--   $I 5Z#5Фxxzz d@a1I$$r$I$r 6i&r  r%--- I  񴪪 II$ @49`xxxv M1H$Iѵ񛪪I$@$r M@6q r%-%- I$I r I$I$ӽ񬪪 X%b"&xxxx tDI1Ф I$$ѵ񛪪 II$1 I$H"1II0N----$H$q1+I$I$rQ H(>rz O$rW MI$r*U FI%H  ZR'O$Nz^p `I$I I$I$1 I$H 1 `'𤨨XXI$I$rϤ%--- ӽ𤪪I$H$rI$I$rxxxx 41oI$I]UɚINѤ*M$I 0-)  I $I$q1X&X%Qxxxx @  1𤩫 bR$IR II$R I1 %$ r--) IMr I$H$ӽ#=P'r``px !H1𤩩 I$H$rn II1 IA 1꺪 I$1 0 AZM1 mM$1 Mh41 .r%%-  I$Is H$I$񴪪j"&`&r-xxxXtA1A $r $A$rI r KTro/--- I$H$r H$ $򴪪 =؃%xxxxpM1 HI$r1UUe I$I$r ;$C:1kII-//--q q1 I-r X&j"'rnhhxx IDA1 $I$qq I$I$qq H$I$qqIɑr%--- Swh$H$r0\\XX P5r /N$rWd;I$rnUԖI$rUX$I$1-zW tI$I1 I I$1 $A&dB&1z{ !$1IIRn%%-- r $ӽ񬪪P%`&oxxxx t@$K$H$I$I$ϜI$I$I$I$QN%%--I$I$rQI$I$𤪪I$I$rNxxxxI$I$𤏜 !!1 IH q p&h4xhpI$I$Q.----I$I$𤪪I$I$rQ(I$I$rNxxxxA 𤏜@  ))1 AӶhSr IL#'1 I$I$1 mm$1ꪺ $$1wId1%-- @ q2ꪢI$H$q1H$K$1-hxxx 0In I$I$1tI1IH$r ΐr%--- I$I$s I I񴪪59xxxxfiDh1МI Ar mnI$10 `۾-1jj ɐPItr---- A$I$ mѶI$ `&{'roxxxX &LB1 1 I$H$1 (,)М@@ Ipɔ----   ӽ𤪪  11 X%h&rxxX I@1> I$ I1 i$@41뀀 Im&ѵ񛪪 I I$q II$qq I$A 1 &,)1Фjj 1 RϤ---- @ @&򬪪 -ZI$񬪪 P%`'rnppxx 1a`1++** I$I$ѵ񓪪 I$I$qq &,)М@@ Xɔ ---- $  @ ӽX&h"rxxxx I$I$ѵ񛪪 H$$q m$h&1 $I)1Фjj r---  @$ӽ 6@r`"&r$rxxx I$I$ѵ񛪪 $I I$  &.)1@@I$IQ+ I$$)rnU I$$ nUI$rտ* 0 -+ $I$ӽ $A$ӽ `"'r'rnxxxX LB'&1 I$Λ It18-1@ H---- i۶iӽ I$I$rh'J$rNxxx I$Hqq I$qq  $R  @ r---)   r I$I$SWh'r'rxxxx I$Iqq I$I$qq kk1v޿ &)1jjn p --)  A$I$ I$I$ڌ9jƓpxxIH$rI$I$rH Iѵ񛪪 II&ѵ񓪪rI $rII$ѵ񛪪 m6E51@ ---) $H$񴪪 I I$򴪪 # rФpxxx I$ qI$@ѵ񛪪 h[m6ѵ񓪪 *?61hh P 1%--  1!`r- I$s#b=`xxI I$r H r C: C21 I$I$~~||ɐ ɐ rn I$A$ I$  >MФxxxxI$I$r$H$r  $r [-R 7lMU1n%TϤ  1Uo+ i1տ I׮-vr II s H$I$ ФxxxX i$IrIArH$I$r *ێ-1Ф@@ --)  $ $񴪪 H$H$s ؃X frxxxxA$I$rI$I r$A$rؾ-1@   r-- a I$I h&j'rxxXX I$I$1 $I$1 $I$qq ( (@IxI Rn-)) M$h4rQ_|p Q1zH$I$1n`xX^ i-𤯀 * im1𤷯 I r?U] I$A$UU I I$R I$I$qq II qq @0 Ϝ@@I$IrФ-)  $Ir +>H$H$rI$I$rxhhhI I$m_II𤗗7IMI֪H$I$1oaɁ Q𤩋++I$MЭ$IH H]1Ϥ` R I$m[1w  1HQR !001 v؁r  A$$r m6rh$L$rϤxxxx $H$1 H 0 I I$1 i.)М@@@I$ Q.խ) I$rU IRU[$A*qjq1-  I$@ 񴪪 I$H$s `%`rNXXXX bm1 H$Ar $$r "-1@  ---- I$A$񴪪 I I$r X%brxXXX A r$ 1}= I"I$1UUU -RjhII0----)1r0-//  rx$K$rNxxx I$I$qq I$I$qq I$I$qq @ @@ ILɔ --)- AI$s ڣ9X%xxI$I$, 1 I$I 1 I 1" I$I$1 A$I$ѵ񓪪 I I$1 m$m&1z 2 n@ ɐ rn--- mQMӽ I$I$rp$J$rNxxx I$I$1 J$H$W__\I$I$ϜI$I$𤏜BbBI$I$rN----I$I$𤪪I$I$rQ I$I$QNxxXxI$I$QO Ai1 I$I$qq 0 @@I$I$rN----I$I$𤪪I$I$rQI$I$Q-xxxII$1oE@$𤮪 m1N21@`I$I1-U I$rU I$+ ArU I$rտ Ir-+ I$@ rQ I$I$rQH$N$0 xxI$0񤩿 )iR $I$1뺪ơL-1@O---- II$ ؆X5R X2&L$RnpxxX bI$1mI$1} I$I$qq " ,n@@@ r I$ $ӽ򬪪   rHdJQo؜ @01Z 1H𜪪 " r6N@@@ ɔ ɐr @6rjjjU Q xdJQ. m[(q mۢm&q mZ EmѶq I$ $ѵ񓪪 @$Iqq I$I$qq ((@@@@  ---) H 򬪪  $𬪪 H"'rRX TT1/ E&m10( I$$1 "!")@@@  rФ IIӽ  $ӽrdKRؘ H$I$ѵ񛪪 EҤh۶ѵ񓪪 H$@$1 ")n@@ ɐKr   Sw_w  $r{j JdKQؘ I$I$ѵ񛪪 I$I$ѵ񛪪 I$I$q   1@@@@  r I$I$ӽ $I$ӽ I$H$ӽ򬪪 I$H$ӽ $Iӽ m6-R4r J̄K1N tB'C;1~I$H$Rn 1R . 2-N@@ 9 r ӽ񬪪 @  rKL1N H$H$qq H$A$qq @rn " (n@ ɔL r- Ar몪  $rj MLQؘ A$A$qq E6&1j Ii1 (1Фjjj  I)  ml H$I$jfk^x$A r$@rI$I rII$rI$A$rI$I$r $I r 1Ф@@@tBd )  I4I 񴪪 I4h$r7FrXXXI I$q H$A$ѵ񓪪 C:$$q "(@@@@ r---  ó-  I I$s ZZ!xI$HrH Ar $2C:1 H$J$nxxxr H IH s*  b91rXXA$A$r $I$rI r 2,R iҥVr1]y t0----II$s*$AsII$A$ s* I$ )Fb%rXXXIrI$rA$A$r(1@@@  ---- IH$ I$M$r bFj$RX؜I@$rA$IrI$I$r  1@@@@Ic` Ф-  A)񴪪 I$IҦs HJQo؜ I$I$qq I qq I I qq " ")n@@  r m&mrW_~Z -r0~zx`II$-ؘ 4 1𤪪 1𤪪 m$0U ڶ1 iֵ1 L0$M1@ I$I1 ".1Фjjjj d $`) ) y΍$ rz h"Œ$rI$rzhI$AVIDIm𤟕 &mۺ%rnH$m61niI$0 + A$Q0U$IƑjf]41` -IR  rn I$1  ɒ..1 )A1) ( hӽ v r @@Mf{QФXX A$I$1 II1믫 I$ $1   n@  Ф-- I$I$ӽ A$ I I$ I I$ I$I$񴪪 4 ;;r `.jfRNXؘ ivM1***IA$rH$I$r "(1o@@@pJФ-- I$ $ -$I$r KȄL1Nؘ$I$r I $155 h5z (6rh`IQ- mv퐴Q- $m$$ k*v@mФ^0 m[-$RU0OP -Zm$R1 $@$$1ꪪ (Ҳ1-@  Pr mm$ӽ о9``I$I- @I$I1񤩫 I$I$qq rn I H$qq I$qq I$A$qq $C$1몪 ڢ-"-N@@@  Ф--- @A򬪪 B"$MгrjjJK1ؘ mh61 H$M$|W_I$I$ϜI$I$ @I$I$Qn I$I$𤪪I$I$rQI$I$N؜I$I$1o $1黫 E۴m$1  --@I$ Lr-- I`rUI$`RIdJd1N #I$1uU -HҖd1mm1 *,,N@@@ 9LKQ I$I$򬪪 RU I$H$ӽ򬪪 @r I$r M&E6rQN$N.ؘH R )IR $1*Ȓ(1n@@@Nr  i$ 4ӽ P)+5rxzzzKL1oX؜  qq Hrn I$H$qq 08n``p J r I$I$ӽ񬪪 $ sr@@ NIn R#=Z#<1МI$I$I$I$0pI$I$-`pppI$I$R I$I$rQ€I$I$r0 IDI> I1**+ @E۶q II$ѵ񛪪 I$ $q I$I$q I$I$qq I$A$qq 08n@` !   ӽ h 4E6RHI1n LtK1///+ I$I$1 I I$qq "1P#9@`pp  I ӽ  M$2ӽ𤪪 LO1<< IA ѵ񛪪 q m&h610R2%n@`p 9 r  S_ @4-&ӽ𤪪 MN1 I I$ѵ񛪪 H$Iѵ񓪪 I$H$q "0#51@p !! A$ ӽ I$I$ӽ I$I$ӽ򬪪 A$A$ӽ A$H$ӽ  $R@@` MNn H&m&0M&h&ΛII$Λ ",R#%n@`pp !! rФ II$ӽ񬪪  R NIn m[mR H$qq I H rn 0R$@`pp Ф-+ A m 4E4rjzz LDNQ I$Iqq `B&D1Z I$I$qq (8Ф@`` I 1 II$ iӖ$rjkV[|rФ V$1 M$I rI$I$rI$Ir $HrI $rI$I$r(,1Ф``p) 1 I$I$ c6cسnrj}_R𤘘 I$ $q &m4ѵ񓪪P:S'1 )"@t P -  $Hs I$I4 MNrI$H$r Ir"!")1@@@@MR$A$𤎜ppP 91 @$ s 6m;c8b NNXrI I$r$IrII$r3-#ѵ񓪪 i@SrQsp@@ MI1----I$A sI$ $s* I I$s*II$s*  iI` *}GA$I$1UUUHI r1UUUhI$A r-",1``ppRvj1---- I$A$ c۶c'rjjl1o<I$I rH$I$r@$I$r,#01`pppIФ  II 񴪪 i۠c:rjjj MOn< I $qq qq H$H$qq 0@#<N@ )  rФ  I$Irꪪ --)r1`@@@I$I-<I$I$I$I$ $Ii$IbO1UU $u H1U $n-I1U $ 1U $#z $I2 $IQ ۚ$IHrQ_I$I" QxzzL$IUI$I0pI$I$4$I$?I$I0狼(I$I0*I$IQI$It0x|s5Mm伩* vmڶ1 ,21𤻻; &wr!7 R -/  I$r Wغ.M5QjnzOId1 ݖm61 i[ڶ1 H$I$1 "0#5@ ` ) A$I$ӽ I$ ӽ I$@$ӽ I$I$ӽ I$I$ 6-"R@@` rˡ1.888 iI1**I $rI$I$r",01N``Jd I$H&  Q` II.< PI1uU pI1 8IYUВ$I&Q-zZE$I$0-) II1 + I"Qz hI8 pI|_ @I I 'I$N``ppIrФ [Z7irRc'R0r```@ IDI-7 I'IB1_ݪ $AIB1 E IҶ1 $IB1ߺ IIB1 $HIB1 h&I&qq "0$N``pp ٔr i hrj~z KdI18< @O1I$I$I$I$Ϝ訨I$I$Ф ``ppI$I$R I$I$𤪪I$I$r1`I$I$-<I$I$QO '$IBu_ $$IU M&Y$-@` I$I r - m$i rU}M$Mr1I$IN<@$I$0pH$I$ 1񤪫 1@%-@ J rФ) I$A$ӽ ӽ I$I$ӽ IA$ӽ I$H$ӽ C2 B0Q```` NNN I$I$RII$Σ I$I1"-311o``ppp rФ  I$ $ӽ h&k6R`` NDIn  qq @R I$ $qq R"%R%nА p` ӽ񬪪 *"91`` ɑɐn44&& R#I I1ILR@1տ/?I 1 I$Z"&nPI1 I`@rUj 1=AA1Ϗ I 164,( mm2 II$1w h۶m$1 u $qq $1𤪪 $1𤪪 A$I$R @$@А I 1  ӽ :C51`IIn<<4& N1- I$H$qq I$I$qq @$@%А P 1 ӽ 0 0R@``` P4$$ I$H$qq H$I$qq H$H$RR"%P"%N jr mir  ,41``` ɑn<6&& I$H$qq I$ $qq I$H$1 R%R"%틠P I$rn U nI$rU 0I$nUI$rnU @I$rnU DI$rnU H:I$Q _ ɑ ,.' H&m$0H$H$RI$ $RnB"%R%-1{rϤ ) EI$rU (.1r1@@` T n>6&' qq H$rn Hrn P$P"%А !aP m &h&4R@``` <,$ H$Iqq Im1 0 $I$qq $@$0 iT 1  򴪪 I$@$rjzzz @R m[m$1 1 HѶm$ѵ񛪪 M 61 IۤE$1 @$A1   R$I$ѵ񛪪-Rښ:* )anR I$H$s [-[$r`5TOR𤼜 6l $ѵ񓪪 6m&q h&H$0 "C8[1ФZZ qjb1- I$I$s 8'r}pPrI $r Ir 1@@@@A$A$𤯜K9K I Is* ز-[-hjj NTr1XTXXA$A$rI I rI$I$r91Ф 5E6r `rrϤ + m$1UFr'UD-[?UDmؓUФUbbH I1 UI$A1UI$I$1/U" ӽФp)jvn1  I$I$ ü՛5Rjjj 16&&I$IrAI$r A$r@8@ 1Аt I1  A$H 񴪪  ,,1`` Oɐ1666& II$qq IH$qq I$I$qq @$P%nА pP ӽ Ȁ h1`ITp1@@$W$?U$"U SS1𤯯U @$H$1 I$ 1 @(1 R#ҋQФں* AQ A r v;:ӽФ kkQxXxX $ rn Irn I$I$rn m&mQ/H$ q1 q3!c3qM0XXXX@QoI$I ϣ mm۶R ܒ#1:: iir1  ӽФ 24r1  1Ф 1  I1 A I$1꺪 #%R% P vI$rnU I$rU DI$rnU DI$rnU DI$rnU PI$nU o$nU  (.' IMڦ1 I rH$A$r4 1)m1  m$I$ 21```IxI$ <,&ɖ$1UId$1М } `Ki1@$@%-PPɐ0 )IQ))-  :41`` ɐ n44& $A$1ꪪ I$I$1 I$H$1 R"%R%NА pP I I$ӽ ((``` II\-7'' $1𤪪w iE$1𤪪 m[m&1𤪪_ Eۢm$1𤪪 IH$1𤪪 I$ $1𤪪 dB$$i1 @$@PА @)  $R__ (,-1` ɐn,&& m6mӢ1 H$H$1I$I$I$I$Ϥ̃I$I$R I$I$𤪪I$I$r`I$I$N<$&I$I$QO )A1 II$1 B"$R%nPА pp) ) E4I$r_U 5r`pxI$N46&I$IUUUzI$I$ M 1𤫫 R"%P% P I$1  @I$rnU @I$rnU DI$rnU @I$nU @I$rnU H:I$Q ITɐ ,.'% M6h60 @!2Qo rn B"$R"%NА  !  A&h$ p991`` I n4&&& $qq @rn I$A qq P&h'n< KM1  H$A$ӽ򬪪 0``p HHN  $qq II1 A$I$1[2&` -888 vnVl1  ӽ񬪪  rQ  KIr^I$$ UI$% rUI$, roUI$d rUI$$ rUI$$ roU I$u+ rU IrФ+ I Ir Aӽ 1`` n NN1 I I$qq qq @%`'8< IDi1   ,1#1``p`   @ Iqq H$I$qq H$I$RX"'H$N YIQ  Ir ,-```` N m[m&1 E۶m1 I H$1 II1ڪ I$ $1 I1񤦪 I I1 I$I$1񤛪 II$1f I$ $1_ IhӴ1w $H1𤭪 @@[qq m6@ӶRI$I$Λh$H$ ИL1Ϥ $ar0 #%'r`zz HN I$R EM$R I$I$R X"&r'<< ٖm1  $ (41```` HH A$I$qq qq I$I$qq XX1:>6 i)R  A$A$ H$A rx IRФU ӖrФU ݖФU~^&HUcIUm$AU߶$ ժ*[ܤI1* I&I$I$I$s [-ڳr`hxz dKdkQ𤤬 h$A4q c&f$1 I I rn mCfr𤗗7 iiѶr $I$s* mm6rho5`BR1TWww @$rIIr"(")2jbbjI$I$Фۿ'K 0 I$A$s* mm6jj k r1\\\\@I rI I$rI I$rIIr m5C5ѵ񛪪 I`I1* I4I4ѵ񓪪@$Iѵ񛪪I$A$rA I$ѵ񛪪H$I$1( I$rI r$@r $@$R1XRФ 1ҳr A $ Z51h`x)J1H$rI I$rA$I r@ X 1 IR I$ 񴪪 ,,0`` Hn I $qq I I$qq qq `"&r'n< YZ1   E6E۶rjꪪK"'r^xI$I$0-UI$I$0-UI$I QNU I6)rnU IU Ibm+ ϤUc$ IUIw& + I$H r IB'mór IpBr_ I$m6r^\XX I$ R I$AR MҦ@R M$H&r N;db0rQ_|p@m۶i4RpT%0I HR mmR I$I R R,R1>/)-rQ=$A IМ<)R5q1xzz HKϤ II1ﻻ $I$1 I$I1 I$ 1{ I$@1߻ II$1񤚪 I$@$1 I$A$1񤙪 I4I1񤦪 II$1w I m1 ") I61| 0 1iݖ$13 $I$$1 @%`$ fn-NR $I$  (ȓ```   N 1zO&m1UIvФH$H$ؘI 0Ϥ 1 rQ =55 .(#1r` H N I$I$qq II$qq IH$qq X"&z$n؜ `1 ӽ񬪪 &1`I$IQU?.I$g irnUI$-rnUI$n-LrNUI$-rNUI$wHrNUI$+rNUI$mrnU IT$ r/ iisr  I r *11```` HH1 I$IR1kS9RzxI$I$VV_VI$I$ϜИI$I$Q )I$I$rQ"+I$I$rppppI$I$nII$w i1 mѶiڦ1 P"&h$NIMr1 H$I$ϜR4P9r``hx N I$I0 Мp0 ٖm0l1 m&h&1z I$$1񤛪 I$I$1񤩪 I$H$1骪 I H$1 II$1骪 I$A$1񤥪 I$H$1꫾ IH1񤭪 I$H$1H@Rn I$I$rn B%s$-88< 4Afr1  I$ *"`` N I$Iqq H I$qq H I$qq HHn<44$ ATIR  @ӽ񬪪 9P5r` 9JIn H$A$qq II1 I ҵ𓪪hJ1N<<$$ i&i$sr I$ $ӽ񬪪  Q' &I S Ii I$I ӽ ӽ I$Iӽ I$I$ӽ I$I s I$I$ӽ񬪪 Ei۶r H@$ӽ $I$r %%rϤ``p ЉN JdO1 I$I$rn I$I$qq HH1<46& R I $ 00```p JI  I$$qq  $rn h6h&RH$H$NJuQ +a1rQ=5 1P#=rФ``` !N  H$H$R  1 H$I1 I A$1 I$H1ꪺ $I$1꾮 A$H$1 II$1 H$A$1 A1 $H$rn A$I1 @@qq I$H rn I$A$RJ$H$-I$I$ I$0 _p$I$1xz Hɖ-  ֶQoi6I$Rn @$I$RH$J$<44$P Mr1 I$rQ* "1S&r`x    $It1Z H$I$rn $I$1 pJ1>66& I)ТR @ I$ @  I$I$򴪪I$ $ A$ $I4 m۶m$ m!& m˒,r 6l&I$r m I$r !8r Ê5[61z ڢ)1 F$I'1 H I$rn IҤIР1 LLr7''' $IR$ $I$s* ]6]&rpjpxtBIqA H$rI$I r"))RI$I$QФ7''BJ1 I A$s m.m5r j r1TTVTI Ir $ $r $Ir $I$r h6E6r IHФ1 6ѵ񓪪H$ $r$A$rII$rI$IrI IrA$I$rI$H$1  $I 1U-r.6& i-жr  I $P#5``A 1 A $r$I$rH I$rj1<44$ 1ӳr I$ $񴪪 (5Ф`` )n  I$Iqq m۶h"1 I< JK1n<4&& !!irq I$I$򬪪 m&h& "-"-Q````C6A10ꪪIq1/ 4  R*  )RH HQ I$IsI$ $sI$ $s  IH$s I$  C4;nz I r1\T I$H$U^ I I$UU I$IRx H$M$  c;3Q````I$H$Q0H$H$ I 0| I$IR I$I rn I$I$rn hhvr-+ i$mQI$I$rQ"-Q````1    $I$R I$Iqq $A$qq I$A qq $I qq I I$qq I$@$rn I$Iqq $ $qq $I$qq @@R h&I$!I$AΛ !ihrn A$I$qq J$HN<<$$ IPIR  I$H򴪪  Ђ-Ф``JA1o I%1pX 0I$U$I$𤪪H$H$  A0Ϥ 6q15Z$rhz n-  I$H$qq  I$rn I$ $qq H$HN444$ 11R  I$I$ӽ򬪪 @ rꪪT pr''/. I$Ir I$I$ӽ򬪪 @ӽ񬪪 I$I$ӽ I$I$ӽ I H$ӽ  ӽ ӽ H$A$ӽ I$I$ӽ 11r``` JA1 IIR1w#P"1RxI$I$_I$I$Ϥ싼I$I$0Ϥ -I$I$r0*I$I$r`hzzI$I$M I$IwV KtI1𤫭 @1 H$J$N444PA%@@r1 &ICrQ*#65rϤxxxp K!N  I$H$qq $I$qI$I r I$M&1 I @$1 I$I$1 H I$1ꪪ HH$1 I$I1 I I1 I$@$1 $H1꺪 h۶4rn M&h&Λ I$Σ H$H-<<4$ 1 I$I$ӽ -5rФ`` 9!n I$qq I$I$qq H$I$qqHMD1n&''' r ӽ񬪪 9:r````@1N  I$1몪 $HR1 I$Ir ȅ\TQo&''' H$H$r I$A$ӽ򬪪 MIQ%%'' H H$񴪪 I I$ I$ $򬪪 I$I$ӽ  ӽ -6M۶ӽ I$A$򬪪 A$ӽ  SWW  $r E4m&r^_Up&J$rnhxxx!!-)v񤪪 iI$R $I$R HdLd1&''' @I!EIr I$SUU 5R=xxx ItI M&R h4m$Rh[4M$RnH$I$M6&&'!aH06Q0 &C%h$Q``hx IN @$H$1v^ mm1 A$ $1 I$ 1 I$I 1 I$A$1 -ZM$1 H$I$1 1 1 H$rn I$A1 IH1 M4m rn I$RH$M$-4&&/IC0뢀I$I0I$I$-```!۱ ;6Qobݶm𤫪$ 2!IQoH$I$n$&./)nݺQmI$h&K$1pxMn @I$R M&R EѶi$R HM1.''% $I$RU ЦI$rUU h$I$rUU I$Q  I$Q Cni&rUU '$rUU 'N'RZY H$IQ $ $Q $I$r0 Ai$Q I $rQ H$I$rQ ش$q1xzzx Ai1 I$h$1 c1 Nĉ1 Htm%--- I$ s*I$I$s* 9CڳRhxxx ٖIdA1HI$rI$I$r"1I$I$r𤥭-- !Q I$ s  m6m6rhxx IiR1VVWWA$IrI$A$rA$I$r I r i&  ѵ񓪪 I6I$1 nivѵ񓪪$ rII$rH$I rI@$ӽ1UI 1UWTTA$I$rI$I$r$A$rH;7orФ''// m0!$r ڶ.r Ђ1r`xp P 1 mI$q aÉ$ѵ񛪪I$I$rHp ESR6''/ E"i4s+ I$I 5=r``` N $A$qq c36c#1j I % HDJDQ''' !I$Ir I$I$ H$I$򴪪 ,P5r1````mvMq1 !`Q+ m[mPr $C:fLrꪪ r%$I$sII$I$s** I$ $ II$ m6M6rz C0dBR||\ $A$-5 I$A*xB I$Ir\UUU H$I$1 ڶi״Q kM q1 I$kr0 I 1 iӦirn iҶ)qq I$ $qq M$M1- I$Ar k`rWv1=rzxxxIdIϤ )I6R A $rn m[i۴qq $ $qq A$I$qq I$I$qq II$qq I $qq rn H H$rn @ @$R HΣ IiΣ A Irn @$A$qq HMD1o6''' iir I$ $ 1R#6Фpxxxd1n K@1ФV Ȁ 1# wH$I$ 6&&'ImY7QI$I$Q0/ h$K$1M`h ِMm-  R I$A$qq qqHN1N&&'/ r ӽ񬪪 ӽ񬪪NRr0777>  $I$r mӶEӽ򬪪 ӽ񬪪 I$ $ӽ I$I$ӽ I$I ӽ   ӽ ӽ I$I$ӽ I$H$ӽ򬪪 P99rФ``` p1 I$ѵ񛪪 @$ R1nz #@$1 ZM$I$Ϥ-,& I$$0Ϥ+ IBo$Q0 U I1s5rzhhz IdI1n) ] *-1 @$I$rn A 0H$ON6&''a&`r1+ i@Qrս =`&rn` N I$A$qq IH$1I  r I$H$1 I I$1 I$ $1 @$I$1 I$A$1 A $1 I$I$1ꪮ $I$1 1 $@$qq R,(RI A$ΣH$I$-$&'' iir0 r X%X%r```h N IIqq $I$rn I$A$qqIIrn/--- I$I$r I$I$ӽ񬪪 X%X&oxxxxpI01I$ $r $Ar$A$ѵ񛪪 \I$̃ / 6I$rnU dI$QNU 됔I$Q.*U @I$oUi8U mI$rUPI$rUPI$rnUжI$rnU @I$rnU DI$rnU TI$rnUI$rnU$I$1NUH$I$x~Wna@4I𤺪]nmֶRn -m$RIDIDQn---- A$I$ӽФ Eڶm4ӽФ%`"&rhxxx `M4IФ A$I$R-4m$Qo dH2𤪪I$I$-//--I$I$qEӢIڦqH$K$1xxx  m B;$1W Jݖ$1𤺺U `m$1𤪪U m$МW A$МU $Мw $Aϝ$М @Ԧ1𤪪U $$1𤪪U ֡ݖ1𤪪  A1񤪪k  A$1ꮺ I$I$1񤪪 $$qq I H$1𤫪Iɑ Qn%-- Ib'rQU_pIҴkQ0UWI$H$0-xxxxKtn d6N$Aϣ I$mR I6h Λ I UrϤmӦrQUUIb' q1H$H$0N`hxx 0@ RnZ QoI A 1𤫫I$I$Ϥ $I$QnU$I$QnU$I$QnU$I$QnUI$QnU @QU 8QU iQU  IQU 6QФ*U V$rU iQU mI$r1U )$M6q1U H8Iq1z~_U im1 N1 A$Iq Iiq !1-- I$I$sH$Is C3?1xxxx !Ҥ rA$ $rA$I r M M61I$I$r-+) BJr I$I$s* m&mҶrxxj AI$rH HrH$I$rH$HrH I$ѵ񛪪 H I$ѵ񛪪 M4m$1ꪪ iu1** 4I&ѵ񛪪I$ 11 $I$1A I$1T\\XI$I$ѵ񛪪 $I$ѵ񛪪 @$ѵ񛪪 MItr---+ M$I$r^U m$I&rQ 9ڣ%Q``xx m֭ I$I&q $q AI$ѵ񓪪 r'--- $A  H$I$ Ѓ%X%rn```x dA$I I$H$qq $B2$C21 H I$I$̃ +PI$rU OI$UIl$ФU &I$QnW͐$I$0N II$rU mrФ"U I$RФU@ U@1U ֡$RU $ a$RU -ڶI$R mѶm$r*}U m&1 &aN$1 H$I$R1UUU I$I 5 I UWTV I$I$R X[Q  $I$ rQ im1 I$I$qq @$Aqq I$I$1 I$I$R I$I$򴪪 I6hS  zxh1A $Σ I$ϣ @"m$rn 66rn @$qq m[i$qq @$rn )E$1 h6M$ϣ hѢm$ϣA$$" 𜪪  mR $1𤪪 @$1񤪪 ɑr%-/+ AI&s#%R1rzZZz %S%rpxxx`@01 FbvBѵ񛪪 1I$ QoI$I1N%%%-I rQ3 ImrQH$H$Q-xxxx I0In !R @ rn E۶i4qqI$I$/UI$rNUTI$rNUI$rNUH$I$1-U$I$Q-UI$rNUI$rNU I$rnU DI$rnU I$rnU V2I$rNU I$rnU@I$rnU @I$rnUس&I$1 z PI0A1 mI$ѵ񛪪 $11@`I$I$[I$I$M--I$I$0mI$I$0狼A%Q$0n``xx mn1Ф E5]Ӷ1 I$I1 A 1IDɑr%%- IIr I@ӽ =5r``` A$I1М II$1 I$H$1 M۴ $R `'81} I$I$1񤪪 HH$1񤪪V I A$1 I I$1 IA$1ꪺ_ $I$1 H$H$1񤪪 I I$1 @$qq hE41 m6E$ I$I1n%%-+II$rQ+ EQm6r X"&k&rn`hhx P  $I$qq A $qq  @@ ɐ ro-)-) I$@$ӽ񬪪 Ilar y%X frNxI$A$rI I$r M4I$1 EI$1⢪ IҶI41 t 1U I $1 MvMѴ1U I 1"! 1ꪪ qiI1ժ Iҭ&a1U =M$I1U I 1 Ih$1 Ab'vb;1 I 1 IҦhҶ1_ I&M1МN$I_m:4 ꪪI$IQoIIQo&")@ɗDIQn---)$A$rQ***  浪`'z$Qxxxx mmϣI$I Σ$M$&Qo"))@@I$I---) mIѭ﫪I$iQ0U|&=QϤzI$I41N_I$IQNUI$I$Q-UI$IQNUI$I$Q-UI$I$Q-UI$I$QMUI$I$QMUI$IQNUI$IrNU I$ rnU I$$ rnU I$% @rnU I$$ IrnUI$N- rnUI$&rn* I r- I$A$rW_~mrQWL$L$1Mxx Iۢ-R I@rn Imrn & (М@@ S rФ-) I$A r_ꪠ I$IRUM$K$QNxx I$mR i[bΛ I$@R I$I IM&1МI U*I 1МII} I " `1Uj IRE[1 II1W IBӦA1U M۶]1ժ $I1* I$-Z1 I6Z1몪 IҶq IҶ[q I(ѵ񓪪 I$A$ѵ񓪪 I$A$ѵ񓪪 I$I$ѵ񓪪 IAR$ѵ񓪪 i)vQ  I$A$s* $Hs* h$h&1xxzzI I$rI  rIA$r h6m4RI$I$r1 AIr I$A$ Hb'Cسh I6ZrWn I0 RU 34`1W IR;m 1US#  I%[ HrU #QW ۔$1կ* yrФU* OR&rUIΒ(AU ݺUR+iӽP IbۃU O U I튭rկ )h۶r1* I$$qQ I$I QQ P`D1xx I$I61 I$ &q II$q-1@Jr  $I I$A$ X%b"'rxxxx $I$qq H$I qq  ),1@@  1M$I1 M$H1s61𤷯/ M M1 K"H1^ Ivm1ի II1 I Р1 I&iq &i4r H$A 2 6 1 !$6M1  I1 m$m1_w$ m2N]a1 I$mu1 I$I$q H$I$1*>** 6Mr hh&r0H$rQ**  r1`` rn I$I qq I I qq m[m1??? )-r II H$I 򴪪 m6hr^z|2:@r^I$uuQUI$IQUI$I`QnUI$I2QnUI$I1nUI$IQnUI$IQNUI$IQNUI$IQNUI$IQNUI$I" QNUI$- rnUI$.+rnUI$d rnU I$rտ* U$I-+  I$I$񴪪30C1RbbbbA%Q1o`pp $I$1 i&i$q  r1 %- @@@ ITɐr---) !)IIrU몪 NlHb:rzK$H$Q-xxx mغu  $@ iI$rn  1 ISm[1 I$I1 I1} I$M1 Mmm1W I 1U II1 I$A 1 I 1 IA1 I$H$1 iE1 ME1w I @ 1ߪ II 1 I$IQ I $q I I$ B#1#11```I$I$𤏜@@I$I$n-- I$I$߾I$I$冷I$Inpp I Iڤ1 ,11€ I$I1  1Фh@  r- Hӽ  $ӽ ji1xI$rϤWI$$ U I$US&AU I$"rnU I$$ HrnU I$$)rnUI$m hrNUI$~ rNUI$nirNUI$ rNUI$IrNUI$m-rNUI$ rNUI$?`rNUI$ @rNɑO]!r𤵯II$rQ** i6Iۦ𤪪H$J$RnpxxX I Iqq I$H$qq H$I$qq ")")N@@@ ɐ  Rn I$I$ӽФ  rQ bgk1o؜ Iѵ񓪪 I$$q H H$ѵ񓪪 HA$q @$I$q $I$ѵ񓪪 mI$q vI1 I I$1 II$q I$I$q I I$q I$I$1꾮 II$q IH$1. kS$E1~ II1 IҺm1 I:i1 I$HRI4I6QomlQo-6 Qo)(N@@ɕP lr--- IIQӽФ m6 ӽФL„L1ؘ I$IR I$HR I$m6R")*n@@@@IdI1-- i۶ q1c$Aq1 MrQ*I$IrQ -jrQ I$I$rQ 0rQI$I$r0I$I$rQI$I$rQ+ I$I$rQar@@ӽ񬪪 II$ӽ ӽ mQ-$ӽ $ӽ mE&ӽ Pӽ I$I$ӽ I$A$r I$$RNdK1ؘ  qq I$I$qq I$1 )"-n@@ rФ I$I$  $R LJRn I$A rn I R I$1 I$@1 H$M&1 mӮ6lR I$i0} I$iU I$UU 㢉(U_ I۶E׵UU" I$EѴR1 I$i41UUU\ A&Mr $$r $A$rI$I$rH$I$rI @$rI$@ rA$IrI$ q I$I$ѵ񛪪 ;C:r ar I$ ** A$ $s G]0G1xxpxI $rI$Ir @$r BۦCr1I$I$rQ IIr I$s(AH$s" I$Hs**H$Is I$H$s I$A$ I$ $Hr K&m5Qx I$$q1 I$rQ + mA r ii$r  ۶aɲd? m$I$z I$I$r F$v8r_U HM$rQ I IQQ IIrQ* i$A6rQ e[QФX M$I q I4mڶq I$Aq(ɐ.(1@@@JdФ-  I h$$jjj {grRX؜ I$H$1 H I$qq  C0$H1 d A1 IH$qq I$A$qq  lɐl1 IAr pDX1𤾾 IIrn II1ꪻ E$I$1 @$I$1 A$I$1 I$I$1着 H$I$1 $I$1 @$I$1 $I$1 A$I$1 I$I$1 I$I$1HH$r ҶE5R1 ݊nnr H$I ӽФ Ir- h@1hh`` I$A$qq qq H$H$qq  $r  r I$A$ H I 򴪪 I$I$rꪪ I$Ir I4mrQm@Qq1 $I$q1Iq1@I2rQꫯ PϜdH4irQ $@rQI𤪪A ӽФ I @$r   r I$I$ӽ mڴmۢr I$I$ӽ򬪪 I$I I$I$񴪪"))rjjjjIIoI$I$rI$I$r :I1z~ 1o@@@@  r  $񴪪 k;- 4r hLD1nXؘ M$E61 I$I$rn  $I$R  I$rn @ 1 $A1 I 1 H$H$1 @$I$1 Irn I$I$rn I0 A1 $ 1 I$I$1,-P  @$A$1 I$ $1 I$I$q I$I0q qqBR1#1 I$I(1jjj`I$I q I$IqWI$I$0ꪀ IgInؐ I;Nr I$E4ѵ񛪪 ѵ񓪪 .)"(1@` )rФ  ӽ  H$ӽ $ ӽ @ӽ @Aӽ 򬪪 ؊k.r @򬪪 II A @ I I$A$r ӽ񬪪  H 򬪪 @ 򬪪 $H  I$I$r i$irQ @rQ*$HM0rQLN1Nؘ II1 H$I$1 A $1ﮪ 19N@`p JrФ )  I$I S 6b$ 8rQ@MD1n> I$@ ѵ񓪪 I I$q I$A$q II q I$I$q H$I$q M& 4q H1 I4Mq i&I$q I$Iq Idɶ ѵ񓪪 IH ѵ񓪪 II"ѵ񛪪 I$r I$I6r Iv6l1 I$i ѵ񛪪 Kd۰mѵ񛪪y1$1ꢈ m۵芬1 I$IR MҶ-R 1@$n``` KrФ I$SWU [òr{zz NN1 I$H$qq A$qq H @ R R#95n` o r來+ IrQ IArU* Imr I$ISU MkrW IBdr #-*(QI$I$rQ1II$rQI$A ӽФI$AӽѬIar+)-ӽ񬪪@ ӽ񬪪hPӽ񬪪ӽ񬪪 @r@ ӽѬIHӽѬ mѴm&S__W $I$ӽ M2$C2R` NI1 vmӶR $I$R  IR "1P#=@`pp )   M$C2rjjjz MN1< II$rU_^\ I$ $qq $I$1 I1 I$@$1 I$qq I$I$qq I$I  -5 Eh1 I!Is iiԽI $PI$I$1| A$1UH $ӽ1UI$A$ӽ2UAI$2UI$ $1UAI$2U $I 1U( $H$1U0A$I$1UUI$I 1UU   В1/ I۳r i$@s*** I$Ңs MfMt1xxxx$ r@I$rI H$r ] 4-155I$I$r2 AAr $$sI H s $I$s I$I$s m$I I$I$ $ I$I$򴪪 I$a$r~z I$ $rQ耠 I$A$ ZI$rQ* I m$r U -i$rU @"m rZ] EI$rQ H$IrQ I$I rQ I$IQ  M$hrU @R$m"r}T{WRФI$r I$Iѵ񓪪 A$I$1%55- z !%@-) I"  6c$6cjjc4V ޞ( 8$CҳU* I$I1UU I$I$UU I$ $UU I$I$UU" II$1 TKd Q  $:m'R1j~~ d4 1𤾶.*n.Kp1 " $ 1 I$I$1 I$ $1몮 "h1 Զm41 iӶ1 4mڶ1 ֶM1U 6lֶ1 hm1 A$A$1ꪻ I$ $1 A$I$1 @&m&r=??' Imr iӴEۢr I$I IIr```p qq I$qq  I$H&1 lm???= I$I r I I򴪪  򴪪 I$I 򴪪 A A$rꪪ A$@r_ MҦmrQ&M4 rQꪨI$rQi irQ*IArQ I𤪪 iEr I$Ar Aӽ򬪪 iۦmӽ񬪪 ӽ񬪪 I$I$s m۶mӽ񬪪 ӽ񬪪 I$I$ I$A$  4Q` II1 $rII$r@Ir,01`ppp A I$  C2C:Q` MOn I$I$1 ڶ뺤1 I$0HR I$rn 1 A I$1 A$A$1 H$H$1  $rn rn Hrn  $I$rn  rn qq @Ԁ4𤰰 𜪪 HI$1 II1 I$Iq Iѵ񛪪 $ $R1I$R1201@` !   H$M&rV^z  m6r1 tP_ 1<> R1 $R ,,1Ф`ppp   @I򬪪 AI$򬪪 $@ R} ӽ @H ӽ A$ӽ $@򬪪    $@$ꪪ A ӽ  $ I I$r I$I$S @ӽ  @򴪪 M )򴪪 $򴪪 H$H ӽ I  I$@ r_^~~  A$rQ ES4(R4r1` NIn> $1ꪺ $H 1ꪫ IA$1 @$P%nPPА !`r  I$H r m'CړQjjL@O16&, I0I$1  I6 41  I4I$1 M $1*u $$R𤪪 I$A41  II$1  j1𤨨 Ii$1( 6i$1  @6I$1 @ 1 -4-$ѵ񛪪 A$ 61  HMR𤪪 E6H$R𤪪 h4@$1 H[($1 i[m$1" I&@&1  ii1񤮪 I$i&1 II$1 @$@1в: )IT 1 A $ :C2Q` Nɐ1Ф I$H$qq mE۶qq H$@rn S$@%I$qФ UDnq$rФU0o$rU I$ФU mI$ФU N$rФUI$rϤUR6I$RI$I$QNI$I$rUI$I$rUI$I$rU@$I$rU@$I$rU$I$rU$I$rU($I$rnU$I$rU$I$rnU$I$rnU$I$rnU$I$rUŒ$I$rnUIɑ.,.'%R$R IIR @$P%𐐐 II1- I$I$ 4Rzzzz L1 I$A$1𤪪 $1𤪪 I $1񤪪 @$I$1ꪪ I$I$1񤪪 H$A$qq HI$1𤪪 I$ImemW mM4(w MѦ$1UU ii$1UU i i$1UU EA$1UUH I$ӽ1UU I$H$1UU @R4I1"UU I$1UUI$@$1 UUA$ 1 UUUIIR1H$rA$I$r1 h 4EӦ1/%%  i4I$ *.> H&i4 ɐ `1XXXXH$I$rI$ $r $I r db'f $155%M$I$r1 JQ  m$I$rU h[M$rU 0N$rW qijrU mI$rU II$RV nM$&m ;c' ɖ ur1PXXXI$$rI I$r &$r mM$10H$L$WWW p1 $HqI$ $qI$I$q $I rH$I$r hm4ѵ񛪪 IMPr IҴmѵ񛪪I$$r I$M6ѵ񓪪 MӶhv1 I$m81 N$qb1 LĶMq I$IP1 iiѶ1*,1*x I1 I Mۤѵ񛪪 $I$rI rIA$r $$rI$ rI$H$r X18< 6@R  a$I$񴪪 I$A$sꪢ3(~ MNФU I'RHU I$)U I$$)rU I$* U IrU wrU I& rU I@rU q\AU IۓHФU Ib$ ФU IIrФU I^$ArU NȄjr𤕪 I$Hr1U I$ 1U Ib$QU I$i[RU I$mRU I&mrU IIrU A$Ir I$I I$ I$A $@$rj ͖lrX\\\ I$ qq I$A qq I$I$qq A$I$qq -1 I$I$qq qq I$I qq I Iqq I$A 1  I$A$qq Im۶qq NB$Iqq IҢm۶qq IҶh&qq I $rn Iqq v 1ߪ Hqq Im۶1ת I qq I$ $qq I  qq II$qq I H$1y I$A$1 I$I$1 1񤧪 $I$1 m&1z m׶m1 @%h'1n )P1 -Ҷ-жӽ iS4mѶRꪪ s9IrФ^ I$b IrnU I$$+rNU I$+@rNUI$}HRMUI$IQ UI$I0 UI$I1-UI$I1-UI$I1-UI$I1-UI$I 1-UI$/Q-UI$q rMUI$, rNU I$ HrNUI$dlQ.U I$ ArnU I$$ AoU I$$ HoU I$&@U I$U IUI7;rФU $Ir-  )I$r P$ (821`x p1H1Ф&'mm$1  $$R1ewW ($I$R1_ m-Zq I$I$q $Hr I$ H$q I$I$q A$I$ 1(" I$ $q I$I$1 I$I$r H$@$R1߫ IIr1Ukm^ IڠMR1 MҶEr1W  r1w I$I$r1ھ )RmR1. I I$R1 r1U I I$R1ۋ/ mڢhӶ1 II1 IRI1ת IҶmѦ1𤥪 I$$1 $I 1 I$I 1 HJN<<$$ IiR  I$  II񴪪 A I$񴪪 $I$񴪪 Evm6 Im6Ar IM I I񴪪 A$I񴪪 H$$񴪪B5X#Փ0``` єm)m1  I$I$ II$ I$H$ H I$ $I$ I$@$ I$$񴪪 H$H$񴪪 II񴪪  $񴪪 I$H$񴪪.)&rjjI$I$q1I$I$IIr%/?' I$I$몺 II$ 1#9```p BI  $H$qq @qq $I$qq I I$qq I$I$qq qq I$I$qq H$ $qq A$I$qq H$H$1~ϣ   00 PI1멩 km۶쮪𤫛z( Hi I$R ΣHRH R@$RR@RRRAR R@R R IIR HK166&& iir I$I -HS I$I$ I$A$ I$H  II 򬪪 I$I I$I m۶) (R򬪪  A I$ Is*** $I$sA$H$s"I I$s*I$H$s$I$s I I$s*$A$sA$Is**I$I s H$s(H$I$s*I H$s*A$H$sHI$s mҦm&r^\ $r⪫ miۡr1\\\TI$I$q@$H$ѵ񓪪 `H1 I$I$ѵ񛪪 J$J$WWTT!11)A$IqI$@ qH$I$rH ArA$A$rIA rA$I$rAH$rI$I$rI $rI I$rA I$ѵ񛪪 I&Aѵ񛪪 I3aѵ񓪪 I&Aѵ񛪪I$ $r#8P"%1zPPPA1$H rI$ r $I rI$I R1I$I$rI$I1UUUO$I$rh*zRФ>6&. IiۢrA$ $I H$II A$ ]5h5򴪪  $  IA $гrjjjj I H$𤪪 Idirյ+ I$I I$H ꪾ H$I&r I$I$򬪪 $I$򬪪 $I$򬪪 A 򬪪 @  򴪪 H@򴪪 @򬪪 $I򴪪 HI$򴪪 I I$򴪪 I$ $򴪪 I$I$򴪪 򴪪 $I$򴪪 h&H4rjjz 1!r\V^^ I$A$qq $I$rn I I$qq I$I qq IH$I1 I$I$qq I$I$qq @qq I$I$qq I I$1 I$I$rn A$I$qq I$Iqq I$I qq I$A$qq I$$qq I $qq qq I H$qq I A$rn A$I qq @qq @qq $I qq qq $I 1 I$I$1 @$A$1 I$I$1 IA$1 I$I U xH1<444 1!Q  I$I$ӽ I$A ӽ I$I$ӽ I$I$ӽ I$I ӽ I$I$ӽ I$I r I&mrQI$$rQW_I$I$r0 AI$Iq1I$IrQ? IArQ* I$I r I$I r I$ $ӽ I$I ӽ R ǰ-'r 6KdKr I$I$ӽ񬪪 ӽ񬪪  ӽ I$Aӽ @@ӽ @A @ @  ӽ -`` J 1Ф- Iѵ񛪪 I$I$q IHq A$A ѵ񓪪 I I$ѵ񛪪 $I$q I$I$q II$q $I$q $I$ѵ񛪪 H$I$ѵ񛪪 I$I$q A$I$R1ՕU H$I$r1 A$r1  Ar1 I r1} @ R1 I$I$r1vU A$I$r1k I$I$r1w -ڶi$r1^ I r1_ $R1u 1 I$Irn rn qq H$Iqq I$H$1 IH$qqHKd1N&&&/ )iѶrMlr I$I$ H I$񴪪 I$ Z5X% I A$ I I  h$ HI$ H$I$ C!ڂQ``O0 --- I$H  II$ I$  H I$ A I$񴪪 H$I$ $I$ I$A  $@  $H II$򴪪I$I$r1VI$I$rQ I r/7/ A I$򬪪 II$ #5:rФ`` It  I$ $qq A I$qq A$A qq A$H$qq I$I$qq $I$qq I I$qq I$A qq HI$qq H$H$ R ,1z{P`Q E𤮺hP𤞫 h o &1aRARRRI$I$R R $RRRAR RRI$I$R IIR H՘R&''' iir+  H $ IA$﫫 $򬪪 I$A$ I$$ I$H$򬪪 I@ 򬪪 HA$򬪪 M۴i`/ ve0 r H$I A$A$ IIs* AI$s** I $s* H H$sI$I$s**I$I$s* $I$s I$I$A$I$s$ s*A$A$sA$I$sA$I$sI$Is* Is(** k6h4rZxx` r 1Ämr1TTTVI$q Iѵ񛪪I$ q$A$q H'z$T\\\ɔy15I$H$rI$I$r@$I$rI$I$rI$A$rI$ rI$ $rH rA$H$rI@$rI A$rI$IrIIѵ񛪪II rA$A$r1UUU AI1UUX%Z%_߾@p@ӽUI I$1UU~@A$I$rI$I$rH$rI$I1A$A 1xxxpHI$r Ȧs:sr'/-/ I$I$ I$@4s $A$s$H s  I$I$R#Msꂪ immr uMr inmr I$@6rjjjj Iġijrյ $I$ IM$ ömۓ$ E$I$ H @$ I$H$ I I򬪪 A$򬪪   @ 򴪪 $򴪪 򬪪 I$H$򴪪 A A$ I@$򴪪 H$I$񬪪 I$I$򴪪 A$ $򴪪 H$򴪪 @S4h6rzzzz ٔm 1 I$I 1 HIq IB A1 IbI1 Iҵغ1 3h61w IB$I1 q-1I$k7h1  I 0R1奥e qq I$A$qq I$I$qq I$ qq $I$qq $I$qq I$ $qq I I$qq I$ qq @$I$qq I$I$qq I$I$qq II$qq I$Iqq I$A$qq $I$1뮪 I@ 1 I$I1 I A 1 I$i1 @$A$5 HKƘ1$&&' iir H$A$ӽ I$I$ӽ $ӽ I$ӽ I$H$ӽ I$ӽ $ӽ H r~ I rQ I$H$rQ I$I rQ I$I$rQ* I$I$rQ  I$Ir I I$s I$I$ӽ I$A ӽ A I$ӽ @ @ $rZӽ񬪪 I$Iӽ񬪪 I$I ӽ񬪪 I $Sw  $ӽ H I A$@ H$H A P 5#9r```  dI1Ф  $I$q I$ $ѵ񛪪 I$I$ѵ񛪪 I$I$ѵ񛪪 I I$q q ѵ񛪪 II$ѵ񛪪 HI ѵ񛪪 I$A$ѵ񛪪 I$I$ѵ񛪪 I$I$ѵ񛪪 $ $R1UU I$$q2 R1 @ I R1?  R1Uu $ r1 @$Ir1Wo @ R1 A R1.? I r1] @$r1{ r1eյ5 I$I1 $R I$A$qq I$I$qq AA$qq $H$1 $HqqI$I$/uI$rnU @nI$rnU m$U m$rU m$U )%w$RN_ i$U mm$U muU 0Al'Umm?U $Hm?U #I$Q- m$U mm4U m}'U ml$U 0M$U 'U M$U 0 $oU @I$U m$rU m$rU $UI$I$(WI$I$RnUimI$rUI$rUrI$rU`'I$QN~_  TIМ Iqq I$I qq I$A$qq I$A$qq I$I$qq I$I$qq Iqq II$qq $I$qq H$H$1^ R -11zzz~  1o4뫹$E  IAm NtΛ RHR ϣ@R i$IR I$IZR I$$H1 M$1 I$$H1 I$$H1_ mڶۆm1 I$ I1 IhҦRMI$1o/ PI$rU TI$U $iɓ$U mI$rU mI$rU F$ϤUuI$rФU QrФU9NrФ*U&rФUݖ J  QܓФUD瓵ФU M$rФUiv?ФU  M4ФU0}?ФU 0nl;ФU6m'ФUDUTU#֮o瓵U1U vMij1U Vm$1U $iI$1 iq$RU 6aI8r"U 6@I$rU c':r`kU tɚ 1  ہmR1VVWWIIѵ񛪪A$ѵ񛪪A$I$r $r1 H$x'1TT^\ L==??H $rH$I$rI$A$r@$Ar rH I$rI$IrI$A$rH A$r $I rI$I$rI$I$r@$I$1UU I2-  $I1|AA$1_X%X%𤠺_A`ӽ1I IR@`@ H$rI$IrI I$rI$15=--I$I1ppxXII$r (tHڶrФ/U 'rU@v?U4ؓUT糽U@$ФU@$U 0n~;U 'm$U mI$oU I rn 4qw$rФU 6$U P ɝ$U 0I$U Q$ФU ImU ImU mrU m%ܓU Mv$U `I$1U I$1 -жirU $IrU I I&rU $R*W @m$R ؖ%I$rU $IijrU  L$RW im1_ ɐMu1?II$rI$ $rH$I$rA I rH$I$rI$Hr $I$r I$rI H r imۢR1 6mL1 qq qq I$I$qq I$Aqq @qq I$ qq I$I$qq $H 1 I$H$1 I$I$qq I$A$qq qq I$I$qq I$I$qq I$ $1 I$I1  $1 H$I$1 A$H$1 I$H1%NI$..`I$rNU@I$rNUI$rNU:I$rNUI$rNU`I$rNU`I$rNU`I$rNUI$rNUI$rNUI$QNUI$QNUI$RNU`I$rNUI$rNUI$rNU`I$rNUPI$rNUI$rNUh$I$RNU$I$rNUdI$rnUpI$rNUI$rnUԶI$rnUԔI$rUpI$rU@I$rU@I$rU@I$rUX$I$1Nz_ di4 I$A$1 I$A$1 I$ $Q1U H$I$R1U II$ѵ񓪪 II$ѵ񓪪 1( 1 $A1 1 IA$1 I$A$R  I$H$R I$I R1U I$I$R1UU I$H$1誨 $q 1 I$I$1 $1 0 @ 0 H $0 R ]  2UUU I$Iqq qq qq H$I$qq $I1 I$I$qqVTFh '5==LHo=? h0CRC uA)zRG1U_*Jg1U'*J9 /i+J&1yRg1 *R)JJ +J&)iiJ9RF1ߗA&1`|AF1)Jg9 JF17&KJ9>>I$I$&I*:J$H$A92Ն>jJ9q4mIUR'1/2<)BG1->3 Po.jJG1'#nTS*Jg1El'  ˯ZjA)zogRG1U_ #gQ*Jg1U' 5*J9 /i 갊+J&1y:OddnRg1 *# |+̋mR)! &KJJ  gri+J&)i3!4fiJ9$ 13wRF1ߗ w_T4A&1`|! kiAF1(:)Jg9 = JF17&ö-aKJ9>> DC< P J9ꪂZϖX?29G1U+av*JF1" mƖ9&)" 8:B9F1k9ZP* Jg1 %dY B9/:Z& chR9K!n<9F1ظ!5^9&)k i=RA(R(9ܖj&jKJg1^\W' *BG1ժ*! 6JJ9/%p Ƒ*J9^6ckJG1W% j~ B&1![RMR9UB aoiR9$ Lo BR)X %zA&1 j#9g1 * CoAg1 ]sA9b7A B9߫!VRT*BA#ۺٓ/,jJ9tIRA"zA B9 kg% A&1&,'9g1)$&-Ag1. ?S*JF1_+*  _z BG1_%Fb*J)u A&1 @ K ˆ9G1ׯq lP'9g1_@N9G1//I{Ag1/οA9 # B9 ("".aJ9!w RAX\\U(U|9G1 I"ֶg1')!M W9g1 2+)A&) nP)۶یRA-ۼiR*B%BFRkJ #ڶیR*Jz!r+Jg1u`pkɏm9g1U! 4 AG1U$0)w Bf1#j? B9*$ X6lMJJ9 `m[*J9zbnې[A9-qɧ99 PkLj9g1V`p9g1 U" ²ђ(9(j*nNaR1 ) (mRkJj hcRkJB IRh9?2 ~ϏjJg1nUs.9&)ߺ*aݶXAG1# ikJJ9"MoO2JJ9**prZ+*J9I%!*BG1 @P B9B`ƮAG1x 9G1!  - BF1U# ,, BF1*(uW B1*`'n @R9U" FRg1Fk S9%+ JfIJ9W_ mǩ9g1O 4 99  G BG1 %) B&)W& m)BF1(]&JJ1I% ۰q B9O@ H,^_MR&)>uRG1 䔛 B9@9g1sR99ൿ"]pf[ B91) IJ9-++ 8&U(RiJ[?,rK>R9W~#_;+ 9F1*mv$Ag1.bxA&)`$ g1&1"-9*J(///'TJJAU SJJAU*:"F{b2A&)// ( ; Bg1MPm Bg1VVܲ9g1*. #IJj$`9g9+* (Nr RA-0#yuwRjJ*3'SRR ++ PRKJ|T'OmRg1W BuMJJ)' O)B9 %;yyAg1_^ 08 *B&)'' um *J&)U"?m *B&)U#lt"A&) Oy. A9 MAg1^| MI Bg1&1 SJJ10 ejJ(Bp4%9]2R(B =}2%ÎhbR(B() b>jJF1T#kĖA) kא8AF1ݿ ~ΏMAG1W 4ma9G1=*" mA9{AF1P" XAF1Uzx!>4'A&) hA9- X'eKJ9 lyW Bg1jzX3yiNްjJF1 6)y;JB}ߗ6,MiJ(B>]7"Тd=J9`.*گBg1@P,XaBBG1N1+(9G1D>Rg1r_/&+@jJB+!@jJIJzWU*"&~jJ(B +"" 1R)B" ߯JJATԼ#F7d9&)+ ڵ A&) i˕A9 !]EAg1^}!c9G1/u B Kg1&1મ!$A*JG1U\Om9g1)!ȭ9G1-dZ1G1k'pJi'I(Bg1) +# ŷCIJB( ˤ jJ)B(B8 6jJB:/ ֬TR9xp mw$JJg1W(Ҙ9g1 < 9G1/===grA9",?6A&1?! t6о>KJ&)*  '+JF1^"qYnRF1V\P)9G1{r-ᧈ9&)# `ߨ9&)/2%KIB9/5/+$ ~niJ9*( 7jJ BȈ+{ B9~0n-rA9 ef B&)\ woAG1 隸mAg1???H BA( <2L: B9'VA91ZEyR9͍7DA+J95O@>AG1z ,M|9G1&t9G1* ?$80b Bg1'*bǘ)B9) -I)J9jHA9 ->9g1p:4T*Jg1?UU x*JG1U 6R?A9}W+ j+J9 ٣c J97yOA93m*J9 K*J9 X' B9Ag1$io9g1 Bk#'JBg1 "yAg1 b"cAg1$q~(Ag1K[CAg1^^ D1G1  r>AF1?/ rdӒ+JA b+I +JA 8!*J9j$P*J9))?j+hKJ B/=/ ++JAZZ T-D B1*`IAG1e)H9G1UtXrm 9G1 IN9g1" - B9G1 ϏA9 oAAg1\\x nLc߈9G1r.Ag1 nOI BAꫵ*X 0 BA  cT*J9jn:A(*J9***  5ګKJ B. u.m*JAWP*JA #?*JA_ ĶA9x)W9g1W\X\tg1&1$g1G1Z$$$)@g1G1>U)Ig1G1 *(Qg1G1  A69g1 "HĶ9g1] #:9G1{⠠/ n9F1?$9&)ÔD9F199G1uzZ;#1F1/I[$9g1Qv9h1 RҨ9g1***  ߻A9 㶭 hI: $1UA9T &P B9* P*J9&P*J B[^U##Ĝ`)B BU$)B BUw$`JJBjuJJA2I i*J B_*DNd BA ꪵ,L," BA ] BATAG1@jmIig1G1j ζ1G1Hn, g1'1,II<9G1U*ɶi[g1F1m 9G1*!d{N9g1*涜%9g1 dI^9g1ڪ!9g1#9F1*"mpۈ9G1 3և9G1]z " v9G1?.ժ )}C9g1w mm9g1}m;rAg1 [=ڊ J9W}wq J9(UUx&A9@CJ6iA9⯫ O H&mA9%&I B9 !6 M)B B U}U# In)B Bս RB5%%%ugRAHmT? BA {5 JA/"mA*JA{}emO BA kwiAg1``&IN" 9g1]*:IH9g1U %ٲ 9g1ݕTK9g1 Ag1_   BG1U* Bg1U uAF1U u9&):(:! kI9g1W~!% `39g1/ iO9g1W `/9G1^$;9G1U +9g1}~~к9g1WW!k@9g1(!DAg1$9g1~trAg1+ndA9A9>" B9n 0M B9#Ж BB(#R/R9''''\͕RA@@@B Ҥ BA$* I B9"U!cۓ Bg1  / Ag1UU I7N4Ag1pz$mdm9g1&mq9g1 4d& 9G1,# B9 ][ yIoIMA9M +9*J9IZۜ@*J B]i?@*Jh9z[ᇛצ*J&1U ! `d$lRg1U_ mkJg1UU$ҖJJg1U xMc;I9G1dm,9G1(` #u 9g1W y. K:9g1U  I$9g1U} m9g1ժ{@9g1z"M-Yp99*semA9 A9/ B1& >t.7h B97&7ڎ B9ꊊ%9-IR9' R9U$7 B9W"#:A9_!8ܨ9g1xz"'ڇ9G1U$?`׈9G1*!-׀P9g1($9h10mPƨ9g1\ n> BG1 R9 @GdKRA MλR B¸ZR*J \[mRJJ kmRKJ lkJJJ KJ Bz$nk?+JG1W Bg1^xqo9g1X -풇1g1UUHI9G1U!'9@i[9G1&-KL9g1&%MM I99#2I;ڈqA9 +"a8 B9"!IȴJJ9%'!MjU[mA9&$$Ag1!Ԗ9g1`zy!V$9G1۸ ܇9g1#")C9g1>w!% [I9g1U ZLd 9F1* ])AG1}ߩikJ9 [ `ִRkJ MmmRkJת jlRJJ^ ¬nNjgRkJzտ 4mRkJ @t-nRKJo{xX MmдKJ+J^^ӖВ+J9` ݖ`AG1z!In>9G1U"m$9G1U 'oAG1  Ag1 fj B9U  {m B1WH>99 T'99+/*J9'-'6ݲ*J*B "In@2*J B 4*J9"0 B9|vU$lkA9*Iݑ9g9*#`v99#ۨ9g1"'I9g1 9g1J];9g1 !mIc79F1! `.m2A%)Fj Rg1 #ֶRRo HҶ#IRkJ k.ЋRkJ^ mmmmR(B M`ۆRkJ:q0rR9 ֒R+J9 O@ Bg1V^ wWmAg1z`UU#т6Mg1'1,9&)/ 9F 0AG1 utA9Wo5I B95 SԖ)B BU"#KVkA9.6A9 >9JJ9?*CM*JA*IM*JAUUqK*J9jjjT O"J B9թ6`C Bg1I39g1ɶ9g1 ؈9g19g1Ujjև9G1"i/mْ9F)#n[9F1z#/9&) t,%JJ)  O? `RA 2IRkJ ::RkJի ےRkJ] $ RkJ$O, A9+B\bR9% 3؉Jh1prOH9g1&AI m9g1* m;9g1 /doA9Um:A9U"m؈qJJ B *RIJAjZ !9Iu JJA!m?>wKJ B1KJ Bח n$T*J9| - *JG1b 5oܶM*Jg1",gC)BAoc +oAg1Ԓeߨ99Uӱ9G1mI"@9G1.UɫI9G1hhzm+i3Ј9F1U." nD9&1":`mg1F1"% X` Bg1A9ڪ>*BA?7IR*B - ӋRkJUUv¶$9 RkJU v, n RJJ2ciJ9}/?4IĉR B5`>J9V_o9g1 lI+99U Hu99}me99]ZWm99 `Bm:IJAw} | -p*JAum+6 B9z `r Bg1 U%3AN BF1(nBIjJg1 U%uJ$JJ&1 {c Bg9 > mA9ߨN7Ԓ B9ZpPR  Bg1~zڀv?9g1˶`99 0 i9h1(  QC Bg1/'/ mw BG1 $߶9g1U*!p(d; BG1 T'IBn B9nY*J9 V" m)ARh9U v6 R9UU$߶fcR9UUU#v$ RAU4JP JA ;,4RApX/#jJ9_~QF;A9UU~ >9G1xIt9g1-Pk天99ٶЌ99dSҩ99]!O/9G1v"ж9)`!Ҳ@g1&)"I[@g1&)*&O9&1_::)m BF1 68 B9 ''*JAUUU #$? B9Pwq*Jg1z~ 6jkJ'1_/ vRڋRh9UAqKJh9U JIߒ B9%/* vEIl B9`@jݶ9h1"I]NA9UUFnq; A9UU#aɽ A9wU%[)A9+"m/+AA9* B9 1". IJA/= 7*DRiJ+7#{4RIJ#9tRAWV![?X_{)B9"`'?9g1"umAg1I99UIa9g1 X A9Wh!&IH9F1U $ +Ig1&)*  @Cg1F1 IHIHg1F1  KJJF1 3n*JAWmY BAG$ BA `7*JA A*J)@*Jg1 WN8kJg1/Ԓи)kJAU Dw BA_cI B9H]; q mAG1)$)'9g1 ]m$9h1* ۖ$99*"/ q`A9%ng B9*"S` jJA 3*1sw iJ)B*70iQY JiJ+8& R/1RJ2x<͉RjJ\x"}* 7^R9jj# 9g1 $ 9g1m 9G1 9 BG1_"P۱ @ Bg1{(d1kbA&) mI2g1F1  j Kg1&1$Ig1&1oj (JJ1!ɟJJ)BJJ B'ݶJJ B &iJJ B* `@JJ)@m܈9g1U(:> BG1//- 0mi B9z #NP BG1~4NAG1c; dĈ9g1k CeLj9g1 IPr99*!ƭA9UU!X=Dn*JA=%OtmRJJ))!qvwRJ0'%wRR+*4--yRR/*>5!1[=RJ{. X5RR "?dګR*J@ PNR9U_0mIbیRg1UU4ykRG1UW mv$A9*"+*'A9kqA9^#m`Ag1W$#?Pg1&1$߀@9&1} hJJF1+$M'JJ)B S3 qJJ Bv d;JJ BW*$JJ B'?:9)*$ h'Ag1  ۖA9/-ٶA97psAg1x <9g1_"-$9g1U!`Lj9g1#ҐvǨ9g1"*'ۓA9//$-4 JJA+ )!s0 JJJ0'nRjJ1+nRjJ * *3,~?RR::/$6:RR)CjR9x# OuRAU 7IakR9Ww^a+J9 垏m B9쯠Oq0R B9**$d*BAWߒHn B9dODA9zxMO9g1~#?q불9F1W\#t@mA&1%U I$I B&)U@)B)U#OJJ)U&жJJG1~UU#mK9F1?/SA9a;ֵ- A9 $mM A9,N9Ag1z6II+9g1 &ii9g1' 8I:IAg1u*!i BG1(K IJ9* * } JA2 7 &YIjJ(BVV4+q;`QR(B 2,YwpѪRHB /'(mCRJ* 1"*RR >)"نYr R9xxxx%k-9g1!<@9G1/_xq `AG1 U& IAg1U-=Ag1 ]h!Y Bg1WI" "aS)Bg1U Ag1 Ag1+??KA9/N"A9鿣?A9p!mݶ9F1WU"$G9F1_"drg1&)"Z'ЈݩAF1խ #A9*cǜ@A9ݫ$mA9$@A9U? B9##iJ9X~j1- I(B9./K>BG1z,m\?U@BG1/* )Bg1&m9g1&`9g1_š;+ 9g1ի I9g1tH9g1#AAg1/?MLA9 5:0ik B9 H]; B9 m? BAW!PJ'AF1x\V%IM'g1&)"v!`ߢ#AAF14IIA9WOA9U+0AG1 *Bh9//' 8*J9j 䒦*J9b!Դ9g1kU, 0 BG1)#":ւOiJ9.%7-gMuu@iJ(B}w9$7iJ9.5*ml˭iJ(B^u2+y kIJ(BWU2,hmݶIJ(BUU/(})BB_z__/&Bg1p&saAg1' *!B9)pAG1 Rv9g1lˍ6>9&)*"mK$;A&)**ܸ' BG1i"Ag1_JAg1&)A9N"Q$ A9U;A9ϙOtAF1ZZ#-g1&)+%-,٘g1&)*$F@g1&)*"bM`9&) ?: 'm B9) 6$ +JAm@+JAU(6+JA!w6Q+JF1b``$lز1&1"3(B)c2IhJg14JjTIJ9j>':.::ډJBz4+>XHBB^2*(BB1*(BB_.%(B9 ,ߋNB9TV%@B9& =hW9&1p! 9F1 hۈ9&1z_>ݦ9&1  ୒A9   BA+ $e BAꀀfA9e9g1m9F1 # >m3A9&)&dI9&)V"@đg1&)$@g1&); O - B9  d$$$ BA  }m*BA***~ mI +J9 U!XIes B)@```1Qg1F1(.76biJ('5ڨ.=J9jZ5VpJ92+iJB__V/+@$M'HBB_.*(tIJBUU*,(@d2IBAU+%Z.iJ9:*'cՊJ9U'`jA9_&cIB9߿j+$S9G1 YYe 9&1ߪ"3#9F1  On B9 ߶I BAuU vn)I BA֖IAAmq, AA_ e#HA9z޶`A9~3 nW9F1|" @#'M9&)ܮ"O$g1) "ژ$$ F1( " g1) #*A9 IҶ.IA9 Ij[%AAAo ? Ag1`x qٚ۴ 9F1޿#u;"@9G1(<vM~JG16mHBg11(](B9""+';iJIJ, qjJIJW)pjJ)B+$$ٶjJ)B_- 6RB.%RǫRJwW&h'oR9բ' +jJ9z дQ B9}"Nsg1&1w# [ d:AF1%% h/i) B9  I,ҡI2 )i$AAm$AA]׮o aAg1wƍAf1e#m9g1_luAF1j!k0'9F1U V?Trg1&1mg1&)( d1&1/CnDA9 DA9. VA9z OAmAF1XwII-ig1&) -YIi;9G1!Hr;9F1 +iBg17%1(*l6jJBս=,&6uvjJIJ& tiJ)J%!rDNIJIB*"ɛOjJIJե)\ɊR)B/*// "ŅTRJ(! CRJJ~ rokJAZ , BA ԒObAg1W~XM+I9&)/ ~L*@AF1/}ĕ A9 DA9 vGmA9!m @#9g1U!9g1+}!$ f'9g1_I9g1~=P g1&1'DMG1&1Ci9)"Oe g1&)HH9g1)Uɭm0iAg1U1Ѷ9g1]_JHg1&1iRg1G1hK9g1&wAG1uU/* KR)B9 ."8•jJB /*"$IwIjJIJU&JΫRIJ)B'":A[iJIB+!k?jJ)B?*h&iR9&'*:":6-?RjJ#O6ضRJJ{_~?VkJAzZ^ nn B9^V9G1쬨[rd9g10HI1G1+ ZAg1 //qOIA9*Uv A9o$#IO9g1U# $mH)BG1_ )B&)_0#JJ&1U /M1YlJ&1UYm! 9&) D,L+J1p!`߇9&) l9g1۱M9g14In9g1_)9 TA9g1UU OS9G1z:&9mH9G1 &yM$ )B9 )!~\w$IIJB- ("NBjJIB(";mjJIJ'![2B,dIJIB'83JJB.'*ՋR)B* (A˽RJJ( VHaKJg1td @C9G1# ߺ9g1HBr9g1_dGI 9g1ʪu#T;9G1+$MuAg1 u IA9ƚ A9!vB'Ag1 i9g1WU:AF1W B=sAF)' 5`n6 Bg1Z*"0MkJ9U^ 7lJG1ZZ``Iۖ9&1~$B-Og1) + vlNl9 Jg1&1$i‡9G1!  w9F1*55( `i9g1.)w۶99*#C:ƑIJ9./+ +!ٺp;jJ)B*- $ٶjJ)B- lڠ[?jJIJ[, eNYjJ)B)~N IJAz&O B9 > HlM*JA 1öA9x emnIiAg1p` =j 9G1U!%;ѭ9g1ezO 9g1 ض@9g1 -S, Bg1/ I ; BAUmK? BA* $GA9` P +JA +JAjȀ$/A9Vr` B9  Bg1W mo BG1U#Pn9AG1}' I$#9F1 o* 4mh9f1!$i9g1ؼ) וV,p Bg1:+"%A[ B9`p&u)ّ B9? %a/ B9+H߶A9~@OA9IHm;A9 I:199c]ׇ9g1{v؈9g1 0'9F1It?9g1)uU m9g1  IA9 MOb B9U  P+n+J9-- 4IIn+J Bu " +JA~n A9ݶ.A9 O]A9}*J9?.)+ MW┼KJ B v{'+JA~\i;A9 HA9 rAvb B9 (ERA9~zj9g1IFa9g1/"9al39G1*j#~ 9G1. "jQ) B9{%tܛAg1&$nv; B1"MEAF)*,)I>A9 _l ЖA9UĐA9*edAg1,iOۇ1g1 ]@﷈9g1>?ֈ9g1Uvk׈9g1U!9g1/?? ئmӶ BA b i=+JAu_ =l+JA.l+J B ermJJA fG[A9@@ 8#A9?' MCʮ*JA7(v*J BW MˡKJ B='ػKJA^z?aA9U( $? B9 ԖA9 IA9_^Uv91 OSn9g16(^ y9g1t:' [9g1'q}Ag1z,oCkAg1*() mֶ9g1 'S6dǥ9F)0 :ƖA9z_?0rA9UU ¶mAF1%_1dA9Wx~t$T9g1U ԖD69g1U] &؇9G1 =9?9g1*5 Bg95 +  I=i+JA  5Q+JA 7 JA֪ v*JA 0ʘ>*JAtŧA9p I B9"JH*J9 Iq*J B +[;KJ B 9-mՒKJ B}j  BAvm B9$I B9 %ٖA9^_W.ب99Z69g1Zmm9g18;˶9g1kR[1V9g1"ڴ9g1 yԶ9g1#]*I9F)͏`A9t=A9շ)$@A9Tgv6Ag1j`];`g1G1cq9 Yί g1G1Ag1- ` @ J9 O߶ BA%H@ BA Z i BA:- Bxi*B BՕUZ$4L*J B_W V*J9!/󷯆m B9« >В:*J9 %3JJ B /OkJ B 5EiBJJA { bٖ))*JAY} *BA(_$ˤ BG1V $ܶmAG1Uh?:AG1~U!%9&) Kn9&1m;A9G1UWWkټ|9g1 ۖ$ 9g1*!m?m+9g1*$ [Ɠ)9g1_$?چm9g1 * )Ag1 %܂I) eo.BA9ظ's?AG1^ꪪn9G1ըT'69G1z M6 /@Ag1++- ?/ qBA I$ JAUU qt0I BA; ir*JAФЮ*J Bߪum~Pz*J B#eRAF*J9P!j N`)BA &PO6JJ B*"*J Bz iJ$)J B m:q*JA] w|M BAUqD JA_[T JAU d9nX> J9'A9_C%A$$A9۴ $AG1ꨪ ۨ9G1UXc g1'1 g11* Ihg1&1cg1'1$?g1G1]U@ږG11DI"$f1G1UU! 8g1G10U$+Hmg1G16 Ng1F1\,Pi9 I#'I9g1UI"m&A9g1U y>$9g1 oےI9g1o'&9g1w!h!R9&),((<9F)$D9F1w"ƶg1&1 ( j7$ٶg1&) &۵mg1G1 "ݖ9&) pOng1G1U @r#g1'1 H 9F1MM9F)﫪 I.9g1կ$ I9g1v+91*@smK91.ĔNֈ91 * $C֨91  v2A9%  kKwvLI:DI I BAU hnm2` BA] 6KBuLKBHA -I8 JAU m)q BA  & ݖ JA $'Hْ BA$)I*B BUUU`q*B B n )J B~WW @R B B#@?*J BUU"m*J BuU#@CIJ BU#4]:IJ B՟ X'$*J)B86:*J)Bۂ$m*J B_'M*J B*$$I*J BU g'*JA'*J B%9m*J B^m-A?*J BU O:*JA @H'A9 AAA說 AtA9^z~^i6i9g1pxw, g1G10 {9F)v@g1G1_nIg1G1UmKIg1G1UmKOg1G1UmKI1G1U %۶I1G1U-I҉g1)g1&) li9F1* FO 9g1ꯕk+ H9g1 v I9g1+ m+҈9f1 uAn];9g1ꀊ#r~9F) ((Hf9g1騪 If;9g1ۖg1%)E'9g1ﯭ$6$9g1u[$9g1UHrT;9(! UFg1) 8Cg9g1wUU_79G1ݪ mK@Ǩ9g1W m۶9g1U ݶ9g1o䐨9h1 9g1ꫪ*O 9g1  pA9  =m A9  m JAUUU I: mA9)( B9ԭmg B9Ib B9 6 >*J9_*J9Ov*JA%foJBA 0m)B B")J)B}&tR)JBު&Pv3JJ BU'cJJA*qwwJJ)B //F-JJ)B.mTjJ Bn$*J B"8*J B$ JAd; BA%)d?*BA.# m JA L BAjz o9MAA  $HA9J kSpOAG1X;rg1F1>@g9g1UջXK1F10IBSdg1%1I,"eg1&1 M ִ9  d9 M mڶg1'1 m Ilg1'1 @NLg1F16)ILg1F1*VR1F1/=IRr9g1U-aINr9g1UX@q+I9g1*m II"h9g1ݠ&I,9g1Rs9g16i 9g1$m9g1W8 g1G1b$Zm9g1ۚ9g14g1G1`k;&h1F1ת!j g1)8( ݐ9  m9g1%*`,$M9g1Z+*O 99g1I @$9g1e$9g1 HT9g1XIc99u#A9 + O-A9  @n JA Ҵ A J9*z8߻A9U ֎A9#m* A9*&$mA1"I@6mA1  ۶mA9 m˱ B9I* B9 I )B B+U! $)B B U"qLZ$I)B BU%vCu)B B~d; B9/ udsR B))!R6RJª>Q >PR Brpppk+Ak[; BA # @f; JAжm JA*Uǿſ*JAտ$Զ BA1 BA X'#YA9 QAAWMlA9 AF1zg1&1$$, A9G1U?UKpg11$g11?8@g1G1u$g1&)$&I9&)a9F1ժ  f(A9F1w$$mg1&1m$m1G1] #r9G1*"$;m9g1W"ۀ49g1"I@29%1*" F$9F)" F$9F)"4NP9F1*% v`LJ9g1誊!r?9g1W#D9F1 #i'9g1 u!M9g1U! $9G1U!@d;g1F1 'g1F1 d 9G1U_߭ #)I`1F1d 9F1 o>I9g1 9g1$ 9g1Wv< @9f1_@9g1 )*A9*A9_kk y.@9g1''9g1** $iIA9U AA9o)IA9 &I?A9*F7 B9  B9[IDA9.tIn B9 $ ɄJBA   BB"m۰ BB#mǐ R(B B_N2( BB/?-?h贼R)B) ŝ5RjJ"  pR BprpPTf? BAW@$; JAUѓP J9*#IoT J9nm*JA#X JAO" J9直2 BA*q]DAAyr A9Xx ĵ9g1 ۇ9g1e鶐d;9g1[29g1__T9 '9g1UտX[9g1v9g1"ݺ֦9g1mx9G1W~Bm6G1F1 I[9F1*&)9g1lm?AF1U NSAF1U lH4 9G1UU#`9G1U"SP 9&).!ߓ$H9g1j!$9g1W!Ib hg1F1(!n&I9g1 !$疈9g1#'9g1$X[69G1zmg9&)tm{9G1Up'g1G1-۶9g1URz9g1l2i0A9g1~NNr@n9G1_m 9g1q;l69g1_Ag1#A9UU H9G1 @:89G1*Ԗ$9G1mAG1 B9 M B9" I[ B9 #`R&$(B B%Pm(B B_!1, B9*h: R)B!!! AuRjJ 8 6hCR BPPPP$]5 BA( 'HBLA*JA *JA *J BUu:Բ*JA_'8 BAM AA C$ AAyNVAF1 C 9g1*!Ӷ9g1U "߶9g1U _9g1տ ڮ H9G1y 9g1nj޶ Ag1m[#Ag1VIBAg1  N+ A9⿪ $I B9/ +E*JAտ* M*JAUU -9 M+JAW mU J9?YOOAg1^xxx#\ g1F1"UP 9&).  #4m9g1 v 9g1UU v"Fև9F1* *3Զ9g1U OL9g1U͑ж9g1U d59G1Ͷ9G1_(wY 9G1 @9g1W l ߈9f1!e+>9G1  - l$9&)"+ 9G1 $- ?9g1$% mۇ9g1$m @ۈ9g1* @99Uߨ9g1W$ۨ9g1umIRI Ag1*  T@imA9߶A9*IIA9# a]A9$A9$9Hi B9! 3؄% B9{]D? B9UU%mm B9#$ ; B9#$@ B9$3aֵ B9ި | *˰R)B 䘫RjJ B-RAPPP2P BAòp JAU_ Omm B9 =Hf;H J9 Cn BA #- BAx Nv A9vU m Ag9 A9Uᖶ'99g1\޺t?# 9g1*'m+I9g1 U*?۶m9g1*կ?۶m9G1$ 9G1h9g1_ c'A1 ?A9 ?В B9U @ B9s'P˺*J9 @*JA $+J B]U M$*J BUm, B9@Rn9g1x઺$H$i?9&1W! >9&)/  %9g1UU @%9g1-9g1$ n91Iu9g1+%69g1 "0(h9g1jzj9G1*m;I9g1m? 9g1 ݖ 9g1_ o$@9g1U$9g1UB $9g1Wl$i9g1W`9g1U$'@n9g1Ud?D9g1U C¸9F)?0r9F) #c@9g1*"!A9'D'A9ҴM IRJB~ RJJU ﲌRkJuh5GmmRkJ_ fIҶRkJ  AN"IRkJU $Hn"uRkJՊ AN-lRKJ{zUzl;O" KJ BmݶIKJA[O" KJ J +JAzp yyw MA9^~ -.'9G1Zp$?$ h9G1Wպ$$ `g1G1 Ig1&1m69G1UU0<9&1* $lAG1U $??AG1U Ag1U Ag1U! Bg1!P$ B1U!nA1_"6V'91 'A9]@Җ$A9TA9@O2]A9?=ħq*JA=+ж>:JJ B mmJJ B :,ٲ*J B" PKJAp*J B *J B/ B9ᶑ$99!6,kA9w p'$IA9 ,d hObAg1_% m RAg1U( n-oAg1_U* Iⶨ9F)) @Iڨ9F1U%-Ҷ9F)#HIҶ9G1U m9g1UUIHy" 9g1U(U v ( h9g1U@u!fqnI9G1 v 9g1 I$ 9g1!w69g1F1 䏵Ag1- %$h 9g1t<5kJ9 - - $dBRkJ Ю[RkJ DR&RkJ C!IkRJ d$IRkJ^ 4)"@*RkJj $$lJkJUUU $$eRkJUUUe៌RkJU: ]uRkJ 8l3RkJ. $RkJꨠ $lRKJ^_[W iҵKJ+J@ vۖ$KJ+JW 54+J J v+J9 `A9` yAG1~  }9g1$ (9g1 ^U% $ I9G1U' $ b۩Ag1*UU$ m @ Bh1*u*J9  m_ BA]II BAUUe g[)B9**iϿ*J BUUN @Im*J BUU_6!m B9!c;HOA1c MS99#)yҺ99?@99 q~NA9 ؆mkJJA 8CrKJ B XIaJJ B P;6*J B I'*J B_ I*J B_ $GI*J9z>RA1 $)IN99#$)ߒA9%&ӶA9*} m֐?91*u۶$9199"49g1"9g1!H9g1"m$;9g1#ж,$9g1"P$9g1"6f9g1"ֶ9G1 Pr9g1 "q9g1$-9g1fWj&:AF1// Զ99E[ZAGR9--/- ǒ:RRUZ l[$RkJ Gd;RkJ_ ր;RkJ [&$RlJ ),ɌRkJnk IJkJUU d%R)B ea$RkJU m'$JRkJjW H;$RkJ*v'R BU v$ilR B 'mKJ B $UKJ BFKJ9^ qA9UiA9U Tr9')xfB5A9&)'X `g1)ږ0@g1&)(?Hmg1) Ӷq9g1?=** jEA9" -_'` A9j( ߒ@A9 r&AA9 n6)B9 Bvl*B9#I$i B9"TA9U**%I. A9] VA9WhA9Uv/%A9?=*J9 ؖ$m+I*J9c$`*JA~UIbI B9 'IE B9.4m*J9  p*J1z+Ag1 m B9ի"-ۓ B9#e?'9g1 $9h1*m۶P;9h1 6ې99*U eY$9g1!h9g1"d$9g1w!x9g1!#?9g1U!ۖ<9g1U v9g1Uۖඇ9g1#ٖ&9g1mJg91!2`g1F1` @&g1&17 ɿq9&)u<֬KJF1 }<kR B OORkJ~]  HyRkJU H-RkJ_U v Mq" RkJU,#i$ HRkJ O RkJUW I @m RkJUU -i @RkJUU MmMRkJ ]uIRkJmNIA9Fr͍ JAU1M BAmaWqRA9pzXm?Ag1z $$9g1xU"IRĈ9g1UU6E'h9g1VUUg1') mg1&)Im Ig1(In& 9')-  nڮ9h1+*?* eL_%A9i$A9 # ӖA9 ?e )B9? !MJJ BU*UY MӒ*J BUm @V*J BתU"T P~HA9b/%Y vA9 i A9 @*-A9` JAUս)KJ9ݺvX$*J*B 4H*J*B/ D;ckR1*J BVVmmMa BA Ag1`qΏI B9O޶) B9nՎ" B9Ȁo; I9g1 F<9g18 9g1V9g1 *I89g16m`9g1@ 9g1CIۨ9g1Uy^rtJ9g1UO>i I9g1UyR9g1!J9g1!>$ 9g1!m9g1#-6ig1&1#m?g1) K' 9g1&)~>5 B(/'/7,tJJ BU5' `]?زkR)B /+ "$H;RkJ I2RkJ↑ &%RjJ x)oҋRkJ}  L2RkJW u ImkRkJU  IۋRkJUV v I$RkJ $$RkJePA9[H$A9˶A98 ۿJh9 6 Jh9}X]NP9g1zIMƖ9g1UO.m9g1 "I9G1 I9G1"+M9G1-A9 / IA9i+HoA9 uqMA9wU/*A9*# )kimJJA!ODJJ BImđJJ Bۺ@&)JAjx^ uB HJJA!I) *B BI$H*J B_иò*J B 0JI2*JAz P٤JJA 0MIJJ B  IΑJJ B ύKJ B* DI]JJA ;g J9z^1p-' B9wT;6 B9"*vۚ;*BA 7" B9(['AG1I=@9G1 9g1I.I-9g1(m ̏99e OB9g1I_99! 91*)fK9g1\^^[&öm9 ۖ4ög1F1ۓM9g1UUU`'۴ g1F1!?ӴIg1F1Z#'$7 g1F1U%f;/9F1_+ $ Ag1* $ @ B9 > B9mӶm H B9  KJA  ItыRKJ [@,RkReNHJkJuuULݶRkJ Im RkJ Cڶ) RkJ  8RlJ $RKJ- A9*m<- HA9AR9?'@")6IR)J5#aJ9` i;טԑA9]V'В9g1cD9g1 y09g1Om9g1 /I?9g1  d'9g1 -Ҕ$9g1  o=Av;9h9u] = $9g1 $Q%d)Bh9;?" JJ)B! aX7JJ)B` 4JJA[6a*JA $*J B "m8;*J B*"m?lJJ B/*kmYKJ*J^]^.6-+ *JAꪠ?sKJA'n[*J9p!@㨱 B98UϏ*J9+i_*Jg1~AX9G1 $v B9*O"Ik B9 u#)J9 ym&A9(* %A0Ag1|##vA9U"t;KA9W!mK99!(?99WUW$k2 99$I99UmIr. 9G1#-Ynɽ 9&)z"mmg1%)"m-IOg1&)%- Hg1&)%m Ag1F1$m /Ig9F1U$e I.Ig1&1% "9F1?/5/ $ yuOA9*-ݮA9d 7A9 DAA?0$:6*BA=?+? iŌRJJ I"8RkJz MKRkJU m`RkJU IۋRkJU m;ԶRkJUU} I8TRkJ׈ IRKJj$tA9yFA9;=1AIR9 >9cngRRUu78 5R9`zdnx99QJ9g1,,m99D6cA')JVcͨ9h9ͨ99d Ř99`N,d٨99U j:BĶ9g9H$A9uU>? Bh9߿! iJJ9W" $m:JJ9$;*B9m*BAm$0M*J BUW}xqJBAN6 BAz\ '*J9 #m߄PI B9U( lm B1_$)B9(/,?DJJ9U#i7HjJ9_ 픻`JJ&1"Z?hA9U?wc۶A9 *$¬qA1 d!IA1(*bBI(A B9!9H6IAg19h9Ēۨ99UvҲTr99Uu?؆m9g1I 9G1$i9g1n$I9G109F) g9)!?" 9&)'dM9F1u(w9&1_( 9&1(m 9&1' L9F1.'7. WyjA9/ m~VA9*mCA9$AI&A9* C?+JA5%K dR B ,2RkJ i'RkJuU m ]RkJ-mRkJ]*/ QRkJU - RkJ QT RJJjzVq 5A9 8iJ9' 90 TJRJ+);' R+5RiJ@z: lR9ZvÍO 9g1  )jm9g1(A99UU$ 99UUݚ6(`99 8l99   # 99ze̶99uض]99UUU-99;.?A9:i'A9/ 0h? B9 Զm? B9лv*J9к B9~Pe Bg1^_nA&);IAF1U#p뚨9&1~%풇9F1'O\9g1 U'"ޒͨ9g1'Xqi9'1$  I"Q9g1 ,6A9']; BAꪪ`פ BAW^$' BA*U]?$? BAիAG1$m $Ag1ߠ$$ mǨ9G1!m -i'9g1!m9G1n `e'9h9*/dIm99飯imt99Imm9h9@۴$9g1 Bg10A B9UW( d-AG1ZZڰж69g1UUЖ89G1U .4º BG1տ.6+%m B9j%H٦ B9hd B9낪ƍÒ B9 &l))m*J9 ˹m#'R9*Uucm AR9UɓeJ9UI-'R9Uqm R9Uyؒ R9U[(IRAWUAJkJA.9rwujJA//4%1 RIJ1 :4qQ[RJ9rRA`xWhŃ B9ࠈmA9^khۨ9905?99 t(G9g1* _&9g1pڨ9G1 vn!I99mu99v899") I$99mmפ99‪] 699U+UtM29h9Wv [9G1@N껨9G1$b9G1|^4g1&)ܨyҺ$ G1%)_F1)#F1)"ng1F1SU"%<g1&1"W!#Ȩ9&1U// ?l۶AF1U '$ٶA9'$KA9?  @rۤ B9PA9 ( $O? B9? B9#($Ag1 IӶA9"ImAg1 $I9G1 N9g1 vߩ9g1/6aqM9h9m[M99xW\: 9g1*?MA9UUU$ B9 JA  B9ZZZd'H9h9$< I99W*\6 B95?$'A BA}U#$$ BA*eǒ$ BA>& B9pPi}99 ?- @9h9!$ 9h9799L2nm 99U' 9sA1.!MA6 A9#qm,+AA9 +;&No) *J B=2"bQJ*B/ *7-&InRiJ :&#٪R Bb(]7mk JJ B_/1v ] ajJ Bz"" "@ J9W ڶ@A9U HA9WU$Iu"AG1^I@9%)WDnIH9&)"Dr @9G1$I~99U"D 91+   cA14A9`$$99!0:FAg1 z&mAG1#9F)#?9F)#жۖ$g1F1U"qҔg1F1 $g1F1"("($g1F1 U%ml?g1F1'$ $y?9&17' @d'9F1?*= !$ H$ B9 B9 m۶ B9 w,$Ir B9mO BA lO޶*JAUmOB*JAU M޶ B9*UFA9!%gAg1^!H:Ag1% )m'kRG1U   ?JG1U$kJG9UIKJ9UU dK?Ah96n$A9U"}B`k B9!*qܖ BA9ko$ B9ZZݶ99mm`Ǩ99$3hA9UN dA9Uq+ rA9]+HfwA9U@ IA9] i$i99#@:q9g1'漭˭A1 $v{99U!mk99.AFEvA1:'p/A9("Nr BA+/-',锎iJB/+-3)5aO1钪JiJ/50T q+RJ(9$hRIJw3t/;R)B.:5حiJAp#'m I B9~"l'uA9~ԺM@A9UU_m@Ag1_J@9g1*quAG1m+c;A9m+'99-99 $99 &>AG1 mA9@-A9#-H䶈9F)"/Htg1F1#g9F1$I'q B9 /h) BA"i BAȂyV&A9zM$w*Jg1pP"M`ۨ9G1">*Bg1%//% P[?R*J [.RkJU 6Mۊ RRkJ~ kJ Bx #N JAUU_ e#A9~  B9  $$y JAU ؉= B9pZZ$Ag1Ӗ 9H1*ۘ߶ 9g1m+9G1m 9H1!mw 99*U#v$ 99$m'- 99' Ɛ$CA1&m<& A9U*"ܖm99+$$@A9*Ք B9-%斸p)BA*0)gIJB*2,&YnsiJ)B+**50]gOJiJ* 7."BRiJ8)vaRiJ?/7-*RJ>>4 .(R BVZ'm `ܚ$jJ9_"k $jJ9WU ޛw Bg1 ?49g16m9g1W?9g1+- ?m 9g1"-9g9"#99*U#- A9U#e?@Ag1* m-A9uw";Ag1z$m߶ @9F1!~b Hg9F1 OIn mg1F1"" m;rg1&1$ `Ig1F1_<$Nݶg1F1$Mg1F1$- q͍g9F1 !j *B&1 M+AJJ BUUMMu IJJ BU" fJJ BUUUݘ -I)B B]U+)B B_Ucm-A3*JAhn[*J9*@*JAU*-@$*J9 T {*JG1RP$ Ib9g1U Bg1'/% HNkJ B/}me"PR*Bm~ IRJJ_vvέakJ B` HN BA Mq2I BA "1I2 BA- IF BAOYJ B9prMNv 99ojo~Im= 99z Cnn-H99UyMn 9h9 ϯM/A9h9΍@9h9(mv 9g1q+99 /!̺n=99* 0I~99MnIA1#vA9(J)m B9 **% I)BB.).)Jq IJ(B "2-VIq iJ(B.+*60qiRiAJiJ 80}um RJW80-q&aRJ 8!FZiJ3*RiJz(lRjJUW{%CڊjJ)B&}rJJ1zz%'@9g1$'@9g1"$@9g1U!%$@9g1U$I9g1U<H9g1*#bAg1_dcC Bg1UD'/AG1;MAG1p߱UAF1 $g1F1U g1F1U"dg1F1U_#кԦg1&1$ 91##+@9g9 #M  A9?=/"dlK*J B -!/ƒJJ B*$-TrR*B %!'FRJJ'!m.۫RJ )#RR,'i;AݖRR0)[ .wRR+~~1- RR_Z3/qLfb&RR 2*&A29RRj -$pD+RR.#⮡ [Rꊪ'(#ZRUյn#6RR]~~SRJ/Ht'RkJ +AdSͬRKJW v"i-HR*JU `I`lR JU lRA_ %ܶ*Bg1h膶Nj B90IA9NA9_M8A9n B9DnA9 @r}A9"I떨9g1$0n͑9F1$@nCg9F)# II> g9F)"$II9F)"$-t"*J&1 qIIJJ BW0#JJ BD2JJ)BOJJ Bt;]JJ B'ݶIB BصMr*J Bӎ)J Bq, )J B})(A~^A)&MB9G)ߪ$, iAg1Qm;Ag1#-Ag1v,۶A9-H#A9.I#9nA9mvA9Jj`w}9g1)HC9g1 _9g1! Ӻ9g1 $ 9g1%?a'9g1//$? 9G1% m<9g1'-Ǩ91 *-vA9 )`m B9/*#uKJ B$q-jJ*B'i m{jJJJ-/)"+nyRjJUU+&I+vgJjJ-(vRJ1+uI뒊RJ1-$@B1MZ)B2-I[oRR2+9q)5RR/0*،$RR,#5B2RJ+1RR"m>RR5P#6RR :RkJz RKJ( /6&/kR+Jw~ / KJ B?A*J9x *J9U R=9& iA9 A9POFj B9+*/I'IBAT? BA*Ԓ B90n%< BA IA9~mۓA9WV o෈9g1V Ӷ0r9F1ߪ#m2M9&)#I?$g1&1#%òg1&1_%? Ag1"+U' BG1U'$ BG1U' BG1U&)BG1U$mI*B1U# ݖI*B1U! mKrIJJ1U mM JJF1z&$%g1(% ܸf'9&)*& % ۖܨ9G1*U" Ik?Ag1$)Ag1 mA9WHA9HA9IIdA9k`zz6' N9g1mIvH)еvb9(`qlۨ9 vqb'9g1U}m؈9g1UI.;9g1!͹$9g1 #@@91 %$99 *9& tA9++&k "iJJA %!i hjJJJ(#IR(B*&&M SJjJ*,)i됤RjJ0).A6RJj{2)& RRJ*?2-mfǪRJ2+ jRR2+jRR*/($?RR+&*PW',[)J) Bj}ZiJz)_?(@R9W%c @Z9U Ob۵qR9U m kR9W_KJ9_  B9} eI B9 $IIH B9U$iO. A9HI IA9$Vb bA9 */7 Im BAnIӴ BB*uin BBꪪۺ&IZlJBAr.7A9訠=A9V϶m I99 qRnA9G1Im9G1z`I699F1UH9F1UIBd9F1UCڐ(9F1UUm$`9F1Umi'$Ag1F)($4mg1F1W !?4g1F1e#ߒ`g1F1$ж$g1&1$M'g1)#-i`g1&) )9g1;U.@vbAg1[ A9'+  @$9A9Ak'A9m A9qA9IX-A9z@@yd9g1b / Dv9g1vm9g1UI Ҵm9g1 v*A#1g1Հ-)HF;9g1 !5?Ag1w! n+IAF1#7EAg1#= B9U%-A{)B9*'mlJJ9 / % *5jJJJym+vjJ(B"rZ2(T@J(B}3*r$R(B4,q= IRiJ/U1,4ai-RiJ1-)mK[h90+ l3RR.*$ ʴCRRO,'[ijRR*"#@ [IB) yW 4RIBppXX(!) )B9|VV& چ:99$=&M9F1$-ĶK9g1]U#X?A1뫫IA9]!f;O B9uO"IA9Upy.IA9UжImA9Udy˖A9(/Sk'N Bg1$)Bg1Uvl*BG1*Uݶж BG1U v: Bg1U"$Ag1!=8Ag1 dK'A9U/IA9UA9*OA9 ɟ "3XAg1- /IB$HI)#dA93@A9ݶ"A9F#`A9[Nb2AAU/UMRIA9jmqK Ag1~!QI"A9g1!/III9g1U!I9g1Uu HAg1 u+AA9i&IA9Nדu B9* "o`r BA %Pn)J BU' AIJ)B )!o¶R)B+"y@NRjJ_/"1ys jJ(B^^/*nܶ$aHB(B]߾4,h6iJ(B5.r-m9g1`!`v^Ag1 $IӲA9 )_A9m @~A9* m?A9*ߪ 'A9&A9ڪ*!&n߈9F1H%9&) cmg1&1&62$g9&)'$nDg9F)%O޶pg9F1 g1&1("  hҨ9F1 * $ HJ9g9 $ HO*IA9#@ A9q-A9տ-HA9q۶ HA9 vv 99DnI99@}99 IҶA9WжIRA9U*@IA9DrIb B9Iݶ BAU 0 BA"! m B B]UW|# IIJ Bկ'! NnjJ)B뿿/)#GݶRjJ-#`sq钊RjJ~."ijJIJ 1))siJ(B2-^kiJHB}2,[9iJ(B2*иkM:iJHB  1"DRiJ0"yRiJ}U. zOiRiJ3(֭xJRJ}0(dc) RIB~,#*h֪R9z_W%"ٺ [ l99~$!MlX9g1$#ˑ9g1&N"u۶9g1_&I߲9G1W'I߶g9F)&O϶g1&1%~M9F1#yM9g1U#@O9g1U!39g1UU!m 3n9g1(U*!m HyB9g1U % On9g1 /I9g1U@/9g1$iI A9g1 d>IJ9g1*ԖMmAG1 4IymA9U IONA9U I1)AA9PwHZA9*cQA9tu^A9 ? qmA9z`_A9Uz!ູkA9_U%*lH9G1#@1׈9F1#mBAg1&1$@9F1* ձmAg1+-HA9Cnm A9I2 ۴MA9 I. ǶA9ꪢI. VA9O.HdA9y"A1 h?A9*' Sg+J9ߺ"&@ B9*-AAAmmaAAJN,I*Jh1u#!A9TmakH*J9+r]nJJA*%$PjiMMjJ)B 'i; jJ)B *"$qM RjJկ+#'QL8 RjJzV.$i=`JjJ-U/#P8 J(Bz1(ڄI~#iJ(Bw~1)4Aa;IiJ(Bݮ0)uCiJ(B-" lriJ(B5"mwykJ(B/5&ͺiJ(B3&&TAiJ(B3"*ȚډJ9z~& mi l99b'NN6I91(㶭 9G1 y@1F1 O IJg1F1 IԶg1F1!/@Tg1&)!y"Hg1F1"!I ITg1F1!Im$g9g1UU#M$9G1#[ۘ?9g1$m$9g1$n?9g1%9G1&mۀ9g1%m۶'9g1*"ݲƨ9G1!m;.9g1kaAg1 4)$A9%$A9 k-A9m;`#A9 m- 4A9$$A9*-$A9m A9*n+@A9V $9g1# ICAF1x&Dmt&g1&)($?9F1+!#'HAF1*+tT?Ah1dҔ$A9DNA9$ $:A9A9, A9-$A9*J9u Im[*J BIMA.*JA^xzI"AֶA9w#IA9MAAIے A9Wek?$ B9 U$n*J9*($jJ9((*#,%K jJB0$.,R(B*_2$-n7 RIJU2*' HJ(B~6(U QR(BZ_7.]GeBiJ(B71F2UiJ(B50V;iiJ(B9/eJ(B?/ 72Ê:s"mJiJ_U41еiiJHB4&iJAjj,!ض5B9(qk B9꿿/-#)@hfB9 +!f;B9(q$9G1%۶m?9g1"U1ݖ$A&) .ݖ`A1.d=Ґ:AG1zzz'$ɖ?9F1U$V9F1"@f?9G1U"T$9g1*WU!`m9g1UD9g1upM9g1"il$9g1 H9h1D &$9g1H$;)A%" =A9 -@8A9*/3$A9 u A9-mA9 AiA9. [ 6 BA$I#y' BA۔ BAU_mݔrA9z~|#fԶ9F1V%f'䖻9F1&$$g9&)j`hh1&)U)@Zĩ9&1սCu 9g1#Ķ-A9U_@A9UU!I$IAg9 ЖY'A9U f?A9] mԸA9  b*B9 #?*JAUx.?*J9 R-A9 4A9mAg1z q+ ߨ9g1%wɟ9g1_+9YakAg1 0&7IkB9+:7'9oiJ9.7)M4iJBڼ6/&?iJ(B9)d #d/iJB:E5)(agiJA9.;iJ(B"5,b I#$IJ(BU5+%9q$iJ(B82Jk'iJ(B42dAiJIJ40dL"-@iJIJz2,c36@IJ(Bz1!#?: )B9z(1!葀m)B90(?@ J20#7n9B9p&ȭ`AG1.oBg9]/-. ᶑDB9(+'6md;B9着* Ш5A9x|h$Im'9g1 $9g1 &9g1I"Nb;9g1m MC9g1}lK9g1(! um9g1!m9g1W m+I9g1Um 9g1U$ 9g1UAh9g1  lh'I9h9 a h HA9/.w9 ɯI B9_@~"I B9U II B9   H BA  d+O BAU m-o B9Y 1vAg1~x^V/IвG1&1 =5F1&)ZDֲ&1&)&e j['AF1 % IڔA9u7^wA9I,NB A9޺ݶ"AA9m;A9M~LA9*rA&)*q!+Ag1( "*J9  #'IҺ*J BU 4n*J9~z -E B9HiymA9 (pni[rAg1 `;qh9G9+n~P9G1?/,%PRA9/$2_B9jj8=)1SR95.miJB5,64iJB9(NkiJ99*ldlJB70[&X)iJB2,$ +IJ(BUW׿2+qc hHB(B)2.NbǦDAIJ(B2.8")AIJ(B0,2C HB(Bx/(d:i(BBx,'m6` BB*$m B9,I:4Bg9 p(Ͳ'Ag1#m= ϕ 9G17 +)B9(,!m+B9* 4A1p&߶AG1qI"9g1my@9G1mk=9g1_%$m9F)k=9g1 TAg1d'9g1_P$Ag1 $`Ag9$$A9?A9/$A9A9U?pA9* o?A9U mېAG1!IA&)U#%Ar'9&1U&Dg9)'b. g9&)U%v &g1&)]$ M9&1 U$?mAg1*UA9WAh1bۀAh9U.Ӷ Ah9UIB B9UÜ"- Bg1 @N" B9 J I B9 m'aN"I BA$Il.M*J Bj_RvKJA*MiR B9~l#&INB9F1 #m' 9G1,7tA6HBg1/'y1B9-3ABG1*3%] iJ92/[kIJ(BV~9'lQKN9iJ9.z9%UiJ9=/70siJ(B2/ضI HB(Bt_U3,%[uHJ(BW_0+жq"HBB1,DZ-IiBA1+$'I(BB1*t?$)(BB0(' )BBU0''$ I)BBU}1!h.(B9@(XmAg1*J Ag1(ؑ A1 )#mH99($'I*A9*/ ߲A'1V"# ϯm9g1U"- O9g1U"%yr9g1$Kۈ9F1l$9g1D~99! mc'A9- 6? B9 HO$ JAII BA$ I BAW B9 sA9 @SA9~OrA9@/mA9I2rA9d rA9W l)mA96 붩9g1hj ~ލg1&1!òg1&1 'p]9F1'`;%Mg9F1_''&i9)*Im$9&)}U(I@,9&)U&@$ۈ9&)+ !bm?9&1 d 'A9// i BA : $AvܶKJ9 BA{ ڄmNRs BAU I BA./կ ӸN BA.( t B9JB JA*  yg AG1||@_g1&1+mgi9&1?7.$MB9 /2(#Bg1`p1tQKvI(B&)> 4*`SIJ(B]U_6'VSkIJ9*J4"`9ZIJ99*/i)miJA 7.iJ(Bz^^4-PIJ(Bu]_3,'(BB1+$ $iBA1*&Hm?(BB1)&A+(BB(U0(c @(BB]/)N @$)BBUU.%d 2B9,1A1pj";h89g1:&VmmB1$ $I:`99 &!PP;A9':ު9&1Xu"h?9F1*9g1Բl?9G1Pnۈ9F1^W h_g1&10:-K91:".im#A1* n A9 6TIIAA巪 H1i BANlm BA $  BA M$+Jg1֭$A98d'A9ƒA9ֶ$99 ĖA9" ڴ99{ Tn9g9*6Aږ$9h9 *69G1V\xz!d+ 'G1&)* m o;g1&)*.߇9)*m$1)#$ g1&)"ϟ$ g1&)!IRg1&1!ѓ 9F17//v Ah9  O$ +JAU_$A+J BUU mö+J BuU yɶ+JAm'l H+J B5 m$ +J B LbKJ B  +J B{# tJV B&1\"ȑIhg1F1]"$; ?g1F18/w iJ)2/OB)?0 4$@iJ90*cdæ(BB@ 0,t0(B1@55qiJ96/iJ(B3.j :IJ(BWU1+IT'(BBW0*@`(BB *U0*8(BBU0(&H?(BBU/)[ H'(JBUUU0(m J21(O(B90##hB9`,#퀼A1zj)OGn0nB9'!i۶d;99&!9d99'(5t9)p.#d9F1 %8X59G1жm'9g1 WP1&)jжg1)`7qKdHB'1' 4-kL,iJ(B뿪1#HB1`2][fU HBg161)0n#@HB(B5'TnqAIJ(BUU3(MHBBW2(@w(BBU2(0n(BBU1($mI(BBU0'HJ2/&4mvB9/&iB9.%&IB9,#8~IJ9?(,*)J9(DIn)B9' `I299(Hɐ91⸮(!T$Bg1&`zSw99((%AG1^$9g1Unr9F1ܘ-fg1&1.u6*A9F1m];s99U$ k$IAA m/ BAU e BA]U$Y# JAUUegwϻ BA:=  Dr BA]זI"A9uĒ-HA9ԒA9:ۉ IA9*mk;A9_*$ A9( &@A9o m$ Ag1zꠠm'%[A9F1$m 9F1$9&)z#g'g1)#m$Hg1&)U#m$ Ig1&)U!@g1&1$dg1F1&g9F1&۶9&)X;?? Bg1  >d*JAU 'c JA 8Cn BA ێ BA I*J9 ~ m +J9U= KJ9U m/ Bg9w#m; A&)W'mIO9&)]&$99&)}<IXiJ&1ߕ/8/V }"iiJ(B5+:MviJ(Bn5֍ӲHBG151ujiJ9 2'\ m riJ91*&TѫIJ(Bu]_z.*Dq, (BBU.*dHBBU-) ڎ#AIBBUU.(FۉÍIJBUU.&.;MIJBU.'<;nIJBU(.''IBBw,&u;)BBU(+"\>1JA?//&-JIB#v6jJ)B)B9k)/k'B9($I<:9'۴MT6BF1r'?{'9&1 ,?9g1TJg1F1 >$g1&1"n۔&@9&1*IAg1b B9 $` BAUU $@ BAUUm$I BAUU R BA*0M BA$4AAWiAA8IA9vwIA9ꀂ@A9*}B*AA9^( In@A9 дA9_m9g1\p$mwg9&1_ $ö?g9F1U"M9&1"Mg1&1 đg1&1$'g1)#hg1&)U ?Yg1&)*Tg1F1w '`=Ag1  X:pAAph; A9$$ iA9(ۖ8A9(@ B9 ۖA9-Q Ag1zɛ$n9F1^Wg1&1/ qB dg1&1-Jvg1&);BnJ'1% 81O\SJHB4 bHJg1`X&F 9g1 +;2&9ƒHB9 1)6@vHBA++*,& NqjJIJ,'жIIiJIJ׋_.'öiJIB-&3iJIBꊪ- |iJ)B,nIJ)B+%4&iJ)B*#-JJ(B*$PdIJ(BZ, HdCJ(B'55/(֪JJ*UUu-cߪRjB/R9-I$JA*mf=R)BU}*߹])J9xw(Ib*J9U%)Bg1jj(#iN9F1_&l[O 9F1'*2$.U (B9+ 1( d#iJB+'$ H-IJI+(ݺmMjJiJU+" IjJIJ BU)!`QrjJIJU&&IűiJ)B+mEjJIB+#")'jJIJU*$d $$jJIJ_. 6djJ)Bz- ?R(B5 % Iu:RJU! BqmRJU RJc+q(RjJ ܷkkJAh` ;l=r B9  B9 Z B9@G1&)n( v$F1&)# g1&1; ٤>A9'./5 I $ B9q,R AA t(@ BA׮+ $HA9 )YITHAAIBJ@AA #R'LA9*OrA9Mm+Ag1  9g1~"S9g1("uMO9g1# I޶9g1"nI޺9g1 ~Ie;IAg1_I OUAF1zZ!6g1&)#@m?g1) "m eg1&1# g1&1!жIG1%) ԶING1%)"Og1&1?*L3#9g1p" AA9CڐIA9[*c IA9c @A9<MA9$MA9 0sAg1zzy@g1&1o@g1&) yԶg1&)* u;%9G1 ߶tۇ9G1_v: 万9g1ݫU!C f9g1U( n9g1-w86eJB9?%2) U(BBUUU4'f/`$k;iJB?71%qd?jJ)B -#m ;jJIB--?jJIB&e jJIJU~uU% mdIJIB) `?ukIJIB(A9e}g9A9$m A9}'l A9ߢ"m A9zj&m'$9g1U%d9g1U$;9F1* % l$# Bg9U% m$$ Bg1U# l BG1Ul$ BG1Ud'KJg1* 6m KJ9om$+@9g1 ?$Oe A9oj"m99 čOA1@n/IAg1#D1&1."O9G1ժ @rIN9g1*$ INr9g1*" IҶ9g1e+y⺇9g1 IIbۇ9g1(v ؇9g1WWWk @g1F) J2g1G1@*[7mg1F1(.iag1F1$`g1&1 mk'rg1&1 #B9G1'"\؀$IA9$v@AB9 % k4A)BBuUյ%"66lIJB+&"1 @IJ)B&#K6؆mjR2%!CAR1&!IIiJ)B &!NUHjJIB'#dL!jJIB%^NQ0IiJ)B&"-&DIJ BV& dqJJB߯/(#nv2JJBߠ&)S/8R)B//pM?RjJ"k&vRJJ/jR9X[ڃ49G1*ӲA9C99WU?m֨99TUUqεdA!IҶ9g1oM9g1͍<9g1vLj9g1je#%mg9G1U!-)I'9G1 U!$?9g1/* 'A9}4A9_$A9D2A9 jE-wA9@z me9g1V T'@9g1 89g1 [$k @9g1*$ @9g1*is9g1_m+A#9g1? MRA9%M3AA9j6AݒAg1^ 8O291  DByI9g1  p+JA驹"`qY Ag1~|$3އ9F1fInۇ9g1U֦G9g1i;6 9g1(8 9h1mmm 9f1(maM9e1 " I9g1^ 6m3m9g1UCU!doiq9G1 YV9g1տտH͍9g1UO$7I9g1U%Cl9F1:*&i+H 9g1%/I rB9&-HTB9)M|)BBU) -4IJB+*(" MjJIB)$#@mjJIB*)$IIԭjJIB (%IjJIB($vIjJIJ(#N'IкjJIJ& NӮtiJ)B몪&!6;IJ Bު+#MBvJJ)B"(l;62jJ B!#J:kR B&&.#5RkJy_] oĶRkJ} pwRg1c99CR 99_zxj#`9g1Iܵm!m9g1j; 1g1U"vJ$m9g1ޖ$ 9g1_CnI9g1Ur 9G)!On09') #M &9F1#mA9F1*** y#MA9O$)mA9ժ*I@,iA96,9A9mA9ݿy cAg1 A9UoA9UU@Ag1$Ayb'Ag1UU ӷAg1Wտ CAg1+ o#AA9 mA9۶mKJ9.]R9Wz Ж J1  J9$&ב9F1w!&;9G1Ufǂg1F1]&`g1F1 e'" I9 '$-9 fm g9g1UWU ԖMg1F1I" g1F10Hv 9F1 Mm9g1W#7[M,9g1׫">9g1 $$}9g1X)Fm9g1)99$A#A9/# M?B9*$jAIBB ("$IJ)B׼)#jJIB+*%ං8iJIJ*w*%VےjJIJ.y*##YD;jJIJ* #IjJIB*$vl`jJIJ*%NYs`ZIJBʈ& I¶DI)BB%R@)B B(`mJJ BU Cm*JA >@KJAW_ B# KJAU q l BAxe NA9U^m.A9UUCظm9g1v9F1~ Iر9F) T9G1*/9g1v+ Ҕ;9g1Uns9h9&Hڈ9g1* 3n9g1 OI9G1*** lٚA9Զ#A BAUV@ BAWU*ֶ BA_U[~H B9 ,˒O BA]U -I=A9\ A9# HϽA9  l uҶA9 $OAA I~$A9* m I\SA94OmA9JK>lR9/'%  RKJ $/+J9֩{RkJ}! jJg1X!$9G1~mg1&1ܔg1)!qg1'1"߶g1&1("޶g1F)#3Gۈ1&1_OζPG1&1}O^1&1 ! ,9F1j ; AF1G) ~Tt9&) + 69g1/nzO9f1*#IKI99/ "I 99^%#' M)B9+% RN\IJ)B)#IJ)B,$ x?jJ)B _-& 䖷jJ)B/-JIB.-l[?J)B(,%jJ)J*?,HjJIB_+"w(qjJB+$/mЖ)J BU*$/<)J9#ШZ?A9P1A9 '$VAAk8жAA&AA $вAA PNA9` Ag1~~!C+ g9&)!9G1U#Ӷm 9G1 v٤ l9G1m+@9g1!y6Ah9u#On @9g1!n 9g1 O$-H9g1 ܻ B9N BA$)N" BA$+a BAWaK BA+ m B9j 6cA9  #+hIRA9LQA9$mA9UymA9OtɖA9_h$A9U q IA9 [ 4Ӽ5KJ9't$kJKJ(; '$RKJUU}omiRKJ} D qR9V~!mImA1u+II"H9g1_.y-9F)_'NO9F1UmI9&1qLR)g9F12if,g1'1`vBg1G1='`Ig1F1 #BC&ɇ9F1&g1F1"g1F1 #Zdר9g1+"pW+91/%ƶk91 #dVB9/$$v B9+#8NJJB*w"v:IJ BU"ƺTIJA5)/jJ)B &I]EjJIB/])|9jJ)B%DiJ)B$ $4XiJ)B)!mIJ Bw( >IJAzz_"ȱo?A9 j7A9 ۲A97?7HvmBAAN" JAUUsI BA I- BA _= AA![J6Ag1^!Om9F1_yɳAG1U mAg1_]0n Bg1_SƑAg1{`A9UW ?fۨ9g1ې消99ߪi99*ꏹ/5 B9 -6) 8 BAv+q$ B9*$) JAm+*JA $ m BAj~mA9 A9I2A9 sA9AA$k7mAA; A9V4A9*`:lJ9/ '#nRKJ>/@lRA.7 M+JA _ dS.aw+J9p IA9WW_!A9UnI" A9uUdm~A9UUmIr=Ag1jzm29g1_mm l9g1U"I$ Ig1') Ic)I9g1 "a9g1jjjIވ9g1U.9m'9F)뀀vc9F)55 -'91! IR995! B9"6I@Ih B9*$1B9 6~A9^%)B9+&`)J BUi& M 9I)BB *&"1ijJ9& ̺D)B B*#EIJ B+đF6IJ9j'`?h B9 'PA9'pA9U"_?жA9*UU l'FA9/*U &A9U m,)A9U m$$ Ag1_ uܓAF1$9g1WВA9g1տ:6!A1 +Ķ$ BA6cN B1~khAg189g1];hm891lm91+6I91]6c B9%V?[ l B9 P;$ JAU.Yi J9  mK JA(Uܶ͒ BAz }A9 ԿO.mA9@öA9 fIҶA91MMA9B-7 J9տX6mA9XmA9 [ (m B9/ K-+BA ! BA"# m$+J9  n$+J9 IA9UU 9rA9*Nڒ B9pA9W -a9g1h79g1\'R l9g1d 9g1q,9g1!BR 9g1Ȫ v d+H9g1"Z 9g1:$1 9g1%Tn99p$i۲99 & jhmB9 +$$9@ B9 *#I B1*Op)B9% *!OrT)B BU,F)J BW*!m;x)B9*&  8R+)B Bگ$ LH* BBƒ("іM`)J B}'P+W? B9lA9ꪪ@A9v HA93auA9-uA9uul mA9_ /'H%9g1ਮ&HӔ9g1* ?9g1@'91ڦiF69G1:j/ #) BG1 JJ Bmm BG1&Vֈ9g1:7v91lk'Ė9g1$D9g1$Dn9g1I9G1ր$i99*+ mC B9i{PL B9 Ib I BAU* ߶m B9 vN9A9A9u$A9$dA9eжA9ܖD BA dt'AA%Y0A9#)@ B9 T@2+JAUoU k$ B9 / $*JAW , B9)ۖ$ B9U$7'A9UA9ꢪU vK A9U--Ag1~zmF9g1-I M9G1O0I9g1R0I9g1 A¡9g1~_" dH&Ig1&1%By]r9g1.+&0I_r99*U"yM@99 #$m99*&`A9% oA9 W*)AG1,6.)yw[ B9) ܶ B9+}"[K B9'm.4R B9_ &W&)BA'Cv)J9&X B9j7rA9^ظHm9g1$)'A9U$'H$A9U&A9U6JA9U@A9U"T9g1""ڔ<9F1 $@:\9g1Y#%˖9g1("[#JJg1/ f/JJAU l۶/JJg1vA@ BG1W$)II"H9g1=myI9g1I,MI"9g1 d l9g1ukm4H9g1ݶ$9g1 (lM: 99-/./X֣+JA rKK+JAߨ'&8+JA] r J9 R>K B9 h??A9 vdA9]:A9%k[A9/- `;AA(_- BAwUkm"i BAިU qbY JA- ܬi@2+JA ? *JA] X7Im+J B*U kw+JA`Zzo=oA9 @A9 A9.eA9" ; Z2AF)ꨪn",ɶ9g1U"9g1#y9g1$ Lj9g1&ۈ9g1W_' ﶇ9g1 )% I^91+*l) vA9?' A9&m IB99'\/u9g1 ,(v˕~AG1>)4K')B9..&e I+ BA(min# B9j$Kn/A9 (Oknn A B9&n2 BA&&IU3 B93I@A9}mIA9uI.IIA9I"mIA9O&A9NmA9] aA9Wǫ%9h9f'd H9g1h?k9g1Wzm;I9g1UU9g12 >/9g1`z!?Kn9g1 "Ж']9h1!v[9g9*"–$w{9g1ꬪ 'Vߨ9g1 ??99 ?99+@r?A9UUmA9(> B9+` $+JA J+J Bk [+J Bq +J Bko #m JAZ C#)A9 I ذ$A9 $mA9WQA9*נ?$IA9*<8A9U(ڤ A9 ݠ*$L*J9  < IJJ B/ cKJ B oKJ B* RKJAz<q BAUU_~r IA9Ӓ@A9*I>mI B9W", B)hjsm BG1UL"I HAG1UI,AG1U~L%I AF1w$rv)9G1U&].)9F1 1C 9&)**,іi/T9&) -c'99(v[;du9g1$v}?L9g1**(H Bg1**%2T B1.7*%mm7 BA P͍ B9Vw$u:@ B9#d B9%Z# B9 Tq;AAh1fOA9UֶA9ՈeٶI@A9U$A9}mٶIIA9lY iA9:` lA9UǨ9g1P'9g1l>9g1_Udi'9g1UU$k9g1WU-$9g1WU,?9g1ըU @! ж9G):ֈ9g1^UUݖm9g1Ue?69g1*:P-A9 P8kHA9nm;*@ BAǦ- AA  кA BA*+ M$] J BɤK+JA $i;( JA  .e) JAj_j m%)@ BA h BA?mE A9IA9_W @AG1** mm6A9 }ޛ퐘A9 ݱ*B9+vL$*JA-IT;KJ B KJA0(`9g1Z^pO9g1/ $K99$$)r99&6#9g1`9g1*%PA9&@>A9]'o;Ag1!Жޖ9g1!L PA%) PcA9UmA9WA9 U;]A9?Ag1~ Զ"qA9۔.9A9U XIǪ 9g1ꨀdv m9 c(@9 3 ڴq9 ?@X9 O.և1g1UUI"]불9g1U}}"H鶇9G1U9G1U vے9g1U*U /afAg1+/ ~_ B9" H=I+JAU v `+JA**.HM+JA -av*JA* m+J B+I8m +J B C') +J B^ iUg#9*J Bڶ#a*J B~VV 6m BAz doIYA9X ƭ.#@A9*l۶w BA( q鲮 *JAD;l*J Bz;]&*J BUWU m*JA :JJ B* H3:KJ B1d#KJAjz I B9~IBnA9_UIBA9]CUQm B9 $My B9$I B9MN B9 6Mq+A9W M 916i$ 91mQ I91Ic79g1njdrP9g1* g9g1\$V9g1U !)ym9g1&yM99'5A9{!m9f1"gi9g1'? &30I9f1~*ɻa&nA%)!-P69g1&9g1*>$pp9&)''>91"rX?9g1 d+Iܨ9g1(*  @T69G1I'I9&)/ YYmwA1?ܔب99\|;ۈ9g1Mlې49 ۰ $9 햶9 ֱLj9g1UUPD@9g1׻sև9g1~ G$9g1ת w?%+@9f1 pc#Ag1 ?C J9  /H+JA ? +JA6$`+JA P I+JAUު@wMJ JAW^?~ BA Y+JA m) *J Bt]6*J B &mJ6 BA `;s BAU v  A9cONA9( k.m+JAUnK}*J BJ9î*JA~~$=*JA ڹI*J B  V}QKJ B / fOBKJ B+JA m  BAz\ $i_A9[д B9 q? B9 HS B9 Ӷ B9 ۴ NBA9j 3 A9zU 0@-9g1 MII9g1 붱_9g1(lk۹/9g1m$ 9g1Uy?&A9g1Ue 9g1*/ ƶ91 dר91!9G1ۖ䀔9g1ߣ?9g1"%`?9g1 UP9g1,UM9g1 #M9g1 $ʠ Lt9! +JA i JA S+JAW @˕*JA"ߪ[ qu*JA RÎ*BAzWw̤ B9 A9(^ $wV B9޵?  B9hc B9.//-uX*J BI$*J*B,Ij'*J BjKKJ B//*6mЖ'KJ*J +J B B*JA`Kn B9mm/l B9 I"$ B9 I„ B9 邡knA9 $$IA9 `-JA9_Wz TqBI9g1 `Cn9g1 PM9G1 0n?n9g1 0nIm9g1UضӺ9g1U@ ϶9G1 U@yk9g1 &k@AA$I; BA  II"I BA$i B9   $ZSKJ9 nM BA $ʡmC BAz uRqGAA9a_ B9*:+- @ B9ߩ B9F'bJJ B $IJJ Bf;JJ Bރ4AkR B+/ +?ІmKJ B vYd;*J B eKJ B_z} H& B96m3 B9 l B9 I? B9 4i$ B9 B9 жA9_`c91pS99$K9G1($_9g1Ж9g1U? 9g1 U H9g1 UĮ H9g1U$ @9g1u$s9g1䐜e9g1 9G1" $9g9 ۖ<9g1ڒ9g9T'9g1 8P9F)$, 9g9+*$-):99sA9)#I-IAA%I"4-AAIB AA("IBrm)AAiYAg1xdkMtLh9F)ORl rg1F1 91F1"8 S$g1F18M" 9F1cm 9G1UUI i9G1  ~RmAg1 @ J9 $N,L BA 1ض JAUUU $! BA v6i# JA 6OSl` JA iq BA* $") BAiIn*BA$H J BMi7*J BdiC*J B_w׹A*J B &>v B9%)*J9f IBA lnqA J :#*J)B36JJ*B &JJ B* H6*JA( ;*J B  JJ B OvҐKJ Bꪀ C p*BA j*J B?unn*B B^l2 BAжh BA @nu$ B9 PR B9^ mA9U ıAg14_ۨ9g1V^qo9g1U$ DI9') ߶9') @rIҖ9G1U m/M9G1U MI. 9') W m~H9&) ۶M+9F) /I9g1U/I9g1U IIi9g1Uhi9g1ULI9g1UO O9&).?_9g1}d?9g1 * ?cA9+ *JAmzi JAU[9C:AF1 }qmAG1 _+@TAg1WU Iе9g1U-рZ:9G1U Z <9&) -+9&)e?g1&)l?Pg1&)Pg1&) mЖ9'1_ng1&1Zo;v1G)*"g0r9g1(!OP9g1!Or9g1#oж9g1$O`ۈ9g1&o;dۈ9g1) tp9F).,,"ni$9g1 "/i'9g1/  mȶ9g1+*()A9*umKHgA9(+e M~A9n A9^ M99}* `W铩Ah1l99rU/Hv֨9G1ꪂ͎9g1`ۡd9g1* $99g1ZW Ղi9g1-  S$mA9=+ y+ ) BAo IҶ JAU] M` JAU ImP BA f BA  I % BA+Iv*BAv; r*JAɿm*J BUI"H*JA}$GM *J B***$Pjy[*J Bիvy+I*J BpWV!IN B9!`ߒ BA*!`ߒ)B BU#֯Ӻ)J B :3&*J)BH:*J)B,:G*J Bi*J Bh7X*J B*Mv]$ B B  ƶ[ B9 aĐ)Ji1Fo4 AA)`J BAM$ BA"i; BAꪪ\4k۶ BA]A9+ M BA*T9+@ BA <)d JA X JA &6 JAZ] d;D JA] RKJH9 vBڀDRIA__ IҶvKJh9 I;@R JA mKJh9 Nu I BA  Xm JA*MВ BAIҮV BAMа*BA(IN`*J BI`*J BR*J B*RӐ*J BcՇ*J B]^-IA)J BߪU 'i BA ( jJh9 @)B BU!0 '*J BUU! ۔$)B B*U!0 $)B BU"Aۖ$)B B"L*J)BU}#8id)J)BUU!m)J B !Ш}'R1Ѐm$*JIB(iJJA9*J Bj`B 0)J Bmnv)J BW $)J BW۶m)J Bmӵ& BB ۚ& B Bm-A>*JAu BA IM v BAq+Ad*JA? m?*JA h$ J BUm- d? JAl)nk? JAd d_; BA km?A9  ( 'A9"A9?A9A9A9__ 099*" 9g1 ϟ$9g1UU&Ag1F1 g1'1g1)g1) N$g1G1U$Lo'g1)iN$g1G1*$ 1$g1G1Z^$JiLj9  I;9 $A$9 @"89 5kv9 жې9 $G1G)&9  $9 K ۖf1G1nf1G1{ۏMXtf1G1Imйg1G1#aw9 Bn@9g1CmD9g1 qT9g1"IҭV9g1!3Б9g1 "#Q䲇9g1 "y"К9g1_ NmԶ9g1 q·9f1!M89g1!").Ɉ9F1zzjj! 4lm9G1 +dR89g1T'v$9g1*D#i'9g1_g箟1g1:lg1G1.羭m?f1G1ժÖ'f1G1+__ֺg1F1`:cYg1'1[0 g1'1 @g1G1z]&`f1G1UU  G1')q$)ag1G1U Inߵ+lg1G1U [Ig1'1!o[ lg9') )B B]U/ l?m)B BUU# IIJ BUU#H)B BUU#e$IJ BUU_ ' m)BA"dlIJ BUU[!$0n)BA" *JB/X6֦R1ؖnKӶ*J)B[ۺV;JJ BT"d;*J Bi*J B#`*J Bi+lԶJJ B#JJ BI,`*J BA*J BwI,ٶ*JAI> m*JA$Y*JAy2\Y*JAI N*JA* hGm*J BߪN$ *J B H*J BU-(*J BeiR@ BA f,B+BgAa&H0A9ꪠ IvضuA9  m%mAA g'mA9{ 阐 JA9M99N9g1xIbm1G1vg1F1 b9F1Ӻg1G1zI^Dng1G1UwNg1F1 OIDg1G1Uy.iTg1%1y"MPg1G1UI"MDg1G1UO dg1G1UW/I@g1F1PP/mfg1F1UU Dg1F1UUI dg1F1q g1F1WIdg1F1umMg1F1 X1G1F)`$ig1&)$Ig1&) mٖ1G1 89g1"U 8n䜈9g1 mLӐ89g1!O~$9g1!9g1!qҶ$9g1 $yrך9g1#O9g1"Oζtׇ9g1"Od;9f1# 㲩9f1e#xppl9&)!1Ij09g1媠!I2a9g1* quj9g1 u*ti9g1Img9g1vL A9(i(9g1߿Mmۡ9g1i۵M3l9g1Z3t9g1H M9g1UUnŲ 9 @2I9( &a@H)v H) Ag1G1Eg1'1(&g1G1XB9g1G1ql'ڇ9g1շmۂԶ9g1*MI69g1lݶ$9g1Wuۈ9g1ꯠI$'9g1cےж9g1m9g1m:`w9g1 w$ۈ9g1$`ۈ9h1j;֨9g1 mn kAH) H>A9/ ~.HmA9* I amBA NBA $mDBA d' ABA @J'AA еAA  @nm;I: ]nI A9v -GA9NL &E' J9Iu B9 Wq,@$ B9  B9 Ӯ*BA d; N*JAmH*J BI I*J B.)I*J B 9M)AJJ Bq' I*J BU_d u**BAMIB)J B]_U!ӵI)B BU""l) y^)B B(")B B #X+MIiIJ B(bJJ B'(AnJJ)B-@*J)B mm'JJ*BCAjJJ B着v@JJ B/H\gJJ B- ׶*J B(-Hֶ*J BPIIR BA qb; J BUU m*BA INi*B BUUҰuI*BA0IqM BA$IqR BANq:*JA M}λ*JA irAA  CA9 L?mAA AMA9  ;iI2AAA L^A9 "%$A9__mN`w9g1i@Nh9g1ZZqˑ0I'9g1UUUIV!Ig1&1 3т9F1zҶ4Mg1F1U/$Ig1F1-I2 Hg1G1UӶ Ig1G1UIҶ$Ig1G1UCg1G1US Ig1G1UMg1G1UOb Ig1G1Uc Hg1F1Ig1G1UUo Ig1G1UUg9G1UU Ig1')Ӓ Ig1&) CN Hg1) 3mg1) O-$Ag9F1 I.m 9g1UU. A9g1U_Ϲi 9g1Oܿi9g1CHr9g1 ?m9g1M&I9g1 $H9g1( +0ZI9g1N +E9g1 m2+ڇ9g1* 9f1z#vHfm9F1) |A9g1q"LLj9g1n*L9g1,;`m:9g1-@Ng1%1 qaIg1F1n=au9(]N89g1]Mn9g1]'hvSW9g1 ҈9g1,aMև9g1_[6-1G1IIg1G1 LS3g11`vIg9&) $Ӯg9G1US9'1@ϒ9F)* &d p9F1* ,-9g1" 9g1U '9g1*U} $ %'9g1U @$?9g1}$9g1  @k?99#hrZ[99+AO얨99n X 99  IRvi993膩99  #&A9. v BAU* ɟm J9 mk' JAUU $H JA_U uI JAU Ā@P JAU $m JAU^ܥ`R BAPiA9qmԥA9 hɴ&A9 DRL91ۂA15#7A9+$@A9*˜SA9: B9u_ ۄm B9%ג? B9ֲ B9*dۀ BA 2Քз BA( 曐JBA l<ؔ BB `)B B/U"!؀)B B0 !$d(B B!a m)BB` I"J$I)JB}#?$I)B9"/*)BBĨm BA#Ъ)B B `+ JJ)B4@IJJ)B IjJJJUP >jJJJ; ꦋJJJߪD JJ BP=In[7JJ B$EN*J Bab*J BIB*JA,;" *JA8 *JAm9*BA f$-9 B Bݘ, *JAmu A*J B_W d'?@*JA?I BA,< @ BA O'A9 .w+AA_#AAt- AA= A9r mA9Ȋ . 9g1x.I9G1%&g1F1-.k9 ƒmg1F1&۠eRH)X&g1F1m$4F9g1__UUc3dJ9 mۦڶ9 i׶Cu9 [ڵn9 In9 c;)9 iڮ9 mu۶a9 a9 un9 Immg1'1I":g1&1MIDg1&1I6g1&1m`;g1F1?g1&) ?nև9g1W m׈9g1U#B`ۈ9g1WU"Cp9g1Uu#yB9g1U#m9g1UU#Җ'9g1UU#ONn9g1Uu"Iq$9g1UU"O9g1UU!m9g1uU ,) ?9%1!iMֈ9g1 ] -9m9g1U mm9g1U,+i'9G)ӦId;1G1lg1'1дIf'f1'1Ĉ9G1Tۈ9g1ԶՖ$9g1Аěۈ9g1_֓Շ9g1^UU$Xg1G1Wh;dg1f1[Ug1G1U <.g1&)ꀈ!mtmg1&)ug1F1`;6g1&1!['9r9g1UU#ۺ9g1 m$I9f1@ *ے$I9F)vM9F)  IH9g1 # 9g1 9 91 +91T']I99 (M99I$!IAH)[0$A9ۻ&$IA9.<mA9 }6 BA  u-Ad JAU -+& JAU l $ JAUU $ JAWU / < JAժ] - $w+JAMr B9hPA9"IIжA9U" u,m@A9("#iвA9W# NIMA9(MAf)&IRҐ0 B1U%IIA1 I? mA1 m$IA1+ OrM B9ת $I B9_I"I I B9UI"MĎ B9- M)BA(I"0Q)BA -HI)B BU U"I. 4M)BB "iGM)BB! I)B B!@D )B BU#I* )B BU"Q;)B BZUu m B9[$Y' B9 -jJ B'i&RjJu$-H&RjJmXRJ];4݀RjJ*!gmT kJ BT\~M][ J:&MH BAmҦ J BvBۂ$ J B ~N BA*y2 BA [' BA %9 Ib BA'y BA< BA(Hqi JAHv BA- I$ BAꪻ | BAu D)yAA A5AA @;AA B,u&AA $ wA9 Hޔn9G1~w @8g1)* ig1F1 $ t̺g1'16vng9G1* ш9g1_6nBg1F1 mI̍g1G1ƒImg1G1$Yۉg1G1PyLg1F1 m@g1F1@yg1F1Զ/ g1F1Զ#@1G1UVO1G1UF.@g1G1u"Ng1F)׺Ig1G1UKg1G1UGn g1G1UmIHg1G1ruD1 Ag1G1NBg1G1z A9g1յu%u!9g1WSu9g1W?c-9g1NLMH9g1W*͇ ۦA9g1>( qRi9g1m9g1 m h9g1/n=M+9g1(vZoqWJy=9g1U J9g1U #i9g1w $i#A9g1_&i g9g1__!HOM1G1ר"lɲO" g1G1U"mͱ~I9G1/ eK @9g1UeIO. 9g1U 6ےw.9g1{"!vVI" g9G1!-ˍOg9g1UUu#6O" 9G1 "nO g1&1".`g1&1# fH7Hg1&1 RmvHg1'1 M#`1G1" 6u9g1%4#9g1 *ȺII9g14Í99Frq:R9g1 кy>9g1߶9g1߶9g1 `IRr9g1*IR9g1t?_9g1-i 91Iq"899 ` 99@mk3A9 %E[A9  $mA9eI5A96iA9]dAA ݶ +BgA $MA9zI2A9^U!'`A9DbA9m A9'}A9- [nA9nmA9]۲A9A9i]*tAA0mmAA%QI,@I*-[26)A9ꯪlpA9sM B9+"IBp B9!I BB"v,a BB"hұ-@(B B}]#iC(B B$ N (B B]# ki2jBfA"!A BB% jm{(B B"r%9rB9)B B5c#R B% x1kRjJ X 4KRJ[ lXRJ[m]tRJ.qWJJ B|XX&Ha BA*h# BA*@I I BA,aOB BA-H BA, I$ BA  JAUɟ*JAl? BA Ò BA$AM BAwC BA B9 HIA9 VAA ĶSAA qmҾAA_ ¶yA9`vA1z񛿈9F1~Զ1G1Uk{g1&1/m]9G1UUPnOn9G1Um}g1') $g1'1$Iog11IIҶg11@ھg11 vºg1&1߶g1&1$AҺg1G1UHbg1G1կ$Hg1F1p Ig1F1U$g1G1 U 4Bkg1F1Zqg1F1_Crg1F1UI2g1F1Um,Ig1G1UMNug1G1(U ^Ig1G1U%FK9g1u& 9g1Zt@$9g1AZng9g1L$$0g9g1 I9g1@@9g19g1ֶ-9g1`ǞVۈ9g1Д消9g1tkو9g1k$Mh9f1Ĉ쐇91D!9h1nֵ9g1"&Ц9g1!PM&g9g1#S7l]'g9g1"6@ӵ9g1* Dv()A%" $)@NL9g1*"9R9g1"$ v2I9g1v"$ @#A9G1##Hg9G1"v=g1F1!ߒ#g1G1Z# m$fG1F1u+IOmg1G1UU m;OYG1F1*p ön;9G1Uwm-@9g1U]/c+ k T9g1Bnݶ9g1- 91im[ 9g1_M 9g1N" :9g1d6i11g1z- -ih9g1_UUI" e'1g1e H%'9f1UmMB9g1Ikg99 #$A9 $KA9Z IXj99*_|q@ A9U__ #I AH)IAH)iIA() Tt 99MwA9'IR-+A9߶v-HA9_~"A9k-) A9( O}MA9nmqIA9ډSAA4D I*Hd I*@!HI*a$@&I*NbvtI*1JA9"5 B9-JJf1"vڕP BA !q"I BB!Mж(B BUU"MQa BB"N" BB"I EI BB"adJH BB!$AA BBIhvB95 : BA -د=R B $LPRJj沉RJ  D璫RJ$IǫRJ**D _qjJ B^^&AIJJ9+a BA59m? BAd ?JJh9TJJH1PI*`kڶJBHA$`1 BA fN$KJ9ܐ8& BA Ĵ BA`& BA Z^kv8AAI" +BGA C!+BGA C@VA9t A9o5 @A9 IRвA9jqiNn9g1xvB9g1UU^OLM1G1 ڂ1G1!~֒g1F1)wn`n1F1+ q'*Pkg1G1Рg1&1 ɓdg1'1آ`g9g1UU% g9F)I8ڇ1g1UU1g1Umiې9g1Ud{?9g1%9g1 $׶79g1"咰m9F1[! V;@r9F1 ڇ9g1Ui?9(#$g1'1G$9G1$m9G1"A9g1+}$f9g1*(! 9g1 ("&A<9g1 & $9g1"!؈9f)"I&9F1Z $'9F1U $<9F1U $$9&)! %$9&! $9&)  vl9%1!@uڇ9g1!fn㷇9g1 !4ﺈ9g1("mw^߈9g1UU#@9G1*"ıycӈ9F1$9g1*UU DOR׈9g1 ~ڈ9g1"`Irۈ9g1__%nۈ9F1$`I⷇9G1 ]$o9')$?g9F1P#dg1F1"P?w{1G1_!m9G1 W 9G1"\$9g1UU)> 9&)z! S1 9F1k##?@9&)/d H9g1ڒm9g10m9g1ﶀDm9g1yb49g1OҶq9g1_N9g1OB09g1֨9G1 ?n<9g1* hA9 `A9mLlA9_&A9_ZWd+n91,)h'91$A91  I$9f)  9A9} mA1H.A1A9+A9AA9'IrA9&HnA9AɓA9 ~B?A9, SA9, I]A9 NtA9*]bIcA9"OY?A9( ;@ B9!N Am BA"3a BB#=hmY BB#q d BB$Ihm BB$ H%g(B BU% q" m:(B BU%N HdY(B Bu]  ĄIJ)!bO:)B9 &R Bm;hoRJ%6RJn B䔫RjJ $)6'RJ)Kf;JBAimIBiA&im'JJH1Dv$JJH1$JJH1vD BA# J9WZ!w hA9ߝS#G BA-R6 J BUUq< *JA# JA꠪t*I BAvRHAAq&AAAq\#)AAvIhAAqmۤ AAq,JRAAk A9zM[6B99{i)9g1^I 9g1IĶm9g1!A$ 9g1$9g1!I9g1$Ig9g1nڵ9 k7m9 DA1-9 $Hm9 @-'g9g1߿Օ(j=9g1 ov߈9g1YAݘֈ9g1*J-9g1 uMY&9h1]+ f'9g1ې9G1|"%g1G1 d[G1F1KN:f1G1UCضf1G1DJ9 `ִ9g1꪿ m#9&) mIB1F1]0myN1F1_4uqg9F) B9g9F1z [C Mg1G1 }ǂ4Ig1G1 @G1') O yG1F) +;(g1&) זqvm9&!]9g1U];I9g1$n9(8x9(!Ag1F1  !cg1&1 P9g1կ #ײ9g1 I2,ۈ9g1"q> 7؈9g1 #uk'9g1*$-'9g1j%v -h9f1[! {'9G1_ m I9F1U 'g11!v9 ng1&1 I'g1G1 Ud Hv?g1'1+Adg1'1/$ig1F1Xi-g'9G1†$9g1 *ULT9g1U#A֖9g1 U#A49g1 o"M9g1*}Mm9g1WImԑ9g1WMIi9g1 ]BA9g1U+/l 9g1"ii9g1H$IA9U$4NA9#+99ߢ mIA! 4K91 - m;91 5' vm39g1Aݚ9g1 4Amt9g1oAg1   [A9*W0 R$A9 _ d'A9W4nl'A90@-' B9A$A9U$d'A9UH$A9U I$A9UI B9aA9  ? B9!&ls B9*( 0I8 B9 H B9!RM$ BA"1iR BA $mq(B BUU# 6(B B}$@(B BU$ (B BU",'l BB]_" [M6 B9 .=R B ARjJ a,iǫRJ  6 RjJ ,#;RJd+i)BA, h' BA-H$ BA/I BA3m> BA_$I߷ JAUuP JA+]Iӻ JAm JA!*JA!+JA( F>*JA > JAWWDm JAUUr~AA 6qi?AA$ I:&I:[% $AAfN君A9mA1%Lj9g1W &H$9g1 %7?9g1!n;@m{9g1 i<9g1:a9g1;9g1u(hK69g1X_ ܖg1')&@$g1&1 g1F1ڨmP$9g1j趰9g1.wRܔ9g1**gk91 A9h1*)$9g1 ب9g1Djp'9g1VTJ9&12Ig1&1ۆ5&g1G1>=6j@&9g1uUj$d9g1"z;Ag1 (5$[Ag1T'f7Ag1'P\A1lA9 l7t᧨9g1_u R9G13rжg1G1yqֶg9G1U  c$g1F1PÍg1&)'a{m9F)%ɿm9g1$ym'9f1Z%m<9g1ߠ&m?9g1U&m$9G1&M'9F1 $e+H?9F1*$m9g1U"m+I9g1U#nKN9g1U!9g1 $9g1U  @p9g1!e;XK9G1^&Ig1G1U6Ig1G1g1G1_foTg1G1nPg1'1 [Ӧng1'1 cN"9g1UU[#h9g1; Mq9g1Wki9g1Uۆa9g1Wݺ49([+kkg1%1Ac4'9g1UUUL`9  6Yog9g1k Nbۇ1g1)l&9g1#)$:9g1ߪU:9g1 Aۨ99 .9g1 5-A69g1]] u# V29g1U c ڈ9g1U M.Qf9g1U afۈ9g1 Yl؈9g1ݠ9g `s9g1 *u.@ԒA9_mD99-I@99 ɿI֖A9W-@DA9UjN< 8A9ժvMֶA9ݪvR fA9v ^kA9M IA9i-Hn\A9/ A9.M A9!9i7 B9 ' q' BA*  6  B9"$ 1w J2"&) &(B BUU#m'Hq(B B#m+HcjBgA"]lkl BB" kr B9#/ B9//7/jګR B Y;IZtRJ[,n;RJ G RjJ qLRmPRJʊN J)BA6-B-J B B%# BA# BAIBrHBlA[+@A9II5; J9O 8B BAIN @9g1_!m9g1/NI9'1v 9g1 O#1ng9g1"o89G1 !IΖ9G1 #yݶ49g1*#c 9g1*#M7& 9g1""I֓ 9g9 *#cSԨ99%qB[5IA92ɂh99g X91 IBhӨ91* vĨ91* oڨ91 νmV91 O^rSA9? SLA9%#LTA9IHԶA9*ϭA9HVA9m`FA9 }IXA9 I"AӺA9A9+ԒA9>PJ B9`؎ B9 $@b B9 oꄶA9s B9+ -II B9*#IW B9 "qK4I B9#ۀq J2#i B9 #cׂ6 B9"IRw$L B9#N$ B9# B9..uN ֫R B $IRJ* 2ARkJꪈ  ME-RJ' =ܴ RjJꪪN2I BA/I$ BAI BAWI"I  BAUU"mR J9&' JAU $ܖ*JAU *JAU $ A+JAU +JA*UH*JA &A*JA#>*JA[-֘$ BA+;AAcIAAm$dAAY'DAA'DrAA6PA9x U I9g1W!% 9g1U l?$@9g1!'9g1U!u?9g1#چ9g1 #'&9g1"?[m9G1$9g9 }9g1?/>S9G1 $9g1 Im7@9g1˷a9g1fHYAg99i$&JAg1۶B Ag1Ӕ A9UUM1HA9( Wk A9]66A9I;6 HA9 : BA d$ JA_ fsVB*JA&IC*J BUU_ڮI`*JA_  +JAUNMu*JAU_L` BA* L;% B9uUu A9zzzxqi I9G1qd9g1l$h9g1Ww u-9g1UU dv H9g1U \i9g1U7 9g1HA1 O[A9/A9*nkI" A9VAA9UdYIaA9WԒ/ A9UYI"AA9UӴi- A9U@Nv@A9*q- B9}@JMJ B9DI+iA9 -BOj B9 ￯ ͳwA9A9UUKao99 }"p B9 ! B9%$H_n B9% B9% B9$ myɑ B9"- B9"#lCB9/+ Z{,R B % b%RJ | BA [+@l$*JA_'*BA$' JAU؆a B9 oAAUok# B9 m&q BAUUI,HM BAI I BAowI BA2Іq BA* A9 nIA9 N;h0IA9 Im$A9~+ =IjA9I 8A9_iupAg1z$ g9g1UU& $9g1/UUۤA<9g1U I9g1Um%?9g1U0h9g1U mm$9g1*m$9g9q$9g1$9g10$9g1m9g1(zƎw<9g1U(M$Ag1 n$91F1] yҶ# 9F1 Mm 9g1*+UUmvyI9g1 + A1 斎7 @99 vA9կ0mI"A9VA9q,A9$ĶMBA9; A9k&6`A9着I6öI*qB4A9I )A9  ܶmA9+U 4? B9ꪪU}A9WVUmUA9U] wRPrA9*%CA B9_+ # $I B9 #6 f; B9& q-jBgA'"؊I$)B BUU'd pm? B9 %$- B9& B9/u! O'R B [ HnīRjJ j MmګRkJRkJ*ǬRJJ} BABl B B\QAA3I BAڒ$ BAUU$} B9 'II BA__ժ??9*JAUnm;  JA JAu+ JAm; BAz v-A9cm A9zU_ݶm 99wUU ߶l 9g9*_Ҷd 9g1 yº99ߖm 99N(9g1x3N@9g1 v*LI9g1*CqڶA9g1Iq%9l9g1 "I q9g1qaز9g1ߪN[Y9g1  U׶99 I,ASڨ99v-h妨99o ~+h799 d9g1(< *A9g1 ##i;A9% A9&AlA9$Im' BA $mm$ BA0n B9 u' BAm$ B96o?*BA.T'[*J BHmc*J Bf'*J B( Vy+J B&I*J B ֍*J B `Nܖ JA vܹ J9 :A9{ -[B91 n+9H1pc߈9g1ش|<߈9G1VV v??9G1UU9&19g1W*`۩9g1Вw܈9g1,h9g1~ֺeg1'1f7h9g1Ц[d9g1C(1g1$͘`G9g1_PLj9g1˶f;9g1$9g1j`)A%"!6`9g1(N9g1)Җ؈9g1*Omߨ9g1~@fۨ9g1 /IPۈ9g1 O±9g1!9Kв9g1"#I߈9g1#I"I9g1U#Îވ9g1 /HPr9g1u" #N9f1Z!O"Am9g1]"A69F1 ! L[q9g1!hݭ9g1 !Nbuj9g1/Hd 9g1 Fru"9g1 FR 9g1!4, 9g1u I2A9g1*U!m9g1?#I9G1 `qRۇ1F1`nz9g)/!Զ߶91 *"P߷A&!"DO֨99 h>uR?A9 Pm'A9FnmA9m$$A94I%{?A90rn;A9_D$m9g1~d9g1U $i@9F) $@9&) m<և9&) lж9g1Ud?ж9G1$u`9G1 P9g1!O(q-+9g1ӻBAg1A9&$A1 $A1 A9+$GNq I *Hq" BAdKMIn BA  #*JA m%-l*J B  d=@?I*J BU?I^*J B/n+J B # ONj+J B  ݍ*J B -O+J B* mHm *JA_ w#H l B9 mKnA9 mKA9U ym9A9U $IA9w/`9g1YiHimA9w.MA9IO{A9 _AV*J9W Bh9__ۘAF1_$9&)iA&)0m9G)UIܖAG1UIҔA')U0aĘAG1U4nd9G1U4rm9g18XBو9g1GS9g1H N,@9g1dBRR9g1* 9g1#pm9g1 $ْ9g1+* m Nj;9g1$7HԈ9g1 {u A<9g1Uͯrж9(IBg1')3ig1F1i:g1'1!7Ak9g1 U $ @%$9F1߇9G1U d?9F)*! m1G1U"$I.'9F) $H9F) $9g1UU4H-$9g1_AĈ9g1Ĉ9g1׵H) &Cu9g1++2ا91*"}P99!qmۚ`AF)!99/S6A9MӄA9uA9ttA9㶂`A9*OBA9 I B9͑p'A9L2A9 99 OKx99z ;99*  ObmA9  ߖqA9U"9G0n B9/ -JJF)"IAr B9*$ BA$N, n BA!mHA9몪!q,AD A9 k0A9!t:` HJJ9)~nl lJJ B"m]d JJ B{'$ JJ Be'JJ Bjj$ BA$H*JA_Ud)*J9#.m BAU)n$A9Z&c;A99 $ H#A9U$qI&91 %w-HA9$ ӖA9W$HfA9UU"miڨ9g1!~.M9F1mPg9F) ϿmD9&1W m@1&1U @n9&1ժ!ODg9) IҒ09'1U"Iv@r9F1ߺ#ϒ9g1U*$ژIJ9g1!SƑ9g1!϶D9g1"IRƖ9g1ϱ I9h1IBq91N4r9h1y"m9h1/r0q9H1IT9h1 ے@9g1(!MP9g1  ;BDAg1 O2m@A9݀K`4rA1((!I n Bg)_ 1mm*B9 ɳqж B92nж B9UC*J9_  wBdKJA  Ò+J BU Oж+J BU ж+J BU* IжKJ BU SKJ BU InčJJ BU 0KJ BU_ HKJA 2-ZkRAUU  `R;kR9U ЖnۋR9UU ԶO~kR9UWPOnkR9UR?v>kJ9UaR9 xO֌R*B @k'IbRKJz XviӶRkJ nRJJ ʊ R۲kJJJW ivkJJJr} vRkJJJ ]T HmKJJJ*i MkJJJ.UU AnJJ*B~BwIJJ BjI nv*BA~X|yiNAg1x qZ{9g1"I9g1(? 9g1m'h99UU'*99UU4 9%1`I9%)߯ u$s79h9ĖMr99mI-m9g1@IC9g1 Α9g1_$@9g1*"˴H)$%I9(C9 VvO9 yn1g1 U)g1F)ܶ 5K9(-)luH) = g9g1@qbuH) AP9g1m k9g1 ɭ -ٖ9g1 !e*TM9g1:"r 1Y91 %#R B)#u>q)l99[z!.+l9h1 cA9Ib;IVA9뫀۶ A9q;A B9i6 AA5q LA9hێ-A9fǎ-I*<.ۢA9jʊ -۹=B99d699  99 "MV)AA9+%۸ BA*&Tv B9$ĶI B9*%@n˖ B9('_ B9(P B9&@ B9%I1A9v&DnA9#&m B9U!AMA9UU$@-A B9 b=; B9UU 6e8 B9UU t@I$ B9UU d IA9*!4 gA9#y@@A9&ml$A9_$^AA9#oIA9*$}%A9$r$HA9w$O¶HA9_#qB99#N0q9G1 u,$9F1x N0g1G1UӶm1G1U*IRrg1F1U Ñ1G1U Bnmg1'1O<$rg1G1ZRNg1F1dg?9g1/%mPLj9G1Aږ|99^qǃT91Ibd99.I@G91M ʨ91aب998Զ9h1m'J99I'd99 $) "aG99կOގ9g1 @nA9%/-~‘$hA9 Ӷ6A9#I$H BA=I IA9=n$@ B9II$A B9 v# l*J9  IL*J B v*J B  C6A*J B Ol+ +J BU/Ib; *J B m+A+J B]_  wl *J B  qb'\ @KJ B,KJJ B  KkJ*J"/ 'iRKJUU v'ARKJw $4 RkJUU ,gǒMRkJU~$P"kJ B  dϟ'kJ B]U $kJ JW F>kJ JHǒ4kR B֪yDkJ B-$R*J6YsRKJ A$I lRkJU_ M[vRkJ]2%R%kJ*Bj`llRJJ $  I"Z9 ؆RkJ)m$iRlJ ݐfЬRkJZZ Hd2kJJJIkJJJ 6LkJJJբ $Ig'kJJJ U$M@>KJBz$iKJJJUU%MKJ BzY*BAo.wAg1x밶֤9g1(4eBL9h1;DJ9g1*9G1 8$IA!m;IA!͔8m9G1 Ilu9H9ă 9g1"$9g1]ǔ4H9g1_]$@9g1UU$9g1UU4I9g1UUo߃$`9g1UUФMg9g1UwBm$9G1Ic) 9G) I" 9G1"y@9f1諸$~.AXۈ9g1# 9g1$I Iy9f1$u+ ,؈9f1%;@d܈9f1 $-+%'9g1(%l %9g1*(7999),$;99u)# pe?99**m+@$91'[A9"CHжA9 "v$;A9/!n @$A9*!m+ܚA9'OI< BA(d ' BAY%n)BAzU$$ Y; BAU%>+BA9 $aMl B9  %l*J B $d @nJJ B #-JJ B&[JJ B$ե?JJ B$\JJ B `lJJ B &A5)B B yk*J B^UUvN B9B kO B9 !VI B9"rB9W I=MA9UU_xǵ_99ۺ ]99v,99 zƎq99*U v99 $4ϖA9W"0nòA9U%ۀ A9_W%y~ HA9]$qr$99#@99 !ւ&H91 &a9g1 @9g1!N$Z+hg9g1Z_ д,H1g1 LJd Ї9g1/ A;M:`g9g1"%'lmg9g1$ HI҇9g1$'Sև9g1% wΚ9g1&m=L֨9G1 "n- Obר9h9$/h99 $n+H99$/H99#/ A9#/ y'99}U# IoA9UU# mOA9UU! ]AG1!R 5W>9g1*[h;9g1f@aU9g1! OKK9G1 "]sA!#еC99%UUU"ֺOA!!A9 - 8qdJJ*B } -C֋R+B//  EIRkJ Ht RkJ vHڴ JRlJ [nImRlJ $IJ1-RLJ I ImRkJ m7 RkJ_ vƵaRkJ߮ ۂn]lRkJU iۤIRlJmk;Z pRkJu[ $wlRJJ \yvgkJJJ : dǶ RKJ ۶RKJ #J*J*yvےRkJ)U NaRkJ ] ;qRmRkJW dN,HRkJ  d;?RkJ ]RkJw} ߶kJJJ^ I;mjJ*B nl BG1+//&t>kJ B  `9l6RKJ Ia&RlJ( A&RlJ  ( ,[J9 ݶȐZ : [RkJ m'RlJ  qhERkJ aRkR nRlJ  v`RkJ}LȋRkJUU\ P&(kJJJI8 kJJJ Y1 RkJWɟ'?RjJ v'΋RkJw @T?RkJ%U$nRjJ  mǢ(RlJ d'@RlJ سmRLJ ؉mRkJ_z ckRJJ qlJKJu qblRKJWV :Nb;lRKJUUU DvlJ+JU `DZ$lR+JWUU ԺlR+J_U Trv̖lJ+JuU_ TwIkR+JU вwJ+J B жIm+J BIr*JA_KNA9x^Z ж߶9g1z жB9g1_U^жIN9g1UUжI¶9g1UU ВO9g1UWIҶ9g1UU@߶9g1UUВIҶ9g1UUжI9g1 _UUЖﺈ9g1UUжo1G1uж߶g1&1o1G)dyև1G)#Vӏg9g1"(9g1( v9g1iǦ 9g1D:6EK9g1`ǴMɇ9g1#l9g1?$TH$99$!v2`99$!m2 99&![Im99% S=a99#mi99*#XI"A9!0QA9"dA9"TI2A9*!Ԗv’A9 !Զ?A9PINA9g׭3A9 lA9F׏JJA<ϟJJ BoJJ*J:JJ Bj?}*J Btۭ}'JJ Bfu$*J Bd۶o'*J B`*J B p߶JJ*BP޹n*J*Bi:tݖ*J B i*J B^ϰ*J B{hҔ B9`xP;TA9!P~99 @e99 @wV99::$`?99(`$A9#dv'A9U"mObA9U!0IӛA9U! iӺ99 0M9g1 I9G1 MӒ9h1#@nﶈ9g1Z"D~ڶ9G1"Dn9g1"mv9G1!H39G1 "I‘9G1 $-ɇ9G1 d:IL9g1 `v]i9G1V7A9g1늀s$-@9g1 9g1 1#9g1]m m91 u H99ݘ$e+l99- L99 "I99 8d)I99U C?9G1#a9g1WU /I1G1^^n]9G1U@)n9g1*U 6uζ9G1~ og9G1uwl Bg1/=ˬkR B (dBRjJ -ڶIRkJ JMRlJ 5RkJ RkJUU ]m&RkJW &)@$mRkJ v M:RkJժ v;,RkJW  ӌRkJU- CRkJ__UpORیR*BII9G1жc=6 B9-- 2@3JR*B+ $$2RkJ !$IZ9 ִvZ9 I$CZ9 ɄI$RR ֦ڶZ9 붮knRkJ ZdRkJ ĆRlJ 6i:DڋRlJ ǢaNjRlJꪺ $eYRkJ "$HRkJz tֵRkJ M4[eRkJU I6ۺ RkJ_Z kڤݰuRjJ aȐ$IRkJUU IRjJ 2HRkJUU M6m2RkJUU I$m`RkJUU I&M`RkJU} ]۵ RKJޭ;RKJ]_ vҺn'HkJ+J_ qbd KJ+JUU IԵ/ KJ B _m MKJ B*n5 IKJ Bnm) KJAv\AKJA*߲&+J B BAZx_(@A9  ϯIA9 qAg1ꪨi 9G1^O,I@9G1UyMHg1G1#iH9G1Uml9g1UUi Hg1G1Imig1G1U g1G1 129g1%0:Lj9g1  ʱڪ:9g1  0$A9 V`;99 mUZRQA9: "'jA9 $A9 -@'A9 #)AA9 %KmԐ\A9DI B9$A B9$M$ B9+' $ J9W%9A9{!8 $99o!$$91 A-$99+Zn?A9_UI99$ I$99$ A9(h99m991Yغ91ڪA9/ t 8#9JJA/IAJJ Bv]JJ*BS]JJ BPqb;*J B @lI*J*BkRI$*J J m*J B i$ JJBd1iJJ B9 'JJ B\+A$JJ Bmk?JJ B9*J BZDAq B9W 6nA9R @99&+H<99#Av99i ,99# r#A9! mTA9,cېA9%mBmA9Z$6k? IA1%nmA1# 9G1"&bI9g1'9g1^'oے$9G1_'Ib9F1_&ې9g1UU'_L@9g1uU #I9F)#9G)!O9g1U_!# A9g1U_ sc+9g1u s;d+9g1u}m+H9g1U&l9g1UU ,I9F)I9&) &A9g1j9g1]6@:9g1$d9g1퐤m59g1_^q[mg1&1*# ];g1'1 u2(L9 q9g1_+ H9g1% mm&A @(5 B9 ,DkR B+) ) cӌRkJU mM$RkJ $ HvLRjJ mi6RjJ @،RR $)`RkJ mؖRkJ dRkJ fL$RkJ c (njRkJU Ib;$RkJU cRanjRkJ &s'RkJߪW @$RkJU $&$JkJUU 4f;R)B $^RA $HHRkJUU mn6RkJUU MЌRkJUݪ 4)SیRkJ_ LD2RkJ $LH&RkJ !IRkJ XmnlRKJ~ IBlR B D#KJ+J @KJ+J _ ֲ+KJ+JW dۏOnKJ+JU N"kJ+JU `_KJ+JU Prs+JA_ ۶ B9ЖIA9@?A9@NO~A9]~"vy[9g1"&)A%"!;A! 㴛 9g1* !,H9g1("R$ 9g1#OҺ@9g1$O²$9g1~$BHAg1*!O‘@A9 O>҆IA9+ OI B9 C  B9 qK  B9  /I B9w C@ B9 I2# A9 yqA9 kWvG*J9տI>q$ )B BU ?id H*J BU߯# d @*J BUUW=im A*J BUUUC3N"@)BA.ayb B9z!dKMq[AA9UWZ"399v iA9MuI;`A9ZI6KA9ZCӒ$A9Z[ l0A1M3`۶A9s@m'A9kDA9*3֠ͶJJA /IB2JJ+J$JJ*JlZڀM&KJ*B($*J*B[:ۖ4JJ BmŖ4*J*B K$+R(2$Jv*J*B*`M׶JJ*JUUDS4*J J*+,I$kR1b[ukR1o{1w *J96!IRA9\H$I99q$D 99* Nl;mA9!I'@nA9 #i99 #4I99 $ $A9﫪CZ 91ꨮvB$ 9g9_d+9g1~~b$' 9g1 y+ 9g1_l 9g1 m 9g1__xd9F)?A9F1;m 9F)$$ A9F)$A9F)'d+ 9G1' 9f1$9G1U$&9F)9g1UU $9g1U  69g1Uc\ 9g1_]#O%9g1WU/!q$@9g1!y9g1"I)91"$)H91*"I\'H9g1yړ$ g1f1 #Orۓ8a1F1 ¶+9g1//N'A9  t8˳A9WIB599U_ [ B9=- I'R B I @RkJ 6m:$HRkJU aB$RkJ mCmҌRkJw/ ɐRjJ C2 IRkJ aBCRkJ IamRkJ C$RkJ ,HERlJ I"mҋRkJ %RkJ  I MیRkJUUU L$$RkJUUU aB$$RkJUUU  $iیRkJUUU m L[&RkJUUU9iI،RkJ u -A&8RkJ )1MӋRkJ I$RkJ 4vR'RkJ :m۴RkJ 6`M׶RkJ{ @ I2lRKJ__ DHLKJ+J i;IKJ+J} 'śMKJ+J^ ԵS{KJ+JUU DMKJ+JUU :uKJ+JUUPd*t+J B` F6+J9^~ de;A9W IA9 VZ mA9,$7Y9g1 $I9F1 / 9F1 y 9G1 f;ݺ9G1d'%m1G1U d g1G1  9G1W -)l9G1 6b I9g15U Д$.;9g1puAh1//T'Ki BAW~ BAU$= BA_h B9Ķ-iA9 $=A9 حIA9-t BA'h'mm*J BUU$ )B BuUU8$ BB$)A B B& BA#l+ B9ݔV9191R 99 DIB1ݖ(bA9!J99 M&$B(1h۴[ A9wNb;A9ԚAA9dR *JA%k]S*J B* 1- I*J B  e5A*J B m;*J B" mm 6JJ B  &JJ BFN:*J B&*J BU'*B BU}$m*JA7? ?0*J BUU *JAw I B9~^m$hA9WU_nܜ49g1*$@91N@91 ɟ#9A99UNR 99*$&A99c#'A9h1qbҀdۨ99uIbۀd'99vNВ9g9q‘T9h1y¶Ж9g1">@9h1 "ߖв91%~B@9g1*%mT9g1$M9g1 #iP֨9g1#/af9g1#Ifߨ9g1#N,h'A!$ $9H1$] u[;A!#( ;99$%)HN99UU# ?A!(L^9g1Z!%9g1*"&Hlׇ9G1 ANۇ9G1!$+ އ9g1  ć9g1 u n9g1#}v9g1^XWW$/ .?9F1ڠ#kֈ9g1'lA9 M$g99+AX99@I B9-+/XAiR B  u<زRRWW ? fیRRUU u IRR q, "۲RkJ ONAnߌRkJ  =RkJ N"N;RJJ ImvRKJ + NjRkJ NN.RlJ vºRlJۄ d=9RkJ_[ D!IpkJJJ &@IՋRkJUU IIvR)B & NrkJJJ*  v,mkJ)J @MRJJ ضmRkJU  RCRkJ^U @IBRjJ 4mRkJ  @CɌRkJ ڶI6RKJ еiڶlRKJ_  kJ+JW vNKJ+J]U DrS+J*B 4IbKJ+J UU @S+J B TKJA~ ĵm+J9W ` B9U ж'A9__U ϟ$A9_ `ϓA9^}U 9g189G1WWĎN9G1U0mh9&)FG1)FIG1&) 0G1&) G1) @_G1&)  kG1&)  n g1'1NaK>Щ9g1++-  4iA9*t,SA9Z ! QA9 ¸ݭϬA9rZ $n=MA9 $n+HA9 $[ 99 ;-A99s~ B9?e' I B9e&H B9m$$ B9m?$ B9' B9 $)A9UU$In&A9 $A9%o$A9*!tMA9 , A9O, A9I?m HA9몀Ib۵ IA9mB$)A9_ H % B9 .Ib$*J9 Uh~*J9I*J9IJI*J9UPI B98q$ B9 Xĉt B9&I$ B9 I$ BATX*J9/ mm:JJ BW `*J90Im6 B9699 ڨ91Im;99*A4891 DI99 B99Ah;99*B&9g1 H$$9g1@$$9g1Hۘ<9g1ږ9g1&?9g1 "l ,<9g1"6ب9g1#-)%9g1 $d)H9g1}" 9g1U!`ۘ<9g1U 9g1U߇9g1/*U (@'9g1U?9g1U$9g1 U@9g1U& $?9g1*U 8$ۇ9g1* # Ix9g1 M9g1 &ILJ9g1  ۦ܇9g1!ć9g1 ",MĨ9g1""%ć9g1$tK9g1&6M9G1Z'+l?g1F1_$b ?AG1  %99  &pm'99I;*J9/PkR*B  m7RkJ MmԬRRU Ўv} g1&)$[$g1&),g1&)Vg1F)  l}9g1 1@9g1  lnAh1 v!nA9 ++ -UzA9 >;*K+A9 0" K۴s A9  m5IA9  i' A9 6HA9"  6 @A9'T)BA/ ,Yڃ*J BU_^.*B BZ^[f]Ql*B BUU&"IjJh9d0HH2 J:6`KA9$M:AA X #LA9' @A990A9e'A9DJHA9$mXA9_-$A1{R˦A9X. B9/uiiH B9 <*B BUcߚH*B BUm*B BUt'Z/)J9 I B9I*BA__uɟ$` B9zA9 /*IIDJ*BAֶmҴ BAPrq BA^Z0R~Ag1z@Q79g1/ q$B9M% B9 HmA9  Lni' B9]" u B9}{z"k?9g1$$9g1 ۇ9g1@9h9*е۶9H9жm$A!ڭSǨ99$m91 `m;9h1R_91 *m9g1 Tg91$Iζ9g1__ I㲇1g1I޲1g1&HuR9g1"UION9g1 U_Hw9g1UIyڇ9g1 H~?9g1w& 9g1&@9g1}}$ 9g1 l;9g1I'9g1v Hָ9g1!3~܇91 Mmۇ9g1!mp9g1*!#&9G1]_ f1&) C9&19g1 IRq99ժ  B9- 'DnKJ B  $QkRJB 5Q RkJ]*/ mRkJ O^IRkJ_  IҲ4IRkJUӊ4mRkJU Iq0RkJUyRkJUߠϮiRkJUNLr0IRkJU(v²mRkJU #@RJJ N"IkJJJ i$IkJJJ O2mIkJJJ Oi MkJJJ IMHkJ)J I;n4rR)B IB،RkJ_ In(vRkJ ARR fY&aRKJ`"AAe$AA۶kAAH" JAUUUԨ8+JA*W+Zd;+JAUUU۠h;+JAUUUOv+J9_ސV J9_X9nAg1U~$@vBRAg1UUU`v,9g1UUUV׶#I9G1жI9g1UUkפI 9g1P_UU؉#9 `qKg1(1.I2l9(S]6΁9 Ӳg1&)@I$ g1&)UUI$v g1&)u I h9&)JI9g1 IbA&9G1  RAh1/ i/A9) IA9*=x BA__O J9y B9* b B9 >T BA_")B9*& 0JJ BUU$ ~n0JJ9߿ 7nmJJ9 nԶJJ BUWIJJ BUIP*J BU_&A9j"ϒrA9T(%1I IA9%O, ڴqA9 i&A9wmA9} 9A9UhdMA9"q+-َA9/ O dKA9 LKJ1%//'jdMJJ B $ɶJJ*B v$[JJ*B ɳ,KJJ Bꪪ }*J BI C%*J B N" e*J B *J BBIkI BW_ N"Id' BA -M BA -+; B9z rpW9g1x1MA9 InA9uP B9]d'A9N뭃d' B9Q2 B9J$9g1Ҷ:9h1& q\A($ fk99$9h1$@]99W<99]_4wۨ99Wm9G19g1$9G1!$I9g1 v؇9g1u & u9g1 `79g1 H?9g1Uܖ9g1(U9g1"U $m$9g1 U d9g1*U 49g1 y9g1 $ﲇ9g1(9g1  I߇9g1 9g1* Lv\;9g1 z9g1 u mr1G1v PqlSg1F1^II1IR9 q"u6AG1F1+G1&) O G1F1 ~Bڛ8A9F1 +um)B9  m)B Bm KJ)B+/ ؆RjJ/ iR@RkJ_ oׂ4iRkJU y\4MRkJU N\MRkJU cRkJU  cېĒRkJOmRkJU*ñ¶RkJUI˕mRkJժ~P+RJB IBmRJB InHRJJ I–mkJJJ I IkJJJ vN$IkJJJ IB!RkJ LL ARkJU I,R HRjJ fC5 RKJoJN NBmA9 vA9 M\QA9IvmA9tAA I&A9  YoA9}ӐA9W&YA9_U y`'9g1D'9g1^ْ<9g1UĖ1G1Ԓg1%1v$g1F1i$9F1Ig1G1 rӴmd'g1G1^d͍$g1G1um<9G1WM$g1G1Sv9g1uU ~mڈ9g1 vM`9g1ɿmT9g1uDAh9/b`A9*m A9m ۘA9 #A9V #IA9 #IԶA9 AYA9Պ  q)B9΃iԲ)B BU*ϿƲ)B BUI2iV)B BUIҹ*B BUUNBnA*B BUUöu1n*B BUZ pA9z!ywO/i B9/!2S$ BA!$ڔ$ BAU LWA9۠DA9؎m B9:=A9 ־*JAU' BA-$-2KJA'?/JJ B8]JJ*B[8)*J B * $MJJ BB&i*J*B'4IJ*J B $*J B %9*J B^f'A*BA*$H JA* c8¸q JA A9@`  A9Ww{m; P B9/*<JJA/>/?tkKJ*JW^UUI-$KJ*B iM+J*BI,I`+J)B!u\KJ*B+of'JJ*BuqKJ*JUkJ.JJ B~'*J BlI:*JAo 7g JA_yNЖA9WmA9zkk& B9 *T۫$ BBԮq BB`dl& B Bͣ B9nO B9 j.uA9V۴:զ 99$9g19g1} lk9g1]$@m$9g1U$9g1햸9g1 & $9g1'm$9g1m)e9g1m9h9o m?9g)  ܨ9h1v @f9g1m %$9G1v uܨ9g1m $؇9g1U+-$9g1$ ۔9g1 *ݖ$9g1 !M9g1*" S[&9g1!$aƴ9g1"Tԇ9G1 !@9D9g1!Xk9g1* "mmM9g1#vv9G1$ԶMg1%1#DRϳmg1&1# g1&1 d"F1)$MCF1&) I~mF1%1jk B&) @6)B BUPBwknJJ)B'  &O>JJ*B [ ~,kR*B ׿ (it RJJ $lMRkJU $IIARkJU 'm#`RkJUHnv`w B9Z r`A1!+FA9(?MaA9߿=I< B9 &A' B9 $)H' B96 B9j `)l? B9_ A9  U Ag1v$@?9g1IeM9g9eA9h9v\ 9g1*Irm+9g1 om L9g1򪪀v+ 9h9id)99vu I99dmI99n' I99eI99dv@99,$I"H9g1 $I"A9g1 p=9g1[dI"m9g1_Z`/I9g1(UU?I9F)`Ii1&1`I"ig1F1!ВMj9F1"ϵ9F)"жϿm9F)$POg9F)$oۇ9F1$`y'g9F1U%`g9F1U%ЖOg9F1U&g9G1UUU%>g1F1U6c9F1 Զ?9G1 @}?9g1`= Bg1 Ch" B9U!mM*JA UUc0)J*J9m-:4A*J9(`KJA  $c R B $ `RkJ-+ u;ZKJ dw܄ RkJU"R&RkJ_$y;S LRkJUZ hRkJUcm'[ RjJ_ i'@RKJ $$#MRkJU (@RkJU ږ@RkJUW '-RkJU l hRkJ $, lRkJ L"@RLJ 4nZwR*JMA9`۱- A9IA9NA9"Ӹ/LA9*m;yJJ9_>vIIRA 83s-rRJ5+Pr RJ4 s>5 LJ9^r , IJh1I. 91 仹/9g1*d/a9g1' 9g1" ӖA9g1 W ۔$ 9g1U @9g1U 'm 9g1U $u 9g1U $m 9g1U m 9g1U l 9g1կ  "'e+Ah1_ $$ Ah1U @9H9 -9g1 '# HA9UU m@91nD9h9y$99*%x5B*J9//"ԓJJ)B"$JJ*B!uH*J)B!r,*J)B!v B9 m& BA ~B B9 dPq B9n O#m B9 ߒ$ A9U qݍfK Ag1ñ H9g1"&9g1 "u$$ 9g9"?9G1$d H9G1*v$9G179g1Z L99__m I99^rd-A9g1*c$)H9g9qL, I9h9IҺm+99U]-91vܺ[+ 9H9 vM9g14Ig1F1m@Jg1F1g1F1ڃֶg1F1 vlg1F1 q؂Vg1&1 I`g1F1 ;Vg1F1"ۛpg1F1!%픀g1G1W"[wdg1F1#߻pg1F1$g1%1$֐Dg1F1Z 'y9F1շS4Ag1 IRmA9 OBr m B9UIҖ A9U )+l0I B9IzA9 RA9 ϳزA9*/ B9 #:KJ B?5 3&RKJ- v"DRlJ - @RLJ ntФՋRkJ";ak'RkJ -ċRkJ_m"%ۋRkJ_ ImRkJU I"ADRkJU I"HDRkJU NvRkJU MjRkJU u"JjRkJ O.@ZKJ IRZkJ ےvR*BjOj@rAAÍ@A9͍ĖA9CPA9__=R1A9 j>Oq THRA5 <9i@ [HB<6q jRJ7/ͿRJ2((,J9@!. B9m;A9đܨ9g9VO`'91ƒdǨ9g1Ǩ91h&HA!dwҶ5A!FdBq9H1z9g9 Fo'A!ھ<99 ŶN9i9 @n֨99 R^ @<9h9* ?9g1 @s9h1qd;>9H9 @c9g1 `n߶A9UpOnA9UW#AOJJ9-#DwnJJ)B"#@SrJJ)B!б~MJJ)B!Vu2JJ B MAJJ B kNJJA^_-Y۹C BA "xd JJA"]$ JJ B"ly HJJ B".$) JJ B"mn'@*J B $w*J B# KJ B/+fKvf KJ*J۪ &(HKJ JݵbKJ J_U^0h J B 9ij5*JA.*ZKJ BIbm *J Bp y喓@v B9|*"?)J9W!z@iJJ9UUU )J9*DڴC;JJ B@N$JJ)B vwJJ)Bk0ں5JJ)BT*J9Pr)AG1V~9g1(*""кmk;99?//䒭A9$m B9**!O B9 ~`I B1I B9UdIlA1#FA9z#I2nКA1_!IIPnA&)!qВ9g1ۤ9h9 99”[e9h9(j9h9(7sW99 Ж8h֨9h9&=99 d'I9h9$Ԯ99 99?$i99]sے$A99UI99UU 9G1 ے$ 9g1!0g9F1W^ !g1F1U @g1F1U Ing1F1U!@g1F1U#g1G1#'g1G1]%Mg1G1U%+A9G1U%$%) g9G1U%;) g9F1%d?g1&1%%, g1&1$c? g1F1" /% ب9F1  U99?2".&A9A9IA9ФÀ AA,lKA9 жvA9ж&AAzhƤM: BAuu!VHڤMRA  :6DIvhSRJ<9I7 InRR=8:l^V{RJ 7 {R)Bַ/ .riJ9Bp҆i_99U&IIq9h9(#9g1``ifH9h1 йIK9g1&A#n9g1qI"i9g14Oi9g1d)H9g1my2L91 @>h9g1z$y9g1۔$yh9g1ߪv L9g1'q"h9f)I29g1pIµ9g1`yN9g1IҖ9g1__@9')Ēg1F1U!Ig1&1!@'g1&1/"?g1F1u&0i9F1& Ig1&1'I9F1 (Dy9F1UU)g9F1(mg9&)(Og9F1UU(6mg9F)&g9F)%/c=9'1  [Q_I99 +AvBA9DJIlAAM=AAI6AA&iAAqNkI*IiA9 Ab3 BA bK>KJ B-)+$?8R+J NRlJ" itVtRlJ * [,%ŠŋRkJ m:lRkJ $I2$RkJ LIBRkJ M$IRkJ8 RkJ v;$ ARkJtؒRkJջ $ARkJ $m+ RkJ nm;v RkJ 'q RkJ߿ tvGR*Bzzo9A9qZ$A9~A9:K'flJ97 6-qy JRJ94 PKRJ*<7JRJ:#9R)J`xE~]6D/RAkrXiKm0A9}^ N`A9UU OA1%̀9g1~!m9g1  O`ߨ9g1_99U [&99Us;99u m99uTX'9h9*  ۨ9g1 m?9h1 Jd91 &iۨ9h1 $I紨9h9 dn$;9h9 8i$9&1  )@$9h1U 99 u m<99 $ږA9U:A9?/?$M$A9d' B9  V.A9 A\A9@l$A9$I% B9$md'*J B n*J BWU@n-$ BA P$ BA@ B90r$> B9 Zʶ B9}qq\A9wؒOA9( NA1!yr9g1~_{%0n9&1_'O^n9F1_&Hϯi1F1U& +m9F1 *!mn 9g1 *"|i# 91+!v=a A99+mO2n9G1(O2@9g1_(/HI"A9g1U (/A#9f1ڪ$ OA9U! HA9?(*n O BAժ n I^ BAU[ Lv B9 n9H J9d Ҷ B9 Ob B9OR BA lI޶ B9 4o Bh9V^ON9g1`vB9G1Ո9G1*;m9rA!vK9g16ˉ9) W99>*P>[=99 }$4%99U"$iA)Ö$֨99D2I&9h9ݖ8AH)@IA')kWi89h96899[]v $9F1m $h9g1* Ig1F1!#B9F1 $I-Ԩ9g1#ӑAg1$IR`Ag1 $9g1(ò0g1F1U)IRжg1F1U)nВ9F1U(oP9F1U)Obжg1F1U(cĶ1F1Z'c@9G1  m`vA9qdA9Uu TrؐA9[y9$A9 ԺA9qA9(q;dA9d2A9<º: BA/Vǐ;*J BC.$B"KJ B PA!@R*B kڤRkJ *B 5RkJ_ mٶ J)J Dq$kJJJ I$ J)J $@$RkJuU 4RkJ k5RkJ mnkRkJ kfݐaRkJ↑ 0HRkJ^ mۢ+ RkJw $ kJJJ`P kJ*BzzЂ A9' J96 R9?/7(܉>JiJ705gRJ**96b RJ ;6mNUwRJ <P3Z-RA0(C6$qnJ9wQA9~~& A9}U_^m$M9g1a9g1⪪b" - 91M#A!wB=99^a$$99U3a.m99q)fI99##h:ը99I@cͱ99_"Hd[ۨ9h9I,L֨9h9 OA؎99'A9W_] dߒ99UU -H3m99]U @I99u#@i99uUUL m5$99#eש99zmA9?>IqA9((U$h۸A9 C6A9 H[k'A9 A:A9 @NA9  B9al)B9 B9#  B9I2!AF1jPnis9%1v– 9&)q9&)I|m9&1 yڂԶ9F1UU;вg1F1\U`g1F1U$v,`g1G1U#uTg1F1$$@rg1F1* %%ǀTn9%1*ڪ( `9g1 )Z?ֶ9g1X&%琴ig1&)'mD1G1*%,?T9g1(#i; R9f1"99  8&A9?// 8"l:IBiAMRT,IBIA֮MۥIBIAm%IJI1 QCI 2jIbA9ذmeA9 @Ib BA_i[qA9VVVԮA!!ILI9g1"cې$9G1 "Olے$@9H1!c99U!I99UU $H99U >:9G1mH9g1v'&A9g1i;99U[ m9h9Zl) 99d'v 9h9$ض= 9h9a99PN"99VW_P#i9g1`ɳn9G1DmAg1iA9U?I A9UWI"IA9WdI.M99p$Pϯ1F1$yg1&1 #@=g1F1#S9G1#Tɽzg9G1("wξg9F) -{9G1  "a.99 %ɑfHA9ﯯ#$IA9ZZVmA9v+@v"A9$ e>A9ڠm+HA9  B9+ɳ*J BiM*J B"["l&ikJA Ɇ&@R*B   dQRkJ( HRkJ( O l+ RkJߪu #IaRkJ} ~" 4'RkJ Ͷ%RkJ/ k &@RkJi$GRRUU]=HHRRUyBr"MRR}U_Iޒ$%RJݒ(RJJI.) kR)Jz!&`kJ Bz_'5j*JA_߿, !?Vf jJ B:++91X۶iRA5,aM RiJ+84 dHRJ :6)$aRJ<%:)RJJ@7/ތRARR;;9 BAsTA9zqn@A9_Zds99^>91$99@hǨ99~dqB;91m$91Di99*v@9g1 )h69g1 ax'9h1"l+ :9i9 ۶į99m\99  6$99 Mt99uB7UuiA*жm 99 99ֶڮiA*Цۆ99$$ 99zU^^$m[99um99U5 99UUZZ$ 9H1mׂ9h9ؒ 9h9'X9g1 ۸u9g1ݶ$9g1V!k'9G1_0g1F1@XP_ېDnF1)*OۃF1)"mԒF1)mVF1&)qXև9M$ؖ$9RF1&) dG1E) @(,9 FJbG1&1I[g'G1&)$I?G1&)$'G1%)* $I$?9F) d9F1ծHm9g1  I99$99I$A9%+o B9$@o B9[- u< BAn+ m BA+` BAAג BA#@%W BAIIM BA MH@hA9V|!q9H1_Ag1wlAg1Ж#AG1z@jym9G)*$ۖ91 s9g1ڈ91.',9g1#iLj9G1 *#YǨ99- $9i9eب9i9 n899v\w$99W-I$99UvKJ>9g1KihǨ9g1 u+d;99"?mڪ B9孏6@A9"mIA B9A$A9&ӖA9 # jܘ$9g1U Av9g1U !l) '9g1W n H$9g1UkAĈ9g1vk;9g1* iX BG1  v.$Ǎ B9_ @Ƒ B96 B9 M io BAU$L BAi BA* $ BA $ B9 YO@ B9Wq *B9U Í0HJJ9UI2IkJ9UɯIIjJ9U=M$jJ9Um kJ9U ~ljJ9U~ ڴIkJ9U=DnkJ9UU=dI2KJg9  *J1 $ْJJ9 ֲJJ9} -mٶ J9$IA9  @  B9!-h!t BA $);eu*J B}/#1W%J*B+* 4, IRJ6/vRJ84$B"I: [:95e8RJ7RAx Vv BA[ V3 BA,}]4)J9b&l&A9u{'A9 0%99^P_uƨ99%99 m99ZS&m79g1899 _%,ɖ9g1e[9g1K&d;9g1**Pmm99ڧ-) 99m;99UN99Ut?I99U$O"A99"U`'-H99UҔ< 99 UWДy"I99U M99u]p/A99WUf=a9h9`I99UUUO6m 99Z_Ue]"99ԺI9H9w[ 9G1$ I2I9(-CJH)&ɶnH)I"DS1G1#Jf1G1v"AVg1G1Uֶf1G1]OVjg1F1 IHmMg1F1~. d)Ig1F1&IG9F)"ɿ mg1&) %ϭ6g1F1'O,ٲg1&1 %#ɕg1&1 'OHmYg1&1$H%Kg1&1%9&1/ 3ubA9߾/OmbA9+@vrA9 @Im B9(A# B9AOmA9*XlB B9( IA9 mPjA9ң"ɶA BAh' B9'I BA__UҖOI B9d I B9tONA9UBAg9+< BAU A9 A9_!l; `9g1#M?9h1 y 9h1 9g1 / v?91@f?91* N,g99UmRA')]6 A')$ !99 IdA( IaA!ֶk59g1**жm6A!:cA!F%k" B9  #?m BA N BA}$AA$vA9ukר9h9eyۨ99 UU,ۨ99W&99U ei?99Uv99.XZ B9  BA*_?? BA]f$ BA UTۀ BA"]` BAUe BAUlYp? B9mAg1 ܨAh1_Ͷ$9h199Uo99UO޶pۨ9h199;od9h9yۺж99mB=e9g9In9h9 ")9g1n#pIA9.IдA9 MӐ(A9!͘D*Jf)! BA"ZM BA$u*J B:+!wS'IJJ)B*)"2)pA<ѩRjJ4*jgP RjJ+71Fq@BRJ94k:RJ9!(=R*JpP%\MJJ B$)[jV*J B0^_BjJA?' 0"Re iJ)BN*-/IJA sܶA9A9m H|A9q tުA9_ JCA9_ Mֺ99,K-',9g1@:9g1w<9F)~HĈ9F)$Iک9g1 ɖ#99v998H99";C99& 99@֭99 e&CA9O7A9IOA9Iɖ99 IiA2жMNA9 AJ*99*&9g1_Hڔ$9&1*  A&)!-9g1"LĈ9g1 "$H?9g1$&Aϟ9g1U$'Hg1F1#Aog1F1## g1F1#l.g9F1#u< ݔg1F1 #i$[rg1F1#I,mg1F1 "m9 "]m9 %cIg1&) %Im@9(&]$I1g1UU 'yR$ 9g1UU*&3AF1 "O#MA9 vm B9Ix&H BA v9g1  `i99 q99$99U-إM9h9I88 9G1v8 9g1  9h9I?$ 99UFBA9U/֢ B9 tA JAyҶd *JAR-  JAImw- BA#IuiA9]I2J 99Uv-`99ժI-i99^- [s99 N< ک99 tt" B9qLi BAUUI"A BA y@~m BA#HdǺ BA/۶ BA_U? mɖ BA"yn BA#I.HvYר99"~$I9h9!w.H(9h9!#6i99$ m;99U!i+@(9h9"9g1#-99 3-99 ON.@99UU A9UUU"B.$/A1jj)mAAg1 '%A9/'yA9U'y?A9 ($? B9 )%o @)J BU,mܿ;AJJ B=1#6sFAJ)B++2&bٴ?GRiJu4..)RJ81#hRJ91uRJ7$R)B\V'm}; lJJ B/ o' jJ9*1X&AjJ B2!N,iJB`#>IA9"O<HA9 sA9W?HA9_U'A9_'&A9UwHA9UU I9g1WW$$9!~$ I9&)U$$9&)I$9G1IM$I9g1U  H9g1 6m99uU  mAh1 ym9h1 om99 ~^'@A9wmA1fd;A9dƩA94V'99*((N$99 i#?99`99U  -r9g1` OHm9F)' @ ;9g1UU 4I?9&)!0my9F) 4lIg9F)  Ӷg1F1U! I~g1F1U"0mI^g1F1U  II޺g1F1U!&ig1F1U!L߶g1F1U &@NNg1F1U Ϯg1F1U )H߻g1F1U (LIRG1F1$Mm;G1F1 $@Ǩ9F1U <9G1U")im'9F1-  A9-$A9  AA9I A9 $QtA9dH!0A9 kֶk; A9vlv[ A9:c'v. BAIb7u+ BAꪺ c'v AJJh1m mIBA'e BAϟ$+ BAzzv8 A9iA9/ e B9#AdkA9; ~۶A9^Z^Iv<9G1fވ9G1[9g1lȍ9g1O M9g1  ImK9g1  -)I99݀U Amm99_U#m) 99]qIu, 9h9*Iҭi;9g1NbI"A9G1* vڶ- 99UUW*cn 99UUU 99պ(q B9ح BA 14 BAq= BA&IL B9ݺN 99#dı A99iډ @99UUUMq M99UU$) 99U։= 99s"=pA9M:m `A9M-=A9I۷A9 1mӦA96\A9Č!A9dO$A9`!ۨ99萀lڨ9h9 nt9h9!Pv$AH)# IE9g1(% If'Ag1 $ $ҘAg1!жu99 U"P99!nm99+"$99'$\6A9)!BjAf1 &"@J1')JG)&#еݖ$I*'$ݖX4 B9.)%enj`S BA** *'4t)JB/.'9mۢ jJ)B-////)MjQJjJ3,ߖnvRJ61n۶-RR63mv RJ 7#*0-ުRIJ`P*$![iJJJ)BI9JJ)Bx/1bDMJ)B0(\cjJIB2C'iJA# B9!ıA9 XWwP'A9 XA9w l]”'A9w]ۖAg1dIAg1e?9g1\?9g1-Ͳ'9G1룹x99'-NA9d۩A9UOyA9I"jԶ99IԶA9Ͽ#жA9O4m99_ Íi99uv>q99_=v$IA9UӲiA9uS iA9ܖ$IA9߿= A9OB M99ߪ*"yPA9g1xh"IRQ9g1UU"y ig1&1*!_;qg1F1!Ēg1&1 ֺg1G1qldg1G1]t6f1G1U&iR@2f1G1)$g1&1Mg1F1 8g1F1 Y&g1F1! $g1F1! I&g1F1"$ lg1&1z"$H-7g1F1!` B1 i BA0 I-{ B9 i,< BAM BA@mIBA $$JJ1DV. B9ieJJF)mi BAIdA9 I+d;A98"'k& B9 6IА BA [ $ BA $ BAv+AZ BAhz- $$ BA]u=l$ BAժ__A9ۆ ?A9"\Ag1!$9g1U n9g1!H? B9U 'JJh9U* D$kJ9U  $J9 }kJAUжJAUPR9_ В$KJ9U  *J9U꠨ $A9  ,lJjJ9*dBRjJU/ 70&?RJ5.vIRJ*4#˯9J Bx-"ϓ?n IJ BWW\&!ۀ BA' ];lA9$b-HA9!$II99 +i?9g1#wL918.I9g1?m+m9g1$v"a9g1WA9g1˜';9g1 f'+ I9g1 $\)l99d7N99 UU$U붩99H994m۶99ؚ(499A $994M[99Z_:$9g1~#m>9g1 %)H"$99ZU; $99Wd)a4۩99WUI߈9g1)-lqig1F1PALg1F1Uiʒg1F1I(lg1F1y>u g1F1I.mHg1F1 ?N$ g1G1U"3rۤg1F1$OҒ$ @g1&1*!OM Mg1F1U#I-Tg1F1U#Iޖ Ag1F1U# Hg1F1U#OIg1F1U$߶mg1F1U %~^Kg1&1 \/2 BF15575f B9@!I B9($Ў B9T?Fn*J9~$*J9U=I B9# B9aI B9Ժ*J BUUWm0?*J9*۶mJ*J9Pv BA"IRׂ B9C4I B9Oئ*J BUU_$M*JAU_y h*JA͍ I)J9_vm)J9*vyJJ BzPIsAg1%D9g1$9g1$T9g1:6JJ9+/J}SR*B* "D'IL&RkJ/ ڭmbRkJ  C۶i,[J9 #`RkJ*Z ,'RkJU_] NĶ#RKJ{} ' kR Bzz ~'- JA I? JA__ v  B9 m J9 I- J9 ?l JA~ l *JAUU y, JA_Z d JAUm%9 A9W^Ir$A9UI&A9G1IR9H1ϑH9h1ύ$ 9h1*m 9G1A$A9G1Cj 9G12v4@9g1?N0h99UI$@99U/I@9g1!I 9h9 {-9G1 k 99UUU I.A99UU,/AA!&@9g15?9g1ڱ#@9g1 fYvL9) nN99 C8m+l99!H- 99 "r~A9W#@nӖA9]6n 99!dIIA1"Б-AA9U+$ֲO" A9(/)Mr B9.*#Vy>m BB zP*%vI(BA-'I[ IBB .(`v,IJ)B߿0* IJ)B3,۱) iJ)B3/h' iJIJ.40IJiJ'7169BRB60KJiJ70'nYJiJ80?IRJ62cǤRJ+6/+?Z3RJ7mARHB 6!Ұi>5RR*Kz)7IRiJ[! ]bڊJiJ`{'~kjJIJ($Z^jJ)Bp-JJ)B~t67*J9 q/KAAg1!/9g1,Im 1g1 hqJ9g1$N9g1U$JCH)$ 9g1@IBӇ9g1UU MIbχ1g1U0Lvh9g1UUhӍ9g1UU6n~R9g1(l69g1/ FҎ㸈9G1Mv؈9g1(A$Y:9h9( An$9g1 $I&6Ag1 "?99@IݖAg10I9g1*09g1__UHg1&1mNKJ Bzp] OI׶AA I"@T BAU q<uKBGA I Ӵv BA  II$ BA Ib BAU H BA ItkӵI BC!Q BAꪪ6hA9_sӶ 9945 99 .<6-B99 ZRjJUUШRIBNn`kR)BW_$PJ B1z%b9g1 &n09g1&OВ9F)$om9F)$^m9G1Ww%o9G1UU$cm9G1UU#R0M9G1U]#o n9G1UU#~$i9&1" 9G1U ~Bۀ9g1uu؈Ag1)_A9$ BAn I B9oߐII*y0H B9헂mI*IA9vm@A9{w9'1x`vng1F1UU%):g1F1UUm,$G1F1U- dG1&1U-G11* i$g1)v#g1&1 6BG1&) m G1&1U-%G1&1U 'G1&1U +@?g1F1UU m $g1F1UU  l$g1F1UU ]: B)'/'7  d$*J BU l c'JJ BU ,I5p@+A9 I"a\ B9M@v*J B* -LmJJ B+NIВRjJu"k.pORJJ  $q+HDRjJ%;APRjJ*&"aIeRJ*)"?r`wRJ*$)9 RRJ +') &RJ-'a㖒RJ^ 1)@IRJ2+@ ݐRJꂂ5/ Ie'RJU*71$&RiJ80T[ĪRiJ81ֶu'RJ81`ΙRR 70Hbm'RR5'!RJjj+DRJ 0% 'PlRR 1&@9ϥRR+$*:RR)PM>[RR[%;!RJ %}۫RR\;d]RkJ wykR BZZpp#dvA9#OO9g1 "/M9h1#. 9g1'I9g1/$׶Ig9G1Ժ@g9g1Z__"Km9g1_UUp$۶IIg9G1__## g9g1UU_$i#9F1I1F1kM B1,i?I@A9 #AA9U  B9iI@ B9$I"A9۶ MA9/HA9߲[emIA9_{OiAg1zꪠV]9g1UiBM9g1U*q!)A9F1ꪠЦin9G1emK9G) [I 1F1 Ig1F1[:mU g1G1а$ig1G1 d;'g1G1 lg1F1*@vg1F1 $ hg1F1* #9 3g1G1 0N2 B)//'' $@*J9 g*J BInJJ*BI aJJ*BnmJJ)B 4nJJ)B*I8TJJ)Bx4JJ B]6@'*B Bջ m۶P*J B 8@)J BUUT**J9VnO*J9W6II*J9U$hI*B9 UIH)B9UDILr*B9ۀmVK)J B֦]v*J B JJ9%6H1%1$&I?g1&1#H?9G1!$qД9G1q?9g1(\)'9g1mK9g1Wm܈9g16KҀX69G1b-& BA$E2 BAm1IAA I BA Iq' BA { BAU}۴ $ BAa B9# M B9_-Li B9UU pܳqAG1˱Ag1W9G1 ,Tb9g1Ј9g1(I؈9g1iiڈ9g1[;m69g1.) ӈ9g1#؂H9h1 nRy 9G1㵃MA!IBM9G1 In69h1ݺ 9g1*I޻I99uӺ$I9g1 Mq9g1!o Ag1*"@A9.!cאm B9ݿ  *J9**O *JAIr$*J BHjJ*B Inڤ RJJ_ߪ"9-RjJ$o$ RjJ߫'I݈IRjJ&!i6aRJ '#Mۢ@HRJ )$T RjJ*+%q-+ RR,(X6IBRR,)͂fbRR* .*)(RR*0+d 4RR 1-@ $CRRR]2,m(+[)B1.aݺZR2/vI6K[JJ2.bfbZR0# [R)"]GIdRRʰ.)Pzk:ZR_-$;?ZR__[Z',RR# lۆ RR$=RRZ^VW$H&c;RR-:$c:RJࠠPN&?kR*BxxM'kJ9@JJg1$I*Jg1$ JG1H'AG1UAg1UHAg1UU  l9g1U$N,'9G1@JAg1Uch9g1N⸒жh9g1着hAg1I$*Jf) n] @ BA? B9f'HA9?6 A9U&HA9U< A9]_'A9UU&A9__$A1v91m$Ag1* $$9g1 <9g1WU &9F) g9F1WUm' g1&1.Mg1)m環G11Ig1&1䐴MG1F)$@BF1&)( uG1F1( * B&15577dq I B9#,[)B B,c;JB)BWAvfJJ)B*MqkJJ)BIdJJ*BAINKJ)B԰MvTJJ Bjj&uS;JJ BDrN$JJ B4vJJ B vJB)B䖿$JB)BmuJJ B @N,'JJ Bm?JJ B4n'JJ B$I'JJ B lۖ5ZRҠ&!v$@RR '-RR*3ZRUi&RRwhıRRW nI$RkJCnжRkR O"IԖRkJ  # `RLJ y.HжRkJI"@dیRKJI"ITRKJIRKJUW-LtR*J  I$kR B-NkJA_  4 <*Jg9_ m5 Bg1U *A1yiږ$A9 ~ B9# B9-tA9 O A9W#@A9U?mA9 A9v*$A9 u+ SBH1 ;99 =AA9 !qRR菥*XGRR]۵PWRRW R;&RRҀ "ċRlJ jMRKJW 䣵9lR*J #M`lR*J]]yNfkJ J_ N mжkJ JU n"L0tkJ JU i iKJ B MJ0IKJA_W -HM*BAUU 1Qؖ B9pપnA1H`# B9 H'CA9 ˶m4 B9@ B9$m:A9_*$AXdH:A98D B9몪D~ B9着f% B9U8$ B9$A9x[99 _Y99>y9g1ന9g1!cR'䎇9G1Zۨ P9( vC0g1&) eƀЎg1G1S!Srg1G1U!É0Ig1G1U!Išmg1G1U3g1G1!m#Β(A9F1Nl A B9 ?Ϻ#I*B Brl) *B Bw^ӺJJ BI AJJ Bqˑ+JJ BIv *J)BZ$*B BV^vh&C)B BugǭaJJ BPuJJ B$JJA4JJA '$iJJ Bߪ ܒmJJ B_ '$IJJ BU ڔ$ MJJ BU JJ BU 䒰 JJ BU%mM Bg1W)?qև9'1w)INi?9F1 'Iβۨ9g1 &IBۀdۨ9G1#ߩAg1* ͺv IRjJ*#-ARjJ,%Cn4nJjJ着-&õmRJ*-)ILB RJ0*I3ڶRJ0*RDRJ 0,E RJ *2/ڴ]2RRx寺0-ذb[ RR+2/m )[-B30еInRR/+1.hvi; L[HJ1)4ɓL[HJ.* 8IB9ZR.'F֭ñ [R,"` ~LZRX-%Yõ [R, ʭlZR_%:L^ZRAڶRR _ 93RRVXHRJ  B5lSRkJU ؄AI8RkJ ݶRkJU :IRKJ 6hClJJ P9KJ B $@IKJ B $)vB*J BM+JA^Fm<*J9$In*J9 4A9~ $I BATumA9 _`IA9"ϯmA9 + B9   B9 Hw$JJ B ضJJ BJJ B}@PJJ B} I"rJJ B_. DJJ9[[aG1&1]#w{ۉMg1F1"vmI9G1U s- `9F1(mI9g1dKh9G1  $9zvIA9- A9 H!'IA94MNGrA9$HBA()PA9&m A9h2 SA9 *$IlA9$IA9$L*J()5RA9zZMI:`91)9g1$$ H)$v i9g1jwMAH)d$!H)d!-H)$Mڭ9g1];ug9g1#֒69G1ӈ9g1$v$9g18uʈ9g1 ඉݲ9g1!9g1!Tm޶9g1#?q9g1"ܿ뎨9g1$~춨99&tSA9%dwvA9߯$S=K99%MA$z99+$ #I@J99 & +I@nA9(!oɖA9ת'!3r0nB9&#$*J B%#K@IJJ*B $kIkJJ% uv0 kJJJU]'#I$6ejJJJ *$%I R)B*&0&)HRjJ+&kkRjJ-(mQHRjJ/(e]RjJ0)'e+RJ1+ޖ] ARJ1.ٖMmZ:2.i%HRJ"3'6I`RJ 1/ LB"RR2/h$IRR{20$RR3/"DRb(%)[-J0+X[2ZRW.*1 (HRRU].*ŐIQRR,)m34fRR *&$-4ZR)#$A(0RR_&x,ZRUW!ئZRU֫RRmFRR  @K֬ZJZ m24RJ Ì RlJ ϱ MRKJꢀ AR+Jo@NKR BnR6*JA߶б B BU BA*qւ$ B9eۂ$ B9$ B9HӐd' B9"$ B9ֺ$ B9#ǒA9X$A9'A9 BA vV$*BAm<*BAu*BAIi*BAI2M J:/m B BI2*BAM$g BAy.PA9A9Z^=AֺA9~ q䒈9g1t49h9 * J9g1 CA9g1mb 9g1qL$iA9g1N[N 9F)qM) G1F1Uk G1F1WIb3 G1F1UݺSAG1F1PiiG1F1U)I9 "%MG1F1U@a].G1F1U(Ad G1D) IڦG1E)XG1E)ڠMG1E)čF1F) D};g1&) Ėmg1&)"Pv$g1F1Z"Dmg1F1U#@,g1G1 $dg9F1$V+g1F1%$$f1G1 $Ô֭&9g1UU#g1&)U"v$ID59g1zbt91/k $69g1* "H9g1 DA%)"(YǨ99"$599"#FK&A9$  AA% $ BA 5'#H-JJ B $!]6i״kJJ%"֦XljJJJ">5&#m]J(J'%D@dRA)&vɒRjJ+(閵IjRjJ,($ IvlRjJ-)&l IlFRjJ/)Q)nRJ/)P7dk i B9 1)  BAIm` BAIZv BBv H BB e B BIRamg BB3Hn BB  @ BACj BAI2RA9f ӒA9WZ!Cк99 vD9h9*!]f99 vu0m99ꢪuµ99y99 q;Vn9G1$Q9g1W8 89g1__r:9F1UԸ9F1Uߪ iĨ9F1]č9F1UԶh;9&)ֶ;9G1UUH9G1UUdK(19G1UU$ f1G1_R(f1G1UEҭ+ֶg1F1 = g1F1_ !u @&g1F1U"v- [g1F1U#l ,g1F1U#lu$g1&)"mg1)$mg1)$?g1%) $g1&)#Idg1F1U#3dg1F1"m`g9F1 "MjD9g1U 3T9g1*~hD9g1 uMި9g1p@A9 +l. IA9 ! h IA9vmA9I2mA9IbiA9 S$ A9Ê6HA9S$ A9Iޒ$7LA9yn4A9W^ZxQ$H9g1 Imk 9G1U!O>rm 9G1U!Im+9G1"O 9g1_^!?im 9g1U"ym$ a9G1 #I%99g1Uת I%)M9g1  "m5+9g1  "9g1k@j$ ۨ ۇ9F1"# 9g1 #$ 91%91/#v M-r99 #JIA9*#ϿI$A9U&_ڦ A9 '_i B9/* #ϖ$IJJ B+%"I]ejJJJ$(eI2JJIJ (IjJIJ(#i1` RjJU+'6ARjJ]/)[tRiJ0*q85JIJ2*/&LJiJ2,NkRJ(]0-ڵXRJ0.!0$Z:1-$$(2Z:1/ 0$RJ 1.Mv&Z)B1,M6RR0,DlRR.+]&ZRR-*ض6؊uRR؀,)m:tRR*+'mRR*)&iۦXRR&!X,[)B)!y7Y RRP\``*$vkg'`JIBx(%`MtIB9xzx)%f؎)99(#֫99~Z%"[k691$mcB9g9 6)cǨ9g1 v89g1w"؈9g1U!hdAg1**A9U&'A9  nA1m B9 U R'l} B9]mA9Un$A9U%A9U&mA9m$A9 _@lA9 )HmA9(bmc< B9 vu$ BA A$m B BC8 J:M`km J:ia͆u*J BUUiI) B BiK$ I J:` BA(knm BA[,M-8A9A9WwvSOjJJJR_s(6U JJ)B,"w$IJ(BZ_W2(1h@IJ(B3-j;MiJ(B3.U*MiJ(B40&$4$CiJHB40h:$ iJHB*3/M'RiJ1+k6hRiJ1,m[wZ:0-@$ڬRJ0-& RRߵ2+Y=RR//*붶RR/0*u:RR,*H0!RR,(-Ƥi [*B+'C34cRR8-#t];e [IB*"JH,[(J(%-M RJ*"ۄN9iJBh'!P i)B9xzXx*#Ȳ99'!1vuR99^UU$ (ɱc;99}##lmׇ9f1 5ه9g1^!c@g1&) I[SЖ9 }ߨ9g1  |99 CA1ꪪOI $pkA9W=NPA9WmA9]I¶@nA9UMA9UInA9UoqA9UmƍA9߶4IA9_ϲIA9ImvA9$IIA9_}q=AG)vLm+iAg1U}v"dIj Bg1UUUMI Bg1_U YI, BG1vi BG10mS Ag1UcAg1]"Bv^?Ag1U_")Ag1$P9G1#V9g1"@Ag1!Tn;A9Uu @A9uA9/A90$A9ƲA9%H?A9 Mn8A9*`A9$A2#A9*mmA9mNAA9$q> A9.IL A9#M9F1^# g1F1UUU&ϟ<g1&1$ 1&1%$ 1&1&߶-g1&1(ěg1)&rO@1&)W mIG1%)%Ig1)#g1&1$$0Ag1F1U#qI"Hg1F1U$ϑ#9G1U/!=9F1* #~Ag9+ ,)@v.A9l)Iv, A9"QϏIA9ߺ[ MIA9(-9I~AA9%=O A9$)i-A9mIrI.A9* JA9 A9 l˖A9yHA9W/ A9۶=AA9Zz~u۲y A1z o9g1 #9g1!]9g1#3 9g1]"#A9g1U"ۺy,H9g1U!uI9g1U*[@9g1' ˲NHA1m @A9Udّ>@A9#DZ- A9v#`A9@I2IA9@mI IA9ڠIӭ B9** ֶB BA!I"B B B#@oqMR)B B+-} $Ge2N)J B%!1)IJ)B%"&m.JJ)J#! $ RA%"$IRjJ{(!V%ejJIJ '!N` IJ)Bb-(id(B B-+ $$I"J9-) I)J':.+6mHB(B3/M&IJHB4-дmhiJHB41֦mR14.\5RiJWU0+9 lRiJ /+`vBRJ1*VұߛRJ -)$ACRR.)mRR,'q%RJ+'Edb3RR,&ĶRR?1' RR?0)`YRRW,&1RR,&ളc'RJ~z-٭SiJBx+ `sB9x+ 4'99_UU)@m?91(@$9f1'Բn9g1~%ж9g1UU'ж?9G1&Ė$9G1"49g1 @A1 Զ$A9dA9 uA9UDA9UDϟ8A9UԶO?A9UĒObA9U@߶A9UIA9_кA9ĒA9WĒIA9U@J}9G1IOۈ9g1V\4Nۈ9g1UU6Lql'9g1UU& m'9g18@'9g1*#)He9g1m+Am9g1`C=9g1R[ t $$9g1W m I%$9g1 m+e9g1""u9g1"S(dҷو9F1 */@A9iA9 *+YA9ѾkA9m*A9vB( A9 R= A9Sv=A9(m A9*A9In; A9*$ A9mۮ#A9#nۖM9&)$n߶.lg9F1"~m9G1_U!嶑9F1U!Jg1F1",[#@g1%)$[I.g1F1" $ g9&)" y)@G1!$l;g1F1#=G1F1$͖Ig1F1P'ݺg9g1UU&;vMg9g1便$>?Έ9g1 iJHB4,$HiJHB}4.l iJHB 2*u I̩JiJ/)d3JJP-)i(RJ-)r0!mƪRJ(*-(kA݊RJ-( mRJ2)O1IRJ>*1,Z+a]#RJ.+股[&RJ ,)뀵[6RJ-'mtRiJ`*% MiJ)B|) 6AͫnB9`xp*",)OB99U) ]+lӶ91( Z mI̲91 '+A_:9g1&l+}N9g1%iS79g1% v9g1 %l I;9g1UU#e+h'1F1("n LJ1g1XUU$#hg9g1UU# H['g1F1"Oh1F1 3 vl:9f1u Il]׈1F1 &ז9g1NZir9g1_#B$9g1UIMA9^v$:[ @99jZ$'(H91#$$$;9g1"**A9g1!m 1F1 l$1F1 %{?Ig1F1{ '@g1F1U $$@g1F1 {'Ig1F1U@g1F1_ "相Ag9&1 I'ig1&1 g1&1!~r$Hg1&1!y$ g1&1Oqg1F1 SsXmg1&)v9G1*/#h+iAg1/ =R AA9UO.j$ A9U?IIA9II@A9I]rHA9-$)AA9iҤmA9bmvA9 -A9[A9j:A9QI'A9ֲA9!rOA9 IA9IA9 BA*+ $*J B ,T +JA0I.*JAz@&AAA`A9ࠫ [A9 $$ *JH)[50*JH):jA9(+0I*JH)][;@A9 J.)A9@oh B9 m i*JA w?m *J B}*"6-9JJ B $&GJJ B+%/I jJIB&jJIB*(!;r9G1"Po׈9g1" 1۲9&1#?SAg1߿DÚA9_dIRA9~^rA9?IBA9POA9IA9 ҺA9ı#mA9YI>nA9Ԓ3A9V~iA9  A)A9mA9TCA9.*qq)iA9_iIiA9e )A9ִͶ99P"99^U]Km9g1'#9g1~w9F)$ϒqg1F1P% d,-g1&)#fH`@g1)&g9F) $ H9F1 d C;A1 @A9@cA9 ㆉIA9 ئMIbA9&IA9&`]A9 i3A9 bA9N M$ךA9vB$A9 qnA9IA HA9LiA9v<#4IA9Z CAA9NmA9**~&⨍*BA v\$h*J B C$A*J Bv\G *JAzzI'QAA__ݶ&@A9m?$AAȁA9sm7IA9unAA7vAAUUm$-A9*A9 $m$' B9m*BA*M*J B*UDRTJJ B>"DJJ)B%UQېjJ)B*'"ضNjJ)J(#jRjJ_U*#[RjJ-%M6RJu*$"MnRjJ.(%vtRJ0*dɦRJ0*XkM؊RjJ2)k뿎RjJ3)(JRIJX^V50$iJ(B7-$VJiJ(B:5+81'eiJHB"81'iJHBz70$viJHB6-T?m;iJ(B6-mKriJ(B9+h?I J)B.81-RJ__81?vBrJjJ70'OnJiJUW60u rJiJ[UUW6/'?iJ(B4(@$iJBZ2# ky޺)B9~U*"dOmA9)!A9+!ekA9U-"oB95.'+ >B9,' HvB9nꪪ+$#A9~( 9g1ࠀ$OAO9g1$#A\i9g1 $u l%I9g1#O -)a9g1UU'~’579g1_%(Or9G1)KAg1)!_ HA9'M>t9G1#6y;Oig9F1"cm# 9g1U"\ɳA9G)!Pvm9G1!@y"M1G1"$Jw99g1"Ƒ$9g1  nۈ9g1* !mI<9g1!4 f9g1" nm9g1WM9g1DhJ9g1 # ;Q9G1 . A>9G1 n N )A%"\ +@)A%" u+>h)A%" mIm )A%" m˱A)A%"!cI/A9g1 X@9G1 εi99?HA9 - A9]n/ A9$7+A9'~ A9ܵ-H BAu' B9') B9-k- A9S<A9؏A9;]+H JAUUvL BAUNmtJBHASr6h BAUM&h BAUO-AIA9/ $A9zI,iA9ߠ!#$鶨99b!=m9g1^&Mmۈ9F)&u ;9F)'v 'g9F1'\ g9F1&m m'g1)&m $g1) %h$$9&)+_ H{?A&1*m @#'Ag1u eA9l eA9Iݚ*J B rv*JA X mA9 m-A94jA9۶%ؖ6A9$c`A9~%?A9|vA9r_ mP9g1"I޶`9g1%m9g1(߶ඇ9G)+r`s9g1*'-!͑ВA9*2$ߖ`A9"/2'CrPB9 3'Oж(BBUUU9)kotiJBե7.=iJBZ5(ykN@niJB6-IiJ(B80OqiJHB80BdiJ(B9.ZwpniJ(B6/ 9+\.FJBZW5-ϱč(BB @9,Oj@IiJ(B5 92yRIiJHB 60euɕiJ(Bj3.qmIIJ(B4.NISƩIJ(B4. N,YiJ(B?:/qYRiJ(B 73i҉JiJR\U52M2ڵiJHB50#IðmiJHB40NHRiJHB3/C"AIJHB2-uiS׵HJ)Bꪯ1*NͱIB B.&iK)BBW^^V+ 䃑=A9-LT`B9/ -&m- BB+%u3 HJ)*%N @mB9+%m2HĶB9+##IB9+|`AG1"O2 V9g1^#O wۈ9g1&3I#_9G1*?,90rAF1% -%/ 'A9 ,%y" A9W,$A9-!m:A1j'lF֧9G1h" H9&1"/ 9g1 #m܈9g1 #2$9g1"md9g1U tt9f1`ۇ9g1_ຈ9g1__s9g1`9g1U IԺ9g1-?0~9g1W."q}׀q9g1 "9g1"0r9g1W yM9g1W m9g1UU $m9g1UUIi9g1UU9g1UUM9g1UU;#9g1UU$ m9g1UU l9g1Ib$mA9UU)Ag1n&q9g1I$t IA9 n.' B9ni8AA9_d# IA9U[Ѥ:lA9U"'vLA9u\Ih B9$ H B9'lI BA ^Ķ+H BA'a BA ?m) BAZ- BAUWع A9zzxo+9F)|۸m G1%1N$ɣ F1'1I F1) F1&)WV ԶOҶF1&) @Iޖ@!'CG1&)}::9F1UU"۝9F1ƔFr9G1 l99UU&99UUII99UU_ I9h1Ii9H1Cm9H1=I m9h9 NDA(Ad;99U'@Z;99*k $99v+ $99  @=99 &A9 [-o? B9/.' m BAHn$ BAd+Hm' BAw BAz )Hn'A9~& m99 ?9B?A9 v+ A9 $ ҒA9v; ixA9zi' V9g1#AdK91IZu[LJ9g1L;59g1n5Ij9('1uf 9g1 '#$#99+& aquB9,(@ mB9/3'-wIJ96.JqiJ(B麼4)@zHBBؔ3.Av6HB(B50 $iJ(B6-&mek?iJ(B4,$iSIJ(BjUU9'$=iJ92($$(B9 6(ܶQ%PIJ9*/80IiJHB8/Ij?iJ(B2*$H'HB(BUU1*h+IJ(BU1*`ܜ$IJ(BWU6-m f'IJHB_6/4miJHB5.cqIJ(Bw2)m#t(B(B/)&aN(B(B1)7N+HIJ(BU0+0UI"HiJ(B4+AIJ(B 3,vy"IJ(B4,IiJ(B3*жiJ(B4+'MIJ(B(3*N"LIJ(BWU3(mIBB1&m)BB_W0#Ƕ-I)BBbUUU/%~"i)BAr.%'O. HJ1.%$q>MB9-%䱯mB9,$NAB9,¼&oBg1`X!?w M9g1!jw+ 9g9(]A9UUU'*iQB9% ,%c&B9+%qmA9몪+#QIA9)$#i A9)#vA9+9oAg1`uRֶ9g1ܪIBڈ9g1>P9g1Oi淈9g1I h߈9g1 /A߈9g1 ?9g1,I9g1U$'9g1*Z_$ 9G1_?9G1r9g1"$mlk;9g1m؈9g1O9g1Ē9g1*@'9h1 жɟ9h9_^Զ9g1dS9g1Zq9g1*U?I9g1U]"@w9g1 D~2Ag1 3nA9U`w"A9UN"AA9w@A9UԶA9 DA B9 ԶI BA @v.L B9fI"M B9* T#H B9  B9 m B9 m B9j ܶm/A9 $GmI A9UU m[?A9 W_mw=AG1_ .i9F)%FO9i9&)+ r9F1) )Hg1)* ?]g9F1/%ݖg9&)#B`g1&1 y27g1F1%ШC֩AF1 +0¶A9ݺA9PrkA9BݒA9D[A9$$dBAG1MbA9mǴ)A9_li;$A9t$I99kH995?`99v$0mA9 5Ag1`$6HAG1ϖlAg1 ?$A9+ 9 B9' P=T*J B___ k;dKJ9 m*B BUUU v%a BA .8ĕA9 wPA9 .ĒA9}l.oA9YvPvA9ꪪq ԮAg1v&Hm9g1 IB gۇ9h1 "I2 ׇ9g1#. wӇ9g1"-1 9g1 -&@w]A9/'K 7YA9]1$/&B90#m)B9z5;.A)P$JB#"6* N4iJBT60NIJ(B*71+8IJ(B6.c+`jIJ(BW8-mqkiJB7%:)>ح=J9z1)f)B9 /:*KiJ9// 84" QŘRiJWWUU91._PiJ(B51 iIJ(B4,e.IJ(BU^4,DnIB(B3,wB@rIB(B着2+öVIJ(B^2,:nNJ93.Iu)J(B2.N"JYIJ(B2,m3mMIJ(B_2-I0IJ(B1,IiIJ(B]U1*ӖF(BB0*vLض(BB.)]')BBW_U/('BB-(Ml; J2-&X&IJ1,!۶B9 *ª=Bg9p'99g18D9g1;D9g1U?%I9G1/ &D'p99*)"֒unA9)"m)Bf1&d?$I99*$e&AB9(*2Ag1;M9g1O<6H9g1v⻚ @9g1*s$@9g1(A9g1$@9G1o۰i9G1 Ig9g1]U w@)g1F)img1F1*qM0q9 Iig1')NQ@9g1߿wr$9g1M$@9g1/NiI9g1* dْ)[99U5 M aA9MALAA9 $A9UZ&AvY?9g16MAG1&H99߫IwA9/$9 v'A9*&y?A9UA999 UU$ ~?A9$?A9*"lB9*(1B9z65aa&HBg9'i[7hJ&11+diIJ(BU3/IJIJ(B2.&P"e;IJ(BW2+[A'(BB[7-1piJB 6%IJ9U3&nHB9?9-HLƶiJB 71lai:iJHB˪o3.&M:IJ(BjU2." $(B(B1.[iIJ(B2-ض^HB(B]2-*M8IJ(B{]U0+mv(BB 1+@ Ik(BB+1+$ m(BB2*$Aο(BB2*$AnHBB2*INHBB2*Mc?(BB 0)@I$)BBUU/'c)BBUU0& @vn)BB]UU/&\) (B90&d+HB9.!d m]?B9)$B1Wi9g1j $'9g1 n-a9g1'D9g1%&L'B9( ~"m&A9' m'B9(#iPB9)KN`A9* .$#Ag1@p%yҶP9g1w$yڀfۈ9g1#Ю9F)#ԖA!#y߂кA!"o䖈9g1"0I9g1j*#]'9g1W!IR,K9G1}/.M$9g1կ ֋[ۨ9g1 Puv$9g1u~h9g1#8A1*"PGA9u* Dm? B9 ? J9] s˖ B9Ǯ BA$۲ BA?K JA$,Gn J9zܨI J9Ɠ&a B9 eܴ A9Ā$HA9<8aA9kǀ&AA9cqA9e$ФmA95A9) A9N7 A9q&AA9qdIA9nYS"A9mIA9n\qL99}v M9i9mNK99*1.I9F1`)f1G1䭶g1F1Mqug1G1_ m߶g1&1%ng1F1%~~ۇ9G1U$ og9G1RUU% A~b'g9F1 UU%@g9F1UU%Hyg1F1U'eKg1&)&Mg9&) ($Irg1&1 %dO$9F1 *U FV?Ag1D$916ЖA9U+$99`'A9P۶$A9NPA9 @]A9] um& B9u 9m9 B9 Rq+JAU |"` BA v$M BAvR BA(  BAӺA BA8Pr BA m*B BUU &q*JA 8 I+J BUU 0*J BU$P*JA**'%I*J9^m A9Z`9F)g1G1^ dVBg1'1#:@g9F).n$AAG)).&Zf7 B9z./%$%)B90%[&B9)Xu399~~8(Bg1~'6* AHBA 60,Ա3aIJ(B3.IJ(B_4.%kڶHBB8,mw YiJB7k7#tΒiJ9x_/&o[/@ B9:(>uK8@iJ9' :1m۶w.piJHB7.\HiJ(Bު5-II(BB6-v IJ(BUUU5.qlIJ(BU4+m֮IIBB3+OI(BB 3+I(BB3+6i۱ H(BB뢀2-u$ i(BB2,. LiBA2-4mMiBA1-$$)A(BB1,:@(B B0*1 )BBj0+s;a)BB0+$$)BBUu0*ق0)BBUUU2)_Ė)BBUUV1$1P?B9`#IҺ%91z OҲ4I9g1ϒ9g1 *(r4A1? (ϖA9"(oA9* % B9(o$ A9)m @99*-99/`'`M9G1$O8`9G1 !s?H9g1 @9g1 O<I9g1 cI, 9g1 I.A9g1 ۿ-A9G1+c g1F1Z )9F1-//=NҨ9g1A=I91 U-Lԧ91 I׶99/@l?A9 Цu?A9+ Im2 BA&Mq8AA۶@KBGAvŚAA dAAҪ]Ц BAÖ$m BA uAAдA9*ҐHA986A9$ A9pm AA9 m+A9'd+A9 'u+AA9'm A9ڪ$ A9' A9ژ A9U[&/A9 A9 ? A9]l'IA9UmI.A9ݠpw+ 9G1eq g1F1VPvm% f1)]- g1&1Iڂ mG1)!%ԒG1F1_*#~^f1G1U*$O얂g1F)!lg1&1&wkg1F1 U'mKg1&1*''Hg9F1]U&?g1&)&g9F1UU&Hg9F1]U%$A9F1ݪ#'H9g1 *!?h9h1 wL99Ā A9UUkX9A9V'6 BA*5׺ BA t$ BA $ 0 J:`I$ J B dCҶKBgA m& BA @m; BA m& BA_ )H$ BA $c'KJ9Z;c*J BKe\*JA  &; JA  B$ BA  1CM+B BUU`r J9~z`O7Ag1zz J-X9 uNl9 eizg1F)-|9OAg15-.*(tB9+.)X]B9.*0,IH(BB5%e3"[5B9`pP$P]79G1n3?Hl(BG1 4*l۲IJB4,$isIJ(BUU4+4~IJ(BUU6.$;IJB?8&IJ9T~-';IUA97(GtBiJ9% :4lMR192iJHB*ꪪ70?IJ(B_^7/$v۶IJ(BU7/uͶIJ(BU7/_IJ(BU]W6,KIJ(BVUUU3,'J(BB3-mIhIJB2-۝ i(BB 2-$PI(BB1-$ A(J(BUU0-ۖX (BB**0+fǒ (B B (2+?=(BB0*s\+@)BB^/*^ H)BBu_.*IBR )BBUUU0(OiBB/ 㨭B9p%/\.91Р"u2Nѧ91d)qc9g1%kqIA1%I-@A9򠿪%&IO"a99$ Ni99(6=A9%0mI*i99% -191b&)oA&1U#0ߖ1F1#Sڈ9F)** qm9g1 ԶO9g1!߷9g1"N9g1"T[r9g1!g۲g9F1 }^g9F1_#1F1>%XeA91 Z[vP99着m91+ FA1/ <ڬnA9  NI2q#I 2 @; BANݴI U BA m1m BAim BAm BAmjm BA& I  BA^ݪNA+BgA4 HAAm;A9ܠI1-A9$׶nBhA9ڱ A9`ێ AA9$i:`A9_d7mKmA9(`:dqA9"$MA9 ߶]A9_V\-99**qm99$z99ɤ)I99mm99⠨$H99 9g1^^p[$vg1G1Ut;0rg1G1xU!v$Png1F1PZ!Ag1F1%P9F) % 9F1[_ 'g1&)(ے$@g1&)''9G1UU&pO?g1)%ϓg1)#Ig1&1w#ɓg1&1"@yg9&1UU"Vyrg11 Fڈ9&19g1 BҩA9NA9  дNu BA{ 0lI BA  "qB BA* e֎ M BA  b[Ƕ#H BAdkt BA $-AAU_ ?$)AAAUU ?$ IA9 f# BA $m+ JAZnF BA [ BA -ܭ H JAUU mv-@ JAu $I+J BUUժ  B9xzxx-'9G1^^Ν$/ G1F1P'+HG1F1P_<g11%~G9&1 )"gy99/&lT B9 1(T,(BA-X;?˺Bg1^_W2HB)?0%؇xFMHBB޴/)#ۓ )J':/(['¶(BB,(iǀ(BB\W~8"X./iBf9b(! H994$- HB9}?/7+DJ0AiJ:)*73t$iJHB6/: =6iJ(B~2.$H:(B(B1,mג0M)J':1+:0r(BB8/+(BB_/*긫(BB/'.*`4eiBA/*`(BB"((0*Pe(B B/*`m)BB/_[0)d'(BB1)d~n)BBwU1)`wr)BB_]1(о)BBUU1(PO)BBUW2(`)BBUUU2(M)BBUU_2#`ۭB9bp- ?O99r(@Y&e291&?}91'~A15)pοaB9(I"IB9'dI"B9(#mA9) Զ.I99(Ъ(d?99*(Nb9&1W asM91 ִۆ 99"$$J99 _;+Ag1** kıA9 v$č B9 n' q B9 .AA J BAU  ӦMEf BA m$ BA ]8m BAݔ$ JAժ[$n BA $DAAnP;A9*ÖؚA9[mۖ$A9 d;A9@"$A9m[$A9W0m$A9XMm'99 im$99$Al99mMi99$mM$99 * В99i99UUj['9g1ngLj9g1 nuA!ɝ9g19G1^_~~`G1&1P_DF1&)9:6G1%)>dMG1&)"g9')#`g1&)$`ۿo;g1&1W$`Og1&)$hBG1$)$H '1%1(]5G1%)]+F1%)-$c;AF1)mmKAf1&) v<-+ g1&1 :$ i9F1 ll HA9I BA  vz, i*JAUU $; JA oli J BUU8m JA d J BUU ރ&I JA I *JA$$H J BĐ J: "Đ$+J B+ $ +J B  ۶v+J B D]4+J B  m$аQ+J BU* >$č+J BUf+J B&w.a B9p`@!@9G1_"T9G1!$Dg1F1*! i3 g1&1"u$Ig1&) (uA'1+?1%n%B9 )4Ӻ5(BG1`r#-(@9G1z216 (Bg1 0*i IJ(B0,$ H)J':/*ګ#A(BB3)dHBBO8"iB90$l?B97() iJ1 "83䭶iJHB㪪72mmiJHBz4/v`IJ(B~_5083IJ(BW4/-6vIJ(B_W^3.vDA9ZqA9IiMA1ϭM A9UqrA9Z_@99#m@r99_TJ9g1ö$i9g1 ú4ڈ9G1ݶԶ9G1 ڃඈ9'1ꊪ&}Öh9&1Z^$؇9m];ԒG1&) mg1'1%g1G1e.KG1&)]6G1%)`&1%)#v\c g1F1$OvAg1F1#Ce+g1G1j"N$ g1G1U "IR$9ag1G1!ug1G1W"V Mg1F1* 9F1/+++kmiA9 I$M BA NI4*JAI2 J B寪I Զ J Bɳ #+J By.hf+J Bՠ#A+J B_H+J BU. 0r+J BU"/H@+J BU  #I+J Bm #i+J B]* 3n@+J Bu  ϯMPn+J B_  Ođ+J BU  I2q+J BU Im0I+J B_ iSR Bg1````#_0g1F1W"β4mg1F1U!ybg1F1U"ӮHg1F1U Nʕđg1F1#6C;1(j*;\DJ')b&Hm[9g1TUUU5[?qC(BG15' 2)|LfliJB2-nXiJ(B.,D$0)J':,)lX(BBx80.ڏ(BF1-1՜(Bg10 'ThHB9% 0*aB&mIJ(B1.۶ۀ6IJ(B40 Ѵ$IJ(B2/0l)J':1.6(B(B0+ R(BB_0+A;(BB{U0+A(BB0+w(BB0* ln(BB1+ش'(BB_1)qcm?(BBUU/)qt)BB_^UU0)@/)BBUU/*жkJ20*qq$ J20)Qg)BBUU1)mo(BBo}UU1)$Iw?HJ11&Шq~B9 -&mv;A9,%(iA9( #q91X)"0Mg>91)#'Hc;99*(! OҶ:9'!@IL99'!&mò99% Im99%9F)#i6@9'1/ "$I=A99"yI,99VX_$"Z i9g1@ ![{9G1DN-qh9g1Zmig1(1pm9 PNg1&1T$g1&1@.g1)@$F1)m]79F1?5I<99Ilר99 k?A9- mlAAww AA =l$AA 횤KBGA IiKBGA MmжAA eqܶAAA몪 id BA m[ BA v$ m BAm$ BA`I84LA9?HA9N A9^ިA9$ A9 mۂ4I99$I99O?mA9 4nA9߶0A9 ( vN:FAh9 Զ99od99_`۩99UzNRj`Ǩ99[J9G1~ g1F1UIm:9G1+~Md99 M$99+ I9g1"m9 fg9F1$m#ڑg9G1*U%;6g9g1%?-)IH)$ Im+h9 $v"nMg1F)# @ g1F1`$G1)*fdF1&)Զ%'G1)P'G1&)G1)d#G1)G1&)Z:>9F1/%/d'F۩99  P8VAA0# 8 E BA  "D'HKBhA $6 BA  `'u+BA ;2 BA u JA  ;nm*JA `m;I JA ۶M*JA 8uM+J B  M+J B ݭ+J B `v,R+J B ֶͲ+J B dN+J BuеI\w J B/qSu BG1````!Wrϲg1G1U%@M9 4Lq2f1G1U ]-N\g1G1 =1-&9"#5Ibng1F1*")Hmg1&1: &v9&1'5VH$NHJg15.iiiJ(B"2-k M=IJHB2(# $k;iJBz0-(B1`3K4HJF1>/tvvL(B9='2( S4hBB1+6i&HB(B1)$IHB(BxW4.pUIB(BW3- I6J92+Ih?(BBZ2*$I(BBU1+6A'(BB]1+@f(BB*2,i'(BB_1+& (BB_1+\ lk(BB U1+n l(BB]UW1)v @$i'(BBU^Uu1)+A5J21)/H<B9 1(+@m?HJ)0(-)A"?B9 /(v ,B9-%W7B9-%, #'A9𠪯+$fQd99)%$EI!L;A9'MXA9'!#'l$99&!$kW99&! AN$99'!au99&"@I99((ߜ:g1jھ$NԤm9g17 &!4mv$A9% mv(B&1' dE_A1($" C&99('PZ99G19Hڈ9g1̈9g1]+M$9g1C=$j/g1F1Ivg1&1nCӐdG1F1yg1F1$H6g9F1.//5ڤ3999 Ҹ991 :dkA9  du$A9 $$A9 `J$I2 Poڔ$I2 $AAU nf'AAUU $Y`HB)/' 6.3[9 iJ(B4,9IJ(B5-vS iJ(B1(C+iB(BUWޮ.B(BG1p&-\|](B11I$HB92*f$) IJ(B_0*vB LHB(BBʨ1(O])J':4-Ok MHB(BU]2*3$H(BB2)%)A(BBWUߢ1)@(BBUU 3)}?$ (BBUU3*;e+@(BBU3*ϟd+P(BBWU3)'m (BBUU]2'(BBUUU3(<, (B92(v< B93(n-`B93'um B92'mHA9I"AA9Imf?A9OqA9IpA9U_Wے9g1 Ҷg9g1U ߖ`g9F1W&og1F1&߶@1g1^WU&кg1F1 %O޶g1F1%Otg1F1$>rfg1F1$> #y;g1F1% ?1G1&?Am'g1&1 "$ߒg1F1U" @IROg1F1ժ#I_g1F1%mg9F1 %0jg9F1'@<9F1'@9F)'`ҶoLj9F) !9ޤ>Ag1  ' JA ﯯ?*JA h?m;+JA_ ?,i*JA $t*JA kk*JAW dek*JA $m BA  JA ,خ*JA ;m+J Bw $-+JA ZW+JA} īj+JA*_ ěP*JA_ ۂ@ B9 4ܝ B9j~psAG1pp`z!mG1F)*"lv;g1F1U#uؒg1F1UU$$g1F1$v?g1%1$m{g9F)0ĭBG1u՟57'm MiJA (71ni'iJ(B61S;iJ(B6,Ҁ6IJ(Bj~6!1%(B9`p/1ݺ(Bg9a-|5pB(B954&/ÆMiJB4)?6hiJ(B1)$I)J(B{2+$6JIJ(BU3,tHBB1)l(BBpWww.*`)BB/+hDZ'(BB]].+ֵm(BBw/+L'BB/*CM8(BBUW.(iY'(BBuWW-(m(BBUU?-' `lc'(BBU-'Mm['(BBU/&Fm(BBU.'Hm?HBBUߪ.'6nn)BBUx-&0,?HBBU-&жe)BBUU+' DK6')BBUU,&@i)B9",#&?JB '#8IjJIB(Y:dBJ)B_!nkoiJ B!aS1IJBz'"fNj99'A9zz$B$99%! IA9%!DI"QA9$ DH(B&1$nvM(B&1&O899:*-tN9G1X\VP5&9g1}T9g1U_9g1Ig1F1P^g1F1*URѦ[MF1') Ժ~,G1G)$ty[ng1&1:í9&1?Z>3ب9g1"'v91mA9 SnA9 `;nA9 v A9 Ж#A9Nm)Ji1`IBrA9Iq*Jh1M)Ji1A BA  dI BAW  I BA&ImAAz7ImAAU"$IBAAU;M *J(18- AAӐ$A9`Ǥ JA9֤aA9$$@*J()iSA9ꪪ\2ł=9A9cA9W n99DA9 qVa99z M `99 ) 4$9g1`q*Hn9g1U]VI2 g1F1jIkJ9UBF1&)I3L9 @ G1&) q3ang1%1/b=G1&17A3g1F1[ -g1F1 %7Ͷg1F1"$)AOҒg1F1#жBg1&1#`y޶g1&1!Ķyg1&)"֖OG1F1 _ $jf1F1U 4L]g1F1UH8g1F1U6Ieg1F1 UX>Ag1- " m BA+ )th' JA 3Hmܺ BA IB BA__ [ tm3 BA IIAA  v" BA] Ib;I" BAUջ nI BA ɭ AAPе}o+A9I?/HA9U_?v A9-A9!-A9Z m<|iA9_W n+A9_U_$m+9&)ڨ $- 9&1Uu)e 9))'m 9&1UU%\ 9F1UU& 9F1UU&9F1UU9SPJ&1 71IbڜHiJHBꊀ6.~RIiJHBׯ4.q2iiJ(B5'uIr$-hB9b-h>H(Bg1\'Cڂ$M99+;5ivPWiJ9-6-Ο.0iJHBw2%PhIJ91*N&pIJB1*$=Ҙh'IJ(B.)mHJB}.)v(BBU .)zm(BB.*vb"hHJBU.*dB1HIBB--)vlӢHiJBU.)vjIJ(B]-&qԲIB(BU,'v2i6uIJ(BՊ,&;A@nIJ(BՊ.'~NКIJ(Bߪ *,'AIJ(B.(qrIJ(B"-'PIB(B'+'tL:dRHJ)B}*'MҴ:4HJ)B_*&m34DIB)BUU*'Ht[6IB)B]U*#-jJ)B%"C1IRjJ'BrRJ$TMJiJ%@ͻ jJ(B+"ƶϣ99"`+PGOiA9ؾ+D"B9*0rIRB9*mBB9*mB B9)IҖB9 )0l>AF1X%0I>i9G1W*"49g1 * @I.9g1 mO.9g1! N- g9G1"[y ig1&1"yܖ% 9G1"fN @g9g1$q4)H1g1UU##9G1????]S h99m7@99Zu2 A9- //I̐ @ BA  m{$ BA N] BAI, e BA @I BA HD BA v H BA uCB$k BA ^kHٖ JA"v*Hf JAI BA [k+BgA-Ie;+BgAMH$AAUmm&AAm 4AAMQ`'AA$AA!$A9$A9D!AA-A9-`7A9Dڱ8A9DvlA94ѤA9cA9жb99 `ۈ9g1`$вog9F1z(`o9F1 U*d^9F1U)IҶ9&1)`Iڈ9G1U(`In9&)'`I¶1&)&d_vg1&)%dBg1&)$кyNg1&1&вg1&)U%@g1&)%P'g1)#@g1)"PO?g1)!$~~g1&) g1F1*ZDOg1F1] CAg1+ iM>A9 @ B9( RA9FqA9 @Ib;A9֎A9 I$A9 IAAUU @&IbA9 AAPd׉;A9к;A9`A9oX6IA9ؐ A9UW ƐK9F1vi1F1~w؀Mf1)L#Jg1&1e g1&)(ң0Jg1F1~nےPqg1&1 IDg1&1{*1IB'1U?/:%TI$IJ981ր(J(B70~qiJHB 3.]iIJ(B~2`2(BG1%w) I9g1+ 'fNM'Q99+++%vێIB BA 'm=HAAw(mK#HAA}9IA95KjAA9nWz 벉[ 9g1~2K 9G)誯$%HN,Rg1F1 HCNBg1F1 VkXg1&1[nmڤ9 kIn9 JL#9(,Ig9g1_^/-eBg1 *7*I&iJ(B ?70i؉JHJ60դiJHB࠯2*53'iJ1z^99g1ך9g1+/&vD9g1*+**)$I99.'-wB9 .0)&y(BB1)_?B-iJB+%#];&jJIB*%mhjJIJ*& I" iJIB,'qiiJIB,'N&턵iJIB+%eLiJIJz +$vβHiJJB*$^Ӎ&AjJiJ*!].+ujJ)BZ$q;i&IJ(B$M&`IJ)J&vG iJ)B)%#AMJJHB)#v+H3iJIBߪ(#HnҶjJ)B)#%9qRiJ)B_*"- \IJ)BW)%MmIJ(BU)% @NIHJ)B_* sڊJ(B$ 1-A-PRJ$/Hv.LRjJ$i qIIRJڰ&e{RJBj#)+h;R B*"$[RIBU&Hv"rRIBU# SnJ B#tCRIBu #|jJAjq8g+|*J9_b=*J9LuDj*J9]IM*J9i m B9$RP B&1x%#m9F1U!?i&lg1F1U"v,0Jg1F1U%Ͽm4B9F1 %I"@ M9G1 $@9&1*** I>9A9Um L>A9U/ mm BA IȲ*JAUy"A$Ͷ*JAUy. %ٺ BA mII BA M֎ BA N`+ BA HUA9 i$ A9 1iAA9 f2P @AAIC4 A9qM$HA9 A9S IA9ڐAAA//n⒐$A9IbA9&HAAUU,AAUUI֒$@A9v&I)+A99%0A9wU t8A9h9 ͝ i9h1 R5IA!!? 9g1$m' 9i9DS#AG)vm9i9"9g1~h`"Av\g1F1$l=h~޶9G1/U_!. mI߈9g1UU$l;bg9F1p[Z## _g1F1#$ @cg1&1#d hg1&)"m9 g1&1$Prg1&1%O?жg1&1%O<֖g1&1 #ɟ@g1&)$ܚ@g1&)!wDg1&1!c0Ng1&) 7m9F)** A9 }biA9 q0 AAЊ wo?(HA9 uSA9 siA9 $IA9 $mA9   Q BA:IbNAAsJ BA mTnAA.&['A9-pA9or9g1eLڈ9g1W#9(59(fLdH)"Ϙ6H9g1"k$ (A&"#m7 9g1"#W;9g1*vX]Ag1?52 K?(B9/"$uٖB91'ضiHBA 5"1S?IJ9j(#)I9G)+휿, 9f1(#,3M9g1**)691.0&&?IB9++6)-n+h(B9 4-k'.(BB<2)jiJB%.'vk JJIJ-(kv jJIJ.'xNjjJiJת-'ViHjJiJߪ-'Zv,JIJ,&۶im,AjJIJ +"'ujJIB+"BiJIB (! m+iJIJ' mmlNiJ)B("MajJHB꫊,#NI[BjJIJ?',&lζ#jJIJ,%z)ajJIJ*$Ad AjJIJ_*$Ñ,)jJIJW.&߿jJIJ/$m[aIJ)B-':jJ(B*+"r稍R)B% 9IRJ_$j:[tRJUU#T6+^RjJ$%>7RJ #Tc9RJ rRJ (@RJ*x;j+ RJ}U 9RJJzpwJJA UdC B9 mܶ B9પ F/ B9F~JBhA$RJBhA`IgSAg1``)N g1F1] F1'1 Mm2l9 j;G1F1Ud$I9 c$ 9&1??$P99 5A9-  IHAA I BA q+ڦm BA NvKBGA ~2_ B9  +oi BAU*k`G B9 ﶓPA9 w$nA9߯ NPA9IB`AAIR`AAIR@A9 M A9I?A9O`AAPnA9~0jA9WU 0r99!_m9g1 "9g1"?m9g1*"n79g1/i9g1$mq9G1#n瀴m9g1("l$ i9g9#m?m9g1 lm?m9g1? A9UU@A9U mpAg1&mth9F1ި&$g9F)&u?g9F)'g9G1WU_&<dg1&1 &`g1&1'?dg1F1_W&`g1F1 ݖy G1F1mIq+G1F1*!I2Hg1F1UU#}? g1F1WW# g1&)$~ 9F1 "I?. 9G1#w~m h9g1յSA9 v6 +JG1vܸ$)+JG1 R$MA9 ϑaA9 q MA9NBc*J() uMmA9 A$IvAA*M̘A9B6A9  eHMAA[d&jJIJ'%X>cުRjJ!ĢhëRJ飼 Ҹ:RJ6nDrRJ!:RJ ò:RJ֘֫RJ SPiRJ8,/RjJj ISkJJJ  O;j"ԒJJAq2X BA S0n B9 5T6 BA  B9Mƶ BA tuNA9퐼1F1_^'uAF1)Ґ#IF1')I2nF1&)ж#IF1')`±9&)/f~9g1* 8}.A9)- ֲvqA9 @Oy]K BA. I BAII2` BA IAA 䴒IEAA ٢H AAPP  ɺ*Jh)  A9 :lMm*BhAڴia*BHAۺm6t*BHA]״k;l*BHA=אL RA9 kێ-AAAvv A9xnm絫 9g1 umo+A9g1 /l9g1"d-9g1WڠضI9g1$Y?wI9g1$d 9g1- 9g1m$n-9g1]-ĭ 9g1 v A9f1>9g1e۶O+9g1*o/A9f1 /ku l9g1T i;9F1WW&H?f1&) R m^f1&)IҶG1&1WU@ӲG1%) 6f1)ICF1&)$ IVf1&)IMF1&)!iOog9&)*!0iOg1&)  IIg1&1 IO‰F1&)rO^ng1&17iyqg1F10l1F1 ж9g15%8mA9  f3 A9q" A9d' A9$I"iA9 gIA9  ~A9* ? A9*'3jA9~IA9"mA9$IA9 i#A9jj 唷 9g1zzm-Hg1F1WҔ LG1F1 U% ig1&) ;$)Ig1&)$)Ig1&)#$Gng1&) $"'ag1F1ƕg1F1Ҕ6hg1F1'4g1&1ēFh9(!5$ 9g1*]&=+eS9g1'O!ڒ 9g1%$ 9f1( w8& 9g1 )j T99?1? B93(y-+h(B9 2*׾- (BBuuU5+m-)(BBյ5*|miJ(B3(~'mijJIB .(S۵ JIJ/' IJIJ.$I$ jJIB-ݶ hjJIJUU*!~+AjJIB'"mm jJIB'!em"liJ)B& dHq,iJ)B% vm'mAiJ)B% oaIJ)B($~iJ)B' viJ)B(Ц };iJ)B($H6_jJ(B'$ذmmR1(#]W 7jJIJ'#) ȐjJIB(& ;[&JIJ "=8RjJ ئA&RJpn,Z :MZ :IīRJ[ kۤZ :bmZ : 4٫RjJpmq֋RkJMCJkJUUqjJ B\^hnZaI B BҦIJBAO>[l B9ڶI# B9j$*J9{9 B9ࠀ &YAG1VV!C67L9&) @g9F1!g1F1U s hg1F1_IbHg1&1֐$i9g1 3H91  _A9 / S`A9*Z A9*~޶ B9 S B9 v(A9  o H B9  I{s B9 IŽ$ A9ߪOA9 Ͽv$HA9I" HA9U% A9 ]s4A9AAm A9W^_^Mn$h9g1ꪺIܑۨA9h1(vR)9h1  -"9g1{zjK  g1F1 v֔m9G1 IېhS9g1-@ۇ9g1dLY@S9g1I&9g1ֈ91 tؐ&91([o*t9g16Mڂ+g9g1iҵg9g1@C9 uM6f1G1 eg1G1__IݒF1) INSF1)"T q{g1&)! u\G1&)" Acg1&)" MIng1&)'$ G1&)U%,F1&)U -%9aG1&)W !&'m;aG1%) iJ)B% d'v" iJ(B&!$v iJ)B& %) iJIB+!ܿIiJ)B*-$v$y+ jJIJ .&nw R1-%\-jJIJ.&'AjJIJ-#o'eRIJ) c RJ*'ۖ#RJ j ?#HRJ 뫪 -h RJ#[ǖ9+@Z(B"ZN@Z(B"Ұ4RkJmӶRkJ dԋRJJ DqB&kJJJ XnMkJJJ $I!*J BZ hdY)JAM8*J Bu fw BA Ωޒ+J9^Ƒ B9ʅ&If};Ag1\% m9g1U$ ?9g1U 9F1zનg1'1I-iG1&1hXg1&1 I)I9g1}/UU+,I9g1uNBڥ+H9g1 W S۬Ag1  }IA9 KyHA9/ -hA9 . NmA9* ඩuA9 $~A9 ljA9   A9)I6M;AAUUu$AAA]xAA{UUMݖzI)NSA9 Hب91 ۖ9G1$ A!#2),9g1HB#R.& 9g1 $i+9g1}$և&I9g1#c߃4H99u# `9g9$O^ے$ 9g9 %? 9g9#Ir H9g1z%m9g1%sm9g1*(%m9g1%^9g1UU%mg1&1$v)g1&1ߐ$Ig1&1UybHg1&)!qAg1&)*i'$F1(u'%@F1(fg1&)ժ!$Ig1&)"N$qg1&)#'@g1F1Ww" rg9F1媾$<Pg1G1#nFv9F1$9g1"L:9g1//MրF;A9 HA9nA9 ;A9$ A9 A$A9"@m$A9]$d'A9$ A9AA9($@A9_?A9U#:AG1Pj;9F1[Drc?g1F1SRmg1F1g1G1UDug1G1U4jo?g1G1U@g1G1UV~g1G1\!w1F10ig1&) r'g1F1j~g1F1[!0nyg1&1!AՊJ)B "кƂ@iJjJ? =6"«RJiec3$RJ$Р@JRJ/*L۴mRJ F6-RJ jmkۋRjJW ƃTrkJjJ  o'7kJJJW I'$IkJJB_* eƓMJJ*BXa*BA|\$i BA '#H BA-F BAaA1 N99 Ik.թ99_p m$9h1 AqkA9 LmA9_Iɟ$A9 @I$A90m?A9 UUDm$A9__ MwAG1"MĈ9g1! 9g1#oܨ9F1"qy$9g1 M훻9g1 ƖЇ9h1 $Id<؇9g1* i؈9g1 vb9g9'I$9*9g9( Mg9g1M g9g1N"A$9g1 !ߚ9g1"o9g1U_ yr9F1"w&g1F1v!mNpg1&) yҶ IF1)Ib$@F1) Og1)! Ig1)!Ag1)!?$ig1) H4G1F1PP #mtG1F1PP OdG1F1PP3fG1F1UU#IDG1F1PUUvmTg1&1 IqPg1F1Vڇ1F1 Hک9g1 OжA9( /mdA9IRkJ_3 8RkJ BYkRJJ_ vl`kJJJ vB`;kJJJ]U u*JAب uJJ9 P)BA 9$*BA 5 BA p $ BAZ] -HAh9Xmuې؈9H1Ю$A(JĨ99_Ii؈9G1mui;9G1@nĈ9g1+񷶝9g1ж9G1_Զtg1G1@qKng1F1h?/9g1 = :IMA9c?A9 InA9Z_&۶AG1 vl99*.lm99UdӉc99UUhuIRl9h9 ݺbMmAG1 0I99$0I&9h9*O 9G1m&e9(3 m[9( H)MknH)tk'Tg9g1-ڭ H)I9Mg9g1_m< 9 `'I,I9g1UU+Ӳ9g1_UUmg9G1UNҺg1G1U`w9G1* TNh9f1!vއ9g1}!ۇ9G1"@qg1F1[!@)g1&1  ]k'F1') IF1)!VG1F1A*$G1F1 @;g1F1UU n;PG1F1UUԑg1&)UߠoIF1&)UI߀4IF1&)U*ݲ`F1&)Uc F1&)qu$IF1&)*Ibf1F1 "!I$Ig1G1ת m$I9g1%UU#'H9g1 Ni9f1;Ұu91uNܵԩA9ñ@rA9OBPAh9mA9mƶA1v@v9f1!ߖP9F1 #9F1!D:9G1^]t'g1&1ߺ$g1G1U_IҶ<9G1UmێЖg1F1 m;n$g1&1 ]-i89 .RǨ9 :9(ARv'9g1]icZ9(Mv\9G1"0ݶg1F1~"@vng1F1 $@rg1F1z$M޺9F1&@i 9F1*/.@rvA9.D}A91%OB9 +3'@B9 1(4NIJBU0%Б)J(BZ ,$ml;jJB*$I$jJIB *$l&ejJIB+&bn$jJIB*% ifjJIJ*!R/B]&jJ)Bz$!M IJ)B %"Ia$jJ)B&!m;diJ)B&"#AiJIB'!3AiJ)B*"CbTiJ)B (O OiJ)B '"m`JJHB&"N(I@iJIJ)"Om5IJjB)$v mjJIB,.5?jJBjzpR%)xIJ: /(C(ҊJ)B $OBxRjJ"\;֫RjJIRRBoĊRJURjRjJwmހRjJ u\TNjRkJU Jr[&kRJJZ t;kJJJZ Nf'kJJJUZ_ [7&JJ*B 핖*JA6I'*B9_#7r B9/DN B9nG> B9z ItA9(1HؘAg1z4N4F9g1 0 ^Ĉ9g1mmk'9g1 @9g1M$9g1Ж9g1v9g1_^P؈9F1#`ϟ9G1&DI9g1 UU&s9g1#FwRשAg1*IJnBA9U]ЖIA9U_A9tasA9*@voA9 mqOAAҰVAAqܶA9 D1cA9HAIB3A9 @ yrA9RX^^ k'n39g1"I9(9&26rl;9g1 !mo׈9g1v lnԈ9g1q"H&;9g1 lt1g1m͖1g1iaö9g14ARЇ9g1_lBg1&1I0g1F1ZDg1&1 bb @9(I.1g1UU(mg1&1 Oڀhg9F1 kĀqg1&1^Ibmg1&1Ucmg1%)mg1&)W !g1&)_!yr@9&)UW "nېg9&)Uuf0iAg1$6j9g1U< H9G1$@9g1"- 9F1"' Hg1F1/!ll9F1#9G1*l8$'h9G1 mǢ9g1?.MӴk `9g1 i; t9f1 Q,ێ9g1I2 mև1f1q2dڇ9g1N"L]Ƕ9g1 ڇ9g1_Ͻ9g1Ip?g1F1at6g1F1mLk[g1G1_ I ,Gg1F1y2 TRg1G1W vg1G1U m[g1G1%.9 Isg1&1*] 9 q l;9 ! 9(v 万1F1)4g1&1!v'g1F1 "=9 $vn9g1?'*!THr91+#OB%99zP("GA9?,&3 #B9/((.(Mp)BB+&v lZ;uIJ)B**)%d jJIB )&Im@jJIJ.*%nyۤ jJIJ+%q•FnjJIJu*%uIjJIJ+%v@NjJIJ+d;jJ)J&OւIIJ)B' ﻓ0MiJ)B( ӷIiJ)B磌* AjJ)B* vbրHiJ)B+"Sې$iiJIB* ]iJ)B)! IiJIB*(!wڀ iJ)B()!Oڒ iJ)B )#k jJ)B/38/iJ9prpp*IoIJ9-eHhJ B- $_ARJJ몪#~[ RJ}uA9 Z,A9 o$A9_oۀA9_A9_ݲp'A9oA9vkA9wySA1z -9g1~!_$9g1]!dˑ$9g1U mKn<9g1 uuI$9g1 LR>9G1+ 0vo? BF1 @<*JF1 *J1U!Զ*Bg1U F)Bg1U C BG1U y^ BG1U Pc BG1U PIn BG)U ĒS*JG1U  PJJg1Uֶ B'1UDWv9%1UꠠfLP9%1ժ6M9F1j$IA1m봐 A9UWҤ A1- `[A9U]w$99 Id99Xon7$9g1 .Aw9F1` 8il'g1F1 m؇1g1uM븇9g1D$9g1؆vK$91*(RcR91ذI(A&"۶vK7l(A&"mű) (A&"$4(A&" i"H(A&" صA9h1 5A(A&""q29g1V$- 9g1^$/A9g1U$.g9g1[_#'/H9g1UU"I:9G1_^f' H1G1] u 1G1$m 1G1!u;N9g17Uu!$u+ 9g1U "? 9g1U"mm l9g1ZU!m'm;A9F) m< @1F1!mm g9F1U 'm n9F) 'yn$lAG1%"M0lA9U*&$iB9ߪ%Ibۀ iB9&#MvB9*&#[u)BA&"tLD)BB %"I$hIJ)B%!68@IJ)B&"8`PJJ)B&"i' IJ)B&!XVIJ)B*%!$0$EZIJ*B$@;=B9IJ)B!ؖm)J)B"ݔn)J)B߯%i$@NiJ)B'!4MiJIB'> IjJIJUU'[>$qjJIB_&l@iJ B% nmIJIB& e[ǀDIJIB(!PIJIB&"8HIJ)B,$TjJIB,"hWjJIB*".fJ)J$k:`;RJ#;vRJ}$-?RjJ^+ˑ؋JjJ U;'RjJ dM$RkJU ,;M?RkJ*U P'RkJ_U HkJ)J-Ҕ?kJJJWU59 jJ Bz_ I*J BU u' *BAU %> B9 ' B9z vA9h^#@A1~$Ag1zzu+m?9g1U n$9g1Ud $i?9g1 Ml$9g1 ,?9g1-A$9g1&)$׈9g1^XX_ M9G1u  H'1G15 g9g1Z_  i?g1'), Hd9G1 iV?9g1-H'99 d $A9Z_ XB99M$99%;MЖ B1n=Ai; B1n+A& B1%9HlĪ99 N'A9* 19g10Am9g1W_$MNb9g1UU4iڇ9g1UUS9g1 UUIڇ9g1UU CAg1+- 0ö B9/ ö)J9 D_*J BUU I*J9  @Oޒ*J9 öJJA*GN*J9P_ B9 *PC*J9.~KJ*B - @MKJ*JڀrsKJA^VZzrIA9wW[@NB99 0MqA9UUlMӶA9_ mI499 v 99 #A9 #ד&A9}#&A9U$I?7 A1(s')@9F1^W)$c H9F1*&9F) %\ @9g1UU #'d 9g1_$'m 9g1_#me H9g1U!-$ H9g1ߪ - 9g1U !%m i9g1W ݚ$, I9g18nM9g1Km9g1 \g91$)1F1M۶6 9 ڴu9 t(AF9g1UU]g1G1=g1G1\I"g1G1*mMg1&1*~>rđ9 _ovg1&1 ~Ē9g1WIBRT9g1UqMԶ9g1UU ^ۇ9g1UU y΍9g1UU M`'Ag1տ&k&Bg1/&;`B9& m'B9*(d RiB9+( &)BB/U*"$)')BBU+"&Ԕ)BB-#,)@8IJB *"$)HjJ)B+"lMjJ)B*+# I&jJ)B,"$ $w?jJ)B+#j-@$jJ)B+" IҖjJ)B()>jJ)B%l+ JJ)B%n+ IJ)B & u9iJ)B("n-Hd'iJHB("u"8iJIB& -TiJIB& ͲƖiJ)B%!vB$IJ)B(%"I4IJ)B%!c;2 RIJ)B&4zuIJ)B($DviJ)B)#$ɲv AiJ)B("ֱijJ B+# RjJ#09RjJmƶڋRjJ,UO֋RJJu ҶRJJ_ InۋRJJU Ķ_kRJJU_ TIBNR*J U жIIkJ B_ PymkJA_ #ВSKJ9_ Ēo*B9 4N B9 @r B9^W mA9UUfoAh1Iݲ99U@r199PR][Dڱm:9g1ֶMA!$I)A%"mbm91 qH)A%"I2iJ9g1yiP9g1^X MNI9G1u !-M9G1".9G1"I2@9g1U!Nn9G1(!~2m9g1"*O@A9u / ~4A9 O=BrA9UINnA9UmPA9UɳqA9^IԶA9CжA9u/OrPA9_$NrAg1z'mPn9g1]"'M@9g1U'ID9g1U%/q9g1]%y9g1U&#Hm9g9 %OHm B9UU$"i0M Bg9U#II I Bg1U$#im Bg9U#O"i m Bg1U"/i I)Bg9Uy. Bg1UU Ͽm I Bg1U #**Jg1 3n4IKJAUI.I$KJAUUP+J9zz=M0Ag9__v> P9G1 q IA9UqksFAA9A99 !A96m99҄Mv?99* 8A9IA1"4g1%1 #$q%LJ9F1*"$I[}?9g1* ! $܇9g1 nV'9g1 @9E1 dڇ9h1!+i'亇9G1 Z:0A!ݚ$ H9g1!e?@r9g1 l?4n9g1 dD9h1 n8@9g1*!܂Ե9g1wW"<߇9g1UUZ!n'g9F1 N7fLJ9G1!ےg9G1 ][>g1F1 -]d?g1&1.-kא$g1%1 vݶ1G1mKNg1F1oe+g1&1$g1&1(g1F1hڵ$9"@ؚ&g1F1"*~ɑ9g1' !@4m99 Ҭ99 $ A9"MƉi BA"!I$IB9($!Mu BB%"݆mI)BBտ&"EIb2)BB%!2)mJIJ)B+&"- 1MIJ)B&#CMaIJ)B%"C `I.jJ)B%"m;t]ڵjJ)B%!C6 IJ)B%"ImIJ)Bꪪ$!]uIJ)B&"M;-HJJIB%# jJIJ'$eIJjB'#hA R1$nVAIJ)B &x3iJ)B&!vӴ IJ B^'"nē$H)B B '!%i'ö)BB*(!\WJJB($$8IJJ)BUU*$'#WJJB'!&7JJ B!Fۢ1RJ X$mRJ Xw'uiۋRjJW6mRKJ_fǒ0kJKJnaRAjjؐ(r99]dm99Uj? IA9$IA9Uo'A9_$iA9(U lA9Uq@9h9P9G1mT9G1yۈ9G1 Obd9g1 ]В9g1vԶ9g1 qBЎ9g1II9g1ݶ¶9g1I A9g1nV 9g1_^\Zm g1'1%Ag9g1 vt:9g1 &i& @9g1!$i ̈9g1@:[:9g9v:4A9KA9*m6A9&kA9 $ 3A9 $ $g'A9A%AA%A$A9A9 _%7 /A9_$)ۈ9g1V9g1 U!HӖ'9g1* 9g1 f9g1(! "9g1* 0md9g1* De؇9g1* B׶89g1ж;9g1H$9g1*C$]9g1*;@9 #i'8g9g1嵕 X/:X-Ag1--  F:@AA  [&A9 u{A9zj 9g1__l[9g1-?91ʶ'91((r9g1 *X99!'Ag1ϟ T9g1U-HԶ9g1U#忈9g1ժ-V9g1߮_ v,l[봇9g1ת%&pn9g1* '"v f;99'"I99/(e+HM>A9/*]&5'oB9'$)lB9(( % $)BBUU(l_?)JB/) AsjJ9*# tIJ)B?/(# @^ӭIJ)B*$d vjJIB*%6 jJIB)%D@vBJjJIJ)%̈jJIJ*&"(JIljJIJ)%HP%;R1)%%A4H;jJIJ)% )m;jJIJ)$MjJIJ($c'jJIJ($H i&jJIJ(# vjJIJ$ If'iJ)B'!$NdiJ Bz& FӔ)BB % 4ZmIJ)BU#h&JJ)BU#ERJJ)B .'!؆i$JJ)B&>JJ Bz!ئm*J Bu `k?kR B +  #?RkJ*'RKJ IRKJ W h丌RKJ(U lR,R B@hA9$99W&iĨ99kv99&JД9h9ۺi$9g1Zu&9g1-$9g16D$9g1 زЈ9g1Iֶ9g1I""d 9g1$)P$9g1*-I$Q9g1 C9g1I"A) 9g1MB$-)A%"vmA9g1I޺~9g1z`!D9(")I n9g1$mВ9g1絛#I$m9g1*#~.(A&"#O"59g9''/}?A9] YRA9~–tAASAAUUruAAyAA&AA n$A9m?AAm$A9 ;d'A9ꈪ&;A9맒A9U炔$A9dǃ$A9WA9 In]'AA UU$m>AAU$dy?A9HA9 &A9Hvk'A9Md$AA*UU[HA9N"mA9'A9ORA9INDA9IҶԶA9IҺDA9_O2ۀFA9 /uLA9+J'1IbĺAA*qKDnAAU d.8OAARͲt[AAU c2lGjAA I6mA9 fX AA FM]AA륯 Ob?AAU XAA  &l3;R B-))) nkvRkJ+ VylR*Bj Mm+JAU -1 I~+J9ָu+BhAԖ AA!nq9g1\X#ԖI2I9g1#Dy 9g1 iMA9g1U^nI@g1&)۶m @g1'1$IIIIg1'1]i9 MdM9 -@9 Mi&9 !OBpg1G1W"ޒg1F1U#IRg9F1"og1&1^ ‘жg1&1UImPg1%1 OЖg1%1 ÍTg1&1INr9g1Uem9g1U_w*Q!H9G1* n"l@9g1U!9i&H9g1U m 89g1*",Mf?99/1H i9g1qY9g1W^ֶLE[ͧ9g1"  k:91!MA&!!Qe99뿿#d m$'99R$T;-$A9U!@$B9"l$$B9 Hh')BB%-%!IIB B(!PvIJ)Bk*"/IJ)B(#j]IJ)B)#DndjJIJ*%j$iJIB)% J"jJIB*%6vgjJIB/*&@Ih'jJiJ+%Ȓd&jJIJ) I$:jJ)B*0A,JIB*_) ImjJIB)$nVjJIJ*%uvjJIJ*%j3LIJIB& ,1fSIJ B&"4HjJ9&$ C0 jJ9&#iujBA'"ݶް(B Bں(hj[)J B^WUU# BAW"c JA*/^k- J B甆w^AKJh9C JAW]ܭ-@ JAUqn"L BAmI BAi IAAdWǭmAA+nAAoA9 A9x@99_UW\8M9g1* 9g1~^жmވ9F1"w׈9F1!>ވ9F)"&99F1!6w$9g1!d9g1 `۷߈9g1u9g1Tc9g1 //o91 s%IR9g1кr9f1$ Q9g1 v M9g1m$v 9g1 s'q 99*!S}a99  ̏nA9 ~KB B9 I~"H BAUW m L BAUUWIҿm BAUURl B9몪 C$ BAU αe B9 B$ A B9着 l+ B9 O¶l B9 O$' B9߿ r, B9~ ?rA9WO(@A9ͶA9*XA9 $mA9 ݆A9 nĐjAA [k' mA9* mP;AA HA9q'A9H&A9[%ֶA9 ڐ֮A9 qiA9[A9j I$kJA)##  ARKJ d'&aZRkJ fKJA^X IuA9$0jO[ORKJВR+J PnkJ9W"m_ߨ9g1"$uNߨ9g1i9G1_m$g11D$g1F1 Gvg1'1.&f1G1/Uhd$9 'g1G1턢`2g1F1:g1F1 lFg1G1褂ԍg1F1M9G1')[& G1&1l4G1&) G1&1:HG1F1$Ag1&1 N9g1U 5 g1F) uG1F) mG1G) P'#+9F)+++ v9g1*Иj)v9G1.ۑ9g1>!6ǿ}_91+/$#,m91$V)P99Uw#&Ѧ 99% kk'v"H99$!I4I`A9$ڶ#aB9& vۖ+)BBwU& kIJB% vlW IJ)B**%ƱӢjJIJW*%k${*@jJ)B+'NlƱ#AjJIJ,&NR%ajJIJ**'kjJIJ*,(IbY$EjJJJ2-(qkR B+ wI–lRKJU@IuRkJzUZ PjIB֋RKJկU uIČRKJU ,BRkJ mJJJ kdkJ9zZxxC&I99и˒9g1۶1G1jꈨ8g1'1dG1%)Dv?G1&)l'f1G1U @6g1G1 u! m?g1&1  $g1&1!$$g1&1##kIRKJ  rrRKJ 1 NR9z^ @R B9UU0I9g1IBi9g1z*ζ4n9g1]ꠠORƒ9g1U_wM4b9F1U m+@ɦ9F)UOKb69&1q,(Ҩ9&)Ibʂh9&)=KкnG1F1 vllf1G1UU+lVf1G1*Kf1G1^[+h8g1F1I$f1G1$A'g1G1 U7M?g1F18؇9g1#$ "'9g1U k1F1diA9-  IAA$AA@HAAI LڮAAf )AA Ò4IA9 Iұ A9 vҵ8AA9 S59AAUS#7 BA}%G A9_Zz!n99g1WZ!'t h9f1ߪ L9&) y# i9F1*?#aAg1U*yǴ?Ag1u3Ag1U*>I޾ B1]IAg1e$l h9g1 j?d+9g1uľd99 #99Фm9g1 "*Z;I\w91ֵNWA99+iӥ996)bA!h6 A!P5 A9//[fn BA$ @KBgAiöKBgA㘄hKJg9ݵ B BIܺN JANRw&I JAM JAIbE*JAvq*JAI꺒i BA uS0 A9j뀀Fj A9 r(9A9muA9 S'X:A9   vl:$@BA$JAA'HAA[BA9 .\-aA9 fKAuAA<ÑA9 (@϶A98A9'LA9ꪾ$@y޶A9$)Hi$AA'kmO?KJA / u$RKJ*} a4$RKJl=KJAv&"RA++RKJ" I$ARKJz ykT RAzz -) BA__z"\ HA9WWm Ag1n<$ 99$}AAg1vd A9UU_mb 99OI[ A9U)H9g1&H9g19&1M,ˊ g9F1*bd$)g1f1mug1G1I df1G1UUIig1'1 r;g1&1w;hg1F1P ;g1&1!m '9g1_ # /g1) 6Ag1F1 m+A$g1F1Mg1&) 6?g1F1   `'9&)***# I$9f1  HA1 " &ۖA1&=+91&mH?99%/AҘ$99$? @A1 " f B9 #va B9*%IIli BB$q#f)BA##q )B9om B9ql? B9!OmIJ9* +"NKrIJ)B*&#aFjJ)B}% iJ)B*'  AIJ9- l#amJB*'Y9 ڸmiJ)Bݪ&CjJ)BU&mκjJ)B__%=nޚiJ)B&w>O]nIJ(B)!I=A_IJ)BU]*"-LIJ BU_' @~-)BA % B9(HO"A9 vA9#4/m99fJ/`A9Uq `A9U#5A9 /?kiKBHAh1  BAƭ7H JAUUUu H JAU_ NK) JAUUvR JAUU v–'L JAU_ߪ S-A JAUU 9;j$ JAUr JAyR0A9^|~ = $A9g1 +@$H91"-I")9g1*"l+hmnAh1//I,v[A9 u,h$[ BAmdY' BA****il)J Bq %' B9zꠠ56Y:A9^x/H99A혻A9U 6)-A9!$ d'99l+H-9g1] Hܨ9h1m+hǨ9g1l+ ҖA!=B#;9g1%Ҩ91 *' BA+^m BA1C$ BA(J`: BA[;dKBGAi@ BAzЦX BA֥X BADS BA 4mS) BAT$ BA^"`4A9iA9 кj;A9 `uS{A9۪mA9 0 #A9mi۶A9 fAA* tMѴBA ڠ297AA 4o BA2$@I: jGA9 MA9 Ӷ AA$)j$A9|$ %$A9_dd+J9* * d+H[YRKJZ v I#iRKJw۶4H+JAVS#+aKRA  N lR B/UU $vlR BUU o lR BzUI[ J9~+A9ZU^$991 ض 91 $$A1 Z)`99m>J99__V'n;I91P4 99M 99u69g1x]in;@9g1w$e+9g1UUwR@g1'1Iº#@g1')IҒ# ig1&)?rMg1G1_#$H9F1߿*/M9g1U*N븎9g1~ #9G1Ӿ;v9G)7+L9F)Zl9g1U%  3Jv9&)zl hg1&)w /[ߨ9F) - I> 99* 91m91%KR99 %m?99 $=rp B9/ &O B9 &vM: B9%~$ B9%#RY B9z:A9]ضiA9V -IrwB9*'#$ t)BA #LX?*BBU&؎)J BUU&CJPR)BBr)1n@IJ B)"O^IJ)B' fD)B(B%%&рF)BBꨊ'!u4)BB*'#Nlۀ8)BB("n)J B)#F%)B B*'#DA()B B'm; BA Hmc'A9 m$A9zm7A9dc'A9@vA9_UԶA9WUUA9*UUG]; J9  кO? J9 ɝ JA ` J9 `׶c BA ູ$ BA] T? B9 Զ} B9 ? B9*_vA19g1U Pn'9g1U T9g1UU `%9g1H\m?Ag1/'*D$A9 T$ B9M BAVo BA*$Mǒ BAAg1xxcm:Vڨ9g1 $I2H99uذu91aٚ 99 ɐ C91ۖ Y91Iu91@]91 ЦmqA1Ab91 u B9+&h3 B9 Hö BA u R JAU $v^ J9 _0m BAU OR J9  O޶ J9 R JAUAIb JA(U &߶ JAU_  >A9 A9(  vNA9 d HݖA9 c @A9  cAA #+aq\ BA ,-AúAA -)Oޛ JA&='Ah9P$ Jg9U$ Jg9 hNޖA9(WIA9?~ A9 A9n IϽqA9(* mh-MA9 k[pKJA_M$I+JAU @j JAߎ+JAwU l A`+JA ;H$+JA M+JA .U B9zࠠdƑA9UO0nA1"y\RA1* mA9Uv<ึA9UW@JA9Uei> A9U]$P 99' I99w҆m9g1n?&9g1m<$ 9g1e'$ 9G1  9g1*$$+9G1 9g1`x`PSMrg1F1`v νI&@9')/ O d)99u)$)H91 ~'IL99/ UIg99+!dnmIr99  1 MA9!Ik$ B9$I] IJg)$m @ۺ1 B9j unA9_ C>A9_3A9W(q7D B9- &!Il)BB, O)BB."_>)BBp( l" `)BBz*( #AV)BBp( )BB(mmt')B B^(af7)BBb' >)B B [, Vn$IJ B/) 6A)J B*!$A)J B^U+*X)J9"A9 !H?A9  #$A9`}A9u m?A9 _$Am'A9_UI$A9wUЄm?A9WU-A9Ud cA9UWv& A9 UU$AA9UI\DA9UUOv&A9_Uϖ HA9UUO IA9{UUMN M9g9M9g1ꪪSڈ9g1yޖڈ9g1ϖdۈ9g1--9g1- 6FA1/- *nkf? BAuln' BA eɹ BAl Bg1 ZqAF)oAg1xxUӦTLj9g1*ب9g1ب9g1*Եר9g1[vf;9g1ې9g1;@91ke;Vw91 veۨ91"m&Ĩ99zzO GA9?[A9 *G B9*nؐ4KBgAeB BA^ ip B9 \D BAI6AAvvаnAAIbRII BAqKF`AA[_  #,IA9z I2hUM99 NAH99 q"Ak;IA9-qA9 ݺ A9[ A1mͲw>A9 nA9 dr, A9 H?mA9#A#iA9  `A9 lA9_"lA9 H A9 iI"hA9ꪯ* d"$ Q BA["\ BA⪨IixA9 A-T BA #I BA 0B BA X+JA_W ɝ?e +J BUU*6m'A+JAԎmA9]]XX@֎99/?HA9}-MA9* 'v>A9U_ -AA9U_ lA9Uު'ɿm9h9m9g1 ! HJ9g1}*!<ε9g1"h7Ո9g1͒h9g1('R׈9g1US׈9g1*vl&9g1 EeN9g1`n^9g1XlIۭ)A%"!3M9g1Rb!i9f1 y[$H9g1**Hm799&Dz 9g9"nSI9g1;/ #iY99.# Xm99￿# nI399 %#WNJ99/$!nm99*& %OI B9'&!uXIBA# 4[6 BA#EDJJf)$Z6f B9 65A9{@nA9X^( n0 B9- %!$@(B BuW*",@&l BB)' iJ9*%$a:)B Bz+$Ib:)B(B '#I,Y;)B B *}(#In`')B B %P Qd(B B(Nµl3)B BʊOg&![x]b')BB( 0BH)JB)&Iӡm$IJ B($)BAjZ #`úM*Jf)v 뺵A9N"$ AA9*Ñc9 A9?d A9IҮ-pA9Wꪪv IA9-)A9wrd IA9*-A9m+ A9};# A9_y) A9W"K99"eٖN @99z"ؒy"A9g1!-WI9g1!$WRv.H9g1!%qϭA9f1 X9f1 #v 9h1(( d IO.A9h1 k 9g1 ;-~ B9 $Atò BA * AIkJJ BK JJ Bu/ ᖖ BG1%$9g1+ݘ9g1  9g1 l 9g1*/H'9g1vH9g1/I<9G1mI;9g1*w-m9g1v+nt'9g1nq9g1KLj9g1nBr`ר9g1v2T9g1399ںA9 nǙA9*jJA9  kmA9 v@CA9 uDA9 hA9 dA9 \2 A9ꀪ 62@99U$'99 d'I99 $$A9 A0$A9 k$뺦A9 @&$A9NkA9 fjAAĎNA9( d&:AA*$!%AAּ C0mA9*j+tA9ު vlҒ@A9 I$4A9 *}]; BAr ys J BUUu2ڠ*JAUW 㷀$ JAU d[Z+t BA$I$A9 $I$ B9 I+JA/UU$ɓ+J9wA9WVЖ91: &A9^j~;A9.oĕn?A94n7A9DnA94IA9uAǨ9h9!)yJ%t9g9 v< f)A%"#=و9g1 m9g1N=mi9g1Ͷ6m9g1vʱ4 9g1Nm9g1IZmU 9g1߿. [4I9g1! 9g1##h9g1ꪂ!\eKA9g1!I.'H9g9*%vbuE9g1^> %o99+'C,I99P*&m99"ekvL99]$y?L99$NImA1&jOKAB9% vaB9/ $ݶmI BB$$ A9 % I9A1z&mAg1(mN- B9/ )0AҖ' B9+ҴM)BA)"@')B B*U,$I@:)B9j-i B9*IP B9(6k B9 '#4!HNX)J B% n:t])B B[_'6o3)B BOuu&qu)B B[_)!B)J B)I#-)BA%m$W> B9!&I?A9"%bA9Mb;A9 SA9ömú&A9A9$A& B1"%$;A9ذ &A9}֤$AG1ðmХAG1۰nAG1[umx99dۈ9g1֕nׇ9g1؇9g1 PN791ڶcۇ9g1 nڇ9g1i89g1muh91$I[69g1 $I BF1*6Hmn*Jg1  ~JJ BUUI$JJ B+4LI$JJ B*BG1p$9g1(9g1WH'9g1 ?9g1 +@ܨ9g1e)@$9g1m+H9g1%+$9g1% H9g1n $9g1,I'9g1 -)m9g1 .i9g1 M9g1%-iV?A9ݫ+`'A9孵& BA &aJ BAVִKBgAH 2KJg9vI6 BA *$JtlS B B`! BA^#QVvZA9  ;A9nm$A9  I,:A9 +]'AA aum'A9 &Ac'AA , hu$AA$A9,9B5A9 9Am$ BA* HAAP 9ޘ?A9 c ]$AAbٴA9$ SA9im;A9 *: #q BA @ JA{P)C+JAX^UU GR'AA *BA6I$ BAnI BA $9 B9z $%99Z0Nw~?A9_U"TB~rA9UU$HI Bg1In9g1 9G14I1A9U iyJA9UDINM99RINl9g1 ^0i9g1IL9g1Է_ֈ9g1N͒9g1 @c9g1* dIB9g199IȐ99Y9g1 1M1F1z" klg1') - lg1F1 NL9F1 !m46hA""R$99[$vܚd9 9h9#O~99/#-L99"ֵ+ 99"m+ 99 #ΦA99"u'-#A9csk'% aA9,$ A9/oX9 9g1pp )jf B1 (emA BA&!6HJBA'"$M BA *'#"N BA*( PT% B9 &?AA($@u> BAUU$P i BA '!uk)J BUU" A4?JBA'%j)J BwUU&$h)J B_UU& B9itlA*J1 U!ln *B9W!/ JJ9U! JJ9U"m H)Bg1!m Ag1z^! H9g1!ܾ 9f1  9g1o߭/H9g9q۽@9g1n/ 9g1c۶ @9g1 9g1vҶ-A9g1 &9g1 I"An=91?iA91A$+91ꪈ m)l91#;A9/~.hc- BA/ Ajv+JA d"R+JA y$+JA Im$+JA- v$+JA u-v JA m+JA_o % BA_  I4A9 m mmA9 u m'A9 I$AA  A9z )@A9WA9 k A9 6I ~AA$@$I2AAE mAA*4qAA * ImAA p|۴AA  )6AA he2AA  0iv*JA 0lI$+J B$ K.+J Bj +J BU `߿*JAW Ct+J B*_=r+J B 5+J B()p*JAzzZ vn@nA9_C JA9y̲$IA9*đA9'$mA9m< A9?A9$'A9_!&AA9WU$?ܶ9G1z "?9g1U!$9g1WU"$ 9g1]U#$$9g1#9g1# 9g1#$9g1$ 9g1%$9g1ݠ& 9g1U%$9g1&9g1 ) -i91'"Ě99۠("X h99/+"m$+A9/'!h'IA9&b[' )B%1%$?L)B%1%m&i)B%1&-Ԛ99*!ؽ?F990n99W#To99 u^:>9Ag1'Hm B9 (Ord BA&I` BA(ې B9)ߖ6 B9(#|pA9%oA9'Obۣ B9('ߺ BA(ߺ BA$ BA(} J9'Y& B9pm`A9InA9}SۂԶA9UߨN@nA9__zQ99ߐ0r99UUv$ A98AA9}]_m8 A9Umd)LA9m$lA9ߊ$m+A9_%A99?i9h9$?M99ؿV9h1߿ߎ9g1 $ڈ9g1 Z>O9g1_[`yڈ9g1UUUжӶ9g1UUU$o9g1UUU жy9g1!;Ԯm߈9g1!$9g1T۬9g1!`洈9f1 @$9g9 W!T9g1 @9F1Fn'91!r&91!@zܐ$91 I69g1AǨ9g1AdǨ99"iߨ99$L]Ǩ99A8990Htب9g9 muĨ9h9$99:hب99"4Ө99(Ac9g9$A9--  JA C J B ?+J BsNRvL+JAvH4)A+JINH+J BzIB )+J B  +J BV N JA_M|AA #$IAA i,mA9* --IA9 I-I$ A9 &l$A9$A9$A9U$A6$A9 W$ ۖ$A1@$Ah1$A9U$$Ag9$iA9mO$A9* "VɝA9 ?? @*J BU $if'*J B*UckKJ B*mKJ B $If?KJ B~ q"+J B t,"I+J B n J B q뎜dB BA^^\m`A9;A9AQA1 A9۰mA96 ҔA94H?A9ꮪ$A9ZmAۨ9g1x 9%9F) uqj$9g1-I$?9h9 [ LBK9g1Z@9g1-)1g1U $g9g1mv؇9g1DM{S9g1IJ,A1g1ޠ ZN, g9g1Z^UU!$= g1&1$"H9g1%n+H9f1:(- 9f1 'F~B91 (e)99 )$/l99%y'@99P$w/@99$ۖ$n. 99%l? 9g1 m 9g1,{;l A9g1z(D Bg1 $ 3>A9(  B9 (n JJ9(y~v HIJ9'm' BA$\娋 B9$6 A9'mA9~*.'aە B9(!y-l J :&"N$ J :"1$JBA&tj# BA @%] BAVW]Z*A JF)& JF)ۚ$]a JF) m2A9[&ۺaA9L'M99E$ 99E%mmA9$EA9"HA98A9_u& A9Uv8iA9U4m'" XA9:۶aAG1NT[996آH91I$n9h1 C>-9g1c'T"H9g1[_kvۆ9g1UU)I9g1UUNR 9g1mM9h1m۔-9h1 O^ 9g1NZuL9g12*C4CӇ91! A996CA$-B9g1 Ltlو9g1 )A C9g1 9 Nڈ91  I'9g1  m'99@9h1 4l$99UMo99aAH) @v;A9 I?A9'A9* DA9U~nA9UU} MIRA9U* B9*  ʶO+J B I+J J* Jդ#+J Bz #0+J B $QNLZ+J B C+J J Ժvlo+J B  Fq+JA 0INv JA_ L۷SAAA &I BA v, BAqmBA9z $HcA9u H_A9$IA9F@MAAZ ??KAA 8DZAA*kmA9 US#A9 ulښA9  erM\vA9 NoI A9"+ ݒ)a*B9+:*4Ia*J B⢢$ I*J*BAMJJ*BJJ*J `+J Bꪨ H$+J B L2LH+J B $ ɐ+J Bi BAI! BA[_^Ib[ۦA9k A9vmA9몪IړA9>đA9 ؀$A9^ mA1~ IAG1WSB%3A)_(rAG1U 6AG1UeMA'1U" [Ԓ M BG1Uk$ AG1U(]$$ AG1Uk$$9&1_9G1_$4 9G1UW $g1G1W &g1&1!$A9g1պ"#$W6-9g1{ *$-@9&!W(L9! +'~m)99'[' 99_ "$k? @99]""$* 91 `39g1' H9g1*F6d-9g1{!mǾW9g1շ/$)v[A1 !s?A1! &JvJ B9 nv BA!Ēu]7 BA~"[3'A9p\D$A9w]UFNǩ99uU#A9!4Z B9 "I"i BA"0HeY' BA#9ؤ];A9  p B9w`$A9UmA9Uڭ$A9Uh֮A9@WݲA9_d'qKAG1&vmAG1tvm99&n,MA9}d;#A9WĶ-hA9$v"A9ߪ5 A9ߪ'1 @A9U'maA9_U_Բ$9h9ЖLR9g1жOB9f1ڿIΑ9f1ժ-M9g1UP'MJ9g1_U$~Nn9g1UU??1F) ?ݶ9g1/Uݲ9g1U'߲9g1Uݶ9g1U__9g1UUUO{9g1 @r19F)JI9F) D9G19 79g1UUi89g1UUܭ߈9g1Uڵm9g1x9g1 [7A9u4|A9UX;]A9(ېֶA9@&$C2A9 (*дI&A9 kA9lڢi'A9  cAA  D;!RKJ9 @;(J J B L 1 JAZ_Z_H JA @ J B `۳+JA ؤi+JA 8+JA^WWW ߦ};AA mA9* .A9  NAA iA9Z ضc;A9 vٖA9  A1 w A9_UU oA9  ۮA9Z $itA9 5+A9z wmA9 %799+$ B9.$$A*JA՟vk;N-A*J B"h4`JJ Bd KJ*B// c:JJ B k$i2t+J B б$KJ B@cKJ+JzUAnKJ*J0VIkNKJ B&IU BA# Hv8 BAUW) Kۤ BAU ic BAժN= BAݪv,an[ BAuv LۺA96HI BAM[[ B BUU#R= B9r2G BA%J@ BA("hðm B9iW$]n B9I@A9訠LaA9rdYA9z^tݖ9h9*ո-A9g1"vm9g1Z$븹9g1*$$Ww)-H(A%"& Ķ#@9g1+vކv 9g1ߟ/+[9F)?,<,*# AN99)%NlD99*%Iܭm99 %˯.91(j#=Po9g1( #I.i69g1 "3H[99%%'A MA9 '!vîH B9+ $ {Hi B9W$ $H I B9 #uIJBgA#m(, B9*`pnHrA9\I?6A9W"t@A9% "8&AA9#$I B9#$A BAU#0M BAU#L: A9b ۪ OA1(.q99yrDA9UWTA9UUOn@A9UUo׀ЖA9UuoPA9UUI޺PA9UU ӶжA9U_жA9U_ yA9U yҶ`A9]_A9UUӶA9UUIb$A9UUϚ JAW q̶=LAA Ino9A9qM lA9{]Iq"HA9U$H1=n99 A9/~N JA d5 BAz Ќ_AA  `RiAAP'Pw? BAu $*J BD'*J B>JJ B Ԏ'JJ B m?KJ*JضA9jxyA9 (гM99TA9WuUԶA9U}UTA1W$A1fkA9__Xۮ$99ԺmA9`-$A9A9::A9UК8ĺA9U<dA9UؐԶA9U?A9U-A9d:A9]_9g1ʀ㿒׈9g1Sڨ9g1MnP9g1/ ߒ`߈9g1WON`9g1uUÑP9g1]UI"I`9f1>Iж9g1U#`ۈ9g1UO"Iވ9g1Uж9g1U#mP9g1]ж9g1WINr@9g1UNI@9g1UImDn9g1U#y]nM9g1 #wB69g1"I޶m9g1iA9A9 ñ$iAAOn&IAA* v$AAIRǀ A96 BA Il  B9n" BA]vi BA %If Y BA  v'MB+J B߷ !$MH+J Bw 0+J9jz i%k+J B im[+J B MS"+J B (B J B R+J B^^rQ J9b,!iR JAX$K2 BA u.Z JAUU UT JAUU_ i99P S@99_UͲDr99U*vӶDA9u  ;VXEA95  ,;0 JAW l9 BA* ls*JA_ m"u*J BI2I*J BZ Ԗ*J BU I@@*J BըI,`D*J B *J BW IMD+J B  y>rmKR Bߪ v"р ;KJ B [JJ*J_=KJ BzUd~JJ BUB*BA__ } B9  m&_A9@mA9u(PIqA9U vnA9* @m B9 4# B9 &iN B9 6j J9 +-I B9 8nI2 B9  i B9* IBQ B9k &AIuA9{ ݶA9n v(B A9 IYwwnA9_][ɛ$9g1#-Cۈ9g1CԶ9g1z99g1Z_m2HD9g1WoA[59g1 $ Ĩ91!% m91$6A9_U& d:A1~#h[9&1 $I9G1U @9G1#m9g1*%)$ۄI99 #4Ae>A9**!@A9*Ud$Ð B9 튵Mn B9.h"Ag1M$-A9G1 ~[9g1  m6 A9 MbA9"m55AAA#N:$ )Jg)$y,A9 jXb7MA9XWUwl)`AG1MN+ R99 4+ A9_RmAA9U*ONN; A9ժymm A9 ~ A9_ꊀύd+ A9UCnd A9I.n$ IA9ժO>r(A9^O"(AA9UNA9Uö A9U޺IA9U#IhA9WNv A9Uꪠvµ)A9_]@ 9g1zQ$I9g1UI. m1g1UI"Hm1g1/I9g1U#I9g1u#ld9(m9(]n9g1U@9(}ۆ9g1__]부$9g1Uo'9g1UUU.'؇9g1UU$d9g1Ul$ж9g1Ud'Ж9g1U$ڈ9g1U'T9g1 *'D9g1 >$A9UUX"I6A9+VP BAPf? JAUdm< JA_MBA$m; JA**m& J BUUe' J BUU$ǚ J:$Вm+J B 0-:+J B un;+J B Xg;۶+J B }$+JA0,2+J B %~<+J BUU+J Bu `ۉm*J B~w avH*BA ߺ ö BA VC BA $4Ӳ BAUKMA9 _NA9*U I2jA9U ɳA9ժ ~2A9 I BAU Xr BA myK JAdJ4*J B+O’JJ J&]kR1ڭIm*J B*Av"*J B Q*J BCq"P*J B*I"$- KJ*J{*#lKJ*Jz J,ڣ y+J*J.?KJ BU L$*JA^_$aI$ BA @I$A9zZ M,$A9~UU#v<9g1dLA1* ´mA9/ I%'A9 $Ie' B9  I\< B9 I%< B9 4$ B9 v B9 4k$ B9  @I2 B9 @dA9 EIA9ޫ $$-A9 䔐A9_^eXW995'$99k['$A99__.$$9g1<$@9g1 #إD9G1> "#_; 99-,I91d: Q91h'$hA"ڊ29g1z2 Ad Qg9g1UU$JB9g1[Y 9g17"@MK91# :99$$Ao?99$}?99/UU%MnA9%a[OAg1z$99g1-߇9g1*$>e&A1 %@A9U&$ $99&#A9)-9A$A9% H$Ag1#m)lm'9G1*!@#?9g1!`&9&)! 6hזA1 &A$A9UIlA9 M$A90nOA9$AA9*DynA9ORA94A9I޶A9* :A9O޶A9^Ē_A9ĖIA9UI‘A9Uv>9h9 Жr9g1j~в#Ng1&1жIg1&1Ԗy"g1%1 غg1'1*$-1g1UU<- 1g1UUv'>+9 ~n+Lg1'1޶&g1'1*I`g1'1IҶ Ig1%1IҶ I9F1Ӳ 9F)SI9G1Uߖi9G1UI޶ i1G1߶I9g1UUIb@n9g1UU ya9g1U SA9U//A9  o'I JAU _;I+JAUU vǂ JA Im+JAUmD+JA Tn BAݶ0M BA"ր&I BAMR6( JA. qmشi+J B nn+J Bﯢ ] i+J B I+ SK+J B* #[-+J Bo uH[f+J B_}u 19A*J B  6JJ BI*J B޸#@ BAt"m BA 3r BAꨊ I6 ]{A9-A9אַ A9 #&A9 lA9 DB4iBA ZXi BAD@$C*B BuUU dY*J B  fb*J B Ib*JAUq:*JA (M BA I+JA I:*JA]w AvRJJ B  A9Wb]iKԒA9 "*qV B9U č B9"I2NԖ B9U>0 B9ߺ"N+I B9 ɳԶ B9  yN B9^ STA9 ߖ@A9 ݶDA9]ߪ mЖA9UU_ oԺA9UUU99I>99 6L9g1 ?9g1z69g1/#j91*H9199/M>9g1 z$n#$9g1UFnx?g1') \9g11b]9g1  #6j99$!ۆ6M6A9_% 涛%99  # (mA1#0I*-99 j!<~m9g1T[,8(A&"m 9g1/ & F$91% ƒ91#֒99* [& F'99_ $j9g1`֖;9g1-k i9f1 m{?)9g1"X"&R$9&)ZZZW!זyl9&)##$e)q9h9"h,Ψ9i90M =9H) I9h9_F.t99U%m$IAG1֦]9i9 BMmYA&1$$9g1zS+l$Ag1UIIAg1c@ A9__ȁ9h9IҮ9h9m.@+99 [r 9g1nȊϖI9 IB9 m$ 9 -Q@9 [lm;`9 !I-I9 PoNg1F1ɵC1F1 MIޑ9G)*wҶ1F1և1F) vN1F) Zk'N"@g1F1$OR1F1dOI9G1]ж/1g1UUж1%1Zf@9g1UUy=@9g1 }A9յ D;A B9 'I"@+JAUU $/A+JA-8+JA@+JA $vP+JA "]I H+J Bm+JA~2$/ JA婢  BA***  R +J B N=kk%+J B*mZlۆa+J BvB R+J B R +JA JPJJ B/ I A2*J*BꢪM JJJ Bu8w r*JA 3m$q BA MI BA  Aǐ-XBA ݺ.GA9jI-;A9.&A9 [9R A9/ )HA9 I B9 2*JA8A*J BUUV.nOm*J Bk{ l*J Bz`;m h*BA Mv BA Ôn+m+JA_$v=*JA ?.j*J BU X$϶JJ*B 'c˶JJ+B  nC+J B  `'+J BU &+J9 l$*J9u F$ B9_&$A1A1 q B9"($ B9 ܔ B9  ` B9 6 v)m B9ꢪ $)  B9 - A9 &Af; B9 m+i"8 B9  B9Z C8A9wi2 ]$A9I;l&A9uUvL d99_n Ю91  -@mۨ91 iZ91` @91* $9g1"-#9g1\GH9{9g1 91 d;P%9g1p߻ﻈ9g1$a9g14-J9g1^UvP 9g15% &IQ99ĶhC99Z  $ 99 ![+l99 "fdA99 P߶9f1Xe&B9g1SN99g1"T9g1 '#3 ܶi99W%O I9E)&I$,I9f1UW%IZ&m9E1)ƱI 9g1.vq99(JvL91"wZ99 γ<˃+<91#nLu99ݢU#H۔99_'7H99 %T;A9'$ 6A9^#b @89g1!$ I<9g1 !I@:9g1("&I$9g1 ! 9g1" ˣ<ȳ<9&)v#tLז9F) Ҕ$99 wb'A9U $ۨ99F9g1 mژ9G1 ڥ99U צIL9g9 m9g1 I$9F1 nŦmAg1% ֖A9_ YlA9ඏMA9жI^r99d99_Вm" 9g1j0Ig1G1ƒIg1G1 Ng1'1yg1%1MI g1&1 mI`g1'1%IϿAg1'1l+@Omg1')JɸA1g1  9g1" ]9g1k i9(IBI9g1e*J B_ m˒*J BwUM$ JAu$ BA SK[? BA l[?BA n׺I2 6xA9ࠠ-`A9 жmA9 6A9: ]nA9 Iu J :O砍 B B_m` J B$)J B__Ҿ9i BAUU~$%I*JA*I' *J B O*J BI@*J B(~? i*J B M#$BKJ*B  O?IKJ B IKJ B~I>KJ*J~/#3+JAz ~=v BA y+/M BA_[-m˖A9I. OA9 M IlA95 B9_ T B9 qd B9 J"h+ B9 m lvA9 Ia% B9 NL' 8A9ꪫ m B9 mWwA9 VuA9 vmd;99ꠀ e=nAH) nQ`;99 mm99  4Jب9g1 ϒ9g1R69g1  \ A$9g1 # p'9g1Ί^e @#'1G1#+a%$1G1[) 9 &a'9 X $1g1 W%9g1++ y$91 "D 91!nAg1!91!>9g1k$ u9g1U$Nl;9g1 ܇9g1I?9g1($ 9g1$ 9g1*%$9'9g1"Z"-׶9g1X"iiH9g1*#u 99U'v29g1$ ۨ99 & `nm99*{%k&9F)\Z*yLq9F1#!OA}BA9 u˒A9  l(mA9_>IA9H' A9_q @A9q-,AI)ݒ A9ꠂ l&A9 Cu=A9eC5A9r lA9 9[ IA9 ==A9Z A9UUU7 9g1mv 9g1uv H)-$,B9g1I19g1/q9g1w6؎A9g1Ufmt9g1ȶk9g1_Z 'Ϸ9G) cg9&) Bog1F1 вg1F1 @g1F1z @m;1F1 Ps1G1rNڈ9g10n_A1/ FIA9*DoA9 0nR JAUm JA@}+JA Pyޚ+JA*U ԶO޲+JAUU Զ_+JAU I޶+JAU PӶ+JA_ TߖKJA Զy•+JA߯ Ж+JA_ Fo JA ȶI+JA R JA_Pkq*J B**_M*J B U*JqL*J BeI *J BCn`*B BU㶒L*J BV^ R I JA_U m6-KBHA&@A9 WA9 z A9  &A9 DrBA9DB&= B9 HJP B9 ? B9d B9 E^*J BͺmM*J B!i*J*B1i I"I*J Bm @-A*J B*n;AM*J B}*J BjBkR*B -h kR+B-OMkR+J_ V'+J B9I+JAZ $, BAU ,yi BA vA9%~fA9:rY7 B9Y I B9U & B9 A9 $$B9 $a B9 8`A9 SmA9 $EB9ﯯ @A9z~ vk'PIA9UUZ mm91 o 91ڠ ] M9g1  I9g1 ]09g1  m$T9g1 C 9G1w 9g1 n79g1 k 9g1( (A9g1߶ I9g1Mq9g1=mA9g1V 9g1 1M;99kamc99_Uam$99P$A-.9g14ml^ߧ9G1$Aɟ9g1$i9g1@nl9g1@q2χ9g1("(l9g1*iӺ9g1"UUmv޺9g1uaS9g1]u9g1U_Hqv9g1)QI9g1v,Jh9g1wºu9g1`"&X%g1&)PPIl9F)'t<9g1  IL99  99"*kdI699 A')IB$@AG1vmAF1mb2$99  A9u 99m۶uA9&i;HR99X A9)$RA9zzvVA9___^m)I9g1`xpI9 dOB9 $ж_9 uI9 @I$9 @q9  091G1z@vlg1') fg1&) g1&) Tg1&) * *g1&1((#$W9g1X_UUI>ٵg1&1 )рT9g1/-4)ڨ99+*8  ,ajI;A9'' . f'A9 C&۶ BA $J JA/ A+JA0 *JAi$a JA mmH+JA 8$ +JA m&# JA  +JA ǃ H+JA t#a+JA pu.M JA{* `O2M JA_U6- JA^U*% +JAߪ ݔ]+ JA m'w[B+BA h'm+H*JA S&I1) H9g1nMA9g1 !-H9g1ת A#r9g1*Fnv 9g1_IqN9g1U$MvN9g1U@nҒ9g)I29g1 UnIⵈ9g14rݶ9g1TIⶇ9g1*#8#59&)ppjj q9F) uR;99/TuA9Ij99__`I99d۱;99/UmA9Аĩcש996A95$kA9znA9_MA9?,9nA9U d'#iA9U  $A9U $ PA1 69g1\W$$ g1'1%$ g1&) l<A1G1*m$ 1g1%;9g1UUvn`9g1UU %31F) |d+a1F1 ?#g1&1 nKRO qg1F1 ?Pg1F1c؇9g1_U 9g1ߺU9g1UU,dC:9g1// A9U SA9* بMKJH9 @c BA Frc BA H+JAUU 4AO JA膵I$ J BUU N[7+JA IuS BA $I\" JA_Z$I JAU 6Rm q+JA ؖO BA Sn BA &ݚl BA I BA** i%ݚ J:!LB2 J: &* B9X LT'q*B B^Y_^mS`] J Bc' JA") BA {p9n BA Iuu BA*#S- BAr [ .jA9z %WRA9߫;an[A9Vh B9 a6m BA꠸ vˑ A9 u۶A9 l;(` B9&I %*J B mJJ B*e$JJ B4?*J Bl'*J Bm>JJ B4B?*J B*(ANBKJ*B+ ˿9g1Z]`9g1UUb'ڇ9F)I؇9g1tw`;9g1 ~K#9g1 u!S9g1 ϯI9g1"m<9g1"/I9g1!pߨ99_U$#tۨ9g1 #/v9g1 #dۨ9g1#Iߨ9f1"Iv9g1 #-3:9&)z%yLq9F)#֨9g1 ~ mA9UAA9I2a:A9U꯯IM&@99_u<MA9Ibd;AA9 d@ lA9/// NAA(R AA5#'hAA1C;EA9蚴XuA9 kvA9C:VzA9ZXg}9g1VVX\Mnn9 vP9 [՛9  @g1&1 Ag1&1*ζƶ9 yT9 1g1UU ޶:1G1rDڨ9 XvP9  eJжg1F1Z Mw1F1 $im9g1U mc:9g1 /= tn'A9* [n'A9 dL$AA `m$ BAU] I$ BAU @IKJH9 AIH&KJH9 6,IrI Bd@I0KJi9 lmKJi9 REA9pu< J9m?dm JAUU% I BA_l0 BA & I BA d' BA  BA uȶ& B9P'͒ J: dC BA V'm BA  lL BA Vۮ BA &) JA}ǂ B9 woK A9ޠ.< aA9,$% @A9@ B9 $ B9 ]ր B9n B9 :& A9e> JJ B[kmJJ*B)JJ*J ֶmJJ*J](]5JJ*B )PJJ*JXmKJ*JXɺ.kRJJ"8\KJ*JغMKJJJ: $-I+J BU] ׶-I*J B 'Q*J B 㐸k*J BZPe L BAd?- B9?vJ)BA BA кM BAdۉn JA_U^`ӱm BA`ڱMK BA Fn BAEڎC; BA  0 BA к B9n?A9DlA9^_Pn99 @rA9UU im'99091Mu9g9 L'9G1 0Iu$9g1m9G1@.܈9g1Uv9g1U$H$9g1*U$@$9g1 UU&$9g1 U&9g1 UAo?9g1U9g1U(Am9g1WU+9g1__d)Hc9g1$ cۈ9g1$)ۨ9g1U!I9g1"8c9g1"S9g9"ڨ9g1"On9g1!o9g9 $$)cר9g1#)S9g1!Sߨ99Uw"$ S99 I~Ҷ99u"b#9F)%hym9F1# m:99 *__f tb'99'/ 4I1A9:t5A9zjz~,mZ799,A9/*%'$AAwU @&A9 C"$AAM$]ѦAAؐHAA$+BhAmĂAA[AA i$ A9xw9g1X F%g1F1'1G1모o?|r9 n?m+@9  meog1F1 !mvH9&)/H9g1UU$/ 9g1UUWO:\ 1f1ګ$ g1&1M;N@g1&1}? qg1&1*mIg1&1 *mSN@9g1UUU= ?9g1/ v=׍ A9* M۶RA9 $)IN"BA9 $)QI"A9 $ It,BA m+INmBA mI BAfZnKJH9  -A BA 0MKJH9 ۹& BA  n( JA+=I JA^6I&A9 ص IAUU ӦD@KJh9E$)KJh9괶;*BAM$i; J B؉-A*JA'$ *J B”帍*J B$4I*J B&,*J B*4I J Bݐq*J B .%*JAjJJ` B9֒+' B94mx; B9z6`Nw B9   IBA)48IBAIJ BA i@ J:ꪪ"P JJ BNb; JJ*Jbm@JJ*BZ;[+HJJ*J>iJJ*Boz&m a*J BZP'vi*J B(Z ?KJ B}X?KJ B_= +JA Dn;*J B Ц$$*J B u$KJ B -r*J B^ H BA(  $I$ B9#0$i B9 @K B9પ 6m۔A9. IӘA9+/ %Д@A9ꮨ )$A9b q,A9 ]:leA9z &C(A97 it B9 m6IA9I6i A9UWIbǤ)91yn$+A9UUn+ 99UU# 99{l۶ 49g1 m֒9199/m)99_ d 9g1 vd 9g1;u 9g1e 9g1m H9g1O$ 9g1*ߖH9g1_`9h93I&@9g1v&9g1ժML9g1. A$91 M洇91($`s9g1  @TA!-$9g1mYd9g1  M(A&"&Iƈ9g9 Nu]'9g16a֨9g9!MÒ9g9 ضrOֈ9g1 čIRr9g1Pd>9F)Z! MYil9g1!Dm9g1 жm9g1 OhAg10vHA1 hA9 /ֶI" A9 U D~ A9U"ٶy"HAA ɲ @AAٶ"AAW/AAAiAA,[#@AAUdy, A9  +;Li99 .aSے99!HL9!Ě:g1G1 tg1G1P$yK9G1U Ig1'1 Dog1&1 #+9G1#I-@9F1>69g1_Wm 9g1UUs9G1UUg1G1c ~@9F) Nb h9g1* HA1  C$ @AAUW $  JAUU Ila BA  v, @ BA  AKJh9 I;MI JAUU Nn iKJH9 v[7u KJH9 [۹ KJH9 Άb JAUwm"! JA~H I JA. 'a( JA DnLl BA e BA*d$$KJ9m;1E KJ9ݚ*JA]֦C7*BAkJh9Ҧ[ J BN[n$*J BIb$)*J BNxt R*JA_*JAmS$*JA*! iԢ*J Bꊂ" B9૫+@Ӷ B9#M $*J BU JJ9-&AIBA#i%9 BAKi[) BA A[+IiJi9$*J)B dLJJ*J$0IJJ*J $#0JJ*Jիn*J*Bn8JJ BN*J B dO;JJ B@vm*J B Pm]*J B* IB7L*J B m2 U*J B(6 1 #' KJ*B/v\r8b*J BpNL6C&*J BU^^^̈́ c9n BA N:H- BA  mlmm*J9ު O,M)B997A-I)JA~ MU B9 m+H BA m-n޶*BAߪWo- Ob)JA_}MI?*BA]- O;*JA_ *BA_W_n+AwA9+A9=A9 'A9*w c mm'A9\+p>A1$)n'9g1  Ag1!, ߨ9g1$I,9g1"l$9g1 $؈9g1 m?9g1 d$9g1$ 6߈9g1 $ A,9g1 Ҕ9g1$ I#؈91W,)A9g1 m+hh?9g1+@$9g1vi89g1Jи9g1 y>N<9f1q*`9g1 ?9g1y2҈9g1îD߈91N=Զ9g1IBd9f1y9g1߃߈9f1I89g1 ӿ?%9&) tqM9g1 ]P9g1Ж5o;9g1?I<9g1*+T۶o;A9UWSA9-nA9I$A9A9A9A9A9$A9?mnA9 A9 "=aA9 $*I9h9`m9f1]gG9g1__KƔ+9G1_?9 g1G1 Z)mg1G1 CŶ-g1G1M@g1F1 Ch9g1UUm 9g1T9g1 Ӕdq9g1ު nKr9G1UT's+N9g1U?9g1  @8k-`A9U5v?c A9/. $A9 $$ A9 $A9 [' A9 4s;A9 f7AA9 ۢ A9 8 HA9* ش( BA+*> J9wtl J9  BAR4A BA mcǍ J B:lMI BUWۆmm BA mI J:mmIҦkJh9)AkJh9dSC*J BlM*J B ]u*J B 4JT BA*I$ *J B6Y*J B!N2$_JJ B:*J)J$v HJJ)B:k *J Bo%<$ @ J BZ *J B b6S*B B^_ jR'['A*BA $*J B qm*J B믯 Բmo?JJ B_OKJ JU_0inKJ B@&KJ B Ķ*J9 жy~ BA `vl*J BUж*J B^0;*J BUж*J Bu7OS*JA_֒yHBA &m. B9r  6n B9j muB9 NLr B9* mvMA9 vNIA9ߪ "AM299*dI"99@ۉi9g1 $u9g1 q9g1\ۖ<;9g1Umu+A9g15UUw d, 9F1 y$.)AG1F1 m$+Ag1G1U ? g1G1 U m$n+ g9G1_U]u$m) g9G1UUU$- g1G1U $$ g1G1U$ @g1G1U$ g1'16g1)s?$g1&) d)H9F1d 9g1UU_99g1UUI 9g1_qn 9g16 9g1U/9g1uzov* 9g1 I$n m9g1m7+p9f1* ϟԭ/H9g18 @9g1(i9g1_U?#9&)z qfH9&)M-A9(]m,H9g1U+) 9g1$ 99Cl+h99NuA9 mA9/ kMmA9 i mҭAANnkWuA9q lٲA9 -HܸqA9 -mAAZIJ iA9~ #$L99u H$L99  ɯ I9g1 w( J9g1 pPn9G1wm9'1_Img1'1 =g1&1*J B"$*J BQ)J B_Cm'*JA i$+BA n*JA Ж*J B `I$JJ BI6$*J BҴm-JJ B 4)ĭ*J B@$n+JAWW0I+JA^Ps*JA:n6Զ*JA ܖ@*J B(UU'0*J B] [?X J B]P_ 6j JA @ J B__} ,e;F B9bIAg1$IAg1 y@Ag1I?mAg1WoېĖ9G1 IbP֨9g1Ӷڨ9G1͖'9g1W֘f'9g1U}ΖT9g1U 3&g1F1 mg1F1lgLj9G1Vg1G1 Tڴg1G1 Ug1G1*~g1G1UĺOg1&)owG1%) TI^ng1G1UU~tyg1)ώg1)ӍG1&1U?Ig1')/mqg1E1 HB9g1UUX$I 9g1UUl:9g1Uժ$ĵ#9g1u]*ر-9g1UUe 9g1uU(vێ-A9g1*ei 9g1*Ud˶#A9g1" ,[9g1!%K 9g1W"lˑ~9g1U%O:#Ј9F)# m!i9F1#K9g1U#]y9g1$l[9g1%Ϻym9G1 $o.H9g1 vA9/կmA9 ۴A9 J [QKHAA[~-AAm#+B'Ahʱ AAW]qq"LAAPq:aA9T["A9  tA9SIhA9]nn99]DmLA9=sߨ9g9oA!W&۶9g1$oۈ9g1ԺC9g1Pv–9g1@ډݕ9g19g1.W^ۖ<&g1G1Wbc 9F1 / "6M9g1  $AA9M'" iA9 * $-I:m$AAlص I JAUU%k'- JAUUUe;u- JAUUժ u];@ JAUU q$  JAUU Ib;@ JAU  JA Nn@ JA IL&h BA  -9nKJ9 mm I*JA )H I*BAתIm@n*JAq2IA*J BUMԲ*J BNzd*J B*J Bqu$*J B-*J*BIbw*J B ZsT*J B((%Wl]i*J*B *J Jm%*J BZ_"J? J : 0Iu$ B B! M J:"& J :#n)@n)B BU#+$)B B#m ')B B# -?JJ B߫u dm'*J)B#H'JJ)B MM'JJ BuI$>*J B i;*J B k*JA =A&g*JAvK *J B +['*J B_m V;*J B ]*BAY@.*JAb $*JAW&B2hA9$s BAUyN d BA@Ԓ BAO.Ir BAF? BA(#ITA9~"IA9+ ?A9ZRA9 Il@9&)  1AD9G1v ;9&1m+g1&1% `?g1&)m+i$g1&)$'I1F1 g1F1` #g1&) &Xg1&) Mۘg1%)" $]g1&)d?g1'1аmg9&1ZDg9&1жINg1&1@ϯIG1')жmG1&)В>g9G1 UW0ON9G1UU@ϒg1'1 PIⶇ9G1UUg11 bCR9&1 MN 9g1%"9VJﶈ9g1!$Iۈ9g1*!FHOڈ9g1 ФINͶ91/ iv'A! iqk'91!I79g9#D؈9g9"#@Qw'9h1 *$~9g1%9g1'9g1'[9F)jj' 9F1'?9G1&?9g1&ۈ9g1&dcۈ9g1z$?R9g1UU!?C9g1 V?+pA9UU-(Ag1j گݑA9$A9$KA9$m) A9۪ܔ&A9^- 99UX?99U rL99U ݶ 9g1 fm9h1CYtf9h1  .Y9h9 $0m99  ¦99_* d m9g1 [ؐ91䮨99Z]صӨ99oU `Ц9g9 @,'9g1# mԨ99 Ip9h95?g1G1 -g9G1 ) $I$9(Ig9g1m[4IH)mE$9( I$9 ڢI$9(MI&9 m H$9  $L$9g1UA$I49g1uH$i$9g1UI I09g1uMi 9g1]UW $I$9 m$I$H)m $9(I'9(I &9(I$A$9( I$9(I$H) h'g1&) [g1F1:?6LJ9g1mć9g1mѶݒ9g1Vm9g1톶Y$9g1@89g1 hI$9f1$AN$9g1 놶i$9g1!v$9G1"TI$9 !Mr$9 "@nk9 #@rm9 # $9 $mv89 " ?&g1&)#`@ng1F1#Iv$9 $i}'9 #0A9*;+Jh1 DI: @q$KJH9 0lm$KJH9 M$KJH9 Iډ JA h&I$ JA @M& JA_ @$I JA $I$ JA PI$BA @Ѷi$ BA EڶI&KBHA @$I BA h$IKBHA I$I JA I4I KBhA I$IKBhA I$mҢKJH9 I$mKJH9 I$I JA Ib۶MKJh9I$IRKBhAI$m[KJh9I$IKJh9 - *JA [Md*JAIm KBAIb۱MKBAI$IKBAI$IKBAI$M KJ9I$MѢKJ9I$C J:I!M J:I$I J:I$I J:Ii*J BI81I*J BI$MJJ BikJ9mtM[*J BLI*J BUI$I)J BIm )J B I$A$)J B Mm iJi9 d$HiJi9  jJh9!1I$ )J B!)жhjJh9!m۶m *J B!AjJ9!  jJ9! A jJ9"m6-ڴJJ B" жjJ9"! @$*J(:"!A$A *J(:#!I$$*J)B# mM$*J)B"!$)J)B" I$ $)J)B"EM$J9!$I$R1 $H$R1 &t$JJ Bꪪh4H&JJ)BII$JJ)BH$A$R1H H$+R'2m- JIBE6@$*J BꪪH$H$)J BI$ J:I$A J:I$  kJg9I$I)J BI$)J B_IH)J BUII jJh9I$H$ J:H$$ B BI$ J:I A B B $I$JBhA $I$JBAm6 BA ivI* $& &I 2 m i*Jh1 AKBGAI☉i BAI BA$I$JBHAi$I$ BAh$i$ BAi$I$JBhA Цi&JBhAhڶi$ J:I$I$JJh9C:fb; BAHdM6KBGA$@Ҵ$BAm$AAi$AAj$+BGA`$+BGA@$+BGA@$$+BGA@$+BGA`$AAꪪ @ێAAVW$ JI1-ni$A9Nv$99_@zgA(DM%븈9g1mmh9g1`&$9(i;$9 Тm$9 X۶m$9 $B:$9 nM$g1G1<X׭i$f1G1m]$f1G1Wjf1G14Im$9"mek?g1G1@$g1G13nm$g1G1vi$g1F10m$g1F1*m$g1G1?@Ӊ$9 Aډ$g1G10$g1&1m$g1&1$Mmk'g1&1mg1&1$g1&1&$g1&1@I$9  m$9 @ i$9 $ &$9 m M$f1G1UmZm$f1G1IRi$f1G1v$f1G1I$H$f1G1I $f1G1I I$9 I$9 IҶM$9 IBa'9 I$9 IB`g1G1i g1G1IB9G1IҢФ9(I$$9(IҶж9(YJPI9g1U I2lm9g1!O 9g1!S`9g1!_F9g1 IӢڶ9g1 I2І 9g1 N2TRV9g1 IҪ֪9g1 NRP9g1UIҶk[9g1UIж9g1ժIڢ]9g1IB$I9g1UIҮm[g9g1_ab۴m؇9g1]IҴm9(I$C9(M$@Т9(H$MҶH)H$ 9($ mH)-g1&)e|Bg1&) ڔoK g1&) d g1&) m Ig1&)ۖ$@g1F1$iێ- g1F1/Ag1F1@g1F1`v g1F1$$Ig1F1]_t#IG1)$i;#G1)-F1)HF1)d~ F1)*G1)?mG1)ؿ& G1&)X^)mG1) @I&g1G1-&I$9 0:$h9g1-$IҦ9g1h$A 9g1 8q'9g1(I9g1WhY9 -$I9 mng1G1A$I&g1G1H i$f1G1I$f1G1m&I 9"mI9"Ig1F1U I$9 @$I$9 A$I$9 H$I$f1G1$I$9 I$9G1m9g1I9g1E$I9g1*Xצme9g1 IA!ФI9g1$I9g1&I"9g1 IbA! IA!iIbA!hѶIA!IA!@۶IҶA!жI۶A! 4iA!I$cA!IA A!ʴ[)9g10IA1 $Iç99I$ $99Ii 99 ""A&I9h9 $c'A9H$I$A9  pBA9**m&k$ BA-"I$KJH9[2ғaBA I;P7m+BhA I$6+BhA I$@KJH9 m;I: 'h JAU ASI$KJH9 II$KJH9 IZ4m$KJH9  -6KJH9 IM$KJH9 iSM$ JAU i[A$KJH9 mۢm$KJH9 EQE$ JAU mE$ JAU I$KBhAiI$KBhAM$ JA m mI BMm$KJh9E m$KJh9Im$KJ9mM$ J Bm m$ J BiM$ J B$  J:--$kJh9$ &$kJh9$ J:Zm$*J BU4a$*J B_ A$*J BUm$ J B 8kJh9PI$*J BH&*J Bnv$*J B*am$JJ B@rmJJ B&;*J B"`J*J BUFnv)J B_UV$ B B q? B B m$ B B!H<)B BUU (mI$)B BUU nN$)B B"UU!@)B BUU!@)B BUU mv$)B B(UU!4ξ?)B BUU!mv$)B BU!4i$)J BU!0mn$)B BU!$)B BU!$)B B!@Y$)B B"!vm$)B B!M)B B uM)B B!+v$IJ BII$IJ BֶI$*J)B$I$R1I$R1@۶I$R1 I$*J)B I$JJ Bh$M$IJ Bm*J B I)J B$I$kJg9IkJg9 I )J BU@$)J B@$I$)J BڶI$)J B $I$)J BРmSjJh9$I$ B B$I BBH$I$JBA_$`*J B_ H*J BUC# h*JA_vL*JAUe%A BA#' *JAUI& *JAK*JAIbm I*JAIbK' *JA뮪ͶA*JAI$ *JAIشI*JAMҶ6` J:qL J Bi J BMӵm J Bl: JA_f +BhAIҶ-$+BgAI$A+BGAI$$+BGA $+BgAIH$+BgAm$+BgAI$ $+BgAm$+BhAI H$AA-$A9i۠H$A94M48 B&1ݰ$ B10$9h9ݶm]49g1iE$9g1m E$9g1W1M 9(I$@$9(I $9 mӶ$9 M$9 I$9 I$9 I$J)IҶh$9(I $9(II$9 I$f1G1I$I$f1G1M l[ۤg1F1m t69 vBg1F1IM$f1G1WIm$9 i ж9 I$9 I$9 I$9 II$9 II$9 II$9 ֦9 im$9 Ii$9  $9 @$9 $9 @ 9 $I$9 AIf1G1@$f1G1 f1G1-m6f1G1A$I$f1G1wUH$@f1G1j(6 g1F1 I$I9 ض9 i$M9 בd9 $n9g1 N$qa9g1IIP9g1a$ 9g1 i4M;t9g1q$L9g1Nǡ 9g1!;m9g1!q$-L9g1!I$i9g1"q[K 9g1*!v$*9g1!q4U@9g1!N$m;l9g1WU!i$Ri9g1 M4ma9g1!i&m9g1ꪪ IҤhm9g1I$ 9g1!c$K9g1 c$I9g1 b>؏=g1&)_H`@9 iֶ-ж9g1I$I$9g1LBć9g1i @9g1I I$9g1I6iҤ9g1!cۈ$9g1m[m$9(mڶH)Lq'g1G1mm$f1G1M6f1G1_vbI89 4@6$f1G1(v4f1G1m68f1G1mҶm6g1G1$I9 A$H$9"h6 $9 I$)$9  $I9 Iig1G1q0mg1G1 $If1G1UI' ب9 I$I9 $69I$:9 18cè9 FĎaب9 $MG1) LG1)48$ 9 E$hжf1G1UU$If1G1UA$A$f1G1$$g1G1?8+ g1G1 ÖiӮ9(4$M9g14m:I 9g1* i:aL9h1*@$I$(A&"M$IA GN )A ۚ$IA $$ A!fǮ-A![ֶm A!m$IA!$I99&M91$99m۶i2iA*m2L iA*i$IiA*m$I$91I91,`m91 `?9A1d;혨A1vm99  P?qAH) NAA0v g1F1I$Ig1F1I$ g1F1N'Ӧag1F1I$$ f1G1_I$$ g1G1UUI$$ g1G1UUI$m f1G1UUm&[f1G1UUI$m;lf1G1UUI$$f1G1UUN8&Hf1G1UUI'[+@f1G1UUI$ f1G1UUI$Cf1G1UUM$m f1G1UUIҤmZlf1G1UUi$m f1G1UUI$vLf1G1UUI$NLf1G1UUI$vf1G1UUmڴma9 I$m;9 I$9 I$NB9 I$I 9 I$m 9 m69I$C9I$I f1G1I6 9yR G1)3IG1&)~ IM$AG1&)I"I$g1&)"Ig1&1v֒Mf1G1 O"Ig1G1UO g1F1ImA9(m$Hg1F1IҲ(I9  Hg9G1 i6m9g1Im9g1I4mW9g1ꪪI&-ڶ9g1I$E 9g1M$@9g1I$+n9g1iڶmW`9g1Ivڢ9g1IҶV9g1qb`9g1*$m9g1(qۀm9g1*qZۀa9h1*ivж9g1Nҵ6l9h1I۶ 9g1")(i9f1jjBIIg1F1iҵh۵9g1着I@v9g1ꪨ i̲ٲ9g1IҶ-ڶ9g1NbH9g1 i-ڶ9g1Iж9g1 i&mv9g1 i6h۶9g1 N$69 I0& ۨ9 IE۶9 I$ب9(ImH)I$mR 9(I&M$9g1IA$9g1 $I$9g1I4 $9g1IҤI$9g1II$9g1I&IS$9g1I $9g1I$H$H) $A$H)I$ H)HmH)I$$9(I $m$g9g1[dض$g9g1*)-g1G1 Lg9F1% Ibä'9G1 Ib4$9G1!M6m$9G1 Ib $9G1MG91 ivۖ&9G1r Pۈ9g1W*U+Iഈ9g1I+$9g1*Imdۈ9g1*IB$9g1#֨99UUv"I֨9g1MmP9g1#IԶ9g1O"D9g1C@9g1I9g1 I"IжA!ImжA!ImжA!I"IжA!I֦A!ImԶ99UIִ9g1iTw9g1InmA!InaA!Imֶ99կIҭ99U**iضm99 I$ 99IҶ@ B1IۊmA1 v[;A9 I6[AA* IҶm +Jh1 IҶm+JG) I I+JG)HI$KBHA $I$KBHAMH$I:MAR$I:I$I$I:i M BAI$IR$KBHAmi$I:I$H$ BAH$I$ BA絛I A$ BAN BAIIA9I$IA9I B&1Hi B&1.ңA9II BG1IRIA1iiӢA1mIA1ii&A1$M$A9жiۦA9nI$A9  I$A9!$*Jg1m B9 ۖ$ B9 UI ? BA*I$M BA* $I BAI[ BAUUA$I BAm$IӶ BA$I BA$I$ BA(I&JBA@%M& BAp& BA$I$JBAdmJBAIb' BB$$I$(B BUUUaI$)B BU ֶi۶)B B!I$)B B" aI$iJ9" `v&iJ9 H$I$jBA!I$iJ9 hH)J9ꪪ#i)BA#$I)BAIR)J9 I)B9 ϲ A)J9y JJ1m]$IJ)I IJg)H ) JJ1I$HL)B B*iE6jJ9Im&J9I R1kaR1IZ4@R1LBڠMR9I H$jJJJծ*($6jJJJW >I$$kJJJU& IkJJJU"I-JJ*J`mڶhۢR1@$R1vB0H+R(2]anJJ BI $kR1I H$kR1mڶ-4kR1@$@$*J B$I$*J Bi۶M BA꿪h&i BA(KBgA $mڴKBgAm4mKBgAI$IKBgAmڶm KJ9I$I J:q$mKJ9M$iS *JAmm;`JBhAi$IJBhA&fJBhAE JBhAI$IJBAm&M&JBhA]&M5 BAm$I BA h >P+AA|p !$ *J() d$i*J() I$m[*J() ImI) IB*J() IҴ*J() I$m*J() NL*J() IܶۺI) `۱I) miA9-I B1mi99m $9g1)M9g1W$DID9g1~_WU-m$9 m$9(u9(@J)0n9 m$9g1W+K>g9g1-E$H)I$9 m;`(Ц9  9 muې9 NB $9 M$9 vBD$9 IB$$H)I $H)I֤H)IB$$H)i ؐH)I$H)Im$H)I$9(I2lm49(IЦ9(IB9(I($9(I$$9(v9(v Aж9(IB $9(I$9G1I$9 I$9 Iak$9 I&$9 I4$9 I6$9 m m&9 I&$g1G1I4$9 I69 q Lצ9G1i $9g1!IӶm9g1!I&9g1!IS&(A&"[m˒d(A&"!Mm$(A&" LH(A&" mmE$(A&"!$(A&"M$(A&" k ]A! [[m(A&"m$(A&"m0$(A&"m$(A&"mq$9h1*m89h1mvm$(A%"$i6'9g1i$9g1h۶m$(A%"дI$9g1$iI$9g12"O29g1oJIg1G1$q$9g1-M$9g1I9g1@4i49g1m$I$9g1I$9g1II$9g1 $I$9g1 ;a$g9g1E$Yg1G1m$I f1G1m4I f1G1m$I$f1G1h$@$9 h6i$9g1 $IhLj9g1m$A9g1$ c؈9g168abˆ9g18IBH)h&mH)$H)8 Bh9g18M\ H)&i9 m$g1G1$$Lg1G1$ g1G1]8 g1G1$IBg1G1 &)G1&)PuG1&)%% $Img1G1$Ng1G1pg1G1g1G1A9!0n$A9"Ƒ$A9!mA9"DA9"бqA9"TrA9#A9#0AI$ BAUU u$A9!2A9ؐI$A9"b $A9I$IA9 ֶA9"u#A[*Jf)Iq$I*II$ BAmI$ BAMI$ BA* I$ BAE6I$ BA I IBiAI$ BAIdF BAAI$ BA(IIBA$IIL B BII )BA mI(B BU iiڶ)B B U!$im)B BU!A$I)B B!I)B B! A )B B !I  )BB!I$I )B B!Z4- )B B!M[h)B B u! I )B BU!I@)B B(U!IA)B BUU"M 붭(B BU - J2ۏ `B9:ImB9 jeî B9*Zu4JJ1n)B BX,'sb'JJJ=+ +MtRjJ [Z :$H$Z :t$RJ⠪X׮k$RkJ*4̐$$RJ @RJ$RkJ꺢I1jJ BH$*J BI6)$ J:m֦ J:I-$ J: $ J:i Ю J:Ib4$*JAm۶ڴ*JAIҶ($*JAm۶@6KBgA@ J:)JA  J:mQh J:nPl J:д(ж J:$I J:I$I$ J:I$ J:-hӶ J:$ J:4i&KJg9E6m$KJg9$IKJg9@$i& J:MEKJg9I$I$KJg9¬Z: BAh (ڴE A9)i+BgAH$I$+BgA$I+BgAh$II:I$IRBAI$iRBA4IBA $HAA@$ AAA9z~~i 9g1!v9g1UAH)m H)I$I$H)-mH)Il{۰H)Ig9g1IblH)Iöag9g1!! I$9g1 <O*9g1jjm[I$H)@I$H)I$H)A$I$H)$iH)hm$H)h m$H)A$8H)mM$H)@$$H)m69 0A$$9 (жm$9 ִ9 @$9 @$9 @6$9 a۶$9  ۱$9 Фm$9 жk69 @:$9 BE>9 $h۶$9 8v$g1F1 $g1G1I$I$g1G1h$m$g1G1дEf1G1 $H$f1G1m$Hf1G1m$i&f1G1uVm$hf1G1_$ f1G1$@ f1G1I$-4f1G14֮9 Hm9(IZ$m۶9(N$m9(ab;m9(N&m9(I4m9(i4EѶ9(q$m9(i$m[9g1UU%5I9F1 g9G1 I&mۢ9g1Iv9g1M6mѶ9g1N:4 9g1IҴ9g1IB$9g1UIҶ-v9g1UMҶڶ9g1WiڶC۶9g1ݪIڶm 9g1ժInچvH)IB@H)I2Mm9g1UO@9g1UIb$$9g1UI29g1Uu ֺ9g1UImP9g1U_3lֺ9g1UIaV9(Nm۠9( I$i9 qR``g1F1 Nl9g1F1 3l۶8g1F1  9g1G1!Crؖg1G1ITψ9g1կݶ$9g1Ik9g1IR69g1IVkڈ9g1qvd9g1I`ۈ9g1IZv9G1!ߊp9(!IB#Ѷg1G1!IRPgg1G1iڶ($9 $9 LBa9 !IҶJ9 !iڶ9  (g1&1  !dIg1&1 I2$ۖ$9 !vl"$H)!I$$9 I$9 !a&$H)!Ibۆ'9G1m9g1!I]49g1* mbh5'A! $Im&9g1hm]&9g1mۢm&9g1mcWǨ9g9*][`m$9g1m[]$9g1"$H$9g1$Aۖۨ9g1$@ۖب9g1 ,$9g19g1& $$9g1@9g19g1  ?9g1n9g1-'9g1@$y?9g1m9g1@6A$99 I$9h9**H6i4A9UuI"M4A9I$I$ B&1$I A9I$I$A9muknAA? h h$AA  II8BA I$IҢBA $NBI2 I8 I2 I$I BA I$I BA I$II2 I$II2 I$I +Jh1 I$ MI2 I$mBA i% A9v8m7A9m$&A9U$A9U$I$A9 ` C B'1mɐA9I][A9q'$ A9I&mbA9j;mEA1I4mA1m6݀A9I$AA9I$ A9I$I A9' A9&A9%7uٺA9۶nA9I$A$*JF)E$I4*JF)I*$I*I$ $I*EдA9$LB$A9+%I$A9@$$I*lfA9$ BA($ B9im$JJf) Im$JJ1 I I$ B B @ BB!I $ BB!i(jBfA"m&@$(B B]]"i6jBfA#ڮ-6jBfA#۶Ð(B Bu# Im(B B#CI@RjBfA# IRm&jBfA#!I$I$ BB#!I$ BB#Mmж BB%"iM)J:ꪪ#cՐuIJ1I\VMB9i4 B9 ui)B BUIݲIJ Bտ#9RjJII4RjJM$i$Z :I @$RJ iҢh$RJI$$Z :A$$RJISE$RJIh$RkJIikJ*BXXXTA$*J BWWI$ J:-ڶh J:H $JJh9mS mӴJJh9i 4JBhAIS4M6JBhAH$H$JBhAH$@$JBhAm$h BA$  BAM$6 BAN$ BAmkǚ&A BAߪ)$ BA4$$I BA$' BA$$ BAm$M BA&m BA($I6 BAжI2$IҶJBHA֤mۭ BAh$I BA0I BA;qB; BA XSAAp\WW $I$I) mA9$$qbAA$I$AAi4I+BGA I$+BGAm$I$+BGA i3Il+BGA -6i6*J() @II) tiA9zzzt[9g1X^^^$Ig1G1H4Mڶf1G1A$I$f1G1hӴmۢf1G1mڶm9 I4H$9*i$I[J)AI&J)I4Mڶ9*I$mH)$͚ hg1G1I$g9F)I$Ig1G1IǴIg1G1I$$A g1G1I$Ig1G1I$$g1G1I؀ g1G1Ir@ 9(IbIJ)Cng9F)IҶg1G1I6g1F1Ivg1F1IҶ0g1F1IҶg1F1Ҳ$g1F1IҶg1G1UIҶIg1G1UIҵg1G1UIҶg1G1UIҶg1G1UIb`g1G1UvL(tg1G1UIҶg9F)IR@g1G1UIR& g1G1UIҶg1G1UI&@g1G1z g1G1I$ g1G1IҶ g1G1IҦ6 g1G1_SI۶ag1G1 I @$g1F1mlg1F1Ib 9 IVl9 I$lڇ9g1UI$aۇ9g1q&m9g1IئMH)M "9g1L06L9g1I&6B҈9g1I0I9g1IĶM9g1ض ۇ9g1I Lۇ9g1N&m9g1N8 9g1iҶ9g1I9g1i$(ڶ9g1I4h۶9g1I9g1i4ڢ9g1 m$Ar9g1 '$I9g1N؆u9G1I4mH)IӔD 9g1UU q$m9g1U qn7`9g1 cذa9g1u!:9g1!wb۔a9g1]!vb$)L9F1!Ib$99g1UUNb@9g1U_ y֐I9G1!}ҶHg9G1ZZ!]#g1G1!N\@g1G1U"Nl'g1G1U"qbIg1G1 Ҳ@9g1U I$H9g1UIҮ9g1UI֒@9g1Uߖ$I9g1U\n 9g1 vl$H9g1_!IB6m9F1!IN mg9G1j!NҶig1G1"Oޒg9G1U !I"Mg1G)!C0@g9G1U!OLg1G1"IvDRg1F1"NҶTg1G1 "g1&1j‪yI@g1G1U!SWfg1G1!vvVg1G1Ib@g1G1 Iung1G1 iڶg1G1!IҶٶg1G1 ùn9g1կqb8;9g1ӵv9g1慠iҶP9g1I.9g1I8A!iҵ֮A IbhA Iڮ+v9g1IҶж9g1I9)I `'9)Ib ب9g1Ib;a'9g1IĨ9g1Ib;89g1몪I4ִ9g1I$$$9)zZר9g1IҴ$9g1qm֨9g11gn9g1I$&A!I$$99vh; $AH)H6@$A9i۶-$A9I m$ BF1kh8A9K.lA9 KX&A9M4($A9 UI$A$A9 U m-A9$IP'A9 ,A9U` $A9 UA9 U AJA9 еktAAU@AAUi-$A9UE$A9_DQiA9Uذm$A9UPw$A9w$`$A9L"IA9viA90l$A9i$A96i$A9H&@$A9$A1I$  A9IAA9$8 A9A$I*JF)mۥuA9I$*JF)I$m*JF)I$M[I*I6)*JF)I$m[A9M۶ضn*JF)I$mQI*m I*m.`A9IҴI*#lA9ꪪc;MA9MҶuA9IJG)!ݶIJJ1 mӶaJJ1 IҦP J2!؀A BB"Ib;MjBgA"I&@ӶjBfA"iu(B Buݪ"IҶ6(B BU" I@jBfA# IҤh$(B B" I $jBfA# iۦ)ФjBfA#!I$ $jBfA# I6I4jBfA" I@ B B#!I A$ B B# iZ 4 BB# ()jBfA!kn6IJ1A IJ1@ F : J2`"C2)B Bʏ$$B"JJ B???hڤh&RjJ!`4ARJﯪH$Z)Bk5غZ :I&hRJꪪIm$RR/I$H$Z :I$RJI$M$RkJꨠimjJ BxI$$JBAI$H$JBAI' JBhAfJBhAc'L BA$i' BA6 BAm&6lJBHAi$@ BAIb;L)JAIl KJg9I$$)JAI$-Т J: J BI$$ J BI$6 J BI$$kJg9I$; J BM&$)JA8r9KJg9I4&KJg9I$$KBgAI$$KBgAkֵKBgA$Ii;KBgA[X& BA*&AAp (if'AA_ A9tA+BhA$ AAaE$AAmm$AAham4AA۶am&AA+ڢm$AA &a$A9D 唺A9 @J喛A1 嘻9g1xxXVVՔ$g1F1_ I$g1G1U $g1G1UI$g1G1UDAg1G1-m$g9G1U-0$g9G1U@$g9G1VvŚ$g9G1 I㖳g1F1ظ?9 $A$$g9F)`6g1G1$HҶ$g1G1`H$g1G1[mk9 I$9  ݖ9 A9 M$9( $9($9($9(9($9(9( $9( 9(@$9($9 9(9((R9 F$dB&9"mE[ 9( $A$9  $I$9  $I$9 A$I$9 $ 9 $I9 дM[9 ڶmڶg1G1$Hg1G1A$I$g1G1$I$9 <"Hg1G16۱9 H$M9g1M6I9g1$L$9g1I$H 9g10I$9g1$I$9g16089g1$qLJ9g1$I89g1M&I9g1i$M$9g1$A$9g1mI$9g1)$I$9g1h$I&9g1$I89g1 Ib'9g14 $9g1 "rq89g1 I'9g1hM49g1 Nb;g9g1I$H)`Ї9g1  'I89g1!k6i$(A%" M I$g91 AI$9g1! I9g1!NI$9g1!hi&9g1" I$9g1"m i$9g1"m[ig9g1" $ $g9g1#!I $g9g1# I&A$H)# )6m9g1#mӭڶ(A&"!I$ $)A%"!IiA)"I''A!!IӤ@$A!#6A)#Iv(6A!" 9g1#&Ĉ9g1#N$g9g1#iڶؚ6g9g1"I0 $g9g1!I$h$9 !I$F09 M$H$9 H$M$9 $C$ g1F1ꪨD $Ig1&1A$I$f1G1I$ f1G1I$A&9 M$$9 I$I 9 I$f1G1կAh;cf1G1 $a9  $qL9 I$A$9g1I$I9g1몪I$9(II 9g1EM$&J()M$A$&J()I$H$9g1I$I$1g1I$I1g1*I$I 9g1I$%J()m6%J()I$I$&J()I$M9g1i۵V9g1I$i%J()I$m &J()I$I&J() $m9g14$C9g1-ڶIҶ9g1I$ A!$aAH)I'kaA9Uv$& A9M4[7`A9SA9 l2 A9_IY B1 ݶ B13`A9_~ Ib;(HAH) IcҢAH) mZ AH) mCrHAH) $aAH) /% A() I$mA()ovA() `IdAH)d@A9I4 A9Umv A9Ib6IA9I$ A9q̐$ B'1M&AA1I$A9c$A9inA1mmnA9Im$*JF)II$A9k:`v)JG)I $*JF)II$A:II$I*MM$I*Ih$I*$ `;I*II$I*II$I*IA$I*IA$I*I$A I*I$H I*M[ A9hh I*I@I*I6A :I$  JJf)I$JBfA I$ JBfA!&AJBA !A BB!i$ BB!I$H BB!I$ BB"I$m BB"m$m BB"m$i BB!I$@ BB!m( BB! $ BB! h BB! BB" I$I$ BB"M BBkIJg)66IJg)h&m4JJ)$dl0)B B:,-JJ B??? ڶ8RjJ$%RjJA&RJ[kRJ+m5RJI$IRJ Z :$I$Z :A$I$Z :ٔmjJ B-P J:H$ J:@$A J:H$ J:I4@ J:I$hJJh9I$KJg9I$@JJh9I$PJJh9(PI BAA$I$ BAI BAEѴI6 BAIi BAE6IڶJBHA@IڶJBHAv$ BA}<I BANb$ BAImh;` BAIҵm-a BAIm BA_~^$i BAUIB& BAIҮh BAM[6 BA#MA9?9lA9N'aA9.I$I$*J() &LI) I-I2lI) L'abI) ֶ$A9 $I$A9 6;0$ J)) I$IA9 imA9 1a9g1蠠)iѤ9g1_^z|m-f1G1_~$$9I$mZ9 M$mF1)9 I$m9 I$I9 M$AҶf1G1WWI cf1G1s 9 m$Mf1G1Um$m f1G1Ui$iRG1)k۴m `G1)m$m6G1)$CG1)$v G1)I$IG1)I f1G1U$Lf1G1U4$ g1&1m$m[ g1&1ۖ$mg1&1$$IBf1G1UU$i f1G1UU$$If1G1UU[$Mf1G1ۖ$I3lg1G1$$IBg1F1$$q g1F1W m$Mag1F1UM$Mf1G1Um$M f1G1Uc'9 dg1F1U$i Ig1F1m$m `g1F1U$$) g1F1U m$m+g1F1Um$m @g1F1Um$m g1F1Um$m g1G1U4@g1G1Um$mg1G1U_0i$m;g1G1;]' g1G1m$m g1G1ٖg1F1*$vl9g1Uq$M9g1UDJԤ9(F;9(M&-Ҷ9(m@9g1mI9g1f$i‡9g1]fM9g1I8 LJ9g1 iڶ9g1q$9g1$Iۇ9g1$Il9g16$Ib#9g1'#9g168v;9g16IB؈9g1 I9g1m&I9g1ڶi9g1 $Xҩ9g1$I H)m9g1 D$Ib9g1!hIҶ(A%"!@$Mu9g1!mI9g1$ 9g1!0Ilۈ9g1!$IĈ9g1!)ФI9g1"Ib9F1"Ng9g1"$Ibg9g1!$i9g1" $IB9h1! 9h1!0pH(A&" I%Yl)A%"  I)A%"!a$I)A%"!a$ cA!"ɒ$IA!#I$vM)A%"#]4 @9g1$I$A9g1_#Ii9G1$M'i"9G1$8&-A9G1#Ib'[9G1$I'e I9F1#n9F1#O-+A9 $Ir)Ag9G1UZ#mIg1F1@ $inyg1G1UU 'd Ig1G1UUqg1G1UUI$fCf1G1UU *ag1F1 N. g1G1?O*g9G1I89g1U$a9g1m&m9g1q⤮9g1#ɐ4R9g1I&H9g1$I9g1N$I&J()I$Hڶ9g1I$I$9 i$mڠH)I$IH)ж6H)ڶmv9g1H$ 9g1@$m&9 ($M61g1$I$1g1-$I$1g14I&1g1Ӷ8g9f1UUU`ێ$g9f1UUU4m9g1(I$9g1h4M9g1ФA$A()$ A9UUE$I$A90$ B&15۲- B16[v B1I B1&H: B'1 {pAH) i4M$AH) tAH) @$ AH) iۦ0AH) iۦX1AH) m&bA() M6X[AH) i&(AH) ҶiSB1dA9I A9I$dHA9I$$ A9ꪪI$$ A9mڶA9I A9IA9I'$A9**I8 *Jg1I8 i*Jf)IҶ`A9I$$II*I$1II*I$@*Jf)I I*I$I$I*I6h$I*I I$I*M[жI*H ZI*A I*I$I*A$I* I$I*II$A9iI$I*@1mA9 )I BA* +m BA E6m$JBfA!mmۦJBfA!i$ J2!8jBgA"$i$jBgA"MڢI$(B BU"(жI$(B BUU" ]jBgA"mi۶ BB"-"I$ BB"hi$ BB! $ BB! I BB" $I$ BB" A I$ BB" I I$ BB"-ڴm BBMIJg)IҶmжIJg)mh5IJg)h[iBiA,)JJ B775km5+SHAmR MRJmҶlRJI RJH;$2RjJIMЦRJ $ $Z9-PmRjJhmRkJ JjJ Bx\~x & жIBAH$ IBiAIIBiA@ IJBHA@ A JBHA@H$JBHAm۶JBHA@ mۤJBHAI$I$JBHACmJBHA$HI$ BA@I$ BA$A$JBHAmm6JBHA[7lm$JBHA II BAIKBA(Pi$ J:$I$ĘKJg9AI$ J:4`L$ J:iL$ J:I$ J:6Iڶ' J:k: BAz[&MҤ BAI$I$+BGAI$I+BGAI$A +BGAi$4+BGAi& +BGAi$A&+BGA qb$ *J()#A9 vB%#PA9_ ɑItA9- 1IA9 MڶۀA9 mM4A9_zINn 9h1ꨠn$9g1W^_ܤ g1G1OBg1G1WIBIg1G1Uq]#Ig1G1ISag1G1I$Ig1G1IZ$Mg1G1Nb;#9"y g1F1  ca 9 II9"I$IҢf1G1iӦm;f1G1mm; g1F1m۶i g1G1I4IRg1G1Nێg1G1I۴I9 M$M9 Mۦm9"I$I9 m۶m9 mۭM 9 I$I9 I$I9 II 9g1UUկII$9g1UIMҶ9g1U$@±C9g1Um i9g1UII9g1*k;li-9g1mڦ9g1Uwגg1&1.fi҇9G1")Hc:g1F19(I A$9(II$9(C$M9(II9(I 9(IH) A9(IH)I 9g1!~%Yr9g1"IRm (A&""I 9g1#M $9g1ת*#MR`m(A&""IBm(A&""IB$I(A&""IB@BA!"ab(A&"!H$I(A&""q8C0(A&"!I4 (A&" Kl6l(A&" I,۲m(A&"!  (A&"I$I(A&"!a$a(A&"!IB$Lb(A&"!II$(A&"!D$I0(A&"!'a$(A&" H& (A&"!6I$(A&"A$I$(A&"!6(A&"  $I(A&"!H$I(A&"!ڤI4(A&"!$(A&"!@$ $9h1"ִm&9g1"Ð&9g1"km$9g1#mk$9g1#`{Ӗ4g9g1#mS'9g1U#T{؈9F1!Ś&9F1"$h#w?9g1U!qdE?9g1!F9g1!Fl9g1!F$<9g1 mm;9g1"@$9g1"@nۈ9g1W#@N$9g1jU# m$9F1# I%$g9g1U$Mm$g9G1V# Im$g9G1U#0Iug9G1U$$g9G1U# v8g9G1U" Im$g1F1"Mng1F1"'g1G1 H$g1G1U"FQ$g1G1mm$g9G1U m,?g1G1? P6H)0Jm9 +ZI$9 $A:-g9G1 ik'9G1WU0J9G)* z[3,9F1(`b؆ -$9F)*%n9g1Nb҄Lj9g1I$9g1몪M$9g1 v#'H9g1(s& 9g1o&A9g1I&9g1Ib9g1Ӷ$) 9g1U$ A9g1UIbߥK9g1UӶ9g1U&@9g1U$ 9g1Ub$-A9g1UI9g1UI$) 9g1UI 9g1~R$ @9g1cb)a99 l AAG1y^@A9I[MA9$CڊA9I$mA9Im A9mS6 A9 n&Z,AH) I6mAH) I'AH) i4mAH) ql;v0AH) L$qAH) imAH) Фm AH)  4AH) AH1` IA9$I$A9$I$A9$I$A9IM$A9дmۦA9i $A9￿m")4A9 @A9ֶ*JF)-h&I*@$$I*I$I$I*I$-$I*I$H$I*I$II*I I*N$0$I*I&hѶA9I&(ڶA9I$ڶA9ꪪI&@ڶA9m۰mI*I$mQI*I$I*I IA9Mڶ@mA9M5@ A9ꪪ Nk- B9* I4ݰn BA IڶnJJ)!I$ IJJ1!I$h[JJ1"I$I B B"mڤۆ BB#I4m BB"I$m BB#i6A BB#I$jBgA# K$jBgA#i۶6 jBgA#IjBgA# I$ (B BUU$!I$(B BUw$MӮ(B BU}%& (B B}ߪ$!I$h(B B} vҀ J2!I IJ)!I6JJ1v2;:U)B B+ۢ- jJ B???k&݊mRJujRJ I$@L[iAi۶ۊmRJ" RJꪠIm[RjJIҦhRRIMRJIHRkJꪪIodAjJ Bx|^^iӶ@JBhA 6JBhAMH&IBiA BAI$I$ BAE i$ BA !JBHA-m$JBHAEI$JBHA-mI *A$I$I *-6MI *H$AI *$ $BAI BA!&`JBHAA&i4KBgA$H$KBgAiI&KBgA $IKJg9$I J:pL3q' J:I&KJg9 9> BAz~_M&AA I$AAM'+BGAI$I0+BGAH$I$+BGAM$I$+BGA(H+BGAHҤI$+BGA6H60+BGAhڶ$+BGA-#aA9Mq AA9תI,0MA9I AAmm$A9xEbmA')m͚6A  $9g1~mI9(i $9(ma89(E$H)-ڶi4H) i$H)-B9(ڶ9 h۶M$9g1wUH$MҶ9(A$I$H)I$H)6`i$H)0lm$H)um$9 (6lm$9 @v$g9g1ڊ9G1Cnm$9G1۶ m$9($HI$9( Im9(m$9($H$ƈ9g1 m$9g1ömm$9g1m$9g1 m$9g1i$9g1۰ iLj9g1 ]'9g1m$A!4-9g1 I#؈9g1 $9g1m$9(0@n$9(9(q9( In$9  m$g1G1I$g9G)?g9G1*U$I$g9G1e I$g9G1U!m&g9G1 "$9g1U#Frm89g1u!m$9g1U!0lĈ9f1"v$9g1*"ȵ'9g1!ֳ$9g1!$9g1 ֶM$9g1!9g1V_жI$9G1fۿ'9G1 j@9g1U&#H 9g1UU& Nmm9F1V 6N I9g1+ \#Ҁ$H9g1z*ɿ9F1U( !I I9g1,Im9g9着]9g1i۵hA!&i;91d)H$99U(A891w$'99m* $A!&A'99*Hب91$99}ۖߨ91$9g1I$9g1@[$9g1Im$9g1@f;9g1ۨ9g1H$9g1?9g1I$9g1ƶ?99U[m$A9U&A8A9U,AmA9A$A9U 6A9U ɾ'99UU E׮I$A%!m89g1 0nu㸨9g1  mM_ۨ9g1( аq'91 ¶vۨ91 @]91 D~99&wNU99  }RA() A(! q\99UUUPy[A%!!iI99 A9կnv+A9dqiA9 $IA9' A9$IA9$$IBA9ضAA9d;MA9 $I*JF) $ A94$I*JF)σA9($I2A9֦m A9$IB*JF)$'A9m$Ib*JF)$IRB9h$IRI*ۖm A9&m A9`ێA9uӵ B9$رJBfA؎m B9$IJBfA Ei JBfA!4vl BB!4I BB!`'CJBA!`6ɀ BB!@i B B"mѶI BB" $I$ BB"hѶIڴ BB#+vmvjBgA#$@vH(B Bտ#!I(B B$!-$I4(B B#!$I$(B B$Цm۶(B B Mh$IJ1!ti۶IJg)@4MIJg)X3Nj)B BjJ B?=5@ӤhҤRJiۤRJh&I$Z :RJ@L&dB&RJ ac;RkJ;;Z9 X״m۵Z9mIRkJj ҡJJA\^۰kӥIBiA($I&IBiAm۶IBIA@$I4IBIA0ضmIJI)A I 2$I I *$@ I *H$I$I *I' BAUI$a BAU$ &'A9\ۖ$A9U$ ۖ$A9u۶m$A9*m' BAI$$ BAI$[aKBAI KBAI$- *JAI$( KBAN$6AKBAN8D 3 BAz;AA I4IۡAA qĎmAAI$ +BGAI0A+BGA $mAAmmAAIAAq;IhAAI$ AAHIAAI'vAAI HAAq$dl#AAMҤ+J')IvmQlA9ZZhh AG1qI99 II 9g1zN09(L$I$H)I$ H)a I$H)I $H)I$ $H)$H$H)I $H) $I$H)M$A&H)I$H H)II$H)I&iH)&9 9 MҶA9 M@Ѷ9 mm&9 A ж9 I9(I9 9($9g1U$ @29g1 ؈9g1$ }߈9g1EI$(A&"II(A&"I9g1I$A$(A&"v&'A!M@9h1I$$9h1I$$9g1꠪Nl Lj9g1UY Э9(IҦh9 IҶ-9 IҶд9 I64g1G1IB$ag9F)mX7f1G1c`f1G1mҶ(ڶf1G1ߪmҦ谵f1G1Ih4Ig1G1?MIH) Mm&9g1 C $9g1 =`ۖ$9g1_ U)I$9g1U ,+$9g1U I'9g1U& <9g1U")H9g1Ub"9G1 $@g1G)$Lg9G1U H?g1F1Uof1G1 d7g1&1 m6ؚf1G1 mд9  &&AҨ9 m4n9  Őv `9 H4m9 (:mF1) -%i۶F1)Ag1&) $A$9 I$9 $I 9 68q9($IH)0qbH)$I9 mm9 &Ibg1G1 $If1G1A$HҶg1G1I$ig1G1 I$IS9 I$EZ9( I49g1 O~d 9g1 J9g1 b%9b9g1 cL9g1!qs$59g1!Il{A9g1"qbې9g1"I&H9g1#i_ 9g1#$I9g1W#OҶH9g1U$NBӒH9f1U C@9G1ꪪC9G1IҶl9G1IҶm9G1IҶaH)IҴ6H)=JH)!}{3A9G1 Iֶg9g1 clH)!I6hH)IҶ@&H)I6$9 m۶$H)k;lm&9($HF9g1ضm$9g1$H؇9f1$I629h1H$A!i$MA!t$ 9g1I$ 9g1_; a9g1$I9g1$$ @9g1i 9g1Nl;m;9g1I$m9g1m9A9g1I$m 9g1_I$m 9g1UUdJt 9g1׾I$m+A9g1od 9g1߿* MH9g1UO(H9g1e+a9g1On 9g1޶b+H9g1I$9a99+N$RIA9UUIb$ nA9UUIҴ A1 u#99uبq9h1*  q6IA! mЄA! )Yuh9g1뺪 M˒ 9g1 iڦ(ڡ9g1 IH91 I4hA! ivð 99)E a99m&H$AH) I AЦAH) 2͐AH) MiAH)!5 T A9I)6A9nŖA9iI)BG1H)JG)I I$A9 H$A9h*Jf)$ $I*$I*@$I*$I$I*@$H$I* p$N$I*H$I*$$I* $I$I*`$I$I*$II*)$I$I* $I$JJF)6EPI*@&HI*mڤII*!4 B9!` BA h&iJJ1 $AD@ B B ` BB  BB! $I$ B B!A$I$ B B!$&H BB"8m BB# I$I B B# M$I BB# m4m(B B$"I$I(B B$"I$(B B$"I$@(B B꾾$"I$(B B%#I$I$(B B%#I$$(B B"qL; BB꺮"aVIJg)"m6IJg)k"5)B B//1LɊJ B5==5M6Z9I6RJI@Z)BM0L[iA-A9_dA9UI$E$A9Uih$A9!c&A9)ڤ]6A9pV B9#n BA!$JJ1"i۶m$ J2$!I$)$ BB$ $i$$ BB#!$$jBgA#!$$ BB$!I$-$ BB#!A$jBgA#!I$@$ BB!I$$JJ)!$i@B9" I$ A9"m6A2!@B;C: J9Ь,1R B5%=ضؖ4RkJ@ RJM$ARJ Mp8RJ^v  uSRjJh;,mӶRkJꪪ!$Z9I$HZ9IIXRJJjb`Ih J:iӴVt J:M۶*JAI&6 J:I$M J BN *JAI6iKJ9I$v*JAIm KJg9I&m )JAD< J9D J9r J9@ J9@v J9@$ JAUU $ JAU4< JA UD JAUD+JAU?*JAD6<*JAi$*JAF*J BUU4?*JA$'*JAU$me BA6 BA6rm$AAA[$AA$A8AA$ ]$AA6$+BhAhm$BA[a&BAmh$BA6`X$BAI48+BhA0 唒A9~Jw91!I6;9g1"ia$9g1!a$9g1"$$(A&""ivؐ(A&"!qBA!"Mm9g1"Inݐ9g1#IiA "I:۰uA "mmmA #qmiA "inmA #q2mը9g9#I4<;99 I۶9h9 I۶aAF) IҶ0AH)!Ib֡9h9!I<ڰ9h9* mRڰv9h9!߶$!9h9 I۴a99 Ҷa99!IeA(!I}ɱA(C[ 99+99*C`$A9UתqzMA9UIb$$A9UUmҶh$A9UIڮh&A9U I$d$A9UU!%I@ B9UuM6m$A9UmڶֶA9UꪪI$@$A9ի* i(uA9Ib;4A*BF1Ib$`*BF1I4M$*BF1Ibӄi*BF1mҶؚB9 m& BA/ I$@$KBA I$*JA IA$*JAW Ib!+JA0*J B_I;6$*J BI$0+J BU*J B"qB8*J B iҶؐ&+J Bվ(M$*J BaB;*J B Im$*J BUiRm$*JA_꺫I-$ BAUzlΚ: BAWzjzvIQAAMXA9)wrA9_^WqĈ9g1ؐv9G1i g9F)IRA$g9F)#Xg1F1^EC%g1F1_H4$9A@$9"!!Jg1&)!m$g9g1!M m$H)!h&hg9g1!I4I$9G1!A&i$9G1!& 9 !I4I 9 ! $q 9 A$I9 FLǨ9 H$I$9 $Cg9g1m$mS9g10qbۈ9g1d$C9g1I$m9g1M$i9g1Ii9g1m$IR9g1iIS9g1i$MR9g1$m9g1-$A9g1M&Ҷ9g1I$ah9g1q$LH)18IBH)#9g1[_[_ !Enնg1G10 $v0g9g1$IbH)ضiڦH)hI$9(жMH)ЦI$H)mI'H)6M6H)ִM9( I$9 `I$9 um۴9 pR'9(0I$9g1uUW($mH)A$I$9(M$A$9(I$I$J)H$m$9 m۴9"M9"@ (ڴ9"A$I9"H I$9 mhS9"i6-R9"$C36 9 Ii9 i$ дH)IH)I&LbH)I4mg9g1I4 9 i$IТH)M6늶9G1I$k[`g9g1IҤm m9g1U$I9g1uUM6m9(C\=9g1Om m)A%"$mA! H)A%"uC,a9g1耂-9g1_vn, q9( wk;9g1UU N%9g1U} nm9g1uU $)9g1U v̶9g1U <3!`9g1U|69g1m9 9h9* wJrA9U*ښ& A9?6A9]U'm) A9UΝ$ AA9_$4 `A9կA9A9UU$ IA9UUk?+ A9U'$ A9U$$)A9WUu$)AA9UUn&A9UU'A9U''@A9U8A9UI$n'A9UvkF@A9ݪ$mA9m* B9I$ B9I$6 A9I$m)Jg)u$$HA9I$! )BG1<$')Bg1R7 A9 jL BF) iҤ)Z BE) ڴ] BF)$;dhA)aabA)@LA)vfB9 I'B9 M B9!Ú6m IJ)4 B9 }ؚ$H B9 q$ B9 $>` B9Zpۍ B9B9"?I B9!M B9"[&i B9#ݔq&A9"k6m;`B9!pL'N0 B9 R jJ B55 1Ui RjJ$IZ9 @RjJ XjRkJ ARjJ* +&iRjJꭊMӫRkJ$I$RkJIRJJjjzz&IҦ BAжI BA`ݶ BAI$ BAT7I$ BA BAԶ BA@ BA@ BAWUԶɓ$ J9I$ A9** mA9 Iڶ6A9I$ )JI)I$MA9I& )Ji1I6-0 )Ji)M$( *BhAI$ AA86 AAI$ml BA8q BA$IB BAI$M BAI$M BA__m&[*Jh1i$M*JH) I$M4*J() IdYaA9 I$I$A9 M$mA9 N I) iҶ*J()I$ ҶA9I$IA9I$q`+J') Ҵ@[+J')I6lA9zA9```hIwn9g1N#v&g9g1IH4g9g1AI H)H۶m9g1 m$9g1$9h1a$(A&" -vk4(A&" h;m$A!!E7A!!+Ĩ9g1! d89g1*!6ld'9g1!8$4A m$99 Fmk'99  k'99 Ih$99$id99 499a-99 ݚ$99ۆd9g9FR,YA) Lv$9g1$m>9g1(@ ?>99? Id?A9}6m$A9X׶I$A9ȑ*Jf)P$*Jg1&h;$A9C[4mA9hѶI$A9(ЦI$A9 I$A94I$A9 жm6A9$I$A9$I$A9h&I$A9 ԶcA9 avb;A9*+ X&M$ BA  IIKBA -I$KBA ێc'KBA I$KBAhI$ J B$q$ J B̈́I$ J Bq8 J BE۴M$*J B-ڴI&*J B4lq8*J BCѶI$*J BUڡm$ J B Tuv$ BAz I$ J9 4I)Ji)!IAA lA9V 6mۦ99^ %M%9g1Iqg1G1t$9 (I$9 -&O'F1)[m6F1)* :tm69ERm$F1) ! Ijg1&1 !m۶-9(!Zm$9("MҡM&9 "mm]H)!v 63H)"IH 8g9g1" H)#I2`ݚ$g9g1"Maۚg9g1"Ink&9g1!mm$9g1!IҶE$)A%"!I]4)A%"ISM&)A%" mڮE)A%"!I\$)A%" iuh4)A%" $$)A%"!I m$)A%"Ka˖$)A%" I 6$)A%"Yaۖ$)A%" MҢ蚦)A%"Ibö$)A%"Lö$)A%"0L&)A%"Im$)A%"/59g1{jz_ȭ5g1&) )Cg1G1MҴh׶9g1IҢ9g1I9g1I9g1IP9g1Ib H҈9g1Mm@m9g1IҶ@Ѷ9g1Ib;$؈9g1ꪮIP9g1WꪪIH$a9g1UU!mtN9g1]}I$6$9g1;9g1h'g9g1i$H$g9g1i I4H)Mh9 I$I$9 IA$9 I$I$9 $9 @9 I$H9 I$I 9 E*$Q9 i$9 I m$H)I$6$H)I$mۤH)I'H)M4H$H) $M4H)I$$H)II$H) $$H)ڶh$H)ֶE$H)mE$H)mu]&H) cā$9(mӶ(&9g1UIǶ$9g1U#i09g1U$3nDۈ9g1U *9  (h9  };ݤa9g1U 9g1 0M9g1 NRV@9g1* i0R9g1ivn99)))ۺ`>A9_WyI$99Ur99/&$;A9U`q$A9Uht$A1i$A9A$$A9@L$A9 iq$A9$q$A9umӶA9$I6A9I$A9$IA9h$IZ4A9$I)BG1i I*BF1A$I*JF)I$IA9mmnA9着&i' A9ꪪi$IA9M4MSI*q A9mצݺA9M$MA9  B9bŲ A9W_V^+Ҵm BF)d BF)I(B(1 ܤj99 i$ɜA99 -B9ݯ Ib; B9UU* 9p B9% "MڶPJBA# M$-Ф BB#!I$ BB%"IдjBfA'#IĎ)B BU' mm)B BU'#I'`)B BU_' m۴& B B$ m@JBfA&"IĶ$ BA&#I($IJG)'#Ib!HA9& m5 J9!#jJ B%%-%Mv؀vRJ#CRJ m6Z :KPiZ9 JiRkJaqFmZ9mۆRkJIb'4BҫRkJ꺪IDeRJJ``@`$IJBAI$P BAI8I2 BAmҶl BAIb; BAI4膭JBHAIҶXJBHAi$6lJBHAI$- I 2I$H)Ji1vb'v& BAI$@ BAI$KBGAI  KBGAKBGA $A$KBgAI$I$KJg9H8I$KJg9ڶ($KBgAc6$ BA Rm J:IA$ J:I$$ J: $I$ J:mR4m& BA@ I BA_ &fB' BAC3&A9I I$A9 I A9IIA9UI $A9Ui$I$A9UM$M$A9-$I$A9$q$A9IA96qA9__pR99p\_{;9g1z^^m$9 M9 `Ib'9 zI$9 ض$9(i$9g1]UVI$9g1UVi؇9g1]U֪Ić9g1UUM$9g1WUaI$9(kѶI9g1UUI&9g1Uۺ~9g10I$)A%"uI6)A%"жI$)A%"I$)A%"hI$)A%"@$I$)A%"4$I$)A%"$I$)A%"&I$9g1-4I69g1II$9g1_M'I$9g1ՕP-9g1$vb;99% &i699 . $IS99 4$IA9@ $IR$A9$IlA9 % A9 I$m;A9UU %ث hA9U_ m$IA9UU I$IRA9UU $ A9UU $IBA9UU $IA9U m$IaA9U n$I HA9U A9+* t$v BA* A$IKBA I$IZKBgA I$vKBgA oMa+JA I8I *J BU I$I*J BU I$]*J BU q$ *J B}U I$ *J BU um+*J BI8I+J BUUUI C+JAq$IB+JA o?,+a BA[ I$i;` J9 I$qA9I$6`A9誠 MĨmA9VV~ Mm 99 Ivh99UWڪ v6M9g1_$A9G1UI$ig9G1UU3: g1&)ꪠIIG1) I;F1&) M4]F1&) pg1&)+ !i8m 9 I'$9 !Ikm9F1!Ibm 9F1 Ima9F1!IbU 9F1!i$m 9G1 "c r9g1UU M4E; 9g1U">vK 9g1*!& @9g1"I] a9g1!I$j9g1!O `9g1 I I9g1I9g1"y$9g1!qҾ9g1"I\ I9g1!Nd9 9g1!~I9g1!󿬺a9g1 N*h9g1!$q9g1I$[m9g1!Nm;9g1 q$U 9g1 9B9g1_ZZbٚ g1G1| IBg1&)$IWg1G1I&[ 9g1Ib9g1I۶6t9g1I$h۴9g1Mڶm9g1IҴ@9g1I$ 9g1I&E9g1I$h۶9g1i۶P9g1_ٖMm9g1H$I 9g1 I$H)I$I$H)I$I$H)I A$H)mӴH$J)I9(A @$J)b$$9(ZH9(M4$9 M[M9(튶i$H)a$H)NlI$H)m H)N $H)IҶi 9 cIH)IbI$9 I I49 I$H9 I M9 I $9 A$@$9 $I9 ItV9 I6m9 i,m9 IlI9 I6n9 I$v;`9 I$Ua9 I$mg1F1Ib;Ig1F1c&@g1F1I`g1F1c&H9 I# 9 & 9g1) 햓91 C91*ϟm91 ϻq91c99UUս?lA9I$m;lA9I$maA9cUA9I$ A9I$4IA9I$A9I$$ 2A9I$mA9I$ A9I$m A9I$A9I$M*JF)I$mZI*I$ $I*I$II*I$HI*$I*I$IJJF)$ +1A9`mA9Um' B9UUr B9UU@ B9>